Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 3 | #include "bmcweb_config.h" |
| 4 | |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 5 | #include "logging.hpp" |
Ed Tanous | 2c6ffdb | 2023-06-28 11:28:38 -0700 | [diff] [blame] | 6 | #include "ossl_random.hpp" |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 7 | |
Ed Tanous | fca2cbe | 2021-01-28 14:49:59 -0800 | [diff] [blame] | 8 | extern "C" |
| 9 | { |
| 10 | #include <nghttp2/nghttp2.h> |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 11 | #include <openssl/bio.h> |
| 12 | #include <openssl/dh.h> |
| 13 | #include <openssl/dsa.h> |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 14 | #include <openssl/err.h> |
| 15 | #include <openssl/evp.h> |
| 16 | #include <openssl/pem.h> |
| 17 | #include <openssl/rand.h> |
| 18 | #include <openssl/rsa.h> |
| 19 | #include <openssl/ssl.h> |
Ed Tanous | 6dbe9be | 2024-04-14 10:24:20 -0700 | [diff] [blame] | 20 | } |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 21 | |
Ed Tanous | 3112a14 | 2018-11-29 15:45:10 -0800 | [diff] [blame] | 22 | #include <boost/asio/ssl/context.hpp> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 23 | |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 24 | #include <optional> |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 25 | #include <random> |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 26 | #include <string> |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 27 | |
| 28 | namespace ensuressl |
| 29 | { |
Patrick Williams | 89492a1 | 2023-05-10 07:51:34 -0500 | [diff] [blame] | 30 | constexpr const char* trustStorePath = "/etc/ssl/certs/authority"; |
| 31 | constexpr const char* x509Comment = "Generated from OpenBMC service"; |
Ed Tanous | 55c7b7a | 2018-05-22 15:27:24 -0700 | [diff] [blame] | 32 | static void initOpenssl(); |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 33 | static EVP_PKEY* createEcKey(); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 34 | |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 35 | // Trust chain related errors.` |
| 36 | inline bool isTrustChainError(int errnum) |
| 37 | { |
Ed Tanous | 55f79e6 | 2022-01-25 11:26:16 -0800 | [diff] [blame] | 38 | return (errnum == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT) || |
| 39 | (errnum == X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN) || |
| 40 | (errnum == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY) || |
| 41 | (errnum == X509_V_ERR_CERT_UNTRUSTED) || |
| 42 | (errnum == X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE); |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 43 | } |
| 44 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 45 | inline bool validateCertificate(X509* const cert) |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 46 | { |
| 47 | // Create an empty X509_STORE structure for certificate validation. |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 48 | X509_STORE* x509Store = X509_STORE_new(); |
Ed Tanous | e662eae | 2022-01-25 10:39:19 -0800 | [diff] [blame] | 49 | if (x509Store == nullptr) |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 50 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 51 | BMCWEB_LOG_ERROR("Error occurred during X509_STORE_new call"); |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 52 | return false; |
| 53 | } |
| 54 | |
| 55 | // Load Certificate file into the X509 structure. |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 56 | X509_STORE_CTX* storeCtx = X509_STORE_CTX_new(); |
Ed Tanous | e662eae | 2022-01-25 10:39:19 -0800 | [diff] [blame] | 57 | if (storeCtx == nullptr) |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 58 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 59 | BMCWEB_LOG_ERROR("Error occurred during X509_STORE_CTX_new call"); |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 60 | X509_STORE_free(x509Store); |
| 61 | return false; |
| 62 | } |
| 63 | |
Ed Tanous | 99131cd | 2019-10-24 11:12:47 -0700 | [diff] [blame] | 64 | int errCode = X509_STORE_CTX_init(storeCtx, x509Store, cert, nullptr); |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 65 | if (errCode != 1) |
| 66 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 67 | BMCWEB_LOG_ERROR("Error occurred during X509_STORE_CTX_init call"); |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 68 | X509_STORE_CTX_free(storeCtx); |
| 69 | X509_STORE_free(x509Store); |
| 70 | return false; |
| 71 | } |
| 72 | |
| 73 | errCode = X509_verify_cert(storeCtx); |
| 74 | if (errCode == 1) |
| 75 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 76 | BMCWEB_LOG_INFO("Certificate verification is success"); |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 77 | X509_STORE_CTX_free(storeCtx); |
| 78 | X509_STORE_free(x509Store); |
| 79 | return true; |
| 80 | } |
| 81 | if (errCode == 0) |
| 82 | { |
| 83 | errCode = X509_STORE_CTX_get_error(storeCtx); |
| 84 | X509_STORE_CTX_free(storeCtx); |
| 85 | X509_STORE_free(x509Store); |
| 86 | if (isTrustChainError(errCode)) |
| 87 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 88 | BMCWEB_LOG_DEBUG("Ignoring Trust Chain error. Reason: {}", |
| 89 | X509_verify_cert_error_string(errCode)); |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 90 | return true; |
| 91 | } |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 92 | BMCWEB_LOG_ERROR("Certificate verification failed. Reason: {}", |
| 93 | X509_verify_cert_error_string(errCode)); |
Ed Tanous | 3174e4d | 2020-10-07 11:41:22 -0700 | [diff] [blame] | 94 | return false; |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 95 | } |
| 96 | |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 97 | BMCWEB_LOG_ERROR( |
| 98 | "Error occurred during X509_verify_cert call. ErrorCode: {}", errCode); |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 99 | X509_STORE_CTX_free(storeCtx); |
| 100 | X509_STORE_free(x509Store); |
| 101 | return false; |
| 102 | } |
| 103 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 104 | inline bool verifyOpensslKeyCert(const std::string& filepath) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 105 | { |
| 106 | bool privateKeyValid = false; |
| 107 | bool certValid = false; |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 108 | |
Ed Tanous | c160ae7 | 2024-03-27 18:45:20 -0700 | [diff] [blame] | 109 | BMCWEB_LOG_INFO("Checking certs in file {}", filepath); |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 110 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 111 | FILE* file = fopen(filepath.c_str(), "r"); |
Ed Tanous | 99131cd | 2019-10-24 11:12:47 -0700 | [diff] [blame] | 112 | if (file != nullptr) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 113 | { |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 114 | EVP_PKEY* pkey = PEM_read_PrivateKey(file, nullptr, nullptr, nullptr); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 115 | if (pkey != nullptr) |
| 116 | { |
Patrick Williams | 145bb76 | 2021-12-07 21:05:04 -0600 | [diff] [blame] | 117 | #if (OPENSSL_VERSION_NUMBER < 0x30000000L) |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 118 | RSA* rsa = EVP_PKEY_get1_RSA(pkey); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 119 | if (rsa != nullptr) |
| 120 | { |
Ed Tanous | c160ae7 | 2024-03-27 18:45:20 -0700 | [diff] [blame] | 121 | BMCWEB_LOG_INFO("Found an RSA key"); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 122 | if (RSA_check_key(rsa) == 1) |
| 123 | { |
Jayanth Othayoth | 4d2849a | 2019-05-13 01:46:34 -0500 | [diff] [blame] | 124 | privateKeyValid = true; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 125 | } |
| 126 | else |
| 127 | { |
Ed Tanous | c160ae7 | 2024-03-27 18:45:20 -0700 | [diff] [blame] | 128 | BMCWEB_LOG_ERROR("Key not valid error number {}", |
| 129 | ERR_get_error()); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 130 | } |
| 131 | RSA_free(rsa); |
| 132 | } |
| 133 | else |
| 134 | { |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 135 | EC_KEY* ec = EVP_PKEY_get1_EC_KEY(pkey); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 136 | if (ec != nullptr) |
| 137 | { |
Ed Tanous | c160ae7 | 2024-03-27 18:45:20 -0700 | [diff] [blame] | 138 | BMCWEB_LOG_INFO("Found an EC key"); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 139 | if (EC_KEY_check_key(ec) == 1) |
| 140 | { |
| 141 | privateKeyValid = true; |
| 142 | } |
| 143 | else |
| 144 | { |
Ed Tanous | c160ae7 | 2024-03-27 18:45:20 -0700 | [diff] [blame] | 145 | BMCWEB_LOG_ERROR("Key not valid error number {}", |
| 146 | ERR_get_error()); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 147 | } |
| 148 | EC_KEY_free(ec); |
| 149 | } |
| 150 | } |
Patrick Williams | 145bb76 | 2021-12-07 21:05:04 -0600 | [diff] [blame] | 151 | #else |
Patrick Williams | 89492a1 | 2023-05-10 07:51:34 -0500 | [diff] [blame] | 152 | EVP_PKEY_CTX* pkeyCtx = EVP_PKEY_CTX_new_from_pkey(nullptr, pkey, |
| 153 | nullptr); |
Patrick Williams | 145bb76 | 2021-12-07 21:05:04 -0600 | [diff] [blame] | 154 | |
Ed Tanous | e662eae | 2022-01-25 10:39:19 -0800 | [diff] [blame] | 155 | if (pkeyCtx == nullptr) |
Patrick Williams | 145bb76 | 2021-12-07 21:05:04 -0600 | [diff] [blame] | 156 | { |
Ed Tanous | c160ae7 | 2024-03-27 18:45:20 -0700 | [diff] [blame] | 157 | BMCWEB_LOG_ERROR("Unable to allocate pkeyCtx {}", |
| 158 | ERR_get_error()); |
Patrick Williams | 145bb76 | 2021-12-07 21:05:04 -0600 | [diff] [blame] | 159 | } |
Gunnar Mills | 91359f9 | 2022-01-04 14:50:18 -0600 | [diff] [blame] | 160 | else if (EVP_PKEY_check(pkeyCtx) == 1) |
Patrick Williams | 145bb76 | 2021-12-07 21:05:04 -0600 | [diff] [blame] | 161 | { |
| 162 | privateKeyValid = true; |
| 163 | } |
| 164 | else |
| 165 | { |
Ed Tanous | c160ae7 | 2024-03-27 18:45:20 -0700 | [diff] [blame] | 166 | BMCWEB_LOG_ERROR("Key not valid error number {}", |
| 167 | ERR_get_error()); |
Patrick Williams | 145bb76 | 2021-12-07 21:05:04 -0600 | [diff] [blame] | 168 | } |
| 169 | #endif |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 170 | |
| 171 | if (privateKeyValid) |
| 172 | { |
Ramesh Iyyar | c0bf893 | 2019-06-22 00:23:29 -0500 | [diff] [blame] | 173 | // If the order is certificate followed by key in input file |
| 174 | // then, certificate read will fail. So, setting the file |
| 175 | // pointer to point beginning of file to avoid certificate and |
| 176 | // key order issue. |
| 177 | fseek(file, 0, SEEK_SET); |
| 178 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 179 | X509* x509 = PEM_read_X509(file, nullptr, nullptr, nullptr); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 180 | if (x509 == nullptr) |
| 181 | { |
Ed Tanous | c160ae7 | 2024-03-27 18:45:20 -0700 | [diff] [blame] | 182 | BMCWEB_LOG_ERROR("error getting x509 cert {}", |
| 183 | ERR_get_error()); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 184 | } |
| 185 | else |
| 186 | { |
Ramesh Iyyar | 082f28f | 2019-06-22 03:31:55 -0500 | [diff] [blame] | 187 | certValid = validateCertificate(x509); |
| 188 | X509_free(x509); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 189 | } |
| 190 | } |
| 191 | |
Patrick Williams | 145bb76 | 2021-12-07 21:05:04 -0600 | [diff] [blame] | 192 | #if (OPENSSL_VERSION_NUMBER > 0x30000000L) |
Gunnar Mills | 91359f9 | 2022-01-04 14:50:18 -0600 | [diff] [blame] | 193 | EVP_PKEY_CTX_free(pkeyCtx); |
Patrick Williams | 145bb76 | 2021-12-07 21:05:04 -0600 | [diff] [blame] | 194 | #endif |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 195 | EVP_PKEY_free(pkey); |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 196 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 197 | fclose(file); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 198 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 199 | return certValid; |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 200 | } |
| 201 | |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 202 | inline X509* loadCert(const std::string& filePath) |
| 203 | { |
| 204 | BIO* certFileBio = BIO_new_file(filePath.c_str(), "rb"); |
Ed Tanous | e662eae | 2022-01-25 10:39:19 -0800 | [diff] [blame] | 205 | if (certFileBio == nullptr) |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 206 | { |
Ed Tanous | 8ece0e4 | 2024-01-02 13:16:50 -0800 | [diff] [blame] | 207 | BMCWEB_LOG_ERROR("Error occurred during BIO_new_file call, FILE= {}", |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 208 | filePath); |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 209 | return nullptr; |
| 210 | } |
| 211 | |
| 212 | X509* cert = X509_new(); |
Ed Tanous | e662eae | 2022-01-25 10:39:19 -0800 | [diff] [blame] | 213 | if (cert == nullptr) |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 214 | { |
Ed Tanous | 8ece0e4 | 2024-01-02 13:16:50 -0800 | [diff] [blame] | 215 | BMCWEB_LOG_ERROR("Error occurred during X509_new call, {}", |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 216 | ERR_get_error()); |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 217 | BIO_free(certFileBio); |
| 218 | return nullptr; |
| 219 | } |
| 220 | |
Ed Tanous | e662eae | 2022-01-25 10:39:19 -0800 | [diff] [blame] | 221 | if (PEM_read_bio_X509(certFileBio, &cert, nullptr, nullptr) == nullptr) |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 222 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 223 | BMCWEB_LOG_ERROR( |
Ed Tanous | 8ece0e4 | 2024-01-02 13:16:50 -0800 | [diff] [blame] | 224 | "Error occurred during PEM_read_bio_X509 call, FILE= {}", filePath); |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 225 | |
| 226 | BIO_free(certFileBio); |
| 227 | X509_free(cert); |
| 228 | return nullptr; |
| 229 | } |
Alan Kuo | b295bf9 | 2021-04-16 14:16:47 +0800 | [diff] [blame] | 230 | BIO_free(certFileBio); |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 231 | return cert; |
| 232 | } |
| 233 | |
| 234 | inline int addExt(X509* cert, int nid, const char* value) |
| 235 | { |
| 236 | X509_EXTENSION* ex = nullptr; |
Ed Tanous | b00dcc2 | 2021-02-23 12:52:50 -0800 | [diff] [blame] | 237 | X509V3_CTX ctx{}; |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 238 | X509V3_set_ctx(&ctx, cert, cert, nullptr, nullptr, 0); |
Ed Tanous | 4ecc618 | 2022-01-07 09:36:26 -0800 | [diff] [blame] | 239 | |
| 240 | // NOLINTNEXTLINE(cppcoreguidelines-pro-type-const-cast) |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 241 | ex = X509V3_EXT_conf_nid(nullptr, &ctx, nid, const_cast<char*>(value)); |
Ed Tanous | e662eae | 2022-01-25 10:39:19 -0800 | [diff] [blame] | 242 | if (ex == nullptr) |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 243 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 244 | BMCWEB_LOG_ERROR("Error: In X509V3_EXT_conf_nidn: {}", value); |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 245 | return -1; |
| 246 | } |
| 247 | X509_add_ext(cert, ex, -1); |
| 248 | X509_EXTENSION_free(ex); |
| 249 | return 0; |
| 250 | } |
| 251 | |
| 252 | inline void generateSslCertificate(const std::string& filepath, |
| 253 | const std::string& cn) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 254 | { |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 255 | FILE* pFile = nullptr; |
Ed Tanous | c160ae7 | 2024-03-27 18:45:20 -0700 | [diff] [blame] | 256 | BMCWEB_LOG_INFO("Generating new keys"); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 257 | initOpenssl(); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 258 | |
Ed Tanous | c160ae7 | 2024-03-27 18:45:20 -0700 | [diff] [blame] | 259 | BMCWEB_LOG_INFO("Generating EC key"); |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 260 | EVP_PKEY* pPrivKey = createEcKey(); |
Vernon Mauery | 0185c7f | 2020-03-09 10:56:53 -0700 | [diff] [blame] | 261 | if (pPrivKey != nullptr) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 262 | { |
Ed Tanous | c160ae7 | 2024-03-27 18:45:20 -0700 | [diff] [blame] | 263 | BMCWEB_LOG_INFO("Generating x509 Certificates"); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 264 | // Use this code to directly generate a certificate |
Ed Tanous | 543f440 | 2022-01-06 13:12:53 -0800 | [diff] [blame] | 265 | X509* x509 = X509_new(); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 266 | if (x509 != nullptr) |
| 267 | { |
| 268 | // get a random number from the RNG for the certificate serial |
Ed Tanous | 8ece0e4 | 2024-01-02 13:16:50 -0800 | [diff] [blame] | 269 | // number If this is not random, regenerating certs throws browser |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 270 | // errors |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 271 | bmcweb::OpenSSLGenerator gen; |
| 272 | std::uniform_int_distribution<int> dis( |
| 273 | 1, std::numeric_limits<int>::max()); |
| 274 | int serial = dis(gen); |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 275 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 276 | ASN1_INTEGER_set(X509_get_serialNumber(x509), serial); |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 277 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 278 | // not before this moment |
| 279 | X509_gmtime_adj(X509_get_notBefore(x509), 0); |
| 280 | // Cert is valid for 10 years |
| 281 | X509_gmtime_adj(X509_get_notAfter(x509), |
| 282 | 60L * 60L * 24L * 365L * 10L); |
Ed Tanous | 9b65f1f | 2017-03-07 15:17:13 -0800 | [diff] [blame] | 283 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 284 | // set the public key to the key we just generated |
Vernon Mauery | 0185c7f | 2020-03-09 10:56:53 -0700 | [diff] [blame] | 285 | X509_set_pubkey(x509, pPrivKey); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 286 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 287 | // get the subject name |
Ed Tanous | 543f440 | 2022-01-06 13:12:53 -0800 | [diff] [blame] | 288 | X509_NAME* name = X509_get_subject_name(x509); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 289 | |
Ed Tanous | 46ff87b | 2022-01-07 09:25:51 -0800 | [diff] [blame] | 290 | using x509String = const unsigned char; |
| 291 | // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast) |
| 292 | x509String* country = reinterpret_cast<x509String*>("US"); |
| 293 | // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast) |
| 294 | x509String* company = reinterpret_cast<x509String*>("OpenBMC"); |
| 295 | // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast) |
| 296 | x509String* cnStr = reinterpret_cast<x509String*>(cn.c_str()); |
| 297 | |
| 298 | X509_NAME_add_entry_by_txt(name, "C", MBSTRING_ASC, country, -1, -1, |
| 299 | 0); |
| 300 | X509_NAME_add_entry_by_txt(name, "O", MBSTRING_ASC, company, -1, -1, |
| 301 | 0); |
| 302 | X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, cnStr, -1, -1, |
| 303 | 0); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 304 | // set the CSR options |
| 305 | X509_set_issuer_name(x509, name); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 306 | |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 307 | X509_set_version(x509, 2); |
| 308 | addExt(x509, NID_basic_constraints, ("critical,CA:TRUE")); |
| 309 | addExt(x509, NID_subject_alt_name, ("DNS:" + cn).c_str()); |
| 310 | addExt(x509, NID_subject_key_identifier, ("hash")); |
| 311 | addExt(x509, NID_authority_key_identifier, ("keyid")); |
| 312 | addExt(x509, NID_key_usage, ("digitalSignature, keyEncipherment")); |
| 313 | addExt(x509, NID_ext_key_usage, ("serverAuth")); |
| 314 | addExt(x509, NID_netscape_comment, (x509Comment)); |
| 315 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 316 | // Sign the certificate with our private key |
Vernon Mauery | 0185c7f | 2020-03-09 10:56:53 -0700 | [diff] [blame] | 317 | X509_sign(x509, pPrivKey, EVP_sha256()); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 318 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 319 | pFile = fopen(filepath.c_str(), "wt"); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 320 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 321 | if (pFile != nullptr) |
| 322 | { |
Vernon Mauery | 0185c7f | 2020-03-09 10:56:53 -0700 | [diff] [blame] | 323 | PEM_write_PrivateKey(pFile, pPrivKey, nullptr, nullptr, 0, |
Ed Tanous | 99131cd | 2019-10-24 11:12:47 -0700 | [diff] [blame] | 324 | nullptr, nullptr); |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 325 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 326 | PEM_write_X509(pFile, x509); |
| 327 | fclose(pFile); |
Ed Tanous | 99131cd | 2019-10-24 11:12:47 -0700 | [diff] [blame] | 328 | pFile = nullptr; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 329 | } |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 330 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 331 | X509_free(x509); |
| 332 | } |
| 333 | |
Vernon Mauery | 0185c7f | 2020-03-09 10:56:53 -0700 | [diff] [blame] | 334 | EVP_PKEY_free(pPrivKey); |
| 335 | pPrivKey = nullptr; |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 336 | } |
| 337 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 338 | // cleanup_openssl(); |
Ed Tanous | 9992332 | 2017-03-03 14:21:24 -0800 | [diff] [blame] | 339 | } |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 340 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 341 | EVP_PKEY* createEcKey() |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 342 | { |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 343 | EVP_PKEY* pKey = nullptr; |
Patrick Williams | aec7066 | 2021-12-13 16:55:46 -0600 | [diff] [blame] | 344 | |
| 345 | #if (OPENSSL_VERSION_NUMBER < 0x30000000L) |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 346 | int eccgrp = 0; |
Vernon Mauery | aaf3206 | 2020-03-09 10:41:31 -0700 | [diff] [blame] | 347 | eccgrp = OBJ_txt2nid("secp384r1"); |
Ed Tanous | 6ea007a | 2019-02-13 22:48:25 -0800 | [diff] [blame] | 348 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 349 | EC_KEY* myecc = EC_KEY_new_by_curve_name(eccgrp); |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 350 | if (myecc != nullptr) |
Ed Tanous | 6ea007a | 2019-02-13 22:48:25 -0800 | [diff] [blame] | 351 | { |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 352 | EC_KEY_set_asn1_flag(myecc, OPENSSL_EC_NAMED_CURVE); |
| 353 | EC_KEY_generate_key(myecc); |
| 354 | pKey = EVP_PKEY_new(); |
| 355 | if (pKey != nullptr) |
| 356 | { |
Szymon Dompke | a327dc5 | 2022-03-01 14:04:14 +0100 | [diff] [blame] | 357 | if (EVP_PKEY_assign(pKey, EVP_PKEY_EC, myecc) != 0) |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 358 | { |
Vernon Mauery | 0185c7f | 2020-03-09 10:56:53 -0700 | [diff] [blame] | 359 | /* pKey owns myecc from now */ |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 360 | if (EC_KEY_check_key(myecc) <= 0) |
| 361 | { |
Ed Tanous | c160ae7 | 2024-03-27 18:45:20 -0700 | [diff] [blame] | 362 | BMCWEB_LOG_ERROR("EC_check_key failed."); |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 363 | } |
| 364 | } |
| 365 | } |
Ed Tanous | 6ea007a | 2019-02-13 22:48:25 -0800 | [diff] [blame] | 366 | } |
Patrick Williams | aec7066 | 2021-12-13 16:55:46 -0600 | [diff] [blame] | 367 | #else |
| 368 | // Create context for curve parameter generation. |
| 369 | std::unique_ptr<EVP_PKEY_CTX, decltype(&::EVP_PKEY_CTX_free)> ctx{ |
| 370 | EVP_PKEY_CTX_new_id(EVP_PKEY_EC, nullptr), &::EVP_PKEY_CTX_free}; |
| 371 | if (!ctx) |
| 372 | { |
| 373 | return nullptr; |
| 374 | } |
| 375 | |
| 376 | // Set up curve parameters. |
| 377 | EVP_PKEY* params = nullptr; |
| 378 | if ((EVP_PKEY_paramgen_init(ctx.get()) <= 0) || |
| 379 | (EVP_PKEY_CTX_set_ec_param_enc(ctx.get(), OPENSSL_EC_NAMED_CURVE) <= |
| 380 | 0) || |
| 381 | (EVP_PKEY_CTX_set_ec_paramgen_curve_nid(ctx.get(), NID_secp384r1) <= |
| 382 | 0) || |
| 383 | (EVP_PKEY_paramgen(ctx.get(), ¶ms) <= 0)) |
| 384 | { |
| 385 | return nullptr; |
| 386 | } |
| 387 | |
| 388 | // Set up RAII holder for params. |
| 389 | std::unique_ptr<EVP_PKEY, decltype(&::EVP_PKEY_free)> pparams{ |
| 390 | params, &::EVP_PKEY_free}; |
| 391 | |
| 392 | // Set new context for key generation, using curve parameters. |
| 393 | ctx.reset(EVP_PKEY_CTX_new_from_pkey(nullptr, params, nullptr)); |
| 394 | if (!ctx || (EVP_PKEY_keygen_init(ctx.get()) <= 0)) |
| 395 | { |
| 396 | return nullptr; |
| 397 | } |
| 398 | |
| 399 | // Generate key. |
| 400 | if (EVP_PKEY_keygen(ctx.get(), &pKey) <= 0) |
| 401 | { |
| 402 | return nullptr; |
| 403 | } |
| 404 | #endif |
| 405 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 406 | return pKey; |
| 407 | } |
| 408 | |
| 409 | void initOpenssl() |
| 410 | { |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 411 | #if OPENSSL_VERSION_NUMBER < 0x10100000L |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 412 | SSL_load_error_strings(); |
| 413 | OpenSSL_add_all_algorithms(); |
| 414 | RAND_load_file("/dev/urandom", 1024); |
Ed Tanous | a1e077c | 2017-04-25 12:42:19 -0700 | [diff] [blame] | 415 | #endif |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 416 | } |
| 417 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 418 | inline void ensureOpensslKeyPresentAndValid(const std::string& filepath) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 419 | { |
| 420 | bool pemFileValid = false; |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 421 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 422 | pemFileValid = verifyOpensslKeyCert(filepath); |
Ed Tanous | 1ccd57c | 2017-03-21 13:15:58 -0700 | [diff] [blame] | 423 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 424 | if (!pemFileValid) |
| 425 | { |
Ed Tanous | c160ae7 | 2024-03-27 18:45:20 -0700 | [diff] [blame] | 426 | BMCWEB_LOG_WARNING("Error in verifying signature, regenerating"); |
Alan Kuo | a822070 | 2020-11-26 11:15:29 +0800 | [diff] [blame] | 427 | generateSslCertificate(filepath, "testhost"); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 428 | } |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 429 | } |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 430 | |
Ed Tanous | fca2cbe | 2021-01-28 14:49:59 -0800 | [diff] [blame] | 431 | inline int nextProtoCallback(SSL* /*unused*/, const unsigned char** data, |
| 432 | unsigned int* len, void* /*unused*/) |
| 433 | { |
| 434 | // First byte is the length. |
| 435 | constexpr std::string_view h2 = "\x02h2"; |
| 436 | *data = std::bit_cast<const unsigned char*>(h2.data()); |
| 437 | *len = static_cast<unsigned int>(h2.size()); |
| 438 | return SSL_TLSEXT_ERR_OK; |
| 439 | } |
| 440 | |
| 441 | inline int alpnSelectProtoCallback(SSL* /*unused*/, const unsigned char** out, |
| 442 | unsigned char* outlen, |
| 443 | const unsigned char* in, unsigned int inlen, |
| 444 | void* /*unused*/) |
| 445 | { |
| 446 | // There's a mismatch in constness for nghttp2_select_next_protocol. The |
| 447 | // examples in nghttp2 don't show this problem. Unclear what the right fix |
| 448 | // is here. |
| 449 | |
| 450 | // NOLINTNEXTLINE(cppcoreguidelines-pro-type-const-cast) |
| 451 | unsigned char** outNew = const_cast<unsigned char**>(out); |
| 452 | int rv = nghttp2_select_next_protocol(outNew, outlen, in, inlen); |
| 453 | if (rv != 1) |
| 454 | { |
| 455 | return SSL_TLSEXT_ERR_NOACK; |
| 456 | } |
| 457 | |
| 458 | return SSL_TLSEXT_ERR_OK; |
| 459 | } |
| 460 | |
Marri Devender Rao | 5968cae | 2019-01-21 10:27:12 -0600 | [diff] [blame] | 461 | inline std::shared_ptr<boost::asio::ssl::context> |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 462 | getSslContext(const std::string& sslPemFile) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 463 | { |
Marri Devender Rao | 5968cae | 2019-01-21 10:27:12 -0600 | [diff] [blame] | 464 | std::shared_ptr<boost::asio::ssl::context> mSslContext = |
| 465 | std::make_shared<boost::asio::ssl::context>( |
| 466 | boost::asio::ssl::context::tls_server); |
| 467 | mSslContext->set_options(boost::asio::ssl::context::default_workarounds | |
| 468 | boost::asio::ssl::context::no_sslv2 | |
| 469 | boost::asio::ssl::context::no_sslv3 | |
| 470 | boost::asio::ssl::context::single_dh_use | |
| 471 | boost::asio::ssl::context::no_tlsv1 | |
| 472 | boost::asio::ssl::context::no_tlsv1_1); |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 473 | |
James Feist | 91243c3 | 2019-11-12 14:55:40 -0800 | [diff] [blame] | 474 | // BIG WARNING: This needs to stay disabled, as there will always be |
| 475 | // unauthenticated endpoints |
| 476 | // mSslContext->set_verify_mode(boost::asio::ssl::verify_peer); |
Kowalski, Kamil | 55e43f6 | 2019-07-10 13:12:57 +0200 | [diff] [blame] | 477 | |
James Feist | 6a3e182 | 2019-11-06 13:46:35 -0800 | [diff] [blame] | 478 | SSL_CTX_set_options(mSslContext->native_handle(), SSL_OP_NO_RENEGOTIATION); |
| 479 | |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 480 | BMCWEB_LOG_DEBUG("Using default TrustStore location: {}", trustStorePath); |
Kowalski, Kamil | 55e43f6 | 2019-07-10 13:12:57 +0200 | [diff] [blame] | 481 | mSslContext->add_verify_path(trustStorePath); |
| 482 | |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 483 | mSslContext->use_certificate_file(sslPemFile, |
Marri Devender Rao | 5968cae | 2019-01-21 10:27:12 -0600 | [diff] [blame] | 484 | boost::asio::ssl::context::pem); |
Ed Tanous | 81ce609 | 2020-12-17 16:54:55 +0000 | [diff] [blame] | 485 | mSslContext->use_private_key_file(sslPemFile, |
Marri Devender Rao | 5968cae | 2019-01-21 10:27:12 -0600 | [diff] [blame] | 486 | boost::asio::ssl::context::pem); |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 487 | |
Ed Tanous | 25b54db | 2024-04-17 15:40:31 -0700 | [diff] [blame] | 488 | if constexpr (BMCWEB_EXPERIMENTAL_HTTP2) |
Ed Tanous | fca2cbe | 2021-01-28 14:49:59 -0800 | [diff] [blame] | 489 | { |
| 490 | SSL_CTX_set_next_protos_advertised_cb(mSslContext->native_handle(), |
| 491 | nextProtoCallback, nullptr); |
| 492 | |
| 493 | SSL_CTX_set_alpn_select_cb(mSslContext->native_handle(), |
| 494 | alpnSelectProtoCallback, nullptr); |
| 495 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 496 | // Set up EC curves to auto (boost asio doesn't have a method for this) |
| 497 | // There is a pull request to add this. Once this is included in an asio |
| 498 | // drop, use the right way |
| 499 | // http://stackoverflow.com/questions/18929049/boost-asio-with-ecdsa-certificate-issue |
Marri Devender Rao | 5968cae | 2019-01-21 10:27:12 -0600 | [diff] [blame] | 500 | if (SSL_CTX_set_ecdh_auto(mSslContext->native_handle(), 1) != 1) |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 501 | {} |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 502 | |
Ed Tanous | e96d7fb | 2023-06-14 14:53:29 -0700 | [diff] [blame] | 503 | // Mozilla intermediate cipher suites v5.7 |
| 504 | // Sourced from: https://ssl-config.mozilla.org/guidelines/5.7.json |
| 505 | const char* mozillaIntermediate = "ECDHE-ECDSA-AES128-GCM-SHA256:" |
| 506 | "ECDHE-RSA-AES128-GCM-SHA256:" |
| 507 | "ECDHE-ECDSA-AES256-GCM-SHA384:" |
| 508 | "ECDHE-RSA-AES256-GCM-SHA384:" |
| 509 | "ECDHE-ECDSA-CHACHA20-POLY1305:" |
| 510 | "ECDHE-RSA-CHACHA20-POLY1305:" |
| 511 | "DHE-RSA-AES128-GCM-SHA256:" |
| 512 | "DHE-RSA-AES256-GCM-SHA384:" |
| 513 | "DHE-RSA-CHACHA20-POLY1305"; |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 514 | |
Marri Devender Rao | 5968cae | 2019-01-21 10:27:12 -0600 | [diff] [blame] | 515 | if (SSL_CTX_set_cipher_list(mSslContext->native_handle(), |
Ed Tanous | e96d7fb | 2023-06-14 14:53:29 -0700 | [diff] [blame] | 516 | mozillaIntermediate) != 1) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 517 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 518 | BMCWEB_LOG_ERROR("Error setting cipher list"); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 519 | } |
| 520 | return mSslContext; |
Ed Tanous | c4771fb | 2017-03-13 13:39:49 -0700 | [diff] [blame] | 521 | } |
AppaRao Puli | e38778a | 2022-06-27 23:09:03 +0000 | [diff] [blame] | 522 | |
| 523 | inline std::optional<boost::asio::ssl::context> getSSLClientContext() |
| 524 | { |
| 525 | boost::asio::ssl::context sslCtx(boost::asio::ssl::context::tls_client); |
| 526 | |
| 527 | boost::system::error_code ec; |
| 528 | |
| 529 | // Support only TLS v1.2 & v1.3 |
| 530 | sslCtx.set_options(boost::asio::ssl::context::default_workarounds | |
| 531 | boost::asio::ssl::context::no_sslv2 | |
| 532 | boost::asio::ssl::context::no_sslv3 | |
| 533 | boost::asio::ssl::context::single_dh_use | |
| 534 | boost::asio::ssl::context::no_tlsv1 | |
| 535 | boost::asio::ssl::context::no_tlsv1_1, |
| 536 | ec); |
| 537 | if (ec) |
| 538 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 539 | BMCWEB_LOG_ERROR("SSL context set_options failed"); |
AppaRao Puli | e38778a | 2022-06-27 23:09:03 +0000 | [diff] [blame] | 540 | return std::nullopt; |
| 541 | } |
| 542 | |
| 543 | // Add a directory containing certificate authority files to be used |
| 544 | // for performing verification. |
| 545 | sslCtx.set_default_verify_paths(ec); |
| 546 | if (ec) |
| 547 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 548 | BMCWEB_LOG_ERROR("SSL context set_default_verify failed"); |
AppaRao Puli | e38778a | 2022-06-27 23:09:03 +0000 | [diff] [blame] | 549 | return std::nullopt; |
| 550 | } |
| 551 | |
| 552 | // Verify the remote server's certificate |
| 553 | sslCtx.set_verify_mode(boost::asio::ssl::verify_peer, ec); |
| 554 | if (ec) |
| 555 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 556 | BMCWEB_LOG_ERROR("SSL context set_verify_mode failed"); |
AppaRao Puli | e38778a | 2022-06-27 23:09:03 +0000 | [diff] [blame] | 557 | return std::nullopt; |
| 558 | } |
| 559 | |
| 560 | // All cipher suites are set as per OWASP datasheet. |
| 561 | // https://cheatsheetseries.owasp.org/cheatsheets/TLS_Cipher_String_Cheat_Sheet.html |
| 562 | constexpr const char* sslCiphers = "ECDHE-ECDSA-AES128-GCM-SHA256:" |
| 563 | "ECDHE-RSA-AES128-GCM-SHA256:" |
| 564 | "ECDHE-ECDSA-AES256-GCM-SHA384:" |
| 565 | "ECDHE-RSA-AES256-GCM-SHA384:" |
| 566 | "ECDHE-ECDSA-CHACHA20-POLY1305:" |
| 567 | "ECDHE-RSA-CHACHA20-POLY1305:" |
| 568 | "DHE-RSA-AES128-GCM-SHA256:" |
| 569 | "DHE-RSA-AES256-GCM-SHA384" |
| 570 | "TLS_AES_128_GCM_SHA256:" |
| 571 | "TLS_AES_256_GCM_SHA384:" |
| 572 | "TLS_CHACHA20_POLY1305_SHA256"; |
| 573 | |
| 574 | if (SSL_CTX_set_cipher_list(sslCtx.native_handle(), sslCiphers) != 1) |
| 575 | { |
Ed Tanous | 62598e3 | 2023-07-17 17:06:25 -0700 | [diff] [blame] | 576 | BMCWEB_LOG_ERROR("SSL_CTX_set_cipher_list failed"); |
AppaRao Puli | e38778a | 2022-06-27 23:09:03 +0000 | [diff] [blame] | 577 | return std::nullopt; |
| 578 | } |
| 579 | |
| 580 | return sslCtx; |
| 581 | } |
| 582 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 583 | } // namespace ensuressl |