blob: b0b59470d9aa1d277a1a7ce241d6b05dfd76b526 [file] [log] [blame]
Andy Green7c212cc2010-11-08 20:20:42 +00001/*
2 * libwebsockets - small server side websockets and web server implementation
Andy Greene77ddd82010-11-13 10:03:47 +00003 *
Andy Green8c1f6022016-01-26 20:56:56 +08004 * Copyright (C) 2010 - 2016 Andy Green <andy@warmcat.com>
Andy Green7c212cc2010-11-08 20:20:42 +00005 *
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 */
Joakim Soderberg91de9332013-02-06 15:30:33 +090021
Joakim Soderberg4c531232013-02-06 15:26:58 +090022#include "lws_config.h"
Roger A. Light7a474b42015-06-26 11:40:54 +020023#include "lws_config_private.h"
Andy Greene40aa9b2014-04-02 21:02:54 +080024
Andy Green6a8099b2016-02-21 21:25:48 +080025
26#if defined(LWS_WITH_CGI) && defined(LWS_HAVE_VFORK)
27#define _GNU_SOURCE
28#endif
29
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +020030#ifdef LWS_HAVE_SYS_TYPES_H
Andy Greene40aa9b2014-04-02 21:02:54 +080031#include <sys/types.h>
Joakim Soderberg91de9332013-02-06 15:30:33 +090032#endif
Joakim Soderberg4c531232013-02-06 15:26:58 +090033
Andy Green7c212cc2010-11-08 20:20:42 +000034#include <stdio.h>
35#include <stdlib.h>
36#include <string.h>
Patrick Ganstererb13eed42014-03-30 10:19:23 +020037#include <time.h>
Andy Green7c212cc2010-11-08 20:20:42 +000038#include <ctype.h>
Peter Young26757a72013-01-17 10:08:16 +080039#include <limits.h>
Peter Hinz56885f32011-03-02 22:03:47 +000040#include <stdarg.h>
Andy Greenc7c4ae02017-02-18 17:26:40 +080041
42#if defined(LWS_WITH_ESP32)
43#define MSG_NOSIGNAL 0
44#define SOMAXCONN 3
45#endif
46
Andy Green7acf76c2016-07-23 14:18:25 +080047#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
53int ets_vsprintf(char *str, const char *format, va_list argptr);
54int ets_vsnprintf(char *buffer, size_t sizeOfBuffer, const char *format, va_list argptr);
55int ets_snprintf(char *str, size_t size, const char *format, ...);
56int ets_sprintf(char *str, const char *format, ...);
57int os_printf_plus(const char *format, ...);
58#undef malloc
59#undef realloc
60#undef free
61void *pvPortMalloc(size_t s, const char *f, int line);
62#define malloc(s) pvPortMalloc(s, "", 0)
63void *pvPortRealloc(void *p, size_t s, const char *f, int line);
64#define realloc(p, s) pvPortRealloc(p, s, "", 0)
65void vPortFree(void *p, const char *f, int line);
66#define free(p) vPortFree(p, "", 0)
67#undef memcpy
68void *ets_memcpy(void *dest, const void *src, size_t n);
69#define memcpy ets_memcpy
70void *ets_memset(void *dest, int v, size_t n);
71#define memset ets_memset
72char *ets_strcpy(char *dest, const char *src);
73#define strcpy ets_strcpy
74char *ets_strncpy(char *dest, const char *src, size_t n);
75#define strncpy ets_strncpy
76char *ets_strstr(const char *haystack, const char *needle);
77#define strstr ets_strstr
78int ets_strcmp(const char *s1, const char *s2);
79int ets_strncmp(const char *s1, const char *s2, size_t n);
80#define strcmp ets_strcmp
81#define strncmp ets_strncmp
82size_t ets_strlen(const char *s);
83#define strlen ets_strlen
84void *ets_memmove(void *dest, const void *src, size_t n);
85#define memmove ets_memmove
86char *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
Andy Green112f9802015-12-04 07:22:44 +080093#include <assert.h>
Andy Green7acf76c2016-07-23 14:18:25 +080094#endif
Andy Green8c1f6022016-01-26 20:56:56 +080095#if LWS_MAX_SMP > 1
96#include <pthread.h>
97#endif
Peter Hinz56885f32011-03-02 22:03:47 +000098
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +020099#ifdef LWS_HAVE_SYS_STAT_H
Peter Hinz56885f32011-03-02 22:03:47 +0000100#include <sys/stat.h>
Patrick Gansterere5720a32014-02-28 00:57:19 +0100101#endif
Peter Hinz56885f32011-03-02 22:03:47 +0000102
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +0100103#if defined(WIN32) || defined(_WIN32)
Stephan Eberleb820e2c2015-10-23 08:10:55 +0200104#if (WINVER < 0x0501)
105#undef WINVER
106#undef _WIN32_WINNT
107#define WINVER 0x0501
108#define _WIN32_WINNT WINVER
109#endif
Joakim Soderberg4c531232013-02-06 15:26:58 +0900110#define LWS_NO_DAEMONIZE
Patrick Gansterer2dbd8372014-02-28 12:37:52 +0100111#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
Patrick Gansterer73882e42014-03-29 08:25:58 +0100118#define MSG_NOSIGNAL 0
119#define SHUT_RDWR SD_BOTH
120#define SOL_TCP IPPROTO_TCP
Andy Green8c1f6022016-01-26 20:56:56 +0800121#define SHUT_WR SD_SEND
Joakim Soderberg4c531232013-02-06 15:26:58 +0900122
Andy Green158e8042014-04-02 14:25:10 +0800123#define compatible_close(fd) closesocket(fd)
Andy Greenaa775fd2015-12-26 08:56:58 +0800124#define lws_set_blocking_send(wsi) wsi->sock_send_blocking = 1
Andy Greenc53f7ca2015-11-14 07:35:27 +0800125#define lws_socket_is_valid(x) (!!x)
Andy Green40110e82015-12-14 08:52:03 +0800126#define LWS_SOCK_INVALID 0
Peter Hinz56885f32011-03-02 22:03:47 +0000127#include <winsock2.h>
Andy Greeneee0d8a2015-12-17 15:15:12 +0800128#include <ws2tcpip.h>
Peter Hinz56885f32011-03-02 22:03:47 +0000129#include <windows.h>
Joakim Soderbergd2f5b192014-04-07 11:28:08 +0200130#include <tchar.h>
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +0200131#ifdef LWS_HAVE_IN6ADDR_H
Andy Green0f58db32014-04-12 11:10:35 +0800132#include <in6addr.h>
133#endif
Joakim Soderbergd2f5b192014-04-07 11:28:08 +0200134#include <mstcpip.h>
Andy Greend6be6772016-05-14 06:49:29 +0800135#include <io.h>
Joakim Soderbergd2f5b192014-04-07 11:28:08 +0200136
137#ifndef __func__
138#define __func__ __FUNCTION__
139#endif
140
Andy Green7d22c292016-03-04 10:53:51 +0800141#ifdef LWS_HAVE__VSNPRINTF
142#define vsnprintf _vsnprintf
143#endif
Patrick Gansterer6bb4b622014-04-15 18:39:26 +0200144
Andy Greenbe9fb912016-12-16 07:37:43 +0800145/* we don't have an implementation for this on windows... */
146int kill(int pid, int sig);
147int fork(void);
148#ifndef SIGINT
149#define SIGINT 2
150#endif
151
Andy Green158e8042014-04-02 14:25:10 +0800152#else /* not windows --> */
Andy Green8c0d3c02015-11-02 20:34:12 +0800153
Patrick Ganstererb13eed42014-03-30 10:19:23 +0200154#include <fcntl.h>
Patrick Ganstererb13eed42014-03-30 10:19:23 +0200155#include <strings.h>
156#include <unistd.h>
Andy Greene77ddd82010-11-13 10:03:47 +0000157#include <sys/types.h>
Andy Green0aed7a02017-02-22 09:50:11 +0800158
Andy Green8c0d3c02015-11-02 20:34:12 +0800159#ifndef __cplusplus
160#include <errno.h>
161#endif
Andy Green5f2a8152015-11-02 08:21:08 +0800162#include <netdb.h>
163#include <signal.h>
Andy Green7acf76c2016-07-23 14:18:25 +0800164#ifdef LWS_WITH_ESP8266
165#include <sockets.h>
166#define vsnprintf ets_vsnprintf
167#define snprintf ets_snprintf
168#define sprintf ets_sprintf
Andy Greendd0dfae2016-12-22 11:32:34 +0800169
170int kill(int pid, int sig);
171
Andy Green7acf76c2016-07-23 14:18:25 +0800172#else
Andy Green7c212cc2010-11-08 20:20:42 +0000173#include <sys/socket.h>
Andy Green7acf76c2016-07-23 14:18:25 +0800174#endif
Andy Green1e5a9ad2016-03-20 11:59:53 +0800175#ifdef LWS_WITH_HTTP_PROXY
176#include <hubbub/hubbub.h>
177#include <hubbub/parser.h>
178#endif
Andy Green7acf76c2016-07-23 14:18:25 +0800179#if defined(LWS_BUILTIN_GETIFADDRS)
Andy Greene40aa9b2014-04-02 21:02:54 +0800180 #include <getifaddrs.h>
181#else
Andy Greenc7c4ae02017-02-18 17:26:40 +0800182 #if !defined(LWS_WITH_ESP8266) && !defined(LWS_WITH_ESP32)
Andy Greene40aa9b2014-04-02 21:02:54 +0800183 #include <ifaddrs.h>
Andy Green7acf76c2016-07-23 14:18:25 +0800184 #endif
Andy Greene40aa9b2014-04-02 21:02:54 +0800185#endif
Dnyanesh Gate759e50c2014-09-26 05:39:05 +0800186#if defined (__ANDROID__)
187#include <syslog.h>
Alexander Bruines119bdaa2016-04-23 11:10:18 +0200188#include <sys/resource.h>
Fredrik Skogman316960b2016-09-09 06:49:44 +0800189#elif defined (__sun)
190#include <syslog.h>
Dnyanesh Gate759e50c2014-09-26 05:39:05 +0800191#else
Andy Greenc7c4ae02017-02-18 17:26:40 +0800192#if !defined(LWS_WITH_ESP8266) && !defined(LWS_WITH_ESP32)
Andy Greene40aa9b2014-04-02 21:02:54 +0800193#include <sys/syslog.h>
Dnyanesh Gate759e50c2014-09-26 05:39:05 +0800194#endif
Andy Green7acf76c2016-07-23 14:18:25 +0800195#endif
Andy Greene40aa9b2014-04-02 21:02:54 +0800196#include <netdb.h>
Andy Greenc7c4ae02017-02-18 17:26:40 +0800197#if !defined(LWS_WITH_ESP8266) && !defined(LWS_WITH_ESP32)
Andy Green7acf76c2016-07-23 14:18:25 +0800198#include <sys/mman.h>
199#include <sys/un.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000200#include <netinet/in.h>
Andy Green6c939552011-03-08 08:56:57 +0000201#include <netinet/tcp.h>
Andy Greenb45993c2010-12-18 15:13:50 +0000202#include <arpa/inet.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000203#include <poll.h>
Andy Green7acf76c2016-07-23 14:18:25 +0800204#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800205#ifdef LWS_USE_LIBEV
Andy Green86ed65f2016-02-14 09:27:41 +0800206#include <ev.h>
207#endif
208#ifdef LWS_USE_LIBUV
Alex Hultmana43c2ac2016-02-01 08:31:54 +0800209#include <uv.h>
Andy Green86ed65f2016-02-14 09:27:41 +0800210#endif
Andy Green5f2a8152015-11-02 08:21:08 +0800211
Andy Green5f2a8152015-11-02 08:21:08 +0800212#ifndef LWS_NO_FORK
213#ifdef LWS_HAVE_SYS_PRCTL_H
214#include <sys/prctl.h>
215#endif
216#endif
217
Andy Green038d5822011-02-14 20:58:26 +0000218#include <sys/time.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000219
Patrick Gansterer2dbd8372014-02-28 12:37:52 +0100220#define LWS_ERRNO errno
221#define LWS_EAGAIN EAGAIN
222#define LWS_EALREADY EALREADY
223#define LWS_EINPROGRESS EINPROGRESS
224#define LWS_EINTR EINTR
225#define LWS_EISCONN EISCONN
226#define LWS_EWOULDBLOCK EWOULDBLOCK
Andy Green2b304a92016-07-11 07:28:23 +0800227
Andy Green158e8042014-04-02 14:25:10 +0800228#define lws_set_blocking_send(wsi)
Andy Green2cd30742015-11-02 13:10:33 +0800229
Andy Green0aed7a02017-02-22 09:50:11 +0800230#if defined(LWS_WITH_ESP8266)
Andy Green2cd30742015-11-02 13:10:33 +0800231#define lws_socket_is_valid(x) ((x) != NULL)
232#define LWS_SOCK_INVALID (NULL)
Andy Green7acf76c2016-07-23 14:18:25 +0800233struct lws;
234const char *
235lws_plat_get_peer_simple(struct lws *wsi, char *name, int namelen);
Andy Green2cd30742015-11-02 13:10:33 +0800236#else
Andy Greenc53f7ca2015-11-14 07:35:27 +0800237#define lws_socket_is_valid(x) (x >= 0)
238#define LWS_SOCK_INVALID (-1)
Peter Hinz56885f32011-03-02 22:03:47 +0000239#endif
Andy Green2cd30742015-11-02 13:10:33 +0800240#endif
Peter Hinz56885f32011-03-02 22:03:47 +0000241
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +0200242#ifndef LWS_HAVE_BZERO
Andy Greene5ea1f92014-11-18 18:25:24 +0800243#ifndef bzero
Patrick Gansterer4a837272014-02-28 13:17:49 +0100244#define bzero(b, len) (memset((b), '\0', (len)), (void) 0)
245#endif
Andy Greene5ea1f92014-11-18 18:25:24 +0800246#endif
Patrick Gansterer4a837272014-02-28 13:17:49 +0100247
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +0200248#ifndef LWS_HAVE_STRERROR
Patrick Gansterer9d614912014-02-28 00:59:53 +0100249#define strerror(x) ""
250#endif
251
Andy Green7c212cc2010-11-08 20:20:42 +0000252#ifdef LWS_OPENSSL_SUPPORT
Andy Green1a3f1772016-03-28 19:58:02 +0800253
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200254#ifdef USE_WOLFSSL
ABruines80a70682015-08-09 22:56:32 +0200255#ifdef USE_OLD_CYASSL
256#include <cyassl/openssl/ssl.h>
257#include <cyassl/error-ssl.h>
258#else
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200259#include <wolfssl/openssl/ssl.h>
260#include <wolfssl/error-ssl.h>
Andy Green1e227192017-01-07 10:24:16 +0800261#define OPENSSL_NO_TLSEXT
ABruines80a70682015-08-09 22:56:32 +0200262#endif /* not USE_OLD_CYASSL */
Andy Green23c5f2e2013-02-06 15:43:00 +0900263#else
Andy Green7c212cc2010-11-08 20:20:42 +0000264#include <openssl/ssl.h>
265#include <openssl/evp.h>
266#include <openssl/err.h>
Andy Green70dfebd2010-12-20 09:35:03 +0000267#include <openssl/md5.h>
Andy Greene2522172011-01-18 17:14:03 +0000268#include <openssl/sha.h>
Andy Green1a3f1772016-03-28 19:58:02 +0800269#ifdef LWS_HAVE_OPENSSL_ECDH_H
270#include <openssl/ecdh.h>
271#endif
Andy Greene7bf0aa2016-06-28 19:50:40 +0800272#include <openssl/x509v3.h>
Andy Greenc001a152017-01-06 09:49:28 +0800273
274#if (OPENSSL_VERSION_NUMBER < 0x0009080afL)
275/* later openssl defines this to negate the presence of tlsext... but it was only
276 * introduced at 0.9.8j. Earlier versions don't know it exists so don't
277 * define it... making it look like the feature exists...
278 */
279#define OPENSSL_NO_TLSEXT
280#endif
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200281#endif /* not USE_WOLFSSL */
Darin Willitsdb9ba422011-02-14 20:56:24 +0000282#endif
283
Andy Green7c212cc2010-11-08 20:20:42 +0000284#include "libwebsockets.h"
Andy Green7acf76c2016-07-23 14:18:25 +0800285#if defined(WIN32) || defined(_WIN32)
286#else
287static inline int compatible_close(int fd) { return close(fd); }
288#endif
Andy Green7c212cc2010-11-08 20:20:42 +0000289
Rainer Poiseld2cef152016-11-07 21:36:05 +0100290#if defined(WIN32) || defined(_WIN32)
291#include <gettimeofday.h>
292#endif
293
Andy Green7acf76c2016-07-23 14:18:25 +0800294#if defined(LWS_WITH_ESP8266)
295#undef compatible_close
296#define compatible_close(fd) { fd->state=ESPCONN_CLOSE; espconn_delete(fd); }
297lws_sockfd_type
298esp8266_create_tcp_stream_socket(void);
299void
300esp8266_tcp_stream_bind(lws_sockfd_type fd, int port, struct lws *wsi);
301#ifndef BIG_ENDIAN
302#define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */
303#endif
304#ifndef LITTLE_ENDIAN
305#define LITTLE_ENDIAN 1234
306#endif
307#ifndef BYTE_ORDER
308#define BYTE_ORDER LITTLE_ENDIAN
309#endif
310#endif
311
312
Andy Green158e8042014-04-02 14:25:10 +0800313#if defined(WIN32) || defined(_WIN32)
314
315#ifndef BIG_ENDIAN
316#define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */
317#endif
318#ifndef LITTLE_ENDIAN
319#define LITTLE_ENDIAN 1234
320#endif
321#ifndef BYTE_ORDER
322#define BYTE_ORDER LITTLE_ENDIAN
323#endif
Andy Green11f27342015-11-08 12:10:26 +0800324#ifndef u_int64_t
Andy Green158e8042014-04-02 14:25:10 +0800325typedef unsigned __int64 u_int64_t;
Andy Green11f27342015-11-08 12:10:26 +0800326#endif
Andy Green158e8042014-04-02 14:25:10 +0800327
328#undef __P
329#ifndef __P
330#if __STDC__
331#define __P(protos) protos
332#else
333#define __P(protos) ()
334#endif
335#endif
336
337#else
338
339#include <sys/stat.h>
Andy Green158e8042014-04-02 14:25:10 +0800340#include <sys/time.h>
341
342#if defined(__APPLE__)
343#include <machine/endian.h>
344#elif defined(__FreeBSD__)
345#include <sys/endian.h>
346#elif defined(__linux__)
347#include <endian.h>
348#endif
349
Andy Green8c0d3c02015-11-02 20:34:12 +0800350#ifdef __cplusplus
351extern "C" {
352#endif
Alejandro Meryead8afe2014-12-07 03:36:11 +0100353
emironova49d0842014-09-16 14:05:13 +0400354#if defined(__QNX__)
355 #include <gulliver.h>
356 #if defined(__LITTLEENDIAN__)
357 #define BYTE_ORDER __LITTLEENDIAN__
358 #define LITTLE_ENDIAN __LITTLEENDIAN__
359 #define BIG_ENDIAN 4321 /* to show byte order (taken from gcc); for suppres warning that BIG_ENDIAN is not defined. */
360 #endif
361 #if defined(__BIGENDIAN__)
362 #define BYTE_ORDER __BIGENDIAN__
363 #define LITTLE_ENDIAN 1234 /* to show byte order (taken from gcc); for suppres warning that LITTLE_ENDIAN is not defined. */
364 #define BIG_ENDIAN __BIGENDIAN__
365 #endif
366#endif
367
Fredrik Skogman316960b2016-09-09 06:49:44 +0800368#if defined(__sun) && defined(__GNUC__)
369# define BYTE_ORDER __BYTE_ORDER__
370# define LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__
371# define BIG_ENDIAN __ORDER_BIG_ENDIAN__
372#endif
373
Andy Green158e8042014-04-02 14:25:10 +0800374#if !defined(BYTE_ORDER)
375# define BYTE_ORDER __BYTE_ORDER
376#endif
377#if !defined(LITTLE_ENDIAN)
378# define LITTLE_ENDIAN __LITTLE_ENDIAN
379#endif
380#if !defined(BIG_ENDIAN)
381# define BIG_ENDIAN __BIG_ENDIAN
382#endif
383
384#endif
385
Darin Willitsc19456f2011-02-14 17:52:39 +0000386/*
387 * Mac OSX as well as iOS do not define the MSG_NOSIGNAL flag,
388 * but happily have something equivalent in the SO_NOSIGPIPE flag.
389 */
390#ifdef __APPLE__
Andy Green6ee372f2012-04-09 15:09:01 +0800391#define MSG_NOSIGNAL SO_NOSIGPIPE
Darin Willitsc19456f2011-02-14 17:52:39 +0000392#endif
393
Fredrik Skogman316960b2016-09-09 06:49:44 +0800394/*
395 * Solaris 11.X only supports POSIX 2001, MSG_NOSIGNAL appears in
396 * POSIX 2008.
397 */
398#ifdef __sun
399#define MSG_NOSIGNAL 0
400#endif
401
Bud Davis229bfec2015-01-30 10:13:01 +0800402#ifdef _WIN32
403#ifndef FD_HASHTABLE_MODULUS
404#define FD_HASHTABLE_MODULUS 32
405#endif
406#endif
407
Andy Green8c1f6022016-01-26 20:56:56 +0800408#ifndef LWS_DEF_HEADER_LEN
Andy Green5ab523e2016-07-11 07:48:53 +0800409#define LWS_DEF_HEADER_LEN 4096
Andy Greenc0d6b632013-01-12 23:42:17 +0800410#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800411#ifndef LWS_DEF_HEADER_POOL
Andy Green5ab523e2016-07-11 07:48:53 +0800412#define LWS_DEF_HEADER_POOL 4
Andy Green3df58002015-12-25 12:44:12 +0800413#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800414#ifndef LWS_MAX_PROTOCOLS
Andy Greend91d5e82013-02-10 16:00:47 +0800415#define LWS_MAX_PROTOCOLS 5
Andy Greenc0d6b632013-01-12 23:42:17 +0800416#endif
417#ifndef LWS_MAX_EXTENSIONS_ACTIVE
Andy Greend738f842016-01-19 04:32:14 +0800418#define LWS_MAX_EXTENSIONS_ACTIVE 2
Andy Greenc0d6b632013-01-12 23:42:17 +0800419#endif
Andy Green67112662016-01-11 11:34:01 +0800420#ifndef LWS_MAX_EXT_OFFERS
421#define LWS_MAX_EXT_OFFERS 8
422#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800423#ifndef SPEC_LATEST_SUPPORTED
Andy Greend85cb202011-09-25 09:32:54 +0100424#define SPEC_LATEST_SUPPORTED 13
Andy Greenc0d6b632013-01-12 23:42:17 +0800425#endif
426#ifndef AWAITING_TIMEOUT
Andy Green8c1f6022016-01-26 20:56:56 +0800427#define AWAITING_TIMEOUT 20
Andy Greenc0d6b632013-01-12 23:42:17 +0800428#endif
429#ifndef CIPHERS_LIST_STRING
David Galeanof177f2a2013-01-10 10:15:19 +0800430#define CIPHERS_LIST_STRING "DEFAULT"
Andy Greenc0d6b632013-01-12 23:42:17 +0800431#endif
Andy Greena824d182013-01-15 20:52:29 +0800432#ifndef LWS_SOMAXCONN
433#define LWS_SOMAXCONN SOMAXCONN
434#endif
Andy Green7c212cc2010-11-08 20:20:42 +0000435
Andy Greene2522172011-01-18 17:14:03 +0000436#define MAX_WEBSOCKET_04_KEY_LEN 128
Andy Greenc0d6b632013-01-12 23:42:17 +0800437
438#ifndef SYSTEM_RANDOM_FILEPATH
Andy Green4739e5c2011-01-22 12:51:57 +0000439#define SYSTEM_RANDOM_FILEPATH "/dev/urandom"
Andy Greenc0d6b632013-01-12 23:42:17 +0800440#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800441
Andy Green5fd55cd2011-04-23 10:54:53 +0100442enum lws_websocket_opcodes_07 {
Andy Green54806b12015-12-17 17:03:59 +0800443 LWSWSOPC_CONTINUATION = 0,
444 LWSWSOPC_TEXT_FRAME = 1,
445 LWSWSOPC_BINARY_FRAME = 2,
Andy Greena41314f2011-05-23 10:00:03 +0100446
Andy Green54806b12015-12-17 17:03:59 +0800447 LWSWSOPC_NOSPEC__MUX = 7,
Andy Greena41314f2011-05-23 10:00:03 +0100448
449 /* control extensions 8+ */
450
Andy Green54806b12015-12-17 17:03:59 +0800451 LWSWSOPC_CLOSE = 8,
452 LWSWSOPC_PING = 9,
453 LWSWSOPC_PONG = 0xa,
Andy Green5fd55cd2011-04-23 10:54:53 +0100454};
455
Andy Greena41314f2011-05-23 10:00:03 +0100456
Andy Green7c212cc2010-11-08 20:20:42 +0000457enum lws_connection_states {
Andy Green54806b12015-12-17 17:03:59 +0800458 LWSS_HTTP,
459 LWSS_HTTP_ISSUING_FILE,
460 LWSS_HTTP_HEADERS,
461 LWSS_HTTP_BODY,
462 LWSS_DEAD_SOCKET,
463 LWSS_ESTABLISHED,
Andy Greena661ee52016-02-29 13:18:30 +0800464 LWSS_CLIENT_HTTP_ESTABLISHED,
Andy Green54806b12015-12-17 17:03:59 +0800465 LWSS_CLIENT_UNCONNECTED,
466 LWSS_RETURNED_CLOSE_ALREADY,
467 LWSS_AWAITING_CLOSE_ACK,
468 LWSS_FLUSHING_STORED_SEND_BEFORE_CLOSE,
Andy Green8c1f6022016-01-26 20:56:56 +0800469 LWSS_SHUTDOWN,
Andy Green40110e82015-12-14 08:52:03 +0800470
Andy Green54806b12015-12-17 17:03:59 +0800471 LWSS_HTTP2_AWAIT_CLIENT_PREFACE,
472 LWSS_HTTP2_ESTABLISHED_PRE_SETTINGS,
473 LWSS_HTTP2_ESTABLISHED,
Andy Green6a8099b2016-02-21 21:25:48 +0800474
Andy Green2d8d35a2016-02-29 14:19:16 +0800475 LWSS_CGI,
Andy Green7c212cc2010-11-08 20:20:42 +0000476};
477
Andrew Canadayafe26cf2014-07-13 01:07:36 -0400478enum http_version {
479 HTTP_VERSION_1_0,
480 HTTP_VERSION_1_1,
Andy Green22d6f392016-04-10 09:33:54 +0800481 HTTP_VERSION_2
Andrew Canadayafe26cf2014-07-13 01:07:36 -0400482};
483
484enum http_connection_type {
485 HTTP_CONNECTION_CLOSE,
486 HTTP_CONNECTION_KEEP_ALIVE
487};
488
Andy Green024eb6c2014-10-08 12:00:53 +0800489enum lws_pending_protocol_send {
490 LWS_PPS_NONE,
491 LWS_PPS_HTTP2_MY_SETTINGS,
492 LWS_PPS_HTTP2_ACK_SETTINGS,
Andy Greenbbbf07a2014-10-27 16:46:44 +0800493 LWS_PPS_HTTP2_PONG,
Andy Green024eb6c2014-10-08 12:00:53 +0800494};
495
Andy Green7c212cc2010-11-08 20:20:42 +0000496enum lws_rx_parse_state {
497 LWS_RXPS_NEW,
Andy Greene77ddd82010-11-13 10:03:47 +0000498
Andy Green67112662016-01-11 11:34:01 +0800499 LWS_RXPS_04_mask_1,
500 LWS_RXPS_04_mask_2,
501 LWS_RXPS_04_mask_3,
Andy Green3e5eb782011-01-18 18:14:26 +0000502
503 LWS_RXPS_04_FRAME_HDR_1,
Andy Green38e57bb2011-01-19 12:20:27 +0000504 LWS_RXPS_04_FRAME_HDR_LEN,
505 LWS_RXPS_04_FRAME_HDR_LEN16_2,
506 LWS_RXPS_04_FRAME_HDR_LEN16_1,
507 LWS_RXPS_04_FRAME_HDR_LEN64_8,
508 LWS_RXPS_04_FRAME_HDR_LEN64_7,
509 LWS_RXPS_04_FRAME_HDR_LEN64_6,
510 LWS_RXPS_04_FRAME_HDR_LEN64_5,
511 LWS_RXPS_04_FRAME_HDR_LEN64_4,
512 LWS_RXPS_04_FRAME_HDR_LEN64_3,
513 LWS_RXPS_04_FRAME_HDR_LEN64_2,
514 LWS_RXPS_04_FRAME_HDR_LEN64_1,
Andy Green3e5eb782011-01-18 18:14:26 +0000515
Andy Green283d0a22011-04-24 05:46:23 +0100516 LWS_RXPS_07_COLLECT_FRAME_KEY_1,
517 LWS_RXPS_07_COLLECT_FRAME_KEY_2,
518 LWS_RXPS_07_COLLECT_FRAME_KEY_3,
519 LWS_RXPS_07_COLLECT_FRAME_KEY_4,
520
Andy Green7c212cc2010-11-08 20:20:42 +0000521 LWS_RXPS_PAYLOAD_UNTIL_LENGTH_EXHAUSTED
522};
523
Andy Green95fff472016-08-08 21:54:30 +0800524#define LWSCM_FLAG_IMPLIES_CALLBACK_CLOSED_CLIENT_HTTP 32
Andy Green7c212cc2010-11-08 20:20:42 +0000525
Andy Green0d338332011-02-12 11:57:43 +0000526enum connection_mode {
Andy Green54806b12015-12-17 17:03:59 +0800527 LWSCM_HTTP_SERVING,
528 LWSCM_HTTP_SERVING_ACCEPTED, /* actual HTTP service going on */
529 LWSCM_PRE_WS_SERVING_ACCEPT,
Andy Greend280b6e2013-01-15 13:40:23 +0800530
Andy Green54806b12015-12-17 17:03:59 +0800531 LWSCM_WS_SERVING,
532 LWSCM_WS_CLIENT,
Andy Green40110e82015-12-14 08:52:03 +0800533
Andy Green54806b12015-12-17 17:03:59 +0800534 LWSCM_HTTP2_SERVING,
Andy Green0d338332011-02-12 11:57:43 +0000535
Andy Greene2160712013-01-28 12:19:10 +0800536 /* transient, ssl delay hiding */
Andy Green54806b12015-12-17 17:03:59 +0800537 LWSCM_SSL_ACK_PENDING,
Andy Green8c1f6022016-01-26 20:56:56 +0800538 LWSCM_SSL_INIT,
Andy Green297c0312017-02-12 20:32:49 +0800539 /* as above, but complete into LWSCM_RAW */
540 LWSCM_SSL_ACK_PENDING_RAW,
541 LWSCM_SSL_INIT_RAW,
Andy Greene2160712013-01-28 12:19:10 +0800542
Andy Green95fff472016-08-08 21:54:30 +0800543 /* special internal types */
544 LWSCM_SERVER_LISTENER,
545 LWSCM_CGI, /* stdin, stdout, stderr for another cgi master wsi */
Andy Greenbe8d7912017-02-27 12:55:56 +0800546 LWSCM_RAW, /* raw with bulk handling */
547 LWSCM_RAW_FILEDESC, /* raw without bulk handling */
Andy Green95fff472016-08-08 21:54:30 +0800548
549 /* HTTP Client related */
550 LWSCM_HTTP_CLIENT = LWSCM_FLAG_IMPLIES_CALLBACK_CLOSED_CLIENT_HTTP,
551 LWSCM_HTTP_CLIENT_ACCEPTED, /* actual HTTP service going on */
Andy Green54806b12015-12-17 17:03:59 +0800552 LWSCM_WSCL_WAITING_CONNECT,
553 LWSCM_WSCL_WAITING_PROXY_REPLY,
554 LWSCM_WSCL_ISSUE_HANDSHAKE,
555 LWSCM_WSCL_ISSUE_HANDSHAKE2,
Andy Green95fff472016-08-08 21:54:30 +0800556 LWSCM_WSCL_ISSUE_HTTP_BODY,
Andy Green54806b12015-12-17 17:03:59 +0800557 LWSCM_WSCL_WAITING_SSL,
558 LWSCM_WSCL_WAITING_SERVER_REPLY,
559 LWSCM_WSCL_WAITING_EXTENSION_CONNECT,
560 LWSCM_WSCL_PENDING_CANDIDATE_CHILD,
Andy Greenbe93fef2011-02-14 20:25:43 +0000561
Andy Green95fff472016-08-08 21:54:30 +0800562 /****** add new things just above ---^ ******/
563
564
Andy Green0d338332011-02-12 11:57:43 +0000565};
566
Andy Greenca0a1292013-03-16 11:24:23 +0800567enum {
568 LWS_RXFLOW_ALLOW = (1 << 0),
569 LWS_RXFLOW_PENDING_CHANGE = (1 << 1),
570};
571
Andy Green1fb95e82015-12-26 17:20:34 +0800572/* this is not usable directly by user code any more, lws_close_reason() */
573#define LWS_WRITE_CLOSE 4
574
Andy Green4b85c1d2015-12-04 11:08:32 +0800575struct lws_protocols;
576struct lws;
Andy Greene92cd172011-01-19 13:11:55 +0000577
Andy Green86ed65f2016-02-14 09:27:41 +0800578#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
579
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800580struct lws_io_watcher {
Andy Green86ed65f2016-02-14 09:27:41 +0800581#ifdef LWS_USE_LIBEV
582 ev_io ev_watcher;
583#endif
584#ifdef LWS_USE_LIBUV
585 uv_poll_t uv_watcher;
586#endif
587 struct lws_context *context;
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800588};
589
590struct lws_signal_watcher {
Andy Green86ed65f2016-02-14 09:27:41 +0800591#ifdef LWS_USE_LIBEV
592 ev_signal ev_watcher;
593#endif
594#ifdef LWS_USE_LIBUV
595 uv_signal_t uv_watcher;
596#endif
597 struct lws_context *context;
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800598};
Andy Green86ed65f2016-02-14 09:27:41 +0800599#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800600
Bud Davis229bfec2015-01-30 10:13:01 +0800601#ifdef _WIN32
602#define LWS_FD_HASH(fd) ((fd ^ (fd >> 8) ^ (fd >> 16)) % FD_HASHTABLE_MODULUS)
Andy Green3ef579b2015-12-04 09:23:56 +0800603struct lws_fd_hashtable {
Andy Green4b85c1d2015-12-04 11:08:32 +0800604 struct lws **wsi;
Bud Davis229bfec2015-01-30 10:13:01 +0800605 int length;
606};
607#endif
608
Andy Green3df58002015-12-25 12:44:12 +0800609/*
610 * This is totally opaque to code using the library. It's exported as a
611 * forward-reference pointer-only declaration; the user can use the pointer with
612 * other APIs to get information out of it.
613 */
614
615struct lws_fragments {
Andy Green48895662016-06-02 12:32:38 +0800616 unsigned int offset;
Andy Green3df58002015-12-25 12:44:12 +0800617 unsigned short len;
618 unsigned char nfrag; /* which ah->frag[] continues this content, or 0 */
619};
620
621/*
622 * these are assigned from a pool held in the context.
623 * Both client and server mode uses them for http header analysis
624 */
625
626struct allocated_headers {
Andy Green2c218e72016-02-15 12:37:04 +0800627 struct lws *wsi; /* owner */
Andy Greende132b92015-12-25 13:48:20 +0800628 char *data; /* prepared by context init to point to dedicated storage */
629 /*
630 * the randomly ordered fragments, indexed by frag_index and
631 * lws_fragments->nfrag for continuation.
632 */
633 struct lws_fragments frags[WSI_TOKEN_COUNT * 2];
Andy Green8c1f6022016-01-26 20:56:56 +0800634 time_t assigned;
Andy Green3df58002015-12-25 12:44:12 +0800635 /*
636 * for each recognized token, frag_index says which frag[] his data
637 * starts in (0 means the token did not appear)
638 * the actual header data gets dumped as it comes in, into data[]
639 */
640 unsigned char frag_index[WSI_TOKEN_COUNT];
Andy Green2c218e72016-02-15 12:37:04 +0800641 unsigned char rx[2048];
Andy Greened4acef2016-12-12 13:36:25 +0800642
Andy Green2c218e72016-02-15 12:37:04 +0800643 unsigned int rxpos;
644 unsigned int rxlen;
Andy Green48895662016-06-02 12:32:38 +0800645 unsigned int pos;
Andy Green2c218e72016-02-15 12:37:04 +0800646
Andy Green86ab0602016-10-21 23:12:21 +0800647 unsigned int http_response;
648
Andy Green3df58002015-12-25 12:44:12 +0800649#ifndef LWS_NO_CLIENT
650 char initial_handshake_hash_base64[30];
Andy Green3df58002015-12-25 12:44:12 +0800651#endif
Andy Greenaa775fd2015-12-26 08:56:58 +0800652
Andy Greenaa775fd2015-12-26 08:56:58 +0800653 unsigned char in_use;
654 unsigned char nfrag;
Andy Green3df58002015-12-25 12:44:12 +0800655};
656
Andy Greend3a55052016-01-19 03:34:24 +0800657/*
658 * so we can have n connections being serviced simultaneously,
659 * these things need to be isolated per-thread.
660 */
661
662struct lws_context_per_thread {
Andy Green8c1f6022016-01-26 20:56:56 +0800663#if LWS_MAX_SMP > 1
664 pthread_mutex_t lock;
665#endif
Andy Greend3a55052016-01-19 03:34:24 +0800666 struct lws_pollfd *fds;
Andy Green7acf76c2016-07-23 14:18:25 +0800667#if defined(LWS_WITH_ESP8266)
668 struct lws **lws_vs_fds_index;
669#endif
Andy Greend3a55052016-01-19 03:34:24 +0800670 struct lws *rx_draining_ext_list;
671 struct lws *tx_draining_ext_list;
Andy Green8c1f6022016-01-26 20:56:56 +0800672 struct lws *timeout_list;
Patrick Ganstererfa9ebb32016-08-14 14:04:56 +0200673#ifdef LWS_USE_LIBUV
Andy Green38a1cbb2016-02-27 11:03:27 +0800674 struct lws_context *context;
Patrick Ganstererfa9ebb32016-08-14 14:04:56 +0200675#endif
Andy Green6a8099b2016-02-21 21:25:48 +0800676#ifdef LWS_WITH_CGI
677 struct lws_cgi *cgi_list;
678#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800679 void *http_header_data;
680 struct allocated_headers *ah_pool;
681 struct lws *ah_wait_list;
682 int ah_wait_list_length;
Andy Greend3a55052016-01-19 03:34:24 +0800683#ifdef LWS_OPENSSL_SUPPORT
684 struct lws *pending_read_list; /* linked list */
685#endif
Andy Green86ed65f2016-02-14 09:27:41 +0800686#if defined(LWS_USE_LIBEV)
687 struct ev_loop *io_loop_ev;
688#endif
689#if defined(LWS_USE_LIBUV)
690 uv_loop_t *io_loop_uv;
691 uv_signal_t signals[8];
Andy Green38a1cbb2016-02-27 11:03:27 +0800692 uv_timer_t uv_timeout_watcher;
Andy Green09998e32016-04-06 09:23:16 +0800693 uv_idle_t uv_idle;
Andy Green86ed65f2016-02-14 09:27:41 +0800694#endif
695#if defined(LWS_USE_LIBEV)
696 struct lws_io_watcher w_accept;
697#endif
698#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
699 struct lws_signal_watcher w_sigint;
700 unsigned char ev_loop_foreign:1;
701#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800702
703 unsigned long count_conns;
Andy Greend3a55052016-01-19 03:34:24 +0800704 /*
705 * usable by anything in the service code, but only if the scope
706 * does not last longer than the service action (since next service
707 * of any socket can likewise use it and overwrite)
708 */
709 unsigned char *serv_buf;
710#ifdef _WIN32
711 WSAEVENT *events;
712#else
Andy Green7acf76c2016-07-23 14:18:25 +0800713 lws_sockfd_type dummy_pipe_fds[2];
Andy Greend3a55052016-01-19 03:34:24 +0800714#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800715 unsigned int fds_count;
716
717 short ah_count_in_use;
Andy Green38a1cbb2016-02-27 11:03:27 +0800718 unsigned char tid;
Andy Greenbbf93692016-08-07 08:33:08 +0800719 unsigned char lock_depth;
Andy Greend3a55052016-01-19 03:34:24 +0800720};
721
Andy Greenbe9fb912016-12-16 07:37:43 +0800722struct lws_conn_stats {
723 unsigned long long rx, tx;
724 unsigned long conn, trans, ws_upg, http2_upg, rejected;
725};
726
727void
728lws_sum_stats(const struct lws_context *ctx, struct lws_conn_stats *cs);
729
Andy Greend526c502016-03-28 10:10:43 +0800730/*
731 * virtual host -related context information
732 * vhostwide SSL context
733 * vhostwide proxy
734 *
Peter Pentchevfb71b792016-10-02 02:21:03 +0300735 * hierarchy:
Andy Greend526c502016-03-28 10:10:43 +0800736 *
737 * context -> vhost -> wsi
738 *
739 * incoming connection non-SSL vhost binding:
740 *
741 * listen socket -> wsi -> select vhost after first headers
742 *
743 * incoming connection SSL vhost binding:
744 *
745 * SSL SNI -> wsi -> bind after SSL negotiation
746 */
747
748struct lws_vhost {
Andy Green7acf76c2016-07-23 14:18:25 +0800749#if !defined(LWS_WITH_ESP8266)
Andy Greend526c502016-03-28 10:10:43 +0800750 char http_proxy_address[128];
751 char proxy_basic_auth_token[128];
Andy Green7acf76c2016-07-23 14:18:25 +0800752#endif
753#if defined(LWS_WITH_ESP8266)
754 /* listen sockets need a place to hang their hat */
755 esp_tcp tcp;
756#endif
Andy Greenbe9fb912016-12-16 07:37:43 +0800757 struct lws_conn_stats conn_stats;
Andy Greend526c502016-03-28 10:10:43 +0800758 struct lws_context *context;
759 struct lws_vhost *vhost_next;
Andy Green4664f712016-05-02 04:59:54 +0800760 const struct lws_http_mount *mount_list;
Andy Greend526c502016-03-28 10:10:43 +0800761 struct lws *lserv_wsi;
762 const char *name;
763 const char *iface;
764 const struct lws_protocols *protocols;
Andy Green02077052016-04-06 16:15:40 +0800765 void **protocol_vh_privs;
Andy Green952fcde2016-05-02 06:01:59 +0800766 const struct lws_protocol_vhost_options *pvo;
Andy Greene35d91a2016-08-27 17:07:06 +0800767 const struct lws_protocol_vhost_options *headers;
Andy Green4714cf02016-04-16 08:40:35 +0800768 struct lws **same_vh_protocol_list;
Andy Greend526c502016-03-28 10:10:43 +0800769#ifdef LWS_OPENSSL_SUPPORT
770 SSL_CTX *ssl_ctx;
771 SSL_CTX *ssl_client_ctx;
772#endif
773#ifndef LWS_NO_EXTENSIONS
774 const struct lws_extension *extensions;
775#endif
776
777 int listen_port;
778 unsigned int http_proxy_port;
Andy Greencc3c6fb2016-04-14 15:09:01 +0800779 unsigned int options;
Andy Greend526c502016-03-28 10:10:43 +0800780 int count_protocols;
781 int ka_time;
782 int ka_probes;
783 int ka_interval;
Andy Greenb46e4a82016-04-12 16:26:03 +0800784 int keepalive_timeout;
Andy Green2f0bc932016-04-15 12:00:23 +0800785#ifdef LWS_WITH_ACCESS_LOG
786 int log_fd;
787#endif
Andy Greend526c502016-03-28 10:10:43 +0800788
789#ifdef LWS_OPENSSL_SUPPORT
790 int use_ssl;
791 int allow_non_ssl_on_ssl_port;
792 unsigned int user_supplied_ssl_ctx:1;
793#endif
Andy Greenf32d2502016-07-15 13:41:38 +0800794
Bablooos6e436dc2016-11-30 07:05:13 +0800795 unsigned int created_vhost_protocols:1;
796
Andy Greenf6585282016-05-06 14:24:59 +0800797 unsigned char default_protocol_index;
Andy Green205cced2017-03-07 16:06:05 +0800798 unsigned char raw_protocol_index;
Andy Greend526c502016-03-28 10:10:43 +0800799};
800
Andy Greend3a55052016-01-19 03:34:24 +0800801/*
802 * the rest is managed per-context, that includes
803 *
804 * - processwide single fd -> wsi lookup
805 * - contextwide headers pool
Andy Greend3a55052016-01-19 03:34:24 +0800806 */
807
Andy Green4b85c1d2015-12-04 11:08:32 +0800808struct lws_context {
Andy Greenaa775fd2015-12-26 08:56:58 +0800809 time_t last_timeout_check_s;
Andy Greenf32d2502016-07-15 13:41:38 +0800810 time_t last_ws_ping_pong_check_s;
Andy Green98061402016-04-15 14:01:29 +0800811 time_t time_up;
Andy Green1ada1322017-03-01 14:28:56 +0800812 const struct lws_plat_file_ops *fops;
Andy Green19cc7ac2017-03-03 12:38:10 +0800813 struct lws_plat_file_ops fops_platform;
814#if defined(LWS_WITH_ZIP_FOPS)
815 struct lws_plat_file_ops fops_zip;
816#endif
Andy Greend3a55052016-01-19 03:34:24 +0800817 struct lws_context_per_thread pt[LWS_MAX_SMP];
Andy Greenbe9fb912016-12-16 07:37:43 +0800818 struct lws_conn_stats conn_stats;
Bud Davis229bfec2015-01-30 10:13:01 +0800819#ifdef _WIN32
820/* different implementation between unix and windows */
Andy Green3ef579b2015-12-04 09:23:56 +0800821 struct lws_fd_hashtable fd_hashtable[FD_HASHTABLE_MODULUS];
Bud Davis229bfec2015-01-30 10:13:01 +0800822#else
Andy Green7acf76c2016-07-23 14:18:25 +0800823#if defined(LWS_WITH_ESP8266)
824 struct espconn **connpool; /* .reverse points to the wsi */
825 void *rxd;
826 int rxd_len;
827 os_timer_t to_timer;
828#else
Andy Green4b85c1d2015-12-04 11:08:32 +0800829 struct lws **lws_lookup; /* fd to wsi */
Bud Davis229bfec2015-01-30 10:13:01 +0800830#endif
Andy Green7acf76c2016-07-23 14:18:25 +0800831#endif
Andy Greend526c502016-03-28 10:10:43 +0800832 struct lws_vhost *vhost_list;
Andy Green02077052016-04-06 16:15:40 +0800833 struct lws_plugin *plugin_list;
Andy Greenbe9fb912016-12-16 07:37:43 +0800834
Andy Green69c88d92016-12-04 07:34:05 +0800835 void *external_baggage_free_on_destroy;
Andy Greenaa775fd2015-12-26 08:56:58 +0800836 const struct lws_token_limits *token_limits;
837 void *user_space;
Andy Greenb21c20b2016-04-15 13:33:52 +0800838 const char *server_string;
Andy Green3b93e342016-10-13 06:32:57 +0800839 const struct lws_protocol_vhost_options *reject_service_keywords;
Andy Greenbe9fb912016-12-16 07:37:43 +0800840 lws_reload_func deprecation_cb;
Andy Greend738f842016-01-19 04:32:14 +0800841
Andy Green86ed65f2016-02-14 09:27:41 +0800842#if defined(LWS_USE_LIBEV)
843 lws_ev_signal_cb_t * lws_ev_sigint_cb;
844#endif
845#if defined(LWS_USE_LIBUV)
Denis Osvaldf107e4b2016-03-22 14:04:15 +0100846 uv_signal_cb lws_uv_sigint_cb;
Andy Green86ed65f2016-02-14 09:27:41 +0800847#endif
Andy Greenaa775fd2015-12-26 08:56:58 +0800848 char canonical_hostname[128];
849#ifdef LWS_LATENCY
850 unsigned long worst_latency;
851 char worst_latency_info[256];
852#endif
Andy Greenb8b247d2013-01-22 07:20:08 +0800853
Andy Greenaa775fd2015-12-26 08:56:58 +0800854 int max_fds;
Andy Green86ed65f2016-02-14 09:27:41 +0800855#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
Andy Greenaa775fd2015-12-26 08:56:58 +0800856 int use_ev_sigint;
857#endif
Andy Green24cba922013-01-19 13:56:10 +0800858 int started_with_parent;
Andy Greend526c502016-03-28 10:10:43 +0800859 int uid, gid;
Andy Green24cba922013-01-19 13:56:10 +0800860
Andy Green44eee682011-02-10 09:32:24 +0000861 int fd_random;
Andy Greend526c502016-03-28 10:10:43 +0800862#ifdef LWS_OPENSSL_SUPPORT
863#define lws_ssl_anybody_has_buffered_read(w) \
864 (w->vhost->use_ssl && \
865 w->context->pt[(int)w->tsi].pending_read_list)
866#define lws_ssl_anybody_has_buffered_read_tsi(c, t) \
867 (/*c->use_ssl && */ \
868 c->pt[(int)t].pending_read_list)
869#else
870#define lws_ssl_anybody_has_buffered_read(ctx) (0)
871#define lws_ssl_anybody_has_buffered_read_tsi(ctx, t) (0)
872#endif
Andy Green86ed65f2016-02-14 09:27:41 +0800873 int count_wsi_allocated;
Andy Green748a2212016-04-20 06:10:56 +0800874 int count_cgi_spawned;
Andy Greenaa775fd2015-12-26 08:56:58 +0800875 unsigned int options;
Andy Greend3a55052016-01-19 03:34:24 +0800876 unsigned int fd_limit_per_thread;
Andy Green200a6a22016-02-15 20:36:02 +0800877 unsigned int timeout_secs;
Andy Greene7c1c752016-05-19 12:34:35 +0800878 unsigned int pt_serv_buf_size;
Andy Green48895662016-06-02 12:32:38 +0800879 int max_http_header_data;
Andy Green6ee372f2012-04-09 15:09:01 +0800880
Andy Greenbe9fb912016-12-16 07:37:43 +0800881 unsigned int deprecated:1;
882 unsigned int being_destroyed:1;
883 unsigned int being_destroyed1:1;
884 unsigned int requested_kill:1;
885 unsigned int protocol_init_done:1;
886
Patrick Gansterer1ee57f62014-03-06 11:57:50 +0100887 /*
888 * set to the Thread ID that's doing the service loop just before entry
889 * to poll indicates service thread likely idling in poll()
890 * volatile because other threads may check it as part of processing
891 * for pollfd event change.
892 */
893 volatile int service_tid;
Andy Greenc35b36b2015-12-24 13:00:54 +0800894 int service_tid_detected;
Patrick Gansterer1ee57f62014-03-06 11:57:50 +0100895
Andy Green3df58002015-12-25 12:44:12 +0800896 short max_http_header_pool;
Andy Greend3a55052016-01-19 03:34:24 +0800897 short count_threads;
Andy Green02077052016-04-06 16:15:40 +0800898 short plugin_protocol_count;
899 short plugin_extension_count;
Andy Greenb21c20b2016-04-15 13:33:52 +0800900 short server_string_len;
Andy Greenf32d2502016-07-15 13:41:38 +0800901 unsigned short ws_ping_pong_interval;
Andy Greenbe9fb912016-12-16 07:37:43 +0800902 unsigned short deprecation_pending_listen_close_count;
Andy Green19cc7ac2017-03-03 12:38:10 +0800903 uint8_t max_fi;
Andy Greenb45993c2010-12-18 15:13:50 +0000904};
905
Andy Greend526c502016-03-28 10:10:43 +0800906#define lws_get_context_protocol(ctx, x) ctx->vhost_list->protocols[x]
907#define lws_get_vh_protocol(vh, x) vh->protocols[x]
908
Andy Green86ed65f2016-02-14 09:27:41 +0800909LWS_EXTERN void
910lws_close_free_wsi_final(struct lws *wsi);
911LWS_EXTERN void
912lws_libuv_closehandle(struct lws *wsi);
913
Andy Green0a183542016-04-09 07:22:40 +0800914LWS_VISIBLE LWS_EXTERN int
Andy Greencae57ad2016-05-02 10:03:25 +0800915lws_plat_plugins_init(struct lws_context * context, const char * const *d);
Andy Green0a183542016-04-09 07:22:40 +0800916
917LWS_VISIBLE LWS_EXTERN int
918lws_plat_plugins_destroy(struct lws_context * context);
919
Andy Greenf32d2502016-07-15 13:41:38 +0800920LWS_EXTERN void
921lws_restart_ws_ping_pong_timer(struct lws *wsi);
922
Andy Green7acf76c2016-07-23 14:18:25 +0800923struct lws *
924lws_adopt_socket_vhost(struct lws_vhost *vh, lws_sockfd_type accept_fd);
925
926
Andy Greena717df22014-04-11 13:14:37 +0800927enum {
928 LWS_EV_READ = (1 << 0),
929 LWS_EV_WRITE = (1 << 1),
930 LWS_EV_START = (1 << 2),
931 LWS_EV_STOP = (1 << 3),
Andy Green86ed65f2016-02-14 09:27:41 +0800932
933 LWS_EV_PREPARE_DELETION = (1 << 31),
Andy Greena717df22014-04-11 13:14:37 +0800934};
935
Andy Green86ed65f2016-02-14 09:27:41 +0800936#if defined(LWS_USE_LIBEV)
Andy Greena717df22014-04-11 13:14:37 +0800937LWS_EXTERN void
Andy Greenbe8d7912017-02-27 12:55:56 +0800938lws_libev_accept(struct lws *new_wsi, lws_sock_file_fd_type desc);
Andy Green04054b42017-03-03 08:18:16 +0800939LWS_EXTERN void
Andy Green11c05bf2015-12-16 18:19:08 +0800940lws_libev_io(struct lws *wsi, int flags);
Andy Greena717df22014-04-11 13:14:37 +0800941LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +0800942lws_libev_init_fd_table(struct lws_context *context);
Andy Greena717df22014-04-11 13:14:37 +0800943LWS_EXTERN void
Andy Green86ed65f2016-02-14 09:27:41 +0800944lws_libev_destroyloop(struct lws_context *context, int tsi);
945LWS_EXTERN void
946lws_libev_run(const struct lws_context *context, int tsi);
Andy Greenc6fd3602016-03-23 09:22:11 +0800947#define LWS_LIBEV_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBEV)
Andy Green86ed65f2016-02-14 09:27:41 +0800948LWS_EXTERN void lws_feature_status_libev(struct lws_context_creation_info *info);
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800949#else
Andy Green86ed65f2016-02-14 09:27:41 +0800950#define lws_libev_accept(_a, _b) ((void) 0)
951#define lws_libev_io(_a, _b) ((void) 0)
952#define lws_libev_init_fd_table(_a) (0)
953#define lws_libev_run(_a, _b) ((void) 0)
954#define lws_libev_destroyloop(_a, _b) ((void) 0)
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800955#define LWS_LIBEV_ENABLED(context) (0)
Andy Greenc7c4ae02017-02-18 17:26:40 +0800956#if LWS_POSIX && !defined(LWS_WITH_ESP32)
Andy Greena717df22014-04-11 13:14:37 +0800957#define lws_feature_status_libev(_a) \
958 lwsl_notice("libev support not compiled in\n")
Andy Green8c0d3c02015-11-02 20:34:12 +0800959#else
960#define lws_feature_status_libev(_a)
961#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800962#endif
963
Andy Green86ed65f2016-02-14 09:27:41 +0800964#if defined(LWS_USE_LIBUV)
965LWS_EXTERN void
Andy Greenbe8d7912017-02-27 12:55:56 +0800966lws_libuv_accept(struct lws *new_wsi, lws_sock_file_fd_type desc);
Andy Green86ed65f2016-02-14 09:27:41 +0800967LWS_EXTERN void
968lws_libuv_io(struct lws *wsi, int flags);
969LWS_EXTERN int
970lws_libuv_init_fd_table(struct lws_context *context);
971LWS_EXTERN void
972lws_libuv_run(const struct lws_context *context, int tsi);
973LWS_EXTERN void
974lws_libuv_destroyloop(struct lws_context *context, int tsi);
Bablooos6e436dc2016-11-30 07:05:13 +0800975LWS_EXTERN int
976lws_uv_initvhost(struct lws_vhost* vh, struct lws*);
Andy Greenc6fd3602016-03-23 09:22:11 +0800977#define LWS_LIBUV_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBUV)
Andy Green86ed65f2016-02-14 09:27:41 +0800978LWS_EXTERN void lws_feature_status_libuv(struct lws_context_creation_info *info);
979#else
980#define lws_libuv_accept(_a, _b) ((void) 0)
981#define lws_libuv_io(_a, _b) ((void) 0)
982#define lws_libuv_init_fd_table(_a) (0)
983#define lws_libuv_run(_a, _b) ((void) 0)
984#define lws_libuv_destroyloop(_a, _b) ((void) 0)
985#define LWS_LIBUV_ENABLED(context) (0)
Andy Greenc7c4ae02017-02-18 17:26:40 +0800986#if LWS_POSIX && !defined(LWS_WITH_ESP32)
Andy Green86ed65f2016-02-14 09:27:41 +0800987#define lws_feature_status_libuv(_a) \
988 lwsl_notice("libuv support not compiled in\n")
989#else
990#define lws_feature_status_libuv(_a)
991#endif
992#endif
993
994
Andy Green055f2972014-03-24 16:09:25 +0800995#ifdef LWS_USE_IPV6
Andy Green2dc7dde2016-06-03 21:19:40 +0800996#define LWS_IPV6_ENABLED(vh) \
Denis Osvaldc16c6c82016-06-03 17:40:12 +0200997 (!lws_check_opt(vh->context->options, LWS_SERVER_OPTION_DISABLE_IPV6) && \
Andy Green2dc7dde2016-06-03 21:19:40 +0800998 !lws_check_opt(vh->options, LWS_SERVER_OPTION_DISABLE_IPV6))
James Devine3f13ea22014-03-24 16:09:25 +0800999#else
1000#define LWS_IPV6_ENABLED(context) (0)
1001#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +08001002
Yeonjun Lim3c6a8c12016-03-30 22:47:02 -07001003#ifdef LWS_USE_UNIX_SOCK
Andy Green144594d2016-04-14 12:11:51 +08001004#define LWS_UNIX_SOCK_ENABLED(vhost) \
1005 (vhost->options & LWS_SERVER_OPTION_UNIX_SOCK)
Yeonjun Lim3c6a8c12016-03-30 22:47:02 -07001006#else
Andy Green144594d2016-04-14 12:11:51 +08001007#define LWS_UNIX_SOCK_ENABLED(vhost) (0)
Yeonjun Lim3c6a8c12016-03-30 22:47:02 -07001008#endif
Andy Greenb1a9e502013-11-10 15:15:21 +08001009enum uri_path_states {
1010 URIPS_IDLE,
1011 URIPS_SEEN_SLASH,
1012 URIPS_SEEN_SLASH_DOT,
1013 URIPS_SEEN_SLASH_DOT_DOT,
1014};
1015
1016enum uri_esc_states {
1017 URIES_IDLE,
1018 URIES_SEEN_PERCENT,
1019 URIES_SEEN_PERCENT_H1,
1020};
Andy Greenf3d3b402011-02-09 07:16:34 +00001021
Andy Green024eb6c2014-10-08 12:00:53 +08001022/* notice that these union members:
Andy Green40110e82015-12-14 08:52:03 +08001023 *
Andy Green024eb6c2014-10-08 12:00:53 +08001024 * hdr
1025 * http
1026 * http2
Andy Green40110e82015-12-14 08:52:03 +08001027 *
Andy Green024eb6c2014-10-08 12:00:53 +08001028 * all have a pointer to allocated_headers struct as their first member.
Andy Green40110e82015-12-14 08:52:03 +08001029 *
Andy Green024eb6c2014-10-08 12:00:53 +08001030 * It means for allocated_headers access, the three union paths can all be
Peter Pentchevbb085da2015-12-03 15:55:11 +02001031 * used interchangeably to access the same data
Andy Green024eb6c2014-10-08 12:00:53 +08001032 */
1033
Andy Greena661ee52016-02-29 13:18:30 +08001034
1035#ifndef LWS_NO_CLIENT
1036struct client_info_stash {
1037 char address[256];
sjames1958gm0fdca9f2016-11-21 09:23:17 -06001038 char path[4096];
Andy Greena661ee52016-02-29 13:18:30 +08001039 char host[256];
1040 char origin[256];
1041 char protocol[256];
1042 char method[16];
1043};
1044#endif
1045
Andy Green2d8d35a2016-02-29 14:19:16 +08001046struct _lws_header_related {
1047 /* MUST be first in struct */
1048 struct allocated_headers *ah;
1049 struct lws *ah_wait_list;
1050 unsigned char *preamble_rx;
1051#ifndef LWS_NO_CLIENT
1052 struct client_info_stash *stash;
1053#endif
1054 unsigned int preamble_rx_len;
1055 enum uri_path_states ups;
1056 enum uri_esc_states ues;
1057 short lextable_pos;
Andy Green48895662016-06-02 12:32:38 +08001058 unsigned int current_token_limit;
Andy Green3e0006c2017-02-22 06:55:12 +08001059
Andy Green2d8d35a2016-02-29 14:19:16 +08001060 char esc_stash;
1061 char post_literal_equal;
1062 unsigned char parser_state; /* enum lws_token_indexes */
Andy Green2d8d35a2016-02-29 14:19:16 +08001063};
1064
Andy Greened4acef2016-12-12 13:36:25 +08001065#if defined(LWS_WITH_RANGES)
1066enum range_states {
1067 LWSRS_NO_ACTIVE_RANGE,
1068 LWSRS_BYTES_EQ,
1069 LWSRS_FIRST,
1070 LWSRS_STARTING,
1071 LWSRS_ENDING,
1072 LWSRS_COMPLETED,
1073 LWSRS_SYNTAX,
1074};
1075
1076struct lws_range_parsing {
1077 unsigned long long start, end, extent, agg, budget;
1078 const char buf[128];
1079 int pos;
1080 enum range_states state;
1081 char start_valid, end_valid, ctr, count_ranges, did_try, inside, send_ctr;
1082};
1083
1084int
1085lws_ranges_init(struct lws *wsi, struct lws_range_parsing *rp, unsigned long long extent);
1086int
1087lws_ranges_next(struct lws_range_parsing *rp);
1088void
1089lws_ranges_reset(struct lws_range_parsing *rp);
1090#endif
1091
Andy Green84fd9492013-11-09 11:40:32 +08001092struct _lws_http_mode_related {
Andy Green024eb6c2014-10-08 12:00:53 +08001093 /* MUST be first in struct */
Andy Green84fd9492013-11-09 11:40:32 +08001094 struct allocated_headers *ah; /* mirroring _lws_header_related */
Andy Green8c1f6022016-01-26 20:56:56 +08001095 struct lws *ah_wait_list;
Andy Green2d8d35a2016-02-29 14:19:16 +08001096 unsigned char *preamble_rx;
1097#ifndef LWS_NO_CLIENT
1098 struct client_info_stash *stash;
1099#endif
1100 unsigned int preamble_rx_len;
Andy Green8c1f6022016-01-26 20:56:56 +08001101 struct lws *new_wsi_list;
Andy Green1789d0a2017-02-25 12:42:45 +08001102 lws_filepos_t filepos;
1103 lws_filepos_t filelen;
1104 lws_fop_fd_t fop_fd;
kapejodce64fb02013-11-19 13:38:16 +01001105
Andy Greened4acef2016-12-12 13:36:25 +08001106#if defined(LWS_WITH_RANGES)
1107 struct lws_range_parsing range;
1108 char multipart_content_type[64];
1109#endif
1110
Andrew Canadayafe26cf2014-07-13 01:07:36 -04001111 enum http_version request_version;
1112 enum http_connection_type connection_type;
Andy Green2cd30742015-11-02 13:10:33 +08001113 unsigned int content_length;
1114 unsigned int content_remain;
Andy Green84fd9492013-11-09 11:40:32 +08001115};
1116
Andy Green024eb6c2014-10-08 12:00:53 +08001117#ifdef LWS_USE_HTTP2
1118
1119enum lws_http2_settings {
1120 LWS_HTTP2_SETTINGS__HEADER_TABLE_SIZE = 1,
1121 LWS_HTTP2_SETTINGS__ENABLE_PUSH,
1122 LWS_HTTP2_SETTINGS__MAX_CONCURRENT_STREAMS,
1123 LWS_HTTP2_SETTINGS__INITIAL_WINDOW_SIZE,
1124 LWS_HTTP2_SETTINGS__MAX_FRAME_SIZE,
1125 LWS_HTTP2_SETTINGS__MAX_HEADER_LIST_SIZE,
Andy Green40110e82015-12-14 08:52:03 +08001126
Andy Green024eb6c2014-10-08 12:00:53 +08001127 LWS_HTTP2_SETTINGS__COUNT /* always last */
Andy Greena54f2322014-09-30 09:43:14 +08001128};
1129
Andy Green024eb6c2014-10-08 12:00:53 +08001130enum lws_http2_wellknown_frame_types {
1131 LWS_HTTP2_FRAME_TYPE_DATA,
1132 LWS_HTTP2_FRAME_TYPE_HEADERS,
1133 LWS_HTTP2_FRAME_TYPE_PRIORITY,
1134 LWS_HTTP2_FRAME_TYPE_RST_STREAM,
1135 LWS_HTTP2_FRAME_TYPE_SETTINGS,
1136 LWS_HTTP2_FRAME_TYPE_PUSH_PROMISE,
1137 LWS_HTTP2_FRAME_TYPE_PING,
1138 LWS_HTTP2_FRAME_TYPE_GOAWAY,
1139 LWS_HTTP2_FRAME_TYPE_WINDOW_UPDATE,
1140 LWS_HTTP2_FRAME_TYPE_CONTINUATION,
Andy Green40110e82015-12-14 08:52:03 +08001141
Andy Green024eb6c2014-10-08 12:00:53 +08001142 LWS_HTTP2_FRAME_TYPE_COUNT /* always last */
1143};
1144
Andy Green91b05892014-10-17 08:38:44 +08001145enum lws_http2_flags {
1146 LWS_HTTP2_FLAG_END_STREAM = 1,
1147 LWS_HTTP2_FLAG_END_HEADERS = 4,
1148 LWS_HTTP2_FLAG_PADDED = 8,
1149 LWS_HTTP2_FLAG_PRIORITY = 0x20,
1150
1151 LWS_HTTP2_FLAG_SETTINGS_ACK = 1,
1152};
1153
Andy Green024eb6c2014-10-08 12:00:53 +08001154#define LWS_HTTP2_STREAM_ID_MASTER 0
1155#define LWS_HTTP2_FRAME_HEADER_LENGTH 9
1156#define LWS_HTTP2_SETTINGS_LENGTH 6
1157
1158struct http2_settings {
1159 unsigned int setting[LWS_HTTP2_SETTINGS__COUNT];
1160};
1161
Andy Greenecc2e722014-10-09 16:57:47 +08001162enum http2_hpack_state {
Andy Green40110e82015-12-14 08:52:03 +08001163
Andy Green200f3852014-10-18 12:23:05 +08001164 /* optional before first header block */
1165 HPKS_OPT_PADDING,
1166 HKPS_OPT_E_DEPENDENCY,
1167 HKPS_OPT_WEIGHT,
Andy Green40110e82015-12-14 08:52:03 +08001168
Andy Green200f3852014-10-18 12:23:05 +08001169 /* header block */
Andy Greenecc2e722014-10-09 16:57:47 +08001170 HPKS_TYPE,
Andy Green40110e82015-12-14 08:52:03 +08001171
Andy Green2add6342014-10-12 08:38:16 +08001172 HPKS_IDX_EXT,
Andy Green40110e82015-12-14 08:52:03 +08001173
Andy Greenecc2e722014-10-09 16:57:47 +08001174 HPKS_HLEN,
1175 HPKS_HLEN_EXT,
1176
1177 HPKS_DATA,
Andy Green40110e82015-12-14 08:52:03 +08001178
Andy Green200f3852014-10-18 12:23:05 +08001179 /* optional after last header block */
1180 HKPS_OPT_DISCARD_PADDING,
Andy Greenecc2e722014-10-09 16:57:47 +08001181};
1182
Andy Green2add6342014-10-12 08:38:16 +08001183enum http2_hpack_type {
1184 HPKT_INDEXED_HDR_7,
1185 HPKT_INDEXED_HDR_6_VALUE_INCR,
1186 HPKT_LITERAL_HDR_VALUE_INCR,
1187 HPKT_INDEXED_HDR_4_VALUE,
1188 HPKT_LITERAL_HDR_VALUE,
1189 HPKT_SIZE_5
1190};
1191
Andy Green200f3852014-10-18 12:23:05 +08001192struct hpack_dt_entry {
1193 int token; /* additions that don't map to a token are ignored */
1194 int arg_offset;
1195 int arg_len;
1196};
1197
1198struct hpack_dynamic_table {
1199 struct hpack_dt_entry *entries;
1200 char *args;
1201 int pos;
1202 int next;
1203 int num_entries;
1204 int args_length;
1205};
1206
Andy Green024eb6c2014-10-08 12:00:53 +08001207struct _lws_http2_related {
Andy Green40110e82015-12-14 08:52:03 +08001208 /*
Andy Green024eb6c2014-10-08 12:00:53 +08001209 * having this first lets us also re-use all HTTP union code
1210 * and in turn, http_mode_related has allocated headers in right
1211 * place so we can use the header apis on the wsi directly still
1212 */
1213 struct _lws_http_mode_related http; /* MUST BE FIRST IN STRUCT */
1214
1215 struct http2_settings my_settings;
1216 struct http2_settings peer_settings;
Andy Green40110e82015-12-14 08:52:03 +08001217
Andy Green4b85c1d2015-12-04 11:08:32 +08001218 struct lws *parent_wsi;
1219 struct lws *next_child_wsi;
Andy Green024eb6c2014-10-08 12:00:53 +08001220
Andy Green200f3852014-10-18 12:23:05 +08001221 struct hpack_dynamic_table *hpack_dyn_table;
Andy Greenaa775fd2015-12-26 08:56:58 +08001222 struct lws *stream_wsi;
1223 unsigned char ping_payload[8];
1224 unsigned char one_setting[LWS_HTTP2_SETTINGS_LENGTH];
Andy Green40110e82015-12-14 08:52:03 +08001225
Andy Green024eb6c2014-10-08 12:00:53 +08001226 unsigned int count;
Andy Green024eb6c2014-10-08 12:00:53 +08001227 unsigned int length;
1228 unsigned int stream_id;
Andy Greenaa775fd2015-12-26 08:56:58 +08001229 enum http2_hpack_state hpack;
1230 enum http2_hpack_type hpack_type;
1231 unsigned int header_index;
1232 unsigned int hpack_len;
1233 unsigned int hpack_e_dep;
1234 int tx_credit;
1235 unsigned int my_stream_id;
1236 unsigned int child_count;
1237 int my_priority;
Andy Green67112662016-01-11 11:34:01 +08001238
Andy Green91b05892014-10-17 08:38:44 +08001239 unsigned int END_STREAM:1;
1240 unsigned int END_HEADERS:1;
Andy Green1cea5812014-10-19 07:36:20 +08001241 unsigned int send_END_STREAM:1;
Andy Green7df53c52014-10-22 15:37:28 +08001242 unsigned int GOING_AWAY;
1243 unsigned int requested_POLLOUT:1;
Andy Green97ee57f2014-10-29 09:39:08 +08001244 unsigned int waiting_tx_credit:1;
Andy Greenecc2e722014-10-09 16:57:47 +08001245 unsigned int huff:1;
1246 unsigned int value:1;
Andy Green40110e82015-12-14 08:52:03 +08001247
Andy Greenaa775fd2015-12-26 08:56:58 +08001248 unsigned short round_robin_POLLOUT;
1249 unsigned short count_POLLOUT_children;
1250 unsigned short hpack_pos;
1251
1252 unsigned char type;
1253 unsigned char flags;
1254 unsigned char frame_state;
1255 unsigned char padding;
1256 unsigned char hpack_m;
Andy Green024eb6c2014-10-08 12:00:53 +08001257 unsigned char initialized;
Andy Green024eb6c2014-10-08 12:00:53 +08001258};
1259
Andy Green7df53c52014-10-22 15:37:28 +08001260#define HTTP2_IS_TOPLEVEL_WSI(wsi) (!wsi->u.http2.parent_wsi)
Andy Green024eb6c2014-10-08 12:00:53 +08001261
1262#endif
1263
Andy Green623a98d2013-01-21 11:04:23 +08001264struct _lws_websocket_related {
Andy Green2c218e72016-02-15 12:37:04 +08001265 /* cheapest way to deal with ah overlap with ws union transition */
Andy Green26d42492016-02-24 12:40:21 +08001266 struct _lws_header_related hdr;
Andy Green67112662016-01-11 11:34:01 +08001267 char *rx_ubuf;
Andy Green4019aab2016-01-30 11:43:10 +08001268 unsigned int rx_ubuf_alloc;
Andy Green67112662016-01-11 11:34:01 +08001269 struct lws *rx_draining_ext_list;
1270 struct lws *tx_draining_ext_list;
Andy Greenf32d2502016-07-15 13:41:38 +08001271 time_t time_next_ping_check;
Andy Greende132b92015-12-25 13:48:20 +08001272 size_t rx_packet_length;
Andy Green67112662016-01-11 11:34:01 +08001273 unsigned int rx_ubuf_head;
1274 unsigned char mask[4];
Andy Green1fb95e82015-12-26 17:20:34 +08001275 /* Also used for close content... control opcode == < 128 */
Andy Green67112662016-01-11 11:34:01 +08001276 unsigned char ping_payload_buf[128 - 3 + LWS_PRE];
Andy Green1fb95e82015-12-26 17:20:34 +08001277
Andy Greenaa775fd2015-12-26 08:56:58 +08001278 unsigned char ping_payload_len;
Andy Green67112662016-01-11 11:34:01 +08001279 unsigned char mask_idx;
Andy Green623a98d2013-01-21 11:04:23 +08001280 unsigned char opcode;
Andy Green623a98d2013-01-21 11:04:23 +08001281 unsigned char rsv;
Andy Green67112662016-01-11 11:34:01 +08001282 unsigned char rsv_first_msg;
Andy Green1fb95e82015-12-26 17:20:34 +08001283 /* zero if no info, or length including 2-byte close code */
1284 unsigned char close_in_ping_buffer_len;
Andy Green0c7b38b2015-12-29 09:46:03 +08001285 unsigned char utf8;
Andy Green67112662016-01-11 11:34:01 +08001286 unsigned char stashed_write_type;
1287 unsigned char tx_draining_stashed_wp;
Andy Greende132b92015-12-25 13:48:20 +08001288
1289 unsigned int final:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001290 unsigned int frame_is_binary:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001291 unsigned int all_zero_nonce:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001292 unsigned int this_frame_masked:1;
Andy Green1f4267b2013-10-17 08:09:19 +08001293 unsigned int inside_frame:1; /* next write will be more of frame */
1294 unsigned int clean_buffer:1; /* buffer not rewritten by extension */
Andy Green40d5abc2015-04-17 20:29:58 +08001295 unsigned int payload_is_close:1; /* process as PONG, but it is close */
Andy Greenba38a7e2015-12-25 13:14:09 +08001296 unsigned int ping_pending_flag:1;
Andy Green977734e2015-12-28 16:51:08 +08001297 unsigned int continuation_possible:1;
Andy Green91d624e2015-12-28 17:05:40 +08001298 unsigned int owed_a_fin:1;
Andy Green9b81d3c2015-12-29 12:28:48 +08001299 unsigned int check_utf8:1;
1300 unsigned int defeat_check_utf8:1;
Andy Green67112662016-01-11 11:34:01 +08001301 unsigned int pmce_compressed_message:1;
1302 unsigned int stashed_write_pending:1;
1303 unsigned int rx_draining_ext:1;
1304 unsigned int tx_draining_ext:1;
Andy Greenf32d2502016-07-15 13:41:38 +08001305 unsigned int send_check_ping:1;
Andy Green623a98d2013-01-21 11:04:23 +08001306};
1307
Andy Green6a8099b2016-02-21 21:25:48 +08001308#ifdef LWS_WITH_CGI
1309
1310/* wsi who is master of the cgi points to an lws_cgi */
1311
1312struct lws_cgi {
1313 struct lws_cgi *cgi_list;
1314 struct lws *stdwsi[3]; /* points to the associated stdin/out/err wsis */
1315 struct lws *wsi; /* owner */
Andy Greenf5efa742016-04-13 11:42:53 +08001316 unsigned long content_length;
1317 unsigned long content_length_seen;
Andy Green6a8099b2016-02-21 21:25:48 +08001318 int pipe_fds[3][2];
1319 int pid;
1320
1321 unsigned int being_closed:1;
Andy Greena0c4a0e2017-01-03 08:18:37 +08001322
1323 unsigned char chunked_grace;
Andy Green6a8099b2016-02-21 21:25:48 +08001324};
Andy Green5c8906e2016-03-13 16:44:19 +08001325#endif
Andy Greenc3c2d6d2016-03-09 07:41:59 +08001326
Andy Green5c8906e2016-03-13 16:44:19 +08001327signed char char_to_hex(const char c);
1328
1329#ifndef LWS_NO_CLIENT
1330enum lws_chunk_parser {
1331 ELCP_HEX,
1332 ELCP_CR,
1333 ELCP_CONTENT,
1334 ELCP_POST_CR,
1335 ELCP_POST_LF,
1336};
Andy Green6a8099b2016-02-21 21:25:48 +08001337#endif
1338
Andy Green1e5a9ad2016-03-20 11:59:53 +08001339struct lws_rewrite;
1340
Andy Green2f0bc932016-04-15 12:00:23 +08001341#ifdef LWS_WITH_ACCESS_LOG
1342struct lws_access_log {
1343 char *header_log;
1344 char *user_agent;
1345 unsigned long sent;
1346 int response;
1347};
1348#endif
1349
Andy Green4b85c1d2015-12-04 11:08:32 +08001350struct lws {
Andy Green623a98d2013-01-21 11:04:23 +08001351
Andy Greenaa775fd2015-12-26 08:56:58 +08001352 /* structs */
1353 /* members with mutually exclusive lifetimes are unionized */
1354
1355 union u {
1356 struct _lws_http_mode_related http;
1357#ifdef LWS_USE_HTTP2
1358 struct _lws_http2_related http2;
1359#endif
1360 struct _lws_header_related hdr;
1361 struct _lws_websocket_related ws;
1362 } u;
1363
Andy Green623a98d2013-01-21 11:04:23 +08001364 /* lifetime members */
1365
Andy Green86ed65f2016-02-14 09:27:41 +08001366#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
Andy Green40110e82015-12-14 08:52:03 +08001367 struct lws_io_watcher w_read;
Andy Green86ed65f2016-02-14 09:27:41 +08001368#endif
1369#if defined(LWS_USE_LIBEV)
Andy Green40110e82015-12-14 08:52:03 +08001370 struct lws_io_watcher w_write;
Andy Green86ed65f2016-02-14 09:27:41 +08001371#endif
Andy Greende132b92015-12-25 13:48:20 +08001372 time_t pending_timeout_limit;
Andy Greenaa775fd2015-12-26 08:56:58 +08001373
1374 /* pointers */
1375
Andy Green40110e82015-12-14 08:52:03 +08001376 struct lws_context *context;
Andy Greend526c502016-03-28 10:10:43 +08001377 struct lws_vhost *vhost;
Andy Green494418a2016-03-02 09:17:22 +08001378 struct lws *parent; /* points to parent, if any */
1379 struct lws *child_list; /* points to first child */
1380 struct lws *sibling_list; /* subsequent children at same level */
Andy Green6a8099b2016-02-21 21:25:48 +08001381#ifdef LWS_WITH_CGI
1382 struct lws_cgi *cgi; /* wsi being cgi master have one of these */
Andy Green6a8099b2016-02-21 21:25:48 +08001383#endif
Andy Green4b85c1d2015-12-04 11:08:32 +08001384 const struct lws_protocols *protocol;
Andy Green4714cf02016-04-16 08:40:35 +08001385 struct lws **same_vh_protocol_prev, *same_vh_protocol_next;
Andy Greend738f842016-01-19 04:32:14 +08001386 struct lws *timeout_list;
1387 struct lws **timeout_list_prev;
Andy Green2f0bc932016-04-15 12:00:23 +08001388#ifdef LWS_WITH_ACCESS_LOG
1389 struct lws_access_log access_log;
1390#endif
Andy Greende132b92015-12-25 13:48:20 +08001391 void *user_space;
1392 /* rxflow handling */
1393 unsigned char *rxflow_buffer;
1394 /* truncated send handling */
1395 unsigned char *trunc_alloc; /* non-NULL means buffering in progress */
Andy Green7acf76c2016-07-23 14:18:25 +08001396
1397#if defined (LWS_WITH_ESP8266)
1398 void *premature_rx;
1399 unsigned short prem_rx_size, prem_rx_pos;
1400#endif
1401
Andy Green3182ece2013-01-20 17:08:31 +08001402#ifndef LWS_NO_EXTENSIONS
Andy Greend2ac22c2015-12-11 10:45:35 +08001403 const struct lws_extension *active_extensions[LWS_MAX_EXTENSIONS_ACTIVE];
Andy Green67112662016-01-11 11:34:01 +08001404 void *act_ext_user[LWS_MAX_EXTENSIONS_ACTIVE];
Andy Green3182ece2013-01-20 17:08:31 +08001405#endif
Andy Greende132b92015-12-25 13:48:20 +08001406#ifdef LWS_OPENSSL_SUPPORT
1407 SSL *ssl;
1408 BIO *client_bio;
1409 struct lws *pending_read_list_prev, *pending_read_list_next;
1410#endif
Andy Green1a138852016-03-20 11:55:25 +08001411#ifdef LWS_WITH_HTTP_PROXY
Andy Green1e5a9ad2016-03-20 11:59:53 +08001412 struct lws_rewrite *rw;
1413#endif
Andy Greenaa775fd2015-12-26 08:56:58 +08001414#ifdef LWS_LATENCY
1415 unsigned long action_start;
1416 unsigned long latency_start;
1417#endif
Andy Greenbe8d7912017-02-27 12:55:56 +08001418 lws_sock_file_fd_type desc; /* .filefd / .sockfd */
Andy Greende132b92015-12-25 13:48:20 +08001419
Andy Greenaa775fd2015-12-26 08:56:58 +08001420 /* ints */
Andy Greendfb23042013-01-17 12:26:48 +08001421 int position_in_fds_table;
Andy Green024eb6c2014-10-08 12:00:53 +08001422 int rxflow_len;
1423 int rxflow_pos;
Andy Green54806b12015-12-17 17:03:59 +08001424 unsigned int trunc_alloc_len; /* size of malloc */
1425 unsigned int trunc_offset; /* where we are in terms of spilling */
1426 unsigned int trunc_len; /* how much is buffered */
Andy Green5c8906e2016-03-13 16:44:19 +08001427#ifndef LWS_NO_CLIENT
1428 int chunk_remaining;
1429#endif
Andy Green42e8b182016-04-22 08:53:49 +08001430 unsigned int cache_secs;
Andy Green2764eba2013-12-09 14:16:17 +08001431
Andy Greende132b92015-12-25 13:48:20 +08001432 unsigned int hdr_parsing_completed:1;
Andy Green22d6f392016-04-10 09:33:54 +08001433 unsigned int http2_substream:1;
Andy Greend526c502016-03-28 10:10:43 +08001434 unsigned int listener:1;
Andy Greende132b92015-12-25 13:48:20 +08001435 unsigned int user_space_externally_allocated:1;
1436 unsigned int socket_is_permanently_unusable:1;
1437 unsigned int rxflow_change_to:2;
Andy Green83af28a2016-02-28 10:55:31 +08001438 unsigned int more_rx_waiting:1; /* has to live here since ah may stick to end */
Andy Green98061402016-04-15 14:01:29 +08001439 unsigned int conn_stat_done:1;
Andy Green42e8b182016-04-22 08:53:49 +08001440 unsigned int cache_reuse:1;
1441 unsigned int cache_revalidate:1;
1442 unsigned int cache_intermediaries:1;
Andy Green2f216282016-04-23 09:26:11 +08001443 unsigned int favoured_pollin:1;
Andy Green7a2fc442016-05-19 15:28:31 +08001444 unsigned int sending_chunked:1;
Andy Green81c221e2016-07-01 08:54:39 +08001445 unsigned int already_did_cce:1;
Andy Green723b3f12016-09-06 15:36:51 +08001446 unsigned int told_user_closed:1;
Andy Greenbe9fb912016-12-16 07:37:43 +08001447 unsigned int :1;
Andy Green7acf76c2016-07-23 14:18:25 +08001448#if defined(LWS_WITH_ESP8266)
1449 unsigned int pending_send_completion:3;
1450 unsigned int close_is_pending_send_completion:1;
1451#endif
Andy Green2f0bc932016-04-15 12:00:23 +08001452#ifdef LWS_WITH_ACCESS_LOG
1453 unsigned int access_log_pending:1;
1454#endif
Andy Greena661ee52016-02-29 13:18:30 +08001455#ifndef LWS_NO_CLIENT
1456 unsigned int do_ws:1; /* whether we are doing http or ws flow */
Andy Green5c8906e2016-03-13 16:44:19 +08001457 unsigned int chunked:1; /* if the clientside connection is chunked */
Andy Green1e5a9ad2016-03-20 11:59:53 +08001458 unsigned int client_rx_avail:1;
Andy Green95fff472016-08-08 21:54:30 +08001459 unsigned int client_http_body_pending:1;
Andy Green1a138852016-03-20 11:55:25 +08001460#endif
1461#ifdef LWS_WITH_HTTP_PROXY
Andy Green1e5a9ad2016-03-20 11:59:53 +08001462 unsigned int perform_rewrite:1;
Andy Greena661ee52016-02-29 13:18:30 +08001463#endif
Andy Greende132b92015-12-25 13:48:20 +08001464#ifndef LWS_NO_EXTENSIONS
1465 unsigned int extension_data_pending:1;
1466#endif
1467#ifdef LWS_OPENSSL_SUPPORT
Namowen40d37e22017-02-18 07:51:27 +08001468 unsigned int use_ssl:4;
Andy Greende132b92015-12-25 13:48:20 +08001469#endif
Andy Greenaa775fd2015-12-26 08:56:58 +08001470#ifdef _WIN32
1471 unsigned int sock_send_blocking:1;
1472#endif
Andy Green0f9904f2016-03-17 15:26:49 +08001473#ifdef LWS_OPENSSL_SUPPORT
1474 unsigned int redirect_to_https:1;
1475#endif
Andy Greende132b92015-12-25 13:48:20 +08001476
Andy Green3e0006c2017-02-22 06:55:12 +08001477#ifndef LWS_NO_CLIENT
1478 unsigned short c_port;
1479#endif
1480
Andy Greenaa775fd2015-12-26 08:56:58 +08001481 /* chars */
Andy Greende132b92015-12-25 13:48:20 +08001482#ifndef LWS_NO_EXTENSIONS
Andy Green67112662016-01-11 11:34:01 +08001483 unsigned char count_act_ext;
Andy Greende132b92015-12-25 13:48:20 +08001484#endif
1485 unsigned char ietf_spec_revision;
1486 char mode; /* enum connection_mode */
1487 char state; /* enum lws_connection_states */
Andy Green8c1f6022016-01-26 20:56:56 +08001488 char state_pre_close;
Andy Greende132b92015-12-25 13:48:20 +08001489 char lws_rx_parse_state; /* enum lws_rx_parse_state */
1490 char rx_frame_type; /* enum lws_write_protocol */
1491 char pending_timeout; /* enum pending_timeout */
Andy Greend738f842016-01-19 04:32:14 +08001492 char pps; /* enum lws_pending_protocol_send */
Andy Greend3a55052016-01-19 03:34:24 +08001493 char tsi; /* thread service index we belong to */
Andy Green7a2fc442016-05-19 15:28:31 +08001494 char protocol_interpret_idx;
Andy Green3e0006c2017-02-22 06:55:12 +08001495 char redirects;
Andy Green6a8099b2016-02-21 21:25:48 +08001496#ifdef LWS_WITH_CGI
1497 char cgi_channel; /* which of stdin/out/err */
Andy Greenc3c2d6d2016-03-09 07:41:59 +08001498 char hdr_state;
Andy Green6a8099b2016-02-21 21:25:48 +08001499#endif
Andy Green5c8906e2016-03-13 16:44:19 +08001500#ifndef LWS_NO_CLIENT
1501 char chunk_parser; /* enum lws_chunk_parser */
1502#endif
Andy Green0a4da2c2016-05-10 10:16:52 +08001503#if defined(LWS_WITH_CGI) || !defined(LWS_NO_CLIENT)
1504 char reason_bf; /* internal writeable callback reason bitfield */
1505#endif
Andy Green7c212cc2010-11-08 20:20:42 +00001506};
1507
Andy Green3d67f512014-04-03 07:29:50 +08001508LWS_EXTERN int log_level;
1509
Andy Greenc7939442016-03-12 08:18:58 +08001510LWS_EXTERN int
Andy Green53bed782016-11-16 08:59:47 +08001511lws_socket_bind(struct lws_vhost *vhost, lws_sockfd_type sockfd, int port,
Andy Greenc7939442016-03-12 08:18:58 +08001512 const char *iface);
1513
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001514LWS_EXTERN void
Andy Green6b5de702015-12-15 21:15:58 +08001515lws_close_free_wsi(struct lws *wsi, enum lws_close_status);
Andy Green508946c2013-02-12 10:19:08 +08001516
Andy Green34f3dd22014-04-03 07:42:50 +08001517LWS_EXTERN int
Andy Green6b5de702015-12-15 21:15:58 +08001518remove_wsi_socket_from_fds(struct lws *wsi);
Andy Green024eb6c2014-10-08 12:00:53 +08001519LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001520lws_rxflow_cache(struct lws *wsi, unsigned char *buf, int n, int len);
Andy Green34f3dd22014-04-03 07:42:50 +08001521
Andy Greend636e352013-01-29 12:36:17 +08001522#ifndef LWS_LATENCY
Andy Greendc8a3a82015-12-06 09:15:27 +08001523static inline void
1524lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1525 int ret, int completion) {
Andy Green40110e82015-12-14 08:52:03 +08001526 do {
1527 (void)context; (void)wsi; (void)action; (void)ret;
1528 (void)completion;
Andy Greendc8a3a82015-12-06 09:15:27 +08001529 } while (0);
1530}
1531static inline void
1532lws_latency_pre(struct lws_context *context, struct lws *wsi) {
1533 do { (void)context; (void)wsi; } while (0);
1534}
Andy Greend636e352013-01-29 12:36:17 +08001535#else
1536#define lws_latency_pre(_context, _wsi) lws_latency(_context, _wsi, NULL, 0, 0)
1537extern void
Andy Greendc8a3a82015-12-06 09:15:27 +08001538lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1539 int ret, int completion);
Andy Greend636e352013-01-29 12:36:17 +08001540#endif
1541
Andy Greendc8a3a82015-12-06 09:15:27 +08001542LWS_EXTERN void
Andy Green6b5de702015-12-15 21:15:58 +08001543lws_set_protocol_write_pending(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001544 enum lws_pending_protocol_send pend);
Andy Greene99a83c2016-01-20 16:56:06 +08001545LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001546lws_client_rx_sm(struct lws *wsi, unsigned char c);
Andy Green4739e5c2011-01-22 12:51:57 +00001547
Andy Greene99a83c2016-01-20 16:56:06 +08001548LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001549lws_parse(struct lws *wsi, unsigned char c);
Andy Greenb45993c2010-12-18 15:13:50 +00001550
Andy Greene99a83c2016-01-20 16:56:06 +08001551LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001552lws_http_action(struct lws *wsi);
Andy Green024eb6c2014-10-08 12:00:53 +08001553
1554LWS_EXTERN int
Andy Greendf736162011-01-18 15:39:02 +00001555lws_b64_selftest(void);
Andy Greenbfb051f2011-02-09 08:49:14 +00001556
Andy Green2c218e72016-02-15 12:37:04 +08001557LWS_EXTERN int
Andy Green2c218e72016-02-15 12:37:04 +08001558lws_service_flag_pending(struct lws_context *context, int tsi);
1559
Andy Green0aed7a02017-02-22 09:50:11 +08001560#if defined(_WIN32) || defined(LWS_WITH_ESP8266)
Andy Green4b85c1d2015-12-04 11:08:32 +08001561LWS_EXTERN struct lws *
Andy Green1fa76852015-12-14 11:17:16 +08001562wsi_from_fd(const struct lws_context *context, lws_sockfd_type fd);
Andy Green0d338332011-02-12 11:57:43 +00001563
Andy Green40110e82015-12-14 08:52:03 +08001564LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001565insert_wsi(struct lws_context *context, struct lws *wsi);
Bud Davis229bfec2015-01-30 10:13:01 +08001566
1567LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001568delete_from_fd(struct lws_context *context, lws_sockfd_type fd);
Bud Davis229bfec2015-01-30 10:13:01 +08001569#else
Andy Green40110e82015-12-14 08:52:03 +08001570#define wsi_from_fd(A,B) A->lws_lookup[B]
Andy Greenbe8d7912017-02-27 12:55:56 +08001571#define insert_wsi(A,B) assert(A->lws_lookup[B->desc.sockfd] == 0); A->lws_lookup[B->desc.sockfd]=B
Bud Davis229bfec2015-01-30 10:13:01 +08001572#define delete_from_fd(A,B) A->lws_lookup[B]=0
1573#endif
1574
Andy Greene99a83c2016-01-20 16:56:06 +08001575LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001576insert_wsi_socket_into_fds(struct lws_context *context, struct lws *wsi);
Darin Willitsc19456f2011-02-14 17:52:39 +00001577
Andy Greene99a83c2016-01-20 16:56:06 +08001578LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001579lws_issue_raw(struct lws *wsi, unsigned char *buf, size_t len);
Andy Greend44bf7f2011-03-06 10:29:38 +00001580
Andy Green95a7b5d2011-03-06 10:29:39 +00001581
Andy Greene99a83c2016-01-20 16:56:06 +08001582LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001583lws_service_timeout_check(struct lws *wsi, unsigned int sec);
Andy Greena41314f2011-05-23 10:00:03 +01001584
Andy Green3d6a1e12017-02-21 23:38:40 +08001585LWS_EXTERN void
1586lws_remove_from_timeout_list(struct lws *wsi);
1587
Andy Greene99a83c2016-01-20 16:56:06 +08001588LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001589lws_client_connect_2(struct lws *wsi);
Andy Greena41314f2011-05-23 10:00:03 +01001590
Andy Greene99a83c2016-01-20 16:56:06 +08001591LWS_VISIBLE struct lws * LWS_WARN_UNUSED_RESULT
Andy Green0db9b9f2017-02-21 22:59:00 +08001592lws_client_reset(struct lws **wsi, int ssl, const char *address, int port,
Andy Greene99a83c2016-01-20 16:56:06 +08001593 const char *path, const char *host);
Andy Green809d69a2016-01-14 11:37:56 +08001594
Andy Greene99a83c2016-01-20 16:56:06 +08001595LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
Andy Greend526c502016-03-28 10:10:43 +08001596lws_create_new_server_wsi(struct lws_vhost *vhost);
Andy Greena41314f2011-05-23 10:00:03 +01001597
Andy Greene99a83c2016-01-20 16:56:06 +08001598LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001599lws_generate_client_handshake(struct lws *wsi, char *pkt);
Andy Greena41314f2011-05-23 10:00:03 +01001600
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001601LWS_EXTERN int
Andy Green6b5de702015-12-15 21:15:58 +08001602lws_handle_POLLOUT_event(struct lws *wsi, struct lws_pollfd *pollfd);
Andy Green91b05892014-10-17 08:38:44 +08001603
Andy Green2d8d35a2016-02-29 14:19:16 +08001604LWS_EXTERN struct lws *
1605lws_client_connect_via_info2(struct lws *wsi);
1606
Andy Greencdb9bf92014-04-12 10:07:02 +08001607/*
1608 * EXTENSIONS
1609 */
1610
Andy Green3182ece2013-01-20 17:08:31 +08001611#ifndef LWS_NO_EXTENSIONS
Andy Greencdb9bf92014-04-12 10:07:02 +08001612LWS_VISIBLE void
1613lws_context_init_extensions(struct lws_context_creation_info *info,
Andy Greendc8a3a82015-12-06 09:15:27 +08001614 struct lws_context *context);
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001615LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001616lws_any_extension_handled(struct lws *wsi, enum lws_extension_callback_reasons r,
Andy Green6ee372f2012-04-09 15:09:01 +08001617 void *v, size_t len);
Andy Greena41314f2011-05-23 10:00:03 +01001618
Andy Green2c24ec02014-04-02 19:45:42 +08001619LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001620lws_ext_cb_active(struct lws *wsi, int reason, void *buf, int len);
Andy Green2c24ec02014-04-02 19:45:42 +08001621LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001622lws_ext_cb_all_exts(struct lws_context *context, struct lws *wsi, int reason,
1623 void *arg, int len);
Andy Green67112662016-01-11 11:34:01 +08001624
Andy Green2c24ec02014-04-02 19:45:42 +08001625#else
Andy Green6b5de702015-12-15 21:15:58 +08001626#define lws_any_extension_handled(_a, _b, _c, _d) (0)
Andy Green67112662016-01-11 11:34:01 +08001627#define lws_ext_cb_active(_a, _b, _c, _d) (0)
Andy Green54806b12015-12-17 17:03:59 +08001628#define lws_ext_cb_all_exts(_a, _b, _c, _d, _e) (0)
Andy Greenb49a9952014-04-03 10:11:04 +08001629#define lws_issue_raw_ext_access lws_issue_raw
Andy Greencdb9bf92014-04-12 10:07:02 +08001630#define lws_context_init_extensions(_a, _b)
Andy Green3182ece2013-01-20 17:08:31 +08001631#endif
Andy Greena41314f2011-05-23 10:00:03 +01001632
Andy Greene99a83c2016-01-20 16:56:06 +08001633LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001634lws_client_interpret_server_handshake(struct lws *wsi);
Andy Greena41314f2011-05-23 10:00:03 +01001635
Andy Greene99a83c2016-01-20 16:56:06 +08001636LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001637lws_rx_sm(struct lws *wsi, unsigned char c);
Andy Greena41314f2011-05-23 10:00:03 +01001638
Andy Greenc15714f2016-09-10 04:43:07 +08001639LWS_EXTERN int
Alex Hultman599cad92016-03-17 09:34:15 +08001640lws_payload_until_length_exhausted(struct lws *wsi, unsigned char **buf, size_t *len);
1641
Andy Greene99a83c2016-01-20 16:56:06 +08001642LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001643lws_issue_raw_ext_access(struct lws *wsi, unsigned char *buf, size_t len);
Andy Green09226502011-05-28 10:19:19 +01001644
Andy Green44c11612014-11-08 11:18:47 +08001645LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001646lws_union_transition(struct lws *wsi, enum connection_mode mode);
Andy Green44c11612014-11-08 11:18:47 +08001647
Andy Greene99a83c2016-01-20 16:56:06 +08001648LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Denis Osvald034e5142015-12-21 18:06:38 +01001649user_callback_handle_rxflow(lws_callback_function, struct lws *wsi,
Andy Green00c6d152015-12-17 07:54:44 +08001650 enum lws_callback_reasons reason, void *user,
1651 void *in, size_t len);
Andy Green024eb6c2014-10-08 12:00:53 +08001652#ifdef LWS_USE_HTTP2
Andy Green4b85c1d2015-12-04 11:08:32 +08001653LWS_EXTERN struct lws *lws_http2_get_network_wsi(struct lws *wsi);
1654struct lws * lws_http2_get_nth_child(struct lws *wsi, int n);
Andy Green024eb6c2014-10-08 12:00:53 +08001655LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001656lws_http2_interpret_settings_payload(struct http2_settings *settings,
1657 unsigned char *buf, int len);
Andy Green024eb6c2014-10-08 12:00:53 +08001658LWS_EXTERN void lws_http2_init(struct http2_settings *settings);
1659LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001660lws_http2_parser(struct lws *wsi, unsigned char c);
Andy Greendc8a3a82015-12-06 09:15:27 +08001661LWS_EXTERN int lws_http2_do_pps_send(struct lws_context *context,
1662 struct lws *wsi);
1663LWS_EXTERN int lws_http2_frame_write(struct lws *wsi, int type, int flags,
1664 unsigned int sid, unsigned int len,
1665 unsigned char *buf);
Andy Green4b85c1d2015-12-04 11:08:32 +08001666LWS_EXTERN struct lws *
1667lws_http2_wsi_from_id(struct lws *wsi, unsigned int sid);
Andy Green11c05bf2015-12-16 18:19:08 +08001668LWS_EXTERN int lws_hpack_interpret(struct lws *wsi,
Andy Green2add6342014-10-12 08:38:16 +08001669 unsigned char c);
Andy Green917f43a2014-10-12 14:31:47 +08001670LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001671lws_add_http2_header_by_name(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001672 const unsigned char *name,
1673 const unsigned char *value, int length,
1674 unsigned char **p, unsigned char *end);
Andy Green917f43a2014-10-12 14:31:47 +08001675LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001676lws_add_http2_header_by_token(struct lws *wsi,
Andy Green917f43a2014-10-12 14:31:47 +08001677 enum lws_token_indexes token,
Andy Greendc8a3a82015-12-06 09:15:27 +08001678 const unsigned char *value, int length,
1679 unsigned char **p, unsigned char *end);
Andy Green917f43a2014-10-12 14:31:47 +08001680LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001681lws_add_http2_header_status(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001682 unsigned int code, unsigned char **p,
Andy Green917f43a2014-10-12 14:31:47 +08001683 unsigned char *end);
Andy Green7df53c52014-10-22 15:37:28 +08001684LWS_EXTERN
Andy Green4b85c1d2015-12-04 11:08:32 +08001685void lws_http2_configure_if_upgraded(struct lws *wsi);
Andy Green7df53c52014-10-22 15:37:28 +08001686#else
1687#define lws_http2_configure_if_upgraded(x)
Andy Green024eb6c2014-10-08 12:00:53 +08001688#endif
Andy Green706961d2013-01-17 16:50:35 +08001689
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001690LWS_EXTERN int
Andy Greend526c502016-03-28 10:10:43 +08001691lws_plat_set_socket_options(struct lws_vhost *vhost, lws_sockfd_type fd);
Andy Greena690cd02013-02-09 12:25:31 +08001692
Andy Piper6ff571f2016-06-28 19:01:20 +08001693LWS_EXTERN int
1694lws_plat_check_connection_error(struct lws *wsi);
1695
Andy Greene99a83c2016-01-20 16:56:06 +08001696LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greene3d141d2016-02-27 11:42:22 +08001697lws_header_table_attach(struct lws *wsi, int autoservice);
Andy Green16ab3182013-02-10 18:02:31 +08001698
Andrew Canaday37718812014-11-07 11:20:59 +08001699LWS_EXTERN int
Andy Greene3d141d2016-02-27 11:42:22 +08001700lws_header_table_detach(struct lws *wsi, int autoservice);
Andrew Canaday37718812014-11-07 11:20:59 +08001701
Andy Green4019aab2016-01-30 11:43:10 +08001702LWS_EXTERN void
Andy Greene3d141d2016-02-27 11:42:22 +08001703lws_header_table_reset(struct lws *wsi, int autoservice);
Andy Green31c51302017-02-09 15:25:01 +08001704void
1705_lws_header_table_reset(struct allocated_headers *ah);
Andy Green4019aab2016-01-30 11:43:10 +08001706
Andy Greene99a83c2016-01-20 16:56:06 +08001707LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001708lws_hdr_simple_ptr(struct lws *wsi, enum lws_token_indexes h);
Andy Green16ab3182013-02-10 18:02:31 +08001709
Andy Greene99a83c2016-01-20 16:56:06 +08001710LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green11c05bf2015-12-16 18:19:08 +08001711lws_hdr_simple_create(struct lws *wsi, enum lws_token_indexes h, const char *s);
Andy Greenb5b23192013-02-11 17:13:32 +08001712
Andy Green16146cd2016-04-23 07:53:46 +08001713LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001714lws_ensure_user_space(struct lws *wsi);
Andy Green2af4d5b2013-02-18 16:30:10 +08001715
Andy Green158e8042014-04-02 14:25:10 +08001716LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001717lws_change_pollfd(struct lws *wsi, int _and, int _or);
Andy Green91f19d82013-12-21 11:18:34 +08001718
Andy Greenb5b23192013-02-11 17:13:32 +08001719#ifndef LWS_NO_SERVER
Andy Greene38031a2014-04-03 08:24:29 +08001720int lws_context_init_server(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08001721 struct lws_vhost *vhost);
1722LWS_EXTERN struct lws_vhost *
1723lws_select_vhost(struct lws_context *context, int port, const char *servername);
Andy Greend7340c12014-04-10 14:08:10 +08001724LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001725handshake_0405(struct lws_context *context, struct lws *wsi);
Andy Greene99a83c2016-01-20 16:56:06 +08001726LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green67112662016-01-11 11:34:01 +08001727lws_interpret_incoming_packet(struct lws *wsi, unsigned char **buf, size_t len);
Andy Greencdb9bf92014-04-12 10:07:02 +08001728LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001729lws_server_get_canonical_hostname(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001730 struct lws_context_creation_info *info);
Andy Greene38031a2014-04-03 08:24:29 +08001731#else
1732#define lws_context_init_server(_a, _b) (0)
Andy Green3ef579b2015-12-04 09:23:56 +08001733#define lws_interpret_incoming_packet(_a, _b, _c) (0)
Andy Greencdb9bf92014-04-12 10:07:02 +08001734#define lws_server_get_canonical_hostname(_a, _b)
Andy Greenb5b23192013-02-11 17:13:32 +08001735#endif
1736
1737#ifndef LWS_NO_DAEMONIZE
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001738LWS_EXTERN int get_daemonize_pid();
Andy Greencdb9bf92014-04-12 10:07:02 +08001739#else
1740#define get_daemonize_pid() (0)
Andy Greenb5b23192013-02-11 17:13:32 +08001741#endif
1742
Andy Green0aed7a02017-02-22 09:50:11 +08001743#if !defined(LWS_WITH_ESP8266)
Andy Greene99a83c2016-01-20 16:56:06 +08001744LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green2dc7dde2016-06-03 21:19:40 +08001745interface_to_sa(struct lws_vhost *vh, const char *ifname,
Andy Greendc8a3a82015-12-06 09:15:27 +08001746 struct sockaddr_in *addr, size_t addrlen);
Andy Green2cd30742015-11-02 13:10:33 +08001747#endif
Andy Greenb25b85f2014-04-03 23:34:09 +08001748LWS_EXTERN void lwsl_emit_stderr(int level, const char *line);
1749
Andy Green1a308e42014-04-08 07:26:30 +01001750enum lws_ssl_capable_status {
1751 LWS_SSL_CAPABLE_ERROR = -1,
1752 LWS_SSL_CAPABLE_MORE_SERVICE = -2,
1753};
1754
Darin Willitsc19456f2011-02-14 17:52:39 +00001755#ifndef LWS_OPENSSL_SUPPORT
Andy Greencdb9bf92014-04-12 10:07:02 +08001756#define LWS_SSL_ENABLED(context) (0)
Andy Greenc57037a2014-04-03 10:17:00 +08001757#define lws_context_init_server_ssl(_a, _b) (0)
1758#define lws_ssl_destroy(_a)
Andy Green2eedea92014-04-03 14:33:48 +08001759#define lws_context_init_http2_ssl(_a)
Andy Green02138122014-04-06 06:26:35 +01001760#define lws_ssl_capable_read lws_ssl_capable_read_no_ssl
1761#define lws_ssl_capable_write lws_ssl_capable_write_no_ssl
=?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?=4c0ba022015-08-19 16:23:33 +02001762#define lws_ssl_pending lws_ssl_pending_no_ssl
Andy Green8c1f6022016-01-26 20:56:56 +08001763#define lws_server_socket_service_ssl(_b, _c) (0)
Andy Greencdb9bf92014-04-12 10:07:02 +08001764#define lws_ssl_close(_a) (0)
1765#define lws_ssl_context_destroy(_a)
Andy Greend526c502016-03-28 10:10:43 +08001766#define lws_ssl_SSL_CTX_destroy(_a)
Andy Green6b5de702015-12-15 21:15:58 +08001767#define lws_ssl_remove_wsi_from_buffered_list(_a)
Andy Greend526c502016-03-28 10:10:43 +08001768#define lws_context_init_ssl_library(_a)
Andy Greenb5b23192013-02-11 17:13:32 +08001769#else
Andy Greencdb9bf92014-04-12 10:07:02 +08001770#define LWS_SSL_ENABLED(context) (context->use_ssl)
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001771LWS_EXTERN int openssl_websocket_private_data_index;
Andy Greene99a83c2016-01-20 16:56:06 +08001772LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001773lws_ssl_capable_read(struct lws *wsi, unsigned char *buf, int len);
Andy Greene99a83c2016-01-20 16:56:06 +08001774LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001775lws_ssl_capable_write(struct lws *wsi, unsigned char *buf, int len);
Andy Greene99a83c2016-01-20 16:56:06 +08001776LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001777lws_ssl_pending(struct lws *wsi);
Andy Greend526c502016-03-28 10:10:43 +08001778LWS_EXTERN int
1779lws_context_init_ssl_library(struct lws_context_creation_info *info);
Andy Greene99a83c2016-01-20 16:56:06 +08001780LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green8c1f6022016-01-26 20:56:56 +08001781lws_server_socket_service_ssl(struct lws *new_wsi, lws_sockfd_type accept_fd);
Andy Greencdb9bf92014-04-12 10:07:02 +08001782LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001783lws_ssl_close(struct lws *wsi);
Andy Greencdb9bf92014-04-12 10:07:02 +08001784LWS_EXTERN void
Andy Greend526c502016-03-28 10:10:43 +08001785lws_ssl_SSL_CTX_destroy(struct lws_vhost *vhost);
1786LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001787lws_ssl_context_destroy(struct lws_context *context);
Andy Green52815602015-01-29 08:36:18 +08001788LWS_VISIBLE void
Andy Green6b5de702015-12-15 21:15:58 +08001789lws_ssl_remove_wsi_from_buffered_list(struct lws *wsi);
Andy Greeneefb13a2016-03-28 12:43:55 +08001790LWS_EXTERN int
1791lws_ssl_client_bio_create(struct lws *wsi);
1792LWS_EXTERN int
1793lws_ssl_client_connect1(struct lws *wsi);
1794LWS_EXTERN int
1795lws_ssl_client_connect2(struct lws *wsi);
Andy Greenf1fd8822016-05-03 07:26:10 +08001796LWS_EXTERN void
1797lws_ssl_elaborate_error(void);
Andy Greenc57037a2014-04-03 10:17:00 +08001798#ifndef LWS_NO_SERVER
1799LWS_EXTERN int
1800lws_context_init_server_ssl(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08001801 struct lws_vhost *vhost);
Andy Greenc57037a2014-04-03 10:17:00 +08001802#else
1803#define lws_context_init_server_ssl(_a, _b) (0)
1804#endif
1805LWS_EXTERN void
Andy Greend526c502016-03-28 10:10:43 +08001806lws_ssl_destroy(struct lws_vhost *vhost);
Andy Green2eedea92014-04-03 14:33:48 +08001807
1808/* HTTP2-related */
1809
1810#ifdef LWS_USE_HTTP2
1811LWS_EXTERN void
Andy Green22d6f392016-04-10 09:33:54 +08001812lws_context_init_http2_ssl(struct lws_vhost *vhost);
Andy Green2eedea92014-04-03 14:33:48 +08001813#else
1814#define lws_context_init_http2_ssl(_a)
1815#endif
Darin Willitsc19456f2011-02-14 17:52:39 +00001816#endif
Andy Greena654fc02014-04-03 07:16:40 +08001817
Andy Green8c1f6022016-01-26 20:56:56 +08001818#if LWS_MAX_SMP > 1
1819static LWS_INLINE void
1820lws_pt_mutex_init(struct lws_context_per_thread *pt)
1821{
1822 pthread_mutex_init(&pt->lock, NULL);
1823}
Sterling Jensenecaed5e2016-05-12 20:22:35 -05001824
1825static LWS_INLINE void
1826lws_pt_mutex_destroy(struct lws_context_per_thread *pt)
1827{
1828 pthread_mutex_destroy(&pt->lock);
1829}
1830
Andy Green8c1f6022016-01-26 20:56:56 +08001831static LWS_INLINE void
1832lws_pt_lock(struct lws_context_per_thread *pt)
1833{
Andy Greenbbf93692016-08-07 08:33:08 +08001834 if (!pt->lock_depth++)
1835 pthread_mutex_lock(&pt->lock);
Andy Green8c1f6022016-01-26 20:56:56 +08001836}
1837
1838static LWS_INLINE void
1839lws_pt_unlock(struct lws_context_per_thread *pt)
1840{
Andy Greenbbf93692016-08-07 08:33:08 +08001841 if (!(--pt->lock_depth))
1842 pthread_mutex_unlock(&pt->lock);
Andy Green8c1f6022016-01-26 20:56:56 +08001843}
1844#else
1845#define lws_pt_mutex_init(_a) (void)(_a)
Sterling Jensenecaed5e2016-05-12 20:22:35 -05001846#define lws_pt_mutex_destroy(_a) (void)(_a)
Andy Green8c1f6022016-01-26 20:56:56 +08001847#define lws_pt_lock(_a) (void)(_a)
1848#define lws_pt_unlock(_a) (void)(_a)
1849#endif
1850
Andy Greene99a83c2016-01-20 16:56:06 +08001851LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001852lws_ssl_capable_read_no_ssl(struct lws *wsi, unsigned char *buf, int len);
Patrick Gansterera6b019a2014-04-15 18:40:31 +02001853
Andy Greene99a83c2016-01-20 16:56:06 +08001854LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001855lws_ssl_capable_write_no_ssl(struct lws *wsi, unsigned char *buf, int len);
Patrick Gansterera6b019a2014-04-15 18:40:31 +02001856
Andy Greene99a83c2016-01-20 16:56:06 +08001857LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001858lws_ssl_pending_no_ssl(struct lws *wsi);
=?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?=4c0ba022015-08-19 16:23:33 +02001859
Andy Green1e5a9ad2016-03-20 11:59:53 +08001860#ifdef LWS_WITH_HTTP_PROXY
1861struct lws_rewrite {
1862 hubbub_parser *parser;
1863 hubbub_parser_optparams params;
1864 const char *from, *to;
1865 int from_len, to_len;
1866 unsigned char *p, *end;
1867 struct lws *wsi;
1868};
1869static LWS_INLINE int hstrcmp(hubbub_string *s, const char *p, int len)
1870{
1871 if (s->len != len)
1872 return 1;
1873
1874 return strncmp((const char *)s->ptr, p, len);
1875}
1876typedef hubbub_error (*hubbub_callback_t)(const hubbub_token *token, void *pw);
Andy Green1e5a9ad2016-03-20 11:59:53 +08001877LWS_EXTERN struct lws_rewrite *
1878lws_rewrite_create(struct lws *wsi, hubbub_callback_t cb, const char *from, const char *to);
1879LWS_EXTERN void
1880lws_rewrite_destroy(struct lws_rewrite *r);
1881LWS_EXTERN int
1882lws_rewrite_parse(struct lws_rewrite *r, const unsigned char *in, int in_len);
1883#endif
1884
1885#ifndef LWS_NO_CLIENT
Andy Green1a138852016-03-20 11:55:25 +08001886LWS_EXTERN int lws_client_socket_service(struct lws_context *context,
1887 struct lws *wsi,
1888 struct lws_pollfd *pollfd);
1889LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1890lws_http_transaction_completed_client(struct lws *wsi);
Andy Greenc57037a2014-04-03 10:17:00 +08001891#ifdef LWS_OPENSSL_SUPPORT
Andy Greendc8a3a82015-12-06 09:15:27 +08001892LWS_EXTERN int
1893lws_context_init_client_ssl(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08001894 struct lws_vhost *vhost);
Andy Greene38031a2014-04-03 08:24:29 +08001895#else
Andy Greenc57037a2014-04-03 10:17:00 +08001896 #define lws_context_init_client_ssl(_a, _b) (0)
1897#endif
Andy Greene99a83c2016-01-20 16:56:06 +08001898LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001899lws_handshake_client(struct lws *wsi, unsigned char **buf, size_t len);
1900LWS_EXTERN void
1901lws_decode_ssl_error(void);
Andy Greenc57037a2014-04-03 10:17:00 +08001902#else
1903#define lws_context_init_client_ssl(_a, _b) (0)
Andy Greenaad2eac2014-04-03 09:03:37 +08001904#define lws_handshake_client(_a, _b, _c) (0)
Andy Greena654fc02014-04-03 07:16:40 +08001905#endif
Andy Green44e0b082015-12-28 14:24:49 +08001906
1907LWS_EXTERN int
1908_lws_rx_flow_control(struct lws *wsi);
1909
Andy Green8c1f6022016-01-26 20:56:56 +08001910LWS_EXTERN int
1911_lws_change_pollfd(struct lws *wsi, int _and, int _or, struct lws_pollargs *pa);
1912
Andy Greena654fc02014-04-03 07:16:40 +08001913#ifndef LWS_NO_SERVER
Andy Greendc8a3a82015-12-06 09:15:27 +08001914LWS_EXTERN int
1915lws_server_socket_service(struct lws_context *context, struct lws *wsi,
1916 struct lws_pollfd *pollfd);
1917LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001918lws_handshake_server(struct lws *wsi, unsigned char **buf, size_t len);
Andy Greend99476b2014-04-03 08:40:05 +08001919#else
Andy Greenb49a9952014-04-03 10:11:04 +08001920#define lws_server_socket_service(_a, _b, _c) (0)
Andy Green11c05bf2015-12-16 18:19:08 +08001921#define lws_handshake_server(_a, _b, _c) (0)
Andy Greena654fc02014-04-03 07:16:40 +08001922#endif
Andy Green40110e82015-12-14 08:52:03 +08001923
Andy Green2f0bc932016-04-15 12:00:23 +08001924#ifdef LWS_WITH_ACCESS_LOG
1925LWS_EXTERN int
1926lws_access_log(struct lws *wsi);
1927#else
1928#define lws_access_log(_a)
1929#endif
1930
Andy Green6a8099b2016-02-21 21:25:48 +08001931LWS_EXTERN int
1932lws_cgi_kill_terminated(struct lws_context_per_thread *pt);
1933
Andy Green02077052016-04-06 16:15:40 +08001934int
1935lws_protocol_init(struct lws_context *context);
1936
Andy Green7f92ee82016-06-18 09:00:04 +08001937int
1938lws_bind_protocol(struct lws *wsi, const struct lws_protocols *p);
1939
Andy Green722cc4a2016-06-26 06:29:20 +08001940const struct lws_http_mount *
1941lws_find_mount(struct lws *wsi, const char *uri_ptr, int uri_len);
1942
Andy Greena654fc02014-04-03 07:16:40 +08001943/*
Alejandro Merycdc97172014-12-04 23:15:27 +01001944 * custom allocator
1945 */
Andy Greene99a83c2016-01-20 16:56:06 +08001946LWS_EXTERN void *
Alejandro Merycdc97172014-12-04 23:15:27 +01001947lws_realloc(void *ptr, size_t size);
1948
Andy Greene99a83c2016-01-20 16:56:06 +08001949LWS_EXTERN void * LWS_WARN_UNUSED_RESULT
Alejandro Merycdc97172014-12-04 23:15:27 +01001950lws_zalloc(size_t size);
1951
Andy Green9395eb62017-01-30 15:02:54 +08001952#ifdef LWS_PLAT_OPTEE
1953void *lws_malloc(size_t size);
1954void lws_free(void *p);
1955#define lws_free_set_NULL(P) do { lws_free(P); (P) = NULL; } while(0)
1956#else
Alejandro Merycdc97172014-12-04 23:15:27 +01001957#define lws_malloc(S) lws_realloc(NULL, S)
1958#define lws_free(P) lws_realloc(P, 0)
Andy Green54806b12015-12-17 17:03:59 +08001959#define lws_free_set_NULL(P) do { lws_realloc(P, 0); (P) = NULL; } while(0)
Andy Green9395eb62017-01-30 15:02:54 +08001960#endif
Alejandro Merycdc97172014-12-04 23:15:27 +01001961
Andy Green19cc7ac2017-03-03 12:38:10 +08001962const struct lws_plat_file_ops *
1963lws_vfs_select_fops(const struct lws_plat_file_ops *fops, const char *vfs_path,
1964 const char **vpath);
1965
Andy Greendc8a3a82015-12-06 09:15:27 +08001966/* lws_plat_ */
Andy Greena654fc02014-04-03 07:16:40 +08001967LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001968lws_plat_delete_socket_from_fds(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001969 struct lws *wsi, int m);
Andy Greena654fc02014-04-03 07:16:40 +08001970LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001971lws_plat_insert_socket_into_fds(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001972 struct lws *wsi);
Andy Greena654fc02014-04-03 07:16:40 +08001973LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001974lws_plat_service_periodic(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001975
1976LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001977lws_plat_change_pollfd(struct lws_context *context, struct lws *wsi,
1978 struct lws_pollfd *pfd);
Andy Greena654fc02014-04-03 07:16:40 +08001979LWS_EXTERN int
1980lws_plat_context_early_init(void);
1981LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001982lws_plat_context_early_destroy(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001983LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001984lws_plat_context_late_destroy(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001985LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001986lws_poll_listen_fd(struct lws_pollfd *fd);
Andy Greena654fc02014-04-03 07:16:40 +08001987LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001988lws_plat_service(struct lws_context *context, int timeout_ms);
Andy Greend3a55052016-01-19 03:34:24 +08001989LWS_EXTERN LWS_VISIBLE int
Andy Greenb46c4012016-10-20 09:09:56 +08001990_lws_plat_service_tsi(struct lws_context *context, int timeout_ms, int tsi);
Andy Greena654fc02014-04-03 07:16:40 +08001991LWS_EXTERN int
Andy Green4386e362015-12-10 07:14:16 +08001992lws_plat_init(struct lws_context *context,
1993 struct lws_context_creation_info *info);
Andy Greena654fc02014-04-03 07:16:40 +08001994LWS_EXTERN void
1995lws_plat_drop_app_privileges(struct lws_context_creation_info *info);
1996LWS_EXTERN unsigned long long
1997time_in_microseconds(void);
Andy Greene99a83c2016-01-20 16:56:06 +08001998LWS_EXTERN const char * LWS_WARN_UNUSED_RESULT
Andy Greena654fc02014-04-03 07:16:40 +08001999lws_plat_inet_ntop(int af, const void *src, char *dst, int cnt);
Andy Green8c0d3c02015-11-02 20:34:12 +08002000
Andy Greene99a83c2016-01-20 16:56:06 +08002001LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green86c1ef12015-12-30 11:43:36 +08002002lws_check_utf8(unsigned char *state, unsigned char *buf, size_t len);
2003
Andy Green8c0d3c02015-11-02 20:34:12 +08002004#ifdef __cplusplus
2005};
2006#endif