-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathsctptransport.cpp
1005 lines (845 loc) · 34 KB
/
sctptransport.cpp
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
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Copyright (c) 2019 Paul-Louis Ageneau
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#include "sctptransport.hpp"
#include "dtlstransport.hpp"
#include "internals.hpp"
#include "logcounter.hpp"
#include "utils.hpp"
#include <algorithm>
#include <chrono>
#include <cstdarg>
#include <cstdio>
#include <exception>
#include <iostream>
#include <limits>
#include <shared_mutex>
#include <thread>
#include <unordered_set>
#include <vector>
// RFC 8831: SCTP MUST support performing Path MTU discovery without relying on ICMP or ICMPv6 as
// specified in [RFC4821] by using probing messages specified in [RFC4820].
// See https://www.rfc-editor.org/rfc/rfc8831.html#section-5
//
// However, usrsctp does not implement Path MTU discovery, so we need to disable it for now.
// See https://github.com/sctplab/usrsctp/issues/205
#define USE_PMTUD 0
// TODO: When Path MTU discovery is supported, it needs to be enabled with libjuice as ICE backend
// on all platforms except Mac OS where the Don't Fragment (DF) flag can't be set:
/*
#if !USE_NICE
#ifndef __APPLE__
// libjuice enables Linux path MTU discovery or sets the DF flag
#define USE_PMTUD 1
#else
// Setting the DF flag is not available on Mac OS
#define USE_PMTUD 0
#endif
#else // USE_NICE == 1
#define USE_PMTUD 0
#endif
*/
using namespace std::chrono_literals;
using namespace std::chrono;
namespace rtc::impl {
using utils::to_uint16;
using utils::to_uint32;
static LogCounter COUNTER_UNKNOWN_PPID(plog::warning,
"Number of SCTP packets received with an unknown PPID");
class SctpTransport::InstancesSet {
public:
void insert(SctpTransport *instance) {
std::unique_lock lock(mMutex);
mSet.insert(instance);
}
void erase(SctpTransport *instance) {
std::unique_lock lock(mMutex);
mSet.erase(instance);
}
using shared_lock = std::shared_lock<std::shared_mutex>;
optional<shared_lock> lock(SctpTransport *instance) noexcept {
shared_lock lock(mMutex);
return mSet.find(instance) != mSet.end() ? std::make_optional(std::move(lock)) : nullopt;
}
private:
std::unordered_set<SctpTransport *> mSet;
std::shared_mutex mMutex;
};
std::unique_ptr<SctpTransport::InstancesSet> SctpTransport::Instances = std::make_unique<InstancesSet>();
void SctpTransport::Init() {
usrsctp_init(0, SctpTransport::WriteCallback, SctpTransport::DebugCallback);
usrsctp_sysctl_set_sctp_pr_enable(1); // Enable Partial Reliability Extension (RFC 3758)
usrsctp_sysctl_set_sctp_ecn_enable(0); // Disable Explicit Congestion Notification
#ifndef SCTP_ACCEPT_ZERO_CHECKSUM
usrsctp_enable_crc32c_offload(); // We'll compute CRC32 only for outgoing packets
#endif
#ifdef SCTP_DEBUG
usrsctp_sysctl_set_sctp_debug_on(SCTP_DEBUG_ALL);
#endif
}
void SctpTransport::SetSettings(const SctpSettings &s) {
// The send and receive window size of usrsctp is 256KiB, which is too small for realistic RTTs,
// therefore we increase it to 1MiB by default for better performance.
// See https://bugzilla.mozilla.org/show_bug.cgi?id=1051685
usrsctp_sysctl_set_sctp_recvspace(to_uint32(s.recvBufferSize.value_or(1024 * 1024)));
usrsctp_sysctl_set_sctp_sendspace(to_uint32(s.sendBufferSize.value_or(1024 * 1024)));
// Increase maximum chunks number on queue to 10K by default
usrsctp_sysctl_set_sctp_max_chunks_on_queue(to_uint32(s.maxChunksOnQueue.value_or(10 * 1024)));
// Increase initial congestion window size to 10 MTUs (RFC 6928) by default
usrsctp_sysctl_set_sctp_initial_cwnd(to_uint32(s.initialCongestionWindow.value_or(10)));
// Set max burst to 10 MTUs by default (max burst is initially 0, meaning disabled)
usrsctp_sysctl_set_sctp_max_burst_default(to_uint32(s.maxBurst.value_or(10)));
// Use standard SCTP congestion control (RFC 4960) by default
// See https://github.com/paullouisageneau/libdatachannel/issues/354
usrsctp_sysctl_set_sctp_default_cc_module(to_uint32(s.congestionControlModule.value_or(0)));
// Reduce SACK delay to 20ms by default (the recommended default value from RFC 4960 is 200ms)
usrsctp_sysctl_set_sctp_delayed_sack_time_default(
to_uint32(s.delayedSackTime.value_or(20ms).count()));
// RTO settings
// RFC 2988 recommends a 1s min RTO, which is very high, but TCP on Linux has a 200ms min RTO
usrsctp_sysctl_set_sctp_rto_min_default(
to_uint32(s.minRetransmitTimeout.value_or(200ms).count()));
// Set only 10s as max RTO instead of 60s for shorter connection timeout
usrsctp_sysctl_set_sctp_rto_max_default(
to_uint32(s.maxRetransmitTimeout.value_or(10000ms).count()));
usrsctp_sysctl_set_sctp_init_rto_max_default(
to_uint32(s.maxRetransmitTimeout.value_or(10000ms).count()));
// Still set 1s as initial RTO
usrsctp_sysctl_set_sctp_rto_initial_default(
to_uint32(s.initialRetransmitTimeout.value_or(1000ms).count()));
// RTX settings
// 5 retransmissions instead of 8 to shorten the backoff for shorter connection timeout
auto maxRtx = to_uint32(s.maxRetransmitAttempts.value_or(5));
usrsctp_sysctl_set_sctp_init_rtx_max_default(maxRtx);
usrsctp_sysctl_set_sctp_assoc_rtx_max_default(maxRtx);
usrsctp_sysctl_set_sctp_path_rtx_max_default(maxRtx); // single path
// Heartbeat interval
usrsctp_sysctl_set_sctp_heartbeat_interval_default(
to_uint32(s.heartbeatInterval.value_or(10000ms).count()));
}
void SctpTransport::Cleanup() {
while (usrsctp_finish())
std::this_thread::sleep_for(100ms);
}
SctpTransport::SctpTransport(shared_ptr<Transport> lower, const Configuration &config, Ports ports,
message_callback recvCallback, amount_callback bufferedAmountCallback,
state_callback stateChangeCallback)
: Transport(lower, std::move(stateChangeCallback)),
mMaxMessageSize(config.maxMessageSize.value_or(DEFAULT_LOCAL_MAX_MESSAGE_SIZE)),
mPorts(std::move(ports)), mSendQueue(0, message_size_func),
mBufferedAmountCallback(std::move(bufferedAmountCallback)) {
onRecv(std::move(recvCallback));
PLOG_DEBUG << "Initializing SCTP transport";
mSock = usrsctp_socket(AF_CONN, SOCK_STREAM, IPPROTO_SCTP, nullptr, nullptr, 0, nullptr);
if (!mSock)
throw std::runtime_error("Could not create SCTP socket, errno=" + std::to_string(errno));
usrsctp_set_upcall(mSock, &SctpTransport::UpcallCallback, this);
if (usrsctp_set_non_blocking(mSock, 1))
throw std::runtime_error("Unable to set non-blocking mode, errno=" + std::to_string(errno));
// SCTP must stop sending after the lower layer is shut down, so disable linger
struct linger sol = {};
sol.l_onoff = 1;
sol.l_linger = 0;
if (usrsctp_setsockopt(mSock, SOL_SOCKET, SO_LINGER, &sol, sizeof(sol)))
throw std::runtime_error("Could not set socket option SO_LINGER, errno=" +
std::to_string(errno));
struct sctp_assoc_value av = {};
av.assoc_id = SCTP_ALL_ASSOC;
av.assoc_value = 1;
if (usrsctp_setsockopt(mSock, IPPROTO_SCTP, SCTP_ENABLE_STREAM_RESET, &av, sizeof(av)))
throw std::runtime_error("Could not set socket option SCTP_ENABLE_STREAM_RESET, errno=" +
std::to_string(errno));
int on = 1;
if (usrsctp_setsockopt(mSock, IPPROTO_SCTP, SCTP_RECVRCVINFO, &on, sizeof(on)))
throw std::runtime_error("Could set socket option SCTP_RECVRCVINFO, errno=" +
std::to_string(errno));
struct sctp_event se = {};
se.se_assoc_id = SCTP_ALL_ASSOC;
se.se_on = 1;
se.se_type = SCTP_ASSOC_CHANGE;
if (usrsctp_setsockopt(mSock, IPPROTO_SCTP, SCTP_EVENT, &se, sizeof(se)))
throw std::runtime_error("Could not subscribe to event SCTP_ASSOC_CHANGE, errno=" +
std::to_string(errno));
se.se_type = SCTP_SENDER_DRY_EVENT;
if (usrsctp_setsockopt(mSock, IPPROTO_SCTP, SCTP_EVENT, &se, sizeof(se)))
throw std::runtime_error("Could not subscribe to event SCTP_SENDER_DRY_EVENT, errno=" +
std::to_string(errno));
se.se_type = SCTP_STREAM_RESET_EVENT;
if (usrsctp_setsockopt(mSock, IPPROTO_SCTP, SCTP_EVENT, &se, sizeof(se)))
throw std::runtime_error("Could not subscribe to event SCTP_STREAM_RESET_EVENT, errno=" +
std::to_string(errno));
// RFC 8831 6.6. Transferring User Data on a Data Channel
// The sender SHOULD disable the Nagle algorithm (see [RFC1122) to minimize the latency
// See https://www.rfc-editor.org/rfc/rfc8831.html#section-6.6
int nodelay = 1;
if (usrsctp_setsockopt(mSock, IPPROTO_SCTP, SCTP_NODELAY, &nodelay, sizeof(nodelay)))
throw std::runtime_error("Could not set socket option SCTP_NODELAY, errno=" +
std::to_string(errno));
struct sctp_paddrparams spp = {};
// Enable SCTP heartbeats
spp.spp_flags = SPP_HB_ENABLE;
// RFC 8261 5. DTLS considerations:
// If path MTU discovery is performed by the SCTP layer and IPv4 is used as the network-layer
// protocol, the DTLS implementation SHOULD allow the DTLS user to enforce that the
// corresponding IPv4 packet is sent with the Don't Fragment (DF) bit set. If controlling the DF
// bit is not possible (for example, due to implementation restrictions), a safe value for the
// path MTU has to be used by the SCTP stack. It is RECOMMENDED that the safe value not exceed
// 1200 bytes.
// See https://www.rfc-editor.org/rfc/rfc8261.html#section-5
#if USE_PMTUD
if (!config.mtu.has_value()) {
#else
if (false) {
#endif
// Enable SCTP path MTU discovery
spp.spp_flags |= SPP_PMTUD_ENABLE;
PLOG_VERBOSE << "Path MTU discovery enabled";
} else {
// Fall back to a safe MTU value.
spp.spp_flags |= SPP_PMTUD_DISABLE;
// The MTU value provided specifies the space available for chunks in the
// packet, so we also subtract the SCTP header size.
size_t pmtu = config.mtu.value_or(DEFAULT_MTU) - 12 - 48 - 8 - 40; // SCTP/DTLS/UDP/IPv6
spp.spp_pathmtu = to_uint32(pmtu);
PLOG_VERBOSE << "Path MTU discovery disabled, SCTP MTU set to " << pmtu;
}
if (usrsctp_setsockopt(mSock, IPPROTO_SCTP, SCTP_PEER_ADDR_PARAMS, &spp, sizeof(spp)))
throw std::runtime_error("Could not set socket option SCTP_PEER_ADDR_PARAMS, errno=" +
std::to_string(errno));
// RFC 8831 6.2. SCTP Association Management
// The number of streams negotiated during SCTP association setup SHOULD be 65535, which is the
// maximum number of streams that can be negotiated during the association setup.
// See https://www.rfc-editor.org/rfc/rfc8831.html#section-6.2
// However, usrsctp allocates tables to hold the stream states. For 65535 streams, it results in
// the waste of a few MBs for each association. Therefore, we use a lower limit to save memory.
// See https://github.com/sctplab/usrsctp/issues/121
struct sctp_initmsg sinit = {};
sinit.sinit_num_ostreams = MAX_SCTP_STREAMS_COUNT;
sinit.sinit_max_instreams = MAX_SCTP_STREAMS_COUNT;
if (usrsctp_setsockopt(mSock, IPPROTO_SCTP, SCTP_INITMSG, &sinit, sizeof(sinit)))
throw std::runtime_error("Could not set socket option SCTP_INITMSG, errno=" +
std::to_string(errno));
// Prevent fragmented interleave of messages (i.e. level 0), see RFC 6458 section 8.1.20.
// Unless the user has set the fragmentation interleave level to 0, notifications
// may also be interleaved with partially delivered messages.
int level = 0;
if (usrsctp_setsockopt(mSock, IPPROTO_SCTP, SCTP_FRAGMENT_INTERLEAVE, &level, sizeof(level)))
throw std::runtime_error("Could not disable SCTP fragmented interleave, errno=" +
std::to_string(errno));
#ifdef SCTP_ACCEPT_ZERO_CHECKSUM // not available in usrsctp v0.9.5.0
// When using SCTP over DTLS, the data integrity is ensured by DTLS. Therefore, there's no
// need to check CRC32c additionally when receiving. See
// https://datatracker.ietf.org/doc/html/draft-ietf-tsvwg-sctp-zero-checksum
int edmid = SCTP_EDMID_LOWER_LAYER_DTLS;
if (usrsctp_setsockopt(mSock, IPPROTO_SCTP, SCTP_ACCEPT_ZERO_CHECKSUM, &edmid, sizeof(edmid)))
throw std::runtime_error("Could set socket option SCTP_ACCEPT_ZERO_CHECKSUM, errno=" +
std::to_string(errno));
#endif
int rcvBuf = 0;
socklen_t rcvBufLen = sizeof(rcvBuf);
if (usrsctp_getsockopt(mSock, SOL_SOCKET, SO_RCVBUF, &rcvBuf, &rcvBufLen))
throw std::runtime_error("Could not get SCTP recv buffer size, errno=" +
std::to_string(errno));
int sndBuf = 0;
socklen_t sndBufLen = sizeof(sndBuf);
if (usrsctp_getsockopt(mSock, SOL_SOCKET, SO_SNDBUF, &sndBuf, &sndBufLen))
throw std::runtime_error("Could not get SCTP send buffer size, errno=" +
std::to_string(errno));
// Ensure the buffer is also large enough to accomodate the largest messages
const int minBuf = int(std::min(mMaxMessageSize, size_t(std::numeric_limits<int>::max())));
rcvBuf = std::max(rcvBuf, minBuf);
sndBuf = std::max(sndBuf, minBuf);
if (usrsctp_setsockopt(mSock, SOL_SOCKET, SO_RCVBUF, &rcvBuf, sizeof(rcvBuf)))
throw std::runtime_error("Could not set SCTP recv buffer size, errno=" +
std::to_string(errno));
if (usrsctp_setsockopt(mSock, SOL_SOCKET, SO_SNDBUF, &sndBuf, sizeof(sndBuf)))
throw std::runtime_error("Could not set SCTP send buffer size, errno=" +
std::to_string(errno));
usrsctp_register_address(this);
Instances->insert(this);
}
SctpTransport::~SctpTransport() {
PLOG_DEBUG << "Destroying SCTP transport";
mProcessor.join(); // if we are here, the processor must be empty
// Before unregistering incoming() from the lower layer, we need to make sure the thread from
// lower layers is not blocked in incoming() by the WrittenOnce condition.
mWrittenOnce = true;
mWrittenCondition.notify_all();
unregisterIncoming();
usrsctp_close(mSock);
usrsctp_deregister_address(this);
Instances->erase(this);
}
void SctpTransport::onBufferedAmount(amount_callback callback) {
mBufferedAmountCallback = std::move(callback);
}
void SctpTransport::start() {
registerIncoming();
connect();
}
void SctpTransport::stop() { close(); }
struct sockaddr_conn SctpTransport::getSockAddrConn(uint16_t port) {
struct sockaddr_conn sconn = {};
sconn.sconn_family = AF_CONN;
sconn.sconn_port = htons(port);
sconn.sconn_addr = this;
#ifdef HAVE_SCONN_LEN
sconn.sconn_len = sizeof(sconn);
#endif
return sconn;
}
void SctpTransport::connect() {
PLOG_DEBUG << "SCTP connecting (local port=" << mPorts.local
<< ", remote port=" << mPorts.remote << ")";
changeState(State::Connecting);
auto local = getSockAddrConn(mPorts.local);
if (usrsctp_bind(mSock, reinterpret_cast<struct sockaddr *>(&local), sizeof(local)))
throw std::runtime_error("Could not bind usrsctp socket, errno=" + std::to_string(errno));
// According to RFC 8841, both endpoints must initiate the SCTP association, in a
// simultaneous-open manner, irrelevent to the SDP setup role.
// See https://www.rfc-editor.org/rfc/rfc8841.html#section-9.3
auto remote = getSockAddrConn(mPorts.remote);
int ret = usrsctp_connect(mSock, reinterpret_cast<struct sockaddr *>(&remote), sizeof(remote));
if (ret && errno != EINPROGRESS)
throw std::runtime_error("Connection attempt failed, errno=" + std::to_string(errno));
}
bool SctpTransport::send(message_ptr message) {
std::lock_guard lock(mSendMutex);
if (state() != State::Connected)
return false;
if (!message)
return trySendQueue();
PLOG_VERBOSE << "Send size=" << message->size();
if (message->size() > mMaxMessageSize)
throw std::invalid_argument("Message is too large");
// Flush the queue, and if nothing is pending, try to send directly
if (trySendQueue() && trySendMessage(message))
return true;
mSendQueue.push(message);
updateBufferedAmount(to_uint16(message->stream), ptrdiff_t(message_size_func(message)));
return false;
}
bool SctpTransport::flush() {
try {
std::lock_guard lock(mSendMutex);
if (state() != State::Connected)
return false;
trySendQueue();
return true;
} catch (const std::exception &e) {
PLOG_WARNING << "SCTP flush: " << e.what();
return false;
}
}
void SctpTransport::closeStream(unsigned int stream) {
std::lock_guard lock(mSendMutex);
// RFC 8831 6.7. Closing a Data Channel
// Closing of a data channel MUST be signaled by resetting the corresponding outgoing streams
// See https://www.rfc-editor.org/rfc/rfc8831.html#section-6.7
mSendQueue.push(make_message(0, Message::Reset, to_uint16(stream)));
// This method must not call the buffered callback synchronously
mProcessor.enqueue(&SctpTransport::flush, shared_from_this());
}
void SctpTransport::close() {
mSendQueue.stop();
if (state() == State::Connected) {
mProcessor.enqueue(&SctpTransport::flush, shared_from_this());
} else if (state() == State::Connecting) {
PLOG_DEBUG << "SCTP early shutdown";
if (usrsctp_shutdown(mSock, SHUT_RDWR)) {
if (errno == ENOTCONN) {
PLOG_VERBOSE << "SCTP already shut down";
} else {
PLOG_WARNING << "SCTP shutdown failed, errno=" << errno;
}
}
changeState(State::Failed);
mWrittenCondition.notify_all();
}
}
unsigned int SctpTransport::maxStream() const {
unsigned int streamsCount = mNegotiatedStreamsCount.value_or(MAX_SCTP_STREAMS_COUNT);
return streamsCount > 0 ? streamsCount - 1 : 0;
}
void SctpTransport::incoming(message_ptr message) {
// There could be a race condition here where we receive the remote INIT before the local one is
// sent, which would result in the connection being aborted. Therefore, we need to wait for data
// to be sent on our side (i.e. the local INIT) before proceeding.
if (!mWrittenOnce) { // test the atomic boolean is not set first to prevent a lock contention
std::unique_lock lock(mWriteMutex);
mWrittenCondition.wait(lock, [&]() { return mWrittenOnce || state() == State::Failed; });
}
if (state() == State::Failed)
return;
if (!message) {
PLOG_INFO << "SCTP disconnected";
changeState(State::Disconnected);
recv(nullptr);
return;
}
PLOG_VERBOSE << "Incoming size=" << message->size();
usrsctp_conninput(this, message->data(), message->size(), 0);
}
bool SctpTransport::outgoing(message_ptr message) {
// Set recommended medium-priority DSCP value
// See https://www.rfc-editor.org/rfc/rfc8837.html#section-5
message->dscp = 10; // AF11: Assured Forwarding class 1, low drop probability
return Transport::outgoing(std::move(message));
}
void SctpTransport::doRecv() {
std::lock_guard lock(mRecvMutex);
--mPendingRecvCount;
try {
while (state() != State::Disconnected && state() != State::Failed) {
const size_t bufferSize = 65536;
byte buffer[bufferSize];
socklen_t fromlen = 0;
struct sctp_rcvinfo info = {};
socklen_t infolen = sizeof(info);
unsigned int infotype = 0;
int flags = 0;
ssize_t len = usrsctp_recvv(mSock, buffer, bufferSize, nullptr, &fromlen, &info,
&infolen, &infotype, &flags);
if (len < 0) {
if (errno == EWOULDBLOCK || errno == EAGAIN || errno == ECONNRESET)
break;
else
throw std::runtime_error("SCTP recv failed, errno=" + std::to_string(errno));
} else if (len == 0) {
break;
}
PLOG_VERBOSE << "SCTP recv, len=" << len;
// SCTP_FRAGMENT_INTERLEAVE does not seem to work as expected for messages > 64KB,
// therefore partial notifications and messages need to be handled separately.
if (flags & MSG_NOTIFICATION) {
// SCTP event notification
mPartialNotification.insert(mPartialNotification.end(), buffer, buffer + len);
if (flags & MSG_EOR) {
// Notification is complete, process it
binary notification;
mPartialNotification.swap(notification);
auto n = reinterpret_cast<union sctp_notification *>(notification.data());
processNotification(n, notification.size());
}
} else {
// SCTP message
mPartialMessage.insert(mPartialMessage.end(), buffer, buffer + len);
if (mPartialMessage.size() > mMaxMessageSize) {
PLOG_WARNING << "SCTP message is too large, truncating it";
mPartialMessage.resize(mMaxMessageSize);
}
if (flags & MSG_EOR) {
// Message is complete, process it
binary message;
mPartialMessage.swap(message);
if (infotype != SCTP_RECVV_RCVINFO)
throw std::runtime_error("Missing SCTP recv info");
processData(std::move(message), info.rcv_sid, PayloadId(ntohl(info.rcv_ppid)));
}
}
}
} catch (const std::exception &e) {
PLOG_WARNING << e.what();
}
}
void SctpTransport::doFlush() {
std::lock_guard lock(mSendMutex);
--mPendingFlushCount;
try {
trySendQueue();
} catch (const std::exception &e) {
PLOG_WARNING << e.what();
}
}
void SctpTransport::enqueueRecv() {
if (mPendingRecvCount > 0)
return;
if (auto shared_this = weak_from_this().lock()) {
// This is called from the upcall callback, we must not release the shared ptr here
++mPendingRecvCount;
mProcessor.enqueue(&SctpTransport::doRecv, std::move(shared_this));
}
}
void SctpTransport::enqueueFlush() {
if (mPendingFlushCount > 0)
return;
if (auto shared_this = weak_from_this().lock()) {
// This is called from the upcall callback, we must not release the shared ptr here
++mPendingFlushCount;
mProcessor.enqueue(&SctpTransport::doFlush, std::move(shared_this));
}
}
bool SctpTransport::trySendQueue() {
// Requires mSendMutex to be locked
while (auto next = mSendQueue.peek()) {
message_ptr message = std::move(*next);
if (!trySendMessage(message))
return false;
mSendQueue.pop();
updateBufferedAmount(to_uint16(message->stream), -ptrdiff_t(message_size_func(message)));
}
if (!mSendQueue.running() && !std::exchange(mSendShutdown, true)) {
PLOG_DEBUG << "SCTP shutdown";
if (usrsctp_shutdown(mSock, SHUT_WR)) {
if (errno == ENOTCONN) {
PLOG_VERBOSE << "SCTP already shut down";
} else {
PLOG_WARNING << "SCTP shutdown failed, errno=" << errno;
changeState(State::Disconnected);
recv(nullptr);
}
}
}
return true;
}
bool SctpTransport::trySendMessage(message_ptr message) {
// Requires mSendMutex to be locked
if (state() != State::Connected)
return false;
uint32_t ppid;
switch (message->type) {
case Message::String:
ppid = !message->empty() ? PPID_STRING : PPID_STRING_EMPTY;
break;
case Message::Binary:
ppid = !message->empty() ? PPID_BINARY : PPID_BINARY_EMPTY;
break;
case Message::Control:
ppid = PPID_CONTROL;
break;
case Message::Reset:
sendReset(uint16_t(message->stream));
return true;
default:
// Ignore
return true;
}
PLOG_VERBOSE << "SCTP try send size=" << message->size();
// TODO: Implement SCTP ndata specification draft when supported everywhere
// See https://datatracker.ietf.org/doc/html/draft-ietf-tsvwg-sctp-ndata-08
const Reliability reliability = message->reliability ? *message->reliability : Reliability();
struct sctp_sendv_spa spa = {};
// set sndinfo
spa.sendv_flags |= SCTP_SEND_SNDINFO_VALID;
spa.sendv_sndinfo.snd_sid = uint16_t(message->stream);
spa.sendv_sndinfo.snd_ppid = htonl(ppid);
spa.sendv_sndinfo.snd_flags |= SCTP_EOR; // implicit here
// set prinfo
spa.sendv_flags |= SCTP_SEND_PRINFO_VALID;
if (reliability.unordered)
spa.sendv_sndinfo.snd_flags |= SCTP_UNORDERED;
if (reliability.maxPacketLifeTime) {
spa.sendv_flags |= SCTP_SEND_PRINFO_VALID;
spa.sendv_prinfo.pr_policy = SCTP_PR_SCTP_TTL;
spa.sendv_prinfo.pr_value = to_uint32(reliability.maxPacketLifeTime->count());
} else if (reliability.maxRetransmits) {
spa.sendv_flags |= SCTP_SEND_PRINFO_VALID;
spa.sendv_prinfo.pr_policy = SCTP_PR_SCTP_RTX;
spa.sendv_prinfo.pr_value = to_uint32(*reliability.maxRetransmits);
}
// else {
// spa.sendv_prinfo.pr_policy = SCTP_PR_SCTP_NONE;
// }
// Deprecated
else switch (reliability.typeDeprecated) {
case Reliability::Type::Rexmit:
spa.sendv_flags |= SCTP_SEND_PRINFO_VALID;
spa.sendv_prinfo.pr_policy = SCTP_PR_SCTP_RTX;
spa.sendv_prinfo.pr_value = to_uint32(std::get<int>(reliability.rexmit));
break;
case Reliability::Type::Timed:
spa.sendv_flags |= SCTP_SEND_PRINFO_VALID;
spa.sendv_prinfo.pr_policy = SCTP_PR_SCTP_TTL;
spa.sendv_prinfo.pr_value = to_uint32(std::get<milliseconds>(reliability.rexmit).count());
break;
default:
spa.sendv_prinfo.pr_policy = SCTP_PR_SCTP_NONE;
break;
}
ssize_t ret;
if (!message->empty()) {
ret = usrsctp_sendv(mSock, message->data(), message->size(), nullptr, 0, &spa, sizeof(spa),
SCTP_SENDV_SPA, 0);
} else {
const char zero = 0;
ret = usrsctp_sendv(mSock, &zero, 1, nullptr, 0, &spa, sizeof(spa), SCTP_SENDV_SPA, 0);
}
if (ret < 0) {
if (errno == EWOULDBLOCK || errno == EAGAIN) {
PLOG_VERBOSE << "SCTP sending not possible";
return false;
}
PLOG_ERROR << "SCTP sending failed, errno=" << errno;
throw std::runtime_error("Sending failed, errno=" + std::to_string(errno));
}
PLOG_VERBOSE << "SCTP sent size=" << message->size();
if (message->type == Message::Binary || message->type == Message::String)
mBytesSent += message->size();
return true;
}
void SctpTransport::updateBufferedAmount(uint16_t streamId, ptrdiff_t delta) {
// Requires mSendMutex to be locked
if (delta == 0)
return;
auto it = mBufferedAmount.insert(std::make_pair(streamId, 0)).first;
size_t amount = size_t(std::max(ptrdiff_t(it->second) + delta, ptrdiff_t(0)));
if (amount == 0)
mBufferedAmount.erase(it);
else
it->second = amount;
// Synchronously call the buffered amount callback
triggerBufferedAmount(streamId, amount);
}
void SctpTransport::triggerBufferedAmount(uint16_t streamId, size_t amount) {
try {
mBufferedAmountCallback(streamId, amount);
} catch (const std::exception &e) {
PLOG_WARNING << "SCTP buffered amount callback: " << e.what();
}
}
void SctpTransport::sendReset(uint16_t streamId) {
// Requires mSendMutex to be locked
if (state() != State::Connected)
return;
PLOG_DEBUG << "SCTP resetting stream " << streamId;
using srs_t = struct sctp_reset_streams;
const size_t len = sizeof(srs_t) + sizeof(uint16_t);
byte buffer[len] = {};
srs_t &srs = *reinterpret_cast<srs_t *>(buffer);
srs.srs_flags = SCTP_STREAM_RESET_OUTGOING;
srs.srs_number_streams = 1;
srs.srs_stream_list[0] = streamId;
mWritten = false;
if (usrsctp_setsockopt(mSock, IPPROTO_SCTP, SCTP_RESET_STREAMS, &srs, len) == 0) {
std::unique_lock lock(mWriteMutex); // locking before setsockopt might deadlock usrsctp...
mWrittenCondition.wait_for(lock, 1000ms,
[&]() { return mWritten || state() != State::Connected; });
} else if (errno == EINVAL) {
PLOG_DEBUG << "SCTP stream " << streamId << " already reset";
} else {
PLOG_WARNING << "SCTP reset stream " << streamId << " failed, errno=" << errno;
}
}
void SctpTransport::handleUpcall() noexcept {
try {
PLOG_VERBOSE << "Handle upcall";
int events = usrsctp_get_events(mSock);
if (events & SCTP_EVENT_READ)
enqueueRecv();
if (events & SCTP_EVENT_WRITE)
enqueueFlush();
} catch (const std::exception &e) {
PLOG_ERROR << "SCTP upcall: " << e.what();
}
}
int SctpTransport::handleWrite(byte *data, size_t len, uint8_t /*tos*/,
uint8_t /*set_df*/) noexcept {
try {
std::unique_lock lock(mWriteMutex);
PLOG_VERBOSE << "Handle write, len=" << len;
if (!outgoing(make_message(data, data + len)))
return -1;
mWritten = true;
mWrittenOnce = true;
mWrittenCondition.notify_all();
} catch (const std::exception &e) {
PLOG_ERROR << "SCTP write: " << e.what();
return -1;
}
return 0; // success
}
void SctpTransport::processData(binary &&data, uint16_t sid, PayloadId ppid) {
PLOG_VERBOSE << "Process data, size=" << data.size();
// RFC 8831: The usage of the PPIDs "WebRTC String Partial" and "WebRTC Binary Partial" is
// deprecated. They were used for a PPID-based fragmentation and reassembly of user messages
// belonging to reliable and ordered data channels.
// See https://www.rfc-editor.org/rfc/rfc8831.html#section-6.6
// We handle those PPIDs at reception for compatibility reasons but shall never send them.
switch (ppid) {
case PPID_CONTROL:
recv(make_message(std::move(data), Message::Control, sid));
break;
case PPID_STRING_PARTIAL: // deprecated
mPartialStringData.insert(mPartialStringData.end(), data.begin(), data.end());
mPartialStringData.resize(mMaxMessageSize);
break;
case PPID_STRING:
if (mPartialStringData.empty()) {
mBytesReceived += data.size();
recv(make_message(std::move(data), Message::String, sid));
} else {
mPartialStringData.insert(mPartialStringData.end(), data.begin(), data.end());
mPartialStringData.resize(mMaxMessageSize);
mBytesReceived += mPartialStringData.size();
auto message = make_message(std::move(mPartialStringData), Message::String, sid);
mPartialStringData.clear();
recv(std::move(message));
}
break;
case PPID_STRING_EMPTY:
recv(make_message(std::move(mPartialStringData), Message::String, sid));
mPartialStringData.clear();
break;
case PPID_BINARY_PARTIAL: // deprecated
mPartialBinaryData.insert(mPartialBinaryData.end(), data.begin(), data.end());
mPartialBinaryData.resize(mMaxMessageSize);
break;
case PPID_BINARY:
if (mPartialBinaryData.empty()) {
mBytesReceived += data.size();
recv(make_message(std::move(data), Message::Binary, sid));
} else {
mPartialBinaryData.insert(mPartialBinaryData.end(), data.begin(), data.end());
mPartialBinaryData.resize(mMaxMessageSize);
mBytesReceived += mPartialBinaryData.size();
auto message = make_message(std::move(mPartialBinaryData), Message::Binary, sid);
mPartialBinaryData.clear();
recv(std::move(message));
}
break;
case PPID_BINARY_EMPTY:
recv(make_message(std::move(mPartialBinaryData), Message::Binary, sid));
mPartialBinaryData.clear();
break;
default:
// Unknown
COUNTER_UNKNOWN_PPID++;
PLOG_VERBOSE << "Unknown PPID: " << uint32_t(ppid);
return;
}
}
void SctpTransport::processNotification(const union sctp_notification *notify, size_t len) {
if (len != size_t(notify->sn_header.sn_length)) {
PLOG_WARNING << "Unexpected notification length, expected=" << notify->sn_header.sn_length
<< ", actual=" << len;
return;
}
auto type = notify->sn_header.sn_type;
PLOG_VERBOSE << "Processing notification, type=" << type;
switch (type) {
case SCTP_ASSOC_CHANGE: {
PLOG_VERBOSE << "SCTP association change event";
const struct sctp_assoc_change &sac = notify->sn_assoc_change;
if (sac.sac_state == SCTP_COMM_UP) {
PLOG_DEBUG << "SCTP negotiated streams: incoming=" << sac.sac_inbound_streams
<< ", outgoing=" << sac.sac_outbound_streams;
mNegotiatedStreamsCount.emplace(
std::min(sac.sac_inbound_streams, sac.sac_outbound_streams));
PLOG_INFO << "SCTP connected";
changeState(State::Connected);
} else {
if (state() == State::Connected) {
PLOG_INFO << "SCTP disconnected";
changeState(State::Disconnected);
recv(nullptr);
} else {
PLOG_ERROR << "SCTP connection failed";
changeState(State::Failed);
}
mWrittenCondition.notify_all();
}
break;
}
case SCTP_SENDER_DRY_EVENT: {
PLOG_VERBOSE << "SCTP sender dry event";
// It should not be necessary since the send callback should have been called already,
// but to be sure, let's try to send now.
flush();
break;
}
case SCTP_STREAM_RESET_EVENT: {
const struct sctp_stream_reset_event &reset_event = notify->sn_strreset_event;
const int count = (reset_event.strreset_length - sizeof(reset_event)) / sizeof(uint16_t);
const uint16_t flags = reset_event.strreset_flags;
IF_PLOG(plog::verbose) {
std::ostringstream desc;
desc << "flags=";
if (flags & SCTP_STREAM_RESET_OUTGOING_SSN && flags & SCTP_STREAM_RESET_INCOMING_SSN)
desc << "outgoing|incoming";
else if (flags & SCTP_STREAM_RESET_OUTGOING_SSN)
desc << "outgoing";
else if (flags & SCTP_STREAM_RESET_INCOMING_SSN)
desc << "incoming";
else
desc << "0";
desc << ", streams=[";
for (int i = 0; i < count; ++i) {
uint16_t streamId = reset_event.strreset_stream_list[i];
desc << (i != 0 ? "," : "") << streamId;
}
desc << "]";
PLOG_VERBOSE << "SCTP reset event, " << desc.str();
}
// RFC 8831 6.7. Closing a Data Channel
// If one side decides to close the data channel, it resets the corresponding outgoing
// stream. When the peer sees that an incoming stream was reset, it also resets its
// corresponding outgoing stream.
// See https://www.rfc-editor.org/rfc/rfc8831.html#section-6.7
if (flags & SCTP_STREAM_RESET_INCOMING_SSN) {
for (int i = 0; i < count; ++i) {
uint16_t streamId = reset_event.strreset_stream_list[i];
recv(make_message(0, Message::Reset, streamId));
}
}
break;
}
default:
// Ignore
break;
}
}
void SctpTransport::clearStats() {
mBytesReceived = 0;
mBytesSent = 0;
}
size_t SctpTransport::bytesSent() { return mBytesSent; }
size_t SctpTransport::bytesReceived() { return mBytesReceived; }
optional<milliseconds> SctpTransport::rtt() {
if (state() != State::Connected)
return nullopt;
struct sctp_status status = {};
socklen_t len = sizeof(status);
if (usrsctp_getsockopt(mSock, IPPROTO_SCTP, SCTP_STATUS, &status, &len))
return nullopt;
return milliseconds(status.sstat_primary.spinfo_srtt);
}
void SctpTransport::UpcallCallback(struct socket *, void *arg, int /* flags */) {
auto *transport = static_cast<SctpTransport *>(arg);
if (auto locked = Instances->lock(transport))
transport->handleUpcall();
}
int SctpTransport::WriteCallback(void *ptr, void *data, size_t len, uint8_t tos, uint8_t set_df) {
auto *transport = static_cast<SctpTransport *>(ptr);
#ifndef SCTP_ACCEPT_ZERO_CHECKSUM
// Set the CRC32 ourselves as we have enabled CRC32 offloading
if (len >= 12) {
uint32_t *checksum = reinterpret_cast<uint32_t *>(data) + 2;
*checksum = 0;
*checksum = usrsctp_crc32c(data, len);
}
#endif
// Workaround for sctplab/usrsctp#405: Send callback is invoked on already closed socket
// https://github.com/sctplab/usrsctp/issues/405
if (auto locked = Instances->lock(transport))
return transport->handleWrite(static_cast<byte *>(data), len, tos, set_df);
else
return -1;
}
void SctpTransport::DebugCallback(const char *format, ...) {
const size_t bufferSize = 1024;
char buffer[bufferSize];
va_list va;
va_start(va, format);
int len = std::vsnprintf(buffer, bufferSize, format, va);
va_end(va);
if (len <= 0)
return;
len = std::min(len, int(bufferSize - 1));
buffer[len - 1] = '\0'; // remove newline