blob: 4c05471b2bf8815aa661c676ea5e752cb204ce04 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:261/*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 17:11:0011#ifndef RTC_BASE_OPENSSL_ADAPTER_H_
12#define RTC_BASE_OPENSSL_ADAPTER_H_
henrike@webrtc.orgf0488722014-05-13 18:00:2613
Taylor Brandstetter165c6182020-12-11 00:23:0314#include <openssl/ossl_typ.h>
Yves Gerey988cc082018-10-23 10:03:0115#include <stddef.h>
16#include <stdint.h>
Jonas Olssona4d87372019-07-05 17:08:3317
Benjamin Wright19aab2e2018-04-05 22:39:0618#include <memory>
Henrik Kjellanderec78f1c2017-06-29 05:52:5019#include <string>
Benjamin Wright19aab2e2018-04-05 22:39:0620#include <vector>
21
Ali Tofigh7fa90572022-03-17 14:47:4922#include "absl/strings/string_view.h"
Danil Chapovalove7280c32022-08-18 10:01:3023#include "api/task_queue/pending_task_safety_flag.h"
Yves Gerey988cc082018-10-23 10:03:0124#include "rtc_base/buffer.h"
Taylor Brandstetter165c6182020-12-11 00:23:0325#ifdef OPENSSL_IS_BORINGSSL
26#include "rtc_base/boringssl_identity.h"
27#else
Steve Anton10542f22019-01-11 17:11:0028#include "rtc_base/openssl_identity.h"
Taylor Brandstetter165c6182020-12-11 00:23:0329#endif
Steve Anton10542f22019-01-11 17:11:0030#include "rtc_base/openssl_session_cache.h"
Yves Gerey988cc082018-10-23 10:03:0131#include "rtc_base/socket.h"
Steve Anton10542f22019-01-11 17:11:0032#include "rtc_base/socket_address.h"
33#include "rtc_base/ssl_adapter.h"
34#include "rtc_base/ssl_certificate.h"
35#include "rtc_base/ssl_identity.h"
36#include "rtc_base/ssl_stream_adapter.h"
henrike@webrtc.orgf0488722014-05-13 18:00:2637
Henrik Kjellanderec78f1c2017-06-29 05:52:5038namespace rtc {
39
Danil Chapovalove7280c32022-08-18 10:01:3040class OpenSSLAdapter final : public SSLAdapter {
Justin Uberti1d445502017-08-15 00:04:3441 public:
Benjamin Wrightd6f86e82018-05-08 20:12:2542 static bool InitializeSSL();
Henrik Kjellanderec78f1c2017-06-29 05:52:5043 static bool CleanupSSL();
44
Benjamin Wrightd6f86e82018-05-08 20:12:2545 // Creating an OpenSSLAdapter requires a socket to bind to, an optional
46 // session cache if you wish to improve performance by caching sessions for
47 // hostnames you have previously connected to and an optional
48 // SSLCertificateVerifier which can override any existing trusted roots to
49 // validate a peer certificate. The cache and verifier are effectively
50 // immutable after the the SSL connection starts.
Niels Möllerd0b88792021-08-12 08:32:3051 explicit OpenSSLAdapter(Socket* socket,
Benjamin Wrightd6f86e82018-05-08 20:12:2552 OpenSSLSessionCache* ssl_session_cache = nullptr,
53 SSLCertificateVerifier* ssl_cert_verifier = nullptr);
Henrik Kjellanderec78f1c2017-06-29 05:52:5054 ~OpenSSLAdapter() override;
55
Sergey Silkin9c147dd2018-09-12 10:45:3856 void SetIgnoreBadCert(bool ignore) override;
57 void SetAlpnProtocols(const std::vector<std::string>& protos) override;
58 void SetEllipticCurves(const std::vector<std::string>& curves) override;
Henrik Kjellanderec78f1c2017-06-29 05:52:5059 void SetMode(SSLMode mode) override;
Benjamin Wrightd6f86e82018-05-08 20:12:2560 void SetCertVerifier(SSLCertificateVerifier* ssl_cert_verifier) override;
Harald Alvestrand8515d5a2020-03-20 21:51:3261 void SetIdentity(std::unique_ptr<SSLIdentity> identity) override;
Steve Anton786de702017-08-17 22:15:4662 void SetRole(SSLRole role) override;
Ali Tofigh2ab914c2022-04-13 10:55:1563 int StartSSL(absl::string_view hostname) override;
Henrik Kjellanderec78f1c2017-06-29 05:52:5064 int Send(const void* pv, size_t cb) override;
65 int SendTo(const void* pv, size_t cb, const SocketAddress& addr) override;
66 int Recv(void* pv, size_t cb, int64_t* timestamp) override;
67 int RecvFrom(void* pv,
68 size_t cb,
69 SocketAddress* paddr,
70 int64_t* timestamp) override;
71 int Close() override;
Henrik Kjellanderec78f1c2017-06-29 05:52:5072 // Note that the socket returns ST_CONNECTING while SSL is being negotiated.
73 ConnState GetState() const override;
Justin Uberti1d445502017-08-15 00:04:3474 bool IsResumedSession() override;
Justin Uberti1d445502017-08-15 00:04:3475 // Creates a new SSL_CTX object, configured for client-to-server usage
Artem Titov96e3b992021-07-26 14:03:1476 // with SSLMode `mode`, and if `enable_cache` is true, with support for
Justin Uberti1d445502017-08-15 00:04:3477 // storing successful sessions so that they can be later resumed.
78 // OpenSSLAdapterFactory will call this method to create its own internal
79 // SSL_CTX, and OpenSSLAdapter will also call this when used without a
80 // factory.
81 static SSL_CTX* CreateContext(SSLMode mode, bool enable_cache);
Henrik Kjellanderec78f1c2017-06-29 05:52:5082
Justin Uberti1d445502017-08-15 00:04:3483 protected:
Niels Möllerd0b88792021-08-12 08:32:3084 void OnConnectEvent(Socket* socket) override;
85 void OnReadEvent(Socket* socket) override;
86 void OnWriteEvent(Socket* socket) override;
87 void OnCloseEvent(Socket* socket, int err) override;
Justin Uberti1d445502017-08-15 00:04:3488
89 private:
Vojin Ilicf11f0e02021-06-30 12:22:1190 class EarlyExitCatcher {
91 public:
92 EarlyExitCatcher(OpenSSLAdapter& adapter_ptr);
93 void disable();
94 ~EarlyExitCatcher();
95
96 private:
97 bool disabled_ = false;
98 OpenSSLAdapter& adapter_ptr_;
99 };
Henrik Kjellanderec78f1c2017-06-29 05:52:50100 enum SSLState {
Yves Gerey665174f2018-06-19 13:03:05101 SSL_NONE,
102 SSL_WAIT,
103 SSL_CONNECTING,
104 SSL_CONNECTED,
105 SSL_ERROR
Henrik Kjellanderec78f1c2017-06-29 05:52:50106 };
107
Henrik Kjellanderec78f1c2017-06-29 05:52:50108 int BeginSSL();
109 int ContinueSSL();
Ali Tofigh2ab914c2022-04-13 10:55:15110 void Error(absl::string_view context, int err, bool signal = true);
Henrik Kjellanderec78f1c2017-06-29 05:52:50111 void Cleanup();
Danil Chapovalove7280c32022-08-18 10:01:30112 void OnTimeout();
Henrik Kjellanderec78f1c2017-06-29 05:52:50113
Artem Titov96e3b992021-07-26 14:03:14114 // Return value and arguments have the same meanings as for Send; `error` is
Henrik Kjellanderec78f1c2017-06-29 05:52:50115 // an output parameter filled with the result of SSL_get_error.
116 int DoSslWrite(const void* pv, size_t cb, int* error);
Ali Tofigh7fa90572022-03-17 14:47:49117 bool SSLPostConnectionCheck(SSL* ssl, absl::string_view host);
Benjamin Wright9201d1a2018-04-05 19:12:26118
Per Kd1771e92023-04-24 10:44:27119 // Logs info about the state of the SSL connection.
Justin Uberti1d445502017-08-15 00:04:34120 static void SSLInfoCallback(const SSL* ssl, int where, int ret);
Taylor Brandstetter165c6182020-12-11 00:23:03121
122#if defined(OPENSSL_IS_BORINGSSL) && \
123 defined(WEBRTC_EXCLUDE_BUILT_IN_SSL_ROOT_CERTS)
124 static enum ssl_verify_result_t SSLVerifyCallback(SSL* ssl,
125 uint8_t* out_alert);
126 enum ssl_verify_result_t SSLVerifyInternal(SSL* ssl, uint8_t* out_alert);
127#else
Henrik Kjellanderec78f1c2017-06-29 05:52:50128 static int SSLVerifyCallback(int ok, X509_STORE_CTX* store);
Harald Alvestrandb32650e2021-09-10 08:03:22129 // Call a custom verifier, if installed.
130 // Returns 1 on success, `status_on_error` on error or verification failure.
131 int SSLVerifyInternal(int status_on_error, SSL* ssl, X509_STORE_CTX* store);
Taylor Brandstetter165c6182020-12-11 00:23:03132#endif
Henrik Kjellanderec78f1c2017-06-29 05:52:50133 friend class OpenSSLStreamAdapter; // for custom_verify_callback_;
134
Artem Titov96e3b992021-07-26 14:03:14135 // If the SSL_CTX was created with `enable_cache` set to true, this callback
Justin Uberti1d445502017-08-15 00:04:34136 // will be called when a SSL session has been successfully established,
137 // to allow its SSL_SESSION* to be cached for later resumption.
138 static int NewSSLSessionCallback(SSL* ssl, SSL_SESSION* session);
139
Benjamin Wrightd6f86e82018-05-08 20:12:25140 // Optional SSL Shared session cache to improve performance.
Benjamin Wright19aab2e2018-04-05 22:39:06141 OpenSSLSessionCache* ssl_session_cache_ = nullptr;
Benjamin Wrightd6f86e82018-05-08 20:12:25142 // Optional SSL Certificate verifier which can be set by a third party.
143 SSLCertificateVerifier* ssl_cert_verifier_ = nullptr;
144 // The current connection state of the (d)TLS connection.
Henrik Kjellanderec78f1c2017-06-29 05:52:50145 SSLState state_;
Taylor Brandstetter165c6182020-12-11 00:23:03146
147#ifdef OPENSSL_IS_BORINGSSL
148 std::unique_ptr<BoringSSLIdentity> identity_;
149#else
Steve Anton786de702017-08-17 22:15:46150 std::unique_ptr<OpenSSLIdentity> identity_;
Taylor Brandstetter165c6182020-12-11 00:23:03151#endif
Benjamin Wrightd6f86e82018-05-08 20:12:25152 // Indicates whethere this is a client or a server.
Steve Anton786de702017-08-17 22:15:46153 SSLRole role_;
Henrik Kjellanderec78f1c2017-06-29 05:52:50154 bool ssl_read_needs_write_;
155 bool ssl_write_needs_read_;
Henrik Kjellanderec78f1c2017-06-29 05:52:50156 // This buffer is used if SSL_write fails with SSL_ERROR_WANT_WRITE, which
157 // means we need to keep retrying with *the same exact data* until it
158 // succeeds. Afterwards it will be cleared.
159 Buffer pending_data_;
Henrik Kjellanderec78f1c2017-06-29 05:52:50160 SSL* ssl_;
Benjamin Wrightd6f86e82018-05-08 20:12:25161 // Holds the SSL context, which may be shared if an session cache is provided.
Henrik Kjellanderec78f1c2017-06-29 05:52:50162 SSL_CTX* ssl_ctx_;
Benjamin Wrightd6f86e82018-05-08 20:12:25163 // Hostname of server that is being connected, used for SNI.
Henrik Kjellanderec78f1c2017-06-29 05:52:50164 std::string ssl_host_name_;
Benjamin Wrightd6f86e82018-05-08 20:12:25165 // Set the adapter to DTLS or TLS mode before creating the context.
Henrik Kjellanderec78f1c2017-06-29 05:52:50166 SSLMode ssl_mode_;
Sergey Silkin9c147dd2018-09-12 10:45:38167 // If true, the server certificate need not match the configured hostname.
168 bool ignore_bad_cert_;
169 // List of protocols to be used in the TLS ALPN extension.
170 std::vector<std::string> alpn_protocols_;
171 // List of elliptic curves to be used in the TLS elliptic curves extension.
172 std::vector<std::string> elliptic_curves_;
Benjamin Wrightd6f86e82018-05-08 20:12:25173 // Holds the result of the call to run of the ssl_cert_verify_->Verify()
174 bool custom_cert_verifier_status_;
Danil Chapovalove7280c32022-08-18 10:01:30175 // Flag to cancel pending timeout task.
176 webrtc::ScopedTaskSafety timer_;
Henrik Kjellanderec78f1c2017-06-29 05:52:50177};
178
Benjamin Wright19aab2e2018-04-05 22:39:06179// The OpenSSLAdapterFactory is responsbile for creating multiple new
180// OpenSSLAdapters with a shared SSL_CTX and a shared SSL_SESSION cache. The
181// SSL_SESSION cache allows existing SSL_SESSIONS to be reused instead of
182// recreating them leading to a significant performance improvement.
Justin Uberti1d445502017-08-15 00:04:34183class OpenSSLAdapterFactory : public SSLAdapterFactory {
184 public:
185 OpenSSLAdapterFactory();
186 ~OpenSSLAdapterFactory() override;
Benjamin Wright19aab2e2018-04-05 22:39:06187 // Set the SSL Mode to use with this factory. This should only be set before
188 // the first adapter is created with the factory. If it is called after it
189 // will DCHECK.
Justin Uberti1d445502017-08-15 00:04:34190 void SetMode(SSLMode mode) override;
Niels Möllerac9a2882021-10-20 13:25:09191
Benjamin Wrightd6f86e82018-05-08 20:12:25192 // Set a custom certificate verifier to be passed down to each instance
193 // created with this factory. This should only ever be set before the first
194 // call to the factory and cannot be changed after the fact.
195 void SetCertVerifier(SSLCertificateVerifier* ssl_cert_verifier) override;
Niels Möllerac9a2882021-10-20 13:25:09196
197 void SetIdentity(std::unique_ptr<SSLIdentity> identity) override;
198
199 // Choose whether the socket acts as a server socket or client socket.
200 void SetRole(SSLRole role) override;
201
202 // Methods that control server certificate verification, used in unit tests.
203 // Do not call these methods in production code.
204 void SetIgnoreBadCert(bool ignore) override;
205
Benjamin Wright19aab2e2018-04-05 22:39:06206 // Constructs a new socket using the shared OpenSSLSessionCache. This means
207 // existing SSLSessions already in the cache will be reused instead of
208 // re-created for improved performance.
Niels Möllerd0b88792021-08-12 08:32:30209 OpenSSLAdapter* CreateAdapter(Socket* socket) override;
Henrik Kjellanderc0362762017-06-29 06:03:04210
Justin Uberti1d445502017-08-15 00:04:34211 private:
Benjamin Wright19aab2e2018-04-05 22:39:06212 // Holds the SSLMode (DTLS,TLS) that will be used to set the session cache.
213 SSLMode ssl_mode_ = SSL_MODE_TLS;
Niels Möllerac9a2882021-10-20 13:25:09214 SSLRole ssl_role_ = SSL_CLIENT;
215 bool ignore_bad_cert_ = false;
216
217 std::unique_ptr<SSLIdentity> identity_;
218
Benjamin Wright19aab2e2018-04-05 22:39:06219 // Holds a cache of existing SSL Sessions.
220 std::unique_ptr<OpenSSLSessionCache> ssl_session_cache_;
Benjamin Wrightd6f86e82018-05-08 20:12:25221 // Provides an optional custom callback for verifying SSL certificates, this
222 // in currently only used for TLS-TURN connections.
223 SSLCertificateVerifier* ssl_cert_verifier_ = nullptr;
Benjamin Wright19aab2e2018-04-05 22:39:06224 // TODO(benwright): Remove this when context is moved to OpenSSLCommon.
225 // Hold a friend class to the OpenSSLAdapter to retrieve the context.
Justin Uberti1d445502017-08-15 00:04:34226 friend class OpenSSLAdapter;
Justin Uberti1d445502017-08-15 00:04:34227};
228
Vojin Ilicf11f0e02021-06-30 12:22:11229// The EarlyExitCatcher is responsible for calling OpenSSLAdapter::Cleanup on
230// destruction. By doing this we have scoped cleanup which can be disabled if
231// there were no errors, aka early exits.
232
Benjamin Wrightd6f86e82018-05-08 20:12:25233std::string TransformAlpnProtocols(const std::vector<std::string>& protos);
234
Justin Uberti1d445502017-08-15 00:04:34235} // namespace rtc
236
Steve Anton10542f22019-01-11 17:11:00237#endif // RTC_BASE_OPENSSL_ADAPTER_H_