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
//! STUN packets sending and receiving.

use std::net::SocketAddr;

use stun_rs::{
    attributes::stun::{Fingerprint, XorMappedAddress},
    DecoderContextBuilder, MessageDecoderBuilder, MessageEncoderBuilder, StunMessageBuilder,
};
pub use stun_rs::{
    attributes::StunAttribute, error::StunDecodeError, methods, MessageClass, MessageDecoder,
    TransactionId,
};

/// Errors that can occur when handling a STUN packet.
#[derive(Debug, thiserror::Error)]
pub enum Error {
    /// The STUN message could not be parsed or is otherwise invalid.
    #[error("invalid message")]
    InvalidMessage,
    /// STUN request is not a binding request when it should be.
    #[error("not binding")]
    NotBinding,
    /// STUN packet is not a response when it should be.
    #[error("not success response")]
    NotSuccessResponse,
    /// STUN response has malformed attributes.
    #[error("malformed attributes")]
    MalformedAttrs,
    /// STUN request didn't end in fingerprint.
    #[error("no fingerprint")]
    NoFingerprint,
    /// STUN request had bogus fingerprint.
    #[error("invalid fingerprint")]
    InvalidFingerprint,
}

/// Generates a binding request STUN packet.
pub fn request(tx: TransactionId) -> Vec<u8> {
    let fp = Fingerprint::default();
    let msg = StunMessageBuilder::new(methods::BINDING, MessageClass::Request)
        .with_transaction_id(tx)
        .with_attribute(fp)
        .build();

    let encoder = MessageEncoderBuilder::default().build();
    let mut buffer = vec![0u8; 150];
    let size = encoder.encode(&mut buffer, &msg).expect("invalid encoding");
    buffer.truncate(size);
    buffer
}

/// Generates a binding response.
pub fn response(tx: TransactionId, addr: SocketAddr) -> Vec<u8> {
    let msg = StunMessageBuilder::new(methods::BINDING, MessageClass::SuccessResponse)
        .with_transaction_id(tx)
        .with_attribute(XorMappedAddress::from(addr))
        .build();

    let encoder = MessageEncoderBuilder::default().build();
    let mut buffer = vec![0u8; 150];
    let size = encoder.encode(&mut buffer, &msg).expect("invalid encoding");
    buffer.truncate(size);
    buffer
}

// Copied from stun_rs
// const MAGIC_COOKIE: Cookie = Cookie(0x2112_A442);
const COOKIE: [u8; 4] = 0x2112_A442u32.to_be_bytes();

/// Reports whether b is a STUN message.
pub fn is(b: &[u8]) -> bool {
    b.len() >= stun_rs::MESSAGE_HEADER_SIZE &&
        b[0]&0b11000000 == 0 && // top two bits must be zero
        b[4..8] == COOKIE
}

/// Parses a STUN binding request.
pub fn parse_binding_request(b: &[u8]) -> Result<TransactionId, Error> {
    let ctx = DecoderContextBuilder::default()
        .with_validation() // ensure fingerprint is validated
        .build();
    let decoder = MessageDecoderBuilder::default().with_context(ctx).build();
    let (msg, _) = decoder.decode(b).map_err(|_| Error::InvalidMessage)?;

    let tx = *msg.transaction_id();
    if msg.method() != methods::BINDING {
        return Err(Error::NotBinding);
    }

    // TODO: Tailscale sets the software to tailscale, we should check if we want to do this too.

    if msg
        .attributes()
        .last()
        .map(|attr| !attr.is_fingerprint())
        .unwrap_or_default()
    {
        return Err(Error::NoFingerprint);
    }

    Ok(tx)
}

