blob: 431dd84d3ac98adb2746445a66f3b42c20c8a061 [file] [log] [blame]
Ed Tanous0fdddb12017-02-28 11:06:34 -08001#pragma once
2
3#include <openssl/bio.h>
4#include <openssl/dh.h>
5#include <openssl/dsa.h>
Ed Tanous0fdddb12017-02-28 11:06:34 -08006#include <openssl/err.h>
7#include <openssl/evp.h>
8#include <openssl/pem.h>
9#include <openssl/rand.h>
10#include <openssl/rsa.h>
11#include <openssl/ssl.h>
Ed Tanous9b65f1f2017-03-07 15:17:13 -080012
Ed Tanous3112a142018-11-29 15:45:10 -080013#include <boost/asio/ssl/context.hpp>
Nan Zhou97128e92021-08-17 12:01:55 -070014#include <random.hpp>
Gunnar Mills1214b7e2020-06-04 10:11:30 -050015
Ed Tanous1abe55e2018-09-05 08:30:59 -070016#include <random>
17
18namespace ensuressl
19{
Gunnar Mills1214b7e2020-06-04 10:11:30 -050020constexpr char const* trustStorePath = "/etc/ssl/certs/authority";
Alan Kuoa8220702020-11-26 11:15:29 +080021constexpr char const* x509Comment = "Generated from OpenBMC service";
Ed Tanous55c7b7a2018-05-22 15:27:24 -070022static void initOpenssl();
Gunnar Mills1214b7e2020-06-04 10:11:30 -050023static EVP_PKEY* createEcKey();
Ed Tanous0fdddb12017-02-28 11:06:34 -080024
Ramesh Iyyar082f28f2019-06-22 03:31:55 -050025// Trust chain related errors.`
26inline bool isTrustChainError(int errnum)
27{
Ed Tanous55f79e62022-01-25 11:26:16 -080028 return (errnum == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT) ||
29 (errnum == X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN) ||
30 (errnum == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY) ||
31 (errnum == X509_V_ERR_CERT_UNTRUSTED) ||
32 (errnum == X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE);
Ramesh Iyyar082f28f2019-06-22 03:31:55 -050033}
34
Gunnar Mills1214b7e2020-06-04 10:11:30 -050035inline bool validateCertificate(X509* const cert)
Ramesh Iyyar082f28f2019-06-22 03:31:55 -050036{
37 // Create an empty X509_STORE structure for certificate validation.
Gunnar Mills1214b7e2020-06-04 10:11:30 -050038 X509_STORE* x509Store = X509_STORE_new();
Ed Tanouse662eae2022-01-25 10:39:19 -080039 if (x509Store == nullptr)
Ramesh Iyyar082f28f2019-06-22 03:31:55 -050040 {
Gunnar Millsc61704a2020-07-08 13:47:06 -050041 BMCWEB_LOG_ERROR << "Error occurred during X509_STORE_new call";
Ramesh Iyyar082f28f2019-06-22 03:31:55 -050042 return false;
43 }
44
45 // Load Certificate file into the X509 structure.
Gunnar Mills1214b7e2020-06-04 10:11:30 -050046 X509_STORE_CTX* storeCtx = X509_STORE_CTX_new();
Ed Tanouse662eae2022-01-25 10:39:19 -080047 if (storeCtx == nullptr)
Ramesh Iyyar082f28f2019-06-22 03:31:55 -050048 {
Gunnar Millsc61704a2020-07-08 13:47:06 -050049 BMCWEB_LOG_ERROR << "Error occurred during X509_STORE_CTX_new call";
Ramesh Iyyar082f28f2019-06-22 03:31:55 -050050 X509_STORE_free(x509Store);
51 return false;
52 }
53
Ed Tanous99131cd2019-10-24 11:12:47 -070054 int errCode = X509_STORE_CTX_init(storeCtx, x509Store, cert, nullptr);
Ramesh Iyyar082f28f2019-06-22 03:31:55 -050055 if (errCode != 1)
56 {
Gunnar Millsc61704a2020-07-08 13:47:06 -050057 BMCWEB_LOG_ERROR << "Error occurred during X509_STORE_CTX_init call";
Ramesh Iyyar082f28f2019-06-22 03:31:55 -050058 X509_STORE_CTX_free(storeCtx);
59 X509_STORE_free(x509Store);
60 return false;
61 }
62
63 errCode = X509_verify_cert(storeCtx);
64 if (errCode == 1)
65 {
66 BMCWEB_LOG_INFO << "Certificate verification is success";
67 X509_STORE_CTX_free(storeCtx);
68 X509_STORE_free(x509Store);
69 return true;
70 }
71 if (errCode == 0)
72 {
73 errCode = X509_STORE_CTX_get_error(storeCtx);
74 X509_STORE_CTX_free(storeCtx);
75 X509_STORE_free(x509Store);
76 if (isTrustChainError(errCode))
77 {
78 BMCWEB_LOG_DEBUG << "Ignoring Trust Chain error. Reason: "
79 << X509_verify_cert_error_string(errCode);
80 return true;
81 }
Ed Tanous3174e4d2020-10-07 11:41:22 -070082 BMCWEB_LOG_ERROR << "Certificate verification failed. Reason: "
83 << X509_verify_cert_error_string(errCode);
84 return false;
Ramesh Iyyar082f28f2019-06-22 03:31:55 -050085 }
86
87 BMCWEB_LOG_ERROR
Gunnar Millsc61704a2020-07-08 13:47:06 -050088 << "Error occurred during X509_verify_cert call. ErrorCode: "
89 << errCode;
Ramesh Iyyar082f28f2019-06-22 03:31:55 -050090 X509_STORE_CTX_free(storeCtx);
91 X509_STORE_free(x509Store);
92 return false;
93}
94
Gunnar Mills1214b7e2020-06-04 10:11:30 -050095inline bool verifyOpensslKeyCert(const std::string& filepath)
Ed Tanous1abe55e2018-09-05 08:30:59 -070096{
97 bool privateKeyValid = false;
98 bool certValid = false;
Ed Tanous9b65f1f2017-03-07 15:17:13 -080099
Ed Tanous1abe55e2018-09-05 08:30:59 -0700100 std::cout << "Checking certs in file " << filepath << "\n";
Ed Tanous9b65f1f2017-03-07 15:17:13 -0800101
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500102 FILE* file = fopen(filepath.c_str(), "r");
Ed Tanous99131cd2019-10-24 11:12:47 -0700103 if (file != nullptr)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700104 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500105 EVP_PKEY* pkey = PEM_read_PrivateKey(file, nullptr, nullptr, nullptr);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700106 if (pkey != nullptr)
107 {
Patrick Williams145bb762021-12-07 21:05:04 -0600108#if (OPENSSL_VERSION_NUMBER < 0x30000000L)
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500109 RSA* rsa = EVP_PKEY_get1_RSA(pkey);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700110 if (rsa != nullptr)
111 {
112 std::cout << "Found an RSA key\n";
113 if (RSA_check_key(rsa) == 1)
114 {
Jayanth Othayoth4d2849a2019-05-13 01:46:34 -0500115 privateKeyValid = true;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700116 }
117 else
118 {
119 std::cerr << "Key not valid error number "
120 << ERR_get_error() << "\n";
121 }
122 RSA_free(rsa);
123 }
124 else
125 {
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500126 EC_KEY* ec = EVP_PKEY_get1_EC_KEY(pkey);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700127 if (ec != nullptr)
128 {
129 std::cout << "Found an EC key\n";
130 if (EC_KEY_check_key(ec) == 1)
131 {
132 privateKeyValid = true;
133 }
134 else
135 {
136 std::cerr << "Key not valid error number "
137 << ERR_get_error() << "\n";
138 }
139 EC_KEY_free(ec);
140 }
141 }
Patrick Williams145bb762021-12-07 21:05:04 -0600142#else
Gunnar Mills91359f92022-01-04 14:50:18 -0600143 EVP_PKEY_CTX* pkeyCtx =
Patrick Williams145bb762021-12-07 21:05:04 -0600144 EVP_PKEY_CTX_new_from_pkey(nullptr, pkey, nullptr);
145
Ed Tanouse662eae2022-01-25 10:39:19 -0800146 if (pkeyCtx == nullptr)
Patrick Williams145bb762021-12-07 21:05:04 -0600147 {
Gunnar Mills91359f92022-01-04 14:50:18 -0600148 std::cerr << "Unable to allocate pkeyCtx " << ERR_get_error()
Patrick Williams145bb762021-12-07 21:05:04 -0600149 << "\n";
150 }
Gunnar Mills91359f92022-01-04 14:50:18 -0600151 else if (EVP_PKEY_check(pkeyCtx) == 1)
Patrick Williams145bb762021-12-07 21:05:04 -0600152 {
153 privateKeyValid = true;
154 }
155 else
156 {
157
158 std::cerr << "Key not valid error number " << ERR_get_error()
159 << "\n";
160 }
161#endif
Ed Tanous1abe55e2018-09-05 08:30:59 -0700162
163 if (privateKeyValid)
164 {
Ramesh Iyyarc0bf8932019-06-22 00:23:29 -0500165 // If the order is certificate followed by key in input file
166 // then, certificate read will fail. So, setting the file
167 // pointer to point beginning of file to avoid certificate and
168 // key order issue.
169 fseek(file, 0, SEEK_SET);
170
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500171 X509* x509 = PEM_read_X509(file, nullptr, nullptr, nullptr);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700172 if (x509 == nullptr)
173 {
174 std::cout << "error getting x509 cert " << ERR_get_error()
175 << "\n";
176 }
177 else
178 {
Ramesh Iyyar082f28f2019-06-22 03:31:55 -0500179 certValid = validateCertificate(x509);
180 X509_free(x509);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700181 }
182 }
183
Patrick Williams145bb762021-12-07 21:05:04 -0600184#if (OPENSSL_VERSION_NUMBER > 0x30000000L)
Gunnar Mills91359f92022-01-04 14:50:18 -0600185 EVP_PKEY_CTX_free(pkeyCtx);
Patrick Williams145bb762021-12-07 21:05:04 -0600186#endif
Ed Tanous1abe55e2018-09-05 08:30:59 -0700187 EVP_PKEY_free(pkey);
Ed Tanous9b65f1f2017-03-07 15:17:13 -0800188 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700189 fclose(file);
Ed Tanous0fdddb12017-02-28 11:06:34 -0800190 }
Ed Tanous1abe55e2018-09-05 08:30:59 -0700191 return certValid;
Ed Tanous0fdddb12017-02-28 11:06:34 -0800192}
193
Alan Kuoa8220702020-11-26 11:15:29 +0800194inline X509* loadCert(const std::string& filePath)
195{
196 BIO* certFileBio = BIO_new_file(filePath.c_str(), "rb");
Ed Tanouse662eae2022-01-25 10:39:19 -0800197 if (certFileBio == nullptr)
Alan Kuoa8220702020-11-26 11:15:29 +0800198 {
199 BMCWEB_LOG_ERROR << "Error occured during BIO_new_file call, "
200 << "FILE= " << filePath;
201 return nullptr;
202 }
203
204 X509* cert = X509_new();
Ed Tanouse662eae2022-01-25 10:39:19 -0800205 if (cert == nullptr)
Alan Kuoa8220702020-11-26 11:15:29 +0800206 {
207 BMCWEB_LOG_ERROR << "Error occured during X509_new call, "
208 << ERR_get_error();
209 BIO_free(certFileBio);
210 return nullptr;
211 }
212
Ed Tanouse662eae2022-01-25 10:39:19 -0800213 if (PEM_read_bio_X509(certFileBio, &cert, nullptr, nullptr) == nullptr)
Alan Kuoa8220702020-11-26 11:15:29 +0800214 {
215 BMCWEB_LOG_ERROR << "Error occured during PEM_read_bio_X509 call, "
216 << "FILE= " << filePath;
217
218 BIO_free(certFileBio);
219 X509_free(cert);
220 return nullptr;
221 }
Alan Kuob295bf92021-04-16 14:16:47 +0800222 BIO_free(certFileBio);
Alan Kuoa8220702020-11-26 11:15:29 +0800223 return cert;
224}
225
226inline int addExt(X509* cert, int nid, const char* value)
227{
228 X509_EXTENSION* ex = nullptr;
Ed Tanousb00dcc22021-02-23 12:52:50 -0800229 X509V3_CTX ctx{};
Alan Kuoa8220702020-11-26 11:15:29 +0800230 X509V3_set_ctx(&ctx, cert, cert, nullptr, nullptr, 0);
Ed Tanous4ecc6182022-01-07 09:36:26 -0800231
232 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-const-cast)
Alan Kuoa8220702020-11-26 11:15:29 +0800233 ex = X509V3_EXT_conf_nid(nullptr, &ctx, nid, const_cast<char*>(value));
Ed Tanouse662eae2022-01-25 10:39:19 -0800234 if (ex == nullptr)
Alan Kuoa8220702020-11-26 11:15:29 +0800235 {
236 BMCWEB_LOG_ERROR << "Error: In X509V3_EXT_conf_nidn: " << value;
237 return -1;
238 }
239 X509_add_ext(cert, ex, -1);
240 X509_EXTENSION_free(ex);
241 return 0;
242}
243
244inline void generateSslCertificate(const std::string& filepath,
245 const std::string& cn)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700246{
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500247 FILE* pFile = nullptr;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700248 std::cout << "Generating new keys\n";
249 initOpenssl();
Ed Tanous0fdddb12017-02-28 11:06:34 -0800250
Ed Tanous1abe55e2018-09-05 08:30:59 -0700251 std::cerr << "Generating EC key\n";
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500252 EVP_PKEY* pPrivKey = createEcKey();
Vernon Mauery0185c7f2020-03-09 10:56:53 -0700253 if (pPrivKey != nullptr)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700254 {
255 std::cerr << "Generating x509 Certificate\n";
256 // Use this code to directly generate a certificate
Ed Tanous543f4402022-01-06 13:12:53 -0800257 X509* x509 = X509_new();
Ed Tanous1abe55e2018-09-05 08:30:59 -0700258 if (x509 != nullptr)
259 {
260 // get a random number from the RNG for the certificate serial
261 // number If this is not random, regenerating certs throws broswer
262 // errors
Alan Kuoa8220702020-11-26 11:15:29 +0800263 bmcweb::OpenSSLGenerator gen;
264 std::uniform_int_distribution<int> dis(
265 1, std::numeric_limits<int>::max());
266 int serial = dis(gen);
Ed Tanous9b65f1f2017-03-07 15:17:13 -0800267
Ed Tanous1abe55e2018-09-05 08:30:59 -0700268 ASN1_INTEGER_set(X509_get_serialNumber(x509), serial);
Ed Tanous9b65f1f2017-03-07 15:17:13 -0800269
Ed Tanous1abe55e2018-09-05 08:30:59 -0700270 // not before this moment
271 X509_gmtime_adj(X509_get_notBefore(x509), 0);
272 // Cert is valid for 10 years
273 X509_gmtime_adj(X509_get_notAfter(x509),
274 60L * 60L * 24L * 365L * 10L);
Ed Tanous9b65f1f2017-03-07 15:17:13 -0800275
Ed Tanous1abe55e2018-09-05 08:30:59 -0700276 // set the public key to the key we just generated
Vernon Mauery0185c7f2020-03-09 10:56:53 -0700277 X509_set_pubkey(x509, pPrivKey);
Ed Tanous0fdddb12017-02-28 11:06:34 -0800278
Ed Tanous1abe55e2018-09-05 08:30:59 -0700279 // get the subject name
Ed Tanous543f4402022-01-06 13:12:53 -0800280 X509_NAME* name = X509_get_subject_name(x509);
Ed Tanous0fdddb12017-02-28 11:06:34 -0800281
Ed Tanous46ff87b2022-01-07 09:25:51 -0800282 using x509String = const unsigned char;
283 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
284 x509String* country = reinterpret_cast<x509String*>("US");
285 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
286 x509String* company = reinterpret_cast<x509String*>("OpenBMC");
287 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
288 x509String* cnStr = reinterpret_cast<x509String*>(cn.c_str());
289
290 X509_NAME_add_entry_by_txt(name, "C", MBSTRING_ASC, country, -1, -1,
291 0);
292 X509_NAME_add_entry_by_txt(name, "O", MBSTRING_ASC, company, -1, -1,
293 0);
294 X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, cnStr, -1, -1,
295 0);
Ed Tanous1abe55e2018-09-05 08:30:59 -0700296 // set the CSR options
297 X509_set_issuer_name(x509, name);
Ed Tanous0fdddb12017-02-28 11:06:34 -0800298
Alan Kuoa8220702020-11-26 11:15:29 +0800299 X509_set_version(x509, 2);
300 addExt(x509, NID_basic_constraints, ("critical,CA:TRUE"));
301 addExt(x509, NID_subject_alt_name, ("DNS:" + cn).c_str());
302 addExt(x509, NID_subject_key_identifier, ("hash"));
303 addExt(x509, NID_authority_key_identifier, ("keyid"));
304 addExt(x509, NID_key_usage, ("digitalSignature, keyEncipherment"));
305 addExt(x509, NID_ext_key_usage, ("serverAuth"));
306 addExt(x509, NID_netscape_comment, (x509Comment));
307
Ed Tanous1abe55e2018-09-05 08:30:59 -0700308 // Sign the certificate with our private key
Vernon Mauery0185c7f2020-03-09 10:56:53 -0700309 X509_sign(x509, pPrivKey, EVP_sha256());
Ed Tanous0fdddb12017-02-28 11:06:34 -0800310
Ed Tanous1abe55e2018-09-05 08:30:59 -0700311 pFile = fopen(filepath.c_str(), "wt");
Ed Tanous0fdddb12017-02-28 11:06:34 -0800312
Ed Tanous1abe55e2018-09-05 08:30:59 -0700313 if (pFile != nullptr)
314 {
Vernon Mauery0185c7f2020-03-09 10:56:53 -0700315 PEM_write_PrivateKey(pFile, pPrivKey, nullptr, nullptr, 0,
Ed Tanous99131cd2019-10-24 11:12:47 -0700316 nullptr, nullptr);
Ed Tanous0fdddb12017-02-28 11:06:34 -0800317
Ed Tanous1abe55e2018-09-05 08:30:59 -0700318 PEM_write_X509(pFile, x509);
319 fclose(pFile);
Ed Tanous99131cd2019-10-24 11:12:47 -0700320 pFile = nullptr;
Ed Tanous1abe55e2018-09-05 08:30:59 -0700321 }
Ed Tanous0fdddb12017-02-28 11:06:34 -0800322
Ed Tanous1abe55e2018-09-05 08:30:59 -0700323 X509_free(x509);
324 }
325
Vernon Mauery0185c7f2020-03-09 10:56:53 -0700326 EVP_PKEY_free(pPrivKey);
327 pPrivKey = nullptr;
Ed Tanous0fdddb12017-02-28 11:06:34 -0800328 }
329
Ed Tanous1abe55e2018-09-05 08:30:59 -0700330 // cleanup_openssl();
Ed Tanous99923322017-03-03 14:21:24 -0800331}
Ed Tanousb01bf292019-03-25 19:25:26 +0000332
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500333EVP_PKEY* createEcKey()
Ed Tanousb01bf292019-03-25 19:25:26 +0000334{
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500335 EVP_PKEY* pKey = nullptr;
Patrick Williamsaec70662021-12-13 16:55:46 -0600336
337#if (OPENSSL_VERSION_NUMBER < 0x30000000L)
Ed Tanousb01bf292019-03-25 19:25:26 +0000338 int eccgrp = 0;
Vernon Maueryaaf32062020-03-09 10:41:31 -0700339 eccgrp = OBJ_txt2nid("secp384r1");
Ed Tanous6ea007a2019-02-13 22:48:25 -0800340
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500341 EC_KEY* myecc = EC_KEY_new_by_curve_name(eccgrp);
Ed Tanousb01bf292019-03-25 19:25:26 +0000342 if (myecc != nullptr)
Ed Tanous6ea007a2019-02-13 22:48:25 -0800343 {
Ed Tanousb01bf292019-03-25 19:25:26 +0000344 EC_KEY_set_asn1_flag(myecc, OPENSSL_EC_NAMED_CURVE);
345 EC_KEY_generate_key(myecc);
346 pKey = EVP_PKEY_new();
347 if (pKey != nullptr)
348 {
Szymon Dompkea327dc52022-03-01 14:04:14 +0100349 if (EVP_PKEY_assign(pKey, EVP_PKEY_EC, myecc) != 0)
Ed Tanousb01bf292019-03-25 19:25:26 +0000350 {
Vernon Mauery0185c7f2020-03-09 10:56:53 -0700351 /* pKey owns myecc from now */
Ed Tanousb01bf292019-03-25 19:25:26 +0000352 if (EC_KEY_check_key(myecc) <= 0)
353 {
Szymon Dompkea327dc52022-03-01 14:04:14 +0100354 std::cerr << "EC_check_key failed.\n";
Ed Tanousb01bf292019-03-25 19:25:26 +0000355 }
356 }
357 }
Ed Tanous6ea007a2019-02-13 22:48:25 -0800358 }
Patrick Williamsaec70662021-12-13 16:55:46 -0600359#else
360 // Create context for curve parameter generation.
361 std::unique_ptr<EVP_PKEY_CTX, decltype(&::EVP_PKEY_CTX_free)> ctx{
362 EVP_PKEY_CTX_new_id(EVP_PKEY_EC, nullptr), &::EVP_PKEY_CTX_free};
363 if (!ctx)
364 {
365 return nullptr;
366 }
367
368 // Set up curve parameters.
369 EVP_PKEY* params = nullptr;
370 if ((EVP_PKEY_paramgen_init(ctx.get()) <= 0) ||
371 (EVP_PKEY_CTX_set_ec_param_enc(ctx.get(), OPENSSL_EC_NAMED_CURVE) <=
372 0) ||
373 (EVP_PKEY_CTX_set_ec_paramgen_curve_nid(ctx.get(), NID_secp384r1) <=
374 0) ||
375 (EVP_PKEY_paramgen(ctx.get(), &params) <= 0))
376 {
377 return nullptr;
378 }
379
380 // Set up RAII holder for params.
381 std::unique_ptr<EVP_PKEY, decltype(&::EVP_PKEY_free)> pparams{
382 params, &::EVP_PKEY_free};
383
384 // Set new context for key generation, using curve parameters.
385 ctx.reset(EVP_PKEY_CTX_new_from_pkey(nullptr, params, nullptr));
386 if (!ctx || (EVP_PKEY_keygen_init(ctx.get()) <= 0))
387 {
388 return nullptr;
389 }
390
391 // Generate key.
392 if (EVP_PKEY_keygen(ctx.get(), &pKey) <= 0)
393 {
394 return nullptr;
395 }
396#endif
397
Ed Tanous1abe55e2018-09-05 08:30:59 -0700398 return pKey;
399}
400
401void initOpenssl()
402{
Ed Tanous911ac312017-08-15 09:37:42 -0700403#if OPENSSL_VERSION_NUMBER < 0x10100000L
Ed Tanous1abe55e2018-09-05 08:30:59 -0700404 SSL_load_error_strings();
405 OpenSSL_add_all_algorithms();
406 RAND_load_file("/dev/urandom", 1024);
Ed Tanousa1e077c2017-04-25 12:42:19 -0700407#endif
Ed Tanous0fdddb12017-02-28 11:06:34 -0800408}
409
Gunnar Mills1214b7e2020-06-04 10:11:30 -0500410inline void ensureOpensslKeyPresentAndValid(const std::string& filepath)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700411{
412 bool pemFileValid = false;
Ed Tanous0fdddb12017-02-28 11:06:34 -0800413
Ed Tanous1abe55e2018-09-05 08:30:59 -0700414 pemFileValid = verifyOpensslKeyCert(filepath);
Ed Tanous1ccd57c2017-03-21 13:15:58 -0700415
Ed Tanous1abe55e2018-09-05 08:30:59 -0700416 if (!pemFileValid)
417 {
418 std::cerr << "Error in verifying signature, regenerating\n";
Alan Kuoa8220702020-11-26 11:15:29 +0800419 generateSslCertificate(filepath, "testhost");
Ed Tanous1abe55e2018-09-05 08:30:59 -0700420 }
Ed Tanous0fdddb12017-02-28 11:06:34 -0800421}
Ed Tanousc4771fb2017-03-13 13:39:49 -0700422
Marri Devender Rao5968cae2019-01-21 10:27:12 -0600423inline std::shared_ptr<boost::asio::ssl::context>
Ed Tanous81ce6092020-12-17 16:54:55 +0000424 getSslContext(const std::string& sslPemFile)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700425{
Marri Devender Rao5968cae2019-01-21 10:27:12 -0600426 std::shared_ptr<boost::asio::ssl::context> mSslContext =
427 std::make_shared<boost::asio::ssl::context>(
428 boost::asio::ssl::context::tls_server);
429 mSslContext->set_options(boost::asio::ssl::context::default_workarounds |
430 boost::asio::ssl::context::no_sslv2 |
431 boost::asio::ssl::context::no_sslv3 |
432 boost::asio::ssl::context::single_dh_use |
433 boost::asio::ssl::context::no_tlsv1 |
434 boost::asio::ssl::context::no_tlsv1_1);
Ed Tanousc4771fb2017-03-13 13:39:49 -0700435
James Feist91243c32019-11-12 14:55:40 -0800436 // BIG WARNING: This needs to stay disabled, as there will always be
437 // unauthenticated endpoints
438 // mSslContext->set_verify_mode(boost::asio::ssl::verify_peer);
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200439
James Feist6a3e1822019-11-06 13:46:35 -0800440 SSL_CTX_set_options(mSslContext->native_handle(), SSL_OP_NO_RENEGOTIATION);
441
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200442 BMCWEB_LOG_DEBUG << "Using default TrustStore location: " << trustStorePath;
443 mSslContext->add_verify_path(trustStorePath);
444
Ed Tanous81ce6092020-12-17 16:54:55 +0000445 mSslContext->use_certificate_file(sslPemFile,
Marri Devender Rao5968cae2019-01-21 10:27:12 -0600446 boost::asio::ssl::context::pem);
Ed Tanous81ce6092020-12-17 16:54:55 +0000447 mSslContext->use_private_key_file(sslPemFile,
Marri Devender Rao5968cae2019-01-21 10:27:12 -0600448 boost::asio::ssl::context::pem);
Ed Tanousc4771fb2017-03-13 13:39:49 -0700449
Ed Tanous1abe55e2018-09-05 08:30:59 -0700450 // Set up EC curves to auto (boost asio doesn't have a method for this)
451 // There is a pull request to add this. Once this is included in an asio
452 // drop, use the right way
453 // http://stackoverflow.com/questions/18929049/boost-asio-with-ecdsa-certificate-issue
Marri Devender Rao5968cae2019-01-21 10:27:12 -0600454 if (SSL_CTX_set_ecdh_auto(mSslContext->native_handle(), 1) != 1)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700455 {
456 BMCWEB_LOG_ERROR << "Error setting tmp ecdh list\n";
457 }
Ed Tanousc4771fb2017-03-13 13:39:49 -0700458
Ed Tanous457207f2019-02-07 15:27:14 -0800459 std::string mozillaModern = "ECDHE-ECDSA-AES256-GCM-SHA384:"
460 "ECDHE-RSA-AES256-GCM-SHA384:"
461 "ECDHE-ECDSA-CHACHA20-POLY1305:"
462 "ECDHE-RSA-CHACHA20-POLY1305:"
463 "ECDHE-ECDSA-AES128-GCM-SHA256:"
464 "ECDHE-RSA-AES128-GCM-SHA256:"
465 "ECDHE-ECDSA-AES256-SHA384:"
466 "ECDHE-RSA-AES256-SHA384:"
467 "ECDHE-ECDSA-AES128-SHA256:"
468 "ECDHE-RSA-AES128-SHA256";
Ed Tanousc4771fb2017-03-13 13:39:49 -0700469
Marri Devender Rao5968cae2019-01-21 10:27:12 -0600470 if (SSL_CTX_set_cipher_list(mSslContext->native_handle(),
Ed Tanous457207f2019-02-07 15:27:14 -0800471 mozillaModern.c_str()) != 1)
Ed Tanous1abe55e2018-09-05 08:30:59 -0700472 {
473 BMCWEB_LOG_ERROR << "Error setting cipher list\n";
474 }
475 return mSslContext;
Ed Tanousc4771fb2017-03-13 13:39:49 -0700476}
Ed Tanous1abe55e2018-09-05 08:30:59 -0700477} // namespace ensuressl