123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: Shelley Vohr <[email protected]>
- Date: Wed, 12 Feb 2020 15:08:04 -0800
- Subject: fix: handle BoringSSL and OpenSSL incompatibilities
- This patch corrects for imcompatibilities between OpenSSL, which Node.js uses,
- and BoringSSL which Electron uses via Chromium. Each incompatibility typically has
- ~2 paths forward:
- * Upstream a shim or adapted implementation to BoringSSL
- * Alter Node.js functionality to something which both libraries can handle.
- Where possible, we should seek to make this patch as minimal as possible.
- Upstreams:
- - https://github.com/nodejs/node/pull/39054
- - https://github.com/nodejs/node/pull/39138
- - https://github.com/nodejs/node/pull/39136
- diff --git a/src/crypto/crypto_cipher.cc b/src/crypto/crypto_cipher.cc
- index 2e6e02d229b67bc97e0d15a2704e091d5289df9c..6fd0416820998bd0ba4c4cd4fe3093f144610f18 100644
- --- a/src/crypto/crypto_cipher.cc
- +++ b/src/crypto/crypto_cipher.cc
- @@ -27,7 +27,8 @@ using v8::Value;
- namespace crypto {
- namespace {
- bool IsSupportedAuthenticatedMode(const EVP_CIPHER* cipher) {
- - switch (EVP_CIPHER_mode(cipher)) {
- + const int mode = EVP_CIPHER_mode(cipher);
- + switch (mode) {
- case EVP_CIPH_CCM_MODE:
- case EVP_CIPH_GCM_MODE:
- #ifndef OPENSSL_NO_OCB
- diff --git a/src/crypto/crypto_common.cc b/src/crypto/crypto_common.cc
- index c6120a655ec853aef11c66ed37d7ca0ffb957dd3..a52ca15cb0ab592d4196d4bd0f1133240967d70c 100644
- --- a/src/crypto/crypto_common.cc
- +++ b/src/crypto/crypto_common.cc
- @@ -158,7 +158,7 @@ const char* GetClientHelloALPN(const SSLPointer& ssl) {
- const unsigned char* buf;
- size_t len;
- size_t rem;
- -
- +#ifndef OPENSSL_IS_BORINGSSL
- if (!SSL_client_hello_get0_ext(
- ssl.get(),
- TLSEXT_TYPE_application_layer_protocol_negotiation,
- @@ -171,13 +171,15 @@ const char* GetClientHelloALPN(const SSLPointer& ssl) {
- len = (buf[0] << 8) | buf[1];
- if (len + 2 != rem) return nullptr;
- return reinterpret_cast<const char*>(buf + 3);
- +#endif
- + return nullptr;
- }
-
- const char* GetClientHelloServerName(const SSLPointer& ssl) {
- const unsigned char* buf;
- size_t len;
- size_t rem;
- -
- +#ifndef OPENSSL_IS_BORINGSSL
- if (!SSL_client_hello_get0_ext(
- ssl.get(),
- TLSEXT_TYPE_server_name,
- @@ -199,15 +201,20 @@ const char* GetClientHelloServerName(const SSLPointer& ssl) {
- if (len + 2 > rem)
- return nullptr;
- return reinterpret_cast<const char*>(buf + 5);
- +#endif
- + return nullptr;
- }
-
- const char* GetServerName(SSL* ssl) {
- return SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
- }
-
- -bool SetGroups(SecureContext* sc, const char* groups) {
- - return SSL_CTX_set1_groups_list(sc->ctx().get(), groups) == 1;
- -}
- + bool SetGroups(SecureContext* sc, const char* groups) {
- +#ifndef OPENSSL_IS_BORINGSSL
- + return SSL_CTX_set1_groups_list(sc->ctx().get(), groups) == 1;
- +#endif
- + return SSL_CTX_set1_curves_list(sc->ctx().get(), groups) == 1;
- + }
-
- const char* X509ErrorCode(long err) { // NOLINT(runtime/int)
- const char* code = "UNSPECIFIED";
- @@ -1044,14 +1051,14 @@ MaybeLocal<Array> GetClientHelloCiphers(
- Environment* env,
- const SSLPointer& ssl) {
- EscapableHandleScope scope(env->isolate());
- - const unsigned char* buf;
- - size_t len = SSL_client_hello_get0_ciphers(ssl.get(), &buf);
- + // const unsigned char* buf = nullptr;
- + size_t len = 0; // SSL_client_hello_get0_ciphers(ssl.get(), &buf);
- size_t count = len / 2;
- MaybeStackBuffer<Local<Value>, 16> ciphers(count);
- int j = 0;
- for (size_t n = 0; n < len; n += 2) {
- - const SSL_CIPHER* cipher = SSL_CIPHER_find(ssl.get(), buf);
- - buf += 2;
- + const SSL_CIPHER* cipher = nullptr; // SSL_CIPHER_find(ssl.get(), buf);
- + // buf += 2;
- Local<Object> obj = Object::New(env->isolate());
- if (!Set(env->context(),
- obj,
- diff --git a/src/crypto/crypto_context.cc b/src/crypto/crypto_context.cc
- index 3876adf7d72211d8d8c5a94564168094ecfc660b..ccd166d9439a821328d2ad35352488960206f65e 100644
- --- a/src/crypto/crypto_context.cc
- +++ b/src/crypto/crypto_context.cc
- @@ -63,7 +63,7 @@ inline X509_STORE* GetOrCreateRootCertStore() {
- // Caller responsible for BIO_free_all-ing the returned object.
- BIOPointer LoadBIO(Environment* env, Local<Value> v) {
- if (v->IsString() || v->IsArrayBufferView()) {
- - BIOPointer bio(BIO_new(BIO_s_secmem()));
- + BIOPointer bio(BIO_new(BIO_s_mem()));
- if (!bio) return nullptr;
- ByteSource bsrc = ByteSource::FromStringOrBuffer(env, v);
- if (bsrc.size() > INT_MAX) return nullptr;
- @@ -861,10 +861,12 @@ void SecureContext::SetDHParam(const FunctionCallbackInfo<Value>& args) {
- // If the user specified "auto" for dhparams, the JavaScript layer will pass
- // true to this function instead of the original string. Any other string
- // value will be interpreted as custom DH parameters below.
- +#ifndef OPENSSL_IS_BORINGSSL
- if (args[0]->IsTrue()) {
- CHECK(SSL_CTX_set_dh_auto(sc->ctx_.get(), true));
- return;
- }
- +#endif
-
- DHPointer dh;
- {
- diff --git a/src/crypto/crypto_dh.cc b/src/crypto/crypto_dh.cc
- index 408d6be2a9cfdbcb52af285204c07c40bf74a5a9..9c3244a14bc286d60805bac5719df6595d802768 100644
- --- a/src/crypto/crypto_dh.cc
- +++ b/src/crypto/crypto_dh.cc
- @@ -153,13 +153,11 @@ bool DiffieHellman::Init(BignumPointer&& bn_p, int g) {
- bool DiffieHellman::Init(const char* p, int p_len, int g) {
- dh_.reset(DH_new());
- if (p_len <= 0) {
- - ERR_put_error(ERR_LIB_BN, BN_F_BN_GENERATE_PRIME_EX,
- - BN_R_BITS_TOO_SMALL, __FILE__, __LINE__);
- + OPENSSL_PUT_ERROR(BN, BN_R_BITS_TOO_SMALL);
- return false;
- }
- if (g <= 1) {
- - ERR_put_error(ERR_LIB_DH, DH_F_DH_BUILTIN_GENPARAMS,
- - DH_R_BAD_GENERATOR, __FILE__, __LINE__);
- + OPENSSL_PUT_ERROR(DH, DH_R_BAD_GENERATOR);
- return false;
- }
- BIGNUM* bn_p =
- @@ -177,21 +175,18 @@ bool DiffieHellman::Init(const char* p, int p_len, int g) {
- bool DiffieHellman::Init(const char* p, int p_len, const char* g, int g_len) {
- dh_.reset(DH_new());
- if (p_len <= 0) {
- - ERR_put_error(ERR_LIB_BN, BN_F_BN_GENERATE_PRIME_EX,
- - BN_R_BITS_TOO_SMALL, __FILE__, __LINE__);
- + OPENSSL_PUT_ERROR(BN, BN_R_BITS_TOO_SMALL);
- return false;
- }
- if (g_len <= 0) {
- - ERR_put_error(ERR_LIB_DH, DH_F_DH_BUILTIN_GENPARAMS,
- - DH_R_BAD_GENERATOR, __FILE__, __LINE__);
- + OPENSSL_PUT_ERROR(DH, DH_R_BAD_GENERATOR);
- return false;
- }
- BIGNUM* bn_g =
- BN_bin2bn(reinterpret_cast<const unsigned char*>(g), g_len, nullptr);
- if (BN_is_zero(bn_g) || BN_is_one(bn_g)) {
- BN_free(bn_g);
- - ERR_put_error(ERR_LIB_DH, DH_F_DH_BUILTIN_GENPARAMS,
- - DH_R_BAD_GENERATOR, __FILE__, __LINE__);
- + OPENSSL_PUT_ERROR(DH, DH_R_BAD_GENERATOR);
- return false;
- }
- BIGNUM* bn_p =
- @@ -218,8 +213,10 @@ typedef BignumPointer (*StandardizedGroupInstantiator)();
- inline StandardizedGroupInstantiator FindDiffieHellmanGroup(const char* name) {
- #define V(n, p) \
- if (StringEqualNoCase(name, n)) return InstantiateStandardizedGroup<p>
- +#ifndef OPENSSL_IS_BORINGSSL
- V("modp1", BN_get_rfc2409_prime_768);
- V("modp2", BN_get_rfc2409_prime_1024);
- +#endif
- V("modp5", BN_get_rfc3526_prime_1536);
- V("modp14", BN_get_rfc3526_prime_2048);
- V("modp15", BN_get_rfc3526_prime_3072);
- @@ -558,15 +555,20 @@ EVPKeyCtxPointer DhKeyGenTraits::Setup(DhKeyPairGenConfig* params) {
- return EVPKeyCtxPointer();
- }
-
- +#ifndef OPENSSL_IS_BORINGSSL
- prime_fixed_value->release();
- bn_g.release();
-
- key_params = EVPKeyPointer(EVP_PKEY_new());
- CHECK(key_params);
- CHECK_EQ(EVP_PKEY_assign_DH(key_params.get(), dh.release()), 1);
- +#else
- + return EVPKeyCtxPointer();
- +#endif
- } else if (int* prime_size = std::get_if<int>(¶ms->params.prime)) {
- EVPKeyCtxPointer param_ctx(EVP_PKEY_CTX_new_id(EVP_PKEY_DH, nullptr));
- EVP_PKEY* raw_params = nullptr;
- +#ifndef OPENSSL_IS_BORINGSSL
- if (!param_ctx ||
- EVP_PKEY_paramgen_init(param_ctx.get()) <= 0 ||
- EVP_PKEY_CTX_set_dh_paramgen_prime_len(
- @@ -580,6 +582,9 @@ EVPKeyCtxPointer DhKeyGenTraits::Setup(DhKeyPairGenConfig* params) {
- }
-
- key_params = EVPKeyPointer(raw_params);
- +#else
- + return EVPKeyCtxPointer();
- +#endif
- } else {
- UNREACHABLE();
- }
- diff --git a/src/crypto/crypto_dsa.cc b/src/crypto/crypto_dsa.cc
- index 3fa4a415dc911a13afd90dfb31c1ed4ad0fd268f..fa48dffc31342c44a1c1207b9d4c3dc72ed93b60 100644
- --- a/src/crypto/crypto_dsa.cc
- +++ b/src/crypto/crypto_dsa.cc
- @@ -40,7 +40,7 @@ namespace crypto {
- EVPKeyCtxPointer DsaKeyGenTraits::Setup(DsaKeyPairGenConfig* params) {
- EVPKeyCtxPointer param_ctx(EVP_PKEY_CTX_new_id(EVP_PKEY_DSA, nullptr));
- EVP_PKEY* raw_params = nullptr;
- -
- +#ifndef OPENSSL_IS_BORINGSSL
- if (!param_ctx ||
- EVP_PKEY_paramgen_init(param_ctx.get()) <= 0 ||
- EVP_PKEY_CTX_set_dsa_paramgen_bits(
- @@ -55,7 +55,9 @@ EVPKeyCtxPointer DsaKeyGenTraits::Setup(DsaKeyPairGenConfig* params) {
- return EVPKeyCtxPointer();
- }
- }
- -
- +#else
- + return EVPKeyCtxPointer();
- +#endif
- if (EVP_PKEY_paramgen(param_ctx.get(), &raw_params) <= 0)
- return EVPKeyCtxPointer();
-
- diff --git a/src/crypto/crypto_random.cc b/src/crypto/crypto_random.cc
- index 245f352918696413f8f0f7cec94dbcec687685af..35c1c1ce9f0e3d59b75e3966d485bf70b846de5b 100644
- --- a/src/crypto/crypto_random.cc
- +++ b/src/crypto/crypto_random.cc
- @@ -140,7 +140,7 @@ Maybe<bool> RandomPrimeTraits::AdditionalConfig(
-
- params->bits = bits;
- params->safe = safe;
- - params->prime.reset(BN_secure_new());
- + params->prime.reset(BN_new());
- if (!params->prime) {
- THROW_ERR_CRYPTO_OPERATION_FAILED(env, "could not generate prime");
- return Nothing<bool>();
- diff --git a/src/crypto/crypto_rsa.cc b/src/crypto/crypto_rsa.cc
- index 3f8499457cf10765fa55e5018a26580f2c5ef15d..31647423be528949db744cbea43586ece5243bac 100644
- --- a/src/crypto/crypto_rsa.cc
- +++ b/src/crypto/crypto_rsa.cc
- @@ -610,10 +610,11 @@ Maybe<bool> GetRsaKeyDetail(
- }
-
- if (params->saltLength != nullptr) {
- - if (ASN1_INTEGER_get_int64(&salt_length, params->saltLength) != 1) {
- - ThrowCryptoError(env, ERR_get_error(), "ASN1_INTEGER_get_in64 error");
- - return Nothing<bool>();
- - }
- + // TODO(codebytere): Upstream a shim to BoringSSL?
- + // if (ASN1_INTEGER_get_int64(&salt_length, params->saltLength) != 1) {
- + // ThrowCryptoError(env, ERR_get_error(), "ASN1_INTEGER_get_in64 error");
- + // return Nothing<bool>();
- + // }
- }
-
- if (target
- diff --git a/src/crypto/crypto_util.cc b/src/crypto/crypto_util.cc
- index 5734d8fdc5505e1586f571c19b840bd56e9c9f1f..3034b114e081e2b32dd5b71653927a41af7d48df 100644
- --- a/src/crypto/crypto_util.cc
- +++ b/src/crypto/crypto_util.cc
- @@ -517,24 +517,15 @@ Maybe<bool> Decorate(Environment* env, Local<Object> obj,
- V(BIO) \
- V(PKCS7) \
- V(X509V3) \
- - V(PKCS12) \
- V(RAND) \
- - V(DSO) \
- V(ENGINE) \
- V(OCSP) \
- V(UI) \
- V(COMP) \
- V(ECDSA) \
- V(ECDH) \
- - V(OSSL_STORE) \
- - V(FIPS) \
- - V(CMS) \
- - V(TS) \
- V(HMAC) \
- - V(CT) \
- - V(ASYNC) \
- - V(KDF) \
- - V(SM2) \
- + V(HKDF) \
- V(USER) \
-
- #define V(name) case ERR_LIB_##name: lib = #name "_"; break;
- @@ -715,7 +706,7 @@ void SecureBuffer(const FunctionCallbackInfo<Value>& args) {
- CHECK(args[0]->IsUint32());
- Environment* env = Environment::GetCurrent(args);
- uint32_t len = args[0].As<Uint32>()->Value();
- - void* data = OPENSSL_secure_zalloc(len);
- + void* data = OPENSSL_malloc(len);
- if (data == nullptr) {
- // There's no memory available for the allocation.
- // Return nothing.
- @@ -726,7 +717,7 @@ void SecureBuffer(const FunctionCallbackInfo<Value>& args) {
- data,
- len,
- [](void* data, size_t len, void* deleter_data) {
- - OPENSSL_secure_clear_free(data, len);
- + OPENSSL_clear_free(data, len);
- },
- data);
- Local<ArrayBuffer> buffer = ArrayBuffer::New(env->isolate(), store);
- @@ -734,10 +725,12 @@ void SecureBuffer(const FunctionCallbackInfo<Value>& args) {
- }
-
- void SecureHeapUsed(const FunctionCallbackInfo<Value>& args) {
- +#ifndef OPENSSL_IS_BORINGSSL
- Environment* env = Environment::GetCurrent(args);
- if (CRYPTO_secure_malloc_initialized())
- args.GetReturnValue().Set(
- BigInt::New(env->isolate(), CRYPTO_secure_used()));
- +#endif
- }
- } // namespace
-
- diff --git a/src/node_metadata.cc b/src/node_metadata.cc
- index 22546e9de25bdf95a00d06057626b544d5bf6f28..3a20f2f6a153c2f0b48b86ed83b92484ac4c274a 100644
- --- a/src/node_metadata.cc
- +++ b/src/node_metadata.cc
- @@ -16,7 +16,7 @@
- #include "v8.h"
- #include "zlib.h"
-
- -#if HAVE_OPENSSL
- +#if HAVE_OPENSSL && !defined(OPENSSL_IS_BORINGSSL)
- #include <openssl/opensslv.h>
- #if NODE_OPENSSL_HAS_QUIC
- #include <openssl/quic.h>
- diff --git a/src/node_metadata.h b/src/node_metadata.h
- index cf051585e779e2b03bd7b95fe5008b89cc7f8162..9de49c6828468fdf846dcd4ad445390f14446099 100644
- --- a/src/node_metadata.h
- +++ b/src/node_metadata.h
- @@ -6,7 +6,7 @@
- #include <string>
- #include "node_version.h"
-
- -#if HAVE_OPENSSL
- +#if 0
- #include <openssl/crypto.h>
- #if NODE_OPENSSL_HAS_QUIC
- #include <openssl/quic.h>
- diff --git a/src/node_options.cc b/src/node_options.cc
- index b544f1209143c0d4a01b1df3257e5b2ba1d5bfee..f711ac936e76f9c16d15d7db759d0081a9eb018d 100644
- --- a/src/node_options.cc
- +++ b/src/node_options.cc
- @@ -6,7 +6,7 @@
- #include "node_external_reference.h"
- #include "node_internals.h"
- #include "node_sea.h"
- -#if HAVE_OPENSSL
- +#if HAVE_OPENSSL && !defined(OPENSSL_IS_BORINGSSL)
- #include "openssl/opensslv.h"
- #endif
-
- diff --git a/src/node_options.h b/src/node_options.h
- index bc18a45e681a3cd8d26ea94862d7a6eb3a6631fc..08141c540c0c3fe4f2a4fe66bf75557a71a1d8e6 100644
- --- a/src/node_options.h
- +++ b/src/node_options.h
- @@ -11,7 +11,7 @@
- #include "node_mutex.h"
- #include "util.h"
-
- -#if HAVE_OPENSSL
- +#if 0
- #include "openssl/opensslv.h"
- #endif
-
|