512543033785d1a0a02584d06690c1edd0fa2981
[platform/upstream/libwebsockets.git] / lib / ssl.c
1 /*
2  * libwebsockets - small server side websockets and web server implementation
3  *
4  * Copyright (C) 2010-2017 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
22 #include "private-libwebsockets.h"
23
24 /* workaround for mingw */
25 #if !defined(ECONNABORTED)
26 #define ECONNABORTED 103
27 #endif
28
29 int lws_alloc_vfs_file(struct lws_context *context, const char *filename, uint8_t **buf,
30                 lws_filepos_t *amount)
31 {
32         lws_filepos_t len;
33         lws_fop_flags_t flags = LWS_O_RDONLY;
34         lws_fop_fd_t fops_fd = lws_vfs_file_open(
35                                 lws_get_fops(context), filename, &flags);
36         int ret = 1;
37
38         if (!fops_fd)
39                 return 1;
40
41         len = lws_vfs_get_length(fops_fd);
42
43         *buf = malloc(len);
44         if (!buf)
45                 goto bail;
46
47         if (lws_vfs_file_read(fops_fd, amount, *buf, len))
48                 goto bail;
49
50         ret = 0;
51 bail:
52         lws_vfs_file_close(&fops_fd);
53
54         return ret;
55 }
56
57 #if defined(LWS_WITH_ESP32)
58 int alloc_file(struct lws_context *context, const char *filename, uint8_t **buf,
59                lws_filepos_t *amount)
60 {
61         nvs_handle nvh;
62         size_t s;
63         int n = 0;
64
65         ESP_ERROR_CHECK(nvs_open("lws-station", NVS_READWRITE, &nvh));
66         if (nvs_get_blob(nvh, filename, NULL, &s) != ESP_OK) {
67                 n = 1;
68                 goto bail;
69         }
70         *buf = malloc(s);
71         if (!*buf) {
72                 n = 2;
73                 goto bail;
74         }
75         if (nvs_get_blob(nvh, filename, (char *)*buf, &s) != ESP_OK) {
76                 free(*buf);
77                 n = 1;
78                 goto bail;
79         }
80
81         *amount = s;
82
83 bail:
84         nvs_close(nvh);
85
86         return n;
87 }
88 int alloc_pem_to_der_file(struct lws_context *context, const char *filename, uint8_t **buf,
89                lws_filepos_t *amount)
90 {
91         uint8_t *pem, *p, *q, *end;
92         lws_filepos_t len;
93         int n;
94
95         n = alloc_file(context, filename, &pem, &len);
96         if (n)
97                 return n;
98
99         /* trim the first line */
100
101         p = pem;
102         end = p + len;
103         if (strncmp((char *)p, "-----", 5))
104                 goto bail;
105         p += 5;
106         while (p < end && *p != '\n' && *p != '-')
107                 p++;
108
109         if (*p != '-')
110                 goto bail;
111
112         while (p < end && *p != '\n')
113                 p++;
114
115         if (p >= end)
116                 goto bail;
117
118         p++;
119
120         /* trim the last line */
121
122         q = end - 2;
123
124         while (q > pem && *q != '\n')
125                 q--;
126
127         if (*q != '\n')
128                 goto bail;
129
130         *q = '\0';
131
132         *amount = lws_b64_decode_string((char *)p, (char *)pem, len);
133         *buf = pem;
134
135         return 0;
136
137 bail:
138         free(pem);
139
140         return 4;
141 }
142 #endif
143
144 int openssl_websocket_private_data_index,
145     openssl_SSL_CTX_private_data_index;
146
147 int lws_ssl_get_error(struct lws *wsi, int n)
148 {
149         if (!wsi->ssl)
150                 return 99;
151         lwsl_debug("%s: %p %d\n", __func__, wsi->ssl, n);
152         return SSL_get_error(wsi->ssl, n);
153 }
154
155 /* Copies a string describing the code returned by lws_ssl_get_error(),
156  * which may also contain system error information in the case of SSL_ERROR_SYSCALL,
157  * into buf up to len.
158  * Returns a pointer to buf.
159  *
160  * Note: the lws_ssl_get_error() code is *not* an error code that can be passed
161  * to ERR_error_string(),
162  *
163  * ret is the return value originally passed to lws_ssl_get_error(), needed to disambiguate
164  * SYS_ERROR_SYSCALL.
165  *
166  * See man page for SSL_get_error().
167  *
168  * Not thread safe, uses strerror()
169  */
170 char* lws_ssl_get_error_string(int status, int ret, char *buf, size_t len) {
171         switch (status) {
172         case SSL_ERROR_NONE: return strncpy(buf, "SSL_ERROR_NONE", len);
173         case SSL_ERROR_ZERO_RETURN: return strncpy(buf, "SSL_ERROR_ZERO_RETURN", len);
174         case SSL_ERROR_WANT_READ: return strncpy(buf, "SSL_ERROR_WANT_READ", len);
175         case SSL_ERROR_WANT_WRITE: return strncpy(buf, "SSL_ERROR_WANT_WRITE", len);
176         case SSL_ERROR_WANT_CONNECT: return strncpy(buf, "SSL_ERROR_WANT_CONNECT", len);
177         case SSL_ERROR_WANT_ACCEPT: return strncpy(buf, "SSL_ERROR_WANT_ACCEPT", len);
178         case SSL_ERROR_WANT_X509_LOOKUP: return strncpy(buf, "SSL_ERROR_WANT_X509_LOOKUP", len);
179         case SSL_ERROR_SYSCALL:
180                 switch (ret) {
181                 case 0:
182                         lws_snprintf(buf, len, "SSL_ERROR_SYSCALL: EOF");
183                         return buf;
184                 case -1:
185 #ifndef LWS_PLAT_OPTEE
186                         lws_snprintf(buf, len, "SSL_ERROR_SYSCALL: %s", strerror(errno));
187 #else
188                         lws_snprintf(buf, len, "SSL_ERROR_SYSCALL: %d", errno);
189 #endif
190                         return buf;
191                 default:
192                         return strncpy(buf, "SSL_ERROR_SYSCALL", len);
193         }
194         case SSL_ERROR_SSL: return "SSL_ERROR_SSL";
195         default: return "SSL_ERROR_UNKNOWN";
196         }
197 }
198
199 void
200 lws_ssl_elaborate_error(void)
201 {
202 #if defined(LWS_WITH_ESP32)
203 #else
204         char buf[256];
205         u_long err;
206
207         while ((err = ERR_get_error()) != 0) {
208                 ERR_error_string_n(err, buf, sizeof(buf));
209                 lwsl_err("*** %s\n", buf);
210         }
211 #endif
212 }
213
214 #if !defined(LWS_WITH_ESP32)
215
216 static int
217 lws_context_init_ssl_pem_passwd_cb(char * buf, int size, int rwflag, void *userdata)
218 {
219         struct lws_context_creation_info * info =
220                         (struct lws_context_creation_info *)userdata;
221
222         strncpy(buf, info->ssl_private_key_password, size);
223         buf[size - 1] = '\0';
224
225         return strlen(buf);
226 }
227
228 void
229 lws_ssl_bind_passphrase(SSL_CTX *ssl_ctx, struct lws_context_creation_info *info)
230 {
231         if (!info->ssl_private_key_password)
232                 return;
233         /*
234          * password provided, set ssl callback and user data
235          * for checking password which will be trigered during
236          * SSL_CTX_use_PrivateKey_file function
237          */
238         SSL_CTX_set_default_passwd_cb_userdata(ssl_ctx, (void *)info);
239         SSL_CTX_set_default_passwd_cb(ssl_ctx, lws_context_init_ssl_pem_passwd_cb);
240 }
241 #endif
242
243 int
244 lws_context_init_ssl_library(struct lws_context_creation_info *info)
245 {
246 #ifdef USE_WOLFSSL
247 #ifdef USE_OLD_CYASSL
248         lwsl_notice(" Compiled with CyaSSL support\n");
249 #else
250         lwsl_notice(" Compiled with wolfSSL support\n");
251 #endif
252 #else
253 #if defined(LWS_USE_BORINGSSL)
254         lwsl_notice(" Compiled with BoringSSL support\n");
255 #else
256         lwsl_notice(" Compiled with OpenSSL support\n");
257 #endif
258 #endif
259         if (!lws_check_opt(info->options, LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT)) {
260                 lwsl_notice(" SSL disabled: no LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT\n");
261                 return 0;
262         }
263
264         /* basic openssl init */
265
266         lwsl_notice("Doing SSL library init\n");
267
268 #if !defined(LWS_WITH_ESP32)
269         SSL_library_init();
270         OpenSSL_add_all_algorithms();
271         SSL_load_error_strings();
272
273         openssl_websocket_private_data_index =
274                 SSL_get_ex_new_index(0, "lws", NULL, NULL, NULL);
275
276         openssl_SSL_CTX_private_data_index = SSL_CTX_get_ex_new_index(0,
277                         NULL, NULL, NULL, NULL);
278 #endif
279
280         return 0;
281 }
282
283 LWS_VISIBLE void
284 lws_ssl_destroy(struct lws_vhost *vhost)
285 {
286         if (!lws_check_opt(vhost->context->options,
287                            LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT))
288                 return;
289
290         if (vhost->ssl_ctx)
291                 SSL_CTX_free(vhost->ssl_ctx);
292         if (!vhost->user_supplied_ssl_ctx && vhost->ssl_client_ctx)
293                 SSL_CTX_free(vhost->ssl_client_ctx);
294 #if !defined(LWS_WITH_ESP32)
295
296 // after 1.1.0 no need
297 #if (OPENSSL_VERSION_NUMBER <  0x10100000)
298 // <= 1.0.1f = old api, 1.0.1g+ = new api
299 #if (OPENSSL_VERSION_NUMBER <= 0x1000106f) || defined(USE_WOLFSSL)
300         ERR_remove_state(0);
301 #else
302 #if OPENSSL_VERSION_NUMBER >= 0x1010005f && \
303     !defined(LIBRESSL_VERSION_NUMBER) && \
304     !defined(OPENSSL_IS_BORINGSSL)
305         ERR_remove_thread_state();
306 #else
307         ERR_remove_thread_state(NULL);
308 #endif
309 #endif
310         ERR_free_strings();
311         EVP_cleanup();
312         CRYPTO_cleanup_all_ex_data();
313 #endif
314 #endif
315 }
316
317 LWS_VISIBLE void
318 lws_ssl_remove_wsi_from_buffered_list(struct lws *wsi)
319 {
320         struct lws_context *context = wsi->context;
321         struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
322
323         if (!wsi->pending_read_list_prev &&
324             !wsi->pending_read_list_next &&
325             pt->pending_read_list != wsi)
326                 /* we are not on the list */
327                 return;
328
329         /* point previous guy's next to our next */
330         if (!wsi->pending_read_list_prev)
331                 pt->pending_read_list = wsi->pending_read_list_next;
332         else
333                 wsi->pending_read_list_prev->pending_read_list_next =
334                         wsi->pending_read_list_next;
335
336         /* point next guy's previous to our previous */
337         if (wsi->pending_read_list_next)
338                 wsi->pending_read_list_next->pending_read_list_prev =
339                         wsi->pending_read_list_prev;
340
341         wsi->pending_read_list_prev = NULL;
342         wsi->pending_read_list_next = NULL;
343 }
344
345 LWS_VISIBLE int
346 lws_ssl_capable_read(struct lws *wsi, unsigned char *buf, int len)
347 {
348         struct lws_context *context = wsi->context;
349         struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
350         int n = 0;
351 #if !defined(LWS_WITH_ESP32)
352         int ssl_read_errno = 0;
353 #endif
354
355         if (!wsi->ssl)
356                 return lws_ssl_capable_read_no_ssl(wsi, buf, len);
357
358         lws_stats_atomic_bump(context, pt, LWSSTATS_C_API_READ, 1);
359
360         errno = 0;
361         n = SSL_read(wsi->ssl, buf, len);
362 #if defined(LWS_WITH_ESP32)
363         if (!n && errno == ENOTCONN) {
364                 lwsl_debug("%p: SSL_read ENOTCONN\n", wsi);
365                 return LWS_SSL_CAPABLE_ERROR;
366         }
367 #endif
368 #if defined(LWS_WITH_STATS)
369         if (!wsi->seen_rx) {
370                 lws_stats_atomic_bump(wsi->context, pt, LWSSTATS_MS_SSL_RX_DELAY,
371                                 time_in_microseconds() - wsi->accept_start_us);
372                 lws_stats_atomic_bump(wsi->context, pt, LWSSTATS_C_SSL_CONNS_HAD_RX, 1);
373                 wsi->seen_rx = 1;
374         }
375 #endif
376
377
378         lwsl_debug("%p: SSL_read says %d\n", wsi, n);
379         /* manpage: returning 0 means connection shut down */
380         if (!n) {
381                 n = lws_ssl_get_error(wsi, n);
382                 lwsl_debug("%p: ssl err %d errno %d\n", wsi, n, errno);
383                 if (n == SSL_ERROR_ZERO_RETURN)
384                         return LWS_SSL_CAPABLE_ERROR;
385
386                 if (n == SSL_ERROR_SYSCALL) {
387 #if !defined(LWS_WITH_ESP32)
388                         int err = ERR_get_error();
389                         if (err == 0 && (ssl_read_errno == EPIPE ||
390                                          ssl_read_errno == ECONNABORTED ||
391                                          ssl_read_errno == 0))
392                                 return LWS_SSL_CAPABLE_ERROR;
393 #endif
394                 }
395
396                 lwsl_err("%s failed: %s\n",__func__,
397                          ERR_error_string(lws_ssl_get_error(wsi, 0), NULL));
398                 lws_ssl_elaborate_error();
399
400                 return LWS_SSL_CAPABLE_ERROR;
401         }
402
403         if (n < 0) {
404                 n = lws_ssl_get_error(wsi, n);
405                 // lwsl_notice("get_ssl_err result %d\n", n);
406                 if (n ==  SSL_ERROR_WANT_READ || SSL_want_read(wsi->ssl)) {
407                         lwsl_debug("%s: WANT_READ\n", __func__);
408                         lwsl_debug("%p: LWS_SSL_CAPABLE_MORE_SERVICE\n", wsi);
409                         return LWS_SSL_CAPABLE_MORE_SERVICE;
410                 }
411                 if (n ==  SSL_ERROR_WANT_WRITE || SSL_want_write(wsi->ssl)) {
412                         lwsl_debug("%s: WANT_WRITE\n", __func__);
413                         lwsl_debug("%p: LWS_SSL_CAPABLE_MORE_SERVICE\n", wsi);
414                         return LWS_SSL_CAPABLE_MORE_SERVICE;
415                 }
416
417
418                 lwsl_err("%s failed2: %s\n",__func__,
419                                  ERR_error_string(lws_ssl_get_error(wsi, 0), NULL));
420                         lws_ssl_elaborate_error();
421
422                 return LWS_SSL_CAPABLE_ERROR;
423         }
424
425         lws_stats_atomic_bump(context, pt, LWSSTATS_B_READ, n);
426
427         if (wsi->vhost)
428                 wsi->vhost->conn_stats.rx += n;
429
430         lws_restart_ws_ping_pong_timer(wsi);
431
432         /*
433          * if it was our buffer that limited what we read,
434          * check if SSL has additional data pending inside SSL buffers.
435          *
436          * Because these won't signal at the network layer with POLLIN
437          * and if we don't realize, this data will sit there forever
438          */
439         if (n != len)
440                 goto bail;
441         if (!wsi->ssl)
442                 goto bail;
443
444         if (!SSL_pending(wsi->ssl))
445                 goto bail;
446
447         if (wsi->pending_read_list_next)
448                 return n;
449         if (wsi->pending_read_list_prev)
450                 return n;
451         if (pt->pending_read_list == wsi)
452                 return n;
453
454         /* add us to the linked list of guys with pending ssl */
455         if (pt->pending_read_list)
456                 pt->pending_read_list->pending_read_list_prev = wsi;
457
458         wsi->pending_read_list_next = pt->pending_read_list;
459         wsi->pending_read_list_prev = NULL;
460         pt->pending_read_list = wsi;
461
462         return n;
463 bail:
464         lws_ssl_remove_wsi_from_buffered_list(wsi);
465
466         return n;
467 }
468
469 LWS_VISIBLE int
470 lws_ssl_pending(struct lws *wsi)
471 {
472         if (!wsi->ssl)
473                 return 0;
474
475         return SSL_pending(wsi->ssl);
476 }
477
478 LWS_VISIBLE int
479 lws_ssl_capable_write(struct lws *wsi, unsigned char *buf, int len)
480 {
481         int n;
482 #if !defined(LWS_WITH_ESP32)
483         int ssl_read_errno = 0;
484 #endif
485
486         if (!wsi->ssl)
487                 return lws_ssl_capable_write_no_ssl(wsi, buf, len);
488
489         n = SSL_write(wsi->ssl, buf, len);
490         if (n > 0)
491                 return n;
492
493         n = lws_ssl_get_error(wsi, n);
494         if (n == SSL_ERROR_WANT_READ || n == SSL_ERROR_WANT_WRITE) {
495                 if (n == SSL_ERROR_WANT_WRITE) {
496                         lwsl_debug("%s: WANT_WRITE\n", __func__);
497                         lws_set_blocking_send(wsi);
498                 }
499                 return LWS_SSL_CAPABLE_MORE_SERVICE;
500         }
501
502  if (n == SSL_ERROR_ZERO_RETURN)
503   return LWS_SSL_CAPABLE_ERROR;
504
505 #if !defined(LWS_WITH_ESP32)
506  if (n == SSL_ERROR_SYSCALL) {
507
508   int err = ERR_get_error();
509   if (err == 0
510     && (ssl_read_errno == EPIPE
511      || ssl_read_errno == ECONNABORTED
512      || ssl_read_errno == 0))
513     return LWS_SSL_CAPABLE_ERROR;
514  }
515 #endif
516
517  lwsl_err("%s failed: %s\n",__func__,
518    ERR_error_string(lws_ssl_get_error(wsi, 0), NULL));
519         lws_ssl_elaborate_error();
520
521         return LWS_SSL_CAPABLE_ERROR;
522 }
523
524 static int
525 lws_gate_accepts(struct lws_context *context, int on)
526 {
527         struct lws_vhost *v = context->vhost_list;
528
529         lwsl_info("gating accepts %d\n", on);
530         context->ssl_gate_accepts = !on;
531 #if defined(LWS_WITH_STATS)
532         context->updated = 1;
533 #endif
534
535         while (v) {
536                 if (v->use_ssl &&  v->lserv_wsi) /* gate ability to accept incoming connections */
537                         if (lws_change_pollfd(v->lserv_wsi, (LWS_POLLIN) * !on, (LWS_POLLIN) * on))
538                                 lwsl_err("Unable to set accept POLLIN %d\n", on);
539
540                 v = v->vhost_next;
541         }
542
543         return 0;
544 }
545
546 LWS_VISIBLE int
547 lws_ssl_close(struct lws *wsi)
548 {
549         lws_sockfd_type n;
550
551         if (!wsi->ssl)
552                 return 0; /* not handled */
553
554         n = SSL_get_fd(wsi->ssl);
555         SSL_shutdown(wsi->ssl);
556         compatible_close(n);
557         SSL_free(wsi->ssl);
558         wsi->ssl = NULL;
559
560         if (wsi->context->simultaneous_ssl_restriction &&
561             wsi->context->simultaneous_ssl-- ==
562                             wsi->context->simultaneous_ssl_restriction)
563                 /* we made space and can do an accept */
564                 lws_gate_accepts(wsi->context, 1);
565 #if defined(LWS_WITH_STATS)
566         wsi->context->updated = 1;
567 #endif
568
569         return 1; /* handled */
570 }
571
572 /* leave all wsi close processing to the caller */
573
574 LWS_VISIBLE int
575 lws_server_socket_service_ssl(struct lws *wsi, lws_sockfd_type accept_fd)
576 {
577         struct lws_context *context = wsi->context;
578         struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
579         int n, m;
580 #if !defined(USE_WOLFSSL) && !defined(LWS_WITH_ESP32)
581         BIO *bio;
582 #endif
583         char buf[256];
584
585         if (!LWS_SSL_ENABLED(wsi->vhost))
586                 return 0;
587
588         switch (wsi->mode) {
589         case LWSCM_SSL_INIT:
590         case LWSCM_SSL_INIT_RAW:
591                 if (wsi->ssl)
592                         lwsl_err("%s: leaking ssl\n", __func__);
593                 if (accept_fd == LWS_SOCK_INVALID)
594                         assert(0);
595                 if (context->simultaneous_ssl_restriction &&
596                     context->simultaneous_ssl >= context->simultaneous_ssl_restriction) {
597                         lwsl_notice("unable to deal with SSL connection\n");
598                         return 1;
599                 }
600                 errno = 0;
601                 wsi->ssl = SSL_new(wsi->vhost->ssl_ctx);
602                 if (wsi->ssl == NULL) {
603                         lwsl_err("SSL_new failed: %d (errno %d)\n",
604                                  lws_ssl_get_error(wsi, 0), errno);
605
606                         lws_ssl_elaborate_error();
607                         if (accept_fd != LWS_SOCK_INVALID)
608                                 compatible_close(accept_fd);
609                         goto fail;
610                 }
611                 if (context->simultaneous_ssl_restriction &&
612                     ++context->simultaneous_ssl == context->simultaneous_ssl_restriction)
613                         /* that was the last allowed SSL connection */
614                         lws_gate_accepts(context, 0);
615 #if defined(LWS_WITH_STATS)
616         context->updated = 1;
617 #endif
618
619 #if !defined(LWS_WITH_ESP32)
620                 SSL_set_ex_data(wsi->ssl,
621                         openssl_websocket_private_data_index, wsi);
622 #endif
623                 SSL_set_fd(wsi->ssl, accept_fd);
624
625 #ifdef USE_WOLFSSL
626 #ifdef USE_OLD_CYASSL
627                 CyaSSL_set_using_nonblock(wsi->ssl, 1);
628 #else
629                 wolfSSL_set_using_nonblock(wsi->ssl, 1);
630 #endif
631 #else
632 #if defined(LWS_WITH_ESP32)
633                 lws_plat_set_socket_options(wsi->vhost, accept_fd);
634 #else
635                 SSL_set_mode(wsi->ssl, SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER);
636                 bio = SSL_get_rbio(wsi->ssl);
637                 if (bio)
638                         BIO_set_nbio(bio, 1); /* nonblocking */
639                 else
640                         lwsl_notice("NULL rbio\n");
641                 bio = SSL_get_wbio(wsi->ssl);
642                 if (bio)
643                         BIO_set_nbio(bio, 1); /* nonblocking */
644                 else
645                         lwsl_notice("NULL rbio\n");
646 #endif
647 #endif
648
649                 /*
650                  * we are not accepted yet, but we need to enter ourselves
651                  * as a live connection.  That way we can retry when more
652                  * pieces come if we're not sorted yet
653                  */
654
655                 if (wsi->mode == LWSCM_SSL_INIT)
656                         wsi->mode = LWSCM_SSL_ACK_PENDING;
657                 else
658                         wsi->mode = LWSCM_SSL_ACK_PENDING_RAW;
659
660                 if (insert_wsi_socket_into_fds(context, wsi)) {
661                         lwsl_err("%s: failed to insert into fds\n", __func__);
662                         goto fail;
663                 }
664
665                 lws_set_timeout(wsi, PENDING_TIMEOUT_SSL_ACCEPT,
666                                 context->timeout_secs);
667
668                 lwsl_debug("inserted SSL accept into fds, trying SSL_accept\n");
669
670                 /* fallthru */
671
672         case LWSCM_SSL_ACK_PENDING:
673         case LWSCM_SSL_ACK_PENDING_RAW:
674                 if (lws_change_pollfd(wsi, LWS_POLLOUT, 0)) {
675                         lwsl_err("%s: lws_change_pollfd failed\n", __func__);
676                         goto fail;
677                 }
678
679                 lws_latency_pre(context, wsi);
680
681                 if (wsi->vhost->allow_non_ssl_on_ssl_port) {
682
683                         n = recv(wsi->desc.sockfd, (char *)pt->serv_buf, context->pt_serv_buf_size,
684                                  MSG_PEEK);
685
686                 /*
687                  * optionally allow non-SSL connect on SSL listening socket
688                  * This is disabled by default, if enabled it goes around any
689                  * SSL-level access control (eg, client-side certs) so leave
690                  * it disabled unless you know it's not a problem for you
691                  */
692
693                         if (n >= 1 && pt->serv_buf[0] >= ' ') {
694                                 /*
695                                 * TLS content-type for Handshake is 0x16, and
696                                 * for ChangeCipherSpec Record, it's 0x14
697                                 *
698                                 * A non-ssl session will start with the HTTP
699                                 * method in ASCII.  If we see it's not a legit
700                                 * SSL handshake kill the SSL for this
701                                 * connection and try to handle as a HTTP
702                                 * connection upgrade directly.
703                                 */
704                                 wsi->use_ssl = 0;
705
706                                 SSL_shutdown(wsi->ssl);
707                                 SSL_free(wsi->ssl);
708                                 wsi->ssl = NULL;
709                                 if (lws_check_opt(context->options,
710                                     LWS_SERVER_OPTION_REDIRECT_HTTP_TO_HTTPS))
711                                         wsi->redirect_to_https = 1;
712                                 goto accepted;
713                         }
714                         if (!n) /*
715                                  * connection is gone, or nothing to read
716                                  * if it's gone, we will timeout on
717                                  * PENDING_TIMEOUT_SSL_ACCEPT
718                                  */
719                                 break;
720                         if (n < 0 && (LWS_ERRNO == LWS_EAGAIN ||
721                                       LWS_ERRNO == LWS_EWOULDBLOCK)) {
722                                 /*
723                                  * well, we get no way to know ssl or not
724                                  * so go around again waiting for something
725                                  * to come and give us a hint, or timeout the
726                                  * connection.
727                                  */
728                                 m = SSL_ERROR_WANT_READ;
729                                 goto go_again;
730                         }
731                 }
732
733                 /* normal SSL connection processing path */
734
735 #if defined(LWS_WITH_STATS)
736                 if (!wsi->accept_start_us)
737                         wsi->accept_start_us = time_in_microseconds();
738 #endif
739
740                 n = SSL_accept(wsi->ssl);
741                 lws_latency(context, wsi,
742                         "SSL_accept LWSCM_SSL_ACK_PENDING\n", n, n == 1);
743                 lwsl_info("SSL_accept says %d\n", n);
744                 if (n == 1)
745                         goto accepted;
746
747                 m = lws_ssl_get_error(wsi, n);
748
749 #if defined(LWS_WITH_ESP32)
750                 if (m == 5 && errno == 11)
751                         m = SSL_ERROR_WANT_READ;
752 #endif
753
754 go_again:
755                 if (m == SSL_ERROR_WANT_READ || SSL_want_read(wsi->ssl)) {
756                         if (lws_change_pollfd(wsi, 0, LWS_POLLIN)) {
757                                 lwsl_err("%s: WANT_READ change_pollfd failed\n", __func__);
758                                 goto fail;
759                         }
760
761                         lwsl_info("SSL_ERROR_WANT_READ\n");
762                         break;
763                 }
764                 if (m == SSL_ERROR_WANT_WRITE || SSL_want_write(wsi->ssl)) {
765                         lwsl_debug("%s: WANT_WRITE\n", __func__);
766
767                         if (lws_change_pollfd(wsi, 0, LWS_POLLOUT)) {
768                                 lwsl_err("%s: WANT_WRITE change_pollfd failed\n", __func__);
769                                 goto fail;
770                         }
771
772                         break;
773                 }
774                 lws_stats_atomic_bump(wsi->context, pt, LWSSTATS_C_SSL_CONNECTIONS_FAILED, 1);
775                 lwsl_err("SSL_accept failed socket %u: %s\n", wsi->desc.sockfd,
776                          lws_ssl_get_error_string(m, n, buf, sizeof(buf)));
777                 lws_ssl_elaborate_error();
778                 goto fail;
779
780 accepted:
781                 lws_stats_atomic_bump(wsi->context, pt, LWSSTATS_C_SSL_CONNECTIONS_ACCEPTED, 1);
782 #if defined(LWS_WITH_STATS)
783                 lws_stats_atomic_bump(wsi->context, pt, LWSSTATS_MS_SSL_CONNECTIONS_ACCEPTED_DELAY, time_in_microseconds() - wsi->accept_start_us);
784                 wsi->accept_start_us = time_in_microseconds();
785 #endif
786
787                 /* OK, we are accepted... give him some time to negotiate */
788                 lws_set_timeout(wsi, PENDING_TIMEOUT_ESTABLISH_WITH_SERVER,
789                                 context->timeout_secs);
790
791                 if (wsi->mode == LWSCM_SSL_ACK_PENDING_RAW)
792                         wsi->mode = LWSCM_RAW;
793                 else
794                         wsi->mode = LWSCM_HTTP_SERVING;
795
796                 lws_http2_configure_if_upgraded(wsi);
797
798                 lwsl_debug("accepted new SSL conn\n");
799                 break;
800         }
801
802         return 0;
803
804 fail:
805         return 1;
806 }
807
808 void
809 lws_ssl_SSL_CTX_destroy(struct lws_vhost *vhost)
810 {
811         if (vhost->ssl_ctx)
812                 SSL_CTX_free(vhost->ssl_ctx);
813
814         if (!vhost->user_supplied_ssl_ctx && vhost->ssl_client_ctx)
815                 SSL_CTX_free(vhost->ssl_client_ctx);
816 }
817
818 void
819 lws_ssl_context_destroy(struct lws_context *context)
820 {
821
822 #if !defined(LWS_WITH_ESP32)
823
824 // after 1.1.0 no need
825 #if (OPENSSL_VERSION_NUMBER <  0x10100000)
826 // <= 1.0.1f = old api, 1.0.1g+ = new api
827 #if (OPENSSL_VERSION_NUMBER <= 0x1000106f) || defined(USE_WOLFSSL)
828         ERR_remove_state(0);
829 #else
830 #if OPENSSL_VERSION_NUMBER >= 0x1010005f && \
831     !defined(LIBRESSL_VERSION_NUMBER) && \
832     !defined(OPENSSL_IS_BORINGSSL)
833         ERR_remove_thread_state();
834 #else
835         ERR_remove_thread_state(NULL);
836 #endif
837 #endif
838         ERR_free_strings();
839         EVP_cleanup();
840         CRYPTO_cleanup_all_ex_data();
841 #endif
842 #endif
843 }