This commit is contained in:
guochao 2023-11-03 11:30:49 +08:00
parent d422f30774
commit 0eb915ebeb

View File

@ -68,7 +68,7 @@ fn main() -> anyhow::Result<()> {
return Err(err.into());
}
};
nix::sys::ptrace::setoptions(child, Options::PTRACE_O_TRACESECCOMP)?;
nix::sys::ptrace::setoptions(child, Options::PTRACE_O_TRACESECCOMP | Options::PTRACE_O_TRACECLONE | Options::PTRACE_O_TRACEFORK | Options::PTRACE_O_TRACEVFORK)?;
nix::sys::ptrace::cont(child, None)?;
log::trace!("child is ready");
@ -158,8 +158,13 @@ fn main() -> anyhow::Result<()> {
log::trace!("accepting {}({})", syscall_name, syscall_nr);
};
#[cfg(feature = "tracing-mode")]
if tracing {
log::debug!("no need to restrict myself by set_no_new_privs");
} else {
log::debug!("restrict myself by set_no_new_privs...");
nix::sys::prctl::set_no_new_privs()?;
}
log::info!("loading filter into kernel...");
if let Err(err) = filter.load() {