Compare commits
14 Commits
secrets-0.
...
secrets-0.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4ddafbe4b6 | ||
|
|
6ea9f0861b | ||
|
|
3973295d6a | ||
|
|
c371da95c3 | ||
|
|
baad623efe | ||
|
|
2da7aab3e5 | ||
|
|
fcac14a8c4 | ||
|
|
ff79a3a9cc | ||
|
|
3c21b3dac1 | ||
|
|
3b36d5a3dd | ||
|
|
a765dcc428 | ||
|
|
31b0ea9bf1 | ||
|
|
dc0534cbc9 | ||
|
|
8fdb6db87b |
@@ -7,7 +7,6 @@ on:
|
|||||||
- 'src/**'
|
- 'src/**'
|
||||||
- 'Cargo.toml'
|
- 'Cargo.toml'
|
||||||
- 'Cargo.lock'
|
- 'Cargo.lock'
|
||||||
- '.gitea/workflows/secrets.yml'
|
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
@@ -56,6 +55,13 @@ jobs:
|
|||||||
echo "将创建新版本 ${tag}"
|
echo "将创建新版本 ${tag}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
- name: 严格拦截重复版本
|
||||||
|
if: steps.ver.outputs.tag_exists == 'true'
|
||||||
|
run: |
|
||||||
|
echo "错误: 版本 ${{ steps.ver.outputs.tag }} 已存在,禁止重复发版。"
|
||||||
|
echo "请先 bump Cargo.toml 中的 version,并执行 cargo build 同步 Cargo.lock。"
|
||||||
|
exit 1
|
||||||
|
|
||||||
- name: 创建 Tag
|
- name: 创建 Tag
|
||||||
if: steps.ver.outputs.tag_exists == 'false'
|
if: steps.ver.outputs.tag_exists == 'false'
|
||||||
run: |
|
run: |
|
||||||
@@ -204,9 +210,13 @@ jobs:
|
|||||||
bin="target/x86_64-unknown-linux-musl/release/${{ env.BINARY_NAME }}"
|
bin="target/x86_64-unknown-linux-musl/release/${{ env.BINARY_NAME }}"
|
||||||
archive="${{ env.BINARY_NAME }}-${tag}-x86_64-linux-musl.tar.gz"
|
archive="${{ env.BINARY_NAME }}-${tag}-x86_64-linux-musl.tar.gz"
|
||||||
tar -czf "$archive" -C "$(dirname "$bin")" "$(basename "$bin")"
|
tar -czf "$archive" -C "$(dirname "$bin")" "$(basename "$bin")"
|
||||||
|
sha256sum "$archive" > "${archive}.sha256"
|
||||||
curl -fsS -H "Authorization: token $RELEASE_TOKEN" \
|
curl -fsS -H "Authorization: token $RELEASE_TOKEN" \
|
||||||
-F "attachment=@${archive}" \
|
-F "attachment=@${archive}" \
|
||||||
"${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/${{ needs.version.outputs.release_id }}/assets"
|
"${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/${{ needs.version.outputs.release_id }}/assets"
|
||||||
|
curl -fsS -H "Authorization: token $RELEASE_TOKEN" \
|
||||||
|
-F "attachment=@${archive}.sha256" \
|
||||||
|
"${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/${{ needs.version.outputs.release_id }}/assets"
|
||||||
|
|
||||||
- name: 飞书通知
|
- name: 飞书通知
|
||||||
if: always()
|
if: always()
|
||||||
@@ -229,7 +239,7 @@ jobs:
|
|||||||
curl -sS -H "Content-Type: application/json" -X POST -d "$payload" "$WEBHOOK_URL"
|
curl -sS -H "Content-Type: application/json" -X POST -d "$payload" "$WEBHOOK_URL"
|
||||||
|
|
||||||
build-macos:
|
build-macos:
|
||||||
name: Build (aarch64-apple-darwin)
|
name: Build (macOS aarch64 + x86_64)
|
||||||
needs: [version, check]
|
needs: [version, check]
|
||||||
runs-on: darwin-arm64
|
runs-on: darwin-arm64
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
@@ -241,6 +251,7 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
source "$HOME/.cargo/env" 2>/dev/null || true
|
source "$HOME/.cargo/env" 2>/dev/null || true
|
||||||
rustup target add aarch64-apple-darwin
|
rustup target add aarch64-apple-darwin
|
||||||
|
rustup target add x86_64-apple-darwin
|
||||||
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
|
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
|
||||||
|
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@@ -253,12 +264,14 @@ jobs:
|
|||||||
~/.cargo/registry/cache
|
~/.cargo/registry/cache
|
||||||
~/.cargo/git/db
|
~/.cargo/git/db
|
||||||
target
|
target
|
||||||
key: cargo-aarch64-apple-darwin-${{ hashFiles('Cargo.lock') }}
|
key: cargo-macos-${{ hashFiles('Cargo.lock') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
cargo-aarch64-apple-darwin-
|
cargo-macos-
|
||||||
|
|
||||||
- run: cargo build --release --locked --target aarch64-apple-darwin
|
- run: cargo build --release --locked --target aarch64-apple-darwin
|
||||||
|
- run: cargo build --release --locked --target x86_64-apple-darwin
|
||||||
- run: strip -x target/aarch64-apple-darwin/release/${{ env.BINARY_NAME }}
|
- run: strip -x target/aarch64-apple-darwin/release/${{ env.BINARY_NAME }}
|
||||||
|
- run: strip -x target/x86_64-apple-darwin/release/${{ env.BINARY_NAME }}
|
||||||
|
|
||||||
- name: 上传 Release 产物
|
- name: 上传 Release 产物
|
||||||
if: needs.version.outputs.release_id != ''
|
if: needs.version.outputs.release_id != ''
|
||||||
@@ -267,12 +280,29 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
[ -z "$RELEASE_TOKEN" ] && exit 0
|
[ -z "$RELEASE_TOKEN" ] && exit 0
|
||||||
tag="${{ needs.version.outputs.tag }}"
|
tag="${{ needs.version.outputs.tag }}"
|
||||||
bin="target/aarch64-apple-darwin/release/${{ env.BINARY_NAME }}"
|
release_id="${{ needs.version.outputs.release_id }}"
|
||||||
archive="${{ env.BINARY_NAME }}-${tag}-aarch64-macos.tar.gz"
|
|
||||||
tar -czf "$archive" -C "$(dirname "$bin")" "$(basename "$bin")"
|
arm_bin="target/aarch64-apple-darwin/release/${{ env.BINARY_NAME }}"
|
||||||
|
arm_archive="${{ env.BINARY_NAME }}-${tag}-aarch64-macos.tar.gz"
|
||||||
|
tar -czf "$arm_archive" -C "$(dirname "$arm_bin")" "$(basename "$arm_bin")"
|
||||||
|
shasum -a 256 "$arm_archive" > "${arm_archive}.sha256"
|
||||||
curl -fsS -H "Authorization: token $RELEASE_TOKEN" \
|
curl -fsS -H "Authorization: token $RELEASE_TOKEN" \
|
||||||
-F "attachment=@${archive}" \
|
-F "attachment=@${arm_archive}" \
|
||||||
"${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/${{ needs.version.outputs.release_id }}/assets"
|
"${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/${release_id}/assets"
|
||||||
|
curl -fsS -H "Authorization: token $RELEASE_TOKEN" \
|
||||||
|
-F "attachment=@${arm_archive}.sha256" \
|
||||||
|
"${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/${release_id}/assets"
|
||||||
|
|
||||||
|
intel_bin="target/x86_64-apple-darwin/release/${{ env.BINARY_NAME }}"
|
||||||
|
intel_archive="${{ env.BINARY_NAME }}-${tag}-x86_64-macos.tar.gz"
|
||||||
|
tar -czf "$intel_archive" -C "$(dirname "$intel_bin")" "$(basename "$intel_bin")"
|
||||||
|
shasum -a 256 "$intel_archive" > "${intel_archive}.sha256"
|
||||||
|
curl -fsS -H "Authorization: token $RELEASE_TOKEN" \
|
||||||
|
-F "attachment=@${intel_archive}" \
|
||||||
|
"${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/${release_id}/assets"
|
||||||
|
curl -fsS -H "Authorization: token $RELEASE_TOKEN" \
|
||||||
|
-F "attachment=@${intel_archive}.sha256" \
|
||||||
|
"${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/${release_id}/assets"
|
||||||
|
|
||||||
- name: 飞书通知
|
- name: 飞书通知
|
||||||
if: always()
|
if: always()
|
||||||
@@ -285,8 +315,9 @@ jobs:
|
|||||||
url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}"
|
url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}"
|
||||||
result="${{ job.status }}"
|
result="${{ job.status }}"
|
||||||
if [ "$result" = "success" ]; then icon="✅"; else icon="❌"; fi
|
if [ "$result" = "success" ]; then icon="✅"; else icon="❌"; fi
|
||||||
msg="secrets macOS 构建${icon}
|
msg="secrets macOS 双架构构建${icon}
|
||||||
版本:${tag}
|
版本:${tag}
|
||||||
|
目标:aarch64-apple-darwin, x86_64-apple-darwin
|
||||||
提交:${commit}
|
提交:${commit}
|
||||||
作者:${{ github.actor }}
|
作者:${{ github.actor }}
|
||||||
详情:${url}"
|
详情:${url}"
|
||||||
@@ -302,11 +333,14 @@ jobs:
|
|||||||
- name: 安装依赖
|
- name: 安装依赖
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
|
$cargoBin = Join-Path $env:USERPROFILE ".cargo\bin"
|
||||||
if (-not (Get-Command cargo -ErrorAction SilentlyContinue)) {
|
if (-not (Get-Command cargo -ErrorAction SilentlyContinue)) {
|
||||||
Invoke-WebRequest -Uri "https://win.rustup.rs/x86_64" -OutFile rustup-init.exe
|
Invoke-WebRequest -Uri "https://win.rustup.rs/x86_64" -OutFile rustup-init.exe
|
||||||
.\rustup-init.exe -y --default-toolchain stable
|
.\rustup-init.exe -y --default-toolchain stable
|
||||||
Remove-Item rustup-init.exe
|
Remove-Item rustup-init.exe
|
||||||
}
|
}
|
||||||
|
$env:Path = "$cargoBin;$env:Path"
|
||||||
|
Add-Content -Path $env:GITHUB_PATH -Value $cargoBin
|
||||||
rustup target add x86_64-pc-windows-msvc
|
rustup target add x86_64-pc-windows-msvc
|
||||||
|
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@@ -338,10 +372,15 @@ jobs:
|
|||||||
$bin = "target\x86_64-pc-windows-msvc\release\${{ env.BINARY_NAME }}.exe"
|
$bin = "target\x86_64-pc-windows-msvc\release\${{ env.BINARY_NAME }}.exe"
|
||||||
$archive = "${{ env.BINARY_NAME }}-${tag}-x86_64-windows.zip"
|
$archive = "${{ env.BINARY_NAME }}-${tag}-x86_64-windows.zip"
|
||||||
Compress-Archive -Path $bin -DestinationPath $archive -Force
|
Compress-Archive -Path $bin -DestinationPath $archive -Force
|
||||||
|
$hash = (Get-FileHash -Algorithm SHA256 $archive).Hash.ToLower()
|
||||||
|
Set-Content -Path "${archive}.sha256" -Value "$hash $archive" -NoNewline
|
||||||
$url = "${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/${{ needs.version.outputs.release_id }}/assets"
|
$url = "${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases/${{ needs.version.outputs.release_id }}/assets"
|
||||||
Invoke-RestMethod -Uri $url -Method Post `
|
Invoke-RestMethod -Uri $url -Method Post `
|
||||||
-Headers @{ "Authorization" = "token $env:RELEASE_TOKEN" } `
|
-Headers @{ "Authorization" = "token $env:RELEASE_TOKEN" } `
|
||||||
-Form @{ attachment = Get-Item $archive }
|
-Form @{ attachment = Get-Item $archive }
|
||||||
|
Invoke-RestMethod -Uri $url -Method Post `
|
||||||
|
-Headers @{ "Authorization" = "token $env:RELEASE_TOKEN" } `
|
||||||
|
-Form @{ attachment = Get-Item "${archive}.sha256" }
|
||||||
|
|
||||||
- name: 飞书通知
|
- name: 飞书通知
|
||||||
if: always()
|
if: always()
|
||||||
@@ -362,7 +401,7 @@ jobs:
|
|||||||
|
|
||||||
publish-release:
|
publish-release:
|
||||||
name: 发布草稿 Release
|
name: 发布草稿 Release
|
||||||
needs: [version, build-linux]
|
needs: [version, build-linux, build-macos, build-windows]
|
||||||
if: always() && needs.version.outputs.release_id != ''
|
if: always() && needs.version.outputs.release_id != ''
|
||||||
runs-on: debian
|
runs-on: debian
|
||||||
timeout-minutes: 5
|
timeout-minutes: 5
|
||||||
@@ -376,8 +415,11 @@ jobs:
|
|||||||
[ -z "$RELEASE_TOKEN" ] && exit 0
|
[ -z "$RELEASE_TOKEN" ] && exit 0
|
||||||
|
|
||||||
linux_r="${{ needs.build-linux.result }}"
|
linux_r="${{ needs.build-linux.result }}"
|
||||||
if [ "$linux_r" != "success" ]; then
|
macos_r="${{ needs.build-macos.result }}"
|
||||||
echo "Linux 构建未成功 (${linux_r}),保留草稿 Release"
|
windows_r="${{ needs.build-windows.result }}"
|
||||||
|
if [ "$linux_r" != "success" ] || [ "$macos_r" != "success" ] || [ "$windows_r" != "success" ]; then
|
||||||
|
echo "存在未成功的构建任务,保留草稿 Release"
|
||||||
|
echo "linux=${linux_r} macos=${macos_r} windows=${windows_r}"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -408,15 +450,16 @@ jobs:
|
|||||||
commit=$(git log -1 --pretty=format:"%s" 2>/dev/null || echo "N/A")
|
commit=$(git log -1 --pretty=format:"%s" 2>/dev/null || echo "N/A")
|
||||||
url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}"
|
url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}"
|
||||||
|
|
||||||
check_r="${{ needs.version.result }}"
|
|
||||||
linux_r="${{ needs.build-linux.result }}"
|
linux_r="${{ needs.build-linux.result }}"
|
||||||
|
macos_r="${{ needs.build-macos.result }}"
|
||||||
|
windows_r="${{ needs.build-windows.result }}"
|
||||||
publish_r="${{ job.status }}"
|
publish_r="${{ job.status }}"
|
||||||
|
|
||||||
icon() { case "$1" in success) echo "✅";; skipped) echo "⏭";; *) echo "❌";; esac; }
|
icon() { case "$1" in success) echo "✅";; skipped) echo "⏭";; *) echo "❌";; esac; }
|
||||||
|
|
||||||
if [ "$linux_r" = "success" ] && [ "$publish_r" = "success" ]; then
|
if [ "$linux_r" = "success" ] && [ "$macos_r" = "success" ] && [ "$windows_r" = "success" ] && [ "$publish_r" = "success" ]; then
|
||||||
status="发布成功 ✅"
|
status="发布成功 ✅"
|
||||||
elif [ "$linux_r" != "success" ]; then
|
elif [ "$linux_r" != "success" ] || [ "$macos_r" != "success" ] || [ "$windows_r" != "success" ]; then
|
||||||
status="构建失败 ❌"
|
status="构建失败 ❌"
|
||||||
else
|
else
|
||||||
status="发布失败 ❌"
|
status="发布失败 ❌"
|
||||||
@@ -430,7 +473,7 @@ jobs:
|
|||||||
|
|
||||||
msg="secrets ${status}
|
msg="secrets ${status}
|
||||||
${version_line}
|
${version_line}
|
||||||
linux $(icon "$linux_r") | Release $(icon "$publish_r")
|
linux $(icon "$linux_r") | macOS $(icon "$macos_r") | windows $(icon "$windows_r") | Release $(icon "$publish_r")
|
||||||
提交:${commit}
|
提交:${commit}
|
||||||
作者:${{ github.actor }}
|
作者:${{ github.actor }}
|
||||||
详情:${url}"
|
详情:${url}"
|
||||||
|
|||||||
229
AGENTS.md
229
AGENTS.md
@@ -1,6 +1,13 @@
|
|||||||
# Secrets CLI — AGENTS.md
|
# Secrets CLI — AGENTS.md
|
||||||
|
|
||||||
跨设备密钥与配置管理 CLI 工具,将 refining / ricnsmart 两个项目的服务器信息、服务凭据存储到 PostgreSQL 18,供 AI 工具读取上下文。
|
## 提交 / 发版硬规则(优先于下文其他说明)
|
||||||
|
|
||||||
|
1. 涉及 `src/**`、`Cargo.toml`、`Cargo.lock`、CLI 行为变更的提交,默认视为**需要发版**,除非用户明确说明“本次不发版”。
|
||||||
|
2. 发版前必须先检查 `Cargo.toml` 中的 `version`,再检查是否已存在对应 tag:`git tag -l 'secrets-*'`。
|
||||||
|
3. 若当前版本对应 tag 已存在,必须先 bump `Cargo.toml` 的 `version`,再执行 `cargo build` 同步 `Cargo.lock`,然后才能提交。
|
||||||
|
4. 提交前优先运行 `./scripts/release-check.sh`;该脚本会检查重复版本并执行 `cargo fmt -- --check && cargo clippy --locked -- -D warnings && cargo test --locked`。
|
||||||
|
|
||||||
|
跨设备密钥与配置管理 CLI 工具,将 refining / ricnsmart 两个项目的服务器信息、服务凭据存储到 PostgreSQL 18,供 AI 工具读取上下文。敏感数据(encrypted 字段)使用 AES-256-GCM 加密,主密钥由 Argon2id 从主密码派生并存入平台安全存储(macOS Keychain / Windows Credential Manager / Linux keyutils)。
|
||||||
|
|
||||||
## 项目结构
|
## 项目结构
|
||||||
|
|
||||||
@@ -10,17 +17,23 @@ secrets/
|
|||||||
main.rs # CLI 入口,clap 命令定义,auto-migrate,--verbose 全局参数
|
main.rs # CLI 入口,clap 命令定义,auto-migrate,--verbose 全局参数
|
||||||
output.rs # OutputMode 枚举 + TTY 检测(TTY→text,非 TTY→json-compact)
|
output.rs # OutputMode 枚举 + TTY 检测(TTY→text,非 TTY→json-compact)
|
||||||
config.rs # 配置读写:~/.config/secrets/config.toml(database_url)
|
config.rs # 配置读写:~/.config/secrets/config.toml(database_url)
|
||||||
db.rs # PgPool 创建 + 建表/索引(幂等,含 audit_log)
|
db.rs # PgPool 创建 + 建表/索引(幂等,含 audit_log + kv_config + secrets_history)
|
||||||
models.rs # Secret 结构体(sqlx::FromRow + serde)
|
crypto.rs # AES-256-GCM 加解密、Argon2id 派生、OS 钥匙串
|
||||||
audit.rs # 审计写入:向 audit_log 表记录所有写操作
|
models.rs # Secret 结构体(sqlx::FromRow + serde,含 version 字段)
|
||||||
|
audit.rs # 审计写入:log_tx(事务内)/ log(池,保留备用)
|
||||||
commands/
|
commands/
|
||||||
add.rs # add 命令:upsert,支持 --meta key=value / --secret key=@file / -o json
|
init.rs # init 命令:主密钥初始化(每台设备一次)
|
||||||
|
add.rs # add 命令:upsert,事务化,含历史快照,支持 key:=json 类型化值
|
||||||
config.rs # config 命令:set-db / show / path(持久化 database_url)
|
config.rs # config 命令:set-db / show / path(持久化 database_url)
|
||||||
search.rs # search 命令:多条件查询,-f/-o/--summary/--limit/--offset/--sort
|
search.rs # search 命令:多条件查询,公开 fetch_rows / build_env_map
|
||||||
delete.rs # delete 命令
|
delete.rs # delete 命令:事务化,含历史快照
|
||||||
update.rs # update 命令:增量更新(合并 tags/metadata/encrypted)
|
update.rs # update 命令:增量更新,CAS 并发保护,含历史快照
|
||||||
|
rollback.rs # rollback / history 命令:版本回滚与历史查看
|
||||||
|
run.rs # inject / run 命令:临时环境变量注入
|
||||||
|
upgrade.rs # upgrade 命令:检查、校验摘要并下载最新版本,自动替换二进制
|
||||||
scripts/
|
scripts/
|
||||||
seed-data.sh # 从 refining/ricnsmart config.toml 导入全量数据
|
release-check.sh # 发版前检查版本号/tag 是否重复,并执行 fmt/clippy/test
|
||||||
|
setup-gitea-actions.sh # 配置 Gitea Actions 变量与 Secrets
|
||||||
.gitea/workflows/
|
.gitea/workflows/
|
||||||
secrets.yml # CI:fmt + clippy + musl 构建 + Release 上传 + 飞书通知
|
secrets.yml # CI:fmt + clippy + musl 构建 + Release 上传 + 飞书通知
|
||||||
.vscode/tasks.json # 本地测试任务(build / config / search / add+delete / update / audit 等)
|
.vscode/tasks.json # 本地测试任务(build / config / search / add+delete / update / audit 等)
|
||||||
@@ -31,7 +44,7 @@ secrets/
|
|||||||
- **Host**: `<host>:<port>`
|
- **Host**: `<host>:<port>`
|
||||||
- **Database**: `secrets`
|
- **Database**: `secrets`
|
||||||
- **连接串**: `postgres://postgres:<password>@<host>:<port>/secrets`
|
- **连接串**: `postgres://postgres:<password>@<host>:<port>/secrets`
|
||||||
- **表**: `secrets`(主表)+ `audit_log`(审计表),首次连接自动建表(auto-migrate)
|
- **表**: `secrets`(主表)+ `audit_log`(审计表)+ `kv_config`(Argon2 salt 等),首次连接自动建表(auto-migrate)
|
||||||
|
|
||||||
### 表结构
|
### 表结构
|
||||||
|
|
||||||
@@ -43,13 +56,38 @@ secrets (
|
|||||||
name VARCHAR(256) NOT NULL, -- 人类可读标识
|
name VARCHAR(256) NOT NULL, -- 人类可读标识
|
||||||
tags TEXT[] NOT NULL DEFAULT '{}', -- 灵活标签: ["aliyun","hongkong"]
|
tags TEXT[] NOT NULL DEFAULT '{}', -- 灵活标签: ["aliyun","hongkong"]
|
||||||
metadata JSONB NOT NULL DEFAULT '{}', -- 明文描述: ip, desc, domains, location...
|
metadata JSONB NOT NULL DEFAULT '{}', -- 明文描述: ip, desc, domains, location...
|
||||||
encrypted JSONB NOT NULL DEFAULT '{}', -- 敏感数据: ssh_key, password, token...
|
encrypted BYTEA NOT NULL DEFAULT '\x', -- AES-256-GCM 密文: nonce(12B)||ciphertext+tag
|
||||||
|
version BIGINT NOT NULL DEFAULT 1, -- 乐观锁版本号,每次写操作自增
|
||||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
UNIQUE(namespace, kind, name)
|
UNIQUE(namespace, kind, name)
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```sql
|
||||||
|
secrets_history (
|
||||||
|
id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
||||||
|
secret_id UUID NOT NULL, -- 对应 secrets.id
|
||||||
|
namespace VARCHAR(64) NOT NULL,
|
||||||
|
kind VARCHAR(64) NOT NULL,
|
||||||
|
name VARCHAR(256) NOT NULL,
|
||||||
|
version BIGINT NOT NULL, -- 被快照时的版本号
|
||||||
|
action VARCHAR(16) NOT NULL, -- 'add' | 'update' | 'delete' | 'rollback'
|
||||||
|
tags TEXT[] NOT NULL DEFAULT '{}',
|
||||||
|
metadata JSONB NOT NULL DEFAULT '{}',
|
||||||
|
encrypted BYTEA NOT NULL DEFAULT '\x', -- 快照时的加密密文
|
||||||
|
actor VARCHAR(128) NOT NULL DEFAULT '',
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
|
```sql
|
||||||
|
kv_config (
|
||||||
|
key TEXT PRIMARY KEY, -- 如 'argon2_salt'
|
||||||
|
value BYTEA NOT NULL -- Argon2id salt,首台设备 init 时生成
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
### audit_log 表结构
|
### audit_log 表结构
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
@@ -74,7 +112,7 @@ audit_log (
|
|||||||
| `name` | 唯一标识名 | `i-uf63f2uookgs5uxmrdyc`, `gitea` |
|
| `name` | 唯一标识名 | `i-uf63f2uookgs5uxmrdyc`, `gitea` |
|
||||||
| `tags` | 多维分类标签 | `["aliyun","hongkong","ricn"]` |
|
| `tags` | 多维分类标签 | `["aliyun","hongkong","ricn"]` |
|
||||||
| `metadata` | 明文非敏感信息 | `{"ip":"47.243.154.187","desc":"Grafana","domains":["..."]}` |
|
| `metadata` | 明文非敏感信息 | `{"ip":"47.243.154.187","desc":"Grafana","domains":["..."]}` |
|
||||||
| `encrypted` | 敏感凭据(MVP 阶段明文存储,后续对 value 加密) | `{"ssh_key":"-----BEGIN...","password":"..."}` |
|
| `encrypted` | 敏感凭据,AES-256-GCM 加密存储 | 二进制密文,解密后为 `{"ssh_key":"...","password":"..."}` |
|
||||||
|
|
||||||
## 数据库配置
|
## 数据库配置
|
||||||
|
|
||||||
@@ -86,8 +124,25 @@ secrets config show # 查看当前配置(密码脱敏)
|
|||||||
secrets config path # 打印配置文件路径
|
secrets config path # 打印配置文件路径
|
||||||
```
|
```
|
||||||
|
|
||||||
|
`set-db` 会先验证连接可用,成功后才写入配置文件;连接失败时提示 "Database connection failed" 且不修改配置。
|
||||||
|
|
||||||
配置文件:`~/.config/secrets/config.toml`,权限 0600。`--db-url` 参数可一次性覆盖。
|
配置文件:`~/.config/secrets/config.toml`,权限 0600。`--db-url` 参数可一次性覆盖。
|
||||||
|
|
||||||
|
## 主密钥与加密
|
||||||
|
|
||||||
|
首次使用(每台设备各执行一次):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
secrets config set-db "postgres://postgres:<password>@<host>:<port>/secrets"
|
||||||
|
secrets init # 提示输入主密码,Argon2id 派生主密钥后存入 OS 钥匙串
|
||||||
|
```
|
||||||
|
|
||||||
|
主密码不存储;salt 存于 `kv_config`,首台设备生成后共享,确保同一主密码在所有设备派生出相同主密钥。
|
||||||
|
|
||||||
|
主密钥存储后端:macOS Keychain、Windows Credential Manager、Linux keyutils(会话级,重启后需再次 `secrets init`)。
|
||||||
|
|
||||||
|
**从旧版(明文 JSONB)升级**:升级后执行 `secrets init` 即可(明文记录需手动重新 add 或通过 update 更新)。
|
||||||
|
|
||||||
## CLI 命令
|
## CLI 命令
|
||||||
|
|
||||||
### AI 使用主路径
|
### AI 使用主路径
|
||||||
@@ -102,6 +157,16 @@ secrets config path # 打印配置文件路径
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
### init — 主密钥初始化(每台设备一次)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 首次设备:生成 Argon2id salt 并存库,派生主密钥后存 OS 钥匙串
|
||||||
|
secrets init
|
||||||
|
|
||||||
|
# 后续设备:复用已有 salt,派生主密钥后存钥匙串(主密码需与首台相同)
|
||||||
|
secrets init
|
||||||
|
```
|
||||||
|
|
||||||
### search — 发现与读取
|
### search — 发现与读取
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@@ -190,6 +255,13 @@ secrets add -n refining --kind service --name gitea \
|
|||||||
secrets add -n ricnsmart --kind service --name mqtt \
|
secrets add -n ricnsmart --kind service --name mqtt \
|
||||||
-m host=mqtt.ricnsmart.com -m port=1883 \
|
-m host=mqtt.ricnsmart.com -m port=1883 \
|
||||||
-s password=@./mqtt_password.txt
|
-s password=@./mqtt_password.txt
|
||||||
|
|
||||||
|
# 使用类型化值(key:=<json>)存储非字符串类型
|
||||||
|
secrets add -n refining --kind service --name prometheus \
|
||||||
|
-m scrape_interval:=15 \
|
||||||
|
-m enabled:=true \
|
||||||
|
-m labels:='["prod","metrics"]' \
|
||||||
|
-s api_key=abc123
|
||||||
```
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
@@ -250,10 +322,116 @@ secrets delete -n ricnsmart --kind server --name i-old-server-id
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
### config — 配置管理
|
### history — 查看变更历史
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 设置数据库连接(每台设备执行一次,之后永久生效)
|
# 参数说明
|
||||||
|
# -n / --namespace refining | ricnsmart
|
||||||
|
# --kind server | service
|
||||||
|
# --name 记录名
|
||||||
|
# --limit 返回条数(默认 20)
|
||||||
|
|
||||||
|
# 查看某条记录的历史版本列表
|
||||||
|
secrets history -n refining --kind service --name gitea
|
||||||
|
|
||||||
|
# 查最近 5 条
|
||||||
|
secrets history -n refining --kind service --name gitea --limit 5
|
||||||
|
|
||||||
|
# JSON 输出
|
||||||
|
secrets history -n refining --kind service --name gitea -o json
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### rollback — 回滚到指定版本
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 参数说明
|
||||||
|
# -n / --namespace refining | ricnsmart
|
||||||
|
# --kind server | service
|
||||||
|
# --name 记录名
|
||||||
|
# --to-version <N> 目标版本号(省略则恢复最近一次快照)
|
||||||
|
|
||||||
|
# 撤销上次修改(回滚到最近一次快照)
|
||||||
|
secrets rollback -n refining --kind service --name gitea
|
||||||
|
|
||||||
|
# 回滚到版本 3
|
||||||
|
secrets rollback -n refining --kind service --name gitea --to-version 3
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### inject — 输出临时环境变量
|
||||||
|
|
||||||
|
敏感值仅打印到 stdout,不持久化、不写入当前 shell。
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 参数说明
|
||||||
|
# -n / --namespace refining | ricnsmart
|
||||||
|
# --kind server | service
|
||||||
|
# --name 记录名
|
||||||
|
# --tag 按 tag 过滤(可重复)
|
||||||
|
# --prefix 变量名前缀(留空则以记录 name 作前缀)
|
||||||
|
# -o / --output text(默认 KEY=VALUE)| json | json-compact
|
||||||
|
|
||||||
|
# 打印单条记录的所有变量(KEY=VALUE 格式)
|
||||||
|
secrets inject -n refining --kind service --name gitea
|
||||||
|
|
||||||
|
# 自定义前缀
|
||||||
|
secrets inject -n refining --kind service --name gitea --prefix GITEA
|
||||||
|
|
||||||
|
# JSON 格式(适合管道或脚本解析)
|
||||||
|
secrets inject -n refining --kind service --name gitea -o json
|
||||||
|
|
||||||
|
# eval 注入当前 shell(谨慎使用)
|
||||||
|
eval $(secrets inject -n refining --kind service --name gitea)
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### run — 向子进程注入 secrets 并执行命令
|
||||||
|
|
||||||
|
secrets 仅作用于子进程环境,不修改当前 shell,进程退出码透传。
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 参数说明
|
||||||
|
# -n / --namespace refining | ricnsmart
|
||||||
|
# --kind server | service
|
||||||
|
# --name 记录名
|
||||||
|
# --tag 按 tag 过滤(可重复)
|
||||||
|
# --prefix 变量名前缀
|
||||||
|
# -- <command> 执行的命令及参数
|
||||||
|
|
||||||
|
# 向脚本注入单条记录的 secrets
|
||||||
|
secrets run -n refining --kind service --name gitea -- ./deploy.sh
|
||||||
|
|
||||||
|
# 按 tag 批量注入(多条记录合并)
|
||||||
|
secrets run --tag production -- env | grep -i token
|
||||||
|
|
||||||
|
# 验证注入了哪些变量
|
||||||
|
secrets run -n refining --kind service --name gitea -- printenv
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### upgrade — 自动更新 CLI 二进制
|
||||||
|
|
||||||
|
从 Gitea Release 下载最新版本,校验对应 `.sha256` 摘要后替换当前二进制,无需数据库连接或主密钥。
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 检查是否有新版本(不下载)
|
||||||
|
secrets upgrade --check
|
||||||
|
|
||||||
|
# 下载、校验 SHA-256 并安装最新版本
|
||||||
|
secrets upgrade
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### config — 配置管理(无需主密钥)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 设置数据库连接(每台设备执行一次,之后永久生效;先验证连接可用再写入)
|
||||||
secrets config set-db "postgres://postgres:<password>@<host>:<port>/secrets"
|
secrets config set-db "postgres://postgres:<password>@<host>:<port>/secrets"
|
||||||
|
|
||||||
# 查看当前配置(密码脱敏)
|
# 查看当前配置(密码脱敏)
|
||||||
@@ -288,16 +466,25 @@ secrets --db-url "postgres://..." search -n refining
|
|||||||
- 新增 `kind` 类型时:只需在 `add` 调用时传入,无需改代码
|
- 新增 `kind` 类型时:只需在 `add` 调用时传入,无需改代码
|
||||||
- 字段命名:CLI 短标志 `-n`=namespace,`-m`=meta,`-s`=secret,`-q`=query,`-v`=verbose,`-f`=field,`-o`=output
|
- 字段命名:CLI 短标志 `-n`=namespace,`-m`=meta,`-s`=secret,`-q`=query,`-v`=verbose,`-f`=field,`-o`=output
|
||||||
- 日志:用户可见输出用 `println!`;调试/运维信息用 `tracing::debug!`/`info!`/`warn!`/`error!`
|
- 日志:用户可见输出用 `println!`;调试/运维信息用 `tracing::debug!`/`info!`/`warn!`/`error!`
|
||||||
- 审计:`add`/`update`/`delete` 成功后调用 `audit::log()`,写入 `audit_log` 表;失败只 warn 不中断
|
- 审计:`add`/`update`/`delete` 成功后调用 `audit::log_tx`,写入 `audit_log` 表;失败只 warn 不中断
|
||||||
|
- 加密:`encrypted` 列存储 AES-256-GCM 密文;`add`/`update`/`search`/`delete` 需主密钥(`secrets init` 后从 OS 钥匙串加载)
|
||||||
- 输出:读命令通过 `OutputMode` 支持 text/json/json-compact/env;写命令 `add` 同样支持 `-o json`
|
- 输出:读命令通过 `OutputMode` 支持 text/json/json-compact/env;写命令 `add` 同样支持 `-o json`
|
||||||
|
|
||||||
## 提交前检查(必须全部通过)
|
## 提交前检查(必须全部通过)
|
||||||
|
|
||||||
每次提交代码前,请在本地依次执行以下检查,**全部通过后再 push**:
|
每次提交代码前,请在本地依次执行以下检查,**全部通过后再 push**:
|
||||||
|
|
||||||
|
优先使用:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./scripts/release-check.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
它等价于先检查版本号 / tag,再执行下面的格式、Lint、测试。
|
||||||
|
|
||||||
### 1. 版本号(按需)
|
### 1. 版本号(按需)
|
||||||
|
|
||||||
若本次改动需要发版,请先确认 `Cargo.toml` 中的 `version` 已提升,避免 CI 打出的 Tag 与已有版本重复。可通过 git tag 判断:
|
若本次改动需要发版,请先确认 `Cargo.toml` 中的 `version` 已提升,避免 CI 打出的 Tag 与已有版本重复。**升级版本后需同时更新 `Cargo.lock`**(运行 `cargo build` 即可自动同步),否则 CI 中 `cargo clippy --locked` 会因 lock 与 manifest 不一致而失败。可通过 git tag 判断:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 查看当前 Cargo.toml 版本
|
# 查看当前 Cargo.toml 版本
|
||||||
@@ -307,7 +494,7 @@ grep '^version' Cargo.toml
|
|||||||
git tag -l 'secrets-*'
|
git tag -l 'secrets-*'
|
||||||
```
|
```
|
||||||
|
|
||||||
若当前版本已被 tag(例如已有 `secrets-0.3.0` 且 `Cargo.toml` 仍为 `0.3.0`),则应在 `Cargo.toml` 中 bump 版本号后再提交,以便 CI 自动打新 Tag 并发布 Release。
|
若当前版本已被 tag(例如已有 `secrets-0.3.0` 且 `Cargo.toml` 仍为 `0.3.0`),则应在 `Cargo.toml` 中 bump 版本号,再执行 `cargo build` 同步 `Cargo.lock`,最后一并提交,以便 CI 自动打新 Tag 并发布 Release。
|
||||||
|
|
||||||
### 2. 格式、Lint、测试
|
### 2. 格式、Lint、测试
|
||||||
|
|
||||||
@@ -325,12 +512,14 @@ cargo fmt -- --check && cargo clippy -- -D warnings && cargo test
|
|||||||
|
|
||||||
## CI/CD
|
## CI/CD
|
||||||
|
|
||||||
- Gitea Actions(runner: debian)
|
- Gitea Actions(runners: debian / darwin-arm64 / windows)
|
||||||
- 触发:`src/**`、`Cargo.toml`、`Cargo.lock` 变更推送到 main
|
- 触发:`src/**`、`Cargo.toml`、`Cargo.lock` 变更推送到 main
|
||||||
- 构建目标:`x86_64-unknown-linux-musl`(静态链接,无 glibc 依赖)
|
- 构建目标:`x86_64-unknown-linux-musl`、`aarch64-apple-darwin`、`x86_64-apple-darwin`(由 ARM mac runner 交叉编译)、`x86_64-pc-windows-msvc`
|
||||||
- 新版本自动打 Tag(格式 `secrets-<version>`)并上传二进制到 Gitea Release
|
- 新版本自动打 Tag(格式 `secrets-<version>`)并上传二进制与对应 `.sha256` 摘要到 Gitea Release
|
||||||
|
- Release 仅在 Linux/macOS/Windows 构建全部成功后才会从 draft 发布
|
||||||
- 通知:飞书 Webhook(`vars.WEBHOOK_URL`)
|
- 通知:飞书 Webhook(`vars.WEBHOOK_URL`)
|
||||||
- 所需 secrets/vars:`RELEASE_TOKEN`(Release 上传,Gitea PAT)、`vars.WEBHOOK_URL`(通知,可选)
|
- 所需 secrets/vars:`RELEASE_TOKEN`(Release 上传,Gitea PAT)、`vars.WEBHOOK_URL`(通知,可选)
|
||||||
|
- **注意**:Gitea Actions 的 Secret/Variable 创建时,`data`/`value` 字段需传入**原始值**,不要使用 base64 编码
|
||||||
|
|
||||||
## 环境变量
|
## 环境变量
|
||||||
|
|
||||||
|
|||||||
962
Cargo.lock
generated
962
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
19
Cargo.toml
19
Cargo.toml
@@ -1,18 +1,31 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "secrets"
|
name = "secrets"
|
||||||
version = "0.4.0"
|
version = "0.7.2"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
aes-gcm = "0.10.3"
|
||||||
anyhow = "1.0.102"
|
anyhow = "1.0.102"
|
||||||
|
argon2 = { version = "0.5.3", features = ["std"] }
|
||||||
chrono = { version = "0.4.44", features = ["serde"] }
|
chrono = { version = "0.4.44", features = ["serde"] }
|
||||||
clap = { version = "4.6.0", features = ["derive", "env"] }
|
clap = { version = "4.6.0", features = ["derive"] }
|
||||||
dirs = "6.0.0"
|
dirs = "6.0.0"
|
||||||
|
flate2 = "1.1.9"
|
||||||
|
keyring = { version = "3.6.3", features = ["apple-native", "windows-native", "linux-native"] }
|
||||||
|
rand = "0.10.0"
|
||||||
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
|
||||||
|
rpassword = "7.4.0"
|
||||||
|
self-replace = "1.5.0"
|
||||||
|
semver = "1.0.27"
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { version = "1.0.228", features = ["derive"] }
|
||||||
serde_json = "1.0.149"
|
serde_json = "1.0.149"
|
||||||
|
sha2 = "0.10.9"
|
||||||
sqlx = { version = "0.8.6", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "json", "chrono"] }
|
sqlx = { version = "0.8.6", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "json", "chrono"] }
|
||||||
|
tar = "0.4.44"
|
||||||
|
tempfile = "3.19"
|
||||||
tokio = { version = "1.50.0", features = ["full"] }
|
tokio = { version = "1.50.0", features = ["full"] }
|
||||||
toml = "1.0.7"
|
toml = "1.0.7"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||||
uuid = { version = "1.22.0", features = ["serde", "v4"] }
|
uuid = { version = "1.22.0", features = ["serde"] }
|
||||||
|
zip = { version = "8.2.0", default-features = false, features = ["deflate"] }
|
||||||
|
|||||||
47
README.md
47
README.md
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
跨设备密钥与配置管理 CLI,基于 Rust + PostgreSQL 18。
|
跨设备密钥与配置管理 CLI,基于 Rust + PostgreSQL 18。
|
||||||
|
|
||||||
将服务器信息、服务凭据统一存入数据库,供本地工具和 AI 读取上下文。
|
将服务器信息、服务凭据统一存入数据库,供本地工具和 AI 读取上下文。敏感数据(`encrypted` 字段)使用 AES-256-GCM 加密存储,主密钥由 Argon2id 从主密码派生并存入系统钥匙串。
|
||||||
|
|
||||||
## 安装
|
## 安装
|
||||||
|
|
||||||
@@ -11,12 +11,24 @@ cargo build --release
|
|||||||
# 或从 Release 页面下载预编译二进制
|
# 或从 Release 页面下载预编译二进制
|
||||||
```
|
```
|
||||||
|
|
||||||
配置数据库连接(首次使用需执行一次,之后在该设备上持久生效):
|
已有旧版本时,可执行 `secrets upgrade` 自动下载最新版并替换。该命令会校验 Release 附带的 `.sha256` 摘要后再安装。
|
||||||
|
|
||||||
|
## 首次使用(每台设备各执行一次)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# 1. 配置数据库连接(会先验证连接可用再写入)
|
||||||
secrets config set-db "postgres://postgres:<password>@<host>:<port>/secrets"
|
secrets config set-db "postgres://postgres:<password>@<host>:<port>/secrets"
|
||||||
|
|
||||||
|
# 2. 初始化主密钥(提示输入至少 8 位的主密码,派生后存入 OS 钥匙串)
|
||||||
|
secrets init
|
||||||
```
|
```
|
||||||
|
|
||||||
|
主密码不会存储,仅用于派生主密钥,且至少需 8 位。同一主密码在所有设备上会得到相同主密钥(salt 存于数据库,首台设备生成后共享)。
|
||||||
|
|
||||||
|
**主密钥存储**:macOS → Keychain;Windows → Credential Manager;Linux → keyutils(会话级,重启后需再次 `secrets init`)。
|
||||||
|
|
||||||
|
**从旧版(明文存储)升级**:升级后首次运行需执行 `secrets init` 即可(明文记录需手动重新 add 或通过 update 更新)。
|
||||||
|
|
||||||
## AI Agent 快速指南
|
## AI Agent 快速指南
|
||||||
|
|
||||||
这个 CLI 以 AI 使用优先设计。核心路径只有一条:**读取用 `search`,写入用 `add` / `update`**。
|
这个 CLI 以 AI 使用优先设计。核心路径只有一条:**读取用 `search`,写入用 `add` / `update`**。
|
||||||
@@ -80,11 +92,13 @@ secrets search -n refining --kind service --name gitea -o env --show-secrets \
|
|||||||
```bash
|
```bash
|
||||||
# 查看帮助(包含各子命令 EXAMPLES)
|
# 查看帮助(包含各子命令 EXAMPLES)
|
||||||
secrets --help
|
secrets --help
|
||||||
|
secrets init --help # 主密钥初始化
|
||||||
secrets search --help
|
secrets search --help
|
||||||
secrets add --help
|
secrets add --help
|
||||||
secrets update --help
|
secrets update --help
|
||||||
secrets delete --help
|
secrets delete --help
|
||||||
secrets config --help
|
secrets config --help
|
||||||
|
secrets upgrade --help # 检查并更新 CLI 版本
|
||||||
|
|
||||||
# ── search ──────────────────────────────────────────────────────────────────
|
# ── search ──────────────────────────────────────────────────────────────────
|
||||||
secrets search --summary --limit 20 # 发现概览
|
secrets search --summary --limit 20 # 发现概览
|
||||||
@@ -116,11 +130,18 @@ secrets update -n refining --kind service --name mqtt --remove-meta old_port --r
|
|||||||
# ── delete ───────────────────────────────────────────────────────────────────
|
# ── delete ───────────────────────────────────────────────────────────────────
|
||||||
secrets delete -n refining --kind service --name legacy-mqtt
|
secrets delete -n refining --kind service --name legacy-mqtt
|
||||||
|
|
||||||
|
# ── init ─────────────────────────────────────────────────────────────────────
|
||||||
|
secrets init # 主密钥初始化(每台设备一次,主密码至少 8 位,派生后存钥匙串)
|
||||||
|
|
||||||
# ── config ───────────────────────────────────────────────────────────────────
|
# ── config ───────────────────────────────────────────────────────────────────
|
||||||
secrets config set-db "postgres://postgres:<password>@<host>:<port>/secrets"
|
secrets config set-db "postgres://postgres:<password>@<host>:<port>/secrets" # 先验证再写入
|
||||||
secrets config show # 密码脱敏展示
|
secrets config show # 密码脱敏展示
|
||||||
secrets config path # 打印配置文件路径
|
secrets config path # 打印配置文件路径
|
||||||
|
|
||||||
|
# ── upgrade ──────────────────────────────────────────────────────────────────
|
||||||
|
secrets upgrade --check # 仅检查是否有新版本
|
||||||
|
secrets upgrade # 下载、校验 SHA-256 并安装最新版(从 Gitea Release)
|
||||||
|
|
||||||
# ── 调试 ──────────────────────────────────────────────────────────────────────
|
# ── 调试 ──────────────────────────────────────────────────────────────────────
|
||||||
secrets --verbose search -q mqtt
|
secrets --verbose search -q mqtt
|
||||||
RUST_LOG=secrets=trace secrets search
|
RUST_LOG=secrets=trace secrets search
|
||||||
@@ -137,9 +158,9 @@ RUST_LOG=secrets=trace secrets search
|
|||||||
| `name` | 人类可读唯一标识 |
|
| `name` | 人类可读唯一标识 |
|
||||||
| `tags` | 多维标签,如 `["aliyun","hongkong"]` |
|
| `tags` | 多维标签,如 `["aliyun","hongkong"]` |
|
||||||
| `metadata` | 明文描述信息(ip、desc、domains 等) |
|
| `metadata` | 明文描述信息(ip、desc、domains 等) |
|
||||||
| `encrypted` | 敏感凭据(ssh_key、password、token 等),MVP 阶段明文存储,预留加密字段 |
|
| `encrypted` | 敏感凭据(ssh_key、password、token 等),AES-256-GCM 加密存储 |
|
||||||
|
|
||||||
`-m` / `--meta` 写入 `metadata`,`-s` / `--secret` 写入 `encrypted`,`value=@file` 从文件读取内容。
|
`-m` / `--meta` 写入 `metadata`,`-s` / `--secret` 写入 `encrypted`,`value=@file` 从文件读取内容。加解密使用主密钥(由 `secrets init` 设置)。
|
||||||
|
|
||||||
## 审计日志
|
## 审计日志
|
||||||
|
|
||||||
@@ -160,22 +181,25 @@ src/
|
|||||||
main.rs # CLI 入口(clap),含各子命令 after_help 示例
|
main.rs # CLI 入口(clap),含各子命令 after_help 示例
|
||||||
output.rs # OutputMode 枚举 + TTY 检测
|
output.rs # OutputMode 枚举 + TTY 检测
|
||||||
config.rs # 配置读写(~/.config/secrets/config.toml)
|
config.rs # 配置读写(~/.config/secrets/config.toml)
|
||||||
db.rs # 连接池 + auto-migrate(secrets + audit_log)
|
db.rs # 连接池 + auto-migrate(secrets + audit_log + kv_config)
|
||||||
|
crypto.rs # AES-256-GCM 加解密、Argon2id 派生、OS 钥匙串
|
||||||
models.rs # Secret 结构体
|
models.rs # Secret 结构体
|
||||||
audit.rs # 审计日志写入(audit_log 表)
|
audit.rs # 审计日志写入(audit_log 表)
|
||||||
commands/
|
commands/
|
||||||
|
init.rs # 主密钥初始化(首次/新设备)
|
||||||
add.rs # upsert,支持 -o json
|
add.rs # upsert,支持 -o json
|
||||||
config.rs # config set-db/show/path
|
config.rs # config set-db/show/path
|
||||||
search.rs # 多条件查询,支持 -f/-o/--summary/--limit/--offset/--sort
|
search.rs # 多条件查询,支持 -f/-o/--summary/--limit/--offset/--sort
|
||||||
delete.rs # 删除
|
delete.rs # 删除
|
||||||
update.rs # 增量更新(合并 tags/metadata/encrypted)
|
update.rs # 增量更新(合并 tags/metadata/encrypted)
|
||||||
|
upgrade.rs # 从 Gitea Release 自更新
|
||||||
scripts/
|
scripts/
|
||||||
seed-data.sh # 导入 refining / ricnsmart 全量数据
|
setup-gitea-actions.sh # 配置 Gitea Actions 变量与 Secrets
|
||||||
```
|
```
|
||||||
|
|
||||||
## CI/CD(Gitea Actions)
|
## CI/CD(Gitea Actions)
|
||||||
|
|
||||||
推送 `main` 分支时自动:fmt/clippy 检查 → musl 构建 → 创建 Release 并上传二进制。
|
推送 `main` 分支时自动:fmt/clippy/test 检查 → Linux/macOS/Windows 构建 → 上传二进制与 `.sha256` 摘要 → 所有平台成功后发布 Release。
|
||||||
|
|
||||||
**首次使用需配置 Actions 变量和 Secrets:**
|
**首次使用需配置 Actions 变量和 Secrets:**
|
||||||
|
|
||||||
@@ -186,5 +210,12 @@ scripts/
|
|||||||
|
|
||||||
- `RELEASE_TOKEN`(Secret):Gitea PAT,用于创建 Release 上传二进制
|
- `RELEASE_TOKEN`(Secret):Gitea PAT,用于创建 Release 上传二进制
|
||||||
- `WEBHOOK_URL`(Variable):飞书通知,可选
|
- `WEBHOOK_URL`(Variable):飞书通知,可选
|
||||||
|
- **注意**:Secret/Variable 的 `data`/`value` 字段需传入原始值,不要 base64 编码
|
||||||
|
|
||||||
|
当前 Release 预编译产物覆盖:
|
||||||
|
- Linux `x86_64-unknown-linux-musl`
|
||||||
|
- macOS Apple Silicon `aarch64-apple-darwin`
|
||||||
|
- macOS Intel `x86_64-apple-darwin`(由 ARM mac runner 交叉编译)
|
||||||
|
- Windows `x86_64-pc-windows-msvc`
|
||||||
|
|
||||||
详见 [AGENTS.md](AGENTS.md)。
|
详见 [AGENTS.md](AGENTS.md)。
|
||||||
|
|||||||
23
scripts/release-check.sh
Executable file
23
scripts/release-check.sh
Executable file
@@ -0,0 +1,23 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||||
|
cd "$repo_root"
|
||||||
|
|
||||||
|
version="$(grep -m1 '^version' Cargo.toml | sed 's/.*"\(.*\)".*/\1/')"
|
||||||
|
tag="secrets-${version}"
|
||||||
|
|
||||||
|
echo "==> 当前版本: ${version}"
|
||||||
|
echo "==> 检查是否已存在 tag: ${tag}"
|
||||||
|
|
||||||
|
if git rev-parse "refs/tags/${tag}" >/dev/null 2>&1; then
|
||||||
|
echo "错误: 已存在 tag ${tag}"
|
||||||
|
echo "请先 bump Cargo.toml 中的 version,再执行 cargo build 同步 Cargo.lock。"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "==> 未发现重复 tag,开始执行检查"
|
||||||
|
cargo fmt -- --check
|
||||||
|
cargo clippy --locked -- -D warnings
|
||||||
|
cargo test --locked
|
||||||
@@ -7,7 +7,9 @@
|
|||||||
# - secrets.RELEASE_TOKEN (必选) Release 上传用,值为 Gitea PAT
|
# - secrets.RELEASE_TOKEN (必选) Release 上传用,值为 Gitea PAT
|
||||||
# - vars.WEBHOOK_URL (可选) 飞书通知
|
# - vars.WEBHOOK_URL (可选) 飞书通知
|
||||||
#
|
#
|
||||||
# 注意: Gitea 不允许 secret/variable 名以 GITEA_ 或 GITHUB_ 开头,故使用 RELEASE_TOKEN
|
# 注意:
|
||||||
|
# - Gitea 不允许 secret/variable 名以 GITEA_ 或 GITHUB_ 开头,故使用 RELEASE_TOKEN
|
||||||
|
# - Secret/Variable 的 data/value 字段需传入原始值,不要使用 base64 编码
|
||||||
#
|
#
|
||||||
# 用法:
|
# 用法:
|
||||||
# 1. 从 ~/.config/gitea/config.env 读取 GITEA_URL, GITEA_TOKEN, GITEA_WEBHOOK_URL
|
# 1. 从 ~/.config/gitea/config.env 读取 GITEA_URL, GITEA_TOKEN, GITEA_WEBHOOK_URL
|
||||||
@@ -108,11 +110,13 @@ echo "━━━━━━━━━━━━━━━━━━━━━━━━
|
|||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
# 1. 创建 Secret: RELEASE_TOKEN
|
# 1. 创建 Secret: RELEASE_TOKEN
|
||||||
|
# 注意: Gitea Actions API 的 data 字段需传入原始值,不要使用 base64 编码
|
||||||
echo "1. 创建 Secret: RELEASE_TOKEN"
|
echo "1. 创建 Secret: RELEASE_TOKEN"
|
||||||
|
secret_payload=$(jq -n --arg t "$GITEA_TOKEN" '{data: $t}')
|
||||||
resp=$(curl -s -w "\n%{http_code}" -X PUT \
|
resp=$(curl -s -w "\n%{http_code}" -X PUT \
|
||||||
-H "Authorization: token $GITEA_TOKEN" \
|
-H "Authorization: token $GITEA_TOKEN" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-d "{\"data\":\"${GITEA_TOKEN}\"}" \
|
-d "$secret_payload" \
|
||||||
"${API_BASE}/repos/${OWNER}/${REPO}/actions/secrets/RELEASE_TOKEN")
|
"${API_BASE}/repos/${OWNER}/${REPO}/actions/secrets/RELEASE_TOKEN")
|
||||||
http_code=$(echo "$resp" | tail -n1)
|
http_code=$(echo "$resp" | tail -n1)
|
||||||
body=$(echo "$resp" | sed '$d')
|
body=$(echo "$resp" | sed '$d')
|
||||||
@@ -126,14 +130,16 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# 2. 创建/更新 Variable: WEBHOOK_URL(可选)
|
# 2. 创建/更新 Variable: WEBHOOK_URL(可选)
|
||||||
|
# 注意: Secret 和 Variable 均使用原始值,不要 base64 编码
|
||||||
WEBHOOK_VALUE="${WEBHOOK_URL:-$GITEA_WEBHOOK_URL}"
|
WEBHOOK_VALUE="${WEBHOOK_URL:-$GITEA_WEBHOOK_URL}"
|
||||||
if [[ -n "$WEBHOOK_VALUE" ]]; then
|
if [[ -n "$WEBHOOK_VALUE" ]]; then
|
||||||
echo ""
|
echo ""
|
||||||
echo "2. 创建/更新 Variable: WEBHOOK_URL"
|
echo "2. 创建/更新 Variable: WEBHOOK_URL"
|
||||||
|
var_payload=$(jq -n --arg v "$WEBHOOK_VALUE" '{value: $v}')
|
||||||
resp=$(curl -s -w "\n%{http_code}" -X POST \
|
resp=$(curl -s -w "\n%{http_code}" -X POST \
|
||||||
-H "Authorization: token $GITEA_TOKEN" \
|
-H "Authorization: token $GITEA_TOKEN" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-d "{\"value\":\"${WEBHOOK_VALUE}\"}" \
|
-d "$var_payload" \
|
||||||
"${API_BASE}/repos/${OWNER}/${REPO}/actions/variables/WEBHOOK_URL")
|
"${API_BASE}/repos/${OWNER}/${REPO}/actions/variables/WEBHOOK_URL")
|
||||||
http_code=$(echo "$resp" | tail -n1)
|
http_code=$(echo "$resp" | tail -n1)
|
||||||
body=$(echo "$resp" | sed '$d')
|
body=$(echo "$resp" | sed '$d')
|
||||||
@@ -145,7 +151,7 @@ if [[ -n "$WEBHOOK_VALUE" ]]; then
|
|||||||
resp=$(curl -s -w "\n%{http_code}" -X PUT \
|
resp=$(curl -s -w "\n%{http_code}" -X PUT \
|
||||||
-H "Authorization: token $GITEA_TOKEN" \
|
-H "Authorization: token $GITEA_TOKEN" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-d "{\"value\":\"${WEBHOOK_VALUE}\"}" \
|
-d "$var_payload" \
|
||||||
"${API_BASE}/repos/${OWNER}/${REPO}/actions/variables/WEBHOOK_URL")
|
"${API_BASE}/repos/${OWNER}/${REPO}/actions/variables/WEBHOOK_URL")
|
||||||
http_code=$(echo "$resp" | tail -n1)
|
http_code=$(echo "$resp" | tail -n1)
|
||||||
if [[ "$http_code" == "200" || "$http_code" == "204" ]]; then
|
if [[ "$http_code" == "200" || "$http_code" == "204" ]]; then
|
||||||
|
|||||||
12
src/audit.rs
12
src/audit.rs
@@ -1,11 +1,9 @@
|
|||||||
use anyhow::Result;
|
|
||||||
use serde_json::Value;
|
use serde_json::Value;
|
||||||
use sqlx::PgPool;
|
use sqlx::{Postgres, Transaction};
|
||||||
|
|
||||||
/// Write an audit entry for a write operation. Failures are logged as warnings
|
/// Write an audit entry within an existing transaction.
|
||||||
/// and do not interrupt the main flow.
|
pub async fn log_tx(
|
||||||
pub async fn log(
|
tx: &mut Transaction<'_, Postgres>,
|
||||||
pool: &PgPool,
|
|
||||||
action: &str,
|
action: &str,
|
||||||
namespace: &str,
|
namespace: &str,
|
||||||
kind: &str,
|
kind: &str,
|
||||||
@@ -23,7 +21,7 @@ pub async fn log(
|
|||||||
.bind(name)
|
.bind(name)
|
||||||
.bind(&detail)
|
.bind(&detail)
|
||||||
.bind(&actor)
|
.bind(&actor)
|
||||||
.execute(pool)
|
.execute(&mut **tx)
|
||||||
.await;
|
.await;
|
||||||
|
|
||||||
if let Err(e) = result {
|
if let Err(e) = result {
|
||||||
|
|||||||
@@ -3,13 +3,31 @@ use serde_json::{Map, Value, json};
|
|||||||
use sqlx::PgPool;
|
use sqlx::PgPool;
|
||||||
use std::fs;
|
use std::fs;
|
||||||
|
|
||||||
|
use crate::crypto;
|
||||||
|
use crate::db;
|
||||||
use crate::output::OutputMode;
|
use crate::output::OutputMode;
|
||||||
|
|
||||||
/// Parse "key=value" entries. Value starting with '@' reads from file.
|
/// Parse "key=value" or "key:=<json>" entries.
|
||||||
pub(crate) fn parse_kv(entry: &str) -> Result<(String, String)> {
|
/// - `key=value` → stores the literal string `value`
|
||||||
|
/// - `key:=<json>` → parses `<json>` as a typed JSON value (number, bool, null, array, object)
|
||||||
|
/// - `value=@file` → reads the file content as a string (only for `=` form)
|
||||||
|
pub(crate) fn parse_kv(entry: &str) -> Result<(String, Value)> {
|
||||||
|
// Typed JSON form: key:=<json>
|
||||||
|
if let Some((key, json_str)) = entry.split_once(":=") {
|
||||||
|
let val: Value = serde_json::from_str(json_str).map_err(|e| {
|
||||||
|
anyhow::anyhow!(
|
||||||
|
"Invalid JSON value for key '{}': {} (use key=value for plain strings)",
|
||||||
|
key,
|
||||||
|
e
|
||||||
|
)
|
||||||
|
})?;
|
||||||
|
return Ok((key.to_string(), val));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Plain string form: key=value or key=@file
|
||||||
let (key, raw_val) = entry.split_once('=').ok_or_else(|| {
|
let (key, raw_val) = entry.split_once('=').ok_or_else(|| {
|
||||||
anyhow::anyhow!(
|
anyhow::anyhow!(
|
||||||
"Invalid format '{}'. Expected: key=value or key=@file",
|
"Invalid format '{}'. Expected: key=value, key=@file, or key:=<json>",
|
||||||
entry
|
entry
|
||||||
)
|
)
|
||||||
})?;
|
})?;
|
||||||
@@ -21,14 +39,14 @@ pub(crate) fn parse_kv(entry: &str) -> Result<(String, String)> {
|
|||||||
raw_val.to_string()
|
raw_val.to_string()
|
||||||
};
|
};
|
||||||
|
|
||||||
Ok((key.to_string(), value))
|
Ok((key.to_string(), Value::String(value)))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn build_json(entries: &[String]) -> Result<Value> {
|
pub(crate) fn build_json(entries: &[String]) -> Result<Value> {
|
||||||
let mut map = Map::new();
|
let mut map = Map::new();
|
||||||
for entry in entries {
|
for entry in entries {
|
||||||
let (key, value) = parse_kv(entry)?;
|
let (key, value) = parse_kv(entry)?;
|
||||||
map.insert(key, Value::String(value));
|
map.insert(key, value);
|
||||||
}
|
}
|
||||||
Ok(Value::Object(map))
|
Ok(Value::Object(map))
|
||||||
}
|
}
|
||||||
@@ -43,21 +61,75 @@ pub struct AddArgs<'a> {
|
|||||||
pub output: OutputMode,
|
pub output: OutputMode,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn run(pool: &PgPool, args: AddArgs<'_>) -> Result<()> {
|
pub async fn run(pool: &PgPool, args: AddArgs<'_>, master_key: &[u8; 32]) -> Result<()> {
|
||||||
let metadata = build_json(args.meta_entries)?;
|
let metadata = build_json(args.meta_entries)?;
|
||||||
let encrypted = build_json(args.secret_entries)?;
|
let secret_json = build_json(args.secret_entries)?;
|
||||||
|
let encrypted_bytes = crypto::encrypt_json(master_key, &secret_json)?;
|
||||||
|
|
||||||
tracing::debug!(args.namespace, args.kind, args.name, "upserting record");
|
tracing::debug!(args.namespace, args.kind, args.name, "upserting record");
|
||||||
|
|
||||||
|
let meta_keys: Vec<&str> = args
|
||||||
|
.meta_entries
|
||||||
|
.iter()
|
||||||
|
.filter_map(|s| s.split_once(['=', ':']).map(|(k, _)| k))
|
||||||
|
.collect();
|
||||||
|
let secret_keys: Vec<&str> = args
|
||||||
|
.secret_entries
|
||||||
|
.iter()
|
||||||
|
.filter_map(|s| s.split_once(['=', ':']).map(|(k, _)| k))
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
let mut tx = pool.begin().await?;
|
||||||
|
|
||||||
|
// Snapshot existing row into history before overwriting (if it exists).
|
||||||
|
#[derive(sqlx::FromRow)]
|
||||||
|
struct ExistingRow {
|
||||||
|
id: uuid::Uuid,
|
||||||
|
version: i64,
|
||||||
|
tags: Vec<String>,
|
||||||
|
metadata: serde_json::Value,
|
||||||
|
encrypted: Vec<u8>,
|
||||||
|
}
|
||||||
|
let existing: Option<ExistingRow> = sqlx::query_as(
|
||||||
|
"SELECT id, version, tags, metadata, encrypted FROM secrets \
|
||||||
|
WHERE namespace = $1 AND kind = $2 AND name = $3",
|
||||||
|
)
|
||||||
|
.bind(args.namespace)
|
||||||
|
.bind(args.kind)
|
||||||
|
.bind(args.name)
|
||||||
|
.fetch_optional(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
if let Some(ex) = existing
|
||||||
|
&& let Err(e) = db::snapshot_history(
|
||||||
|
&mut tx,
|
||||||
|
db::SnapshotParams {
|
||||||
|
secret_id: ex.id,
|
||||||
|
namespace: args.namespace,
|
||||||
|
kind: args.kind,
|
||||||
|
name: args.name,
|
||||||
|
version: ex.version,
|
||||||
|
action: "add",
|
||||||
|
tags: &ex.tags,
|
||||||
|
metadata: &ex.metadata,
|
||||||
|
encrypted: &ex.encrypted,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
tracing::warn!(error = %e, "failed to snapshot history before upsert");
|
||||||
|
}
|
||||||
|
|
||||||
sqlx::query(
|
sqlx::query(
|
||||||
r#"
|
r#"
|
||||||
INSERT INTO secrets (namespace, kind, name, tags, metadata, encrypted, updated_at)
|
INSERT INTO secrets (namespace, kind, name, tags, metadata, encrypted, version, updated_at)
|
||||||
VALUES ($1, $2, $3, $4, $5, $6, NOW())
|
VALUES ($1, $2, $3, $4, $5, $6, 1, NOW())
|
||||||
ON CONFLICT (namespace, kind, name)
|
ON CONFLICT (namespace, kind, name)
|
||||||
DO UPDATE SET
|
DO UPDATE SET
|
||||||
tags = EXCLUDED.tags,
|
tags = EXCLUDED.tags,
|
||||||
metadata = EXCLUDED.metadata,
|
metadata = EXCLUDED.metadata,
|
||||||
encrypted = EXCLUDED.encrypted,
|
encrypted = EXCLUDED.encrypted,
|
||||||
|
version = secrets.version + 1,
|
||||||
updated_at = NOW()
|
updated_at = NOW()
|
||||||
"#,
|
"#,
|
||||||
)
|
)
|
||||||
@@ -66,23 +138,12 @@ pub async fn run(pool: &PgPool, args: AddArgs<'_>) -> Result<()> {
|
|||||||
.bind(args.name)
|
.bind(args.name)
|
||||||
.bind(args.tags)
|
.bind(args.tags)
|
||||||
.bind(&metadata)
|
.bind(&metadata)
|
||||||
.bind(&encrypted)
|
.bind(&encrypted_bytes)
|
||||||
.execute(pool)
|
.execute(&mut *tx)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
let meta_keys: Vec<&str> = args
|
crate::audit::log_tx(
|
||||||
.meta_entries
|
&mut tx,
|
||||||
.iter()
|
|
||||||
.filter_map(|s| s.split_once('=').map(|(k, _)| k))
|
|
||||||
.collect();
|
|
||||||
let secret_keys: Vec<&str> = args
|
|
||||||
.secret_entries
|
|
||||||
.iter()
|
|
||||||
.filter_map(|s| s.split_once('=').map(|(k, _)| k))
|
|
||||||
.collect();
|
|
||||||
|
|
||||||
crate::audit::log(
|
|
||||||
pool,
|
|
||||||
"add",
|
"add",
|
||||||
args.namespace,
|
args.namespace,
|
||||||
args.kind,
|
args.kind,
|
||||||
@@ -95,6 +156,8 @@ pub async fn run(pool: &PgPool, args: AddArgs<'_>) -> Result<()> {
|
|||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
|
|
||||||
|
tx.commit().await?;
|
||||||
|
|
||||||
let result_json = json!({
|
let result_json = json!({
|
||||||
"action": "added",
|
"action": "added",
|
||||||
"namespace": args.namespace,
|
"namespace": args.namespace,
|
||||||
|
|||||||
@@ -1,43 +1,44 @@
|
|||||||
use crate::config::{self, Config, config_path};
|
use crate::config::{self, Config, config_path};
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
|
|
||||||
pub enum ConfigAction {
|
pub async fn run(action: crate::ConfigAction) -> Result<()> {
|
||||||
SetDb { url: String },
|
|
||||||
Show,
|
|
||||||
Path,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn run(action: ConfigAction) -> Result<()> {
|
|
||||||
match action {
|
match action {
|
||||||
ConfigAction::SetDb { url } => {
|
crate::ConfigAction::SetDb { url } => {
|
||||||
|
// Verify connection before writing config
|
||||||
|
let pool = crate::db::create_pool(&url)
|
||||||
|
.await
|
||||||
|
.map_err(|e| anyhow::anyhow!("Database connection failed: {}", e))?;
|
||||||
|
drop(pool);
|
||||||
|
println!("Database connection successful.");
|
||||||
|
|
||||||
let cfg = Config {
|
let cfg = Config {
|
||||||
database_url: Some(url.clone()),
|
database_url: Some(url.clone()),
|
||||||
};
|
};
|
||||||
config::save_config(&cfg)?;
|
config::save_config(&cfg)?;
|
||||||
println!("✓ 数据库连接串已保存到: {}", config_path().display());
|
println!("Database URL saved to: {}", config_path().display());
|
||||||
println!(" {}", mask_password(&url));
|
println!(" {}", mask_password(&url));
|
||||||
}
|
}
|
||||||
ConfigAction::Show => {
|
crate::ConfigAction::Show => {
|
||||||
let cfg = config::load_config()?;
|
let cfg = config::load_config()?;
|
||||||
match cfg.database_url {
|
match cfg.database_url {
|
||||||
Some(url) => {
|
Some(url) => {
|
||||||
println!("database_url = {}", mask_password(&url));
|
println!("database_url = {}", mask_password(&url));
|
||||||
println!("配置文件: {}", config_path().display());
|
println!("config file: {}", config_path().display());
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
println!("未配置数据库连接串。");
|
println!("Database URL not configured.");
|
||||||
println!("请运行:secrets config set-db <DATABASE_URL>");
|
println!("Run: secrets config set-db <DATABASE_URL>");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ConfigAction::Path => {
|
crate::ConfigAction::Path => {
|
||||||
println!("{}", config_path().display());
|
println!("{}", config_path().display());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 将 postgres://user:password@host/db 中的密码替换为 ***
|
/// Mask the password in a postgres://user:password@host/db URL.
|
||||||
fn mask_password(url: &str) -> String {
|
fn mask_password(url: &str) -> String {
|
||||||
if let Some(at_pos) = url.rfind('@')
|
if let Some(at_pos) = url.rfind('@')
|
||||||
&& let Some(scheme_end) = url.find("://")
|
&& let Some(scheme_end) = url.find("://")
|
||||||
|
|||||||
@@ -1,24 +1,107 @@
|
|||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use serde_json::json;
|
use serde_json::{Value, json};
|
||||||
use sqlx::PgPool;
|
use sqlx::{FromRow, PgPool};
|
||||||
|
use uuid::Uuid;
|
||||||
|
|
||||||
pub async fn run(pool: &PgPool, namespace: &str, kind: &str, name: &str) -> Result<()> {
|
use crate::db;
|
||||||
|
use crate::output::OutputMode;
|
||||||
|
|
||||||
|
#[derive(FromRow)]
|
||||||
|
struct DeleteRow {
|
||||||
|
id: Uuid,
|
||||||
|
version: i64,
|
||||||
|
tags: Vec<String>,
|
||||||
|
metadata: Value,
|
||||||
|
encrypted: Vec<u8>,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn run(
|
||||||
|
pool: &PgPool,
|
||||||
|
namespace: &str,
|
||||||
|
kind: &str,
|
||||||
|
name: &str,
|
||||||
|
output: OutputMode,
|
||||||
|
) -> Result<()> {
|
||||||
tracing::debug!(namespace, kind, name, "deleting record");
|
tracing::debug!(namespace, kind, name, "deleting record");
|
||||||
|
|
||||||
let result =
|
let mut tx = pool.begin().await?;
|
||||||
sqlx::query("DELETE FROM secrets WHERE namespace = $1 AND kind = $2 AND name = $3")
|
|
||||||
|
let row: Option<DeleteRow> = sqlx::query_as(
|
||||||
|
"SELECT id, version, tags, metadata, encrypted FROM secrets \
|
||||||
|
WHERE namespace = $1 AND kind = $2 AND name = $3 \
|
||||||
|
FOR UPDATE",
|
||||||
|
)
|
||||||
.bind(namespace)
|
.bind(namespace)
|
||||||
.bind(kind)
|
.bind(kind)
|
||||||
.bind(name)
|
.bind(name)
|
||||||
.execute(pool)
|
.fetch_optional(&mut *tx)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
if result.rows_affected() == 0 {
|
let Some(row) = row else {
|
||||||
|
tx.rollback().await?;
|
||||||
tracing::warn!(namespace, kind, name, "record not found for deletion");
|
tracing::warn!(namespace, kind, name, "record not found for deletion");
|
||||||
println!("Not found: [{}/{}] {}", namespace, kind, name);
|
match output {
|
||||||
} else {
|
OutputMode::Json => println!(
|
||||||
crate::audit::log(pool, "delete", namespace, kind, name, json!({})).await;
|
"{}",
|
||||||
println!("Deleted: [{}/{}] {}", namespace, kind, name);
|
serde_json::to_string_pretty(
|
||||||
|
&json!({"action":"not_found","namespace":namespace,"kind":kind,"name":name})
|
||||||
|
)?
|
||||||
|
),
|
||||||
|
OutputMode::JsonCompact => println!(
|
||||||
|
"{}",
|
||||||
|
serde_json::to_string(
|
||||||
|
&json!({"action":"not_found","namespace":namespace,"kind":kind,"name":name})
|
||||||
|
)?
|
||||||
|
),
|
||||||
|
_ => println!("Not found: [{}/{}] {}", namespace, kind, name),
|
||||||
}
|
}
|
||||||
|
return Ok(());
|
||||||
|
};
|
||||||
|
|
||||||
|
// Snapshot before physical delete so the row can be restored via rollback.
|
||||||
|
if let Err(e) = db::snapshot_history(
|
||||||
|
&mut tx,
|
||||||
|
db::SnapshotParams {
|
||||||
|
secret_id: row.id,
|
||||||
|
namespace,
|
||||||
|
kind,
|
||||||
|
name,
|
||||||
|
version: row.version,
|
||||||
|
action: "delete",
|
||||||
|
tags: &row.tags,
|
||||||
|
metadata: &row.metadata,
|
||||||
|
encrypted: &row.encrypted,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
tracing::warn!(error = %e, "failed to snapshot history before delete");
|
||||||
|
}
|
||||||
|
|
||||||
|
sqlx::query("DELETE FROM secrets WHERE id = $1")
|
||||||
|
.bind(row.id)
|
||||||
|
.execute(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
crate::audit::log_tx(&mut tx, "delete", namespace, kind, name, json!({})).await;
|
||||||
|
|
||||||
|
tx.commit().await?;
|
||||||
|
|
||||||
|
match output {
|
||||||
|
OutputMode::Json => println!(
|
||||||
|
"{}",
|
||||||
|
serde_json::to_string_pretty(
|
||||||
|
&json!({"action":"deleted","namespace":namespace,"kind":kind,"name":name})
|
||||||
|
)?
|
||||||
|
),
|
||||||
|
OutputMode::JsonCompact => println!(
|
||||||
|
"{}",
|
||||||
|
serde_json::to_string(
|
||||||
|
&json!({"action":"deleted","namespace":namespace,"kind":kind,"name":name})
|
||||||
|
)?
|
||||||
|
),
|
||||||
|
_ => println!("Deleted: [{}/{}] {}", namespace, kind, name),
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|||||||
70
src/commands/init.rs
Normal file
70
src/commands/init.rs
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
use anyhow::{Context, Result};
|
||||||
|
use rand::RngExt;
|
||||||
|
use sqlx::PgPool;
|
||||||
|
|
||||||
|
use crate::{crypto, db};
|
||||||
|
|
||||||
|
const MIN_MASTER_PASSWORD_LEN: usize = 8;
|
||||||
|
|
||||||
|
pub async fn run(pool: &PgPool) -> Result<()> {
|
||||||
|
println!("Initializing secrets master key...");
|
||||||
|
println!();
|
||||||
|
|
||||||
|
// Read password (no echo)
|
||||||
|
let password = rpassword::prompt_password(format!(
|
||||||
|
"Enter master password (at least {} characters): ",
|
||||||
|
MIN_MASTER_PASSWORD_LEN
|
||||||
|
))
|
||||||
|
.context("failed to read password")?;
|
||||||
|
if password.chars().count() < MIN_MASTER_PASSWORD_LEN {
|
||||||
|
anyhow::bail!(
|
||||||
|
"Master password must be at least {} characters.",
|
||||||
|
MIN_MASTER_PASSWORD_LEN
|
||||||
|
);
|
||||||
|
}
|
||||||
|
let confirm = rpassword::prompt_password("Confirm master password: ")
|
||||||
|
.context("failed to read password confirmation")?;
|
||||||
|
if password != confirm {
|
||||||
|
anyhow::bail!("Passwords do not match.");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get or create Argon2id salt
|
||||||
|
let salt = match db::load_argon2_salt(pool).await? {
|
||||||
|
Some(existing) => {
|
||||||
|
println!("Found existing salt in database (not the first device).");
|
||||||
|
existing
|
||||||
|
}
|
||||||
|
None => {
|
||||||
|
println!("Generating new Argon2id salt and storing in database...");
|
||||||
|
let mut salt = vec![0u8; 16];
|
||||||
|
rand::rng().fill(&mut salt[..]);
|
||||||
|
db::store_argon2_salt(pool, &salt).await?;
|
||||||
|
salt
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Derive master key
|
||||||
|
print!("Deriving master key (Argon2id, this takes a moment)... ");
|
||||||
|
let master_key = crypto::derive_master_key(&password, &salt)?;
|
||||||
|
println!("done.");
|
||||||
|
|
||||||
|
// Store in OS Keychain
|
||||||
|
crypto::store_master_key(&master_key)?;
|
||||||
|
|
||||||
|
// Self-test: encrypt and decrypt a canary value
|
||||||
|
let canary = b"secrets-cli-canary";
|
||||||
|
let enc = crypto::encrypt(&master_key, canary)?;
|
||||||
|
let dec = crypto::decrypt(&master_key, &enc)?;
|
||||||
|
if dec != canary {
|
||||||
|
anyhow::bail!("Self-test failed: encryption roundtrip mismatch");
|
||||||
|
}
|
||||||
|
|
||||||
|
println!();
|
||||||
|
println!("Master key stored in OS Keychain.");
|
||||||
|
println!("You can now use `secrets add` / `secrets search` commands.");
|
||||||
|
println!();
|
||||||
|
println!("IMPORTANT: Remember your master password — it is not stored anywhere.");
|
||||||
|
println!(" On a new device, run `secrets init` with the same password.");
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
@@ -1,5 +1,9 @@
|
|||||||
pub mod add;
|
pub mod add;
|
||||||
pub mod config;
|
pub mod config;
|
||||||
pub mod delete;
|
pub mod delete;
|
||||||
|
pub mod init;
|
||||||
|
pub mod rollback;
|
||||||
|
pub mod run;
|
||||||
pub mod search;
|
pub mod search;
|
||||||
pub mod update;
|
pub mod update;
|
||||||
|
pub mod upgrade;
|
||||||
|
|||||||
239
src/commands/rollback.rs
Normal file
239
src/commands/rollback.rs
Normal file
@@ -0,0 +1,239 @@
|
|||||||
|
use anyhow::Result;
|
||||||
|
use serde_json::{Value, json};
|
||||||
|
use sqlx::{FromRow, PgPool};
|
||||||
|
use uuid::Uuid;
|
||||||
|
|
||||||
|
use crate::output::OutputMode;
|
||||||
|
|
||||||
|
#[derive(FromRow)]
|
||||||
|
struct HistoryRow {
|
||||||
|
secret_id: Uuid,
|
||||||
|
version: i64,
|
||||||
|
action: String,
|
||||||
|
tags: Vec<String>,
|
||||||
|
metadata: Value,
|
||||||
|
encrypted: Vec<u8>,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct RollbackArgs<'a> {
|
||||||
|
pub namespace: &'a str,
|
||||||
|
pub kind: &'a str,
|
||||||
|
pub name: &'a str,
|
||||||
|
/// Target version to restore. None → restore the most recent history entry.
|
||||||
|
pub to_version: Option<i64>,
|
||||||
|
pub output: OutputMode,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn run(pool: &PgPool, args: RollbackArgs<'_>, master_key: &[u8; 32]) -> Result<()> {
|
||||||
|
let snap: Option<HistoryRow> = if let Some(ver) = args.to_version {
|
||||||
|
sqlx::query_as(
|
||||||
|
"SELECT secret_id, version, action, tags, metadata, encrypted \
|
||||||
|
FROM secrets_history \
|
||||||
|
WHERE namespace = $1 AND kind = $2 AND name = $3 AND version = $4 \
|
||||||
|
ORDER BY id DESC LIMIT 1",
|
||||||
|
)
|
||||||
|
.bind(args.namespace)
|
||||||
|
.bind(args.kind)
|
||||||
|
.bind(args.name)
|
||||||
|
.bind(ver)
|
||||||
|
.fetch_optional(pool)
|
||||||
|
.await?
|
||||||
|
} else {
|
||||||
|
sqlx::query_as(
|
||||||
|
"SELECT secret_id, version, action, tags, metadata, encrypted \
|
||||||
|
FROM secrets_history \
|
||||||
|
WHERE namespace = $1 AND kind = $2 AND name = $3 \
|
||||||
|
ORDER BY id DESC LIMIT 1",
|
||||||
|
)
|
||||||
|
.bind(args.namespace)
|
||||||
|
.bind(args.kind)
|
||||||
|
.bind(args.name)
|
||||||
|
.fetch_optional(pool)
|
||||||
|
.await?
|
||||||
|
};
|
||||||
|
|
||||||
|
let snap = snap.ok_or_else(|| {
|
||||||
|
anyhow::anyhow!(
|
||||||
|
"No history found for [{}/{}] {}{}.",
|
||||||
|
args.namespace,
|
||||||
|
args.kind,
|
||||||
|
args.name,
|
||||||
|
args.to_version
|
||||||
|
.map(|v| format!(" at version {}", v))
|
||||||
|
.unwrap_or_default()
|
||||||
|
)
|
||||||
|
})?;
|
||||||
|
|
||||||
|
// Validate encrypted blob is non-trivial (re-encrypt guard).
|
||||||
|
if !snap.encrypted.is_empty() {
|
||||||
|
// Probe decrypt to ensure the blob is valid before restoring.
|
||||||
|
crate::crypto::decrypt_json(master_key, &snap.encrypted)?;
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut tx = pool.begin().await?;
|
||||||
|
|
||||||
|
// Snapshot current live row (if it exists) before overwriting.
|
||||||
|
#[derive(sqlx::FromRow)]
|
||||||
|
struct LiveRow {
|
||||||
|
id: Uuid,
|
||||||
|
version: i64,
|
||||||
|
tags: Vec<String>,
|
||||||
|
metadata: Value,
|
||||||
|
encrypted: Vec<u8>,
|
||||||
|
}
|
||||||
|
let live: Option<LiveRow> = sqlx::query_as(
|
||||||
|
"SELECT id, version, tags, metadata, encrypted FROM secrets \
|
||||||
|
WHERE namespace = $1 AND kind = $2 AND name = $3 FOR UPDATE",
|
||||||
|
)
|
||||||
|
.bind(args.namespace)
|
||||||
|
.bind(args.kind)
|
||||||
|
.bind(args.name)
|
||||||
|
.fetch_optional(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
if let Some(lr) = live
|
||||||
|
&& let Err(e) = crate::db::snapshot_history(
|
||||||
|
&mut tx,
|
||||||
|
crate::db::SnapshotParams {
|
||||||
|
secret_id: lr.id,
|
||||||
|
namespace: args.namespace,
|
||||||
|
kind: args.kind,
|
||||||
|
name: args.name,
|
||||||
|
version: lr.version,
|
||||||
|
action: "rollback",
|
||||||
|
tags: &lr.tags,
|
||||||
|
metadata: &lr.metadata,
|
||||||
|
encrypted: &lr.encrypted,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
tracing::warn!(error = %e, "failed to snapshot current row before rollback");
|
||||||
|
}
|
||||||
|
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO secrets (id, namespace, kind, name, tags, metadata, encrypted, version, updated_at) \
|
||||||
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, NOW()) \
|
||||||
|
ON CONFLICT (namespace, kind, name) DO UPDATE SET \
|
||||||
|
tags = EXCLUDED.tags, \
|
||||||
|
metadata = EXCLUDED.metadata, \
|
||||||
|
encrypted = EXCLUDED.encrypted, \
|
||||||
|
version = secrets.version + 1, \
|
||||||
|
updated_at = NOW()",
|
||||||
|
)
|
||||||
|
.bind(snap.secret_id)
|
||||||
|
.bind(args.namespace)
|
||||||
|
.bind(args.kind)
|
||||||
|
.bind(args.name)
|
||||||
|
.bind(&snap.tags)
|
||||||
|
.bind(&snap.metadata)
|
||||||
|
.bind(&snap.encrypted)
|
||||||
|
.bind(snap.version)
|
||||||
|
.execute(&mut *tx)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
crate::audit::log_tx(
|
||||||
|
&mut tx,
|
||||||
|
"rollback",
|
||||||
|
args.namespace,
|
||||||
|
args.kind,
|
||||||
|
args.name,
|
||||||
|
json!({
|
||||||
|
"restored_version": snap.version,
|
||||||
|
"original_action": snap.action,
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
.await;
|
||||||
|
|
||||||
|
tx.commit().await?;
|
||||||
|
|
||||||
|
let result_json = json!({
|
||||||
|
"action": "rolled_back",
|
||||||
|
"namespace": args.namespace,
|
||||||
|
"kind": args.kind,
|
||||||
|
"name": args.name,
|
||||||
|
"restored_version": snap.version,
|
||||||
|
});
|
||||||
|
|
||||||
|
match args.output {
|
||||||
|
OutputMode::Json => println!("{}", serde_json::to_string_pretty(&result_json)?),
|
||||||
|
OutputMode::JsonCompact => println!("{}", serde_json::to_string(&result_json)?),
|
||||||
|
_ => println!(
|
||||||
|
"Rolled back: [{}/{}] {} → version {}",
|
||||||
|
args.namespace, args.kind, args.name, snap.version
|
||||||
|
),
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// List history entries for a record.
|
||||||
|
pub async fn list_history(
|
||||||
|
pool: &PgPool,
|
||||||
|
namespace: &str,
|
||||||
|
kind: &str,
|
||||||
|
name: &str,
|
||||||
|
limit: u32,
|
||||||
|
output: OutputMode,
|
||||||
|
) -> Result<()> {
|
||||||
|
#[derive(FromRow)]
|
||||||
|
struct HistorySummary {
|
||||||
|
version: i64,
|
||||||
|
action: String,
|
||||||
|
actor: String,
|
||||||
|
created_at: chrono::DateTime<chrono::Utc>,
|
||||||
|
}
|
||||||
|
|
||||||
|
let rows: Vec<HistorySummary> = sqlx::query_as(
|
||||||
|
"SELECT version, action, actor, created_at FROM secrets_history \
|
||||||
|
WHERE namespace = $1 AND kind = $2 AND name = $3 \
|
||||||
|
ORDER BY id DESC LIMIT $4",
|
||||||
|
)
|
||||||
|
.bind(namespace)
|
||||||
|
.bind(kind)
|
||||||
|
.bind(name)
|
||||||
|
.bind(limit as i64)
|
||||||
|
.fetch_all(pool)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
match output {
|
||||||
|
OutputMode::Json | OutputMode::JsonCompact => {
|
||||||
|
let arr: Vec<Value> = rows
|
||||||
|
.iter()
|
||||||
|
.map(|r| {
|
||||||
|
json!({
|
||||||
|
"version": r.version,
|
||||||
|
"action": r.action,
|
||||||
|
"actor": r.actor,
|
||||||
|
"created_at": r.created_at.format("%Y-%m-%dT%H:%M:%SZ").to_string(),
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
let out = if output == OutputMode::Json {
|
||||||
|
serde_json::to_string_pretty(&arr)?
|
||||||
|
} else {
|
||||||
|
serde_json::to_string(&arr)?
|
||||||
|
};
|
||||||
|
println!("{}", out);
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
if rows.is_empty() {
|
||||||
|
println!("No history found for [{}/{}] {}.", namespace, kind, name);
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
println!("History for [{}/{}] {}:", namespace, kind, name);
|
||||||
|
for r in &rows {
|
||||||
|
println!(
|
||||||
|
" v{:<4} {:8} {} {}",
|
||||||
|
r.version,
|
||||||
|
r.action,
|
||||||
|
r.actor,
|
||||||
|
r.created_at.format("%Y-%m-%d %H:%M:%S UTC")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
println!(" (use `secrets rollback --to-version <N>` to restore)");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
143
src/commands/run.rs
Normal file
143
src/commands/run.rs
Normal file
@@ -0,0 +1,143 @@
|
|||||||
|
use anyhow::Result;
|
||||||
|
use serde_json::Value;
|
||||||
|
use sqlx::PgPool;
|
||||||
|
use std::collections::HashMap;
|
||||||
|
|
||||||
|
use crate::commands::search::build_env_map;
|
||||||
|
use crate::output::OutputMode;
|
||||||
|
|
||||||
|
pub struct InjectArgs<'a> {
|
||||||
|
pub namespace: Option<&'a str>,
|
||||||
|
pub kind: Option<&'a str>,
|
||||||
|
pub name: Option<&'a str>,
|
||||||
|
pub tags: &'a [String],
|
||||||
|
/// Prefix to prepend to every variable name. Empty string means no prefix.
|
||||||
|
pub prefix: &'a str,
|
||||||
|
pub output: OutputMode,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct RunArgs<'a> {
|
||||||
|
pub namespace: Option<&'a str>,
|
||||||
|
pub kind: Option<&'a str>,
|
||||||
|
pub name: Option<&'a str>,
|
||||||
|
pub tags: &'a [String],
|
||||||
|
pub prefix: &'a str,
|
||||||
|
/// The command and its arguments to execute with injected secrets.
|
||||||
|
pub command: &'a [String],
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Fetch secrets matching the filter and build a flat env map.
|
||||||
|
/// Metadata and secret fields are merged; naming: `<PREFIX_><NAME>_<KEY>` (uppercased).
|
||||||
|
pub async fn collect_env_map(
|
||||||
|
pool: &PgPool,
|
||||||
|
namespace: Option<&str>,
|
||||||
|
kind: Option<&str>,
|
||||||
|
name: Option<&str>,
|
||||||
|
tags: &[String],
|
||||||
|
prefix: &str,
|
||||||
|
master_key: &[u8; 32],
|
||||||
|
) -> Result<HashMap<String, String>> {
|
||||||
|
if namespace.is_none() && kind.is_none() && name.is_none() && tags.is_empty() {
|
||||||
|
anyhow::bail!(
|
||||||
|
"At least one filter (--namespace, --kind, --name, or --tag) is required for inject/run"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
let rows = crate::commands::search::fetch_rows(pool, namespace, kind, name, tags, None).await?;
|
||||||
|
if rows.is_empty() {
|
||||||
|
anyhow::bail!("No records matched the given filters.");
|
||||||
|
}
|
||||||
|
let mut map = HashMap::new();
|
||||||
|
for row in &rows {
|
||||||
|
let row_map = build_env_map(row, prefix, Some(master_key))?;
|
||||||
|
for (k, v) in row_map {
|
||||||
|
map.insert(k, v);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Ok(map)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// `inject` command: print env vars to stdout (suitable for `eval $(...)` or export).
|
||||||
|
pub async fn run_inject(pool: &PgPool, args: InjectArgs<'_>, master_key: &[u8; 32]) -> Result<()> {
|
||||||
|
let env_map = collect_env_map(
|
||||||
|
pool,
|
||||||
|
args.namespace,
|
||||||
|
args.kind,
|
||||||
|
args.name,
|
||||||
|
args.tags,
|
||||||
|
args.prefix,
|
||||||
|
master_key,
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
match args.output {
|
||||||
|
OutputMode::Json => {
|
||||||
|
let obj: serde_json::Map<String, Value> = env_map
|
||||||
|
.into_iter()
|
||||||
|
.map(|(k, v)| (k, Value::String(v)))
|
||||||
|
.collect();
|
||||||
|
println!("{}", serde_json::to_string_pretty(&Value::Object(obj))?);
|
||||||
|
}
|
||||||
|
OutputMode::JsonCompact => {
|
||||||
|
let obj: serde_json::Map<String, Value> = env_map
|
||||||
|
.into_iter()
|
||||||
|
.map(|(k, v)| (k, Value::String(v)))
|
||||||
|
.collect();
|
||||||
|
println!("{}", serde_json::to_string(&Value::Object(obj))?);
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
// Shell-safe KEY=VALUE output, one per line.
|
||||||
|
let mut pairs: Vec<(String, String)> = env_map.into_iter().collect();
|
||||||
|
pairs.sort_by(|a, b| a.0.cmp(&b.0));
|
||||||
|
for (k, v) in pairs {
|
||||||
|
println!("{}={}", k, shell_quote(&v));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// `run` command: inject secrets into a child process environment and execute.
|
||||||
|
pub async fn run_exec(pool: &PgPool, args: RunArgs<'_>, master_key: &[u8; 32]) -> Result<()> {
|
||||||
|
if args.command.is_empty() {
|
||||||
|
anyhow::bail!(
|
||||||
|
"No command specified. Usage: secrets run [filter flags] -- <command> [args]"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
let env_map = collect_env_map(
|
||||||
|
pool,
|
||||||
|
args.namespace,
|
||||||
|
args.kind,
|
||||||
|
args.name,
|
||||||
|
args.tags,
|
||||||
|
args.prefix,
|
||||||
|
master_key,
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
tracing::debug!(
|
||||||
|
vars = env_map.len(),
|
||||||
|
cmd = args.command[0].as_str(),
|
||||||
|
"injecting secrets into child process"
|
||||||
|
);
|
||||||
|
|
||||||
|
let status = std::process::Command::new(&args.command[0])
|
||||||
|
.args(&args.command[1..])
|
||||||
|
.envs(&env_map)
|
||||||
|
.status()
|
||||||
|
.map_err(|e| anyhow::anyhow!("Failed to execute '{}': {}", args.command[0], e))?;
|
||||||
|
|
||||||
|
if !status.success() {
|
||||||
|
let code = status.code().unwrap_or(1);
|
||||||
|
std::process::exit(code);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Quote a value for safe shell output. Wraps the value in single quotes,
|
||||||
|
/// escaping any single quotes within the value.
|
||||||
|
fn shell_quote(s: &str) -> String {
|
||||||
|
format!("'{}'", s.replace('\'', "'\\''"))
|
||||||
|
}
|
||||||
@@ -1,7 +1,9 @@
|
|||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use serde_json::{Value, json};
|
use serde_json::{Value, json};
|
||||||
use sqlx::PgPool;
|
use sqlx::PgPool;
|
||||||
|
use std::collections::HashMap;
|
||||||
|
|
||||||
|
use crate::crypto;
|
||||||
use crate::models::Secret;
|
use crate::models::Secret;
|
||||||
use crate::output::OutputMode;
|
use crate::output::OutputMode;
|
||||||
|
|
||||||
@@ -9,7 +11,7 @@ pub struct SearchArgs<'a> {
|
|||||||
pub namespace: Option<&'a str>,
|
pub namespace: Option<&'a str>,
|
||||||
pub kind: Option<&'a str>,
|
pub kind: Option<&'a str>,
|
||||||
pub name: Option<&'a str>,
|
pub name: Option<&'a str>,
|
||||||
pub tag: Option<&'a str>,
|
pub tags: &'a [String],
|
||||||
pub query: Option<&'a str>,
|
pub query: Option<&'a str>,
|
||||||
pub show_secrets: bool,
|
pub show_secrets: bool,
|
||||||
pub fields: &'a [String],
|
pub fields: &'a [String],
|
||||||
@@ -20,86 +22,32 @@ pub struct SearchArgs<'a> {
|
|||||||
pub output: OutputMode,
|
pub output: OutputMode,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn run(pool: &PgPool, args: SearchArgs<'_>) -> Result<()> {
|
pub async fn run(pool: &PgPool, args: SearchArgs<'_>, master_key: Option<&[u8; 32]>) -> Result<()> {
|
||||||
let mut conditions: Vec<String> = Vec::new();
|
let rows = fetch_rows_paged(
|
||||||
let mut idx: i32 = 1;
|
pool,
|
||||||
|
PagedFetchArgs {
|
||||||
if args.namespace.is_some() {
|
namespace: args.namespace,
|
||||||
conditions.push(format!("namespace = ${}", idx));
|
kind: args.kind,
|
||||||
idx += 1;
|
name: args.name,
|
||||||
}
|
tags: args.tags,
|
||||||
if args.kind.is_some() {
|
query: args.query,
|
||||||
conditions.push(format!("kind = ${}", idx));
|
sort: args.sort,
|
||||||
idx += 1;
|
limit: args.limit,
|
||||||
}
|
offset: args.offset,
|
||||||
if args.name.is_some() {
|
},
|
||||||
conditions.push(format!("name = ${}", idx));
|
)
|
||||||
idx += 1;
|
.await?;
|
||||||
}
|
|
||||||
if args.tag.is_some() {
|
|
||||||
conditions.push(format!("tags @> ARRAY[${}]", idx));
|
|
||||||
idx += 1;
|
|
||||||
}
|
|
||||||
if args.query.is_some() {
|
|
||||||
conditions.push(format!(
|
|
||||||
"(name ILIKE ${i} OR namespace ILIKE ${i} OR kind ILIKE ${i} OR metadata::text ILIKE ${i} OR EXISTS (SELECT 1 FROM unnest(tags) t WHERE t ILIKE ${i}))",
|
|
||||||
i = idx
|
|
||||||
));
|
|
||||||
idx += 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
let where_clause = if conditions.is_empty() {
|
|
||||||
String::new()
|
|
||||||
} else {
|
|
||||||
format!("WHERE {}", conditions.join(" AND "))
|
|
||||||
};
|
|
||||||
|
|
||||||
let order = match args.sort {
|
|
||||||
"updated" => "updated_at DESC",
|
|
||||||
"created" => "created_at DESC",
|
|
||||||
_ => "namespace, kind, name",
|
|
||||||
};
|
|
||||||
|
|
||||||
let sql = format!(
|
|
||||||
"SELECT * FROM secrets {} ORDER BY {} LIMIT ${} OFFSET ${}",
|
|
||||||
where_clause,
|
|
||||||
order,
|
|
||||||
idx,
|
|
||||||
idx + 1
|
|
||||||
);
|
|
||||||
|
|
||||||
tracing::debug!(sql, "executing search query");
|
|
||||||
|
|
||||||
let mut q = sqlx::query_as::<_, Secret>(&sql);
|
|
||||||
if let Some(v) = args.namespace {
|
|
||||||
q = q.bind(v);
|
|
||||||
}
|
|
||||||
if let Some(v) = args.kind {
|
|
||||||
q = q.bind(v);
|
|
||||||
}
|
|
||||||
if let Some(v) = args.name {
|
|
||||||
q = q.bind(v);
|
|
||||||
}
|
|
||||||
if let Some(v) = args.tag {
|
|
||||||
q = q.bind(v);
|
|
||||||
}
|
|
||||||
if let Some(v) = args.query {
|
|
||||||
q = q.bind(format!("%{}%", v));
|
|
||||||
}
|
|
||||||
q = q.bind(args.limit as i64).bind(args.offset as i64);
|
|
||||||
|
|
||||||
let rows = q.fetch_all(pool).await?;
|
|
||||||
|
|
||||||
// -f/--field: extract specific field values directly
|
// -f/--field: extract specific field values directly
|
||||||
if !args.fields.is_empty() {
|
if !args.fields.is_empty() {
|
||||||
return print_fields(&rows, args.fields);
|
return print_fields(&rows, args.fields, master_key);
|
||||||
}
|
}
|
||||||
|
|
||||||
match args.output {
|
match args.output {
|
||||||
OutputMode::Json | OutputMode::JsonCompact => {
|
OutputMode::Json | OutputMode::JsonCompact => {
|
||||||
let arr: Vec<Value> = rows
|
let arr: Vec<Value> = rows
|
||||||
.iter()
|
.iter()
|
||||||
.map(|r| to_json(r, args.show_secrets, args.summary))
|
.map(|r| to_json(r, args.show_secrets, args.summary, master_key))
|
||||||
.collect();
|
.collect();
|
||||||
let out = if args.output == OutputMode::Json {
|
let out = if args.output == OutputMode::Json {
|
||||||
serde_json::to_string_pretty(&arr)?
|
serde_json::to_string_pretty(&arr)?
|
||||||
@@ -116,7 +64,12 @@ pub async fn run(pool: &PgPool, args: SearchArgs<'_>) -> Result<()> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
if let Some(row) = rows.first() {
|
if let Some(row) = rows.first() {
|
||||||
print_env(row, args.show_secrets)?;
|
let map = build_env_map(row, "", master_key)?;
|
||||||
|
let mut pairs: Vec<(String, String)> = map.into_iter().collect();
|
||||||
|
pairs.sort_by(|a, b| a.0.cmp(&b.0));
|
||||||
|
for (k, v) in pairs {
|
||||||
|
println!("{}={}", k, shell_quote(&v));
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
eprintln!("No records found.");
|
eprintln!("No records found.");
|
||||||
}
|
}
|
||||||
@@ -127,7 +80,7 @@ pub async fn run(pool: &PgPool, args: SearchArgs<'_>) -> Result<()> {
|
|||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
for row in &rows {
|
for row in &rows {
|
||||||
print_text(row, args.show_secrets, args.summary)?;
|
print_text(row, args.show_secrets, args.summary, master_key)?;
|
||||||
}
|
}
|
||||||
println!("{} record(s) found.", rows.len());
|
println!("{} record(s) found.", rows.len());
|
||||||
if rows.len() == args.limit as usize {
|
if rows.len() == args.limit as usize {
|
||||||
@@ -143,7 +96,211 @@ pub async fn run(pool: &PgPool, args: SearchArgs<'_>) -> Result<()> {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn to_json(row: &Secret, show_secrets: bool, summary: bool) -> Value {
|
/// Fetch rows with simple equality/tag filters (no pagination). Used by inject/run.
|
||||||
|
pub async fn fetch_rows(
|
||||||
|
pool: &PgPool,
|
||||||
|
namespace: Option<&str>,
|
||||||
|
kind: Option<&str>,
|
||||||
|
name: Option<&str>,
|
||||||
|
tags: &[String],
|
||||||
|
query: Option<&str>,
|
||||||
|
) -> Result<Vec<Secret>> {
|
||||||
|
fetch_rows_paged(
|
||||||
|
pool,
|
||||||
|
PagedFetchArgs {
|
||||||
|
namespace,
|
||||||
|
kind,
|
||||||
|
name,
|
||||||
|
tags,
|
||||||
|
query,
|
||||||
|
sort: "name",
|
||||||
|
limit: 200,
|
||||||
|
offset: 0,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Arguments for the internal paged fetch. Grouped to avoid too-many-arguments lint.
|
||||||
|
struct PagedFetchArgs<'a> {
|
||||||
|
namespace: Option<&'a str>,
|
||||||
|
kind: Option<&'a str>,
|
||||||
|
name: Option<&'a str>,
|
||||||
|
tags: &'a [String],
|
||||||
|
query: Option<&'a str>,
|
||||||
|
sort: &'a str,
|
||||||
|
limit: u32,
|
||||||
|
offset: u32,
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn fetch_rows_paged(pool: &PgPool, a: PagedFetchArgs<'_>) -> Result<Vec<Secret>> {
|
||||||
|
let mut conditions: Vec<String> = Vec::new();
|
||||||
|
let mut idx: i32 = 1;
|
||||||
|
|
||||||
|
if a.namespace.is_some() {
|
||||||
|
conditions.push(format!("namespace = ${}", idx));
|
||||||
|
idx += 1;
|
||||||
|
}
|
||||||
|
if a.kind.is_some() {
|
||||||
|
conditions.push(format!("kind = ${}", idx));
|
||||||
|
idx += 1;
|
||||||
|
}
|
||||||
|
if a.name.is_some() {
|
||||||
|
conditions.push(format!("name = ${}", idx));
|
||||||
|
idx += 1;
|
||||||
|
}
|
||||||
|
if !a.tags.is_empty() {
|
||||||
|
let placeholders: Vec<String> = a
|
||||||
|
.tags
|
||||||
|
.iter()
|
||||||
|
.map(|_| {
|
||||||
|
let p = format!("${}", idx);
|
||||||
|
idx += 1;
|
||||||
|
p
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
conditions.push(format!("tags @> ARRAY[{}]", placeholders.join(", ")));
|
||||||
|
}
|
||||||
|
if a.query.is_some() {
|
||||||
|
conditions.push(format!(
|
||||||
|
"(name ILIKE ${i} ESCAPE '\\' OR namespace ILIKE ${i} ESCAPE '\\' OR kind ILIKE ${i} ESCAPE '\\' OR metadata::text ILIKE ${i} ESCAPE '\\' OR EXISTS (SELECT 1 FROM unnest(tags) t WHERE t ILIKE ${i} ESCAPE '\\'))",
|
||||||
|
i = idx
|
||||||
|
));
|
||||||
|
idx += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
let where_clause = if conditions.is_empty() {
|
||||||
|
String::new()
|
||||||
|
} else {
|
||||||
|
format!("WHERE {}", conditions.join(" AND "))
|
||||||
|
};
|
||||||
|
|
||||||
|
let order = match a.sort {
|
||||||
|
"updated" => "updated_at DESC",
|
||||||
|
"created" => "created_at DESC",
|
||||||
|
_ => "namespace, kind, name",
|
||||||
|
};
|
||||||
|
|
||||||
|
let sql = format!(
|
||||||
|
"SELECT * FROM secrets {} ORDER BY {} LIMIT ${} OFFSET ${}",
|
||||||
|
where_clause,
|
||||||
|
order,
|
||||||
|
idx,
|
||||||
|
idx + 1
|
||||||
|
);
|
||||||
|
|
||||||
|
tracing::debug!(sql, "executing search query");
|
||||||
|
|
||||||
|
let mut q = sqlx::query_as::<_, Secret>(&sql);
|
||||||
|
if let Some(v) = a.namespace {
|
||||||
|
q = q.bind(v);
|
||||||
|
}
|
||||||
|
if let Some(v) = a.kind {
|
||||||
|
q = q.bind(v);
|
||||||
|
}
|
||||||
|
if let Some(v) = a.name {
|
||||||
|
q = q.bind(v);
|
||||||
|
}
|
||||||
|
for v in a.tags {
|
||||||
|
q = q.bind(v.as_str());
|
||||||
|
}
|
||||||
|
if let Some(v) = a.query {
|
||||||
|
q = q.bind(format!(
|
||||||
|
"%{}%",
|
||||||
|
v.replace('\\', "\\\\")
|
||||||
|
.replace('%', "\\%")
|
||||||
|
.replace('_', "\\_")
|
||||||
|
));
|
||||||
|
}
|
||||||
|
q = q.bind(a.limit as i64).bind(a.offset as i64);
|
||||||
|
|
||||||
|
let rows = q.fetch_all(pool).await?;
|
||||||
|
Ok(rows)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Build a flat `KEY=VALUE` map from a record's metadata and decrypted secrets.
|
||||||
|
/// Variable names: `<PREFIX><NAME>_<FIELD>` (all uppercased, hyphens/dots → underscores).
|
||||||
|
/// If `prefix` is empty, the name segment alone is used as the prefix.
|
||||||
|
pub fn build_env_map(
|
||||||
|
row: &Secret,
|
||||||
|
prefix: &str,
|
||||||
|
master_key: Option<&[u8; 32]>,
|
||||||
|
) -> Result<HashMap<String, String>> {
|
||||||
|
let name_part = row.name.to_uppercase().replace(['-', '.', ' '], "_");
|
||||||
|
let effective_prefix = if prefix.is_empty() {
|
||||||
|
name_part
|
||||||
|
} else {
|
||||||
|
format!(
|
||||||
|
"{}_{}",
|
||||||
|
prefix.to_uppercase().replace(['-', '.', ' '], "_"),
|
||||||
|
name_part
|
||||||
|
)
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut map = HashMap::new();
|
||||||
|
|
||||||
|
if let Some(meta) = row.metadata.as_object() {
|
||||||
|
for (k, v) in meta {
|
||||||
|
let key = format!(
|
||||||
|
"{}_{}",
|
||||||
|
effective_prefix,
|
||||||
|
k.to_uppercase().replace(['-', '.'], "_")
|
||||||
|
);
|
||||||
|
map.insert(key, json_value_to_env_string(v));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if let Some(master_key) = master_key
|
||||||
|
&& !row.encrypted.is_empty()
|
||||||
|
{
|
||||||
|
let decrypted = crypto::decrypt_json(master_key, &row.encrypted)?;
|
||||||
|
if let Some(enc) = decrypted.as_object() {
|
||||||
|
for (k, v) in enc {
|
||||||
|
let key = format!(
|
||||||
|
"{}_{}",
|
||||||
|
effective_prefix,
|
||||||
|
k.to_uppercase().replace(['-', '.'], "_")
|
||||||
|
);
|
||||||
|
map.insert(key, json_value_to_env_string(v));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(map)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Quote a value for safe shell / env output. Wraps in single quotes,
|
||||||
|
/// escaping any single quotes within the value.
|
||||||
|
fn shell_quote(s: &str) -> String {
|
||||||
|
format!("'{}'", s.replace('\'', "'\\''"))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Convert a JSON value to its string representation suitable for env vars.
|
||||||
|
fn json_value_to_env_string(v: &Value) -> String {
|
||||||
|
match v {
|
||||||
|
Value::String(s) => s.clone(),
|
||||||
|
Value::Null => String::new(),
|
||||||
|
other => other.to_string(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Decrypt the encrypted blob for a row. Returns an empty object on empty blobs.
|
||||||
|
fn try_decrypt(row: &Secret, master_key: Option<&[u8; 32]>) -> Result<Value> {
|
||||||
|
if row.encrypted.is_empty() {
|
||||||
|
return Ok(Value::Object(Default::default()));
|
||||||
|
}
|
||||||
|
let key = master_key.ok_or_else(|| {
|
||||||
|
anyhow::anyhow!("master key required to decrypt secrets (run `secrets init`)")
|
||||||
|
})?;
|
||||||
|
crypto::decrypt_json(key, &row.encrypted)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn to_json(
|
||||||
|
row: &Secret,
|
||||||
|
show_secrets: bool,
|
||||||
|
summary: bool,
|
||||||
|
master_key: Option<&[u8; 32]>,
|
||||||
|
) -> Value {
|
||||||
if summary {
|
if summary {
|
||||||
let desc = row
|
let desc = row
|
||||||
.metadata
|
.metadata
|
||||||
@@ -163,14 +320,12 @@ fn to_json(row: &Secret, show_secrets: bool, summary: bool) -> Value {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let secrets_val = if show_secrets {
|
let secrets_val = if show_secrets {
|
||||||
row.encrypted.clone()
|
match try_decrypt(row, master_key) {
|
||||||
|
Ok(v) => v,
|
||||||
|
Err(e) => json!({"_error": e.to_string()}),
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
let keys: Vec<&str> = row
|
json!({"_encrypted": true})
|
||||||
.encrypted
|
|
||||||
.as_object()
|
|
||||||
.map(|m| m.keys().map(|k| k.as_str()).collect())
|
|
||||||
.unwrap_or_default();
|
|
||||||
json!({"_hidden_keys": keys})
|
|
||||||
};
|
};
|
||||||
|
|
||||||
json!({
|
json!({
|
||||||
@@ -181,12 +336,18 @@ fn to_json(row: &Secret, show_secrets: bool, summary: bool) -> Value {
|
|||||||
"tags": row.tags,
|
"tags": row.tags,
|
||||||
"metadata": row.metadata,
|
"metadata": row.metadata,
|
||||||
"secrets": secrets_val,
|
"secrets": secrets_val,
|
||||||
|
"version": row.version,
|
||||||
"created_at": row.created_at.format("%Y-%m-%dT%H:%M:%SZ").to_string(),
|
"created_at": row.created_at.format("%Y-%m-%dT%H:%M:%SZ").to_string(),
|
||||||
"updated_at": row.updated_at.format("%Y-%m-%dT%H:%M:%SZ").to_string(),
|
"updated_at": row.updated_at.format("%Y-%m-%dT%H:%M:%SZ").to_string(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
fn print_text(row: &Secret, show_secrets: bool, summary: bool) -> Result<()> {
|
fn print_text(
|
||||||
|
row: &Secret,
|
||||||
|
show_secrets: bool,
|
||||||
|
summary: bool,
|
||||||
|
master_key: Option<&[u8; 32]>,
|
||||||
|
) -> Result<()> {
|
||||||
println!("[{}/{}] {}", row.namespace, row.kind, row.name);
|
println!("[{}/{}] {}", row.namespace, row.kind, row.name);
|
||||||
if summary {
|
if summary {
|
||||||
let desc = row
|
let desc = row
|
||||||
@@ -214,22 +375,14 @@ fn print_text(row: &Secret, show_secrets: bool, summary: bool) -> Result<()> {
|
|||||||
serde_json::to_string_pretty(&row.metadata)?
|
serde_json::to_string_pretty(&row.metadata)?
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
if !row.encrypted.is_empty() {
|
||||||
if show_secrets {
|
if show_secrets {
|
||||||
println!(
|
match try_decrypt(row, master_key) {
|
||||||
" secrets: {}",
|
Ok(v) => println!(" secrets: {}", serde_json::to_string_pretty(&v)?),
|
||||||
serde_json::to_string_pretty(&row.encrypted)?
|
Err(e) => println!(" secrets: [decrypt error: {}]", e),
|
||||||
);
|
}
|
||||||
} else {
|
} else {
|
||||||
let keys: Vec<String> = row
|
println!(" secrets: [encrypted] (--show-secrets to reveal)");
|
||||||
.encrypted
|
|
||||||
.as_object()
|
|
||||||
.map(|m| m.keys().cloned().collect())
|
|
||||||
.unwrap_or_default();
|
|
||||||
if !keys.is_empty() {
|
|
||||||
println!(
|
|
||||||
" secrets: [{}] (--show-secrets to reveal)",
|
|
||||||
keys.join(", ")
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
println!(
|
println!(
|
||||||
@@ -241,35 +394,27 @@ fn print_text(row: &Secret, show_secrets: bool, summary: bool) -> Result<()> {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn print_env(row: &Secret, show_secrets: bool) -> Result<()> {
|
|
||||||
let prefix = row.name.to_uppercase().replace(['-', '.'], "_");
|
|
||||||
if let Some(meta) = row.metadata.as_object() {
|
|
||||||
for (k, v) in meta {
|
|
||||||
let key = format!("{}_{}", prefix, k.to_uppercase().replace('-', "_"));
|
|
||||||
println!("{}={}", key, v.as_str().unwrap_or(&v.to_string()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if show_secrets && let Some(enc) = row.encrypted.as_object() {
|
|
||||||
for (k, v) in enc {
|
|
||||||
let key = format!("{}_{}", prefix, k.to_uppercase().replace('-', "_"));
|
|
||||||
println!("{}={}", key, v.as_str().unwrap_or(&v.to_string()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Extract one or more field paths like `metadata.url` or `secret.token`.
|
/// Extract one or more field paths like `metadata.url` or `secret.token`.
|
||||||
fn print_fields(rows: &[Secret], fields: &[String]) -> Result<()> {
|
fn print_fields(rows: &[Secret], fields: &[String], master_key: Option<&[u8; 32]>) -> Result<()> {
|
||||||
for row in rows {
|
for row in rows {
|
||||||
|
let decrypted: Option<Value> = if fields
|
||||||
|
.iter()
|
||||||
|
.any(|f| f.starts_with("secret") || f.starts_with("encrypted"))
|
||||||
|
{
|
||||||
|
Some(try_decrypt(row, master_key)?)
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
};
|
||||||
|
|
||||||
for field in fields {
|
for field in fields {
|
||||||
let val = extract_field(row, field)?;
|
let val = extract_field(row, field, decrypted.as_ref())?;
|
||||||
println!("{}", val);
|
println!("{}", val);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn extract_field(row: &Secret, field: &str) -> Result<String> {
|
fn extract_field(row: &Secret, field: &str, decrypted: Option<&Value>) -> Result<String> {
|
||||||
let (section, key) = field.split_once('.').ok_or_else(|| {
|
let (section, key) = field.split_once('.').ok_or_else(|| {
|
||||||
anyhow::anyhow!(
|
anyhow::anyhow!(
|
||||||
"Invalid field path '{}'. Use metadata.<key> or secret.<key>",
|
"Invalid field path '{}'. Use metadata.<key> or secret.<key>",
|
||||||
@@ -279,7 +424,9 @@ fn extract_field(row: &Secret, field: &str) -> Result<String> {
|
|||||||
|
|
||||||
let obj = match section {
|
let obj = match section {
|
||||||
"metadata" | "meta" => &row.metadata,
|
"metadata" | "meta" => &row.metadata,
|
||||||
"secret" | "secrets" | "encrypted" => &row.encrypted,
|
"secret" | "secrets" | "encrypted" => {
|
||||||
|
decrypted.ok_or_else(|| anyhow::anyhow!("secret field requires master key"))?
|
||||||
|
}
|
||||||
other => anyhow::bail!(
|
other => anyhow::bail!(
|
||||||
"Unknown field section '{}'. Use 'metadata' or 'secret'",
|
"Unknown field section '{}'. Use 'metadata' or 'secret'",
|
||||||
other
|
other
|
||||||
|
|||||||
@@ -4,13 +4,17 @@ use sqlx::{FromRow, PgPool};
|
|||||||
use uuid::Uuid;
|
use uuid::Uuid;
|
||||||
|
|
||||||
use super::add::parse_kv;
|
use super::add::parse_kv;
|
||||||
|
use crate::crypto;
|
||||||
|
use crate::db;
|
||||||
|
use crate::output::OutputMode;
|
||||||
|
|
||||||
#[derive(FromRow)]
|
#[derive(FromRow)]
|
||||||
struct UpdateRow {
|
struct UpdateRow {
|
||||||
id: Uuid,
|
id: Uuid,
|
||||||
|
version: i64,
|
||||||
tags: Vec<String>,
|
tags: Vec<String>,
|
||||||
metadata: Value,
|
metadata: Value,
|
||||||
encrypted: Value,
|
encrypted: Vec<u8>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct UpdateArgs<'a> {
|
pub struct UpdateArgs<'a> {
|
||||||
@@ -23,20 +27,22 @@ pub struct UpdateArgs<'a> {
|
|||||||
pub remove_meta: &'a [String],
|
pub remove_meta: &'a [String],
|
||||||
pub secret_entries: &'a [String],
|
pub secret_entries: &'a [String],
|
||||||
pub remove_secrets: &'a [String],
|
pub remove_secrets: &'a [String],
|
||||||
|
pub output: OutputMode,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn run(pool: &PgPool, args: UpdateArgs<'_>) -> Result<()> {
|
pub async fn run(pool: &PgPool, args: UpdateArgs<'_>, master_key: &[u8; 32]) -> Result<()> {
|
||||||
|
let mut tx = pool.begin().await?;
|
||||||
|
|
||||||
let row: Option<UpdateRow> = sqlx::query_as(
|
let row: Option<UpdateRow> = sqlx::query_as(
|
||||||
r#"
|
"SELECT id, version, tags, metadata, encrypted \
|
||||||
SELECT id, tags, metadata, encrypted
|
FROM secrets \
|
||||||
FROM secrets
|
WHERE namespace = $1 AND kind = $2 AND name = $3 \
|
||||||
WHERE namespace = $1 AND kind = $2 AND name = $3
|
FOR UPDATE",
|
||||||
"#,
|
|
||||||
)
|
)
|
||||||
.bind(args.namespace)
|
.bind(args.namespace)
|
||||||
.bind(args.kind)
|
.bind(args.kind)
|
||||||
.bind(args.name)
|
.bind(args.name)
|
||||||
.fetch_optional(pool)
|
.fetch_optional(&mut *tx)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
let row = row.ok_or_else(|| {
|
let row = row.ok_or_else(|| {
|
||||||
@@ -48,6 +54,26 @@ pub async fn run(pool: &PgPool, args: UpdateArgs<'_>) -> Result<()> {
|
|||||||
)
|
)
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
|
// Snapshot current state before modifying.
|
||||||
|
if let Err(e) = db::snapshot_history(
|
||||||
|
&mut tx,
|
||||||
|
db::SnapshotParams {
|
||||||
|
secret_id: row.id,
|
||||||
|
namespace: args.namespace,
|
||||||
|
kind: args.kind,
|
||||||
|
name: args.name,
|
||||||
|
version: row.version,
|
||||||
|
action: "update",
|
||||||
|
tags: &row.tags,
|
||||||
|
metadata: &row.metadata,
|
||||||
|
encrypted: &row.encrypted,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
{
|
||||||
|
tracing::warn!(error = %e, "failed to snapshot history before update");
|
||||||
|
}
|
||||||
|
|
||||||
// Merge tags
|
// Merge tags
|
||||||
let mut tags: Vec<String> = row.tags;
|
let mut tags: Vec<String> = row.tags;
|
||||||
for t in args.add_tags {
|
for t in args.add_tags {
|
||||||
@@ -64,26 +90,32 @@ pub async fn run(pool: &PgPool, args: UpdateArgs<'_>) -> Result<()> {
|
|||||||
};
|
};
|
||||||
for entry in args.meta_entries {
|
for entry in args.meta_entries {
|
||||||
let (key, value) = parse_kv(entry)?;
|
let (key, value) = parse_kv(entry)?;
|
||||||
meta_map.insert(key, Value::String(value));
|
meta_map.insert(key, value);
|
||||||
}
|
}
|
||||||
for key in args.remove_meta {
|
for key in args.remove_meta {
|
||||||
meta_map.remove(key);
|
meta_map.remove(key);
|
||||||
}
|
}
|
||||||
let metadata = Value::Object(meta_map);
|
let metadata = Value::Object(meta_map);
|
||||||
|
|
||||||
// Merge encrypted
|
// Decrypt existing encrypted blob, merge changes, re-encrypt
|
||||||
let mut enc_map: Map<String, Value> = match row.encrypted {
|
let existing_json = if row.encrypted.is_empty() {
|
||||||
|
Value::Object(Map::new())
|
||||||
|
} else {
|
||||||
|
crypto::decrypt_json(master_key, &row.encrypted)?
|
||||||
|
};
|
||||||
|
let mut enc_map: Map<String, Value> = match existing_json {
|
||||||
Value::Object(m) => m,
|
Value::Object(m) => m,
|
||||||
_ => Map::new(),
|
_ => Map::new(),
|
||||||
};
|
};
|
||||||
for entry in args.secret_entries {
|
for entry in args.secret_entries {
|
||||||
let (key, value) = parse_kv(entry)?;
|
let (key, value) = parse_kv(entry)?;
|
||||||
enc_map.insert(key, Value::String(value));
|
enc_map.insert(key, value);
|
||||||
}
|
}
|
||||||
for key in args.remove_secrets {
|
for key in args.remove_secrets {
|
||||||
enc_map.remove(key);
|
enc_map.remove(key);
|
||||||
}
|
}
|
||||||
let encrypted = Value::Object(enc_map);
|
let secret_json = Value::Object(enc_map);
|
||||||
|
let encrypted_bytes = crypto::encrypt_json(master_key, &secret_json)?;
|
||||||
|
|
||||||
tracing::debug!(
|
tracing::debug!(
|
||||||
namespace = args.namespace,
|
namespace = args.namespace,
|
||||||
@@ -92,33 +124,43 @@ pub async fn run(pool: &PgPool, args: UpdateArgs<'_>) -> Result<()> {
|
|||||||
"updating record"
|
"updating record"
|
||||||
);
|
);
|
||||||
|
|
||||||
sqlx::query(
|
// CAS: update only if version hasn't changed (FOR UPDATE lock ensures this).
|
||||||
r#"
|
let result = sqlx::query(
|
||||||
UPDATE secrets
|
"UPDATE secrets \
|
||||||
SET tags = $1, metadata = $2, encrypted = $3, updated_at = NOW()
|
SET tags = $1, metadata = $2, encrypted = $3, version = version + 1, updated_at = NOW() \
|
||||||
WHERE id = $4
|
WHERE id = $4 AND version = $5",
|
||||||
"#,
|
|
||||||
)
|
)
|
||||||
.bind(&tags)
|
.bind(&tags)
|
||||||
.bind(metadata)
|
.bind(&metadata)
|
||||||
.bind(encrypted)
|
.bind(&encrypted_bytes)
|
||||||
.bind(row.id)
|
.bind(row.id)
|
||||||
.execute(pool)
|
.bind(row.version)
|
||||||
|
.execute(&mut *tx)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
|
if result.rows_affected() == 0 {
|
||||||
|
tx.rollback().await?;
|
||||||
|
anyhow::bail!(
|
||||||
|
"Concurrent modification detected for [{}/{}] {}. Please retry.",
|
||||||
|
args.namespace,
|
||||||
|
args.kind,
|
||||||
|
args.name
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
let meta_keys: Vec<&str> = args
|
let meta_keys: Vec<&str> = args
|
||||||
.meta_entries
|
.meta_entries
|
||||||
.iter()
|
.iter()
|
||||||
.filter_map(|s| s.split_once('=').map(|(k, _)| k))
|
.filter_map(|s| s.split_once(['=', ':']).map(|(k, _)| k))
|
||||||
.collect();
|
.collect();
|
||||||
let secret_keys: Vec<&str> = args
|
let secret_keys: Vec<&str> = args
|
||||||
.secret_entries
|
.secret_entries
|
||||||
.iter()
|
.iter()
|
||||||
.filter_map(|s| s.split_once('=').map(|(k, _)| k))
|
.filter_map(|s| s.split_once(['=', ':']).map(|(k, _)| k))
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
crate::audit::log(
|
crate::audit::log_tx(
|
||||||
pool,
|
&mut tx,
|
||||||
"update",
|
"update",
|
||||||
args.namespace,
|
args.namespace,
|
||||||
args.kind,
|
args.kind,
|
||||||
@@ -134,8 +176,30 @@ pub async fn run(pool: &PgPool, args: UpdateArgs<'_>) -> Result<()> {
|
|||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
|
|
||||||
println!("Updated: [{}/{}] {}", args.namespace, args.kind, args.name);
|
tx.commit().await?;
|
||||||
|
|
||||||
|
let result_json = json!({
|
||||||
|
"action": "updated",
|
||||||
|
"namespace": args.namespace,
|
||||||
|
"kind": args.kind,
|
||||||
|
"name": args.name,
|
||||||
|
"add_tags": args.add_tags,
|
||||||
|
"remove_tags": args.remove_tags,
|
||||||
|
"meta_keys": meta_keys,
|
||||||
|
"remove_meta": args.remove_meta,
|
||||||
|
"secret_keys": secret_keys,
|
||||||
|
"remove_secrets": args.remove_secrets,
|
||||||
|
});
|
||||||
|
|
||||||
|
match args.output {
|
||||||
|
OutputMode::Json => {
|
||||||
|
println!("{}", serde_json::to_string_pretty(&result_json)?);
|
||||||
|
}
|
||||||
|
OutputMode::JsonCompact => {
|
||||||
|
println!("{}", serde_json::to_string(&result_json)?);
|
||||||
|
}
|
||||||
|
_ => {
|
||||||
|
println!("Updated: [{}/{}] {}", args.namespace, args.kind, args.name);
|
||||||
if !args.add_tags.is_empty() {
|
if !args.add_tags.is_empty() {
|
||||||
println!(" +tags: {}", args.add_tags.join(", "));
|
println!(" +tags: {}", args.add_tags.join(", "));
|
||||||
}
|
}
|
||||||
@@ -143,27 +207,19 @@ pub async fn run(pool: &PgPool, args: UpdateArgs<'_>) -> Result<()> {
|
|||||||
println!(" -tags: {}", args.remove_tags.join(", "));
|
println!(" -tags: {}", args.remove_tags.join(", "));
|
||||||
}
|
}
|
||||||
if !args.meta_entries.is_empty() {
|
if !args.meta_entries.is_empty() {
|
||||||
let keys: Vec<&str> = args
|
println!(" +metadata: {}", meta_keys.join(", "));
|
||||||
.meta_entries
|
|
||||||
.iter()
|
|
||||||
.filter_map(|s| s.split_once('=').map(|(k, _)| k))
|
|
||||||
.collect();
|
|
||||||
println!(" +metadata: {}", keys.join(", "));
|
|
||||||
}
|
}
|
||||||
if !args.remove_meta.is_empty() {
|
if !args.remove_meta.is_empty() {
|
||||||
println!(" -metadata: {}", args.remove_meta.join(", "));
|
println!(" -metadata: {}", args.remove_meta.join(", "));
|
||||||
}
|
}
|
||||||
if !args.secret_entries.is_empty() {
|
if !args.secret_entries.is_empty() {
|
||||||
let keys: Vec<&str> = args
|
println!(" +secrets: {}", secret_keys.join(", "));
|
||||||
.secret_entries
|
|
||||||
.iter()
|
|
||||||
.filter_map(|s| s.split_once('=').map(|(k, _)| k))
|
|
||||||
.collect();
|
|
||||||
println!(" +secrets: {}", keys.join(", "));
|
|
||||||
}
|
}
|
||||||
if !args.remove_secrets.is_empty() {
|
if !args.remove_secrets.is_empty() {
|
||||||
println!(" -secrets: {}", args.remove_secrets.join(", "));
|
println!(" -secrets: {}", args.remove_secrets.join(", "));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|||||||
394
src/commands/upgrade.rs
Normal file
394
src/commands/upgrade.rs
Normal file
@@ -0,0 +1,394 @@
|
|||||||
|
use anyhow::{Context, Result, bail};
|
||||||
|
use flate2::read::GzDecoder;
|
||||||
|
use serde::Deserialize;
|
||||||
|
use sha2::{Digest, Sha256};
|
||||||
|
use std::io::{Cursor, Read, Write};
|
||||||
|
use std::time::Duration;
|
||||||
|
|
||||||
|
const GITEA_API: &str = "https://gitea.refining.dev/api/v1/repos/refining/secrets/releases/latest";
|
||||||
|
|
||||||
|
const CURRENT_VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||||
|
|
||||||
|
#[derive(Debug, Deserialize)]
|
||||||
|
struct Release {
|
||||||
|
tag_name: String,
|
||||||
|
assets: Vec<Asset>,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Deserialize)]
|
||||||
|
struct Asset {
|
||||||
|
name: String,
|
||||||
|
browser_download_url: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
fn available_assets(assets: &[Asset]) -> String {
|
||||||
|
assets
|
||||||
|
.iter()
|
||||||
|
.map(|a| a.name.as_str())
|
||||||
|
.collect::<Vec<_>>()
|
||||||
|
.join(", ")
|
||||||
|
}
|
||||||
|
|
||||||
|
fn release_asset_name(tag_name: &str, suffix: &str) -> String {
|
||||||
|
format!("secrets-{tag_name}-{suffix}")
|
||||||
|
}
|
||||||
|
|
||||||
|
fn find_asset_by_name<'a>(assets: &'a [Asset], name: &str) -> Result<&'a Asset> {
|
||||||
|
assets.iter().find(|a| a.name == name).with_context(|| {
|
||||||
|
format!(
|
||||||
|
"no matching release asset found: {name}\navailable: {}",
|
||||||
|
available_assets(assets)
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Detect the asset suffix for the current platform/arch at compile time.
|
||||||
|
fn platform_asset_suffix() -> Result<&'static str> {
|
||||||
|
#[cfg(all(target_os = "linux", target_arch = "x86_64"))]
|
||||||
|
{
|
||||||
|
Ok("x86_64-linux-musl.tar.gz")
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(all(target_os = "macos", target_arch = "aarch64"))]
|
||||||
|
{
|
||||||
|
Ok("aarch64-macos.tar.gz")
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(all(target_os = "macos", target_arch = "x86_64"))]
|
||||||
|
{
|
||||||
|
Ok("x86_64-macos.tar.gz")
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(all(target_os = "windows", target_arch = "x86_64"))]
|
||||||
|
{
|
||||||
|
Ok("x86_64-windows.zip")
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(not(any(
|
||||||
|
all(target_os = "linux", target_arch = "x86_64"),
|
||||||
|
all(target_os = "macos", target_arch = "aarch64"),
|
||||||
|
all(target_os = "macos", target_arch = "x86_64"),
|
||||||
|
all(target_os = "windows", target_arch = "x86_64"),
|
||||||
|
)))]
|
||||||
|
bail!(
|
||||||
|
"Unsupported platform: {}/{}",
|
||||||
|
std::env::consts::OS,
|
||||||
|
std::env::consts::ARCH
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Strip the "secrets-" prefix from the tag and parse as semver.
|
||||||
|
fn parse_tag_version(tag: &str) -> Result<semver::Version> {
|
||||||
|
let ver_str = tag
|
||||||
|
.strip_prefix("secrets-")
|
||||||
|
.with_context(|| format!("unexpected tag format: {tag}"))?;
|
||||||
|
semver::Version::parse(ver_str)
|
||||||
|
.with_context(|| format!("failed to parse version from tag: {tag}"))
|
||||||
|
}
|
||||||
|
|
||||||
|
fn sha256_hex(bytes: &[u8]) -> String {
|
||||||
|
let digest = Sha256::digest(bytes);
|
||||||
|
format!("{digest:x}")
|
||||||
|
}
|
||||||
|
|
||||||
|
fn verify_checksum(asset_name: &str, archive: &[u8], checksum_contents: &str) -> Result<String> {
|
||||||
|
let expected_checksum = parse_checksum_file(checksum_contents)?;
|
||||||
|
let actual_checksum = sha256_hex(archive);
|
||||||
|
|
||||||
|
if actual_checksum != expected_checksum {
|
||||||
|
bail!(
|
||||||
|
"checksum verification failed for {}: expected {}, got {}",
|
||||||
|
asset_name,
|
||||||
|
expected_checksum,
|
||||||
|
actual_checksum
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(actual_checksum)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn parse_checksum_file(contents: &str) -> Result<String> {
|
||||||
|
let checksum = contents
|
||||||
|
.split_whitespace()
|
||||||
|
.next()
|
||||||
|
.context("checksum file is empty")?
|
||||||
|
.trim()
|
||||||
|
.to_ascii_lowercase();
|
||||||
|
|
||||||
|
if checksum.len() != 64 || !checksum.bytes().all(|b| b.is_ascii_hexdigit()) {
|
||||||
|
bail!("invalid SHA-256 checksum format")
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(checksum)
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn download_bytes(client: &reqwest::Client, url: &str, context: &str) -> Result<Vec<u8>> {
|
||||||
|
Ok(client
|
||||||
|
.get(url)
|
||||||
|
.send()
|
||||||
|
.await
|
||||||
|
.with_context(|| format!("{context}: request failed"))?
|
||||||
|
.error_for_status()
|
||||||
|
.with_context(|| format!("{context}: server returned an error"))?
|
||||||
|
.bytes()
|
||||||
|
.await
|
||||||
|
.with_context(|| format!("{context}: failed to read response body"))?
|
||||||
|
.to_vec())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Extract the binary from a tar.gz archive (first file whose name == "secrets").
|
||||||
|
fn extract_from_targz(bytes: &[u8]) -> Result<Vec<u8>> {
|
||||||
|
let gz = GzDecoder::new(Cursor::new(bytes));
|
||||||
|
let mut archive = tar::Archive::new(gz);
|
||||||
|
for entry in archive.entries().context("failed to read tar entries")? {
|
||||||
|
let mut entry = entry.context("bad tar entry")?;
|
||||||
|
let path = entry.path().context("bad tar entry path")?.into_owned();
|
||||||
|
let fname = path
|
||||||
|
.file_name()
|
||||||
|
.and_then(|n| n.to_str())
|
||||||
|
.unwrap_or_default();
|
||||||
|
if fname == "secrets" || fname == "secrets.exe" {
|
||||||
|
let mut buf = Vec::new();
|
||||||
|
entry.read_to_end(&mut buf).context("read tar entry")?;
|
||||||
|
return Ok(buf);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
bail!("binary not found inside tar.gz archive")
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Extract the binary from a zip archive (first file whose name matches).
|
||||||
|
#[cfg(target_os = "windows")]
|
||||||
|
fn extract_from_zip(bytes: &[u8]) -> Result<Vec<u8>> {
|
||||||
|
let reader = Cursor::new(bytes);
|
||||||
|
let mut archive = zip::ZipArchive::new(reader).context("failed to open zip archive")?;
|
||||||
|
for i in 0..archive.len() {
|
||||||
|
let mut file = archive.by_index(i).context("bad zip entry")?;
|
||||||
|
let fname = file.name().to_owned();
|
||||||
|
if fname.ends_with("secrets.exe") || fname.ends_with("secrets") {
|
||||||
|
let mut buf = Vec::new();
|
||||||
|
file.read_to_end(&mut buf).context("read zip entry")?;
|
||||||
|
return Ok(buf);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
bail!("binary not found inside zip archive")
|
||||||
|
}
|
||||||
|
|
||||||
|
pub async fn run(check_only: bool) -> Result<()> {
|
||||||
|
let current = semver::Version::parse(CURRENT_VERSION).context("invalid current version")?;
|
||||||
|
|
||||||
|
println!("Current version: v{current}");
|
||||||
|
println!("Checking for updates...");
|
||||||
|
|
||||||
|
let client = reqwest::Client::builder()
|
||||||
|
.user_agent(format!("secrets-cli/{CURRENT_VERSION}"))
|
||||||
|
.connect_timeout(Duration::from_secs(10))
|
||||||
|
.timeout(Duration::from_secs(120))
|
||||||
|
.build()
|
||||||
|
.context("failed to build HTTP client")?;
|
||||||
|
|
||||||
|
let release: Release = client
|
||||||
|
.get(GITEA_API)
|
||||||
|
.send()
|
||||||
|
.await
|
||||||
|
.context("failed to fetch release info from Gitea")?
|
||||||
|
.error_for_status()
|
||||||
|
.context("Gitea API returned an error")?
|
||||||
|
.json()
|
||||||
|
.await
|
||||||
|
.context("failed to parse release JSON")?;
|
||||||
|
|
||||||
|
let latest = parse_tag_version(&release.tag_name)?;
|
||||||
|
|
||||||
|
if latest <= current {
|
||||||
|
println!("Already up to date (v{current})");
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
println!("New version available: v{latest}");
|
||||||
|
|
||||||
|
if check_only {
|
||||||
|
println!("Run `secrets upgrade` to update.");
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
|
|
||||||
|
let suffix = platform_asset_suffix()?;
|
||||||
|
let asset_name = release_asset_name(&release.tag_name, suffix);
|
||||||
|
let asset = find_asset_by_name(&release.assets, &asset_name)?;
|
||||||
|
let checksum_name = format!("{}.sha256", asset.name);
|
||||||
|
let checksum_asset = find_asset_by_name(&release.assets, &checksum_name)?;
|
||||||
|
|
||||||
|
println!("Downloading {}...", asset.name);
|
||||||
|
|
||||||
|
let archive = download_bytes(&client, &asset.browser_download_url, "archive download").await?;
|
||||||
|
let checksum_contents = download_bytes(
|
||||||
|
&client,
|
||||||
|
&checksum_asset.browser_download_url,
|
||||||
|
"checksum download",
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
let actual_checksum = verify_checksum(
|
||||||
|
&asset.name,
|
||||||
|
&archive,
|
||||||
|
std::str::from_utf8(&checksum_contents).context("checksum file is not valid UTF-8")?,
|
||||||
|
)?;
|
||||||
|
|
||||||
|
println!("Verified SHA-256: {actual_checksum}");
|
||||||
|
|
||||||
|
println!("Extracting...");
|
||||||
|
|
||||||
|
let binary = if suffix.ends_with(".tar.gz") {
|
||||||
|
extract_from_targz(&archive)?
|
||||||
|
} else {
|
||||||
|
#[cfg(target_os = "windows")]
|
||||||
|
{
|
||||||
|
extract_from_zip(&archive)?
|
||||||
|
}
|
||||||
|
#[cfg(not(target_os = "windows"))]
|
||||||
|
bail!("zip extraction is only supported on Windows")
|
||||||
|
};
|
||||||
|
|
||||||
|
// Write to a temporary file, set executable permission, then atomically replace.
|
||||||
|
let mut tmp = tempfile::NamedTempFile::new().context("failed to create temp file")?;
|
||||||
|
tmp.write_all(&binary)
|
||||||
|
.context("failed to write temp binary")?;
|
||||||
|
|
||||||
|
#[cfg(unix)]
|
||||||
|
{
|
||||||
|
use std::os::unix::fs::PermissionsExt;
|
||||||
|
let perms = std::fs::Permissions::from_mode(0o755);
|
||||||
|
std::fs::set_permissions(tmp.path(), perms).context("failed to chmod temp binary")?;
|
||||||
|
}
|
||||||
|
|
||||||
|
self_replace::self_replace(tmp.path()).context("failed to replace current binary")?;
|
||||||
|
|
||||||
|
println!("Updated: v{current} → v{latest}");
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::*;
|
||||||
|
use flate2::Compression;
|
||||||
|
use flate2::write::GzEncoder;
|
||||||
|
use tar::Builder;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn parse_tag_version_accepts_release_tag() {
|
||||||
|
let version = parse_tag_version("secrets-0.6.1").expect("version should parse");
|
||||||
|
assert_eq!(version, semver::Version::new(0, 6, 1));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn parse_tag_version_rejects_invalid_tag() {
|
||||||
|
let err = parse_tag_version("v0.6.1").expect_err("tag should be rejected");
|
||||||
|
assert!(err.to_string().contains("unexpected tag format"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn parse_checksum_file_accepts_sha256sum_format() {
|
||||||
|
let checksum = parse_checksum_file(
|
||||||
|
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef secrets.tar.gz",
|
||||||
|
)
|
||||||
|
.expect("checksum should parse");
|
||||||
|
assert_eq!(
|
||||||
|
checksum,
|
||||||
|
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn parse_checksum_file_rejects_invalid_checksum() {
|
||||||
|
let err = parse_checksum_file("not-a-sha256").expect_err("checksum should be rejected");
|
||||||
|
assert!(err.to_string().contains("invalid SHA-256 checksum format"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn release_asset_name_matches_release_tag() {
|
||||||
|
assert_eq!(
|
||||||
|
release_asset_name("secrets-0.7.0", "x86_64-linux-musl.tar.gz"),
|
||||||
|
"secrets-secrets-0.7.0-x86_64-linux-musl.tar.gz"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn find_asset_by_name_rejects_stale_platform_match() {
|
||||||
|
let assets = vec![
|
||||||
|
Asset {
|
||||||
|
name: "secrets-secrets-0.6.9-x86_64-linux-musl.tar.gz".into(),
|
||||||
|
browser_download_url: "https://example.invalid/old".into(),
|
||||||
|
},
|
||||||
|
Asset {
|
||||||
|
name: "secrets-secrets-0.7.0-aarch64-macos.tar.gz".into(),
|
||||||
|
browser_download_url: "https://example.invalid/other".into(),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
let err = find_asset_by_name(&assets, "secrets-secrets-0.7.0-x86_64-linux-musl.tar.gz")
|
||||||
|
.expect_err("stale asset should not match");
|
||||||
|
|
||||||
|
assert!(err.to_string().contains("no matching release asset found"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn sha256_hex_matches_known_value() {
|
||||||
|
assert_eq!(
|
||||||
|
sha256_hex(b"abc"),
|
||||||
|
"ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn verify_checksum_rejects_mismatch() {
|
||||||
|
let err = verify_checksum(
|
||||||
|
"secrets.tar.gz",
|
||||||
|
b"abc",
|
||||||
|
"0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef secrets.tar.gz",
|
||||||
|
)
|
||||||
|
.expect_err("checksum mismatch should fail");
|
||||||
|
|
||||||
|
assert!(err.to_string().contains("checksum verification failed"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn extract_from_targz_reads_binary() {
|
||||||
|
let payload = b"fake-secrets-binary";
|
||||||
|
let archive = make_test_targz("secrets", payload);
|
||||||
|
let extracted = extract_from_targz(&archive).expect("binary should extract");
|
||||||
|
assert_eq!(extracted, payload);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn make_test_targz(name: &str, payload: &[u8]) -> Vec<u8> {
|
||||||
|
let encoder = GzEncoder::new(Vec::new(), Compression::default());
|
||||||
|
let mut builder = Builder::new(encoder);
|
||||||
|
|
||||||
|
let mut header = tar::Header::new_gnu();
|
||||||
|
header.set_mode(0o755);
|
||||||
|
header.set_size(payload.len() as u64);
|
||||||
|
header.set_cksum();
|
||||||
|
builder
|
||||||
|
.append_data(&mut header, name, payload)
|
||||||
|
.expect("append tar entry");
|
||||||
|
|
||||||
|
let encoder = builder.into_inner().expect("finish tar builder");
|
||||||
|
encoder.finish().expect("finish gzip")
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(target_os = "windows")]
|
||||||
|
#[test]
|
||||||
|
fn extract_from_zip_reads_binary() {
|
||||||
|
use zip::write::SimpleFileOptions;
|
||||||
|
|
||||||
|
let cursor = Cursor::new(Vec::<u8>::new());
|
||||||
|
let mut writer = zip::ZipWriter::new(cursor);
|
||||||
|
writer
|
||||||
|
.start_file("secrets.exe", SimpleFileOptions::default())
|
||||||
|
.expect("start zip file");
|
||||||
|
writer
|
||||||
|
.write_all(b"fake-secrets-binary")
|
||||||
|
.expect("write zip payload");
|
||||||
|
let bytes = writer.finish().expect("finish zip").into_inner();
|
||||||
|
|
||||||
|
let extracted = extract_from_zip(&bytes).expect("binary should extract");
|
||||||
|
assert_eq!(extracted, b"fake-secrets-binary");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -10,7 +10,8 @@ pub struct Config {
|
|||||||
|
|
||||||
pub fn config_dir() -> PathBuf {
|
pub fn config_dir() -> PathBuf {
|
||||||
dirs::config_dir()
|
dirs::config_dir()
|
||||||
.unwrap_or_else(|| PathBuf::from("~/.config"))
|
.or_else(|| dirs::home_dir().map(|h| h.join(".config")))
|
||||||
|
.unwrap_or_else(|| PathBuf::from(".config"))
|
||||||
.join("secrets")
|
.join("secrets")
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -24,36 +25,38 @@ pub fn load_config() -> Result<Config> {
|
|||||||
return Ok(Config::default());
|
return Ok(Config::default());
|
||||||
}
|
}
|
||||||
let content = fs::read_to_string(&path)
|
let content = fs::read_to_string(&path)
|
||||||
.with_context(|| format!("读取配置文件失败: {}", path.display()))?;
|
.with_context(|| format!("failed to read config file: {}", path.display()))?;
|
||||||
let config: Config = toml::from_str(&content)
|
let config: Config = toml::from_str(&content)
|
||||||
.with_context(|| format!("解析配置文件失败: {}", path.display()))?;
|
.with_context(|| format!("failed to parse config file: {}", path.display()))?;
|
||||||
Ok(config)
|
Ok(config)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn save_config(config: &Config) -> Result<()> {
|
pub fn save_config(config: &Config) -> Result<()> {
|
||||||
let dir = config_dir();
|
let dir = config_dir();
|
||||||
fs::create_dir_all(&dir).with_context(|| format!("创建配置目录失败: {}", dir.display()))?;
|
fs::create_dir_all(&dir)
|
||||||
|
.with_context(|| format!("failed to create config dir: {}", dir.display()))?;
|
||||||
|
|
||||||
let path = config_path();
|
let path = config_path();
|
||||||
let content = toml::to_string_pretty(config).context("序列化配置失败")?;
|
let content = toml::to_string_pretty(config).context("failed to serialize config")?;
|
||||||
fs::write(&path, &content).with_context(|| format!("写入配置文件失败: {}", path.display()))?;
|
fs::write(&path, &content)
|
||||||
|
.with_context(|| format!("failed to write config file: {}", path.display()))?;
|
||||||
|
|
||||||
// 设置文件权限为 0600(仅所有者读写)
|
// Set file permissions to 0600 (owner read/write only)
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
{
|
{
|
||||||
use std::os::unix::fs::PermissionsExt;
|
use std::os::unix::fs::PermissionsExt;
|
||||||
let perms = fs::Permissions::from_mode(0o600);
|
let perms = fs::Permissions::from_mode(0o600);
|
||||||
fs::set_permissions(&path, perms)
|
fs::set_permissions(&path, perms)
|
||||||
.with_context(|| format!("设置文件权限失败: {}", path.display()))?;
|
.with_context(|| format!("failed to set file permissions: {}", path.display()))?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 按优先级解析数据库连接串:
|
/// Resolve database URL by priority:
|
||||||
/// 1. --db-url CLI 参数(非空时使用)
|
/// 1. --db-url CLI flag (if non-empty)
|
||||||
/// 2. ~/.config/secrets/config.toml 中的 database_url
|
/// 2. database_url in ~/.config/secrets/config.toml
|
||||||
/// 3. 报错并提示用户配置
|
/// 3. Error with setup instructions
|
||||||
pub fn resolve_db_url(cli_db_url: &str) -> Result<String> {
|
pub fn resolve_db_url(cli_db_url: &str) -> Result<String> {
|
||||||
if !cli_db_url.is_empty() {
|
if !cli_db_url.is_empty() {
|
||||||
return Ok(cli_db_url.to_string());
|
return Ok(cli_db_url.to_string());
|
||||||
@@ -66,5 +69,5 @@ pub fn resolve_db_url(cli_db_url: &str) -> Result<String> {
|
|||||||
return Ok(url);
|
return Ok(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
anyhow::bail!("数据库未配置。请先运行:\n\n secrets config set-db <DATABASE_URL>\n")
|
anyhow::bail!("Database not configured. Run:\n\n secrets config set-db <DATABASE_URL>\n")
|
||||||
}
|
}
|
||||||
|
|||||||
183
src/crypto.rs
Normal file
183
src/crypto.rs
Normal file
@@ -0,0 +1,183 @@
|
|||||||
|
use aes_gcm::{
|
||||||
|
Aes256Gcm, Key, Nonce,
|
||||||
|
aead::{Aead, AeadCore, KeyInit, OsRng},
|
||||||
|
};
|
||||||
|
use anyhow::{Context, Result, bail};
|
||||||
|
use argon2::{Argon2, Params, Version};
|
||||||
|
use serde_json::Value;
|
||||||
|
|
||||||
|
const KEYRING_SERVICE: &str = "secrets-cli";
|
||||||
|
const KEYRING_USER: &str = "master-key";
|
||||||
|
const NONCE_LEN: usize = 12;
|
||||||
|
|
||||||
|
// ─── Argon2id key derivation ─────────────────────────────────────────────────
|
||||||
|
|
||||||
|
/// Derive a 32-byte Master Key from a password and salt using Argon2id.
|
||||||
|
/// Parameters: m=65536 KiB (64 MB), t=3, p=4 — OWASP recommended.
|
||||||
|
pub fn derive_master_key(password: &str, salt: &[u8]) -> Result<[u8; 32]> {
|
||||||
|
let params = Params::new(65536, 3, 4, Some(32)).context("invalid Argon2id params")?;
|
||||||
|
let argon2 = Argon2::new(argon2::Algorithm::Argon2id, Version::V0x13, params);
|
||||||
|
let mut key = [0u8; 32];
|
||||||
|
argon2
|
||||||
|
.hash_password_into(password.as_bytes(), salt, &mut key)
|
||||||
|
.map_err(|e| anyhow::anyhow!("Argon2id derivation failed: {}", e))?;
|
||||||
|
Ok(key)
|
||||||
|
}
|
||||||
|
|
||||||
|
// ─── AES-256-GCM encrypt / decrypt ───────────────────────────────────────────
|
||||||
|
|
||||||
|
/// Encrypt plaintext bytes with AES-256-GCM.
|
||||||
|
/// Returns `nonce (12 B) || ciphertext+tag`.
|
||||||
|
pub fn encrypt(master_key: &[u8; 32], plaintext: &[u8]) -> Result<Vec<u8>> {
|
||||||
|
let key = Key::<Aes256Gcm>::from_slice(master_key);
|
||||||
|
let cipher = Aes256Gcm::new(key);
|
||||||
|
let nonce = Aes256Gcm::generate_nonce(&mut OsRng);
|
||||||
|
let ciphertext = cipher
|
||||||
|
.encrypt(&nonce, plaintext)
|
||||||
|
.map_err(|e| anyhow::anyhow!("AES-256-GCM encryption failed: {}", e))?;
|
||||||
|
let mut out = Vec::with_capacity(NONCE_LEN + ciphertext.len());
|
||||||
|
out.extend_from_slice(&nonce);
|
||||||
|
out.extend_from_slice(&ciphertext);
|
||||||
|
Ok(out)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Decrypt `nonce (12 B) || ciphertext+tag` with AES-256-GCM.
|
||||||
|
pub fn decrypt(master_key: &[u8; 32], data: &[u8]) -> Result<Vec<u8>> {
|
||||||
|
if data.len() < NONCE_LEN {
|
||||||
|
bail!(
|
||||||
|
"encrypted data too short ({}B); possibly corrupted",
|
||||||
|
data.len()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
let (nonce_bytes, ciphertext) = data.split_at(NONCE_LEN);
|
||||||
|
let key = Key::<Aes256Gcm>::from_slice(master_key);
|
||||||
|
let cipher = Aes256Gcm::new(key);
|
||||||
|
let nonce = Nonce::from_slice(nonce_bytes);
|
||||||
|
cipher
|
||||||
|
.decrypt(nonce, ciphertext)
|
||||||
|
.map_err(|_| anyhow::anyhow!("decryption failed — wrong master key or corrupted data"))
|
||||||
|
}
|
||||||
|
|
||||||
|
// ─── JSON helpers ─────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
/// Serialize a JSON Value and encrypt it. Returns the encrypted blob.
|
||||||
|
pub fn encrypt_json(master_key: &[u8; 32], value: &Value) -> Result<Vec<u8>> {
|
||||||
|
let bytes = serde_json::to_vec(value).context("serialize JSON for encryption")?;
|
||||||
|
encrypt(master_key, &bytes)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Decrypt an encrypted blob and deserialize it as a JSON Value.
|
||||||
|
pub fn decrypt_json(master_key: &[u8; 32], data: &[u8]) -> Result<Value> {
|
||||||
|
let bytes = decrypt(master_key, data)?;
|
||||||
|
serde_json::from_slice(&bytes).context("deserialize decrypted JSON")
|
||||||
|
}
|
||||||
|
|
||||||
|
// ─── OS Keychain ──────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
/// Load the Master Key from the OS Keychain.
|
||||||
|
/// Returns an error with a helpful message if it hasn't been initialized.
|
||||||
|
pub fn load_master_key() -> Result<[u8; 32]> {
|
||||||
|
let entry =
|
||||||
|
keyring::Entry::new(KEYRING_SERVICE, KEYRING_USER).context("create keychain entry")?;
|
||||||
|
let hex = entry.get_password().map_err(|_| {
|
||||||
|
anyhow::anyhow!("Master key not found in keychain. Run `secrets init` first.")
|
||||||
|
})?;
|
||||||
|
let bytes = hex::decode_hex(&hex)?;
|
||||||
|
if bytes.len() != 32 {
|
||||||
|
bail!(
|
||||||
|
"stored master key has unexpected length {}; re-run `secrets init`",
|
||||||
|
bytes.len()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
let mut key = [0u8; 32];
|
||||||
|
key.copy_from_slice(&bytes);
|
||||||
|
Ok(key)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Store the Master Key in the OS Keychain (overwrites any existing value).
|
||||||
|
pub fn store_master_key(key: &[u8; 32]) -> Result<()> {
|
||||||
|
let entry =
|
||||||
|
keyring::Entry::new(KEYRING_SERVICE, KEYRING_USER).context("create keychain entry")?;
|
||||||
|
let hex = hex::encode_hex(key);
|
||||||
|
entry
|
||||||
|
.set_password(&hex)
|
||||||
|
.map_err(|e| anyhow::anyhow!("keychain write failed: {}", e))?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
// ─── Minimal hex helpers (avoid extra dep) ────────────────────────────────────
|
||||||
|
|
||||||
|
mod hex {
|
||||||
|
use anyhow::{Result, bail};
|
||||||
|
|
||||||
|
pub fn encode_hex(bytes: &[u8]) -> String {
|
||||||
|
bytes.iter().map(|b| format!("{:02x}", b)).collect()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn decode_hex(s: &str) -> Result<Vec<u8>> {
|
||||||
|
if !s.len().is_multiple_of(2) {
|
||||||
|
bail!("hex string has odd length");
|
||||||
|
}
|
||||||
|
(0..s.len())
|
||||||
|
.step_by(2)
|
||||||
|
.map(|i| u8::from_str_radix(&s[i..i + 2], 16).map_err(|e| anyhow::anyhow!("{}", e)))
|
||||||
|
.collect()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn roundtrip_encrypt_decrypt() {
|
||||||
|
let key = [0x42u8; 32];
|
||||||
|
let plaintext = b"hello world";
|
||||||
|
let enc = encrypt(&key, plaintext).unwrap();
|
||||||
|
let dec = decrypt(&key, &enc).unwrap();
|
||||||
|
assert_eq!(dec, plaintext);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn encrypt_produces_different_ciphertexts() {
|
||||||
|
let key = [0x42u8; 32];
|
||||||
|
let plaintext = b"hello world";
|
||||||
|
let enc1 = encrypt(&key, plaintext).unwrap();
|
||||||
|
let enc2 = encrypt(&key, plaintext).unwrap();
|
||||||
|
// Different nonces → different ciphertexts
|
||||||
|
assert_ne!(enc1, enc2);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn wrong_key_fails_decryption() {
|
||||||
|
let key1 = [0x42u8; 32];
|
||||||
|
let key2 = [0x43u8; 32];
|
||||||
|
let enc = encrypt(&key1, b"secret").unwrap();
|
||||||
|
assert!(decrypt(&key2, &enc).is_err());
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn json_roundtrip() {
|
||||||
|
let key = [0x42u8; 32];
|
||||||
|
let value = serde_json::json!({"token": "abc123", "password": "hunter2"});
|
||||||
|
let enc = encrypt_json(&key, &value).unwrap();
|
||||||
|
let dec = decrypt_json(&key, &enc).unwrap();
|
||||||
|
assert_eq!(dec, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn derive_master_key_deterministic() {
|
||||||
|
let salt = b"fixed_test_salt_";
|
||||||
|
let k1 = derive_master_key("password", salt).unwrap();
|
||||||
|
let k2 = derive_master_key("password", salt).unwrap();
|
||||||
|
assert_eq!(k1, k2);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn derive_master_key_different_passwords() {
|
||||||
|
let salt = b"fixed_test_salt_";
|
||||||
|
let k1 = derive_master_key("password1", salt).unwrap();
|
||||||
|
let k2 = derive_master_key("password2", salt).unwrap();
|
||||||
|
assert_ne!(k1, k2);
|
||||||
|
}
|
||||||
|
}
|
||||||
117
src/db.rs
117
src/db.rs
@@ -6,6 +6,7 @@ pub async fn create_pool(database_url: &str) -> Result<PgPool> {
|
|||||||
tracing::debug!("connecting to database");
|
tracing::debug!("connecting to database");
|
||||||
let pool = PgPoolOptions::new()
|
let pool = PgPoolOptions::new()
|
||||||
.max_connections(5)
|
.max_connections(5)
|
||||||
|
.acquire_timeout(std::time::Duration::from_secs(5))
|
||||||
.connect(database_url)
|
.connect(database_url)
|
||||||
.await?;
|
.await?;
|
||||||
tracing::debug!("database connection established");
|
tracing::debug!("database connection established");
|
||||||
@@ -23,7 +24,8 @@ pub async fn migrate(pool: &PgPool) -> Result<()> {
|
|||||||
name VARCHAR(256) NOT NULL,
|
name VARCHAR(256) NOT NULL,
|
||||||
tags TEXT[] NOT NULL DEFAULT '{}',
|
tags TEXT[] NOT NULL DEFAULT '{}',
|
||||||
metadata JSONB NOT NULL DEFAULT '{}',
|
metadata JSONB NOT NULL DEFAULT '{}',
|
||||||
encrypted JSONB NOT NULL DEFAULT '{}',
|
encrypted BYTEA NOT NULL DEFAULT '\x',
|
||||||
|
version BIGINT NOT NULL DEFAULT 1,
|
||||||
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
||||||
UNIQUE(namespace, kind, name)
|
UNIQUE(namespace, kind, name)
|
||||||
@@ -35,11 +37,41 @@ pub async fn migrate(pool: &PgPool) -> Result<()> {
|
|||||||
EXCEPTION WHEN OTHERS THEN NULL;
|
EXCEPTION WHEN OTHERS THEN NULL;
|
||||||
END $$;
|
END $$;
|
||||||
|
|
||||||
|
DO $$ BEGIN
|
||||||
|
ALTER TABLE secrets ADD COLUMN IF NOT EXISTS version BIGINT NOT NULL DEFAULT 1;
|
||||||
|
EXCEPTION WHEN OTHERS THEN NULL;
|
||||||
|
END $$;
|
||||||
|
|
||||||
|
-- Migrate encrypted column from JSONB to BYTEA if still JSONB type.
|
||||||
|
-- After migration, old plaintext rows will have their JSONB data
|
||||||
|
-- stored as raw bytes (UTF-8 encoded).
|
||||||
|
DO $$ BEGIN
|
||||||
|
IF EXISTS (
|
||||||
|
SELECT 1 FROM information_schema.columns
|
||||||
|
WHERE table_name = 'secrets'
|
||||||
|
AND column_name = 'encrypted'
|
||||||
|
AND data_type = 'jsonb'
|
||||||
|
) THEN
|
||||||
|
ALTER TABLE secrets RENAME COLUMN encrypted TO encrypted_jsonb_old;
|
||||||
|
ALTER TABLE secrets ADD COLUMN encrypted BYTEA NOT NULL DEFAULT '\x';
|
||||||
|
-- Copy existing JSONB data as raw UTF-8 bytes so nothing is lost
|
||||||
|
UPDATE secrets SET encrypted = convert_to(encrypted_jsonb_old::text, 'UTF8');
|
||||||
|
ALTER TABLE secrets DROP COLUMN encrypted_jsonb_old;
|
||||||
|
END IF;
|
||||||
|
EXCEPTION WHEN OTHERS THEN NULL;
|
||||||
|
END $$;
|
||||||
|
|
||||||
CREATE INDEX IF NOT EXISTS idx_secrets_namespace ON secrets(namespace);
|
CREATE INDEX IF NOT EXISTS idx_secrets_namespace ON secrets(namespace);
|
||||||
CREATE INDEX IF NOT EXISTS idx_secrets_kind ON secrets(kind);
|
CREATE INDEX IF NOT EXISTS idx_secrets_kind ON secrets(kind);
|
||||||
CREATE INDEX IF NOT EXISTS idx_secrets_tags ON secrets USING GIN(tags);
|
CREATE INDEX IF NOT EXISTS idx_secrets_tags ON secrets USING GIN(tags);
|
||||||
CREATE INDEX IF NOT EXISTS idx_secrets_metadata ON secrets USING GIN(metadata jsonb_path_ops);
|
CREATE INDEX IF NOT EXISTS idx_secrets_metadata ON secrets USING GIN(metadata jsonb_path_ops);
|
||||||
|
|
||||||
|
-- Key-value config table: stores Argon2id salt (shared across devices)
|
||||||
|
CREATE TABLE IF NOT EXISTS kv_config (
|
||||||
|
key TEXT PRIMARY KEY,
|
||||||
|
value BYTEA NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS audit_log (
|
CREATE TABLE IF NOT EXISTS audit_log (
|
||||||
id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
||||||
action VARCHAR(32) NOT NULL,
|
action VARCHAR(32) NOT NULL,
|
||||||
@@ -53,6 +85,26 @@ pub async fn migrate(pool: &PgPool) -> Result<()> {
|
|||||||
|
|
||||||
CREATE INDEX IF NOT EXISTS idx_audit_log_created ON audit_log(created_at DESC);
|
CREATE INDEX IF NOT EXISTS idx_audit_log_created ON audit_log(created_at DESC);
|
||||||
CREATE INDEX IF NOT EXISTS idx_audit_log_ns_kind ON audit_log(namespace, kind);
|
CREATE INDEX IF NOT EXISTS idx_audit_log_ns_kind ON audit_log(namespace, kind);
|
||||||
|
|
||||||
|
-- History table: snapshot of secrets before each write operation.
|
||||||
|
-- Supports rollback to any prior version via `secrets rollback`.
|
||||||
|
CREATE TABLE IF NOT EXISTS secrets_history (
|
||||||
|
id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
||||||
|
secret_id UUID NOT NULL,
|
||||||
|
namespace VARCHAR(64) NOT NULL,
|
||||||
|
kind VARCHAR(64) NOT NULL,
|
||||||
|
name VARCHAR(256) NOT NULL,
|
||||||
|
version BIGINT NOT NULL,
|
||||||
|
action VARCHAR(16) NOT NULL,
|
||||||
|
tags TEXT[] NOT NULL DEFAULT '{}',
|
||||||
|
metadata JSONB NOT NULL DEFAULT '{}',
|
||||||
|
encrypted BYTEA NOT NULL DEFAULT '\x',
|
||||||
|
actor VARCHAR(128) NOT NULL DEFAULT '',
|
||||||
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_history_secret_id ON secrets_history(secret_id, version DESC);
|
||||||
|
CREATE INDEX IF NOT EXISTS idx_history_ns_kind_name ON secrets_history(namespace, kind, name, version DESC);
|
||||||
"#,
|
"#,
|
||||||
)
|
)
|
||||||
.execute(pool)
|
.execute(pool)
|
||||||
@@ -60,3 +112,66 @@ pub async fn migrate(pool: &PgPool) -> Result<()> {
|
|||||||
tracing::debug!("migrations complete");
|
tracing::debug!("migrations complete");
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Snapshot parameters grouped to avoid too-many-arguments lint.
|
||||||
|
pub struct SnapshotParams<'a> {
|
||||||
|
pub secret_id: uuid::Uuid,
|
||||||
|
pub namespace: &'a str,
|
||||||
|
pub kind: &'a str,
|
||||||
|
pub name: &'a str,
|
||||||
|
pub version: i64,
|
||||||
|
pub action: &'a str,
|
||||||
|
pub tags: &'a [String],
|
||||||
|
pub metadata: &'a serde_json::Value,
|
||||||
|
pub encrypted: &'a [u8],
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Snapshot a secrets row into `secrets_history` before a write operation.
|
||||||
|
/// `action` is one of "add", "update", "delete".
|
||||||
|
/// Failures are non-fatal (caller should warn).
|
||||||
|
pub async fn snapshot_history(
|
||||||
|
tx: &mut sqlx::Transaction<'_, sqlx::Postgres>,
|
||||||
|
p: SnapshotParams<'_>,
|
||||||
|
) -> Result<()> {
|
||||||
|
let actor = std::env::var("USER").unwrap_or_default();
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO secrets_history \
|
||||||
|
(secret_id, namespace, kind, name, version, action, tags, metadata, encrypted, actor) \
|
||||||
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10)",
|
||||||
|
)
|
||||||
|
.bind(p.secret_id)
|
||||||
|
.bind(p.namespace)
|
||||||
|
.bind(p.kind)
|
||||||
|
.bind(p.name)
|
||||||
|
.bind(p.version)
|
||||||
|
.bind(p.action)
|
||||||
|
.bind(p.tags)
|
||||||
|
.bind(p.metadata)
|
||||||
|
.bind(p.encrypted)
|
||||||
|
.bind(&actor)
|
||||||
|
.execute(&mut **tx)
|
||||||
|
.await?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Load the Argon2id salt from the database.
|
||||||
|
/// Returns None if not yet initialized.
|
||||||
|
pub async fn load_argon2_salt(pool: &PgPool) -> Result<Option<Vec<u8>>> {
|
||||||
|
let row: Option<(Vec<u8>,)> =
|
||||||
|
sqlx::query_as("SELECT value FROM kv_config WHERE key = 'argon2_salt'")
|
||||||
|
.fetch_optional(pool)
|
||||||
|
.await?;
|
||||||
|
Ok(row.map(|(v,)| v))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Store the Argon2id salt in the database (only called once on first device init).
|
||||||
|
pub async fn store_argon2_salt(pool: &PgPool, salt: &[u8]) -> Result<()> {
|
||||||
|
sqlx::query(
|
||||||
|
"INSERT INTO kv_config (key, value) VALUES ('argon2_salt', $1) \
|
||||||
|
ON CONFLICT (key) DO NOTHING",
|
||||||
|
)
|
||||||
|
.bind(salt)
|
||||||
|
.execute(pool)
|
||||||
|
.await?;
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|||||||
331
src/main.rs
331
src/main.rs
@@ -1,6 +1,7 @@
|
|||||||
mod audit;
|
mod audit;
|
||||||
mod commands;
|
mod commands;
|
||||||
mod config;
|
mod config;
|
||||||
|
mod crypto;
|
||||||
mod db;
|
mod db;
|
||||||
mod models;
|
mod models;
|
||||||
mod output;
|
mod output;
|
||||||
@@ -16,7 +17,13 @@ use output::resolve_output_mode;
|
|||||||
name = "secrets",
|
name = "secrets",
|
||||||
version,
|
version,
|
||||||
about = "Secrets & config manager backed by PostgreSQL — optimised for AI agents",
|
about = "Secrets & config manager backed by PostgreSQL — optimised for AI agents",
|
||||||
after_help = "QUICK START (AI agents):
|
after_help = "QUICK START:
|
||||||
|
# 1. Configure database (once per device)
|
||||||
|
secrets config set-db \"postgres://postgres:<password>@<host>:<port>/secrets\"
|
||||||
|
|
||||||
|
# 2. Initialize master key (once per device)
|
||||||
|
secrets init
|
||||||
|
|
||||||
# Discover what namespaces / kinds exist
|
# Discover what namespaces / kinds exist
|
||||||
secrets search --summary --limit 20
|
secrets search --summary --limit 20
|
||||||
|
|
||||||
@@ -44,6 +51,23 @@ struct Cli {
|
|||||||
|
|
||||||
#[derive(Subcommand)]
|
#[derive(Subcommand)]
|
||||||
enum Commands {
|
enum Commands {
|
||||||
|
/// Initialize master key on this device (run once per device).
|
||||||
|
///
|
||||||
|
/// Prompts for a master password, derives a key with Argon2id, and stores
|
||||||
|
/// it in the OS Keychain. Use the same password on every device.
|
||||||
|
///
|
||||||
|
/// NOTE: Run `secrets config set-db <URL>` first if database is not configured.
|
||||||
|
#[command(after_help = "PREREQUISITE:
|
||||||
|
Database must be configured first. Run: secrets config set-db <DATABASE_URL>
|
||||||
|
|
||||||
|
EXAMPLES:
|
||||||
|
# First device: generates a new Argon2id salt and stores master key
|
||||||
|
secrets init
|
||||||
|
|
||||||
|
# Subsequent devices: reuses existing salt from the database
|
||||||
|
secrets init")]
|
||||||
|
Init,
|
||||||
|
|
||||||
/// Add or update a record (upsert). Use -m for plaintext metadata, -s for secrets.
|
/// Add or update a record (upsert). Use -m for plaintext metadata, -s for secrets.
|
||||||
#[command(after_help = "EXAMPLES:
|
#[command(after_help = "EXAMPLES:
|
||||||
# Add a server
|
# Add a server
|
||||||
@@ -139,9 +163,9 @@ enum Commands {
|
|||||||
/// Exact name filter, e.g. gitea, i-uf63f2uookgs5uxmrdyc
|
/// Exact name filter, e.g. gitea, i-uf63f2uookgs5uxmrdyc
|
||||||
#[arg(long)]
|
#[arg(long)]
|
||||||
name: Option<String>,
|
name: Option<String>,
|
||||||
/// Filter by tag, e.g. --tag aliyun
|
/// Filter by tag, e.g. --tag aliyun (repeatable for AND intersection)
|
||||||
#[arg(long)]
|
#[arg(long)]
|
||||||
tag: Option<String>,
|
tag: Vec<String>,
|
||||||
/// Fuzzy keyword (matches name, namespace, kind, tags, metadata text)
|
/// Fuzzy keyword (matches name, namespace, kind, tags, metadata text)
|
||||||
#[arg(short, long)]
|
#[arg(short, long)]
|
||||||
query: Option<String>,
|
query: Option<String>,
|
||||||
@@ -185,6 +209,9 @@ enum Commands {
|
|||||||
/// Exact name of the record to delete
|
/// Exact name of the record to delete
|
||||||
#[arg(long)]
|
#[arg(long)]
|
||||||
name: String,
|
name: String,
|
||||||
|
/// Output format: text (default on TTY), json, json-compact
|
||||||
|
#[arg(short, long = "output")]
|
||||||
|
output: Option<String>,
|
||||||
},
|
},
|
||||||
|
|
||||||
/// Incrementally update an existing record (merge semantics; record must exist).
|
/// Incrementally update an existing record (merge semantics; record must exist).
|
||||||
@@ -236,6 +263,9 @@ enum Commands {
|
|||||||
/// Delete a secret field by key (repeatable)
|
/// Delete a secret field by key (repeatable)
|
||||||
#[arg(long = "remove-secret")]
|
#[arg(long = "remove-secret")]
|
||||||
remove_secrets: Vec<String>,
|
remove_secrets: Vec<String>,
|
||||||
|
/// Output format: text (default on TTY), json, json-compact
|
||||||
|
#[arg(short, long = "output")]
|
||||||
|
output: Option<String>,
|
||||||
},
|
},
|
||||||
|
|
||||||
/// Manage CLI configuration (database connection, etc.)
|
/// Manage CLI configuration (database connection, etc.)
|
||||||
@@ -252,6 +282,128 @@ enum Commands {
|
|||||||
#[command(subcommand)]
|
#[command(subcommand)]
|
||||||
action: ConfigAction,
|
action: ConfigAction,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/// Show the change history for a record.
|
||||||
|
#[command(after_help = "EXAMPLES:
|
||||||
|
# Show last 20 versions for a service record
|
||||||
|
secrets history -n refining --kind service --name gitea
|
||||||
|
|
||||||
|
# Show last 5 versions
|
||||||
|
secrets history -n refining --kind service --name gitea --limit 5")]
|
||||||
|
History {
|
||||||
|
#[arg(short, long)]
|
||||||
|
namespace: String,
|
||||||
|
#[arg(long)]
|
||||||
|
kind: String,
|
||||||
|
#[arg(long)]
|
||||||
|
name: String,
|
||||||
|
/// Number of history entries to show [default: 20]
|
||||||
|
#[arg(long, default_value = "20")]
|
||||||
|
limit: u32,
|
||||||
|
/// Output format: text (default on TTY), json, json-compact
|
||||||
|
#[arg(short, long = "output")]
|
||||||
|
output: Option<String>,
|
||||||
|
},
|
||||||
|
|
||||||
|
/// Roll back a record to a previous version.
|
||||||
|
#[command(after_help = "EXAMPLES:
|
||||||
|
# Roll back to the most recent snapshot (undo last change)
|
||||||
|
secrets rollback -n refining --kind service --name gitea
|
||||||
|
|
||||||
|
# Roll back to a specific version number
|
||||||
|
secrets rollback -n refining --kind service --name gitea --to-version 3")]
|
||||||
|
Rollback {
|
||||||
|
#[arg(short, long)]
|
||||||
|
namespace: String,
|
||||||
|
#[arg(long)]
|
||||||
|
kind: String,
|
||||||
|
#[arg(long)]
|
||||||
|
name: String,
|
||||||
|
/// Target version to restore. Omit to restore the most recent snapshot.
|
||||||
|
#[arg(long)]
|
||||||
|
to_version: Option<i64>,
|
||||||
|
/// Output format: text (default on TTY), json, json-compact
|
||||||
|
#[arg(short, long = "output")]
|
||||||
|
output: Option<String>,
|
||||||
|
},
|
||||||
|
|
||||||
|
/// Print secrets as environment variables (stdout only, nothing persisted).
|
||||||
|
///
|
||||||
|
/// Outputs KEY=VALUE pairs for all matched records. Safe to pipe or eval.
|
||||||
|
#[command(after_help = "EXAMPLES:
|
||||||
|
# Print env vars for a single service
|
||||||
|
secrets inject -n refining --kind service --name gitea
|
||||||
|
|
||||||
|
# With a custom prefix
|
||||||
|
secrets inject -n refining --kind service --name gitea --prefix GITEA
|
||||||
|
|
||||||
|
# JSON output (all vars as a JSON object)
|
||||||
|
secrets inject -n refining --kind service --name gitea -o json
|
||||||
|
|
||||||
|
# Eval into current shell (use with caution)
|
||||||
|
eval $(secrets inject -n refining --kind service --name gitea)")]
|
||||||
|
Inject {
|
||||||
|
#[arg(short, long)]
|
||||||
|
namespace: Option<String>,
|
||||||
|
#[arg(long)]
|
||||||
|
kind: Option<String>,
|
||||||
|
#[arg(long)]
|
||||||
|
name: Option<String>,
|
||||||
|
#[arg(long)]
|
||||||
|
tag: Vec<String>,
|
||||||
|
/// Prefix to prepend to every variable name (uppercased automatically)
|
||||||
|
#[arg(long, default_value = "")]
|
||||||
|
prefix: String,
|
||||||
|
/// Output format: text/KEY=VALUE (default), json, json-compact
|
||||||
|
#[arg(short, long = "output")]
|
||||||
|
output: Option<String>,
|
||||||
|
},
|
||||||
|
|
||||||
|
/// Run a command with secrets injected as environment variables.
|
||||||
|
///
|
||||||
|
/// Secrets are available only to the child process; the current shell
|
||||||
|
/// environment is not modified. The process exit code is propagated.
|
||||||
|
#[command(after_help = "EXAMPLES:
|
||||||
|
# Run a script with a single service's secrets injected
|
||||||
|
secrets run -n refining --kind service --name gitea -- ./deploy.sh
|
||||||
|
|
||||||
|
# Run with a tag filter (all matched records merged)
|
||||||
|
secrets run --tag production -- env | grep GITEA
|
||||||
|
|
||||||
|
# With prefix
|
||||||
|
secrets run -n refining --kind service --name gitea --prefix GITEA -- printenv")]
|
||||||
|
Run {
|
||||||
|
#[arg(short, long)]
|
||||||
|
namespace: Option<String>,
|
||||||
|
#[arg(long)]
|
||||||
|
kind: Option<String>,
|
||||||
|
#[arg(long)]
|
||||||
|
name: Option<String>,
|
||||||
|
#[arg(long)]
|
||||||
|
tag: Vec<String>,
|
||||||
|
/// Prefix to prepend to every variable name (uppercased automatically)
|
||||||
|
#[arg(long, default_value = "")]
|
||||||
|
prefix: String,
|
||||||
|
/// Command and arguments to execute with injected environment
|
||||||
|
#[arg(last = true, required = true)]
|
||||||
|
command: Vec<String>,
|
||||||
|
},
|
||||||
|
|
||||||
|
/// Check for a newer version and update the binary in-place.
|
||||||
|
///
|
||||||
|
/// Downloads the latest release from Gitea and replaces the current binary.
|
||||||
|
/// No database connection or master key required.
|
||||||
|
#[command(after_help = "EXAMPLES:
|
||||||
|
# Check for updates only (no download)
|
||||||
|
secrets upgrade --check
|
||||||
|
|
||||||
|
# Download and install the latest version
|
||||||
|
secrets upgrade")]
|
||||||
|
Upgrade {
|
||||||
|
/// Only check if a newer version is available; do not download
|
||||||
|
#[arg(long)]
|
||||||
|
check: bool,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Subcommand)]
|
#[derive(Subcommand)]
|
||||||
@@ -281,23 +433,31 @@ async fn main() -> Result<()> {
|
|||||||
.with_target(false)
|
.with_target(false)
|
||||||
.init();
|
.init();
|
||||||
|
|
||||||
// config 子命令不需要数据库连接,提前处理
|
// config subcommand needs no database or master key
|
||||||
if let Commands::Config { action } = &cli.command {
|
if let Commands::Config { action } = cli.command {
|
||||||
let cmd_action = match action {
|
return commands::config::run(action).await;
|
||||||
ConfigAction::SetDb { url } => {
|
|
||||||
commands::config::ConfigAction::SetDb { url: url.clone() }
|
|
||||||
}
|
}
|
||||||
ConfigAction::Show => commands::config::ConfigAction::Show,
|
|
||||||
ConfigAction::Path => commands::config::ConfigAction::Path,
|
// upgrade needs no database or master key either
|
||||||
};
|
if let Commands::Upgrade { check } = cli.command {
|
||||||
return commands::config::run(cmd_action).await;
|
return commands::upgrade::run(check).await;
|
||||||
}
|
}
|
||||||
|
|
||||||
let db_url = config::resolve_db_url(&cli.db_url)?;
|
let db_url = config::resolve_db_url(&cli.db_url)?;
|
||||||
let pool = db::create_pool(&db_url).await?;
|
let pool = db::create_pool(&db_url).await?;
|
||||||
db::migrate(&pool).await?;
|
db::migrate(&pool).await?;
|
||||||
|
|
||||||
match &cli.command {
|
// init needs a pool but sets up the master key — handle before loading it
|
||||||
|
if let Commands::Init = cli.command {
|
||||||
|
return commands::init::run(&pool).await;
|
||||||
|
}
|
||||||
|
|
||||||
|
// All remaining commands require the master key from the OS Keychain,
|
||||||
|
// except delete which operates on plaintext metadata only.
|
||||||
|
|
||||||
|
match cli.command {
|
||||||
|
Commands::Init | Commands::Config { .. } | Commands::Upgrade { .. } => unreachable!(),
|
||||||
|
|
||||||
Commands::Add {
|
Commands::Add {
|
||||||
namespace,
|
namespace,
|
||||||
kind,
|
kind,
|
||||||
@@ -307,23 +467,26 @@ async fn main() -> Result<()> {
|
|||||||
secrets,
|
secrets,
|
||||||
output,
|
output,
|
||||||
} => {
|
} => {
|
||||||
|
let master_key = crypto::load_master_key()?;
|
||||||
let _span =
|
let _span =
|
||||||
tracing::info_span!("cmd", command = "add", %namespace, %kind, %name).entered();
|
tracing::info_span!("cmd", command = "add", %namespace, %kind, %name).entered();
|
||||||
let out = resolve_output_mode(output.as_deref())?;
|
let out = resolve_output_mode(output.as_deref())?;
|
||||||
commands::add::run(
|
commands::add::run(
|
||||||
&pool,
|
&pool,
|
||||||
commands::add::AddArgs {
|
commands::add::AddArgs {
|
||||||
namespace,
|
namespace: &namespace,
|
||||||
kind,
|
kind: &kind,
|
||||||
name,
|
name: &name,
|
||||||
tags,
|
tags: &tags,
|
||||||
meta_entries: meta,
|
meta_entries: &meta,
|
||||||
secret_entries: secrets,
|
secret_entries: &secrets,
|
||||||
output: out,
|
output: out,
|
||||||
},
|
},
|
||||||
|
&master_key,
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Commands::Search {
|
Commands::Search {
|
||||||
namespace,
|
namespace,
|
||||||
kind,
|
kind,
|
||||||
@@ -338,9 +501,9 @@ async fn main() -> Result<()> {
|
|||||||
sort,
|
sort,
|
||||||
output,
|
output,
|
||||||
} => {
|
} => {
|
||||||
|
let master_key = crypto::load_master_key()?;
|
||||||
let _span = tracing::info_span!("cmd", command = "search").entered();
|
let _span = tracing::info_span!("cmd", command = "search").entered();
|
||||||
// -f implies --show-secrets when any field path starts with "secret"
|
let show = show_secrets || fields.iter().any(|f| f.starts_with("secret"));
|
||||||
let show = *show_secrets || fields.iter().any(|f| f.starts_with("secret"));
|
|
||||||
let out = resolve_output_mode(output.as_deref())?;
|
let out = resolve_output_mode(output.as_deref())?;
|
||||||
commands::search::run(
|
commands::search::run(
|
||||||
&pool,
|
&pool,
|
||||||
@@ -348,28 +511,33 @@ async fn main() -> Result<()> {
|
|||||||
namespace: namespace.as_deref(),
|
namespace: namespace.as_deref(),
|
||||||
kind: kind.as_deref(),
|
kind: kind.as_deref(),
|
||||||
name: name.as_deref(),
|
name: name.as_deref(),
|
||||||
tag: tag.as_deref(),
|
tags: &tag,
|
||||||
query: query.as_deref(),
|
query: query.as_deref(),
|
||||||
show_secrets: show,
|
show_secrets: show,
|
||||||
fields,
|
fields: &fields,
|
||||||
summary: *summary,
|
summary,
|
||||||
limit: *limit,
|
limit,
|
||||||
offset: *offset,
|
offset,
|
||||||
sort,
|
sort: &sort,
|
||||||
output: out,
|
output: out,
|
||||||
},
|
},
|
||||||
|
Some(&master_key),
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Commands::Delete {
|
Commands::Delete {
|
||||||
namespace,
|
namespace,
|
||||||
kind,
|
kind,
|
||||||
name,
|
name,
|
||||||
|
output,
|
||||||
} => {
|
} => {
|
||||||
let _span =
|
let _span =
|
||||||
tracing::info_span!("cmd", command = "delete", %namespace, %kind, %name).entered();
|
tracing::info_span!("cmd", command = "delete", %namespace, %kind, %name).entered();
|
||||||
commands::delete::run(&pool, namespace, kind, name).await?;
|
let out = resolve_output_mode(output.as_deref())?;
|
||||||
|
commands::delete::run(&pool, &namespace, &kind, &name, out).await?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Commands::Update {
|
Commands::Update {
|
||||||
namespace,
|
namespace,
|
||||||
kind,
|
kind,
|
||||||
@@ -380,26 +548,113 @@ async fn main() -> Result<()> {
|
|||||||
remove_meta,
|
remove_meta,
|
||||||
secrets,
|
secrets,
|
||||||
remove_secrets,
|
remove_secrets,
|
||||||
|
output,
|
||||||
} => {
|
} => {
|
||||||
|
let master_key = crypto::load_master_key()?;
|
||||||
let _span =
|
let _span =
|
||||||
tracing::info_span!("cmd", command = "update", %namespace, %kind, %name).entered();
|
tracing::info_span!("cmd", command = "update", %namespace, %kind, %name).entered();
|
||||||
|
let out = resolve_output_mode(output.as_deref())?;
|
||||||
commands::update::run(
|
commands::update::run(
|
||||||
&pool,
|
&pool,
|
||||||
commands::update::UpdateArgs {
|
commands::update::UpdateArgs {
|
||||||
namespace,
|
namespace: &namespace,
|
||||||
kind,
|
kind: &kind,
|
||||||
name,
|
name: &name,
|
||||||
add_tags,
|
add_tags: &add_tags,
|
||||||
remove_tags,
|
remove_tags: &remove_tags,
|
||||||
meta_entries: meta,
|
meta_entries: &meta,
|
||||||
remove_meta,
|
remove_meta: &remove_meta,
|
||||||
secret_entries: secrets,
|
secret_entries: &secrets,
|
||||||
remove_secrets,
|
remove_secrets: &remove_secrets,
|
||||||
|
output: out,
|
||||||
},
|
},
|
||||||
|
&master_key,
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Commands::History {
|
||||||
|
namespace,
|
||||||
|
kind,
|
||||||
|
name,
|
||||||
|
limit,
|
||||||
|
output,
|
||||||
|
} => {
|
||||||
|
let out = resolve_output_mode(output.as_deref())?;
|
||||||
|
commands::rollback::list_history(&pool, &namespace, &kind, &name, limit, out).await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Commands::Rollback {
|
||||||
|
namespace,
|
||||||
|
kind,
|
||||||
|
name,
|
||||||
|
to_version,
|
||||||
|
output,
|
||||||
|
} => {
|
||||||
|
let master_key = crypto::load_master_key()?;
|
||||||
|
let out = resolve_output_mode(output.as_deref())?;
|
||||||
|
commands::rollback::run(
|
||||||
|
&pool,
|
||||||
|
commands::rollback::RollbackArgs {
|
||||||
|
namespace: &namespace,
|
||||||
|
kind: &kind,
|
||||||
|
name: &name,
|
||||||
|
to_version,
|
||||||
|
output: out,
|
||||||
|
},
|
||||||
|
&master_key,
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Commands::Inject {
|
||||||
|
namespace,
|
||||||
|
kind,
|
||||||
|
name,
|
||||||
|
tag,
|
||||||
|
prefix,
|
||||||
|
output,
|
||||||
|
} => {
|
||||||
|
let master_key = crypto::load_master_key()?;
|
||||||
|
let out = resolve_output_mode(output.as_deref())?;
|
||||||
|
commands::run::run_inject(
|
||||||
|
&pool,
|
||||||
|
commands::run::InjectArgs {
|
||||||
|
namespace: namespace.as_deref(),
|
||||||
|
kind: kind.as_deref(),
|
||||||
|
name: name.as_deref(),
|
||||||
|
tags: &tag,
|
||||||
|
prefix: &prefix,
|
||||||
|
output: out,
|
||||||
|
},
|
||||||
|
&master_key,
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
}
|
||||||
|
|
||||||
|
Commands::Run {
|
||||||
|
namespace,
|
||||||
|
kind,
|
||||||
|
name,
|
||||||
|
tag,
|
||||||
|
prefix,
|
||||||
|
command,
|
||||||
|
} => {
|
||||||
|
let master_key = crypto::load_master_key()?;
|
||||||
|
commands::run::run_exec(
|
||||||
|
&pool,
|
||||||
|
commands::run::RunArgs {
|
||||||
|
namespace: namespace.as_deref(),
|
||||||
|
kind: kind.as_deref(),
|
||||||
|
name: name.as_deref(),
|
||||||
|
tags: &tag,
|
||||||
|
prefix: &prefix,
|
||||||
|
command: &command,
|
||||||
|
},
|
||||||
|
&master_key,
|
||||||
)
|
)
|
||||||
.await?;
|
.await?;
|
||||||
}
|
}
|
||||||
Commands::Config { .. } => unreachable!(),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|||||||
@@ -11,7 +11,10 @@ pub struct Secret {
|
|||||||
pub name: String,
|
pub name: String,
|
||||||
pub tags: Vec<String>,
|
pub tags: Vec<String>,
|
||||||
pub metadata: Value,
|
pub metadata: Value,
|
||||||
pub encrypted: Value,
|
/// AES-256-GCM ciphertext: nonce(12B) || ciphertext+tag
|
||||||
|
/// Decrypt with crypto::decrypt_json() before use.
|
||||||
|
pub encrypted: Vec<u8>,
|
||||||
|
pub version: i64,
|
||||||
pub created_at: DateTime<Utc>,
|
pub created_at: DateTime<Utc>,
|
||||||
pub updated_at: DateTime<Utc>,
|
pub updated_at: DateTime<Utc>,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user