-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathtlstransport.hpp
102 lines (74 loc) · 2.43 KB
/
tlstransport.hpp
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
/**
* Copyright (c) 2020 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/.
*/
#ifndef RTC_IMPL_TLS_TRANSPORT_H
#define RTC_IMPL_TLS_TRANSPORT_H
#include "certificate.hpp"
#include "common.hpp"
#include "queue.hpp"
#include "tls.hpp"
#include "transport.hpp"
#if RTC_ENABLE_WEBSOCKET
#include <atomic>
#include <thread>
namespace rtc::impl {
class TcpTransport;
class HttpProxyTransport;
class TlsTransport : public Transport, public std::enable_shared_from_this<TlsTransport> {
public:
static void Init();
static void Cleanup();
TlsTransport(variant<shared_ptr<TcpTransport>, shared_ptr<HttpProxyTransport>> lower,
optional<string> host, certificate_ptr certificate, state_callback callback);
virtual ~TlsTransport();
void start() override;
void stop() override;
bool send(message_ptr message) override;
bool isClient() const { return mIsClient; }
protected:
virtual void incoming(message_ptr message) override;
virtual bool outgoing(message_ptr message) override;
virtual void postHandshake();
void enqueueRecv();
void doRecv();
const optional<string> mHost;
const bool mIsClient;
Queue<message_ptr> mIncomingQueue;
std::atomic<int> mPendingRecvCount = 0;
std::mutex mRecvMutex;
#if USE_GNUTLS
gnutls_session_t mSession;
message_ptr mIncomingMessage;
size_t mIncomingMessagePosition = 0;
std::atomic<bool> mOutgoingResult = true;
static ssize_t WriteCallback(gnutls_transport_ptr_t ptr, const void *data, size_t len);
static ssize_t ReadCallback(gnutls_transport_ptr_t ptr, void *data, size_t maxlen);
static int TimeoutCallback(gnutls_transport_ptr_t ptr, unsigned int ms);
#elif USE_MBEDTLS
mbedtls_entropy_context mEntropy;
mbedtls_ctr_drbg_context mDrbg;
mbedtls_ssl_config mConf;
mbedtls_ssl_context mSsl;
std::mutex mSslMutex;
std::atomic<bool> mOutgoingResult = true;
message_ptr mIncomingMessage;
size_t mIncomingMessagePosition = 0;
static int WriteCallback(void *ctx, const unsigned char *buf, size_t len);
static int ReadCallback(void *ctx, unsigned char *buf, size_t len);
#else
SSL_CTX *mCtx;
SSL *mSsl;
BIO *mInBio, *mOutBio;
std::mutex mSslMutex;
bool flushOutput();
static int TransportExIndex;
static void InfoCallback(const SSL *ssl, int where, int ret);
#endif
};
} // namespace rtc::impl
#endif
#endif