AgentConfig

Struct AgentConfig 

Source
pub struct AgentConfig {
    pub control_plane_url: String,
    pub machine_id: String,
    pub state_dir: PathBuf,
    pub trust_file: PathBuf,
    pub manifest_freshness_window_secs: u64,
    pub ca_cert: Option<PathBuf>,
    pub client_cert: Option<PathBuf>,
    pub client_key: Option<PathBuf>,
    pub current_system_path: PathBuf,
    pub ssh_host_key_file: PathBuf,
    pub renewal_threshold_fraction: Option<f64>,
}
Expand description

Static runtime configuration. Cheap to clone; the workers each get a reference. Built once at startup from CLI args.

ca_cert / client_cert / client_key carry the same paths the CLI receives (Args::ca_cert etc.) and the first-boot enrollment path already uses (main.rs::maybe_run_first_boot_enrollment). Workers pass them straight through to crate::comms::build_client so every post-enroll /v1/agent/* request rides the agent’s enrollment-cert mTLS identity. DEFECT-003 regression-guard: any worker building a bare reqwest::Client (no client cert) would talk to CP unauthenticated; integration_mtls.rs pins the property end-to-end.

Fields§

§control_plane_url: String§machine_id: String§state_dir: PathBuf§trust_file: PathBuf

LOADBEARING: same --trust-file path the binary validated at startup. Workers that fetch + verify signed manifests (manifest_poll, longpoll) MUST read this — the startup check alone doesn’t propagate into runtime trust loading.

§manifest_freshness_window_secs: u64

Acceptance window for meta.signedAt on fleet.resolved.json + per-rollout manifest verification (RFC-0010 §1.5 replay defense). Production: 3600s — matches the channel-refs poll cadence so any signed artifact older than one refresh cycle is rejected. Test harnesses with fixed-signedAt fixtures override to a much larger value (e.g. 1 year) since their fixture bytes are deterministic and committed; bumping the window is the alternative to regenerating signatures on every test run.

§ca_cert: Option<PathBuf>§client_cert: Option<PathBuf>§client_key: Option<PathBuf>§current_system_path: PathBuf

Path to the NixOS current-system symlink. The agent reads it to populate current_closure on every steady-state heartbeat (LIFT #5) so CP can rebuild host_rollout_records from agent inputs alone after a wipe-and-restart, per the architectural promise in docs/design/architecture.md §305. Production: /run/current-system. Test fixtures point at a non-existent path; read_current_closure returns None and the heartbeat behaves as it did pre-LIFT-#5.

§ssh_host_key_file: PathBuf

Path to the host’s SSH ed25519 key. The agent uses it as the CSR signing key on enroll and on cert renew — the renewed cert’s pubkey is the host’s SSH host pubkey, same as at first-boot enrollment (RFC-0003 §2). Production: /etc/ssh/ssh_host_ed25519_key.

§renewal_threshold_fraction: Option<f64>

Fraction of mTLS cert validity remaining below which the cert_renewal worker calls enrollment::renew. None → disable the renewal worker (the cert stays in place until expiry). Operator MAY raise (e.g. 0.8) for short-cycle hardware testing of renewal flows. Strictly between 0 and 1 when set; the worker refuses to start otherwise.

Trait Implementations§

Source§

impl Clone for AgentConfig

Source§

fn clone(&self) -> AgentConfig

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> PolicyExt for T
where T: ?Sized,

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more