/// Parses a successful binding response STUN packet.
/// The IP address is extracted from the XOR-MAPPED-ADDRESS attribute.
pub fn parse_response(b: &[u8]) -> Result<(TransactionId, SocketAddr), Error> {
    let decoder = MessageDecoder::default();
    let (msg, _) = decoder.decode(b).map_err(|_| Error::InvalidMessage)?;

    let tx = *msg.transaction_id();
    if msg.class() != MessageClass::SuccessResponse {
        return Err(Error::NotSuccessResponse);
    }

    // Read through the attributes.
    // The the addr+port reported by XOR-MAPPED-ADDRESS
    // as the canonical value. If the attribute is not
    // present but the STUN server responds with
    // MAPPED-ADDRESS we fall back to it.

    let mut addr = None;
    let mut fallback_addr = None;
    for attr in msg.attributes() {
        match attr {
            StunAttribute::XorMappedAddress(a) => {
                let mut a = *a.socket_address();
                a.set_ip(a.ip().to_canonical());
                addr = Some(a);
            }
            StunAttribute::MappedAddress(a) => {
                let mut a = *a.socket_address();
                a.set_ip(a.ip().to_canonical());
                fallback_addr = Some(a);
            }
            _ => {}
        }
    }

    if let Some(addr) = addr {
        return Ok((tx, addr));
    }

    if let Some(addr) = fallback_addr {
        return Ok((tx, addr));
    }

    Err(Error::MalformedAttrs)
}

#[cfg(test)]
mod tests {

    use std::net::{IpAddr, Ipv4Addr};

    use super::*;

    struct ResponseTestCase {
        name: &'static str,
        data: Vec<u8>,
        want_tid: Vec<u8>,
        want_addr: IpAddr,
        want_port: u16,
    }

