nlink 0.24.0

Async netlink library for Linux network configuration
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
//! A `kube-rs`-style reflector: keep an in-memory [`Store`]
//! continuously up to date from a resync-aware event stream.
//!
//! Plan 195. Builds directly on the resync types
//! ([`ResyncedEvent`]) and the
//! [`ResyncStreamExt`](super::resync_ext::ResyncStreamExt)
//! combinators — no new dependency.
//!
//! # The shape
//!
//! - [`Store<K, V>`] is a cheap-to-clone, read-only handle over a
//!   shared `HashMap<K, V>`. Clone it freely; every clone observes
//!   the same backing map.
//! - [`ReflectExt::reflect`] wraps any
//!   `Stream<Item = Result<ResyncedEvent<V>>>` (e.g. the output of
//!   `into_events_with_resync`) into a **pass-through** stream that
//!   applies each item to a `Store` *before* re-yielding it. You
//!   still drive the returned stream — typically in a spawned task —
//!   and read the `Store` from anywhere else.
//! - A caller-supplied closure maps each event payload to a
//!   [`StoreOp`] (`Upsert` / `Remove` / `Ignore`), so the reflector
//!   stays generic over the protocol. For the route protocol's
//!   [`NetworkEvent`](super::events::NetworkEvent), that closure is
//!   a `match` on `NewLink => Upsert`, `DelLink => Remove`, …
//!
//! During a resync window (`Marker(ResyncStart)` …
//! `Marker(ResyncEnd)`) the reflector stages a *fresh* snapshot from
//! the `Resynced(V)` replay and swaps it in atomically at
//! `ResyncEnd`, so a post-`ENOBUFS` redump replaces stale state
//! rather than merging into it.
//!
//! # Example
//!
//! ```ignore
//! use nlink::netlink::reflector::{ReflectExt, Store, StoreOp};
//! use nlink::netlink::events::NetworkEvent;
//! use tokio_stream::StreamExt;
//!
//! let store: Store<u32, NetworkEvent> = Store::new();
//! let reader = store.clone();
//!
//! // Drive the reflector in the background…
//! let watch = conn.into_events_with_resync(factory)?.reflect(store, |ev| {
//!     match ev {
//!         NetworkEvent::NewLink(l) => StoreOp::Upsert(l.ifindex()),
//!         NetworkEvent::DelLink(l) => StoreOp::Remove(l.ifindex()),
//!         _ => StoreOp::Ignore,
//!     }
//! });
//! tokio::spawn(async move {
//!     let mut watch = watch;
//!     while let Some(item) = watch.next().await {
//!         let _ = item; // pass-through; handle/log if you like
//!     }
//! });
//!
//! // …and read the cache from elsewhere.
//! println!("{} links currently tracked", reader.len());
//! ```

use std::collections::HashMap;
use std::hash::Hash;
use std::pin::Pin;
use std::sync::{Arc, RwLock};
use std::task::{Context, Poll};

use tokio_stream::Stream;

use super::resync::{ResyncMarker, ResyncedEvent};

/// What a reflector should do to its [`Store`] for a given event.
///
/// Returned by the closure passed to [`ReflectExt::reflect`]. The
/// closure inspects the event payload (which, for nlink's typed
/// event enums, already encodes add-vs-delete) and picks the op.
#[derive(Debug, Clone, PartialEq, Eq)]
#[non_exhaustive]
pub enum StoreOp<K> {
    /// Insert or replace the value under this key.
    Upsert(K),
    /// Remove the entry under this key, if present.
    Remove(K),
    /// Leave the store unchanged (event not relevant to this cache).
    Ignore,
}

/// A cheap-to-clone, read-only view over a `HashMap<K, V>` kept up
/// to date by a [reflector](ReflectExt::reflect).
///
/// Cloning a `Store` shares the backing map (it's an `Arc` inside),
/// so a reflector task and any number of readers all observe the
/// same state. All accessors take a brief read lock; they never
/// block on the reflector except for the lock's own critical
/// section (no `.await` is ever held across the lock).
pub struct Store<K, V> {
    inner: Arc<RwLock<HashMap<K, V>>>,
}

// Manual `Clone` so a `Store` clones by sharing the `Arc`, with no
// `K: Clone` / `V: Clone` bound (a derived `Clone` would demand them).
impl<K, V> Clone for Store<K, V> {
    fn clone(&self) -> Self {
        Self {
            inner: Arc::clone(&self.inner),
        }
    }
}

