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
|
/* Copyright (C) 2021 Open Information Security Foundation
*
* You can copy, redistribute or modify this Program under the terms of
* the GNU General Public License version 2 as published by the Free
* Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* version 2 along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
use super::error::QuicError;
use crate::quic::parser::quic_var_uint;
use nom7::bytes::complete::take;
use nom7::combinator::{all_consuming, complete};
use nom7::multi::{count, many0};
use nom7::number::complete::{be_u16, be_u32, be_u8, le_u16, le_u32};
use nom7::sequence::pair;
use nom7::IResult;
use num::FromPrimitive;
use std::fmt;
use tls_parser::TlsMessage::Handshake;
use tls_parser::TlsMessageHandshake::{ClientHello, ServerHello};
use tls_parser::{
parse_tls_extensions, parse_tls_message_handshake, TlsCipherSuiteID, TlsExtension,
TlsExtensionType, TlsMessage,
};
/// Tuple of StreamTag and offset
type TagOffset = (StreamTag, u32);
/// Tuple of StreamTag and value
type TagValue = (StreamTag, Vec<u8>);
#[derive(Debug, PartialEq)]
pub(crate) struct Stream {
pub fin: bool,
pub stream_id: Vec<u8>,
pub offset: Vec<u8>,
pub tags: Option<Vec<TagValue>>,
}
#[repr(u32)]
#[derive(Debug, PartialEq, Clone, Copy, FromPrimitive)]
pub(crate) enum StreamTag {
Aead = 0x41454144,
Ccrt = 0x43435254,
Ccs = 0x43435300,
Cetv = 0x43455456,
Cfcw = 0x43464357,
Chlo = 0x43484c4f,
Copt = 0x434f5054,
Csct = 0x43534354,
Ctim = 0x4354494d,
Icsl = 0x4943534c,
Irtt = 0x49525454,
Kexs = 0x4b455853,
Mids = 0x4d494453,
Mspc = 0x4d535043,
Nonc = 0x4e4f4e43,
Nonp = 0x4e4f4e50,
Pad = 0x50414400,
Pdmd = 0x50444d44,
Pubs = 0x50554253,
Scid = 0x53434944,
Scls = 0x53434c53,
Sfcw = 0x53464357,
Smhl = 0x534d484c,
Sni = 0x534e4900,
Sno = 0x534e4f00,
Stk = 0x53544b00,
Tcid = 0x54434944,
Uaid = 0x55414944,
Ver = 0x56455200,
Xlct = 0x584c4354,
}
impl fmt::Display for StreamTag {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"{}",
match self {
StreamTag::Aead => "AEAD",
StreamTag::Ccrt => "CCRT",
StreamTag::Ccs => "CCS",
StreamTag::Cetv => "CETV",
StreamTag::Cfcw => "CFCW",
StreamTag::Chlo => "CHLO",
StreamTag::Copt => "COPT",
StreamTag::Csct => "CSCT",
StreamTag::Ctim => "CTIM",
StreamTag::Icsl => "ICSL",
StreamTag::Irtt => "IRTT",
StreamTag::Kexs => "KEXS",
StreamTag::Mids => "MIDS",
StreamTag::Mspc => "MSPC",
StreamTag::Nonc => "NONC",
StreamTag::Nonp => "NONP",
StreamTag::Pad => "PAD",
StreamTag::Pdmd => "PDMD",
StreamTag::Pubs => "PUBS",
StreamTag::Scid => "SCID",
StreamTag::Scls => "SCLS",
StreamTag::Sfcw => "SFCW",
StreamTag::Smhl => "SMHL",
StreamTag::Sni => "SNI",
StreamTag::Sno => "SNO",
StreamTag::Stk => "STK",
StreamTag::Tcid => "TCID",
StreamTag::Uaid => "UAID",
StreamTag::Ver => "VER",
StreamTag::Xlct => "XLCT",
}
)
}
}
#[derive(Debug, PartialEq)]
pub(crate) struct Ack {
pub largest_acknowledged: u64,
pub ack_delay: u64,
pub ack_range_count: u64,
pub first_ack_range: u64,
}
#[derive(Debug, PartialEq)]
pub(crate) struct Crypto {
pub ciphers: Vec<TlsCipherSuiteID>,
// We remap the Vec<TlsExtension> from tls_parser::parse_tls_extensions because of
// the lifetime of TlsExtension due to references to the slice used for parsing
pub extv: Vec<QuicTlsExtension>,
pub ja3: String,
}
#[derive(Debug, PartialEq)]
pub(crate) struct CryptoFrag {
pub offset: u64,
pub length: u64,
pub data: Vec<u8>,
}
#[derive(Debug, PartialEq)]
pub(crate) enum Frame {
Padding,
Ping,
Ack(Ack),
// this is more than a crypto frame : it contains a fully parsed tls hello
Crypto(Crypto),
// this is a regular quic crypto frame : they can be reassembled
// in order to parse a tls hello
CryptoFrag(CryptoFrag),
Stream(Stream),
Unknown(Vec<u8>),
}
fn parse_padding_frame(input: &[u8]) -> IResult<&[u8], Frame, QuicError> {
// nom take_while: cannot infer type for type parameter `Error` declared on the function `take_while`
let mut offset = 0;
while offset < input.len() {
if input[offset] != 0 {
break;
}
offset += 1;
}
return Ok((&input[offset..], Frame::Padding));
}
fn parse_ack_frame(input: &[u8]) -> IResult<&[u8], Frame, QuicError> {
let (rest, largest_acknowledged) = quic_var_uint(input)?;
let (rest, ack_delay) = quic_var_uint(rest)?;
let (rest, ack_range_count) = quic_var_uint(rest)?;
let (mut rest, first_ack_range) = quic_var_uint(rest)?;
for _ in 0..ack_range_count {
//RFC9000 section 19.3.1. ACK Ranges
let (rest1, _gap) = quic_var_uint(rest)?;
let (rest1, _ack_range_length) = quic_var_uint(rest1)?;
rest = rest1;
}
Ok((
rest,
Frame::Ack(Ack {
largest_acknowledged,
ack_delay,
ack_range_count,
first_ack_range,
}),
))
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct QuicTlsExtension {
pub etype: TlsExtensionType,
pub values: Vec<Vec<u8>>,
}
fn quic_tls_ja3_client_extends(ja3: &mut String, exts: Vec<TlsExtension>) {
ja3.push(',');
let mut dash = false;
for e in &exts {
if let TlsExtension::EllipticCurves(x) = e {
for ec in x {
if dash {
ja3.push('-');
} else {
dash = true;
}
ja3.push_str(&ec.0.to_string());
}
}
}
ja3.push(',');
dash = false;
for e in &exts {
if let TlsExtension::EcPointFormats(x) = e {
for ec in *x {
if dash {
ja3.push('-');
} else {
dash = true;
}
ja3.push_str(&ec.to_string());
}
}
}
}
// get interesting stuff out of parsed tls extensions
fn quic_get_tls_extensions(
input: Option<&[u8]>, ja3: &mut String, client: bool,
) -> Vec<QuicTlsExtension> {
let mut extv = Vec::new();
if let Some(extr) = input {
if let Ok((_, exts)) = parse_tls_extensions(extr) {
let mut dash = false;
for e in &exts {
let etype = TlsExtensionType::from(e);
if dash {
ja3.push('-');
} else {
dash = true;
}
ja3.push_str(&u16::from(etype).to_string());
let mut values = Vec::new();
match e {
TlsExtension::SNI(x) => {
for sni in x {
let mut value = Vec::new();
value.extend_from_slice(sni.1);
values.push(value);
}
}
TlsExtension::ALPN(x) => {
for alpn in x {
let mut value = Vec::new();
value.extend_from_slice(alpn);
values.push(value);
}
}
_ => {}
}
extv.push(QuicTlsExtension { etype, values })
}
if client {
quic_tls_ja3_client_extends(ja3, exts);
}
}
}
return extv;
}
fn parse_quic_handshake(msg: TlsMessage) -> Option<Frame> {
if let Handshake(hs) = msg {
match hs {
ClientHello(ch) => {
let mut ja3 = String::with_capacity(256);
ja3.push_str(&u16::from(ch.version).to_string());
ja3.push(',');
let mut dash = false;
for c in &ch.ciphers {
if dash {
ja3.push('-');
} else {
dash = true;
}
ja3.push_str(&u16::from(*c).to_string());
}
ja3.push(',');
let ciphers = ch.ciphers;
let extv = quic_get_tls_extensions(ch.ext, &mut ja3, true);
return Some(Frame::Crypto(Crypto { ciphers, extv, ja3 }));
}
ServerHello(sh) => {
let mut ja3 = String::with_capacity(256);
ja3.push_str(&u16::from(sh.version).to_string());
ja3.push(',');
ja3.push_str(&u16::from(sh.cipher).to_string());
ja3.push(',');
let ciphers = vec![sh.cipher];
let extv = quic_get_tls_extensions(sh.ext, &mut ja3, false);
return Some(Frame::Crypto(Crypto { ciphers, extv, ja3 }));
}
_ => {}
}
}
return None;
}
fn parse_crypto_frame(input: &[u8]) -> IResult<&[u8], Frame, QuicError> {
let (rest, offset) = quic_var_uint(input)?;
let (rest, length) = quic_var_uint(rest)?;
let (rest, data) = take(length as usize)(rest)?;
if offset > 0 {
return Ok((
rest,
Frame::CryptoFrag(CryptoFrag {
offset,
length,
data: data.to_vec(),
}),
));
}
// if we have offset 0, try quick path : parse directly
match parse_tls_message_handshake(data) {
Ok((_, msg)) => {
if let Some(c) = parse_quic_handshake(msg) {
return Ok((rest, c));
}
}
Err(nom7::Err::Incomplete(_)) => {
// offset 0 but incomplete : save it as a fragment for later reassembly
return Ok((
rest,
Frame::CryptoFrag(CryptoFrag {
offset,
length,
data: data.to_vec(),
}),
));
}
_ => {}
}
return Err(nom7::Err::Error(QuicError::InvalidPacket));
}
fn parse_tag(input: &[u8]) -> IResult<&[u8], StreamTag, QuicError> {
let (rest, tag) = be_u32(input)?;
let tag = StreamTag::from_u32(tag).ok_or(nom7::Err::Error(QuicError::StreamTagNoMatch(tag)))?;
Ok((rest, tag))
}
fn parse_tag_and_offset(input: &[u8]) -> IResult<&[u8], TagOffset, QuicError> {
pair(parse_tag, le_u32)(input)
}
fn parse_crypto_stream(input: &[u8]) -> IResult<&[u8], Vec<TagValue>, QuicError> {
// [message tag][number of tag entries: N][pad][[tag][end offset], ...N][value data]
let (rest, _message_tag) = parse_tag(input)?;
let (rest, num_entries) = le_u16(rest)?;
let (rest, _padding) = take(2usize)(rest)?;
let (rest, tags_offset) = count(complete(parse_tag_and_offset), num_entries.into())(rest)?;
// Convert (Tag, Offset) to (Tag, Value)
let mut tags = Vec::new();
let mut previous_offset = 0;
let mut rest = rest;
for (tag, offset) in tags_offset {
// offsets should be increasing
let value_len = offset
.checked_sub(previous_offset)
.ok_or(nom7::Err::Error(QuicError::InvalidPacket))?;
let (new_rest, value) = take(value_len)(rest)?;
previous_offset = offset;
rest = new_rest;
tags.push((tag, value.to_vec()))
}
Ok((rest, tags))
}
fn parse_stream_frame(input: &[u8], frame_ty: u8) -> IResult<&[u8], Frame, QuicError> {
// 0b1_f_d_ooo_ss
let fin = frame_ty & 0x40 == 0x40;
let has_data_length = frame_ty & 0x20 == 0x20;
let offset_hdr_length = {
let mut offset_length = (frame_ty & 0x1c) >> 2;
if offset_length != 0 {
offset_length += 1;
}
offset_length
};
let stream_id_hdr_length = usize::from((frame_ty & 0x03) + 1);
let (rest, stream_id) = take(stream_id_hdr_length)(input)?;
let (rest, offset) = take(offset_hdr_length)(rest)?;
let (rest, data_length) = if has_data_length {
let (rest, data_length) = be_u16(rest)?;
(rest, usize::from(data_length))
} else {
(rest, rest.len())
};
let (rest, stream_data) = take(data_length)(rest)?;
let tags = if let Ok((_, tags)) = all_consuming(parse_crypto_stream)(stream_data) {
Some(tags)
} else {
None
};
Ok((
rest,
Frame::Stream(Stream {
fin,
stream_id: stream_id.to_vec(),
offset: offset.to_vec(),
tags,
}),
))
}
fn parse_crypto_stream_frame(input: &[u8]) -> IResult<&[u8], Frame, QuicError> {
let (rest, _offset) = quic_var_uint(input)?;
let (rest, data_length) = quic_var_uint(rest)?;
if data_length > u32::MAX as u64 {
return Err(nom7::Err::Error(QuicError::Unhandled));
}
let (rest, stream_data) = take(data_length as u32)(rest)?;
let tags = if let Ok((_, tags)) = all_consuming(parse_crypto_stream)(stream_data) {
Some(tags)
} else {
None
};
Ok((
rest,
Frame::Stream(Stream {
fin: false,
stream_id: Vec::new(),
offset: Vec::new(),
tags,
}),
))
}
impl Frame {
fn decode_frame(input: &[u8]) -> IResult<&[u8], Frame, QuicError> {
let (rest, frame_ty) = be_u8(input)?;
// Special frame types
let (rest, value) = if frame_ty & 0x80 == 0x80 {
// STREAM
parse_stream_frame(rest, frame_ty)?
} else {
match frame_ty {
0x00 => parse_padding_frame(rest)?,
0x01 => (rest, Frame::Ping),
0x02 => parse_ack_frame(rest)?,
0x06 => parse_crypto_frame(rest)?,
0x08 => parse_crypto_stream_frame(rest)?,
_ => ([].as_ref(), Frame::Unknown(rest.to_vec())),
}
};
Ok((rest, value))
}
pub(crate) fn decode_frames(input: &[u8]) -> IResult<&[u8], Vec<Frame>, QuicError> {
let (rest, mut frames) = many0(complete(Frame::decode_frame))(input)?;
// reassemble crypto fragments : first find total size
let mut crypto_max_size = 0;
let mut crypto_total_size = 0;
for f in &frames {
if let Frame::CryptoFrag(c) = f {
if crypto_max_size < c.offset + c.length {
crypto_max_size = c.offset + c.length;
}
crypto_total_size += c.length;
}
}
if crypto_max_size > 0 && crypto_total_size == crypto_max_size {
// we have some, and no gaps from offset 0
let mut d = vec![0; crypto_max_size as usize];
for f in &frames {
if let Frame::CryptoFrag(c) = f {
d[c.offset as usize..(c.offset + c.length) as usize]
.clone_from_slice(&c.data);
}
}
if let Ok((_, msg)) = parse_tls_message_handshake(&d) {
if let Some(c) = parse_quic_handshake(msg) {
// add a parsed crypto frame
frames.push(c);
}
}
}
Ok((rest, frames))
}
}
|