    #[test]
    fn test_parse_response() {
        let cases = vec![
            ResponseTestCase {
                name: "google-1",
                data: vec![
                    0x01, 0x01, 0x00, 0x0c, 0x21, 0x12, 0xa4, 0x42,
                    0x23, 0x60, 0xb1, 0x1e, 0x3e, 0xc6, 0x8f, 0xfa,
                    0x93, 0xe0, 0x80, 0x07, 0x00, 0x20, 0x00, 0x08,
                    0x00, 0x01, 0xc7, 0x86, 0x69, 0x57, 0x85, 0x6f,
                ],
                want_tid: vec![
                    0x23, 0x60, 0xb1, 0x1e, 0x3e, 0xc6, 0x8f, 0xfa,
                    0x93, 0xe0, 0x80, 0x07,
                ],
                want_addr: IpAddr::V4(Ipv4Addr::from([72, 69, 33, 45])),
                want_port: 59028,
            },
            ResponseTestCase {
                name: "google-2",
                data: vec![
                    0x01, 0x01, 0x00, 0x0c, 0x21, 0x12, 0xa4, 0x42,
                    0xf9, 0xf1, 0x21, 0xcb, 0xde, 0x7d, 0x7c, 0x75,
                    0x92, 0x3c, 0xe2, 0x71, 0x00, 0x20, 0x00, 0x08,
                    0x00, 0x01, 0xc7, 0x87, 0x69, 0x57, 0x85, 0x6f,
                ],
                want_tid: vec![
                    0xf9, 0xf1, 0x21, 0xcb, 0xde, 0x7d, 0x7c, 0x75,
                    0x92, 0x3c, 0xe2, 0x71,
                ],
                want_addr: IpAddr::V4(Ipv4Addr::from([72, 69, 33, 45])),
                want_port: 59029,
            },
            ResponseTestCase{
                name: "stun.sipgate.net:10000",
                data: vec![
                    0x01, 0x01, 0x00, 0x44, 0x21, 0x12, 0xa4, 0x42,
                    0x48, 0x2e, 0xb6, 0x47, 0x15, 0xe8, 0xb2, 0x8e,
                    0xae, 0xad, 0x64, 0x44, 0x00, 0x01, 0x00, 0x08,
                    0x00, 0x01, 0xe4, 0xab, 0x48, 0x45, 0x21, 0x2d,
                    0x00, 0x04, 0x00, 0x08, 0x00, 0x01, 0x27, 0x10,
                    0xd9, 0x0a, 0x44, 0x98, 0x00, 0x05, 0x00, 0x08,
                    0x00, 0x01, 0x27, 0x11, 0xd9, 0x74, 0x7a, 0x8a,
                    0x80, 0x20, 0x00, 0x08, 0x00, 0x01, 0xc5, 0xb9,
                    0x69, 0x57, 0x85, 0x6f, 0x80, 0x22, 0x00, 0x10,
                    0x56, 0x6f, 0x76, 0x69, 0x64, 0x61, 0x2e, 0x6f,
                    0x72, 0x67, 0x20, 0x30, 0x2e, 0x39, 0x36, 0x00,
                ],
                want_tid: vec![
                    0x48, 0x2e, 0xb6, 0x47, 0x15, 0xe8, 0xb2, 0x8e,
                    0xae, 0xad, 0x64, 0x44,
                ],
                want_addr: IpAddr::V4(Ipv4Addr::from([72, 69, 33, 45])),
                want_port: 58539,
            },
            ResponseTestCase{
                name: "stun.powervoip.com:3478",
                data: vec![
                    0x01, 0x01, 0x00, 0x24, 0x21, 0x12, 0xa4, 0x42,
                    0x7e, 0x57, 0x96, 0x68, 0x29, 0xf4, 0x44, 0x60,
                    0x9d, 0x1d, 0xea, 0xa6, 0x00, 0x01, 0x00, 0x08,
                    0x00, 0x01, 0xe9, 0xd3, 0x48, 0x45, 0x21, 0x2d,
                    0x00, 0x04, 0x00, 0x08, 0x00, 0x01, 0x0d, 0x96,
                    0x4d, 0x48, 0xa9, 0xd4, 0x00, 0x05, 0x00, 0x08,
                    0x00, 0x01, 0x0d, 0x97, 0x4d, 0x48, 0xa9, 0xd5,
                ],
                want_tid: vec![
                    0x7e, 0x57, 0x96, 0x68, 0x29, 0xf4, 0x44, 0x60,
                    0x9d, 0x1d, 0xea, 0xa6,
                ],
                want_addr: IpAddr::V4(Ipv4Addr::from([72, 69, 33, 45])),
                want_port: 59859,
            },
            ResponseTestCase{
                name: "in-process pion server",
                data: vec![
                    0x01, 0x01, 0x00, 0x24, 0x21, 0x12, 0xa4, 0x42,
                    0xeb, 0xc2, 0xd3, 0x6e, 0xf4, 0x71, 0x21, 0x7c,
                    0x4f, 0x3e, 0x30, 0x8e, 0x80, 0x22, 0x00, 0x0a,
                    0x65, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74,
                    0x65, 0x72, 0x00, 0x00, 0x00, 0x20, 0x00, 0x08,
                    0x00, 0x01, 0xce, 0x66, 0x5e, 0x12, 0xa4, 0x43,
                    0x80, 0x28, 0x00, 0x04, 0xb6, 0x99, 0xbb, 0x02,
                    0x01, 0x01, 0x00, 0x24, 0x21, 0x12, 0xa4, 0x42,
                ],
                want_tid: vec![
                    0xeb, 0xc2, 0xd3, 0x6e, 0xf4, 0x71, 0x21, 0x7c,
                    0x4f, 0x3e, 0x30, 0x8e,
                ],
                want_addr: IpAddr::V4(Ipv4Addr::from([127, 0, 0, 1])),
                want_port: 61300,
            },
            ResponseTestCase{
                name: "stuntman-server ipv6",
                data: vec![
                    0x01, 0x01, 0x00, 0x48, 0x21, 0x12, 0xa4, 0x42,
                    0x06, 0xf5, 0x66, 0x85, 0xd2, 0x8a, 0xf3, 0xe6,
                    0x9c, 0xe3, 0x41, 0xe2, 0x00, 0x01, 0x00, 0x14,
                    0x00, 0x02, 0x90, 0xce, 0x26, 0x02, 0x00, 0xd1,
                    0xb4, 0xcf, 0xc1, 0x00, 0x38, 0xb2, 0x31, 0xff,
                    0xfe, 0xef, 0x96, 0xf6, 0x80, 0x2b, 0x00, 0x14,
                    0x00, 0x02, 0x0d, 0x96, 0x26, 0x04, 0xa8, 0x80,
                    0x00, 0x02, 0x00, 0xd1, 0x00, 0x00, 0x00, 0x00,
                    0x00, 0xc5, 0x70, 0x01, 0x00, 0x20, 0x00, 0x14,
                    0x00, 0x02, 0xb1, 0xdc, 0x07, 0x10, 0xa4, 0x93,
                    0xb2, 0x3a, 0xa7, 0x85, 0xea, 0x38, 0xc2, 0x19,
                    0x62, 0x0c, 0xd7, 0x14,
                ],
                want_tid: vec![
                    6, 245, 102, 133, 210, 138, 243, 230, 156, 227,
                    65, 226,
                ],
                want_addr: "2602:d1:b4cf:c100:38b2:31ff:feef:96f6".parse().unwrap(),
                want_port: 37070,
            },
            // Testing STUN attribute padding rules using STUN software attribute
            // with values of 1 & 3 length respectively before the XorMappedAddress attribute
            ResponseTestCase {
                name: "software-a",
                data: vec![
                    0x01, 0x01, 0x00, 0x14, 0x21, 0x12, 0xa4, 0x42,
                    0xeb, 0xc2, 0xd3, 0x6e, 0xf4, 0x71, 0x21, 0x7c,
                    0x4f, 0x3e, 0x30, 0x8e, 0x80, 0x22, 0x00, 0x01,
                    0x61, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x08,
                    0x00, 0x01, 0xce, 0x66, 0x5e, 0x12, 0xa4, 0x43,
                ],
                want_tid: vec![
                    0xeb, 0xc2, 0xd3, 0x6e, 0xf4, 0x71, 0x21, 0x7c,
                    0x4f, 0x3e, 0x30, 0x8e,
                ],
                want_addr: IpAddr::V4(Ipv4Addr::from([127, 0, 0, 1])),
                want_port: 61300,
            },
            ResponseTestCase {
                name: "software-abc",
                data: vec![
                    0x01, 0x01, 0x00, 0x14, 0x21, 0x12, 0xa4, 0x42,
                    0xeb, 0xc2, 0xd3, 0x6e, 0xf4, 0x71, 0x21, 0x7c,
                    0x4f, 0x3e, 0x30, 0x8e, 0x80, 0x22, 0x00, 0x03,
                    0x61, 0x62, 0x63, 0x00, 0x00, 0x20, 0x00, 0x08,
                    0x00, 0x01, 0xce, 0x66, 0x5e, 0x12, 0xa4, 0x43,
                ],
                want_tid: vec![
                    0xeb, 0xc2, 0xd3, 0x6e, 0xf4, 0x71, 0x21, 0x7c,
                    0x4f, 0x3e, 0x30, 0x8e,
                ],
                want_addr: IpAddr::V4(Ipv4Addr::from([127, 0, 0, 1])),
                want_port: 61300,
            },
            ResponseTestCase {
                name:     "no-4in6",
                data:     hex::decode("010100182112a4424fd5d202dcb37d31fc773306002000140002cd3d2112a4424fd5d202dcb382ce2dc3fcc7").unwrap(),
                want_tid:  vec![79, 213, 210, 2, 220, 179, 125, 49, 252, 119, 51, 6],
                want_addr: IpAddr::V4(Ipv4Addr::from([209, 180, 207, 193])),
                want_port: 60463,
            },
            ];

        for (i, test) in cases.into_iter().enumerate() {
            println!("Case {i}: {}", test.name);
            let (tx, addr_port) = parse_response(&test.data).unwrap();
            assert!(is(&test.data));
            assert_eq!(tx.as_bytes(), &test.want_tid[..]);
            assert_eq!(addr_port.ip(), test.want_addr);
            assert_eq!(addr_port.port(), test.want_port);
        }
    }

