nvpn 4.0.96

CLI and daemon for Nostr VPN private mesh networks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
async fn fips_relay_statuses_from_runtime(
    runtime: &Option<crate::fips_private_mesh::FipsPrivateTunnelRuntime>,
) -> Vec<DaemonRelayState> {
    let Some(runtime) = runtime.as_ref() else {
        return Vec::new();
    };
    match runtime.relay_statuses().await {
        Ok(relays) => relays
            .into_iter()
            .map(|relay| DaemonRelayState {
                url: relay.url,
                status: relay.status,
            })
            .collect(),
        Err(error) => {
            eprintln!("fips: relay status snapshot failed: {error}");
            Vec::new()
        }
    }
}
macro_rules! current_fips_relay_statuses {
    ($runtime:expr) => {
        fips_relay_statuses_from_runtime($runtime)
    };
}
pub(crate) const FIPS_STALE_PARTICIPANT_RESTART_COOLDOWN_SECS: u64 = 60;
pub(crate) const FIPS_PENDING_ROSTER_RESTART_GRACE_SECS: u64 = 45;
macro_rules! current_fips_advertised_routes {
    ($runtime:expr, $app:expr) => {
        $runtime
            .as_ref()
            .map(|runtime| {
                let mut map = std::collections::HashMap::<String, Vec<String>>::new();
                for participant in $app.participant_pubkeys_hex() {
                    let routes = runtime.peer_advertised_routes(&participant);
                    if !routes.is_empty() {
                        map.insert(participant, routes);
                    }
                }
                map
            })
            .unwrap_or_default()
    };
}
fn fips_peer_count(
    app: &AppConfig,
    own_pubkey: Option<&str>,
    peer_statuses: &[MeshPeerStatus],
) -> usize {
    let participant_pubkeys_list = app.participant_pubkeys_hex();
    let participant_pubkeys = participant_pubkeys_list
        .iter()
        .cloned()
        .collect::<HashSet<_>>();
    peer_statuses
        .iter()
        .filter(|status| Some(status.pubkey.as_str()) != own_pubkey)
        .filter(|status| participant_pubkeys.contains(&status.pubkey))
        .filter(|status| status.connected)
        .count()
}
fn maybe_log_fips_mesh_count(
    app: &AppConfig,
    own_pubkey: Option<&str>,
    peer_statuses: &[MeshPeerStatus],
    expected_peers: usize,
    last_mesh_count: &mut usize,
) {
    let connected = fips_peer_count(app, own_pubkey, peer_statuses);
    if connected != *last_mesh_count {
        println!("mesh: {connected}/{expected_peers} peers connected");
        *last_mesh_count = connected;
    }
}

fn credible_daemon_peer_timestamp(now: u64, timestamp: Option<u64>) -> Option<u64> {
    let timestamp = timestamp?;
    if timestamp > now && timestamp - now > DAEMON_PEER_MAX_FUTURE_SKEW_SECS {
        return None;
    }
    Some(timestamp)
}
async fn flush_pending_fips_roster_recipients(
    runtime: &crate::fips_private_mesh::FipsPrivateTunnelRuntime,
    app: &AppConfig,
    config_path: &Path,
    pending_recipients: &mut HashSet<String>,
) {
    if pending_recipients.is_empty() {
        return;
    }
    match publish_fips_active_network_roster(runtime, app, config_path, pending_recipients).await {
        Ok(_) => {}
        Err(error) => eprintln!("fips: queued roster publish failed: {error}"),
    }
}
pub(crate) type EndpointPeerSignature =
    Vec<(String, bool, bool, Vec<(String, Option<u64>, u8)>)>;
