Files
felhom.eu/scripts/felhom-tenantsync.sh
T
admin 7f11cfb36c hub v0.65.0 — PBS DR storage visibility (ep0 usage op) + Offsite tab split + dual dashboard gauges (R-5)
Makes PBS DR storage visible like the restic pool box (v0.64.0), differentiated. Scoping
correction: restic = subaccounts on the shared Hetzner Storage Box (Hetzner API); PBS DR =
the felhom-offsite PBS datastore on the ep0 endpoint VM (NO Hetzner API). Option A
(Viktor-ruled): a read-only `usage` op on the felhom-tenantsync ep0 forced command (twin of
fingerprint), polled by a new hub checker on the 15-min throttle. READ-ONLY throughout.

Phase-0 (gate PASSED): on ep0 (PBS 4.2.3), df -B1 --output=size,used,avail <datastore path>
yields bytes (39990112256/7627939840/... ~19%), read-only, existing sudo context, no admin token.

- scripts/felhom-tenantsync.sh -> v1.2.0: read-only `usage` short-circuit (df on the datastore
  path), no customer_id, no admin token, NO mutation. + a bash harness proving zero mutation.
- tenantsync.Client.Usage() + BoxUsage; unknown-op -> typed ErrUsageUnsupported (graceful).
- monitor.PBSDRBoxChecker: OffsiteBoxChecker clone over a usageReader seam; 15-min throttle,
  cached PBSBoxSnapshot, escalation-only pbsdr_box_fill on the "pbsdr-box" scope (operator only,
  no SaveEvent), recovery re-arm. Fill only. THREE states: ok / unavailable (ep0 <=v1.1.0,
  neutral no-alert) / degraded (exec failed, keep last).
- config: Alerting.PBSDRBoxFill{Warn,Crit}Percent (80/90); built with the tenantsync client,
  60s sweep, SetPBSDRBox. Hub deploy INDEPENDENT of the ep0 update (graceful degradation).
- web: /offsite splits into Restic + PBS DR hash tabs (endpoint cards under PBS DR); PBS panel;
  the single dashboard tile becomes two gauges (RESTIC pct.ratio, PBS DR pct / n/a).
- runbook offsite-endpoint.md 10: v1.2.0 update steps (no sudoers/authorized_keys change).

Tests: 10 Go + the harness; 3 red-proofs (usage mutation, escalation-only, unavailable-drives-band)
confirmed red then restored. go build/vet/test + bash -n + hub confirm gate all pass.
2026-07-17 21:13:30 +02:00

215 lines
12 KiB
Bash

