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
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
use std::{
cell::UnsafeCell,
collections::HashSet,
fmt::Debug,
time::{Duration, Instant},
};
use quiche::{Connection, Shutdown};
use crate::{Error, Event, EventKind, Readiness, Result, Token, utils::delay_send};
/// `ConnState` resource acquire kind.
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Clone, Copy)]
pub enum LocKind {
None,
Send,
Recv,
Close,
StreamOpen,
StreamSend(u64, usize),
StreamRecv(u64),
StreamShutdown {
shutdown_read: bool,
shutdown_write: bool,
stream_id: u64,
err: u64,
},
}
impl LocKind {
pub fn need_retry(&self) -> bool {
match self {
LocKind::None | LocKind::Send => false,
_ => true,
}
}
}
/// Returns true if the stream was created locally.
fn is_local(stream_id: u64, is_server: bool) -> bool {
(stream_id & 0x1) == (is_server as u64)
}
/// Returns true if the stream is bidirectional.
fn is_bidi(stream_id: u64) -> bool {
(stream_id & 0x2) == 0
}
/// Internal connection state.
pub struct ConnState {
/// Connection id.
id: Token,
/// previous value of is_established.
is_established: bool,
/// Wrapped `quiche::Connection`
conn: UnsafeCell<quiche::Connection>,
/// Current lock type.
locked: LocKind,
/// Requests that need to be retried for locking.
retries: HashSet<LocKind>,
/// The count of lock times used as lock tracking handle.
lock_count: u64,
/// Record the next locally opened bi-directional stream id
local_bidi_stream_id_next: u64,
/// The biggest inbound stream ID currently seen.
inbound_stream_id_current: u64,
}
/// unwrap `quiche::Connection` from `ConnState`
impl From<ConnState> for quiche::Connection {
fn from(value: ConnState) -> Self {
value.conn.into_inner()
}
}
/// A lock guard for `ConnState`
pub struct ConnGuard {
pub lock_count: u64,
pub conn: &'static mut Connection,
}
impl Debug for ConnGuard {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("ConnStateGuard")
.field("lock_count", &self.lock_count)
.finish()
}
}
impl ConnState {
/// Wrap a new `quiche::Connection`
pub fn new(id: Token, conn: quiche::Connection) -> Self {
Self {
id,
is_established: conn.is_established(),
local_bidi_stream_id_next: if conn.is_server() { 5 } else { 4 },
conn: UnsafeCell::new(conn),
locked: LocKind::None,
retries: Default::default(),
lock_count: 0,
inbound_stream_id_current: 0,
}
}
pub fn new_with_readiness(
id: Token,
conn: quiche::Connection,
release_timer_threshold: Duration,
readiness: &mut Readiness,
) -> Self {
let mut state = Self::new(id, conn);
state.raise_events(false, release_timer_threshold, readiness);
state
}
#[inline]
fn retry_later(&mut self, kind: LocKind) {
self.retries.insert(kind);
}
/// Try lock this `state`.
///
/// Safety:
/// - This function is protected by an upper-level spin-lock.
/// - Only one specific thread own the returns `&'static mut Connection` at the same time.
pub fn try_lock(&mut self, kind: LocKind) -> Result<ConnGuard> {
assert_ne!(kind, LocKind::None, "LocKind is None.");
// The resource is busy.
if self.locked != LocKind::None {
// retry this operation later.
if kind.need_retry() {
self.retry_later(kind);
}
return Err(Error::Busy);
}
// Successfully locked this state.
self.locked = kind;
// Upper level code needs to be careful to save the trace handle, which is needed to call `unlock`.
Ok(ConnGuard {
lock_count: self.lock_count,
conn: unsafe { self.conn.get().as_mut().unwrap() },
})
}
/// Unlock this state with `lock_count` returned by `try_lock`.
///
/// Returns when the next timeout event will occur.
///
/// Safety:
/// - This function is protected by an upper-level spin-lock.
pub fn unlock(
&mut self,
send_done: bool,
lock_count: u64,
release_timer_threshold: Duration,
readiness: &mut Readiness,
) {
assert_ne!(self.locked, LocKind::None, "Unlock a released stat.");
assert_eq!(self.lock_count, lock_count, "`lock_count` is mismatched.");
if send_done {
assert_eq!(self.locked, LocKind::Send);
}
self.locked = LocKind::None;
// step `lock_count`
self.lock_count += 1;
self.raise_events(send_done, release_timer_threshold, readiness);
}
pub fn stream_shutdown(
&mut self,
stream_id: u64,
release_timer_threshold: Duration,
readiness: &mut Readiness,
) -> Result<()> {
// check if this thread own the state.
let Ok(guard) = self.try_lock(LocKind::StreamShutdown {
shutdown_read: true,
shutdown_write: true,
stream_id,
err: 0x0,
}) else {
return Ok(());
};
// Safety: only one thread can access this code at the same time.
let conn = unsafe { self.as_mut() };
if let Err(err) = conn.stream_shutdown(stream_id, Shutdown::Write, 0x0) {
if err != quiche::Error::Done {
log::error!(
"shutdown write, scid={:?}, stream_id={}, err={}",
conn.source_id(),
stream_id,
err
);
}
}
if let Err(err) = conn.stream_shutdown(stream_id, Shutdown::Read, 0x0) {
if err != quiche::Error::Done {
log::error!(
"shutdown read, scid={:?}, stream_id={}, err={}",
conn.source_id(),
stream_id,
err
);
}
}
self.unlock(false, guard.lock_count, release_timer_threshold, readiness);
Ok(())
}
// Try open a new bidi-outbound-stream.
pub fn stream_open(
&mut self,
release_timer_threshold: Duration,
readiness: &mut Readiness,
) -> Result<u64> {
// check if this thread own the state.
let guard = self.try_lock(LocKind::StreamOpen)?;
// Safety: only one thread can access this code at the same time.
let conn = unsafe { self.as_mut() };
if conn.peer_streams_left_bidi() > 0 {
let stream_id = self.local_bidi_stream_id_next;
self.local_bidi_stream_id_next += 4;
// this a trick, func `stream_priority` will created the target if did not exist.
conn.stream_priority(stream_id, 255, true)?;
self.unlock(false, guard.lock_count, release_timer_threshold, readiness);
log::trace!(
"stream open, scid={:?}, stream_id={}",
conn.trace_id(),
stream_id
);
return Ok(stream_id);
}
assert_eq!(
self.try_lock(LocKind::StreamOpen)
.expect_err("insert `LocKind::StreamOpen` into retry_lock_requests"),
Error::Busy
);
log::trace!("stream open, scid={:?}, pending", conn.trace_id());
self.unlock(false, guard.lock_count, release_timer_threshold, readiness);
Err(Error::Retry)
}
fn raise_events(
&mut self,
send_done: bool,
release_timer_threshold: Duration,
readiness: &mut Readiness,
) {
// Safety:
// - only one thread can access this code at the same time.
let conn = unsafe { self.as_mut() };
if !self.is_established && conn.is_established() {
self.is_established = true;
if conn.is_server() {
readiness.insert(
Event {
kind: EventKind::Accept,
is_server: true,
is_error: false,
token: self.id,
stream_id: 0,
},
None,
);
} else {
readiness.insert(
Event {
kind: EventKind::Connected,
is_server: false,
is_error: false,
token: self.id,
stream_id: 0,
},
None,
);
}
}
if conn.is_closed() {
readiness.insert(
Event {
kind: EventKind::Closed,
is_server: conn.is_server(),
is_error: false,
token: self.id,
// unset.
stream_id: 0,
},
None,
);
}
let mut retry_stream_open = false;
// check `peer_streams_left_bidi`
if self.retries.remove(&LocKind::StreamOpen) {
if conn.peer_streams_left_bidi() > 0 {
readiness.insert(
Event {
kind: EventKind::StreamOpen,
is_server: conn.is_server(),
is_error: false,
token: self.id,
// unset.
stream_id: 0,
},
None,
);
} else {
retry_stream_open = true;
}
}
for kind in self.retries.drain() {
match kind {
LocKind::Send => {
// We use `get_next_release_time` to determine if the connection has data to send.
}
LocKind::Recv => {
readiness.insert(
Event {
kind: EventKind::Recv,
is_server: conn.is_server(),
is_error: false,
token: self.id,
// unset.
stream_id: 0,
},
None,
);
}
LocKind::StreamSend(stream_id, len) => {
// such that it is not going to be
// reported as writable again by [`stream_writable_next()`] until its send
// capacity reaches `len`.
match conn.stream_writable(stream_id, len) {
Ok(writable) => {
if writable {
readiness.insert(
Event {
kind: EventKind::StreamSend,
is_server: conn.is_server(),
is_error: false,
token: self.id,
stream_id,
},
None,
);
}
}
Err(err) => {
log::error!(
"failed to call `stream_writable`, scid={:?}, id={}, err={}",
conn.trace_id(),
stream_id,
err
);
readiness.insert(
Event {
kind: EventKind::StreamSend,
is_server: conn.is_server(),
is_error: true,
token: self.id,
stream_id,
},
None,
);
}
}
}
LocKind::StreamRecv(stream_id) => {
if conn.stream_readable(stream_id) {
readiness.insert(
Event {
kind: EventKind::StreamRecv,
is_server: conn.is_server(),
is_error: false,
token: self.id,
stream_id,
},
None,
);
}
}
LocKind::StreamShutdown {
stream_id,
shutdown_read,
shutdown_write,
err,
} => {
if shutdown_read {
if let Err(err) = conn.stream_shutdown(stream_id, Shutdown::Read, err) {
if err != quiche::Error::Done {
log::error!(
"shutdown read, scid={:?}, stream_id={}, err={}",
conn.source_id(),
stream_id,
err
);
}
}
}
if shutdown_write {
if let Err(err) = conn.stream_shutdown(stream_id, Shutdown::Write, err) {
if err != quiche::Error::Done {
log::error!(
"shutdown write, scid={:?}, stream_id={}, err={}",
conn.source_id(),
stream_id,
err
);
}
}
}
}
LocKind::Close => {
if let Err(err) = conn.close(false, 0x0, b"") {
if err != quiche::Error::Done {
log::error!(
"close connection, scid={:?}, err={}",
conn.source_id(),
err
);
}
}
}
_ => {
unreachable!("unexpect {:?}", kind)
}
}
}
if retry_stream_open {
self.retries.insert(LocKind::StreamOpen);
}
while let Some(stream_id) = conn.stream_writable_next() {
readiness.insert(
Event {
kind: EventKind::StreamSend,
is_server: conn.is_server(),
is_error: false,
token: self.id,
stream_id,
},
None,
);
}
while let Some(stream_id) = conn.stream_readable_next() {
if is_bidi(stream_id)
&& !is_local(stream_id, conn.is_server())
&& self.inbound_stream_id_current < stream_id
{
self.inbound_stream_id_current = stream_id;
readiness.insert(
Event {
kind: EventKind::StreamAccept,
is_server: conn.is_server(),
is_error: false,
token: self.id,
stream_id,
},
None,
);
} else {
readiness.insert(
Event {
kind: EventKind::StreamRecv,
is_server: conn.is_server(),
is_error: false,
token: self.id,
stream_id,
},
None,
);
}
}
let now = Instant::now();
// check if the connection has data to send.
let delay_to = delay_send(conn, now, release_timer_threshold, send_done);
if send_done && delay_to.is_none() {
readiness.remove(Event {
kind: EventKind::Send,
is_server: conn.is_server(),
is_error: false,
token: self.id,
stream_id: 0,
});
return;
}
readiness.insert(
Event {
kind: EventKind::Send,
is_server: conn.is_server(),
is_error: false,
token: self.id,
stream_id: 0,
},
delay_to,
);
while let Some(event) = conn.path_event_next() {
log::info!("{:?}, id={:?}", event, self.id);
}
}
/// Careful use this function.
#[inline]
pub unsafe fn as_mut(&self) -> &'static mut Connection {
unsafe { self.conn.get().as_mut().unwrap() }
}
}
#[cfg(test)]
mod tests {
use quiche::Config;
use super::*;
#[test]
fn test_lock() {
let scid = quiche::ConnectionId::from_ref(b"");
let mut state = ConnState::new(
Token(0),
quiche::connect(
None,
&scid,
"127.0.0.1:1".parse().unwrap(),
"127.0.0.1:2".parse().unwrap(),
&mut Config::new(quiche::PROTOCOL_VERSION).unwrap(),
)
.unwrap(),
);
let guard = state.try_lock(LocKind::Send).unwrap();
assert_eq!(guard.lock_count, 0);
assert_eq!(
state.try_lock(LocKind::Recv).expect_err("Busy"),
Error::Busy
);
assert_eq!(
state.try_lock(LocKind::StreamOpen).expect_err("Busy"),
Error::Busy
);
assert_eq!(
state.try_lock(LocKind::StreamRecv(5)).expect_err("Busy"),
Error::Busy
);
let mut readiness = Readiness::default();
state.unlock(
false,
guard.lock_count,
Duration::from_micros(250),
&mut readiness,
);
let guard = state.try_lock(LocKind::Recv).expect("LocKind::Recv");
assert_eq!(guard.lock_count, 1, "step `lock_count`");
}
#[test]
fn test_stream_open() {
let scid = quiche::ConnectionId::from_ref(b"");
let mut state = ConnState::new(
Token(0),
quiche::connect(
None,
&scid,
"127.0.0.1:1".parse().unwrap(),
"127.0.0.1:2".parse().unwrap(),
&mut Config::new(quiche::PROTOCOL_VERSION).unwrap(),
)
.unwrap(),
);
let mut readiness = Readiness::default();
assert_eq!(
state
.stream_open(Duration::from_micros(250), &mut readiness)
.expect_err("pending"),
Error::Retry
);
assert_eq!(
state
.stream_open(Duration::from_micros(250), &mut readiness)
.expect_err("pending"),
Error::Retry
);
}
}