637a0e1f708c531408dd2a5a7209fade784f9a69
[folly.git] / folly / io / async / SSLContext.cpp
1 /*
2  * Copyright 2016 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "SSLContext.h"
18
19 #include <openssl/err.h>
20 #include <openssl/rand.h>
21 #include <openssl/ssl.h>
22 #include <openssl/x509v3.h>
23
24 #include <folly/Format.h>
25 #include <folly/Memory.h>
26 #include <folly/SpinLock.h>
27 #include <folly/io/async/OpenSSLPtrTypes.h>
28
29 // ---------------------------------------------------------------------
30 // SSLContext implementation
31 // ---------------------------------------------------------------------
32
33 struct CRYPTO_dynlock_value {
34   std::mutex mutex;
35 };
36
37 namespace folly {
38
39 bool SSLContext::initialized_ = false;
40
41 namespace {
42
43 std::mutex& initMutex() {
44   static std::mutex m;
45   return m;
46 }
47
48 inline void BIO_free_fb(BIO* bio) { CHECK_EQ(1, BIO_free(bio)); }
49 using BIO_deleter = folly::static_function_deleter<BIO, &BIO_free_fb>;
50
51 } // anonymous namespace
52
53 #ifdef OPENSSL_NPN_NEGOTIATED
54 int SSLContext::sNextProtocolsExDataIndex_ = -1;
55 #endif
56
57 // SSLContext implementation
58 SSLContext::SSLContext(SSLVersion version) {
59   {
60     std::lock_guard<std::mutex> g(initMutex());
61     initializeOpenSSLLocked();
62   }
63
64   ctx_ = SSL_CTX_new(SSLv23_method());
65   if (ctx_ == nullptr) {
66     throw std::runtime_error("SSL_CTX_new: " + getErrors());
67   }
68
69   int opt = 0;
70   switch (version) {
71     case TLSv1:
72       opt = SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3;
73       break;
74     case SSLv3:
75       opt = SSL_OP_NO_SSLv2;
76       break;
77     default:
78       // do nothing
79       break;
80   }
81   int newOpt = SSL_CTX_set_options(ctx_, opt);
82   DCHECK((newOpt & opt) == opt);
83
84   SSL_CTX_set_mode(ctx_, SSL_MODE_AUTO_RETRY);
85
86   checkPeerName_ = false;
87
88 #if OPENSSL_VERSION_NUMBER >= 0x1000105fL && !defined(OPENSSL_NO_TLSEXT)
89   SSL_CTX_set_tlsext_servername_callback(ctx_, baseServerNameOpenSSLCallback);
90   SSL_CTX_set_tlsext_servername_arg(ctx_, this);
91 #endif
92
93 #ifdef OPENSSL_NPN_NEGOTIATED
94   Random::seed(nextProtocolPicker_);
95 #endif
96 }
97
98 SSLContext::~SSLContext() {
99   if (ctx_ != nullptr) {
100     SSL_CTX_free(ctx_);
101     ctx_ = nullptr;
102   }
103
104 #ifdef OPENSSL_NPN_NEGOTIATED
105   deleteNextProtocolsStrings();
106 #endif
107 }
108
109 void SSLContext::ciphers(const std::string& ciphers) {
110   providedCiphersString_ = ciphers;
111   setCiphersOrThrow(ciphers);
112 }
113
114 void SSLContext::setCiphersOrThrow(const std::string& ciphers) {
115   int rc = SSL_CTX_set_cipher_list(ctx_, ciphers.c_str());
116   if (ERR_peek_error() != 0) {
117     throw std::runtime_error("SSL_CTX_set_cipher_list: " + getErrors());
118   }
119   if (rc == 0) {
120     throw std::runtime_error("None of specified ciphers are supported");
121   }
122 }
123
124 void SSLContext::setVerificationOption(const SSLContext::SSLVerifyPeerEnum&
125     verifyPeer) {
126   CHECK(verifyPeer != SSLVerifyPeerEnum::USE_CTX); // dont recurse
127   verifyPeer_ = verifyPeer;
128 }
129
130 int SSLContext::getVerificationMode(const SSLContext::SSLVerifyPeerEnum&
131     verifyPeer) {
132   CHECK(verifyPeer != SSLVerifyPeerEnum::USE_CTX);
133   int mode = SSL_VERIFY_NONE;
134   switch(verifyPeer) {
135     // case SSLVerifyPeerEnum::USE_CTX: // can't happen
136     // break;
137
138     case SSLVerifyPeerEnum::VERIFY:
139       mode = SSL_VERIFY_PEER;
140       break;
141
142     case SSLVerifyPeerEnum::VERIFY_REQ_CLIENT_CERT:
143       mode = SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
144       break;
145
146     case SSLVerifyPeerEnum::NO_VERIFY:
147       mode = SSL_VERIFY_NONE;
148       break;
149
150     default:
151       break;
152   }
153   return mode;
154 }
155
156 int SSLContext::getVerificationMode() {
157   return getVerificationMode(verifyPeer_);
158 }
159
160 void SSLContext::authenticate(bool checkPeerCert, bool checkPeerName,
161                               const std::string& peerName) {
162   int mode;
163   if (checkPeerCert) {
164     mode  = SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT | SSL_VERIFY_CLIENT_ONCE;
165     checkPeerName_ = checkPeerName;
166     peerFixedName_ = peerName;
167   } else {
168     mode = SSL_VERIFY_NONE;
169     checkPeerName_ = false; // can't check name without cert!
170     peerFixedName_.clear();
171   }
172   SSL_CTX_set_verify(ctx_, mode, nullptr);
173 }
174
175 void SSLContext::loadCertificate(const char* path, const char* format) {
176   if (path == nullptr || format == nullptr) {
177     throw std::invalid_argument(
178          "loadCertificateChain: either <path> or <format> is nullptr");
179   }
180   if (strcmp(format, "PEM") == 0) {
181     if (SSL_CTX_use_certificate_chain_file(ctx_, path) == 0) {
182       int errnoCopy = errno;
183       std::string reason("SSL_CTX_use_certificate_chain_file: ");
184       reason.append(path);
185       reason.append(": ");
186       reason.append(getErrors(errnoCopy));
187       throw std::runtime_error(reason);
188     }
189   } else {
190     throw std::runtime_error("Unsupported certificate format: " + std::string(format));
191   }
192 }
193
194 void SSLContext::loadCertificateFromBufferPEM(folly::StringPiece cert) {
195   if (cert.data() == nullptr) {
196     throw std::invalid_argument("loadCertificate: <cert> is nullptr");
197   }
198
199   std::unique_ptr<BIO, BIO_deleter> bio(BIO_new(BIO_s_mem()));
200   if (bio == nullptr) {
201     throw std::runtime_error("BIO_new: " + getErrors());
202   }
203
204   int written = BIO_write(bio.get(), cert.data(), cert.size());
205   if (written <= 0 || static_cast<unsigned>(written) != cert.size()) {
206     throw std::runtime_error("BIO_write: " + getErrors());
207   }
208
209   X509_UniquePtr x509(PEM_read_bio_X509(bio.get(), nullptr, nullptr, nullptr));
210   if (x509 == nullptr) {
211     throw std::runtime_error("PEM_read_bio_X509: " + getErrors());
212   }
213
214   if (SSL_CTX_use_certificate(ctx_, x509.get()) == 0) {
215     throw std::runtime_error("SSL_CTX_use_certificate: " + getErrors());
216   }
217 }
218
219 void SSLContext::loadPrivateKey(const char* path, const char* format) {
220   if (path == nullptr || format == nullptr) {
221     throw std::invalid_argument(
222         "loadPrivateKey: either <path> or <format> is nullptr");
223   }
224   if (strcmp(format, "PEM") == 0) {
225     if (SSL_CTX_use_PrivateKey_file(ctx_, path, SSL_FILETYPE_PEM) == 0) {
226       throw std::runtime_error("SSL_CTX_use_PrivateKey_file: " + getErrors());
227     }
228   } else {
229     throw std::runtime_error("Unsupported private key format: " + std::string(format));
230   }
231 }
232
233 void SSLContext::loadPrivateKeyFromBufferPEM(folly::StringPiece pkey) {
234   if (pkey.data() == nullptr) {
235     throw std::invalid_argument("loadPrivateKey: <pkey> is nullptr");
236   }
237
238   std::unique_ptr<BIO, BIO_deleter> bio(BIO_new(BIO_s_mem()));
239   if (bio == nullptr) {
240     throw std::runtime_error("BIO_new: " + getErrors());
241   }
242
243   int written = BIO_write(bio.get(), pkey.data(), pkey.size());
244   if (written <= 0 || static_cast<unsigned>(written) != pkey.size()) {
245     throw std::runtime_error("BIO_write: " + getErrors());
246   }
247
248   EVP_PKEY_UniquePtr key(
249       PEM_read_bio_PrivateKey(bio.get(), nullptr, nullptr, nullptr));
250   if (key == nullptr) {
251     throw std::runtime_error("PEM_read_bio_PrivateKey: " + getErrors());
252   }
253
254   if (SSL_CTX_use_PrivateKey(ctx_, key.get()) == 0) {
255     throw std::runtime_error("SSL_CTX_use_PrivateKey: " + getErrors());
256   }
257 }
258
259 void SSLContext::loadTrustedCertificates(const char* path) {
260   if (path == nullptr) {
261     throw std::invalid_argument("loadTrustedCertificates: <path> is nullptr");
262   }
263   if (SSL_CTX_load_verify_locations(ctx_, path, nullptr) == 0) {
264     throw std::runtime_error("SSL_CTX_load_verify_locations: " + getErrors());
265   }
266 }
267
268 void SSLContext::loadTrustedCertificates(X509_STORE* store) {
269   SSL_CTX_set_cert_store(ctx_, store);
270 }
271
272 void SSLContext::loadClientCAList(const char* path) {
273   auto clientCAs = SSL_load_client_CA_file(path);
274   if (clientCAs == nullptr) {
275     LOG(ERROR) << "Unable to load ca file: " << path;
276     return;
277   }
278   SSL_CTX_set_client_CA_list(ctx_, clientCAs);
279 }
280
281 void SSLContext::randomize() {
282   RAND_poll();
283 }
284
285 void SSLContext::passwordCollector(std::shared_ptr<PasswordCollector> collector) {
286   if (collector == nullptr) {
287     LOG(ERROR) << "passwordCollector: ignore invalid password collector";
288     return;
289   }
290   collector_ = collector;
291   SSL_CTX_set_default_passwd_cb(ctx_, passwordCallback);
292   SSL_CTX_set_default_passwd_cb_userdata(ctx_, this);
293 }
294
295 #if OPENSSL_VERSION_NUMBER >= 0x1000105fL && !defined(OPENSSL_NO_TLSEXT)
296
297 void SSLContext::setServerNameCallback(const ServerNameCallback& cb) {
298   serverNameCb_ = cb;
299 }
300
301 void SSLContext::addClientHelloCallback(const ClientHelloCallback& cb) {
302   clientHelloCbs_.push_back(cb);
303 }
304
305 int SSLContext::baseServerNameOpenSSLCallback(SSL* ssl, int* al, void* data) {
306   SSLContext* context = (SSLContext*)data;
307
308   if (context == nullptr) {
309     return SSL_TLSEXT_ERR_NOACK;
310   }
311
312   for (auto& cb : context->clientHelloCbs_) {
313     // Generic callbacks to happen after we receive the Client Hello.
314     // For example, we use one to switch which cipher we use depending
315     // on the user's TLS version.  Because the primary purpose of
316     // baseServerNameOpenSSLCallback is for SNI support, and these callbacks
317     // are side-uses, we ignore any possible failures other than just logging
318     // them.
319     cb(ssl);
320   }
321
322   if (!context->serverNameCb_) {
323     return SSL_TLSEXT_ERR_NOACK;
324   }
325
326   ServerNameCallbackResult ret = context->serverNameCb_(ssl);
327   switch (ret) {
328     case SERVER_NAME_FOUND:
329       return SSL_TLSEXT_ERR_OK;
330     case SERVER_NAME_NOT_FOUND:
331       return SSL_TLSEXT_ERR_NOACK;
332     case SERVER_NAME_NOT_FOUND_ALERT_FATAL:
333       *al = TLS1_AD_UNRECOGNIZED_NAME;
334       return SSL_TLSEXT_ERR_ALERT_FATAL;
335     default:
336       CHECK(false);
337   }
338
339   return SSL_TLSEXT_ERR_NOACK;
340 }
341
342 void SSLContext::switchCiphersIfTLS11(
343     SSL* ssl,
344     const std::string& tls11CipherString) {
345
346   CHECK(!tls11CipherString.empty()) << "Shouldn't call if empty alt ciphers";
347
348   if (TLS1_get_client_version(ssl) <= TLS1_VERSION) {
349     // We only do this for TLS v 1.1 and later
350     return;
351   }
352
353   // Prefer AES for TLS versions 1.1 and later since these are not
354   // vulnerable to BEAST attacks on AES.  Note that we're setting the
355   // cipher list on the SSL object, not the SSL_CTX object, so it will
356   // only last for this request.
357   int rc = SSL_set_cipher_list(ssl, tls11CipherString.c_str());
358   if ((rc == 0) || ERR_peek_error() != 0) {
359     // This shouldn't happen since we checked for this when proxygen
360     // started up.
361     LOG(WARNING) << "ssl_cipher: No specified ciphers supported for switch";
362     SSL_set_cipher_list(ssl, providedCiphersString_.c_str());
363   }
364 }
365 #endif
366
367 #if OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined(OPENSSL_NO_TLSEXT)
368 int SSLContext::alpnSelectCallback(SSL* /* ssl */,
369                                    const unsigned char** out,
370                                    unsigned char* outlen,
371                                    const unsigned char* in,
372                                    unsigned int inlen,
373                                    void* data) {
374   SSLContext* context = (SSLContext*)data;
375   CHECK(context);
376   if (context->advertisedNextProtocols_.empty()) {
377     *out = nullptr;
378     *outlen = 0;
379   } else {
380     auto i = context->pickNextProtocols();
381     const auto& item = context->advertisedNextProtocols_[i];
382     if (SSL_select_next_proto((unsigned char**)out,
383                               outlen,
384                               item.protocols,
385                               item.length,
386                               in,
387                               inlen) != OPENSSL_NPN_NEGOTIATED) {
388       return SSL_TLSEXT_ERR_NOACK;
389     }
390   }
391   return SSL_TLSEXT_ERR_OK;
392 }
393 #endif
394
395 #ifdef OPENSSL_NPN_NEGOTIATED
396
397 bool SSLContext::setAdvertisedNextProtocols(
398     const std::list<std::string>& protocols, NextProtocolType protocolType) {
399   return setRandomizedAdvertisedNextProtocols({{1, protocols}}, protocolType);
400 }
401
402 bool SSLContext::setRandomizedAdvertisedNextProtocols(
403     const std::list<NextProtocolsItem>& items, NextProtocolType protocolType) {
404   unsetNextProtocols();
405   if (items.size() == 0) {
406     return false;
407   }
408   int total_weight = 0;
409   for (const auto &item : items) {
410     if (item.protocols.size() == 0) {
411       continue;
412     }
413     AdvertisedNextProtocolsItem advertised_item;
414     advertised_item.length = 0;
415     for (const auto& proto : item.protocols) {
416       ++advertised_item.length;
417       unsigned protoLength = proto.length();
418       if (protoLength >= 256) {
419         deleteNextProtocolsStrings();
420         return false;
421       }
422       advertised_item.length += protoLength;
423     }
424     advertised_item.protocols = new unsigned char[advertised_item.length];
425     if (!advertised_item.protocols) {
426       throw std::runtime_error("alloc failure");
427     }
428     unsigned char* dst = advertised_item.protocols;
429     for (auto& proto : item.protocols) {
430       unsigned protoLength = proto.length();
431       *dst++ = (unsigned char)protoLength;
432       memcpy(dst, proto.data(), protoLength);
433       dst += protoLength;
434     }
435     total_weight += item.weight;
436     advertisedNextProtocols_.push_back(advertised_item);
437     advertisedNextProtocolWeights_.push_back(item.weight);
438   }
439   if (total_weight == 0) {
440     deleteNextProtocolsStrings();
441     return false;
442   }
443   nextProtocolDistribution_ =
444       std::discrete_distribution<>(advertisedNextProtocolWeights_.begin(),
445                                    advertisedNextProtocolWeights_.end());
446   if ((uint8_t)protocolType & (uint8_t)NextProtocolType::NPN) {
447     SSL_CTX_set_next_protos_advertised_cb(
448         ctx_, advertisedNextProtocolCallback, this);
449     SSL_CTX_set_next_proto_select_cb(ctx_, selectNextProtocolCallback, this);
450   }
451 #if OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined(OPENSSL_NO_TLSEXT)
452   if ((uint8_t)protocolType & (uint8_t)NextProtocolType::ALPN) {
453     SSL_CTX_set_alpn_select_cb(ctx_, alpnSelectCallback, this);
454     // Client cannot really use randomized alpn
455     SSL_CTX_set_alpn_protos(ctx_,
456                             advertisedNextProtocols_[0].protocols,
457                             advertisedNextProtocols_[0].length);
458   }
459 #endif
460   return true;
461 }
462
463 void SSLContext::deleteNextProtocolsStrings() {
464   for (auto protocols : advertisedNextProtocols_) {
465     delete[] protocols.protocols;
466   }
467   advertisedNextProtocols_.clear();
468   advertisedNextProtocolWeights_.clear();
469 }
470
471 void SSLContext::unsetNextProtocols() {
472   deleteNextProtocolsStrings();
473   SSL_CTX_set_next_protos_advertised_cb(ctx_, nullptr, nullptr);
474   SSL_CTX_set_next_proto_select_cb(ctx_, nullptr, nullptr);
475 #if OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined(OPENSSL_NO_TLSEXT)
476   SSL_CTX_set_alpn_select_cb(ctx_, nullptr, nullptr);
477   SSL_CTX_set_alpn_protos(ctx_, nullptr, 0);
478 #endif
479 }
480
481 size_t SSLContext::pickNextProtocols() {
482   CHECK(!advertisedNextProtocols_.empty()) << "Failed to pickNextProtocols";
483   return nextProtocolDistribution_(nextProtocolPicker_);
484 }
485
486 int SSLContext::advertisedNextProtocolCallback(SSL* ssl,
487       const unsigned char** out, unsigned int* outlen, void* data) {
488   SSLContext* context = (SSLContext*)data;
489   if (context == nullptr || context->advertisedNextProtocols_.empty()) {
490     *out = nullptr;
491     *outlen = 0;
492   } else if (context->advertisedNextProtocols_.size() == 1) {
493     *out = context->advertisedNextProtocols_[0].protocols;
494     *outlen = context->advertisedNextProtocols_[0].length;
495   } else {
496     uintptr_t selected_index = reinterpret_cast<uintptr_t>(SSL_get_ex_data(ssl,
497           sNextProtocolsExDataIndex_));
498     if (selected_index) {
499       --selected_index;
500       *out = context->advertisedNextProtocols_[selected_index].protocols;
501       *outlen = context->advertisedNextProtocols_[selected_index].length;
502     } else {
503       auto i = context->pickNextProtocols();
504       uintptr_t selected = i + 1;
505       SSL_set_ex_data(ssl, sNextProtocolsExDataIndex_, (void*)selected);
506       *out = context->advertisedNextProtocols_[i].protocols;
507       *outlen = context->advertisedNextProtocols_[i].length;
508     }
509   }
510   return SSL_TLSEXT_ERR_OK;
511 }
512
513 int SSLContext::selectNextProtocolCallback(SSL* ssl,
514                                            unsigned char** out,
515                                            unsigned char* outlen,
516                                            const unsigned char* server,
517                                            unsigned int server_len,
518                                            void* data) {
519   (void)ssl; // Make -Wunused-parameters happy
520   SSLContext* ctx = (SSLContext*)data;
521   if (ctx->advertisedNextProtocols_.size() > 1) {
522     VLOG(3) << "SSLContext::selectNextProcolCallback() "
523             << "client should be deterministic in selecting protocols.";
524   }
525
526   unsigned char *client;
527   unsigned int client_len;
528   bool filtered = false;
529   auto cpf = ctx->getClientProtocolFilterCallback();
530   if (cpf) {
531     filtered = (*cpf)(&client, &client_len, server, server_len);
532   }
533
534   if (!filtered) {
535     if (ctx->advertisedNextProtocols_.empty()) {
536       client = (unsigned char *) "";
537       client_len = 0;
538     } else {
539       client = ctx->advertisedNextProtocols_[0].protocols;
540       client_len = ctx->advertisedNextProtocols_[0].length;
541     }
542   }
543
544   int retval = SSL_select_next_proto(out, outlen, server, server_len,
545                                      client, client_len);
546   if (retval != OPENSSL_NPN_NEGOTIATED) {
547     VLOG(3) << "SSLContext::selectNextProcolCallback() "
548             << "unable to pick a next protocol.";
549   }
550   return SSL_TLSEXT_ERR_OK;
551 }
552 #endif // OPENSSL_NPN_NEGOTIATED
553
554 SSL* SSLContext::createSSL() const {
555   SSL* ssl = SSL_new(ctx_);
556   if (ssl == nullptr) {
557     throw std::runtime_error("SSL_new: " + getErrors());
558   }
559   return ssl;
560 }
561
562 /**
563  * Match a name with a pattern. The pattern may include wildcard. A single
564  * wildcard "*" can match up to one component in the domain name.
565  *
566  * @param  host    Host name, typically the name of the remote host
567  * @param  pattern Name retrieved from certificate
568  * @param  size    Size of "pattern"
569  * @return True, if "host" matches "pattern". False otherwise.
570  */
571 bool SSLContext::matchName(const char* host, const char* pattern, int size) {
572   bool match = false;
573   int i = 0, j = 0;
574   while (i < size && host[j] != '\0') {
575     if (toupper(pattern[i]) == toupper(host[j])) {
576       i++;
577       j++;
578       continue;
579     }
580     if (pattern[i] == '*') {
581       while (host[j] != '.' && host[j] != '\0') {
582         j++;
583       }
584       i++;
585       continue;
586     }
587     break;
588   }
589   if (i == size && host[j] == '\0') {
590     match = true;
591   }
592   return match;
593 }
594
595 int SSLContext::passwordCallback(char* password,
596                                  int size,
597                                  int,
598                                  void* data) {
599   SSLContext* context = (SSLContext*)data;
600   if (context == nullptr || context->passwordCollector() == nullptr) {
601     return 0;
602   }
603   std::string userPassword;
604   // call user defined password collector to get password
605   context->passwordCollector()->getPassword(userPassword, size);
606   int length = userPassword.size();
607   if (length > size) {
608     length = size;
609   }
610   strncpy(password, userPassword.c_str(), length);
611   return length;
612 }
613
614 struct SSLLock {
615   explicit SSLLock(
616     SSLContext::SSLLockType inLockType = SSLContext::LOCK_MUTEX) :
617       lockType(inLockType) {
618   }
619
620   void lock() {
621     if (lockType == SSLContext::LOCK_MUTEX) {
622       mutex.lock();
623     } else if (lockType == SSLContext::LOCK_SPINLOCK) {
624       spinLock.lock();
625     }
626     // lockType == LOCK_NONE, no-op
627   }
628
629   void unlock() {
630     if (lockType == SSLContext::LOCK_MUTEX) {
631       mutex.unlock();
632     } else if (lockType == SSLContext::LOCK_SPINLOCK) {
633       spinLock.unlock();
634     }
635     // lockType == LOCK_NONE, no-op
636   }
637
638   SSLContext::SSLLockType lockType;
639   folly::SpinLock spinLock{};
640   std::mutex mutex;
641 };
642
643 // Statics are unsafe in environments that call exit().
644 // If one thread calls exit() while another thread is
645 // references a member of SSLContext, bad things can happen.
646 // SSLContext runs in such environments.
647 // Instead of declaring a static member we "new" the static
648 // member so that it won't be destructed on exit().
649 static std::unique_ptr<SSLLock[]>& locks() {
650   static auto locksInst = new std::unique_ptr<SSLLock[]>();
651   return *locksInst;
652 }
653
654 static std::map<int, SSLContext::SSLLockType>& lockTypes() {
655   static auto lockTypesInst = new std::map<int, SSLContext::SSLLockType>();
656   return *lockTypesInst;
657 }
658
659 static void callbackLocking(int mode, int n, const char*, int) {
660   if (mode & CRYPTO_LOCK) {
661     locks()[n].lock();
662   } else {
663     locks()[n].unlock();
664   }
665 }
666
667 static unsigned long callbackThreadID() {
668   return static_cast<unsigned long>(
669 #ifdef __APPLE__
670     pthread_mach_thread_np(pthread_self())
671 #else
672     pthread_self()
673 #endif
674   );
675 }
676
677 static CRYPTO_dynlock_value* dyn_create(const char*, int) {
678   return new CRYPTO_dynlock_value;
679 }
680
681 static void dyn_lock(int mode,
682                      struct CRYPTO_dynlock_value* lock,
683                      const char*, int) {
684   if (lock != nullptr) {
685     if (mode & CRYPTO_LOCK) {
686       lock->mutex.lock();
687     } else {
688       lock->mutex.unlock();
689     }
690   }
691 }
692
693 static void dyn_destroy(struct CRYPTO_dynlock_value* lock, const char*, int) {
694   delete lock;
695 }
696
697 void SSLContext::setSSLLockTypes(std::map<int, SSLLockType> inLockTypes) {
698   lockTypes() = inLockTypes;
699 }
700
701 #if defined(SSL_MODE_HANDSHAKE_CUTTHROUGH)
702 void SSLContext::enableFalseStart() {
703   SSL_CTX_set_mode(ctx_, SSL_MODE_HANDSHAKE_CUTTHROUGH);
704 }
705 #endif
706
707 void SSLContext::markInitialized() {
708   std::lock_guard<std::mutex> g(initMutex());
709   initialized_ = true;
710 }
711
712 void SSLContext::initializeOpenSSL() {
713   std::lock_guard<std::mutex> g(initMutex());
714   initializeOpenSSLLocked();
715 }
716
717 void SSLContext::initializeOpenSSLLocked() {
718   if (initialized_) {
719     return;
720   }
721   SSL_library_init();
722   SSL_load_error_strings();
723   ERR_load_crypto_strings();
724   // static locking
725   locks().reset(new SSLLock[::CRYPTO_num_locks()]);
726   for (auto it: lockTypes()) {
727     locks()[it.first].lockType = it.second;
728   }
729   CRYPTO_set_id_callback(callbackThreadID);
730   CRYPTO_set_locking_callback(callbackLocking);
731   // dynamic locking
732   CRYPTO_set_dynlock_create_callback(dyn_create);
733   CRYPTO_set_dynlock_lock_callback(dyn_lock);
734   CRYPTO_set_dynlock_destroy_callback(dyn_destroy);
735   randomize();
736 #ifdef OPENSSL_NPN_NEGOTIATED
737   sNextProtocolsExDataIndex_ = SSL_get_ex_new_index(0,
738       (void*)"Advertised next protocol index", nullptr, nullptr, nullptr);
739 #endif
740   initialized_ = true;
741 }
742
743 void SSLContext::cleanupOpenSSL() {
744   std::lock_guard<std::mutex> g(initMutex());
745   cleanupOpenSSLLocked();
746 }
747
748 void SSLContext::cleanupOpenSSLLocked() {
749   if (!initialized_) {
750     return;
751   }
752
753   CRYPTO_set_id_callback(nullptr);
754   CRYPTO_set_locking_callback(nullptr);
755   CRYPTO_set_dynlock_create_callback(nullptr);
756   CRYPTO_set_dynlock_lock_callback(nullptr);
757   CRYPTO_set_dynlock_destroy_callback(nullptr);
758   CRYPTO_cleanup_all_ex_data();
759   ERR_free_strings();
760   EVP_cleanup();
761   ERR_remove_state(0);
762   locks().reset();
763   initialized_ = false;
764 }
765
766 void SSLContext::setOptions(long options) {
767   long newOpt = SSL_CTX_set_options(ctx_, options);
768   if ((newOpt & options) != options) {
769     throw std::runtime_error("SSL_CTX_set_options failed");
770   }
771 }
772
773 std::string SSLContext::getErrors(int errnoCopy) {
774   std::string errors;
775   unsigned long  errorCode;
776   char   message[256];
777
778   errors.reserve(512);
779   while ((errorCode = ERR_get_error()) != 0) {
780     if (!errors.empty()) {
781       errors += "; ";
782     }
783     const char* reason = ERR_reason_error_string(errorCode);
784     if (reason == nullptr) {
785       snprintf(message, sizeof(message) - 1, "SSL error # %lu", errorCode);
786       reason = message;
787     }
788     errors += reason;
789   }
790   if (errors.empty()) {
791     errors = "error code: " + folly::to<std::string>(errnoCopy);
792   }
793   return errors;
794 }
795
796 std::ostream&
797 operator<<(std::ostream& os, const PasswordCollector& collector) {
798   os << collector.describe();
799   return os;
800 }
801
802 bool OpenSSLUtils::getPeerAddressFromX509StoreCtx(X509_STORE_CTX* ctx,
803                                                   sockaddr_storage* addrStorage,
804                                                   socklen_t* addrLen) {
805   // Grab the ssl idx and then the ssl object so that we can get the peer
806   // name to compare against the ips in the subjectAltName
807   auto sslIdx = SSL_get_ex_data_X509_STORE_CTX_idx();
808   auto ssl =
809     reinterpret_cast<SSL*>(X509_STORE_CTX_get_ex_data(ctx, sslIdx));
810   int fd = SSL_get_fd(ssl);
811   if (fd < 0) {
812     LOG(ERROR) << "Inexplicably couldn't get fd from SSL";
813     return false;
814   }
815
816   *addrLen = sizeof(*addrStorage);
817   if (getpeername(fd, reinterpret_cast<sockaddr*>(addrStorage), addrLen) != 0) {
818     PLOG(ERROR) << "Unable to get peer name";
819     return false;
820   }
821   CHECK(*addrLen <= sizeof(*addrStorage));
822   return true;
823 }
824
825 bool OpenSSLUtils::validatePeerCertNames(X509* cert,
826                                          const sockaddr* addr,
827                                          socklen_t /* addrLen */) {
828   // Try to extract the names within the SAN extension from the certificate
829   auto altNames =
830     reinterpret_cast<STACK_OF(GENERAL_NAME)*>(
831         X509_get_ext_d2i(cert, NID_subject_alt_name, nullptr, nullptr));
832   SCOPE_EXIT {
833     if (altNames != nullptr) {
834       sk_GENERAL_NAME_pop_free(altNames, GENERAL_NAME_free);
835     }
836   };
837   if (altNames == nullptr) {
838     LOG(WARNING) << "No subjectAltName provided and we only support ip auth";
839     return false;
840   }
841
842   const sockaddr_in* addr4 = nullptr;
843   const sockaddr_in6* addr6 = nullptr;
844   if (addr != nullptr) {
845     if (addr->sa_family == AF_INET) {
846       addr4 = reinterpret_cast<const sockaddr_in*>(addr);
847     } else if (addr->sa_family == AF_INET6) {
848       addr6 = reinterpret_cast<const sockaddr_in6*>(addr);
849     } else {
850       LOG(FATAL) << "Unsupported sockaddr family: " << addr->sa_family;
851     }
852   }
853
854
855   for (int i = 0; i < sk_GENERAL_NAME_num(altNames); i++) {
856     auto name = sk_GENERAL_NAME_value(altNames, i);
857     if ((addr4 != nullptr || addr6 != nullptr) && name->type == GEN_IPADD) {
858       // Extra const-ness for paranoia
859       unsigned char const * const rawIpStr = name->d.iPAddress->data;
860       int const rawIpLen = name->d.iPAddress->length;
861
862       if (rawIpLen == 4 && addr4 != nullptr) {
863         if (::memcmp(rawIpStr, &addr4->sin_addr, rawIpLen) == 0) {
864           return true;
865         }
866       } else if (rawIpLen == 16 && addr6 != nullptr) {
867         if (::memcmp(rawIpStr, &addr6->sin6_addr, rawIpLen) == 0) {
868           return true;
869         }
870       } else if (rawIpLen != 4 && rawIpLen != 16) {
871         LOG(WARNING) << "Unexpected IP length: " << rawIpLen;
872       }
873     }
874   }
875
876   LOG(WARNING) << "Unable to match client cert against alt name ip";
877   return false;
878 }
879
880
881 } // folly