impl<K, V> Default for Store<K, V> {
    fn default() -> Self {
        Self {
            inner: Arc::new(RwLock::new(HashMap::new())),
        }
    }
}

impl<K, V> Store<K, V> {
    /// Create an empty store.
    pub fn new() -> Self {
        Self::default()
    }
}

impl<K: Eq + Hash, V> Store<K, V> {
    /// Number of entries currently held.
    pub fn len(&self) -> usize {
        self.read(|m| m.len())
    }

    /// Whether the store currently holds no entries.
    pub fn is_empty(&self) -> bool {
        self.read(|m| m.is_empty())
    }

    /// Whether an entry exists under `key`.
    pub fn contains_key(&self, key: &K) -> bool {
        self.read(|m| m.contains_key(key))
    }

    /// Clone of the value under `key`, if present.
    pub fn get(&self, key: &K) -> Option<V>
    where
        V: Clone,
    {
        self.read(|m| m.get(key).cloned())
    }

    /// Snapshot of all keys (cloned).
    pub fn keys(&self) -> Vec<K>
    where
        K: Clone,
    {
        self.read(|m| m.keys().cloned().collect())
    }

    /// Snapshot of all values (cloned).
    pub fn values(&self) -> Vec<V>
    where
        V: Clone,
    {
        self.read(|m| m.values().cloned().collect())
    }

    /// Snapshot of every `(key, value)` pair (cloned).
    pub fn snapshot(&self) -> Vec<(K, V)>
    where
        K: Clone,
        V: Clone,
    {
        self.read(|m| m.iter().map(|(k, v)| (k.clone(), v.clone())).collect())
    }

    /// Run `f` against the backing map under a read lock without
    /// cloning. Use for ad-hoc queries (counts, filtered scans)
    /// that would be wasteful via [`snapshot`](Self::snapshot).
    ///
    /// Keep `f` short and non-blocking — it runs while the read
    /// lock is held.
    pub fn with_read<R>(&self, f: impl FnOnce(&HashMap<K, V>) -> R) -> R {
        self.read(f)
    }

    // --- internal helpers (used by the Reflect adapter) ---

    fn read<R>(&self, f: impl FnOnce(&HashMap<K, V>) -> R) -> R {
        // Recover from a poisoned lock rather than propagating the
        // panic: a reflector that panicked mid-write shouldn't brick
        // every future read. The map may be missing that one update,
        // but the next resync rebuilds it.
        let guard = self.inner.read().unwrap_or_else(|e| e.into_inner());
        f(&guard)
    }

    fn write<R>(&self, f: impl FnOnce(&mut HashMap<K, V>) -> R) -> R {
        let mut guard = self.inner.write().unwrap_or_else(|e| e.into_inner());
        f(&mut guard)
    }

    fn apply(&self, op: StoreOp<K>, value: V) {
        match op {
            StoreOp::Upsert(k) => self.write(|m| {
                m.insert(k, value);
            }),
            StoreOp::Remove(k) => self.write(|m| {
                m.remove(&k);
            }),
            StoreOp::Ignore => {}
        }
    }

    fn replace_all(&self, next: HashMap<K, V>) {
        self.write(|m| *m = next);
    }
}

/// Extension trait adding [`reflect`](Self::reflect) to any
/// resync-aware event stream.
///
/// Blanket-implemented for every
/// `Stream<Item = Result<ResyncedEvent<V>>> + Unpin`, matching the
/// bound used by [`ResyncStreamExt`](super::resync_ext::ResyncStreamExt).
pub trait ReflectExt<V>:
    Stream<Item = crate::Result<ResyncedEvent<V>>> + Sized + Unpin
{
    /// Mirror this stream into `store`, classifying each event via
    /// `op`. Returns a **pass-through** stream that yields the same
    /// items unchanged after updating the store — so you can chain
    /// further combinators or just drive it to keep the store fresh.
    ///
    /// `Resynced(V)` items arriving inside a resync window
    /// (`Marker(ResyncStart)` … `Marker(ResyncEnd)`) build a fresh
    /// snapshot that atomically replaces the store at `ResyncEnd`;
    /// `Remove`/`Ignore` ops are not meaningful for a redump and are
    /// skipped while staging.
    fn reflect<K, F>(self, store: Store<K, V>, op: F) -> Reflect<Self, K, V, F>
    where
        K: Eq + Hash,
        V: Clone,
        F: FnMut(&V) -> StoreOp<K>,
    {
        Reflect::new(self, store, op)
    }
}

