blob: 1cab3c17faeced2a82a445cb90141e356924592e [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 Green112f9802015-12-04 07:22:44 +080041#include <assert.h>
Andy Green8c1f6022016-01-26 20:56:56 +080042#if LWS_MAX_SMP > 1
43#include <pthread.h>
44#endif
Peter Hinz56885f32011-03-02 22:03:47 +000045
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +020046#ifdef LWS_HAVE_SYS_STAT_H
Peter Hinz56885f32011-03-02 22:03:47 +000047#include <sys/stat.h>
Patrick Gansterere5720a32014-02-28 00:57:19 +010048#endif
Peter Hinz56885f32011-03-02 22:03:47 +000049
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +010050#if defined(WIN32) || defined(_WIN32)
Stephan Eberleb820e2c2015-10-23 08:10:55 +020051#if (WINVER < 0x0501)
52#undef WINVER
53#undef _WIN32_WINNT
54#define WINVER 0x0501
55#define _WIN32_WINNT WINVER
56#endif
Joakim Soderberg4c531232013-02-06 15:26:58 +090057#define LWS_NO_DAEMONIZE
Patrick Gansterer2dbd8372014-02-28 12:37:52 +010058#define LWS_ERRNO WSAGetLastError()
59#define LWS_EAGAIN WSAEWOULDBLOCK
60#define LWS_EALREADY WSAEALREADY
61#define LWS_EINPROGRESS WSAEINPROGRESS
62#define LWS_EINTR WSAEINTR
63#define LWS_EISCONN WSAEISCONN
64#define LWS_EWOULDBLOCK WSAEWOULDBLOCK
Patrick Ganstererb47f87b2014-03-30 09:18:05 +020065#define LWS_POLLHUP (FD_CLOSE)
Patrick Gansterer0fc37b62014-03-28 15:44:56 +010066#define LWS_POLLIN (FD_READ | FD_ACCEPT)
67#define LWS_POLLOUT (FD_WRITE)
Patrick Gansterer73882e42014-03-29 08:25:58 +010068#define MSG_NOSIGNAL 0
69#define SHUT_RDWR SD_BOTH
70#define SOL_TCP IPPROTO_TCP
Andy Green8c1f6022016-01-26 20:56:56 +080071#define SHUT_WR SD_SEND
Joakim Soderberg4c531232013-02-06 15:26:58 +090072
Andy Green158e8042014-04-02 14:25:10 +080073#define compatible_close(fd) closesocket(fd)
Andy Greenaa775fd2015-12-26 08:56:58 +080074#define lws_set_blocking_send(wsi) wsi->sock_send_blocking = 1
Andy Greenc53f7ca2015-11-14 07:35:27 +080075#define lws_socket_is_valid(x) (!!x)
Andy Green40110e82015-12-14 08:52:03 +080076#define LWS_SOCK_INVALID 0
Peter Hinz56885f32011-03-02 22:03:47 +000077#include <winsock2.h>
Andy Greeneee0d8a2015-12-17 15:15:12 +080078#include <ws2tcpip.h>
Peter Hinz56885f32011-03-02 22:03:47 +000079#include <windows.h>
Joakim Soderbergd2f5b192014-04-07 11:28:08 +020080#include <tchar.h>
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +020081#ifdef LWS_HAVE_IN6ADDR_H
Andy Green0f58db32014-04-12 11:10:35 +080082#include <in6addr.h>
83#endif
Joakim Soderbergd2f5b192014-04-07 11:28:08 +020084#include <mstcpip.h>
85
86#ifndef __func__
87#define __func__ __FUNCTION__
88#endif
89
Patrick Gansterer6bb4b622014-04-15 18:39:26 +020090#ifdef _WIN32_WCE
91#define vsnprintf _vsnprintf
Andy Green7d22c292016-03-04 10:53:51 +080092#else
93#ifdef LWS_HAVE__VSNPRINTF
94#define vsnprintf _vsnprintf
95#endif
96#endif
97
98#ifdef LWS_HAVE__SNPRINTF
99#define snprintf _snprintf
Patrick Gansterer6bb4b622014-04-15 18:39:26 +0200100#endif
101
Andy Green158e8042014-04-02 14:25:10 +0800102#else /* not windows --> */
Andy Green8c0d3c02015-11-02 20:34:12 +0800103
Patrick Ganstererb13eed42014-03-30 10:19:23 +0200104#include <fcntl.h>
Patrick Ganstererb13eed42014-03-30 10:19:23 +0200105#include <strings.h>
106#include <unistd.h>
Andy Greene77ddd82010-11-13 10:03:47 +0000107#include <sys/types.h>
Andy Green5f2a8152015-11-02 08:21:08 +0800108#ifndef MBED_OPERATORS
Andy Green8c0d3c02015-11-02 20:34:12 +0800109#ifndef __cplusplus
110#include <errno.h>
111#endif
Andy Green5f2a8152015-11-02 08:21:08 +0800112#include <netdb.h>
113#include <signal.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000114#include <sys/socket.h>
Andy Green1e5a9ad2016-03-20 11:59:53 +0800115#ifdef LWS_WITH_HTTP_PROXY
116#include <hubbub/hubbub.h>
117#include <hubbub/parser.h>
118#endif
Andy Greene40aa9b2014-04-02 21:02:54 +0800119#ifdef LWS_BUILTIN_GETIFADDRS
120 #include <getifaddrs.h>
121#else
122 #include <ifaddrs.h>
123#endif
Dnyanesh Gate759e50c2014-09-26 05:39:05 +0800124#if defined (__ANDROID__)
125#include <syslog.h>
126#else
Andy Greene40aa9b2014-04-02 21:02:54 +0800127#include <sys/syslog.h>
Dnyanesh Gate759e50c2014-09-26 05:39:05 +0800128#endif
Andy Greene40aa9b2014-04-02 21:02:54 +0800129#include <sys/un.h>
130#include <sys/socket.h>
131#include <netdb.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000132#include <netinet/in.h>
Andy Green6c939552011-03-08 08:56:57 +0000133#include <netinet/tcp.h>
Andy Greenb45993c2010-12-18 15:13:50 +0000134#include <arpa/inet.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000135#include <poll.h>
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800136#ifdef LWS_USE_LIBEV
Andy Green86ed65f2016-02-14 09:27:41 +0800137#include <ev.h>
138#endif
139#ifdef LWS_USE_LIBUV
Alex Hultmana43c2ac2016-02-01 08:31:54 +0800140#include <uv.h>
Andy Green86ed65f2016-02-14 09:27:41 +0800141#endif
Andy Green7c212cc2010-11-08 20:20:42 +0000142#include <sys/mman.h>
Andy Green5f2a8152015-11-02 08:21:08 +0800143
144#endif /* MBED */
145
146#ifndef LWS_NO_FORK
147#ifdef LWS_HAVE_SYS_PRCTL_H
148#include <sys/prctl.h>
149#endif
150#endif
151
Andy Green038d5822011-02-14 20:58:26 +0000152#include <sys/time.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000153
Patrick Gansterer2dbd8372014-02-28 12:37:52 +0100154#define LWS_ERRNO errno
155#define LWS_EAGAIN EAGAIN
156#define LWS_EALREADY EALREADY
157#define LWS_EINPROGRESS EINPROGRESS
158#define LWS_EINTR EINTR
159#define LWS_EISCONN EISCONN
160#define LWS_EWOULDBLOCK EWOULDBLOCK
Patrick Ganstererb47f87b2014-03-30 09:18:05 +0200161#define LWS_POLLHUP (POLLHUP|POLLERR)
162#define LWS_POLLIN (POLLIN)
163#define LWS_POLLOUT (POLLOUT)
Andy Green1e5a9ad2016-03-20 11:59:53 +0800164static inline int compatible_close(int fd) { return close(fd); }
Andy Green158e8042014-04-02 14:25:10 +0800165#define lws_set_blocking_send(wsi)
Andy Green2cd30742015-11-02 13:10:33 +0800166
167#ifdef MBED_OPERATORS
168#define lws_socket_is_valid(x) ((x) != NULL)
169#define LWS_SOCK_INVALID (NULL)
170#else
Andy Greenc53f7ca2015-11-14 07:35:27 +0800171#define lws_socket_is_valid(x) (x >= 0)
172#define LWS_SOCK_INVALID (-1)
Peter Hinz56885f32011-03-02 22:03:47 +0000173#endif
Andy Green2cd30742015-11-02 13:10:33 +0800174#endif
Peter Hinz56885f32011-03-02 22:03:47 +0000175
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +0200176#ifndef LWS_HAVE_BZERO
Andy Greene5ea1f92014-11-18 18:25:24 +0800177#ifndef bzero
Patrick Gansterer4a837272014-02-28 13:17:49 +0100178#define bzero(b, len) (memset((b), '\0', (len)), (void) 0)
179#endif
Andy Greene5ea1f92014-11-18 18:25:24 +0800180#endif
Patrick Gansterer4a837272014-02-28 13:17:49 +0100181
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +0200182#ifndef LWS_HAVE_STRERROR
Patrick Gansterer9d614912014-02-28 00:59:53 +0100183#define strerror(x) ""
184#endif
185
Andy Green7c212cc2010-11-08 20:20:42 +0000186#ifdef LWS_OPENSSL_SUPPORT
Andy Green1a3f1772016-03-28 19:58:02 +0800187
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200188#ifdef USE_WOLFSSL
ABruines80a70682015-08-09 22:56:32 +0200189#ifdef USE_OLD_CYASSL
190#include <cyassl/openssl/ssl.h>
191#include <cyassl/error-ssl.h>
192#else
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200193#include <wolfssl/openssl/ssl.h>
194#include <wolfssl/error-ssl.h>
ABruines80a70682015-08-09 22:56:32 +0200195#endif /* not USE_OLD_CYASSL */
Andy Green23c5f2e2013-02-06 15:43:00 +0900196#else
Andy Green1a3f1772016-03-28 19:58:02 +0800197#if defined(LWS_USE_POLARSSL)
198#include <polarssl/ssl.h>
199#include <polarssl/error.h>
200#include <polarssl/md5.h>
201#include <polarssl/sha1.h>
202#include <polarssl/ecdh.h>
203#else
204#if defined(LWS_USE_MBEDTLS)
205#include <mbedtls/ssl.h>
206#include <mbedtls/error.h>
207#include <mbedtls/md5.h>
208#include <mbedtls/sha1.h>
209#include <mbedtls/ecdh.h>
210#else
Andy Green7c212cc2010-11-08 20:20:42 +0000211#include <openssl/ssl.h>
212#include <openssl/evp.h>
213#include <openssl/err.h>
Andy Green70dfebd2010-12-20 09:35:03 +0000214#include <openssl/md5.h>
Andy Greene2522172011-01-18 17:14:03 +0000215#include <openssl/sha.h>
Andy Green1a3f1772016-03-28 19:58:02 +0800216#ifdef LWS_HAVE_OPENSSL_ECDH_H
217#include <openssl/ecdh.h>
218#endif
219#endif /* not USE_MBEDTLS */
220#endif /* not USE_POLARSSL */
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200221#endif /* not USE_WOLFSSL */
Darin Willitsdb9ba422011-02-14 20:56:24 +0000222#endif
223
Andy Green7c212cc2010-11-08 20:20:42 +0000224#include "libwebsockets.h"
225
Andy Green8c0d3c02015-11-02 20:34:12 +0800226#if defined(MBED_OPERATORS)
227#undef compatible_close
228#define compatible_close(fd) mbed3_delete_tcp_stream_socket(fd)
Andy Green11f27342015-11-08 12:10:26 +0800229#ifndef BIG_ENDIAN
230#define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */
231#endif
232#ifndef LITTLE_ENDIAN
233#define LITTLE_ENDIAN 1234
234#endif
235#ifndef BYTE_ORDER
236#define BYTE_ORDER LITTLE_ENDIAN
237#endif
Andy Green8c0d3c02015-11-02 20:34:12 +0800238#endif
239
Andy Green158e8042014-04-02 14:25:10 +0800240#if defined(WIN32) || defined(_WIN32)
241
242#ifndef BIG_ENDIAN
243#define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */
244#endif
245#ifndef LITTLE_ENDIAN
246#define LITTLE_ENDIAN 1234
247#endif
248#ifndef BYTE_ORDER
249#define BYTE_ORDER LITTLE_ENDIAN
250#endif
Andy Green11f27342015-11-08 12:10:26 +0800251#ifndef u_int64_t
Andy Green158e8042014-04-02 14:25:10 +0800252typedef unsigned __int64 u_int64_t;
Andy Green11f27342015-11-08 12:10:26 +0800253#endif
Andy Green158e8042014-04-02 14:25:10 +0800254
255#undef __P
256#ifndef __P
257#if __STDC__
258#define __P(protos) protos
259#else
260#define __P(protos) ()
261#endif
262#endif
263
264#else
265
266#include <sys/stat.h>
Andy Green158e8042014-04-02 14:25:10 +0800267#include <sys/time.h>
268
269#if defined(__APPLE__)
270#include <machine/endian.h>
271#elif defined(__FreeBSD__)
272#include <sys/endian.h>
273#elif defined(__linux__)
274#include <endian.h>
275#endif
276
Andy Green8c0d3c02015-11-02 20:34:12 +0800277#ifdef __cplusplus
278extern "C" {
279#endif
Alejandro Meryead8afe2014-12-07 03:36:11 +0100280
emironova49d0842014-09-16 14:05:13 +0400281#if defined(__QNX__)
282 #include <gulliver.h>
283 #if defined(__LITTLEENDIAN__)
284 #define BYTE_ORDER __LITTLEENDIAN__
285 #define LITTLE_ENDIAN __LITTLEENDIAN__
286 #define BIG_ENDIAN 4321 /* to show byte order (taken from gcc); for suppres warning that BIG_ENDIAN is not defined. */
287 #endif
288 #if defined(__BIGENDIAN__)
289 #define BYTE_ORDER __BIGENDIAN__
290 #define LITTLE_ENDIAN 1234 /* to show byte order (taken from gcc); for suppres warning that LITTLE_ENDIAN is not defined. */
291 #define BIG_ENDIAN __BIGENDIAN__
292 #endif
293#endif
294
Andy Green158e8042014-04-02 14:25:10 +0800295#if !defined(BYTE_ORDER)
296# define BYTE_ORDER __BYTE_ORDER
297#endif
298#if !defined(LITTLE_ENDIAN)
299# define LITTLE_ENDIAN __LITTLE_ENDIAN
300#endif
301#if !defined(BIG_ENDIAN)
302# define BIG_ENDIAN __BIG_ENDIAN
303#endif
304
305#endif
306
Darin Willitsc19456f2011-02-14 17:52:39 +0000307/*
308 * Mac OSX as well as iOS do not define the MSG_NOSIGNAL flag,
309 * but happily have something equivalent in the SO_NOSIGPIPE flag.
310 */
311#ifdef __APPLE__
Andy Green6ee372f2012-04-09 15:09:01 +0800312#define MSG_NOSIGNAL SO_NOSIGPIPE
Darin Willitsc19456f2011-02-14 17:52:39 +0000313#endif
314
Bud Davis229bfec2015-01-30 10:13:01 +0800315#ifdef _WIN32
316#ifndef FD_HASHTABLE_MODULUS
317#define FD_HASHTABLE_MODULUS 32
318#endif
319#endif
320
Andy Green8c1f6022016-01-26 20:56:56 +0800321#ifndef LWS_DEF_HEADER_LEN
322#define LWS_DEF_HEADER_LEN 1024
Andy Greenc0d6b632013-01-12 23:42:17 +0800323#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800324#ifndef LWS_DEF_HEADER_POOL
325#define LWS_DEF_HEADER_POOL 16
Andy Green3df58002015-12-25 12:44:12 +0800326#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800327#ifndef LWS_MAX_PROTOCOLS
Andy Greend91d5e82013-02-10 16:00:47 +0800328#define LWS_MAX_PROTOCOLS 5
Andy Greenc0d6b632013-01-12 23:42:17 +0800329#endif
330#ifndef LWS_MAX_EXTENSIONS_ACTIVE
Andy Greend738f842016-01-19 04:32:14 +0800331#define LWS_MAX_EXTENSIONS_ACTIVE 2
Andy Greenc0d6b632013-01-12 23:42:17 +0800332#endif
Andy Green67112662016-01-11 11:34:01 +0800333#ifndef LWS_MAX_EXT_OFFERS
334#define LWS_MAX_EXT_OFFERS 8
335#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800336#ifndef SPEC_LATEST_SUPPORTED
Andy Greend85cb202011-09-25 09:32:54 +0100337#define SPEC_LATEST_SUPPORTED 13
Andy Greenc0d6b632013-01-12 23:42:17 +0800338#endif
339#ifndef AWAITING_TIMEOUT
Andy Green8c1f6022016-01-26 20:56:56 +0800340#define AWAITING_TIMEOUT 20
Andy Greenc0d6b632013-01-12 23:42:17 +0800341#endif
342#ifndef CIPHERS_LIST_STRING
David Galeanof177f2a2013-01-10 10:15:19 +0800343#define CIPHERS_LIST_STRING "DEFAULT"
Andy Greenc0d6b632013-01-12 23:42:17 +0800344#endif
Andy Greena824d182013-01-15 20:52:29 +0800345#ifndef LWS_SOMAXCONN
346#define LWS_SOMAXCONN SOMAXCONN
347#endif
Andy Green7c212cc2010-11-08 20:20:42 +0000348
Andy Greene2522172011-01-18 17:14:03 +0000349#define MAX_WEBSOCKET_04_KEY_LEN 128
Andy Green54495112013-02-06 21:10:16 +0900350#define LWS_MAX_SOCKET_IO_BUF 4096
Andy Greenc0d6b632013-01-12 23:42:17 +0800351
352#ifndef SYSTEM_RANDOM_FILEPATH
Andy Green4739e5c2011-01-22 12:51:57 +0000353#define SYSTEM_RANDOM_FILEPATH "/dev/urandom"
Andy Greenc0d6b632013-01-12 23:42:17 +0800354#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800355
Andy Green5fd55cd2011-04-23 10:54:53 +0100356enum lws_websocket_opcodes_07 {
Andy Green54806b12015-12-17 17:03:59 +0800357 LWSWSOPC_CONTINUATION = 0,
358 LWSWSOPC_TEXT_FRAME = 1,
359 LWSWSOPC_BINARY_FRAME = 2,
Andy Greena41314f2011-05-23 10:00:03 +0100360
Andy Green54806b12015-12-17 17:03:59 +0800361 LWSWSOPC_NOSPEC__MUX = 7,
Andy Greena41314f2011-05-23 10:00:03 +0100362
363 /* control extensions 8+ */
364
Andy Green54806b12015-12-17 17:03:59 +0800365 LWSWSOPC_CLOSE = 8,
366 LWSWSOPC_PING = 9,
367 LWSWSOPC_PONG = 0xa,
Andy Green5fd55cd2011-04-23 10:54:53 +0100368};
369
Andy Greena41314f2011-05-23 10:00:03 +0100370
Andy Green7c212cc2010-11-08 20:20:42 +0000371enum lws_connection_states {
Andy Green54806b12015-12-17 17:03:59 +0800372 LWSS_HTTP,
373 LWSS_HTTP_ISSUING_FILE,
374 LWSS_HTTP_HEADERS,
375 LWSS_HTTP_BODY,
376 LWSS_DEAD_SOCKET,
377 LWSS_ESTABLISHED,
Andy Greena661ee52016-02-29 13:18:30 +0800378 LWSS_CLIENT_HTTP_ESTABLISHED,
Andy Green54806b12015-12-17 17:03:59 +0800379 LWSS_CLIENT_UNCONNECTED,
380 LWSS_RETURNED_CLOSE_ALREADY,
381 LWSS_AWAITING_CLOSE_ACK,
382 LWSS_FLUSHING_STORED_SEND_BEFORE_CLOSE,
Andy Green8c1f6022016-01-26 20:56:56 +0800383 LWSS_SHUTDOWN,
Andy Green40110e82015-12-14 08:52:03 +0800384
Andy Green54806b12015-12-17 17:03:59 +0800385 LWSS_HTTP2_AWAIT_CLIENT_PREFACE,
386 LWSS_HTTP2_ESTABLISHED_PRE_SETTINGS,
387 LWSS_HTTP2_ESTABLISHED,
Andy Green6a8099b2016-02-21 21:25:48 +0800388
Andy Green2d8d35a2016-02-29 14:19:16 +0800389 LWSS_CGI,
Andy Green7c212cc2010-11-08 20:20:42 +0000390};
391
Andrew Canadayafe26cf2014-07-13 01:07:36 -0400392enum http_version {
393 HTTP_VERSION_1_0,
394 HTTP_VERSION_1_1,
Andy Green22d6f392016-04-10 09:33:54 +0800395 HTTP_VERSION_2
Andrew Canadayafe26cf2014-07-13 01:07:36 -0400396};
397
398enum http_connection_type {
399 HTTP_CONNECTION_CLOSE,
400 HTTP_CONNECTION_KEEP_ALIVE
401};
402
Andy Green024eb6c2014-10-08 12:00:53 +0800403enum lws_pending_protocol_send {
404 LWS_PPS_NONE,
405 LWS_PPS_HTTP2_MY_SETTINGS,
406 LWS_PPS_HTTP2_ACK_SETTINGS,
Andy Greenbbbf07a2014-10-27 16:46:44 +0800407 LWS_PPS_HTTP2_PONG,
Andy Green024eb6c2014-10-08 12:00:53 +0800408};
409
Andy Green7c212cc2010-11-08 20:20:42 +0000410enum lws_rx_parse_state {
411 LWS_RXPS_NEW,
Andy Greene77ddd82010-11-13 10:03:47 +0000412
Andy Green67112662016-01-11 11:34:01 +0800413 LWS_RXPS_04_mask_1,
414 LWS_RXPS_04_mask_2,
415 LWS_RXPS_04_mask_3,
Andy Green3e5eb782011-01-18 18:14:26 +0000416
417 LWS_RXPS_04_FRAME_HDR_1,
Andy Green38e57bb2011-01-19 12:20:27 +0000418 LWS_RXPS_04_FRAME_HDR_LEN,
419 LWS_RXPS_04_FRAME_HDR_LEN16_2,
420 LWS_RXPS_04_FRAME_HDR_LEN16_1,
421 LWS_RXPS_04_FRAME_HDR_LEN64_8,
422 LWS_RXPS_04_FRAME_HDR_LEN64_7,
423 LWS_RXPS_04_FRAME_HDR_LEN64_6,
424 LWS_RXPS_04_FRAME_HDR_LEN64_5,
425 LWS_RXPS_04_FRAME_HDR_LEN64_4,
426 LWS_RXPS_04_FRAME_HDR_LEN64_3,
427 LWS_RXPS_04_FRAME_HDR_LEN64_2,
428 LWS_RXPS_04_FRAME_HDR_LEN64_1,
Andy Green3e5eb782011-01-18 18:14:26 +0000429
Andy Green283d0a22011-04-24 05:46:23 +0100430 LWS_RXPS_07_COLLECT_FRAME_KEY_1,
431 LWS_RXPS_07_COLLECT_FRAME_KEY_2,
432 LWS_RXPS_07_COLLECT_FRAME_KEY_3,
433 LWS_RXPS_07_COLLECT_FRAME_KEY_4,
434
Andy Green7c212cc2010-11-08 20:20:42 +0000435 LWS_RXPS_PAYLOAD_UNTIL_LENGTH_EXHAUSTED
436};
437
438
Andy Green0d338332011-02-12 11:57:43 +0000439enum connection_mode {
Andy Green54806b12015-12-17 17:03:59 +0800440 LWSCM_HTTP_SERVING,
Andy Greena661ee52016-02-29 13:18:30 +0800441 LWSCM_HTTP_CLIENT, /* we are client to someone else's server */
Andy Green54806b12015-12-17 17:03:59 +0800442 LWSCM_HTTP_SERVING_ACCEPTED, /* actual HTTP service going on */
Andy Greena661ee52016-02-29 13:18:30 +0800443 LWSCM_HTTP_CLIENT_ACCEPTED, /* actual HTTP service going on */
Andy Green54806b12015-12-17 17:03:59 +0800444 LWSCM_PRE_WS_SERVING_ACCEPT,
Andy Greend280b6e2013-01-15 13:40:23 +0800445
Andy Green54806b12015-12-17 17:03:59 +0800446 LWSCM_WS_SERVING,
447 LWSCM_WS_CLIENT,
Andy Green40110e82015-12-14 08:52:03 +0800448
Andy Green54806b12015-12-17 17:03:59 +0800449 LWSCM_HTTP2_SERVING,
Andy Green0d338332011-02-12 11:57:43 +0000450
Andy Greene2160712013-01-28 12:19:10 +0800451 /* transient, ssl delay hiding */
Andy Green54806b12015-12-17 17:03:59 +0800452 LWSCM_SSL_ACK_PENDING,
Andy Green8c1f6022016-01-26 20:56:56 +0800453 LWSCM_SSL_INIT,
Andy Greene2160712013-01-28 12:19:10 +0800454
Andy Greenbe93fef2011-02-14 20:25:43 +0000455 /* transient modes */
Andy Green54806b12015-12-17 17:03:59 +0800456 LWSCM_WSCL_WAITING_CONNECT,
457 LWSCM_WSCL_WAITING_PROXY_REPLY,
458 LWSCM_WSCL_ISSUE_HANDSHAKE,
459 LWSCM_WSCL_ISSUE_HANDSHAKE2,
460 LWSCM_WSCL_WAITING_SSL,
461 LWSCM_WSCL_WAITING_SERVER_REPLY,
462 LWSCM_WSCL_WAITING_EXTENSION_CONNECT,
463 LWSCM_WSCL_PENDING_CANDIDATE_CHILD,
Andy Greenbe93fef2011-02-14 20:25:43 +0000464
Andy Green0d338332011-02-12 11:57:43 +0000465 /* special internal types */
Andy Green54806b12015-12-17 17:03:59 +0800466 LWSCM_SERVER_LISTENER,
Andy Green6a8099b2016-02-21 21:25:48 +0800467 LWSCM_CGI, /* stdin, stdout, stderr for another cgi master wsi */
Andy Green0d338332011-02-12 11:57:43 +0000468};
469
Andy Greenca0a1292013-03-16 11:24:23 +0800470enum {
471 LWS_RXFLOW_ALLOW = (1 << 0),
472 LWS_RXFLOW_PENDING_CHANGE = (1 << 1),
473};
474
Andy Green1fb95e82015-12-26 17:20:34 +0800475/* this is not usable directly by user code any more, lws_close_reason() */
476#define LWS_WRITE_CLOSE 4
477
Andy Green4b85c1d2015-12-04 11:08:32 +0800478struct lws_protocols;
479struct lws;
Andy Greene92cd172011-01-19 13:11:55 +0000480
Andy Green86ed65f2016-02-14 09:27:41 +0800481#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
482
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800483struct lws_io_watcher {
Andy Green86ed65f2016-02-14 09:27:41 +0800484#ifdef LWS_USE_LIBEV
485 ev_io ev_watcher;
486#endif
487#ifdef LWS_USE_LIBUV
488 uv_poll_t uv_watcher;
489#endif
490 struct lws_context *context;
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800491};
492
493struct lws_signal_watcher {
Andy Green86ed65f2016-02-14 09:27:41 +0800494#ifdef LWS_USE_LIBEV
495 ev_signal ev_watcher;
496#endif
497#ifdef LWS_USE_LIBUV
498 uv_signal_t uv_watcher;
499#endif
500 struct lws_context *context;
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800501};
Andy Green86ed65f2016-02-14 09:27:41 +0800502#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800503
Bud Davis229bfec2015-01-30 10:13:01 +0800504#ifdef _WIN32
505#define LWS_FD_HASH(fd) ((fd ^ (fd >> 8) ^ (fd >> 16)) % FD_HASHTABLE_MODULUS)
Andy Green3ef579b2015-12-04 09:23:56 +0800506struct lws_fd_hashtable {
Andy Green4b85c1d2015-12-04 11:08:32 +0800507 struct lws **wsi;
Bud Davis229bfec2015-01-30 10:13:01 +0800508 int length;
509};
510#endif
511
Andy Green3df58002015-12-25 12:44:12 +0800512/*
513 * This is totally opaque to code using the library. It's exported as a
514 * forward-reference pointer-only declaration; the user can use the pointer with
515 * other APIs to get information out of it.
516 */
517
518struct lws_fragments {
519 unsigned short offset;
520 unsigned short len;
521 unsigned char nfrag; /* which ah->frag[] continues this content, or 0 */
522};
523
524/*
525 * these are assigned from a pool held in the context.
526 * Both client and server mode uses them for http header analysis
527 */
528
529struct allocated_headers {
Andy Green2c218e72016-02-15 12:37:04 +0800530 struct lws *wsi; /* owner */
Andy Greende132b92015-12-25 13:48:20 +0800531 char *data; /* prepared by context init to point to dedicated storage */
532 /*
533 * the randomly ordered fragments, indexed by frag_index and
534 * lws_fragments->nfrag for continuation.
535 */
536 struct lws_fragments frags[WSI_TOKEN_COUNT * 2];
Andy Green8c1f6022016-01-26 20:56:56 +0800537 time_t assigned;
Andy Green3df58002015-12-25 12:44:12 +0800538 /*
539 * for each recognized token, frag_index says which frag[] his data
540 * starts in (0 means the token did not appear)
541 * the actual header data gets dumped as it comes in, into data[]
542 */
543 unsigned char frag_index[WSI_TOKEN_COUNT];
Andy Green2c218e72016-02-15 12:37:04 +0800544 unsigned char rx[2048];
545 unsigned int rxpos;
546 unsigned int rxlen;
547
Andy Green3df58002015-12-25 12:44:12 +0800548#ifndef LWS_NO_CLIENT
549 char initial_handshake_hash_base64[30];
Andy Green3df58002015-12-25 12:44:12 +0800550#endif
Andy Greenaa775fd2015-12-26 08:56:58 +0800551
552 unsigned short pos;
553 unsigned char in_use;
554 unsigned char nfrag;
Andy Green3df58002015-12-25 12:44:12 +0800555};
556
Andy Greend3a55052016-01-19 03:34:24 +0800557/*
558 * so we can have n connections being serviced simultaneously,
559 * these things need to be isolated per-thread.
560 */
561
562struct lws_context_per_thread {
Andy Green8c1f6022016-01-26 20:56:56 +0800563#if LWS_MAX_SMP > 1
564 pthread_mutex_t lock;
565#endif
Andy Greend3a55052016-01-19 03:34:24 +0800566 struct lws_pollfd *fds;
567 struct lws *rx_draining_ext_list;
568 struct lws *tx_draining_ext_list;
Andy Green8c1f6022016-01-26 20:56:56 +0800569 struct lws *timeout_list;
Andy Green38a1cbb2016-02-27 11:03:27 +0800570 struct lws_context *context;
Andy Green6a8099b2016-02-21 21:25:48 +0800571#ifdef LWS_WITH_CGI
572 struct lws_cgi *cgi_list;
573#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800574 void *http_header_data;
575 struct allocated_headers *ah_pool;
576 struct lws *ah_wait_list;
577 int ah_wait_list_length;
Andy Greend3a55052016-01-19 03:34:24 +0800578#ifdef LWS_OPENSSL_SUPPORT
579 struct lws *pending_read_list; /* linked list */
580#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800581#ifndef LWS_NO_SERVER
582 struct lws *wsi_listening;
583#endif
Andy Green86ed65f2016-02-14 09:27:41 +0800584#if defined(LWS_USE_LIBEV)
585 struct ev_loop *io_loop_ev;
586#endif
587#if defined(LWS_USE_LIBUV)
588 uv_loop_t *io_loop_uv;
589 uv_signal_t signals[8];
Andy Green38a1cbb2016-02-27 11:03:27 +0800590 uv_timer_t uv_timeout_watcher;
Andy Green09998e32016-04-06 09:23:16 +0800591 uv_idle_t uv_idle;
Andy Green86ed65f2016-02-14 09:27:41 +0800592#endif
593#if defined(LWS_USE_LIBEV)
594 struct lws_io_watcher w_accept;
595#endif
596#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
597 struct lws_signal_watcher w_sigint;
598 unsigned char ev_loop_foreign:1;
599#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800600
601 unsigned long count_conns;
Andy Greend3a55052016-01-19 03:34:24 +0800602 /*
603 * usable by anything in the service code, but only if the scope
604 * does not last longer than the service action (since next service
605 * of any socket can likewise use it and overwrite)
606 */
607 unsigned char *serv_buf;
608#ifdef _WIN32
609 WSAEVENT *events;
610#else
611 int dummy_pipe_fds[2];
612#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800613 unsigned int fds_count;
614
615 short ah_count_in_use;
Andy Green38a1cbb2016-02-27 11:03:27 +0800616 unsigned char tid;
Andy Greend3a55052016-01-19 03:34:24 +0800617};
618
Andy Greend526c502016-03-28 10:10:43 +0800619struct lws_http_mount {
620 struct lws_http_mount *mount_next;
621 const char *mountpoint; /* mountpoint in http pathspace, eg, "/" */
622 const char *origin; /* path to be mounted, eg, "/var/www/warmcat.com" */
623 const char *def; /* default target, eg, "index.html" */
624
Andy Greena5e73a12016-04-13 11:49:07 +0800625 struct lws_protocol_vhost_options *cgienv;
626
Andy Greenf5efa742016-04-13 11:42:53 +0800627 int cgi_timeout;
628
Andy Greend526c502016-03-28 10:10:43 +0800629 unsigned char origin_protocol;
630 unsigned char mountpoint_len;
631};
632
633/*
634 * virtual host -related context information
635 * vhostwide SSL context
636 * vhostwide proxy
637 *
638 * heirarchy:
639 *
640 * context -> vhost -> wsi
641 *
642 * incoming connection non-SSL vhost binding:
643 *
644 * listen socket -> wsi -> select vhost after first headers
645 *
646 * incoming connection SSL vhost binding:
647 *
648 * SSL SNI -> wsi -> bind after SSL negotiation
649 */
650
651struct lws_vhost {
652 char http_proxy_address[128];
653 char proxy_basic_auth_token[128];
654 struct lws_context *context;
655 struct lws_vhost *vhost_next;
656 struct lws_http_mount *mount_list;
657 struct lws *lserv_wsi;
658 const char *name;
659 const char *iface;
660 const struct lws_protocols *protocols;
Andy Green02077052016-04-06 16:15:40 +0800661 void **protocol_vh_privs;
Andy Green37098ae2016-04-08 13:25:34 +0800662 struct lws_protocol_vhost_options *pvo;
Andy Greend526c502016-03-28 10:10:43 +0800663#ifdef LWS_OPENSSL_SUPPORT
664 SSL_CTX *ssl_ctx;
665 SSL_CTX *ssl_client_ctx;
666#endif
667#ifndef LWS_NO_EXTENSIONS
668 const struct lws_extension *extensions;
669#endif
670
671 int listen_port;
672 unsigned int http_proxy_port;
673 int count_protocols;
674 int ka_time;
675 int ka_probes;
676 int ka_interval;
Andy Greenb46e4a82016-04-12 16:26:03 +0800677 int keepalive_timeout;
Andy Greend526c502016-03-28 10:10:43 +0800678
679#ifdef LWS_OPENSSL_SUPPORT
680 int use_ssl;
681 int allow_non_ssl_on_ssl_port;
682 unsigned int user_supplied_ssl_ctx:1;
683#endif
684};
685
Andy Greend3a55052016-01-19 03:34:24 +0800686/*
687 * the rest is managed per-context, that includes
688 *
689 * - processwide single fd -> wsi lookup
690 * - contextwide headers pool
Andy Greend3a55052016-01-19 03:34:24 +0800691 */
692
Andy Green4b85c1d2015-12-04 11:08:32 +0800693struct lws_context {
Andy Greenaa775fd2015-12-26 08:56:58 +0800694 time_t last_timeout_check_s;
695 struct lws_plat_file_ops fops;
Andy Greend3a55052016-01-19 03:34:24 +0800696 struct lws_context_per_thread pt[LWS_MAX_SMP];
Bud Davis229bfec2015-01-30 10:13:01 +0800697#ifdef _WIN32
698/* different implementation between unix and windows */
Andy Green3ef579b2015-12-04 09:23:56 +0800699 struct lws_fd_hashtable fd_hashtable[FD_HASHTABLE_MODULUS];
Bud Davis229bfec2015-01-30 10:13:01 +0800700#else
Andy Green4b85c1d2015-12-04 11:08:32 +0800701 struct lws **lws_lookup; /* fd to wsi */
Bud Davis229bfec2015-01-30 10:13:01 +0800702#endif
Andy Greend526c502016-03-28 10:10:43 +0800703 struct lws_vhost *vhost_list;
Andy Green02077052016-04-06 16:15:40 +0800704 struct lws_plugin *plugin_list;
Andy Greenaa775fd2015-12-26 08:56:58 +0800705 const struct lws_token_limits *token_limits;
706 void *user_space;
Andy Greend738f842016-01-19 04:32:14 +0800707
Andy Green86ed65f2016-02-14 09:27:41 +0800708#if defined(LWS_USE_LIBEV)
709 lws_ev_signal_cb_t * lws_ev_sigint_cb;
710#endif
711#if defined(LWS_USE_LIBUV)
Denis Osvaldf107e4b2016-03-22 14:04:15 +0100712 uv_signal_cb lws_uv_sigint_cb;
Andy Green86ed65f2016-02-14 09:27:41 +0800713#endif
Andy Greenaa775fd2015-12-26 08:56:58 +0800714 char canonical_hostname[128];
715#ifdef LWS_LATENCY
716 unsigned long worst_latency;
717 char worst_latency_info[256];
718#endif
Andy Greenb8b247d2013-01-22 07:20:08 +0800719
Andy Greenaa775fd2015-12-26 08:56:58 +0800720 int max_fds;
Andy Green86ed65f2016-02-14 09:27:41 +0800721#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
Andy Greenaa775fd2015-12-26 08:56:58 +0800722 int use_ev_sigint;
723#endif
Andy Green24cba922013-01-19 13:56:10 +0800724 int started_with_parent;
Andy Greend526c502016-03-28 10:10:43 +0800725 int uid, gid;
Andy Green24cba922013-01-19 13:56:10 +0800726
Andy Green44eee682011-02-10 09:32:24 +0000727 int fd_random;
Andy Greend526c502016-03-28 10:10:43 +0800728#ifdef LWS_OPENSSL_SUPPORT
729#define lws_ssl_anybody_has_buffered_read(w) \
730 (w->vhost->use_ssl && \
731 w->context->pt[(int)w->tsi].pending_read_list)
732#define lws_ssl_anybody_has_buffered_read_tsi(c, t) \
733 (/*c->use_ssl && */ \
734 c->pt[(int)t].pending_read_list)
735#else
736#define lws_ssl_anybody_has_buffered_read(ctx) (0)
737#define lws_ssl_anybody_has_buffered_read_tsi(ctx, t) (0)
738#endif
Andy Green86ed65f2016-02-14 09:27:41 +0800739 int count_wsi_allocated;
Andy Greenaa775fd2015-12-26 08:56:58 +0800740 unsigned int options;
Andy Greend3a55052016-01-19 03:34:24 +0800741 unsigned int fd_limit_per_thread;
Andy Green200a6a22016-02-15 20:36:02 +0800742 unsigned int timeout_secs;
Andy Green6ee372f2012-04-09 15:09:01 +0800743
Patrick Gansterer1ee57f62014-03-06 11:57:50 +0100744 /*
745 * set to the Thread ID that's doing the service loop just before entry
746 * to poll indicates service thread likely idling in poll()
747 * volatile because other threads may check it as part of processing
748 * for pollfd event change.
749 */
750 volatile int service_tid;
Andy Greenc35b36b2015-12-24 13:00:54 +0800751 int service_tid_detected;
Patrick Gansterer1ee57f62014-03-06 11:57:50 +0100752
Andy Green3df58002015-12-25 12:44:12 +0800753 short max_http_header_data;
754 short max_http_header_pool;
Andy Greend3a55052016-01-19 03:34:24 +0800755 short count_threads;
Andy Green02077052016-04-06 16:15:40 +0800756 short plugin_protocol_count;
757 short plugin_extension_count;
Andy Green9a9d5ea2016-01-18 11:49:41 +0800758
759 unsigned int being_destroyed:1;
Andy Green86ed65f2016-02-14 09:27:41 +0800760 unsigned int requested_kill:1;
Andy Green02077052016-04-06 16:15:40 +0800761 unsigned int protocol_init_done:1;
Andy Greenb45993c2010-12-18 15:13:50 +0000762};
763
Andy Greend526c502016-03-28 10:10:43 +0800764#define lws_get_context_protocol(ctx, x) ctx->vhost_list->protocols[x]
765#define lws_get_vh_protocol(vh, x) vh->protocols[x]
766
Andy Green86ed65f2016-02-14 09:27:41 +0800767LWS_EXTERN void
768lws_close_free_wsi_final(struct lws *wsi);
769LWS_EXTERN void
770lws_libuv_closehandle(struct lws *wsi);
771
Andy Green0a183542016-04-09 07:22:40 +0800772LWS_VISIBLE LWS_EXTERN int
773lws_plat_plugins_init(struct lws_context * context, const char *d);
774
775LWS_VISIBLE LWS_EXTERN int
776lws_plat_plugins_destroy(struct lws_context * context);
777
Andy Greena717df22014-04-11 13:14:37 +0800778enum {
779 LWS_EV_READ = (1 << 0),
780 LWS_EV_WRITE = (1 << 1),
781 LWS_EV_START = (1 << 2),
782 LWS_EV_STOP = (1 << 3),
Andy Green86ed65f2016-02-14 09:27:41 +0800783
784 LWS_EV_PREPARE_DELETION = (1 << 31),
Andy Greena717df22014-04-11 13:14:37 +0800785};
786
Andy Green86ed65f2016-02-14 09:27:41 +0800787#if defined(LWS_USE_LIBEV)
Andy Greena717df22014-04-11 13:14:37 +0800788LWS_EXTERN void
Andy Green11c05bf2015-12-16 18:19:08 +0800789lws_libev_accept(struct lws *new_wsi, lws_sockfd_type accept_fd);
Andy Greena717df22014-04-11 13:14:37 +0800790LWS_EXTERN void
Andy Green11c05bf2015-12-16 18:19:08 +0800791lws_libev_io(struct lws *wsi, int flags);
Andy Greena717df22014-04-11 13:14:37 +0800792LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +0800793lws_libev_init_fd_table(struct lws_context *context);
Andy Greena717df22014-04-11 13:14:37 +0800794LWS_EXTERN void
Andy Green86ed65f2016-02-14 09:27:41 +0800795lws_libev_destroyloop(struct lws_context *context, int tsi);
796LWS_EXTERN void
797lws_libev_run(const struct lws_context *context, int tsi);
Andy Greenc6fd3602016-03-23 09:22:11 +0800798#define LWS_LIBEV_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBEV)
Andy Green86ed65f2016-02-14 09:27:41 +0800799LWS_EXTERN void lws_feature_status_libev(struct lws_context_creation_info *info);
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800800#else
Andy Green86ed65f2016-02-14 09:27:41 +0800801#define lws_libev_accept(_a, _b) ((void) 0)
802#define lws_libev_io(_a, _b) ((void) 0)
803#define lws_libev_init_fd_table(_a) (0)
804#define lws_libev_run(_a, _b) ((void) 0)
805#define lws_libev_destroyloop(_a, _b) ((void) 0)
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800806#define LWS_LIBEV_ENABLED(context) (0)
Andy Green86ed65f2016-02-14 09:27:41 +0800807#if LWS_POSIX
Andy Greena717df22014-04-11 13:14:37 +0800808#define lws_feature_status_libev(_a) \
809 lwsl_notice("libev support not compiled in\n")
Andy Green8c0d3c02015-11-02 20:34:12 +0800810#else
811#define lws_feature_status_libev(_a)
812#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800813#endif
814
Andy Green86ed65f2016-02-14 09:27:41 +0800815#if defined(LWS_USE_LIBUV)
816LWS_EXTERN void
817lws_libuv_accept(struct lws *new_wsi, lws_sockfd_type accept_fd);
818LWS_EXTERN void
819lws_libuv_io(struct lws *wsi, int flags);
820LWS_EXTERN int
821lws_libuv_init_fd_table(struct lws_context *context);
822LWS_EXTERN void
823lws_libuv_run(const struct lws_context *context, int tsi);
824LWS_EXTERN void
825lws_libuv_destroyloop(struct lws_context *context, int tsi);
Andy Greenc6fd3602016-03-23 09:22:11 +0800826#define LWS_LIBUV_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBUV)
Andy Green86ed65f2016-02-14 09:27:41 +0800827LWS_EXTERN void lws_feature_status_libuv(struct lws_context_creation_info *info);
828#else
829#define lws_libuv_accept(_a, _b) ((void) 0)
830#define lws_libuv_io(_a, _b) ((void) 0)
831#define lws_libuv_init_fd_table(_a) (0)
832#define lws_libuv_run(_a, _b) ((void) 0)
833#define lws_libuv_destroyloop(_a, _b) ((void) 0)
834#define LWS_LIBUV_ENABLED(context) (0)
835#if LWS_POSIX
836#define lws_feature_status_libuv(_a) \
837 lwsl_notice("libuv support not compiled in\n")
838#else
839#define lws_feature_status_libuv(_a)
840#endif
841#endif
842
843
Andy Green055f2972014-03-24 16:09:25 +0800844#ifdef LWS_USE_IPV6
Andy Greendc8a3a82015-12-06 09:15:27 +0800845#define LWS_IPV6_ENABLED(context) \
Andy Greenc6fd3602016-03-23 09:22:11 +0800846 (!lws_check_opt(context->options, LWS_SERVER_OPTION_DISABLE_IPV6))
James Devine3f13ea22014-03-24 16:09:25 +0800847#else
848#define LWS_IPV6_ENABLED(context) (0)
849#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800850
Andy Greenb1a9e502013-11-10 15:15:21 +0800851enum uri_path_states {
852 URIPS_IDLE,
853 URIPS_SEEN_SLASH,
854 URIPS_SEEN_SLASH_DOT,
855 URIPS_SEEN_SLASH_DOT_DOT,
856};
857
858enum uri_esc_states {
859 URIES_IDLE,
860 URIES_SEEN_PERCENT,
861 URIES_SEEN_PERCENT_H1,
862};
Andy Greenf3d3b402011-02-09 07:16:34 +0000863
Andy Green024eb6c2014-10-08 12:00:53 +0800864/* notice that these union members:
Andy Green40110e82015-12-14 08:52:03 +0800865 *
Andy Green024eb6c2014-10-08 12:00:53 +0800866 * hdr
867 * http
868 * http2
Andy Green40110e82015-12-14 08:52:03 +0800869 *
Andy Green024eb6c2014-10-08 12:00:53 +0800870 * all have a pointer to allocated_headers struct as their first member.
Andy Green40110e82015-12-14 08:52:03 +0800871 *
Andy Green024eb6c2014-10-08 12:00:53 +0800872 * It means for allocated_headers access, the three union paths can all be
Peter Pentchevbb085da2015-12-03 15:55:11 +0200873 * used interchangeably to access the same data
Andy Green024eb6c2014-10-08 12:00:53 +0800874 */
875
Andy Greena661ee52016-02-29 13:18:30 +0800876
877#ifndef LWS_NO_CLIENT
878struct client_info_stash {
879 char address[256];
880 char path[1024];
881 char host[256];
882 char origin[256];
883 char protocol[256];
884 char method[16];
885};
886#endif
887
Andy Green2d8d35a2016-02-29 14:19:16 +0800888struct _lws_header_related {
889 /* MUST be first in struct */
890 struct allocated_headers *ah;
891 struct lws *ah_wait_list;
892 unsigned char *preamble_rx;
893#ifndef LWS_NO_CLIENT
894 struct client_info_stash *stash;
895#endif
896 unsigned int preamble_rx_len;
897 enum uri_path_states ups;
898 enum uri_esc_states ues;
899 short lextable_pos;
900 unsigned short current_token_limit;
901#ifndef LWS_NO_CLIENT
902 unsigned short c_port;
903#endif
904 char esc_stash;
905 char post_literal_equal;
906 unsigned char parser_state; /* enum lws_token_indexes */
907 char redirects;
908};
909
Andy Green84fd9492013-11-09 11:40:32 +0800910struct _lws_http_mode_related {
Andy Green024eb6c2014-10-08 12:00:53 +0800911 /* MUST be first in struct */
Andy Green84fd9492013-11-09 11:40:32 +0800912 struct allocated_headers *ah; /* mirroring _lws_header_related */
Andy Green8c1f6022016-01-26 20:56:56 +0800913 struct lws *ah_wait_list;
Andy Green2d8d35a2016-02-29 14:19:16 +0800914 unsigned char *preamble_rx;
915#ifndef LWS_NO_CLIENT
916 struct client_info_stash *stash;
917#endif
918 unsigned int preamble_rx_len;
Andy Green8c1f6022016-01-26 20:56:56 +0800919 struct lws *new_wsi_list;
Andy Green84fd9492013-11-09 11:40:32 +0800920 unsigned long filepos;
921 unsigned long filelen;
Andy Greenaa775fd2015-12-26 08:56:58 +0800922 lws_filefd_type fd;
kapejodce64fb02013-11-19 13:38:16 +0100923
Andrew Canadayafe26cf2014-07-13 01:07:36 -0400924 enum http_version request_version;
925 enum http_connection_type connection_type;
Andy Green2cd30742015-11-02 13:10:33 +0800926 unsigned int content_length;
927 unsigned int content_remain;
Andy Green84fd9492013-11-09 11:40:32 +0800928};
929
Andy Green024eb6c2014-10-08 12:00:53 +0800930#ifdef LWS_USE_HTTP2
931
932enum lws_http2_settings {
933 LWS_HTTP2_SETTINGS__HEADER_TABLE_SIZE = 1,
934 LWS_HTTP2_SETTINGS__ENABLE_PUSH,
935 LWS_HTTP2_SETTINGS__MAX_CONCURRENT_STREAMS,
936 LWS_HTTP2_SETTINGS__INITIAL_WINDOW_SIZE,
937 LWS_HTTP2_SETTINGS__MAX_FRAME_SIZE,
938 LWS_HTTP2_SETTINGS__MAX_HEADER_LIST_SIZE,
Andy Green40110e82015-12-14 08:52:03 +0800939
Andy Green024eb6c2014-10-08 12:00:53 +0800940 LWS_HTTP2_SETTINGS__COUNT /* always last */
Andy Greena54f2322014-09-30 09:43:14 +0800941};
942
Andy Green024eb6c2014-10-08 12:00:53 +0800943enum lws_http2_wellknown_frame_types {
944 LWS_HTTP2_FRAME_TYPE_DATA,
945 LWS_HTTP2_FRAME_TYPE_HEADERS,
946 LWS_HTTP2_FRAME_TYPE_PRIORITY,
947 LWS_HTTP2_FRAME_TYPE_RST_STREAM,
948 LWS_HTTP2_FRAME_TYPE_SETTINGS,
949 LWS_HTTP2_FRAME_TYPE_PUSH_PROMISE,
950 LWS_HTTP2_FRAME_TYPE_PING,
951 LWS_HTTP2_FRAME_TYPE_GOAWAY,
952 LWS_HTTP2_FRAME_TYPE_WINDOW_UPDATE,
953 LWS_HTTP2_FRAME_TYPE_CONTINUATION,
Andy Green40110e82015-12-14 08:52:03 +0800954
Andy Green024eb6c2014-10-08 12:00:53 +0800955 LWS_HTTP2_FRAME_TYPE_COUNT /* always last */
956};
957
Andy Green91b05892014-10-17 08:38:44 +0800958enum lws_http2_flags {
959 LWS_HTTP2_FLAG_END_STREAM = 1,
960 LWS_HTTP2_FLAG_END_HEADERS = 4,
961 LWS_HTTP2_FLAG_PADDED = 8,
962 LWS_HTTP2_FLAG_PRIORITY = 0x20,
963
964 LWS_HTTP2_FLAG_SETTINGS_ACK = 1,
965};
966
Andy Green024eb6c2014-10-08 12:00:53 +0800967#define LWS_HTTP2_STREAM_ID_MASTER 0
968#define LWS_HTTP2_FRAME_HEADER_LENGTH 9
969#define LWS_HTTP2_SETTINGS_LENGTH 6
970
971struct http2_settings {
972 unsigned int setting[LWS_HTTP2_SETTINGS__COUNT];
973};
974
Andy Greenecc2e722014-10-09 16:57:47 +0800975enum http2_hpack_state {
Andy Green40110e82015-12-14 08:52:03 +0800976
Andy Green200f3852014-10-18 12:23:05 +0800977 /* optional before first header block */
978 HPKS_OPT_PADDING,
979 HKPS_OPT_E_DEPENDENCY,
980 HKPS_OPT_WEIGHT,
Andy Green40110e82015-12-14 08:52:03 +0800981
Andy Green200f3852014-10-18 12:23:05 +0800982 /* header block */
Andy Greenecc2e722014-10-09 16:57:47 +0800983 HPKS_TYPE,
Andy Green40110e82015-12-14 08:52:03 +0800984
Andy Green2add6342014-10-12 08:38:16 +0800985 HPKS_IDX_EXT,
Andy Green40110e82015-12-14 08:52:03 +0800986
Andy Greenecc2e722014-10-09 16:57:47 +0800987 HPKS_HLEN,
988 HPKS_HLEN_EXT,
989
990 HPKS_DATA,
Andy Green40110e82015-12-14 08:52:03 +0800991
Andy Green200f3852014-10-18 12:23:05 +0800992 /* optional after last header block */
993 HKPS_OPT_DISCARD_PADDING,
Andy Greenecc2e722014-10-09 16:57:47 +0800994};
995
Andy Green2add6342014-10-12 08:38:16 +0800996enum http2_hpack_type {
997 HPKT_INDEXED_HDR_7,
998 HPKT_INDEXED_HDR_6_VALUE_INCR,
999 HPKT_LITERAL_HDR_VALUE_INCR,
1000 HPKT_INDEXED_HDR_4_VALUE,
1001 HPKT_LITERAL_HDR_VALUE,
1002 HPKT_SIZE_5
1003};
1004
Andy Green200f3852014-10-18 12:23:05 +08001005struct hpack_dt_entry {
1006 int token; /* additions that don't map to a token are ignored */
1007 int arg_offset;
1008 int arg_len;
1009};
1010
1011struct hpack_dynamic_table {
1012 struct hpack_dt_entry *entries;
1013 char *args;
1014 int pos;
1015 int next;
1016 int num_entries;
1017 int args_length;
1018};
1019
Andy Green024eb6c2014-10-08 12:00:53 +08001020struct _lws_http2_related {
Andy Green40110e82015-12-14 08:52:03 +08001021 /*
Andy Green024eb6c2014-10-08 12:00:53 +08001022 * having this first lets us also re-use all HTTP union code
1023 * and in turn, http_mode_related has allocated headers in right
1024 * place so we can use the header apis on the wsi directly still
1025 */
1026 struct _lws_http_mode_related http; /* MUST BE FIRST IN STRUCT */
1027
1028 struct http2_settings my_settings;
1029 struct http2_settings peer_settings;
Andy Green40110e82015-12-14 08:52:03 +08001030
Andy Green4b85c1d2015-12-04 11:08:32 +08001031 struct lws *parent_wsi;
1032 struct lws *next_child_wsi;
Andy Green024eb6c2014-10-08 12:00:53 +08001033
Andy Green200f3852014-10-18 12:23:05 +08001034 struct hpack_dynamic_table *hpack_dyn_table;
Andy Greenaa775fd2015-12-26 08:56:58 +08001035 struct lws *stream_wsi;
1036 unsigned char ping_payload[8];
1037 unsigned char one_setting[LWS_HTTP2_SETTINGS_LENGTH];
Andy Green40110e82015-12-14 08:52:03 +08001038
Andy Green024eb6c2014-10-08 12:00:53 +08001039 unsigned int count;
Andy Green024eb6c2014-10-08 12:00:53 +08001040 unsigned int length;
1041 unsigned int stream_id;
Andy Greenaa775fd2015-12-26 08:56:58 +08001042 enum http2_hpack_state hpack;
1043 enum http2_hpack_type hpack_type;
1044 unsigned int header_index;
1045 unsigned int hpack_len;
1046 unsigned int hpack_e_dep;
1047 int tx_credit;
1048 unsigned int my_stream_id;
1049 unsigned int child_count;
1050 int my_priority;
Andy Green67112662016-01-11 11:34:01 +08001051
Andy Green91b05892014-10-17 08:38:44 +08001052 unsigned int END_STREAM:1;
1053 unsigned int END_HEADERS:1;
Andy Green1cea5812014-10-19 07:36:20 +08001054 unsigned int send_END_STREAM:1;
Andy Green7df53c52014-10-22 15:37:28 +08001055 unsigned int GOING_AWAY;
1056 unsigned int requested_POLLOUT:1;
Andy Green97ee57f2014-10-29 09:39:08 +08001057 unsigned int waiting_tx_credit:1;
Andy Greenecc2e722014-10-09 16:57:47 +08001058 unsigned int huff:1;
1059 unsigned int value:1;
Andy Green40110e82015-12-14 08:52:03 +08001060
Andy Greenaa775fd2015-12-26 08:56:58 +08001061 unsigned short round_robin_POLLOUT;
1062 unsigned short count_POLLOUT_children;
1063 unsigned short hpack_pos;
1064
1065 unsigned char type;
1066 unsigned char flags;
1067 unsigned char frame_state;
1068 unsigned char padding;
1069 unsigned char hpack_m;
Andy Green024eb6c2014-10-08 12:00:53 +08001070 unsigned char initialized;
Andy Green024eb6c2014-10-08 12:00:53 +08001071};
1072
Andy Green7df53c52014-10-22 15:37:28 +08001073#define HTTP2_IS_TOPLEVEL_WSI(wsi) (!wsi->u.http2.parent_wsi)
Andy Green024eb6c2014-10-08 12:00:53 +08001074
1075#endif
1076
Andy Green623a98d2013-01-21 11:04:23 +08001077struct _lws_websocket_related {
Andy Green2c218e72016-02-15 12:37:04 +08001078 /* cheapest way to deal with ah overlap with ws union transition */
Andy Green26d42492016-02-24 12:40:21 +08001079 struct _lws_header_related hdr;
Andy Green67112662016-01-11 11:34:01 +08001080 char *rx_ubuf;
Andy Green4019aab2016-01-30 11:43:10 +08001081 unsigned int rx_ubuf_alloc;
Andy Green67112662016-01-11 11:34:01 +08001082 struct lws *rx_draining_ext_list;
1083 struct lws *tx_draining_ext_list;
Andy Greende132b92015-12-25 13:48:20 +08001084 size_t rx_packet_length;
Andy Green67112662016-01-11 11:34:01 +08001085 unsigned int rx_ubuf_head;
1086 unsigned char mask[4];
Andy Green1fb95e82015-12-26 17:20:34 +08001087 /* Also used for close content... control opcode == < 128 */
Andy Green67112662016-01-11 11:34:01 +08001088 unsigned char ping_payload_buf[128 - 3 + LWS_PRE];
Andy Green1fb95e82015-12-26 17:20:34 +08001089
Andy Greenaa775fd2015-12-26 08:56:58 +08001090 unsigned char ping_payload_len;
Andy Green67112662016-01-11 11:34:01 +08001091 unsigned char mask_idx;
Andy Green623a98d2013-01-21 11:04:23 +08001092 unsigned char opcode;
Andy Green623a98d2013-01-21 11:04:23 +08001093 unsigned char rsv;
Andy Green67112662016-01-11 11:34:01 +08001094 unsigned char rsv_first_msg;
Andy Green1fb95e82015-12-26 17:20:34 +08001095 /* zero if no info, or length including 2-byte close code */
1096 unsigned char close_in_ping_buffer_len;
Andy Green0c7b38b2015-12-29 09:46:03 +08001097 unsigned char utf8;
Andy Green67112662016-01-11 11:34:01 +08001098 unsigned char stashed_write_type;
1099 unsigned char tx_draining_stashed_wp;
Andy Greende132b92015-12-25 13:48:20 +08001100
1101 unsigned int final:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001102 unsigned int frame_is_binary:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001103 unsigned int all_zero_nonce:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001104 unsigned int this_frame_masked:1;
Andy Green1f4267b2013-10-17 08:09:19 +08001105 unsigned int inside_frame:1; /* next write will be more of frame */
1106 unsigned int clean_buffer:1; /* buffer not rewritten by extension */
Andy Green40d5abc2015-04-17 20:29:58 +08001107 unsigned int payload_is_close:1; /* process as PONG, but it is close */
Andy Greenba38a7e2015-12-25 13:14:09 +08001108 unsigned int ping_pending_flag:1;
Andy Green977734e2015-12-28 16:51:08 +08001109 unsigned int continuation_possible:1;
Andy Green91d624e2015-12-28 17:05:40 +08001110 unsigned int owed_a_fin:1;
Andy Green9b81d3c2015-12-29 12:28:48 +08001111 unsigned int check_utf8:1;
1112 unsigned int defeat_check_utf8:1;
Andy Green67112662016-01-11 11:34:01 +08001113 unsigned int pmce_compressed_message:1;
1114 unsigned int stashed_write_pending:1;
1115 unsigned int rx_draining_ext:1;
1116 unsigned int tx_draining_ext:1;
Andy Green623a98d2013-01-21 11:04:23 +08001117};
1118
Andy Green6a8099b2016-02-21 21:25:48 +08001119#ifdef LWS_WITH_CGI
1120
1121/* wsi who is master of the cgi points to an lws_cgi */
1122
1123struct lws_cgi {
1124 struct lws_cgi *cgi_list;
1125 struct lws *stdwsi[3]; /* points to the associated stdin/out/err wsis */
1126 struct lws *wsi; /* owner */
Andy Greenf5efa742016-04-13 11:42:53 +08001127 unsigned long content_length;
1128 unsigned long content_length_seen;
Andy Green6a8099b2016-02-21 21:25:48 +08001129 int pipe_fds[3][2];
1130 int pid;
1131
1132 unsigned int being_closed:1;
1133};
Andy Green5c8906e2016-03-13 16:44:19 +08001134#endif
Andy Greenc3c2d6d2016-03-09 07:41:59 +08001135
Andy Green5c8906e2016-03-13 16:44:19 +08001136signed char char_to_hex(const char c);
1137
1138#ifndef LWS_NO_CLIENT
1139enum lws_chunk_parser {
1140 ELCP_HEX,
1141 ELCP_CR,
1142 ELCP_CONTENT,
1143 ELCP_POST_CR,
1144 ELCP_POST_LF,
1145};
Andy Green6a8099b2016-02-21 21:25:48 +08001146#endif
1147
Andy Green1e5a9ad2016-03-20 11:59:53 +08001148struct lws_rewrite;
1149
Andy Green4b85c1d2015-12-04 11:08:32 +08001150struct lws {
Andy Green623a98d2013-01-21 11:04:23 +08001151
Andy Greenaa775fd2015-12-26 08:56:58 +08001152 /* structs */
1153 /* members with mutually exclusive lifetimes are unionized */
1154
1155 union u {
1156 struct _lws_http_mode_related http;
1157#ifdef LWS_USE_HTTP2
1158 struct _lws_http2_related http2;
1159#endif
1160 struct _lws_header_related hdr;
1161 struct _lws_websocket_related ws;
1162 } u;
1163
Andy Green623a98d2013-01-21 11:04:23 +08001164 /* lifetime members */
1165
Andy Green86ed65f2016-02-14 09:27:41 +08001166#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
Andy Green40110e82015-12-14 08:52:03 +08001167 struct lws_io_watcher w_read;
Andy Green86ed65f2016-02-14 09:27:41 +08001168#endif
1169#if defined(LWS_USE_LIBEV)
Andy Green40110e82015-12-14 08:52:03 +08001170 struct lws_io_watcher w_write;
Andy Green86ed65f2016-02-14 09:27:41 +08001171#endif
Andy Greende132b92015-12-25 13:48:20 +08001172 time_t pending_timeout_limit;
Andy Greenaa775fd2015-12-26 08:56:58 +08001173
1174 /* pointers */
1175
Andy Green40110e82015-12-14 08:52:03 +08001176 struct lws_context *context;
Andy Greend526c502016-03-28 10:10:43 +08001177 struct lws_vhost *vhost;
Andy Green494418a2016-03-02 09:17:22 +08001178 struct lws *parent; /* points to parent, if any */
1179 struct lws *child_list; /* points to first child */
1180 struct lws *sibling_list; /* subsequent children at same level */
Andy Green6a8099b2016-02-21 21:25:48 +08001181#ifdef LWS_WITH_CGI
1182 struct lws_cgi *cgi; /* wsi being cgi master have one of these */
Andy Green6a8099b2016-02-21 21:25:48 +08001183#endif
Andy Green4b85c1d2015-12-04 11:08:32 +08001184 const struct lws_protocols *protocol;
Andy Greend738f842016-01-19 04:32:14 +08001185 struct lws *timeout_list;
1186 struct lws **timeout_list_prev;
Andy Greende132b92015-12-25 13:48:20 +08001187 void *user_space;
1188 /* rxflow handling */
1189 unsigned char *rxflow_buffer;
1190 /* truncated send handling */
1191 unsigned char *trunc_alloc; /* non-NULL means buffering in progress */
Andy Green3182ece2013-01-20 17:08:31 +08001192#ifndef LWS_NO_EXTENSIONS
Andy Greend2ac22c2015-12-11 10:45:35 +08001193 const struct lws_extension *active_extensions[LWS_MAX_EXTENSIONS_ACTIVE];
Andy Green67112662016-01-11 11:34:01 +08001194 void *act_ext_user[LWS_MAX_EXTENSIONS_ACTIVE];
Andy Green3182ece2013-01-20 17:08:31 +08001195#endif
Andy Greende132b92015-12-25 13:48:20 +08001196#ifdef LWS_OPENSSL_SUPPORT
1197 SSL *ssl;
Andy Green1a3f1772016-03-28 19:58:02 +08001198#if !defined(LWS_USE_POLARSSL) && !defined(LWS_USE_MBEDTLS)
Andy Greende132b92015-12-25 13:48:20 +08001199 BIO *client_bio;
Andy Green1a3f1772016-03-28 19:58:02 +08001200#endif
Andy Greende132b92015-12-25 13:48:20 +08001201 struct lws *pending_read_list_prev, *pending_read_list_next;
1202#endif
Andy Green1a138852016-03-20 11:55:25 +08001203#ifdef LWS_WITH_HTTP_PROXY
Andy Green1e5a9ad2016-03-20 11:59:53 +08001204 struct lws_rewrite *rw;
1205#endif
Andy Greenaa775fd2015-12-26 08:56:58 +08001206#ifdef LWS_LATENCY
1207 unsigned long action_start;
1208 unsigned long latency_start;
1209#endif
1210 /* pointer / int */
Andy Green3b193862015-11-02 13:13:44 +08001211 lws_sockfd_type sock;
Andy Greende132b92015-12-25 13:48:20 +08001212
Andy Greenaa775fd2015-12-26 08:56:58 +08001213 /* ints */
Andy Greendfb23042013-01-17 12:26:48 +08001214 int position_in_fds_table;
Andy Green024eb6c2014-10-08 12:00:53 +08001215 int rxflow_len;
1216 int rxflow_pos;
Andy Green54806b12015-12-17 17:03:59 +08001217 unsigned int trunc_alloc_len; /* size of malloc */
1218 unsigned int trunc_offset; /* where we are in terms of spilling */
1219 unsigned int trunc_len; /* how much is buffered */
Andy Green5c8906e2016-03-13 16:44:19 +08001220#ifndef LWS_NO_CLIENT
1221 int chunk_remaining;
1222#endif
Andy Green2764eba2013-12-09 14:16:17 +08001223
Andy Greende132b92015-12-25 13:48:20 +08001224 unsigned int hdr_parsing_completed:1;
Andy Green22d6f392016-04-10 09:33:54 +08001225 unsigned int http2_substream:1;
Andy Greend526c502016-03-28 10:10:43 +08001226 unsigned int listener:1;
Andy Greende132b92015-12-25 13:48:20 +08001227 unsigned int user_space_externally_allocated:1;
1228 unsigned int socket_is_permanently_unusable:1;
1229 unsigned int rxflow_change_to:2;
Andy Green83af28a2016-02-28 10:55:31 +08001230 unsigned int more_rx_waiting:1; /* has to live here since ah may stick to end */
Andy Greena661ee52016-02-29 13:18:30 +08001231#ifndef LWS_NO_CLIENT
1232 unsigned int do_ws:1; /* whether we are doing http or ws flow */
Andy Green5c8906e2016-03-13 16:44:19 +08001233 unsigned int chunked:1; /* if the clientside connection is chunked */
Andy Green1e5a9ad2016-03-20 11:59:53 +08001234 unsigned int client_rx_avail:1;
Andy Green1a138852016-03-20 11:55:25 +08001235#endif
1236#ifdef LWS_WITH_HTTP_PROXY
Andy Green1e5a9ad2016-03-20 11:59:53 +08001237 unsigned int perform_rewrite:1;
Andy Greena661ee52016-02-29 13:18:30 +08001238#endif
Andy Greende132b92015-12-25 13:48:20 +08001239#ifndef LWS_NO_EXTENSIONS
1240 unsigned int extension_data_pending:1;
1241#endif
1242#ifdef LWS_OPENSSL_SUPPORT
1243 unsigned int use_ssl:2;
1244 unsigned int upgraded:1;
1245#endif
Andy Greenaa775fd2015-12-26 08:56:58 +08001246#ifdef _WIN32
1247 unsigned int sock_send_blocking:1;
1248#endif
Andy Green0f9904f2016-03-17 15:26:49 +08001249#ifdef LWS_OPENSSL_SUPPORT
1250 unsigned int redirect_to_https:1;
1251#endif
Andy Greende132b92015-12-25 13:48:20 +08001252
Andy Greenaa775fd2015-12-26 08:56:58 +08001253 /* chars */
Andy Greende132b92015-12-25 13:48:20 +08001254#ifndef LWS_NO_EXTENSIONS
Andy Green67112662016-01-11 11:34:01 +08001255 unsigned char count_act_ext;
Andy Greende132b92015-12-25 13:48:20 +08001256#endif
1257 unsigned char ietf_spec_revision;
1258 char mode; /* enum connection_mode */
1259 char state; /* enum lws_connection_states */
Andy Green8c1f6022016-01-26 20:56:56 +08001260 char state_pre_close;
Andy Greende132b92015-12-25 13:48:20 +08001261 char lws_rx_parse_state; /* enum lws_rx_parse_state */
1262 char rx_frame_type; /* enum lws_write_protocol */
1263 char pending_timeout; /* enum pending_timeout */
Andy Greend738f842016-01-19 04:32:14 +08001264 char pps; /* enum lws_pending_protocol_send */
Andy Greend3a55052016-01-19 03:34:24 +08001265 char tsi; /* thread service index we belong to */
Andy Green6a8099b2016-02-21 21:25:48 +08001266#ifdef LWS_WITH_CGI
1267 char cgi_channel; /* which of stdin/out/err */
Andy Greenc3c2d6d2016-03-09 07:41:59 +08001268 char hdr_state;
Andy Green6a8099b2016-02-21 21:25:48 +08001269#endif
Andy Green5c8906e2016-03-13 16:44:19 +08001270#ifndef LWS_NO_CLIENT
1271 char chunk_parser; /* enum lws_chunk_parser */
1272#endif
Andy Green7c212cc2010-11-08 20:20:42 +00001273};
1274
Andy Green3d67f512014-04-03 07:29:50 +08001275LWS_EXTERN int log_level;
1276
Andy Greenc7939442016-03-12 08:18:58 +08001277LWS_EXTERN int
1278lws_socket_bind(struct lws_context *context, int sockfd, int port,
1279 const char *iface);
1280
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001281LWS_EXTERN void
Andy Green6b5de702015-12-15 21:15:58 +08001282lws_close_free_wsi(struct lws *wsi, enum lws_close_status);
Andy Green508946c2013-02-12 10:19:08 +08001283
Andy Green34f3dd22014-04-03 07:42:50 +08001284LWS_EXTERN int
Andy Green6b5de702015-12-15 21:15:58 +08001285remove_wsi_socket_from_fds(struct lws *wsi);
Andy Green024eb6c2014-10-08 12:00:53 +08001286LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001287lws_rxflow_cache(struct lws *wsi, unsigned char *buf, int n, int len);
Andy Green34f3dd22014-04-03 07:42:50 +08001288
Andy Greend636e352013-01-29 12:36:17 +08001289#ifndef LWS_LATENCY
Andy Greendc8a3a82015-12-06 09:15:27 +08001290static inline void
1291lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1292 int ret, int completion) {
Andy Green40110e82015-12-14 08:52:03 +08001293 do {
1294 (void)context; (void)wsi; (void)action; (void)ret;
1295 (void)completion;
Andy Greendc8a3a82015-12-06 09:15:27 +08001296 } while (0);
1297}
1298static inline void
1299lws_latency_pre(struct lws_context *context, struct lws *wsi) {
1300 do { (void)context; (void)wsi; } while (0);
1301}
Andy Greend636e352013-01-29 12:36:17 +08001302#else
1303#define lws_latency_pre(_context, _wsi) lws_latency(_context, _wsi, NULL, 0, 0)
1304extern void
Andy Greendc8a3a82015-12-06 09:15:27 +08001305lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1306 int ret, int completion);
Andy Greend636e352013-01-29 12:36:17 +08001307#endif
1308
Andy Greendc8a3a82015-12-06 09:15:27 +08001309LWS_EXTERN void
Andy Green6b5de702015-12-15 21:15:58 +08001310lws_set_protocol_write_pending(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001311 enum lws_pending_protocol_send pend);
Andy Greene99a83c2016-01-20 16:56:06 +08001312LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001313lws_client_rx_sm(struct lws *wsi, unsigned char c);
Andy Green4739e5c2011-01-22 12:51:57 +00001314
Andy Greene99a83c2016-01-20 16:56:06 +08001315LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001316lws_parse(struct lws *wsi, unsigned char c);
Andy Greenb45993c2010-12-18 15:13:50 +00001317
Andy Greene99a83c2016-01-20 16:56:06 +08001318LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001319lws_http_action(struct lws *wsi);
Andy Green024eb6c2014-10-08 12:00:53 +08001320
1321LWS_EXTERN int
Andy Greendf736162011-01-18 15:39:02 +00001322lws_b64_selftest(void);
Andy Greenbfb051f2011-02-09 08:49:14 +00001323
Andy Green2c218e72016-02-15 12:37:04 +08001324LWS_EXTERN int
1325lws_service_adjust_timeout(struct lws_context *context, int timeout_ms, int tsi);
1326
1327LWS_EXTERN int
1328lws_service_flag_pending(struct lws_context *context, int tsi);
1329
Andy Green2cd30742015-11-02 13:10:33 +08001330#if defined(_WIN32) || defined(MBED_OPERATORS)
Andy Green4b85c1d2015-12-04 11:08:32 +08001331LWS_EXTERN struct lws *
Andy Green1fa76852015-12-14 11:17:16 +08001332wsi_from_fd(const struct lws_context *context, lws_sockfd_type fd);
Andy Green0d338332011-02-12 11:57:43 +00001333
Andy Green40110e82015-12-14 08:52:03 +08001334LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001335insert_wsi(struct lws_context *context, struct lws *wsi);
Bud Davis229bfec2015-01-30 10:13:01 +08001336
1337LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001338delete_from_fd(struct lws_context *context, lws_sockfd_type fd);
Bud Davis229bfec2015-01-30 10:13:01 +08001339#else
Andy Green40110e82015-12-14 08:52:03 +08001340#define wsi_from_fd(A,B) A->lws_lookup[B]
Andy Green8c1f6022016-01-26 20:56:56 +08001341#define insert_wsi(A,B) assert(A->lws_lookup[B->sock] == 0); A->lws_lookup[B->sock]=B
Bud Davis229bfec2015-01-30 10:13:01 +08001342#define delete_from_fd(A,B) A->lws_lookup[B]=0
1343#endif
1344
Andy Greene99a83c2016-01-20 16:56:06 +08001345LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001346insert_wsi_socket_into_fds(struct lws_context *context, struct lws *wsi);
Darin Willitsc19456f2011-02-14 17:52:39 +00001347
Andy Greene99a83c2016-01-20 16:56:06 +08001348LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001349lws_issue_raw(struct lws *wsi, unsigned char *buf, size_t len);
Andy Greend44bf7f2011-03-06 10:29:38 +00001350
Andy Green95a7b5d2011-03-06 10:29:39 +00001351
Andy Greene99a83c2016-01-20 16:56:06 +08001352LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001353lws_service_timeout_check(struct lws *wsi, unsigned int sec);
Andy Greena41314f2011-05-23 10:00:03 +01001354
Andy Greene99a83c2016-01-20 16:56:06 +08001355LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001356lws_client_connect_2(struct lws *wsi);
Andy Greena41314f2011-05-23 10:00:03 +01001357
Andy Greene99a83c2016-01-20 16:56:06 +08001358LWS_VISIBLE struct lws * LWS_WARN_UNUSED_RESULT
1359lws_client_reset(struct lws *wsi, int ssl, const char *address, int port,
1360 const char *path, const char *host);
Andy Green809d69a2016-01-14 11:37:56 +08001361
Andy Greene99a83c2016-01-20 16:56:06 +08001362LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
Andy Greend526c502016-03-28 10:10:43 +08001363lws_create_new_server_wsi(struct lws_vhost *vhost);
Andy Greena41314f2011-05-23 10:00:03 +01001364
Andy Greene99a83c2016-01-20 16:56:06 +08001365LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001366lws_generate_client_handshake(struct lws *wsi, char *pkt);
Andy Greena41314f2011-05-23 10:00:03 +01001367
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001368LWS_EXTERN int
Andy Green6b5de702015-12-15 21:15:58 +08001369lws_handle_POLLOUT_event(struct lws *wsi, struct lws_pollfd *pollfd);
Andy Green91b05892014-10-17 08:38:44 +08001370
Andy Green2d8d35a2016-02-29 14:19:16 +08001371LWS_EXTERN struct lws *
1372lws_client_connect_via_info2(struct lws *wsi);
1373
Andy Greencdb9bf92014-04-12 10:07:02 +08001374/*
1375 * EXTENSIONS
1376 */
1377
Andy Green3182ece2013-01-20 17:08:31 +08001378#ifndef LWS_NO_EXTENSIONS
Andy Greencdb9bf92014-04-12 10:07:02 +08001379LWS_VISIBLE void
1380lws_context_init_extensions(struct lws_context_creation_info *info,
Andy Greendc8a3a82015-12-06 09:15:27 +08001381 struct lws_context *context);
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001382LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001383lws_any_extension_handled(struct lws *wsi, enum lws_extension_callback_reasons r,
Andy Green6ee372f2012-04-09 15:09:01 +08001384 void *v, size_t len);
Andy Greena41314f2011-05-23 10:00:03 +01001385
Andy Green2c24ec02014-04-02 19:45:42 +08001386LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001387lws_ext_cb_active(struct lws *wsi, int reason, void *buf, int len);
Andy Green2c24ec02014-04-02 19:45:42 +08001388LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001389lws_ext_cb_all_exts(struct lws_context *context, struct lws *wsi, int reason,
1390 void *arg, int len);
Andy Green67112662016-01-11 11:34:01 +08001391
Andy Green2c24ec02014-04-02 19:45:42 +08001392#else
Andy Green6b5de702015-12-15 21:15:58 +08001393#define lws_any_extension_handled(_a, _b, _c, _d) (0)
Andy Green67112662016-01-11 11:34:01 +08001394#define lws_ext_cb_active(_a, _b, _c, _d) (0)
Andy Green54806b12015-12-17 17:03:59 +08001395#define lws_ext_cb_all_exts(_a, _b, _c, _d, _e) (0)
Andy Greenb49a9952014-04-03 10:11:04 +08001396#define lws_issue_raw_ext_access lws_issue_raw
Andy Greencdb9bf92014-04-12 10:07:02 +08001397#define lws_context_init_extensions(_a, _b)
Andy Green3182ece2013-01-20 17:08:31 +08001398#endif
Andy Greena41314f2011-05-23 10:00:03 +01001399
Andy Greene99a83c2016-01-20 16:56:06 +08001400LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001401lws_client_interpret_server_handshake(struct lws *wsi);
Andy Greena41314f2011-05-23 10:00:03 +01001402
Andy Greene99a83c2016-01-20 16:56:06 +08001403LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001404lws_rx_sm(struct lws *wsi, unsigned char c);
Andy Greena41314f2011-05-23 10:00:03 +01001405
Alex Hultman599cad92016-03-17 09:34:15 +08001406LWS_EXTERN void
1407lws_payload_until_length_exhausted(struct lws *wsi, unsigned char **buf, size_t *len);
1408
Andy Greene99a83c2016-01-20 16:56:06 +08001409LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001410lws_issue_raw_ext_access(struct lws *wsi, unsigned char *buf, size_t len);
Andy Green09226502011-05-28 10:19:19 +01001411
Andy Green44c11612014-11-08 11:18:47 +08001412LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001413lws_union_transition(struct lws *wsi, enum connection_mode mode);
Andy Green44c11612014-11-08 11:18:47 +08001414
Andy Greene99a83c2016-01-20 16:56:06 +08001415LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Denis Osvald034e5142015-12-21 18:06:38 +01001416user_callback_handle_rxflow(lws_callback_function, struct lws *wsi,
Andy Green00c6d152015-12-17 07:54:44 +08001417 enum lws_callback_reasons reason, void *user,
1418 void *in, size_t len);
Andy Green024eb6c2014-10-08 12:00:53 +08001419#ifdef LWS_USE_HTTP2
Andy Green4b85c1d2015-12-04 11:08:32 +08001420LWS_EXTERN struct lws *lws_http2_get_network_wsi(struct lws *wsi);
1421struct lws * lws_http2_get_nth_child(struct lws *wsi, int n);
Andy Green024eb6c2014-10-08 12:00:53 +08001422LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001423lws_http2_interpret_settings_payload(struct http2_settings *settings,
1424 unsigned char *buf, int len);
Andy Green024eb6c2014-10-08 12:00:53 +08001425LWS_EXTERN void lws_http2_init(struct http2_settings *settings);
1426LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001427lws_http2_parser(struct lws *wsi, unsigned char c);
Andy Greendc8a3a82015-12-06 09:15:27 +08001428LWS_EXTERN int lws_http2_do_pps_send(struct lws_context *context,
1429 struct lws *wsi);
1430LWS_EXTERN int lws_http2_frame_write(struct lws *wsi, int type, int flags,
1431 unsigned int sid, unsigned int len,
1432 unsigned char *buf);
Andy Green4b85c1d2015-12-04 11:08:32 +08001433LWS_EXTERN struct lws *
1434lws_http2_wsi_from_id(struct lws *wsi, unsigned int sid);
Andy Green11c05bf2015-12-16 18:19:08 +08001435LWS_EXTERN int lws_hpack_interpret(struct lws *wsi,
Andy Green2add6342014-10-12 08:38:16 +08001436 unsigned char c);
Andy Green917f43a2014-10-12 14:31:47 +08001437LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001438lws_add_http2_header_by_name(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001439 const unsigned char *name,
1440 const unsigned char *value, int length,
1441 unsigned char **p, unsigned char *end);
Andy Green917f43a2014-10-12 14:31:47 +08001442LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001443lws_add_http2_header_by_token(struct lws *wsi,
Andy Green917f43a2014-10-12 14:31:47 +08001444 enum lws_token_indexes token,
Andy Greendc8a3a82015-12-06 09:15:27 +08001445 const unsigned char *value, int length,
1446 unsigned char **p, unsigned char *end);
Andy Green917f43a2014-10-12 14:31:47 +08001447LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001448lws_add_http2_header_status(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001449 unsigned int code, unsigned char **p,
Andy Green917f43a2014-10-12 14:31:47 +08001450 unsigned char *end);
Andy Green7df53c52014-10-22 15:37:28 +08001451LWS_EXTERN
Andy Green4b85c1d2015-12-04 11:08:32 +08001452void lws_http2_configure_if_upgraded(struct lws *wsi);
Andy Green7df53c52014-10-22 15:37:28 +08001453#else
1454#define lws_http2_configure_if_upgraded(x)
Andy Green024eb6c2014-10-08 12:00:53 +08001455#endif
Andy Green706961d2013-01-17 16:50:35 +08001456
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001457LWS_EXTERN int
Andy Greend526c502016-03-28 10:10:43 +08001458lws_plat_set_socket_options(struct lws_vhost *vhost, lws_sockfd_type fd);
Andy Greena690cd02013-02-09 12:25:31 +08001459
Andy Greene99a83c2016-01-20 16:56:06 +08001460LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greene3d141d2016-02-27 11:42:22 +08001461lws_header_table_attach(struct lws *wsi, int autoservice);
Andy Green16ab3182013-02-10 18:02:31 +08001462
Andrew Canaday37718812014-11-07 11:20:59 +08001463LWS_EXTERN int
Andy Greene3d141d2016-02-27 11:42:22 +08001464lws_header_table_detach(struct lws *wsi, int autoservice);
Andrew Canaday37718812014-11-07 11:20:59 +08001465
Andy Green4019aab2016-01-30 11:43:10 +08001466LWS_EXTERN void
Andy Greene3d141d2016-02-27 11:42:22 +08001467lws_header_table_reset(struct lws *wsi, int autoservice);
Andy Green4019aab2016-01-30 11:43:10 +08001468
Andy Greene99a83c2016-01-20 16:56:06 +08001469LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001470lws_hdr_simple_ptr(struct lws *wsi, enum lws_token_indexes h);
Andy Green16ab3182013-02-10 18:02:31 +08001471
Andy Greene99a83c2016-01-20 16:56:06 +08001472LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green11c05bf2015-12-16 18:19:08 +08001473lws_hdr_simple_create(struct lws *wsi, enum lws_token_indexes h, const char *s);
Andy Greenb5b23192013-02-11 17:13:32 +08001474
Andy Green2af4d5b2013-02-18 16:30:10 +08001475LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001476lws_ensure_user_space(struct lws *wsi);
Andy Green2af4d5b2013-02-18 16:30:10 +08001477
Andy Green158e8042014-04-02 14:25:10 +08001478LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001479lws_change_pollfd(struct lws *wsi, int _and, int _or);
Andy Green91f19d82013-12-21 11:18:34 +08001480
Andy Greenb5b23192013-02-11 17:13:32 +08001481#ifndef LWS_NO_SERVER
Andy Greene38031a2014-04-03 08:24:29 +08001482int lws_context_init_server(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08001483 struct lws_vhost *vhost);
1484LWS_EXTERN struct lws_vhost *
1485lws_select_vhost(struct lws_context *context, int port, const char *servername);
Andy Greend7340c12014-04-10 14:08:10 +08001486LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001487handshake_0405(struct lws_context *context, struct lws *wsi);
Andy Greene99a83c2016-01-20 16:56:06 +08001488LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green67112662016-01-11 11:34:01 +08001489lws_interpret_incoming_packet(struct lws *wsi, unsigned char **buf, size_t len);
Andy Greencdb9bf92014-04-12 10:07:02 +08001490LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001491lws_server_get_canonical_hostname(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001492 struct lws_context_creation_info *info);
Andy Greene38031a2014-04-03 08:24:29 +08001493#else
1494#define lws_context_init_server(_a, _b) (0)
Andy Green3ef579b2015-12-04 09:23:56 +08001495#define lws_interpret_incoming_packet(_a, _b, _c) (0)
Andy Greencdb9bf92014-04-12 10:07:02 +08001496#define lws_server_get_canonical_hostname(_a, _b)
Andy Greenb5b23192013-02-11 17:13:32 +08001497#endif
1498
1499#ifndef LWS_NO_DAEMONIZE
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001500LWS_EXTERN int get_daemonize_pid();
Andy Greencdb9bf92014-04-12 10:07:02 +08001501#else
1502#define get_daemonize_pid() (0)
Andy Greenb5b23192013-02-11 17:13:32 +08001503#endif
1504
Andy Green2cd30742015-11-02 13:10:33 +08001505#if !defined(MBED_OPERATORS)
Andy Greene99a83c2016-01-20 16:56:06 +08001506LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001507interface_to_sa(struct lws_context *context, const char *ifname,
1508 struct sockaddr_in *addr, size_t addrlen);
Andy Green2cd30742015-11-02 13:10:33 +08001509#endif
Andy Greenb25b85f2014-04-03 23:34:09 +08001510LWS_EXTERN void lwsl_emit_stderr(int level, const char *line);
1511
Andy Green1a308e42014-04-08 07:26:30 +01001512enum lws_ssl_capable_status {
1513 LWS_SSL_CAPABLE_ERROR = -1,
1514 LWS_SSL_CAPABLE_MORE_SERVICE = -2,
1515};
1516
Darin Willitsc19456f2011-02-14 17:52:39 +00001517#ifndef LWS_OPENSSL_SUPPORT
Andy Greencdb9bf92014-04-12 10:07:02 +08001518#define LWS_SSL_ENABLED(context) (0)
Andy Greenc57037a2014-04-03 10:17:00 +08001519#define lws_context_init_server_ssl(_a, _b) (0)
1520#define lws_ssl_destroy(_a)
Andy Green2eedea92014-04-03 14:33:48 +08001521#define lws_context_init_http2_ssl(_a)
Andy Green02138122014-04-06 06:26:35 +01001522#define lws_ssl_capable_read lws_ssl_capable_read_no_ssl
1523#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 +02001524#define lws_ssl_pending lws_ssl_pending_no_ssl
Andy Green8c1f6022016-01-26 20:56:56 +08001525#define lws_server_socket_service_ssl(_b, _c) (0)
Andy Greencdb9bf92014-04-12 10:07:02 +08001526#define lws_ssl_close(_a) (0)
1527#define lws_ssl_context_destroy(_a)
Andy Greend526c502016-03-28 10:10:43 +08001528#define lws_ssl_SSL_CTX_destroy(_a)
Andy Green6b5de702015-12-15 21:15:58 +08001529#define lws_ssl_remove_wsi_from_buffered_list(_a)
Andy Greend526c502016-03-28 10:10:43 +08001530#define lws_context_init_ssl_library(_a)
Andy Greenb5b23192013-02-11 17:13:32 +08001531#else
Andy Greencdb9bf92014-04-12 10:07:02 +08001532#define LWS_SSL_ENABLED(context) (context->use_ssl)
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001533LWS_EXTERN int openssl_websocket_private_data_index;
Andy Greene99a83c2016-01-20 16:56:06 +08001534LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001535lws_ssl_capable_read(struct lws *wsi, unsigned char *buf, int len);
Andy Greene99a83c2016-01-20 16:56:06 +08001536LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001537lws_ssl_capable_write(struct lws *wsi, unsigned char *buf, int len);
Andy Greene99a83c2016-01-20 16:56:06 +08001538LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001539lws_ssl_pending(struct lws *wsi);
Andy Greend526c502016-03-28 10:10:43 +08001540LWS_EXTERN int
1541lws_context_init_ssl_library(struct lws_context_creation_info *info);
Andy Greene99a83c2016-01-20 16:56:06 +08001542LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green8c1f6022016-01-26 20:56:56 +08001543lws_server_socket_service_ssl(struct lws *new_wsi, lws_sockfd_type accept_fd);
Andy Greencdb9bf92014-04-12 10:07:02 +08001544LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001545lws_ssl_close(struct lws *wsi);
Andy Greencdb9bf92014-04-12 10:07:02 +08001546LWS_EXTERN void
Andy Greend526c502016-03-28 10:10:43 +08001547lws_ssl_SSL_CTX_destroy(struct lws_vhost *vhost);
1548LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001549lws_ssl_context_destroy(struct lws_context *context);
Andy Green52815602015-01-29 08:36:18 +08001550LWS_VISIBLE void
Andy Green6b5de702015-12-15 21:15:58 +08001551lws_ssl_remove_wsi_from_buffered_list(struct lws *wsi);
Andy Greeneefb13a2016-03-28 12:43:55 +08001552LWS_EXTERN int
1553lws_ssl_client_bio_create(struct lws *wsi);
1554LWS_EXTERN int
1555lws_ssl_client_connect1(struct lws *wsi);
1556LWS_EXTERN int
1557lws_ssl_client_connect2(struct lws *wsi);
Andy Greenc57037a2014-04-03 10:17:00 +08001558#ifndef LWS_NO_SERVER
1559LWS_EXTERN int
1560lws_context_init_server_ssl(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08001561 struct lws_vhost *vhost);
Andy Greenc57037a2014-04-03 10:17:00 +08001562#else
1563#define lws_context_init_server_ssl(_a, _b) (0)
1564#endif
1565LWS_EXTERN void
Andy Greend526c502016-03-28 10:10:43 +08001566lws_ssl_destroy(struct lws_vhost *vhost);
Andy Green2eedea92014-04-03 14:33:48 +08001567
1568/* HTTP2-related */
1569
1570#ifdef LWS_USE_HTTP2
1571LWS_EXTERN void
Andy Green22d6f392016-04-10 09:33:54 +08001572lws_context_init_http2_ssl(struct lws_vhost *vhost);
Andy Green2eedea92014-04-03 14:33:48 +08001573#else
1574#define lws_context_init_http2_ssl(_a)
1575#endif
Darin Willitsc19456f2011-02-14 17:52:39 +00001576#endif
Andy Greena654fc02014-04-03 07:16:40 +08001577
Andy Green8c1f6022016-01-26 20:56:56 +08001578#if LWS_MAX_SMP > 1
1579static LWS_INLINE void
1580lws_pt_mutex_init(struct lws_context_per_thread *pt)
1581{
1582 pthread_mutex_init(&pt->lock, NULL);
1583}
1584static LWS_INLINE void
1585lws_pt_lock(struct lws_context_per_thread *pt)
1586{
1587 pthread_mutex_lock(&pt->lock);
1588}
1589
1590static LWS_INLINE void
1591lws_pt_unlock(struct lws_context_per_thread *pt)
1592{
1593 pthread_mutex_unlock(&pt->lock);
1594}
1595#else
1596#define lws_pt_mutex_init(_a) (void)(_a)
1597#define lws_pt_lock(_a) (void)(_a)
1598#define lws_pt_unlock(_a) (void)(_a)
1599#endif
1600
Andy Greene99a83c2016-01-20 16:56:06 +08001601LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001602lws_ssl_capable_read_no_ssl(struct lws *wsi, unsigned char *buf, int len);
Patrick Gansterera6b019a2014-04-15 18:40:31 +02001603
Andy Greene99a83c2016-01-20 16:56:06 +08001604LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001605lws_ssl_capable_write_no_ssl(struct lws *wsi, unsigned char *buf, int len);
Patrick Gansterera6b019a2014-04-15 18:40:31 +02001606
Andy Greene99a83c2016-01-20 16:56:06 +08001607LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001608lws_ssl_pending_no_ssl(struct lws *wsi);
=?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?=4c0ba022015-08-19 16:23:33 +02001609
Andy Green1e5a9ad2016-03-20 11:59:53 +08001610#ifdef LWS_WITH_HTTP_PROXY
1611struct lws_rewrite {
1612 hubbub_parser *parser;
1613 hubbub_parser_optparams params;
1614 const char *from, *to;
1615 int from_len, to_len;
1616 unsigned char *p, *end;
1617 struct lws *wsi;
1618};
1619static LWS_INLINE int hstrcmp(hubbub_string *s, const char *p, int len)
1620{
1621 if (s->len != len)
1622 return 1;
1623
1624 return strncmp((const char *)s->ptr, p, len);
1625}
1626typedef hubbub_error (*hubbub_callback_t)(const hubbub_token *token, void *pw);
Andy Green1e5a9ad2016-03-20 11:59:53 +08001627LWS_EXTERN struct lws_rewrite *
1628lws_rewrite_create(struct lws *wsi, hubbub_callback_t cb, const char *from, const char *to);
1629LWS_EXTERN void
1630lws_rewrite_destroy(struct lws_rewrite *r);
1631LWS_EXTERN int
1632lws_rewrite_parse(struct lws_rewrite *r, const unsigned char *in, int in_len);
1633#endif
1634
1635#ifndef LWS_NO_CLIENT
Andy Green1a138852016-03-20 11:55:25 +08001636LWS_EXTERN int lws_client_socket_service(struct lws_context *context,
1637 struct lws *wsi,
1638 struct lws_pollfd *pollfd);
1639LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1640lws_http_transaction_completed_client(struct lws *wsi);
Andy Greenc57037a2014-04-03 10:17:00 +08001641#ifdef LWS_OPENSSL_SUPPORT
Andy Greendc8a3a82015-12-06 09:15:27 +08001642LWS_EXTERN int
1643lws_context_init_client_ssl(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08001644 struct lws_vhost *vhost);
Andy Greene38031a2014-04-03 08:24:29 +08001645#else
Andy Greenc57037a2014-04-03 10:17:00 +08001646 #define lws_context_init_client_ssl(_a, _b) (0)
1647#endif
Andy Greene99a83c2016-01-20 16:56:06 +08001648LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001649lws_handshake_client(struct lws *wsi, unsigned char **buf, size_t len);
1650LWS_EXTERN void
1651lws_decode_ssl_error(void);
Andy Greenc57037a2014-04-03 10:17:00 +08001652#else
1653#define lws_context_init_client_ssl(_a, _b) (0)
Andy Greenaad2eac2014-04-03 09:03:37 +08001654#define lws_handshake_client(_a, _b, _c) (0)
Andy Greena654fc02014-04-03 07:16:40 +08001655#endif
Andy Green44e0b082015-12-28 14:24:49 +08001656
1657LWS_EXTERN int
1658_lws_rx_flow_control(struct lws *wsi);
1659
Andy Green8c1f6022016-01-26 20:56:56 +08001660LWS_EXTERN int
1661_lws_change_pollfd(struct lws *wsi, int _and, int _or, struct lws_pollargs *pa);
1662
Andy Greena654fc02014-04-03 07:16:40 +08001663#ifndef LWS_NO_SERVER
Andy Greendc8a3a82015-12-06 09:15:27 +08001664LWS_EXTERN int
1665lws_server_socket_service(struct lws_context *context, struct lws *wsi,
1666 struct lws_pollfd *pollfd);
1667LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001668lws_handshake_server(struct lws *wsi, unsigned char **buf, size_t len);
Andy Greenb3d21f12015-12-25 09:12:08 +08001669LWS_EXTERN int
Andy Green8c1f6022016-01-26 20:56:56 +08001670_lws_server_listen_accept_flow_control(struct lws *twsi, int on);
Andy Greend99476b2014-04-03 08:40:05 +08001671#else
Andy Greenb49a9952014-04-03 10:11:04 +08001672#define lws_server_socket_service(_a, _b, _c) (0)
Andy Green11c05bf2015-12-16 18:19:08 +08001673#define lws_handshake_server(_a, _b, _c) (0)
Andy Greenb3d21f12015-12-25 09:12:08 +08001674#define _lws_server_listen_accept_flow_control(a, b) (0)
Andy Greena654fc02014-04-03 07:16:40 +08001675#endif
Andy Green40110e82015-12-14 08:52:03 +08001676
Andy Greendc8a3a82015-12-06 09:15:27 +08001677LWS_EXTERN int
1678lws_get_addresses(struct lws_context *context, void *ads, char *name,
1679 int name_len, char *rip, int rip_len);
Andy Greena654fc02014-04-03 07:16:40 +08001680
Andy Green6a8099b2016-02-21 21:25:48 +08001681LWS_EXTERN int
1682lws_cgi_kill_terminated(struct lws_context_per_thread *pt);
1683
Andy Green02077052016-04-06 16:15:40 +08001684int
1685lws_protocol_init(struct lws_context *context);
1686
Andy Greena654fc02014-04-03 07:16:40 +08001687/*
Alejandro Merycdc97172014-12-04 23:15:27 +01001688 * custom allocator
1689 */
Andy Greene99a83c2016-01-20 16:56:06 +08001690LWS_EXTERN void *
Alejandro Merycdc97172014-12-04 23:15:27 +01001691lws_realloc(void *ptr, size_t size);
1692
Andy Greene99a83c2016-01-20 16:56:06 +08001693LWS_EXTERN void * LWS_WARN_UNUSED_RESULT
Alejandro Merycdc97172014-12-04 23:15:27 +01001694lws_zalloc(size_t size);
1695
1696#define lws_malloc(S) lws_realloc(NULL, S)
1697#define lws_free(P) lws_realloc(P, 0)
Andy Green54806b12015-12-17 17:03:59 +08001698#define lws_free_set_NULL(P) do { lws_realloc(P, 0); (P) = NULL; } while(0)
Alejandro Merycdc97172014-12-04 23:15:27 +01001699
Andy Greendc8a3a82015-12-06 09:15:27 +08001700/* lws_plat_ */
Andy Greena654fc02014-04-03 07:16:40 +08001701LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001702lws_plat_delete_socket_from_fds(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001703 struct lws *wsi, int m);
Andy Greena654fc02014-04-03 07:16:40 +08001704LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001705lws_plat_insert_socket_into_fds(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001706 struct lws *wsi);
Andy Greena654fc02014-04-03 07:16:40 +08001707LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001708lws_plat_service_periodic(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001709
1710LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001711lws_plat_change_pollfd(struct lws_context *context, struct lws *wsi,
1712 struct lws_pollfd *pfd);
Andy Greena654fc02014-04-03 07:16:40 +08001713LWS_EXTERN int
1714lws_plat_context_early_init(void);
1715LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001716lws_plat_context_early_destroy(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001717LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001718lws_plat_context_late_destroy(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001719LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001720lws_poll_listen_fd(struct lws_pollfd *fd);
Andy Greena654fc02014-04-03 07:16:40 +08001721LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001722lws_plat_service(struct lws_context *context, int timeout_ms);
Andy Greend3a55052016-01-19 03:34:24 +08001723LWS_EXTERN LWS_VISIBLE int
1724lws_plat_service_tsi(struct lws_context *context, int timeout_ms, int tsi);
Andy Greena654fc02014-04-03 07:16:40 +08001725LWS_EXTERN int
Andy Green4386e362015-12-10 07:14:16 +08001726lws_plat_init(struct lws_context *context,
1727 struct lws_context_creation_info *info);
Andy Greena654fc02014-04-03 07:16:40 +08001728LWS_EXTERN void
1729lws_plat_drop_app_privileges(struct lws_context_creation_info *info);
1730LWS_EXTERN unsigned long long
1731time_in_microseconds(void);
Andy Greene99a83c2016-01-20 16:56:06 +08001732LWS_EXTERN const char * LWS_WARN_UNUSED_RESULT
Andy Greena654fc02014-04-03 07:16:40 +08001733lws_plat_inet_ntop(int af, const void *src, char *dst, int cnt);
Andy Green8c0d3c02015-11-02 20:34:12 +08001734
Andy Greene99a83c2016-01-20 16:56:06 +08001735LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green86c1ef12015-12-30 11:43:36 +08001736lws_check_utf8(unsigned char *state, unsigned char *buf, size_t len);
1737
Andy Green8c0d3c02015-11-02 20:34:12 +08001738#ifdef __cplusplus
1739};
1740#endif