Skip to main content

ts_runtime/
lib.rs

1#![doc = include_str!("../README.md")]
2
3extern crate ts_netstack_smoltcp as netstack;
4
5use core::time::Duration;
6use std::sync::Arc;
7
8use kameo::{
9    actor::{ActorRef, Spawn, WeakActorRef},
10    mailbox::Signal,
11};
12use netstack::netcore::Channel;
13use tokio::sync::watch;
14
15use crate::{
16    control_runner::ControlRunner, dataplane::DataplaneActor, direct::DirectManager,
17    forwarder_actor::ForwarderActor, multiderp::Multiderp, netstack_actor::NetstackActor,
18};
19
20/// Pcap stream framer for debug packet capture (`CapturePcap`).
21pub mod capture;
22/// Control runner.
23pub mod control_runner;
24mod dataplane;
25mod derp_latency;
26/// Device connection-state tracking ([`DeviceState`]) and typed registration outcome
27/// ([`RegistrationError`]).
28pub mod device_state;
29mod direct;
30/// DNS over TCP for the MagicDNS service IP: the transport a stub resolver retries on when a UDP
31/// answer comes back truncated. Only the TUN application data path serves it today, so it is
32/// compiled with `tun`.
33#[cfg(feature = "tun")]
34mod dns_over_tcp;
35mod env;
36mod error;
37/// Exit-node suggestion algorithm (the classic DERP-region-latency path, Go
38/// `suggestExitNodeUsingDERP`) and its result/error types.
39pub mod exit_node_suggest;
40/// Fallback TCP handler registry (`tsnet.Server.RegisterFallbackTCPHandler` parity).
41pub mod fallback_tcp;
42mod forwarder_actor;
43/// Client-side Funnel ingress termination (`tsnet`'s `ListenFunnel` data path).
44pub mod funnel;
45/// Unified IPN notification bus ([`Notify`] / [`watch_ipn_bus`](Runtime::watch_ipn_bus)), mirroring
46/// Go `ipn` `LocalBackend.WatchNotifications` / the `WatchIPNBus` LocalAPI.
47pub mod ipn_bus;
48mod magic_dns;
49pub use magic_dns::DnsQueryResult;
50mod multiderp;
51/// OS network-link-change supervisor (opt-in `network-monitor` feature): re-binds + re-probes
52/// connectivity on a link change. Compiled out entirely when the feature is off.
53#[cfg(feature = "network-monitor")]
54mod netmon;
55mod netstack_actor;
56mod packetfilter;
57pub mod peer_tracker;
58mod peerapi;
59mod peerapi_doh;
60mod route_updater;
61/// Stored Serve config + accept-loop runtime (`tsnet`'s `Get/SetServeConfig` + serving runtime).
62pub mod serve;
63mod src_filter;
64/// Netmap status snapshot, WhoIs, and watcher types.
65pub mod status;
66/// Taildrop peer-to-peer file transfer store.
67pub mod taildrop;
68pub mod taildrop_send;
69/// Tailnet-Lock (TKA) chain-sync orchestration: bootstrap + offer/send driver (the runtime layer
70/// that bridges the `ts_control` sync RPCs and the `ts_tka` chain logic).
71mod tka_sync;
72#[cfg(feature = "tun")]
73mod tun_actor;
74
75pub use device_state::{DeviceState, RegistrationError};
76pub(crate) use env::Env;
77pub use error::{Error, ErrorKind};
78pub use exit_node_suggest::{ExitNodeSuggestion, SuggestExitNodeError};
79pub use ipn_bus::{IpnBusWatcher, Notify, NotifyWatchOpt};
80pub use status::{FileTarget, NetcheckReport, RegionLatency, Status, StatusNode, WhoIs};
81pub use tka_sync::TkaLogEntry;
82pub use ts_dataplane::{CaptureHook, CapturePath};
83
84use crate::peer_tracker::PeerTracker;
85
86/// The runtime for a tailscale device.
87pub struct Runtime {
88    /// Reference to the control actor.
89    pub control: ActorRef<ControlRunner>,
90    dataplane: ActorRef<DataplaneActor>,
91    /// Reference to the direct (disco/UDP underlay) manager, retained so [`Runtime::rebind`] can
92    /// ask it to re-bind the underlay socket on a network/link change.
93    direct: ActorRef<DirectManager>,
94    /// Reference to the application netstack actor. `None` in TUN transport mode, where there is
95    /// no userspace application netstack (the application data path is a real kernel TUN device).
96    netstack: Option<WeakActorRef<NetstackActor>>,
97    /// Reference to the peer tracker for peer lookups.
98    pub peer_tracker: WeakActorRef<PeerTracker>,
99    /// Fallback TCP handler registry, bound to the application netstack. `None` in TUN transport
100    /// mode (no application netstack exists to attach it to).
101    fallback_tcp: Option<fallback_tcp::FallbackTcpManager>,
102    /// Reference to the MagicDNS responder, retained so [`Runtime::query_dns`] can run a query
103    /// through the live `100.100.100.100` forward path. `None` in TUN transport mode (no
104    /// `MagicDnsActor` is spawned there — TUN-mode MagicDNS is an in-packet intercept, not an actor).
105    magic_dns: Option<ActorRef<magic_dns::MagicDnsActor>>,
106    /// Reference to the forwarder actor, retained so [`Runtime::set_advertise_routes`] can push a
107    /// new accept/dial route table onto the running forwarder (the local half of advertising
108    /// routes). Without this the strong ref would drop after the startup `GetChannel` and the
109    /// forwarder would be reachable only via the message bus.
110    forwarder: ActorRef<ForwarderActor>,
111    /// Reference to the multiderp manager, retained so [`Runtime::status`] can resolve each
112    /// relayed peer's DERP region id to its region **code** (`ipnstate.PeerStatus.Relay`). Without
113    /// this the strong ref would drop after startup (it is cloned into the direct manager + route
114    /// updater) and the region-code map would be unreachable.
115    multiderp: ActorRef<Multiderp>,
116    env: Env,
117    shutdown: watch::Sender<bool>,
118    /// Sender side of the exit-node selector `watch` cell. Held privately here (not on the cloned
119    /// `Env`, which keeps only the read side) so that only `Runtime::set_exit_node` can mutate the
120    /// selection; the route updater and source filter re-read it via [`Env::exit_node`].
121    exit_node_tx: watch::Sender<Option<ts_control::ExitNodeSelector>>,
122    /// Sender side of the accept-routes preference `watch` cell. Held privately here (same rationale
123    /// as [`exit_node_tx`](Self::exit_node_tx)) so that only [`Runtime::set_accept_routes`] can
124    /// toggle it; the route updater and source filter re-read it via [`Env::accept_routes`].
125    accept_routes_tx: watch::Sender<bool>,
126    /// Sender side of the accept-dns preference `watch` cell. Held privately here (same rationale as
127    /// [`accept_routes_tx`](Self::accept_routes_tx)) so that only [`Runtime::set_accept_dns`] can
128    /// toggle it; the MagicDNS responder re-reads it via [`Env::accept_dns`] when it rebuilds its
129    /// view (the republish that `set_accept_dns` triggers).
130    accept_dns_tx: watch::Sender<bool>,
131    /// Receiver mirroring the *active* (resolved + fail-closed) exit node's stable id, fed by the
132    /// route updater. Read by [`Runtime::status`] / [`Runtime::active_exit_node`] to report which
133    /// exit node traffic is actually egressing through (vs. the merely-configured selector).
134    active_exit_rx: watch::Receiver<Option<ts_control::StableNodeId>>,
135    /// Receiver for the device connection-state cell, fed by the control runner. Read by
136    /// [`Runtime::watch_state`] and [`Runtime::wait_until_running`].
137    state_rx: watch::Receiver<DeviceState>,
138    /// Receiver for the retained peer-capability grants, fed by the packet-filter updater. Read by
139    /// [`Runtime::whois`] to resolve the flow-scoped cap map (Go `apitype.WhoIsResponse.CapMap`).
140    cap_grants_rx: watch::Receiver<packetfilter::CapGrants>,
141    /// Live advertised-route preference (explicit subnet routes + the exit-node flag), seeded from
142    /// the startup config. [`Runtime::set_advertise_routes`] and [`set_advertise_exit_node`] each
143    /// mutate their part under this lock then re-send the composed set, so the two compose.
144    advertise: std::sync::Mutex<AdvertiseState>,
145    /// The most recent exit-node suggestion's stable id (Go `LocalBackend.lastSuggestedExitNode`),
146    /// remembered across calls so [`Runtime::suggest_exit_node`] can apply *stickiness* — if the
147    /// previously-suggested node is still an eligible candidate in the winning region it is kept, to
148    /// avoid the suggestion flapping between equally-good ties on each call. `None` until the first
149    /// suggestion. Held behind a `Mutex` (same rationale as [`advertise`](Self::advertise): a
150    /// cheap, infrequently-touched bit of mutable runtime state, not worth an actor round-trip).
151    prev_suggestion: std::sync::Mutex<Option<ts_control::StableNodeId>>,
152    /// Background task that periodically reaps abandoned taildrop `.partial` files (Go
153    /// `feature/taildrop/delete.go` `fileDeleter`). `None` when no taildrop store is configured.
154    /// Aborted on [`Drop`] so it cannot outlive the runtime (the `reauth_bridge` pattern).
155    taildrop_reaper: Option<tokio::task::JoinHandle<()>>,
156    /// The opt-in OS network-link-change supervisor (`network-monitor` feature + the
157    /// `Config::network_monitor` flag). Retained so the actor — and thus the
158    /// `LinkMonitorHandle` it holds, which aborts the monitor's watcher task on drop — lives for the
159    /// device's life and is torn down when the runtime drops. `None` when the flag is off. Only
160    /// present when built with the `network-monitor` feature.
161    #[cfg(feature = "network-monitor")]
162    #[allow(dead_code)]
163    netmon_supervisor: Option<ActorRef<netmon::NetmonSupervisor>>,
164}
165
166impl Runtime {
167    /// Spawn a new runtime with the given parameters for connecting to a tailnet.
168    pub async fn spawn(
169        config: ts_control::Config,
170        auth_key: Option<String>,
171        keys: ts_keys::NodeState,
172    ) -> Result<Self, Error> {
173        let (shutdown_tx, shutdown_rx) = watch::channel(false);
174
175        // The exit-node selector, accept-routes, and accept-dns preferences are live `watch` cells so
176        // `Device::set_exit_node` / `set_accept_routes` / `set_accept_dns` can change them at runtime.
177        // `new_with_runtime_txs` returns each `Sender` (mutation capability) grouped in `pref_cells`
178        // so they are retained privately on the `Runtime`, while only the `Receiver`s (the readers'
179        // contract) live on the cloned `Env`. Initial values come from `ForwarderConfig`.
180        let (env, pref_cells) = Env::new_with_runtime_txs(
181            keys,
182            shutdown_rx,
183            env::ForwarderConfig::from_control_config(&config),
184        );
185
186        // Both userspace netstacks (application + forwarder) share one netstack config. Honor the
187        // per-deployment TCP buffer knob, and set the netstack MTU to the overlay/tunnel MTU so the
188        // advertised MSS fits the tunnel — leaving it at the netstack's generic 1500 default would
189        // emit over-1280 segments into the WireGuard path. The MTU comes from a `Tun` transport's
190        // `TunConfig` when one is configured (so the netstack and the TUN agree), else the 1280
191        // overlay default (the `Netstack` userspace mode — the common case — has no per-OS MTU knob,
192        // but the tailnet overlay MTU is still 1280).
193        let configured_mtu = match &config.transport_mode {
194            ts_control::TransportMode::Tun(tun_cfg) => tun_cfg.mtu,
195            ts_control::TransportMode::Netstack => None,
196        };
197        let netstack_config = netstack_config_from(config.tcp_buffer_size, configured_mtu);
198
199        let dataplane = DataplaneActor::spawn(env.clone());
200
201        let (netstack_id, netstack_up, netstack_down) =
202            dataplane.ask(dataplane::NewOverlayTransport).await?;
203
204        // A second overlay transport feeds the dedicated any-IP forwarder netstack. Inbound packets
205        // for advertised subnet routes / the exit-node default route are routed here (see
206        // `route_updater`), keeping forwarded flows off the application netstack.
207        let (forwarder_id, forwarder_up, forwarder_down) =
208            dataplane.ask(dataplane::NewOverlayTransport).await?;
209
210        // The selected DERP home region (Go `report.PreferredDERP`): the control runner is the sole
211        // writer (it applies the netcheck `bestRecent` + hysteresis smoothing), and `Multiderp`
212        // reads it to drive the local home relay — so the relay follows the SAME smoothed home the
213        // runner advertises to control, instead of picking it from the raw per-cycle latency minimum
214        // (which flapped on jitter and could disagree with the advertised home). Created here so it
215        // outlives both actors; `None` until the first home is chosen.
216        let (home_region_tx, home_region_rx) = watch::channel::<Option<ts_derp::RegionId>>(None);
217
218        let multiderp = Multiderp::spawn((env.clone(), dataplane.clone(), home_region_rx));
219
220        // Spawn the direct (disco) underlay manager before the route updater. Its `on_start`
221        // binds the UDP socket and registers its transport synchronously, so by the time the
222        // route updater asks it for the direct transport id it is guaranteed to be available.
223        let direct = DirectManager::spawn((env.clone(), dataplane.clone(), multiderp.clone()));
224
225        // Spawn the forwarder before the route updater. Its `on_start` builds the forwarder
226        // netstack, enables any-IP acceptance, and starts the per-port accept loops synchronously,
227        // so by the time the route updater begins delivering advertised prefixes to
228        // `forwarder_id` the netstack is already draining its transport.
229        let forwarder = ForwarderActor::spawn((
230            env.clone(),
231            netstack_config.clone(),
232            forwarder_up,
233            forwarder_down,
234        ));
235        // Force `on_start` to finish (any-IP enabled, accept loops live) before the route updater
236        // can route the first inbound flow to `forwarder_id`: an `ask` blocks until the actor has
237        // started.
238        //
239        // The forwarder netstack's overlay `Channel` is reused by the TUN application path for
240        // recursive / exit-node-DoH MagicDNS forwarding (TUN mode has no application netstack of its
241        // own, but the forwarder netstack runs in both modes and egresses over the overlay — the
242        // anti-leak property `forward_query`/`forward_doh` require). Only the `tun` Tun arm consumes
243        // it, so it is unused when the `tun` feature is off — allow that without warn-as-error.
244        #[cfg_attr(not(feature = "tun"), allow(unused_variables))]
245        let (forwarder_channel,) = forwarder.ask(forwarder_actor::GetChannel).await?;
246
247        // The route updater is the single authoritative resolver of the active (resolved,
248        // fail-closed) exit node; it publishes the resolved stable id into this watch cell so
249        // `Runtime::status` can report which exit is actually engaged (not just configured).
250        let (active_exit_tx, active_exit_rx) = watch::channel(None);
251        route_updater::RouteUpdater::spawn((
252            multiderp.clone(),
253            direct.clone(),
254            env.clone(),
255            netstack_id,
256            forwarder_id,
257            active_exit_tx,
258        ));
259        // The packet-filter updater also surfaces the retained cap-grants (for flow-scoped WhoIs)
260        // through a `watch` cell whose receiver the `Runtime` holds — the bus has no replay, so a
261        // `watch` is how `Runtime::whois` reads the current grants on demand.
262        let (cap_grants_tx, cap_grants_rx) = watch::channel(Default::default());
263        // The live compiled filter for the peerAPI DoH source gate. Created here — before either
264        // actor spawns — so the updater (sole writer) and the MagicDNS responder (reader, which
265        // hands the receiver to its peerAPI server task) share one cell no matter which `on_start`
266        // runs first. The gate is fail-closed, so a filter that never reaches it means refusing
267        // peers control's ACL admits, and the bus is not a dependable way to carry it (no replay,
268        // and best-effort delivery drops it on a full mailbox — see `packetfilter::LiveFilterRx`,
269        // which also names the one hop this cell does *not* cover: control -> the updater).
270        let (live_filter_tx, live_filter_rx) = watch::channel(None);
271        packetfilter::PacketfilterUpdater::spawn((env.clone(), cap_grants_tx, live_filter_tx));
272        src_filter::SourceFilterUpdater::spawn(env.clone());
273        // TKA enforcement-authority cell (Go `tkaFilterNetmapLocked`). Created here — before both
274        // actors spawn — so the control runner (sole writer, `Sender`) and the peer tracker (reader,
275        // `Receiver`) share one `watch` cell. A `watch` (not a bus message) is the transport for this
276        // security-critical state: last-write-wins, never dropped under load, ordered by the control
277        // runner's writes, so a disable (`None`) can never be reordered behind or dropped before a
278        // stale `Some`. `None` = no lock synced / disabled (admit all).
279        let (tka_authority_tx, tka_authority_rx) =
280            watch::channel::<Option<std::sync::Arc<ts_tka::Authority>>>(None);
281        let peer_tracker = PeerTracker::spawn((env.clone(), tka_authority_rx)).downgrade();
282
283        // Select the application data path from the transport mode. The forwarder/egress path
284        // above is UNCHANGED in both modes — TUN mode only swaps the application data path, never
285        // the forwarder. `config` is moved into `ControlRunner::spawn` below, so branch on a
286        // borrow and clone the small `TunConfig` where needed before the move.
287        //
288        // - Netstack (the default, and the only reachable arm when the `tun` feature is off):
289        //   spawn the application netstack + MagicDNS responder + fallback-TCP registry, all on
290        //   the `netstack_up`/`netstack_down` overlay seam.
291        // - Tun: spawn `TunActor` on that same overlay seam instead; no application netstack and
292        //   no MagicDNS responder exist, and `netstack`/`fallback_tcp` are `None`.
293        // - Tun requested but built without the `tun` feature: hard-error (a config/build
294        //   mismatch knowable at spawn time). NEVER silently fall back to netstack.
295        let (netstack, fallback_tcp, magic_dns) = match &config.transport_mode {
296            ts_control::TransportMode::Netstack => {
297                let netstack = NetstackActor::spawn((
298                    env.clone(),
299                    netstack_config,
300                    netstack_up,
301                    netstack_down,
302                ));
303
304                // Fetch the netstack channel while we still hold the strong ActorRef, then spawn
305                // the MagicDNS responder on it. Its ActorRef is retained on `Runtime` so
306                // `query_dns` can drive the live forward path; the serve loop itself is owned by the
307                // actor's internal JoinSet.
308                let (channel,) = netstack.ask(netstack_actor::GetChannel).await?;
309                // The fallback-TCP registry attaches to the application netstack — the same one
310                // that carries the embedder's explicit `Device::tcp_listen` sockets — so a
311                // fallback handler sees exactly the inbound flows no explicit listener matched.
312                let fallback_tcp = fallback_tcp::FallbackTcpManager::new(channel.clone());
313                let magic_dns =
314                    magic_dns::MagicDnsActor::spawn((env.clone(), channel, live_filter_rx));
315
316                (
317                    Some(netstack.downgrade()),
318                    Some(fallback_tcp),
319                    Some(magic_dns),
320                )
321            }
322
323            #[cfg(feature = "tun")]
324            ts_control::TransportMode::Tun(tun_cfg) => {
325                // Reuse the same `netstack_up`/`netstack_down` overlay-transport pair that would
326                // have fed the netstack — it is just the application-side overlay seam (the name
327                // is historical). No NetstackActor / MagicDnsActor is spawned.
328                tun_actor::TunActor::spawn((
329                    env.clone(),
330                    tun_cfg.clone(),
331                    netstack_up,
332                    netstack_down,
333                    // Reuse the forwarder netstack's overlay `Channel` for recursive / exit-node-DoH
334                    // MagicDNS forwarding in the TUN datapath (TUN mode has no application netstack
335                    // Channel of its own). Egresses over the overlay — anti-leak preserved.
336                    //
337                    // Host-route gating (subnet routes gated on `--accept-routes`, the host `/0` from
338                    // the selected exit peer) is no longer snapshotted here: `TunActor` reads the live
339                    // `Env` cells (`accept_routes`/`exit_node`) on every host-FIB apply — both the
340                    // device-build path and the `PeerState` re-apply path — and folds the union of
341                    // peers' AllowedIPs (see `tun_actor::host_routes_from_node`). A runtime
342                    // `set_accept_routes` / `set_exit_node` toggle re-broadcasts the peer state, so the
343                    // host routing table is re-steered live (no device rebuild needed).
344                    forwarder_channel.clone(),
345                ));
346
347                (None, None, None)
348            }
349
350            #[cfg(not(feature = "tun"))]
351            ts_control::TransportMode::Tun(_) => {
352                return Err(Error {
353                    kind: ErrorKind::TunUnavailable,
354                    target_actor: None,
355                    message_ty: None,
356                });
357            }
358        };
359
360        // Device connection-state cell. Created here (not inside the actor) so the control runner's
361        // `on_start` can publish `Failed`/`NeedsLogin` and still return `Err` without the sender
362        // being tied to a `Self` that never gets constructed on a hard registration failure.
363        let (state_tx, state_rx) = watch::channel(DeviceState::Connecting);
364
365        // Seed the live advertised-route preference from the startup config before `config` moves
366        // into the control runner, so the runtime setters compose against the configured baseline.
367        let advertise = std::sync::Mutex::new(AdvertiseState {
368            routes: config.advertise_routes.clone(),
369            exit_node: config.advertise_exit_node,
370        });
371
372        // Unbounded mailbox (not the default bounded-64): the control runner SELF-messages — a
373        // spawned TKA sync task delivers its result back via `self_ref.tell(TkaSynced)`, and the
374        // netmap stream pump tells `StreamMessage::Next` onto the same mailbox. The stall path: the
375        // netmap handler ends by parking on `env.publish().await` into the bounded-64 *bus* (a slow
376        // bus subscriber, e.g. a busy TKA-enforcing peer tracker, holds the bus full); while it is
377        // parked, a concurrently-finishing sync task's `TkaSynced` self-tell queues behind a full
378        // *ControlRunner* mailbox and blocks waiting for capacity, delaying the verified-authority
379        // (or lock-disable) write to the enforcement cell — i.e. stale TKA enforcement under churn.
380        // kameo gates its self-tell deadlock warning on `is_current()`, which is false for the
381        // detached sync task, so the stall is silent. An unbounded mailbox lets the self-tell and the
382        // stream pump enqueue without ever awaiting capacity (kameo's documented choice for a
383        // self-messaging actor); the runner's inputs are control-paced (the netmap stream + a few RPC
384        // replies; the bus delivers best-effort and never backpressures this mailbox), not an attacker
385        // flood, so unbounded growth is not a practical exposure.
386        let control = ControlRunner::spawn_with_mailbox(
387            control_runner::Params {
388                config,
389                auth_key,
390                env: env.clone(),
391                state_tx,
392                tka_authority: tka_authority_tx,
393                home_region: home_region_tx,
394            },
395            kameo::mailbox::unbounded(),
396        );
397
398        // Spawn the taildrop partial-reaper if a store is configured; it sweeps abandoned `.partial`
399        // files every `DELETE_DELAY` and exits on shutdown (the handle is aborted in `Drop`).
400        let taildrop_reaper = env.taildrop_store.as_ref().map(|store| {
401            crate::taildrop::spawn_partial_reaper(store.clone(), shutdown_tx.subscribe())
402        });
403
404        // Opt-in OS network-link monitor (`Config::network_monitor`, default off). When enabled it
405        // spawns a `NetmonSupervisor` that, on a coalesced link change, asks the direct manager to
406        // rebind + re-probe and republishes `MeasureNow` for a re-netcheck — the auto-recovery a
407        // real `tailscaled` performs and the engine otherwise leaves to the embedder. When the flag
408        // is off this is a complete no-op: zero extra threads/sockets, byte-for-byte today's
409        // behavior. The manual `Device::rebind` path is unchanged either way.
410        //
411        // Feature gating is strict and never silent: with the `network-monitor` feature ON the
412        // supervisor (and its `ts_netmon` dep) compile in and spawn when the flag is set; with the
413        // feature OFF, setting the flag is a HARD error at spawn (mirrors the `TransportMode::Tun`
414        // without-`tun`-feature error above), so a build that cannot honor the request fails loudly
415        // rather than booting a node that silently won't auto-recover.
416        #[cfg(feature = "network-monitor")]
417        let netmon_supervisor = if env.network_monitor {
418            // Slice (a): no OS event-source backend is wired yet (the Linux netlink / macOS
419            // PF_ROUTE backends are later slices), so the supervisor runs against a `NoopLinkMonitor`
420            // — it is live and correctly shaped (it will react the moment a real backend feeds it),
421            // it just never sees a synthetic/OS event in this build. Production end-to-end reaction
422            // is proven in the integration test via a `ManualLinkMonitor`.
423            let monitor: std::sync::Arc<dyn ts_netmon::LinkMonitor> =
424                std::sync::Arc::new(ts_netmon::NoopLinkMonitor);
425            Some(netmon::NetmonSupervisor::spawn(
426                netmon::NetmonSupervisorArgs {
427                    monitor,
428                    direct: direct.clone(),
429                    env: env.clone(),
430                },
431            ))
432        } else {
433            None
434        };
435
436        #[cfg(not(feature = "network-monitor"))]
437        if env.network_monitor {
438            // The flag is set but this build cannot honor it. Fail loudly (never a silent no-op).
439            return Err(Error {
440                kind: ErrorKind::NetworkMonitorUnavailable,
441                target_actor: None,
442                message_ty: None,
443            });
444        }
445
446        Ok(Self {
447            control,
448            dataplane,
449            direct,
450            peer_tracker,
451            fallback_tcp,
452            magic_dns,
453            forwarder,
454            multiderp,
455            netstack,
456            env,
457            shutdown: shutdown_tx,
458            exit_node_tx: pref_cells.exit_node,
459            accept_routes_tx: pref_cells.accept_routes,
460            accept_dns_tx: pref_cells.accept_dns,
461            active_exit_rx,
462            state_rx,
463            cap_grants_rx,
464            advertise,
465            prev_suggestion: std::sync::Mutex::new(None),
466            taildrop_reaper,
467            #[cfg(feature = "network-monitor")]
468            netmon_supervisor,
469        })
470    }
471
472    /// Register a fallback TCP handler consulted for every inbound TCP flow that matches no
473    /// explicit listener (`tsnet.Server.RegisterFallbackTCPHandler` parity).
474    ///
475    /// The returned [`fallback_tcp::FallbackTcpHandle`] deregisters the handler when dropped. See
476    /// [`fallback_tcp`] for the dispatch contract and anti-leak guarantees.
477    ///
478    /// Returns [`ErrorKind::UnsupportedInTunMode`] in TUN transport mode, where there is no
479    /// application netstack to attach a fallback handler to.
480    pub fn register_fallback_tcp_handler(
481        &self,
482        cb: Arc<
483            dyn Fn(core::net::SocketAddr, core::net::SocketAddr) -> fallback_tcp::FallbackDecision
484                + Send
485                + Sync,
486        >,
487    ) -> Result<fallback_tcp::FallbackTcpHandle, Error> {
488        Ok(self
489            .fallback_tcp
490            .as_ref()
491            .ok_or(Error {
492                kind: ErrorKind::UnsupportedInTunMode,
493                target_actor: None,
494                message_ty: None,
495            })?
496            .register(cb))
497    }
498
499    /// Get a channel to send commands to the netstack.
500    ///
501    /// Returns [`ErrorKind::UnsupportedInTunMode`] in TUN transport mode, where there is no
502    /// application netstack.
503    pub async fn channel(&self) -> Result<Channel, Error> {
504        let (channel,) = self
505            .netstack
506            .as_ref()
507            .ok_or(Error {
508                kind: ErrorKind::UnsupportedInTunMode,
509                target_actor: None,
510                message_ty: None,
511            })?
512            .upgrade()
513            .ok_or(Error {
514                kind: ErrorKind::ActorGone,
515                target_actor: None,
516                message_ty: None,
517            })?
518            .ask(netstack_actor::GetChannel)
519            .await?;
520
521        Ok(channel)
522    }
523
524    /// Resolve `name` for `qtype` through the live MagicDNS responder (the `100.100.100.100`
525    /// forward path), returning the raw DNS response, its RCODE, and the upstream resolver(s)
526    /// consulted (analogue of Go `LocalClient.QueryDNS`).
527    ///
528    /// This drives the *real* responder — the same `decide`/forward logic an on-the-wire query
529    /// hits — so the answer and its anti-leak posture (a tailnet-suffix name never egresses; a
530    /// recursive forward delegates to the active exit node's DoH; only IPv4 upstreams are dialed)
531    /// match exactly what a tailnet client observes. `qtype` is the raw RFC 1035 TYPE (`1`=A,
532    /// `28`=AAAA, `12`=PTR, or any other).
533    ///
534    /// Returns [`ErrorKind::UnsupportedInTunMode`] in TUN transport mode, where MagicDNS is an
535    /// in-packet intercept on the host's own resolver rather than an actor that can be queried, and
536    /// [`ErrorKind::ActorGone`] if the responder has shut down.
537    pub async fn query_dns(
538        &self,
539        name: &str,
540        qtype: u16,
541    ) -> Result<magic_dns::DnsQueryResult, Error> {
542        let result = self
543            .magic_dns
544            .as_ref()
545            .ok_or(Error {
546                kind: ErrorKind::UnsupportedInTunMode,
547                target_actor: None,
548                message_ty: None,
549            })?
550            .ask(magic_dns::Query {
551                name: name.to_owned(),
552                qtype,
553            })
554            .await?;
555
556        Ok(result)
557    }
558
559    /// The Taildrop file store, if Taildrop is enabled (`taildrop_dir` configured and the store
560    /// initialized). `None` when disabled — fail-closed. Shared with the peerAPI Taildrop server so
561    /// the embedder's read APIs and the receive path see the same on-disk store.
562    pub fn taildrop_store(&self) -> Option<Arc<crate::taildrop::TaildropStore>> {
563        self.env.taildrop_store.clone()
564    }
565
566    /// The shared Funnel ingress slot the peerAPI `/v0/ingress` route reads per connection.
567    ///
568    /// `Device::listen_funnel` installs a [`FunnelManager`](crate::funnel::FunnelManager)'s sink here
569    /// to make the route live (the peerAPI server is already running from startup). Returns a clone of
570    /// the runtime-lifetime `Arc` so the device can write the slot without restarting the server. See
571    /// [`crate::funnel`] for the ingress data path.
572    pub fn funnel_ingress_slot(&self) -> crate::funnel::FunnelIngressSlot {
573        self.env.funnel_ingress.clone()
574    }
575
576    /// The shared "Funnel ingress listener active" flag (the same `Arc` the control session reads to
577    /// set `HostInfo.IngressEnabled`). `Device::listen_funnel` flips it `true` while a funnel listener
578    /// is up so control routes Funnel traffic to this node; clearing it advertises no live endpoint.
579    pub fn ingress_active_flag(&self) -> std::sync::Arc<std::sync::atomic::AtomicBool> {
580        self.env.ingress_active.clone()
581    }
582
583    /// Install (`Some`) or clear (`None`) the debug packet-capture hook on the running dataplane.
584    /// `Some(hook)` tees every plaintext packet crossing the datapath to `hook` until it is cleared;
585    /// `None` stops capture. Mirrors Go `tstun.Wrapper.InstallCaptureHook` / `ClearCaptureSink`.
586    pub async fn install_capture(
587        &self,
588        hook: Option<ts_dataplane::CaptureHook>,
589    ) -> Result<(), Error> {
590        self.dataplane
591            .ask(dataplane::InstallCapture { hook })
592            .await
593            .map_err(Into::into)
594    }
595
596    /// Re-bind the underlay UDP socket after a network/link change (Wi-Fi switch, sleep/wake). The
597    /// embedder's own link monitor calls this (the engine owns the socket re-bind; the embedder owns
598    /// OS netmon). Re-binds the socket (same-port-preferred, IPv4-only invariant preserved) and
599    /// resets the now-stale local NAT mapping — clearing learned reflexive addresses and every
600    /// confirmed direct path while keeping candidate endpoints, so peers re-probe over the new socket
601    /// and relay over DERP (never a direct host dial) until a path re-confirms. Peers, control, the
602    /// netmap, disco state, and DERP are untouched. A no-op when the underlay is inert (bind failed
603    /// at startup, DERP-only). Mirrors Go magicsock `Conn.Rebind` + `resetEndpointStates`.
604    pub async fn rebind(&self) -> Result<(), Error> {
605        self.direct.ask(direct::Rebind).await.map_err(Error::from)
606    }
607
608    /// Force an immediate STUN / endpoint re-probe **without** rebinding the underlay socket —
609    /// Go magicsock's `Conn.ReSTUN`. Asks the `DirectManager` to run one STUN sweep now (re-learn
610    /// our reflexive/public address) while leaving the socket, its NAT mapping, learned paths, peers,
611    /// control, and DERP untouched. Lighter than [`rebind`](Self::rebind): no socket swap, no
612    /// re-ping. A no-op when the underlay is inert (bind failed at startup, DERP-only). No control
613    /// round-trip.
614    pub async fn re_stun(&self) -> Result<(), Error> {
615        self.direct.ask(direct::ReStun).await.map_err(Error::from)
616    }
617
618    /// A snapshot of the local netmap: this node plus every known peer.
619    ///
620    /// Combines the self node held by the control runner with the peer set held by the peer
621    /// tracker. Mirrors tsnet's `LocalClient::Status`.
622    ///
623    /// `self_node` is `None` until the first netmap update has been received from control. Peer
624    /// entries carry no online/user/capability data (see the [`status`] module docs for that gap).
625    pub async fn status(&self) -> Result<Status, Error> {
626        let self_node_domain = self.control.ask(control_runner::SelfNode).await?;
627        // The MagicDNS suffix is the self node's FQDN minus its host label — already split into
628        // `Node.tailnet` at decode time (Go derives it the same way in `NetworkMap.MagicDNSSuffix`).
629        // Capture it before the domain `Node` is mapped away into a `StatusNode`.
630        let magic_dns_suffix = self_node_domain.as_ref().and_then(|n| n.tailnet.clone());
631        let self_node = self_node_domain.as_ref().map(StatusNode::from_node);
632
633        let peers_with_ids = self
634            .peer_tracker
635            .upgrade()
636            .ok_or(Error {
637                kind: ErrorKind::ActorGone,
638                target_actor: None,
639                message_ty: None,
640            })?
641            .ask(peer_tracker::GetStatus)
642            .await?;
643
644        // Join per-peer connectivity (Go `PeerStatus.CurAddr`): one batched query to the direct
645        // manager for every peer's current trusted direct endpoint, then fill `cur_addr` on each
646        // `StatusNode`. A peer absent from the map is relayed via DERP (`cur_addr = None`). This is a
647        // live snapshot — the direct path can expire/re-confirm between calls (matches Go's snapshot
648        // semantics). The `watch_netmap` stream intentionally carries no connectivity (it is a netmap
649        // watch, not a path-state watch, and does not re-fire on direct↔relay flips).
650        let ids: Vec<ts_transport::PeerId> = peers_with_ids.iter().map(|(id, _)| *id).collect();
651        let best_addrs = self
652            .direct
653            .ask(direct::BestAddrs { ids: ids.clone() })
654            .await
655            .unwrap_or_default();
656
657        // For the peers with NO direct path (relayed via DERP), resolve the region CODE they relay
658        // through (Go `PeerStatus.Relay`). One batched ask to multiderp; `cur_addr` and `relay` are
659        // mutually exclusive for a routed peer, mirroring Go's empty-vs-set strings.
660        let relay_ids: Vec<ts_transport::PeerId> = ids
661            .into_iter()
662            .filter(|id| !best_addrs.contains_key(id))
663            .collect();
664        let relay_codes = if relay_ids.is_empty() {
665            Default::default()
666        } else {
667            self.multiderp
668                .ask(multiderp::RelayCodesForPeers { ids: relay_ids })
669                .await
670                .unwrap_or_default()
671        };
672
673        let peers = peers_with_ids
674            .into_iter()
675            .map(|(id, mut node)| match best_addrs.get(&id).copied() {
676                Some(addr) => {
677                    node.cur_addr = Some(addr);
678                    node
679                }
680                None => {
681                    node.relay = relay_codes.get(&id).cloned();
682                    node
683                }
684            })
685            .collect();
686
687        Ok(Status {
688            self_node,
689            peers,
690            active_exit_node: self.active_exit_node(),
691            magic_dns_suffix,
692        })
693    }
694
695    /// Suggest a reasonably good exit node to use, from the current netmap + recent DERP latency
696    /// (Go `LocalBackend.SuggestExitNode`). The Phase-1 classic DERP-region-latency path; see the
697    /// [`exit_node_suggest`] module for the algorithm, scope, and the IPv4-only parity deviation.
698    ///
699    /// Gathers the inputs the way [`status`](Self::status) and [`file_targets`](Self::file_targets)
700    /// do — from the control runner, the latest [`NetcheckReport`]'s preferred DERP region plus the
701    /// recent per-region latencies (both immediate, non-blocking borrows), and every peer
702    /// [`Node`](ts_control::Node) from the peer tracker — then runs the pure algorithm with the
703    /// production uniform-random selectors (`random_region` / `random_node`). The returned
704    /// suggestion's id is remembered in the runtime's `prev_suggestion` cell so the next call is
705    /// *sticky* (Go `lastSuggestedExitNode`).
706    ///
707    /// Returns `Ok(None)` when no peer is an eligible candidate (Go's empty response), and
708    /// `Err(`[`SuggestExitNodeError::NoPreferredDerp`]`)` when there is no netcheck report yet (Go's
709    /// `ErrNoPreferredDERP`, "try again later").
710    pub async fn suggest_exit_node(
711        &self,
712    ) -> Result<Result<Option<ExitNodeSuggestion>, SuggestExitNodeError>, Error> {
713        use ts_control::NODE_ATTR_SUGGEST_EXIT_NODE;
714
715        // The two netcheck inputs Go's `suggestExitNode` takes. First the preferred DERP region from
716        // the latest report (Go `MagicConn().GetLastNetcheckReport().PreferredDERP`): an immediate
717        // borrow of the control runner's published measurement (the value `Device::netcheck`
718        // surfaces), used only as the "have we netchecked at all yet" precondition.
719        let report = self.control.ask(control_runner::Netcheck).await?;
720
721        // Then the *ranking* input: the lowest latency seen per region over the retained measurement
722        // history (Go `netcheck.Client.RecentRegionLatency()`). Deliberately NOT the latest report's
723        // own latency list — every measurement this fork makes is partial (`complete_threshold`), so
724        // ranking on one report leaves a distant candidate's region unmeasured and collapses the
725        // suggestion to a uniform random pick. See `exit_node_suggest`'s module docs.
726        let region_latency = self
727            .control
728            .ask(control_runner::RecentRegionLatency)
729            .await?;
730
731        // Every known peer (Go reads the netmap peers via `AppendMatchingPeers`); the domain `Node`
732        // retains the cap map, home DERP region, online state, and accepted routes the predicate
733        // needs.
734        let peers = self
735            .peer_tracker
736            .upgrade()
737            .ok_or(Error {
738                kind: ErrorKind::ActorGone,
739                target_actor: None,
740                message_ty: None,
741            })?
742            .ask(peer_tracker::AllPeers)
743            .await?;
744
745        // Project each peer into the algorithm's candidate inputs. The eligibility predicate runs
746        // inside the pure function, so every peer is passed (self is naturally absent from the peer
747        // set). `derp_region`/`online`/`cap_map`/`accepted_routes` map straight off the domain node;
748        // the exit-route check is the fork's family-agnostic `prefix_len == 0` (IPv4-only parity —
749        // see `exit_node_suggest::suggest_exit_node`).
750        let candidates: Vec<exit_node_suggest::ExitNodeCandidate> = peers
751            .iter()
752            .map(|peer| exit_node_suggest::ExitNodeCandidate {
753                stable_id: peer.stable_id.clone(),
754                name: peer
755                    .fqdn_opt(false)
756                    .unwrap_or_else(|| peer.hostname.clone()),
757                derp_region: peer.derp_region,
758                online: peer.online,
759                advertises_exit_route: peer
760                    .accepted_routes
761                    .iter()
762                    .any(|route| route.prefix_len() == 0),
763                has_suggest_cap: peer.has_node_attr(NODE_ATTR_SUGGEST_EXIT_NODE),
764            })
765            .collect();
766
767        // Read the sticky previous suggestion, run the pure algorithm with the production
768        // uniform-random selectors, then update the sticky value to the new result. This mirrors Go
769        // `suggestExitNodeLocked` (`ipn/ipnlocal/local.go`), which assigns `b.lastSuggestedExitNode =
770        // res.ID` on **every** no-error return — INCLUDING the empty/no-candidate result, where it
771        // clears the sticky id to "". So a successful suggestion sets stickiness, an empty result
772        // CLEARS it (a peer that dropped out of candidacy stops being preferred), and only an `Err`
773        // (`NoPreferredDerp` — no netcheck yet) returns before the assignment and leaves it untouched.
774        let prev = self.prev_suggestion.lock().unwrap().clone();
775        let outcome = exit_node_suggest::suggest_exit_node(
776            report.preferred_derp,
777            &region_latency,
778            &candidates,
779            prev.as_ref(),
780            &exit_node_suggest::random_region,
781            &exit_node_suggest::random_node,
782        );
783        *self.prev_suggestion.lock().unwrap() = exit_node_suggest::next_sticky(prev, &outcome);
784        Ok(outcome)
785    }
786
787    /// List the tailnet peers this node can Taildrop a file *to* (Go LocalAPI `FileTargets`).
788    ///
789    /// Mirrors the upstream send-path filter (`feature/taildrop` `Extension::FileTargets`): a peer
790    /// qualifies when it advertises a reachable peerAPI **and** is either owned by the same user as
791    /// this node **or** explicitly granted the file-sharing-target capability. The whole list is
792    /// gated on this node holding the file-sharing capability (control sets it when the admin enables
793    /// Taildrop) — absent that, an empty list (fail-closed, not an error, matching how the receive
794    /// store returns empty when disabled). Results are sorted by the peer's MagicDNS name.
795    ///
796    /// Targets are listed regardless of current online state (upstream's `FileTargets` does not gate
797    /// on online either; an offline target's send will simply time out). The self node is never
798    /// included. Returns empty before the first netmap.
799    ///
800    /// Divergence from Go: the upstream filter also excludes `tvOS` peers, which this fork cannot
801    /// reproduce (the domain node carries no OS string); the impact is negligible — the actual send
802    /// fail-closes if such a peer refused the transfer.
803    pub async fn file_targets(&self) -> Result<Vec<FileTarget>, Error> {
804        // Node-level gate: this node must hold the file-sharing capability (Taildrop enabled by the
805        // admin). Read it off the self node's cap map, like Go's `hasCapFileSharing()`.
806        let self_node = self.control.ask(control_runner::SelfNode).await?;
807        let Some(self_node) = self_node else {
808            return Ok(Vec::new()); // no netmap yet
809        };
810        if !self_node.can_share_files() {
811            return Ok(Vec::new()); // Taildrop not enabled for the tailnet — fail-closed
812        }
813        let self_user_id = self_node.user_id;
814
815        let peers = self
816            .peer_tracker
817            .upgrade()
818            .ok_or(Error {
819                kind: ErrorKind::ActorGone,
820                target_actor: None,
821                message_ty: None,
822            })?
823            .ask(peer_tracker::AllPeers)
824            .await?;
825
826        // Eligibility + ordering live in `build_file_targets` (pure, unit-tested in `status`).
827        Ok(status::build_file_targets(peers, self_user_id))
828    }
829
830    /// The stable id of the exit node traffic is currently egressing through, or `None` if none is
831    /// engaged. This is the route updater's resolved + fail-closed answer (see
832    /// [`Status::active_exit_node`](crate::status::Status::active_exit_node)): it differs from the
833    /// configured [`exit_node`](Self::exit_node) selector, which may name a peer that is absent or
834    /// no longer advertising a default route (in which case egress is dropped and this returns
835    /// `None`).
836    pub fn active_exit_node(&self) -> Option<ts_control::StableNodeId> {
837        self.active_exit_rx.borrow().clone()
838    }
839
840    /// Request an OIDC ID token from control scoped to `audience` (workload-identity federation).
841    ///
842    /// Returns the signed JWT, or the token RPC's own [`ts_control::IdTokenError`]. The kameo
843    /// delegated-reply send error is flattened: a handler error carries the real `IdTokenError`,
844    /// any other send failure (actor shutdown / mailbox closed) is surfaced as
845    /// [`ts_control::IdTokenError::NetworkError`].
846    pub async fn fetch_id_token(
847        &self,
848        audience: String,
849    ) -> Result<String, ts_control::IdTokenError> {
850        self.control
851            .ask(control_runner::FetchIdToken { audience })
852            .await
853            .map_err(flatten_send_err)
854    }
855
856    /// Log this node out of the tailnet: deregister it by expiring its current node key.
857    ///
858    /// Forwards to the control runner, which re-POSTs `/machine/register` with a past expiry over a
859    /// fresh Noise channel. This is a control-plane state change only — it does NOT shut the runtime
860    /// down (the caller follows with [`graceful_shutdown`](Self::graceful_shutdown)) and does not
861    /// touch the on-disk node key. The kameo delegated-reply send error is flattened the same way as
862    /// `fetch_id_token`: a handler error carries the real
863    /// [`ts_control::LogoutError`]; any other send failure (actor shutdown / mailbox closed) is
864    /// surfaced as [`ts_control::LogoutError::NetworkError`].
865    pub async fn logout(&self) -> Result<(), ts_control::LogoutError> {
866        self.control
867            .ask(control_runner::Logout)
868            .await
869            .map_err(flatten_logout_send_err)
870    }
871
872    /// Publish a `TXT` DNS record for this node via control's `/machine/set-dns` (Go
873    /// `LocalClient.SetDNS`).
874    ///
875    /// Forwards to the control runner, which POSTs the record over a fresh Noise channel. The kameo
876    /// delegated-reply send error is flattened the same way as `fetch_id_token`:
877    /// a handler error carries the real [`ts_control::SetDnsError`]; any other send failure (actor
878    /// shutdown / mailbox closed) is surfaced as [`ts_control::SetDnsError::NetworkError`].
879    pub async fn set_dns(
880        &self,
881        name: String,
882        value: String,
883    ) -> Result<(), ts_control::SetDnsError> {
884        self.control
885            .ask(control_runner::SetDns { name, value })
886            .await
887            .map_err(flatten_set_dns_send_err)
888    }
889
890    /// Sign `node_key` with this node's network-lock key and submit the signature to control
891    /// (Go `tka.sign` Direct case → `/machine/tka/sign`).
892    ///
893    /// Submits only — the local [`Authority`](ts_tka::Authority) is **not** mutated here; it advances
894    /// via the existing verified-sync path. A handler error carries the real [`ts_control::TkaSyncError`];
895    /// any other send failure (actor shutdown / mailbox closed) is surfaced as
896    /// [`ts_control::TkaSyncError::NetworkError`].
897    pub async fn tka_sign(&self, node_key: [u8; 32]) -> Result<(), ts_control::TkaSyncError> {
898        self.control
899            .ask(control_runner::TkaSign { node_key })
900            .await
901            .map_err(flatten_tka_send_err)
902    }
903
904    /// Disable Tailnet Lock by presenting the `disablement_secret` to control (Go `tka.disable` →
905    /// `/machine/tka/disable`), targeting the current authority head.
906    ///
907    /// Submits only — the local [`Authority`](ts_tka::Authority) is **not** mutated here. A handler
908    /// error carries the real [`ts_control::TkaSyncError`] (incl.
909    /// [`Unsupported`](ts_control::TkaSyncError::Unsupported) when there is no known TKA head to
910    /// disable); any other send failure collapses to
911    /// [`NetworkError`](ts_control::TkaSyncError::NetworkError).
912    pub async fn tka_disable(
913        &self,
914        disablement_secret: Vec<u8>,
915    ) -> Result<(), ts_control::TkaSyncError> {
916        self.control
917            .ask(control_runner::TkaDisable { disablement_secret })
918            .await
919            .map_err(flatten_tka_send_err)
920    }
921
922    /// Initialize Tailnet Lock with this node as the sole initial trusted key, gated by
923    /// `disablement_secret` (Go `tka` init → `/machine/tka/init/{begin,finish}`).
924    ///
925    /// Submits only — does not seed the local [`Authority`](ts_tka::Authority); the node picks up the
926    /// new lock via the existing verified netmap-sync. A handler error carries the real
927    /// [`ts_control::TkaSyncError`] ([`Unsupported`](ts_control::TkaSyncError::Unsupported) if
928    /// control needs other nodes re-signed — the single-node "lock yourself in" subset only); any
929    /// other send failure collapses to [`NetworkError`](ts_control::TkaSyncError::NetworkError).
930    pub async fn tka_init(
931        &self,
932        disablement_secret: Vec<u8>,
933    ) -> Result<(), ts_control::TkaSyncError> {
934        self.control
935            .ask(control_runner::TkaInit { disablement_secret })
936            .await
937            .map_err(flatten_tka_send_err)
938    }
939
940    /// Read up to `limit` entries of the Tailnet-Lock update-chain log, head-first (Go
941    /// `NetworkLockLog`). A **pure local read** of the synced AUM chain — no control round-trip — so
942    /// the only failure is a kameo send error (actor gone / mailbox), surfaced as a coarse [`Error`]
943    /// like the other local-read paths (`status`/`tka_status`), not a [`ts_control::TkaSyncError`].
944    /// Returns an empty `Vec` when no lock is synced.
945    pub async fn tka_log(&self, limit: usize) -> Result<Vec<TkaLogEntry>, Error> {
946        self.control
947            .ask(control_runner::TkaLog { limit })
948            .await
949            .map_err(Error::from)
950    }
951
952    /// Issue a real Let's Encrypt certificate for this node's MagicDNS `name` (`acme` feature).
953    ///
954    /// Mirrors `fetch_id_token`: forwards to the control runner, which runs
955    /// the client-side ACME DNS-01 flow on a spawned task and publishes the challenge TXT via the
956    /// node's set-dns RPC. The kameo delegated-reply send error is flattened — a handler error
957    /// carries the real [`ts_control::CertError`]; any other send failure (actor shutdown / mailbox
958    /// closed) is surfaced as a [`ts_control::CertError::Io`]. SaaS-only: a self-hosted control
959    /// plane 501s on set-dns.
960    #[cfg(feature = "acme")]
961    pub async fn get_certificate(
962        &self,
963        name: String,
964    ) -> Result<ts_control::tls::CertifiedKey, ts_control::CertError> {
965        self.control
966            .ask(control_runner::GetCertificate { name })
967            .await
968            .map_err(flatten_cert_send_err)
969    }
970
971    /// Issue a real Let's Encrypt certificate for this node's MagicDNS `name` and return the
972    /// **PEM pair** `(cert_chain_pem, key_pem)` — the analog of Go's
973    /// `LocalClient.CertPairWithValidity`, for writing the daemon's on-disk `.crt` + `.key`
974    /// (`tnet cert`). `acme` feature.
975    ///
976    /// Same issuance as [`get_certificate`](Self::get_certificate) (one client-side ACME DNS-01
977    /// order, challenge published via the node's set-dns RPC) — only the result shape differs: this
978    /// returns the leaf+chain PEM and the leaf-key PEM instead of the opaque
979    /// [`CertifiedKey`](ts_control::tls::CertifiedKey). The second element is the **leaf private
980    /// key** PEM; it is never logged anywhere on this path.
981    ///
982    /// **`min_validity` (honest "always fresh").** Go's `CertPairWithValidity` reuses a cached cert
983    /// when it has at least `min_validity` of its lifetime left, and re-issues otherwise. This fork
984    /// has **no cert cache** — every call performs a fresh issuance — so `min_validity` is accepted
985    /// for signature compatibility but does not change behavior: a freshly issued cert (full
986    /// lifetime) trivially satisfies any `min_validity`. A reuse cache is separate future work; this
987    /// does NOT fake one.
988    ///
989    /// Mirrors [`get_certificate`](Self::get_certificate)'s error handling: the kameo
990    /// delegated-reply send error is flattened — a handler error carries the real
991    /// [`ts_control::CertError`]; any other send failure (actor shutdown / mailbox closed) collapses
992    /// to a [`ts_control::CertError::Io`]. SaaS-only: a self-hosted control plane 501s on set-dns.
993    #[cfg(feature = "acme")]
994    pub async fn cert_pair(
995        &self,
996        name: String,
997        min_validity: Option<Duration>,
998    ) -> Result<(String, String), ts_control::CertError> {
999        // No cert cache exists in this fork (every issuance is fresh), so `min_validity` is honored
1000        // trivially by always issuing a full-lifetime cert. Bound (unused beyond this contract) so
1001        // the parameter is explicitly accounted for rather than silently ignored.
1002        let _ = min_validity;
1003        self.control
1004            .ask(control_runner::GetCertPair { name })
1005            .await
1006            .map_err(flatten_cert_send_err)
1007    }
1008
1009    /// Resolve which node owns a tailnet source address.
1010    ///
1011    /// Maps the destination IP of `addr` to its owning node. Mirrors tsnet's `LocalClient::WhoIs`.
1012    /// Returns `None` if no peer holds that tailnet IP.
1013    ///
1014    /// The returned [`WhoIs`] additionally carries the **flow-scoped** peer-capability grants
1015    /// ([`WhoIs::cap_map`], Go `apitype.WhoIsResponse.CapMap`): the caps control's packet-filter
1016    /// application rules authorize for traffic from THIS node (the flow source) to `addr` (the
1017    /// destination). Empty when no grant matches. (The node-level cap map rides
1018    /// [`WhoIs::capabilities`].)
1019    pub async fn whois(&self, addr: core::net::SocketAddr) -> Result<Option<WhoIs>, Error> {
1020        let whois = self
1021            .peer_tracker
1022            .upgrade()
1023            .ok_or(Error {
1024                kind: ErrorKind::ActorGone,
1025                target_actor: None,
1026                message_ty: None,
1027            })?
1028            .ask(peer_tracker::Whois { addr })
1029            .await?;
1030
1031        let Some(mut whois) = whois else {
1032            return Ok(None);
1033        };
1034
1035        // Fill the flow-scoped cap map: src = this node's own tailnet IP (of the dst's family),
1036        // dst = the queried address. A grant applies when its source matches the flow source — `src`
1037        // ∈ its src prefixes OR this node holds one of its source node-caps — AND `dst` ∈ its dst
1038        // prefixes (Go `Filter.CapsWithValues`). Resolve our own IP + cap map from the self node; if
1039        // it isn't known yet, leave the map empty (no grants resolvable without a source).
1040        let dst = addr.ip();
1041        if let Some(self_node) = self.control.ask(control_runner::SelfNode).await? {
1042            let src: core::net::IpAddr = if dst.is_ipv6() {
1043                self_node.tailnet_address.ipv6.addr().into()
1044            } else {
1045                self_node.tailnet_address.ipv4.addr().into()
1046            };
1047            let grants = self.cap_grants_rx.borrow();
1048            whois.cap_map = ts_packetfilter_state::caps_for(&grants, src, dst, |cap| {
1049                self_node.has_node_attr(cap)
1050            });
1051        }
1052
1053        Ok(Some(whois))
1054    }
1055
1056    /// The current direct-path status to the peer holding tailnet IP `dst`: its confirmed direct UDP
1057    /// endpoint and that path's last-measured RTT, or `None` when there is no direct path right now
1058    /// (the peer is relayed via DERP, is unknown, or has no disco key).
1059    ///
1060    /// The latency is the RTT of the most recent disco ping/pong that confirmed the path — a live
1061    /// snapshot up to one probe interval stale, NOT a fresh on-demand round-trip (that is a separate,
1062    /// heavier capability). Mirrors the direct-path latency Go surfaces for `ipnstate.PeerStatus`.
1063    pub async fn direct_path(
1064        &self,
1065        dst: core::net::IpAddr,
1066    ) -> Result<Option<(core::net::SocketAddr, Duration)>, Error> {
1067        let peer_tracker = self.peer_tracker.upgrade().ok_or(Error {
1068            kind: ErrorKind::ActorGone,
1069            target_actor: None,
1070            message_ty: None,
1071        })?;
1072
1073        // Resolve the tailnet IP to its node, then to its disco key. No node / no disco key ⇒ no
1074        // direct path is possible (a peer with no disco key can only be reached via DERP).
1075        let Some(node) = peer_tracker
1076            .ask(peer_tracker::PeerByTailnetIp { ip: dst })
1077            .await?
1078        else {
1079            return Ok(None);
1080        };
1081        let Some(disco) = node.disco_key else {
1082            return Ok(None);
1083        };
1084
1085        self.direct
1086            .ask(direct::DirectPathLatency { disco })
1087            .await
1088            .map_err(Into::into)
1089    }
1090
1091    /// Send a disco ping to the peer holding tailnet IP `dst` **now** and await the pong, returning
1092    /// the fresh round-trip latency and the endpoint that answered, or `None` if no pong arrives
1093    /// within `timeout` (or the peer is unknown / has no disco key / no candidate path). This is the
1094    /// true on-demand `PingType::Disco` (Go `tailscale ping`), as opposed to
1095    /// [`direct_path`](Self::direct_path) which reports the last periodic probe's RTT.
1096    ///
1097    /// The ping round-trip is awaited OFF the direct manager's mailbox (we take a `MagicSock` handle
1098    /// and await on it directly), so a slow/timing-out ping never blocks the actor.
1099    pub async fn ping_disco(
1100        &self,
1101        dst: core::net::IpAddr,
1102        timeout: Duration,
1103    ) -> Result<Option<(core::net::SocketAddr, Duration)>, Error> {
1104        let peer_tracker = self.peer_tracker.upgrade().ok_or(Error {
1105            kind: ErrorKind::ActorGone,
1106            target_actor: None,
1107            message_ty: None,
1108        })?;
1109
1110        let Some(node) = peer_tracker
1111            .ask(peer_tracker::PeerByTailnetIp { ip: dst })
1112            .await?
1113        else {
1114            return Ok(None);
1115        };
1116        let Some(disco) = node.disco_key else {
1117            return Ok(None);
1118        };
1119
1120        // Cheap synchronous handle fetch, then await the ping OFF the actor mailbox.
1121        let Some(sock) = self.direct.ask(direct::SockHandle).await? else {
1122            return Ok(None);
1123        };
1124        // A `ping_now` error is an underlay UDP send failure (not an actor problem); surface it as a
1125        // reply-level error. A timed-out / unanswered ping is `Ok(None)`, not an error.
1126        sock.ping_now(&disco, timeout).await.map_err(|_| Error {
1127            kind: ErrorKind::ReplyErr,
1128            target_actor: None,
1129            message_ty: None,
1130        })
1131    }
1132
1133    /// Change the selected exit node at runtime (the equivalent of Go `tsnet`'s
1134    /// `LocalClient.EditPrefs(ExitNodeID/ExitNodeIP)`), without recreating the device.
1135    ///
1136    /// Updates the live exit-node selector, then asks the peer tracker to re-broadcast the current
1137    /// peer set so the route updater and source filter re-resolve the new selector immediately.
1138    /// `None` clears the exit node (internet-bound traffic is then dropped, fail-closed, unless this
1139    /// node egresses directly). The selection is re-resolved against the live peer set, so passing a
1140    /// selector for a peer not yet in the netmap simply takes effect once that peer appears.
1141    pub async fn set_exit_node(
1142        &self,
1143        selector: Option<ts_control::ExitNodeSelector>,
1144    ) -> Result<(), Error> {
1145        // Update the live cell every reader borrows from. `send_replace` keeps the value current
1146        // even with no active receivers (none can have dropped while the runtime is up, but it is
1147        // the right non-failing primitive here).
1148        self.exit_node_tx.send_replace(selector);
1149
1150        // Trigger an immediate re-resolution: the route updater (outbound routes + DoH delegation)
1151        // and the source filter (inbound validation) both recompute on an `Arc<PeerState>`, so a
1152        // re-broadcast applies the new exit without waiting for the next netmap update.
1153        self.peer_tracker
1154            .upgrade()
1155            .ok_or(Error {
1156                kind: ErrorKind::ActorGone,
1157                target_actor: None,
1158                message_ty: None,
1159            })?
1160            .ask(peer_tracker::RepublishState)
1161            .await
1162            .map_err(Into::into)
1163    }
1164
1165    /// The currently-selected exit node, or `None` if none is selected.
1166    pub fn exit_node(&self) -> Option<ts_control::ExitNodeSelector> {
1167        self.env.exit_node()
1168    }
1169
1170    /// Toggle whether this node accepts peer-advertised subnet routes at runtime (the equivalent of
1171    /// Go `tsnet`'s `LocalClient.EditPrefs(RouteAll)` / `tailscale set --accept-routes`), without
1172    /// recreating the device.
1173    ///
1174    /// `accept-routes` is a purely **local** preference — unlike advertised routes it is never
1175    /// reported to control (no `Hostinfo` / MapRequest side), so this only re-runs the local
1176    /// route/source-filter recompute, mirroring [`set_exit_node`](Self::set_exit_node) rather than
1177    /// [`set_advertise_routes`](Self::set_advertise_routes). Updates the live cell, then asks the peer
1178    /// tracker to re-broadcast the current peer set so the route updater (outbound routes) and the
1179    /// source filter (inbound validation) re-filter against the new value immediately: turning it on
1180    /// installs newly-accepted subnet routes (and widens the source filter to match); turning it off
1181    /// removes them from BOTH in lock-step (never accepting a source for a route no longer installed).
1182    /// Self routes and the exit-node default `/0` are unaffected (the latter is gated by the exit-node
1183    /// selection, not this flag).
1184    ///
1185    /// In TUN transport mode the host routing table is also re-steered live: the `RepublishState`
1186    /// kicked below re-broadcasts the peer set to the `TunActor`, whose `PeerState` handler re-reads
1187    /// `accept_routes` (and the exit selection) from `Env` and re-applies the host routes — so the
1188    /// toggle takes effect without rebuilding the device (the apply is an idempotent add-new/
1189    /// remove-gone diff). The exit-node default `/0` is still keyed on the exit selection, not this flag.
1190    pub async fn set_accept_routes(&self, accept: bool) -> Result<(), Error> {
1191        // Update the live cell every reader borrows from (same primitive/rationale as set_exit_node).
1192        self.accept_routes_tx.send_replace(accept);
1193
1194        // Trigger an immediate re-filter: the route updater and source filter both recompute on an
1195        // `Arc<PeerState>`, so a re-broadcast applies the new preference without waiting for the next
1196        // netmap update. Both re-read the same live cell, so the outbound route set and the inbound
1197        // source filter stay coupled (the anti-leak invariant).
1198        self.peer_tracker
1199            .upgrade()
1200            .ok_or(Error {
1201                kind: ErrorKind::ActorGone,
1202                target_actor: None,
1203                message_ty: None,
1204            })?
1205            .ask(peer_tracker::RepublishState)
1206            .await
1207            .map_err(Into::into)
1208    }
1209
1210    /// Whether this node currently accepts peer-advertised subnet routes (`--accept-routes`).
1211    pub fn accept_routes(&self) -> bool {
1212        self.env.accept_routes()
1213    }
1214
1215    /// Toggle whether this node accepts the tailnet's DNS configuration at runtime (the equivalent of
1216    /// Go `tsnet`'s `LocalClient.EditPrefs(CorpDNS)` / `tailscale set --accept-dns`), without
1217    /// recreating the device.
1218    ///
1219    /// Like [`set_accept_routes`](Self::set_accept_routes), `accept-dns` is a purely **local**
1220    /// preference — it is never reported to control (no `Hostinfo` / MapRequest side), so this only
1221    /// re-runs the local MagicDNS view rebuild. Updates the live cell, then asks the peer tracker to
1222    /// re-broadcast the current peer set; the resulting `PeerState` rebuild re-applies the gate on the
1223    /// MagicDNS responder (and the peerAPI DoH server that shares its view). When `false`, the
1224    /// responder ignores the control-pushed DNS config and answers every query `REFUSED`, mirroring Go
1225    /// applying an empty `dns.Config` when `CorpDNS` is off; flipping it back to `true` restores
1226    /// serving from the still-current config (the real config is never destroyed — only gated at the
1227    /// read site), so the OFF→ON restore is automatic.
1228    pub async fn set_accept_dns(&self, accept: bool) -> Result<(), Error> {
1229        // Update the live cell every reader borrows from (same primitive/rationale as set_accept_routes).
1230        self.accept_dns_tx.send_replace(accept);
1231
1232        // Trigger an immediate view rebuild: the MagicDNS responder re-reads `Env::accept_dns()` when
1233        // it handles a `PeerState`, so a re-broadcast re-applies the gate on both the netstack
1234        // responder and the peerAPI DoH server (which share the view) without waiting for the next
1235        // control/peer update. Mirrors `set_accept_routes`'s republish.
1236        self.peer_tracker
1237            .upgrade()
1238            .ok_or(Error {
1239                kind: ErrorKind::ActorGone,
1240                target_actor: None,
1241                message_ty: None,
1242            })?
1243            .ask(peer_tracker::RepublishState)
1244            .await
1245            .map_err(Into::into)
1246    }
1247
1248    /// Whether this node currently accepts the tailnet's DNS configuration (`--accept-dns` / `CorpDNS`).
1249    pub fn accept_dns(&self) -> bool {
1250        self.env.accept_dns()
1251    }
1252
1253    /// Change the set of subnet routes this node advertises at runtime (Go `tailscale set
1254    /// --advertise-routes`). Applies BOTH halves together so the wire and the data path agree:
1255    ///
1256    /// 1. **Wire** — re-advertise `Hostinfo.RoutableIPs` to control on the live map-poll connection
1257    ///    (so control grants the node the subnet-router role for exactly these prefixes).
1258    /// 2. **Local** — swap the forwarder's accept/dial route table (so the node actually forwards the
1259    ///    prefixes it advertises). New flows see the new set; in-flight flows keep their routing.
1260    ///
1261    /// `routes` is filtered to the IPv4-only, deduplicated set this fork can honor (IPv6 prefixes are
1262    /// dropped under the IPv6-off posture — we never advertise a route we won't forward), so the wire
1263    /// and forwarder are fed the identical final set. This sets the explicit subnet prefixes only; it
1264    /// does NOT touch the exit-node `0.0.0.0/0` advertisement (a separate concern).
1265    pub async fn set_advertise_routes(&self, routes: Vec<ipnet::IpNet>) -> Result<(), Error> {
1266        // Update the explicit-subnet part of the live preference, keep the exit-node flag, and
1267        // re-send the composed set. Composes with `set_advertise_exit_node` (neither clobbers the
1268        // other's contribution to `Hostinfo.RoutableIPs`).
1269        let composed = {
1270            let mut adv = self.advertise.lock().unwrap_or_else(|p| p.into_inner());
1271            adv.routes = routes;
1272            compose_advertised_routes(adv.routes.clone(), adv.exit_node)
1273        };
1274        self.apply_advertised_routes(composed).await
1275    }
1276
1277    /// Advertise (or stop advertising) this node as an **exit node** — the `0.0.0.0/0` default route
1278    /// (Go `tailscale set --advertise-exit-node`). Composes with
1279    /// [`set_advertise_routes`](Self::set_advertise_routes): toggling the exit node re-sends the
1280    /// explicit subnet routes plus (when `enable`) `0.0.0.0/0`, so the two preferences are
1281    /// independent. Like `set_advertise_routes`, this both re-advertises `Hostinfo.RoutableIPs` to
1282    /// control AND updates the forwarder's accept/dial set, applied together. Control still gates
1283    /// whether the advertised exit node is actually *usable* by peers (this only advertises it).
1284    pub async fn set_advertise_exit_node(&self, enable: bool) -> Result<(), Error> {
1285        let composed = {
1286            let mut adv = self.advertise.lock().unwrap_or_else(|p| p.into_inner());
1287            adv.exit_node = enable;
1288            compose_advertised_routes(adv.routes.clone(), adv.exit_node)
1289        };
1290        self.apply_advertised_routes(composed).await
1291    }
1292
1293    /// Push a freshly-composed advertised-route set to BOTH halves: the forwarder's accept/dial
1294    /// table (local) FIRST — so the node forwards a prefix before control grants it, never the
1295    /// reverse — then re-advertise `Hostinfo.RoutableIPs` to control on the live map-poll connection
1296    /// (wire). `composed` is already filtered + exit-node-folded by [`compose_advertised_routes`].
1297    async fn apply_advertised_routes(&self, composed: Vec<ipnet::IpNet>) -> Result<(), Error> {
1298        self.forwarder
1299            .ask(forwarder_actor::UpdateRoutes {
1300                routes: composed.clone(),
1301            })
1302            .await?;
1303        self.control
1304            .ask(control_runner::SetAdvertiseRoutes { routes: composed })
1305            .await
1306            .map_err(Into::into)
1307    }
1308
1309    /// Change this node's hostname at runtime (Go `tailscale set --hostname`), re-reporting
1310    /// `Hostinfo.Hostname` to control on the live map-poll connection. Hostname is display-only
1311    /// (control reflects it in the netmap), so there is no dataplane half. The new value is also
1312    /// what a subsequent re-registration reports, so it persists across a reconnect.
1313    pub async fn set_hostname(&self, hostname: String) -> Result<(), Error> {
1314        self.control
1315            .ask(control_runner::SetHostname { hostname })
1316            .await
1317            .map_err(Into::into)
1318    }
1319
1320    /// Subscribe to netmap peer-change events: the **narrow** peer-set view.
1321    ///
1322    /// Returns a [`watch::Receiver`] whose value is the current set of peer [`StatusNode`]s,
1323    /// updated on every netmap state update from control. Await
1324    /// [`watch::Receiver::changed`](tokio::sync::watch::Receiver::changed) to react to peers
1325    /// joining, leaving, or changing. For the unified Go-`WatchIPNBus` feed that merges this with
1326    /// device-state and the interactive-login URL, see [`watch_ipn_bus`](Self::watch_ipn_bus); this
1327    /// method is the peer-only projection of the same underlying cell.
1328    pub async fn watch_netmap(&self) -> Result<watch::Receiver<Vec<StatusNode>>, Error> {
1329        self.peer_tracker
1330            .upgrade()
1331            .ok_or(Error {
1332                kind: ErrorKind::ActorGone,
1333                target_actor: None,
1334                message_ty: None,
1335            })?
1336            .ask(peer_tracker::WatchNetmap)
1337            .await
1338            .map_err(Into::into)
1339    }
1340
1341    /// The current device connection-[`DeviceState`].
1342    pub fn device_state(&self) -> DeviceState {
1343        self.state_rx.borrow().clone()
1344    }
1345
1346    /// Watch the device connection-[`DeviceState`] (`Connecting` → `Running` / `NeedsLogin` /
1347    /// `Expired` / `Failed`).
1348    ///
1349    /// Returns a [`watch::Receiver`]; await
1350    /// [`changed`](tokio::sync::watch::Receiver::changed) to react push-style to control connection
1351    /// transitions instead of polling [`status`](Self::status). The initial value is the current
1352    /// state. Note: a transient per-reconnect dip back to `Connecting` is **not** currently
1353    /// emitted (control transparently reconnects below this layer); the state reflects registration
1354    /// outcome and node-key expiry.
1355    pub fn watch_state(&self) -> watch::Receiver<DeviceState> {
1356        self.state_rx.clone()
1357    }
1358
1359    /// Wait until the device finishes registering, returning a typed outcome.
1360    ///
1361    /// Resolves `Ok(())` once the device reaches [`DeviceState::Running`]. Returns a typed
1362    /// [`RegistrationError`] otherwise — the actionable distinction between "retry", "re-pair", and
1363    /// "drive interactive login" that replaces polling the device's `ipv4_addr` in a loop:
1364    /// - `AuthRejected` — bad/expired/unknown auth key. **Permanent** (re-pair).
1365    /// - `NeedsLogin(url)` — interactive authorization required (no usable auth key). **Not
1366    ///   permanent**: the runtime keeps retrying and will reach `Running` once the user authorizes
1367    ///   the URL. An **auth-key** caller should treat this as a failure; an **interactive** caller
1368    ///   should ignore this return and instead drive the flow via [`watch_state`](Self::watch_state)
1369    ///   (this method returns the URL eagerly rather than blocking for the whole login).
1370    /// - `NetworkUnreachable` — control unreachable. **Transient** (retry).
1371    /// - `Timeout` — no settled state within `timeout`.
1372    ///
1373    /// `KeyExpired` is not produced by this initial wait (a node key expires only *after* it has
1374    /// come up); observe post-registration expiry via [`watch_state`](Self::watch_state).
1375    /// `timeout` of `None` waits indefinitely for a settled state.
1376    pub async fn wait_until_running(
1377        &self,
1378        timeout: Option<Duration>,
1379    ) -> Result<(), RegistrationError> {
1380        device_state::wait_for_running(self.state_rx.clone(), timeout).await
1381    }
1382
1383    /// Subscribe to the unified IPN notification bus (Go `ipn` `WatchIPNBus` /
1384    /// `LocalBackend.WatchNotifications`).
1385    ///
1386    /// Returns an [`IpnBusWatcher`]; await [`next`](IpnBusWatcher::next) to receive [`Notify`]
1387    /// events that coalesce device-[`DeviceState`] changes (including the interactive-login URL as
1388    /// `browse_to_url`) and netmap peer-set changes into one feed. `mask`
1389    /// ([`NotifyWatchOpt`]) selects which current-state fields are front-loaded as an initial
1390    /// snapshot on subscribe (`INITIAL_STATE` / `INITIAL_NETMAP`), exactly like Go's
1391    /// `NotifyInitialState` / `NotifyInitialNetMap`.
1392    ///
1393    /// This composes the same `watch` cells as [`watch_state`](Self::watch_state),
1394    /// [`watch_netmap`](Self::watch_netmap), and `pop_browser_url` — one source of truth, so the
1395    /// merged feed cannot diverge from those narrow views. Besides the registration-time login URL
1396    /// (carried by `NeedsLogin`), `browse_to_url` also streams the mid-session
1397    /// `MapResponse.PopBrowserURL` (re-auth / consent on an already-running node). Delivery is
1398    /// best-effort/lossy (a bounded per-watcher buffer; a notification is dropped rather than
1399    /// blocking the runtime if a slow consumer's buffer fills), matching Go's bus. The stream ends
1400    /// (`next` returns `None`) on runtime shutdown or when the watcher is dropped.
1401    pub async fn watch_ipn_bus(&self, mask: NotifyWatchOpt) -> Result<IpnBusWatcher, Error> {
1402        // The peer-set cell lives on the peer-tracker actor; obtain a receiver the same way
1403        // `watch_netmap` does. State + shutdown cells are held here.
1404        let peer_rx = self
1405            .peer_tracker
1406            .upgrade()
1407            .ok_or(Error {
1408                kind: ErrorKind::ActorGone,
1409                target_actor: None,
1410                message_ty: None,
1411            })?
1412            .ask(peer_tracker::WatchNetmap)
1413            .await?;
1414        // The running-node consent-URL cell lives on the control runner; obtain its receiver the
1415        // same way (the control actor ref is strong, so no upgrade needed).
1416        let browser_rx = self.control.ask(control_runner::WatchBrowserUrl).await?;
1417        Ok(ipn_bus::spawn_watcher(
1418            mask,
1419            self.state_rx.clone(),
1420            peer_rx,
1421            browser_rx,
1422            self.shutdown.subscribe(),
1423        ))
1424    }
1425
1426    /// Attempt to shut down the runtime gracefully.
1427    ///
1428    /// Returns false if the shutdown timed out. It is still shut down if it timed out, just
1429    /// more violently and with possible resource leaks.
1430    pub async fn graceful_shutdown(self, timeout: Option<Duration>) -> bool {
1431        self.shutdown.send_replace(true);
1432
1433        async fn _shutdown_all(runtime: Runtime) {
1434            // See the note in `Drop` for why we only need to stop these actors to bring down the
1435            // whole runtime.
1436
1437            let _ignore = runtime.control.stop_gracefully().await;
1438            let _ignore = runtime.dataplane.stop_gracefully().await;
1439            let _ignore = runtime.env.bus.stop_gracefully().await;
1440
1441            tokio::join![
1442                runtime.control.wait_for_shutdown(),
1443                runtime.dataplane.wait_for_shutdown(),
1444                runtime.env.bus.wait_for_shutdown(),
1445            ];
1446        }
1447
1448        let fut = _shutdown_all(self);
1449
1450        match timeout {
1451            Some(timeout) => tokio::time::timeout(timeout, fut).await.is_ok(),
1452            None => {
1453                fut.await;
1454                true
1455            }
1456        }
1457    }
1458}
1459
1460impl Drop for Runtime {
1461    fn drop(&mut self) {
1462        // Stop the taildrop reaper so it cannot outlive the runtime (the `reauth_bridge` pattern). It
1463        // also self-exits when `shutdown` flips below, but aborting is immediate and covers the
1464        // already-shutdown early-return path too.
1465        if let Some(reaper) = self.taildrop_reaper.take() {
1466            reaper.abort();
1467        }
1468
1469        // We must have already run `graceful_shutdown`: on the happy path, this does nothing, but
1470        // if it timed out, we need to make sure the actors are dead so we don't leak them and their
1471        // dependents.
1472        if *self.shutdown.borrow() {
1473            self.control.kill();
1474            self.dataplane.kill();
1475            self.env.bus.kill();
1476            return;
1477        }
1478
1479        self.shutdown.send_replace(true);
1480
1481        // Actors shut down when the last ActorRef to them is dropped (as nothing can send them
1482        // messages anymore). If we don't hold an ActorRef in Runtime, in general the only thing
1483        // that has one is the MessageBus, which each actor subscribes to for a subset of messages.
1484        // Hence, if we shut down the bus, most actors die as well.
1485
1486        // First shut down the actors we have an ActorRef to:
1487        try_shutdown(&self.control);
1488        try_shutdown(&self.dataplane);
1489
1490        // Then shutdown the message bus, stopping the rest of the actors:
1491        try_shutdown(&self.env.bus);
1492    }
1493}
1494
1495fn try_shutdown(a: &ActorRef<impl kameo::Actor>) {
1496    if let Err(e) = a.mailbox_sender().try_send(Signal::Stop) {
1497        tracing::error!(error = %e, "graceful shutdown failed, killing actor");
1498        a.kill();
1499    }
1500}
1501
1502/// Tailscale's overlay MTU. The userspace netstacks MUST advertise an MSS that fits this so they
1503/// never hand the WireGuard encrypt path an IP packet larger than the tunnel can carry (the netstack
1504/// has no PMTU discovery and nothing re-segments between it and the 1280-MTU TUN). This is the same
1505/// default the TUN device uses (`tun_config_from_control`); both are derived from this value so the
1506/// netstack and the TUN always agree.
1507///
1508/// This is the **inner** IP-packet budget. The WireGuard transport header (a 16-byte
1509/// `TransportDataHeader` + the 16-byte AEAD tag = 32 bytes) is added by `TransmitSession::encrypt`
1510/// *after* the netstack produces the inner packet, and the outer UDP/IP headers ride on top of that.
1511/// So do NOT subtract the WireGuard overhead here — that would be a double-subtraction that
1512/// under-fills the tunnel and diverges from the TUN's MTU. The assert below documents that the outer
1513/// datagram still fits a conventional 1500-byte physical path with margin (1280 + 32 WG + 8 UDP +
1514/// 20 outer-IP = 1340).
1515const DEFAULT_OVERLAY_MTU: u16 = 1280;
1516
1517const _: () = assert!(
1518    DEFAULT_OVERLAY_MTU as usize + 32 + 8 + 20 <= 1500,
1519    "inner overlay MTU + WireGuard(32) + UDP(8) + outer-IP(20) must fit a 1500-byte physical path"
1520);
1521
1522/// Build the netstack config shared by both userspace netstacks (application + forwarder) from the
1523/// per-deployment `tcp_buffer_size` and `mtu` knobs.
1524///
1525/// `tcp_buffer_size`: `None` keeps the netstack default (256 KiB/direction); `Some(n)` overrides it
1526/// (e.g. a smaller window on a memory-constrained exit node forwarding many concurrent flows — see
1527/// [`netstack::netcore::Config::tcp_buffer_size`]).
1528///
1529/// `mtu`: the overlay/tunnel MTU. `None` (and a stray `0`) falls back to [`DEFAULT_OVERLAY_MTU`]
1530/// (1280), exactly as the TUN device does, so the netstack's advertised MSS fits the tunnel. Leaving
1531/// this at the netstack's generic 1500 default (the prior behavior) made smoltcp advertise MSS ~1460
1532/// and segment to ~1500 B, which then overflowed the 1280 TUN — a PMTU black-hole / throughput cliff.
1533///
1534/// Factored out of [`Runtime::spawn`] so the mapping is unit-testable without standing up the actors.
1535fn netstack_config_from(
1536    tcp_buffer_size: Option<usize>,
1537    mtu: Option<u16>,
1538) -> netstack::netcore::Config {
1539    let mut c = netstack::netcore::Config::default();
1540    if let Some(tcp_buffer_size) = tcp_buffer_size {
1541        c.tcp_buffer_size = tcp_buffer_size;
1542    }
1543    // `0` is not a usable MTU; treat it like `None` and fall back to the overlay default, mirroring
1544    // the TUN's `and_then(NonZeroU16::new).unwrap_or(1280)`.
1545    let mtu = mtu.filter(|&m| m != 0).unwrap_or(DEFAULT_OVERLAY_MTU);
1546    c.mtu = usize::from(mtu);
1547    c
1548}
1549
1550/// Filter a requested advertise-route set to the IPv4-only, deduplicated set this fork can honor,
1551/// mirroring [`ts_control::Config::advertised_routes`] so a runtime `set_advertise_routes` feeds the
1552/// wire (control grant) and the forwarder (accept/dial table) the identical final set. IPv6 prefixes
1553/// are dropped under the IPv6-off posture — we never advertise a route we won't forward. Order is
1554/// preserved (first occurrence wins). Factored out so the filter is unit-testable without an actor.
1555fn filter_advertise_routes(routes: Vec<ipnet::IpNet>) -> Vec<ipnet::IpNet> {
1556    let mut filtered: Vec<ipnet::IpNet> = Vec::new();
1557    for net in routes {
1558        if matches!(net, ipnet::IpNet::V4(_)) {
1559            if !filtered.contains(&net) {
1560                filtered.push(net);
1561            }
1562        } else {
1563            tracing::warn!(prefix = %net, "dropping IPv6 advertise route (IPv6-off posture)");
1564        }
1565    }
1566    filtered
1567}
1568
1569/// Compose the final advertised-route set from the explicit subnet `routes` and the exit-node flag,
1570/// mirroring [`ts_control::Config::advertised_routes`]: the IPv4-only, deduplicated subnet prefixes,
1571/// plus `0.0.0.0/0` appended when `exit_node` is set. This is the single source of truth both
1572/// runtime advertise mutators (`set_advertise_routes`, `set_advertise_exit_node`) feed, so the two
1573/// compose instead of clobbering. Factored out so the composition is unit-testable without an actor.
1574fn compose_advertised_routes(routes: Vec<ipnet::IpNet>, exit_node: bool) -> Vec<ipnet::IpNet> {
1575    let mut filtered = filter_advertise_routes(routes);
1576    if exit_node {
1577        let default_v4 = ipnet::IpNet::V4(
1578            ipnet::Ipv4Net::new(core::net::Ipv4Addr::UNSPECIFIED, 0)
1579                .expect("0.0.0.0/0 is a valid prefix"),
1580        );
1581        if !filtered.contains(&default_v4) {
1582            filtered.push(default_v4);
1583        }
1584    }
1585    filtered
1586}
1587
1588/// The runtime's live advertised-route preference: the explicit subnet routes plus whether this node
1589/// advertises itself as an exit node. Held behind a `Mutex` on the [`Runtime`] so
1590/// [`Runtime::set_advertise_routes`] and [`Runtime::set_advertise_exit_node`] each mutate their own
1591/// part and re-send the composed set — they compose rather than clobber (Go `EditPrefs` keeps
1592/// `AdvertiseRoutes` and the exit-node advertisement as independent prefs that both feed
1593/// `Hostinfo.RoutableIPs`).
1594#[derive(Debug, Default, Clone)]
1595struct AdvertiseState {
1596    /// The explicit subnet prefixes (pre-filter; the last value passed to `set_advertise_routes`).
1597    routes: Vec<ipnet::IpNet>,
1598    /// Whether this node advertises the exit-node default route (`0.0.0.0/0`).
1599    exit_node: bool,
1600}
1601
1602/// Flatten a kameo delegated-reply [`SendError`] for the id-token RPC into the RPC's own
1603/// [`ts_control::IdTokenError`].
1604///
1605/// A [`SendError::HandlerError`](kameo::error::SendError::HandlerError) carries the real
1606/// `IdTokenError` produced by the handler and is surfaced verbatim. Any other send failure (actor
1607/// not running / stopped, mailbox full, send timeout) is a delivery problem rather than an RPC
1608/// result, so it collapses to a transient [`ts_control::IdTokenError::NetworkError`]. Factored out
1609/// of [`Runtime::fetch_id_token`] so this mapping is unit-testable without standing up an actor.
1610fn flatten_send_err<M>(
1611    e: kameo::error::SendError<M, ts_control::IdTokenError>,
1612) -> ts_control::IdTokenError {
1613    match e {
1614        kameo::error::SendError::HandlerError(err) => err,
1615        _ => ts_control::IdTokenError::NetworkError,
1616    }
1617}
1618
1619/// Flatten a kameo `SendError` from the `Logout` ask into a [`ts_control::LogoutError`].
1620///
1621/// A `HandlerError` carries the real `LogoutError` from the control RPC and is surfaced verbatim;
1622/// any other send failure (actor not running / stopped, mailbox full, send timeout) — a delivery
1623/// problem, not a logout result — collapses to the transient [`ts_control::LogoutError::NetworkError`]
1624/// (logout is idempotent, so a retry after a delivery failure is safe). Factored out of
1625/// [`Runtime::logout`] so the mapping is unit-testable without standing up an actor.
1626fn flatten_logout_send_err<M>(
1627    e: kameo::error::SendError<M, ts_control::LogoutError>,
1628) -> ts_control::LogoutError {
1629    match e {
1630        kameo::error::SendError::HandlerError(err) => err,
1631        _ => ts_control::LogoutError::NetworkError,
1632    }
1633}
1634
1635/// Flatten a kameo `SendError` from the `SetDns` ask into a [`ts_control::SetDnsError`].
1636///
1637/// A `HandlerError` carries the real `SetDnsError` from the set-dns RPC and is surfaced verbatim;
1638/// any other send failure (actor not running / stopped, mailbox full, send timeout) — a delivery
1639/// problem, not a publish result — collapses to the transient
1640/// [`ts_control::SetDnsError::NetworkError`]. Factored out of [`Runtime::set_dns`] so the mapping is
1641/// unit-testable without standing up an actor.
1642fn flatten_set_dns_send_err<M>(
1643    e: kameo::error::SendError<M, ts_control::SetDnsError>,
1644) -> ts_control::SetDnsError {
1645    match e {
1646        kameo::error::SendError::HandlerError(err) => err,
1647        _ => ts_control::SetDnsError::NetworkError,
1648    }
1649}
1650
1651/// Flatten a kameo `SendError` from a TKA mutation ask (`TkaSign`/`TkaDisable`) into a
1652/// [`ts_control::TkaSyncError`]. A `HandlerError` carries the real RPC error; any other send failure
1653/// (actor shutdown / mailbox closed) is surfaced as the transient
1654/// [`ts_control::TkaSyncError::NetworkError`]. Generic over the message type so both share it.
1655fn flatten_tka_send_err<M>(
1656    e: kameo::error::SendError<M, ts_control::TkaSyncError>,
1657) -> ts_control::TkaSyncError {
1658    match e {
1659        kameo::error::SendError::HandlerError(err) => err,
1660        _ => ts_control::TkaSyncError::NetworkError,
1661    }
1662}
1663
1664/// Flatten a kameo `SendError` from the `GetCertificate` / `GetCertPair` ask into a
1665/// [`ts_control::CertError`].
1666///
1667/// A `HandlerError` carries the real `CertError` produced by the ACME issuance and is surfaced
1668/// verbatim. `CertError` has no transient-network variant, so any other send failure (actor not
1669/// running / stopped, mailbox full, send timeout) — a delivery problem rather than an issuance
1670/// result — collapses to a [`ts_control::CertError::Io`]. Generic over the message type, so it
1671/// serves both [`Runtime::get_certificate`] and [`Runtime::cert_pair`]; factored out so the mapping
1672/// is unit-testable without standing up an actor.
1673#[cfg(feature = "acme")]
1674fn flatten_cert_send_err<M>(
1675    e: kameo::error::SendError<M, ts_control::CertError>,
1676) -> ts_control::CertError {
1677    match e {
1678        kameo::error::SendError::HandlerError(err) => err,
1679        _ => ts_control::CertError::Io(std::io::Error::other(
1680            "control runner unavailable for certificate issuance",
1681        )),
1682    }
1683}
1684
1685#[cfg(test)]
1686mod tests {
1687    use super::*;
1688
1689    /// `None` must leave the netstack's own default TCP window in place (the 256 KiB throughput
1690    /// default), and must not silently coerce to some other value.
1691    #[test]
1692    fn netstack_config_none_uses_netstack_default() {
1693        let default = netstack::netcore::Config::default();
1694        let built = netstack_config_from(None, None);
1695        assert_eq!(
1696            built.tcp_buffer_size, default.tcp_buffer_size,
1697            "None must inherit the netstack default TCP buffer size"
1698        );
1699    }
1700
1701    #[test]
1702    fn netstack_config_mtu_defaults_to_overlay_not_generic_1500() {
1703        // The crux of the fix: with no explicit MTU, the netstack must use the 1280 overlay MTU, NOT
1704        // smoltcp's generic 1500 default — otherwise it advertises an MSS that overflows the tunnel.
1705        let built = netstack_config_from(None, None);
1706        assert_eq!(
1707            built.mtu,
1708            usize::from(DEFAULT_OVERLAY_MTU),
1709            "netstack MTU must default to the 1280 overlay MTU, not the 1500 netstack default"
1710        );
1711        assert_ne!(built.mtu, 1500, "must not leave the generic 1500 default");
1712    }
1713
1714    #[test]
1715    fn netstack_config_honors_explicit_mtu_and_rejects_zero() {
1716        // An explicit (control-supplied) MTU is honored verbatim.
1717        assert_eq!(netstack_config_from(None, Some(1400)).mtu, 1400);
1718        // A stray 0 is not a usable MTU; fall back to the overlay default (mirrors the TUN).
1719        assert_eq!(
1720            netstack_config_from(None, Some(0)).mtu,
1721            usize::from(DEFAULT_OVERLAY_MTU)
1722        );
1723    }
1724
1725    #[test]
1726    fn netstack_config_overlay_mtu_matches_tun_default() {
1727        // The netstack MTU default and the TUN MTU default must be the same value, or the two
1728        // netstacks and the TUN would disagree on the segment size budget.
1729        assert_eq!(
1730            DEFAULT_OVERLAY_MTU, 1280,
1731            "overlay MTU must match the TUN device default (tun_config_from_control)"
1732        );
1733    }
1734
1735    /// `Some(n)` must override the TCP window (the memory-vs-throughput knob exit-node operators
1736    /// reach for), reaching the config that both netstacks are built from.
1737    #[test]
1738    fn netstack_config_some_overrides_buffer() {
1739        let built = netstack_config_from(Some(64 * 1024), None);
1740        assert_eq!(
1741            built.tcp_buffer_size,
1742            64 * 1024,
1743            "Some(n) must override the TCP buffer size that both netstacks use"
1744        );
1745    }
1746
1747    /// `set_advertise_routes` must feed the wire and the forwarder the IDENTICAL filtered set:
1748    /// IPv4-only (IPv6 dropped under the IPv6-off posture), deduplicated, order preserved.
1749    #[test]
1750    fn filter_advertise_routes_keeps_v4_dedups_drops_v6() {
1751        let v4a: ipnet::IpNet = "10.0.0.0/24".parse().unwrap();
1752        let v4b: ipnet::IpNet = "192.168.1.0/24".parse().unwrap();
1753        let v6: ipnet::IpNet = "2001:db8::/32".parse().unwrap();
1754
1755        // Mixed input with a duplicate v4 and a v6 prefix.
1756        let out = filter_advertise_routes(vec![v4a, v6, v4b, v4a]);
1757
1758        assert_eq!(
1759            out,
1760            vec![v4a, v4b],
1761            "v6 dropped, duplicate v4 collapsed, first-occurrence order preserved"
1762        );
1763    }
1764
1765    /// An all-IPv6 request filters to empty (we never advertise a route we won't forward) rather
1766    /// than erroring — clearing the advertised set is a legitimate outcome.
1767    #[test]
1768    fn filter_advertise_routes_all_v6_is_empty() {
1769        let v6: ipnet::IpNet = "2001:db8::/32".parse().unwrap();
1770        assert!(filter_advertise_routes(vec![v6]).is_empty());
1771    }
1772
1773    /// `compose_advertised_routes` folds the exit-node `0.0.0.0/0` onto the filtered subnet routes
1774    /// when (and only when) the exit-node flag is set — so `set_advertise_routes` and
1775    /// `set_advertise_exit_node` compose. The two preferences are independent.
1776    #[test]
1777    fn compose_advertised_routes_folds_exit_node() {
1778        let subnet: ipnet::IpNet = "10.0.0.0/24".parse().unwrap();
1779        let default_v4: ipnet::IpNet = "0.0.0.0/0".parse().unwrap();
1780
1781        // Exit node off: just the (filtered) subnet routes.
1782        assert_eq!(
1783            compose_advertised_routes(vec![subnet], false),
1784            vec![subnet],
1785            "exit-node off ⇒ no default route"
1786        );
1787        // Exit node on: subnet routes PLUS 0.0.0.0/0.
1788        assert_eq!(
1789            compose_advertised_routes(vec![subnet], true),
1790            vec![subnet, default_v4],
1791            "exit-node on ⇒ 0.0.0.0/0 appended"
1792        );
1793        // Exit node on with NO subnet routes: just the default route.
1794        assert_eq!(
1795            compose_advertised_routes(vec![], true),
1796            vec![default_v4],
1797            "exit-node alone advertises only 0.0.0.0/0"
1798        );
1799        // Idempotent: an explicit 0.0.0.0/0 already in the routes isn't duplicated by the fold.
1800        assert_eq!(
1801            compose_advertised_routes(vec![default_v4], true),
1802            vec![default_v4],
1803            "the exit-node fold dedups against an explicit default route"
1804        );
1805    }
1806
1807    /// A `HandlerError` carries the real `IdTokenError` from the RPC handler and must pass through
1808    /// verbatim, not be flattened to a generic network error. Using an `Internal(_)` payload (not
1809    /// `NetworkError`) makes the passthrough observable: a buggy flatten that always returned
1810    /// `NetworkError` would fail this assertion.
1811    #[test]
1812    fn flatten_send_err_handler_error_passes_through() {
1813        // Build an `Internal(_)` payload via the public `From<Utf8Error>` conversion (no extra
1814        // deps): it is distinct from the `_ => NetworkError` fallback, so a buggy flatten that
1815        // always returned `NetworkError` would fail this assertion.
1816        // Route the invalid bytes through a runtime Vec so the `invalid_from_utf8` lint (which only
1817        // fires on compile-time-known literals) doesn't flag this intentional bad input.
1818        let bytes = vec![0xffu8, 0xfe];
1819        let utf8_err = core::str::from_utf8(&bytes).unwrap_err();
1820        let inner = ts_control::IdTokenError::from(utf8_err);
1821        assert!(matches!(inner, ts_control::IdTokenError::Internal(_)));
1822        let e: kameo::error::SendError<control_runner::FetchIdToken, ts_control::IdTokenError> =
1823            kameo::error::SendError::HandlerError(inner.clone());
1824        assert_eq!(flatten_send_err(e), inner);
1825    }
1826
1827    /// A non-handler send failure (actor stopped) is a delivery problem, not an RPC result, so it
1828    /// must collapse to a transient `NetworkError`.
1829    #[test]
1830    fn flatten_send_err_actor_stopped_is_network_error() {
1831        let e: kameo::error::SendError<control_runner::FetchIdToken, ts_control::IdTokenError> =
1832            kameo::error::SendError::ActorStopped;
1833        assert_eq!(flatten_send_err(e), ts_control::IdTokenError::NetworkError);
1834    }
1835
1836    /// `ActorNotRunning` (the message bounces back undelivered) is likewise a delivery failure and
1837    /// must map to a transient `NetworkError`.
1838    #[test]
1839    fn flatten_send_err_actor_not_running_is_network_error() {
1840        let e: kameo::error::SendError<control_runner::FetchIdToken, ts_control::IdTokenError> =
1841            kameo::error::SendError::ActorNotRunning(control_runner::FetchIdToken {
1842                audience: "sts.amazonaws.com".to_string(),
1843            });
1844        assert_eq!(flatten_send_err(e), ts_control::IdTokenError::NetworkError);
1845    }
1846
1847    /// A `HandlerError` from the logout RPC carries the real `LogoutError` and must pass through
1848    /// verbatim. An `Internal(_)` payload (distinct from the `_ => NetworkError` fallback) makes the
1849    /// passthrough observable.
1850    #[test]
1851    fn flatten_logout_send_err_handler_error_passes_through() {
1852        let inner = ts_control::LogoutError::Internal(ts_control::LogoutInternalErrorKind::Http);
1853        assert!(matches!(inner, ts_control::LogoutError::Internal(_)));
1854        let e: kameo::error::SendError<control_runner::Logout, ts_control::LogoutError> =
1855            kameo::error::SendError::HandlerError(inner.clone());
1856        assert_eq!(flatten_logout_send_err(e), inner);
1857    }
1858
1859    /// A non-handler send failure (actor stopped) is a delivery problem, not a logout result, and
1860    /// collapses to a transient `NetworkError` (logout is idempotent, so a retry is safe).
1861    #[test]
1862    fn flatten_logout_send_err_actor_stopped_is_network_error() {
1863        let e: kameo::error::SendError<control_runner::Logout, ts_control::LogoutError> =
1864            kameo::error::SendError::ActorStopped;
1865        assert_eq!(
1866            flatten_logout_send_err(e),
1867            ts_control::LogoutError::NetworkError
1868        );
1869    }
1870
1871    /// A `HandlerError` from the set-dns RPC carries the real `SetDnsError` and must pass through
1872    /// verbatim. An `Internal(_)` payload (distinct from the `_ => NetworkError` fallback) makes the
1873    /// passthrough observable.
1874    #[test]
1875    fn flatten_set_dns_send_err_handler_error_passes_through() {
1876        let inner = ts_control::SetDnsError::Internal(ts_control::SetDnsInternalErrorKind::Http);
1877        assert!(matches!(inner, ts_control::SetDnsError::Internal(_)));
1878        let e: kameo::error::SendError<control_runner::SetDns, ts_control::SetDnsError> =
1879            kameo::error::SendError::HandlerError(inner.clone());
1880        assert_eq!(flatten_set_dns_send_err(e), inner);
1881    }
1882
1883    /// A non-handler send failure (actor stopped) is a delivery problem, not a publish result, and
1884    /// collapses to a transient `NetworkError`.
1885    #[test]
1886    fn flatten_set_dns_send_err_actor_stopped_is_network_error() {
1887        let e: kameo::error::SendError<control_runner::SetDns, ts_control::SetDnsError> =
1888            kameo::error::SendError::ActorStopped;
1889        assert_eq!(
1890            flatten_set_dns_send_err(e),
1891            ts_control::SetDnsError::NetworkError
1892        );
1893    }
1894
1895    /// A `HandlerError` from a TKA mutation RPC carries the real `TkaSyncError` and must pass through
1896    /// verbatim (an `Unsupported` payload makes the passthrough observable, distinct from the
1897    /// `_ => NetworkError` fallback).
1898    #[test]
1899    fn flatten_tka_send_err_handler_error_passes_through() {
1900        let e: kameo::error::SendError<control_runner::TkaSign, ts_control::TkaSyncError> =
1901            kameo::error::SendError::HandlerError(ts_control::TkaSyncError::Unsupported);
1902        assert_eq!(
1903            flatten_tka_send_err(e),
1904            ts_control::TkaSyncError::Unsupported
1905        );
1906    }
1907
1908    /// A non-handler send failure (actor stopped) collapses to a transient `NetworkError`.
1909    #[test]
1910    fn flatten_tka_send_err_actor_stopped_is_network_error() {
1911        let e: kameo::error::SendError<control_runner::TkaSign, ts_control::TkaSyncError> =
1912            kameo::error::SendError::ActorStopped;
1913        assert_eq!(
1914            flatten_tka_send_err(e),
1915            ts_control::TkaSyncError::NetworkError
1916        );
1917    }
1918
1919    /// The same flatten works for the `TkaDisable` message type (the helper is generic over `M`).
1920    #[test]
1921    fn flatten_tka_send_err_works_for_disable() {
1922        let e: kameo::error::SendError<control_runner::TkaDisable, ts_control::TkaSyncError> =
1923            kameo::error::SendError::HandlerError(ts_control::TkaSyncError::Unsupported);
1924        assert_eq!(
1925            flatten_tka_send_err(e),
1926            ts_control::TkaSyncError::Unsupported
1927        );
1928    }
1929}