Skip to main content

boatramp_node/
node.rs

1//! The node-graph assembly: given a built store (blobs + KV), a configured
2//! [`Auth`](boatramp_server::Auth), and resolved
3//! [`ServerOptions`](boatramp_server::ServerOptions), wire the deploy store,
4//! handler runtime, compute reconcile loop, and domain-verify reconcile loop
5//! into a [`RunningNode`] ready to hand to a transport (`serve_with` & friends).
6//!
7//! This is the headline extraction of `PLAN-node-library`: the binary's
8//! `serve::run` used to inline this wiring, so no embedder or in-process test
9//! could exercise the same graph the `boatramp serve` binary runs. `run` now
10//! resolves the *environment* (args -> backends -> store, signal handlers,
11//! migration, auth) and calls [`assemble`]; the cluster path keeps its own inline
12//! copy until a later step converges it here.
13
14use std::path::Path;
15use std::sync::Arc;
16
17use boatramp_core::deploy::DeployStore;
18use boatramp_core::kv::KvStore;
19use boatramp_core::Storage;
20
21use crate::config::ServerConfig;
22use crate::error::{Error, Result};
23
24/// How often the compute reconcile loop converges desired vs actual workloads.
25/// Defaults to 30s; override with `BOATRAMP_COMPUTE_RECONCILE_TICK_MS` (milliseconds)
26/// so compute-backed tests can converge in a fraction of a second instead of
27/// waiting a full tick for the launch/scale reconcile.
28pub fn compute_reconcile_tick() -> std::time::Duration {
29    std::env::var("BOATRAMP_COMPUTE_RECONCILE_TICK_MS")
30        .ok()
31        .and_then(|s| s.parse::<u64>().ok())
32        .filter(|&ms| ms > 0)
33        .map(std::time::Duration::from_millis)
34        .unwrap_or(std::time::Duration::from_secs(30))
35}
36/// How often the domain-verify reconcile loop re-checks pending challenges.
37pub const DOMAIN_VERIFY_RECONCILE_TICK: std::time::Duration = std::time::Duration::from_secs(60);
38/// How long a compute workload may be idle before scale-to-zero sleeps it.
39pub const COMPUTE_IDLE_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(300);
40
41/// The built store + resolved config handed to [`assemble`]. Owns the blob/KV
42/// backends and the auth/options the caller already resolved; borrows the parsed
43/// config and data directory.
44pub struct NodeInput<'a> {
45    /// The full parsed server config (the handler + compute sections are read here).
46    pub config: &'a ServerConfig,
47    /// The node data directory (per-site SQL, handler state).
48    pub data_dir: &'a Path,
49    /// The object store built by [`crate::blobs::build_blobs`].
50    pub storage: Arc<dyn Storage>,
51    /// The metadata KV, already cache-fronted, built by [`crate::backends::build_kv`].
52    pub kv: Arc<dyn KvStore>,
53    /// The control-plane auth built by [`crate::auth::configure_auth`].
54    pub auth: boatramp_server::Auth,
55    /// Server options, already carrying the resolved posture, daemon runtime, and
56    /// (post-`configure_auth`/`configure_oidc`) issuer / OIDC verifier.
57    pub options: boatramp_server::ServerOptions,
58    /// The public HTTP serve bind address, if known — used (under
59    /// `allow_guest_self_egress`) to let a handler guest's `wasi:http` reach this
60    /// instance's own front door over loopback. `None` (an in-process embedder with no
61    /// listener) disables self-egress.
62    pub serve_addr: Option<std::net::SocketAddr>,
63    /// The cloud blob-change watch provider (FA-5b2), if the backend is a cloud one.
64    pub watch_provider: Option<Arc<dyn boatramp_core::blob_provision::WatchProvider>>,
65    /// The provisioning tier for the watch provider.
66    pub provision_tier: boatramp_core::blob_notify::ProvisionTier,
67    /// The `wasi:messaging` substrate override for the handler runtime. `None` uses
68    /// the single-node default (`LogMessaging` over the same backends); the cluster
69    /// path passes its Raft-backed coordinator.
70    pub messaging: Option<Arc<dyn boatramp_core::messaging::Messaging>>,
71    /// The single leader gate for cron firing + the compute / domain-verify reconcile
72    /// loops. Single-node passes an always-true gate (there is one node); the cluster
73    /// passes its Raft `is_leader` check so a single node drives each sweep.
74    pub is_leader: boatramp_server::CronLeaderGate,
75    /// This node's compute scheduler id (`0` single-node; the cluster node id in a
76    /// fleet, so replicas are tagged to the right node).
77    pub node_id: u64,
78    /// The binary the re-exec'd compute workers run as — the container backend's
79    /// `__sandbox` jailer and the microVM backends' `__vmm-run`/`__vz-run` VM hosts.
80    /// `None` uses this process's own executable (`current_exe`), which is what
81    /// `boatramp serve` wants (the child *is* boatramp). An **embedding harness**
82    /// whose own binary doesn't implement those subcommands should point this at a
83    /// built `boatramp` binary, so it can drive the real container/microVM backends
84    /// in-process (only the per-workload worker re-execs; the serving plane stays
85    /// embedded). The docker backend needs neither — it talks to a daemon.
86    pub worker_exe: Option<std::path::PathBuf>,
87}
88
89/// A fully wired node: the deploy store, handler runtime, auth, and options a
90/// transport consumes, plus the detached reconcile loops kept alive for the
91/// node's serving life. Destructure it and hold `reconcile` across the serve
92/// await so the loops outlive assembly.
93pub struct RunningNode {
94    /// The deploy store (blob + KV) the router serves from.
95    pub deploy: DeployStore,
96    /// The handler runtime for wasm handlers (a disabled build ⇒ a no-op runtime).
97    pub handlers: boatramp_server::HandlerRuntime,
98    /// The control-plane auth.
99    pub auth: boatramp_server::Auth,
100    /// The resolved server options.
101    pub options: boatramp_server::ServerOptions,
102    /// The detached reconcile loops (compute + domain-verify). Tokio `JoinHandle`s
103    /// do not abort on drop, so the loops run for the process life regardless; the
104    /// handles are retained so an embedder can join/abort them on shutdown.
105    pub reconcile: Vec<tokio::task::JoinHandle<()>>,
106}
107
108/// The instance's own serve socket(s) a guest self-call may reach, given the bind `addr` and
109/// whether the posture (`allow_guest_self_egress`) permits it. A wildcard bind
110/// (`0.0.0.0`/`::`) is reachable over loopback, so it normalizes to `127.0.0.1` **and** `::1`
111/// on the serve port; a specific bind is reachable at itself. Empty when disabled or no
112/// listener.
113fn self_egress_addrs(
114    addr: Option<std::net::SocketAddr>,
115    enabled: bool,
116) -> Vec<std::net::SocketAddr> {
117    use std::net::{IpAddr, Ipv4Addr, Ipv6Addr, SocketAddr};
118    let Some(addr) = addr.filter(|_| enabled) else {
119        return Vec::new();
120    };
121    if addr.ip().is_unspecified() {
122        let port = addr.port();
123        vec![
124            SocketAddr::new(IpAddr::V4(Ipv4Addr::LOCALHOST), port),
125            SocketAddr::new(IpAddr::V6(Ipv6Addr::LOCALHOST), port),
126        ]
127    } else {
128        vec![addr]
129    }
130}
131
132/// Whether a node with **no configured control-plane issuer** should auto-provision an ephemeral
133/// in-memory fleet signer (for host session cookies + delegable capabilities) from its serve bind.
134///
135/// The fleet signer is a distinct trust domain from control-plane admin auth, so a DEV / loopback
136/// node with auth disabled should still be able to sign/verify session cookies and capabilities. It
137/// is gated **strictly to a loopback bind** (`127.0.0.1`/`::1`) or an in-process embedder with no
138/// bind address (`None`): NEVER a public or wildcard (`0.0.0.0`/`::`, reachable off-host) bind,
139/// where an ephemeral key would silently invalidate live capabilities across a restart — a
140/// public node that wants guest capabilities without control-plane auth must supply a persistent
141/// key. (`is_loopback()` is already `false` for a wildcard/unspecified address, so a `0.0.0.0` bind
142/// correctly does NOT auto-provision.)
143#[cfg(feature = "handlers")]
144fn should_autoprovision_fleet_signer(serve_addr: Option<std::net::SocketAddr>) -> bool {
145    serve_addr.is_none_or(|a| a.ip().is_loopback())
146}
147
148/// Wire [`NodeInput`] into a [`RunningNode`]: build the handler runtime, the
149/// deploy store (materializing the reserved `default` project), the compute
150/// backends + reconcile loop, and the domain-verify reconcile loop.
151///
152/// The caller has already built the store and configured auth/OIDC on `options`;
153/// this is the pure node-graph wiring, identical to what `boatramp serve` runs.
154pub async fn assemble(input: NodeInput<'_>) -> Result<RunningNode> {
155    let NodeInput {
156        config,
157        data_dir,
158        storage,
159        kv,
160        auth,
161        options,
162        serve_addr,
163        watch_provider,
164        provision_tier,
165        messaging,
166        is_leader,
167        node_id,
168        worker_exe,
169    } = input;
170    // Copy out the posture scalars up front so `options` can be moved into the
171    // returned `RunningNode` without a lingering borrow.
172    let max_handler_blob_bytes = options.posture.max_handler_blob_bytes;
173    let max_component_bytes = options.posture.max_component_bytes;
174    let allow_guest_private_egress = options.posture.allow_guest_private_egress;
175    let allow_env_secret_refs = options.posture.allow_env_secret_refs;
176    let allow_guest_email = options.posture.allow_guest_email;
177    // The instance's own serve socket(s) a guest self-call may reach, when the posture allows
178    // it: a wildcard bind (`0.0.0.0`/`::`) is reachable on loopback, so normalize to
179    // `127.0.0.1`/`::1`; a specific bind is itself.
180    let self_egress_addrs = self_egress_addrs(serve_addr, options.posture.allow_guest_self_egress);
181    let allow_shared_kernel = options.posture.allow_shared_kernel_compute;
182    let domain_verify_allow_private = options.posture.domain_verify_allow_private;
183
184    // The deploy store the router serves from — built up front so the handler
185    // runtime's managed compute-backed `sql` binding can resolve DB endpoints from
186    // the same store the reconcile writes.
187    let compute_storage = storage.clone();
188    let deploy = DeployStore::new(storage, kv.clone());
189    // The `[secrets]` envelope (local KEK / Vault) that seals a managed SQL
190    // credential at rest. `None` ⇒ no wrapping (a managed DB then fails closed).
191    let secrets_envelope = build_secrets_envelope(config.secrets.as_ref(), data_dir)?;
192    // The project-scoped internal secret store, built from the same KV + `[secrets]`
193    // envelope that seal managed-DB credentials. Backs both the `boatramp:<name>`
194    // resolver (wired into the handler runtime below, when that feature is present)
195    // and the admin secrets API (threaded into `ServerOptions` unconditionally, so it
196    // works on a lean node too). `None` when no envelope is configured — the admin
197    // endpoints then fail closed with a clear 501, never a panic.
198    let secret_store = secrets_envelope.clone().map(|envelope| {
199        Arc::new(boatramp_core::secret_store::SecretStore::new(
200            kv.clone(),
201            envelope,
202        ))
203    });
204    // The project-scoped SMTP email-profile store, built from the same KV + envelope
205    // (the password is sealed at rest). Backs the admin API (`options` below,
206    // unconditionally, so it works on a lean node) and — when the `email` feature +
207    // `allow_guest_email` posture permit — the runtime's host-side profile
208    // resolution (wired inside `build_handler_runtime`). `None` with no envelope, so
209    // the admin email endpoints fail closed with a clear 501.
210    let email_profile_store = secrets_envelope.clone().map(|envelope| {
211        Arc::new(boatramp_core::email_config::EmailProfileStore::new(
212            kv.clone(),
213            envelope,
214        ))
215    });
216
217    // The handler runtime reuses the same blob/KV backends (per-site prefixed)
218    // for its wasi:blobstore/keyvalue bindings; the sql binding is selected by
219    // `[handlers.bindings.sql]` (default: per-site libsql files under <data-dir>).
220    let handlers = crate::handlers::build_handler_runtime(
221        kv.clone(),
222        compute_storage.clone(),
223        data_dir,
224        config.handlers.as_ref(),
225        messaging,
226        max_handler_blob_bytes,
227        max_component_bytes,
228        allow_guest_private_egress,
229        self_egress_addrs,
230        allow_env_secret_refs,
231        allow_guest_email,
232        options.posture.require_tenancy_declaration,
233        options.posture.allow_cross_tenant_db,
234        &deploy,
235        secrets_envelope.clone(),
236    )
237    .await?;
238    // Wire the fleet session-cookie signer (R3, PLAN-tenancy-principal): the same issuer that mints
239    // control-plane tokens signs + verifies the host-issued anonymous session cookie AND the
240    // delegable capabilities (PLAN-delegable-capabilities). Handlers-gated: the session-cookie
241    // machinery lives on the handler runtime, so a lean (no-handlers) build has nothing to wire.
242    //
243    // The fleet signer is a DIFFERENT trust domain from control-plane admin auth (signing a
244    // customer's session cookie / an embed capability is not the authority to admit an operator to
245    // the control plane), but production derives it from the control-plane issuer for convenience.
246    // For a DEV / loopback node with control-plane auth disabled (`options.issuer` is `None`),
247    // auto-provision an EPHEMERAL in-memory Ed25519 fleet key so the guest-facing signer just works
248    // — session cookies + capability mint/verify — WITHOUT turning on control-plane auth. Strictly
249    // gated to a loopback bind (or an in-process embedder with no bind address): never on a public
250    // bind, where an ephemeral key would silently invalidate live capabilities across a restart (a
251    // public node that wants guest capabilities without control-plane auth must supply a persistent
252    // key). Ephemeral = issue + verify within one process run; nothing persisted, no cross-process
253    // or cross-deploy trust. Production is byte-identical: a real deploy supplies a control-plane key
254    // ⇒ `issuer` is `Some` ⇒ this fallback is never taken.
255    #[cfg(feature = "handlers")]
256    {
257        let fleet_signer = options.issuer.clone().or_else(|| {
258            should_autoprovision_fleet_signer(serve_addr).then(|| {
259                tracing::warn!(
260                    "control-plane auth is disabled and no signer is configured; auto-provisioning \
261                     an EPHEMERAL in-memory fleet signer (Ed25519) for host session cookies + \
262                     delegable capabilities on this loopback/dev node — regenerated each start, \
263                     never persisted. Configure a control-plane key (or a dedicated signer) for \
264                     production."
265                );
266                Arc::new(boatramp_core::cose::LocalSigner::generate(
267                    boatramp_core::cose::TokenAlg::Ed25519,
268                )) as Arc<dyn boatramp_core::cose::Signer>
269            })
270        });
271        if let Some(issuer) = fleet_signer {
272            handlers.set_session_signer(issuer);
273        }
274    }
275    // Enable guest capability minting (`boatramp:handlers/capability`, PLAN-delegable-capabilities)
276    // when the operator posture allows it. A minted capability is verified against the same fleet
277    // signer as the session cookie (wired just above), so this only enables the mint path + the TTL
278    // ceiling; posture-off (or a zero ceiling) ⇒ not offered (a guest `mint` is access-denied).
279    #[cfg(feature = "capability")]
280    if options.posture.allow_guest_mint_capability {
281        handlers.set_capability_minting(options.posture.max_guest_capability_ttl_secs);
282    }
283    // Per-project tenancy/capability posture overrides (Gap 4a): resolve each
284    // `[security.projects.<p>]` override against the fleet base so one serve process can run a
285    // strict-isolation project beside a looser one on a shared, multi-project machine. Empty ⇒
286    // every project uses the node base wired just above. Only these four in-project knobs are
287    // per-project; cross-project isolation stays structural (project = database).
288    #[cfg(feature = "handlers")]
289    {
290        let base = &options.posture;
291        let overrides: std::collections::BTreeMap<
292            String,
293            boatramp_core::security::ResolvedProjectTenancy,
294        > = config
295            .security
296            .as_ref()
297            .map(|s| {
298                s.projects
299                    .iter()
300                    .map(|(project, ovr)| (project.clone(), base.project_tenancy(ovr)))
301                    .collect()
302            })
303            .unwrap_or_default();
304        handlers.set_project_tenancy_overrides(overrides);
305    }
306    // Wire the guest project self-config capability (`boatramp:handlers/admin`) when the
307    // operator posture enables at least one surface. The controller reuses the same in-process
308    // domain-verify / email-profile / secret / site-config subsystems + the real domain probe;
309    // it's project-scoped per grant and rate-limited + audited. Posture-off ⇒ not offered.
310    #[cfg(feature = "admin")]
311    {
312        use boatramp_handlers::AdminSurface;
313        let p = &options.posture;
314        let mut surfaces = std::collections::BTreeSet::new();
315        if p.allow_guest_admin_domains {
316            surfaces.insert(AdminSurface::Domains);
317        }
318        if p.allow_guest_admin_email {
319            surfaces.insert(AdminSurface::Email);
320        }
321        if p.allow_guest_admin_site {
322            surfaces.insert(AdminSurface::Site);
323        }
324        if p.allow_guest_admin_secrets {
325            surfaces.insert(AdminSurface::Secrets);
326        }
327        if !surfaces.is_empty() {
328            let controller = Arc::new(boatramp_server::ServerAdminController::with_server_probe(
329                deploy.clone(),
330                email_profile_store.clone(),
331                secret_store.clone(),
332                p.domain_verify_allow_private,
333            ));
334            handlers.set_admin(controller, surfaces);
335        }
336    }
337    // Leader-gate cron firing (cluster: only the Raft leader fires; single-node: an
338    // always-true gate, equivalent to the unset default). The same gate drives the
339    // reconcile loops below, so all three converge on one leader per fleet. Only the
340    // handler runtime has a scheduler, so this is a no-op without the `handlers` feature.
341    #[cfg(feature = "handlers")]
342    handlers.set_cron_leader_gate(is_leader.clone());
343    // FA-5b2: on a cloud backend, wire the blob-change notification provisioner +
344    // its tier so adding a `blob` trigger provisions (and removing it retracts).
345    #[cfg(feature = "handlers")]
346    if let Some(provider) = watch_provider {
347        handlers.set_watch_provider(provider);
348        handlers.set_provision_tier(provision_tier);
349    }
350    #[cfg(not(feature = "handlers"))]
351    let _ = (watch_provider, provision_tier);
352
353    // Materialize the reserved `default` project so `project ls` / `project show
354    // default` reflect it on a fresh install, not only after a migration. Best
355    // effort: the reader backstop keeps listings correct even if this write can't
356    // land, so a transient failure must never block serving.
357    match deploy.ensure_default_project().await {
358        Ok(true) => tracing::info!("materialized the reserved `default` project record"),
359        Ok(false) => {}
360        Err(e) => tracing::warn!(
361            error = %e,
362            "could not materialize the `default` project record; readers use the synthesized default"
363        ),
364    }
365    // Wire the function-to-function invoke resolver now the deploy store exists,
366    // so a function granted `invoke` can call a sibling in-process (FI).
367    #[cfg(feature = "handlers")]
368    handlers.set_invoker(deploy.clone());
369
370    // Compute reconcile loop. Single-node is always the "leader". Backends are
371    // built from the `[compute]` config + capability detection; a no-op when none
372    // are registered. Detached for the server's life.
373    let (compute_backends, compute_node) = crate::compute::build_compute(
374        config.compute.as_ref(),
375        compute_storage,
376        data_dir,
377        node_id,
378        !allow_shared_kernel,
379        options.daemon_runtime.clone(),
380        worker_exe.as_deref(),
381    )
382    .await;
383    // Adopt the IPs of already-running replicas into each backend's fresh-on-boot
384    // IP pool BEFORE the reconcile loop starts allocating. A backend with a per-node
385    // pool (the native container backend) rebuilds it empty each process start; without
386    // this the boot reconcile could re-hand a live address to a different workload —
387    // the container-IP collision — or move a replica's endpoint on relaunch. Feeds
388    // every persisted replica's `(workload, replica, endpoint-ip)`; each backend keeps
389    // only the IPs in its own subnet (a cheap no-op for docker/cloudflare/VMM).
390    crate::compute::adopt_running_replica_ips(&deploy, &compute_backends).await;
391    // Per-project internal DNS (service discovery): start the resolver on the bridge
392    // gateway so a guest resolves peers by name within its project. On by default;
393    // starts only when the container backend + bridge are up (Linux). Detached for
394    // the node's serving life (pushed into `reconcile` below). Started before the
395    // reconcile loop consumes `compute_backends` — it borrows the registry to check
396    // the container backend is present.
397    let internal_dns =
398        crate::compute::spawn_internal_dns(config.compute.as_ref(), &compute_backends, &deploy);
399    // Activate the compute sql-shim (PLAN-compute-bindings): bind its listener +
400    // build the resolver when a sql provider and `compute.sql_shim_url` are both present.
401    #[cfg(feature = "handlers")]
402    let sql_resolver = boatramp_server::sql_shim::spawn_sql_shim(
403        handlers.sql_backends(),
404        config.compute.as_ref().and_then(|c| c.sql_shim_url.clone()),
405    )
406    .await;
407    #[cfg(not(feature = "handlers"))]
408    let sql_resolver: Option<Arc<dyn boatramp_core::compute::ComputeBindingResolver>> = None;
409
410    // Managed compute-backed SQL (PLAN-managed-compute-sql P2-b): if the handler
411    // `sql` config declares any managed database, inject its `POSTGRES_*`/`MYSQL_*`
412    // server-init env into the DB workload at launch from the sealed credential.
413    // Reaching here with a managed DB implies an envelope (build_handler_runtime
414    // fails closed otherwise), so the credential store always has one to seal with.
415    // Keep a clone of the secrets envelope for the operator-SQL capability below
416    // (the managed_db_resolver match moves the original).
417    #[cfg(any(feature = "sql-postgres", feature = "sql-mysql"))]
418    let operator_envelope = secrets_envelope.clone();
419    // …and a second clone for the tenant-deprovision capability (drops a deleted
420    // tenant's managed DB/role/credential on project/site delete). It needs a real
421    // envelope to seal/unseal + delete per-tenant credentials, so it is wired only
422    // when one is present (same fail-closed gating as the managed-DB paths).
423    #[cfg(any(feature = "sql-postgres", feature = "sql-mysql"))]
424    let deprovision_envelope = secrets_envelope.clone();
425    // …and a third clone for the soft-delete tombstone reaper (the leader-gated task
426    // that hard-drops a Shared-Postgres tenant once its grace window elapses). It, too,
427    // needs a real envelope to unseal the superuser credential + delete the per-tenant
428    // one on hard-drop.
429    #[cfg(any(feature = "sql-postgres", feature = "sql-mysql"))]
430    let reaper_envelope = secrets_envelope.clone();
431    #[cfg(any(feature = "sql-postgres", feature = "sql-mysql"))]
432    let managed_db_resolver: Option<Arc<dyn boatramp_core::compute::ManagedDbEnvResolver>> = match (
433        config
434            .handlers
435            .as_ref()
436            .and_then(|h| h.bindings.sql.as_ref()),
437        secrets_envelope,
438    ) {
439        (Some(sql), Some(envelope)) if !sql.databases.is_empty() => {
440            let creds = crate::managed_sql::ManagedSqlCredentials::new(kv.clone(), envelope);
441            let privilege = config
442                .compute
443                .as_ref()
444                .map(|c| c.managed_db_privilege)
445                .unwrap_or_default();
446            let env =
447                crate::managed_sql::ManagedDbEnv::from_config(&sql.databases, creds, privilege);
448            (!env.is_empty()).then(|| Arc::new(env) as Arc<_>)
449        }
450        _ => None,
451    };
452    #[cfg(not(any(feature = "sql-postgres", feature = "sql-mysql")))]
453    let managed_db_resolver: Option<Arc<dyn boatramp_core::compute::ManagedDbEnvResolver>> = None;
454
455    // Turnkey managed DB: auto-register the compute workload(s) backing each managed
456    // co-located database that has none yet, so declaring the `databases` binding is
457    // enough to boot the DB (no separate `compute set` / apply). Tenant-aware — a
458    // `Shared` binding registers its one shared server; a `Single` binding registers
459    // nothing at boot (its per-tenant `<compute>-<ident>` is created durably by the lazy
460    // resolve on first `sql` use and relaunched by the reconcile, so a project that never
461    // uses `sql` — e.g. a static-only site — never gets a spurious DB). Non-clobbering +
462    // idempotent; runs before the reconcile loop so its first tick can launch what it
463    // registered.
464    #[cfg(any(feature = "sql-postgres", feature = "sql-mysql"))]
465    if let Some(sql) = config
466        .handlers
467        .as_ref()
468        .and_then(|h| h.bindings.sql.as_ref())
469        .filter(|sql| !sql.databases.is_empty())
470    {
471        crate::managed_sql::auto_register_managed_db_workloads(&deploy, &sql.databases).await;
472    }
473
474    // Operator SQL capability (managed-DB migrations/queries via the sealed
475    // credential, resolved server-side) — backs `POST /api/sql/{db}/{exec,query}`.
476    #[cfg(any(feature = "sql-postgres", feature = "sql-mysql"))]
477    let operator_sql: Option<Arc<dyn boatramp_core::sql::OperatorSql>> = config
478        .handlers
479        .as_ref()
480        .and_then(|h| h.bindings.sql.as_ref())
481        .filter(|sql| !sql.databases.is_empty())
482        .map(|sql| {
483            Arc::new(crate::managed_sql::NodeOperatorSql::new(
484                sql.databases.clone(),
485                kv.clone(),
486                operator_envelope,
487                deploy.clone(),
488            )) as Arc<_>
489        });
490    #[cfg(not(any(feature = "sql-postgres", feature = "sql-mysql")))]
491    let operator_sql: Option<Arc<dyn boatramp_core::sql::OperatorSql>> = None;
492
493    // Tenant-deprovision capability (drop a deleted tenant's managed DB/role/sealed
494    // credential on project/site delete). Wired only when a compute-backed managed
495    // database + a secrets envelope are both present — same gating as operator_sql,
496    // plus the envelope requirement (it must seal/unseal per-tenant credentials).
497    // The soft-delete grace window for a Shared-Postgres managed tenant
498    // (`handlers.bindings.sql.deprovision_grace_secs`, env-settable). Default 7 days;
499    // `0` disables the soft path (immediate hard drop). Threaded to the deprovisioner
500    // (which soft-deletes) and implicitly honored by the reaper (which only ever finds
501    // tombstones a >0 grace produced).
502    #[cfg(any(feature = "sql-postgres", feature = "sql-mysql"))]
503    let deprovision_grace_secs = config
504        .handlers
505        .as_ref()
506        .and_then(|h| h.bindings.sql.as_ref())
507        .and_then(|sql| sql.deprovision_grace_secs)
508        .unwrap_or(crate::tenant_sql::DEFAULT_DEPROVISION_GRACE_SECS);
509    #[cfg(any(feature = "sql-postgres", feature = "sql-mysql"))]
510    let tenant_deprovisioner: Option<Arc<dyn boatramp_core::sql::TenantDeprovisioner>> = config
511        .handlers
512        .as_ref()
513        .and_then(|h| h.bindings.sql.as_ref())
514        .filter(|sql| !sql.databases.is_empty())
515        .zip(deprovision_envelope)
516        .map(|(sql, envelope)| {
517            Arc::new(crate::tenant_sql::NodeTenantDeprovisioner::new(
518                deploy.clone(),
519                kv.clone(),
520                envelope,
521                sql.databases.clone(),
522                deprovision_grace_secs,
523            )) as Arc<_>
524        });
525    #[cfg(not(any(feature = "sql-postgres", feature = "sql-mysql")))]
526    let tenant_deprovisioner: Option<Arc<dyn boatramp_core::sql::TenantDeprovisioner>> = None;
527
528    // Operator compute-exec capability (run a command inside a running workload) —
529    // backs `POST /api/compute/{name}/exec`, gated by the `allow_compute_exec`
530    // posture. Clone the backend registry before the reconcile loop consumes it.
531    let compute_exec: Option<Arc<dyn boatramp_core::compute::ComputeExec>> = Some(Arc::new(
532        crate::compute::NodeComputeExec::new(compute_backends.clone(), deploy.clone()),
533    ) as Arc<_>);
534
535    // Operator volume-reclamation capability (list + remove persistent volumes) —
536    // backs `GET /api/compute/volumes` + `DELETE /api/compute/volumes/{name}`.
537    // Same admin-scoped `/api/compute/*` gate; clone the registry before the
538    // reconcile loop consumes the original below.
539    let compute_volumes: Option<Arc<dyn boatramp_core::compute::ComputeVolumes>> = Some(Arc::new(
540        crate::compute::NodeComputeVolumes::new(compute_backends.clone(), deploy.clone()),
541    )
542        as Arc<_>);
543
544    // Operator reconcile-plane control capability (restart a replica) — backs
545    // `POST /api/compute/maintenance/restart` (admin-scoped). Clone the registry
546    // before the reconcile loop consumes the original below.
547    let compute_control: Option<Arc<dyn boatramp_core::compute::ComputeControl>> = Some(Arc::new(
548        crate::compute::NodeComputeControl::new(compute_backends.clone(), deploy.clone()),
549    )
550        as Arc<_>);
551
552    let compute_reconcile = boatramp_server::spawn_compute_reconcile(
553        deploy.clone(),
554        compute_backends,
555        vec![compute_node],
556        boatramp_core::compute::BackendPolicy::from_shared_kernel_allowed(allow_shared_kernel),
557        is_leader.clone(),
558        compute_reconcile_tick(),
559        COMPUTE_IDLE_TIMEOUT,
560        sql_resolver,
561        managed_db_resolver,
562    );
563
564    // Tenant tombstone reaper: leader-gated hard-drop of soft-deleted Shared-Postgres
565    // tenants past their grace window (safe deprovision — see `tenant_sql`). Wired only
566    // when a compute-backed managed database + a secrets envelope are both present
567    // (same gating as the deprovisioner); each tombstone carries its own server +
568    // superuser, so the reaper needs no per-binding config. A `0` grace never writes a
569    // tombstone, so the sweep is simply inert then.
570    #[cfg(any(feature = "sql-postgres", feature = "sql-mysql"))]
571    let tombstone_reaper: Option<tokio::task::JoinHandle<()>> = config
572        .handlers
573        .as_ref()
574        .and_then(|h| h.bindings.sql.as_ref())
575        .filter(|sql| !sql.databases.is_empty())
576        .zip(reaper_envelope)
577        .map(|(_sql, envelope)| {
578            crate::tenant_sql::spawn_tenant_tombstone_reaper(
579                deploy.clone(),
580                kv.clone(),
581                envelope,
582                is_leader.clone(),
583                crate::tenant_sql::TOMBSTONE_REAPER_TICK,
584            )
585        });
586    #[cfg(not(any(feature = "sql-postgres", feature = "sql-mysql")))]
587    let tombstone_reaper: Option<tokio::task::JoinHandle<()>> = None;
588
589    // Domain-verify auto-complete: periodically re-check every site's pending
590    // ownership challenges and attach any that now pass — a published token (e.g.
591    // via `domain add --provider`) converges without a manual `domain verify`.
592    let dv_reconcile = boatramp_server::spawn_domain_verify_reconcile(
593        deploy.clone(),
594        domain_verify_allow_private,
595        is_leader,
596        DOMAIN_VERIFY_RECONCILE_TICK,
597    );
598
599    // Wire the operator capabilities onto the options the router is built from.
600    let mut options = options;
601    options.operator_sql = operator_sql;
602    options.tenant_deprovisioner = tenant_deprovisioner;
603    options.compute_exec = compute_exec;
604    options.compute_volumes = compute_volumes;
605    options.compute_control = compute_control;
606    // The internal secret store backs the admin secrets API (set/list/delete). Not
607    // handlers-gated — it must be reachable even on a lean node.
608    options.secret_store = secret_store;
609    // The email-profile store backs the admin API (`/api/email/profiles`); like the
610    // secret store it is not handlers-gated, so it works on a lean node.
611    options.email_profile_store = email_profile_store;
612
613    // The detached reconcile loops: the always-present compute + domain-verify ones,
614    // plus the optional tenant-tombstone reaper (only when a managed DB is configured).
615    let mut reconcile = vec![compute_reconcile, dv_reconcile];
616    if let Some(reaper) = tombstone_reaper {
617        reconcile.push(reaper);
618    }
619    if let Some(dns) = internal_dns {
620        reconcile.push(dns);
621    }
622
623    Ok(RunningNode {
624        deploy,
625        handlers,
626        auth,
627        options,
628        reconcile,
629    })
630}
631
632/// Build the `[secrets]` envelope (secrets-at-rest wrapping) from `boatramp.cfg`'s
633/// `[secrets]` section: `local` (a machine-local AES-256-GCM KEK) or `vault` (Vault
634/// Transit). `None`/empty ⇒ no wrapping. The Vault token is read from the
635/// environment (`token_env`), never a file. This seals a managed SQL credential at
636/// rest; a managed database fails closed without it.
637fn build_secrets_envelope(
638    secrets: Option<&crate::config::SecretsConfig>,
639    data_dir: &Path,
640) -> Result<Option<Arc<dyn boatramp_core::envelope::KeyEnvelope>>> {
641    use boatramp_server::envelope::{build_envelope, EnvelopeSpec};
642    let Some(cfg) = secrets else {
643        return Ok(None);
644    };
645    let spec = match cfg.envelope.as_str() {
646        "" => EnvelopeSpec::None,
647        "local" => EnvelopeSpec::Local {
648            kek_file: cfg
649                .kek_file
650                .clone()
651                .unwrap_or_else(|| data_dir.join("secrets/kek")),
652        },
653        "vault" => {
654            let v = cfg.vault.as_ref().ok_or_else(|| {
655                Error::Envelope(
656                    "secrets.envelope = \"vault\" needs a [secrets.vault] section".into(),
657                )
658            })?;
659            let token = std::env::var(&v.token_env).map_err(|_| {
660                Error::Envelope(format!("Vault token env `{}` is not set", v.token_env))
661            })?;
662            EnvelopeSpec::Vault {
663                addr: v.addr.clone(),
664                key: v.key.clone(),
665                token,
666            }
667        }
668        other => {
669            return Err(Error::Envelope(format!(
670                "unknown secrets.envelope {other:?} (want \"local\" or \"vault\")"
671            )))
672        }
673    };
674    build_envelope(spec).map_err(|e| Error::Envelope(e.to_string()))
675}
676
677#[cfg(all(test, feature = "fs"))]
678mod tests {
679    use super::*;
680    use boatramp_core::kv::MemoryKv;
681    use boatramp_core::security::SecurityProfile;
682
683    /// The dev/loopback ephemeral fleet-signer auto-provision is gated STRICTLY to a loopback bind
684    /// (or an in-process embedder with no bind): a public / wildcard / private-network bind must
685    /// NOT silently provision an ephemeral signing key (it would invalidate live capabilities on a
686    /// restart — such a node must supply a persistent key). This is the security-critical boundary.
687    #[cfg(feature = "handlers")]
688    #[test]
689    fn ephemeral_fleet_signer_auto_provisions_only_on_loopback_or_in_process() {
690        use std::net::SocketAddr;
691        let sa = |s: &str| s.parse::<SocketAddr>().unwrap();
692        // In-process (no listener) and loopback → auto-provision the dev fleet signer.
693        assert!(should_autoprovision_fleet_signer(None));
694        assert!(should_autoprovision_fleet_signer(Some(sa(
695            "127.0.0.1:8080"
696        ))));
697        assert!(should_autoprovision_fleet_signer(Some(sa("[::1]:8080"))));
698        // Off-host-reachable binds MUST NOT auto-provision an ephemeral key: a public IP, a
699        // private-network IP, and a wildcard bind (`0.0.0.0`/`::`, reachable off-host).
700        assert!(!should_autoprovision_fleet_signer(Some(sa(
701            "203.0.113.5:8080"
702        ))));
703        assert!(!should_autoprovision_fleet_signer(Some(sa(
704            "10.0.0.4:8080"
705        ))));
706        assert!(!should_autoprovision_fleet_signer(Some(sa("0.0.0.0:8080"))));
707        assert!(!should_autoprovision_fleet_signer(Some(sa("[::]:8080"))));
708    }
709
710    /// The headline in-process fidelity check (PLAN-node-library N2b.3): `assemble`
711    /// over a temp `FsStorage` + `MemoryKv` produces a `RunningNode` whose deploy
712    /// store is live (the reserved `default` project was materialized during
713    /// assembly) and whose router — the exact one `boatramp serve` builds — answers
714    /// `/healthz`. No listener is bound: the request is driven through the router
715    /// via `tower::oneshot`, so the whole assembly runs in-process.
716    #[tokio::test]
717    async fn assemble_produces_a_serving_node_over_a_temp_store() {
718        use axum::body::Body;
719        use axum::http::{Request, StatusCode};
720        use tower::ServiceExt;
721
722        let tmp = tempfile::tempdir().unwrap();
723        let storage: Arc<dyn Storage> = Arc::new(boatramp_storage::FsStorage::new(tmp.path()));
724        let kv: Arc<dyn KvStore> = Arc::new(MemoryKv::new());
725        let config = ServerConfig::default();
726        let options = boatramp_server::ServerOptions {
727            // The strict `multi-tenant` posture, as an unconfigured `serve` resolves.
728            posture: SecurityProfile::MultiTenant.preset(),
729            ..Default::default()
730        };
731
732        let node = assemble(NodeInput {
733            config: &config,
734            data_dir: tmp.path(),
735            storage,
736            kv,
737            auth: boatramp_server::Auth::disabled(),
738            options,
739            serve_addr: None,
740            watch_provider: None,
741            provision_tier: boatramp_core::blob_notify::ProvisionTier::default(),
742            messaging: None,
743            is_leader: Arc::new(|| true),
744            node_id: 0,
745            worker_exe: None,
746        })
747        .await
748        .expect("assemble a node over a temp store");
749
750        // The deploy store is live: `assemble` already materialized the reserved
751        // `default` project, so a second ensure reports "already present" (`false`).
752        assert!(
753            !node
754                .deploy
755                .ensure_default_project()
756                .await
757                .expect("read the default project"),
758            "assemble should have materialized the default project"
759        );
760
761        // The assembled router (the same wiring `serve` binds) answers /healthz.
762        let router =
763            boatramp_server::router_with(node.deploy, node.auth, node.handlers, node.options);
764        let response = router
765            .oneshot(
766                Request::builder()
767                    .uri("/healthz")
768                    .body(Body::empty())
769                    .unwrap(),
770            )
771            .await
772            .expect("route /healthz");
773        assert_eq!(response.status(), StatusCode::OK);
774    }
775}