#!/usr/bin/env bash
# felhom-tenantsync v1.2.0 — the offsite endpoint's per-customer PBS tenancy surface (PBS DR tier
# SLICE 1; spike SPIKE-pbs-tier-provisioning-2026-07-10 §3).
#
# v1.2.0 (2026-07-17, hub R-5 PBS visibility): + read-only `usage` op — the felhom-offsite datastore's
# total/used/avail (bytes, via `df` on the datastore path). No customer_id, no admin token, NO
# mutation. Structural twin of `fingerprint`. Backward-compatible: an older hub never sends it, and a
# hub that does against an OLD script gets the existing `bad_request "unknown op"` (graceful).
#
# Runs as the SSH forced command for the hub's SECOND `felhom-peersync` key (via sudo — its own
# single sudoers line; the peersync script/key are untouched: one script, one job). JSON on stdin,
# JSON on stdout. Ops:
#
# {"op":"provision","customer_id":"<id>"} → ensure namespace <id> (idempotent) → CREATE token
# felhom@pbs!<id> (an EXISTING token is a hard error, code "token_exists" — re-issue is the
# explicit path) → dual-grant DatastoreBackup on /datastore/felhom-offsite/<id> to BOTH the
# user and the token (PBS privsep = intersection) → self-check: list the namespace AS the
# new token (one regen retry per the spike's transient-403 note; still failing → rollback)
# → {"status":"ok","token_id","token_secret","fingerprint","datastore","namespace"}
# {"op":"reissue","customer_id":"<id>"} → delete-token (its ACLs purge with it — spike) →
# recreate → re-grant BOTH → self-check → same ok-shape with the FRESH secret.
# {"op":"deprovision","customer_id":"<id>"} → the customer-RESET teardown (v0.61.0, hub-side
# ack-gated). Delete the token (ACLs purge with it) → delete the residual namespace ACLs →
# DESTROY the namespace AND all its backup groups (`namespace delete --delete-groups true`).
# IDEMPOTENT: a missing token / missing namespace is success, not an error (a re-run after a
# partial reset converges). The shared felhom@pbs USER is NEVER touched (other tenants ride it).
# → {"status":"ok","namespace","datastore","deleted":<bool ns existed>}.
# This is the DELIBERATE, gated data-destruction the slice-1 note reserved — the operator RESET
# confirm (typed customer-id + separate escrow-custody ack) is the human decision it demanded.
# {"op":"fingerprint"} → {"status":"ok","fingerprint":"<PBS cert sha256>"}
# {"op":"usage"} → {"status":"ok","total":<bytes>,"used":<bytes>,"avail":<bytes>}
# READ-ONLY datastore fill (df on the felhom-offsite path). No customer_id, no admin token, no mutation.
#
# Secret hygiene (load-bearing):
# - The token secret exists ONLY in memory and in the final stdout JSON — never a file, never
# stderr (the hub embeds remote stderr in error logs), never an argument.
# - The transient root@pam admin token (namespace ops are client-side) is held in memory and
# deleted on EVERY exit path (trap). A leftover from a crashed run is deleted at entry.
# - All tool stdout is redirected to stderr — the response JSON is the ONLY stdout bytes.
#
# Ordering facts this script encodes (all live-proven in the spike — do not "simplify"):
# - the token must exist BEFORE its ACL grant (PBS validates the auth-id);
# - user delete-token PURGES the token's ACLs → re-issue must re-grant;
# - `user generate-token` has no --output-format → the "value" line is sed-parsed;
# - proxmox-backup-client needs PBS_FINGERPRINT even against localhost.
set -euo pipefail
DS=felhom-offsite
PBS_USER=felhom@pbs
ADMIN_TOKEN_NAME=tenantsync-admin
REPO_HOST=localhost
err_json() { # code, message → error JSON on stdout, exit 1
printf '{"status":"error","code":"%s","error":"%s"}\n' "$1" "$2"
exit 1
}
command -v jq >/dev/null || err_json internal "jq is required"
command -v proxmox-backup-manager >/dev/null || err_json internal "proxmox-backup-manager is required"
command -v proxmox-backup-client >/dev/null || err_json internal "proxmox-backup-client is required"
# 1. Read stdin capped at 64 KiB; validate the envelope BEFORE touching anything.
payload=$(head -c 65536)
[ -n "$payload" ] || err_json bad_request "empty payload"
jq -e 'type == "object" and (.op | type) == "string"' >/dev/null 2>&1 <<<"$payload" \
|| err_json bad_request "payload must be a JSON object with a string op"
OP=$(jq -r '.op' <<<"$payload")
export PBS_FINGERPRINT
PBS_FINGERPRINT=$(proxmox-backup-manager cert info | awk '/Fingerprint/{print $3}' | head -1)
[ -n "$PBS_FINGERPRINT" ] || err_json internal "could not read the PBS cert fingerprint"
if [ "$OP" = "fingerprint" ]; then
printf '{"status":"ok","fingerprint":"%s"}\n' "$PBS_FINGERPRINT"
exit 0
fi
# usage (v1.2.0) — READ-ONLY box-level datastore fill. No customer_id, no admin token, NO mutation
# (a pure `df` on the datastore path). The hub's PBS-DR checker polls this on its 15-min throttle.
# Short-circuits BEFORE the admin-token generation below, exactly like fingerprint.
if [ "$OP" = "usage" ]; then
DS_PATH=$(proxmox-backup-manager datastore list --output-format json \
| jq -r --arg ds "$DS" '.[] | select(.name == $ds) | .path')
[ -n "$DS_PATH" ] || err_json internal "datastore $DS not found"
# df -B1: 1-byte blocks. --output pins the columns; tail -1 skips the header row.
read -r TOTAL USED AVAIL < <(df -B1 --output=size,used,avail "$DS_PATH" | tail -1)
[ -n "$TOTAL" ] && [ -n "$USED" ] && [ -n "$AVAIL" ] || err_json internal "could not read datastore usage"
printf '{"status":"ok","total":%s,"used":%s,"avail":%s}\n' "$TOTAL" "$USED" "$AVAIL"
exit 0
fi
case "$OP" in provision|reissue|deprovision) ;; *) err_json bad_request "unknown op" ;; esac
# customer_id → the namespace AND the token name. Conservative charset (PBS ns + token grammar,
# no leading dash/dot so it can never parse as an option).
CID=$(jq -r '.customer_id // ""' <<<"$payload")
[[ "$CID" =~ ^[A-Za-z0-9][A-Za-z0-9_.-]{0,30}$ ]] \
|| err_json bad_request "customer_id must match ^[A-Za-z0-9][A-Za-z0-9_.-]{0,30}\$"
TOKEN_ID="$PBS_USER!$CID"
log() { echo "felhom-tenantsync: $*" >&2; }
# 2. Transient admin token for the client-side namespace ops. Deleted on every exit; a leftover
# from a crashed run is cleared first (generate-token fails on an existing name).
proxmox-backup-manager user delete-token root@pam "$ADMIN_TOKEN_NAME" >&2 2>/dev/null || true
ADM=$(proxmox-backup-manager user generate-token root@pam "$ADMIN_TOKEN_NAME" \
| sed -n 's/.*"value": "\([^"]*\)".*/\1/p')
[ -n "$ADM" ] || err_json internal "admin token generation failed"
cleanup_admin() {
proxmox-backup-manager user delete-token root@pam "$ADMIN_TOKEN_NAME" >&2 2>/dev/null || true
proxmox-backup-manager acl update "/datastore/$DS" DatastoreAdmin \
--auth-id "root@pam!$ADMIN_TOKEN_NAME" --delete >&2 2>/dev/null || true
}
trap cleanup_admin EXIT
proxmox-backup-manager acl update "/datastore/$DS" DatastoreAdmin \
--auth-id "root@pam!$ADMIN_TOKEN_NAME" >&2
ADMIN_REPO="root@pam!$ADMIN_TOKEN_NAME@$REPO_HOST:$DS"
# 2b. deprovision (v0.61.0 customer-RESET teardown): destroy this ONE tenant's token + namespace +
# backup groups. Every step is idempotent (missing = already gone = ok). The shared felhom@pbs
# user survives (co-tenants). Returns before the provision/reissue create-path below.
if [ "$OP" = "deprovision" ]; then
# token (its ACLs purge with it — spike); ignore "no such token".
proxmox-backup-manager user delete-token "$PBS_USER" "$CID" >&2 2>/dev/null || true
# residual namespace ACLs (belt-and-suspenders — the user grant is not token-scoped).
proxmox-backup-manager acl update "/datastore/$DS/$CID" DatastoreBackup --auth-id "$PBS_USER" --delete >&2 2>/dev/null || true
proxmox-backup-manager acl update "/datastore/$DS/$CID" DatastoreBackup --auth-id "$TOKEN_ID" --delete >&2 2>/dev/null || true
ns_existed=false
if PBS_PASSWORD="$ADM" proxmox-backup-client namespace list --repository "$ADMIN_REPO" \
--output-format json | jq -e --arg ns "$CID" '(.data // .) | any(.[]; .ns == $ns)' >/dev/null; then
ns_existed=true
# --delete-groups true destroys every backup group under the namespace (the deliberate data kill).
PBS_PASSWORD="$ADM" proxmox-backup-client namespace delete "$CID" --repository "$ADMIN_REPO" --delete-groups true >&2
log "deprovision: namespace $CID destroyed (all backup groups deleted)"
else
log "deprovision: namespace $CID absent — already gone"
fi
jq -cn --arg ns "$CID" --arg ds "$DS" --argjson del "$ns_existed" \
'{"status":"ok","namespace":$ns,"datastore":$ds,"deleted":$del}'
exit 0
fi
# 3. Ensure the shared user + the namespace (both idempotent).
if ! proxmox-backup-manager user list --output-format json | jq -e --arg u "$PBS_USER" \
'any(.[]; .userid == $u)' >/dev/null; then
proxmox-backup-manager user create "$PBS_USER" --comment 'offsite tenancy' >&2
log "created user $PBS_USER"
fi
# NOTE: the CLIENT wraps json output as {"data":[...]} (live-proven on ep0); the MANAGER commands
# return bare arrays. `(.data // .)` handles both.
if ! PBS_PASSWORD="$ADM" proxmox-backup-client namespace list --repository "$ADMIN_REPO" \
--output-format json | jq -e --arg ns "$CID" '(.data // .) | any(.[]; .ns == $ns)' >/dev/null; then
PBS_PASSWORD="$ADM" proxmox-backup-client namespace create "$CID" --repository "$ADMIN_REPO" >&2
log "created namespace $CID"
fi
token_exists() {
proxmox-backup-manager user list-tokens "$PBS_USER" --output-format json \
| jq -e --arg t "$TOKEN_ID" 'any(.[]; .tokenid == $t)' >/dev/null
}
# gen_token → SECRET on stdout of this function only (command substitution), nothing persisted.
gen_token() {
proxmox-backup-manager user generate-token "$PBS_USER" "$CID" \
| sed -n 's/.*"value": "\([^"]*\)".*/\1/p'
}
grant_both() { # dual-grant on the NAMESPACE ACL path (never /ns/<ns> — §4a gotcha)
proxmox-backup-manager acl update "/datastore/$DS/$CID" DatastoreBackup --auth-id "$PBS_USER" >&2
proxmox-backup-manager acl update "/datastore/$DS/$CID" DatastoreBackup --auth-id "$TOKEN_ID" >&2
}
self_check() { # own-namespace list AS the new token; secret via env, never argv/stderr
PBS_PASSWORD="$1" proxmox-backup-client snapshot list --ns "$CID" \
--repository "$TOKEN_ID@$REPO_HOST:$DS" >/dev/null
}
rollback_token() {
proxmox-backup-manager user delete-token "$PBS_USER" "$CID" >&2 2>/dev/null || true
proxmox-backup-manager acl update "/datastore/$DS/$CID" DatastoreBackup \
--auth-id "$PBS_USER" --delete >&2 2>/dev/null || true
}
if [ "$OP" = "provision" ]; then
if token_exists; then
err_json token_exists "token $TOKEN_ID already exists — use the reissue op (explicit re-key)"
fi
else # reissue: delete-token purges its ACLs; recreate + re-grant below
proxmox-backup-manager user delete-token "$PBS_USER" "$CID" >&2 2>/dev/null || true
log "reissue: old token deleted (ACLs purged with it)"
fi
SECRET=$(gen_token)
[ -n "$SECRET" ] || err_json internal "token generation returned no value"
grant_both
if ! self_check "$SECRET"; then
# The spike's transient-403 note: one delete+regen+re-grant retry, then rollback + fail.
log "self-check failed — regenerating once (spike transient-403 note)"
proxmox-backup-manager user delete-token "$PBS_USER" "$CID" >&2 2>/dev/null || true
SECRET=$(gen_token)
[ -n "$SECRET" ] || { rollback_token; err_json internal "token regeneration returned no value"; }
grant_both
if ! self_check "$SECRET"; then
rollback_token
err_json self_check_failed "own-namespace list as $TOKEN_ID failed twice — rolled back"
fi
fi
log "$OP ok: ns=$CID token=$TOKEN_ID (secret rides stdout only)"
jq -cn --arg tid "$TOKEN_ID" --arg sec "$SECRET" --arg fp "$PBS_FINGERPRINT" \
--arg ds "$DS" --arg ns "$CID" \
'{"status":"ok","token_id":$tid,"token_secret":$sec,"fingerprint":$fp,"datastore":$ds,"namespace":$ns}'