struct RecentPeerRefresh<'a> {
    recent_peers: &'a mut nostr_vpn_core::recent_peers::RecentPeerEndpoints,
    recent_peers_path: &'a std::path::Path,
    last_endpoint_peer_signature: &'a mut EndpointPeerSignature,
}
struct FipsRestartContext<'a> {
    app: &'a nostr_vpn_core::config::AppConfig,
    config_path: &'a std::path::Path,
    network_id: &'a str,
    fallback_iface: &'a str,
    underlay_interface_mtu: Option<u32>,
    own_pubkey: Option<&'a str>,
    recent_peers: Option<&'a nostr_vpn_core::recent_peers::RecentPeerEndpoints>,
    last_endpoint_peer_signature: &'a mut EndpointPeerSignature,
}
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum FipsLinkEventRefresh {
    None,
    RestartEndpoint,
    RefreshPaths,
}
#[derive(Debug, Default)]
pub(crate) struct FipsPendingRosterRestartState {
    pending_since: Option<u64>,
    last_restart_at: Option<u64>,
}
pub(crate) fn fips_link_event_refresh(
    platform_network_event: bool,
    network_changed: bool,
    endpoint_changed: bool,
    resumed_after_sleep: bool,
) -> FipsLinkEventRefresh {
    if network_changed || resumed_after_sleep {
        FipsLinkEventRefresh::RestartEndpoint
    } else if platform_network_event || endpoint_changed {
        FipsLinkEventRefresh::RefreshPaths
    } else {
        FipsLinkEventRefresh::None
    }
}
pub(crate) fn fips_stale_participant_restart_due(
    last_restart_at: &mut Option<u64>,
    now: u64,
) -> bool {
    let due = last_restart_at.is_none_or(|last_restart_at| {
        now < last_restart_at
            || now.saturating_sub(last_restart_at)
                >= FIPS_STALE_PARTICIPANT_RESTART_COOLDOWN_SECS
    });
    if due {
        *last_restart_at = Some(now);
    }
    due
}

pub(crate) fn fips_endpoint_control_requires_runtime_replacement(error: &anyhow::Error) -> bool {
    error.chain().any(|cause| {
        cause
            .downcast_ref::<fips_endpoint::FipsEndpointError>()
            .is_some_and(|error| {
                matches!(
                    error,
                    fips_endpoint::FipsEndpointError::Closed
                        | fips_endpoint::FipsEndpointError::Timeout { .. }
                )
            })
    })
}

