wayk_proto 0.1.0

WaykNow packet encoder-decoder and sequencing utilities
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
use super::{ConnectionSM, ConnectionSMResult};
use crate::{
    error::{ProtoError, ProtoErrorKind, ProtoErrorResultExt},
    message::{NowActivateMsg, NowCapabilitiesMsg, NowMessage},
    sm::{ConnectionSMSharedData, ConnectionSMSharedDataRc, ConnectionState},
};
use log::info;
use std::{cell::RefCell, rc::Rc};

macro_rules! unexpected_call {
    ($sm_struct:ident, $self:ident, $method_name:literal) => {
        ProtoError::new(ProtoErrorKind::ConnectionSequence($sm_struct::CONNECTION_STATE)).or_desc(format!(
            concat!("unexpected call to `{}::", $method_name, "` in state {:?}"),
            $sm_struct::NAME,
            $self.state
        ))
    };
}

macro_rules! unexpected_msg {
    ($sm_struct:ident, $self:ident, $unexpected_msg:ident) => {
        ProtoError::new(ProtoErrorKind::UnexpectedMessage($unexpected_msg.get_type())).or_desc(format!(
            "`{}` received an unexpected message in state {:?}: {:?}",
            $sm_struct::NAME,
            $self.state,
            $unexpected_msg
        ))
    };
}

#[derive(PartialEq, Debug)]
enum BasicState {
    Initial,
    Ready,
    Terminated,
}

// handshake

pub struct HandshakeSM {
    state: BasicState,
}

impl HandshakeSM {
    const CONNECTION_STATE: ConnectionState = ConnectionState::Handshake;
    const NAME: &'static str = "HandshakeSM";

    pub fn new() -> Self {
        Self {
            state: BasicState::Initial,
        }
    }
}

impl ConnectionSM for HandshakeSM {
    fn set_shared_data(&mut self, _: ConnectionSMSharedDataRc) {}

    fn get_shared_data(&self) -> Option<ConnectionSMSharedDataRc> {
        None
    }

    fn is_terminated(&self) -> bool {
        self.state == BasicState::Terminated
    }

    fn waiting_for_packet(&self) -> bool {
        self.state == BasicState::Ready
    }

    fn update_without_message<'msg>(&mut self) -> ConnectionSMResult<'msg> {
        use wayk_proto::message::NowHandshakeMsg;

        match &self.state {
            BasicState::Initial => {
                self.state = BasicState::Ready;
                Ok(Some(NowHandshakeMsg::new_success().into()))
            }
            _ => unexpected_call!(Self, self, "update_without_message"),
        }
    }

    fn update_with_message<'msg: 'a, 'a>(&mut self, msg: &'a NowMessage<'msg>) -> ConnectionSMResult<'msg> {
        use wayk_proto::message::status::HandshakeStatusCode;

        match &self.state {
            BasicState::Ready => match msg {
                NowMessage::Handshake(msg) => match msg.status.code() {
                    HandshakeStatusCode::Success => {
                        log::trace!("handshake succeeded");
                        self.state = BasicState::Terminated;
                        Ok(None)
                    }
                    HandshakeStatusCode::Failure => {
                        ProtoError::new(ProtoErrorKind::ConnectionSequence(ConnectionState::Handshake))
                            .or_desc("handshake failed")
                    }
                    HandshakeStatusCode::Incompatible => {
                        ProtoError::new(ProtoErrorKind::ConnectionSequence(ConnectionState::Handshake))
                            .or_desc("version incompatible")
                    }
                },
                unexpected => unexpected_msg!(Self, self, unexpected),
            },
            _ => unexpected_call!(Self, self, "update_with_message"),
        }
    }
}

// negotiate

pub struct NegotiateSM {
    state: BasicState,
    shared_data: Rc<RefCell<ConnectionSMSharedData>>,
}

impl NegotiateSM {
    const CONNECTION_STATE: ConnectionState = ConnectionState::Negotiate;
    const NAME: &'static str = "NegotiateSM";

    pub fn new(shared_data: Rc<RefCell<ConnectionSMSharedData>>) -> Self {
        Self {
            state: BasicState::Initial,
            shared_data,
        }
    }
}

impl ConnectionSM for NegotiateSM {
    fn set_shared_data(&mut self, shared_data: Rc<RefCell<ConnectionSMSharedData>>) {
        self.shared_data = shared_data;
    }

    fn get_shared_data(&self) -> Option<ConnectionSMSharedDataRc> {
        Some(Rc::clone(&self.shared_data))
    }

    fn is_terminated(&self) -> bool {
        self.state == BasicState::Terminated
    }

    fn waiting_for_packet(&self) -> bool {
        self.state == BasicState::Ready
    }

