mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-27 00:38:16 +00:00
docs(architecture): unify per-object generation authority (#4912)
Add the shared design/contract document for backlog #1326: a single per-object generation authority (the #1312 fencing epoch) that spans commit fencing, read lease, prepared pool read, quota reservation, and old-dir GC. Pins the five cross-cutting constraints once - RPC signature binding with server-side nonce enforcement, xl.meta encoding contract (no meta_ver bump, no positional FileInfo field, internal metadata map under the dual-key contract), proto3 optional presence, mixed-version fallback direction, and cluster-level capability negotiation - so the implementation sub-issues follow them rather than each re-deciding. No product code changes.
This commit is contained in:
@@ -30,6 +30,7 @@ Two rules keep this directory healthy:
|
||||
## Contracts & invariants
|
||||
|
||||
- [placement-repair-invariants.md](placement-repair-invariants.md)
|
||||
- [unified-object-generation.md](unified-object-generation.md) — single per-object generation authority (fencing epoch, transport/encoding/proto/mixed-version contracts)
|
||||
- [runtime-capability-contracts.md](runtime-capability-contracts.md)
|
||||
- [workload-admission-contracts.md](workload-admission-contracts.md)
|
||||
- [background-controller-contract.md](background-controller-contract.md)
|
||||
|
||||
@@ -0,0 +1,219 @@
|
||||
# Unified Per-Object Generation Authority
|
||||
|
||||
Establishes a **single per-object generation authority** that spans object
|
||||
commit, GET snapshots, garbage collection, and quota accounting, and pins the
|
||||
transport, encoding, proto-evolution, and mixed-version contracts that every
|
||||
consumer must obey.
|
||||
|
||||
This is a **design and contract document**. It changes no storage code. It is
|
||||
the shared prerequisite for five implementation sub-issues under the
|
||||
[#1307](https://github.com/rustfs/backlog/issues/1307) adversarial-review
|
||||
program:
|
||||
[#1312](https://github.com/rustfs/backlog/issues/1312) (commit fencing),
|
||||
[#1313](https://github.com/rustfs/backlog/issues/1313) (read lease),
|
||||
[#1314](https://github.com/rustfs/backlog/issues/1314) (prepared pool read),
|
||||
[#1318](https://github.com/rustfs/backlog/issues/1318) (quota reservation), and
|
||||
[#1323](https://github.com/rustfs/backlog/issues/1323) (old-dir GC).
|
||||
|
||||
Tracks [rustfs/backlog#1326](https://github.com/rustfs/backlog/issues/1326).
|
||||
|
||||
## Why one authority
|
||||
|
||||
The #1307 adversarial-review verdict (issuecomment-4992565957) found that the
|
||||
five sub-issues each reach for their own generation / fencing / lease token to
|
||||
solve the same underlying problem — **commit mutual-exclusion plus snapshot
|
||||
lifetime**. Left independent, they diverge and punch through one another:
|
||||
|
||||
- #1323 old-dir GC can reclaim a directory still referenced by a #1313 lease if
|
||||
the two disagree on what "current generation" means.
|
||||
- #1312 fence epoch and #1318 quota reservation token, if derived from two
|
||||
different monotonic sources, cannot be compared — a late commit fenced on one
|
||||
plane can still settle quota on the other.
|
||||
|
||||
The fix is a single authority with one monotonic source, one persistence
|
||||
semantics, and one transport binding, that every consumer references rather than
|
||||
re-derives.
|
||||
|
||||
## The authority (single source)
|
||||
|
||||
**The per-object fencing epoch defined by #1312 is the sole generation
|
||||
authority.** No other monotonic counter, timestamp, or random token may stand in
|
||||
for generation.
|
||||
|
||||
- The distributed lock grant returns a monotonic `epoch` for the object key.
|
||||
Acquiring the object write-lock is the only way to mint a new generation.
|
||||
- The epoch travels down the authoritative commit path (with
|
||||
`RenameDataRequest` / the local `DiskAPI` call) and is compared at each disk's
|
||||
atomic `xl.meta` commit point, rejecting stale epochs. It adds no extra
|
||||
network round trip (#1312 implementation clause 2).
|
||||
- Every consumer in the table below **binds** this epoch. None defines its own.
|
||||
|
||||
### Monotonicity persistence semantics
|
||||
|
||||
The epoch must be **monotonic across lock-plane restart and failover**
|
||||
(#1312 B4). Today the distributed lock entry is in-memory only
|
||||
(`crates/lock/src/distributed_lock.rs` has no persistence path), so a lock-service
|
||||
restart resets the counter to zero: a new writer draws epoch 1 while disks have
|
||||
already observed epoch 100, producing either a permanent write rejection or a
|
||||
fence *inversion*. To prevent this, the epoch must be one of:
|
||||
|
||||
1. **Quorum-persisted** before it is handed to a writer, or
|
||||
2. **Derived from a durable monotonic source** — a `(term, counter)` pair where
|
||||
`term` advances on every lock-service leadership change and is itself durable,
|
||||
so the composite never regresses even when `counter` resets.
|
||||
|
||||
The comparison at the disk commit point is on the full composite; a lower
|
||||
`(term, counter)` is always rejected.
|
||||
|
||||
## Consumer binding contracts
|
||||
|
||||
| Consumer | How it binds generation | Key invariant |
|
||||
|---|---|---|
|
||||
| #1312 commit fence | epoch compared at three disk-write points — `rename`, rollback `delete`, and `commit_rename_data_dir` cleanup | stale epoch rejected on **all** disks; an already-ACK'd write is never rolled back |
|
||||
| #1313 read lease | lease binds the generation observed at read time; GC runs only after every lease referencing that generation is released | lease is visible across nodes; a crashed reader's lease is reclaimed by TTL |
|
||||
| #1323 old-dir GC | cleanup job carries the committed generation; before deleting `old_dir` it confirms no lease referencing a lower generation still points at it | `old_dir != committed_dir`; a still-referenced directory is never deleted |
|
||||
| #1314 prepared pool read | the `PreparedPoolRead` bundle carries the generation resolved during pool lookup; the chosen pool's reader setup reuses it only after a match | generation mismatch forces a fallback to full metadata fanout |
|
||||
| #1318 quota reservation | reservation / settle token binds the object generation | a late commit holding an old-generation token cannot settle a newer generation |
|
||||
|
||||
### Fence coverage is three disk-write points, not one (#1312 B2)
|
||||
|
||||
Comparing the epoch at the `rename` commit point alone is insufficient. The
|
||||
authoritative commit sequence is `tmp sync → data-dir rename → xl.meta commit →
|
||||
directory sync` in `crates/ecstore/src/set_disk/core/local.rs`, and there are two
|
||||
further detachable disk-write points in
|
||||
`crates/ecstore/src/set_disk/core/io_primitives.rs`:
|
||||
|
||||
- **Rollback delete** — on quorum failure each disk runs
|
||||
`delete_version(undo_write=true)`. A fenced old writer's rollback must also
|
||||
compare epoch, otherwise it deletes the winner's already-committed version.
|
||||
- **`commit_rename_data_dir`** — a cancel-then-detach disk-write point; the
|
||||
coordinator's "reap all child tasks" must explicitly include it so a cancelled
|
||||
writer cannot bypass fence/lease and keep deleting directories.
|
||||
|
||||
If the epoch is validated only at the `xl.meta` commit point, a fenced writer
|
||||
may already have renamed its data-dir into the object path, leaving a staged
|
||||
orphan. Either move the fence ahead of the data-dir rename, or declare that
|
||||
orphan an acceptable residue accounted for by GC metrics — the white-box
|
||||
acceptance "no background disk write after release" must be rewritten
|
||||
accordingly.
|
||||
|
||||
## Transport and security contract
|
||||
|
||||
Generation and all derived tokens (lease, reservation) cross node boundaries in
|
||||
internode RPC bodies. Every such flow must be signature-bound.
|
||||
|
||||
### RPC signature binding (#1312 B3, #1313, #1318)
|
||||
|
||||
**Requirement.** The RPC body digest carrying a generation/epoch/token must be
|
||||
folded into the RPC HMAC, binding `method + object key + generation`, and the
|
||||
request must carry a nonce / one-shot identifier inside the 300s replay window.
|
||||
The nonce is only meaningful if the **receiver enforces it**: each disk keeps a
|
||||
bounded seen-nonce cache covering the 300s freshness window and rejects any
|
||||
request whose nonce was already observed. A nonce that is merely transmitted but
|
||||
not checked provides no replay protection.
|
||||
|
||||
This generalizes the existing `walk_dir` pattern: `walk_dir` computes a
|
||||
`Sha256` of the request body and places it in the signed URL query as
|
||||
`walk_dir_body_sha256`
|
||||
(`crates/ecstore/src/cluster/rpc/internode_data_transport.rs:187`), so the body
|
||||
digest is transitively covered by the URL signature. New generation-bearing RPCs
|
||||
adopt the same `*_body_sha256` mechanism.
|
||||
|
||||
**Current gap (verified).** The internode HMAC covers only
|
||||
`{path_and_query}|{method}|{timestamp}`
|
||||
(`signature_payload`, `crates/ecstore/src/cluster/rpc/http_auth.rs:75-83`). It
|
||||
binds neither the request body nor a nonce, and the 300s freshness window has no
|
||||
one-shot guard. Without the binding above:
|
||||
|
||||
- An on-path or replaying attacker can inject a high epoch (e.g. `u32::MAX`) and
|
||||
**permanently fence out** a key's legitimate writes — monotonicity only
|
||||
rejects *low/old* epochs, never a forged-high one.
|
||||
- A captured lease/reservation token can be replayed within 300s to block
|
||||
old-dir GC (storage-exhaustion DoS) or to double-reserve / prematurely settle
|
||||
quota.
|
||||
|
||||
Acceptance for each consumer must include: "a replayed old signature to a
|
||||
different method, and a forged-high-epoch request, are both rejected."
|
||||
|
||||
### Encoding contract (#1312 B1)
|
||||
|
||||
The on-disk persistence of generation must not perturb the file format:
|
||||
|
||||
- **Do not bump `XL_META_VERSION` / `XL_HEADER_VERSION`.**
|
||||
`crates/filemeta/src/filemeta/codec.rs` rejects `meta_ver > 3` and
|
||||
`header_ver > 3` outright (`decode_xl_headers`), and both constants are `3`
|
||||
(`crates/filemeta/src/filemeta.rs:53-54`). Bumping either makes every new
|
||||
`xl.meta` unreadable by rolling-upgrade old RustFS nodes and by MinIO — a
|
||||
total read failure, not a graceful downgrade.
|
||||
- **Do not add generation as a `FileInfo` struct field.** `RenameDataRequest`
|
||||
serializes `file_info_bin` with rmp_serde's default **array** encoding
|
||||
(`crates/ecstore/src/cluster/rpc/remote_disk.rs`), so a new positional field
|
||||
breaks deserialization in both directions across mixed-version nodes.
|
||||
- **Where it may live.** Only inside a version's internal metadata **map**
|
||||
(MinIO skips unknown internal keys and the map encoding is extensible) or in a
|
||||
per-disk sidecar outside `xl.meta`. If it goes in the metadata map, it must
|
||||
obey the dual-key contract (`x-rustfs-internal-*` / `x-minio-internal-*`, see
|
||||
AGENTS.md "Cross-Cutting Domain Invariants").
|
||||
- **Regression guard.** Preserve the #4377 real-MinIO `xl.meta` interop
|
||||
regression (the fixture family around `crates/filemeta/src/filemeta.rs`):
|
||||
objects written by a new node must still be readable by old RustFS nodes and
|
||||
by MinIO, in both upgrade and downgrade directions.
|
||||
|
||||
### Proto evolution
|
||||
|
||||
New generation/epoch proto fields use **proto3 `optional`** (explicit presence).
|
||||
A non-optional field is forbidden: an old coordinator talking to a new disk
|
||||
decodes an absent field as `0`, which is indistinguishable from a real
|
||||
`epoch == 0` and silently breaks the "stale epoch rejected" invariant during
|
||||
upgrade.
|
||||
|
||||
### Mixed-version gate — one direction
|
||||
|
||||
When the cluster-level generation capability is **not** negotiated on every
|
||||
target disk, the behavior **falls back to current semantics** (existing lock +
|
||||
`is_lock_lost()` check for #1312; degraded-allow read-check for #1318 at
|
||||
`rustfs/src/app/object_usecase.rs`; full fanout for #1314). Fail-closed is
|
||||
**only** an explicit administrator strict mode. Defaulting to fail-closed is
|
||||
forbidden — it makes writes unavailable for the whole rolling-upgrade window.
|
||||
|
||||
## Capability negotiation
|
||||
|
||||
Generation enforcement is a **cluster-level handshake**, not a per-request
|
||||
probe:
|
||||
|
||||
- A node advertises a `generation` capability once it can (a) mint quorum-durable
|
||||
epochs, (b) compare epochs at all three disk-write points, and (c) verify the
|
||||
body-digest-bound RPC signature.
|
||||
- The authoritative writer enables hard enforcement for an object only when
|
||||
**all** target disks in the set advertise the capability. Any missing
|
||||
advertisement pins that commit to the mixed-version fallback above.
|
||||
- The capability is surfaced through the existing runtime capability contract
|
||||
surface (see [runtime-capability-contracts.md](runtime-capability-contracts.md)),
|
||||
so consumers read one negotiated flag rather than each re-deriving support.
|
||||
- Enforcement tracks the current membership rather than latching: it turns on
|
||||
for a set only while every disk in that set advertises `generation`, and a
|
||||
single old node rejoining drops the affected sets back to the mixed-version
|
||||
fallback rather than failing closed. It never regresses the on-disk epoch —
|
||||
falling back stops *comparing* new epochs, it does not lower any epoch already
|
||||
persisted.
|
||||
|
||||
## Implementation order
|
||||
|
||||
1. **#1312 first.** It defines the epoch, its persistence, the three fence
|
||||
points, the RPC signature binding, and the encoding location. Everything
|
||||
downstream depends on its epoch existing.
|
||||
2. **#1313** (read lease) reuses the #1312 epoch as the lease generation and
|
||||
must land before or alongside #1323.
|
||||
3. **#1323** (old-dir GC) depends on #1313 leases being present and
|
||||
cross-node-visible; its "no lease references old_dir" check has nothing to
|
||||
query otherwise.
|
||||
4. **#1318** (quota reservation) and **#1314** (prepared pool read) bind the
|
||||
epoch independently; both gate on the same capability handshake.
|
||||
|
||||
## Acceptance for this contract
|
||||
|
||||
- #1312 / #1313 / #1314 / #1318 / #1323 bodies reference this unified
|
||||
generation and no longer define their own token.
|
||||
- The five constraints — transport signature, encoding, proto presence,
|
||||
mixed-version gate direction, and capability negotiation — are pinned here
|
||||
once; each implementation sub-issue follows them rather than re-deciding.
|
||||
Reference in New Issue
Block a user