fn fips_pending_roster_links_detected(
    peer_statuses: &[MeshPeerStatus],
    relay_statuses: &[DaemonRelayState],
    roster_pubkeys: &HashSet<String>,
    expected_peers: usize,
) -> bool {
    if expected_peers == 0
        || roster_pubkeys.is_empty()
        || !relay_statuses
            .iter()
            .any(|relay| relay.status.eq_ignore_ascii_case("connected"))
    {
        return false;
    }
    if peer_statuses
        .iter()
        .any(|status| roster_pubkeys.contains(&status.pubkey) && status.connected)
    {
        return false;
    }
    let pending = peer_statuses
        .iter()
        .filter(|status| {
            roster_pubkeys.contains(&status.pubkey)
                && !status.connected
                && status.last_seen_at.is_none()
                && status.error.as_deref() == Some("fips link pending")
        })
        .count();
    pending >= expected_peers
}
pub(crate) fn fips_pending_roster_restart_due(
    peer_statuses: &[MeshPeerStatus],
    relay_statuses: &[DaemonRelayState],
    roster_pubkeys: &HashSet<String>,
    expected_peers: usize,
    state: &mut FipsPendingRosterRestartState,
    now: u64,
) -> bool {
    if !fips_pending_roster_links_detected(
        peer_statuses,
        relay_statuses,
        roster_pubkeys,
        expected_peers,
    ) {
        state.pending_since = None;
        return false;
    }
    let pending_since = match state.pending_since {
        Some(pending_since) if now >= pending_since => pending_since,
        _ => {
            state.pending_since = Some(now);
            return false;
        }
    };
    if now.saturating_sub(pending_since) < FIPS_PENDING_ROSTER_RESTART_GRACE_SECS {
        return false;
    }
    if !fips_stale_participant_restart_due(&mut state.last_restart_at, now) {
        return false;
    }
    state.pending_since = None;
    true
}
fn endpoint_peer_signature(
    endpoint_peers: &[crate::fips_private_mesh::FipsEndpointPeerTransportConfig],
) -> EndpointPeerSignature {
    endpoint_peers
        .iter()
        .map(|peer| {
            let mut addresses = peer
                .addresses
                .iter()
                .map(|hint| (hint.addr.clone(), hint.seen_at_ms, hint.priority))
                .collect::<Vec<_>>();
            addresses.sort();
            addresses.dedup();
            (
                peer.npub.clone(),
                peer.auto_reconnect,
                peer.discovery_fallback_transit,
                addresses,
            )
        })
        .collect()
}
pub(crate) fn daemon_endpoint_peer_states_from_signature(
    signature: &EndpointPeerSignature,
) -> Vec<DaemonFipsEndpointPeerState> {
    signature
        .iter()
        .map(
            |(npub, auto_reconnect, discovery_fallback_transit, addresses)| {
                DaemonFipsEndpointPeerState {
                    npub: npub.clone(),
                    addresses: addresses
                        .iter()
                        .map(|(addr, seen_at_ms, priority)| DaemonFipsEndpointPeerAddressState {
                            addr: addr.clone(),
                            seen_at_ms: *seen_at_ms,
                            priority: *priority,
                        })
                        .collect(),
                    auto_reconnect: *auto_reconnect,
                    discovery_fallback_transit: *discovery_fallback_transit,
                }
            },
        )
        .collect()
}
fn endpoint_peers_for_participant_refresh(
    endpoint_peers: &[crate::fips_private_mesh::FipsEndpointPeerTransportConfig],
    participants: &[String],
) -> Vec<crate::fips_private_mesh::FipsEndpointPeerTransportConfig> {
    if participants.is_empty() {
        return Vec::new();
    }

    let participant_keys = participants
        .iter()
        .filter_map(|participant| {
            nostr_sdk::prelude::PublicKey::parse(participant.trim())
                .ok()
                .map(|key| *key.as_bytes())
        })
        .collect::<std::collections::HashSet<_>>();
    if participant_keys.is_empty() {
        return Vec::new();
    }

    endpoint_peers
        .iter()
        .filter(|peer| {
            nostr_sdk::prelude::PublicKey::parse(peer.npub.trim())
                .ok()
                .is_some_and(|key| participant_keys.contains(key.as_bytes()))
        })
        .cloned()
        .collect()
}

