Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions crates/openshell-sandbox/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,27 @@ fn main() -> Result<()> {

let args = Args::parse();

#[cfg(target_os = "linux")]
openshell_supervisor_process::process::prepare_supervisor_identity_mount_namespace_from_env()?;

// The mount namespace setup above can cause /proc/self/exe to resolve to a
// stale path (e.g. /openshell-sandbox from the init container overlay
// instead of /opt/openshell/bin/openshell-sandbox). The ancestor integrity
// check stats this path on every proxied request and denies all traffic
// when it doesn't exist. Create a symlink so the check passes.
#[cfg(target_os = "linux")]
{
let exe_argv0 = Path::new(&raw_args[0]);
if let Ok(exe_proc) = std::env::current_exe() {
if exe_proc != *exe_argv0 && !exe_proc.exists() && exe_argv0.exists() {
if let Some(parent) = exe_proc.parent() {
let _ = std::fs::create_dir_all(parent);
}
let _ = std::os::unix::fs::symlink(exe_argv0, &exe_proc);
}
}
}

// Try to open a rolling log file; fall back to stderr-only logging if it fails
// (e.g., /var/log is not writable in custom workload images).
// Rotates daily, keeps the 3 most recent files to bound disk usage.
Expand Down
31 changes: 24 additions & 7 deletions crates/openshell-supervisor-process/src/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,17 @@ pub fn prepare_supervisor_identity_mount_namespace_from_env() -> Result<()> {
let _ = SUPERVISOR_IDENTITY_MOUNT_NS.set(None);
return Ok(());
};
let namespace = SupervisorIdentityMountNamespace::from_socket_path(&socket_path)?;
let _ = SUPERVISOR_IDENTITY_MOUNT_NS.set(namespace);
match SupervisorIdentityMountNamespace::from_socket_path(&socket_path) {
Ok(namespace) => {
let _ = SUPERVISOR_IDENTITY_MOUNT_NS.set(namespace);
}
Err(err) => {
eprintln!(
"WARN: supervisor identity mount namespace setup failed ({err}), continuing without isolation"
);
let _ = SUPERVISOR_IDENTITY_MOUNT_NS.set(None);
}
}
Ok(())
}

Expand Down Expand Up @@ -336,16 +345,24 @@ fn create_supervisor_identity_mount_namespace(target: &Path) -> Result<OwnedFd>
.map_err(|err| miette::miette!("failed to open sanitized mount namespace: {err}"))
})();

set_mount_namespace(original_ns.as_raw_fd()).map_err(|restore_err| {
if let Err(restore_err) = set_mount_namespace(original_ns.as_raw_fd()) {
// Cannot restore the original mount namespace. Undo the tmpfs
// overlay so the SPIFFE workload API socket stays reachable in the
// namespace PID 1 is stuck in.
#[allow(unsafe_code)]
unsafe {
libc::umount2(target.as_ptr(), libc::MNT_DETACH);
}
let result_msg = result.as_ref().err().map_or_else(
|| "sanitized namespace was created".to_string(),
ToString::to_string,
);
miette::miette!(
return Err(miette::miette!(
"failed to restore original mount namespace after supervisor identity isolation setup: \
{restore_err}; setup result: {result_msg}"
)
})?;
{restore_err}; undid tmpfs overlay so SPIFFE socket remains accessible; \
setup result: {result_msg}"
));
}

result
}
Expand Down
Loading