    fn update_without_message<'msg>(&mut self) -> ConnectionSMResult<'msg> {
        use wayk_proto::message::{NegotiateFlags, NowNegotiateMsg};

        match &self.state {
            BasicState::Initial => {
                self.state = BasicState::Ready;
                let shared_data = self.shared_data.borrow();
                Ok(Some(
                    NowNegotiateMsg::new_with_auth_list(
                        NegotiateFlags::new_empty().set_srp_extended(),
                        shared_data.available_auth_types.clone(),
                    )
                    .into(),
                ))
            }
            _ => unexpected_call!(Self, self, "update_without_message"),
        }
    }

    fn update_with_message<'msg: 'a, 'a>(&mut self, msg: &'a NowMessage<'msg>) -> ConnectionSMResult<'msg> {
        match &self.state {
            BasicState::Ready => match msg {
                NowMessage::Negotiate(msg) => {
                    info!("Available authentication methods on server: {:?}", msg.auth_list.0);

                    let mut shared_data = self.shared_data.borrow_mut();
                    let common_auth_types = msg
                        .auth_list
                        .iter()
                        .filter(|elem| shared_data.available_auth_types.contains(elem))
                        .copied()
                        .collect();
                    shared_data.available_auth_types = common_auth_types;

                    self.state = BasicState::Terminated;
                    Ok(None)
                }
                unexpected => unexpected_msg!(Self, self, unexpected),
            },
            _ => unexpected_call!(Self, self, "update_with_message"),
        }
    }
}

// associate

#[derive(PartialEq, Debug)]
enum AssociateState {
    WaitInfo,
    WaitResponse,
    Terminated,
}

pub struct AssociateSM {
    state: AssociateState,
}

impl AssociateSM {
    const CONNECTION_STATE: ConnectionState = ConnectionState::Associate;
    const NAME: &'static str = "AssociateSM";

    pub fn new() -> Self {
        Self {
            state: AssociateState::WaitInfo,
        }
    }
}

impl ConnectionSM for AssociateSM {
    fn set_shared_data(&mut self, _: ConnectionSMSharedDataRc) {}

    fn get_shared_data(&self) -> Option<ConnectionSMSharedDataRc> {
        None
    }

    fn is_terminated(&self) -> bool {
        self.state == AssociateState::Terminated
    }

    fn waiting_for_packet(&self) -> bool {
        !self.is_terminated()
    }

    fn update_without_message<'msg>(&mut self) -> ConnectionSMResult<'msg> {
        unexpected_call!(Self, self, "update_without_message")
    }

    fn update_with_message<'msg: 'a, 'a>(&mut self, msg: &'a NowMessage<'msg>) -> ConnectionSMResult<'msg> {
        use wayk_proto::message::NowAssociateMsg;

        match &self.state {
            AssociateState::WaitInfo => match msg {
                NowMessage::Associate(NowAssociateMsg::Info(_)) => {
                    self.state = AssociateState::WaitResponse;
                    Ok(Some(NowAssociateMsg::new_request().into()))
                }
                unexpected => unexpected_msg!(Self, self, unexpected),
            },
            AssociateState::WaitResponse => match msg {
                NowMessage::Associate(NowAssociateMsg::Response(_)) => {
                    self.state = AssociateState::Terminated;
                    log::trace!("associate process succeeded");
                    Ok(None)
                }
                unexpected => unexpected_msg!(Self, self, unexpected),
            },
            AssociateState::Terminated => unexpected_call!(Self, self, "update_with_message"),
        }
    }
}

// capabilities

pub struct CapabilitiesSM {
    terminated: bool,
    shared_data: ConnectionSMSharedDataRc,
}

impl CapabilitiesSM {
    pub fn new(shared_data: ConnectionSMSharedDataRc) -> Self {
        Self {
            terminated: false,
            shared_data,
        }
    }
}

impl ConnectionSM for CapabilitiesSM {
    fn set_shared_data(&mut self, shared_data: ConnectionSMSharedDataRc) {
        self.shared_data = shared_data;
    }

    fn get_shared_data(&self) -> Option<ConnectionSMSharedDataRc> {
        Some(Rc::clone(&self.shared_data))
    }

    fn is_terminated(&self) -> bool {
        self.terminated
    }

    fn waiting_for_packet(&self) -> bool {
        !self.terminated
    }

    fn update_without_message<'msg>(&mut self) -> ConnectionSMResult<'msg> {
        ProtoError::new(ProtoErrorKind::ConnectionSequence(ConnectionState::Capabilities))
            .or_desc("unexpected call to `CapabilitiesSM::update_without_message`")
    }

    fn update_with_message<'msg: 'a, 'a>(&mut self, msg: &'a NowMessage<'msg>) -> ConnectionSMResult<'msg> {
        if self.terminated {
            ProtoError::new(ProtoErrorKind::ConnectionSequence(ConnectionState::Capabilities))
                .or_desc("unexpected call to `CapabilitiesSM::update_with_message` in terminated state")
        } else {
            match msg {
                NowMessage::Capabilities(msg) => {
                    log::info!(
                        "Server capabilities (short): {:?}",
                        msg.capabilities
                            .iter()
                            .map(|caps| caps.name_as_str())
                            .collect::<Vec<&str>>()
                    );
                    log::trace!("Server capabilities details: {:#?}", msg.capabilities.0);

                    self.terminated = true;
                    Ok(Some(
                        NowCapabilitiesMsg::new_with_capabilities(self.shared_data.borrow().capabilities.clone())
                            .into(),
                    ))
                }
                unexpected => ProtoError::new(ProtoErrorKind::ConnectionSequence(ConnectionState::Capabilities))
                    .or_desc(format!("received an unexpected message: {:?}", unexpected)),
            }
        }
    }
}