/// Snapshot the runtime's authenticated peer transport addresses, update
/// the on-disk recent-peers cache, and hand fips the refreshed peer hint
/// list via `update_peers` so new direct candidates race the existing ones
/// in the next dial cycle without restarting the endpoint. Public (non-LAN)
/// endpoints get rotated into the cache, including authenticated non-roster
/// transit peers; mesh-carried live hints can include LAN endpoints but stay
/// in memory only.
async fn update_recent_peers_from_runtime(
    runtime: &crate::fips_private_mesh::FipsPrivateTunnelRuntime,
    app: &nostr_vpn_core::config::AppConfig,
    network_id: &str,
    own_pubkey: Option<&str>,
    refresh: RecentPeerRefresh<'_>,
    now: u64,
) {
    let snapshot = match runtime.authenticated_peer_transport_addrs().await {
        Ok(snapshot) => snapshot,
        Err(error) => {
            eprintln!("fips: peer endpoint snapshot failed: {error}");
            Vec::new()
        }
    };
    let mut changed = false;
    for (participant, addr) in snapshot {
        if refresh.recent_peers.note_success(&participant, &addr, now) {
            changed = true;
        }
    }
    if refresh
        .recent_peers
        .prune_stale(now, crate::recent_peers_store::RECENT_PEERS_TTL_SECS)
    {
        changed = true;
    }
    if changed
        && let Err(error) = crate::recent_peers_store::write_recent_peers(
            refresh.recent_peers_path,
            refresh.recent_peers,
        )
    {
        eprintln!(
            "daemon: failed to write recent peers cache {}: {error}",
            refresh.recent_peers_path.display()
        );
    }
    let live_peer_endpoints = runtime.peer_endpoint_hints();
    let refreshed = {
        let app = app.clone();
        let network_id = network_id.to_string();
        let iface = runtime.iface().to_string();
        let own_pubkey = own_pubkey.map(ToOwned::to_owned);
        let recent_peers = refresh.recent_peers.clone();
        tokio::task::spawn_blocking(move || {
            crate::fips_private_mesh::FipsPrivateTunnelConfig::from_app(
                &app,
                &network_id,
                iface,
                own_pubkey.as_deref(),
                Some(&recent_peers),
                &live_peer_endpoints,
            )
        })
        .await
    };
    match refreshed {
        Ok(Ok(refreshed)) => {
            let signature = endpoint_peer_signature(&refreshed.endpoint_peers);
            if signature == *refresh.last_endpoint_peer_signature {
                return;
            }
            if let Err(error) = runtime.update_peers(&refreshed.endpoint_peers).await {
                eprintln!("fips: update_peers (cache refresh) failed: {error}");
            } else {
                *refresh.last_endpoint_peer_signature = signature;
            }
        }
        Ok(Err(error)) => {
            eprintln!("fips: rebuilding peer hint list failed: {error}");
        }
        Err(error) => {
            eprintln!("fips: peer hint rebuild task failed: {error}");
        }
    }
}
async fn refresh_fips_tunnel_runtime_after_link_event(
    runtime: &mut Option<crate::fips_private_mesh::FipsPrivateTunnelRuntime>,
    context: FipsRestartContext<'_>,
    reason: &str,
    restart_endpoint: bool,
) -> Result<()> {
    let config_iface = runtime
        .as_ref()
        .map(|runtime| runtime.iface().to_string())
        .unwrap_or_else(|| context.fallback_iface.to_string());
    // Do not carry learned endpoint hints across link changes. They may belong
    // to a previous underlay or NAT mapping.
    let live_peer_endpoints = Vec::new();
    let config = fips_tunnel_config_from_app_async(
        FipsTunnelConfigInput {
            app: context.app,
            config_path: context.config_path,
            network_id: context.network_id,
            iface: config_iface,
            underlay_interface_mtu: context.underlay_interface_mtu,
            own_pubkey: context.own_pubkey,
            recent_peers: context.recent_peers,
            live_peer_endpoints: &live_peer_endpoints,
        },
    )
    .await?;
    let endpoint_peer_signature = endpoint_peer_signature(&config.endpoint_peers);
    if restart_endpoint
        || runtime
            .as_ref()
            .is_some_and(|existing| existing.requires_endpoint_restart(&config))
    {
        if let Some(existing) = runtime.take() {
            existing.stop().await?;
        }
        let started = crate::fips_private_mesh::FipsPrivateTunnelRuntime::start(config).await?;
        eprintln!(
            "daemon: restarted FIPS private mesh on {} after {reason}",
            started.iface()
        );
        *runtime = Some(started);
    } else if let Some(existing) = runtime.as_mut() {
        existing.apply_config(config).await?;
        eprintln!(
            "daemon: refreshed FIPS private mesh paths on {} after {reason}",
            existing.iface()
        );
    } else {
        let started = crate::fips_private_mesh::FipsPrivateTunnelRuntime::start(config).await?;
        eprintln!("daemon: FIPS private mesh on {} after {reason}", started.iface());
        *runtime = Some(started);
    }
    *context.last_endpoint_peer_signature = endpoint_peer_signature;
    Ok(())
}

