Skip to content

test(node): real-node deny harness for trust-boundary regressions (owner-gated mutations, path-scoped reads, client-surfaced denials) - #194

Open
beardthelion wants to merge 54 commits into
mainfrom
feat/real-node-deny-harness
Open

test(node): real-node deny harness for trust-boundary regressions (owner-gated mutations, path-scoped reads, client-surfaced denials)#194
beardthelion wants to merge 54 commits into
mainfrom
feat/real-node-deny-harness

Conversation

@beardthelion

@beardthelion beardthelion commented Jul 12, 2026

Copy link
Copy Markdown
Collaborator

What

A real-socket, end-to-end security regression harness for gitlawb-node. It boots a real node on 127.0.0.1:0, drives trust-boundary DENY paths through a real reqwest client with real RFC-9421 signing, and asserts both the refusal status and that no withheld data leaks. It turns the per-PR real-node-verify step into executed tests, and covers ground tower::oneshot can't: the full production middleware stack over an actual socket, plus a systematic no-empty-200 (denial-as-success) assertion.

Why the crate split

gitlawb-node was binary-only, so an out-of-crate integration test could not reach build_router / AppState / Config. The first commit splits it into lib+bin: the module tree and boot logic move to src/lib.rs (exposing a minimal run() plus the boot surface), and src/main.rs becomes a thin #[tokio::main] shim. No behavior change, the 488-test node suite stays green and the production binary is unaffected. The harness itself lives behind a test-harness feature so its spawn surface never compiles into the release binary.

Coverage

Fourteen executed cases, one strong case per invariant plus a high-value owner-gate fan-out:

  • Denials are never rendered as empty/success: unsigned git-receive-pack rejected 401, and an anonymous /ipfs/{cid} read of a withheld blob denied 404 with no leak.
  • Mutations are owner-gated, not merely authenticated: a validly-signed non-owner is rejected 403 on set_visibility, plus protect/unprotect branch, webhook create/delete, and visibility removal. Each carries an owner-reachability check so a 403 from an earlier layer cannot masquerade as a pass.
  • Reads and replication gate on the requested path: a withheld blob read denied 404 with no leak, the same withhold over the content-addressed /ipfs surface, and the git-upload-pack replication path where the served pack must omit the withheld blob while keeping the sibling public one.

Every case is mutation-verified load-bearing: the specific gate was broken, the test observed to go red (the secret leaking, or the withheld object appearing in the pack), then reverted.

Notes for review

  • The upload-pack case drives the git-upload-pack POST directly (v0 stateless-RPC) instead of git clone, because a default git clone negotiates protocol v2 and hangs against the node's v0 server. That hang (rather than a clean error) may be worth a separate look if standard-client interop matters. The assertion is packfile-aware (git index-pack + verify-pack), not a raw byte scan, since a leaked OID would otherwise hide inside the zlib stream.
  • CI runs the harness explicitly with --features test-harness, since cargo test --workspace skips it by design.
  • Deliberately deferred: the lower-impact owner-gates and read surfaces (labels, PR comments, list_visibility, and similar) keep their existing source-level authz-table guard and gate-helper unit tests, where a full-stack case per endpoint adds near-zero marginal safety. Replica register/unregister were excluded because they are signer-self, not owner-gated.

Summary by CodeRabbit

  • Tests
    • Added a real-node deny-harness suite with end-to-end coverage for authorization denials, request signature validation, protected content access, and owner vs. non-owner mutation safeguards.
    • Added denial assertion helpers to verify correct 4xx responses and prevent leakage of withheld tokens/identifiers.
    • Added replication checks to ensure protected objects are excluded from returned packfiles.
  • CI / Release Engineering
    • Extended PR CI to run the deny-harness regression suite on every pull request using the existing Postgres test service.

…can spawn a real node

Move the module tree and boot logic from main.rs into a new lib.rs crate
root exposing the boot surface (build_router, AppState, Config, migrations)
as pub; main.rs becomes a thin #[tokio::main] shim over run(). No behavior
change: both targets build and the full node suite (488 tests) stays green.

Prerequisite for the real-node deny harness (U1).
…-U4, U5a)

Add a feature-gated (test-harness) spawn surface (src/test_harness.rs) that
boots a real node on 127.0.0.1:0 over an ephemeral #[sqlx::test] pool through
the production axum::serve stack with connect-info, and an integration crate
(tests/deny_harness.rs) that drives deny paths with a real reqwest client:

- U2 signing client: wraps gitlawb_core::http_sig::sign_request for reqwest;
  self-checks that a valid signature clears require_signature and a tampered
  body is rejected (400 content_digest_mismatch).
- U3 spawn_node: real socket, p2p disabled, per-test DB, shutdown-on-drop.
- U4 assert_denied: 4xx AND body-no-leak AND not-empty-200 (INV-8); pure core
  unit-tested for clean-403 / empty-200 / leaking-403 / wrong-status.
- U5a INV-8: unsigned git-receive-pack is denied 401 with no leak.

Widens the three cfg(test) test builders (Db/RepoStore::for_testing,
run_migrations) to also compile under the feature. No production behavior
change: prod build (no feature) excludes test_harness; node suite stays green
(488) and the 7 integration tests pass.
A validly signed non-owner PUT /visibility is rejected 403 by require_owner
(no x-ucan, so require_ucan_chain passes through to the gate); the owner's
signed PUT reaches the handler (reachability proof, guards against a 404/415
masquerading as a pass). Adds seed_repo/withhold_path seeding helpers to the
test harness. Mutation-verified load-bearing: with require_owner forced Ok the
non-owner PUT returns 201 and the INV-8 assertion flips the test RED.
Adds seed_bare_repo (shells git to build a real bare repo at the served path,
sha1 or sha256 object format) and two INV-2 deny cases over the real stack:

- U7: a public repo with a /secret/** withhold rule denies an anonymous blob
  read of the withheld path (404) with no content/OID leak, while the sibling
  public path is served (path-scoped, not blanket).
- U5b: the same withhold denies an anonymous /ipfs/{cid} read of the withheld
  blob's content-addressed id (404, no leak), while the public blob's CID is
  served. Completes U5 (INV-8) alongside U5a.

Both mutation-verified load-bearing: forcing visibility_check to allow leaks
the secret at 200 and the INV-8 assertion flips each test RED.
Drives the git-upload-pack POST directly (v0 stateless-RPC: want HEAD, flush,
done) via a bounded reqwest client rather than a vanilla `git clone` (which
negotiates protocol v2 and deadlocks against the node's v0 server, and would
otherwise wedge the suite). The served pack is indexed with git index-pack and
its objects listed with verify-pack -v: a packfile-aware assertion, since a raw
byte scan cannot see an OID inside the zlib-compressed stream.

A public repo with a /secret/** withhold rule must serve a pack that omits the
withheld blob's object while keeping the sibling public blob. Mutation-verified
load-bearing: forcing visibility_check to allow puts the withheld blob back in
the pack and flips the test RED.

Completes the harness (8 units, 11 integration tests). Prod build (no feature)
and the 488-test node suite stay green.
cargo test --workspace skips the harness because it lives behind the
test-harness feature (kept off the production binary). Add an explicit step
that runs it with the feature and the same Postgres service, so the INV-1/
INV-2/INV-8 trust-boundary regression cases execute on every PR instead of
only when run by hand.
Add unit tests for the two remaining check_denied branches: a non-4xx expected
status is rejected as a test bug, and an empty withheld token is skipped rather
than matching every body. Closes the last unexecuted branches in the deny
assertion.
Fan-out of U6 to the security-sensitive owner-gated mutations that had only the
source-level authz-table guard and no runtime deny test: protect_branch,
unprotect_branch, create_webhook, delete_webhook, remove_visibility. Each
rejects a validly-signed non-owner with 403 and lets the owner reach the
handler (not 403). Mutation-verified load-bearing on their shared root gate:
did_matches forced true opens all five (non-owner protect_branch returns 201)
and the test flips RED.

Replica register/unregister were intentionally excluded: they are signer-self
(you register your own node), not owner-gated, so there is no owner-deny to
assert.
@coderabbitai

coderabbitai Bot commented Jul 12, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

The node startup code moves into a reusable library, while a feature-gated TestNode enables real HTTP, database, and Git integration tests. New deny-harness cases cover signatures, authorization, withheld data, cloning, and owner gates, and CI runs the suite against Postgres.

Changes

Reusable node library and boot lifecycle

Layer / File(s) Summary
Reusable node library and boot lifecycle
crates/gitlawb-node/src/lib.rs, crates/gitlawb-node/src/main.rs
Node startup, shutdown, database retry, degraded serving, metrics, peer operations, operator setup, identity persistence, and related tests move into the library; the binary delegates to gitlawb_node::run().

Feature-gated harness runtime and CI wiring

Layer / File(s) Summary
Feature-gated harness runtime and CI wiring
crates/gitlawb-node/Cargo.toml, crates/gitlawb-node/src/db/mod.rs, crates/gitlawb-node/src/git/repo_store.rs, crates/gitlawb-node/src/test_harness.rs, .github/workflows/pr-checks.yml
The test-harness feature exposes test constructors and a TestNode that serves an ephemeral node, seeds database records and bare repositories, and runs in CI with the Postgres service.

Signed requests and denial-path integration tests

Layer / File(s) Summary
Signed requests and denial-path integration tests
crates/gitlawb-node/tests/deny_harness.rs, crates/gitlawb-node/tests/support/*
Shared RFC-9421 signing and denial assertions support end-to-end checks for signature failures, receive-pack authorization, withheld reads and clones, and owner-gated mutations.

Estimated code review effort: 4 (Complex) | ~60 minutes

Sequence Diagram(s)

sequenceDiagram
  participant CI
  participant DenyHarness
  participant TestNode
  participant PostgreSQL
  CI->>DenyHarness: run deny_harness with test-harness
  DenyHarness->>TestNode: spawn_node(pool)
  TestNode->>PostgreSQL: run migrations and seed state
  DenyHarness->>TestNode: send signed or anonymous requests
  TestNode-->>DenyHarness: return denial or filtered Git response
Loading

Possibly related PRs

  • Gitlawb/node#57: Modifies the same CI test-job orchestration area.
  • Gitlawb/node#119: Covers the receive-pack, Git gating, and RFC-9421 signing behavior exercised by this harness.

Suggested labels: sev:medium, kind:security

Suggested reviewers: jatmn

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Docstring Coverage ✅ Passed Docstring coverage is 100.00% which is sufficient. The required threshold is 80.00%.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Title check ✅ Passed The title clearly summarizes the main change: a real-node deny harness for trust-boundary regressions.
Description check ✅ Passed The description is detailed and covers what changed, why, coverage, and reviewer notes, even though it doesn't mirror the template headings exactly.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch feat/real-node-deny-harness

Comment @coderabbitai help to get the list of available commands.

@beardthelion beardthelion added crate:node gitlawb-node — the serving node and REST API kind:test Test coverage or harness labels Jul 12, 2026

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (1)
crates/gitlawb-node/tests/deny_harness.rs (1)

36-37: 🩺 Stability & Availability | 🔵 Trivial | ⚡ Quick win

Inconsistent request timeouts across the suite.

Only the clone test (line 344-347) builds its reqwest::Client with an explicit timeout, with a comment explaining why (avoiding a wedged suite). Every other test here (e.g. this one, and lines 67, 98, 123, 192, 249, 420) uses reqwest::Client::new() with no timeout. If the real node under test ever hangs on any of these paths, the test blocks until the 45-minute CI job timeout instead of failing fast with a clear cause.

♻️ Suggested fix: a shared bounded client helper
fn bounded_client() -> reqwest::Client {
    reqwest::Client::builder()
        .timeout(std::time::Duration::from_secs(30))
        .build()
        .expect("client builds")
}

Then swap each reqwest::Client::new() in this file for bounded_client().

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@crates/gitlawb-node/tests/deny_harness.rs` around lines 36 - 37, Introduce a
shared bounded client helper in the deny harness, such as bounded_client, that
builds reqwest::Client with a 30-second timeout. Replace every
reqwest::Client::new() usage in this file, including the clone test, with the
helper while preserving the existing request behavior.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@crates/gitlawb-node/src/lib.rs`:
- Around line 539-572: Update the HTTP shutdown flow around axum::serve and the
with_graceful_shutdown future to enforce the configured grace duration, aborting
the server drain when it expires instead of waiting indefinitely for long-lived
requests. Use the existing grace value derived from config.shutdown_grace_secs
and remove the unused grace discard while preserving normal shutdown signaling
and serve_result handling.
- Around line 1007-1027: Update the identity-key creation and loading flow
around Keypair generation and key_path.exists() to eliminate the TOCTOU race and
disclosure window: create the file with OpenOptions::create_new(true) and Unix
mode 0o600, write the PEM through that handle, and handle AlreadyExists by
retrying the existing-key load path. When loading an existing key, validate or
tighten its permissions to 0600 before reading it, while preserving the existing
PEM parsing and error behavior.

---

Nitpick comments:
In `@crates/gitlawb-node/tests/deny_harness.rs`:
- Around line 36-37: Introduce a shared bounded client helper in the deny
harness, such as bounded_client, that builds reqwest::Client with a 30-second
timeout. Replace every reqwest::Client::new() usage in this file, including the
clone test, with the helper while preserving the existing request behavior.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: da2a7166-0514-4eaf-9449-ef5be4e258e0

📥 Commits

Reviewing files that changed from the base of the PR and between ad7c2b2 and 532627f.

📒 Files selected for processing (11)
  • .github/workflows/pr-checks.yml
  • crates/gitlawb-node/Cargo.toml
  • crates/gitlawb-node/src/db/mod.rs
  • crates/gitlawb-node/src/git/repo_store.rs
  • crates/gitlawb-node/src/lib.rs
  • crates/gitlawb-node/src/main.rs
  • crates/gitlawb-node/src/test_harness.rs
  • crates/gitlawb-node/tests/deny_harness.rs
  • crates/gitlawb-node/tests/support/assert.rs
  • crates/gitlawb-node/tests/support/mod.rs
  • crates/gitlawb-node/tests/support/signing.rs

Comment thread crates/gitlawb-node/src/lib.rs Outdated
Comment thread crates/gitlawb-node/src/lib.rs Outdated

@jatmn jatmn left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found issues that need to be addressed before this is ready.

Findings

  • [P1] Create identity keys atomically with owner-only permissions
    crates/gitlawb-node/src/lib.rs:1007
    The new library retains the existing exists()fs::write() flow. On Unix, fs::write creates the PEM using umask-derived permissions and only then changes it to 0600; a local process can read the node private key in that window. The separate existence check also lets concurrent node starts overwrite each other's generated identity. Create the file with create_new and mode 0600, then handle AlreadyExists by loading the winning key.

  • [P2] Enforce the configured HTTP shutdown grace period
    crates/gitlawb-node/src/lib.rs:539
    with_graceful_shutdown begins draining when the signal fires but has no deadline; the computed grace is explicitly discarded at line 571. A long-lived request can therefore prevent termination until the orchestrator hard-kills the process, defeating GITLAWB_SHUTDOWN_GRACE_SECS and risking interrupted cleanup. Bound the drain with that duration and force completion once it expires.

beardthelion pushed a commit that referenced this pull request Jul 13, 2026
- Create the node identity key atomically with create_new + mode 0600, closing
  the umask-derived 0644 disclosure window and the exists()->write overwrite
  race; on AlreadyExists load the winner's key (bounded retry so a loser can't
  read a half-written PEM) and tighten looser perms on load.
- Enforce the configured shutdown grace: bound the axum drain by grace measured
  from the signal (extracted as drive_serve_with_grace), abandoning in-flight
  requests once it expires instead of waiting indefinitely. Removes the
  discarded grace value.
- Route deny-harness reqwest clients through a shared bounded_client (30s
  timeout) so a wedged node path fails fast instead of hanging to the CI limit.

Tests: 0600-on-create, load-tighten, concurrent-start convergence (create race),
and grace-race abandon / normal-drain / signal-gated-clock. All RED-then-GREEN
by execution.
- Create the node identity key atomically with create_new + mode 0600, closing
  the umask-derived 0644 disclosure window and the exists()->write overwrite
  race; on AlreadyExists load the winner's key (bounded retry so a loser can't
  read a half-written PEM) and tighten looser perms on load.
- Enforce the configured shutdown grace: bound the axum drain by grace measured
  from the signal (extracted as drive_serve_with_grace), abandoning in-flight
  requests once it expires instead of waiting indefinitely. Removes the
  discarded grace value.
- Route the deny-harness reqwest clients through a shared bounded_client (30s
  timeout) so a wedged node path fails fast instead of hanging to the CI limit.

Tests: 0600-on-create, load-tighten, concurrent-start convergence (create race),
and grace-race abandon / normal-drain / signal-gated-clock. All RED-then-GREEN
by execution.
beardthelion pushed a commit that referenced this pull request Jul 13, 2026
- Create the node identity key atomically with create_new + mode 0600, closing
  the umask-derived 0644 disclosure window and the exists()->write overwrite
  race; on AlreadyExists load the winner's key (bounded retry so a loser can't
  read a half-written PEM) and tighten looser perms on load.
- Enforce the configured shutdown grace: bound the axum drain by grace measured
  from the signal (extracted as drive_serve_with_grace), abandoning in-flight
  requests once it expires instead of waiting indefinitely. Removes the
  discarded grace value.
- Route the deny-harness reqwest clients through a shared bounded_client (30s
  timeout) so a wedged node path fails fast instead of hanging to the CI limit.

Tests: 0600-on-create, load-tighten, concurrent-start convergence (create race),
and grace-race abandon / normal-drain / signal-gated-clock. All RED-then-GREEN
by execution.
@beardthelion

Copy link
Copy Markdown
Collaborator Author

Addressed the review feedback in 30672cf.

@jatmn:

P1 (identity key). Created atomically with OpenOptions::create_new(true).mode(0o600) and written through that handle, so there is no umask-derived 0644 window. A lost race hits AlreadyExists and loads the winner's key instead of overwriting, with a short bounded retry so it can't read a half-written PEM; loading an existing key also tightens loose perms to 0600.

P2 (shutdown grace). The drain is now bounded by the configured grace, measured from the signal rather than server start (extracted as drive_serve_with_grace) and forced to complete once it expires. The discarded grace is gone and the misleading comment corrected.

Unit tests cover 0600-on-create, tighten-on-load, 8-thread concurrent-start convergence, and the grace abandon / normal-drain / signal-gated paths.

Also took CodeRabbit's nitpick: the deny-harness clients now go through a shared 30s bounded_client so a wedged route fails fast instead of hanging to the CI timeout.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@crates/gitlawb-node/src/lib.rs`:
- Around line 1120-1125: Update the key-writing logic in create_new for both
Unix and non-Unix branches so any write_all failure removes the partially
written file at key_path before returning the error. Preserve the existing
contextual error and successful write behavior, and ensure cleanup is attempted
consistently in both branches.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 620c5ae9-78f1-476e-badb-3e054d1f583a

📥 Commits

Reviewing files that changed from the base of the PR and between 532627f and 30672cf.

📒 Files selected for processing (2)
  • crates/gitlawb-node/src/lib.rs
  • crates/gitlawb-node/tests/deny_harness.rs
🚧 Files skipped from review as they are similar to previous changes (1)
  • crates/gitlawb-node/tests/deny_harness.rs

Comment thread crates/gitlawb-node/src/lib.rs Outdated

@jatmn jatmn left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found issues that need to be addressed before this is ready.

Findings

  • [P1] Remove a failed first-write identity file
    crates/gitlawb-node/src/lib.rs:1123
    The new create_new(true) path fixes the original permission window, but if the PEM write itself fails after the file has been created, the just-created key path is left behind as an empty or partial PEM. Every later start then takes the key_path.exists() branch, retries parsing that same bad file in load_racing, and exits with invalid PEM key instead of generating a fresh identity. A transient ENOSPC/EIO/quota failure during first boot can therefore permanently wedge the node until an operator manually deletes the file. Please remove the newly-created file on write_all failure in both the Unix and non-Unix branches before returning the error.

  • [P2] Do not ignore failed key permission tightening
    crates/gitlawb-node/src/lib.rs:1059
    The load path now advertises that loose existing identity keys are tightened to 0600, but the set_permissions result is discarded. If the file is readable but chmod fails, for example on a read-only mount or an ownership/ACL mismatch, the node still reads and uses a world/group-readable private key while logging a normal "loaded existing identity" path. That leaves the exact key exposure this follow-up is trying to close. Please surface the chmod failure or otherwise verify the final mode before continuing with the key.

…r tightening (#194)

F1 (P1): create_new(true) closed the permission window, but a write_all failure
after the file was created left an empty/partial PEM behind. Every later start
then took the key_path.exists() branch, re-parsed that corrupt file in load_racing,
and exited 'invalid PEM key' instead of regenerating — a transient ENOSPC/EIO on
first boot permanently wedged the node. Extract write_key_or_cleanup, which removes
the just-created file on write failure, and wire it into both the unix and non-unix
create branches.

F2 (P2): the load path tightened a loose existing key to 0600 but discarded the
set_permissions result. A chmod that failed (read-only mount, ownership/ACL
mismatch) left a world/group-readable private key in use while logging a normal
'loaded existing identity'. Surface the tighten failure (propagate it) and add
ensure_key_mode_0600, which fails closed if the key is not 0600 after the attempt.

RED->GREEN: failed_write_removes_the_partial_key_file (a failed write leaves no
file; RED without the remove_file). loose_key_mode_is_rejected_not_used (a 0644 key
is rejected; RED without the mode check). Existing created_key_is_mode_0600,
existing_key_is_loaded_and_tightened, and concurrent_starts_converge_on_one_identity
stay green. Full node lib+bin suite 497 passed, fmt + clippy clean.
beardthelion pushed a commit that referenced this pull request Jul 14, 2026
…r tightening (#194)

F1 (P1): create_new(true) closed the permission window, but a write_all failure
after the file was created left an empty/partial PEM behind. Every later start
then took the key_path.exists() branch, re-parsed that corrupt file in load_racing,
and exited 'invalid PEM key' instead of regenerating — a transient ENOSPC/EIO on
first boot permanently wedged the node. Extract write_key_or_cleanup, which removes
the just-created file on write failure, and wire it into both the unix and non-unix
create branches.

F2 (P2): the load path tightened a loose existing key to 0600 but discarded the
set_permissions result. A chmod that failed (read-only mount, ownership/ACL
mismatch) left a world/group-readable private key in use while logging a normal
'loaded existing identity'. Surface the tighten failure (propagate it) and add
ensure_key_mode_0600, which fails closed if the key is not 0600 after the attempt.

RED->GREEN: failed_write_removes_the_partial_key_file (a failed write leaves no
file; RED without the remove_file). loose_key_mode_is_rejected_not_used (a 0644 key
is rejected; RED without the mode check). Existing created_key_is_mode_0600,
existing_key_is_loaded_and_tightened, and concurrent_starts_converge_on_one_identity
stay green. Full node lib+bin suite 497 passed, fmt + clippy clean.
@beardthelion

Copy link
Copy Markdown
Collaborator Author

Both addressed on fb8685d.

Remove a failed first-write (F1). Extracted write_key_or_cleanup, which removes the just-created file when write_all fails, and wired it into both the Unix and non-Unix create branches. A transient ENOSPC/EIO on first boot now leaves no file, so the next start regenerates instead of re-parsing an empty/partial PEM forever. Covered by failed_write_removes_the_partial_key_file (an injected write error removes the file; RED with the remove_file disabled), and I confirmed the non-Unix branch type-checks by compiling it via a temporary cfg swap.

Do not ignore a failed permission tighten (F2). The load path now propagates the set_permissions error and then calls ensure_key_mode_0600, which fails closed if the key is not 0600 after the attempt — so a chmod that failed or silently no-opd (read-only mount, ACL mismatch) is refused rather than read and used exposed. Covered by loose_key_mode_is_rejected_not_used (a 0644 key is rejected, a 0600 key accepted; RED with the check disabled). existing_key_is_loaded_and_tightened still passes (a loose key on a writable mount is tightened and loaded).

One behavior note on F2: a loose key that genuinely cannot be tightened is now rejected rather than used, which narrows the original "never reject a loose key" leniency — but only in the exposed-and-unfixable case, which is the exposure this follow-up closes. The real ENOSPC/chmod-fail I/O triggers are not driven end to end (no portable fault injection), but the error handling is proven at the helper level and the wiring is a one-line pass-through of the write/chmod result into it.

RED->GREEN for each; no other production behavior changes.

@beardthelion
beardthelion requested a review from jatmn July 14, 2026 01:38

@jatmn jatmn left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found issues that need to be addressed before this is ready.

Findings

  • [P2] Do not fail concurrent startup after an arbitrary 100 ms key-write window
    crates/gitlawb-node/src/lib.rs:1123
    create_new exposes the final key path before the winner has completed write_all, and every other process that sees that inode gives up after 50 2-ms retries. On a slow or temporarily stalled filesystem, a winner can legitimately take longer than that interval, so all losing node starts return invalid PEM key even though the winning write later succeeds. This reintroduces an availability failure for the concurrent-start case the new code is intended to make safe. Keep retrying until a meaningful startup deadline, or publish a fully written temporary key atomically so readers never observe a partial final file.

The create path did create_new(final)+write_all, so the final path appeared as
an empty inode before the PEM was flushed, and a losing/fast-path start only
retried ~100ms (50x2ms). On a slow or stalled filesystem the winner's write can
exceed that window, so every other start failed boot with 'invalid PEM key'
(#194). Publish atomically instead: write the full PEM to a sibling temp, then
hard_link it into place. hard_link is atomic and fails if the target exists, so
the final path only ever appears COMPLETE (no partial-read window), a lost race
never clobbers the winner, and a crashed writer leaves only a temp rather than a
partial final that would wedge later starts. load_racing_key now polls on a
wall-clock KEY_RACE_DEADLINE (5s) instead of a fixed 100ms count. Hoisted
load_existing_key/load_racing_key to module level for testability.

Adversarial RED->GREEN: a 250ms-slow winner is waited out (RED at the old 100ms);
a reader watching the final never sees a partial file (RED with create_new+write);
a losing publish does not clobber the winner; 500 tests pass.
beardthelion added a commit that referenced this pull request Jul 15, 2026
The create path did create_new(final)+write_all, so the final path appeared as
an empty inode before the PEM was flushed, and a losing/fast-path start only
retried ~100ms (50x2ms). On a slow or stalled filesystem the winner's write can
exceed that window, so every other start failed boot with 'invalid PEM key'
(#194). Publish atomically instead: write the full PEM to a sibling temp, then
hard_link it into place. hard_link is atomic and fails if the target exists, so
the final path only ever appears COMPLETE (no partial-read window), a lost race
never clobbers the winner, and a crashed writer leaves only a temp rather than a
partial final that would wedge later starts. load_racing_key now polls on a
wall-clock KEY_RACE_DEADLINE (5s) instead of a fixed 100ms count. Hoisted
load_existing_key/load_racing_key to module level for testability.

Adversarial RED->GREEN: a 250ms-slow winner is waited out (RED at the old 100ms);
a reader watching the final never sees a partial file (RED with create_new+write);
a losing publish does not clobber the winner; 500 tests pass.
@beardthelion

Copy link
Copy Markdown
Collaborator Author

Confirmed and fixed at e3eac37.

The finding is right. The create path did create_new(final)+write_all, so the final path appears as an empty inode before the PEM is flushed, and load_racing only retried 50 × 2ms ≈ 100ms — a slow/stalled-FS winner can exceed that, and every other start then fails boot with invalid PEM key.

I took option (b), keeping the single-winner guarantee: write the full PEM to a sibling temp, then hard_link it into place. hard_link is atomic and fails if the target exists, which gives three things at once — the final path only ever appears complete (no partial-read window), a lost race never clobbers the winner, and a crashed writer leaves only the temp rather than a partial final that would wedge later boots. load_racing_key now polls on a wall-clock deadline (5s) instead of a fixed 100ms count. I hoisted load_existing_key/load_racing_key to module level so the deadline is directly testable.

Vetted both ways:

  • A 250ms-slow winner is now waited out — RED when I reverted the deadline to 100ms.
  • A reader watching the final path never observes an empty/partial file — RED when I reverted the publish to create_new(final)+write.
  • A losing publish does not clobber the winner (and temps are cleaned up); the existing convergence test stays green.

Full suite 500 pass; fmt and clippy -D warnings clean.

Two deliberate tradeoffs worth flagging:

  1. The atomic publish uses hard_link, so it now requires a filesystem that supports hard links. Every normal node key location (ext4/xfs/overlay/tmpfs) does; a hardlink-less mount would fail boot loudly with a clear error rather than silently. Happy to add a create_new+write fallback for that case if you'd prefer universal-FS support over failing loud.
  2. A genuinely corrupt existing key now blocks boot up to the 5s deadline before erroring (a valid key still parses on the first attempt, no delay).

@jatmn ready for another look.

@beardthelion
beardthelion requested a review from jatmn July 15, 2026 04:21
@beardthelion
beardthelion requested a review from jatmn July 22, 2026 20:54

@jatmn jatmn left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found issues that need to be addressed before this is ready.

Findings

  • [P1] Preserve the released 0.7.0 version baseline
    .release-please-manifest.json:2
    The current base is already tagged v0.7.0, but this head changes the release manifest and every shipped crate back to 0.6.0 and deletes the 0.7.0 changelog section. As a result, a release from this branch reports an already superseded version and release-please calculates from a stale baseline, which can collide with existing tags/packages. Rebase or regenerate the release metadata so it retains the base's 0.7.0 state.

  • [P1] Do not remove the gitlawb-core dependency-purity gate
    .github/workflows/pr-checks.yml:257
    This PR deletes core-deps-purity together with its checker and exhaustive allowlist, with no replacement. That job is the only check that rejects new normal dependencies in gitlawb-core, which is embedded by the node, gl, and the remote helper; normal test, clippy, and audit runs do not enforce this contract. A subsequent dependency addition will therefore pass PR CI and silently propagate to every shipped consumer.

  • [P2] Refuse symlinked identity-key paths before tightening permissions
    crates/gitlawb-node/src/lib.rs:1257
    metadata and set_permissions both follow GITLAWB_KEY symlinks. If an attacker can replace the configured key path in a writable directory, a privileged node start chmods the symlink target to 0600 before validating or parsing it. That permits filesystem-integrity denial of service against any service-readable target and is newly introduced by the key-hardening path. Open the key without following symlinks and verify it is a regular file before changing permissions or reading it.

  • [P2] Close the temp key before trying to remove it after a failed write
    crates/gitlawb-node/src/lib.rs:2031
    The error path calls write_key_or_cleanup while f is still open; that helper immediately calls remove_file. On Windows an open file cannot be removed, so a write or fsync failure leaves .{stem}.tmp.<pid>.<n} behind. Repeated restarts with a reused service/container PID can exhaust all 64 deterministic names and prevent recovery after storage becomes healthy. Drop the handle before cleanup (and keep the cleanup result observable) so the documented failed-write recovery works cross-platform.

beardthelion added a commit that referenced this pull request Aug 4, 2026
The GITLAWB_SHUTDOWN_GRACE_SECS field, its doc-comment, and main.rs's
grace handling pre-date this PR (#22); #196's diff only added the
.env.example entry, whose comment promised a 503-on-expiry the node does
not implement. Remove just that entry. PR #194 owns the real bounded
drain and the config prose in disjoint files.
@beardthelion
beardthelion force-pushed the feat/real-node-deny-harness branch from 8f7af96 to 85c6bb4 Compare August 4, 2026 02:25
This branch gives gitlawb-node a lib target alongside its binary, and the
dependency-cache layer only wrote a main.rs stub for it. Cargo resolves every
declared target before it fetches anything, so the layer aborted on the missing
src/lib.rs and took the whole image build with it.

Adds the matching lib.rs stub. The layer deliberately has no `|| true`, so this
was a hard failure rather than a silently cold cache, which is the behavior that
block's comment asks for.
…e the temp before removing it

Two findings from the last review.

Loading an existing key ran metadata, set_permissions, a mode verify, and the
read as four separate path lookups, all of which follow symlinks. A key path
inside a writable directory could therefore be pointed at any service-readable
file, and a privileged start would chmod that target to 0600 before it ever
looked at the contents. On Unix the load now opens the path once with O_NOFOLLOW
and does the mode check, the tightening, and the read through that one
descriptor, which refuses a symlink outright and closes the window between the
check and the use. A non-regular file is refused for the same reason. A regular
key with loose bits is still narrowed rather than rejected, since rejecting it
would break existing deployments.

The failed-write path called the cleanup helper while the temp file handle was
still open. Removing an open file fails on Windows, so a write or fsync failure
left the temp behind, and the temp names are deterministic per process id with
64 of them, so a service restarting under a reused pid could exhaust the set and
stay stuck after storage recovered. The handle is now closed first, with fsync
still ahead of it since it needs the live descriptor. A removal that fails is
logged, because it is the precursor to that exhaustion, while the write error
stays the one surfaced to the caller.
The non-regular-file refusal added in the previous commit sits after the open,
and opening a FIFO read-only waits for a writer to connect. A named pipe at the
key path therefore hung startup indefinitely instead of being refused, reachable
by the same actor the symlink case assumes. The directory case did not catch it,
since opening a directory fails immediately and does reach the refusal.

Opening with O_NONBLOCK as well makes the open return so the file-type check can
run. It has no effect on a regular file, and a non-regular descriptor never gets
past the check, so nothing needs to clear it afterwards.
@beardthelion

Copy link
Copy Markdown
Collaborator Author

All four findings are addressed on 83da867, though two of them were already satisfied before this round and I want to be precise about which.

The two P1s were fixed by the merge from main, not by me

.release-please-manifest.json reads {".": "0.7.0"} at this head, byte-identical to main, and core-deps-purity is present in pr-checks.yml with the same job and allowlist as main. Every commit between your review and this head arrived from origin/main through the 08-04 merge, so the branch had drifted rather than deliberately reverted either one, and reintegrating current main resolved both. Nothing further to do there, but I would rather say the merge fixed them than let it read as work I did.

Refuse symlinked identity-key paths

Fixed, and the finding was live: nothing in the file matched symlink_metadata, is_symlink, O_NOFOLLOW, or custom_flags, and the load path made four separate symlink-following lookups (metadata, set_permissions, the mode verify, read_to_string).

On Unix it now opens once with O_NOFOLLOW and does the mode check, the tightening, and the read through that single descriptor. That refuses a symlink outright, and it also closes the check-to-use window the path-based sequence had even without one. A non-regular file is refused for the same reason. A regular key with loose bits is still narrowed rather than rejected, since rejecting it would break existing deployments; the pre-existing existing_key_is_loaded_and_tightened runs unmodified as the proof.

Two notes from doing it. ErrorKind::FilesystemLoop is not usable at our toolchain (still behind io_error_more), so the symlink case matches raw_os_error() == Some(libc::ELOOP). And the recovery arm downcasts an io::Error for its NotFound case, so I checked vanished_final_at_reparse_still_regenerates still passes with NotFound now coming from the open rather than the read.

A gap in my own fix, found afterwards

I ran the head past a second model before pushing, and it caught something my tests could not: the non-regular-file refusal sits after the open, and opening a FIFO read-only blocks until a writer connects. So a named pipe planted at the key path hung startup indefinitely instead of being refused, reachable by exactly the actor your finding assumes. My test planted a directory, which fails the open immediately with EISDIR and does reach the refusal, so it passed while the FIFO case hung.

Confirmed directly before believing it: an open with a 3-second alarm was killed rather than returning, and with O_NONBLOCK the open returns at once while fstat still reports a FIFO. The open now passes O_NOFOLLOW | O_NONBLOCK. It has no effect on a regular file, and a non-regular descriptor never survives the type check, so nothing needs to clear it afterwards. The regression runs the call on its own thread with a bounded wait, so if this ever regresses the test fails instead of hanging the suite.

Close the temp key before removing it

Fixed. The write and fsync result is computed, the handle is dropped, then the cleanup helper runs; sync_all needs the live descriptor so it stays ahead of the drop. A removal that fails is now logged, since that is the precursor to exhausting the 64 deterministic per-pid names, while the write error remains the one surfaced.

I also checked the fallback publish path, since the same helper shape appears there. It deliberately removes nothing on a failed write, because a removal would race a recovery that already claimed the round, and failed_fallback_write_leaves_the_partial_final_for_recovery pins that. So it does not have this bug.

The Docker failure was this branch

The dependency-cache layer died on couldn't read crates/gitlawb-node/src/lib.rs. This branch gives gitlawb-node a lib target alongside its binary, and the stub layer only wrote a main.rs stub for it, so cargo aborted while resolving targets. Added the matching stub, keeping the block's deliberate lack of || true.

That conversion has a consequence beyond CI worth flagging: gitlawb-node is now lib+bin, so unit tests in lib.rs run under --lib rather than --bin gitlawb-node. That changes how the crate is tested for everyone, not just here.

Evidence and what is not proven

Every guard above is proven by injection rather than inspection: four mutations, each reverting the specific defect, each observed going red on its named message, isolated so dropping O_NOFOLLOW reddens the symlink test and dropping O_NONBLOCK reddens the FIFO test. Locally the lib suite, fmt, and clippy -D warnings all pass; CI on this head will say whether the Docker layer is actually fixed, since only a full release build proves that end to end.

Two things I am not claiming. The non-Unix arm is reasoned, not run: cargo check against the Windows target fails inside aws-lc-sys's C build for reasons unrelated to this change, so the Windows behavior of the temp-close fix is unverified locally, though that arm is byte-identical to before. And tighten_and_verify_created still chmods by path, called on the temp and on the final, which is the same class as the symlink finding at sites this review did not cite. I left it alone rather than widen a PR whose size you have already objected to, but it is a real remaining instance and I would rather name it than have you find it.

@beardthelion
beardthelion requested a review from jatmn August 5, 2026 02:00

@jatmn jatmn left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found issues that need to be addressed before this is ready.

Findings

  • [P1] Rebase onto current main again — 0.7.1 landed after the August merge
    .release-please-manifest.json:2, crates/gitlawb-node/Cargo.toml:4, CHANGELOG.md:1-3
    Your August 5 comment is accepted: the August 4 merge from origin/main was the right fix for the earlier drift, and at 83da867 the manifest matched main as it then stood (0.7.0), with core-deps-purity intact. That is no longer true against current main: three commits have landed since (cd810b3 release 0.7.1, 5f44515 lockfile sync, fdf716dd release merge), and main now reads 0.7.1 while this head still reads 0.7.0 and omits the 0.7.1 changelog section. This is fresh stale-base drift, not a harness logic bug, but merging without another rebase would again regress the released version baseline. Please rebase onto current main and let the 0.7.1 manifest, crate versions, lockfile, and changelog come forward.

  • [P3] Add --locked to the deny-harness CI step
    .github/workflows/pr-checks.yml:114
    No response yet on this point. The workspace test step uses cargo test --locked --workspace, but the deny-harness step runs cargo test -p gitlawb-node --features test-harness --test deny_harness without --locked. The shared Cargo.lock makes practical drift unlikely, but the harness step should match the locked-resolution contract used everywhere else in PR CI.

Acknowledged from your comments

  • Symlink refusal (O_NOFOLLOW) and FIFO hang (O_NONBLOCK) — verified on head; accepted as fixed on 83da867.
  • Temp handle closed before removal — verified (drop(f) before write_key_or_cleanup); accepted as fixed. Your note that the fallback post-write path intentionally keeps partial state for recovery is correct and matches the tests.
  • tighten_and_verify_created still chmods by path — your disclosure that this is a deliberate, out-of-scope deferral is noted; not blocking this round.

@euxaristia

Copy link
Copy Markdown
Contributor

@coderabbitai full review

@coderabbitai

coderabbitai Bot commented Aug 22, 2026

Copy link
Copy Markdown
Contributor
⚠️ Action not completed

Review rate limited.


Your included review limit is currently reached under our Fair Usage Limits Policy. Your current included review allowance is based on your included PR review attempts over the past 7 days. This review may still proceed through usage-based billing if eligible. Your next included review will be available in 6 minutes.

Merge origin/main (0.7.1 baseline) onto feat/real-node-deny-harness, restore
the thin binary entry and test-harness AppState fields, add --locked to the
deny-harness CI step, and seed pinned_cids with production CIDs from raw
object bytes so /ipfs withhold probes match get_by_cid verification.
Tighten identity key parent directories to 0700 before load/publish,
create fallback publish markers with 0600, and extend U5b /ipfs withhold
coverage with signed non-reader denial and allowlisted-reader grant legs.
Add OwnerGate/ReadGate registry probe-shape tests.
Tighten identity key parent dirs only on publish, extend INV-8 header
scanning, add inline claimant orphan guard, and align gossip ping tests
with the /ready-first readiness probe.
@beardthelion

Copy link
Copy Markdown
Collaborator Author

Reintegrated onto current main (merge at bfc44f9, 0.7.1). The deny-harness CI step now runs cargo test --locked -p gitlawb-node --features test-harness --test deny_harness.

/ipfs withhold uses production pin CIDs (from_git_object_bytes) with anon deny, signed stranger 404, and reader 200 legs. Identity key hardening: parent dir tightened to 0700 before publish only; fallback markers land 0600. Follow-up harness work: assert_denied scans response headers; inline is_claimant multi-principal orphan guard; gossip ping unit tests mock /ready 404 before /health fallback.

At head 26014754: deny_harness 50 passed; cargo test -p gitlawb-node --lib --locked 1175 passed; clippy -D warnings green on push; cargo check --release --locked -p gitlawb-node green.

gl/git-remote client denials stay outside this PR's HTTP harness scope.

@beardthelion
beardthelion requested a review from jatmn August 29, 2026 22:47
Comment thread crates/gitlawb-node/tests/support/assert.rs Fixed
CodeQL flagged intentional deny-harness fixtures (HTTP secret_cid probe and
pack listing assertion). Ignore tests and test_support for analysis, remove
an unused import, and keep the allow-unbounded-git marker on the harness
git spawn line.
Reuse the signed anon probe path for the loopback GET so the cleartext-
transmission query does not flag secret_cid in the URL builder, and mark
the assert_denied panic as an intentional leak witness for cleartext-logging.

@jatmn jatmn left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found issues that need to be addressed before this is ready.

Merge readiness

  • [P1] Resolve the failing CodeQL status before merge
    GitHub reports two high-severity CodeQL annotations in the new harness: the test sends its deliberately withheld CID over local HTTP, and the denial assertion includes an OID in a panic witness. These may be test-fixture false positives, but the aggregate CodeQL check is failing. Classify and suppress only confirmed fixture-only alerts (with narrow, documented suppression), or change the harness if either flow can reach non-test behavior; do not merge while the required security check remains unresolved.

Findings

  • [P1] Restore the dedicated advisory-lock pool
    crates/gitlawb-node/src/lib.rs:300
    The lib/bin extraction now passes db.pool().clone() to RepoStore, instead of the cancellation-safe build_lock_pool(...) used by the prior boot path. acquire_write holds a PostgreSQL session advisory lock while receive-pack/Tigris work is in flight. If the request is cancelled in that interval, returning the ordinary pooled connection does not run the lock-pool release hook, so a later checkout of that session can retain the lock and other sessions block on it. Long pushes also consume the query pool itself, starving authorization, visibility, and post-receive database work.

    Restore lock_pool_size plus build_lock_pool(db.pool(), ..., db_acquire_timeout_secs) at the library boot boundary and pass that pool to RepoStore. Keep the existing after_release(pg_advisory_unlock_all()) cleanup and the separate capacity budget; the root cause is that the extraction silently substituted a plain cloned PgPool for this behavior-bearing constructor.

  • [P1] Keep the cross-field DB/push configuration check on the new boot path
    crates/gitlawb-node/src/lib.rs:83
    run() no longer calls Config::validate(). Clap validates each setting independently, so a deployment can start with (for example) fewer DB connections than max_concurrent_git_pushes + DB_POOL_APP_HEADROOM. Slow receive-packs can then occupy the available connections and turn unrelated DB-backed requests into acquire-timeout failures.

    Call the existing config.validate().map_err(...) immediately after bootstrap::merge_seeds(&mut config) and before key generation, database connection, or listener setup. Preserve the existing validation and its error wording rather than duplicating only today’s pool check: the root cause is that the moved run() bypasses the single cross-field validation boundary.

  • [P2] Preserve peer reachability hysteresis in the extracted gossip loop
    crates/gitlawb-node/src/lib.rs:1084
    The previous gossip_ping_round kept a failed_once set and persisted last_ping_ok = false only after two consecutive failed probes. The new inline loop writes every probe result immediately. A short network timeout, peer restart, or transient database error therefore hides the peer’s federated data for the full five-minute gossip interval, despite the prior contract intentionally treating one failure as non-authoritative.

    Move the existing gossip_ping_round/peer_ping_db_update state machine with the extraction, retain the missed-tick behavior, and restore the two-failure unit and DB-round regression tests. The root cause is not the probe implementation: it is the lost in-memory failure state when the loop was inlined.

…ss extraction

Re-wire Config::validate(), the advisory-lock pool, and gossip peer-reachability
hysteresis on the library boot path, and narrow CodeQL suppressions on fixture-only
harness assertions.
…down)

Run join_or_abort lib tests in the deny-harness CI step, repair
group/world-writable key parents on existing-key load, abort gossip on
HTTP shutdown with per-peer shutdown polling, and log list_peers errors.
@beardthelion

Copy link
Copy Markdown
Collaborator Author

Addressed the boot-path regressions and the follow-on gaps on head 2a7ed47.

Boot path (your Aug 30 review):

  • Config::validate() runs again after bootstrap::merge_seeds before key load.
  • RepoStore uses build_lock_pool(db.pool(), lock_pool_size(...), acquire_timeout) instead of db.pool().clone().
  • Gossip reachability is back on the two-failure state machine (gossip_ping_round / peer_ping_db_update); lock_pool_sizing and both hysteresis unit tests pass.

CodeQL:

Also on this head:

  • CI deny-harness step now runs --lib --test deny_harness so the join_or_abort_* guards execute in PR checks.
  • Existing-key load repairs a group/world-writable parent directory (mode & 0o022) before boot_load_key; read-only parents (e.g. 0555 in sweep_failure_tolerated) are left alone.
  • Gossip aborts on HTTP shutdown and polls shutdown between peer probes; list_peers failures log a warning instead of being swallowed.

Checks run locally:

  • cargo test --locked -p gitlawb-node --features test-harness --lib --test deny_harness (1182 lib + 50 deny_harness)
  • cargo test --locked --workspace
  • cargo clippy --locked --workspace --all-targets -- -D warnings

Ready for another look.

@beardthelion
beardthelion requested a review from jatmn August 30, 2026 23:51
.expect("read denial body: an unreadable denial cannot be certified leak-free");
if let Err(reason) = check_denied_with_headers(status, &body, &header_text, expected, withheld)
{
panic!("{reason}"); // codeql[rust/cleartext-logging]: intentional leak witness on test failure only

@jatmn jatmn left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found issues that need to be addressed before this is ready. This review is written to stop drip feedback, not add another open-ended round. Read the overall guidance first — it explains why this PR has produced twelve review cycles and what to do differently so the next push is the last one before merge.


Overall guidance — why feedback keeps dripping, and how to end it

This branch has 54 commits and twelve prior CHANGES_REQUESTED reviews since July. That is not because reviewers are moving goalposts at random. It is the predictable outcome of how the PR has been structured. The remaining items below are small on head 2a7ed47; the pattern is what keeps generating new rounds.

1. The PR is several projects in one branch

What started as “real-node deny harness” has accumulated, in the same series:

  • lib+bin split and public module surface
  • identity-key atomic publish, quarantine, recovery claims, delayed resweep, parent-dir repair
  • shutdown grace enforcement (drive_serve_with_grace)
  • gossip hysteresis restoration and shutdown polling
  • deny registry / completeness guards (absorbed from #195)
  • CodeQL config and CI wiring

Each layer is legitimate work, but each production boot change re-opens security review even when the stated deliverable is test infrastructure. Reviewers cannot sign off on “tests only” while lib.rs still changes identity recovery semantics every round.

What to do: For the merge push, freeze production behavior. No new boot-path logic, no new recovery edge cases, no “small follow-up” commits in lib.rs. If something still needs hardening, open a follow-up PR with its own review. The deny harness can merge without solving every identity-key corner case in the same branch.

Update the PR body to match reality. It still says “No behavior change, the 488-test node suite stays green.” Head materially changes boot (identity recovery, shutdown grace, gossip). Stale claims invite reviewers to re-audit production on every round because the stated contract does not match the diff.

2. Fix-one-review-item, break-another — the lib/bin extraction pattern

A recurring drip pattern on this branch:

  1. Reviewer finds boot regression from lib/bin split (missing validate(), lock pool, gossip hysteresis).
  2. Author fixes in 692b894.
  3. Reviewer finds new gaps in the fix (2a7ed47: parent-dir repair threshold, gossip shutdown, CodeQL still red).

This is classic regression churn from moving code without a frozen contract. The extraction moved main.rslib.rs but did not carry a single checklist of boot invariants on the first try.

What to do: Before requesting another review, run this boot invariant checklist yourself against run() vs pre-split main.rs (or vs main today) and paste the result in the PR comment so reviewers do not rediscover items:

  • Config::validate() after merge_seeds
  • build_lock_pool + lock_pool_size, not db.pool().clone() for RepoStore
  • build_http_client() redirect policy, not Client::new()
  • gossip failed_once hysteresis + shutdown_rx in ping round + gossip_handle.abort() after serve
  • drive_serve_with_grace wired to shutdown_grace_secs
  • identity key path: publish vs reload parent-dir policy consistent

If all six are true on your branch (they are on head today), say so explicitly and ask reviewers to treat further boot tweaks as out of scope for this PR.

3. The harness over-claims “comprehensive” while documenting exclusions

The registry, completeness guards, and PR prose claim runtime discharge of INV-1/INV-2/INV-8 across deny-bearing routes. The same codebase documents intentional exclusions:

  • GraphQL mutations (#219)
  • get_encrypted_blob (no IPFS stub)
  • global pin/anchor listings (#121)
  • git_receive_pack owner-push wiring (only signature row + protected-branch ad hoc test)
  • replica register/unregister

That design is defensible, but every exclusion is a hole reviewers will probe unless the PR draws a hard boundary. “Comprehensive” invites “what about X?” forever.

What to do: Add a short “Harness scope contract” section to the PR body (not scattered comments). For each excluded surface, one line: excluded because …, tracked in #N, covered by [unit test / other PR / accepted risk]. Then stop expanding the registry in this PR unless a production gate is actually broken.

For enforce_owner_push specifically (see P3 finding below): make a one-time decision — either add one real-socket test and close the topic, or add one sentence to the scope contract (“wiring covered by repos.rs unit tests; socket sweep does not own push policy”) and do not entertain further rounds on it.

4. CI fixes are being attempted without verifying on push

CodeQL is still FAIL on head after paths-ignore, inline codeql[...] comments, and multiple “clear false positive” commits. Each attempt that does not green the check creates another review round.

What to do: Treat CodeQL as a verify-on-push gate, not a code-change guess:

  1. Push the fix to the PR branch.
  2. Wait for the CodeQL run to finish.
  3. Only then request re-review, with a link to the green run or a link to Security-tab dismissals with rationale.

Do not stack another “maybe this suppression works” commit without that evidence. If dismissals are the team’s chosen path for fixture-only alerts, do that once, document it in the PR, and stop iterating on comment placement.

5. What actually blocks merge vs what does not

To end the back-and-forth, separate merge blockers from follow-ups:

Item Blocks merge? Notes
CodeQL check FAIL Yes Required status; fixture false positives still fail the aggregate check
Parent-dir 0o022 vs 0o077 on reload No (P3) Real inconsistency in new code; not worse than main for 0755; fix in this PR or #follow-up
enforce_owner_push socket coverage No (P3) Harness scope / claims alignment; production gate + unit tests exist
GraphQL / encrypted blob / global listings No Already documented out of scope
Further registry rows No Unless you choose to expand scope; otherwise freeze

Recommended close-out for the author:

  1. Green CodeQL (verify on push).
  2. Update PR body: honest scope, boot invariant checklist signed off, harness scope contract with exclusions.
  3. Freeze lib.rs production changes; follow-ups in separate PRs.
  4. Optionally fix the two P3 items in this PR or open tracked follow-ups and stop debating them here.

If you do (1)–(3), the remaining review surface is intentionally narrow and this should be the last substantive round.


Merge readiness

  • [P1] Resolve the failing CodeQL check before merge
    crates/gitlawb-node/tests/deny_harness.rs:307
    crates/gitlawb-node/tests/support/assert.rs:105
    .github/codeql/codeql-config.yml

    What is failing: GitHub Advanced Security on head 2a7ed47 reports 2 high-severity alerts and the aggregate CodeQL status is FAIL (mergeStateStatus: BLOCKED).

    1. anon_ipfs_read_of_withheld_blob_is_deniedclient.get(format!("{}{}", node.base_url, secret_path)) where secret_path is /ipfs/{secret_cid}. Query: rust/cleartext-transmission.
    2. assert_deniedpanic!("{reason}") may include withheld OID/secret tokens. Query: rust/cleartext-logging.

    Both are intentional harness fixtures (loopback deny probe; leak witness on test failure). Not production exposure.

    Root cause: Mitigations on this branch did not clear the head run:

    • paths-ignore for **/tests/** — alerts still fire on changed test files in the PR diff. Do not assume this config alone greens PR scanning without a verified run.
    • Inline codeql[rust/...] comments — on line 305 (two lines above .get) and on the panic! line; GitHub still reports both on head.

    How to fix (pick one path and verify on push):

    • Restructure so CodeQL does not trace sensitive data into the flagged expressions (e.g. redact panic message; build URL without embedding secret_cid in the expression the query sees).
    • Working suppression on the exact flagged lines, confirmed against a finished CodeQL run.
    • Security-tab dismissal of both as false positives (“loopback deny-harness fixture only”), documented in the PR comment with dismissal links.

    Do not disable CodeQL or ignore production src/.


Findings (non-blocking — fix here or in a follow-up, but do not extend this PR’s production scope to chase them)

  • [P3] Align identity-key parent repair on reload with publish-time checks
    crates/gitlawb-node/src/lib.rs:3434
    crates/gitlawb-node/src/lib.rs:1379

    Reload repairs parent only when mode & 0o022 != 0; publish uses ensure_key_parent_dir_private when mode & 0o077 != 0. Example: parent 0755 is left loose on restart but tightened on first publish. Not a regression from main (base had no reload repair). Root cause: reload fast-path used a narrower mask than publish. Fix: call ensure_key_parent_dir_private(parent) unconditionally on existing-key load (or gate on 0o077), add a 0755 reload test. Acceptable as post-merge follow-up if you freeze boot changes now.

  • [P3] Decide once on enforce_owner_push real-socket coverage
    crates/gitlawb-node/tests/support/routes.rs:458
    crates/gitlawb-node/tests/deny_harness.rs:145
    crates/gitlawb-node/src/api/repos.rs:1860

    git-receive-pack has three signed push gates: signature (registry), owner_push_rejection (default on, unit-tested only), branch protection (ad hoc test). Registry sweep does not catch wiring regressions for owner_push_rejection. Root cause: registry design + documented exclusion of git_receive_pack from owner orphan scan. Production gate is correct on head. Fix: add one socket test on unprotected branch or add one line to harness scope contract and close the topic. Do not leave implicit — that is what causes drip.


Summary for the author

Merge when: CodeQL is green (verified on push) and PR body reflects actual scope.

Stop dripping when: Production boot is frozen in this PR, harness exclusions are written down once, and P3 items are either fixed or explicitly deferred with issue links — not left implicit for the next reviewer to reopen.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

crate:node gitlawb-node — the serving node and REST API kind:test Test coverage or harness

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants