48940bd674792c987ef9235b5ff17ca9dd25a629
[platform/upstream/libwebsockets.git] / lib / private-libwebsockets.h
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
22 #include "lws_config.h"
23 #include "lws_config_private.h"
24
25
26 #if defined(LWS_WITH_CGI) && defined(LWS_HAVE_VFORK)
27 #define  _GNU_SOURCE
28 #endif
29
30 #ifdef LWS_HAVE_SYS_TYPES_H
31 #include <sys/types.h>
32 #endif
33
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #include <time.h>
38 #include <ctype.h>
39 #include <limits.h>
40 #include <stdarg.h>
41
42 #if defined(LWS_WITH_ESP32)
43 #define MSG_NOSIGNAL 0
44 #define SOMAXCONN 3
45 #endif
46
47 #if defined(LWS_WITH_ESP8266)
48 #include <user_interface.h>
49 #define assert(n)
50
51 /* rom-provided stdc functions for free, ensure use these instead of libc ones */
52
53 int ets_vsprintf(char *str, const char *format, va_list argptr);
54 int ets_vsnprintf(char *buffer, size_t sizeOfBuffer,  const char *format, va_list argptr);
55 int ets_snprintf(char *str, size_t size, const char *format, ...);
56 int ets_sprintf(char *str, const char *format, ...);
57 int os_printf_plus(const char *format, ...);
58 #undef malloc
59 #undef realloc
60 #undef free
61 void *pvPortMalloc(size_t s, const char *f, int line);
62 #define malloc(s) pvPortMalloc(s, "", 0)
63 void *pvPortRealloc(void *p, size_t s, const char *f, int line);
64 #define realloc(p, s) pvPortRealloc(p, s, "", 0)
65 void vPortFree(void *p, const char *f, int line);
66 #define free(p) vPortFree(p, "", 0)
67 #undef memcpy
68 void *ets_memcpy(void *dest, const void *src, size_t n);
69 #define memcpy ets_memcpy
70 void *ets_memset(void *dest, int v, size_t n);
71 #define memset ets_memset
72 char *ets_strcpy(char *dest, const char *src);
73 #define strcpy ets_strcpy
74 char *ets_strncpy(char *dest, const char *src, size_t n);
75 #define strncpy ets_strncpy
76 char *ets_strstr(const char *haystack, const char *needle);
77 #define strstr ets_strstr
78 int ets_strcmp(const char *s1, const char *s2);
79 int ets_strncmp(const char *s1, const char *s2, size_t n);
80 #define strcmp ets_strcmp
81 #define strncmp ets_strncmp
82 size_t ets_strlen(const char *s);
83 #define strlen ets_strlen
84 void *ets_memmove(void *dest, const void *src, size_t n);
85 #define memmove ets_memmove
86 char *ets_strchr(const char *s, int c);
87 #define strchr_ets_strchr
88 #undef _DEBUG
89 #include <osapi.h>
90
91 #else
92 #define STORE_IN_ROM
93 #include <assert.h>
94 #endif
95 #if LWS_MAX_SMP > 1
96 #include <pthread.h>
97 #endif
98
99 #ifdef LWS_HAVE_SYS_STAT_H
100 #include <sys/stat.h>
101 #endif
102
103 #if defined(WIN32) || defined(_WIN32)
104 #if (WINVER < 0x0501)
105 #undef WINVER
106 #undef _WIN32_WINNT
107 #define WINVER 0x0501
108 #define _WIN32_WINNT WINVER
109 #endif
110 #define LWS_NO_DAEMONIZE
111 #define LWS_ERRNO WSAGetLastError()
112 #define LWS_EAGAIN WSAEWOULDBLOCK
113 #define LWS_EALREADY WSAEALREADY
114 #define LWS_EINPROGRESS WSAEINPROGRESS
115 #define LWS_EINTR WSAEINTR
116 #define LWS_EISCONN WSAEISCONN
117 #define LWS_EWOULDBLOCK WSAEWOULDBLOCK
118 #define MSG_NOSIGNAL 0
119 #define SHUT_RDWR SD_BOTH
120 #define SOL_TCP IPPROTO_TCP
121 #define SHUT_WR SD_SEND
122
123 #define compatible_close(fd) closesocket(fd)
124 #define lws_set_blocking_send(wsi) wsi->sock_send_blocking = 1
125 #define lws_socket_is_valid(x) (!!x)
126 #define LWS_SOCK_INVALID 0
127 #include <winsock2.h>
128 #include <ws2tcpip.h>
129 #include <windows.h>
130 #include <tchar.h>
131 #ifdef LWS_HAVE_IN6ADDR_H
132 #include <in6addr.h>
133 #endif
134 #include <mstcpip.h>
135 #include <io.h>
136
137 #ifndef __func__
138 #define __func__ __FUNCTION__
139 #endif
140
141 #ifdef LWS_HAVE__VSNPRINTF
142 #define vsnprintf _vsnprintf
143 #endif
144
145 /* we don't have an implementation for this on windows... */
146 int kill(int pid, int sig);
147 int fork(void);
148 #ifndef SIGINT
149 #define SIGINT 2
150 #endif
151
152 #else /* not windows --> */
153
154 #include <fcntl.h>
155 #include <strings.h>
156 #include <unistd.h>
157 #include <sys/types.h>
158
159 #ifndef __cplusplus
160 #include <errno.h>
161 #endif
162 #include <netdb.h>
163 #include <signal.h>
164 #ifdef LWS_WITH_ESP8266
165 #include <sockets.h>
166 #define vsnprintf ets_vsnprintf
167 #define snprintf ets_snprintf
168 #define sprintf ets_sprintf
169
170 int kill(int pid, int sig);
171
172 #else
173 #include <sys/socket.h>
174 #endif
175 #ifdef LWS_WITH_HTTP_PROXY
176 #include <hubbub/hubbub.h>
177 #include <hubbub/parser.h>
178 #endif
179 #if defined(LWS_BUILTIN_GETIFADDRS)
180  #include <getifaddrs.h>
181 #else
182  #if !defined(LWS_WITH_ESP8266) && !defined(LWS_WITH_ESP32)
183  #include <ifaddrs.h>
184  #endif
185 #endif
186 #if defined (__ANDROID__)
187 #include <syslog.h>
188 #include <sys/resource.h>
189 #elif defined (__sun)
190 #include <syslog.h>
191 #else
192 #if !defined(LWS_WITH_ESP8266)  && !defined(LWS_WITH_ESP32)
193 #include <sys/syslog.h>
194 #endif
195 #endif
196 #include <netdb.h>
197 #if !defined(LWS_WITH_ESP8266) && !defined(LWS_WITH_ESP32)
198 #include <sys/mman.h>
199 #include <sys/un.h>
200 #include <netinet/in.h>
201 #include <netinet/tcp.h>
202 #include <arpa/inet.h>
203 #include <poll.h>
204 #endif
205 #ifdef LWS_USE_LIBEV
206 #include <ev.h>
207 #endif
208 #ifdef LWS_USE_LIBUV
209 #include <uv.h>
210 #endif
211 #ifdef LWS_USE_LIBEVENT
212 #include <event2/event.h>
213 #endif
214
215 #ifndef LWS_NO_FORK
216 #ifdef LWS_HAVE_SYS_PRCTL_H
217 #include <sys/prctl.h>
218 #endif
219 #endif
220
221 #include <sys/time.h>
222
223 #define LWS_ERRNO errno
224 #define LWS_EAGAIN EAGAIN
225 #define LWS_EALREADY EALREADY
226 #define LWS_EINPROGRESS EINPROGRESS
227 #define LWS_EINTR EINTR
228 #define LWS_EISCONN EISCONN
229 #define LWS_EWOULDBLOCK EWOULDBLOCK
230
231 #define lws_set_blocking_send(wsi)
232
233 #if defined(LWS_WITH_ESP8266)
234 #define lws_socket_is_valid(x) ((x) != NULL)
235 #define LWS_SOCK_INVALID (NULL)
236 struct lws;
237 const char *
238 lws_plat_get_peer_simple(struct lws *wsi, char *name, int namelen);
239 #else
240 #define lws_socket_is_valid(x) (x >= 0)
241 #define LWS_SOCK_INVALID (-1)
242 #endif
243 #endif
244
245 #ifndef LWS_HAVE_BZERO
246 #ifndef bzero
247 #define bzero(b, len) (memset((b), '\0', (len)), (void) 0)
248 #endif
249 #endif
250
251 #ifndef LWS_HAVE_STRERROR
252 #define strerror(x) ""
253 #endif
254
255 #ifdef LWS_OPENSSL_SUPPORT
256
257 #ifdef USE_WOLFSSL
258 #ifdef USE_OLD_CYASSL
259 #include <cyassl/openssl/ssl.h>
260 #include <cyassl/error-ssl.h>
261 #else
262 #include <wolfssl/openssl/ssl.h>
263 #include <wolfssl/error-ssl.h>
264 #define OPENSSL_NO_TLSEXT
265 #endif /* not USE_OLD_CYASSL */
266 #else
267 #include <openssl/ssl.h>
268 #if !defined(LWS_WITH_ESP32)
269 #include <openssl/evp.h>
270 #include <openssl/err.h>
271 #include <openssl/md5.h>
272 #include <openssl/sha.h>
273 #ifdef LWS_HAVE_OPENSSL_ECDH_H
274 #include <openssl/ecdh.h>
275 #endif
276 #include <openssl/x509v3.h>
277 #endif
278 #if (OPENSSL_VERSION_NUMBER < 0x0009080afL)
279 /* later openssl defines this to negate the presence of tlsext... but it was only
280  * introduced at 0.9.8j.  Earlier versions don't know it exists so don't
281  * define it... making it look like the feature exists...
282  */
283 #define OPENSSL_NO_TLSEXT
284 #endif
285 #endif /* not USE_WOLFSSL */
286 #endif
287
288 #include "libwebsockets.h"
289 #if defined(WIN32) || defined(_WIN32)
290 #else
291 static inline int compatible_close(int fd) { return close(fd); }
292 #endif
293
294 #if defined(WIN32) || defined(_WIN32)
295 #include <gettimeofday.h>
296 #endif
297
298 #if defined(LWS_WITH_ESP8266)
299 #undef compatible_close
300 #define compatible_close(fd) { fd->state=ESPCONN_CLOSE; espconn_delete(fd); }
301 lws_sockfd_type
302 esp8266_create_tcp_stream_socket(void);
303 void
304 esp8266_tcp_stream_bind(lws_sockfd_type fd, int port, struct lws *wsi);
305 #ifndef BIG_ENDIAN
306 #define BIG_ENDIAN    4321  /* to show byte order (taken from gcc) */
307 #endif
308 #ifndef LITTLE_ENDIAN
309 #define LITTLE_ENDIAN 1234
310 #endif
311 #ifndef BYTE_ORDER
312 #define BYTE_ORDER LITTLE_ENDIAN
313 #endif
314 #endif
315
316
317 #if defined(WIN32) || defined(_WIN32)
318
319 #ifndef BIG_ENDIAN
320 #define BIG_ENDIAN    4321  /* to show byte order (taken from gcc) */
321 #endif
322 #ifndef LITTLE_ENDIAN
323 #define LITTLE_ENDIAN 1234
324 #endif
325 #ifndef BYTE_ORDER
326 #define BYTE_ORDER LITTLE_ENDIAN
327 #endif
328 #ifndef u_int64_t
329 typedef unsigned __int64 u_int64_t;
330 #endif
331
332 #undef __P
333 #ifndef __P
334 #if __STDC__
335 #define __P(protos) protos
336 #else
337 #define __P(protos) ()
338 #endif
339 #endif
340
341 #else
342
343 #include <sys/stat.h>
344 #include <sys/time.h>
345
346 #if defined(__APPLE__)
347 #include <machine/endian.h>
348 #elif defined(__FreeBSD__)
349 #include <sys/endian.h>
350 #elif defined(__linux__)
351 #include <endian.h>
352 #endif
353
354 #ifdef __cplusplus
355 extern "C" {
356 #endif
357
358 #if defined(__QNX__)
359         #include <gulliver.h>
360         #if defined(__LITTLEENDIAN__)
361                 #define BYTE_ORDER __LITTLEENDIAN__
362                 #define LITTLE_ENDIAN __LITTLEENDIAN__
363                 #define BIG_ENDIAN 4321  /* to show byte order (taken from gcc); for suppres warning that BIG_ENDIAN is not defined. */
364         #endif
365         #if defined(__BIGENDIAN__)
366                 #define BYTE_ORDER __BIGENDIAN__
367                 #define LITTLE_ENDIAN 1234  /* to show byte order (taken from gcc); for suppres warning that LITTLE_ENDIAN is not defined. */
368                 #define BIG_ENDIAN __BIGENDIAN__
369         #endif
370 #endif
371
372 #if defined(__sun) && defined(__GNUC__)
373
374 #include <arpa/nameser_compat.h>
375
376 #if !defined (BYTE_ORDER)
377 # define BYTE_ORDER __BYTE_ORDER__
378 #endif
379
380 #if !defined(LITTLE_ENDIAN)
381 # define LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__
382 #endif
383
384 #if !defined(BIG_ENDIAN)
385 # define BIG_ENDIAN __ORDER_BIG_ENDIAN__
386 #endif
387
388 #endif /* sun + GNUC */
389
390 #if !defined(BYTE_ORDER)
391 # define BYTE_ORDER __BYTE_ORDER
392 #endif
393 #if !defined(LITTLE_ENDIAN)
394 # define LITTLE_ENDIAN __LITTLE_ENDIAN
395 #endif
396 #if !defined(BIG_ENDIAN)
397 # define BIG_ENDIAN __BIG_ENDIAN
398 #endif
399
400 #endif
401
402 /*
403  * Mac OSX as well as iOS do not define the MSG_NOSIGNAL flag,
404  * but happily have something equivalent in the SO_NOSIGPIPE flag.
405  */
406 #ifdef __APPLE__
407 #define MSG_NOSIGNAL SO_NOSIGPIPE
408 #endif
409
410 /*
411  * Solaris 11.X only supports POSIX 2001, MSG_NOSIGNAL appears in
412  * POSIX 2008.
413  */
414 #ifdef __sun
415 #define MSG_NOSIGNAL 0
416 #endif
417
418 #ifdef _WIN32
419 #ifndef FD_HASHTABLE_MODULUS
420 #define FD_HASHTABLE_MODULUS 32
421 #endif
422 #endif
423
424 #ifndef LWS_DEF_HEADER_LEN
425 #define LWS_DEF_HEADER_LEN 4096
426 #endif
427 #ifndef LWS_DEF_HEADER_POOL
428 #define LWS_DEF_HEADER_POOL 4
429 #endif
430 #ifndef LWS_MAX_PROTOCOLS
431 #define LWS_MAX_PROTOCOLS 5
432 #endif
433 #ifndef LWS_MAX_EXTENSIONS_ACTIVE
434 #define LWS_MAX_EXTENSIONS_ACTIVE 2
435 #endif
436 #ifndef LWS_MAX_EXT_OFFERS
437 #define LWS_MAX_EXT_OFFERS 8
438 #endif
439 #ifndef SPEC_LATEST_SUPPORTED
440 #define SPEC_LATEST_SUPPORTED 13
441 #endif
442 #ifndef AWAITING_TIMEOUT
443 #define AWAITING_TIMEOUT 20
444 #endif
445 #ifndef CIPHERS_LIST_STRING
446 #define CIPHERS_LIST_STRING "DEFAULT"
447 #endif
448 #ifndef LWS_SOMAXCONN
449 #define LWS_SOMAXCONN SOMAXCONN
450 #endif
451
452 #define MAX_WEBSOCKET_04_KEY_LEN 128
453
454 #ifndef SYSTEM_RANDOM_FILEPATH
455 #define SYSTEM_RANDOM_FILEPATH "/dev/urandom"
456 #endif
457
458 enum lws_websocket_opcodes_07 {
459         LWSWSOPC_CONTINUATION = 0,
460         LWSWSOPC_TEXT_FRAME = 1,
461         LWSWSOPC_BINARY_FRAME = 2,
462
463         LWSWSOPC_NOSPEC__MUX = 7,
464
465         /* control extensions 8+ */
466
467         LWSWSOPC_CLOSE = 8,
468         LWSWSOPC_PING = 9,
469         LWSWSOPC_PONG = 0xa,
470 };
471
472
473 enum lws_connection_states {
474         LWSS_HTTP,
475         LWSS_HTTP_ISSUING_FILE,
476         LWSS_HTTP_HEADERS,
477         LWSS_HTTP_BODY,
478         LWSS_DEAD_SOCKET,
479         LWSS_ESTABLISHED,
480         LWSS_CLIENT_HTTP_ESTABLISHED,
481         LWSS_CLIENT_UNCONNECTED,
482         LWSS_RETURNED_CLOSE_ALREADY,
483         LWSS_AWAITING_CLOSE_ACK,
484         LWSS_FLUSHING_STORED_SEND_BEFORE_CLOSE,
485         LWSS_SHUTDOWN,
486
487         LWSS_HTTP2_AWAIT_CLIENT_PREFACE,
488         LWSS_HTTP2_ESTABLISHED_PRE_SETTINGS,
489         LWSS_HTTP2_ESTABLISHED,
490
491         LWSS_CGI,
492 };
493
494 enum http_version {
495         HTTP_VERSION_1_0,
496         HTTP_VERSION_1_1,
497         HTTP_VERSION_2
498 };
499
500 enum http_connection_type {
501         HTTP_CONNECTION_CLOSE,
502         HTTP_CONNECTION_KEEP_ALIVE
503 };
504
505 enum lws_pending_protocol_send {
506         LWS_PPS_NONE,
507         LWS_PPS_HTTP2_MY_SETTINGS,
508         LWS_PPS_HTTP2_ACK_SETTINGS,
509         LWS_PPS_HTTP2_PONG,
510 };
511
512 enum lws_rx_parse_state {
513         LWS_RXPS_NEW,
514
515         LWS_RXPS_04_mask_1,
516         LWS_RXPS_04_mask_2,
517         LWS_RXPS_04_mask_3,
518
519         LWS_RXPS_04_FRAME_HDR_1,
520         LWS_RXPS_04_FRAME_HDR_LEN,
521         LWS_RXPS_04_FRAME_HDR_LEN16_2,
522         LWS_RXPS_04_FRAME_HDR_LEN16_1,
523         LWS_RXPS_04_FRAME_HDR_LEN64_8,
524         LWS_RXPS_04_FRAME_HDR_LEN64_7,
525         LWS_RXPS_04_FRAME_HDR_LEN64_6,
526         LWS_RXPS_04_FRAME_HDR_LEN64_5,
527         LWS_RXPS_04_FRAME_HDR_LEN64_4,
528         LWS_RXPS_04_FRAME_HDR_LEN64_3,
529         LWS_RXPS_04_FRAME_HDR_LEN64_2,
530         LWS_RXPS_04_FRAME_HDR_LEN64_1,
531
532         LWS_RXPS_07_COLLECT_FRAME_KEY_1,
533         LWS_RXPS_07_COLLECT_FRAME_KEY_2,
534         LWS_RXPS_07_COLLECT_FRAME_KEY_3,
535         LWS_RXPS_07_COLLECT_FRAME_KEY_4,
536
537         LWS_RXPS_PAYLOAD_UNTIL_LENGTH_EXHAUSTED
538 };
539
540 #define LWSCM_FLAG_IMPLIES_CALLBACK_CLOSED_CLIENT_HTTP 32
541
542 enum connection_mode {
543         LWSCM_HTTP_SERVING,
544         LWSCM_HTTP_SERVING_ACCEPTED, /* actual HTTP service going on */
545         LWSCM_PRE_WS_SERVING_ACCEPT,
546
547         LWSCM_WS_SERVING,
548         LWSCM_WS_CLIENT,
549
550         LWSCM_HTTP2_SERVING,
551
552         /* transient, ssl delay hiding */
553         LWSCM_SSL_ACK_PENDING,
554         LWSCM_SSL_INIT,
555         /* as above, but complete into LWSCM_RAW */
556         LWSCM_SSL_ACK_PENDING_RAW,
557         LWSCM_SSL_INIT_RAW,
558
559         /* special internal types */
560         LWSCM_SERVER_LISTENER,
561         LWSCM_CGI, /* stdin, stdout, stderr for another cgi master wsi */
562         LWSCM_RAW, /* raw with bulk handling */
563         LWSCM_RAW_FILEDESC, /* raw without bulk handling */
564
565         /* HTTP Client related */
566         LWSCM_HTTP_CLIENT = LWSCM_FLAG_IMPLIES_CALLBACK_CLOSED_CLIENT_HTTP,
567         LWSCM_HTTP_CLIENT_ACCEPTED, /* actual HTTP service going on */
568         LWSCM_WSCL_WAITING_CONNECT,
569         LWSCM_WSCL_WAITING_PROXY_REPLY,
570         LWSCM_WSCL_ISSUE_HANDSHAKE,
571         LWSCM_WSCL_ISSUE_HANDSHAKE2,
572         LWSCM_WSCL_ISSUE_HTTP_BODY,
573         LWSCM_WSCL_WAITING_SSL,
574         LWSCM_WSCL_WAITING_SERVER_REPLY,
575         LWSCM_WSCL_WAITING_EXTENSION_CONNECT,
576         LWSCM_WSCL_PENDING_CANDIDATE_CHILD,
577         LWSCM_WSCL_WAITING_SOCKS_GREETING_REPLY,
578         LWSCM_WSCL_WAITING_SOCKS_CONNECT_REPLY,
579         LWSCM_WSCL_WAITING_SOCKS_AUTH_REPLY,
580
581         /****** add new things just above ---^ ******/
582
583
584 };
585
586 /* enums of socks version */
587 enum socks_version {
588         SOCKS_VERSION_4 = 4,
589         SOCKS_VERSION_5 = 5
590 };
591
592 /* enums of subnegotiation version */
593 enum socks_subnegotiation_version {
594         SOCKS_SUBNEGOTIATION_VERSION_1 = 1,
595 };
596
597 /* enums of socks commands */
598 enum socks_command {
599         SOCKS_COMMAND_CONNECT = 1,
600         SOCKS_COMMAND_BIND = 2,
601         SOCKS_COMMAND_UDP_ASSOCIATE = 3
602 };
603
604 /* enums of socks address type */
605 enum socks_atyp {
606         SOCKS_ATYP_IPV4 = 1,
607         SOCKS_ATYP_DOMAINNAME = 3,
608         SOCKS_ATYP_IPV6 = 4
609 };
610
611 /* enums of socks authentication methods */
612 enum socks_auth_method {
613         SOCKS_AUTH_NO_AUTH = 0,
614         SOCKS_AUTH_GSSAPI = 1,
615         SOCKS_AUTH_USERNAME_PASSWORD = 2
616 };
617
618 /* enums of subnegotiation status */
619 enum socks_subnegotiation_status {
620         SOCKS_SUBNEGOTIATION_STATUS_SUCCESS = 0,
621 };
622
623 /* enums of socks request reply */
624 enum socks_request_reply {
625         SOCKS_REQUEST_REPLY_SUCCESS = 0,
626         SOCKS_REQUEST_REPLY_FAILURE_GENERAL = 1,
627         SOCKS_REQUEST_REPLY_CONNECTION_NOT_ALLOWED = 2,
628         SOCKS_REQUEST_REPLY_NETWORK_UNREACHABLE = 3,
629         SOCKS_REQUEST_REPLY_HOST_UNREACHABLE = 4,
630         SOCKS_REQUEST_REPLY_CONNECTION_REFUSED = 5,
631         SOCKS_REQUEST_REPLY_TTL_EXPIRED = 6,
632         SOCKS_REQUEST_REPLY_COMMAND_NOT_SUPPORTED = 7,
633         SOCKS_REQUEST_REPLY_ATYP_NOT_SUPPORTED = 8
634 };
635
636 /* enums used to generate socks messages */
637 enum socks_msg_type {
638         /* greeting */
639         SOCKS_MSG_GREETING,
640         /* credential, user name and password */
641         SOCKS_MSG_USERNAME_PASSWORD,
642         /* connect command */
643         SOCKS_MSG_CONNECT
644 };
645
646 enum {
647         LWS_RXFLOW_ALLOW = (1 << 0),
648         LWS_RXFLOW_PENDING_CHANGE = (1 << 1),
649 };
650
651 /* this is not usable directly by user code any more, lws_close_reason() */
652 #define LWS_WRITE_CLOSE 4
653
654 struct lws_protocols;
655 struct lws;
656
657 #if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) || defined(LWS_USE_LIBEVENT)
658
659 struct lws_io_watcher {
660 #ifdef LWS_USE_LIBEV
661         ev_io ev_watcher;
662 #endif
663 #ifdef LWS_USE_LIBUV
664         uv_poll_t uv_watcher;
665 #endif
666 #ifdef LWS_USE_LIBEVENT
667         struct event *event_watcher;
668 #endif
669         struct lws_context *context;
670 };
671
672 struct lws_signal_watcher {
673 #ifdef LWS_USE_LIBEV
674         ev_signal ev_watcher;
675 #endif
676 #ifdef LWS_USE_LIBUV
677         uv_signal_t uv_watcher;
678 #endif
679 #ifdef LWS_USE_LIBEVENT
680         struct event *event_watcher;
681 #endif
682         struct lws_context *context;
683 };
684 #endif
685
686 #ifdef _WIN32
687 #define LWS_FD_HASH(fd) ((fd ^ (fd >> 8) ^ (fd >> 16)) % FD_HASHTABLE_MODULUS)
688 struct lws_fd_hashtable {
689         struct lws **wsi;
690         int length;
691 };
692 #endif
693
694 /*
695  * This is totally opaque to code using the library.  It's exported as a
696  * forward-reference pointer-only declaration; the user can use the pointer with
697  * other APIs to get information out of it.
698  */
699
700 struct lws_fragments {
701         unsigned int offset;
702         unsigned short len;
703         unsigned char nfrag; /* which ah->frag[] continues this content, or 0 */
704 };
705
706 /*
707  * these are assigned from a pool held in the context.
708  * Both client and server mode uses them for http header analysis
709  */
710
711 struct allocated_headers {
712         struct lws *wsi; /* owner */
713         char *data; /* prepared by context init to point to dedicated storage */
714         /*
715          * the randomly ordered fragments, indexed by frag_index and
716          * lws_fragments->nfrag for continuation.
717          */
718         struct lws_fragments frags[WSI_TOKEN_COUNT * 2];
719         time_t assigned;
720         /*
721          * for each recognized token, frag_index says which frag[] his data
722          * starts in (0 means the token did not appear)
723          * the actual header data gets dumped as it comes in, into data[]
724          */
725         unsigned char frag_index[WSI_TOKEN_COUNT];
726         unsigned char rx[2048];
727
728         unsigned int rxpos;
729         unsigned int rxlen;
730         unsigned int pos;
731
732         unsigned int http_response;
733
734 #ifndef LWS_NO_CLIENT
735         char initial_handshake_hash_base64[30];
736 #endif
737
738         unsigned char in_use;
739         unsigned char nfrag;
740 };
741
742 /*
743  * so we can have n connections being serviced simultaneously,
744  * these things need to be isolated per-thread.
745  */
746
747 struct lws_context_per_thread {
748 #if LWS_MAX_SMP > 1
749         pthread_mutex_t lock;
750 #endif
751         struct lws_pollfd *fds;
752 #if defined(LWS_WITH_ESP8266)
753         struct lws **lws_vs_fds_index;
754 #endif
755         struct lws *rx_draining_ext_list;
756         struct lws *tx_draining_ext_list;
757         struct lws *timeout_list;
758 #if defined(LWS_USE_LIBUV) || defined(LWS_USE_LIBEVENT)
759         struct lws_context *context;
760 #endif
761 #ifdef LWS_WITH_CGI
762         struct lws_cgi *cgi_list;
763 #endif
764         void *http_header_data;
765         struct allocated_headers *ah_pool;
766         struct lws *ah_wait_list;
767         int ah_wait_list_length;
768 #ifdef LWS_OPENSSL_SUPPORT
769         struct lws *pending_read_list; /* linked list */
770 #endif
771 #if defined(LWS_USE_LIBEV)
772         struct ev_loop *io_loop_ev;
773 #endif
774 #if defined(LWS_USE_LIBUV)
775         uv_loop_t *io_loop_uv;
776         uv_signal_t signals[8];
777         uv_timer_t uv_timeout_watcher;
778         uv_idle_t uv_idle;
779 #endif
780 #if defined(LWS_USE_LIBEVENT)
781         struct event_base *io_loop_event_base;
782 #endif
783 #if defined(LWS_USE_LIBEV)
784         struct lws_io_watcher w_accept;
785 #endif
786 #if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) || defined(LWS_USE_LIBEVENT)
787         struct lws_signal_watcher w_sigint;
788         unsigned char ev_loop_foreign:1;
789 #endif
790
791         unsigned long count_conns;
792         /*
793          * usable by anything in the service code, but only if the scope
794          * does not last longer than the service action (since next service
795          * of any socket can likewise use it and overwrite)
796          */
797         unsigned char *serv_buf;
798 #ifdef _WIN32
799         WSAEVENT *events;
800 #else
801         lws_sockfd_type dummy_pipe_fds[2];
802 #endif
803         unsigned int fds_count;
804
805         short ah_count_in_use;
806         unsigned char tid;
807         unsigned char lock_depth;
808 };
809
810 struct lws_conn_stats {
811         unsigned long long rx, tx;
812         unsigned long conn, trans, ws_upg, http2_upg, rejected;
813 };
814
815 void
816 lws_sum_stats(const struct lws_context *ctx, struct lws_conn_stats *cs);
817
818 /*
819  * virtual host -related context information
820  *   vhostwide SSL context
821  *   vhostwide proxy
822  *
823  * hierarchy:
824  *
825  * context -> vhost -> wsi
826  *
827  * incoming connection non-SSL vhost binding:
828  *
829  *    listen socket -> wsi -> select vhost after first headers
830  *
831  * incoming connection SSL vhost binding:
832  *
833  *    SSL SNI -> wsi -> bind after SSL negotiation
834  */
835
836 struct lws_vhost {
837 #if !defined(LWS_WITH_ESP8266)
838         char http_proxy_address[128];
839         char proxy_basic_auth_token[128];
840 #if defined(LWS_WITH_SOCKS5)
841         char socks_proxy_address[128];
842         char socks_user[96];
843         char socks_password[96];
844 #endif
845 #endif
846 #if defined(LWS_WITH_ESP8266)
847         /* listen sockets need a place to hang their hat */
848         esp_tcp tcp;
849 #endif
850         struct lws_conn_stats conn_stats;
851         struct lws_context *context;
852         struct lws_vhost *vhost_next;
853         const struct lws_http_mount *mount_list;
854         struct lws *lserv_wsi;
855         const char *name;
856         const char *iface;
857         const struct lws_protocols *protocols;
858         void **protocol_vh_privs;
859         const struct lws_protocol_vhost_options *pvo;
860         const struct lws_protocol_vhost_options *headers;
861         struct lws **same_vh_protocol_list;
862 #ifdef LWS_OPENSSL_SUPPORT
863         SSL_CTX *ssl_ctx;
864         SSL_CTX *ssl_client_ctx;
865 #endif
866 #ifndef LWS_NO_EXTENSIONS
867         const struct lws_extension *extensions;
868 #endif
869
870         int listen_port;
871         unsigned int http_proxy_port;
872 #if defined(LWS_WITH_SOCKS5)
873         unsigned int socks_proxy_port;
874 #endif
875         unsigned int options;
876         int count_protocols;
877         int ka_time;
878         int ka_probes;
879         int ka_interval;
880         int keepalive_timeout;
881 #ifdef LWS_WITH_ACCESS_LOG
882         int log_fd;
883 #endif
884
885 #ifdef LWS_OPENSSL_SUPPORT
886         int use_ssl;
887         int allow_non_ssl_on_ssl_port;
888         unsigned int user_supplied_ssl_ctx:1;
889 #endif
890
891         unsigned int created_vhost_protocols:1;
892
893         unsigned char default_protocol_index;
894         unsigned char raw_protocol_index;
895 };
896
897 /*
898  * the rest is managed per-context, that includes
899  *
900  *  - processwide single fd -> wsi lookup
901  *  - contextwide headers pool
902  */
903
904 struct lws_context {
905         time_t last_timeout_check_s;
906         time_t last_ws_ping_pong_check_s;
907         time_t time_up;
908         const struct lws_plat_file_ops *fops;
909         struct lws_plat_file_ops fops_platform;
910 #if defined(LWS_WITH_ZIP_FOPS)
911         struct lws_plat_file_ops fops_zip;
912 #endif
913         struct lws_context_per_thread pt[LWS_MAX_SMP];
914         struct lws_conn_stats conn_stats;
915 #ifdef _WIN32
916 /* different implementation between unix and windows */
917         struct lws_fd_hashtable fd_hashtable[FD_HASHTABLE_MODULUS];
918 #else
919 #if defined(LWS_WITH_ESP8266)
920         struct espconn **connpool; /* .reverse points to the wsi */
921         void *rxd;
922         int rxd_len;
923         os_timer_t to_timer;
924 #else
925         struct lws **lws_lookup;  /* fd to wsi */
926 #endif
927 #endif
928         struct lws_vhost *vhost_list;
929         struct lws_plugin *plugin_list;
930
931         void *external_baggage_free_on_destroy;
932         const struct lws_token_limits *token_limits;
933         void *user_space;
934         const char *server_string;
935         const struct lws_protocol_vhost_options *reject_service_keywords;
936         lws_reload_func deprecation_cb;
937
938 #if defined(LWS_HAVE_SYS_CAPABILITY_H) && defined(LWS_HAVE_LIBCAP)
939         cap_value_t caps[4];
940         char count_caps;
941 #endif
942
943 #if defined(LWS_USE_LIBEV)
944         lws_ev_signal_cb_t * lws_ev_sigint_cb;
945 #endif
946 #if defined(LWS_USE_LIBUV)
947         uv_signal_cb lws_uv_sigint_cb;
948 #endif
949 #if defined(LWS_USE_LIBEVENT)
950         lws_event_signal_cb_t * lws_event_sigint_cb;
951 #endif
952         char canonical_hostname[128];
953 #ifdef LWS_LATENCY
954         unsigned long worst_latency;
955         char worst_latency_info[256];
956 #endif
957
958 #if defined(LWS_WITH_STATS)
959         uint64_t lws_stats[LWSSTATS_SIZE];
960         uint64_t last_dump;
961         int updated;
962 #endif
963
964         int max_fds;
965 #if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) || defined(LWS_USE_LIBEVENT)
966         int use_ev_sigint;
967 #endif
968         int started_with_parent;
969         int uid, gid;
970
971         int fd_random;
972 #ifdef LWS_OPENSSL_SUPPORT
973 #define lws_ssl_anybody_has_buffered_read(w) \
974                 (w->vhost->use_ssl && \
975                  w->context->pt[(int)w->tsi].pending_read_list)
976 #define lws_ssl_anybody_has_buffered_read_tsi(c, t) \
977                 (/*c->use_ssl && */ \
978                  c->pt[(int)t].pending_read_list)
979 #else
980 #define lws_ssl_anybody_has_buffered_read(ctx) (0)
981 #define lws_ssl_anybody_has_buffered_read_tsi(ctx, t) (0)
982 #endif
983         int count_wsi_allocated;
984         int count_cgi_spawned;
985         unsigned int options;
986         unsigned int fd_limit_per_thread;
987         unsigned int timeout_secs;
988         unsigned int pt_serv_buf_size;
989         int max_http_header_data;
990         int simultaneous_ssl_restriction;
991         int simultaneous_ssl;
992
993         unsigned int deprecated:1;
994         unsigned int being_destroyed:1;
995         unsigned int being_destroyed1:1;
996         unsigned int requested_kill:1;
997         unsigned int protocol_init_done:1;
998         unsigned int ssl_gate_accepts:1;
999         /*
1000          * set to the Thread ID that's doing the service loop just before entry
1001          * to poll indicates service thread likely idling in poll()
1002          * volatile because other threads may check it as part of processing
1003          * for pollfd event change.
1004          */
1005         volatile int service_tid;
1006         int service_tid_detected;
1007
1008         short max_http_header_pool;
1009         short count_threads;
1010         short plugin_protocol_count;
1011         short plugin_extension_count;
1012         short server_string_len;
1013         unsigned short ws_ping_pong_interval;
1014         unsigned short deprecation_pending_listen_close_count;
1015         uint8_t max_fi;
1016 };
1017
1018 #define lws_get_context_protocol(ctx, x) ctx->vhost_list->protocols[x]
1019 #define lws_get_vh_protocol(vh, x) vh->protocols[x]
1020
1021 LWS_EXTERN void
1022 lws_close_free_wsi_final(struct lws *wsi);
1023 LWS_EXTERN void
1024 lws_libuv_closehandle(struct lws *wsi);
1025
1026 LWS_VISIBLE LWS_EXTERN int
1027 lws_plat_plugins_init(struct lws_context * context, const char * const *d);
1028
1029 LWS_VISIBLE LWS_EXTERN int
1030 lws_plat_plugins_destroy(struct lws_context * context);
1031
1032 LWS_EXTERN void
1033 lws_restart_ws_ping_pong_timer(struct lws *wsi);
1034
1035 struct lws *
1036 lws_adopt_socket_vhost(struct lws_vhost *vh, lws_sockfd_type accept_fd);
1037
1038
1039 enum {
1040         LWS_EV_READ = (1 << 0),
1041         LWS_EV_WRITE = (1 << 1),
1042         LWS_EV_START = (1 << 2),
1043         LWS_EV_STOP = (1 << 3),
1044
1045         LWS_EV_PREPARE_DELETION = (1 << 31),
1046 };
1047
1048 #if defined(LWS_USE_LIBEV)
1049 LWS_EXTERN void
1050 lws_libev_accept(struct lws *new_wsi, lws_sock_file_fd_type desc);
1051 LWS_EXTERN void
1052 lws_libev_io(struct lws *wsi, int flags);
1053 LWS_EXTERN int
1054 lws_libev_init_fd_table(struct lws_context *context);
1055 LWS_EXTERN void
1056 lws_libev_destroyloop(struct lws_context *context, int tsi);
1057 LWS_EXTERN void
1058 lws_libev_run(const struct lws_context *context, int tsi);
1059 #define LWS_LIBEV_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBEV)
1060 LWS_EXTERN void lws_feature_status_libev(struct lws_context_creation_info *info);
1061 #else
1062 #define lws_libev_accept(_a, _b) ((void) 0)
1063 #define lws_libev_io(_a, _b) ((void) 0)
1064 #define lws_libev_init_fd_table(_a) (0)
1065 #define lws_libev_run(_a, _b) ((void) 0)
1066 #define lws_libev_destroyloop(_a, _b) ((void) 0)
1067 #define LWS_LIBEV_ENABLED(context) (0)
1068 #if LWS_POSIX && !defined(LWS_WITH_ESP32)
1069 #define lws_feature_status_libev(_a) \
1070                         lwsl_notice("libev support not compiled in\n")
1071 #else
1072 #define lws_feature_status_libev(_a)
1073 #endif
1074 #endif
1075
1076 #if defined(LWS_USE_LIBUV)
1077 LWS_EXTERN void
1078 lws_libuv_accept(struct lws *new_wsi, lws_sock_file_fd_type desc);
1079 LWS_EXTERN void
1080 lws_libuv_io(struct lws *wsi, int flags);
1081 LWS_EXTERN int
1082 lws_libuv_init_fd_table(struct lws_context *context);
1083 LWS_EXTERN void
1084 lws_libuv_run(const struct lws_context *context, int tsi);
1085 LWS_EXTERN void
1086 lws_libuv_destroyloop(struct lws_context *context, int tsi);
1087 LWS_EXTERN int
1088 lws_uv_initvhost(struct lws_vhost* vh, struct lws*);
1089 #define LWS_LIBUV_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBUV)
1090 LWS_EXTERN void lws_feature_status_libuv(struct lws_context_creation_info *info);
1091 #else
1092 #define lws_libuv_accept(_a, _b) ((void) 0)
1093 #define lws_libuv_io(_a, _b) ((void) 0)
1094 #define lws_libuv_init_fd_table(_a) (0)
1095 #define lws_libuv_run(_a, _b) ((void) 0)
1096 #define lws_libuv_destroyloop(_a, _b) ((void) 0)
1097 #define LWS_LIBUV_ENABLED(context) (0)
1098 #if LWS_POSIX && !defined(LWS_WITH_ESP32)
1099 #define lws_feature_status_libuv(_a) \
1100                         lwsl_notice("libuv support not compiled in\n")
1101 #else
1102 #define lws_feature_status_libuv(_a)
1103 #endif
1104 #endif
1105
1106 #if defined(LWS_USE_LIBEVENT)
1107 LWS_EXTERN void
1108 lws_libevent_accept(struct lws *new_wsi, lws_sock_file_fd_type desc);
1109 LWS_EXTERN void
1110 lws_libevent_io(struct lws *wsi, int flags);
1111 LWS_EXTERN int
1112 lws_libevent_init_fd_table(struct lws_context *context);
1113 LWS_EXTERN void
1114 lws_libevent_destroyloop(struct lws_context *context, int tsi);
1115 LWS_EXTERN void
1116 lws_libevent_run(const struct lws_context *context, int tsi);
1117 #define LWS_LIBEVENT_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBEVENT)
1118 LWS_EXTERN void lws_feature_status_libevent(struct lws_context_creation_info *info);
1119 #else
1120 #define lws_libevent_accept(_a, _b) ((void) 0)
1121 #define lws_libevent_io(_a, _b) ((void) 0)
1122 #define lws_libevent_init_fd_table(_a) (0)
1123 #define lws_libevent_run(_a, _b) ((void) 0)
1124 #define lws_libevent_destroyloop(_a, _b) ((void) 0)
1125 #define LWS_LIBEVENT_ENABLED(context) (0)
1126 #if LWS_POSIX && !defined(LWS_WITH_ESP32)
1127 #define lws_feature_status_libevent(_a) \
1128                         lwsl_notice("libevent support not compiled in\n")
1129 #else
1130 #define lws_feature_status_libevent(_a)
1131 #endif
1132 #endif
1133
1134
1135 #ifdef LWS_USE_IPV6
1136 #define LWS_IPV6_ENABLED(vh) \
1137         (!lws_check_opt(vh->context->options, LWS_SERVER_OPTION_DISABLE_IPV6) && \
1138          !lws_check_opt(vh->options, LWS_SERVER_OPTION_DISABLE_IPV6))
1139 #else
1140 #define LWS_IPV6_ENABLED(context) (0)
1141 #endif
1142
1143 #ifdef LWS_USE_UNIX_SOCK
1144 #define LWS_UNIX_SOCK_ENABLED(vhost) \
1145         (vhost->options & LWS_SERVER_OPTION_UNIX_SOCK)
1146 #else
1147 #define LWS_UNIX_SOCK_ENABLED(vhost) (0)
1148 #endif
1149 enum uri_path_states {
1150         URIPS_IDLE,
1151         URIPS_SEEN_SLASH,
1152         URIPS_SEEN_SLASH_DOT,
1153         URIPS_SEEN_SLASH_DOT_DOT,
1154 };
1155
1156 enum uri_esc_states {
1157         URIES_IDLE,
1158         URIES_SEEN_PERCENT,
1159         URIES_SEEN_PERCENT_H1,
1160 };
1161
1162 /* notice that these union members:
1163  *
1164  *  hdr
1165  *  http
1166  *  http2
1167  *
1168  * all have a pointer to allocated_headers struct as their first member.
1169  *
1170  * It means for allocated_headers access, the three union paths can all be
1171  * used interchangeably to access the same data
1172  */
1173
1174
1175 #ifndef LWS_NO_CLIENT
1176 struct client_info_stash {
1177         char address[256];
1178         char path[4096];
1179         char host[256];
1180         char origin[256];
1181         char protocol[256];
1182         char method[16];
1183 };
1184 #endif
1185
1186 struct _lws_header_related {
1187         /* MUST be first in struct */
1188         struct allocated_headers *ah;
1189         struct lws *ah_wait_list;
1190         unsigned char *preamble_rx;
1191 #ifndef LWS_NO_CLIENT
1192         struct client_info_stash *stash;
1193 #endif
1194         unsigned int preamble_rx_len;
1195         enum uri_path_states ups;
1196         enum uri_esc_states ues;
1197         short lextable_pos;
1198         unsigned int current_token_limit;
1199
1200         char esc_stash;
1201         char post_literal_equal;
1202         unsigned char parser_state; /* enum lws_token_indexes */
1203 };
1204
1205 #if defined(LWS_WITH_RANGES)
1206 enum range_states {
1207         LWSRS_NO_ACTIVE_RANGE,
1208         LWSRS_BYTES_EQ,
1209         LWSRS_FIRST,
1210         LWSRS_STARTING,
1211         LWSRS_ENDING,
1212         LWSRS_COMPLETED,
1213         LWSRS_SYNTAX,
1214 };
1215
1216 struct lws_range_parsing {
1217         unsigned long long start, end, extent, agg, budget;
1218         const char buf[128];
1219         int pos;
1220         enum range_states state;
1221         char start_valid, end_valid, ctr, count_ranges, did_try, inside, send_ctr;
1222 };
1223
1224 int
1225 lws_ranges_init(struct lws *wsi, struct lws_range_parsing *rp, unsigned long long extent);
1226 int
1227 lws_ranges_next(struct lws_range_parsing *rp);
1228 void
1229 lws_ranges_reset(struct lws_range_parsing *rp);
1230 #endif
1231
1232 struct _lws_http_mode_related {
1233         /* MUST be first in struct */
1234         struct allocated_headers *ah; /* mirroring  _lws_header_related */
1235         struct lws *ah_wait_list;
1236         unsigned char *preamble_rx;
1237 #ifndef LWS_NO_CLIENT
1238         struct client_info_stash *stash;
1239 #endif
1240         unsigned int preamble_rx_len;
1241         struct lws *new_wsi_list;
1242         lws_filepos_t filepos;
1243         lws_filepos_t filelen;
1244         lws_fop_fd_t fop_fd;
1245
1246 #if defined(LWS_WITH_RANGES)
1247         struct lws_range_parsing range;
1248         char multipart_content_type[64];
1249 #endif
1250
1251         enum http_version request_version;
1252         enum http_connection_type connection_type;
1253         unsigned int content_length;
1254         unsigned int content_remain;
1255 };
1256
1257 #ifdef LWS_USE_HTTP2
1258
1259 enum lws_http2_settings {
1260         LWS_HTTP2_SETTINGS__HEADER_TABLE_SIZE = 1,
1261         LWS_HTTP2_SETTINGS__ENABLE_PUSH,
1262         LWS_HTTP2_SETTINGS__MAX_CONCURRENT_STREAMS,
1263         LWS_HTTP2_SETTINGS__INITIAL_WINDOW_SIZE,
1264         LWS_HTTP2_SETTINGS__MAX_FRAME_SIZE,
1265         LWS_HTTP2_SETTINGS__MAX_HEADER_LIST_SIZE,
1266
1267         LWS_HTTP2_SETTINGS__COUNT /* always last */
1268 };
1269
1270 enum lws_http2_wellknown_frame_types {
1271         LWS_HTTP2_FRAME_TYPE_DATA,
1272         LWS_HTTP2_FRAME_TYPE_HEADERS,
1273         LWS_HTTP2_FRAME_TYPE_PRIORITY,
1274         LWS_HTTP2_FRAME_TYPE_RST_STREAM,
1275         LWS_HTTP2_FRAME_TYPE_SETTINGS,
1276         LWS_HTTP2_FRAME_TYPE_PUSH_PROMISE,
1277         LWS_HTTP2_FRAME_TYPE_PING,
1278         LWS_HTTP2_FRAME_TYPE_GOAWAY,
1279         LWS_HTTP2_FRAME_TYPE_WINDOW_UPDATE,
1280         LWS_HTTP2_FRAME_TYPE_CONTINUATION,
1281
1282         LWS_HTTP2_FRAME_TYPE_COUNT /* always last */
1283 };
1284
1285 enum lws_http2_flags {
1286         LWS_HTTP2_FLAG_END_STREAM = 1,
1287         LWS_HTTP2_FLAG_END_HEADERS = 4,
1288         LWS_HTTP2_FLAG_PADDED = 8,
1289         LWS_HTTP2_FLAG_PRIORITY = 0x20,
1290
1291         LWS_HTTP2_FLAG_SETTINGS_ACK = 1,
1292 };
1293
1294 #define LWS_HTTP2_STREAM_ID_MASTER 0
1295 #define LWS_HTTP2_FRAME_HEADER_LENGTH 9
1296 #define LWS_HTTP2_SETTINGS_LENGTH 6
1297
1298 struct http2_settings {
1299         unsigned int setting[LWS_HTTP2_SETTINGS__COUNT];
1300 };
1301
1302 enum http2_hpack_state {
1303
1304         /* optional before first header block */
1305         HPKS_OPT_PADDING,
1306         HKPS_OPT_E_DEPENDENCY,
1307         HKPS_OPT_WEIGHT,
1308
1309         /* header block */
1310         HPKS_TYPE,
1311
1312         HPKS_IDX_EXT,
1313
1314         HPKS_HLEN,
1315         HPKS_HLEN_EXT,
1316
1317         HPKS_DATA,
1318
1319         /* optional after last header block */
1320         HKPS_OPT_DISCARD_PADDING,
1321 };
1322
1323 enum http2_hpack_type {
1324         HPKT_INDEXED_HDR_7,
1325         HPKT_INDEXED_HDR_6_VALUE_INCR,
1326         HPKT_LITERAL_HDR_VALUE_INCR,
1327         HPKT_INDEXED_HDR_4_VALUE,
1328         HPKT_LITERAL_HDR_VALUE,
1329         HPKT_SIZE_5
1330 };
1331
1332 struct hpack_dt_entry {
1333         int token; /* additions that don't map to a token are ignored */
1334         int arg_offset;
1335         int arg_len;
1336 };
1337
1338 struct hpack_dynamic_table {
1339         struct hpack_dt_entry *entries;
1340         char *args;
1341         int pos;
1342         int next;
1343         int num_entries;
1344         int args_length;
1345 };
1346
1347 struct _lws_http2_related {
1348         /*
1349          * having this first lets us also re-use all HTTP union code
1350          * and in turn, http_mode_related has allocated headers in right
1351          * place so we can use the header apis on the wsi directly still
1352          */
1353         struct _lws_http_mode_related http; /* MUST BE FIRST IN STRUCT */
1354
1355         struct http2_settings my_settings;
1356         struct http2_settings peer_settings;
1357
1358         struct lws *parent_wsi;
1359         struct lws *next_child_wsi;
1360
1361         struct hpack_dynamic_table *hpack_dyn_table;
1362         struct lws *stream_wsi;
1363         unsigned char ping_payload[8];
1364         unsigned char one_setting[LWS_HTTP2_SETTINGS_LENGTH];
1365
1366         unsigned int count;
1367         unsigned int length;
1368         unsigned int stream_id;
1369         enum http2_hpack_state hpack;
1370         enum http2_hpack_type hpack_type;
1371         unsigned int header_index;
1372         unsigned int hpack_len;
1373         unsigned int hpack_e_dep;
1374         int tx_credit;
1375         unsigned int my_stream_id;
1376         unsigned int child_count;
1377         int my_priority;
1378
1379         unsigned int END_STREAM:1;
1380         unsigned int END_HEADERS:1;
1381         unsigned int send_END_STREAM:1;
1382         unsigned int GOING_AWAY;
1383         unsigned int requested_POLLOUT:1;
1384         unsigned int waiting_tx_credit:1;
1385         unsigned int huff:1;
1386         unsigned int value:1;
1387
1388         unsigned short round_robin_POLLOUT;
1389         unsigned short count_POLLOUT_children;
1390         unsigned short hpack_pos;
1391
1392         unsigned char type;
1393         unsigned char flags;
1394         unsigned char frame_state;
1395         unsigned char padding;
1396         unsigned char hpack_m;
1397         unsigned char initialized;
1398 };
1399
1400 #define HTTP2_IS_TOPLEVEL_WSI(wsi) (!wsi->u.http2.parent_wsi)
1401
1402 #endif
1403
1404 struct _lws_websocket_related {
1405         /* cheapest way to deal with ah overlap with ws union transition */
1406         struct _lws_header_related hdr;
1407         char *rx_ubuf;
1408         unsigned int rx_ubuf_alloc;
1409         struct lws *rx_draining_ext_list;
1410         struct lws *tx_draining_ext_list;
1411         time_t time_next_ping_check;
1412         size_t rx_packet_length;
1413         unsigned int rx_ubuf_head;
1414         unsigned char mask[4];
1415         /* Also used for close content... control opcode == < 128 */
1416         unsigned char ping_payload_buf[128 - 3 + LWS_PRE];
1417
1418         unsigned char ping_payload_len;
1419         unsigned char mask_idx;
1420         unsigned char opcode;
1421         unsigned char rsv;
1422         unsigned char rsv_first_msg;
1423         /* zero if no info, or length including 2-byte close code */
1424         unsigned char close_in_ping_buffer_len;
1425         unsigned char utf8;
1426         unsigned char stashed_write_type;
1427         unsigned char tx_draining_stashed_wp;
1428
1429         unsigned int final:1;
1430         unsigned int frame_is_binary:1;
1431         unsigned int all_zero_nonce:1;
1432         unsigned int this_frame_masked:1;
1433         unsigned int inside_frame:1; /* next write will be more of frame */
1434         unsigned int clean_buffer:1; /* buffer not rewritten by extension */
1435         unsigned int payload_is_close:1; /* process as PONG, but it is close */
1436         unsigned int ping_pending_flag:1;
1437         unsigned int continuation_possible:1;
1438         unsigned int owed_a_fin:1;
1439         unsigned int check_utf8:1;
1440         unsigned int defeat_check_utf8:1;
1441         unsigned int pmce_compressed_message:1;
1442         unsigned int stashed_write_pending:1;
1443         unsigned int rx_draining_ext:1;
1444         unsigned int tx_draining_ext:1;
1445         unsigned int send_check_ping:1;
1446 };
1447
1448 #ifdef LWS_WITH_CGI
1449
1450 enum {
1451         SIGNIFICANT_HDR_CONTENT_LENGTH,
1452         SIGNIFICANT_HDR_LOCATION,
1453         SIGNIFICANT_HDR_STATUS,
1454         SIGNIFICANT_HDR_TRANSFER_ENCODING,
1455
1456         SIGNIFICANT_HDR_COUNT
1457 };
1458
1459 /* wsi who is master of the cgi points to an lws_cgi */
1460
1461 struct lws_cgi {
1462         struct lws_cgi *cgi_list;
1463         struct lws *stdwsi[3]; /* points to the associated stdin/out/err wsis */
1464         struct lws *wsi; /* owner */
1465         unsigned char *headers_buf;
1466         unsigned char *headers_pos;
1467         unsigned char *headers_dumped;
1468         unsigned char *headers_end;
1469         unsigned long content_length;
1470         unsigned long content_length_seen;
1471         int pipe_fds[3][2];
1472         int match[SIGNIFICANT_HDR_COUNT];
1473         int pid;
1474         int response_code;
1475         int lp;
1476         char l[12];
1477
1478         unsigned int being_closed:1;
1479         unsigned int explicitly_chunked:1;
1480
1481         unsigned char chunked_grace;
1482 };
1483 #endif
1484
1485 signed char char_to_hex(const char c);
1486
1487 #ifndef LWS_NO_CLIENT
1488 enum lws_chunk_parser {
1489         ELCP_HEX,
1490         ELCP_CR,
1491         ELCP_CONTENT,
1492         ELCP_POST_CR,
1493         ELCP_POST_LF,
1494 };
1495 #endif
1496
1497 struct lws_rewrite;
1498
1499 #ifdef LWS_WITH_ACCESS_LOG
1500 struct lws_access_log {
1501         char *header_log;
1502         char *user_agent;
1503         unsigned long sent;
1504         int response;
1505 };
1506 #endif
1507
1508 struct lws {
1509
1510         /* structs */
1511         /* members with mutually exclusive lifetimes are unionized */
1512
1513         union u {
1514                 struct _lws_http_mode_related http;
1515 #ifdef LWS_USE_HTTP2
1516                 struct _lws_http2_related http2;
1517 #endif
1518                 struct _lws_header_related hdr;
1519                 struct _lws_websocket_related ws;
1520         } u;
1521
1522         /* lifetime members */
1523
1524 #if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) || defined(LWS_USE_LIBEVENT)
1525         struct lws_io_watcher w_read;
1526 #endif
1527 #if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBEVENT)
1528         struct lws_io_watcher w_write;
1529 #endif
1530         time_t pending_timeout_limit;
1531
1532         /* pointers */
1533
1534         struct lws_context *context;
1535         struct lws_vhost *vhost;
1536         struct lws *parent; /* points to parent, if any */
1537         struct lws *child_list; /* points to first child */
1538         struct lws *sibling_list; /* subsequent children at same level */
1539 #ifdef LWS_WITH_CGI
1540         struct lws_cgi *cgi; /* wsi being cgi master have one of these */
1541 #endif
1542         const struct lws_protocols *protocol;
1543         struct lws **same_vh_protocol_prev, *same_vh_protocol_next;
1544         struct lws *timeout_list;
1545         struct lws **timeout_list_prev;
1546 #ifdef LWS_WITH_ACCESS_LOG
1547         struct lws_access_log access_log;
1548 #endif
1549         void *user_space;
1550         /* rxflow handling */
1551         unsigned char *rxflow_buffer;
1552         /* truncated send handling */
1553         unsigned char *trunc_alloc; /* non-NULL means buffering in progress */
1554
1555 #if defined (LWS_WITH_ESP8266)
1556         void *premature_rx;
1557         unsigned short prem_rx_size, prem_rx_pos;
1558 #endif
1559
1560 #ifndef LWS_NO_EXTENSIONS
1561         const struct lws_extension *active_extensions[LWS_MAX_EXTENSIONS_ACTIVE];
1562         void *act_ext_user[LWS_MAX_EXTENSIONS_ACTIVE];
1563 #endif
1564 #ifdef LWS_OPENSSL_SUPPORT
1565         SSL *ssl;
1566         BIO *client_bio;
1567         struct lws *pending_read_list_prev, *pending_read_list_next;
1568 #if defined(LWS_WITH_STATS)
1569         uint64_t accept_start_us;
1570         char seen_rx;
1571 #endif
1572 #endif
1573 #ifdef LWS_WITH_HTTP_PROXY
1574         struct lws_rewrite *rw;
1575 #endif
1576 #ifdef LWS_LATENCY
1577         unsigned long action_start;
1578         unsigned long latency_start;
1579 #endif
1580         lws_sock_file_fd_type desc; /* .filefd / .sockfd */
1581 #if defined(LWS_WITH_STATS)
1582         uint64_t active_writable_req_us;
1583 #endif
1584         /* ints */
1585         int position_in_fds_table;
1586         int rxflow_len;
1587         int rxflow_pos;
1588         unsigned int trunc_alloc_len; /* size of malloc */
1589         unsigned int trunc_offset; /* where we are in terms of spilling */
1590         unsigned int trunc_len; /* how much is buffered */
1591 #ifndef LWS_NO_CLIENT
1592         int chunk_remaining;
1593 #endif
1594         unsigned int cache_secs;
1595
1596         unsigned int hdr_parsing_completed:1;
1597         unsigned int http2_substream:1;
1598         unsigned int listener:1;
1599         unsigned int user_space_externally_allocated:1;
1600         unsigned int socket_is_permanently_unusable:1;
1601         unsigned int rxflow_change_to:2;
1602         unsigned int more_rx_waiting:1; /* has to live here since ah may stick to end */
1603         unsigned int conn_stat_done:1;
1604         unsigned int cache_reuse:1;
1605         unsigned int cache_revalidate:1;
1606         unsigned int cache_intermediaries:1;
1607         unsigned int favoured_pollin:1;
1608         unsigned int sending_chunked:1;
1609         unsigned int already_did_cce:1;
1610         unsigned int told_user_closed:1;
1611
1612 #if defined(LWS_WITH_ESP8266)
1613         unsigned int pending_send_completion:3;
1614         unsigned int close_is_pending_send_completion:1;
1615 #endif
1616 #ifdef LWS_WITH_ACCESS_LOG
1617         unsigned int access_log_pending:1;
1618 #endif
1619 #ifndef LWS_NO_CLIENT
1620         unsigned int do_ws:1; /* whether we are doing http or ws flow */
1621         unsigned int chunked:1; /* if the clientside connection is chunked */
1622         unsigned int client_rx_avail:1;
1623         unsigned int client_http_body_pending:1;
1624 #endif
1625 #ifdef LWS_WITH_HTTP_PROXY
1626         unsigned int perform_rewrite:1;
1627 #endif
1628 #ifndef LWS_NO_EXTENSIONS
1629         unsigned int extension_data_pending:1;
1630 #endif
1631 #ifdef LWS_OPENSSL_SUPPORT
1632         unsigned int use_ssl:4;
1633 #endif
1634 #ifdef _WIN32
1635         unsigned int sock_send_blocking:1;
1636 #endif
1637 #ifdef LWS_OPENSSL_SUPPORT
1638         unsigned int redirect_to_https:1;
1639 #endif
1640
1641         /* volatile to make sure code is aware other thread can change */
1642         volatile unsigned int handling_pollout:1;
1643         volatile unsigned int leave_pollout_active:1;
1644
1645 #ifndef LWS_NO_CLIENT
1646         unsigned short c_port;
1647 #endif
1648
1649         /* chars */
1650 #ifndef LWS_NO_EXTENSIONS
1651         unsigned char count_act_ext;
1652 #endif
1653         unsigned char ietf_spec_revision;
1654         char mode; /* enum connection_mode */
1655         char state; /* enum lws_connection_states */
1656         char state_pre_close;
1657         char lws_rx_parse_state; /* enum lws_rx_parse_state */
1658         char rx_frame_type; /* enum lws_write_protocol */
1659         char pending_timeout; /* enum pending_timeout */
1660         char pps; /* enum lws_pending_protocol_send */
1661         char tsi; /* thread service index we belong to */
1662         char protocol_interpret_idx;
1663         char redirects;
1664 #ifdef LWS_WITH_CGI
1665         char cgi_channel; /* which of stdin/out/err */
1666         char hdr_state;
1667 #endif
1668 #ifndef LWS_NO_CLIENT
1669         char chunk_parser; /* enum lws_chunk_parser */
1670 #endif
1671 #if defined(LWS_WITH_CGI) || !defined(LWS_NO_CLIENT)
1672         char reason_bf; /* internal writeable callback reason bitfield */
1673 #endif
1674 };
1675
1676 LWS_EXTERN int log_level;
1677
1678 LWS_EXTERN int
1679 lws_socket_bind(struct lws_vhost *vhost, lws_sockfd_type sockfd, int port,
1680                 const char *iface);
1681
1682 #if defined(LWS_USE_IPV6)
1683 LWS_EXTERN unsigned long
1684 lws_get_addr_scope(const char *ipaddr);
1685 #endif
1686
1687 LWS_EXTERN void
1688 lws_close_free_wsi(struct lws *wsi, enum lws_close_status);
1689
1690 LWS_EXTERN int
1691 remove_wsi_socket_from_fds(struct lws *wsi);
1692 LWS_EXTERN int
1693 lws_rxflow_cache(struct lws *wsi, unsigned char *buf, int n, int len);
1694
1695 #ifndef LWS_LATENCY
1696 static inline void
1697 lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1698             int ret, int completion) {
1699         do {
1700                 (void)context; (void)wsi; (void)action; (void)ret;
1701                 (void)completion;
1702         } while (0);
1703 }
1704 static inline void
1705 lws_latency_pre(struct lws_context *context, struct lws *wsi) {
1706         do { (void)context; (void)wsi; } while (0);
1707 }
1708 #else
1709 #define lws_latency_pre(_context, _wsi) lws_latency(_context, _wsi, NULL, 0, 0)
1710 extern void
1711 lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1712             int ret, int completion);
1713 #endif
1714
1715 LWS_EXTERN void
1716 lws_set_protocol_write_pending(struct lws *wsi,
1717                                enum lws_pending_protocol_send pend);
1718 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1719 lws_client_rx_sm(struct lws *wsi, unsigned char c);
1720
1721 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1722 lws_parse(struct lws *wsi, unsigned char c);
1723
1724 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1725 lws_http_action(struct lws *wsi);
1726
1727 LWS_EXTERN int
1728 lws_b64_selftest(void);
1729
1730 LWS_EXTERN int
1731 lws_service_flag_pending(struct lws_context *context, int tsi);
1732
1733 #if defined(_WIN32) || defined(LWS_WITH_ESP8266)
1734 LWS_EXTERN struct lws *
1735 wsi_from_fd(const struct lws_context *context, lws_sockfd_type fd);
1736
1737 LWS_EXTERN int
1738 insert_wsi(struct lws_context *context, struct lws *wsi);
1739
1740 LWS_EXTERN int
1741 delete_from_fd(struct lws_context *context, lws_sockfd_type fd);
1742 #else
1743 #define wsi_from_fd(A,B)  A->lws_lookup[B]
1744 #define insert_wsi(A,B)   assert(A->lws_lookup[B->desc.sockfd] == 0); A->lws_lookup[B->desc.sockfd]=B
1745 #define delete_from_fd(A,B) A->lws_lookup[B]=0
1746 #endif
1747
1748 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1749 insert_wsi_socket_into_fds(struct lws_context *context, struct lws *wsi);
1750
1751 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1752 lws_issue_raw(struct lws *wsi, unsigned char *buf, size_t len);
1753
1754
1755 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1756 lws_service_timeout_check(struct lws *wsi, unsigned int sec);
1757
1758 LWS_EXTERN void
1759 lws_remove_from_timeout_list(struct lws *wsi);
1760
1761 LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
1762 lws_client_connect_2(struct lws *wsi);
1763
1764 LWS_VISIBLE struct lws * LWS_WARN_UNUSED_RESULT
1765 lws_client_reset(struct lws **wsi, int ssl, const char *address, int port,
1766                  const char *path, const char *host);
1767
1768 LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
1769 lws_create_new_server_wsi(struct lws_vhost *vhost);
1770
1771 LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
1772 lws_generate_client_handshake(struct lws *wsi, char *pkt);
1773
1774 LWS_EXTERN int
1775 lws_handle_POLLOUT_event(struct lws *wsi, struct lws_pollfd *pollfd);
1776
1777 LWS_EXTERN struct lws *
1778 lws_client_connect_via_info2(struct lws *wsi);
1779
1780 /*
1781  * EXTENSIONS
1782  */
1783
1784 #ifndef LWS_NO_EXTENSIONS
1785 LWS_VISIBLE void
1786 lws_context_init_extensions(struct lws_context_creation_info *info,
1787                             struct lws_context *context);
1788 LWS_EXTERN int
1789 lws_any_extension_handled(struct lws *wsi, enum lws_extension_callback_reasons r,
1790                           void *v, size_t len);
1791
1792 LWS_EXTERN int
1793 lws_ext_cb_active(struct lws *wsi, int reason, void *buf, int len);
1794 LWS_EXTERN int
1795 lws_ext_cb_all_exts(struct lws_context *context, struct lws *wsi, int reason,
1796                     void *arg, int len);
1797
1798 #else
1799 #define lws_any_extension_handled(_a, _b, _c, _d) (0)
1800 #define lws_ext_cb_active(_a, _b, _c, _d) (0)
1801 #define lws_ext_cb_all_exts(_a, _b, _c, _d, _e) (0)
1802 #define lws_issue_raw_ext_access lws_issue_raw
1803 #define lws_context_init_extensions(_a, _b)
1804 #endif
1805
1806 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1807 lws_client_interpret_server_handshake(struct lws *wsi);
1808
1809 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1810 lws_rx_sm(struct lws *wsi, unsigned char c);
1811
1812 LWS_EXTERN int
1813 lws_payload_until_length_exhausted(struct lws *wsi, unsigned char **buf, size_t *len);
1814
1815 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1816 lws_issue_raw_ext_access(struct lws *wsi, unsigned char *buf, size_t len);
1817
1818 LWS_EXTERN void
1819 lws_union_transition(struct lws *wsi, enum connection_mode mode);
1820
1821 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1822 user_callback_handle_rxflow(lws_callback_function, struct lws *wsi,
1823                             enum lws_callback_reasons reason, void *user,
1824                             void *in, size_t len);
1825 #ifdef LWS_USE_HTTP2
1826 LWS_EXTERN struct lws *lws_http2_get_network_wsi(struct lws *wsi);
1827 struct lws * lws_http2_get_nth_child(struct lws *wsi, int n);
1828 LWS_EXTERN int
1829 lws_http2_interpret_settings_payload(struct http2_settings *settings,
1830                                      unsigned char *buf, int len);
1831 LWS_EXTERN void lws_http2_init(struct http2_settings *settings);
1832 LWS_EXTERN int
1833 lws_http2_parser(struct lws *wsi, unsigned char c);
1834 LWS_EXTERN int lws_http2_do_pps_send(struct lws_context *context,
1835                                      struct lws *wsi);
1836 LWS_EXTERN int lws_http2_frame_write(struct lws *wsi, int type, int flags,
1837                                      unsigned int sid, unsigned int len,
1838                                      unsigned char *buf);
1839 LWS_EXTERN struct lws *
1840 lws_http2_wsi_from_id(struct lws *wsi, unsigned int sid);
1841 LWS_EXTERN int lws_hpack_interpret(struct lws *wsi,
1842                                    unsigned char c);
1843 LWS_EXTERN int
1844 lws_add_http2_header_by_name(struct lws *wsi,
1845                              const unsigned char *name,
1846                              const unsigned char *value, int length,
1847                              unsigned char **p, unsigned char *end);
1848 LWS_EXTERN int
1849 lws_add_http2_header_by_token(struct lws *wsi,
1850                             enum lws_token_indexes token,
1851                             const unsigned char *value, int length,
1852                             unsigned char **p, unsigned char *end);
1853 LWS_EXTERN int
1854 lws_add_http2_header_status(struct lws *wsi,
1855                             unsigned int code, unsigned char **p,
1856                             unsigned char *end);
1857 LWS_EXTERN
1858 void lws_http2_configure_if_upgraded(struct lws *wsi);
1859 #else
1860 #define lws_http2_configure_if_upgraded(x)
1861 #endif
1862
1863 LWS_EXTERN int
1864 lws_plat_set_socket_options(struct lws_vhost *vhost, lws_sockfd_type fd);
1865
1866 LWS_EXTERN int
1867 lws_plat_check_connection_error(struct lws *wsi);
1868
1869 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1870 lws_header_table_attach(struct lws *wsi, int autoservice);
1871
1872 LWS_EXTERN int
1873 lws_header_table_detach(struct lws *wsi, int autoservice);
1874
1875 LWS_EXTERN void
1876 lws_header_table_reset(struct lws *wsi, int autoservice);
1877 void
1878 _lws_header_table_reset(struct allocated_headers *ah);
1879
1880 LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
1881 lws_hdr_simple_ptr(struct lws *wsi, enum lws_token_indexes h);
1882
1883 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1884 lws_hdr_simple_create(struct lws *wsi, enum lws_token_indexes h, const char *s);
1885
1886 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1887 lws_ensure_user_space(struct lws *wsi);
1888
1889 LWS_EXTERN int
1890 lws_change_pollfd(struct lws *wsi, int _and, int _or);
1891
1892 #ifndef LWS_NO_SERVER
1893 int lws_context_init_server(struct lws_context_creation_info *info,
1894                             struct lws_vhost *vhost);
1895 LWS_EXTERN struct lws_vhost *
1896 lws_select_vhost(struct lws_context *context, int port, const char *servername);
1897 LWS_EXTERN int
1898 handshake_0405(struct lws_context *context, struct lws *wsi);
1899 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1900 lws_interpret_incoming_packet(struct lws *wsi, unsigned char **buf, size_t len);
1901 LWS_EXTERN void
1902 lws_server_get_canonical_hostname(struct lws_context *context,
1903                                   struct lws_context_creation_info *info);
1904 #else
1905 #define lws_context_init_server(_a, _b) (0)
1906 #define lws_interpret_incoming_packet(_a, _b, _c) (0)
1907 #define lws_server_get_canonical_hostname(_a, _b)
1908 #endif
1909
1910 #ifndef LWS_NO_DAEMONIZE
1911 LWS_EXTERN int get_daemonize_pid();
1912 #else
1913 #define get_daemonize_pid() (0)
1914 #endif
1915
1916 #if !defined(LWS_WITH_ESP8266)
1917 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1918 interface_to_sa(struct lws_vhost *vh, const char *ifname,
1919                 struct sockaddr_in *addr, size_t addrlen);
1920 #endif
1921 LWS_EXTERN void lwsl_emit_stderr(int level, const char *line);
1922
1923 enum lws_ssl_capable_status {
1924         LWS_SSL_CAPABLE_ERROR = -1,
1925         LWS_SSL_CAPABLE_MORE_SERVICE = -2,
1926 };
1927
1928 #ifndef LWS_OPENSSL_SUPPORT
1929 #define LWS_SSL_ENABLED(context) (0)
1930 #define lws_context_init_server_ssl(_a, _b) (0)
1931 #define lws_ssl_destroy(_a)
1932 #define lws_context_init_http2_ssl(_a)
1933 #define lws_ssl_capable_read lws_ssl_capable_read_no_ssl
1934 #define lws_ssl_capable_write lws_ssl_capable_write_no_ssl
1935 #define lws_ssl_pending lws_ssl_pending_no_ssl
1936 #define lws_server_socket_service_ssl(_b, _c) (0)
1937 #define lws_ssl_close(_a) (0)
1938 #define lws_ssl_context_destroy(_a)
1939 #define lws_ssl_SSL_CTX_destroy(_a)
1940 #define lws_ssl_remove_wsi_from_buffered_list(_a)
1941 #define lws_context_init_ssl_library(_a)
1942 #else
1943 #define LWS_SSL_ENABLED(context) (context->use_ssl)
1944 LWS_EXTERN int openssl_websocket_private_data_index;
1945 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1946 lws_ssl_capable_read(struct lws *wsi, unsigned char *buf, int len);
1947 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1948 lws_ssl_capable_write(struct lws *wsi, unsigned char *buf, int len);
1949 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1950 lws_ssl_pending(struct lws *wsi);
1951 LWS_EXTERN int
1952 lws_context_init_ssl_library(struct lws_context_creation_info *info);
1953 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1954 lws_server_socket_service_ssl(struct lws *new_wsi, lws_sockfd_type accept_fd);
1955 LWS_EXTERN int
1956 lws_ssl_close(struct lws *wsi);
1957 LWS_EXTERN void
1958 lws_ssl_SSL_CTX_destroy(struct lws_vhost *vhost);
1959 LWS_EXTERN void
1960 lws_ssl_context_destroy(struct lws_context *context);
1961 LWS_VISIBLE void
1962 lws_ssl_remove_wsi_from_buffered_list(struct lws *wsi);
1963 LWS_EXTERN int
1964 lws_ssl_client_bio_create(struct lws *wsi);
1965 LWS_EXTERN int
1966 lws_ssl_client_connect1(struct lws *wsi);
1967 LWS_EXTERN int
1968 lws_ssl_client_connect2(struct lws *wsi);
1969 LWS_EXTERN void
1970 lws_ssl_elaborate_error(void);
1971 #ifndef LWS_NO_SERVER
1972 LWS_EXTERN int
1973 lws_context_init_server_ssl(struct lws_context_creation_info *info,
1974                             struct lws_vhost *vhost);
1975 #else
1976 #define lws_context_init_server_ssl(_a, _b) (0)
1977 #endif
1978 LWS_EXTERN void
1979 lws_ssl_destroy(struct lws_vhost *vhost);
1980 /* HTTP2-related */
1981
1982 #ifdef LWS_USE_HTTP2
1983 LWS_EXTERN void
1984 lws_context_init_http2_ssl(struct lws_vhost *vhost);
1985 #else
1986 #define lws_context_init_http2_ssl(_a)
1987 #endif
1988 #endif
1989
1990 #if LWS_MAX_SMP > 1
1991 static LWS_INLINE void
1992 lws_pt_mutex_init(struct lws_context_per_thread *pt)
1993 {
1994         pthread_mutex_init(&pt->lock, NULL);
1995 }
1996
1997 static LWS_INLINE void
1998 lws_pt_mutex_destroy(struct lws_context_per_thread *pt)
1999 {
2000         pthread_mutex_destroy(&pt->lock);
2001 }
2002
2003 static LWS_INLINE void
2004 lws_pt_lock(struct lws_context_per_thread *pt)
2005 {
2006         if (!pt->lock_depth++)
2007                 pthread_mutex_lock(&pt->lock);
2008 }
2009
2010 static LWS_INLINE void
2011 lws_pt_unlock(struct lws_context_per_thread *pt)
2012 {
2013         if (!(--pt->lock_depth))
2014                 pthread_mutex_unlock(&pt->lock);
2015 }
2016 #else
2017 #define lws_pt_mutex_init(_a) (void)(_a)
2018 #define lws_pt_mutex_destroy(_a) (void)(_a)
2019 #define lws_pt_lock(_a) (void)(_a)
2020 #define lws_pt_unlock(_a) (void)(_a)
2021 #endif
2022
2023 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
2024 lws_ssl_capable_read_no_ssl(struct lws *wsi, unsigned char *buf, int len);
2025
2026 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
2027 lws_ssl_capable_write_no_ssl(struct lws *wsi, unsigned char *buf, int len);
2028
2029 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
2030 lws_ssl_pending_no_ssl(struct lws *wsi);
2031
2032 #ifdef LWS_WITH_HTTP_PROXY
2033 struct lws_rewrite {
2034         hubbub_parser *parser;
2035         hubbub_parser_optparams params;
2036         const char *from, *to;
2037         int from_len, to_len;
2038         unsigned char *p, *end;
2039         struct lws *wsi;
2040 };
2041 static LWS_INLINE int hstrcmp(hubbub_string *s, const char *p, int len)
2042 {
2043         if (s->len != len)
2044                 return 1;
2045
2046         return strncmp((const char *)s->ptr, p, len);
2047 }
2048 typedef hubbub_error (*hubbub_callback_t)(const hubbub_token *token, void *pw);
2049 LWS_EXTERN struct lws_rewrite *
2050 lws_rewrite_create(struct lws *wsi, hubbub_callback_t cb, const char *from, const char *to);
2051 LWS_EXTERN void
2052 lws_rewrite_destroy(struct lws_rewrite *r);
2053 LWS_EXTERN int
2054 lws_rewrite_parse(struct lws_rewrite *r, const unsigned char *in, int in_len);
2055 #endif
2056
2057 #ifndef LWS_NO_CLIENT
2058 LWS_EXTERN int lws_client_socket_service(struct lws_context *context,
2059                                          struct lws *wsi,
2060                                          struct lws_pollfd *pollfd);
2061 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
2062 lws_http_transaction_completed_client(struct lws *wsi);
2063 #ifdef LWS_OPENSSL_SUPPORT
2064 LWS_EXTERN int
2065 lws_context_init_client_ssl(struct lws_context_creation_info *info,
2066                             struct lws_vhost *vhost);
2067 #else
2068         #define lws_context_init_client_ssl(_a, _b) (0)
2069 #endif
2070 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
2071 lws_handshake_client(struct lws *wsi, unsigned char **buf, size_t len);
2072 LWS_EXTERN void
2073 lws_decode_ssl_error(void);
2074 #else
2075 #define lws_context_init_client_ssl(_a, _b) (0)
2076 #define lws_handshake_client(_a, _b, _c) (0)
2077 #endif
2078
2079 LWS_EXTERN int
2080 _lws_rx_flow_control(struct lws *wsi);
2081
2082 LWS_EXTERN int
2083 _lws_change_pollfd(struct lws *wsi, int _and, int _or, struct lws_pollargs *pa);
2084
2085 #ifndef LWS_NO_SERVER
2086 LWS_EXTERN int
2087 lws_server_socket_service(struct lws_context *context, struct lws *wsi,
2088                           struct lws_pollfd *pollfd);
2089 LWS_EXTERN int
2090 lws_handshake_server(struct lws *wsi, unsigned char **buf, size_t len);
2091 #else
2092 #define lws_server_socket_service(_a, _b, _c) (0)
2093 #define lws_handshake_server(_a, _b, _c) (0)
2094 #endif
2095
2096 #ifdef LWS_WITH_ACCESS_LOG
2097 LWS_EXTERN int
2098 lws_access_log(struct lws *wsi);
2099 #else
2100 #define lws_access_log(_a)
2101 #endif
2102
2103 LWS_EXTERN int
2104 lws_cgi_kill_terminated(struct lws_context_per_thread *pt);
2105
2106 int
2107 lws_protocol_init(struct lws_context *context);
2108
2109 int
2110 lws_bind_protocol(struct lws *wsi, const struct lws_protocols *p);
2111
2112 const struct lws_http_mount *
2113 lws_find_mount(struct lws *wsi, const char *uri_ptr, int uri_len);
2114
2115 /*
2116  * custom allocator
2117  */
2118 LWS_EXTERN void *
2119 lws_realloc(void *ptr, size_t size);
2120
2121 LWS_EXTERN void * LWS_WARN_UNUSED_RESULT
2122 lws_zalloc(size_t size);
2123
2124 #ifdef LWS_PLAT_OPTEE
2125 void *lws_malloc(size_t size);
2126 void lws_free(void *p);
2127 #define lws_free_set_NULL(P)    do { lws_free(P); (P) = NULL; } while(0)
2128 #else
2129 #define lws_malloc(S)   lws_realloc(NULL, S)
2130 #define lws_free(P)     lws_realloc(P, 0)
2131 #define lws_free_set_NULL(P)    do { lws_realloc(P, 0); (P) = NULL; } while(0)
2132 #endif
2133
2134 const struct lws_plat_file_ops *
2135 lws_vfs_select_fops(const struct lws_plat_file_ops *fops, const char *vfs_path,
2136                     const char **vpath);
2137
2138 /* lws_plat_ */
2139 LWS_EXTERN void
2140 lws_plat_delete_socket_from_fds(struct lws_context *context,
2141                                 struct lws *wsi, int m);
2142 LWS_EXTERN void
2143 lws_plat_insert_socket_into_fds(struct lws_context *context,
2144                                 struct lws *wsi);
2145 LWS_EXTERN void
2146 lws_plat_service_periodic(struct lws_context *context);
2147
2148 LWS_EXTERN int
2149 lws_plat_change_pollfd(struct lws_context *context, struct lws *wsi,
2150                        struct lws_pollfd *pfd);
2151 LWS_EXTERN void
2152 lws_add_wsi_to_draining_ext_list(struct lws *wsi);
2153 LWS_EXTERN void
2154 lws_remove_wsi_from_draining_ext_list(struct lws *wsi);
2155 LWS_EXTERN int
2156 lws_plat_context_early_init(void);
2157 LWS_EXTERN void
2158 lws_plat_context_early_destroy(struct lws_context *context);
2159 LWS_EXTERN void
2160 lws_plat_context_late_destroy(struct lws_context *context);
2161 LWS_EXTERN int
2162 lws_poll_listen_fd(struct lws_pollfd *fd);
2163 LWS_EXTERN int
2164 lws_plat_service(struct lws_context *context, int timeout_ms);
2165 LWS_EXTERN LWS_VISIBLE int
2166 _lws_plat_service_tsi(struct lws_context *context, int timeout_ms, int tsi);
2167 LWS_EXTERN int
2168 lws_plat_init(struct lws_context *context,
2169               struct lws_context_creation_info *info);
2170 LWS_EXTERN void
2171 lws_plat_drop_app_privileges(struct lws_context_creation_info *info);
2172 LWS_EXTERN unsigned long long
2173 time_in_microseconds(void);
2174 LWS_EXTERN const char * LWS_WARN_UNUSED_RESULT
2175 lws_plat_inet_ntop(int af, const void *src, char *dst, int cnt);
2176 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
2177 lws_plat_inet_pton(int af, const char *src, void *dst);
2178
2179 LWS_EXTERN int LWS_WARN_UNUSED_RESULT
2180 lws_check_utf8(unsigned char *state, unsigned char *buf, size_t len);
2181 LWS_EXTERN int alloc_file(struct lws_context *context, const char *filename, uint8_t **buf,
2182                                 lws_filepos_t *amount);
2183 LWS_EXTERN int alloc_pem_to_der_file(struct lws_context *context, const char *filename, uint8_t **buf,
2184                lws_filepos_t *amount);
2185
2186 LWS_EXTERN void
2187 lws_same_vh_protocol_remove(struct lws *wsi);
2188 LWS_EXTERN void
2189 lws_same_vh_protocol_insert(struct lws *wsi, int n);
2190
2191 #if defined(LWS_WITH_STATS)
2192 void
2193 lws_stats_atomic_bump(struct lws_context * context,
2194                 struct lws_context_per_thread *pt, int index, uint64_t bump);
2195 void
2196 lws_stats_atomic_max(struct lws_context * context,
2197                 struct lws_context_per_thread *pt, int index, uint64_t val);
2198 #else
2199 static inline uint64_t lws_stats_atomic_bump(struct lws_context * context,
2200                 struct lws_context_per_thread *pt, int index, uint64_t bump) {
2201         (void)context; (void)pt; (void)index; (void)bump; return 0; }
2202 static inline uint64_t lws_stats_atomic_max(struct lws_context * context,
2203                 struct lws_context_per_thread *pt, int index, uint64_t val) {
2204         (void)context; (void)pt; (void)index; (void)val; return 0; }
2205 #endif
2206
2207 /* socks */
2208 void socks_generate_msg(struct lws *wsi, enum socks_msg_type type,
2209                         size_t *msg_len);
2210
2211 #ifdef __cplusplus
2212 };
2213 #endif