async fn rebuild_fips_tunnel_runtime_after_control_failure(
    runtime: &mut Option<crate::fips_private_mesh::FipsPrivateTunnelRuntime>,
    context: FipsRestartContext<'_>,
    reason: &str,
) -> Result<()> {
    let config_iface = runtime
        .as_ref()
        .map(|runtime| runtime.iface().to_string())
        .unwrap_or_else(|| context.fallback_iface.to_string());
    let live_peer_endpoints = runtime
        .as_ref()
        .map(|runtime| runtime.peer_endpoint_hints())
        .unwrap_or_default();
    let config = fips_tunnel_config_from_app_async(FipsTunnelConfigInput {
        app: context.app,
        config_path: context.config_path,
        network_id: context.network_id,
        iface: config_iface,
        underlay_interface_mtu: context.underlay_interface_mtu,
        own_pubkey: context.own_pubkey,
        recent_peers: context.recent_peers,
        live_peer_endpoints: &live_peer_endpoints,
    })
    .await?;
    let endpoint_peer_signature = endpoint_peer_signature(&config.endpoint_peers);

    if let Some(existing) = runtime.take()
        && let Err(error) = existing.stop().await
    {
        eprintln!("fips: unresponsive endpoint shutdown was forced: {error:#}");
    }
    let started = crate::fips_private_mesh::FipsPrivateTunnelRuntime::start(config).await?;
    eprintln!(
        "daemon: rebuilt FIPS private mesh on {} after {reason}",
        started.iface()
    );
    *runtime = Some(started);
    *context.last_endpoint_peer_signature = endpoint_peer_signature;
    Ok(())
}
async fn restart_fips_tunnel_runtime_after_stale_participants(
    runtime: &mut Option<crate::fips_private_mesh::FipsPrivateTunnelRuntime>,
    context: FipsRestartContext<'_>,
    last_restart_at: &mut Option<u64>,
    now: u64,
) -> Result<bool> {
    let stale_participants = runtime
        .as_ref()
        .map(|runtime| runtime.stale_participants_needing_path_refresh(now))
        .unwrap_or_default();
    if stale_participants.is_empty() {
        return Ok(false);
    }
    if !fips_stale_participant_restart_due(last_restart_at, now) {
        return Ok(false);
    }
    eprintln!(
        "daemon: refreshing FIPS peer paths after {} participant(s) stopped responding while endpoint paths need refresh",
        stale_participants.len()
    );
    refresh_fips_tunnel_runtime_peer_paths(runtime, context, &stale_participants).await
}
async fn refresh_fips_tunnel_runtime_peer_paths(
    runtime: &mut Option<crate::fips_private_mesh::FipsPrivateTunnelRuntime>,
    context: FipsRestartContext<'_>,
    stale_participants: &[String],
) -> Result<bool> {
    let Some(current) = runtime.as_ref() else {
        return Ok(false);
    };
    refresh_fips_tunnel_runtime_peer_paths_in_place(
        current,
        context,
        stale_participants,
        "stale participant liveness",
    )
    .await?;
    Ok(false)
}
async fn refresh_fips_tunnel_runtime_peer_paths_in_place(
    current: &crate::fips_private_mesh::FipsPrivateTunnelRuntime,
    context: FipsRestartContext<'_>,
    participants: &[String],
    reason: &str,
) -> Result<()> {
    let live_peer_endpoints = current.peer_endpoint_hints();
    let config = fips_tunnel_config_from_app_async(
        FipsTunnelConfigInput {
            app: context.app,
            config_path: context.config_path,
            network_id: context.network_id,
            iface: current.iface().to_string(),
            underlay_interface_mtu: context.underlay_interface_mtu,
            own_pubkey: context.own_pubkey,
            recent_peers: context.recent_peers,
            live_peer_endpoints: &live_peer_endpoints,
        },
    )
    .await?;
    let endpoint_peer_signature = endpoint_peer_signature(&config.endpoint_peers);
    let outcome = current.update_peers(&config.endpoint_peers).await?;
    let refresh_endpoint_peers =
        endpoint_peers_for_participant_refresh(&config.endpoint_peers, participants);
    if refresh_endpoint_peers.is_empty() {
        eprintln!(
            "daemon: no matching FIPS endpoint peer paths for {} participant(s) after {reason}",
            participants.len()
        );
        *context.last_endpoint_peer_signature = endpoint_peer_signature;
        return Ok(());
    }
    let refreshed = current.refresh_peer_paths(&refresh_endpoint_peers).await?;
    *context.last_endpoint_peer_signature = endpoint_peer_signature;
    eprintln!(
        "daemon: refreshed FIPS endpoint peer paths in place after {reason} (targets={} added={} updated={} unchanged={} removed={} direct_refreshes={})",
        refresh_endpoint_peers.len(),
        outcome.added,
        outcome.updated,
        outcome.unchanged,
        outcome.removed,
        refreshed
    );
    Ok(())
}
async fn restart_fips_tunnel_runtime_after_pending_roster_links(
    runtime: &mut Option<crate::fips_private_mesh::FipsPrivateTunnelRuntime>,
    context: FipsRestartContext<'_>,
    expected_peers: usize,
    state: &mut FipsPendingRosterRestartState,
    now: u64,
) -> Result<bool> {
    let Some(current) = runtime.as_ref() else {
        return Ok(false);
    };
    let peer_statuses = current.peer_statuses();
    let relay_statuses = match current.relay_statuses().await {
        Ok(relays) => relays
            .into_iter()
            .map(|relay| DaemonRelayState {
                url: relay.url,
                status: relay.status,
            })
            .collect::<Vec<_>>(),
        Err(error) => {
            eprintln!("fips: relay status snapshot failed during pending roster recovery: {error}");
            Vec::new()
        }
    };
    if !fips_pending_roster_restart_due(
        &peer_statuses,
        &relay_statuses,
        &fips_roster_pubkeys(context.app, context.own_pubkey),
        expected_peers,
        state,
        now,
    ) {
        return Ok(false);
    }
    eprintln!(
        "daemon: refreshing FIPS private mesh paths after all {expected_peers} roster link(s) stayed pending with relay discovery connected"
    );
    refresh_fips_tunnel_runtime_after_link_event(
        runtime,
        context,
        "all FIPS roster links pending",
        false,
    )
    .await?;
    Ok(true)
}
fn fips_roster_pubkeys(app: &AppConfig, own_pubkey: Option<&str>) -> HashSet<String> {
    app.participant_pubkeys_hex()
        .into_iter()
        .filter(|participant| Some(participant.as_str()) != own_pubkey)
        .collect()
}

