7de35dda5b
When the onboarding flow writes the API key under `~/.deepseek/`, the parent-dir and config-file chmod are propagated as hard errors if they fail. On Docker-on-Windows where the container mounts `$USERPROFILE\ .deepseek` to `/home/deepseek/.deepseek`, the bind-mounted NTFS volume can't accept Unix chmod, so `set_permissions` returns EPERM and the user sees `Failed to save API key: Failed to set permissions on /home/deepseek/.deepseek` — even though the directory and the secret file were already created successfully. The chmod is a hardening pass: the dir already lives under the user's home and the file is created with `O_CREAT | mode(0o600)` via OpenOptions. On filesystems where Unix permissions don't apply at all (Docker bind-mount of NTFS, network shares, FAT, certain CI volumes), the host's native ACL model is doing access control regardless. So demote the chmod to best-effort on Unix: warn loudly via `tracing::warn!` for security-sensitive operators who run with `RUST_LOG=warn`, then continue. Three sites: - `config::ensure_parent_dir` — parent-dir 0o700 hardening - `config::write_config_file_secure` — file 0o600 hardening - `secrets::FileKeyringStore::store_unlocked` — file 0o600 hardening (the parent-dir chmod here was already best-effort via `let _ =`) Tests: - `cargo test -p deepseek-secrets --all-features --locked` → 16/16 pass (including `file_store_round_trips_with_secure_perms` which still asserts mode 0o600 on a normal Linux test FS) - `cargo test -p deepseek-tui --bin deepseek-tui --all-features save_api_key --locked` → 5/5 pass - `cargo clippy -p deepseek-tui -p deepseek-secrets --all-features --locked -- -D warnings` clean - `cargo fmt --all -- --check` clean The GitBash paste failure mode reported in the same issue is a terminal quirk (GitBash on Windows doesn't reliably forward Ctrl+V to TUI apps); PowerShell + Shift+Insert work, as the reporter discovered. Not in scope here. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>