impl<S, V> ReflectExt<V> for S where S: Stream<Item = crate::Result<ResyncedEvent<V>>> + Unpin {}

/// Pass-through stream adapter created by [`ReflectExt::reflect`].
/// Updates a [`Store`] from every item it forwards.
pub struct Reflect<S, K, V, F>
where
    S: Stream<Item = crate::Result<ResyncedEvent<V>>> + Unpin,
    K: Eq + Hash,
    V: Clone,
    F: FnMut(&V) -> StoreOp<K>,
{
    inner: S,
    store: Store<K, V>,
    op: F,
    // `Some` while inside a resync window — accumulates the fresh
    // snapshot to swap in at `ResyncEnd`.
    staging: Option<HashMap<K, V>>,
}

impl<S, K, V, F> Reflect<S, K, V, F>
where
    S: Stream<Item = crate::Result<ResyncedEvent<V>>> + Unpin,
    K: Eq + Hash,
    V: Clone,
    F: FnMut(&V) -> StoreOp<K>,
{
    fn new(inner: S, store: Store<K, V>, op: F) -> Self {
        Self {
            inner,
            store,
            op,
            staging: None,
        }
    }
}

impl<S, K, V, F> Unpin for Reflect<S, K, V, F>
where
    S: Stream<Item = crate::Result<ResyncedEvent<V>>> + Unpin,
    K: Eq + Hash,
    V: Clone,
    F: FnMut(&V) -> StoreOp<K>,
{
}

