ssl-server.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. /*
  2. * libwebsockets - small server side websockets and web server implementation
  3. *
  4. * Copyright (C) 2010-2016 Andy Green <andy@warmcat.com>
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation:
  9. * version 2.1 of the License.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  19. * MA 02110-1301 USA
  20. */
  21. #include "private-libwebsockets.h"
  22. #if defined(LWS_USE_POLARSSL)
  23. #else
  24. #if defined(LWS_USE_MBEDTLS)
  25. #else
  26. extern int openssl_websocket_private_data_index,
  27. openssl_SSL_CTX_private_data_index;
  28. extern void
  29. lws_ssl_bind_passphrase(SSL_CTX *ssl_ctx, struct lws_context_creation_info *info);
  30. static int
  31. OpenSSL_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx)
  32. {
  33. SSL *ssl;
  34. int n;
  35. struct lws_vhost *vh;
  36. struct lws wsi;
  37. ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
  38. SSL_get_ex_data_X509_STORE_CTX_idx());
  39. /*
  40. * !!! nasty openssl requires the index to come as a library-scope
  41. * static
  42. */
  43. vh = SSL_get_ex_data(ssl, openssl_websocket_private_data_index);
  44. /*
  45. * give him a fake wsi with context set, so he can use lws_get_context()
  46. * in the callback
  47. */
  48. memset(&wsi, 0, sizeof(wsi));
  49. wsi.vhost = vh;
  50. wsi.context = vh->context;
  51. n = vh->protocols[0].callback(&wsi,
  52. LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION,
  53. x509_ctx, ssl, preverify_ok);
  54. /* convert return code from 0 = OK to 1 = OK */
  55. return !n;
  56. }
  57. static int
  58. lws_context_ssl_init_ecdh(struct lws_vhost *vhost)
  59. {
  60. #ifdef LWS_SSL_SERVER_WITH_ECDH_CERT
  61. EC_KEY *EC_key = NULL;
  62. EVP_PKEY *pkey;
  63. int KeyType;
  64. X509 *x;
  65. if (!lws_check_opt(vhost->context->options, LWS_SERVER_OPTION_SSL_ECDH))
  66. return 0;
  67. lwsl_notice(" Using ECDH certificate support\n");
  68. /* Get X509 certificate from ssl context */
  69. x = sk_X509_value(vhost->ssl_ctx->extra_certs, 0);
  70. if (!x) {
  71. lwsl_err("%s: x is NULL\n", __func__);
  72. return 1;
  73. }
  74. /* Get the public key from certificate */
  75. pkey = X509_get_pubkey(x);
  76. if (!pkey) {
  77. lwsl_err("%s: pkey is NULL\n", __func__);
  78. return 1;
  79. }
  80. /* Get the key type */
  81. KeyType = EVP_PKEY_type(pkey->type);
  82. if (EVP_PKEY_EC != KeyType) {
  83. lwsl_notice("Key type is not EC\n");
  84. return 0;
  85. }
  86. /* Get the key */
  87. EC_key = EVP_PKEY_get1_EC_KEY(pkey);
  88. /* Set ECDH parameter */
  89. if (!EC_key) {
  90. lwsl_err("%s: ECDH key is NULL \n", __func__);
  91. return 1;
  92. }
  93. SSL_CTX_set_tmp_ecdh(vhost->ssl_ctx, EC_key);
  94. EC_KEY_free(EC_key);
  95. #endif
  96. return 0;
  97. }
  98. static int
  99. lws_context_ssl_init_ecdh_curve(struct lws_context_creation_info *info,
  100. struct lws_vhost *vhost)
  101. {
  102. #ifdef LWS_HAVE_OPENSSL_ECDH_H
  103. EC_KEY *ecdh;
  104. int ecdh_nid;
  105. const char *ecdh_curve = "prime256v1";
  106. if (info->ecdh_curve)
  107. ecdh_curve = info->ecdh_curve;
  108. ecdh_nid = OBJ_sn2nid(ecdh_curve);
  109. if (NID_undef == ecdh_nid) {
  110. lwsl_err("SSL: Unknown curve name '%s'", ecdh_curve);
  111. return 1;
  112. }
  113. ecdh = EC_KEY_new_by_curve_name(ecdh_nid);
  114. if (NULL == ecdh) {
  115. lwsl_err("SSL: Unable to create curve '%s'", ecdh_curve);
  116. return 1;
  117. }
  118. SSL_CTX_set_tmp_ecdh(vhost->ssl_ctx, ecdh);
  119. EC_KEY_free(ecdh);
  120. SSL_CTX_set_options(vhost->ssl_ctx, SSL_OP_SINGLE_ECDH_USE);
  121. lwsl_notice(" SSL ECDH curve '%s'\n", ecdh_curve);
  122. #else
  123. lwsl_notice(" OpenSSL doesn't support ECDH\n");
  124. #endif
  125. return 0;
  126. }
  127. #ifndef OPENSSL_NO_TLSEXT
  128. static int
  129. lws_ssl_server_name_cb(SSL *ssl, int *ad, void *arg)
  130. {
  131. struct lws_context *context;
  132. struct lws_vhost *vhost, *vh;
  133. const char *servername;
  134. int port;
  135. if (!ssl)
  136. return SSL_TLSEXT_ERR_NOACK;
  137. context = (struct lws_context *)SSL_CTX_get_ex_data(
  138. SSL_get_SSL_CTX(ssl),
  139. openssl_SSL_CTX_private_data_index);
  140. /*
  141. * We can only get ssl accepted connections by using a vhost's ssl_ctx
  142. * find out which listening one took us and only match vhosts on the
  143. * same port.
  144. */
  145. vh = context->vhost_list;
  146. while (vh) {
  147. if (vh->ssl_ctx == SSL_get_SSL_CTX(ssl))
  148. break;
  149. vh = vh->vhost_next;
  150. }
  151. assert(vh); /* we cannot get an ssl without using a vhost ssl_ctx */
  152. port = vh->listen_port;
  153. servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
  154. if (servername) {
  155. vhost = lws_select_vhost(context, port, servername);
  156. if (vhost) {
  157. lwsl_debug("SNI: Found: %s (port %d)\n",
  158. servername, port);
  159. SSL_set_SSL_CTX(ssl, vhost->ssl_ctx);
  160. return SSL_TLSEXT_ERR_OK;
  161. }
  162. lwsl_err("SNI: Unknown ServerName: %s\n", servername);
  163. }
  164. return SSL_TLSEXT_ERR_OK;
  165. }
  166. #endif
  167. #endif
  168. #endif
  169. LWS_VISIBLE int
  170. lws_context_init_server_ssl(struct lws_context_creation_info *info,
  171. struct lws_vhost *vhost)
  172. {
  173. struct lws_context *context = vhost->context;
  174. struct lws wsi;
  175. int error;
  176. int n;
  177. if (!lws_check_opt(info->options, LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT)) {
  178. vhost->use_ssl = 0;
  179. return 0;
  180. }
  181. if (info->port != CONTEXT_PORT_NO_LISTEN) {
  182. vhost->use_ssl = info->ssl_cert_filepath != NULL;
  183. if (vhost->use_ssl && info->ssl_cipher_list)
  184. lwsl_notice(" SSL ciphers: '%s'\n", info->ssl_cipher_list);
  185. if (vhost->use_ssl)
  186. lwsl_notice(" Using SSL mode\n");
  187. else
  188. lwsl_notice(" Using non-SSL mode\n");
  189. }
  190. /*
  191. * give him a fake wsi with context + vhost set, so he can use
  192. * lws_get_context() in the callback
  193. */
  194. memset(&wsi, 0, sizeof(wsi));
  195. wsi.vhost = vhost;
  196. wsi.context = context;
  197. (void)n;
  198. (void)error;
  199. #if defined(LWS_USE_POLARSSL)
  200. lwsl_notice(" Compiled with PolarSSL support\n");
  201. vhost->ssl_ctx = lws_zalloc(sizeof (*vhost->ssl_ctx));
  202. /* Load the trusted CA */
  203. if (info->ssl_ca_filepath) {
  204. n = x509_crt_parse_file(&vhost->ssl_ctx->ca,
  205. info->ssl_ca_filepath);
  206. if (n < 0) {
  207. // error_strerror(ret, errorbuf, sizeof(errorbuf));
  208. lwsl_err("%s: Failed to load ca cert\n", __func__);
  209. return -1;
  210. }
  211. }
  212. /* Load our cert */
  213. if (info->ssl_cert_filepath) {
  214. n = x509_crt_parse_file(&vhost->ssl_ctx->certificate,
  215. info->ssl_cert_filepath);
  216. if (n < 0) {
  217. // error_strerror(ret, errorbuf, sizeof(errorbuf));
  218. lwsl_err("%s: Failed to load cert\n", __func__);
  219. return -1;
  220. }
  221. }
  222. /* Load cert private key */
  223. if (info->ssl_private_key_filepath) {
  224. pk_context pk;
  225. pk_init(&pk);
  226. n = pk_parse_keyfile(&pk, info->ssl_private_key_filepath,
  227. info->ssl_private_key_password);
  228. if (!n && !pk_can_do(&pk, POLARSSL_PK_RSA))
  229. n = POLARSSL_ERR_PK_TYPE_MISMATCH;
  230. if (!n)
  231. rsa_copy(&vhost->ssl_ctx->key, pk_rsa(pk));
  232. else
  233. rsa_free(&vhost->ssl_ctx->key);
  234. pk_free(&pk);
  235. if (n) {
  236. //error_strerror(ret, errorbuf, sizeof(errorbuf));
  237. lwsl_err("%s: error reading private key\n", __func__);
  238. return -1;
  239. }
  240. }
  241. #else
  242. #if defined(LWS_USE_MBEDTLS)
  243. lwsl_notice(" Compiled with mbedTLS support\n");
  244. #else
  245. /*
  246. * Firefox insists on SSLv23 not SSLv3
  247. * Konq disables SSLv2 by default now, SSLv23 works
  248. *
  249. * SSLv23_server_method() is the openssl method for "allow all TLS
  250. * versions", compared to e.g. TLSv1_2_server_method() which only allows
  251. * tlsv1.2. Unwanted versions must be disabled using SSL_CTX_set_options()
  252. */
  253. {
  254. SSL_METHOD *method;
  255. method = (SSL_METHOD *)SSLv23_server_method();
  256. if (!method) {
  257. error = ERR_get_error();
  258. lwsl_err("problem creating ssl method %lu: %s\n",
  259. error, ERR_error_string(error,
  260. (char *)context->pt[0].serv_buf));
  261. return 1;
  262. }
  263. vhost->ssl_ctx = SSL_CTX_new(method); /* create context */
  264. if (!vhost->ssl_ctx) {
  265. error = ERR_get_error();
  266. lwsl_err("problem creating ssl context %lu: %s\n",
  267. error, ERR_error_string(error,
  268. (char *)context->pt[0].serv_buf));
  269. return 1;
  270. }
  271. }
  272. /* associate the lws context with the SSL_CTX */
  273. SSL_CTX_set_ex_data(vhost->ssl_ctx,
  274. openssl_SSL_CTX_private_data_index, vhost->context);
  275. /* Disable SSLv2 and SSLv3 */
  276. SSL_CTX_set_options(vhost->ssl_ctx, SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3);
  277. #ifdef SSL_OP_NO_COMPRESSION
  278. SSL_CTX_set_options(vhost->ssl_ctx, SSL_OP_NO_COMPRESSION);
  279. #endif
  280. SSL_CTX_set_options(vhost->ssl_ctx, SSL_OP_SINGLE_DH_USE);
  281. SSL_CTX_set_options(vhost->ssl_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
  282. if (info->ssl_cipher_list)
  283. SSL_CTX_set_cipher_list(vhost->ssl_ctx,
  284. info->ssl_cipher_list);
  285. /* as a server, are we requiring clients to identify themselves? */
  286. if (lws_check_opt(info->options,
  287. LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT)) {
  288. int verify_options = SSL_VERIFY_PEER;
  289. if (!lws_check_opt(info->options,
  290. LWS_SERVER_OPTION_PEER_CERT_NOT_REQUIRED))
  291. verify_options |= SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
  292. SSL_CTX_set_session_id_context(vhost->ssl_ctx,
  293. (unsigned char *)context, sizeof(void *));
  294. /* absolutely require the client cert */
  295. SSL_CTX_set_verify(vhost->ssl_ctx,
  296. verify_options, OpenSSL_verify_callback);
  297. }
  298. #ifndef OPENSSL_NO_TLSEXT
  299. SSL_CTX_set_tlsext_servername_callback(vhost->ssl_ctx,
  300. lws_ssl_server_name_cb);
  301. #endif
  302. /*
  303. * give user code a chance to load certs into the server
  304. * allowing it to verify incoming client certs
  305. */
  306. if (info->ssl_ca_filepath &&
  307. !SSL_CTX_load_verify_locations(vhost->ssl_ctx,
  308. info->ssl_ca_filepath, NULL)) {
  309. lwsl_err("%s: SSL_CTX_load_verify_locations unhappy\n", __func__);
  310. }
  311. if (vhost->use_ssl) {
  312. if (lws_context_ssl_init_ecdh_curve(info, vhost))
  313. return -1;
  314. vhost->protocols[0].callback(&wsi,
  315. LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS,
  316. vhost->ssl_ctx, NULL, 0);
  317. }
  318. if (lws_check_opt(info->options, LWS_SERVER_OPTION_ALLOW_NON_SSL_ON_SSL_PORT))
  319. /* Normally SSL listener rejects non-ssl, optionally allow */
  320. vhost->allow_non_ssl_on_ssl_port = 1;
  321. if (info->ssl_options_set)
  322. SSL_CTX_set_options(vhost->ssl_ctx, info->ssl_options_set);
  323. if (info->ssl_options_clear)
  324. SSL_CTX_clear_options(vhost->ssl_ctx, info->ssl_options_clear);
  325. lwsl_info(" SSL options 0x%X\n",
  326. SSL_CTX_get_options(vhost->ssl_ctx));
  327. if (vhost->use_ssl) {
  328. /* openssl init for server sockets */
  329. /* set the local certificate from CertFile */
  330. n = SSL_CTX_use_certificate_chain_file(vhost->ssl_ctx,
  331. info->ssl_cert_filepath);
  332. if (n != 1) {
  333. error = ERR_get_error();
  334. lwsl_err("problem getting cert '%s' %lu: %s\n",
  335. info->ssl_cert_filepath,
  336. error,
  337. ERR_error_string(error,
  338. (char *)context->pt[0].serv_buf));
  339. return 1;
  340. }
  341. lws_ssl_bind_passphrase(vhost->ssl_ctx, info);
  342. if (info->ssl_private_key_filepath != NULL) {
  343. /* set the private key from KeyFile */
  344. if (SSL_CTX_use_PrivateKey_file(vhost->ssl_ctx,
  345. info->ssl_private_key_filepath,
  346. SSL_FILETYPE_PEM) != 1) {
  347. error = ERR_get_error();
  348. lwsl_err("ssl problem getting key '%s' %lu: %s\n",
  349. info->ssl_private_key_filepath, error,
  350. ERR_error_string(error,
  351. (char *)context->pt[0].serv_buf));
  352. return 1;
  353. }
  354. } else
  355. if (vhost->protocols[0].callback(&wsi,
  356. LWS_CALLBACK_OPENSSL_CONTEXT_REQUIRES_PRIVATE_KEY,
  357. vhost->ssl_ctx, NULL, 0)) {
  358. lwsl_err("ssl private key not set\n");
  359. return 1;
  360. }
  361. /* verify private key */
  362. if (!SSL_CTX_check_private_key(vhost->ssl_ctx)) {
  363. lwsl_err("Private SSL key doesn't match cert\n");
  364. return 1;
  365. }
  366. if (lws_context_ssl_init_ecdh(vhost))
  367. return 1;
  368. /*
  369. * SSL is happy and has a cert it's content with
  370. * If we're supporting HTTP2, initialize that
  371. */
  372. lws_context_init_http2_ssl(vhost);
  373. }
  374. #endif
  375. #endif
  376. return 0;
  377. }