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
use crate::err::ValueTooBigError;
/// Deprecated, use [`IpDscp`] instead.
#[deprecated(since = "0.18.0", note = "Use `IpDscp` instead of `Ipv4Dscp`")]
pub type Ipv4Dscp = IpDscp;
/// 6 bit unsigned integer containing the "Differentiated Services
/// Code Point" (present in the [`crate::Ipv4Header`] and in the
/// in [`crate::Ipv6Header`] as part of `traffic_class`).
///
/// Established in
/// [RFC-2472](https://datatracker.ietf.org/doc/html/rfc2474) and defined/maintained in the
/// [IANA dscp-registry](https://www.iana.org/assignments/dscp-registry/dscp-registry.xhtml)
#[derive(Copy, Clone, Default, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct IpDscp(u8);
impl IpDscp {
/// IpDscp with value 0.
pub const ZERO: IpDscp = IpDscp(0);
/// Maximum value of an IPv4 header DSCP.
pub const MAX_U8: u8 = 0b0011_1111;
/// Maximum value of DSCP field (6 bits).
pub const MAX: IpDscp = IpDscp(Self::MAX_U8);
/// Class Selector 0 (Pool 1) [RFC-2474](https://datatracker.ietf.org/doc/html/rfc2474)
pub const CS0: IpDscp = IpDscp(0b00_0000);
/// Class Selector 1 (Pool 1) [RFC-2474](https://datatracker.ietf.org/doc/html/rfc2474)
pub const CS1: IpDscp = IpDscp(0b00_1000);
/// Class Selector 2 (Pool 1) [RFC-2474](https://datatracker.ietf.org/doc/html/rfc2474)
pub const CS2: IpDscp = IpDscp(0b01_0000);
/// Class Selector 3 (Pool 1) [RFC-2474](https://datatracker.ietf.org/doc/html/rfc2474)
pub const CS3: IpDscp = IpDscp(0b01_1000);
/// Class Selector 4 (Pool 1) [RFC-2474](https://datatracker.ietf.org/doc/html/rfc2474)
pub const CS4: IpDscp = IpDscp(0b10_0000);
/// Class Selector 5 (Pool 1) [RFC-2474](https://datatracker.ietf.org/doc/html/rfc2474)
pub const CS5: IpDscp = IpDscp(0b10_1000);
/// Class Selector 6 (Pool 1) [RFC-2474](https://datatracker.ietf.org/doc/html/rfc2474)
pub const CS6: IpDscp = IpDscp(0b11_0000);
/// Class Selector 7 (Pool 1) [RFC-2474](https://datatracker.ietf.org/doc/html/rfc2474)
pub const CS7: IpDscp = IpDscp(0b11_1000);
/// Assured Forwarding PHB Group 11 (Pool 1) [RFC-2597](https://datatracker.ietf.org/doc/html/rfc2597)
pub const AF11: IpDscp = IpDscp(0b00_1010);
/// Assured Forwarding PHB Group 12 (Pool 1) [RFC-2597](https://datatracker.ietf.org/doc/html/rfc2597)
pub const AF12: IpDscp = IpDscp(0b00_1100);
/// Assured Forwarding PHB Group 13 (Pool 1) [RFC-2597](https://datatracker.ietf.org/doc/html/rfc2597)
pub const AF13: IpDscp = IpDscp(0b00_1110);
/// Assured Forwarding PHB Group 21 (Pool 1) [RFC-2597](https://datatracker.ietf.org/doc/html/rfc2597)
pub const AF21: IpDscp = IpDscp(0b01_0010);
/// Assured Forwarding PHB Group 22 (Pool 1) [RFC-2597](https://datatracker.ietf.org/doc/html/rfc2597)
pub const AF22: IpDscp = IpDscp(0b01_0100);
/// Assured Forwarding PHB Group 23 (Pool 1) [RFC-2597](https://datatracker.ietf.org/doc/html/rfc2597)
pub const AF23: IpDscp = IpDscp(0b01_0110);
/// Assured Forwarding PHB Group 31 (Pool 1) [RFC-2597](https://datatracker.ietf.org/doc/html/rfc2597)
pub const AF31: IpDscp = IpDscp(0b01_1010);
/// Assured Forwarding PHB Group 32 (Pool 1) [RFC-2597](https://datatracker.ietf.org/doc/html/rfc2597)
pub const AF32: IpDscp = IpDscp(0b01_1100);
/// Assured Forwarding PHB Group 11 (Pool 1) [RFC-2597](https://datatracker.ietf.org/doc/html/rfc2597)
pub const AF33: IpDscp = IpDscp(0b01_1110);
/// Assured Forwarding PHB Group 11 (Pool 1) [RFC-2597](https://datatracker.ietf.org/doc/html/rfc2597)
pub const AF41: IpDscp = IpDscp(0b10_0010);
/// Assured Forwarding PHB Group 11 (Pool 1) [RFC-2597](https://datatracker.ietf.org/doc/html/rfc2597)
pub const AF42: IpDscp = IpDscp(0b10_0100);
/// Assured Forwarding PHB Group 11 (Pool 1) [RFC-2597](https://datatracker.ietf.org/doc/html/rfc2597)
pub const AF43: IpDscp = IpDscp(0b10_0110);
/// Expedited Forwarding (Pool 1) [RFC-3246](https://datatracker.ietf.org/doc/html/rfc3246)
pub const EF: IpDscp = IpDscp(0b10_1110);
/// Voice admit (Pool 1) [RFC-5865](https://datatracker.ietf.org/doc/html/rfc5865)
pub const VOICE_ADMIT: IpDscp = IpDscp(0b10_1100);
/// Lower Effort PHB (Pool 3) [RFC-8622](https://datatracker.ietf.org/doc/html/rfc8622)
pub const LOWER_EFFORT: IpDscp = IpDscp(0b00_0001);
/// Tries to create an [`IpDscp`] and checks that the passed value
/// is smaller or equal than [`IpDscp::MAX_U8`] (6 bit unsigned integer).
///
/// In case the passed value is bigger then what can be represented in an 6 bit
/// integer an error is returned. Otherwise an `Ok` containing the [`IpDscp`].
///
/// ```
/// use etherparse::IpDscp;
///
/// let dscp = IpDscp::try_new(32).unwrap();
/// assert_eq!(dscp.value(), 32);
///
/// // if a number that can not be represented in an 6 bit integer
/// // gets passed in an error is returned
/// use etherparse::err::{ValueTooBigError, ValueType};
/// assert_eq!(
/// IpDscp::try_new(IpDscp::MAX_U8 + 1),
/// Err(ValueTooBigError{
/// actual: IpDscp::MAX_U8 + 1,
/// max_allowed: IpDscp::MAX_U8,
/// value_type: ValueType::IpDscp,
/// })
/// );
/// ```
#[inline]
pub const fn try_new(value: u8) -> Result<IpDscp, ValueTooBigError<u8>> {
use crate::err::ValueType;
if value <= IpDscp::MAX_U8 {
Ok(IpDscp(value))
} else {
Err(ValueTooBigError {
actual: value,
max_allowed: IpDscp::MAX_U8,
value_type: ValueType::IpDscp,
})
}
}
/// Creates an [`IpDscp`] without checking that the value
/// is smaller or equal than [`IpDscp::MAX_U8`] (6 bit unsigned integer).
/// The caller must guarantee that `value <= IpDscp::MAX_U8`.
///
/// # Safety
///
/// `value` must be smaller or equal than [`IpDscp::MAX_U8`]
/// otherwise the behavior of functions or data structures relying
/// on this pre-requirement is undefined.
#[inline]
pub const unsafe fn new_unchecked(value: u8) -> IpDscp {
debug_assert!(value <= IpDscp::MAX_U8);
IpDscp(value)
}
/// Returns the underlying unsigned 6 bit value as an `u8` value.
#[inline]
pub const fn value(self) -> u8 {
self.0
}
}
impl core::fmt::Display for IpDscp {
#[inline]
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
self.0.fmt(f)
}
}
impl From<IpDscp> for u8 {
#[inline]
fn from(value: IpDscp) -> Self {
value.0
}
}
impl TryFrom<u8> for IpDscp {
type Error = ValueTooBigError<u8>;
#[inline]
fn try_from(value: u8) -> Result<Self, Self::Error> {
use crate::err::ValueType;
if value <= IpDscp::MAX_U8 {
Ok(IpDscp(value))
} else {
Err(Self::Error {
actual: value,
max_allowed: IpDscp::MAX_U8,
value_type: ValueType::IpDscp,
})
}
}
}
#[cfg(test)]
mod test {
use super::*;
use core::hash::{Hash, Hasher};
use proptest::prelude::*;
use std::format;
#[test]
fn derived_traits() {
// copy & clone
{
let a = IpDscp(32);
let b = a;
assert_eq!(a, b);
assert_eq!(a.clone(), a);
}
// default
{
let actual: IpDscp = Default::default();
assert_eq!(actual.value(), 0);
}
// debug
{
let a = IpDscp(32);
assert_eq!(format!("{:?}", a), format!("IpDscp(32)"));
}
// ord & partial ord
{
use core::cmp::Ordering;
let a = IpDscp(32);
let b = a;
assert_eq!(a.cmp(&b), Ordering::Equal);
assert_eq!(a.partial_cmp(&b), Some(Ordering::Equal));
}
// hash
{
use std::collections::hash_map::DefaultHasher;
let a = {
let mut hasher = DefaultHasher::new();
IpDscp(64).hash(&mut hasher);
hasher.finish()
};
let b = {
let mut hasher = DefaultHasher::new();
IpDscp(64).hash(&mut hasher);
hasher.finish()
};
assert_eq!(a, b);
}
}
proptest! {
#[test]
fn try_new(
valid_value in 0..=0b0011_1111u8,
invalid_value in 0b0100_0000u8..=u8::MAX
) {
use crate::err::{ValueType, ValueTooBigError};
assert_eq!(
valid_value,
IpDscp::try_new(valid_value).unwrap().value()
);
assert_eq!(
IpDscp::try_new(invalid_value).unwrap_err(),
ValueTooBigError{
actual: invalid_value,
max_allowed: 0b0011_1111,
value_type: ValueType::IpDscp
}
);
}
}
proptest! {
#[test]
fn try_from(
valid_value in 0..=0b0011_1111u8,
invalid_value in 0b0100_0000u8..=u8::MAX
) {
use crate::err::{ValueType, ValueTooBigError};
// try_into
{
let actual: IpDscp = valid_value.try_into().unwrap();
assert_eq!(actual.value(), valid_value);
let err: Result<IpDscp, ValueTooBigError<u8>> = invalid_value.try_into();
assert_eq!(
err.unwrap_err(),
ValueTooBigError{
actual: invalid_value,
max_allowed: 0b0011_1111,
value_type: ValueType::IpDscp
}
);
}
// try_from
{
assert_eq!(
IpDscp::try_from(valid_value).unwrap().value(),
valid_value
);
assert_eq!(
IpDscp::try_from(invalid_value).unwrap_err(),
ValueTooBigError{
actual: invalid_value,
max_allowed: 0b0011_1111,
value_type: ValueType::IpDscp
}
);
}
}
}
proptest! {
#[test]
fn new_unchecked(valid_value in 0..=0b0011_1111u8) {
assert_eq!(
valid_value,
unsafe {
IpDscp::new_unchecked(valid_value).value()
}
);
}
}
proptest! {
#[test]
fn fmt(valid_value in 0..=0b0011_1111u8) {
assert_eq!(format!("{}", IpDscp(valid_value)), format!("{}", valid_value));
}
}
proptest! {
#[test]
fn from(valid_value in 0..=0b0011_1111u8,) {
let dscp = IpDscp::try_new(valid_value).unwrap();
let actual: u8 = dscp.into();
assert_eq!(actual, valid_value);
}
}
}