sciparse 0.6.1

Zero-copy SCION packet parsing, serialization and control plane components
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
// Copyright 2026 Anapaya Systems
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! SCION dataplane path views

use std::fmt::Display;

use crate::{
    core::{macros::impl_from, view::View},
    dataplane_path::{
        model::DpPath,
        onehop::view::OneHopPathView,
        standard::view::StandardPathView,
        types::{PathReverseError, PathType},
    },
};

/// View over a SCION dataplane path, which can be of different types (e.g., standard, one-hop).
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ScionDpPathViewRef<'a> {
    /// View over a standard SCION path
    Standard(&'a StandardPathView),
    /// View over a one-hop SCION path
    OneHop(&'a OneHopPathView),
    /// View over an unsupported path type
    Unsupported {
        /// The unsupported path type
        path_type: PathType,
        /// Raw path data
        data: &'a [u8],
    },
    /// Empty path type
    Empty,
}
impl ScionDpPathViewExt for ScionDpPathViewRef<'_> {
    /// Returns an immutable view over the same path data.
    #[inline]
    fn as_ref(&self) -> ScionDpPathViewRef<'_> {
        *self
    }
}
impl<'a> From<&'a StandardPathView> for ScionDpPathViewRef<'a> {
    #[inline]
    fn from(value: &'a StandardPathView) -> Self {
        ScionDpPathViewRef::Standard(value)
    }
}
impl<'a> From<&'a OneHopPathView> for ScionDpPathViewRef<'a> {
    #[inline]
    fn from(value: &'a OneHopPathView) -> Self {
        ScionDpPathViewRef::OneHop(value)
    }
}
impl Display for ScionDpPathViewRef<'_> {
    #[inline]
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.display(f)
    }
}

/// Mutable view over different path types
#[derive(Debug, PartialEq, Eq)]
pub enum ScionDpPathViewRefMut<'a> {
    /// Mutable view over a standard SCION path
    Standard(&'a mut StandardPathView),
    /// Mutable view over a one-hop SCION path
    OneHop(&'a mut OneHopPathView),
    /// Mutable view over an unsupported path type
    Unsupported {
        /// The unsupported path type
        path_type: PathType,
        /// Raw path data
        buf: &'a mut [u8],
    },
    /// Empty path type
    Empty,
}
impl ScionDpPathViewExt for ScionDpPathViewRefMut<'_> {
    /// Returns an immutable view over the same path data.
    #[inline]
    fn as_ref(&self) -> ScionDpPathViewRef<'_> {
        match self {
            ScionDpPathViewRefMut::Standard(standard_path_view) => {
                ScionDpPathViewRef::Standard(standard_path_view)
            }
            ScionDpPathViewRefMut::OneHop(one_hop_path_view) => {
                ScionDpPathViewRef::OneHop(one_hop_path_view)
            }
            ScionDpPathViewRefMut::Unsupported { path_type, buf } => {
                ScionDpPathViewRef::Unsupported {
                    path_type: *path_type,
                    data: buf,
                }
            }
            ScionDpPathViewRefMut::Empty => ScionDpPathViewRef::Empty,
        }
    }
}
impl ScionDpPathViewExtMut for ScionDpPathViewRefMut<'_> {
    #[inline]
    fn as_mut(&mut self) -> ScionDpPathViewRefMut<'_> {
        // XXX(ake): looks a bit weird, but this allows reborrowing the mutable reference while
        // preserving the lifetime.
        match self {
            ScionDpPathViewRefMut::Standard(v) => ScionDpPathViewRefMut::Standard(v),
            ScionDpPathViewRefMut::OneHop(v) => ScionDpPathViewRefMut::OneHop(v),
            ScionDpPathViewRefMut::Unsupported { path_type, buf } => {
                ScionDpPathViewRefMut::Unsupported {
                    path_type: *path_type,
                    buf,
                }
            }
            ScionDpPathViewRefMut::Empty => ScionDpPathViewRefMut::Empty,
        }
    }
}
impl<'a> From<&'a mut StandardPathView> for ScionDpPathViewRef<'a> {
    #[inline]
    fn from(value: &'a mut StandardPathView) -> Self {
        ScionDpPathViewRef::Standard(value)
    }
}
impl<'a> From<&'a mut OneHopPathView> for ScionDpPathViewRef<'a> {
    #[inline]
    fn from(value: &'a mut OneHopPathView) -> Self {
        ScionDpPathViewRef::OneHop(value)
    }
}
impl Display for ScionDpPathViewRefMut<'_> {
    #[inline]
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.display(f)
    }
}

