blob: a6a2a5624beac5e37d7c83b43fcbe234755af4bd [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
WebsocketUser0be9e982017-06-09 20:20:42 +0800137#if !defined(LWS_HAVE_ATOLL)
138#if defined(LWS_HAVE__ATOI64)
139#define atoll _atoi64
140#else
141#warning No atoll or _atoi64 available, using atoi
142#define atoll atoi
143#endif
144#endif
145
Joakim Soderbergd2f5b192014-04-07 11:28:08 +0200146#ifndef __func__
147#define __func__ __FUNCTION__
148#endif
149
Andy Green7d22c292016-03-04 10:53:51 +0800150#ifdef LWS_HAVE__VSNPRINTF
151#define vsnprintf _vsnprintf
152#endif
Patrick Gansterer6bb4b622014-04-15 18:39:26 +0200153
Andy Greenbe9fb912016-12-16 07:37:43 +0800154/* we don't have an implementation for this on windows... */
155int kill(int pid, int sig);
156int fork(void);
157#ifndef SIGINT
158#define SIGINT 2
159#endif
160
Andy Green158e8042014-04-02 14:25:10 +0800161#else /* not windows --> */
Andy Green8c0d3c02015-11-02 20:34:12 +0800162
Patrick Ganstererb13eed42014-03-30 10:19:23 +0200163#include <fcntl.h>
Patrick Ganstererb13eed42014-03-30 10:19:23 +0200164#include <strings.h>
165#include <unistd.h>
Andy Greene77ddd82010-11-13 10:03:47 +0000166#include <sys/types.h>
Andy Green0aed7a02017-02-22 09:50:11 +0800167
Andy Green8c0d3c02015-11-02 20:34:12 +0800168#ifndef __cplusplus
169#include <errno.h>
170#endif
Andy Green5f2a8152015-11-02 08:21:08 +0800171#include <netdb.h>
172#include <signal.h>
Andy Green7acf76c2016-07-23 14:18:25 +0800173#ifdef LWS_WITH_ESP8266
174#include <sockets.h>
175#define vsnprintf ets_vsnprintf
176#define snprintf ets_snprintf
177#define sprintf ets_sprintf
Andy Greendd0dfae2016-12-22 11:32:34 +0800178
179int kill(int pid, int sig);
180
Andy Green7acf76c2016-07-23 14:18:25 +0800181#else
Andy Green7c212cc2010-11-08 20:20:42 +0000182#include <sys/socket.h>
Andy Green7acf76c2016-07-23 14:18:25 +0800183#endif
Andy Green1e5a9ad2016-03-20 11:59:53 +0800184#ifdef LWS_WITH_HTTP_PROXY
185#include <hubbub/hubbub.h>
186#include <hubbub/parser.h>
187#endif
Andy Green7acf76c2016-07-23 14:18:25 +0800188#if defined(LWS_BUILTIN_GETIFADDRS)
Andy Greene40aa9b2014-04-02 21:02:54 +0800189 #include <getifaddrs.h>
190#else
Andy Greenc7c4ae02017-02-18 17:26:40 +0800191 #if !defined(LWS_WITH_ESP8266) && !defined(LWS_WITH_ESP32)
Andy Greene40aa9b2014-04-02 21:02:54 +0800192 #include <ifaddrs.h>
Andy Green7acf76c2016-07-23 14:18:25 +0800193 #endif
Andy Greene40aa9b2014-04-02 21:02:54 +0800194#endif
Dnyanesh Gate759e50c2014-09-26 05:39:05 +0800195#if defined (__ANDROID__)
196#include <syslog.h>
Alexander Bruines119bdaa2016-04-23 11:10:18 +0200197#include <sys/resource.h>
Fredrik Skogman316960b2016-09-09 06:49:44 +0800198#elif defined (__sun)
199#include <syslog.h>
Dnyanesh Gate759e50c2014-09-26 05:39:05 +0800200#else
Andy Greenc7c4ae02017-02-18 17:26:40 +0800201#if !defined(LWS_WITH_ESP8266) && !defined(LWS_WITH_ESP32)
Andy Greene40aa9b2014-04-02 21:02:54 +0800202#include <sys/syslog.h>
Dnyanesh Gate759e50c2014-09-26 05:39:05 +0800203#endif
Andy Green7acf76c2016-07-23 14:18:25 +0800204#endif
Andy Greene40aa9b2014-04-02 21:02:54 +0800205#include <netdb.h>
Andy Greenc7c4ae02017-02-18 17:26:40 +0800206#if !defined(LWS_WITH_ESP8266) && !defined(LWS_WITH_ESP32)
Andy Green7acf76c2016-07-23 14:18:25 +0800207#include <sys/mman.h>
208#include <sys/un.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000209#include <netinet/in.h>
Andy Green6c939552011-03-08 08:56:57 +0000210#include <netinet/tcp.h>
Andy Greenb45993c2010-12-18 15:13:50 +0000211#include <arpa/inet.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000212#include <poll.h>
Andy Green7acf76c2016-07-23 14:18:25 +0800213#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800214#ifdef LWS_USE_LIBEV
Andy Green86ed65f2016-02-14 09:27:41 +0800215#include <ev.h>
216#endif
217#ifdef LWS_USE_LIBUV
Alex Hultmana43c2ac2016-02-01 08:31:54 +0800218#include <uv.h>
Andy Green86ed65f2016-02-14 09:27:41 +0800219#endif
Aditya Tirumalaec50eba2017-03-15 19:41:11 +0530220#ifdef LWS_USE_LIBEVENT
221#include <event2/event.h>
222#endif
Andy Green5f2a8152015-11-02 08:21:08 +0800223
Andy Green5f2a8152015-11-02 08:21:08 +0800224#ifndef LWS_NO_FORK
225#ifdef LWS_HAVE_SYS_PRCTL_H
226#include <sys/prctl.h>
227#endif
228#endif
229
Andy Green038d5822011-02-14 20:58:26 +0000230#include <sys/time.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000231
Patrick Gansterer2dbd8372014-02-28 12:37:52 +0100232#define LWS_ERRNO errno
233#define LWS_EAGAIN EAGAIN
234#define LWS_EALREADY EALREADY
235#define LWS_EINPROGRESS EINPROGRESS
236#define LWS_EINTR EINTR
237#define LWS_EISCONN EISCONN
238#define LWS_EWOULDBLOCK EWOULDBLOCK
Andy Green2b304a92016-07-11 07:28:23 +0800239
Andy Green158e8042014-04-02 14:25:10 +0800240#define lws_set_blocking_send(wsi)
Andy Green2cd30742015-11-02 13:10:33 +0800241
Andy Green0aed7a02017-02-22 09:50:11 +0800242#if defined(LWS_WITH_ESP8266)
Andy Green2cd30742015-11-02 13:10:33 +0800243#define lws_socket_is_valid(x) ((x) != NULL)
244#define LWS_SOCK_INVALID (NULL)
Andy Green7acf76c2016-07-23 14:18:25 +0800245struct lws;
246const char *
247lws_plat_get_peer_simple(struct lws *wsi, char *name, int namelen);
Andy Green2cd30742015-11-02 13:10:33 +0800248#else
Andy Greenc53f7ca2015-11-14 07:35:27 +0800249#define lws_socket_is_valid(x) (x >= 0)
250#define LWS_SOCK_INVALID (-1)
Peter Hinz56885f32011-03-02 22:03:47 +0000251#endif
Andy Green2cd30742015-11-02 13:10:33 +0800252#endif
Peter Hinz56885f32011-03-02 22:03:47 +0000253
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +0200254#ifndef LWS_HAVE_BZERO
Andy Greene5ea1f92014-11-18 18:25:24 +0800255#ifndef bzero
Patrick Gansterer4a837272014-02-28 13:17:49 +0100256#define bzero(b, len) (memset((b), '\0', (len)), (void) 0)
257#endif
Andy Greene5ea1f92014-11-18 18:25:24 +0800258#endif
Patrick Gansterer4a837272014-02-28 13:17:49 +0100259
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +0200260#ifndef LWS_HAVE_STRERROR
Patrick Gansterer9d614912014-02-28 00:59:53 +0100261#define strerror(x) ""
262#endif
263
Andy Green7c212cc2010-11-08 20:20:42 +0000264#ifdef LWS_OPENSSL_SUPPORT
Andy Green1a3f1772016-03-28 19:58:02 +0800265
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200266#ifdef USE_WOLFSSL
ABruines80a70682015-08-09 22:56:32 +0200267#ifdef USE_OLD_CYASSL
268#include <cyassl/openssl/ssl.h>
269#include <cyassl/error-ssl.h>
270#else
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200271#include <wolfssl/openssl/ssl.h>
272#include <wolfssl/error-ssl.h>
Andy Green1e227192017-01-07 10:24:16 +0800273#define OPENSSL_NO_TLSEXT
ABruines80a70682015-08-09 22:56:32 +0200274#endif /* not USE_OLD_CYASSL */
Andy Green23c5f2e2013-02-06 15:43:00 +0900275#else
Andy Green6d257632017-08-28 21:27:55 +0800276#if !defined(LWS_WITH_ESP32)
Andy Green7c212cc2010-11-08 20:20:42 +0000277#include <openssl/ssl.h>
Andy Green6d257632017-08-28 21:27:55 +0800278#endif
Juraj Vijtiuk41909ea2017-08-28 20:22:20 +0800279#if !defined(LWS_USE_MBEDTLS)
Andy Green7c212cc2010-11-08 20:20:42 +0000280#include <openssl/evp.h>
281#include <openssl/err.h>
Andy Green70dfebd2010-12-20 09:35:03 +0000282#include <openssl/md5.h>
Andy Greene2522172011-01-18 17:14:03 +0000283#include <openssl/sha.h>
Andy Green1a3f1772016-03-28 19:58:02 +0800284#ifdef LWS_HAVE_OPENSSL_ECDH_H
285#include <openssl/ecdh.h>
286#endif
Andy Greene7bf0aa2016-06-28 19:50:40 +0800287#include <openssl/x509v3.h>
Andy Green3a09c3b2017-03-08 11:11:41 +0800288#endif
Andy Greenc001a152017-01-06 09:49:28 +0800289#if (OPENSSL_VERSION_NUMBER < 0x0009080afL)
290/* later openssl defines this to negate the presence of tlsext... but it was only
291 * introduced at 0.9.8j. Earlier versions don't know it exists so don't
292 * define it... making it look like the feature exists...
293 */
294#define OPENSSL_NO_TLSEXT
295#endif
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200296#endif /* not USE_WOLFSSL */
Darin Willitsdb9ba422011-02-14 20:56:24 +0000297#endif
298
Andy Green7c212cc2010-11-08 20:20:42 +0000299#include "libwebsockets.h"
Andy Green7acf76c2016-07-23 14:18:25 +0800300#if defined(WIN32) || defined(_WIN32)
301#else
302static inline int compatible_close(int fd) { return close(fd); }
303#endif
Andy Green7c212cc2010-11-08 20:20:42 +0000304
Rainer Poiseld2cef152016-11-07 21:36:05 +0100305#if defined(WIN32) || defined(_WIN32)
306#include <gettimeofday.h>
307#endif
308
Andy Green7acf76c2016-07-23 14:18:25 +0800309#if defined(LWS_WITH_ESP8266)
310#undef compatible_close
311#define compatible_close(fd) { fd->state=ESPCONN_CLOSE; espconn_delete(fd); }
312lws_sockfd_type
313esp8266_create_tcp_stream_socket(void);
314void
315esp8266_tcp_stream_bind(lws_sockfd_type fd, int port, struct lws *wsi);
316#ifndef BIG_ENDIAN
317#define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */
318#endif
319#ifndef LITTLE_ENDIAN
320#define LITTLE_ENDIAN 1234
321#endif
322#ifndef BYTE_ORDER
323#define BYTE_ORDER LITTLE_ENDIAN
324#endif
325#endif
326
327
Andy Green158e8042014-04-02 14:25:10 +0800328#if defined(WIN32) || defined(_WIN32)
329
330#ifndef BIG_ENDIAN
331#define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */
332#endif
333#ifndef LITTLE_ENDIAN
334#define LITTLE_ENDIAN 1234
335#endif
336#ifndef BYTE_ORDER
337#define BYTE_ORDER LITTLE_ENDIAN
338#endif
Andy Green11f27342015-11-08 12:10:26 +0800339#ifndef u_int64_t
Andy Green158e8042014-04-02 14:25:10 +0800340typedef unsigned __int64 u_int64_t;
Andy Green11f27342015-11-08 12:10:26 +0800341#endif
Andy Green158e8042014-04-02 14:25:10 +0800342
343#undef __P
344#ifndef __P
345#if __STDC__
346#define __P(protos) protos
347#else
348#define __P(protos) ()
349#endif
350#endif
351
352#else
353
354#include <sys/stat.h>
Andy Green158e8042014-04-02 14:25:10 +0800355#include <sys/time.h>
356
357#if defined(__APPLE__)
358#include <machine/endian.h>
359#elif defined(__FreeBSD__)
360#include <sys/endian.h>
361#elif defined(__linux__)
362#include <endian.h>
363#endif
364
Andy Green8c0d3c02015-11-02 20:34:12 +0800365#ifdef __cplusplus
366extern "C" {
367#endif
Alejandro Meryead8afe2014-12-07 03:36:11 +0100368
emironova49d0842014-09-16 14:05:13 +0400369#if defined(__QNX__)
370 #include <gulliver.h>
371 #if defined(__LITTLEENDIAN__)
372 #define BYTE_ORDER __LITTLEENDIAN__
373 #define LITTLE_ENDIAN __LITTLEENDIAN__
374 #define BIG_ENDIAN 4321 /* to show byte order (taken from gcc); for suppres warning that BIG_ENDIAN is not defined. */
375 #endif
376 #if defined(__BIGENDIAN__)
377 #define BYTE_ORDER __BIGENDIAN__
378 #define LITTLE_ENDIAN 1234 /* to show byte order (taken from gcc); for suppres warning that LITTLE_ENDIAN is not defined. */
379 #define BIG_ENDIAN __BIGENDIAN__
380 #endif
381#endif
382
Fredrik Skogman316960b2016-09-09 06:49:44 +0800383#if defined(__sun) && defined(__GNUC__)
luk65a4d23642017-03-23 23:56:25 +0800384
385#include <arpa/nameser_compat.h>
386
387#if !defined (BYTE_ORDER)
Fredrik Skogman316960b2016-09-09 06:49:44 +0800388# define BYTE_ORDER __BYTE_ORDER__
luk65a4d23642017-03-23 23:56:25 +0800389#endif
390
391#if !defined(LITTLE_ENDIAN)
Fredrik Skogman316960b2016-09-09 06:49:44 +0800392# define LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__
luk65a4d23642017-03-23 23:56:25 +0800393#endif
394
395#if !defined(BIG_ENDIAN)
Fredrik Skogman316960b2016-09-09 06:49:44 +0800396# define BIG_ENDIAN __ORDER_BIG_ENDIAN__
397#endif
398
luk65a4d23642017-03-23 23:56:25 +0800399#endif /* sun + GNUC */
400
Andy Green158e8042014-04-02 14:25:10 +0800401#if !defined(BYTE_ORDER)
402# define BYTE_ORDER __BYTE_ORDER
403#endif
404#if !defined(LITTLE_ENDIAN)
405# define LITTLE_ENDIAN __LITTLE_ENDIAN
406#endif
407#if !defined(BIG_ENDIAN)
408# define BIG_ENDIAN __BIG_ENDIAN
409#endif
410
411#endif
412
Darin Willitsc19456f2011-02-14 17:52:39 +0000413/*
414 * Mac OSX as well as iOS do not define the MSG_NOSIGNAL flag,
415 * but happily have something equivalent in the SO_NOSIGPIPE flag.
416 */
417#ifdef __APPLE__
Andy Green6ee372f2012-04-09 15:09:01 +0800418#define MSG_NOSIGNAL SO_NOSIGPIPE
Darin Willitsc19456f2011-02-14 17:52:39 +0000419#endif
420
Fredrik Skogman316960b2016-09-09 06:49:44 +0800421/*
422 * Solaris 11.X only supports POSIX 2001, MSG_NOSIGNAL appears in
423 * POSIX 2008.
424 */
425#ifdef __sun
426#define MSG_NOSIGNAL 0
427#endif
428
Bud Davis229bfec2015-01-30 10:13:01 +0800429#ifdef _WIN32
430#ifndef FD_HASHTABLE_MODULUS
431#define FD_HASHTABLE_MODULUS 32
432#endif
433#endif
434
Andy Green8c1f6022016-01-26 20:56:56 +0800435#ifndef LWS_DEF_HEADER_LEN
Andy Green5ab523e2016-07-11 07:48:53 +0800436#define LWS_DEF_HEADER_LEN 4096
Andy Greenc0d6b632013-01-12 23:42:17 +0800437#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800438#ifndef LWS_DEF_HEADER_POOL
Andy Green5ab523e2016-07-11 07:48:53 +0800439#define LWS_DEF_HEADER_POOL 4
Andy Green3df58002015-12-25 12:44:12 +0800440#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800441#ifndef LWS_MAX_PROTOCOLS
Andy Greend91d5e82013-02-10 16:00:47 +0800442#define LWS_MAX_PROTOCOLS 5
Andy Greenc0d6b632013-01-12 23:42:17 +0800443#endif
444#ifndef LWS_MAX_EXTENSIONS_ACTIVE
Andy Greend738f842016-01-19 04:32:14 +0800445#define LWS_MAX_EXTENSIONS_ACTIVE 2
Andy Greenc0d6b632013-01-12 23:42:17 +0800446#endif
Andy Green67112662016-01-11 11:34:01 +0800447#ifndef LWS_MAX_EXT_OFFERS
448#define LWS_MAX_EXT_OFFERS 8
449#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800450#ifndef SPEC_LATEST_SUPPORTED
Andy Greend85cb202011-09-25 09:32:54 +0100451#define SPEC_LATEST_SUPPORTED 13
Andy Greenc0d6b632013-01-12 23:42:17 +0800452#endif
453#ifndef AWAITING_TIMEOUT
Andy Green8c1f6022016-01-26 20:56:56 +0800454#define AWAITING_TIMEOUT 20
Andy Greenc0d6b632013-01-12 23:42:17 +0800455#endif
456#ifndef CIPHERS_LIST_STRING
David Galeanof177f2a2013-01-10 10:15:19 +0800457#define CIPHERS_LIST_STRING "DEFAULT"
Andy Greenc0d6b632013-01-12 23:42:17 +0800458#endif
Andy Greena824d182013-01-15 20:52:29 +0800459#ifndef LWS_SOMAXCONN
460#define LWS_SOMAXCONN SOMAXCONN
461#endif
Andy Green7c212cc2010-11-08 20:20:42 +0000462
Andy Greene2522172011-01-18 17:14:03 +0000463#define MAX_WEBSOCKET_04_KEY_LEN 128
Andy Greenc0d6b632013-01-12 23:42:17 +0800464
465#ifndef SYSTEM_RANDOM_FILEPATH
Andy Green4739e5c2011-01-22 12:51:57 +0000466#define SYSTEM_RANDOM_FILEPATH "/dev/urandom"
Andy Greenc0d6b632013-01-12 23:42:17 +0800467#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800468
Andy Green5fd55cd2011-04-23 10:54:53 +0100469enum lws_websocket_opcodes_07 {
Andy Green54806b12015-12-17 17:03:59 +0800470 LWSWSOPC_CONTINUATION = 0,
471 LWSWSOPC_TEXT_FRAME = 1,
472 LWSWSOPC_BINARY_FRAME = 2,
Andy Greena41314f2011-05-23 10:00:03 +0100473
Andy Green54806b12015-12-17 17:03:59 +0800474 LWSWSOPC_NOSPEC__MUX = 7,
Andy Greena41314f2011-05-23 10:00:03 +0100475
476 /* control extensions 8+ */
477
Andy Green54806b12015-12-17 17:03:59 +0800478 LWSWSOPC_CLOSE = 8,
479 LWSWSOPC_PING = 9,
480 LWSWSOPC_PONG = 0xa,
Andy Green5fd55cd2011-04-23 10:54:53 +0100481};
482
Andy Greena41314f2011-05-23 10:00:03 +0100483
Andy Green7c212cc2010-11-08 20:20:42 +0000484enum lws_connection_states {
Andy Green54806b12015-12-17 17:03:59 +0800485 LWSS_HTTP,
486 LWSS_HTTP_ISSUING_FILE,
487 LWSS_HTTP_HEADERS,
488 LWSS_HTTP_BODY,
489 LWSS_DEAD_SOCKET,
490 LWSS_ESTABLISHED,
Andy Greena661ee52016-02-29 13:18:30 +0800491 LWSS_CLIENT_HTTP_ESTABLISHED,
Andy Green54806b12015-12-17 17:03:59 +0800492 LWSS_CLIENT_UNCONNECTED,
Andy Green3b0066c2017-07-17 10:11:17 +0800493 LWSS_WAITING_TO_SEND_CLOSE_NOTIFICATION,
Andy Green54806b12015-12-17 17:03:59 +0800494 LWSS_RETURNED_CLOSE_ALREADY,
495 LWSS_AWAITING_CLOSE_ACK,
496 LWSS_FLUSHING_STORED_SEND_BEFORE_CLOSE,
Andy Green8c1f6022016-01-26 20:56:56 +0800497 LWSS_SHUTDOWN,
Andy Green40110e82015-12-14 08:52:03 +0800498
Andy Green54806b12015-12-17 17:03:59 +0800499 LWSS_HTTP2_AWAIT_CLIENT_PREFACE,
500 LWSS_HTTP2_ESTABLISHED_PRE_SETTINGS,
501 LWSS_HTTP2_ESTABLISHED,
Andy Green6a8099b2016-02-21 21:25:48 +0800502
Andy Green2d8d35a2016-02-29 14:19:16 +0800503 LWSS_CGI,
Andy Green7c212cc2010-11-08 20:20:42 +0000504};
505
Andrew Canadayafe26cf2014-07-13 01:07:36 -0400506enum http_version {
507 HTTP_VERSION_1_0,
508 HTTP_VERSION_1_1,
Andy Green22d6f392016-04-10 09:33:54 +0800509 HTTP_VERSION_2
Andrew Canadayafe26cf2014-07-13 01:07:36 -0400510};
511
512enum http_connection_type {
513 HTTP_CONNECTION_CLOSE,
514 HTTP_CONNECTION_KEEP_ALIVE
515};
516
Andy Green024eb6c2014-10-08 12:00:53 +0800517enum lws_pending_protocol_send {
518 LWS_PPS_NONE,
519 LWS_PPS_HTTP2_MY_SETTINGS,
520 LWS_PPS_HTTP2_ACK_SETTINGS,
Andy Greenbbbf07a2014-10-27 16:46:44 +0800521 LWS_PPS_HTTP2_PONG,
Andy Green024eb6c2014-10-08 12:00:53 +0800522};
523
Andy Green7c212cc2010-11-08 20:20:42 +0000524enum lws_rx_parse_state {
525 LWS_RXPS_NEW,
Andy Greene77ddd82010-11-13 10:03:47 +0000526
Andy Green67112662016-01-11 11:34:01 +0800527 LWS_RXPS_04_mask_1,
528 LWS_RXPS_04_mask_2,
529 LWS_RXPS_04_mask_3,
Andy Green3e5eb782011-01-18 18:14:26 +0000530
531 LWS_RXPS_04_FRAME_HDR_1,
Andy Green38e57bb2011-01-19 12:20:27 +0000532 LWS_RXPS_04_FRAME_HDR_LEN,
533 LWS_RXPS_04_FRAME_HDR_LEN16_2,
534 LWS_RXPS_04_FRAME_HDR_LEN16_1,
535 LWS_RXPS_04_FRAME_HDR_LEN64_8,
536 LWS_RXPS_04_FRAME_HDR_LEN64_7,
537 LWS_RXPS_04_FRAME_HDR_LEN64_6,
538 LWS_RXPS_04_FRAME_HDR_LEN64_5,
539 LWS_RXPS_04_FRAME_HDR_LEN64_4,
540 LWS_RXPS_04_FRAME_HDR_LEN64_3,
541 LWS_RXPS_04_FRAME_HDR_LEN64_2,
542 LWS_RXPS_04_FRAME_HDR_LEN64_1,
Andy Green3e5eb782011-01-18 18:14:26 +0000543
Andy Green283d0a22011-04-24 05:46:23 +0100544 LWS_RXPS_07_COLLECT_FRAME_KEY_1,
545 LWS_RXPS_07_COLLECT_FRAME_KEY_2,
546 LWS_RXPS_07_COLLECT_FRAME_KEY_3,
547 LWS_RXPS_07_COLLECT_FRAME_KEY_4,
548
Andy Green7c212cc2010-11-08 20:20:42 +0000549 LWS_RXPS_PAYLOAD_UNTIL_LENGTH_EXHAUSTED
550};
551
Andy Green95fff472016-08-08 21:54:30 +0800552#define LWSCM_FLAG_IMPLIES_CALLBACK_CLOSED_CLIENT_HTTP 32
Andy Green7c212cc2010-11-08 20:20:42 +0000553
Andy Green0d338332011-02-12 11:57:43 +0000554enum connection_mode {
Andy Green54806b12015-12-17 17:03:59 +0800555 LWSCM_HTTP_SERVING,
556 LWSCM_HTTP_SERVING_ACCEPTED, /* actual HTTP service going on */
557 LWSCM_PRE_WS_SERVING_ACCEPT,
Andy Greend280b6e2013-01-15 13:40:23 +0800558
Andy Green54806b12015-12-17 17:03:59 +0800559 LWSCM_WS_SERVING,
560 LWSCM_WS_CLIENT,
Andy Green40110e82015-12-14 08:52:03 +0800561
Andy Green54806b12015-12-17 17:03:59 +0800562 LWSCM_HTTP2_SERVING,
Andy Green0d338332011-02-12 11:57:43 +0000563
Andy Greene2160712013-01-28 12:19:10 +0800564 /* transient, ssl delay hiding */
Andy Green54806b12015-12-17 17:03:59 +0800565 LWSCM_SSL_ACK_PENDING,
Andy Green8c1f6022016-01-26 20:56:56 +0800566 LWSCM_SSL_INIT,
Andy Green297c0312017-02-12 20:32:49 +0800567 /* as above, but complete into LWSCM_RAW */
568 LWSCM_SSL_ACK_PENDING_RAW,
569 LWSCM_SSL_INIT_RAW,
Andy Greene2160712013-01-28 12:19:10 +0800570
Andy Green95fff472016-08-08 21:54:30 +0800571 /* special internal types */
572 LWSCM_SERVER_LISTENER,
573 LWSCM_CGI, /* stdin, stdout, stderr for another cgi master wsi */
Andy Greenbe8d7912017-02-27 12:55:56 +0800574 LWSCM_RAW, /* raw with bulk handling */
575 LWSCM_RAW_FILEDESC, /* raw without bulk handling */
Andy Green95fff472016-08-08 21:54:30 +0800576
577 /* HTTP Client related */
578 LWSCM_HTTP_CLIENT = LWSCM_FLAG_IMPLIES_CALLBACK_CLOSED_CLIENT_HTTP,
579 LWSCM_HTTP_CLIENT_ACCEPTED, /* actual HTTP service going on */
Andy Green54806b12015-12-17 17:03:59 +0800580 LWSCM_WSCL_WAITING_CONNECT,
581 LWSCM_WSCL_WAITING_PROXY_REPLY,
582 LWSCM_WSCL_ISSUE_HANDSHAKE,
583 LWSCM_WSCL_ISSUE_HANDSHAKE2,
Andy Green95fff472016-08-08 21:54:30 +0800584 LWSCM_WSCL_ISSUE_HTTP_BODY,
Andy Green54806b12015-12-17 17:03:59 +0800585 LWSCM_WSCL_WAITING_SSL,
586 LWSCM_WSCL_WAITING_SERVER_REPLY,
587 LWSCM_WSCL_WAITING_EXTENSION_CONNECT,
588 LWSCM_WSCL_PENDING_CANDIDATE_CHILD,
Andy Ninged92b6d2017-05-05 11:38:34 -0400589 LWSCM_WSCL_WAITING_SOCKS_GREETING_REPLY,
590 LWSCM_WSCL_WAITING_SOCKS_CONNECT_REPLY,
591 LWSCM_WSCL_WAITING_SOCKS_AUTH_REPLY,
Andy Greenbe93fef2011-02-14 20:25:43 +0000592
Andy Green95fff472016-08-08 21:54:30 +0800593 /****** add new things just above ---^ ******/
594
595
Andy Green0d338332011-02-12 11:57:43 +0000596};
597
Andy Ninged92b6d2017-05-05 11:38:34 -0400598/* enums of socks version */
599enum socks_version {
600 SOCKS_VERSION_4 = 4,
601 SOCKS_VERSION_5 = 5
602};
603
604/* enums of subnegotiation version */
605enum socks_subnegotiation_version {
606 SOCKS_SUBNEGOTIATION_VERSION_1 = 1,
607};
608
609/* enums of socks commands */
610enum socks_command {
611 SOCKS_COMMAND_CONNECT = 1,
612 SOCKS_COMMAND_BIND = 2,
613 SOCKS_COMMAND_UDP_ASSOCIATE = 3
614};
615
616/* enums of socks address type */
617enum socks_atyp {
618 SOCKS_ATYP_IPV4 = 1,
619 SOCKS_ATYP_DOMAINNAME = 3,
620 SOCKS_ATYP_IPV6 = 4
621};
622
623/* enums of socks authentication methods */
624enum socks_auth_method {
625 SOCKS_AUTH_NO_AUTH = 0,
626 SOCKS_AUTH_GSSAPI = 1,
627 SOCKS_AUTH_USERNAME_PASSWORD = 2
628};
629
630/* enums of subnegotiation status */
631enum socks_subnegotiation_status {
632 SOCKS_SUBNEGOTIATION_STATUS_SUCCESS = 0,
633};
634
635/* enums of socks request reply */
636enum socks_request_reply {
637 SOCKS_REQUEST_REPLY_SUCCESS = 0,
638 SOCKS_REQUEST_REPLY_FAILURE_GENERAL = 1,
639 SOCKS_REQUEST_REPLY_CONNECTION_NOT_ALLOWED = 2,
640 SOCKS_REQUEST_REPLY_NETWORK_UNREACHABLE = 3,
641 SOCKS_REQUEST_REPLY_HOST_UNREACHABLE = 4,
642 SOCKS_REQUEST_REPLY_CONNECTION_REFUSED = 5,
643 SOCKS_REQUEST_REPLY_TTL_EXPIRED = 6,
644 SOCKS_REQUEST_REPLY_COMMAND_NOT_SUPPORTED = 7,
645 SOCKS_REQUEST_REPLY_ATYP_NOT_SUPPORTED = 8
646};
647
648/* enums used to generate socks messages */
649enum socks_msg_type {
650 /* greeting */
651 SOCKS_MSG_GREETING,
652 /* credential, user name and password */
653 SOCKS_MSG_USERNAME_PASSWORD,
654 /* connect command */
655 SOCKS_MSG_CONNECT
656};
657
Andy Greenca0a1292013-03-16 11:24:23 +0800658enum {
659 LWS_RXFLOW_ALLOW = (1 << 0),
660 LWS_RXFLOW_PENDING_CHANGE = (1 << 1),
661};
662
Andy Green1fb95e82015-12-26 17:20:34 +0800663/* this is not usable directly by user code any more, lws_close_reason() */
664#define LWS_WRITE_CLOSE 4
665
Andy Green4b85c1d2015-12-04 11:08:32 +0800666struct lws_protocols;
667struct lws;
Andy Greene92cd172011-01-19 13:11:55 +0000668
Aditya Tirumalaec50eba2017-03-15 19:41:11 +0530669#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) || defined(LWS_USE_LIBEVENT)
Andy Green86ed65f2016-02-14 09:27:41 +0800670
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800671struct lws_io_watcher {
Andy Green86ed65f2016-02-14 09:27:41 +0800672#ifdef LWS_USE_LIBEV
673 ev_io ev_watcher;
674#endif
675#ifdef LWS_USE_LIBUV
676 uv_poll_t uv_watcher;
677#endif
Aditya Tirumalaec50eba2017-03-15 19:41:11 +0530678#ifdef LWS_USE_LIBEVENT
679 struct event *event_watcher;
680#endif
Andy Green86ed65f2016-02-14 09:27:41 +0800681 struct lws_context *context;
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800682};
683
684struct lws_signal_watcher {
Andy Green86ed65f2016-02-14 09:27:41 +0800685#ifdef LWS_USE_LIBEV
686 ev_signal ev_watcher;
687#endif
688#ifdef LWS_USE_LIBUV
689 uv_signal_t uv_watcher;
690#endif
Aditya Tirumalaec50eba2017-03-15 19:41:11 +0530691#ifdef LWS_USE_LIBEVENT
692 struct event *event_watcher;
693#endif
Andy Green86ed65f2016-02-14 09:27:41 +0800694 struct lws_context *context;
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800695};
Andy Green86ed65f2016-02-14 09:27:41 +0800696#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800697
Bud Davis229bfec2015-01-30 10:13:01 +0800698#ifdef _WIN32
699#define LWS_FD_HASH(fd) ((fd ^ (fd >> 8) ^ (fd >> 16)) % FD_HASHTABLE_MODULUS)
Andy Green3ef579b2015-12-04 09:23:56 +0800700struct lws_fd_hashtable {
Andy Green4b85c1d2015-12-04 11:08:32 +0800701 struct lws **wsi;
Bud Davis229bfec2015-01-30 10:13:01 +0800702 int length;
703};
704#endif
705
Andy Green3df58002015-12-25 12:44:12 +0800706/*
707 * This is totally opaque to code using the library. It's exported as a
708 * forward-reference pointer-only declaration; the user can use the pointer with
709 * other APIs to get information out of it.
710 */
711
712struct lws_fragments {
Andy Green48895662016-06-02 12:32:38 +0800713 unsigned int offset;
Andy Green3df58002015-12-25 12:44:12 +0800714 unsigned short len;
715 unsigned char nfrag; /* which ah->frag[] continues this content, or 0 */
716};
717
718/*
719 * these are assigned from a pool held in the context.
720 * Both client and server mode uses them for http header analysis
721 */
722
723struct allocated_headers {
Andy Green2c218e72016-02-15 12:37:04 +0800724 struct lws *wsi; /* owner */
Andy Greende132b92015-12-25 13:48:20 +0800725 char *data; /* prepared by context init to point to dedicated storage */
726 /*
727 * the randomly ordered fragments, indexed by frag_index and
728 * lws_fragments->nfrag for continuation.
729 */
730 struct lws_fragments frags[WSI_TOKEN_COUNT * 2];
Andy Green8c1f6022016-01-26 20:56:56 +0800731 time_t assigned;
Andy Green3df58002015-12-25 12:44:12 +0800732 /*
733 * for each recognized token, frag_index says which frag[] his data
734 * starts in (0 means the token did not appear)
735 * the actual header data gets dumped as it comes in, into data[]
736 */
737 unsigned char frag_index[WSI_TOKEN_COUNT];
Andy Green2c218e72016-02-15 12:37:04 +0800738 unsigned char rx[2048];
Andy Greened4acef2016-12-12 13:36:25 +0800739
Andy Green2c218e72016-02-15 12:37:04 +0800740 unsigned int rxpos;
741 unsigned int rxlen;
Andy Green48895662016-06-02 12:32:38 +0800742 unsigned int pos;
Andy Green2c218e72016-02-15 12:37:04 +0800743
Andy Green86ab0602016-10-21 23:12:21 +0800744 unsigned int http_response;
745
Andy Green3df58002015-12-25 12:44:12 +0800746#ifndef LWS_NO_CLIENT
747 char initial_handshake_hash_base64[30];
Andy Green3df58002015-12-25 12:44:12 +0800748#endif
Andy Greenaa775fd2015-12-26 08:56:58 +0800749
Andy Greenaa775fd2015-12-26 08:56:58 +0800750 unsigned char in_use;
751 unsigned char nfrag;
Andy Green3df58002015-12-25 12:44:12 +0800752};
753
Andy Greend3a55052016-01-19 03:34:24 +0800754/*
755 * so we can have n connections being serviced simultaneously,
756 * these things need to be isolated per-thread.
757 */
758
759struct lws_context_per_thread {
Andy Green8c1f6022016-01-26 20:56:56 +0800760#if LWS_MAX_SMP > 1
761 pthread_mutex_t lock;
762#endif
Andy Greend3a55052016-01-19 03:34:24 +0800763 struct lws_pollfd *fds;
Andy Green7acf76c2016-07-23 14:18:25 +0800764#if defined(LWS_WITH_ESP8266)
765 struct lws **lws_vs_fds_index;
766#endif
Andy Greend3a55052016-01-19 03:34:24 +0800767 struct lws *rx_draining_ext_list;
768 struct lws *tx_draining_ext_list;
Andy Green8c1f6022016-01-26 20:56:56 +0800769 struct lws *timeout_list;
Aditya Tirumalaec50eba2017-03-15 19:41:11 +0530770#if defined(LWS_USE_LIBUV) || defined(LWS_USE_LIBEVENT)
Andy Green38a1cbb2016-02-27 11:03:27 +0800771 struct lws_context *context;
Patrick Ganstererfa9ebb32016-08-14 14:04:56 +0200772#endif
Andy Green6a8099b2016-02-21 21:25:48 +0800773#ifdef LWS_WITH_CGI
774 struct lws_cgi *cgi_list;
775#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800776 void *http_header_data;
777 struct allocated_headers *ah_pool;
778 struct lws *ah_wait_list;
779 int ah_wait_list_length;
Andy Greend3a55052016-01-19 03:34:24 +0800780#ifdef LWS_OPENSSL_SUPPORT
781 struct lws *pending_read_list; /* linked list */
782#endif
Andy Green86ed65f2016-02-14 09:27:41 +0800783#if defined(LWS_USE_LIBEV)
784 struct ev_loop *io_loop_ev;
785#endif
786#if defined(LWS_USE_LIBUV)
787 uv_loop_t *io_loop_uv;
788 uv_signal_t signals[8];
Andy Green38a1cbb2016-02-27 11:03:27 +0800789 uv_timer_t uv_timeout_watcher;
Andy Green09998e32016-04-06 09:23:16 +0800790 uv_idle_t uv_idle;
Andy Green86ed65f2016-02-14 09:27:41 +0800791#endif
Aditya Tirumalaec50eba2017-03-15 19:41:11 +0530792#if defined(LWS_USE_LIBEVENT)
793 struct event_base *io_loop_event_base;
794#endif
Andy Green86ed65f2016-02-14 09:27:41 +0800795#if defined(LWS_USE_LIBEV)
796 struct lws_io_watcher w_accept;
797#endif
Aditya Tirumalaec50eba2017-03-15 19:41:11 +0530798#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) || defined(LWS_USE_LIBEVENT)
Andy Green86ed65f2016-02-14 09:27:41 +0800799 struct lws_signal_watcher w_sigint;
800 unsigned char ev_loop_foreign:1;
801#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800802
803 unsigned long count_conns;
Andy Greend3a55052016-01-19 03:34:24 +0800804 /*
805 * usable by anything in the service code, but only if the scope
806 * does not last longer than the service action (since next service
807 * of any socket can likewise use it and overwrite)
808 */
809 unsigned char *serv_buf;
810#ifdef _WIN32
811 WSAEVENT *events;
812#else
Andy Green7acf76c2016-07-23 14:18:25 +0800813 lws_sockfd_type dummy_pipe_fds[2];
Andy Greend3a55052016-01-19 03:34:24 +0800814#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800815 unsigned int fds_count;
816
817 short ah_count_in_use;
Andy Green38a1cbb2016-02-27 11:03:27 +0800818 unsigned char tid;
Andy Greenbbf93692016-08-07 08:33:08 +0800819 unsigned char lock_depth;
Andy Greend3a55052016-01-19 03:34:24 +0800820};
821
Andy Greenbe9fb912016-12-16 07:37:43 +0800822struct lws_conn_stats {
823 unsigned long long rx, tx;
824 unsigned long conn, trans, ws_upg, http2_upg, rejected;
825};
826
827void
828lws_sum_stats(const struct lws_context *ctx, struct lws_conn_stats *cs);
829
Andy Greend526c502016-03-28 10:10:43 +0800830/*
831 * virtual host -related context information
832 * vhostwide SSL context
833 * vhostwide proxy
834 *
Peter Pentchevfb71b792016-10-02 02:21:03 +0300835 * hierarchy:
Andy Greend526c502016-03-28 10:10:43 +0800836 *
837 * context -> vhost -> wsi
838 *
839 * incoming connection non-SSL vhost binding:
840 *
841 * listen socket -> wsi -> select vhost after first headers
842 *
843 * incoming connection SSL vhost binding:
844 *
845 * SSL SNI -> wsi -> bind after SSL negotiation
846 */
847
848struct lws_vhost {
Andy Green7acf76c2016-07-23 14:18:25 +0800849#if !defined(LWS_WITH_ESP8266)
Andy Greend526c502016-03-28 10:10:43 +0800850 char http_proxy_address[128];
851 char proxy_basic_auth_token[128];
Andy Ninged92b6d2017-05-05 11:38:34 -0400852#if defined(LWS_WITH_SOCKS5)
853 char socks_proxy_address[128];
854 char socks_user[96];
855 char socks_password[96];
856#endif
Andy Green7acf76c2016-07-23 14:18:25 +0800857#endif
858#if defined(LWS_WITH_ESP8266)
859 /* listen sockets need a place to hang their hat */
860 esp_tcp tcp;
861#endif
Andy Greenbe9fb912016-12-16 07:37:43 +0800862 struct lws_conn_stats conn_stats;
Andy Greend526c502016-03-28 10:10:43 +0800863 struct lws_context *context;
864 struct lws_vhost *vhost_next;
Andy Green4664f712016-05-02 04:59:54 +0800865 const struct lws_http_mount *mount_list;
Andy Greend526c502016-03-28 10:10:43 +0800866 struct lws *lserv_wsi;
867 const char *name;
868 const char *iface;
Leonardo Maccari Rufino393b38a2017-06-02 14:07:35 -0300869#if !defined(LWS_WITH_ESP8266) && !defined(LWS_WITH_ESP32) && !defined(OPTEE_TA) && !defined(WIN32)
870 int bind_iface;
871#endif
Andy Greend526c502016-03-28 10:10:43 +0800872 const struct lws_protocols *protocols;
Andy Green02077052016-04-06 16:15:40 +0800873 void **protocol_vh_privs;
Andy Green952fcde2016-05-02 06:01:59 +0800874 const struct lws_protocol_vhost_options *pvo;
Andy Greene35d91a2016-08-27 17:07:06 +0800875 const struct lws_protocol_vhost_options *headers;
Andy Green4714cf02016-04-16 08:40:35 +0800876 struct lws **same_vh_protocol_list;
Andy Greend526c502016-03-28 10:10:43 +0800877#ifdef LWS_OPENSSL_SUPPORT
878 SSL_CTX *ssl_ctx;
879 SSL_CTX *ssl_client_ctx;
880#endif
881#ifndef LWS_NO_EXTENSIONS
882 const struct lws_extension *extensions;
883#endif
884
885 int listen_port;
886 unsigned int http_proxy_port;
Andy Ninged92b6d2017-05-05 11:38:34 -0400887#if defined(LWS_WITH_SOCKS5)
888 unsigned int socks_proxy_port;
889#endif
Andy Greencc3c6fb2016-04-14 15:09:01 +0800890 unsigned int options;
Andy Greend526c502016-03-28 10:10:43 +0800891 int count_protocols;
892 int ka_time;
893 int ka_probes;
894 int ka_interval;
Andy Greenb46e4a82016-04-12 16:26:03 +0800895 int keepalive_timeout;
Andy Greenba45f7c2017-07-26 11:49:41 +0800896 int timeout_secs_ah_idle;
Andy Green3ff720f2017-06-20 11:46:49 +0800897 int ssl_info_event_mask;
Andy Green2f0bc932016-04-15 12:00:23 +0800898#ifdef LWS_WITH_ACCESS_LOG
899 int log_fd;
900#endif
Andy Greend526c502016-03-28 10:10:43 +0800901
902#ifdef LWS_OPENSSL_SUPPORT
903 int use_ssl;
904 int allow_non_ssl_on_ssl_port;
905 unsigned int user_supplied_ssl_ctx:1;
906#endif
Andy Greenf32d2502016-07-15 13:41:38 +0800907
Bablooos6e436dc2016-11-30 07:05:13 +0800908 unsigned int created_vhost_protocols:1;
Andy Greenfaa15262017-07-15 14:37:04 +0800909 unsigned int being_destroyed:1;
Bablooos6e436dc2016-11-30 07:05:13 +0800910
Andy Greenf6585282016-05-06 14:24:59 +0800911 unsigned char default_protocol_index;
Andy Green205cced2017-03-07 16:06:05 +0800912 unsigned char raw_protocol_index;
Andy Greend526c502016-03-28 10:10:43 +0800913};
914
Andy Greenfaa15262017-07-15 14:37:04 +0800915struct lws_deferred_free
916{
917 struct lws_deferred_free *next;
918 time_t deadline;
919 void *payload;
920};
921
Andy Greend3a55052016-01-19 03:34:24 +0800922/*
923 * the rest is managed per-context, that includes
924 *
925 * - processwide single fd -> wsi lookup
926 * - contextwide headers pool
Andy Greend3a55052016-01-19 03:34:24 +0800927 */
928
Andy Green4b85c1d2015-12-04 11:08:32 +0800929struct lws_context {
Andy Greenaa775fd2015-12-26 08:56:58 +0800930 time_t last_timeout_check_s;
Andy Greenf32d2502016-07-15 13:41:38 +0800931 time_t last_ws_ping_pong_check_s;
Andy Green98061402016-04-15 14:01:29 +0800932 time_t time_up;
Andy Green1ada1322017-03-01 14:28:56 +0800933 const struct lws_plat_file_ops *fops;
Andy Green19cc7ac2017-03-03 12:38:10 +0800934 struct lws_plat_file_ops fops_platform;
935#if defined(LWS_WITH_ZIP_FOPS)
936 struct lws_plat_file_ops fops_zip;
937#endif
Andy Greend3a55052016-01-19 03:34:24 +0800938 struct lws_context_per_thread pt[LWS_MAX_SMP];
Andy Greenbe9fb912016-12-16 07:37:43 +0800939 struct lws_conn_stats conn_stats;
Bud Davis229bfec2015-01-30 10:13:01 +0800940#ifdef _WIN32
941/* different implementation between unix and windows */
Andy Green3ef579b2015-12-04 09:23:56 +0800942 struct lws_fd_hashtable fd_hashtable[FD_HASHTABLE_MODULUS];
Bud Davis229bfec2015-01-30 10:13:01 +0800943#else
Andy Green7acf76c2016-07-23 14:18:25 +0800944#if defined(LWS_WITH_ESP8266)
945 struct espconn **connpool; /* .reverse points to the wsi */
946 void *rxd;
947 int rxd_len;
948 os_timer_t to_timer;
949#else
Andy Green4b85c1d2015-12-04 11:08:32 +0800950 struct lws **lws_lookup; /* fd to wsi */
Bud Davis229bfec2015-01-30 10:13:01 +0800951#endif
Andy Green7acf76c2016-07-23 14:18:25 +0800952#endif
Andy Greend526c502016-03-28 10:10:43 +0800953 struct lws_vhost *vhost_list;
Andy Greenfaa15262017-07-15 14:37:04 +0800954 struct lws_vhost *vhost_pending_destruction_list;
Andy Green02077052016-04-06 16:15:40 +0800955 struct lws_plugin *plugin_list;
Andy Greenfaa15262017-07-15 14:37:04 +0800956 struct lws_deferred_free *deferred_free_list;
Andy Greenbe9fb912016-12-16 07:37:43 +0800957
Andy Green69c88d92016-12-04 07:34:05 +0800958 void *external_baggage_free_on_destroy;
Andy Greenaa775fd2015-12-26 08:56:58 +0800959 const struct lws_token_limits *token_limits;
960 void *user_space;
Andy Greenb21c20b2016-04-15 13:33:52 +0800961 const char *server_string;
Andy Green3b93e342016-10-13 06:32:57 +0800962 const struct lws_protocol_vhost_options *reject_service_keywords;
Andy Greenbe9fb912016-12-16 07:37:43 +0800963 lws_reload_func deprecation_cb;
Andy Greend738f842016-01-19 04:32:14 +0800964
Andy Green156363f2017-06-07 06:10:02 +0800965#if defined(LWS_HAVE_SYS_CAPABILITY_H) && defined(LWS_HAVE_LIBCAP)
966 cap_value_t caps[4];
967 char count_caps;
968#endif
969
Andy Green86ed65f2016-02-14 09:27:41 +0800970#if defined(LWS_USE_LIBEV)
971 lws_ev_signal_cb_t * lws_ev_sigint_cb;
972#endif
973#if defined(LWS_USE_LIBUV)
Denis Osvaldf107e4b2016-03-22 14:04:15 +0100974 uv_signal_cb lws_uv_sigint_cb;
Andy Greend5f960f2017-07-15 17:57:14 +0800975 uv_loop_t pu_loop;
Andy Green86ed65f2016-02-14 09:27:41 +0800976#endif
Aditya Tirumalaec50eba2017-03-15 19:41:11 +0530977#if defined(LWS_USE_LIBEVENT)
978 lws_event_signal_cb_t * lws_event_sigint_cb;
979#endif
Andy Greenaa775fd2015-12-26 08:56:58 +0800980 char canonical_hostname[128];
981#ifdef LWS_LATENCY
982 unsigned long worst_latency;
983 char worst_latency_info[256];
984#endif
Andy Greenb8b247d2013-01-22 07:20:08 +0800985
Andy Greena7def3c2017-05-07 10:02:03 +0800986#if defined(LWS_WITH_STATS)
987 uint64_t lws_stats[LWSSTATS_SIZE];
988 uint64_t last_dump;
989 int updated;
990#endif
991
Andy Greenaa775fd2015-12-26 08:56:58 +0800992 int max_fds;
Aditya Tirumalaec50eba2017-03-15 19:41:11 +0530993#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) || defined(LWS_USE_LIBEVENT)
Andy Greenaa775fd2015-12-26 08:56:58 +0800994 int use_ev_sigint;
995#endif
Andy Green24cba922013-01-19 13:56:10 +0800996 int started_with_parent;
Andy Greend526c502016-03-28 10:10:43 +0800997 int uid, gid;
Andy Green24cba922013-01-19 13:56:10 +0800998
Andy Green44eee682011-02-10 09:32:24 +0000999 int fd_random;
Andy Greend526c502016-03-28 10:10:43 +08001000#ifdef LWS_OPENSSL_SUPPORT
1001#define lws_ssl_anybody_has_buffered_read(w) \
1002 (w->vhost->use_ssl && \
1003 w->context->pt[(int)w->tsi].pending_read_list)
1004#define lws_ssl_anybody_has_buffered_read_tsi(c, t) \
1005 (/*c->use_ssl && */ \
1006 c->pt[(int)t].pending_read_list)
1007#else
1008#define lws_ssl_anybody_has_buffered_read(ctx) (0)
1009#define lws_ssl_anybody_has_buffered_read_tsi(ctx, t) (0)
1010#endif
Andy Green86ed65f2016-02-14 09:27:41 +08001011 int count_wsi_allocated;
Andy Green748a2212016-04-20 06:10:56 +08001012 int count_cgi_spawned;
Andy Greenaa775fd2015-12-26 08:56:58 +08001013 unsigned int options;
Andy Greend3a55052016-01-19 03:34:24 +08001014 unsigned int fd_limit_per_thread;
Andy Green200a6a22016-02-15 20:36:02 +08001015 unsigned int timeout_secs;
Andy Greene7c1c752016-05-19 12:34:35 +08001016 unsigned int pt_serv_buf_size;
Andy Green48895662016-06-02 12:32:38 +08001017 int max_http_header_data;
Andy Green00ae9092017-03-16 10:46:31 +08001018 int simultaneous_ssl_restriction;
1019 int simultaneous_ssl;
Andy Green6ee372f2012-04-09 15:09:01 +08001020
Andy Greenbe9fb912016-12-16 07:37:43 +08001021 unsigned int deprecated:1;
1022 unsigned int being_destroyed:1;
1023 unsigned int being_destroyed1:1;
1024 unsigned int requested_kill:1;
1025 unsigned int protocol_init_done:1;
Andy Greenfbc1ff62017-05-15 07:30:06 +08001026 unsigned int ssl_gate_accepts:1;
Patrick Gansterer1ee57f62014-03-06 11:57:50 +01001027 /*
1028 * set to the Thread ID that's doing the service loop just before entry
1029 * to poll indicates service thread likely idling in poll()
1030 * volatile because other threads may check it as part of processing
1031 * for pollfd event change.
1032 */
1033 volatile int service_tid;
Andy Greenc35b36b2015-12-24 13:00:54 +08001034 int service_tid_detected;
Patrick Gansterer1ee57f62014-03-06 11:57:50 +01001035
Andy Green3df58002015-12-25 12:44:12 +08001036 short max_http_header_pool;
Andy Greend3a55052016-01-19 03:34:24 +08001037 short count_threads;
Andy Green02077052016-04-06 16:15:40 +08001038 short plugin_protocol_count;
1039 short plugin_extension_count;
Andy Greenb21c20b2016-04-15 13:33:52 +08001040 short server_string_len;
Andy Greenf32d2502016-07-15 13:41:38 +08001041 unsigned short ws_ping_pong_interval;
Andy Greenbe9fb912016-12-16 07:37:43 +08001042 unsigned short deprecation_pending_listen_close_count;
Andy Green19cc7ac2017-03-03 12:38:10 +08001043 uint8_t max_fi;
Andy Greenb45993c2010-12-18 15:13:50 +00001044};
1045
Andy Greenfaa15262017-07-15 14:37:04 +08001046int
1047lws_check_deferred_free(struct lws_context *context, int force);
1048
Andy Greend526c502016-03-28 10:10:43 +08001049#define lws_get_context_protocol(ctx, x) ctx->vhost_list->protocols[x]
1050#define lws_get_vh_protocol(vh, x) vh->protocols[x]
1051
Andy Green86ed65f2016-02-14 09:27:41 +08001052LWS_EXTERN void
1053lws_close_free_wsi_final(struct lws *wsi);
1054LWS_EXTERN void
1055lws_libuv_closehandle(struct lws *wsi);
Andy Greenede9ad22017-06-23 10:27:52 +08001056LWS_EXTERN void
1057lws_libuv_closehandle_manually(struct lws *wsi);
1058LWS_EXTERN int
1059lws_libuv_check_watcher_active(struct lws *wsi);
Andy Green86ed65f2016-02-14 09:27:41 +08001060
Andy Green0a183542016-04-09 07:22:40 +08001061LWS_VISIBLE LWS_EXTERN int
Andy Greencae57ad2016-05-02 10:03:25 +08001062lws_plat_plugins_init(struct lws_context * context, const char * const *d);
Andy Green0a183542016-04-09 07:22:40 +08001063
1064LWS_VISIBLE LWS_EXTERN int
1065lws_plat_plugins_destroy(struct lws_context * context);
1066
Andy Greenf32d2502016-07-15 13:41:38 +08001067LWS_EXTERN void
1068lws_restart_ws_ping_pong_timer(struct lws *wsi);
1069
Andy Green7acf76c2016-07-23 14:18:25 +08001070struct lws *
1071lws_adopt_socket_vhost(struct lws_vhost *vh, lws_sockfd_type accept_fd);
1072
1073
Andy Greena717df22014-04-11 13:14:37 +08001074enum {
1075 LWS_EV_READ = (1 << 0),
1076 LWS_EV_WRITE = (1 << 1),
1077 LWS_EV_START = (1 << 2),
1078 LWS_EV_STOP = (1 << 3),
Andy Green86ed65f2016-02-14 09:27:41 +08001079
1080 LWS_EV_PREPARE_DELETION = (1 << 31),
Andy Greena717df22014-04-11 13:14:37 +08001081};
1082
Andy Green86ed65f2016-02-14 09:27:41 +08001083#if defined(LWS_USE_LIBEV)
Andy Greena717df22014-04-11 13:14:37 +08001084LWS_EXTERN void
Andy Greenbe8d7912017-02-27 12:55:56 +08001085lws_libev_accept(struct lws *new_wsi, lws_sock_file_fd_type desc);
Andy Green04054b42017-03-03 08:18:16 +08001086LWS_EXTERN void
Andy Green11c05bf2015-12-16 18:19:08 +08001087lws_libev_io(struct lws *wsi, int flags);
Andy Greena717df22014-04-11 13:14:37 +08001088LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001089lws_libev_init_fd_table(struct lws_context *context);
Andy Greena717df22014-04-11 13:14:37 +08001090LWS_EXTERN void
Andy Green86ed65f2016-02-14 09:27:41 +08001091lws_libev_destroyloop(struct lws_context *context, int tsi);
1092LWS_EXTERN void
1093lws_libev_run(const struct lws_context *context, int tsi);
Andy Greenc6fd3602016-03-23 09:22:11 +08001094#define LWS_LIBEV_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBEV)
Andy Green86ed65f2016-02-14 09:27:41 +08001095LWS_EXTERN void lws_feature_status_libev(struct lws_context_creation_info *info);
Andrew Canaday9769f4f2014-03-23 13:25:07 +08001096#else
Andy Green86ed65f2016-02-14 09:27:41 +08001097#define lws_libev_accept(_a, _b) ((void) 0)
1098#define lws_libev_io(_a, _b) ((void) 0)
1099#define lws_libev_init_fd_table(_a) (0)
1100#define lws_libev_run(_a, _b) ((void) 0)
1101#define lws_libev_destroyloop(_a, _b) ((void) 0)
Andrew Canaday9769f4f2014-03-23 13:25:07 +08001102#define LWS_LIBEV_ENABLED(context) (0)
Andy Greenc7c4ae02017-02-18 17:26:40 +08001103#if LWS_POSIX && !defined(LWS_WITH_ESP32)
Andy Greena717df22014-04-11 13:14:37 +08001104#define lws_feature_status_libev(_a) \
1105 lwsl_notice("libev support not compiled in\n")
Andy Green8c0d3c02015-11-02 20:34:12 +08001106#else
1107#define lws_feature_status_libev(_a)
1108#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +08001109#endif
1110
Andy Green86ed65f2016-02-14 09:27:41 +08001111#if defined(LWS_USE_LIBUV)
1112LWS_EXTERN void
Andy Greenbe8d7912017-02-27 12:55:56 +08001113lws_libuv_accept(struct lws *new_wsi, lws_sock_file_fd_type desc);
Andy Green86ed65f2016-02-14 09:27:41 +08001114LWS_EXTERN void
1115lws_libuv_io(struct lws *wsi, int flags);
1116LWS_EXTERN int
1117lws_libuv_init_fd_table(struct lws_context *context);
1118LWS_EXTERN void
1119lws_libuv_run(const struct lws_context *context, int tsi);
1120LWS_EXTERN void
1121lws_libuv_destroyloop(struct lws_context *context, int tsi);
Bablooos6e436dc2016-11-30 07:05:13 +08001122LWS_EXTERN int
1123lws_uv_initvhost(struct lws_vhost* vh, struct lws*);
Andy Greenc6fd3602016-03-23 09:22:11 +08001124#define LWS_LIBUV_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBUV)
Andy Green86ed65f2016-02-14 09:27:41 +08001125LWS_EXTERN void lws_feature_status_libuv(struct lws_context_creation_info *info);
1126#else
1127#define lws_libuv_accept(_a, _b) ((void) 0)
1128#define lws_libuv_io(_a, _b) ((void) 0)
1129#define lws_libuv_init_fd_table(_a) (0)
1130#define lws_libuv_run(_a, _b) ((void) 0)
1131#define lws_libuv_destroyloop(_a, _b) ((void) 0)
1132#define LWS_LIBUV_ENABLED(context) (0)
Andy Greenc7c4ae02017-02-18 17:26:40 +08001133#if LWS_POSIX && !defined(LWS_WITH_ESP32)
Andy Green86ed65f2016-02-14 09:27:41 +08001134#define lws_feature_status_libuv(_a) \
1135 lwsl_notice("libuv support not compiled in\n")
1136#else
1137#define lws_feature_status_libuv(_a)
1138#endif
1139#endif
1140
Aditya Tirumalaec50eba2017-03-15 19:41:11 +05301141#if defined(LWS_USE_LIBEVENT)
1142LWS_EXTERN void
1143lws_libevent_accept(struct lws *new_wsi, lws_sock_file_fd_type desc);
1144LWS_EXTERN void
1145lws_libevent_io(struct lws *wsi, int flags);
1146LWS_EXTERN int
1147lws_libevent_init_fd_table(struct lws_context *context);
1148LWS_EXTERN void
1149lws_libevent_destroyloop(struct lws_context *context, int tsi);
1150LWS_EXTERN void
1151lws_libevent_run(const struct lws_context *context, int tsi);
1152#define LWS_LIBEVENT_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBEVENT)
1153LWS_EXTERN void lws_feature_status_libevent(struct lws_context_creation_info *info);
1154#else
1155#define lws_libevent_accept(_a, _b) ((void) 0)
1156#define lws_libevent_io(_a, _b) ((void) 0)
1157#define lws_libevent_init_fd_table(_a) (0)
1158#define lws_libevent_run(_a, _b) ((void) 0)
1159#define lws_libevent_destroyloop(_a, _b) ((void) 0)
1160#define LWS_LIBEVENT_ENABLED(context) (0)
1161#if LWS_POSIX && !defined(LWS_WITH_ESP32)
1162#define lws_feature_status_libevent(_a) \
1163 lwsl_notice("libevent support not compiled in\n")
1164#else
1165#define lws_feature_status_libevent(_a)
1166#endif
1167#endif
1168
Andy Green86ed65f2016-02-14 09:27:41 +08001169
Andy Green055f2972014-03-24 16:09:25 +08001170#ifdef LWS_USE_IPV6
Andy Green2dc7dde2016-06-03 21:19:40 +08001171#define LWS_IPV6_ENABLED(vh) \
Denis Osvaldc16c6c82016-06-03 17:40:12 +02001172 (!lws_check_opt(vh->context->options, LWS_SERVER_OPTION_DISABLE_IPV6) && \
Andy Green2dc7dde2016-06-03 21:19:40 +08001173 !lws_check_opt(vh->options, LWS_SERVER_OPTION_DISABLE_IPV6))
James Devine3f13ea22014-03-24 16:09:25 +08001174#else
1175#define LWS_IPV6_ENABLED(context) (0)
1176#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +08001177
Yeonjun Lim3c6a8c12016-03-30 22:47:02 -07001178#ifdef LWS_USE_UNIX_SOCK
Andy Green144594d2016-04-14 12:11:51 +08001179#define LWS_UNIX_SOCK_ENABLED(vhost) \
1180 (vhost->options & LWS_SERVER_OPTION_UNIX_SOCK)
Yeonjun Lim3c6a8c12016-03-30 22:47:02 -07001181#else
Andy Green144594d2016-04-14 12:11:51 +08001182#define LWS_UNIX_SOCK_ENABLED(vhost) (0)
Yeonjun Lim3c6a8c12016-03-30 22:47:02 -07001183#endif
Andy Green3ff720f2017-06-20 11:46:49 +08001184
Andy Greenc70f6692017-06-20 15:56:48 +08001185typedef union {
1186#ifdef LWS_USE_IPV6
1187 struct sockaddr_in6 sa6;
1188#endif
1189 struct sockaddr_in sa4;
1190} sockaddr46;
1191
Andy Greenb1a9e502013-11-10 15:15:21 +08001192enum uri_path_states {
1193 URIPS_IDLE,
1194 URIPS_SEEN_SLASH,
1195 URIPS_SEEN_SLASH_DOT,
1196 URIPS_SEEN_SLASH_DOT_DOT,
1197};
1198
1199enum uri_esc_states {
1200 URIES_IDLE,
1201 URIES_SEEN_PERCENT,
1202 URIES_SEEN_PERCENT_H1,
1203};
Andy Greenf3d3b402011-02-09 07:16:34 +00001204
Andy Green024eb6c2014-10-08 12:00:53 +08001205/* notice that these union members:
Andy Green40110e82015-12-14 08:52:03 +08001206 *
Andy Green024eb6c2014-10-08 12:00:53 +08001207 * hdr
1208 * http
1209 * http2
Andy Green40110e82015-12-14 08:52:03 +08001210 *
Andy Green024eb6c2014-10-08 12:00:53 +08001211 * all have a pointer to allocated_headers struct as their first member.
Andy Green40110e82015-12-14 08:52:03 +08001212 *
Andy Green024eb6c2014-10-08 12:00:53 +08001213 * It means for allocated_headers access, the three union paths can all be
Peter Pentchevbb085da2015-12-03 15:55:11 +02001214 * used interchangeably to access the same data
Andy Green024eb6c2014-10-08 12:00:53 +08001215 */
1216
Andy Greena661ee52016-02-29 13:18:30 +08001217
1218#ifndef LWS_NO_CLIENT
1219struct client_info_stash {
1220 char address[256];
sjames1958gm0fdca9f2016-11-21 09:23:17 -06001221 char path[4096];
Andy Greena661ee52016-02-29 13:18:30 +08001222 char host[256];
1223 char origin[256];
1224 char protocol[256];
1225 char method[16];
Andy Green449eec92017-06-14 09:45:30 +08001226 char iface[16];
Andy Greena661ee52016-02-29 13:18:30 +08001227};
1228#endif
1229
Andy Green2d8d35a2016-02-29 14:19:16 +08001230struct _lws_header_related {
1231 /* MUST be first in struct */
1232 struct allocated_headers *ah;
1233 struct lws *ah_wait_list;
1234 unsigned char *preamble_rx;
1235#ifndef LWS_NO_CLIENT
1236 struct client_info_stash *stash;
1237#endif
1238 unsigned int preamble_rx_len;
1239 enum uri_path_states ups;
1240 enum uri_esc_states ues;
1241 short lextable_pos;
Andy Green48895662016-06-02 12:32:38 +08001242 unsigned int current_token_limit;
Andy Green3e0006c2017-02-22 06:55:12 +08001243
Andy Green2d8d35a2016-02-29 14:19:16 +08001244 char esc_stash;
1245 char post_literal_equal;
1246 unsigned char parser_state; /* enum lws_token_indexes */
Andy Green2d8d35a2016-02-29 14:19:16 +08001247};
1248
Andy Greened4acef2016-12-12 13:36:25 +08001249#if defined(LWS_WITH_RANGES)
1250enum range_states {
1251 LWSRS_NO_ACTIVE_RANGE,
1252 LWSRS_BYTES_EQ,
1253 LWSRS_FIRST,
1254 LWSRS_STARTING,
1255 LWSRS_ENDING,
1256 LWSRS_COMPLETED,
1257 LWSRS_SYNTAX,
1258};
1259
1260struct lws_range_parsing {
1261 unsigned long long start, end, extent, agg, budget;
1262 const char buf[128];
1263 int pos;
1264 enum range_states state;
1265 char start_valid, end_valid, ctr, count_ranges, did_try, inside, send_ctr;
1266};
1267
1268int
1269lws_ranges_init(struct lws *wsi, struct lws_range_parsing *rp, unsigned long long extent);
1270int
1271lws_ranges_next(struct lws_range_parsing *rp);
1272void
1273lws_ranges_reset(struct lws_range_parsing *rp);
1274#endif
1275
Andy Green84fd9492013-11-09 11:40:32 +08001276struct _lws_http_mode_related {
Andy Green024eb6c2014-10-08 12:00:53 +08001277 /* MUST be first in struct */
Andy Green84fd9492013-11-09 11:40:32 +08001278 struct allocated_headers *ah; /* mirroring _lws_header_related */
Andy Green8c1f6022016-01-26 20:56:56 +08001279 struct lws *ah_wait_list;
Andy Green2d8d35a2016-02-29 14:19:16 +08001280 unsigned char *preamble_rx;
1281#ifndef LWS_NO_CLIENT
1282 struct client_info_stash *stash;
1283#endif
1284 unsigned int preamble_rx_len;
Andy Green8c1f6022016-01-26 20:56:56 +08001285 struct lws *new_wsi_list;
Andy Green1789d0a2017-02-25 12:42:45 +08001286 lws_filepos_t filepos;
1287 lws_filepos_t filelen;
1288 lws_fop_fd_t fop_fd;
kapejodce64fb02013-11-19 13:38:16 +01001289
Andy Greened4acef2016-12-12 13:36:25 +08001290#if defined(LWS_WITH_RANGES)
1291 struct lws_range_parsing range;
1292 char multipart_content_type[64];
1293#endif
1294
Andrew Canadayafe26cf2014-07-13 01:07:36 -04001295 enum http_version request_version;
1296 enum http_connection_type connection_type;
Andy Green02638f62017-06-07 07:57:19 +08001297 lws_filepos_t content_length;
1298 lws_filepos_t content_remain;
Andy Green84fd9492013-11-09 11:40:32 +08001299};
1300
Andy Green024eb6c2014-10-08 12:00:53 +08001301#ifdef LWS_USE_HTTP2
1302
1303enum lws_http2_settings {
1304 LWS_HTTP2_SETTINGS__HEADER_TABLE_SIZE = 1,
1305 LWS_HTTP2_SETTINGS__ENABLE_PUSH,
1306 LWS_HTTP2_SETTINGS__MAX_CONCURRENT_STREAMS,
1307 LWS_HTTP2_SETTINGS__INITIAL_WINDOW_SIZE,
1308 LWS_HTTP2_SETTINGS__MAX_FRAME_SIZE,
1309 LWS_HTTP2_SETTINGS__MAX_HEADER_LIST_SIZE,
Andy Green40110e82015-12-14 08:52:03 +08001310
Andy Green024eb6c2014-10-08 12:00:53 +08001311 LWS_HTTP2_SETTINGS__COUNT /* always last */
Andy Greena54f2322014-09-30 09:43:14 +08001312};
1313
Andy Green024eb6c2014-10-08 12:00:53 +08001314enum lws_http2_wellknown_frame_types {
1315 LWS_HTTP2_FRAME_TYPE_DATA,
1316 LWS_HTTP2_FRAME_TYPE_HEADERS,
1317 LWS_HTTP2_FRAME_TYPE_PRIORITY,
1318 LWS_HTTP2_FRAME_TYPE_RST_STREAM,
1319 LWS_HTTP2_FRAME_TYPE_SETTINGS,
1320 LWS_HTTP2_FRAME_TYPE_PUSH_PROMISE,
1321 LWS_HTTP2_FRAME_TYPE_PING,
1322 LWS_HTTP2_FRAME_TYPE_GOAWAY,
1323 LWS_HTTP2_FRAME_TYPE_WINDOW_UPDATE,
1324 LWS_HTTP2_FRAME_TYPE_CONTINUATION,
Andy Green40110e82015-12-14 08:52:03 +08001325
Andy Green024eb6c2014-10-08 12:00:53 +08001326 LWS_HTTP2_FRAME_TYPE_COUNT /* always last */
1327};
1328
Andy Green91b05892014-10-17 08:38:44 +08001329enum lws_http2_flags {
1330 LWS_HTTP2_FLAG_END_STREAM = 1,
1331 LWS_HTTP2_FLAG_END_HEADERS = 4,
1332 LWS_HTTP2_FLAG_PADDED = 8,
1333 LWS_HTTP2_FLAG_PRIORITY = 0x20,
1334
1335 LWS_HTTP2_FLAG_SETTINGS_ACK = 1,
1336};
1337
Andy Green024eb6c2014-10-08 12:00:53 +08001338#define LWS_HTTP2_STREAM_ID_MASTER 0
1339#define LWS_HTTP2_FRAME_HEADER_LENGTH 9
1340#define LWS_HTTP2_SETTINGS_LENGTH 6
1341
1342struct http2_settings {
1343 unsigned int setting[LWS_HTTP2_SETTINGS__COUNT];
1344};
1345
Andy Greenecc2e722014-10-09 16:57:47 +08001346enum http2_hpack_state {
Andy Green40110e82015-12-14 08:52:03 +08001347
Andy Green200f3852014-10-18 12:23:05 +08001348 /* optional before first header block */
1349 HPKS_OPT_PADDING,
1350 HKPS_OPT_E_DEPENDENCY,
1351 HKPS_OPT_WEIGHT,
Andy Green40110e82015-12-14 08:52:03 +08001352
Andy Green200f3852014-10-18 12:23:05 +08001353 /* header block */
Andy Greenecc2e722014-10-09 16:57:47 +08001354 HPKS_TYPE,
Andy Green40110e82015-12-14 08:52:03 +08001355
Andy Green2add6342014-10-12 08:38:16 +08001356 HPKS_IDX_EXT,
Andy Green40110e82015-12-14 08:52:03 +08001357
Andy Greenecc2e722014-10-09 16:57:47 +08001358 HPKS_HLEN,
1359 HPKS_HLEN_EXT,
1360
1361 HPKS_DATA,
Andy Green40110e82015-12-14 08:52:03 +08001362
Andy Green200f3852014-10-18 12:23:05 +08001363 /* optional after last header block */
1364 HKPS_OPT_DISCARD_PADDING,
Andy Greenecc2e722014-10-09 16:57:47 +08001365};
1366
Andy Green2add6342014-10-12 08:38:16 +08001367enum http2_hpack_type {
1368 HPKT_INDEXED_HDR_7,
1369 HPKT_INDEXED_HDR_6_VALUE_INCR,
1370 HPKT_LITERAL_HDR_VALUE_INCR,
1371 HPKT_INDEXED_HDR_4_VALUE,
1372 HPKT_LITERAL_HDR_VALUE,
1373 HPKT_SIZE_5
1374};
1375
Andy Green200f3852014-10-18 12:23:05 +08001376struct hpack_dt_entry {
1377 int token; /* additions that don't map to a token are ignored */
1378 int arg_offset;
1379 int arg_len;
1380};
1381
1382struct hpack_dynamic_table {
1383 struct hpack_dt_entry *entries;
1384 char *args;
1385 int pos;
1386 int next;
1387 int num_entries;
1388 int args_length;
1389};
1390
Andy Green024eb6c2014-10-08 12:00:53 +08001391struct _lws_http2_related {
Andy Green40110e82015-12-14 08:52:03 +08001392 /*
Andy Green024eb6c2014-10-08 12:00:53 +08001393 * having this first lets us also re-use all HTTP union code
1394 * and in turn, http_mode_related has allocated headers in right
1395 * place so we can use the header apis on the wsi directly still
1396 */
1397 struct _lws_http_mode_related http; /* MUST BE FIRST IN STRUCT */
1398
1399 struct http2_settings my_settings;
1400 struct http2_settings peer_settings;
Andy Green40110e82015-12-14 08:52:03 +08001401
Andy Green4b85c1d2015-12-04 11:08:32 +08001402 struct lws *parent_wsi;
1403 struct lws *next_child_wsi;
Andy Green024eb6c2014-10-08 12:00:53 +08001404
Andy Green200f3852014-10-18 12:23:05 +08001405 struct hpack_dynamic_table *hpack_dyn_table;
Andy Greenaa775fd2015-12-26 08:56:58 +08001406 struct lws *stream_wsi;
1407 unsigned char ping_payload[8];
1408 unsigned char one_setting[LWS_HTTP2_SETTINGS_LENGTH];
Andy Green40110e82015-12-14 08:52:03 +08001409
Andy Green024eb6c2014-10-08 12:00:53 +08001410 unsigned int count;
Andy Green024eb6c2014-10-08 12:00:53 +08001411 unsigned int length;
1412 unsigned int stream_id;
Andy Greenaa775fd2015-12-26 08:56:58 +08001413 enum http2_hpack_state hpack;
1414 enum http2_hpack_type hpack_type;
1415 unsigned int header_index;
1416 unsigned int hpack_len;
1417 unsigned int hpack_e_dep;
1418 int tx_credit;
1419 unsigned int my_stream_id;
1420 unsigned int child_count;
1421 int my_priority;
Andy Green67112662016-01-11 11:34:01 +08001422
Andy Green91b05892014-10-17 08:38:44 +08001423 unsigned int END_STREAM:1;
1424 unsigned int END_HEADERS:1;
Andy Green1cea5812014-10-19 07:36:20 +08001425 unsigned int send_END_STREAM:1;
Andy Green7df53c52014-10-22 15:37:28 +08001426 unsigned int GOING_AWAY;
1427 unsigned int requested_POLLOUT:1;
Andy Green97ee57f2014-10-29 09:39:08 +08001428 unsigned int waiting_tx_credit:1;
Andy Greenecc2e722014-10-09 16:57:47 +08001429 unsigned int huff:1;
1430 unsigned int value:1;
Andy Green40110e82015-12-14 08:52:03 +08001431
Andy Greenaa775fd2015-12-26 08:56:58 +08001432 unsigned short round_robin_POLLOUT;
1433 unsigned short count_POLLOUT_children;
1434 unsigned short hpack_pos;
1435
1436 unsigned char type;
1437 unsigned char flags;
1438 unsigned char frame_state;
1439 unsigned char padding;
1440 unsigned char hpack_m;
Andy Green024eb6c2014-10-08 12:00:53 +08001441 unsigned char initialized;
Andy Green024eb6c2014-10-08 12:00:53 +08001442};
1443
Andy Green7df53c52014-10-22 15:37:28 +08001444#define HTTP2_IS_TOPLEVEL_WSI(wsi) (!wsi->u.http2.parent_wsi)
Andy Green024eb6c2014-10-08 12:00:53 +08001445
1446#endif
1447
Andy Green623a98d2013-01-21 11:04:23 +08001448struct _lws_websocket_related {
Andy Green2c218e72016-02-15 12:37:04 +08001449 /* cheapest way to deal with ah overlap with ws union transition */
Andy Green26d42492016-02-24 12:40:21 +08001450 struct _lws_header_related hdr;
Andy Green67112662016-01-11 11:34:01 +08001451 char *rx_ubuf;
Andy Green4019aab2016-01-30 11:43:10 +08001452 unsigned int rx_ubuf_alloc;
Andy Green67112662016-01-11 11:34:01 +08001453 struct lws *rx_draining_ext_list;
1454 struct lws *tx_draining_ext_list;
Andy Greenf32d2502016-07-15 13:41:38 +08001455 time_t time_next_ping_check;
Andy Greende132b92015-12-25 13:48:20 +08001456 size_t rx_packet_length;
Andy Green67112662016-01-11 11:34:01 +08001457 unsigned int rx_ubuf_head;
1458 unsigned char mask[4];
Andy Green1fb95e82015-12-26 17:20:34 +08001459 /* Also used for close content... control opcode == < 128 */
Andy Green67112662016-01-11 11:34:01 +08001460 unsigned char ping_payload_buf[128 - 3 + LWS_PRE];
Andy Green1fb95e82015-12-26 17:20:34 +08001461
Andy Greenaa775fd2015-12-26 08:56:58 +08001462 unsigned char ping_payload_len;
Andy Green67112662016-01-11 11:34:01 +08001463 unsigned char mask_idx;
Andy Green623a98d2013-01-21 11:04:23 +08001464 unsigned char opcode;
Andy Green623a98d2013-01-21 11:04:23 +08001465 unsigned char rsv;
Andy Green67112662016-01-11 11:34:01 +08001466 unsigned char rsv_first_msg;
Andy Green1fb95e82015-12-26 17:20:34 +08001467 /* zero if no info, or length including 2-byte close code */
1468 unsigned char close_in_ping_buffer_len;
Andy Green0c7b38b2015-12-29 09:46:03 +08001469 unsigned char utf8;
Andy Green67112662016-01-11 11:34:01 +08001470 unsigned char stashed_write_type;
1471 unsigned char tx_draining_stashed_wp;
Andy Greende132b92015-12-25 13:48:20 +08001472
1473 unsigned int final:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001474 unsigned int frame_is_binary:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001475 unsigned int all_zero_nonce:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001476 unsigned int this_frame_masked:1;
Andy Green1f4267b2013-10-17 08:09:19 +08001477 unsigned int inside_frame:1; /* next write will be more of frame */
1478 unsigned int clean_buffer:1; /* buffer not rewritten by extension */
Andy Green40d5abc2015-04-17 20:29:58 +08001479 unsigned int payload_is_close:1; /* process as PONG, but it is close */
Andy Greenba38a7e2015-12-25 13:14:09 +08001480 unsigned int ping_pending_flag:1;
Andy Green977734e2015-12-28 16:51:08 +08001481 unsigned int continuation_possible:1;
Andy Green91d624e2015-12-28 17:05:40 +08001482 unsigned int owed_a_fin:1;
Andy Green9b81d3c2015-12-29 12:28:48 +08001483 unsigned int check_utf8:1;
1484 unsigned int defeat_check_utf8:1;
Andy Green67112662016-01-11 11:34:01 +08001485 unsigned int pmce_compressed_message:1;
1486 unsigned int stashed_write_pending:1;
1487 unsigned int rx_draining_ext:1;
1488 unsigned int tx_draining_ext:1;
Andy Greenf32d2502016-07-15 13:41:38 +08001489 unsigned int send_check_ping:1;
Andy Green6f11c132017-07-19 04:39:14 +08001490 unsigned int first_fragment:1;
Andy Green623a98d2013-01-21 11:04:23 +08001491};
1492
Andy Green6a8099b2016-02-21 21:25:48 +08001493#ifdef LWS_WITH_CGI
1494
Petar Paradzikafc9c0a2017-08-26 12:00:24 +08001495#define LWS_HTTP_CHUNK_HDR_SIZE 16
1496
Andy Greende12c862017-05-18 21:19:57 +08001497enum {
1498 SIGNIFICANT_HDR_CONTENT_LENGTH,
1499 SIGNIFICANT_HDR_LOCATION,
1500 SIGNIFICANT_HDR_STATUS,
Andy Green38449882017-05-19 08:33:33 +08001501 SIGNIFICANT_HDR_TRANSFER_ENCODING,
Andy Greende12c862017-05-18 21:19:57 +08001502
1503 SIGNIFICANT_HDR_COUNT
1504};
1505
Andy Green6a8099b2016-02-21 21:25:48 +08001506/* wsi who is master of the cgi points to an lws_cgi */
1507
1508struct lws_cgi {
1509 struct lws_cgi *cgi_list;
1510 struct lws *stdwsi[3]; /* points to the associated stdin/out/err wsis */
1511 struct lws *wsi; /* owner */
Andy Greende12c862017-05-18 21:19:57 +08001512 unsigned char *headers_buf;
1513 unsigned char *headers_pos;
1514 unsigned char *headers_dumped;
1515 unsigned char *headers_end;
Andy Green02638f62017-06-07 07:57:19 +08001516 lws_filepos_t content_length;
1517 lws_filepos_t content_length_seen;
Andy Green6a8099b2016-02-21 21:25:48 +08001518 int pipe_fds[3][2];
Andy Greende12c862017-05-18 21:19:57 +08001519 int match[SIGNIFICANT_HDR_COUNT];
Andy Green6a8099b2016-02-21 21:25:48 +08001520 int pid;
Andy Greende12c862017-05-18 21:19:57 +08001521 int response_code;
1522 int lp;
1523 char l[12];
Andy Green6a8099b2016-02-21 21:25:48 +08001524
1525 unsigned int being_closed:1;
Andy Green38449882017-05-19 08:33:33 +08001526 unsigned int explicitly_chunked:1;
Andy Greena0c4a0e2017-01-03 08:18:37 +08001527
1528 unsigned char chunked_grace;
Andy Green6a8099b2016-02-21 21:25:48 +08001529};
Andy Green5c8906e2016-03-13 16:44:19 +08001530#endif
Andy Greenc3c2d6d2016-03-09 07:41:59 +08001531
Andy Green5c8906e2016-03-13 16:44:19 +08001532signed char char_to_hex(const char c);
1533
1534#ifndef LWS_NO_CLIENT
1535enum lws_chunk_parser {
1536 ELCP_HEX,
1537 ELCP_CR,
1538 ELCP_CONTENT,
1539 ELCP_POST_CR,
1540 ELCP_POST_LF,
1541};
Andy Green6a8099b2016-02-21 21:25:48 +08001542#endif
1543
Andy Green1e5a9ad2016-03-20 11:59:53 +08001544struct lws_rewrite;
1545
Andy Green2f0bc932016-04-15 12:00:23 +08001546#ifdef LWS_WITH_ACCESS_LOG
1547struct lws_access_log {
1548 char *header_log;
1549 char *user_agent;
Andy Greendebb7aa2017-08-27 20:18:48 +08001550 char *referrer;
Andy Green2f0bc932016-04-15 12:00:23 +08001551 unsigned long sent;
1552 int response;
1553};
1554#endif
1555
Andy Green4b85c1d2015-12-04 11:08:32 +08001556struct lws {
Andy Green623a98d2013-01-21 11:04:23 +08001557
Andy Greenaa775fd2015-12-26 08:56:58 +08001558 /* structs */
1559 /* members with mutually exclusive lifetimes are unionized */
1560
1561 union u {
1562 struct _lws_http_mode_related http;
1563#ifdef LWS_USE_HTTP2
1564 struct _lws_http2_related http2;
1565#endif
1566 struct _lws_header_related hdr;
1567 struct _lws_websocket_related ws;
1568 } u;
1569
Andy Green623a98d2013-01-21 11:04:23 +08001570 /* lifetime members */
1571
Aditya Tirumalaec50eba2017-03-15 19:41:11 +05301572#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) || defined(LWS_USE_LIBEVENT)
Andy Green40110e82015-12-14 08:52:03 +08001573 struct lws_io_watcher w_read;
Andy Green86ed65f2016-02-14 09:27:41 +08001574#endif
Aditya Tirumalaec50eba2017-03-15 19:41:11 +05301575#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBEVENT)
Andy Green40110e82015-12-14 08:52:03 +08001576 struct lws_io_watcher w_write;
Andy Green86ed65f2016-02-14 09:27:41 +08001577#endif
Andy Greende132b92015-12-25 13:48:20 +08001578 time_t pending_timeout_limit;
Andy Greenaa775fd2015-12-26 08:56:58 +08001579
1580 /* pointers */
1581
Andy Green40110e82015-12-14 08:52:03 +08001582 struct lws_context *context;
Andy Greend526c502016-03-28 10:10:43 +08001583 struct lws_vhost *vhost;
Andy Green494418a2016-03-02 09:17:22 +08001584 struct lws *parent; /* points to parent, if any */
1585 struct lws *child_list; /* points to first child */
1586 struct lws *sibling_list; /* subsequent children at same level */
Andy Green6a8099b2016-02-21 21:25:48 +08001587#ifdef LWS_WITH_CGI
1588 struct lws_cgi *cgi; /* wsi being cgi master have one of these */
Andy Green6a8099b2016-02-21 21:25:48 +08001589#endif
Andy Green4b85c1d2015-12-04 11:08:32 +08001590 const struct lws_protocols *protocol;
Andy Green4714cf02016-04-16 08:40:35 +08001591 struct lws **same_vh_protocol_prev, *same_vh_protocol_next;
Andy Greend738f842016-01-19 04:32:14 +08001592 struct lws *timeout_list;
1593 struct lws **timeout_list_prev;
Andy Green2f0bc932016-04-15 12:00:23 +08001594#ifdef LWS_WITH_ACCESS_LOG
1595 struct lws_access_log access_log;
1596#endif
Andy Greende132b92015-12-25 13:48:20 +08001597 void *user_space;
Andy Green6f11c132017-07-19 04:39:14 +08001598 void *opaque_parent_data;
Andy Greende132b92015-12-25 13:48:20 +08001599 /* rxflow handling */
1600 unsigned char *rxflow_buffer;
1601 /* truncated send handling */
1602 unsigned char *trunc_alloc; /* non-NULL means buffering in progress */
Andy Green7acf76c2016-07-23 14:18:25 +08001603
1604#if defined (LWS_WITH_ESP8266)
1605 void *premature_rx;
1606 unsigned short prem_rx_size, prem_rx_pos;
1607#endif
1608
Andy Green3182ece2013-01-20 17:08:31 +08001609#ifndef LWS_NO_EXTENSIONS
Andy Greend2ac22c2015-12-11 10:45:35 +08001610 const struct lws_extension *active_extensions[LWS_MAX_EXTENSIONS_ACTIVE];
Andy Green67112662016-01-11 11:34:01 +08001611 void *act_ext_user[LWS_MAX_EXTENSIONS_ACTIVE];
Andy Green3182ece2013-01-20 17:08:31 +08001612#endif
Andy Greende132b92015-12-25 13:48:20 +08001613#ifdef LWS_OPENSSL_SUPPORT
1614 SSL *ssl;
1615 BIO *client_bio;
1616 struct lws *pending_read_list_prev, *pending_read_list_next;
Andy Greena7def3c2017-05-07 10:02:03 +08001617#if defined(LWS_WITH_STATS)
1618 uint64_t accept_start_us;
Andy Greenb2f8bc52017-05-13 10:26:59 +08001619 char seen_rx;
Andy Greena7def3c2017-05-07 10:02:03 +08001620#endif
Andy Greende132b92015-12-25 13:48:20 +08001621#endif
Andy Green1a138852016-03-20 11:55:25 +08001622#ifdef LWS_WITH_HTTP_PROXY
Andy Green1e5a9ad2016-03-20 11:59:53 +08001623 struct lws_rewrite *rw;
1624#endif
Andy Greenaa775fd2015-12-26 08:56:58 +08001625#ifdef LWS_LATENCY
1626 unsigned long action_start;
1627 unsigned long latency_start;
1628#endif
Andy Greenbe8d7912017-02-27 12:55:56 +08001629 lws_sock_file_fd_type desc; /* .filefd / .sockfd */
Andy Greena7def3c2017-05-07 10:02:03 +08001630#if defined(LWS_WITH_STATS)
1631 uint64_t active_writable_req_us;
1632#endif
Andy Greenaa775fd2015-12-26 08:56:58 +08001633 /* ints */
Andy Greendfb23042013-01-17 12:26:48 +08001634 int position_in_fds_table;
Andy Green024eb6c2014-10-08 12:00:53 +08001635 int rxflow_len;
1636 int rxflow_pos;
Andy Green54806b12015-12-17 17:03:59 +08001637 unsigned int trunc_alloc_len; /* size of malloc */
1638 unsigned int trunc_offset; /* where we are in terms of spilling */
1639 unsigned int trunc_len; /* how much is buffered */
Andy Green5c8906e2016-03-13 16:44:19 +08001640#ifndef LWS_NO_CLIENT
1641 int chunk_remaining;
1642#endif
Andy Green42e8b182016-04-22 08:53:49 +08001643 unsigned int cache_secs;
Andy Green2764eba2013-12-09 14:16:17 +08001644
Andy Greende132b92015-12-25 13:48:20 +08001645 unsigned int hdr_parsing_completed:1;
Andy Green22d6f392016-04-10 09:33:54 +08001646 unsigned int http2_substream:1;
Andy Greend526c502016-03-28 10:10:43 +08001647 unsigned int listener:1;
Andy Greende132b92015-12-25 13:48:20 +08001648 unsigned int user_space_externally_allocated:1;
1649 unsigned int socket_is_permanently_unusable:1;
1650 unsigned int rxflow_change_to:2;
Andy Green83af28a2016-02-28 10:55:31 +08001651 unsigned int more_rx_waiting:1; /* has to live here since ah may stick to end */
Andy Green98061402016-04-15 14:01:29 +08001652 unsigned int conn_stat_done:1;
Andy Green42e8b182016-04-22 08:53:49 +08001653 unsigned int cache_reuse:1;
1654 unsigned int cache_revalidate:1;
1655 unsigned int cache_intermediaries:1;
Andy Green2f216282016-04-23 09:26:11 +08001656 unsigned int favoured_pollin:1;
Andy Green7a2fc442016-05-19 15:28:31 +08001657 unsigned int sending_chunked:1;
Andy Green81c221e2016-07-01 08:54:39 +08001658 unsigned int already_did_cce:1;
Andy Green723b3f12016-09-06 15:36:51 +08001659 unsigned int told_user_closed:1;
Andy Green3b0066c2017-07-17 10:11:17 +08001660 unsigned int waiting_to_send_close_frame:1;
Andy Greenc70f6692017-06-20 15:56:48 +08001661 unsigned int ipv6:1;
Andy Green6f11c132017-07-19 04:39:14 +08001662 unsigned int parent_carries_io:1;
1663 unsigned int parent_pending_cb_on_writable:1;
Andy Green89212d62017-04-05 08:30:55 +08001664
Andy Green7acf76c2016-07-23 14:18:25 +08001665#if defined(LWS_WITH_ESP8266)
1666 unsigned int pending_send_completion:3;
1667 unsigned int close_is_pending_send_completion:1;
1668#endif
Andy Green2f0bc932016-04-15 12:00:23 +08001669#ifdef LWS_WITH_ACCESS_LOG
1670 unsigned int access_log_pending:1;
1671#endif
Andy Greena661ee52016-02-29 13:18:30 +08001672#ifndef LWS_NO_CLIENT
1673 unsigned int do_ws:1; /* whether we are doing http or ws flow */
Andy Green5c8906e2016-03-13 16:44:19 +08001674 unsigned int chunked:1; /* if the clientside connection is chunked */
Andy Green1e5a9ad2016-03-20 11:59:53 +08001675 unsigned int client_rx_avail:1;
Andy Green95fff472016-08-08 21:54:30 +08001676 unsigned int client_http_body_pending:1;
Andy Green1a138852016-03-20 11:55:25 +08001677#endif
1678#ifdef LWS_WITH_HTTP_PROXY
Andy Green1e5a9ad2016-03-20 11:59:53 +08001679 unsigned int perform_rewrite:1;
Andy Greena661ee52016-02-29 13:18:30 +08001680#endif
Andy Greende132b92015-12-25 13:48:20 +08001681#ifndef LWS_NO_EXTENSIONS
1682 unsigned int extension_data_pending:1;
1683#endif
1684#ifdef LWS_OPENSSL_SUPPORT
Namowen40d37e22017-02-18 07:51:27 +08001685 unsigned int use_ssl:4;
Andy Greende132b92015-12-25 13:48:20 +08001686#endif
Andy Greenaa775fd2015-12-26 08:56:58 +08001687#ifdef _WIN32
1688 unsigned int sock_send_blocking:1;
1689#endif
Andy Green0f9904f2016-03-17 15:26:49 +08001690#ifdef LWS_OPENSSL_SUPPORT
1691 unsigned int redirect_to_https:1;
1692#endif
Andy Greende132b92015-12-25 13:48:20 +08001693
Andy Green89212d62017-04-05 08:30:55 +08001694 /* volatile to make sure code is aware other thread can change */
1695 volatile unsigned int handling_pollout:1;
1696 volatile unsigned int leave_pollout_active:1;
1697
Andy Green3e0006c2017-02-22 06:55:12 +08001698#ifndef LWS_NO_CLIENT
1699 unsigned short c_port;
1700#endif
1701
Andy Greenaa775fd2015-12-26 08:56:58 +08001702 /* chars */
Andy Greende132b92015-12-25 13:48:20 +08001703#ifndef LWS_NO_EXTENSIONS
Andy Green67112662016-01-11 11:34:01 +08001704 unsigned char count_act_ext;
Andy Greende132b92015-12-25 13:48:20 +08001705#endif
1706 unsigned char ietf_spec_revision;
1707 char mode; /* enum connection_mode */
1708 char state; /* enum lws_connection_states */
Andy Green8c1f6022016-01-26 20:56:56 +08001709 char state_pre_close;
Andy Greende132b92015-12-25 13:48:20 +08001710 char lws_rx_parse_state; /* enum lws_rx_parse_state */
1711 char rx_frame_type; /* enum lws_write_protocol */
1712 char pending_timeout; /* enum pending_timeout */
Andy Greend738f842016-01-19 04:32:14 +08001713 char pps; /* enum lws_pending_protocol_send */
Andy Greend3a55052016-01-19 03:34:24 +08001714 char tsi; /* thread service index we belong to */
Andy Green7a2fc442016-05-19 15:28:31 +08001715 char protocol_interpret_idx;
Andy Green3e0006c2017-02-22 06:55:12 +08001716 char redirects;
Andy Green6a8099b2016-02-21 21:25:48 +08001717#ifdef LWS_WITH_CGI
1718 char cgi_channel; /* which of stdin/out/err */
Andy Greenc3c2d6d2016-03-09 07:41:59 +08001719 char hdr_state;
Andy Green6a8099b2016-02-21 21:25:48 +08001720#endif
Andy Green5c8906e2016-03-13 16:44:19 +08001721#ifndef LWS_NO_CLIENT
1722 char chunk_parser; /* enum lws_chunk_parser */
1723#endif
Andy Green0a4da2c2016-05-10 10:16:52 +08001724#if defined(LWS_WITH_CGI) || !defined(LWS_NO_CLIENT)
1725 char reason_bf; /* internal writeable callback reason bitfield */
1726#endif
Andy Green7c212cc2010-11-08 20:20:42 +00001727};
1728
Andy Green3d67f512014-04-03 07:29:50 +08001729LWS_EXTERN int log_level;
1730
Andy Greenc7939442016-03-12 08:18:58 +08001731LWS_EXTERN int
Andy Green53bed782016-11-16 08:59:47 +08001732lws_socket_bind(struct lws_vhost *vhost, lws_sockfd_type sockfd, int port,
Andy Greenc7939442016-03-12 08:18:58 +08001733 const char *iface);
1734
Leonardo Maccari Rufinoaf7f9432017-06-05 13:59:22 -03001735#if defined(LWS_USE_IPV6)
1736LWS_EXTERN unsigned long
1737lws_get_addr_scope(const char *ipaddr);
1738#endif
1739
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001740LWS_EXTERN void
Andy Green6b5de702015-12-15 21:15:58 +08001741lws_close_free_wsi(struct lws *wsi, enum lws_close_status);
Andy Green508946c2013-02-12 10:19:08 +08001742
Andy Green34f3dd22014-04-03 07:42:50 +08001743LWS_EXTERN int
Andy Green6b5de702015-12-15 21:15:58 +08001744remove_wsi_socket_from_fds(struct lws *wsi);
Andy Green024eb6c2014-10-08 12:00:53 +08001745LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001746lws_rxflow_cache(struct lws *wsi, unsigned char *buf, int n, int len);
Andy Green34f3dd22014-04-03 07:42:50 +08001747
Andy Greend636e352013-01-29 12:36:17 +08001748#ifndef LWS_LATENCY
Andy Greendc8a3a82015-12-06 09:15:27 +08001749static inline void
1750lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1751 int ret, int completion) {
Andy Green40110e82015-12-14 08:52:03 +08001752 do {
1753 (void)context; (void)wsi; (void)action; (void)ret;
1754 (void)completion;
Andy Greendc8a3a82015-12-06 09:15:27 +08001755 } while (0);
1756}
1757static inline void
1758lws_latency_pre(struct lws_context *context, struct lws *wsi) {
1759 do { (void)context; (void)wsi; } while (0);
1760}
Andy Greend636e352013-01-29 12:36:17 +08001761#else
1762#define lws_latency_pre(_context, _wsi) lws_latency(_context, _wsi, NULL, 0, 0)
1763extern void
Andy Greendc8a3a82015-12-06 09:15:27 +08001764lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1765 int ret, int completion);
Andy Greend636e352013-01-29 12:36:17 +08001766#endif
1767
Andy Greendc8a3a82015-12-06 09:15:27 +08001768LWS_EXTERN void
Andy Green6b5de702015-12-15 21:15:58 +08001769lws_set_protocol_write_pending(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001770 enum lws_pending_protocol_send pend);
Andy Greene99a83c2016-01-20 16:56:06 +08001771LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001772lws_client_rx_sm(struct lws *wsi, unsigned char c);
Andy Green4739e5c2011-01-22 12:51:57 +00001773
Andy Greene99a83c2016-01-20 16:56:06 +08001774LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001775lws_parse(struct lws *wsi, unsigned char c);
Andy Greenb45993c2010-12-18 15:13:50 +00001776
Andy Greene99a83c2016-01-20 16:56:06 +08001777LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001778lws_http_action(struct lws *wsi);
Andy Green024eb6c2014-10-08 12:00:53 +08001779
1780LWS_EXTERN int
Andy Greendf736162011-01-18 15:39:02 +00001781lws_b64_selftest(void);
Andy Greenbfb051f2011-02-09 08:49:14 +00001782
Andy Green2c218e72016-02-15 12:37:04 +08001783LWS_EXTERN int
Andy Green2c218e72016-02-15 12:37:04 +08001784lws_service_flag_pending(struct lws_context *context, int tsi);
1785
Andy Green0aed7a02017-02-22 09:50:11 +08001786#if defined(_WIN32) || defined(LWS_WITH_ESP8266)
Andy Green4b85c1d2015-12-04 11:08:32 +08001787LWS_EXTERN struct lws *
Andy Green1fa76852015-12-14 11:17:16 +08001788wsi_from_fd(const struct lws_context *context, lws_sockfd_type fd);
Andy Green0d338332011-02-12 11:57:43 +00001789
Andy Green40110e82015-12-14 08:52:03 +08001790LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001791insert_wsi(struct lws_context *context, struct lws *wsi);
Bud Davis229bfec2015-01-30 10:13:01 +08001792
1793LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001794delete_from_fd(struct lws_context *context, lws_sockfd_type fd);
Bud Davis229bfec2015-01-30 10:13:01 +08001795#else
Andy Green40110e82015-12-14 08:52:03 +08001796#define wsi_from_fd(A,B) A->lws_lookup[B]
Andy Greenbe8d7912017-02-27 12:55:56 +08001797#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 +08001798#define delete_from_fd(A,B) A->lws_lookup[B]=0
1799#endif
1800
Andy Greene99a83c2016-01-20 16:56:06 +08001801LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001802insert_wsi_socket_into_fds(struct lws_context *context, struct lws *wsi);
Darin Willitsc19456f2011-02-14 17:52:39 +00001803
Andy Greene99a83c2016-01-20 16:56:06 +08001804LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001805lws_issue_raw(struct lws *wsi, unsigned char *buf, size_t len);
Andy Greend44bf7f2011-03-06 10:29:38 +00001806
Andy Green95a7b5d2011-03-06 10:29:39 +00001807
Andy Greene99a83c2016-01-20 16:56:06 +08001808LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001809lws_service_timeout_check(struct lws *wsi, unsigned int sec);
Andy Greena41314f2011-05-23 10:00:03 +01001810
Andy Green3d6a1e12017-02-21 23:38:40 +08001811LWS_EXTERN void
1812lws_remove_from_timeout_list(struct lws *wsi);
1813
Andy Greene99a83c2016-01-20 16:56:06 +08001814LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001815lws_client_connect_2(struct lws *wsi);
Andy Greena41314f2011-05-23 10:00:03 +01001816
Andy Greene99a83c2016-01-20 16:56:06 +08001817LWS_VISIBLE struct lws * LWS_WARN_UNUSED_RESULT
Andy Green0db9b9f2017-02-21 22:59:00 +08001818lws_client_reset(struct lws **wsi, int ssl, const char *address, int port,
Andy Greene99a83c2016-01-20 16:56:06 +08001819 const char *path, const char *host);
Andy Green809d69a2016-01-14 11:37:56 +08001820
Andy Greene99a83c2016-01-20 16:56:06 +08001821LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
Andy Greend526c502016-03-28 10:10:43 +08001822lws_create_new_server_wsi(struct lws_vhost *vhost);
Andy Greena41314f2011-05-23 10:00:03 +01001823
Andy Greene99a83c2016-01-20 16:56:06 +08001824LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001825lws_generate_client_handshake(struct lws *wsi, char *pkt);
Andy Greena41314f2011-05-23 10:00:03 +01001826
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001827LWS_EXTERN int
Andy Green6b5de702015-12-15 21:15:58 +08001828lws_handle_POLLOUT_event(struct lws *wsi, struct lws_pollfd *pollfd);
Andy Green91b05892014-10-17 08:38:44 +08001829
Andy Green2d8d35a2016-02-29 14:19:16 +08001830LWS_EXTERN struct lws *
1831lws_client_connect_via_info2(struct lws *wsi);
1832
Andy Greencdb9bf92014-04-12 10:07:02 +08001833/*
1834 * EXTENSIONS
1835 */
1836
Andy Green3182ece2013-01-20 17:08:31 +08001837#ifndef LWS_NO_EXTENSIONS
Andy Greencdb9bf92014-04-12 10:07:02 +08001838LWS_VISIBLE void
1839lws_context_init_extensions(struct lws_context_creation_info *info,
Andy Greendc8a3a82015-12-06 09:15:27 +08001840 struct lws_context *context);
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001841LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001842lws_any_extension_handled(struct lws *wsi, enum lws_extension_callback_reasons r,
Andy Green6ee372f2012-04-09 15:09:01 +08001843 void *v, size_t len);
Andy Greena41314f2011-05-23 10:00:03 +01001844
Andy Green2c24ec02014-04-02 19:45:42 +08001845LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001846lws_ext_cb_active(struct lws *wsi, int reason, void *buf, int len);
Andy Green2c24ec02014-04-02 19:45:42 +08001847LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001848lws_ext_cb_all_exts(struct lws_context *context, struct lws *wsi, int reason,
1849 void *arg, int len);
Andy Green67112662016-01-11 11:34:01 +08001850
Andy Green2c24ec02014-04-02 19:45:42 +08001851#else
Andy Green6b5de702015-12-15 21:15:58 +08001852#define lws_any_extension_handled(_a, _b, _c, _d) (0)
Andy Green67112662016-01-11 11:34:01 +08001853#define lws_ext_cb_active(_a, _b, _c, _d) (0)
Andy Green54806b12015-12-17 17:03:59 +08001854#define lws_ext_cb_all_exts(_a, _b, _c, _d, _e) (0)
Andy Greenb49a9952014-04-03 10:11:04 +08001855#define lws_issue_raw_ext_access lws_issue_raw
Andy Greencdb9bf92014-04-12 10:07:02 +08001856#define lws_context_init_extensions(_a, _b)
Andy Green3182ece2013-01-20 17:08:31 +08001857#endif
Andy Greena41314f2011-05-23 10:00:03 +01001858
Andy Greene99a83c2016-01-20 16:56:06 +08001859LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001860lws_client_interpret_server_handshake(struct lws *wsi);
Andy Greena41314f2011-05-23 10:00:03 +01001861
Andy Greene99a83c2016-01-20 16:56:06 +08001862LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001863lws_rx_sm(struct lws *wsi, unsigned char c);
Andy Greena41314f2011-05-23 10:00:03 +01001864
Andy Greenc15714f2016-09-10 04:43:07 +08001865LWS_EXTERN int
Alex Hultman599cad92016-03-17 09:34:15 +08001866lws_payload_until_length_exhausted(struct lws *wsi, unsigned char **buf, size_t *len);
1867
Andy Greene99a83c2016-01-20 16:56:06 +08001868LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001869lws_issue_raw_ext_access(struct lws *wsi, unsigned char *buf, size_t len);
Andy Green09226502011-05-28 10:19:19 +01001870
Andy Green44c11612014-11-08 11:18:47 +08001871LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001872lws_union_transition(struct lws *wsi, enum connection_mode mode);
Andy Green44c11612014-11-08 11:18:47 +08001873
Andy Greene99a83c2016-01-20 16:56:06 +08001874LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Denis Osvald034e5142015-12-21 18:06:38 +01001875user_callback_handle_rxflow(lws_callback_function, struct lws *wsi,
Andy Green00c6d152015-12-17 07:54:44 +08001876 enum lws_callback_reasons reason, void *user,
1877 void *in, size_t len);
Andy Green024eb6c2014-10-08 12:00:53 +08001878#ifdef LWS_USE_HTTP2
Andy Green4b85c1d2015-12-04 11:08:32 +08001879LWS_EXTERN struct lws *lws_http2_get_network_wsi(struct lws *wsi);
1880struct lws * lws_http2_get_nth_child(struct lws *wsi, int n);
Andy Green024eb6c2014-10-08 12:00:53 +08001881LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001882lws_http2_interpret_settings_payload(struct http2_settings *settings,
1883 unsigned char *buf, int len);
Andy Green024eb6c2014-10-08 12:00:53 +08001884LWS_EXTERN void lws_http2_init(struct http2_settings *settings);
1885LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001886lws_http2_parser(struct lws *wsi, unsigned char c);
Andy Greendc8a3a82015-12-06 09:15:27 +08001887LWS_EXTERN int lws_http2_do_pps_send(struct lws_context *context,
1888 struct lws *wsi);
1889LWS_EXTERN int lws_http2_frame_write(struct lws *wsi, int type, int flags,
1890 unsigned int sid, unsigned int len,
1891 unsigned char *buf);
Andy Green4b85c1d2015-12-04 11:08:32 +08001892LWS_EXTERN struct lws *
1893lws_http2_wsi_from_id(struct lws *wsi, unsigned int sid);
Andy Green11c05bf2015-12-16 18:19:08 +08001894LWS_EXTERN int lws_hpack_interpret(struct lws *wsi,
Andy Green2add6342014-10-12 08:38:16 +08001895 unsigned char c);
Andy Green917f43a2014-10-12 14:31:47 +08001896LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001897lws_add_http2_header_by_name(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001898 const unsigned char *name,
1899 const unsigned char *value, int length,
1900 unsigned char **p, unsigned char *end);
Andy Green917f43a2014-10-12 14:31:47 +08001901LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001902lws_add_http2_header_by_token(struct lws *wsi,
Andy Green917f43a2014-10-12 14:31:47 +08001903 enum lws_token_indexes token,
Andy Greendc8a3a82015-12-06 09:15:27 +08001904 const unsigned char *value, int length,
1905 unsigned char **p, unsigned char *end);
Andy Green917f43a2014-10-12 14:31:47 +08001906LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001907lws_add_http2_header_status(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001908 unsigned int code, unsigned char **p,
Andy Green917f43a2014-10-12 14:31:47 +08001909 unsigned char *end);
Andy Green7df53c52014-10-22 15:37:28 +08001910LWS_EXTERN
Andy Green4b85c1d2015-12-04 11:08:32 +08001911void lws_http2_configure_if_upgraded(struct lws *wsi);
Andy Green7df53c52014-10-22 15:37:28 +08001912#else
1913#define lws_http2_configure_if_upgraded(x)
Andy Green024eb6c2014-10-08 12:00:53 +08001914#endif
Andy Green706961d2013-01-17 16:50:35 +08001915
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001916LWS_EXTERN int
Andy Greend526c502016-03-28 10:10:43 +08001917lws_plat_set_socket_options(struct lws_vhost *vhost, lws_sockfd_type fd);
Andy Greena690cd02013-02-09 12:25:31 +08001918
Andy Piper6ff571f2016-06-28 19:01:20 +08001919LWS_EXTERN int
1920lws_plat_check_connection_error(struct lws *wsi);
1921
Andy Greene99a83c2016-01-20 16:56:06 +08001922LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greene3d141d2016-02-27 11:42:22 +08001923lws_header_table_attach(struct lws *wsi, int autoservice);
Andy Green16ab3182013-02-10 18:02:31 +08001924
Andrew Canaday37718812014-11-07 11:20:59 +08001925LWS_EXTERN int
Andy Greene3d141d2016-02-27 11:42:22 +08001926lws_header_table_detach(struct lws *wsi, int autoservice);
Andrew Canaday37718812014-11-07 11:20:59 +08001927
Andy Green4019aab2016-01-30 11:43:10 +08001928LWS_EXTERN void
Andy Greene3d141d2016-02-27 11:42:22 +08001929lws_header_table_reset(struct lws *wsi, int autoservice);
Andy Green31c51302017-02-09 15:25:01 +08001930void
1931_lws_header_table_reset(struct allocated_headers *ah);
Andy Green4019aab2016-01-30 11:43:10 +08001932
Andy Green8f4f6922017-06-28 12:13:13 +08001933void
1934lws_header_table_force_to_detachable_state(struct lws *wsi);
1935int
1936lws_header_table_is_in_detachable_state(struct lws *wsi);
1937
Andy Greene99a83c2016-01-20 16:56:06 +08001938LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001939lws_hdr_simple_ptr(struct lws *wsi, enum lws_token_indexes h);
Andy Green16ab3182013-02-10 18:02:31 +08001940
Andy Greene99a83c2016-01-20 16:56:06 +08001941LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green11c05bf2015-12-16 18:19:08 +08001942lws_hdr_simple_create(struct lws *wsi, enum lws_token_indexes h, const char *s);
Andy Greenb5b23192013-02-11 17:13:32 +08001943
Andy Green16146cd2016-04-23 07:53:46 +08001944LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001945lws_ensure_user_space(struct lws *wsi);
Andy Green2af4d5b2013-02-18 16:30:10 +08001946
Andy Green158e8042014-04-02 14:25:10 +08001947LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001948lws_change_pollfd(struct lws *wsi, int _and, int _or);
Andy Green91f19d82013-12-21 11:18:34 +08001949
Andy Greenb5b23192013-02-11 17:13:32 +08001950#ifndef LWS_NO_SERVER
Andy Greene38031a2014-04-03 08:24:29 +08001951int lws_context_init_server(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08001952 struct lws_vhost *vhost);
1953LWS_EXTERN struct lws_vhost *
1954lws_select_vhost(struct lws_context *context, int port, const char *servername);
Andy Greend7340c12014-04-10 14:08:10 +08001955LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001956handshake_0405(struct lws_context *context, struct lws *wsi);
Andy Greene99a83c2016-01-20 16:56:06 +08001957LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green67112662016-01-11 11:34:01 +08001958lws_interpret_incoming_packet(struct lws *wsi, unsigned char **buf, size_t len);
Andy Greencdb9bf92014-04-12 10:07:02 +08001959LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001960lws_server_get_canonical_hostname(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001961 struct lws_context_creation_info *info);
Andy Greene38031a2014-04-03 08:24:29 +08001962#else
1963#define lws_context_init_server(_a, _b) (0)
Andy Green3ef579b2015-12-04 09:23:56 +08001964#define lws_interpret_incoming_packet(_a, _b, _c) (0)
Andy Greencdb9bf92014-04-12 10:07:02 +08001965#define lws_server_get_canonical_hostname(_a, _b)
Andy Greenb5b23192013-02-11 17:13:32 +08001966#endif
1967
1968#ifndef LWS_NO_DAEMONIZE
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001969LWS_EXTERN int get_daemonize_pid();
Andy Greencdb9bf92014-04-12 10:07:02 +08001970#else
1971#define get_daemonize_pid() (0)
Andy Greenb5b23192013-02-11 17:13:32 +08001972#endif
1973
Andy Green0aed7a02017-02-22 09:50:11 +08001974#if !defined(LWS_WITH_ESP8266)
Andy Greene99a83c2016-01-20 16:56:06 +08001975LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green2dc7dde2016-06-03 21:19:40 +08001976interface_to_sa(struct lws_vhost *vh, const char *ifname,
Andy Greendc8a3a82015-12-06 09:15:27 +08001977 struct sockaddr_in *addr, size_t addrlen);
Andy Green2cd30742015-11-02 13:10:33 +08001978#endif
Andy Greenb25b85f2014-04-03 23:34:09 +08001979LWS_EXTERN void lwsl_emit_stderr(int level, const char *line);
1980
Andy Green1a308e42014-04-08 07:26:30 +01001981enum lws_ssl_capable_status {
1982 LWS_SSL_CAPABLE_ERROR = -1,
1983 LWS_SSL_CAPABLE_MORE_SERVICE = -2,
1984};
1985
Darin Willitsc19456f2011-02-14 17:52:39 +00001986#ifndef LWS_OPENSSL_SUPPORT
Andy Greencdb9bf92014-04-12 10:07:02 +08001987#define LWS_SSL_ENABLED(context) (0)
Andy Greenc57037a2014-04-03 10:17:00 +08001988#define lws_context_init_server_ssl(_a, _b) (0)
1989#define lws_ssl_destroy(_a)
Andy Green2eedea92014-04-03 14:33:48 +08001990#define lws_context_init_http2_ssl(_a)
Andy Green02138122014-04-06 06:26:35 +01001991#define lws_ssl_capable_read lws_ssl_capable_read_no_ssl
1992#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 +02001993#define lws_ssl_pending lws_ssl_pending_no_ssl
Andy Green8c1f6022016-01-26 20:56:56 +08001994#define lws_server_socket_service_ssl(_b, _c) (0)
Andy Greencdb9bf92014-04-12 10:07:02 +08001995#define lws_ssl_close(_a) (0)
1996#define lws_ssl_context_destroy(_a)
Andy Greend526c502016-03-28 10:10:43 +08001997#define lws_ssl_SSL_CTX_destroy(_a)
Andy Green6b5de702015-12-15 21:15:58 +08001998#define lws_ssl_remove_wsi_from_buffered_list(_a)
Andy Greend526c502016-03-28 10:10:43 +08001999#define lws_context_init_ssl_library(_a)
Andy Greenb5b23192013-02-11 17:13:32 +08002000#else
Andy Greencdb9bf92014-04-12 10:07:02 +08002001#define LWS_SSL_ENABLED(context) (context->use_ssl)
Joakim Soderbergf272cb02013-02-13 09:29:26 +08002002LWS_EXTERN int openssl_websocket_private_data_index;
Andy Greene99a83c2016-01-20 16:56:06 +08002003LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08002004lws_ssl_capable_read(struct lws *wsi, unsigned char *buf, int len);
Andy Greene99a83c2016-01-20 16:56:06 +08002005LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08002006lws_ssl_capable_write(struct lws *wsi, unsigned char *buf, int len);
Andy Greene99a83c2016-01-20 16:56:06 +08002007LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08002008lws_ssl_pending(struct lws *wsi);
Andy Greend526c502016-03-28 10:10:43 +08002009LWS_EXTERN int
2010lws_context_init_ssl_library(struct lws_context_creation_info *info);
Andy Greene99a83c2016-01-20 16:56:06 +08002011LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green8c1f6022016-01-26 20:56:56 +08002012lws_server_socket_service_ssl(struct lws *new_wsi, lws_sockfd_type accept_fd);
Andy Greencdb9bf92014-04-12 10:07:02 +08002013LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08002014lws_ssl_close(struct lws *wsi);
Andy Greencdb9bf92014-04-12 10:07:02 +08002015LWS_EXTERN void
Andy Greend526c502016-03-28 10:10:43 +08002016lws_ssl_SSL_CTX_destroy(struct lws_vhost *vhost);
2017LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08002018lws_ssl_context_destroy(struct lws_context *context);
Andy Green52815602015-01-29 08:36:18 +08002019LWS_VISIBLE void
Andy Green6b5de702015-12-15 21:15:58 +08002020lws_ssl_remove_wsi_from_buffered_list(struct lws *wsi);
Andy Greeneefb13a2016-03-28 12:43:55 +08002021LWS_EXTERN int
2022lws_ssl_client_bio_create(struct lws *wsi);
2023LWS_EXTERN int
2024lws_ssl_client_connect1(struct lws *wsi);
2025LWS_EXTERN int
2026lws_ssl_client_connect2(struct lws *wsi);
Andy Greenf1fd8822016-05-03 07:26:10 +08002027LWS_EXTERN void
2028lws_ssl_elaborate_error(void);
Andy Greenc57037a2014-04-03 10:17:00 +08002029#ifndef LWS_NO_SERVER
2030LWS_EXTERN int
2031lws_context_init_server_ssl(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08002032 struct lws_vhost *vhost);
Andy Greenc57037a2014-04-03 10:17:00 +08002033#else
2034#define lws_context_init_server_ssl(_a, _b) (0)
2035#endif
2036LWS_EXTERN void
Andy Greend526c502016-03-28 10:10:43 +08002037lws_ssl_destroy(struct lws_vhost *vhost);
Andy Green2eedea92014-04-03 14:33:48 +08002038/* HTTP2-related */
2039
2040#ifdef LWS_USE_HTTP2
2041LWS_EXTERN void
Andy Green22d6f392016-04-10 09:33:54 +08002042lws_context_init_http2_ssl(struct lws_vhost *vhost);
Andy Green2eedea92014-04-03 14:33:48 +08002043#else
2044#define lws_context_init_http2_ssl(_a)
2045#endif
Darin Willitsc19456f2011-02-14 17:52:39 +00002046#endif
Andy Greena654fc02014-04-03 07:16:40 +08002047
Andy Green8c1f6022016-01-26 20:56:56 +08002048#if LWS_MAX_SMP > 1
2049static LWS_INLINE void
2050lws_pt_mutex_init(struct lws_context_per_thread *pt)
2051{
2052 pthread_mutex_init(&pt->lock, NULL);
2053}
Sterling Jensenecaed5e2016-05-12 20:22:35 -05002054
2055static LWS_INLINE void
2056lws_pt_mutex_destroy(struct lws_context_per_thread *pt)
2057{
2058 pthread_mutex_destroy(&pt->lock);
2059}
2060
Andy Green8c1f6022016-01-26 20:56:56 +08002061static LWS_INLINE void
2062lws_pt_lock(struct lws_context_per_thread *pt)
2063{
Andy Greenbbf93692016-08-07 08:33:08 +08002064 if (!pt->lock_depth++)
2065 pthread_mutex_lock(&pt->lock);
Andy Green8c1f6022016-01-26 20:56:56 +08002066}
2067
2068static LWS_INLINE void
2069lws_pt_unlock(struct lws_context_per_thread *pt)
2070{
Andy Greenbbf93692016-08-07 08:33:08 +08002071 if (!(--pt->lock_depth))
2072 pthread_mutex_unlock(&pt->lock);
Andy Green8c1f6022016-01-26 20:56:56 +08002073}
2074#else
2075#define lws_pt_mutex_init(_a) (void)(_a)
Sterling Jensenecaed5e2016-05-12 20:22:35 -05002076#define lws_pt_mutex_destroy(_a) (void)(_a)
Andy Green8c1f6022016-01-26 20:56:56 +08002077#define lws_pt_lock(_a) (void)(_a)
2078#define lws_pt_unlock(_a) (void)(_a)
2079#endif
2080
Andy Greene99a83c2016-01-20 16:56:06 +08002081LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08002082lws_ssl_capable_read_no_ssl(struct lws *wsi, unsigned char *buf, int len);
Patrick Gansterera6b019a2014-04-15 18:40:31 +02002083
Andy Greene99a83c2016-01-20 16:56:06 +08002084LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08002085lws_ssl_capable_write_no_ssl(struct lws *wsi, unsigned char *buf, int len);
Patrick Gansterera6b019a2014-04-15 18:40:31 +02002086
Andy Greene99a83c2016-01-20 16:56:06 +08002087LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08002088lws_ssl_pending_no_ssl(struct lws *wsi);
=?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?=4c0ba022015-08-19 16:23:33 +02002089
Andy Green1e5a9ad2016-03-20 11:59:53 +08002090#ifdef LWS_WITH_HTTP_PROXY
2091struct lws_rewrite {
2092 hubbub_parser *parser;
2093 hubbub_parser_optparams params;
2094 const char *from, *to;
2095 int from_len, to_len;
2096 unsigned char *p, *end;
2097 struct lws *wsi;
2098};
2099static LWS_INLINE int hstrcmp(hubbub_string *s, const char *p, int len)
2100{
2101 if (s->len != len)
2102 return 1;
2103
2104 return strncmp((const char *)s->ptr, p, len);
2105}
2106typedef hubbub_error (*hubbub_callback_t)(const hubbub_token *token, void *pw);
Andy Green1e5a9ad2016-03-20 11:59:53 +08002107LWS_EXTERN struct lws_rewrite *
2108lws_rewrite_create(struct lws *wsi, hubbub_callback_t cb, const char *from, const char *to);
2109LWS_EXTERN void
2110lws_rewrite_destroy(struct lws_rewrite *r);
2111LWS_EXTERN int
2112lws_rewrite_parse(struct lws_rewrite *r, const unsigned char *in, int in_len);
2113#endif
2114
2115#ifndef LWS_NO_CLIENT
Andy Green1a138852016-03-20 11:55:25 +08002116LWS_EXTERN int lws_client_socket_service(struct lws_context *context,
2117 struct lws *wsi,
2118 struct lws_pollfd *pollfd);
2119LWS_EXTERN int LWS_WARN_UNUSED_RESULT
2120lws_http_transaction_completed_client(struct lws *wsi);
Andy Greenc57037a2014-04-03 10:17:00 +08002121#ifdef LWS_OPENSSL_SUPPORT
Andy Greendc8a3a82015-12-06 09:15:27 +08002122LWS_EXTERN int
2123lws_context_init_client_ssl(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08002124 struct lws_vhost *vhost);
Andy Green3ff720f2017-06-20 11:46:49 +08002125
2126LWS_EXTERN void
2127lws_ssl_info_callback(const SSL *ssl, int where, int ret);
2128
Andy Greene38031a2014-04-03 08:24:29 +08002129#else
Andy Greenc57037a2014-04-03 10:17:00 +08002130 #define lws_context_init_client_ssl(_a, _b) (0)
2131#endif
Andy Greene99a83c2016-01-20 16:56:06 +08002132LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08002133lws_handshake_client(struct lws *wsi, unsigned char **buf, size_t len);
2134LWS_EXTERN void
2135lws_decode_ssl_error(void);
Andy Greenc57037a2014-04-03 10:17:00 +08002136#else
2137#define lws_context_init_client_ssl(_a, _b) (0)
Andy Greenaad2eac2014-04-03 09:03:37 +08002138#define lws_handshake_client(_a, _b, _c) (0)
Andy Greena654fc02014-04-03 07:16:40 +08002139#endif
Andy Green44e0b082015-12-28 14:24:49 +08002140
2141LWS_EXTERN int
2142_lws_rx_flow_control(struct lws *wsi);
2143
Andy Green8c1f6022016-01-26 20:56:56 +08002144LWS_EXTERN int
2145_lws_change_pollfd(struct lws *wsi, int _and, int _or, struct lws_pollargs *pa);
2146
Andy Greena654fc02014-04-03 07:16:40 +08002147#ifndef LWS_NO_SERVER
Andy Greendc8a3a82015-12-06 09:15:27 +08002148LWS_EXTERN int
2149lws_server_socket_service(struct lws_context *context, struct lws *wsi,
2150 struct lws_pollfd *pollfd);
2151LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08002152lws_handshake_server(struct lws *wsi, unsigned char **buf, size_t len);
Andy Greend99476b2014-04-03 08:40:05 +08002153#else
Andy Greenb49a9952014-04-03 10:11:04 +08002154#define lws_server_socket_service(_a, _b, _c) (0)
Andy Green11c05bf2015-12-16 18:19:08 +08002155#define lws_handshake_server(_a, _b, _c) (0)
Andy Greena654fc02014-04-03 07:16:40 +08002156#endif
Andy Green40110e82015-12-14 08:52:03 +08002157
Andy Green2f0bc932016-04-15 12:00:23 +08002158#ifdef LWS_WITH_ACCESS_LOG
2159LWS_EXTERN int
2160lws_access_log(struct lws *wsi);
2161#else
2162#define lws_access_log(_a)
2163#endif
2164
Andy Green6a8099b2016-02-21 21:25:48 +08002165LWS_EXTERN int
2166lws_cgi_kill_terminated(struct lws_context_per_thread *pt);
2167
Andy Green02077052016-04-06 16:15:40 +08002168int
2169lws_protocol_init(struct lws_context *context);
2170
Andy Green7f92ee82016-06-18 09:00:04 +08002171int
2172lws_bind_protocol(struct lws *wsi, const struct lws_protocols *p);
2173
Andy Green722cc4a2016-06-26 06:29:20 +08002174const struct lws_http_mount *
2175lws_find_mount(struct lws *wsi, const char *uri_ptr, int uri_len);
2176
Andy Greena654fc02014-04-03 07:16:40 +08002177/*
Alejandro Merycdc97172014-12-04 23:15:27 +01002178 * custom allocator
2179 */
Andy Greene99a83c2016-01-20 16:56:06 +08002180LWS_EXTERN void *
Alejandro Merycdc97172014-12-04 23:15:27 +01002181lws_realloc(void *ptr, size_t size);
2182
Andy Greene99a83c2016-01-20 16:56:06 +08002183LWS_EXTERN void * LWS_WARN_UNUSED_RESULT
Alejandro Merycdc97172014-12-04 23:15:27 +01002184lws_zalloc(size_t size);
2185
Andy Green9395eb62017-01-30 15:02:54 +08002186#ifdef LWS_PLAT_OPTEE
2187void *lws_malloc(size_t size);
2188void lws_free(void *p);
2189#define lws_free_set_NULL(P) do { lws_free(P); (P) = NULL; } while(0)
2190#else
Alejandro Merycdc97172014-12-04 23:15:27 +01002191#define lws_malloc(S) lws_realloc(NULL, S)
2192#define lws_free(P) lws_realloc(P, 0)
Andy Green54806b12015-12-17 17:03:59 +08002193#define lws_free_set_NULL(P) do { lws_realloc(P, 0); (P) = NULL; } while(0)
Andy Green9395eb62017-01-30 15:02:54 +08002194#endif
Alejandro Merycdc97172014-12-04 23:15:27 +01002195
Andy Green19cc7ac2017-03-03 12:38:10 +08002196const struct lws_plat_file_ops *
2197lws_vfs_select_fops(const struct lws_plat_file_ops *fops, const char *vfs_path,
2198 const char **vpath);
2199
Andy Greendc8a3a82015-12-06 09:15:27 +08002200/* lws_plat_ */
Andy Greena654fc02014-04-03 07:16:40 +08002201LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08002202lws_plat_delete_socket_from_fds(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08002203 struct lws *wsi, int m);
Andy Greena654fc02014-04-03 07:16:40 +08002204LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08002205lws_plat_insert_socket_into_fds(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08002206 struct lws *wsi);
Andy Greena654fc02014-04-03 07:16:40 +08002207LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08002208lws_plat_service_periodic(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08002209
2210LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08002211lws_plat_change_pollfd(struct lws_context *context, struct lws *wsi,
2212 struct lws_pollfd *pfd);
Andy Green7aadd142017-03-25 08:42:35 +08002213LWS_EXTERN void
Andy Greend58353f2017-03-26 10:08:35 +08002214lws_add_wsi_to_draining_ext_list(struct lws *wsi);
2215LWS_EXTERN void
Andy Green7aadd142017-03-25 08:42:35 +08002216lws_remove_wsi_from_draining_ext_list(struct lws *wsi);
Andy Greena654fc02014-04-03 07:16:40 +08002217LWS_EXTERN int
2218lws_plat_context_early_init(void);
2219LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08002220lws_plat_context_early_destroy(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08002221LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08002222lws_plat_context_late_destroy(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08002223LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08002224lws_poll_listen_fd(struct lws_pollfd *fd);
Andy Greena654fc02014-04-03 07:16:40 +08002225LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08002226lws_plat_service(struct lws_context *context, int timeout_ms);
Andy Greend3a55052016-01-19 03:34:24 +08002227LWS_EXTERN LWS_VISIBLE int
Andy Greenb46c4012016-10-20 09:09:56 +08002228_lws_plat_service_tsi(struct lws_context *context, int timeout_ms, int tsi);
Andy Greena654fc02014-04-03 07:16:40 +08002229LWS_EXTERN int
Andy Green4386e362015-12-10 07:14:16 +08002230lws_plat_init(struct lws_context *context,
2231 struct lws_context_creation_info *info);
Andy Greena654fc02014-04-03 07:16:40 +08002232LWS_EXTERN void
2233lws_plat_drop_app_privileges(struct lws_context_creation_info *info);
2234LWS_EXTERN unsigned long long
2235time_in_microseconds(void);
Andy Greene99a83c2016-01-20 16:56:06 +08002236LWS_EXTERN const char * LWS_WARN_UNUSED_RESULT
Andy Greena654fc02014-04-03 07:16:40 +08002237lws_plat_inet_ntop(int af, const void *src, char *dst, int cnt);
Leonardo Maccari Rufinoaf7f9432017-06-05 13:59:22 -03002238LWS_EXTERN int LWS_WARN_UNUSED_RESULT
2239lws_plat_inet_pton(int af, const char *src, void *dst);
Andy Green8c0d3c02015-11-02 20:34:12 +08002240
Andy Greene99a83c2016-01-20 16:56:06 +08002241LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green86c1ef12015-12-30 11:43:36 +08002242lws_check_utf8(unsigned char *state, unsigned char *buf, size_t len);
Andy Green3a09c3b2017-03-08 11:11:41 +08002243LWS_EXTERN int alloc_file(struct lws_context *context, const char *filename, uint8_t **buf,
2244 lws_filepos_t *amount);
Andy Green54236bd2017-05-11 15:02:01 +08002245LWS_EXTERN int alloc_pem_to_der_file(struct lws_context *context, const char *filename, uint8_t **buf,
2246 lws_filepos_t *amount);
2247
Andy Green19242db2017-04-06 13:49:17 +08002248LWS_EXTERN void
2249lws_same_vh_protocol_remove(struct lws *wsi);
2250LWS_EXTERN void
2251lws_same_vh_protocol_insert(struct lws *wsi, int n);
Andy Green86c1ef12015-12-30 11:43:36 +08002252
Andy Greena7def3c2017-05-07 10:02:03 +08002253#if defined(LWS_WITH_STATS)
2254void
2255lws_stats_atomic_bump(struct lws_context * context,
2256 struct lws_context_per_thread *pt, int index, uint64_t bump);
2257void
2258lws_stats_atomic_max(struct lws_context * context,
2259 struct lws_context_per_thread *pt, int index, uint64_t val);
2260#else
2261static inline uint64_t lws_stats_atomic_bump(struct lws_context * context,
2262 struct lws_context_per_thread *pt, int index, uint64_t bump) {
2263 (void)context; (void)pt; (void)index; (void)bump; return 0; }
2264static inline uint64_t lws_stats_atomic_max(struct lws_context * context,
2265 struct lws_context_per_thread *pt, int index, uint64_t val) {
2266 (void)context; (void)pt; (void)index; (void)val; return 0; }
2267#endif
2268
Andy Ninged92b6d2017-05-05 11:38:34 -04002269/* socks */
2270void socks_generate_msg(struct lws *wsi, enum socks_msg_type type,
2271 size_t *msg_len);
2272
Andy Green8c0d3c02015-11-02 20:34:12 +08002273#ifdef __cplusplus
2274};
2275#endif