8ecf8929fb
The control envelope becomes live: the agent caches the hub's desired-state +
generation and re-fetches GET /hosts/{id}/desired-state only when the
generation advances. A new internal/desired Syncer maps the wire shape into a
reconcile.CachingProvider feeding the engine; benign deltas reconcile, an
explicit guest decommission is gated pending_signature (exec is 10B). Adds the
DesiredStateResponse/WireDesiredState wire types + Client.FetchDesiredState +
the loop EnvelopeObserver seam. Cross-repo golden (envelope + desired-state)
byte-identical with the hub.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
116 lines
4.9 KiB
Go
116 lines
4.9 KiB
Go
package reconcile
|
|
|
|
// The benign/destructive classifier (doc 03 §4). The gate decides whether an intended
|
|
// action needs an operator signature by **provenance + data-bearing-ness, NOT by
|
|
// verb**. The op CLASS encodes the semantic intent (a "detach storage" is its own
|
|
// destructive class, not just another PUT) so classification never turns on the HTTP
|
|
// method.
|
|
|
|
// OpClass is the semantic class of an intended action. This vocabulary is the
|
|
// agent-side contract: the signed-op `op` field (doc 04 §2.1) and slice-10's hub /
|
|
// operator CLI match these exact strings. The committed slice-2 fixture
|
|
// (op="guest_destroy") seeds it.
|
|
type OpClass string
|
|
|
|
const (
|
|
// Benign-on-existing-guest set — wired to live execution this slice.
|
|
ClassStart OpClass = "start"
|
|
ClassStop OpClass = "stop"
|
|
ClassSetConfig OpClass = "set_config" // benign sizing/description changes only
|
|
ClassResize OpClass = "resize" // GROW-only rootfs/volume resize (slice 5 Phase B)
|
|
|
|
// Benign storage attach — re-mount-by-UUID of a known target whose device returned
|
|
// (slice 5 Phase B). Additive (no data loss), so benign by construction.
|
|
ClassStorageMount OpClass = "storage_mount"
|
|
|
|
// Benign by construction — classified now, executors land in later slices.
|
|
ClassCreate OpClass = "create" // provision a NEW guest (restore-to-new, slice 7)
|
|
ClassRestart OpClass = "restart" // heal a crashed controller in-place (§4)
|
|
|
|
// Destructive set — destroying/overwriting the only/primary copy of customer
|
|
// data. Classified and gated now; NOT wired to live execution this slice (nothing
|
|
// serves destructive deltas until slice 10).
|
|
ClassGuestDestroy OpClass = "guest_destroy"
|
|
ClassStorageWipe OpClass = "storage_wipe" // storage detach/wipe
|
|
ClassRestoreOverwrite OpClass = "restore_overwrite" // restore OVER an existing guest
|
|
ClassDecommission OpClass = "decommission"
|
|
|
|
// Key-rotation re-pin (doc 04 §4) — destructive-class, role-scoped: the cold
|
|
// recovery key authorizes ONLY this; the operational key authorizes this + ordinary
|
|
// destructive ops.
|
|
ClassKeyRotation OpClass = "key_rotation"
|
|
)
|
|
|
|
// Disposition is the classifier verdict.
|
|
type Disposition string
|
|
|
|
const (
|
|
// Benign — the reconciler/executor MAY act without an operator signature.
|
|
Benign Disposition = "benign"
|
|
// Destructive — an operator signature bound to the action is REQUIRED.
|
|
Destructive Disposition = "destructive"
|
|
)
|
|
|
|
// Provenance is AGENT-INTERNAL evidence that an otherwise-destructive action is
|
|
// actually safe (doc 03 §4). It is recorded in the operation journal by the agent's
|
|
// own bookkeeping and is **NEVER populated from the hub or any external input** — else
|
|
// a compromised hub could relabel a data-bearing guest as scratch to walk the gate.
|
|
// The zero value (no internal evidence) is the only value an externally-sourced intent
|
|
// may carry.
|
|
type Provenance struct {
|
|
// SameTxnCreated: the agent created this resource earlier in the SAME journaled
|
|
// transaction, so destroying it is a compensating rollback (§10), not data loss.
|
|
SameTxnCreated bool
|
|
// AgentTaggedScratch: the agent tagged this resource ephemeral/scratch (e.g. a
|
|
// restore-test scratch guest, §8). Journal-recorded provenance only.
|
|
AgentTaggedScratch bool
|
|
}
|
|
|
|
// internalEvidence reports whether agent-internal provenance makes a destroy benign.
|
|
func (p Provenance) internalEvidence() bool {
|
|
return p.SameTxnCreated || p.AgentTaggedScratch
|
|
}
|
|
|
|
// Classify returns the disposition for an op class given agent-internal provenance.
|
|
//
|
|
// Rules (doc 03 §4):
|
|
// - create/start/stop/restart/benign-set_config → always Benign.
|
|
// - destroy/overwrite of a data-bearing resource → Destructive, UNLESS agent-internal
|
|
// provenance (same-transaction create, or agent-tagged scratch) makes it benign.
|
|
// - key-rotation → always Destructive (signed); role-scoping picks the allowed key.
|
|
// - an UNKNOWN class fails safe → Destructive (require a signature).
|
|
func Classify(class OpClass, prov Provenance) Disposition {
|
|
switch class {
|
|
case ClassStart, ClassStop, ClassSetConfig, ClassResize, ClassStorageMount, ClassCreate, ClassRestart:
|
|
return Benign
|
|
case ClassGuestDestroy, ClassStorageWipe, ClassRestoreOverwrite, ClassDecommission:
|
|
if prov.internalEvidence() {
|
|
return Benign // compensating rollback / scratch teardown
|
|
}
|
|
return Destructive
|
|
case ClassKeyRotation:
|
|
return Destructive
|
|
default:
|
|
return Destructive // fail safe: an unrecognized op is treated as destructive
|
|
}
|
|
}
|
|
|
|
// classOfAction maps a benign reconcile ActionKind to its OpClass, so every reconcile
|
|
// mutation is classified and passed through the gate like any other intent.
|
|
func classOfAction(k ActionKind) OpClass {
|
|
switch k {
|
|
case ActionStart:
|
|
return ClassStart
|
|
case ActionStop:
|
|
return ClassStop
|
|
case ActionSetConfig:
|
|
return ClassSetConfig
|
|
case ActionResize:
|
|
return ClassResize
|
|
case ActionDecommission:
|
|
return ClassDecommission
|
|
default:
|
|
return OpClass(k)
|
|
}
|
|
}
|