impl<S, K, V, F> Stream for Reflect<S, K, V, F>
where
    S: Stream<Item = crate::Result<ResyncedEvent<V>>> + Unpin,
    K: Eq + Hash,
    V: Clone,
    F: FnMut(&V) -> StoreOp<K>,
{
    type Item = crate::Result<ResyncedEvent<V>>;

    fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
        let this = self.get_mut();
        match Pin::new(&mut this.inner).poll_next(cx) {
            Poll::Pending => Poll::Pending,
            Poll::Ready(None) => Poll::Ready(None),
            Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))),
            Poll::Ready(Some(Ok(item))) => {
                match &item {
                    ResyncedEvent::Marker(ResyncMarker::ResyncStart) => {
                        // Begin staging a fresh snapshot.
                        this.staging = Some(HashMap::new());
                    }
                    ResyncedEvent::Marker(ResyncMarker::ResyncEnd) => {
                        // Atomically swap the snapshot in. If we never
                        // saw a ResyncStart (defensive), this is a no-op.
                        if let Some(next) = this.staging.take() {
                            this.store.replace_all(next);
                        }
                    }
                    ResyncedEvent::Event(v) | ResyncedEvent::Resynced(v) => {
                        let op = (this.op)(v);
                        match &mut this.staging {
                            // Inside a resync window: only upserts build
                            // the snapshot (a redump is all-live state).
                            Some(stage) => {
                                if let StoreOp::Upsert(k) = op {
                                    stage.insert(k, v.clone());
                                }
                            }
                            // Normal real-time delta.
                            None => this.store.apply(op, v.clone()),
                        }
                    }
                }
                Poll::Ready(Some(Ok(item)))
            }
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use tokio_stream::StreamExt;

    fn synth(
        items: Vec<crate::Result<ResyncedEvent<(u32, &'static str)>>>,
    ) -> impl Stream<Item = crate::Result<ResyncedEvent<(u32, &'static str)>>> + Unpin {
        tokio_stream::iter(items)
    }

    // Classify a (key, tag) payload: tag "del" removes, anything
    // else upserts; tag "skip" is ignored.
    fn op(ev: &(u32, &'static str)) -> StoreOp<u32> {
        match ev.1 {
            "del" => StoreOp::Remove(ev.0),
            "skip" => StoreOp::Ignore,
            _ => StoreOp::Upsert(ev.0),
        }
    }

    #[tokio::test]
    async fn upsert_remove_ignore_apply_to_store() {
        let store: Store<u32, (u32, &'static str)> = Store::new();
        let reader = store.clone();
        let items = vec![
            Ok(ResyncedEvent::Event((1, "a"))),
            Ok(ResyncedEvent::Event((2, "b"))),
            Ok(ResyncedEvent::Event((1, "a2"))), // upsert overwrites
            Ok(ResyncedEvent::Event((3, "skip"))), // ignored
            Ok(ResyncedEvent::Event((2, "del"))), // removes key 2
        ];
        let drained: Vec<_> = synth(items).reflect(store, op).collect().await;

        // Pass-through preserved every item.
        assert_eq!(drained.len(), 5);
        assert_eq!(reader.len(), 1, "only key 1 remains");
        assert_eq!(reader.get(&1), Some((1, "a2")), "upsert overwrote");
        assert!(!reader.contains_key(&2), "key 2 removed");
        assert!(!reader.contains_key(&3), "ignored event never inserted");
    }

    #[tokio::test]
    async fn resync_window_replaces_snapshot_atomically() {
        let store: Store<u32, (u32, &'static str)> = Store::new();
        let reader = store.clone();
        let items = vec![
            // Pre-resync state: keys 1, 2.
            Ok(ResyncedEvent::Event((1, "a"))),
            Ok(ResyncedEvent::Event((2, "b"))),
            // Resync: the redump only contains keys 2, 3 — key 1 is gone.
            Ok(ResyncedEvent::Marker(ResyncMarker::ResyncStart)),
            Ok(ResyncedEvent::Resynced((2, "b2"))),
            Ok(ResyncedEvent::Resynced((3, "c"))),
            // A stray Remove during staging must be ignored (redump
            // is all-live; removals are not meaningful here).
            Ok(ResyncedEvent::Resynced((9, "del"))),
            Ok(ResyncedEvent::Marker(ResyncMarker::ResyncEnd)),
        ];
        let _ = synth(items).reflect(store, op).collect::<Vec<_>>().await;

        assert_eq!(reader.len(), 2, "snapshot replaced, not merged");
        assert!(!reader.contains_key(&1), "key 1 dropped by resync");
        assert_eq!(reader.get(&2), Some((2, "b2")), "key 2 refreshed");
        assert!(reader.contains_key(&3), "key 3 added by resync");
        assert!(!reader.contains_key(&9), "Remove ignored during staging");
    }

    #[tokio::test]
    async fn post_resync_deltas_apply_again() {
        let store: Store<u32, (u32, &'static str)> = Store::new();
        let reader = store.clone();
        let items = vec![
            Ok(ResyncedEvent::Marker(ResyncMarker::ResyncStart)),
            Ok(ResyncedEvent::Resynced((1, "a"))),
            Ok(ResyncedEvent::Marker(ResyncMarker::ResyncEnd)),
            // Real-time delta after the window resumes.
            Ok(ResyncedEvent::Event((1, "del"))),
            Ok(ResyncedEvent::Event((4, "d"))),
        ];
        let _ = synth(items).reflect(store, op).collect::<Vec<_>>().await;
        assert!(!reader.contains_key(&1), "post-resync delete applied");
        assert_eq!(reader.get(&4), Some((4, "d")), "post-resync insert applied");
        assert_eq!(reader.len(), 1);
    }

    #[tokio::test]
    async fn errors_pass_through_without_touching_store() {
        let store: Store<u32, (u32, &'static str)> = Store::new();
        let reader = store.clone();
        let items = vec![
            Ok(ResyncedEvent::Event((1, "a"))),
            Err(crate::Error::InvalidMessage("synth".into())),
            Ok(ResyncedEvent::Event((2, "b"))),
        ];
        let drained: Vec<_> = synth(items).reflect(store, op).collect().await;
        assert_eq!(drained.len(), 3);
        assert!(drained[1].is_err(), "error forwarded");
        assert_eq!(reader.len(), 2, "both ok events still applied");
    }

    #[tokio::test]
    async fn cloned_store_shares_state() {
        let store: Store<u32, (u32, &'static str)> = Store::new();
        let a = store.clone();
        let b = store.clone();
        let _ = synth(vec![Ok(ResyncedEvent::Event((7, "x")))])
            .reflect(store, op)
            .collect::<Vec<_>>()
            .await;
        assert_eq!(a.get(&7), Some((7, "x")));
        assert_eq!(b.get(&7), Some((7, "x")), "clones observe same map");
    }

    #[test]
    fn empty_store_accessors() {
        let store: Store<u32, u32> = Store::new();
        assert!(store.is_empty());
        assert_eq!(store.len(), 0);
        assert_eq!(store.get(&1), None);
        assert!(store.keys().is_empty());
        assert!(store.values().is_empty());
        assert!(store.snapshot().is_empty());
        assert_eq!(store.with_read(|m| m.len()), 0);
    }
}