// channels

#[derive(PartialEq, Debug)]
enum ChannelPairingState {
    SendListRequest,
    WaitListResponse,
    SendOpenRequest,
    WaitOpenResponse,
    Terminated,
}

pub struct ChannelsSM {
    state: ChannelPairingState,
    shared_data: ConnectionSMSharedDataRc,
}

impl ChannelsSM {
    const CONNECTION_STATE: ConnectionState = ConnectionState::Channels;
    const NAME: &'static str = "ChannelsSM";

    pub fn new(shared_data: ConnectionSMSharedDataRc) -> Self {
        Self {
            state: ChannelPairingState::SendListRequest,
            shared_data,
        }
    }
}

impl ConnectionSM for ChannelsSM {
    fn set_shared_data(&mut self, shared_data: ConnectionSMSharedDataRc) {
        self.shared_data = shared_data;
    }

    fn get_shared_data(&self) -> Option<ConnectionSMSharedDataRc> {
        Some(Rc::clone(&self.shared_data))
    }

    fn is_terminated(&self) -> bool {
        self.state == ChannelPairingState::Terminated
    }

    fn waiting_for_packet(&self) -> bool {
        self.state == ChannelPairingState::WaitListResponse || self.state == ChannelPairingState::WaitOpenResponse
    }

    fn update_without_message<'msg>(&mut self) -> ConnectionSMResult<'msg> {
        use crate::message::{ChannelMessageType, NowChannelMsg};
        match self.state {
            ChannelPairingState::SendListRequest => {
                self.state = ChannelPairingState::WaitListResponse;
                Ok(Some(
                    NowChannelMsg::new(
                        ChannelMessageType::ChannelListRequest,
                        self.shared_data.borrow().channels.clone(),
                    )
                    .into(),
                ))
            }
            ChannelPairingState::WaitListResponse => unexpected_call!(Self, self, "update_without_message"),
            ChannelPairingState::SendOpenRequest => {
                self.state = ChannelPairingState::WaitOpenResponse;
                Ok(Some(
                    NowChannelMsg::new(
                        ChannelMessageType::ChannelOpenRequest,
                        self.shared_data.borrow().channels.clone(),
                    )
                    .into(),
                ))
            }
            ChannelPairingState::WaitOpenResponse => unexpected_call!(Self, self, "update_without_message"),
            ChannelPairingState::Terminated => unexpected_call!(Self, self, "update_without_message"),
        }
    }

    fn update_with_message<'msg: 'a, 'a>(&mut self, msg: &'a NowMessage<'msg>) -> ConnectionSMResult<'msg> {
        use crate::message::ChannelName;

        match self.state {
            ChannelPairingState::SendListRequest => unexpected_call!(Self, self, "update_with_message"),
            ChannelPairingState::WaitListResponse => match msg {
                NowMessage::Channel(msg) => {
                    log::info!(
                        "Available channel(s) on server: {:?}",
                        msg.channel_list
                            .iter()
                            .map(|def| &def.name)
                            .collect::<Vec<&ChannelName>>()
                    );

                    let mut unavailable_channels = Vec::new();
                    for def in self.shared_data.borrow().channels.iter() {
                        if !msg.channel_list.iter().any(|d| d.name == def.name) {
                            unavailable_channels.push(def.name.clone())
                        }
                    }

                    if !unavailable_channels.is_empty() {
                        log::warn!("Unavailable channel(s) on server ignored: {:?}", unavailable_channels);
                        self.shared_data
                            .borrow_mut()
                            .channels
                            .retain(|def| !unavailable_channels.contains(&def.name));
                    }

                    self.state = ChannelPairingState::SendOpenRequest;
                    Ok(None)
                }
                unexpected => unexpected_msg!(Self, self, unexpected),
            },
            ChannelPairingState::SendOpenRequest => unexpected_call!(Self, self, "update_with_message"),
            ChannelPairingState::WaitOpenResponse => match msg {
                NowMessage::Channel(msg) => {
                    log::info!(
                        "Opened channel(s): {:?}",
                        msg.channel_list
                            .iter()
                            .map(|def| &def.name)
                            .collect::<Vec<&ChannelName>>()
                    );
                    self.state = ChannelPairingState::Terminated;
                    self.shared_data.borrow_mut().channels = msg.channel_list.0.clone();
                    Ok(Some(NowActivateMsg::default().into()))
                }
                unexpected => unexpected_msg!(Self, self, unexpected),
            },
            ChannelPairingState::Terminated => unexpected_call!(Self, self, "update_with_message"),
        }
    }
}