Standard production layout: the OKR app (was nested under AINative_OKR_CASAN5/) is now
the repository root. No more wrapper directory.
- Promote AINative_OKR_CASAN5/* -> repo root (backend/ frontend/ packages/ apps/
.specify/ docs/ infra/ nginx/ scripts/ + configs). Merge tool dirs: .gitea (kept the
active deploy ci.yml, added harness-ci.yml + runbooks), .claude (agents/commands +
launch.json), .github moved up.
- Remove redundant: 00_SUBMISSION_PACKAGE, scattered root notes (FPT_CASAN_Full.md,
tu-tuong-casan.md, casan-tu-sinh..., casan_harness_assessment.md, source-review...,
README_CASAN5_REFINED.md), casan-next-plans/ and optimize-docs/ (competition/planning
artifacts — roadmap + design history preserved in git log / commit messages).
- Update all references to the old layout:
- .gitea/workflows/{ci,harness-ci}.yml, .github/workflows/{ci,deploy}.yml:
working-directory .; drop AINative_OKR_CASAN5/ prefix; .specify/{tests,scripts}
-> packages/casan-harness/... (.specify/logs state kept)
- .claude/launch.json, .gitea/*-runbook.md: path prefixes
- CLAUDE.md, README.md: docs/input -> apps/okr/domain/input
- policy-bundle.yaml: 8 policy paths -> packages/casan-harness/...; manifest re-signed
- secrets-scan.sh: fixture excludes -> new package/domain paths.
Full gate from the new root: PASS=64 FAIL=0 SKIP=3.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
109 lines
3.8 KiB
Python
Executable File
109 lines
3.8 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
"""CASAN H5 — External append-only (WORM) anchor ledger (C5 / V21).
|
|
|
|
Ships the audit-chain head to an EXTERNAL append-only ledger so that deleting or
|
|
rolling back the local audit log is detectable: the durable ledger still holds
|
|
the later head. Entries are hash-linked (each anchor commits to the previous
|
|
one), so truncating or editing the ledger itself is also detectable.
|
|
|
|
This is the local MVP of WORM. Production ships each anchor to a true
|
|
write-once store (S3 Object Lock / QLDB / append-only Kafka) + trusted timestamp.
|
|
|
|
Argv:
|
|
ship <head-file> <ledger-file> [iso-timestamp]
|
|
verify <head-file> <ledger-file>
|
|
|
|
Ledger line: {"seq":N,"ts":..,"head":<hex>,"prev":<anchor|"">,"anchor":<hex>}
|
|
anchor = sha256("seq|ts|head|prev")
|
|
|
|
verify exit: 0 in-sync (OK) · 1 tamper/gap (AUDIT_LEDGER_TAMPERED | AUDIT_GAP_DETECTED)
|
|
"""
|
|
import hashlib
|
|
import json
|
|
import sys
|
|
|
|
|
|
def _anchor(seq, ts, head, prev):
|
|
return hashlib.sha256(f"{seq}|{ts}|{head}|{prev}".encode()).hexdigest()
|
|
|
|
|
|
def _read_ledger(path):
|
|
rows = []
|
|
try:
|
|
for line in open(path, encoding="utf-8"):
|
|
line = line.strip()
|
|
if line:
|
|
rows.append(json.loads(line))
|
|
except FileNotFoundError:
|
|
pass
|
|
return rows
|
|
|
|
|
|
def _read_head(path):
|
|
with open(path, encoding="utf-8") as f:
|
|
return f.read().strip()
|
|
|
|
|
|
def ship(head_file, ledger_file, ts):
|
|
head = _read_head(head_file)
|
|
rows = _read_ledger(ledger_file)
|
|
prev = rows[-1]["anchor"] if rows else ""
|
|
seq = (rows[-1]["seq"] + 1) if rows else 1
|
|
entry = {"seq": seq, "ts": ts, "head": head, "prev": prev,
|
|
"anchor": _anchor(seq, ts, head, prev)}
|
|
with open(ledger_file, "a", encoding="utf-8") as f:
|
|
f.write(json.dumps(entry) + "\n")
|
|
print(f"WORM_ANCHOR_SHIPPED seq={seq} head={head[:16]}… anchor={entry['anchor'][:16]}…")
|
|
return 0
|
|
|
|
|
|
def verify(head_file, ledger_file):
|
|
rows = _read_ledger(ledger_file)
|
|
if not rows:
|
|
sys.stderr.write("WORM_LEDGER_EMPTY (nothing shipped yet)\n")
|
|
return 1
|
|
# 1. Ledger self-integrity: recompute anchors + check the hash-link.
|
|
prev = ""
|
|
for r in rows:
|
|
if r.get("prev", "") != prev:
|
|
sys.stderr.write(f"AUDIT_LEDGER_TAMPERED seq={r.get('seq')} broken_link\n")
|
|
return 1
|
|
if _anchor(r.get("seq"), r.get("ts"), r.get("head"), prev) != r.get("anchor"):
|
|
sys.stderr.write(f"AUDIT_LEDGER_TAMPERED seq={r.get('seq')} anchor_mismatch\n")
|
|
return 1
|
|
prev = r["anchor"]
|
|
# 2. Local head vs durable ledger.
|
|
local = _read_head(head_file)
|
|
latest = rows[-1]["head"]
|
|
if local == latest:
|
|
print(f"WORM_IN_SYNC anchors={len(rows)} head={local[:16]}…")
|
|
return 0
|
|
older = [r["seq"] for r in rows[:-1] if r["head"] == local]
|
|
if older:
|
|
# Local audit tip matches an OLDER durable anchor → local was rolled back.
|
|
sys.stderr.write(
|
|
f"AUDIT_GAP_DETECTED local_head=older(seq={older[-1]}) durable_latest_seq={rows[-1]['seq']} "
|
|
f"— local audit rolled back below the durable WORM anchor\n")
|
|
return 1
|
|
sys.stderr.write(
|
|
"AUDIT_UNSHIPPED local head not yet anchored (ship it) — not a rollback\n")
|
|
return 1
|
|
|
|
|
|
def main():
|
|
if len(sys.argv) < 4:
|
|
sys.stderr.write("Usage: worm-ledger.py {ship|verify} <head-file> <ledger-file> [ts]\n")
|
|
return 64
|
|
cmd, head_file, ledger_file = sys.argv[1], sys.argv[2], sys.argv[3]
|
|
if cmd == "ship":
|
|
ts = sys.argv[4] if len(sys.argv) > 4 else __import__("datetime").datetime.utcnow().strftime("%Y-%m-%dT%H:%M:%SZ")
|
|
return ship(head_file, ledger_file, ts)
|
|
if cmd == "verify":
|
|
return verify(head_file, ledger_file)
|
|
sys.stderr.write(f"unknown command: {cmd}\n")
|
|
return 64
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|