blob: 81357a8c7966a6b6d67b175c218d1c49ca372b00 [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>
Jian Cui0a8798b2017-11-16 16:58:02 -080023#include <openssl/bn.h>
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000024#include <openssl/err.h>
25#include <openssl/pem.h>
henrike@webrtc.orgf0488722014-05-13 18:00:26 +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
38// We could have exposed a myriad of parameters for the crypto stuff,
39// but keeping it simple seems best.
40
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000041// Generate a key pair. Caller is responsible for freeing the returned object.
torbjorng4e572472015-10-08 09:42:49 -070042static EVP_PKEY* MakeKey(const KeyParams& key_params) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010043 RTC_LOG(LS_INFO) << "Making key pair";
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000044 EVP_PKEY* pkey = EVP_PKEY_new();
torbjorng4e572472015-10-08 09:42:49 -070045 if (key_params.type() == KT_RSA) {
46 int key_length = key_params.rsa_params().mod_size;
Torbjorn Granlundb6d4ec42015-08-17 14:08:59 +020047 BIGNUM* exponent = BN_new();
48 RSA* rsa = RSA_new();
49 if (!pkey || !exponent || !rsa ||
torbjorng4e572472015-10-08 09:42:49 -070050 !BN_set_word(exponent, key_params.rsa_params().pub_exp) ||
deadbeef37f5ecf2017-02-27 14:06:41 -080051 !RSA_generate_key_ex(rsa, key_length, exponent, nullptr) ||
Torbjorn Granlundb6d4ec42015-08-17 14:08:59 +020052 !EVP_PKEY_assign_RSA(pkey, rsa)) {
53 EVP_PKEY_free(pkey);
54 BN_free(exponent);
55 RSA_free(rsa);
Mirko Bonadei675513b2017-11-09 11:09:25 +010056 RTC_LOG(LS_ERROR) << "Failed to make RSA key pair";
deadbeef37f5ecf2017-02-27 14:06:41 -080057 return nullptr;
Torbjorn Granlundb6d4ec42015-08-17 14:08:59 +020058 }
59 // ownership of rsa struct was assigned, don't free it.
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000060 BN_free(exponent);
torbjorng4e572472015-10-08 09:42:49 -070061 } 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);
ssarohabbfed522016-12-11 18:42:07 -080064
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
torbjorng4e572472015-10-08 09:42:49 -070071 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);
Mirko Bonadei675513b2017-11-09 11:09:25 +010075 RTC_LOG(LS_ERROR) << "Failed to make EC key pair";
deadbeef37f5ecf2017-02-27 14:06:41 -080076 return nullptr;
torbjorng4e572472015-10-08 09:42:49 -070077 }
78 // ownership of ec_key struct was assigned, don't free it.
79 } else {
80 // Add generation of any other curves here.
Torbjorn Granlundb6d4ec42015-08-17 14:08:59 +020081 EVP_PKEY_free(pkey);
Mirko Bonadei675513b2017-11-09 11:09:25 +010082 RTC_LOG(LS_ERROR) << "ECDSA key requested for unknown curve";
deadbeef37f5ecf2017-02-27 14:06:41 -080083 return nullptr;
Torbjorn Granlundb6d4ec42015-08-17 14:08:59 +020084 }
Torbjorn Granlundb6d4ec42015-08-17 14:08:59 +020085 } else {
86 EVP_PKEY_free(pkey);
Mirko Bonadei675513b2017-11-09 11:09:25 +010087 RTC_LOG(LS_ERROR) << "Key type requested not understood";
deadbeef37f5ecf2017-02-27 14:06:41 -080088 return nullptr;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000089 }
Torbjorn Granlundb6d4ec42015-08-17 14:08:59 +020090
Mirko Bonadei675513b2017-11-09 11:09:25 +010091 RTC_LOG(LS_INFO) << "Returning key pair";
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000092 return pkey;
93}
94
torbjorng4e572472015-10-08 09:42:49 -070095OpenSSLKeyPair* OpenSSLKeyPair::Generate(const KeyParams& key_params) {
96 EVP_PKEY* pkey = MakeKey(key_params);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000097 if (!pkey) {
Benjamin Wrightd6f86e82018-05-08 13:12:25 -070098 openssl::LogSSLErrors("Generating key pair");
deadbeef37f5ecf2017-02-27 14:06:41 -080099 return nullptr;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000100 }
101 return new OpenSSLKeyPair(pkey);
102}
103
hbos6b470a92016-04-28 05:14:21 -0700104OpenSSLKeyPair* 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) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100108 RTC_LOG(LS_ERROR) << "Failed to create a new BIO buffer.";
hbos6b470a92016-04-28 05:14:21 -0700109 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) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100116 RTC_LOG(LS_ERROR) << "Failed to create the private key from PEM string.";
hbos6b470a92016-04-28 05:14:21 -0700117 return nullptr;
118 }
119 if (EVP_PKEY_missing_parameters(pkey) != 0) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100120 RTC_LOG(LS_ERROR)
121 << "The resulting key pair is missing public key parameters.";
hbos6b470a92016-04-28 05:14:21 -0700122 EVP_PKEY_free(pkey);
123 return nullptr;
124 }
125 return new OpenSSLKeyPair(pkey);
126}
127
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000128OpenSSLKeyPair::~OpenSSLKeyPair() {
129 EVP_PKEY_free(pkey_);
130}
131
kwiberg@webrtc.org67186fe2015-03-09 22:21:53 +0000132OpenSSLKeyPair* OpenSSLKeyPair::GetReference() {
133 AddReference();
134 return new OpenSSLKeyPair(pkey_);
135}
136
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000137void OpenSSLKeyPair::AddReference() {
Jiayang Liu770cc382015-05-28 15:36:29 -0700138 EVP_PKEY_up_ref(pkey_);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000139}
140
hbos6b470a92016-04-28 05:14:21 -0700141std::string OpenSSLKeyPair::PrivateKeyToPEMString() const {
142 BIO* temp_memory_bio = BIO_new(BIO_s_mem());
143 if (!temp_memory_bio) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100144 RTC_LOG_F(LS_ERROR) << "Failed to allocate temporary memory bio";
hbos6b470a92016-04-28 05:14:21 -0700145 RTC_NOTREACHED();
146 return "";
147 }
Jian Cui0a8798b2017-11-16 16:58:02 -0800148 if (!PEM_write_bio_PrivateKey(temp_memory_bio, pkey_, nullptr, nullptr, 0,
149 nullptr, nullptr)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100150 RTC_LOG_F(LS_ERROR) << "Failed to write private key";
hbos6b470a92016-04-28 05:14:21 -0700151 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) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100166 RTC_LOG_F(LS_ERROR) << "Failed to allocate temporary memory bio";
hbos6b470a92016-04-28 05:14:21 -0700167 RTC_NOTREACHED();
168 return "";
169 }
170 if (!PEM_write_bio_PUBKEY(temp_memory_bio, pkey_)) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100171 RTC_LOG_F(LS_ERROR) << "Failed to write public key";
hbos6b470a92016-04-28 05:14:21 -0700172 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
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000212OpenSSLIdentity* OpenSSLIdentity::GenerateInternal(
213 const SSLIdentityParams& params) {
Jian Cui0a8798b2017-11-16 16:58:02 -0800214 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));
219 if (certificate != nullptr)
220 return new OpenSSLIdentity(std::move(key_pair), std::move(certificate));
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000221 }
Mirko Bonadei675513b2017-11-09 11:09:25 +0100222 RTC_LOG(LS_INFO) << "Identity generation failed";
deadbeef37f5ecf2017-02-27 14:06:41 -0800223 return nullptr;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000224}
225
Torbjorn Granlund1d846b22016-03-31 16:21:04 +0200226OpenSSLIdentity* OpenSSLIdentity::GenerateWithExpiration(
227 const std::string& common_name,
228 const KeyParams& key_params,
229 time_t certificate_lifetime) {
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000230 SSLIdentityParams params;
torbjorng4e572472015-10-08 09:42:49 -0700231 params.key_params = key_params;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000232 params.common_name = common_name;
deadbeef37f5ecf2017-02-27 14:06:41 -0800233 time_t now = time(nullptr);
Torbjorn Granlund1d846b22016-03-31 16:21:04 +0200234 params.not_before = now + kCertificateWindowInSeconds;
torbjornge8dc0812016-02-15 09:35:54 -0800235 params.not_after = now + certificate_lifetime;
Torbjorn Granlund1d846b22016-03-31 16:21:04 +0200236 if (params.not_before > params.not_after)
237 return nullptr;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000238 return GenerateInternal(params);
239}
240
241OpenSSLIdentity* OpenSSLIdentity::GenerateForTest(
242 const SSLIdentityParams& params) {
243 return GenerateInternal(params);
244}
245
Jian Cui0a8798b2017-11-16 16:58:02 -0800246SSLIdentity* OpenSSLIdentity::FromPEMStrings(const std::string& private_key,
247 const std::string& certificate) {
jbauch555604a2016-04-26 03:13:22 -0700248 std::unique_ptr<OpenSSLCertificate> cert(
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000249 OpenSSLCertificate::FromPEMString(certificate));
250 if (!cert) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100251 RTC_LOG(LS_ERROR) << "Failed to create OpenSSLCertificate from PEM string.";
hbos6b470a92016-04-28 05:14:21 -0700252 return nullptr;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000253 }
254
Jian Cui0a8798b2017-11-16 16:58:02 -0800255 std::unique_ptr<OpenSSLKeyPair> key_pair(
256 OpenSSLKeyPair::FromPrivateKeyPEMString(private_key));
hbos6b470a92016-04-28 05:14:21 -0700257 if (!key_pair) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100258 RTC_LOG(LS_ERROR) << "Failed to create key pair from PEM string.";
hbos6b470a92016-04-28 05:14:21 -0700259 return nullptr;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000260 }
261
Jian Cui0a8798b2017-11-16 16:58:02 -0800262 return new OpenSSLIdentity(std::move(key_pair), std::move(cert));
263}
264
265SSLIdentity* OpenSSLIdentity::FromPEMChainStrings(
266 const std::string& private_key,
267 const std::string& certificate_chain) {
Yves Gerey665174f2018-06-19 15:03:05 +0200268 BIO* bio = BIO_new_mem_buf(certificate_chain.data(),
269 rtc::dchecked_cast<int>(certificate_chain.size()));
Jian Cui0a8798b2017-11-16 16:58:02 -0800270 if (!bio)
271 return nullptr;
272 BIO_set_mem_eof_return(bio, 0);
273 std::vector<std::unique_ptr<SSLCertificate>> certs;
274 while (true) {
275 X509* x509 =
276 PEM_read_bio_X509(bio, nullptr, nullptr, const_cast<char*>("\0"));
277 if (x509 == nullptr) {
278 uint32_t err = ERR_peek_error();
279 if (ERR_GET_LIB(err) == ERR_LIB_PEM &&
280 ERR_GET_REASON(err) == PEM_R_NO_START_LINE) {
281 break;
282 }
283 RTC_LOG(LS_ERROR) << "Failed to parse certificate from PEM string.";
284 BIO_free(bio);
285 return nullptr;
286 }
287 certs.emplace_back(new OpenSSLCertificate(x509));
288 X509_free(x509);
289 }
290 BIO_free(bio);
291 if (certs.empty()) {
292 RTC_LOG(LS_ERROR) << "Found no certificates in PEM string.";
293 return nullptr;
294 }
295
296 std::unique_ptr<OpenSSLKeyPair> key_pair(
297 OpenSSLKeyPair::FromPrivateKeyPEMString(private_key));
298 if (!key_pair) {
299 RTC_LOG(LS_ERROR) << "Failed to create key pair from PEM string.";
300 return nullptr;
301 }
302
303 return new OpenSSLIdentity(std::move(key_pair),
Karl Wiberg918f50c2018-07-05 11:40:33 +0200304 absl::make_unique<SSLCertChain>(std::move(certs)));
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000305}
306
kwiberg@webrtc.org67186fe2015-03-09 22:21:53 +0000307const OpenSSLCertificate& OpenSSLIdentity::certificate() const {
Jian Cui0a8798b2017-11-16 16:58:02 -0800308 return *static_cast<const OpenSSLCertificate*>(&cert_chain_->Get(0));
kwiberg@webrtc.org67186fe2015-03-09 22:21:53 +0000309}
310
Taylor Brandstetterc3928662018-02-23 13:04:51 -0800311const SSLCertChain& OpenSSLIdentity::cert_chain() const {
312 return *cert_chain_.get();
313}
314
kwiberg@webrtc.org67186fe2015-03-09 22:21:53 +0000315OpenSSLIdentity* OpenSSLIdentity::GetReference() const {
Karl Wiberg918f50c2018-07-05 11:40:33 +0200316 return new OpenSSLIdentity(absl::WrapUnique(key_pair_->GetReference()),
Steve Antonf25303e2018-10-16 15:23:31 -0700317 cert_chain_->Clone());
kwiberg@webrtc.org67186fe2015-03-09 22:21:53 +0000318}
319
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000320bool OpenSSLIdentity::ConfigureIdentity(SSL_CTX* ctx) {
321 // 1 is the documented success return code.
Jian Cui0a8798b2017-11-16 16:58:02 -0800322 const OpenSSLCertificate* cert = &certificate();
323 if (SSL_CTX_use_certificate(ctx, cert->x509()) != 1 ||
324 SSL_CTX_use_PrivateKey(ctx, key_pair_->pkey()) != 1) {
Benjamin Wrightd6f86e82018-05-08 13:12:25 -0700325 openssl::LogSSLErrors("Configuring key and certificate");
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000326 return false;
327 }
Jian Cui0a8798b2017-11-16 16:58:02 -0800328 // If a chain is available, use it.
329 for (size_t i = 1; i < cert_chain_->GetSize(); ++i) {
330 cert = static_cast<const OpenSSLCertificate*>(&cert_chain_->Get(i));
331 if (SSL_CTX_add1_chain_cert(ctx, cert->x509()) != 1) {
Benjamin Wrightd6f86e82018-05-08 13:12:25 -0700332 openssl::LogSSLErrors("Configuring intermediate certificate");
Jian Cui0a8798b2017-11-16 16:58:02 -0800333 return false;
334 }
335 }
336
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000337 return true;
338}
339
hbos6b470a92016-04-28 05:14:21 -0700340std::string OpenSSLIdentity::PrivateKeyToPEMString() const {
341 return key_pair_->PrivateKeyToPEMString();
342}
343
344std::string OpenSSLIdentity::PublicKeyToPEMString() const {
345 return key_pair_->PublicKeyToPEMString();
346}
347
348bool OpenSSLIdentity::operator==(const OpenSSLIdentity& other) const {
349 return *this->key_pair_ == *other.key_pair_ &&
Jian Cui0a8798b2017-11-16 16:58:02 -0800350 this->certificate() == other.certificate();
hbos6b470a92016-04-28 05:14:21 -0700351}
352
353bool OpenSSLIdentity::operator!=(const OpenSSLIdentity& other) const {
354 return !(*this == other);
355}
356
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000357} // namespace rtc