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
|
use crate::{AuthProtocol, Deserialize, Error, QualityProtocol, Result, Serialize};
use std::io::{Read, Write};
use ppproperly_macros::{Deserialize, Serialize};
pub const LCP_CONFIGURE_REQUEST: u8 = 1;
pub const LCP_CONFIGURE_ACK: u8 = 2;
pub const LCP_CONFIGURE_NAK: u8 = 3;
pub const LCP_CONFIGURE_REJECT: u8 = 4;
pub const LCP_TERMINATE_REQUEST: u8 = 5;
pub const LCP_TERMINATE_ACK: u8 = 6;
pub const LCP_CODE_REJECT: u8 = 7;
pub const LCP_PROTOCOL_REJECT: u8 = 8;
pub const LCP_ECHO_REQUEST: u8 = 9;
pub const LCP_ECHO_REPLY: u8 = 10;
pub const LCP_DISCARD_REQUEST: u8 = 11;
pub const OPT_MRU: u8 = 1;
pub const OPT_AUTHENTICATION_PROTOCOL: u8 = 3;
pub const OPT_QUALITY_PROTOCOL: u8 = 4;
pub const OPT_MAGIC_NUMBER: u8 = 5;
pub const OPT_PROTOCOL_FIELD_COMPRESSION: u8 = 7;
pub const OPT_ADDR_CTL_FIELD_COMPRESSION: u8 = 8;
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum LcpOpt {
Mru(u16),
AuthenticationProtocol(AuthProtocol),
QualityProtocol(QualityProtocol),
MagicNumber(u32),
ProtocolFieldCompression,
AddrCtlFieldCompression,
}
impl Serialize for LcpOpt {
fn serialize<W: Write>(&self, w: &mut W) -> Result<()> {
match self {
Self::Mru(payload) => payload.serialize(w),
Self::AuthenticationProtocol(payload) => payload.serialize(w),
Self::QualityProtocol(payload) => payload.serialize(w),
Self::MagicNumber(payload) => payload.serialize(w),
Self::ProtocolFieldCompression => Ok(()),
Self::AddrCtlFieldCompression => Ok(()),
}
}
}
impl LcpOpt {
fn discriminant(&self) -> u8 {
match self {
Self::Mru(_) => OPT_MRU,
Self::AuthenticationProtocol(_) => OPT_AUTHENTICATION_PROTOCOL,
Self::QualityProtocol(_) => OPT_QUALITY_PROTOCOL,
Self::MagicNumber(_) => OPT_MAGIC_NUMBER,
Self::ProtocolFieldCompression => OPT_PROTOCOL_FIELD_COMPRESSION,
Self::AddrCtlFieldCompression => OPT_ADDR_CTL_FIELD_COMPRESSION,
}
}
fn len(&self) -> u8 {
match self {
Self::Mru(_) => 2,
Self::AuthenticationProtocol(payload) => payload.len(),
Self::QualityProtocol(payload) => payload.len(),
Self::MagicNumber(_) => 4,
Self::ProtocolFieldCompression => 0,
Self::AddrCtlFieldCompression => 0,
}
}
fn deserialize_with_discriminant<R: Read>(
&mut self,
r: &mut R,
discriminant: &u8,
) -> Result<()> {
match *discriminant {
OPT_MRU => {
let mut tmp = u16::default();
tmp.deserialize(r)?;
*self = Self::Mru(tmp);
}
OPT_AUTHENTICATION_PROTOCOL => {
let mut tmp = AuthProtocol::default();
tmp.deserialize(r)?;
*self = Self::AuthenticationProtocol(tmp);
}
OPT_QUALITY_PROTOCOL => {
let mut tmp = QualityProtocol::default();
tmp.deserialize(r)?;
*self = Self::QualityProtocol(tmp);
}
OPT_MAGIC_NUMBER => {
let mut tmp = u32::default();
tmp.deserialize(r)?;
*self = Self::MagicNumber(tmp);
}
OPT_PROTOCOL_FIELD_COMPRESSION => {
*self = Self::ProtocolFieldCompression;
}
OPT_ADDR_CTL_FIELD_COMPRESSION => {
*self = Self::AddrCtlFieldCompression;
}
_ => return Err(Error::InvalidLcpOptionType(*discriminant)),
}
Ok(())
}
}
#[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
pub struct LcpOption {
#[ppproperly(discriminant_for(field = "value", data_type = "u8"))]
#[ppproperly(len_for(field = "value", offset = 2, data_type = "u8"))]
pub value: LcpOpt,
}
impl LcpOption {
pub fn len(&self) -> u8 {
2 + self.value.len()
}
pub fn is_empty(&self) -> bool {
self.len() == 2
}
}
impl From<LcpOpt> for LcpOption {
fn from(value: LcpOpt) -> Self {
Self { value }
}
}
impl Serialize for [LcpOption] {
fn serialize<W: Write>(&self, w: &mut W) -> Result<()> {
for option in self {
option.serialize(w)?;
}
Ok(())
}
}
impl Deserialize for Vec<LcpOption> {
fn deserialize<R: Read>(&mut self, r: &mut R) -> Result<()> {
while r.bytes().size_hint().0 > 0 {
let mut tmp = LcpOption::from(LcpOpt::MagicNumber(0));
tmp.deserialize(r)?;
self.push(tmp);
}
Ok(())
}
}
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum LcpData {
ConfigureRequest(LcpConfigureRequest),
ConfigureAck(LcpConfigureAck),
ConfigureNak(LcpConfigureNak),
ConfigureReject(LcpConfigureReject),
TerminateRequest(LcpTerminateRequest),
TerminateAck(LcpTerminateAck),
CodeReject(LcpCodeReject),
ProtocolReject(LcpProtocolReject),
EchoRequest(LcpEchoRequest),
EchoReply(LcpEchoReply),
DiscardRequest(LcpDiscardRequest),
}
impl Default for LcpData {
fn default() -> Self {
Self::ConfigureRequest(LcpConfigureRequest::default())
}
}
impl Serialize for LcpData {
fn serialize<W: Write>(&self, w: &mut W) -> Result<()> {
match self {
Self::ConfigureRequest(payload) => payload.serialize(w),
Self::ConfigureAck(payload) => payload.serialize(w),
Self::ConfigureNak(payload) => payload.serialize(w),
Self::ConfigureReject(payload) => payload.serialize(w),
Self::TerminateRequest(payload) => payload.serialize(w),
Self::TerminateAck(payload) => payload.serialize(w),
Self::CodeReject(payload) => payload.serialize(w),
Self::ProtocolReject(payload) => payload.serialize(w),
Self::EchoRequest(payload) => payload.serialize(w),
Self::EchoReply(payload) => payload.serialize(w),
Self::DiscardRequest(payload) => payload.serialize(w),
}
}
}
impl LcpData {
fn discriminant(&self) -> u8 {
match self {
Self::ConfigureRequest(_) => LCP_CONFIGURE_REQUEST,
Self::ConfigureAck(_) => LCP_CONFIGURE_ACK,
Self::ConfigureNak(_) => LCP_CONFIGURE_NAK,
Self::ConfigureReject(_) => LCP_CONFIGURE_REJECT,
Self::TerminateRequest(_) => LCP_TERMINATE_REQUEST,
Self::TerminateAck(_) => LCP_TERMINATE_ACK,
Self::CodeReject(_) => LCP_CODE_REJECT,
Self::ProtocolReject(_) => LCP_PROTOCOL_REJECT,
Self::EchoRequest(_) => LCP_ECHO_REQUEST,
Self::EchoReply(_) => LCP_ECHO_REPLY,
Self::DiscardRequest(_) => LCP_DISCARD_REQUEST,
}
}
fn len(&self) -> u16 {
match self {
Self::ConfigureRequest(payload) => payload.len(),
Self::ConfigureAck(payload) => payload.len(),
Self::ConfigureNak(payload) => payload.len(),
Self::ConfigureReject(payload) => payload.len(),
Self::TerminateRequest(payload) => payload.len(),
Self::TerminateAck(payload) => payload.len(),
Self::CodeReject(payload) => payload.len(),
Self::ProtocolReject(payload) => payload.len(),
Self::EchoRequest(payload) => payload.len(),
Self::EchoReply(payload) => payload.len(),
Self::DiscardRequest(payload) => payload.len(),
}
}
fn deserialize_with_discriminant<R: Read>(
&mut self,
r: &mut R,
discriminant: &u8,
) -> Result<()> {
match *discriminant {
LCP_CONFIGURE_REQUEST => {
let mut tmp = LcpConfigureRequest::default();
tmp.deserialize(r)?;
*self = Self::ConfigureRequest(tmp);
}
LCP_CONFIGURE_ACK => {
let mut tmp = LcpConfigureAck::default();
tmp.deserialize(r)?;
*self = Self::ConfigureAck(tmp);
}
LCP_CONFIGURE_NAK => {
let mut tmp = LcpConfigureNak::default();
tmp.deserialize(r)?;
*self = Self::ConfigureNak(tmp);
}
LCP_CONFIGURE_REJECT => {
let mut tmp = LcpConfigureReject::default();
tmp.deserialize(r)?;
*self = Self::ConfigureReject(tmp);
}
LCP_TERMINATE_REQUEST => {
let mut tmp = LcpTerminateRequest::default();
tmp.deserialize(r)?;
*self = Self::TerminateRequest(tmp);
}
LCP_TERMINATE_ACK => {
let mut tmp = LcpTerminateAck::default();
tmp.deserialize(r)?;
*self = Self::TerminateAck(tmp);
}
LCP_CODE_REJECT => {
let mut tmp = LcpCodeReject::default();
tmp.deserialize(r)?;
*self = Self::CodeReject(tmp);
}
LCP_PROTOCOL_REJECT => {
let mut tmp = LcpProtocolReject::default();
tmp.deserialize(r)?;
*self = Self::ProtocolReject(tmp);
}
LCP_ECHO_REQUEST => {
let mut tmp = LcpEchoRequest::default();
tmp.deserialize(r)?;
*self = Self::EchoRequest(tmp);
}
LCP_ECHO_REPLY => {
let mut tmp = LcpEchoReply::default();
tmp.deserialize(r)?;
*self = Self::EchoReply(tmp);
}
LCP_DISCARD_REQUEST => {
let mut tmp = LcpDiscardRequest::default();
tmp.deserialize(r)?;
*self = Self::DiscardRequest(tmp);
}
_ => return Err(Error::InvalidLcpCode(*discriminant)),
}
Ok(())
}
}
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub struct LcpPkt {
#[ppproperly(discriminant_for(field = "data", data_type = "u8"))]
pub identifier: u8,
#[ppproperly(len_for(field = "data", offset = 4, data_type = "u16"))]
pub data: LcpData,
}
impl LcpPkt {
pub fn new_configure_request(identifier: u8, options: Vec<LcpOption>) -> Self {
Self {
identifier,
data: LcpData::ConfigureRequest(LcpConfigureRequest { options }),
}
}
pub fn new_configure_ack(identifier: u8, options: Vec<LcpOption>) -> Self {
Self {
identifier,
data: LcpData::ConfigureAck(LcpConfigureAck { options }),
}
}
pub fn new_configure_nak(identifier: u8, options: Vec<LcpOption>) -> Self {
Self {
identifier,
data: LcpData::ConfigureNak(LcpConfigureNak { options }),
}
}
pub fn new_configure_reject(identifier: u8, options: Vec<LcpOption>) -> Self {
Self {
identifier,
data: LcpData::ConfigureReject(LcpConfigureReject { options }),
}
}
pub fn new_terminate_request(identifier: u8, data: Vec<u8>) -> Self {
Self {
identifier,
data: LcpData::TerminateRequest(LcpTerminateRequest { data }),
}
}
pub fn new_terminate_ack(identifier: u8, data: Vec<u8>) -> Self {
Self {
identifier,
data: LcpData::TerminateAck(LcpTerminateAck { data }),
}
}
pub fn new_code_reject(identifier: u8, pkt: Vec<u8>) -> Self {
Self {
identifier,
data: LcpData::CodeReject(LcpCodeReject { pkt }),
}
}
pub fn new_protocol_reject(identifier: u8, protocol: u16, pkt: Vec<u8>) -> Self {
Self {
identifier,
data: LcpData::ProtocolReject(LcpProtocolReject { protocol, pkt }),
}
}
pub fn new_echo_request(identifier: u8, magic: u32, data: Vec<u8>) -> Self {
Self {
identifier,
data: LcpData::EchoRequest(LcpEchoRequest { magic, data }),
}
}
pub fn new_echo_reply(identifier: u8, magic: u32, data: Vec<u8>) -> Self {
Self {
identifier,
data: LcpData::EchoReply(LcpEchoReply { magic, data }),
}
}
pub fn new_discard_request(identifier: u8, magic: u32, data: Vec<u8>) -> Self {
Self {
identifier,
data: LcpData::DiscardRequest(LcpDiscardRequest { magic, data }),
}
}
pub fn len(&self) -> u16 {
4 + self.data.len()
}
pub fn is_empty(&self) -> bool {
self.len() == 4
}
}
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub struct LcpConfigureRequest {
pub options: Vec<LcpOption>,
}
impl LcpConfigureRequest {
pub fn len(&self) -> u16 {
self.options
.iter()
.map(|option| option.len())
.reduce(|acc, n| acc + n)
.unwrap_or(0)
.into()
}
pub fn is_empty(&self) -> bool {
self.options.is_empty()
}
}
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub struct LcpConfigureAck {
pub options: Vec<LcpOption>,
}
impl LcpConfigureAck {
pub fn len(&self) -> u16 {
self.options
.iter()
.map(|option| option.len())
.reduce(|acc, n| acc + n)
.unwrap_or(0)
.into()
}
pub fn is_empty(&self) -> bool {
self.options.is_empty()
}
}
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub struct LcpConfigureNak {
pub options: Vec<LcpOption>,
}
impl LcpConfigureNak {
pub fn len(&self) -> u16 {
self.options
.iter()
.map(|option| option.len())
.reduce(|acc, n| acc + n)
.unwrap_or(0)
.into()
}
pub fn is_empty(&self) -> bool {
self.options.is_empty()
}
}
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub struct LcpConfigureReject {
pub options: Vec<LcpOption>,
}
impl LcpConfigureReject {
pub fn len(&self) -> u16 {
self.options
.iter()
.map(|option| option.len())
.reduce(|acc, n| acc + n)
.unwrap_or(0)
.into()
}
pub fn is_empty(&self) -> bool {
self.options.is_empty()
}
}
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub struct LcpTerminateRequest {
pub data: Vec<u8>,
}
impl LcpTerminateRequest {
pub fn len(&self) -> u16 {
self.data.len().try_into().unwrap()
}
pub fn is_empty(&self) -> bool {
self.data.is_empty()
}
}
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub struct LcpTerminateAck {
pub data: Vec<u8>,
}
impl LcpTerminateAck {
pub fn len(&self) -> u16 {
self.data.len().try_into().unwrap()
}
pub fn is_empty(&self) -> bool {
self.data.is_empty()
}
}
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub struct LcpCodeReject {
pub pkt: Vec<u8>, // Vec makes MRU truncating easier without overwriting (de)ser impls.
}
impl LcpCodeReject {
pub fn len(&self) -> u16 {
self.pkt.len().try_into().unwrap()
}
pub fn is_empty(&self) -> bool {
self.pkt.is_empty()
}
}
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub struct LcpProtocolReject {
pub protocol: u16,
pub pkt: Vec<u8>, // Vec makes MRU truncating easier without overwriting (de)ser impls.
}
impl LcpProtocolReject {
pub fn len(&self) -> u16 {
(2 + self.pkt.len()).try_into().unwrap()
}
pub fn is_empty(&self) -> bool {
self.len() == 2
}
}
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub struct LcpEchoRequest {
pub magic: u32,
pub data: Vec<u8>,
}
impl LcpEchoRequest {
pub fn len(&self) -> u16 {
(4 + self.data.len()).try_into().unwrap()
}
pub fn is_empty(&self) -> bool {
self.len() == 4
}
}
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub struct LcpEchoReply {
pub magic: u32,
pub data: Vec<u8>,
}
impl LcpEchoReply {
pub fn len(&self) -> u16 {
(4 + self.data.len()).try_into().unwrap()
}
pub fn is_empty(&self) -> bool {
self.len() == 4
}
}
#[derive(Clone, Debug, Default, Eq, PartialEq, Serialize, Deserialize)]
pub struct LcpDiscardRequest {
pub magic: u32,
pub data: Vec<u8>,
}
impl LcpDiscardRequest {
pub fn len(&self) -> u16 {
(4 + self.data.len()).try_into().unwrap()
}
pub fn is_empty(&self) -> bool {
self.len() == 4
}
}
|