{"record":{"id":"1f683fd2698beeed","repo":"BigPizzaV3/CodexPlusPlus","slug":"invalid-dream-skin-theme-config","errorCode":null,"errorMessage":"invalid Dream Skin theme config","messagePattern":"invalid Dream Skin theme config","errorType":"validation","errorClass":"anyhow::Error","httpStatus":null,"severity":"error","filePath":"crates/codex-plus-core/src/dream_skin_library.rs","lineNumber":386,"sourceCode":"    id: &str,\n) -> anyhow::Result<DreamSkinThemeDraft> {\n    if !valid_theme_id(id) {\n        bail!(\"invalid Dream Skin theme id\");\n    }\n    let directory = state_dir.join(THEMES_DIR).join(id);\n    let metadata = std::fs::symlink_metadata(&directory)\n        .with_context(|| format!(\"Dream Skin theme not found: {id}\"))?;\n    if !metadata.file_type().is_dir() || metadata.file_type().is_symlink() {\n        bail!(\"Dream Skin theme path is not a safe directory\");\n    }\n    let config_path = directory.join(THEME_CONFIG_FILE);\n    let metadata = std::fs::symlink_metadata(&config_path)\n        .with_context(|| format!(\"Dream Skin theme config not found: {id}\"))?;\n    if !metadata.file_type().is_file()\n        || metadata.file_type().is_symlink()\n        || metadata.len() > THEME_CONFIG_LIMIT\n    {\n        bail!(\"invalid Dream Skin theme config\");\n    }\n    let config: DreamSkinThemeConfig = serde_json::from_slice(&std::fs::read(&config_path)?)?;\n    if config.id != id {\n        bail!(\"Dream Skin theme id does not match directory\");\n    }\n    let image = find_theme_image(&directory)\n        .ok_or_else(|| anyhow::anyhow!(\"Dream Skin theme must contain exactly one image\"))?;\n    let draft = DreamSkinThemeDraft {\n        config,\n        image_path: image.to_string_lossy().into_owned(),\n        builtin: false,\n    };\n    validate_theme_draft(&draft)?;\n    Ok(draft)\n}\n\npub fn rename_dream_skin_theme(\n    state_dir: &Path,","sourceCodeStart":368,"sourceCodeEnd":404,"githubUrl":"https://github.com/BigPizzaV3/CodexPlusPlus/blob/f2074595a281bc057525c748175c8eb9805b0673/crates/codex-plus-core/src/dream_skin_library.rs#L368-L404","documentation":"Raised in load_stored_dream_skin_theme: the theme's theme.json exists but failed the safe-file check (not a regular file, or is a symlink), so its contents cannot be trusted and are not parsed. Protects against symlink attacks in the themes directory.","triggerScenarios":"Thrown at crates/codex-plus-core/src/dream_skin_library.rs:386 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Replace the theme.json with a real regular file (reinstall the theme)","Check for symlink attacks or misbehaving sync tools in the state dir","Restore the theme from a known-good package"],"exampleFix":null,"handlingStrategy":"validation","validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"f2074595a281bc057525c748175c8eb9805b0673","analyzedAt":"2026-08-23T12:52:24.489Z","contentChangedAt":"2026-08-23T12:52:24.489Z","schemaVersion":2},"datasetVersion":"2026-09-14T05:17:10.506Z"}