-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathdtlstransport.cpp
1099 lines (895 loc) · 31 KB
/
dtlstransport.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 "dtlstransport.hpp"
#include "dtlssrtptransport.hpp"
#include "icetransport.hpp"
#include "internals.hpp"
#include "threadpool.hpp"
#include <algorithm>
#include <chrono>
#include <cstring>
#include <exception>
#if !USE_GNUTLS
#ifdef _WIN32
#include <winsock2.h> // for timeval
#else
#include <sys/time.h> // for timeval
#endif
#endif
using namespace std::chrono;
namespace rtc::impl {
void DtlsTransport::enqueueRecv() {
if (mPendingRecvCount > 0)
return;
if (auto shared_this = weak_from_this().lock()) {
++mPendingRecvCount;
ThreadPool::Instance().enqueue(&DtlsTransport::doRecv, std::move(shared_this));
}
}
#if USE_GNUTLS
void DtlsTransport::Init() {
gnutls_global_init(); // optional
}
void DtlsTransport::Cleanup() { gnutls_global_deinit(); }
DtlsTransport::DtlsTransport(shared_ptr<IceTransport> lower, certificate_ptr certificate,
optional<size_t> mtu,
CertificateFingerprint::Algorithm fingerprintAlgorithm,
verifier_callback verifierCallback, state_callback stateChangeCallback)
: Transport(lower, std::move(stateChangeCallback)), mMtu(mtu), mCertificate(certificate),
mFingerprintAlgorithm(fingerprintAlgorithm), mVerifierCallback(std::move(verifierCallback)),
mIsClient(lower->role() == Description::Role::Active),
mIncomingQueue(RECV_QUEUE_LIMIT, message_size_func) {
PLOG_DEBUG << "Initializing DTLS transport (GnuTLS)";
if (!mCertificate)
throw std::invalid_argument("DTLS certificate is null");
gnutls_certificate_credentials_t creds = mCertificate->credentials();
gnutls_certificate_set_verify_function(creds, CertificateCallback);
unsigned int flags =
GNUTLS_DATAGRAM | GNUTLS_NONBLOCK | (mIsClient ? GNUTLS_CLIENT : GNUTLS_SERVER);
gnutls::check(gnutls_init(&mSession, flags));
try {
// RFC 8261: SCTP performs segmentation and reassembly based on the path MTU.
// Therefore, the DTLS layer MUST NOT use any compression algorithm.
// See https://www.rfc-editor.org/rfc/rfc8261.html#section-5
const char *priorities = "SECURE128:-VERS-SSL3.0:-ARCFOUR-128:-COMP-ALL:+COMP-NULL";
const char *err_pos = NULL;
gnutls::check(gnutls_priority_set_direct(mSession, priorities, &err_pos),
"Failed to set TLS priorities");
// RFC 8827: The DTLS-SRTP protection profile SRTP_AES128_CM_HMAC_SHA1_80 MUST be supported
// See https://www.rfc-editor.org/rfc/rfc8827.html#section-6.5
gnutls::check(gnutls_srtp_set_profile(mSession, GNUTLS_SRTP_AES128_CM_HMAC_SHA1_80),
"Failed to set SRTP profile");
gnutls::check(gnutls_credentials_set(mSession, GNUTLS_CRD_CERTIFICATE, creds));
gnutls_dtls_set_timeouts(mSession,
1000, // 1s retransmission timeout recommended by RFC 6347
30000); // 30s total timeout
gnutls_handshake_set_timeout(mSession, 30000);
gnutls_session_set_ptr(mSession, this);
gnutls_transport_set_ptr(mSession, this);
gnutls_transport_set_push_function(mSession, WriteCallback);
gnutls_transport_set_pull_function(mSession, ReadCallback);
gnutls_transport_set_pull_timeout_function(mSession, TimeoutCallback);
} catch (...) {
gnutls_deinit(mSession);
throw;
}
// Set recommended medium-priority DSCP value for handshake
// See https://www.rfc-editor.org/rfc/rfc8837.html#section-5
mCurrentDscp = 10; // AF11: Assured Forwarding class 1, low drop probability
}
DtlsTransport::~DtlsTransport() {
stop();
PLOG_DEBUG << "Destroying DTLS transport";
gnutls_deinit(mSession);
}
void DtlsTransport::start() {
PLOG_DEBUG << "Starting DTLS transport";
registerIncoming();
changeState(State::Connecting);
size_t mtu = mMtu.value_or(DEFAULT_MTU) - 8 - 40; // UDP/IPv6
gnutls_dtls_set_mtu(mSession, static_cast<unsigned int>(mtu));
PLOG_VERBOSE << "DTLS MTU set to " << mtu;
enqueueRecv(); // to initiate the handshake
}
void DtlsTransport::stop() {
PLOG_DEBUG << "Stopping DTLS transport";
unregisterIncoming();
mIncomingQueue.stop();
enqueueRecv();
}
bool DtlsTransport::send(message_ptr message) {
if (!message || state() != State::Connected)
return false;
PLOG_VERBOSE << "Send size=" << message->size();
ssize_t ret;
do {
std::lock_guard lock(mSendMutex);
mCurrentDscp = message->dscp;
ret = gnutls_record_send(mSession, message->data(), message->size());
} while (ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN);
if (ret == GNUTLS_E_LARGE_PACKET)
return false;
if (!gnutls::check(ret))
return false;
return mOutgoingResult;
}
void DtlsTransport::incoming(message_ptr message) {
if (!message) {
mIncomingQueue.stop();
return;
}
PLOG_VERBOSE << "Incoming size=" << message->size();
mIncomingQueue.push(message);
enqueueRecv();
}
bool DtlsTransport::outgoing(message_ptr message) {
message->dscp = mCurrentDscp;
bool result = Transport::outgoing(std::move(message));
mOutgoingResult = result;
return result;
}
bool DtlsTransport::demuxMessage(message_ptr) {
// Dummy
return false;
}
void DtlsTransport::postHandshake() {
// Dummy
}
void DtlsTransport::doRecv() {
std::lock_guard lock(mRecvMutex);
--mPendingRecvCount;
if (state() != State::Connecting && state() != State::Connected)
return;
try {
const size_t bufferSize = 4096;
char buffer[bufferSize];
// Handle handshake if connecting
if (state() == State::Connecting) {
int ret;
do {
ret = gnutls_handshake(mSession);
if (ret == GNUTLS_E_AGAIN) {
// Schedule next call on timeout and return
auto timeout = milliseconds(gnutls_dtls_get_timeout(mSession));
ThreadPool::Instance().schedule(timeout, [weak_this = weak_from_this()]() {
if (auto locked = weak_this.lock())
locked->doRecv();
});
return;
}
if (ret == GNUTLS_E_LARGE_PACKET) {
throw std::runtime_error("MTU is too low");
}
} while (!gnutls::check(ret, "Handshake failed")); // Re-call on non-fatal error
// RFC 8261: DTLS MUST support sending messages larger than the current path MTU
// See https://www.rfc-editor.org/rfc/rfc8261.html#section-5
gnutls_dtls_set_mtu(mSession, bufferSize + 1);
PLOG_INFO << "DTLS handshake finished";
changeState(State::Connected);
postHandshake();
}
if (state() == State::Connected) {
while (true) {
ssize_t ret = gnutls_record_recv(mSession, buffer, bufferSize);
if (ret == GNUTLS_E_AGAIN) {
return;
}
// RFC 8827: Implementations MUST NOT implement DTLS renegotiation and MUST reject
// it with a "no_renegotiation" alert if offered. See
// https://www.rfc-editor.org/rfc/rfc8827.html#section-6.5
if (ret == GNUTLS_E_REHANDSHAKE) {
do {
std::lock_guard lock(mSendMutex);
ret = gnutls_alert_send(mSession, GNUTLS_AL_WARNING,
GNUTLS_A_NO_RENEGOTIATION);
} while (ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN);
continue;
}
// Consider premature termination as remote closing
if (ret == GNUTLS_E_PREMATURE_TERMINATION) {
PLOG_DEBUG << "DTLS connection terminated";
break;
}
if (gnutls::check(ret)) {
if (ret == 0) {
// Closed
PLOG_DEBUG << "DTLS connection cleanly closed";
break;
}
auto *b = reinterpret_cast<byte *>(buffer);
recv(make_message(b, b + ret));
}
}
}
} catch (const std::exception &e) {
PLOG_ERROR << "DTLS recv: " << e.what();
}
gnutls_bye(mSession, GNUTLS_SHUT_WR);
if (state() == State::Connected) {
PLOG_INFO << "DTLS closed";
changeState(State::Disconnected);
recv(nullptr);
} else {
PLOG_ERROR << "DTLS handshake failed";
changeState(State::Failed);
}
}
int DtlsTransport::CertificateCallback(gnutls_session_t session) {
DtlsTransport *t = static_cast<DtlsTransport *>(gnutls_session_get_ptr(session));
try {
if (gnutls_certificate_type_get(session) != GNUTLS_CRT_X509) {
return GNUTLS_E_CERTIFICATE_ERROR;
}
unsigned int count = 0;
const gnutls_datum_t *array = gnutls_certificate_get_peers(session, &count);
if (!array || count == 0) {
return GNUTLS_E_CERTIFICATE_ERROR;
}
gnutls_x509_crt_t crt;
gnutls::check(gnutls_x509_crt_init(&crt));
int ret = gnutls_x509_crt_import(crt, &array[0], GNUTLS_X509_FMT_DER);
if (ret != GNUTLS_E_SUCCESS) {
gnutls_x509_crt_deinit(crt);
return GNUTLS_E_CERTIFICATE_ERROR;
}
string fingerprint = make_fingerprint(crt, t->mFingerprintAlgorithm);
gnutls_x509_crt_deinit(crt);
bool success = t->mVerifierCallback(fingerprint);
return success ? GNUTLS_E_SUCCESS : GNUTLS_E_CERTIFICATE_ERROR;
} catch (const std::exception &e) {
PLOG_WARNING << e.what();
return GNUTLS_E_CERTIFICATE_ERROR;
}
}
ssize_t DtlsTransport::WriteCallback(gnutls_transport_ptr_t ptr, const void *data, size_t len) {
DtlsTransport *t = static_cast<DtlsTransport *>(ptr);
try {
if (len > 0) {
auto b = reinterpret_cast<const byte *>(data);
t->outgoing(make_message(b, b + len));
}
gnutls_transport_set_errno(t->mSession, 0);
return ssize_t(len);
} catch (const std::exception &e) {
PLOG_WARNING << e.what();
gnutls_transport_set_errno(t->mSession, ECONNRESET);
return -1;
}
}
ssize_t DtlsTransport::ReadCallback(gnutls_transport_ptr_t ptr, void *data, size_t maxlen) {
DtlsTransport *t = static_cast<DtlsTransport *>(ptr);
try {
while (t->mIncomingQueue.running()) {
auto next = t->mIncomingQueue.pop();
if (!next) {
gnutls_transport_set_errno(t->mSession, EAGAIN);
return -1;
}
message_ptr message = std::move(*next);
if (t->demuxMessage(message))
continue;
ssize_t len = std::min(maxlen, message->size());
std::memcpy(data, message->data(), len);
gnutls_transport_set_errno(t->mSession, 0);
return len;
}
// Closed
gnutls_transport_set_errno(t->mSession, 0);
return 0;
} catch (const std::exception &e) {
PLOG_WARNING << e.what();
gnutls_transport_set_errno(t->mSession, ECONNRESET);
return -1;
}
}
int DtlsTransport::TimeoutCallback(gnutls_transport_ptr_t ptr, unsigned int /* ms */) {
DtlsTransport *t = static_cast<DtlsTransport *>(ptr);
try {
return !t->mIncomingQueue.empty() ? 1 : 0;
} catch (const std::exception &e) {
PLOG_WARNING << e.what();
return 1;
}
}
#elif USE_MBEDTLS
const mbedtls_ssl_srtp_profile srtpSupportedProtectionProfiles[] = {
MBEDTLS_TLS_SRTP_AES128_CM_HMAC_SHA1_80,
MBEDTLS_TLS_SRTP_UNSET,
};
DtlsTransport::DtlsTransport(shared_ptr<IceTransport> lower, certificate_ptr certificate,
optional<size_t> mtu,
CertificateFingerprint::Algorithm fingerprintAlgorithm,
verifier_callback verifierCallback, state_callback stateChangeCallback)
: Transport(lower, std::move(stateChangeCallback)), mMtu(mtu), mCertificate(certificate),
mFingerprintAlgorithm(fingerprintAlgorithm), mVerifierCallback(std::move(verifierCallback)),
mIsClient(lower->role() == Description::Role::Active),
mIncomingQueue(RECV_QUEUE_LIMIT, message_size_func) {
PLOG_DEBUG << "Initializing DTLS transport (MbedTLS)";
if (!mCertificate)
throw std::invalid_argument("DTLS certificate is null");
mbedtls_entropy_init(&mEntropy);
mbedtls_ctr_drbg_init(&mDrbg);
mbedtls_ssl_init(&mSsl);
mbedtls_ssl_config_init(&mConf);
mbedtls_ctr_drbg_set_prediction_resistance(&mDrbg, MBEDTLS_CTR_DRBG_PR_ON);
try {
mbedtls::check(mbedtls_ctr_drbg_seed(&mDrbg, mbedtls_entropy_func, &mEntropy, NULL, 0));
mbedtls::check(mbedtls_ssl_config_defaults(
&mConf, mIsClient ? MBEDTLS_SSL_IS_CLIENT : MBEDTLS_SSL_IS_SERVER,
MBEDTLS_SSL_TRANSPORT_DATAGRAM, MBEDTLS_SSL_PRESET_DEFAULT));
mbedtls_ssl_conf_max_version(&mConf, MBEDTLS_SSL_MAJOR_VERSION_3, MBEDTLS_SSL_MINOR_VERSION_3); // TLS 1.2
mbedtls_ssl_conf_authmode(&mConf, MBEDTLS_SSL_VERIFY_OPTIONAL);
mbedtls_ssl_conf_verify(&mConf, DtlsTransport::CertificateCallback, this);
mbedtls_ssl_conf_rng(&mConf, mbedtls_ctr_drbg_random, &mDrbg);
auto [crt, pk] = mCertificate->credentials();
mbedtls::check(mbedtls_ssl_conf_own_cert(&mConf, crt.get(), pk.get()));
mbedtls_ssl_conf_dtls_cookies(&mConf, NULL, NULL, NULL);
mbedtls_ssl_conf_dtls_srtp_protection_profiles(&mConf, srtpSupportedProtectionProfiles);
mbedtls::check(mbedtls_ssl_setup(&mSsl, &mConf));
mbedtls_ssl_set_export_keys_cb(&mSsl, DtlsTransport::ExportKeysCallback, this);
mbedtls_ssl_set_bio(&mSsl, this, WriteCallback, ReadCallback, NULL);
mbedtls_ssl_set_timer_cb(&mSsl, this, SetTimerCallback, GetTimerCallback);
} catch (...) {
mbedtls_entropy_free(&mEntropy);
mbedtls_ctr_drbg_free(&mDrbg);
mbedtls_ssl_free(&mSsl);
mbedtls_ssl_config_free(&mConf);
throw;
}
// Set recommended medium-priority DSCP value for handshake
// See https://www.rfc-editor.org/rfc/rfc8837.html#section-5
mCurrentDscp = 10; // AF11: Assured Forwarding class 1, low drop probability
}
DtlsTransport::~DtlsTransport() {
stop();
PLOG_DEBUG << "Destroying DTLS transport";
mbedtls_entropy_free(&mEntropy);
mbedtls_ctr_drbg_free(&mDrbg);
mbedtls_ssl_free(&mSsl);
mbedtls_ssl_config_free(&mConf);
}
void DtlsTransport::Init() {
// Nothing to do
}
void DtlsTransport::Cleanup() {
// Nothing to do
}
void DtlsTransport::start() {
PLOG_DEBUG << "Starting DTLS transport";
registerIncoming();
changeState(State::Connecting);
{
std::lock_guard lock(mSslMutex);
size_t mtu = mMtu.value_or(DEFAULT_MTU) - 8 - 40; // UDP/IPv6
mbedtls_ssl_set_mtu(&mSsl, static_cast<unsigned int>(mtu));
PLOG_VERBOSE << "DTLS MTU set to " << mtu;
}
enqueueRecv(); // to initiate the handshake
}
void DtlsTransport::stop() {
PLOG_DEBUG << "Stopping DTLS transport";
unregisterIncoming();
mIncomingQueue.stop();
enqueueRecv();
}
bool DtlsTransport::send(message_ptr message) {
if (!message || state() != State::Connected)
return false;
PLOG_VERBOSE << "Send size=" << message->size();
int ret;
do {
std::lock_guard lock(mSslMutex);
if (message->size() > size_t(mbedtls_ssl_get_max_out_record_payload(&mSsl)))
return false;
mCurrentDscp = message->dscp;
ret = mbedtls_ssl_write(&mSsl, reinterpret_cast<const unsigned char *>(message->data()),
message->size());
} while (!mbedtls::check(ret));
return mOutgoingResult;
}
void DtlsTransport::incoming(message_ptr message) {
if (!message) {
mIncomingQueue.stop();
return;
}
PLOG_VERBOSE << "Incoming size=" << message->size();
mIncomingQueue.push(message);
enqueueRecv();
}
bool DtlsTransport::outgoing(message_ptr message) {
message->dscp = mCurrentDscp;
bool result = Transport::outgoing(std::move(message));
mOutgoingResult = result;
return result;
}
bool DtlsTransport::demuxMessage(message_ptr) {
// Dummy
return false;
}
void DtlsTransport::postHandshake() {
// Dummy
}
void DtlsTransport::doRecv() {
std::lock_guard lock(mRecvMutex);
--mPendingRecvCount;
if (state() != State::Connecting && state() != State::Connected)
return;
try {
const size_t bufferSize = 4096;
char buffer[bufferSize];
// Handle handshake if connecting
if (state() == State::Connecting) {
while (true) {
int ret;
{
std::lock_guard lock(mSslMutex);
ret = mbedtls_ssl_handshake(&mSsl);
}
if (ret == MBEDTLS_ERR_SSL_WANT_READ) {
ThreadPool::Instance().schedule(mTimerSetAt + milliseconds(mFinMs),
[weak_this = weak_from_this()]() {
if (auto locked = weak_this.lock())
locked->doRecv();
});
return;
}
if (mbedtls::check(ret, "Handshake failed")) {
// RFC 8261: DTLS MUST support sending messages larger than the current path MTU
// See https://www.rfc-editor.org/rfc/rfc8261.html#section-5
{
std::lock_guard lock(mSslMutex);
mbedtls_ssl_set_mtu(&mSsl, static_cast<unsigned int>(bufferSize + 1));
}
PLOG_INFO << "DTLS handshake finished";
changeState(State::Connected);
postHandshake();
break;
}
}
}
if (state() == State::Connected) {
while (true) {
int ret;
{
std::lock_guard lock(mSslMutex);
ret = mbedtls_ssl_read(&mSsl, reinterpret_cast<unsigned char *>(buffer),
bufferSize);
}
if (ret == MBEDTLS_ERR_SSL_WANT_READ) {
return;
}
if (ret == MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY) {
PLOG_DEBUG << "DTLS connection cleanly closed";
break;
}
if (mbedtls::check(ret)) {
if (ret == 0) {
PLOG_DEBUG << "DTLS connection terminated";
break;
}
auto *b = reinterpret_cast<byte *>(buffer);
recv(make_message(b, b + ret));
}
}
}
} catch (const std::exception &e) {
PLOG_ERROR << "DTLS recv: " << e.what();
}
if (state() == State::Connected) {
PLOG_INFO << "DTLS closed";
changeState(State::Disconnected);
recv(nullptr);
} else {
PLOG_ERROR << "DTLS handshake failed";
changeState(State::Failed);
}
}
int DtlsTransport::CertificateCallback(void *ctx, mbedtls_x509_crt *crt, int /*depth*/,
uint32_t * /*flags*/) {
auto this_ = static_cast<DtlsTransport *>(ctx);
string fingerprint = make_fingerprint(crt, this_->mFingerprintAlgorithm);
std::transform(fingerprint.begin(), fingerprint.end(), fingerprint.begin(),
[](char c) { return char(std::toupper(c)); });
return this_->mVerifierCallback(fingerprint) ? 0 : 1;
}
void DtlsTransport::ExportKeysCallback(void *ctx, mbedtls_ssl_key_export_type /*type*/,
const unsigned char *secret, size_t secret_len,
const unsigned char client_random[32],
const unsigned char server_random[32],
mbedtls_tls_prf_types tls_prf_type) {
auto dtlsTransport = static_cast<DtlsTransport *>(ctx);
std::memcpy(dtlsTransport->mMasterSecret, secret, secret_len);
std::memcpy(dtlsTransport->mRandBytes, client_random, 32);
std::memcpy(dtlsTransport->mRandBytes + 32, server_random, 32);
dtlsTransport->mTlsProfile = tls_prf_type;
}
int DtlsTransport::WriteCallback(void *ctx, const unsigned char *buf, size_t len) {
auto *t = static_cast<DtlsTransport *>(ctx);
try {
if (len > 0) {
auto b = reinterpret_cast<const byte *>(buf);
t->outgoing(make_message(b, b + len));
}
return int(len);
} catch (const std::exception &e) {
PLOG_WARNING << e.what();
return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
}
}
int DtlsTransport::ReadCallback(void *ctx, unsigned char *buf, size_t len) {
auto *t = static_cast<DtlsTransport *>(ctx);
try {
while (t->mIncomingQueue.running()) {
auto next = t->mIncomingQueue.pop();
if (!next) {
return MBEDTLS_ERR_SSL_WANT_READ;
}
message_ptr message = std::move(*next);
if (t->demuxMessage(message))
continue;
auto bufMin = std::min(len, size_t(message->size()));
std::memcpy(buf, message->data(), bufMin);
return int(len);
}
// Closed
return 0;
} catch (const std::exception &e) {
PLOG_WARNING << e.what();
return MBEDTLS_ERR_SSL_INTERNAL_ERROR;
;
}
}
void DtlsTransport::SetTimerCallback(void *ctx, uint32_t int_ms, uint32_t fin_ms) {
auto dtlsTransport = static_cast<DtlsTransport *>(ctx);
dtlsTransport->mIntMs = int_ms;
dtlsTransport->mFinMs = fin_ms;
if (fin_ms != 0) {
dtlsTransport->mTimerSetAt = std::chrono::steady_clock::now();
}
}
int DtlsTransport::GetTimerCallback(void *ctx) {
auto dtlsTransport = static_cast<DtlsTransport *>(ctx);
auto now = std::chrono::steady_clock::now();
if (dtlsTransport->mFinMs == 0) {
return -1;
} else if (now >= dtlsTransport->mTimerSetAt + milliseconds(dtlsTransport->mFinMs)) {
return 2;
} else if (now >= dtlsTransport->mTimerSetAt + milliseconds(dtlsTransport->mIntMs)) {
return 1;
} else {
return 0;
}
}
#else // OPENSSL
BIO_METHOD *DtlsTransport::BioMethods = NULL;
int DtlsTransport::TransportExIndex = -1;
std::mutex DtlsTransport::GlobalMutex;
void DtlsTransport::Init() {
std::lock_guard lock(GlobalMutex);
openssl::init();
if (!BioMethods) {
BioMethods = BIO_meth_new(BIO_TYPE_BIO, "DTLS writer");
if (!BioMethods)
throw std::runtime_error("Failed to create BIO methods for DTLS writer");
BIO_meth_set_create(BioMethods, BioMethodNew);
BIO_meth_set_destroy(BioMethods, BioMethodFree);
BIO_meth_set_write(BioMethods, BioMethodWrite);
BIO_meth_set_ctrl(BioMethods, BioMethodCtrl);
}
if (TransportExIndex < 0) {
TransportExIndex = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
}
}
void DtlsTransport::Cleanup() {
// Nothing to do
}
DtlsTransport::DtlsTransport(shared_ptr<IceTransport> lower, certificate_ptr certificate,
optional<size_t> mtu,
CertificateFingerprint::Algorithm fingerprintAlgorithm,
verifier_callback verifierCallback, state_callback stateChangeCallback)
: Transport(lower, std::move(stateChangeCallback)), mMtu(mtu), mCertificate(certificate),
mFingerprintAlgorithm(fingerprintAlgorithm), mVerifierCallback(std::move(verifierCallback)),
mIsClient(lower->role() == Description::Role::Active),
mIncomingQueue(RECV_QUEUE_LIMIT, message_size_func) {
PLOG_DEBUG << "Initializing DTLS transport (OpenSSL)";
if (!mCertificate)
throw std::invalid_argument("DTLS certificate is null");
try {
mCtx = SSL_CTX_new(DTLS_method());
if (!mCtx)
throw std::runtime_error("Failed to create SSL context");
// RFC 8261: SCTP performs segmentation and reassembly based on the path MTU.
// Therefore, the DTLS layer MUST NOT use any compression algorithm.
// See https://www.rfc-editor.org/rfc/rfc8261.html#section-5
// RFC 8827: Implementations MUST NOT implement DTLS renegotiation
// See https://www.rfc-editor.org/rfc/rfc8827.html#section-6.5
SSL_CTX_set_options(mCtx, SSL_OP_NO_SSLv3 | SSL_OP_NO_COMPRESSION | SSL_OP_NO_QUERY_MTU |
SSL_OP_NO_RENEGOTIATION);
SSL_CTX_set_min_proto_version(mCtx, DTLS1_VERSION);
SSL_CTX_set_read_ahead(mCtx, 1);
SSL_CTX_set_quiet_shutdown(mCtx, 0); // send the close_notify alert
SSL_CTX_set_info_callback(mCtx, InfoCallback);
SSL_CTX_set_verify(mCtx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
CertificateCallback);
SSL_CTX_set_verify_depth(mCtx, 1);
openssl::check(SSL_CTX_set_cipher_list(mCtx, "ALL:!LOW:!EXP:!RC4:!MD5:@STRENGTH"),
"Failed to set SSL priorities");
#if OPENSSL_VERSION_NUMBER >= 0x30000000
openssl::check(SSL_CTX_set1_groups_list(mCtx, "P-256"), "Failed to set SSL groups");
#else
auto ecdh = unique_ptr<EC_KEY, decltype(&EC_KEY_free)>(
EC_KEY_new_by_curve_name(NID_X9_62_prime256v1), EC_KEY_free);
SSL_CTX_set_tmp_ecdh(mCtx, ecdh.get());
#endif
auto [x509, pkey] = mCertificate->credentials();
SSL_CTX_use_certificate(mCtx, x509);
SSL_CTX_use_PrivateKey(mCtx, pkey);
openssl::check(SSL_CTX_check_private_key(mCtx), "SSL local private key check failed");
mSsl = SSL_new(mCtx);
if (!mSsl)
throw std::runtime_error("Failed to create SSL instance");
SSL_set_ex_data(mSsl, TransportExIndex, this);
if (mIsClient)
SSL_set_connect_state(mSsl);
else
SSL_set_accept_state(mSsl);
mInBio = BIO_new(BIO_s_mem());
mOutBio = BIO_new(BioMethods);
if (!mInBio || !mOutBio)
throw std::runtime_error("Failed to create BIO");
BIO_set_mem_eof_return(mInBio, BIO_EOF);
BIO_set_data(mOutBio, this);
SSL_set_bio(mSsl, mInBio, mOutBio);
// RFC 8827: The DTLS-SRTP protection profile SRTP_AES128_CM_HMAC_SHA1_80 MUST be supported
// See https://www.rfc-editor.org/rfc/rfc8827.html#section-6.5
// Warning: SSL_set_tlsext_use_srtp() returns 0 on success and 1 on error
#if RTC_ENABLE_MEDIA
// Try to use GCM suite
if (!DtlsSrtpTransport::IsGcmSupported() ||
SSL_set_tlsext_use_srtp(
mSsl, "SRTP_AEAD_AES_256_GCM:SRTP_AEAD_AES_128_GCM:SRTP_AES128_CM_SHA1_80")) {
PLOG_WARNING << "AES-GCM for SRTP is not supported, falling back to default profile";
if (SSL_set_tlsext_use_srtp(mSsl, "SRTP_AES128_CM_SHA1_80"))
throw std::runtime_error("Failed to set SRTP profile: " +
openssl::error_string(ERR_get_error()));
}
#else
if (SSL_set_tlsext_use_srtp(mSsl, "SRTP_AES128_CM_SHA1_80"))
throw std::runtime_error("Failed to set SRTP profile: " +
openssl::error_string(ERR_get_error()));
#endif
} catch (...) {
if (mSsl)
SSL_free(mSsl);
if (mCtx)
SSL_CTX_free(mCtx);
throw;
}
// Set recommended medium-priority DSCP value for handshake
// See https://www.rfc-editor.org/rfc/rfc8837.html#section-5
mCurrentDscp = 10; // AF11: Assured Forwarding class 1, low drop probability
}
DtlsTransport::~DtlsTransport() {
stop();
PLOG_DEBUG << "Destroying DTLS transport";
SSL_free(mSsl);
SSL_CTX_free(mCtx);
}
void DtlsTransport::start() {
PLOG_DEBUG << "Starting DTLS transport";
registerIncoming();
changeState(State::Connecting);
int ret, err;
{
std::lock_guard lock(mSslMutex);
size_t mtu = mMtu.value_or(DEFAULT_MTU) - 8 - 40; // UDP/IPv6
SSL_set_mtu(mSsl, static_cast<unsigned int>(mtu));
PLOG_VERBOSE << "DTLS MTU set to " << mtu;
// Initiate the handshake
ret = SSL_do_handshake(mSsl);
err = SSL_get_error(mSsl, ret);
}
openssl::check_error(err, "Handshake failed");
handleTimeout();
}
void DtlsTransport::stop() {
PLOG_DEBUG << "Stopping DTLS transport";
unregisterIncoming();
mIncomingQueue.stop();
enqueueRecv();
}
bool DtlsTransport::send(message_ptr message) {
if (!message || state() != State::Connected)
return false;
PLOG_VERBOSE << "Send size=" << message->size();
int ret, err;
{
std::lock_guard lock(mSslMutex);
mCurrentDscp = message->dscp;
ret = SSL_write(mSsl, message->data(), int(message->size()));
err = SSL_get_error(mSsl, ret);
}
if (!openssl::check_error(err))
return false;
return mOutgoingResult;
}
void DtlsTransport::incoming(message_ptr message) {
if (!message) {
mIncomingQueue.stop();
enqueueRecv();
return;
}
PLOG_VERBOSE << "Incoming size=" << message->size();
mIncomingQueue.push(message);
enqueueRecv();
}
bool DtlsTransport::outgoing(message_ptr message) {
message->dscp = mCurrentDscp;
bool result = Transport::outgoing(std::move(message));
mOutgoingResult = result;
return result;
}
bool DtlsTransport::demuxMessage(message_ptr) {
// Dummy
return false;
}
void DtlsTransport::postHandshake() {
// Dummy
}
void DtlsTransport::doRecv() {
std::lock_guard lock(mRecvMutex);
--mPendingRecvCount;
if (state() != State::Connecting && state() != State::Connected)
return;
try {
const size_t bufferSize = 4096;
byte buffer[bufferSize];
// Process pending messages
while (mIncomingQueue.running()) {
auto next = mIncomingQueue.pop();
if (!next) {
// No more messages pending, handle timeout if connecting
if (state() == State::Connecting)
handleTimeout();
return;
}
message_ptr message = std::move(*next);
if (demuxMessage(message))
continue;
BIO_write(mInBio, message->data(), int(message->size()));
if (state() == State::Connecting) {
// Continue the handshake
int ret, err;
{
std::lock_guard lock(mSslMutex);
ret = SSL_do_handshake(mSsl);
err = SSL_get_error(mSsl, ret);
}
if (openssl::check_error(err, "Handshake failed")) {
// RFC 8261: DTLS MUST support sending messages larger than the current path MTU
// See https://www.rfc-editor.org/rfc/rfc8261.html#section-5
{
std::lock_guard lock(mSslMutex);
SSL_set_mtu(mSsl, bufferSize + 1);
}
PLOG_INFO << "DTLS handshake finished";
postHandshake();
changeState(State::Connected);
}
}
if (state() == State::Connected) {
int ret, err;
{
std::lock_guard lock(mSslMutex);
ret = SSL_read(mSsl, buffer, bufferSize);
err = SSL_get_error(mSsl, ret);
}
if (err == SSL_ERROR_ZERO_RETURN) {
PLOG_DEBUG << "TLS connection cleanly closed";
break;
}
if (openssl::check_error(err))
recv(make_message(buffer, buffer + ret));
}
}
std::lock_guard lock(mSslMutex);
SSL_shutdown(mSsl);
} catch (const std::exception &e) {
PLOG_ERROR << "DTLS recv: " << e.what();
}
if (state() == State::Connected) {
PLOG_INFO << "DTLS closed";
changeState(State::Disconnected);
recv(nullptr);
} else {
PLOG_ERROR << "DTLS handshake failed";
changeState(State::Failed);