-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathwebsocket.cpp
542 lines (444 loc) · 15.1 KB
/
websocket.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
/**
* Copyright (c) 2020-2021 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/.
*/
#if RTC_ENABLE_WEBSOCKET
#include "websocket.hpp"
#include "common.hpp"
#include "internals.hpp"
#include "processor.hpp"
#include "utils.hpp"
#include "httpproxytransport.hpp"
#include "tcptransport.hpp"
#include "tlstransport.hpp"
#include "verifiedtlstransport.hpp"
#include "wstransport.hpp"
#include <array>
#include <chrono>
#include <regex>
#ifdef _WIN32
#include <winsock2.h>
#endif
namespace rtc::impl {
using namespace std::placeholders;
using namespace std::chrono_literals;
using std::chrono::milliseconds;
const string PemBeginCertificateTag = "-----BEGIN CERTIFICATE-----";
WebSocket::WebSocket(optional<Configuration> optConfig, certificate_ptr certificate)
: config(optConfig ? std::move(*optConfig) : Configuration()),
mRecvQueue(RECV_QUEUE_LIMIT, message_size_func) {
PLOG_VERBOSE << "Creating WebSocket";
if (certificate) {
mCertificate = std::move(certificate);
} else if (config.certificatePemFile && config.keyPemFile) {
mCertificate = std::make_shared<Certificate>(
config.certificatePemFile->find(PemBeginCertificateTag) != string::npos
? Certificate::FromString(*config.certificatePemFile, *config.keyPemFile)
: Certificate::FromFile(*config.certificatePemFile, *config.keyPemFile,
config.keyPemPass.value_or("")));
} else if (config.certificatePemFile || config.keyPemFile) {
throw std::invalid_argument(
"Either none or both certificate and key PEM files must be specified");
}
mIsSecure = mCertificate != nullptr;
if (config.proxyServer) {
if (config.proxyServer->type == ProxyServer::Type::Socks5)
throw std::invalid_argument(
"Proxy server support for WebSocket is not implemented for Socks5");
if (config.proxyServer->username || config.proxyServer->password) {
PLOG_WARNING << "HTTP authentication support for proxy is not implemented";
}
}
}
WebSocket::~WebSocket() { PLOG_VERBOSE << "Destroying WebSocket"; }
void WebSocket::open(const string &url) {
PLOG_VERBOSE << "Opening WebSocket to URL: " << url;
if (state != State::Closed)
throw std::logic_error("WebSocket must be closed before opening");
// Modified regex from RFC 3986, see https://www.rfc-editor.org/rfc/rfc3986.html#appendix-B
static const char *rs =
R"(^(([^:.@/?#]+):)?(/{0,2}((([^:@]*)(:([^@]*))?)@)?(([^:/?#]*)(:([^/?#]*))?))?([^?#]*)(\?([^#]*))?(#(.*))?)";
static const std::regex r(rs, std::regex::extended);
std::smatch m;
if (!std::regex_match(url, m, r) || m[10].length() == 0)
throw std::invalid_argument("Invalid WebSocket URL: " + url);
string scheme = m[2];
if (scheme.empty())
scheme = "ws";
if (scheme != "ws" && scheme != "wss")
throw std::invalid_argument("Invalid WebSocket scheme: " + scheme);
mIsSecure = (scheme != "ws");
string username = utils::url_decode(m[6]);
string password = utils::url_decode(m[8]);
if (!username.empty() || !password.empty()) {
PLOG_WARNING << "HTTP authentication support for WebSocket is not implemented";
}
string host;
string hostname = m[10];
string service = m[12];
if (service.empty()) {
service = mIsSecure ? "443" : "80";
host = hostname;
} else {
host = hostname + ':' + service;
}
if (hostname.front() == '[' && hostname.back() == ']') {
// IPv6 literal
hostname.erase(hostname.begin());
hostname.pop_back();
} else {
hostname = utils::url_decode(hostname);
}
string path = m[13];
if (path.empty())
path += '/';
if (string query = m[15]; !query.empty())
path += "?" + query;
mHostname = hostname; // for TLS SNI and Proxy
mService = service; // For proxy
std::atomic_store(&mWsHandshake, std::make_shared<WsHandshake>(host, path, config.protocols));
changeState(State::Connecting);
if (config.proxyServer) {
setTcpTransport(std::make_shared<TcpTransport>(
config.proxyServer->hostname, std::to_string(config.proxyServer->port), nullptr));
} else {
setTcpTransport(std::make_shared<TcpTransport>(hostname, service, nullptr));
}
}
void WebSocket::close() {
auto s = state.load();
if (s == State::Connecting || s == State::Open) {
PLOG_VERBOSE << "Closing WebSocket";
changeState(State::Closing);
if (auto transport = std::atomic_load(&mWsTransport))
transport->stop();
else
remoteClose();
}
}
void WebSocket::remoteClose() {
close();
if (state.load() != State::Closed)
closeTransports();
}
bool WebSocket::isOpen() const { return state == State::Open; }
bool WebSocket::isClosed() const { return state == State::Closed; }
size_t WebSocket::maxMessageSize() const {
return config.maxMessageSize.value_or(DEFAULT_WS_MAX_MESSAGE_SIZE);
}
optional<message_variant> WebSocket::receive() {
auto next = mRecvQueue.pop();
return next ? std::make_optional(to_variant(std::move(**next))) : nullopt;
}
optional<message_variant> WebSocket::peek() {
auto next = mRecvQueue.peek();
return next ? std::make_optional(to_variant(std::move(**next))) : nullopt;
}
size_t WebSocket::availableAmount() const { return mRecvQueue.amount(); }
bool WebSocket::changeState(State newState) { return state.exchange(newState) != newState; }
bool WebSocket::outgoing(message_ptr message) {
if (state != State::Open || !mWsTransport)
throw std::runtime_error("WebSocket is not open");
if (message->size() > maxMessageSize())
throw std::runtime_error("Message size exceeds limit");
return mWsTransport->send(message);
}
void WebSocket::incoming(message_ptr message) {
if (!message) {
remoteClose();
return;
}
if (message->type == Message::String || message->type == Message::Binary) {
mRecvQueue.push(message);
triggerAvailable(mRecvQueue.size());
}
}
// Helper for WebSocket::initXTransport methods: start and emplace the transport
template <typename T>
shared_ptr<T> emplaceTransport(WebSocket *ws, shared_ptr<T> *member, shared_ptr<T> transport) {
std::atomic_store(member, transport);
try {
transport->start();
} catch (...) {
std::atomic_store(member, decltype(transport)(nullptr));
transport->stop();
throw;
}
if (ws->state == WebSocket::State::Closed) {
std::atomic_store(member, decltype(transport)(nullptr));
transport->stop();
return nullptr;
}
return transport;
}
shared_ptr<TcpTransport> WebSocket::setTcpTransport(shared_ptr<TcpTransport> transport) {
PLOG_VERBOSE << "Starting TCP transport";
if (!transport)
throw std::logic_error("TCP transport is null");
using State = TcpTransport::State;
try {
if (std::atomic_load(&mTcpTransport))
throw std::logic_error("TCP transport is already set");
transport->onBufferedAmount(weak_bind(&WebSocket::triggerBufferedAmount, this, _1));
transport->onStateChange([this, weak_this = weak_from_this()](State transportState) {
auto shared_this = weak_this.lock();
if (!shared_this)
return;
switch (transportState) {
case State::Connected:
if (config.proxyServer)
initProxyTransport();
else if (mIsSecure)
initTlsTransport();
else
initWsTransport();
break;
case State::Failed:
triggerError("TCP connection failed");
remoteClose();
break;
case State::Disconnected:
if(state == WebSocket::State::Connecting)
remoteClose();
break;
default:
// Ignore
break;
}
});
// WS transport sends a ping on read timeout
auto pingInterval = config.pingInterval.value_or(10000ms);
if (pingInterval > milliseconds::zero())
transport->setReadTimeout(pingInterval);
scheduleConnectionTimeout();
return emplaceTransport(this, &mTcpTransport, std::move(transport));
} catch (const std::exception &e) {
PLOG_ERROR << e.what();
remoteClose();
throw std::runtime_error("TCP transport initialization failed");
}
}
shared_ptr<HttpProxyTransport> WebSocket::initProxyTransport() {
PLOG_VERBOSE << "Starting Tcp Proxy transport";
using State = HttpProxyTransport::State;
try {
if (auto transport = std::atomic_load(&mProxyTransport))
return transport;
auto lower = std::atomic_load(&mTcpTransport);
if (!lower)
throw std::logic_error("No underlying TCP transport for Proxy transport");
auto stateChangeCallback = [this, weak_this = weak_from_this()](State transportState) {
auto shared_this = weak_this.lock();
if (!shared_this)
return;
switch (transportState) {
case State::Connected:
if (mIsSecure)
initTlsTransport();
else
initWsTransport();
break;
case State::Failed:
triggerError("Proxy connection failed");
remoteClose();
break;
case State::Disconnected:
if(state == WebSocket::State::Connecting)
remoteClose();
break;
default:
// Ignore
break;
}
};
auto transport = std::make_shared<HttpProxyTransport>(
lower, mHostname.value(), mService.value(), stateChangeCallback);
return emplaceTransport(this, &mProxyTransport, std::move(transport));
} catch (const std::exception &e) {
PLOG_ERROR << e.what();
remoteClose();
throw std::runtime_error("Tcp Proxy transport initialization failed");
}
}
shared_ptr<TlsTransport> WebSocket::initTlsTransport() {
PLOG_VERBOSE << "Starting TLS transport";
using State = TlsTransport::State;
try {
if (auto transport = std::atomic_load(&mTlsTransport))
return transport;
variant<shared_ptr<TcpTransport>, shared_ptr<HttpProxyTransport>> lower;
if (config.proxyServer) {
auto transport = std::atomic_load(&mProxyTransport);
if (!transport)
throw std::logic_error("No underlying proxy transport for TLS transport");
lower = transport;
} else {
auto transport = std::atomic_load(&mTcpTransport);
if (!transport)
throw std::logic_error("No underlying TCP transport for TLS transport");
lower = transport;
}
auto stateChangeCallback = [this, weak_this = weak_from_this()](State transportState) {
auto shared_this = weak_this.lock();
if (!shared_this)
return;
switch (transportState) {
case State::Connected:
initWsTransport();
break;
case State::Failed:
triggerError("TLS connection failed");
remoteClose();
break;
case State::Disconnected:
if(state == WebSocket::State::Connecting)
remoteClose();
break;
default:
// Ignore
break;
}
};
bool verify = mHostname.has_value() && !config.disableTlsVerification;
#ifdef _WIN32
if (std::exchange(verify, false)) {
PLOG_WARNING << "TLS certificate verification with root CA is not supported on Windows";
}
#endif
shared_ptr<TlsTransport> transport;
if (verify)
transport = std::make_shared<VerifiedTlsTransport>(lower, mHostname.value(),
mCertificate, stateChangeCallback,
config.caCertificatePemFile);
else
transport =
std::make_shared<TlsTransport>(lower, mHostname, mCertificate, stateChangeCallback);
return emplaceTransport(this, &mTlsTransport, std::move(transport));
} catch (const std::exception &e) {
PLOG_ERROR << e.what();
remoteClose();
throw std::runtime_error("TLS transport initialization failed");
}
}
shared_ptr<WsTransport> WebSocket::initWsTransport() {
PLOG_VERBOSE << "Starting WebSocket transport";
using State = WsTransport::State;
try {
if (auto transport = std::atomic_load(&mWsTransport))
return transport;
variant<shared_ptr<TcpTransport>, shared_ptr<HttpProxyTransport>, shared_ptr<TlsTransport>>
lower;
if (mIsSecure) {
auto transport = std::atomic_load(&mTlsTransport);
if (!transport)
throw std::logic_error("No underlying TLS transport for WebSocket transport");
lower = transport;
} else if (config.proxyServer) {
auto transport = std::atomic_load(&mProxyTransport);
if (!transport)
throw std::logic_error("No underlying proxy transport for WebSocket transport");
lower = transport;
} else {
auto transport = std::atomic_load(&mTcpTransport);
if (!transport)
throw std::logic_error("No underlying TCP transport for WebSocket transport");
lower = transport;
}
if (!atomic_load(&mWsHandshake))
atomic_store(&mWsHandshake, std::make_shared<WsHandshake>());
auto stateChangeCallback = [this, weak_this = weak_from_this()](State transportState) {
auto shared_this = weak_this.lock();
if (!shared_this)
return;
switch (transportState) {
case State::Connected:
if (state == WebSocket::State::Connecting) {
PLOG_DEBUG << "WebSocket open";
if (changeState(WebSocket::State::Open))
triggerOpen();
}
break;
case State::Failed:
triggerError("WebSocket connection failed");
remoteClose();
break;
case State::Disconnected:
remoteClose();
break;
default:
// Ignore
break;
}
};
auto transport = std::make_shared<WsTransport>(lower, mWsHandshake, config,
weak_bind(&WebSocket::incoming, this, _1),
stateChangeCallback);
return emplaceTransport(this, &mWsTransport, std::move(transport));
} catch (const std::exception &e) {
PLOG_ERROR << e.what();
remoteClose();
throw std::runtime_error("WebSocket transport initialization failed");
}
}
shared_ptr<TcpTransport> WebSocket::getTcpTransport() const {
return std::atomic_load(&mTcpTransport);
}
shared_ptr<TlsTransport> WebSocket::getTlsTransport() const {
return std::atomic_load(&mTlsTransport);
}
shared_ptr<WsTransport> WebSocket::getWsTransport() const {
return std::atomic_load(&mWsTransport);
}
shared_ptr<WsHandshake> WebSocket::getWsHandshake() const {
return std::atomic_load(&mWsHandshake);
}
void WebSocket::closeTransports() {
PLOG_VERBOSE << "Closing transports";
if (!changeState(State::Closed))
return; // already closed
// Pass the pointers to a thread, allowing to terminate a transport from its own thread
auto ws = std::atomic_exchange(&mWsTransport, decltype(mWsTransport)(nullptr));
auto tls = std::atomic_exchange(&mTlsTransport, decltype(mTlsTransport)(nullptr));
auto tcp = std::atomic_exchange(&mTcpTransport, decltype(mTcpTransport)(nullptr));
if (ws)
ws->onRecv(nullptr);
if (tcp)
tcp->onBufferedAmount(nullptr);
using array = std::array<shared_ptr<Transport>, 3>;
array transports{std::move(ws), std::move(tls), std::move(tcp)};
for (const auto &t : transports)
if (t)
t->onStateChange(nullptr);
TearDownProcessor::Instance().enqueue(
[transports = std::move(transports), token = Init::Instance().token()]() mutable {
for (const auto &t : transports) {
if (t) {
t->stop();
break;
}
}
for (auto &t : transports)
t.reset();
});
triggerClosed();
}
void WebSocket::scheduleConnectionTimeout() {
auto defaultTimeout = 30s;
auto timeout = config.connectionTimeout.value_or(milliseconds(defaultTimeout));
if (timeout > milliseconds::zero()) {
ThreadPool::Instance().schedule(timeout, [weak_this = weak_from_this()]() {
if (auto locked = weak_this.lock()) {
if (locked->state == WebSocket::State::Connecting) {
PLOG_WARNING << "WebSocket connection timed out";
locked->triggerError("Connection timed out");
locked->remoteClose();
}
}
});
}
}
} // namespace rtc::impl
#endif