ssl-client.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451
  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. extern int openssl_websocket_private_data_index,
  23. openssl_SSL_CTX_private_data_index;
  24. extern void
  25. lws_ssl_bind_passphrase(SSL_CTX *ssl_ctx, struct lws_context_creation_info *info);
  26. extern int lws_ssl_get_error(struct lws *wsi, int n);
  27. int
  28. lws_ssl_client_bio_create(struct lws *wsi)
  29. {
  30. #if defined(LWS_USE_POLARSSL)
  31. return 0;
  32. #else
  33. #if defined(LWS_USE_MBEDTLS)
  34. #else
  35. struct lws_context *context = wsi->context;
  36. const char *hostname = lws_hdr_simple_ptr(wsi, _WSI_TOKEN_CLIENT_HOST);
  37. (void)hostname;
  38. wsi->ssl = SSL_new(wsi->vhost->ssl_client_ctx);
  39. if (!wsi->ssl) {
  40. lwsl_err("SSL_new failed: %s\n",
  41. ERR_error_string(lws_ssl_get_error(wsi, 0), NULL));
  42. lws_decode_ssl_error();
  43. return -1;
  44. }
  45. #if defined LWS_HAVE_X509_VERIFY_PARAM_set1_host
  46. X509_VERIFY_PARAM *param;
  47. (void)param;
  48. if (!(wsi->use_ssl & LCCSCF_SKIP_SERVER_CERT_HOSTNAME_CHECK)) {
  49. param = SSL_get0_param(wsi->ssl);
  50. /* Enable automatic hostname checks */
  51. X509_VERIFY_PARAM_set_hostflags(param,
  52. X509_CHECK_FLAG_NO_PARTIAL_WILDCARDS);
  53. X509_VERIFY_PARAM_set1_host(param, hostname, 0);
  54. /* Configure a non-zero callback if desired */
  55. SSL_set_verify(wsi->ssl, SSL_VERIFY_PEER, 0);
  56. }
  57. #endif
  58. #ifndef USE_WOLFSSL
  59. SSL_set_mode(wsi->ssl, SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER);
  60. #endif
  61. /*
  62. * use server name indication (SNI), if supported,
  63. * when establishing connection
  64. */
  65. #ifdef USE_WOLFSSL
  66. #ifdef USE_OLD_CYASSL
  67. #ifdef CYASSL_SNI_HOST_NAME
  68. CyaSSL_UseSNI(wsi->ssl, CYASSL_SNI_HOST_NAME, hostname, strlen(hostname));
  69. #endif
  70. #else
  71. #ifdef WOLFSSL_SNI_HOST_NAME
  72. wolfSSL_UseSNI(wsi->ssl, WOLFSSL_SNI_HOST_NAME, hostname, strlen(hostname));
  73. #endif
  74. #endif
  75. #else
  76. #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
  77. SSL_set_tlsext_host_name(wsi->ssl, hostname);
  78. #endif
  79. #endif
  80. #ifdef USE_WOLFSSL
  81. /*
  82. * wolfSSL/CyaSSL does certificate verification differently
  83. * from OpenSSL.
  84. * If we should ignore the certificate, we need to set
  85. * this before SSL_new and SSL_connect is called.
  86. * Otherwise the connect will simply fail with error code -155
  87. */
  88. #ifdef USE_OLD_CYASSL
  89. if (wsi->use_ssl == 2)
  90. CyaSSL_set_verify(wsi->ssl, SSL_VERIFY_NONE, NULL);
  91. #else
  92. if (wsi->use_ssl == 2)
  93. wolfSSL_set_verify(wsi->ssl, SSL_VERIFY_NONE, NULL);
  94. #endif
  95. #endif /* USE_WOLFSSL */
  96. wsi->client_bio = BIO_new_socket(wsi->sock, BIO_NOCLOSE);
  97. SSL_set_bio(wsi->ssl, wsi->client_bio, wsi->client_bio);
  98. #ifdef USE_WOLFSSL
  99. #ifdef USE_OLD_CYASSL
  100. CyaSSL_set_using_nonblock(wsi->ssl, 1);
  101. #else
  102. wolfSSL_set_using_nonblock(wsi->ssl, 1);
  103. #endif
  104. #else
  105. BIO_set_nbio(wsi->client_bio, 1); /* nonblocking */
  106. #endif
  107. SSL_set_ex_data(wsi->ssl, openssl_websocket_private_data_index,
  108. context);
  109. return 0;
  110. #endif
  111. #endif
  112. }
  113. int
  114. lws_ssl_client_connect1(struct lws *wsi)
  115. {
  116. struct lws_context *context = wsi->context;
  117. int n = 0;
  118. lws_latency_pre(context, wsi);
  119. #if defined(LWS_USE_POLARSSL)
  120. #else
  121. #if defined(LWS_USE_MBEDTLS)
  122. #else
  123. n = SSL_connect(wsi->ssl);
  124. #endif
  125. #endif
  126. lws_latency(context, wsi,
  127. "SSL_connect LWSCM_WSCL_ISSUE_HANDSHAKE", n, n > 0);
  128. if (n < 0) {
  129. n = lws_ssl_get_error(wsi, n);
  130. if (n == SSL_ERROR_WANT_READ)
  131. goto some_wait;
  132. if (n == SSL_ERROR_WANT_WRITE) {
  133. /*
  134. * wants us to retry connect due to
  135. * state of the underlying ssl layer...
  136. * but since it may be stalled on
  137. * blocked write, no incoming data may
  138. * arrive to trigger the retry.
  139. * Force (possibly many times if the SSL
  140. * state persists in returning the
  141. * condition code, but other sockets
  142. * are getting serviced inbetweentimes)
  143. * us to get called back when writable.
  144. */
  145. lwsl_info("%s: WANT_WRITE... retrying\n", __func__);
  146. lws_callback_on_writable(wsi);
  147. some_wait:
  148. wsi->mode = LWSCM_WSCL_WAITING_SSL;
  149. return 0; /* no error */
  150. }
  151. n = -1;
  152. }
  153. if (n <= 0) {
  154. /*
  155. * retry if new data comes until we
  156. * run into the connection timeout or win
  157. */
  158. #if defined(LWS_USE_POLARSSL)
  159. #else
  160. #if defined(LWS_USE_MBEDTLS)
  161. #else
  162. n = ERR_get_error();
  163. if (n != SSL_ERROR_NONE) {
  164. struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
  165. char *p = (char *)&pt->serv_buf[0];
  166. char *sb = p;
  167. lwsl_err("SSL connect error %lu: %s\n",
  168. n, ERR_error_string(n, sb));
  169. return -1;
  170. }
  171. #endif
  172. #endif
  173. }
  174. return 1;
  175. }
  176. int
  177. lws_ssl_client_connect2(struct lws *wsi)
  178. {
  179. struct lws_context *context = wsi->context;
  180. #if defined(LWS_USE_POLARSSL)
  181. #else
  182. #if defined(LWS_USE_MBEDTLS)
  183. #else
  184. struct lws_context_per_thread *pt = &wsi->context->pt[(int)wsi->tsi];
  185. char *p = (char *)&pt->serv_buf[0];
  186. char *sb = p;
  187. #endif
  188. #endif
  189. int n = 0;
  190. if (wsi->mode == LWSCM_WSCL_WAITING_SSL) {
  191. lws_latency_pre(context, wsi);
  192. #if defined(LWS_USE_POLARSSL)
  193. #else
  194. #if defined(LWS_USE_MBEDTLS)
  195. #else
  196. n = SSL_connect(wsi->ssl);
  197. #endif
  198. #endif
  199. lws_latency(context, wsi,
  200. "SSL_connect LWSCM_WSCL_WAITING_SSL", n, n > 0);
  201. if (n < 0) {
  202. n = lws_ssl_get_error(wsi, n);
  203. if (n == SSL_ERROR_WANT_READ) {
  204. wsi->mode = LWSCM_WSCL_WAITING_SSL;
  205. return 0; /* no error */
  206. }
  207. if (n == SSL_ERROR_WANT_WRITE) {
  208. /*
  209. * wants us to retry connect due to
  210. * state of the underlying ssl layer...
  211. * but since it may be stalled on
  212. * blocked write, no incoming data may
  213. * arrive to trigger the retry.
  214. * Force (possibly many times if the SSL
  215. * state persists in returning the
  216. * condition code, but other sockets
  217. * are getting serviced inbetweentimes)
  218. * us to get called back when writable.
  219. */
  220. lwsl_info("SSL_connect WANT_WRITE... retrying\n");
  221. lws_callback_on_writable(wsi);
  222. wsi->mode = LWSCM_WSCL_WAITING_SSL;
  223. return 0; /* no error */
  224. }
  225. n = -1;
  226. }
  227. if (n <= 0) {
  228. /*
  229. * retry if new data comes until we
  230. * run into the connection timeout or win
  231. */
  232. #if defined(LWS_USE_POLARSSL)
  233. #else
  234. #if defined(LWS_USE_MBEDTLS)
  235. #else
  236. n = ERR_get_error();
  237. if (n != SSL_ERROR_NONE) {
  238. lwsl_err("SSL connect error %lu: %s\n",
  239. n, ERR_error_string(n, sb));
  240. return -1;
  241. }
  242. #endif
  243. #endif
  244. }
  245. }
  246. #if defined(LWS_USE_POLARSSL)
  247. #else
  248. #if defined(LWS_USE_MBEDTLS)
  249. #else
  250. #ifndef USE_WOLFSSL
  251. /*
  252. * See comment above about wolfSSL certificate
  253. * verification
  254. */
  255. lws_latency_pre(context, wsi);
  256. n = SSL_get_verify_result(wsi->ssl);
  257. lws_latency(context, wsi,
  258. "SSL_get_verify_result LWS_CONNMODE..HANDSHAKE", n, n > 0);
  259. if (n != X509_V_OK) {
  260. if ((n == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT ||
  261. n == X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN) &&
  262. wsi->use_ssl & LCCSCF_ALLOW_SELFSIGNED) {
  263. lwsl_notice("accepting self-signed certificate\n");
  264. } else {
  265. lwsl_err("server's cert didn't look good, X509_V_ERR = %d: %s\n",
  266. n, ERR_error_string(n, sb));
  267. lws_ssl_elaborate_error();
  268. return -1;
  269. }
  270. }
  271. #endif /* USE_WOLFSSL */
  272. #endif
  273. #endif
  274. return 1;
  275. }
  276. int lws_context_init_client_ssl(struct lws_context_creation_info *info,
  277. struct lws_vhost *vhost)
  278. {
  279. #if defined(LWS_USE_POLARSSL)
  280. return 0;
  281. #else
  282. #if defined(LWS_USE_MBEDTLS)
  283. #else
  284. SSL_METHOD *method;
  285. struct lws wsi;
  286. int error;
  287. int n;
  288. if (!lws_check_opt(info->options, LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT))
  289. return 0;
  290. if (info->provided_client_ssl_ctx) {
  291. /* use the provided OpenSSL context if given one */
  292. vhost->ssl_client_ctx = info->provided_client_ssl_ctx;
  293. /* nothing for lib to delete */
  294. vhost->user_supplied_ssl_ctx = 1;
  295. return 0;
  296. }
  297. if (info->port != CONTEXT_PORT_NO_LISTEN)
  298. return 0;
  299. /* basic openssl init already happened in context init */
  300. method = (SSL_METHOD *)SSLv23_client_method();
  301. if (!method) {
  302. error = ERR_get_error();
  303. lwsl_err("problem creating ssl method %lu: %s\n",
  304. error, ERR_error_string(error,
  305. (char *)vhost->context->pt[0].serv_buf));
  306. return 1;
  307. }
  308. /* create context */
  309. vhost->ssl_client_ctx = SSL_CTX_new(method);
  310. if (!vhost->ssl_client_ctx) {
  311. error = ERR_get_error();
  312. lwsl_err("problem creating ssl context %lu: %s\n",
  313. error, ERR_error_string(error,
  314. (char *)vhost->context->pt[0].serv_buf));
  315. return 1;
  316. }
  317. #ifdef SSL_OP_NO_COMPRESSION
  318. SSL_CTX_set_options(vhost->ssl_client_ctx, SSL_OP_NO_COMPRESSION);
  319. #endif
  320. SSL_CTX_set_options(vhost->ssl_client_ctx,
  321. SSL_OP_CIPHER_SERVER_PREFERENCE);
  322. if (info->ssl_cipher_list)
  323. SSL_CTX_set_cipher_list(vhost->ssl_client_ctx,
  324. info->ssl_cipher_list);
  325. #ifdef LWS_SSL_CLIENT_USE_OS_CA_CERTS
  326. if (!lws_check_opt(info->options, LWS_SERVER_OPTION_DISABLE_OS_CA_CERTS))
  327. /* loads OS default CA certs */
  328. SSL_CTX_set_default_verify_paths(vhost->ssl_client_ctx);
  329. #endif
  330. /* openssl init for cert verification (for client sockets) */
  331. if (!info->ssl_ca_filepath) {
  332. if (!SSL_CTX_load_verify_locations(
  333. vhost->ssl_client_ctx, NULL,
  334. LWS_OPENSSL_CLIENT_CERTS))
  335. lwsl_err(
  336. "Unable to load SSL Client certs from %s "
  337. "(set by --with-client-cert-dir= "
  338. "in configure) -- client ssl isn't "
  339. "going to work", LWS_OPENSSL_CLIENT_CERTS);
  340. } else
  341. if (!SSL_CTX_load_verify_locations(
  342. vhost->ssl_client_ctx, info->ssl_ca_filepath,
  343. NULL))
  344. lwsl_err(
  345. "Unable to load SSL Client certs "
  346. "file from %s -- client ssl isn't "
  347. "going to work", info->ssl_ca_filepath);
  348. else
  349. lwsl_info("loaded ssl_ca_filepath\n");
  350. /*
  351. * callback allowing user code to load extra verification certs
  352. * helping the client to verify server identity
  353. */
  354. /* support for client-side certificate authentication */
  355. if (info->ssl_cert_filepath) {
  356. n = SSL_CTX_use_certificate_chain_file(vhost->ssl_client_ctx,
  357. info->ssl_cert_filepath);
  358. if (n != 1) {
  359. lwsl_err("problem getting cert '%s' %lu: %s\n",
  360. info->ssl_cert_filepath,
  361. ERR_get_error(),
  362. ERR_error_string(ERR_get_error(),
  363. (char *)vhost->context->pt[0].serv_buf));
  364. return 1;
  365. }
  366. }
  367. if (info->ssl_private_key_filepath) {
  368. lws_ssl_bind_passphrase(vhost->ssl_client_ctx, info);
  369. /* set the private key from KeyFile */
  370. if (SSL_CTX_use_PrivateKey_file(vhost->ssl_client_ctx,
  371. info->ssl_private_key_filepath, SSL_FILETYPE_PEM) != 1) {
  372. lwsl_err("use_PrivateKey_file '%s' %lu: %s\n",
  373. info->ssl_private_key_filepath,
  374. ERR_get_error(),
  375. ERR_error_string(ERR_get_error(),
  376. (char *)vhost->context->pt[0].serv_buf));
  377. return 1;
  378. }
  379. /* verify private key */
  380. if (!SSL_CTX_check_private_key(vhost->ssl_client_ctx)) {
  381. lwsl_err("Private SSL key doesn't match cert\n");
  382. return 1;
  383. }
  384. }
  385. /*
  386. * give him a fake wsi with context set, so he can use
  387. * lws_get_context() in the callback
  388. */
  389. memset(&wsi, 0, sizeof(wsi));
  390. wsi.vhost = vhost;
  391. wsi.context = vhost->context;
  392. vhost->protocols[0].callback(&wsi,
  393. LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS,
  394. vhost->ssl_client_ctx, NULL, 0);
  395. return 0;
  396. #endif
  397. #endif
  398. }