blob: c94df40bfb97d52d2495146a03ef700e03723dbd [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
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 09:11:00 -080011#include "rtc_base/openssl_identity.h"
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000012
jbauch555604a2016-04-26 03:13:22 -070013#include <memory>
Benjamin Wrightd6f86e82018-05-08 13:12:25 -070014#include <utility>
15#include <vector>
jbauch555604a2016-04-26 03:13:22 -070016
Mirko Bonadeie0623852018-02-01 11:17:40 +010017#if defined(WEBRTC_WIN)
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000018// Must be included first before openssl headers.
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020019#include "rtc_base/win32.h" // NOLINT
Yves Gerey665174f2018-06-19 15:03:05 +020020#endif // WEBRTC_WIN
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000021
22#include <openssl/bio.h>
Sam Zackrisson7e6290d2020-12-10 07:55:28 +000023#include <openssl/bn.h>
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000024#include <openssl/err.h>
25#include <openssl/pem.h>
Sam Zackrisson7e6290d2020-12-10 07:55:28 +000026#include <openssl/rsa.h>
Yves Gerey988cc082018-10-23 12:03:01 +020027#include <stdint.h>
28
Karl Wiberg918f50c2018-07-05 11:40:33 +020029#include "absl/memory/memory.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020030#include "rtc_base/checks.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020031#include "rtc_base/logging.h"
Mirko Bonadeia041f922018-05-23 10:22:36 +020032#include "rtc_base/numerics/safe_conversions.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020033#include "rtc_base/openssl.h"
Steve Anton10542f22019-01-11 09:11:00 -080034#include "rtc_base/openssl_utility.h"
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000035
36namespace rtc {
37
Sam Zackrisson7e6290d2020-12-10 07:55:28 +000038// We could have exposed a myriad of parameters for the crypto stuff,
39// but keeping it simple seems best.
40
41// Generate a key pair. Caller is responsible for freeing the returned object.
42static EVP_PKEY* MakeKey(const KeyParams& key_params) {
43 RTC_LOG(LS_INFO) << "Making key pair";
44 EVP_PKEY* pkey = EVP_PKEY_new();
45 if (key_params.type() == KT_RSA) {
46 int key_length = key_params.rsa_params().mod_size;
47 BIGNUM* exponent = BN_new();
48 RSA* rsa = RSA_new();
49 if (!pkey || !exponent || !rsa ||
50 !BN_set_word(exponent, key_params.rsa_params().pub_exp) ||
51 !RSA_generate_key_ex(rsa, key_length, exponent, nullptr) ||
52 !EVP_PKEY_assign_RSA(pkey, rsa)) {
53 EVP_PKEY_free(pkey);
54 BN_free(exponent);
55 RSA_free(rsa);
56 RTC_LOG(LS_ERROR) << "Failed to make RSA key pair";
57 return nullptr;
58 }
59 // ownership of rsa struct was assigned, don't free it.
60 BN_free(exponent);
61 } else if (key_params.type() == KT_ECDSA) {
62 if (key_params.ec_curve() == EC_NIST_P256) {
63 EC_KEY* ec_key = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
64
65 // Ensure curve name is included when EC key is serialized.
66 // Without this call, OpenSSL versions before 1.1.0 will create
67 // certificates that don't work for TLS.
68 // This is a no-op for BoringSSL and OpenSSL 1.1.0+
69 EC_KEY_set_asn1_flag(ec_key, OPENSSL_EC_NAMED_CURVE);
70
71 if (!pkey || !ec_key || !EC_KEY_generate_key(ec_key) ||
72 !EVP_PKEY_assign_EC_KEY(pkey, ec_key)) {
73 EVP_PKEY_free(pkey);
74 EC_KEY_free(ec_key);
75 RTC_LOG(LS_ERROR) << "Failed to make EC key pair";
76 return nullptr;
77 }
78 // ownership of ec_key struct was assigned, don't free it.
79 } else {
80 // Add generation of any other curves here.
81 EVP_PKEY_free(pkey);
82 RTC_LOG(LS_ERROR) << "ECDSA key requested for unknown curve";
83 return nullptr;
84 }
85 } else {
86 EVP_PKEY_free(pkey);
87 RTC_LOG(LS_ERROR) << "Key type requested not understood";
88 return nullptr;
89 }
90
91 RTC_LOG(LS_INFO) << "Returning key pair";
92 return pkey;
93}
94
95OpenSSLKeyPair* OpenSSLKeyPair::Generate(const KeyParams& key_params) {
96 EVP_PKEY* pkey = MakeKey(key_params);
97 if (!pkey) {
98 openssl::LogSSLErrors("Generating key pair");
99 return nullptr;
100 }
101 return new OpenSSLKeyPair(pkey);
102}
103
104OpenSSLKeyPair* OpenSSLKeyPair::FromPrivateKeyPEMString(
105 const std::string& pem_string) {
106 BIO* bio = BIO_new_mem_buf(const_cast<char*>(pem_string.c_str()), -1);
107 if (!bio) {
108 RTC_LOG(LS_ERROR) << "Failed to create a new BIO buffer.";
109 return nullptr;
110 }
111 BIO_set_mem_eof_return(bio, 0);
112 EVP_PKEY* pkey =
113 PEM_read_bio_PrivateKey(bio, nullptr, nullptr, const_cast<char*>("\0"));
114 BIO_free(bio); // Frees the BIO, but not the pointed-to string.
115 if (!pkey) {
116 RTC_LOG(LS_ERROR) << "Failed to create the private key from PEM string.";
117 return nullptr;
118 }
119 if (EVP_PKEY_missing_parameters(pkey) != 0) {
120 RTC_LOG(LS_ERROR)
121 << "The resulting key pair is missing public key parameters.";
122 EVP_PKEY_free(pkey);
123 return nullptr;
124 }
125 return new OpenSSLKeyPair(pkey);
126}
127
128OpenSSLKeyPair::~OpenSSLKeyPair() {
129 EVP_PKEY_free(pkey_);
130}
131
132OpenSSLKeyPair* OpenSSLKeyPair::GetReference() {
133 AddReference();
134 return new OpenSSLKeyPair(pkey_);
135}
136
137void OpenSSLKeyPair::AddReference() {
138 EVP_PKEY_up_ref(pkey_);
139}
140
141std::string OpenSSLKeyPair::PrivateKeyToPEMString() const {
142 BIO* temp_memory_bio = BIO_new(BIO_s_mem());
143 if (!temp_memory_bio) {
144 RTC_LOG_F(LS_ERROR) << "Failed to allocate temporary memory bio";
145 RTC_NOTREACHED();
146 return "";
147 }
148 if (!PEM_write_bio_PrivateKey(temp_memory_bio, pkey_, nullptr, nullptr, 0,
149 nullptr, nullptr)) {
150 RTC_LOG_F(LS_ERROR) << "Failed to write private key";
151 BIO_free(temp_memory_bio);
152 RTC_NOTREACHED();
153 return "";
154 }
155 BIO_write(temp_memory_bio, "\0", 1);
156 char* buffer;
157 BIO_get_mem_data(temp_memory_bio, &buffer);
158 std::string priv_key_str = buffer;
159 BIO_free(temp_memory_bio);
160 return priv_key_str;
161}
162
163std::string OpenSSLKeyPair::PublicKeyToPEMString() const {
164 BIO* temp_memory_bio = BIO_new(BIO_s_mem());
165 if (!temp_memory_bio) {
166 RTC_LOG_F(LS_ERROR) << "Failed to allocate temporary memory bio";
167 RTC_NOTREACHED();
168 return "";
169 }
170 if (!PEM_write_bio_PUBKEY(temp_memory_bio, pkey_)) {
171 RTC_LOG_F(LS_ERROR) << "Failed to write public key";
172 BIO_free(temp_memory_bio);
173 RTC_NOTREACHED();
174 return "";
175 }
176 BIO_write(temp_memory_bio, "\0", 1);
177 char* buffer;
178 BIO_get_mem_data(temp_memory_bio, &buffer);
179 std::string pub_key_str = buffer;
180 BIO_free(temp_memory_bio);
181 return pub_key_str;
182}
183
184bool OpenSSLKeyPair::operator==(const OpenSSLKeyPair& other) const {
185 return EVP_PKEY_cmp(this->pkey_, other.pkey_) == 1;
186}
187
188bool OpenSSLKeyPair::operator!=(const OpenSSLKeyPair& other) const {
189 return !(*this == other);
190}
191
Jian Cui0a8798b2017-11-16 16:58:02 -0800192OpenSSLIdentity::OpenSSLIdentity(
193 std::unique_ptr<OpenSSLKeyPair> key_pair,
194 std::unique_ptr<OpenSSLCertificate> certificate)
195 : key_pair_(std::move(key_pair)) {
196 RTC_DCHECK(key_pair_ != nullptr);
deadbeef37f5ecf2017-02-27 14:06:41 -0800197 RTC_DCHECK(certificate != nullptr);
Jian Cui0a8798b2017-11-16 16:58:02 -0800198 std::vector<std::unique_ptr<SSLCertificate>> certs;
199 certs.push_back(std::move(certificate));
200 cert_chain_.reset(new SSLCertChain(std::move(certs)));
201}
202
203OpenSSLIdentity::OpenSSLIdentity(std::unique_ptr<OpenSSLKeyPair> key_pair,
204 std::unique_ptr<SSLCertChain> cert_chain)
205 : key_pair_(std::move(key_pair)), cert_chain_(std::move(cert_chain)) {
206 RTC_DCHECK(key_pair_ != nullptr);
207 RTC_DCHECK(cert_chain_ != nullptr);
kwiberg@webrtc.org67186fe2015-03-09 22:21:53 +0000208}
209
210OpenSSLIdentity::~OpenSSLIdentity() = default;
211
Harald Alvestrand8515d5a2020-03-20 22:51:32 +0100212std::unique_ptr<OpenSSLIdentity> OpenSSLIdentity::CreateInternal(
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000213 const SSLIdentityParams& params) {
Sam Zackrisson7e6290d2020-12-10 07:55:28 +0000214 std::unique_ptr<OpenSSLKeyPair> key_pair(
215 OpenSSLKeyPair::Generate(params.key_params));
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000216 if (key_pair) {
Jian Cui0a8798b2017-11-16 16:58:02 -0800217 std::unique_ptr<OpenSSLCertificate> certificate(
218 OpenSSLCertificate::Generate(key_pair.get(), params));
Harald Alvestrand8515d5a2020-03-20 22:51:32 +0100219 if (certificate != nullptr) {
220 return absl::WrapUnique(
221 new OpenSSLIdentity(std::move(key_pair), std::move(certificate)));
222 }
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000223 }
Sam Zackrisson7e6290d2020-12-10 07:55:28 +0000224 RTC_LOG(LS_INFO) << "Identity generation failed";
deadbeef37f5ecf2017-02-27 14:06:41 -0800225 return nullptr;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000226}
227
Harald Alvestrand8515d5a2020-03-20 22:51:32 +0100228// static
229std::unique_ptr<OpenSSLIdentity> OpenSSLIdentity::CreateWithExpiration(
Torbjorn Granlund1d846b22016-03-31 16:21:04 +0200230 const std::string& common_name,
231 const KeyParams& key_params,
232 time_t certificate_lifetime) {
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000233 SSLIdentityParams params;
torbjorng4e572472015-10-08 09:42:49 -0700234 params.key_params = key_params;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000235 params.common_name = common_name;
deadbeef37f5ecf2017-02-27 14:06:41 -0800236 time_t now = time(nullptr);
Torbjorn Granlund1d846b22016-03-31 16:21:04 +0200237 params.not_before = now + kCertificateWindowInSeconds;
torbjornge8dc0812016-02-15 09:35:54 -0800238 params.not_after = now + certificate_lifetime;
Torbjorn Granlund1d846b22016-03-31 16:21:04 +0200239 if (params.not_before > params.not_after)
240 return nullptr;
Harald Alvestrand8515d5a2020-03-20 22:51:32 +0100241 return CreateInternal(params);
242}
243
Harald Alvestrand8515d5a2020-03-20 22:51:32 +0100244std::unique_ptr<OpenSSLIdentity> OpenSSLIdentity::CreateForTest(
245 const SSLIdentityParams& params) {
246 return CreateInternal(params);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000247}
248
Harald Alvestrand8515d5a2020-03-20 22:51:32 +0100249std::unique_ptr<SSLIdentity> OpenSSLIdentity::CreateFromPEMStrings(
250 const std::string& private_key,
251 const std::string& certificate) {
jbauch555604a2016-04-26 03:13:22 -0700252 std::unique_ptr<OpenSSLCertificate> cert(
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000253 OpenSSLCertificate::FromPEMString(certificate));
254 if (!cert) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100255 RTC_LOG(LS_ERROR) << "Failed to create OpenSSLCertificate from PEM string.";
hbos6b470a92016-04-28 05:14:21 -0700256 return nullptr;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000257 }
258
Sam Zackrisson7e6290d2020-12-10 07:55:28 +0000259 std::unique_ptr<OpenSSLKeyPair> key_pair(
260 OpenSSLKeyPair::FromPrivateKeyPEMString(private_key));
hbos6b470a92016-04-28 05:14:21 -0700261 if (!key_pair) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100262 RTC_LOG(LS_ERROR) << "Failed to create key pair from PEM string.";
hbos6b470a92016-04-28 05:14:21 -0700263 return nullptr;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000264 }
265
Harald Alvestrand8515d5a2020-03-20 22:51:32 +0100266 return absl::WrapUnique(
267 new OpenSSLIdentity(std::move(key_pair), std::move(cert)));
Jian Cui0a8798b2017-11-16 16:58:02 -0800268}
269
Harald Alvestrand8515d5a2020-03-20 22:51:32 +0100270std::unique_ptr<SSLIdentity> OpenSSLIdentity::CreateFromPEMChainStrings(
Jian Cui0a8798b2017-11-16 16:58:02 -0800271 const std::string& private_key,
272 const std::string& certificate_chain) {
Yves Gerey665174f2018-06-19 15:03:05 +0200273 BIO* bio = BIO_new_mem_buf(certificate_chain.data(),
274 rtc::dchecked_cast<int>(certificate_chain.size()));
Jian Cui0a8798b2017-11-16 16:58:02 -0800275 if (!bio)
276 return nullptr;
277 BIO_set_mem_eof_return(bio, 0);
278 std::vector<std::unique_ptr<SSLCertificate>> certs;
279 while (true) {
280 X509* x509 =
281 PEM_read_bio_X509(bio, nullptr, nullptr, const_cast<char*>("\0"));
282 if (x509 == nullptr) {
283 uint32_t err = ERR_peek_error();
284 if (ERR_GET_LIB(err) == ERR_LIB_PEM &&
285 ERR_GET_REASON(err) == PEM_R_NO_START_LINE) {
286 break;
287 }
288 RTC_LOG(LS_ERROR) << "Failed to parse certificate from PEM string.";
289 BIO_free(bio);
290 return nullptr;
291 }
292 certs.emplace_back(new OpenSSLCertificate(x509));
293 X509_free(x509);
294 }
295 BIO_free(bio);
296 if (certs.empty()) {
297 RTC_LOG(LS_ERROR) << "Found no certificates in PEM string.";
298 return nullptr;
299 }
300
Sam Zackrisson7e6290d2020-12-10 07:55:28 +0000301 std::unique_ptr<OpenSSLKeyPair> key_pair(
302 OpenSSLKeyPair::FromPrivateKeyPEMString(private_key));
Jian Cui0a8798b2017-11-16 16:58:02 -0800303 if (!key_pair) {
304 RTC_LOG(LS_ERROR) << "Failed to create key pair from PEM string.";
305 return nullptr;
306 }
307
Harald Alvestrand8515d5a2020-03-20 22:51:32 +0100308 return absl::WrapUnique(new OpenSSLIdentity(
309 std::move(key_pair), std::make_unique<SSLCertChain>(std::move(certs))));
310}
311
kwiberg@webrtc.org67186fe2015-03-09 22:21:53 +0000312const OpenSSLCertificate& OpenSSLIdentity::certificate() const {
Jian Cui0a8798b2017-11-16 16:58:02 -0800313 return *static_cast<const OpenSSLCertificate*>(&cert_chain_->Get(0));
kwiberg@webrtc.org67186fe2015-03-09 22:21:53 +0000314}
315
Taylor Brandstetterc3928662018-02-23 13:04:51 -0800316const SSLCertChain& OpenSSLIdentity::cert_chain() const {
317 return *cert_chain_.get();
318}
319
Harald Alvestrand8515d5a2020-03-20 22:51:32 +0100320std::unique_ptr<SSLIdentity> OpenSSLIdentity::CloneInternal() const {
321 // We cannot use std::make_unique here because the referenced OpenSSLIdentity
322 // constructor is private.
Sam Zackrisson7e6290d2020-12-10 07:55:28 +0000323 return absl::WrapUnique(new OpenSSLIdentity(
324 absl::WrapUnique(key_pair_->GetReference()), cert_chain_->Clone()));
kwiberg@webrtc.org67186fe2015-03-09 22:21:53 +0000325}
326
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000327bool OpenSSLIdentity::ConfigureIdentity(SSL_CTX* ctx) {
328 // 1 is the documented success return code.
Jian Cui0a8798b2017-11-16 16:58:02 -0800329 const OpenSSLCertificate* cert = &certificate();
330 if (SSL_CTX_use_certificate(ctx, cert->x509()) != 1 ||
331 SSL_CTX_use_PrivateKey(ctx, key_pair_->pkey()) != 1) {
Benjamin Wrightd6f86e82018-05-08 13:12:25 -0700332 openssl::LogSSLErrors("Configuring key and certificate");
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000333 return false;
334 }
Jian Cui0a8798b2017-11-16 16:58:02 -0800335 // If a chain is available, use it.
336 for (size_t i = 1; i < cert_chain_->GetSize(); ++i) {
337 cert = static_cast<const OpenSSLCertificate*>(&cert_chain_->Get(i));
338 if (SSL_CTX_add1_chain_cert(ctx, cert->x509()) != 1) {
Benjamin Wrightd6f86e82018-05-08 13:12:25 -0700339 openssl::LogSSLErrors("Configuring intermediate certificate");
Jian Cui0a8798b2017-11-16 16:58:02 -0800340 return false;
341 }
342 }
343
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000344 return true;
345}
346
hbos6b470a92016-04-28 05:14:21 -0700347std::string OpenSSLIdentity::PrivateKeyToPEMString() const {
348 return key_pair_->PrivateKeyToPEMString();
349}
350
351std::string OpenSSLIdentity::PublicKeyToPEMString() const {
352 return key_pair_->PublicKeyToPEMString();
353}
354
355bool OpenSSLIdentity::operator==(const OpenSSLIdentity& other) const {
356 return *this->key_pair_ == *other.key_pair_ &&
Jian Cui0a8798b2017-11-16 16:58:02 -0800357 this->certificate() == other.certificate();
hbos6b470a92016-04-28 05:14:21 -0700358}
359
360bool OpenSSLIdentity::operator!=(const OpenSSLIdentity& other) const {
361 return !(*this == other);
362}
363
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000364} // namespace rtc