    #[test]
    fn test_parse_binding_request() {
        let tx = TransactionId::default();
        let req = request(tx);
        assert!(is(&req));
        let got_tx = parse_binding_request(&req).unwrap();
        assert_eq!(got_tx, tx);
    }

    #[test]
    fn test_stun_cookie() {
        assert_eq!(stun_rs::MAGIC_COOKIE, COOKIE);
    }

    #[test]
    fn test_response() {
        let txn = |n| TransactionId::from([n; 12]);

        struct Case {
            tx: TransactionId,
            addr: IpAddr,
            port: u16,
        }
        let tests = vec![
            Case {
                tx: txn(1),
                addr: "1.2.3.4".parse().unwrap(),
                port: 254,
            },
            Case {
                tx: txn(2),
                addr: "1.2.3.4".parse().unwrap(),
                port: 257,
            },
            Case {
                tx: txn(3),
                addr: "1::4".parse().unwrap(),
                port: 254,
            },
            Case {
                tx: txn(4),
                addr: "1::4".parse().unwrap(),
                port: 257,
            },
        ];

        for tt in tests {
            let res = response(tt.tx, SocketAddr::new(tt.addr, tt.port));
            assert!(is(&res));
            let (tx2, addr2) = parse_response(&res).unwrap();
            assert_eq!(tt.tx, tx2);
            assert_eq!(tt.addr, addr2.ip());
            assert_eq!(tt.port, addr2.port());
        }
    }
}