fn prefer_nonself_tunnel_snapshot(
    tunnel_runtime: &CliTunnelRuntime,
    wireguard_exit_interface: Option<&str>,
    previous: &crate::diagnostics::NetworkSnapshot,
    latest: crate::diagnostics::NetworkSnapshot,
) -> crate::diagnostics::NetworkSnapshot {
    let latest = crate::diagnostics::prefer_nonempty_network_snapshot(previous, latest);
    if latest.default_interface.is_some()
        && latest.default_interface == previous.default_interface
        && previous.primary_ipv4.is_some()
        && latest.primary_ipv4.is_none()
        && latest.gateway_ipv4.is_none()
    {
        return previous.clone();
    }
    match latest.default_interface.as_deref() {
        Some(iface)
            if tunnel_runtime.owns_interface(iface)
                || wireguard_exit_interface.is_some_and(|managed| managed == iface) =>
        {
            previous.clone()
        }
        _ => latest,
    }
}

async fn capture_network_snapshot_for_daemon() -> crate::diagnostics::NetworkSnapshot {
    match tokio::task::spawn_blocking(capture_network_snapshot).await {
        Ok(snapshot) => snapshot,
        Err(error) => {
            eprintln!("daemon: network snapshot task failed: {error}");
            crate::diagnostics::NetworkSnapshot::default()
        }
    }
}

fn spawn_platform_network_change_monitor() -> Option<tokio::sync::mpsc::Receiver<()>> {
    #[cfg(target_os = "linux")]
    {
        crate::linux_network::spawn_linux_route_change_monitor()
    }
    #[cfg(target_os = "macos")]
    {
        crate::macos_network::spawn_macos_route_change_monitor()
    }
    #[cfg(target_os = "windows")]
    {
        crate::windows_network::spawn_windows_route_change_monitor()
    }
    #[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "windows")))]
    {
        None
    }
}

async fn recv_platform_network_change(
    rx: &mut Option<tokio::sync::mpsc::Receiver<()>>,
) -> Option<()> {
    match rx.as_mut() {
        Some(rx) => rx.recv().await,
        None => std::future::pending().await,
    }
}

fn drain_platform_network_changes(rx: &mut Option<tokio::sync::mpsc::Receiver<()>>) {
    let Some(rx) = rx.as_mut() else {
        return;
    };
    while rx.try_recv().is_ok() {}
}