/// Owned view over different path types
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ScionDpPathView {
    /// Owned view over a standard SCION path
    Standard(Box<StandardPathView>),
    /// Owned view over a one-hop SCION path
    OneHop(OneHopPathView),
    /// Owned view over an unsupported path type
    Unsupported {
        /// The unsupported path type
        path_type: PathType,
        /// Raw path data
        data: Box<[u8]>,
    },
    /// Empty path type
    Empty,
}
impl ScionDpPathViewExt for ScionDpPathView {
    /// Returns an immutable view over the same path data.
    #[inline]
    fn as_ref(&self) -> ScionDpPathViewRef<'_> {
        match self {
            ScionDpPathView::Standard(standard_path_view) => {
                ScionDpPathViewRef::Standard(standard_path_view.as_ref())
            }
            ScionDpPathView::OneHop(one_hop_path_view) => {
                ScionDpPathViewRef::OneHop(one_hop_path_view)
            }
            ScionDpPathView::Unsupported { path_type, data } => {
                ScionDpPathViewRef::Unsupported {
                    path_type: *path_type,
                    data: data.as_ref(),
                }
            }
            ScionDpPathView::Empty => ScionDpPathViewRef::Empty,
        }
    }
}
impl ScionDpPathViewExtMut for ScionDpPathView {
    #[inline]
    fn as_mut(&mut self) -> ScionDpPathViewRefMut<'_> {
        match self {
            ScionDpPathView::Standard(standard_path_view) => {
                ScionDpPathViewRefMut::Standard(standard_path_view.as_mut())
            }
            ScionDpPathView::OneHop(one_hop_path_view) => {
                ScionDpPathViewRefMut::OneHop(one_hop_path_view)
            }
            ScionDpPathView::Unsupported { path_type, data } => {
                ScionDpPathViewRefMut::Unsupported {
                    path_type: *path_type,
                    buf: data.as_mut(),
                }
            }
            ScionDpPathView::Empty => ScionDpPathViewRefMut::Empty,
        }
    }
}
impl_from!(Box<StandardPathView>, ScionDpPathView, |v| {
    ScionDpPathView::Standard(v)
});
impl_from!(OneHopPathView, ScionDpPathView, |v| {
    ScionDpPathView::OneHop(v)
});
impl Display for ScionDpPathView {
    #[inline]
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        self.display(f)
    }
}

/// Helper trait for working with [`ScionDpPathView`] and its references, providing common
/// functionality across different path types.
pub trait ScionDpPathViewExt {
    /// Returns an immutable view over the path data.
    fn as_ref(&self) -> ScionDpPathViewRef<'_>;

    /// Clones the path data into an owned view.
    #[inline]
    fn to_owned_view(&self) -> ScionDpPathView {
        match self.as_ref() {
            ScionDpPathViewRef::Standard(standard_path_view) => {
                ScionDpPathView::Standard(standard_path_view.to_boxed())
            }
            ScionDpPathViewRef::OneHop(one_hop_path_view) => {
                ScionDpPathView::OneHop(one_hop_path_view.clone())
            }
            ScionDpPathViewRef::Unsupported { path_type, data } => {
                ScionDpPathView::Unsupported {
                    path_type,
                    data: Box::from(data),
                }
            }
            ScionDpPathViewRef::Empty => ScionDpPathView::Empty,
        }
    }

    /// Returns the raw bytes of the path data as a slice.
    #[inline]
    fn as_slice(&self) -> &[u8] {
        match self.as_ref() {
            ScionDpPathViewRef::Standard(standard_path_view) => standard_path_view.as_slice(),
            ScionDpPathViewRef::OneHop(one_hop_path_view) => one_hop_path_view.as_slice(),
            ScionDpPathViewRef::Unsupported { data, .. } => data,
            ScionDpPathViewRef::Empty => &[],
        }
    }

    /// Returns the expiration time of the path in seconds since the UNIX epoch.
    ///
    /// Returns `None` if the expiration time cannot be determined (e.g., for unsupported path
    /// types).
    #[inline]
    fn expiration(&self) -> Option<u32> {
        match self.as_ref() {
            ScionDpPathViewRef::Standard(standard_path_view) => {
                Some(standard_path_view.expiration())
            }
            ScionDpPathViewRef::OneHop(one_hop_path_view) => Some(one_hop_path_view.expiration()),
            ScionDpPathViewRef::Empty => Some(u32::MAX),
            ScionDpPathViewRef::Unsupported { .. } => None,
        }
    }

    /// Returns the normalized first egress interface of the path if available.
    #[inline]
    fn first_egress_interface(&self) -> Option<u16> {
        match self.as_ref() {
            ScionDpPathViewRef::Standard(standard_path_view) => {
                let info_field = standard_path_view.info_fields().first()?;
                let hop_field = standard_path_view.hop_fields().first()?;
                Some(hop_field.egress_interface(info_field))
            }
            ScionDpPathViewRef::OneHop(one_hop_path_view) => {
                let info_field = one_hop_path_view.info_field();
                let [hop_field, _] = one_hop_path_view.hop_fields();
                Some(hop_field.egress_interface(info_field))
            }
            ScionDpPathViewRef::Empty => None,
            ScionDpPathViewRef::Unsupported { .. } => None,
        }
    }

