{"record":{"id":"0d5edf3f5eae97f6","repo":"openai/codex","slug":"seccomp-setup-error","errorCode":null,"errorMessage":"seccomp setup error","messagePattern":"seccomp setup error","errorType":"exception","errorClass":"SandboxErr","httpStatus":null,"severity":"error","filePath":"codex-rs/protocol/src/error.rs","lineNumber":49,"sourceCode":"\n/// Limit UI error messages to a reasonable size while keeping useful context.\nconst ERROR_MESSAGE_UI_MAX_BYTES: usize = 2 * 1024;\n\n#[derive(Error, Debug)]\npub enum SandboxErr {\n    /// Error from sandbox execution\n    #[error(\n        \"sandbox denied exec error, exit code: {}, stdout: {}, stderr: {}\",\n        .output.exit_code, .output.stdout.text, .output.stderr.text\n    )]\n    Denied {\n        output: Box<ExecToolCallOutput>,\n        network_policy_decision: Option<NetworkPolicyDecisionPayload>,\n    },\n\n    /// Error from linux seccomp filter setup\n    #[cfg(target_os = \"linux\")]\n    #[error(\"seccomp setup error\")]\n    SeccompInstall(#[from] seccompiler::Error),\n\n    /// Error from linux seccomp backend\n    #[cfg(target_os = \"linux\")]\n    #[error(\"seccomp backend error\")]\n    SeccompBackend(#[from] seccompiler::BackendError),\n\n    /// Command timed out\n    #[error(\"command timed out\")]\n    Timeout { output: Box<ExecToolCallOutput> },\n\n    /// Command was killed by a signal\n    #[error(\"command was killed by a signal\")]\n    Signal(i32),\n\n    /// Error from linux landlock\n    #[error(\"Landlock was not able to fully enforce all sandbox rules\")]\n    LandlockRestrict,","sourceCodeStart":31,"sourceCodeEnd":67,"githubUrl":"https://github.com/openai/codex/blob/339751715c64496cb86246bfb3935f40e309dd3d/codex-rs/protocol/src/error.rs#L31-L67","documentation":"Error \"seccomp setup error\" thrown in openai/codex.","triggerScenarios":"Thrown at codex-rs/protocol/src/error.rs:49 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"339751715c64496cb86246bfb3935f40e309dd3d","analyzedAt":"2026-08-25T05:35:09.876Z","schemaVersion":2},"datasetVersion":"2026-08-25T06:17:31.827Z"}