kernel: only reboot persisted processes if their OnExit behavior is not None

This commit is contained in:
dr-frmr 2024-03-14 01:00:40 -03:00
parent fccff76023
commit 6082ee6533
No known key found for this signature in database
2 changed files with 30 additions and 22 deletions

View File

@ -716,18 +716,19 @@ pub async fn kernel(
let mut is_debug: bool = false;
let mut reboot_processes: Vec<(t::ProcessId, StartProcessMetadata, Vec<u8>)> = vec![];
// filter out OnExit::None processes from process_map
process_map.retain(|_, persisted| !persisted.on_exit.is_none());
for (process_id, persisted) in &process_map {
// runtime extensions will have a bytes_handle of "", because they have no
// WASM code saved in filesystem.
if persisted.on_exit.is_restart() && !persisted.wasm_bytes_handle.is_empty() {
// read wasm bytes directly from vfs
// start process.
let wasm_bytes = match tokio::fs::read(format!(
"{}/{}",
vfs_path, persisted.wasm_bytes_handle
))
.await
{
if persisted.wasm_bytes_handle.is_empty() {
continue;
}
// read wasm bytes directly from vfs
// start process.
let wasm_bytes =
match tokio::fs::read(format!("{}/{}", vfs_path, persisted.wasm_bytes_handle)).await {
Ok(bytes) => bytes,
Err(e) => {
let _ = send_to_terminal
@ -742,20 +743,19 @@ pub async fn kernel(
continue;
}
};
reboot_processes.push((
process_id.clone(),
StartProcessMetadata {
source: t::Address {
node: our.name.clone(),
process: KERNEL_PROCESS_ID.clone(),
},
process_id: process_id.clone(),
persisted: persisted.clone(),
reboot: true,
reboot_processes.push((
process_id.clone(),
StartProcessMetadata {
source: t::Address {
node: our.name.clone(),
process: KERNEL_PROCESS_ID.clone(),
},
wasm_bytes,
));
}
process_id: process_id.clone(),
persisted: persisted.clone(),
reboot: true,
},
wasm_bytes,
));
if let t::OnExit::Requests(requests) = &persisted.on_exit {
// if a persisted process had on-death-requests, we should perform them now
// even in death, a process can only message processes it has capabilities for

View File

@ -483,6 +483,14 @@ impl OnExit {
}
}
pub fn is_none(&self) -> bool {
match self {
OnExit::None => true,
OnExit::Restart => false,
OnExit::Requests(_) => false,
}
}
pub fn en_wit(&self) -> wit::OnExit {
match self {
OnExit::None => wit::OnExit::None,