    /// Returns the normalized current egress interface of the path if available.
    ///
    /// If the path is a one-hop path, the current egress interface is the egress interface of the
    /// first hop field.
    #[inline]
    fn current_egress_interface(&self) -> Option<u16> {
        match self.as_ref() {
            ScionDpPathViewRef::Standard(standard_path_view) => {
                let info_field = standard_path_view.curr_info_field()?;
                Some(
                    standard_path_view
                        .curr_hop_field()?
                        .egress_interface(info_field),
                )
            }
            ScionDpPathViewRef::OneHop(one_hop_path_view) => {
                let info_field = one_hop_path_view.info_field();
                let [hop_field, _] = one_hop_path_view.hop_fields();
                Some(hop_field.egress_interface(info_field))
            }
            ScionDpPathViewRef::Empty => None,
            ScionDpPathViewRef::Unsupported { .. } => None,
        }
    }

    /// Returns the normalized last ingress interface of the path if available.
    #[inline]
    fn last_ingress_interface(&self) -> Option<u16> {
        match self.as_ref() {
            ScionDpPathViewRef::Standard(standard_path_view) => {
                let info_field = standard_path_view.info_fields().last()?;
                Some(
                    standard_path_view
                        .hop_fields()
                        .last()?
                        .ingress_interface(info_field),
                )
            }
            ScionDpPathViewRef::OneHop(one_hop_path_view) => {
                Some(
                    one_hop_path_view
                        .hop_fields()
                        .last()?
                        .ingress_interface(one_hop_path_view.info_field()),
                )
            }
            ScionDpPathViewRef::Empty => None,
            ScionDpPathViewRef::Unsupported { .. } => None,
        }
    }

    /// Returns the normalized current ingress interface of the path if available.
    ///
    /// If the path is a one-hop path, the current ingress interface is the ingress interface of the
    /// last hop field.
    #[inline]
    fn current_ingress_interface(&self) -> Option<u16> {
        match self.as_ref() {
            ScionDpPathViewRef::Standard(standard_path_view) => {
                let info_field = standard_path_view.curr_info_field()?;
                Some(
                    standard_path_view
                        .curr_hop_field()?
                        .ingress_interface(info_field),
                )
            }
            ScionDpPathViewRef::OneHop(one_hop_path_view) => {
                let info_field = one_hop_path_view.info_field();
                let [_, hop_field] = one_hop_path_view.hop_fields();
                Some(hop_field.ingress_interface(info_field))
            }
            ScionDpPathViewRef::Empty => None,
            ScionDpPathViewRef::Unsupported { .. } => None,
        }
    }

    /// Converts the view into a `DpPath` model.
    #[inline]
    fn to_model(&self) -> DpPath {
        DpPath::from_view(&self.as_ref())
    }

    /// Displays the path view in a human-readable format.
    #[inline]
    fn display(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self.as_ref() {
            ScionDpPathViewRef::Standard(standard_path_view) => write!(f, "{}", standard_path_view),
            ScionDpPathViewRef::OneHop(one_hop_path_view) => write!(f, "{}", one_hop_path_view),
            ScionDpPathViewRef::Unsupported { path_type, .. } => {
                write!(f, "[unsupported] {:?}", path_type)
            }
            ScionDpPathViewRef::Empty => write!(f, "[empty]"),
        }
    }
}
impl<T: ScionDpPathViewExt> ScionDpPathViewExt for &T {
    #[inline]
    fn as_ref(&self) -> ScionDpPathViewRef<'_> {
        (*self).as_ref()
    }
}

/// Helper trait for working with mutable references to [`ScionDpPathView`], providing common
/// functionality across different path types.
pub trait ScionDpPathViewExtMut: ScionDpPathViewExt {
    /// Returns a mutable view over the path data.
    fn as_mut(&mut self) -> ScionDpPathViewRefMut<'_>;

    /// Attempts to reverse the path in place if supported by the path type.
    ///
    /// Returns an error if the path type does not support reversal.
    #[inline]
    fn try_reverse(&mut self) -> Result<&mut Self, PathReverseError>
    where
        Self: Sized,
    {
        let mut_self = self.as_mut();

        match mut_self {
            ScionDpPathViewRefMut::Standard(standard_path_view) => {
                standard_path_view.try_reverse()?;
                Ok(self)
            }
            ScionDpPathViewRefMut::OneHop(one_hop_path_view) => {
                one_hop_path_view.try_reverse()?;
                Ok(self)
            }
            ScionDpPathViewRefMut::Empty => Ok(self),
            ScionDpPathViewRefMut::Unsupported { .. } => {
                Err(PathReverseError::new(
                    "Cannot reverse unsupported path type",
                ))
            }
        }
    }

    /// Converts the path into a reversed view if supported by the path type.
    ///
    /// Returns an error if the path type does not support reversal.
    #[inline]
    fn try_into_reversed(mut self) -> Result<Self, (Self, PathReverseError)>
    where
        Self: Sized,
    {
        match self.try_reverse() {
            Ok(_) => Ok(self),
            Err(e) => Err((self, e)),
        }
    }
}