blob: 6eb0428de23c6fe2a9206f71328dfb55ad7b2921 [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>
Andy Green451cee52016-04-17 11:28:43 +0800203#define SSL_ERROR_WANT_READ POLARSSL_ERR_NET_WANT_READ
204#define SSL_ERROR_WANT_WRITE POLARSSL_ERR_NET_WANT_WRITE
205#define OPENSSL_VERSION_NUMBER 0x10002000L
Andy Green1a3f1772016-03-28 19:58:02 +0800206#else
207#if defined(LWS_USE_MBEDTLS)
208#include <mbedtls/ssl.h>
209#include <mbedtls/error.h>
210#include <mbedtls/md5.h>
211#include <mbedtls/sha1.h>
212#include <mbedtls/ecdh.h>
213#else
Andy Green7c212cc2010-11-08 20:20:42 +0000214#include <openssl/ssl.h>
215#include <openssl/evp.h>
216#include <openssl/err.h>
Andy Green70dfebd2010-12-20 09:35:03 +0000217#include <openssl/md5.h>
Andy Greene2522172011-01-18 17:14:03 +0000218#include <openssl/sha.h>
Andy Green1a3f1772016-03-28 19:58:02 +0800219#ifdef LWS_HAVE_OPENSSL_ECDH_H
220#include <openssl/ecdh.h>
221#endif
222#endif /* not USE_MBEDTLS */
223#endif /* not USE_POLARSSL */
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200224#endif /* not USE_WOLFSSL */
Darin Willitsdb9ba422011-02-14 20:56:24 +0000225#endif
226
Andy Green7c212cc2010-11-08 20:20:42 +0000227#include "libwebsockets.h"
228
Andy Green8c0d3c02015-11-02 20:34:12 +0800229#if defined(MBED_OPERATORS)
230#undef compatible_close
231#define compatible_close(fd) mbed3_delete_tcp_stream_socket(fd)
Andy Green11f27342015-11-08 12:10:26 +0800232#ifndef BIG_ENDIAN
233#define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */
234#endif
235#ifndef LITTLE_ENDIAN
236#define LITTLE_ENDIAN 1234
237#endif
238#ifndef BYTE_ORDER
239#define BYTE_ORDER LITTLE_ENDIAN
240#endif
Andy Green8c0d3c02015-11-02 20:34:12 +0800241#endif
242
Andy Green158e8042014-04-02 14:25:10 +0800243#if defined(WIN32) || defined(_WIN32)
244
245#ifndef BIG_ENDIAN
246#define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */
247#endif
248#ifndef LITTLE_ENDIAN
249#define LITTLE_ENDIAN 1234
250#endif
251#ifndef BYTE_ORDER
252#define BYTE_ORDER LITTLE_ENDIAN
253#endif
Andy Green11f27342015-11-08 12:10:26 +0800254#ifndef u_int64_t
Andy Green158e8042014-04-02 14:25:10 +0800255typedef unsigned __int64 u_int64_t;
Andy Green11f27342015-11-08 12:10:26 +0800256#endif
Andy Green158e8042014-04-02 14:25:10 +0800257
258#undef __P
259#ifndef __P
260#if __STDC__
261#define __P(protos) protos
262#else
263#define __P(protos) ()
264#endif
265#endif
266
267#else
268
269#include <sys/stat.h>
Andy Green158e8042014-04-02 14:25:10 +0800270#include <sys/time.h>
271
272#if defined(__APPLE__)
273#include <machine/endian.h>
274#elif defined(__FreeBSD__)
275#include <sys/endian.h>
276#elif defined(__linux__)
277#include <endian.h>
278#endif
279
Andy Green8c0d3c02015-11-02 20:34:12 +0800280#ifdef __cplusplus
281extern "C" {
282#endif
Alejandro Meryead8afe2014-12-07 03:36:11 +0100283
emironova49d0842014-09-16 14:05:13 +0400284#if defined(__QNX__)
285 #include <gulliver.h>
286 #if defined(__LITTLEENDIAN__)
287 #define BYTE_ORDER __LITTLEENDIAN__
288 #define LITTLE_ENDIAN __LITTLEENDIAN__
289 #define BIG_ENDIAN 4321 /* to show byte order (taken from gcc); for suppres warning that BIG_ENDIAN is not defined. */
290 #endif
291 #if defined(__BIGENDIAN__)
292 #define BYTE_ORDER __BIGENDIAN__
293 #define LITTLE_ENDIAN 1234 /* to show byte order (taken from gcc); for suppres warning that LITTLE_ENDIAN is not defined. */
294 #define BIG_ENDIAN __BIGENDIAN__
295 #endif
296#endif
297
Andy Green158e8042014-04-02 14:25:10 +0800298#if !defined(BYTE_ORDER)
299# define BYTE_ORDER __BYTE_ORDER
300#endif
301#if !defined(LITTLE_ENDIAN)
302# define LITTLE_ENDIAN __LITTLE_ENDIAN
303#endif
304#if !defined(BIG_ENDIAN)
305# define BIG_ENDIAN __BIG_ENDIAN
306#endif
307
308#endif
309
Darin Willitsc19456f2011-02-14 17:52:39 +0000310/*
311 * Mac OSX as well as iOS do not define the MSG_NOSIGNAL flag,
312 * but happily have something equivalent in the SO_NOSIGPIPE flag.
313 */
314#ifdef __APPLE__
Andy Green6ee372f2012-04-09 15:09:01 +0800315#define MSG_NOSIGNAL SO_NOSIGPIPE
Darin Willitsc19456f2011-02-14 17:52:39 +0000316#endif
317
Bud Davis229bfec2015-01-30 10:13:01 +0800318#ifdef _WIN32
319#ifndef FD_HASHTABLE_MODULUS
320#define FD_HASHTABLE_MODULUS 32
321#endif
322#endif
323
Andy Green8c1f6022016-01-26 20:56:56 +0800324#ifndef LWS_DEF_HEADER_LEN
325#define LWS_DEF_HEADER_LEN 1024
Andy Greenc0d6b632013-01-12 23:42:17 +0800326#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800327#ifndef LWS_DEF_HEADER_POOL
328#define LWS_DEF_HEADER_POOL 16
Andy Green3df58002015-12-25 12:44:12 +0800329#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800330#ifndef LWS_MAX_PROTOCOLS
Andy Greend91d5e82013-02-10 16:00:47 +0800331#define LWS_MAX_PROTOCOLS 5
Andy Greenc0d6b632013-01-12 23:42:17 +0800332#endif
333#ifndef LWS_MAX_EXTENSIONS_ACTIVE
Andy Greend738f842016-01-19 04:32:14 +0800334#define LWS_MAX_EXTENSIONS_ACTIVE 2
Andy Greenc0d6b632013-01-12 23:42:17 +0800335#endif
Andy Green67112662016-01-11 11:34:01 +0800336#ifndef LWS_MAX_EXT_OFFERS
337#define LWS_MAX_EXT_OFFERS 8
338#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800339#ifndef SPEC_LATEST_SUPPORTED
Andy Greend85cb202011-09-25 09:32:54 +0100340#define SPEC_LATEST_SUPPORTED 13
Andy Greenc0d6b632013-01-12 23:42:17 +0800341#endif
342#ifndef AWAITING_TIMEOUT
Andy Green8c1f6022016-01-26 20:56:56 +0800343#define AWAITING_TIMEOUT 20
Andy Greenc0d6b632013-01-12 23:42:17 +0800344#endif
345#ifndef CIPHERS_LIST_STRING
David Galeanof177f2a2013-01-10 10:15:19 +0800346#define CIPHERS_LIST_STRING "DEFAULT"
Andy Greenc0d6b632013-01-12 23:42:17 +0800347#endif
Andy Greena824d182013-01-15 20:52:29 +0800348#ifndef LWS_SOMAXCONN
349#define LWS_SOMAXCONN SOMAXCONN
350#endif
Andy Green7c212cc2010-11-08 20:20:42 +0000351
Andy Greene2522172011-01-18 17:14:03 +0000352#define MAX_WEBSOCKET_04_KEY_LEN 128
Andy Green54495112013-02-06 21:10:16 +0900353#define LWS_MAX_SOCKET_IO_BUF 4096
Andy Greenc0d6b632013-01-12 23:42:17 +0800354
355#ifndef SYSTEM_RANDOM_FILEPATH
Andy Green4739e5c2011-01-22 12:51:57 +0000356#define SYSTEM_RANDOM_FILEPATH "/dev/urandom"
Andy Greenc0d6b632013-01-12 23:42:17 +0800357#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800358
Andy Green5fd55cd2011-04-23 10:54:53 +0100359enum lws_websocket_opcodes_07 {
Andy Green54806b12015-12-17 17:03:59 +0800360 LWSWSOPC_CONTINUATION = 0,
361 LWSWSOPC_TEXT_FRAME = 1,
362 LWSWSOPC_BINARY_FRAME = 2,
Andy Greena41314f2011-05-23 10:00:03 +0100363
Andy Green54806b12015-12-17 17:03:59 +0800364 LWSWSOPC_NOSPEC__MUX = 7,
Andy Greena41314f2011-05-23 10:00:03 +0100365
366 /* control extensions 8+ */
367
Andy Green54806b12015-12-17 17:03:59 +0800368 LWSWSOPC_CLOSE = 8,
369 LWSWSOPC_PING = 9,
370 LWSWSOPC_PONG = 0xa,
Andy Green5fd55cd2011-04-23 10:54:53 +0100371};
372
Andy Greena41314f2011-05-23 10:00:03 +0100373
Andy Green7c212cc2010-11-08 20:20:42 +0000374enum lws_connection_states {
Andy Green54806b12015-12-17 17:03:59 +0800375 LWSS_HTTP,
376 LWSS_HTTP_ISSUING_FILE,
377 LWSS_HTTP_HEADERS,
378 LWSS_HTTP_BODY,
379 LWSS_DEAD_SOCKET,
380 LWSS_ESTABLISHED,
Andy Greena661ee52016-02-29 13:18:30 +0800381 LWSS_CLIENT_HTTP_ESTABLISHED,
Andy Green54806b12015-12-17 17:03:59 +0800382 LWSS_CLIENT_UNCONNECTED,
383 LWSS_RETURNED_CLOSE_ALREADY,
384 LWSS_AWAITING_CLOSE_ACK,
385 LWSS_FLUSHING_STORED_SEND_BEFORE_CLOSE,
Andy Green8c1f6022016-01-26 20:56:56 +0800386 LWSS_SHUTDOWN,
Andy Green40110e82015-12-14 08:52:03 +0800387
Andy Green54806b12015-12-17 17:03:59 +0800388 LWSS_HTTP2_AWAIT_CLIENT_PREFACE,
389 LWSS_HTTP2_ESTABLISHED_PRE_SETTINGS,
390 LWSS_HTTP2_ESTABLISHED,
Andy Green6a8099b2016-02-21 21:25:48 +0800391
Andy Green2d8d35a2016-02-29 14:19:16 +0800392 LWSS_CGI,
Andy Green7c212cc2010-11-08 20:20:42 +0000393};
394
Andrew Canadayafe26cf2014-07-13 01:07:36 -0400395enum http_version {
396 HTTP_VERSION_1_0,
397 HTTP_VERSION_1_1,
Andy Green22d6f392016-04-10 09:33:54 +0800398 HTTP_VERSION_2
Andrew Canadayafe26cf2014-07-13 01:07:36 -0400399};
400
401enum http_connection_type {
402 HTTP_CONNECTION_CLOSE,
403 HTTP_CONNECTION_KEEP_ALIVE
404};
405
Andy Green024eb6c2014-10-08 12:00:53 +0800406enum lws_pending_protocol_send {
407 LWS_PPS_NONE,
408 LWS_PPS_HTTP2_MY_SETTINGS,
409 LWS_PPS_HTTP2_ACK_SETTINGS,
Andy Greenbbbf07a2014-10-27 16:46:44 +0800410 LWS_PPS_HTTP2_PONG,
Andy Green024eb6c2014-10-08 12:00:53 +0800411};
412
Andy Green7c212cc2010-11-08 20:20:42 +0000413enum lws_rx_parse_state {
414 LWS_RXPS_NEW,
Andy Greene77ddd82010-11-13 10:03:47 +0000415
Andy Green67112662016-01-11 11:34:01 +0800416 LWS_RXPS_04_mask_1,
417 LWS_RXPS_04_mask_2,
418 LWS_RXPS_04_mask_3,
Andy Green3e5eb782011-01-18 18:14:26 +0000419
420 LWS_RXPS_04_FRAME_HDR_1,
Andy Green38e57bb2011-01-19 12:20:27 +0000421 LWS_RXPS_04_FRAME_HDR_LEN,
422 LWS_RXPS_04_FRAME_HDR_LEN16_2,
423 LWS_RXPS_04_FRAME_HDR_LEN16_1,
424 LWS_RXPS_04_FRAME_HDR_LEN64_8,
425 LWS_RXPS_04_FRAME_HDR_LEN64_7,
426 LWS_RXPS_04_FRAME_HDR_LEN64_6,
427 LWS_RXPS_04_FRAME_HDR_LEN64_5,
428 LWS_RXPS_04_FRAME_HDR_LEN64_4,
429 LWS_RXPS_04_FRAME_HDR_LEN64_3,
430 LWS_RXPS_04_FRAME_HDR_LEN64_2,
431 LWS_RXPS_04_FRAME_HDR_LEN64_1,
Andy Green3e5eb782011-01-18 18:14:26 +0000432
Andy Green283d0a22011-04-24 05:46:23 +0100433 LWS_RXPS_07_COLLECT_FRAME_KEY_1,
434 LWS_RXPS_07_COLLECT_FRAME_KEY_2,
435 LWS_RXPS_07_COLLECT_FRAME_KEY_3,
436 LWS_RXPS_07_COLLECT_FRAME_KEY_4,
437
Andy Green7c212cc2010-11-08 20:20:42 +0000438 LWS_RXPS_PAYLOAD_UNTIL_LENGTH_EXHAUSTED
439};
440
441
Andy Green0d338332011-02-12 11:57:43 +0000442enum connection_mode {
Andy Green54806b12015-12-17 17:03:59 +0800443 LWSCM_HTTP_SERVING,
Andy Greena661ee52016-02-29 13:18:30 +0800444 LWSCM_HTTP_CLIENT, /* we are client to someone else's server */
Andy Green54806b12015-12-17 17:03:59 +0800445 LWSCM_HTTP_SERVING_ACCEPTED, /* actual HTTP service going on */
Andy Greena661ee52016-02-29 13:18:30 +0800446 LWSCM_HTTP_CLIENT_ACCEPTED, /* actual HTTP service going on */
Andy Green54806b12015-12-17 17:03:59 +0800447 LWSCM_PRE_WS_SERVING_ACCEPT,
Andy Greend280b6e2013-01-15 13:40:23 +0800448
Andy Green54806b12015-12-17 17:03:59 +0800449 LWSCM_WS_SERVING,
450 LWSCM_WS_CLIENT,
Andy Green40110e82015-12-14 08:52:03 +0800451
Andy Green54806b12015-12-17 17:03:59 +0800452 LWSCM_HTTP2_SERVING,
Andy Green0d338332011-02-12 11:57:43 +0000453
Andy Greene2160712013-01-28 12:19:10 +0800454 /* transient, ssl delay hiding */
Andy Green54806b12015-12-17 17:03:59 +0800455 LWSCM_SSL_ACK_PENDING,
Andy Green8c1f6022016-01-26 20:56:56 +0800456 LWSCM_SSL_INIT,
Andy Greene2160712013-01-28 12:19:10 +0800457
Andy Greenbe93fef2011-02-14 20:25:43 +0000458 /* transient modes */
Andy Green54806b12015-12-17 17:03:59 +0800459 LWSCM_WSCL_WAITING_CONNECT,
460 LWSCM_WSCL_WAITING_PROXY_REPLY,
461 LWSCM_WSCL_ISSUE_HANDSHAKE,
462 LWSCM_WSCL_ISSUE_HANDSHAKE2,
463 LWSCM_WSCL_WAITING_SSL,
464 LWSCM_WSCL_WAITING_SERVER_REPLY,
465 LWSCM_WSCL_WAITING_EXTENSION_CONNECT,
466 LWSCM_WSCL_PENDING_CANDIDATE_CHILD,
Andy Greenbe93fef2011-02-14 20:25:43 +0000467
Andy Green0d338332011-02-12 11:57:43 +0000468 /* special internal types */
Andy Green54806b12015-12-17 17:03:59 +0800469 LWSCM_SERVER_LISTENER,
Andy Green6a8099b2016-02-21 21:25:48 +0800470 LWSCM_CGI, /* stdin, stdout, stderr for another cgi master wsi */
Andy Green0d338332011-02-12 11:57:43 +0000471};
472
Andy Greenca0a1292013-03-16 11:24:23 +0800473enum {
474 LWS_RXFLOW_ALLOW = (1 << 0),
475 LWS_RXFLOW_PENDING_CHANGE = (1 << 1),
476};
477
Andy Green1fb95e82015-12-26 17:20:34 +0800478/* this is not usable directly by user code any more, lws_close_reason() */
479#define LWS_WRITE_CLOSE 4
480
Andy Green4b85c1d2015-12-04 11:08:32 +0800481struct lws_protocols;
482struct lws;
Andy Greene92cd172011-01-19 13:11:55 +0000483
Andy Green86ed65f2016-02-14 09:27:41 +0800484#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
485
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800486struct lws_io_watcher {
Andy Green86ed65f2016-02-14 09:27:41 +0800487#ifdef LWS_USE_LIBEV
488 ev_io ev_watcher;
489#endif
490#ifdef LWS_USE_LIBUV
491 uv_poll_t uv_watcher;
492#endif
493 struct lws_context *context;
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800494};
495
496struct lws_signal_watcher {
Andy Green86ed65f2016-02-14 09:27:41 +0800497#ifdef LWS_USE_LIBEV
498 ev_signal ev_watcher;
499#endif
500#ifdef LWS_USE_LIBUV
501 uv_signal_t uv_watcher;
502#endif
503 struct lws_context *context;
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800504};
Andy Green86ed65f2016-02-14 09:27:41 +0800505#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800506
Bud Davis229bfec2015-01-30 10:13:01 +0800507#ifdef _WIN32
508#define LWS_FD_HASH(fd) ((fd ^ (fd >> 8) ^ (fd >> 16)) % FD_HASHTABLE_MODULUS)
Andy Green3ef579b2015-12-04 09:23:56 +0800509struct lws_fd_hashtable {
Andy Green4b85c1d2015-12-04 11:08:32 +0800510 struct lws **wsi;
Bud Davis229bfec2015-01-30 10:13:01 +0800511 int length;
512};
513#endif
514
Andy Green3df58002015-12-25 12:44:12 +0800515/*
516 * This is totally opaque to code using the library. It's exported as a
517 * forward-reference pointer-only declaration; the user can use the pointer with
518 * other APIs to get information out of it.
519 */
520
521struct lws_fragments {
522 unsigned short offset;
523 unsigned short len;
524 unsigned char nfrag; /* which ah->frag[] continues this content, or 0 */
525};
526
527/*
528 * these are assigned from a pool held in the context.
529 * Both client and server mode uses them for http header analysis
530 */
531
532struct allocated_headers {
Andy Green2c218e72016-02-15 12:37:04 +0800533 struct lws *wsi; /* owner */
Andy Greende132b92015-12-25 13:48:20 +0800534 char *data; /* prepared by context init to point to dedicated storage */
535 /*
536 * the randomly ordered fragments, indexed by frag_index and
537 * lws_fragments->nfrag for continuation.
538 */
539 struct lws_fragments frags[WSI_TOKEN_COUNT * 2];
Andy Green8c1f6022016-01-26 20:56:56 +0800540 time_t assigned;
Andy Green3df58002015-12-25 12:44:12 +0800541 /*
542 * for each recognized token, frag_index says which frag[] his data
543 * starts in (0 means the token did not appear)
544 * the actual header data gets dumped as it comes in, into data[]
545 */
546 unsigned char frag_index[WSI_TOKEN_COUNT];
Andy Green2c218e72016-02-15 12:37:04 +0800547 unsigned char rx[2048];
548 unsigned int rxpos;
549 unsigned int rxlen;
550
Andy Green3df58002015-12-25 12:44:12 +0800551#ifndef LWS_NO_CLIENT
552 char initial_handshake_hash_base64[30];
Andy Green3df58002015-12-25 12:44:12 +0800553#endif
Andy Greenaa775fd2015-12-26 08:56:58 +0800554
555 unsigned short pos;
556 unsigned char in_use;
557 unsigned char nfrag;
Andy Green3df58002015-12-25 12:44:12 +0800558};
559
Andy Greend3a55052016-01-19 03:34:24 +0800560/*
561 * so we can have n connections being serviced simultaneously,
562 * these things need to be isolated per-thread.
563 */
564
565struct lws_context_per_thread {
Andy Green8c1f6022016-01-26 20:56:56 +0800566#if LWS_MAX_SMP > 1
567 pthread_mutex_t lock;
568#endif
Andy Greend3a55052016-01-19 03:34:24 +0800569 struct lws_pollfd *fds;
570 struct lws *rx_draining_ext_list;
571 struct lws *tx_draining_ext_list;
Andy Green8c1f6022016-01-26 20:56:56 +0800572 struct lws *timeout_list;
Andy Green38a1cbb2016-02-27 11:03:27 +0800573 struct lws_context *context;
Andy Green6a8099b2016-02-21 21:25:48 +0800574#ifdef LWS_WITH_CGI
575 struct lws_cgi *cgi_list;
576#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800577 void *http_header_data;
578 struct allocated_headers *ah_pool;
579 struct lws *ah_wait_list;
580 int ah_wait_list_length;
Andy Greend3a55052016-01-19 03:34:24 +0800581#ifdef LWS_OPENSSL_SUPPORT
582 struct lws *pending_read_list; /* linked list */
583#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800584#ifndef LWS_NO_SERVER
585 struct lws *wsi_listening;
586#endif
Andy Green86ed65f2016-02-14 09:27:41 +0800587#if defined(LWS_USE_LIBEV)
588 struct ev_loop *io_loop_ev;
589#endif
590#if defined(LWS_USE_LIBUV)
591 uv_loop_t *io_loop_uv;
592 uv_signal_t signals[8];
Andy Green38a1cbb2016-02-27 11:03:27 +0800593 uv_timer_t uv_timeout_watcher;
Andy Green09998e32016-04-06 09:23:16 +0800594 uv_idle_t uv_idle;
Andy Green86ed65f2016-02-14 09:27:41 +0800595#endif
596#if defined(LWS_USE_LIBEV)
597 struct lws_io_watcher w_accept;
598#endif
599#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
600 struct lws_signal_watcher w_sigint;
601 unsigned char ev_loop_foreign:1;
602#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800603
604 unsigned long count_conns;
Andy Greend3a55052016-01-19 03:34:24 +0800605 /*
606 * usable by anything in the service code, but only if the scope
607 * does not last longer than the service action (since next service
608 * of any socket can likewise use it and overwrite)
609 */
610 unsigned char *serv_buf;
611#ifdef _WIN32
612 WSAEVENT *events;
613#else
614 int dummy_pipe_fds[2];
615#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800616 unsigned int fds_count;
617
618 short ah_count_in_use;
Andy Green38a1cbb2016-02-27 11:03:27 +0800619 unsigned char tid;
Andy Greend3a55052016-01-19 03:34:24 +0800620};
621
Andy Greend526c502016-03-28 10:10:43 +0800622/*
623 * virtual host -related context information
624 * vhostwide SSL context
625 * vhostwide proxy
626 *
627 * heirarchy:
628 *
629 * context -> vhost -> wsi
630 *
631 * incoming connection non-SSL vhost binding:
632 *
633 * listen socket -> wsi -> select vhost after first headers
634 *
635 * incoming connection SSL vhost binding:
636 *
637 * SSL SNI -> wsi -> bind after SSL negotiation
638 */
639
640struct lws_vhost {
641 char http_proxy_address[128];
642 char proxy_basic_auth_token[128];
643 struct lws_context *context;
644 struct lws_vhost *vhost_next;
645 struct lws_http_mount *mount_list;
646 struct lws *lserv_wsi;
647 const char *name;
648 const char *iface;
649 const struct lws_protocols *protocols;
Andy Green02077052016-04-06 16:15:40 +0800650 void **protocol_vh_privs;
Andy Green37098ae2016-04-08 13:25:34 +0800651 struct lws_protocol_vhost_options *pvo;
Andy Green4714cf02016-04-16 08:40:35 +0800652 struct lws **same_vh_protocol_list;
Andy Greend526c502016-03-28 10:10:43 +0800653#ifdef LWS_OPENSSL_SUPPORT
654 SSL_CTX *ssl_ctx;
655 SSL_CTX *ssl_client_ctx;
656#endif
657#ifndef LWS_NO_EXTENSIONS
658 const struct lws_extension *extensions;
659#endif
Andy Green98061402016-04-15 14:01:29 +0800660 unsigned long rx, tx, conn, trans, ws_upgrades, http2_upgrades;
Andy Greend526c502016-03-28 10:10:43 +0800661
662 int listen_port;
663 unsigned int http_proxy_port;
Andy Greencc3c6fb2016-04-14 15:09:01 +0800664 unsigned int options;
Andy Greend526c502016-03-28 10:10:43 +0800665 int count_protocols;
666 int ka_time;
667 int ka_probes;
668 int ka_interval;
Andy Greenb46e4a82016-04-12 16:26:03 +0800669 int keepalive_timeout;
Andy Green2f0bc932016-04-15 12:00:23 +0800670#ifdef LWS_WITH_ACCESS_LOG
671 int log_fd;
672#endif
Andy Greend526c502016-03-28 10:10:43 +0800673
674#ifdef LWS_OPENSSL_SUPPORT
675 int use_ssl;
676 int allow_non_ssl_on_ssl_port;
677 unsigned int user_supplied_ssl_ctx:1;
678#endif
679};
680
Andy Greend3a55052016-01-19 03:34:24 +0800681/*
682 * the rest is managed per-context, that includes
683 *
684 * - processwide single fd -> wsi lookup
685 * - contextwide headers pool
Andy Greend3a55052016-01-19 03:34:24 +0800686 */
687
Andy Green4b85c1d2015-12-04 11:08:32 +0800688struct lws_context {
Andy Greenaa775fd2015-12-26 08:56:58 +0800689 time_t last_timeout_check_s;
Andy Green98061402016-04-15 14:01:29 +0800690 time_t time_up;
Andy Greenaa775fd2015-12-26 08:56:58 +0800691 struct lws_plat_file_ops fops;
Andy Greend3a55052016-01-19 03:34:24 +0800692 struct lws_context_per_thread pt[LWS_MAX_SMP];
Bud Davis229bfec2015-01-30 10:13:01 +0800693#ifdef _WIN32
694/* different implementation between unix and windows */
Andy Green3ef579b2015-12-04 09:23:56 +0800695 struct lws_fd_hashtable fd_hashtable[FD_HASHTABLE_MODULUS];
Bud Davis229bfec2015-01-30 10:13:01 +0800696#else
Andy Green4b85c1d2015-12-04 11:08:32 +0800697 struct lws **lws_lookup; /* fd to wsi */
Bud Davis229bfec2015-01-30 10:13:01 +0800698#endif
Andy Greend526c502016-03-28 10:10:43 +0800699 struct lws_vhost *vhost_list;
Andy Green02077052016-04-06 16:15:40 +0800700 struct lws_plugin *plugin_list;
Andy Greenaa775fd2015-12-26 08:56:58 +0800701 const struct lws_token_limits *token_limits;
702 void *user_space;
Andy Greenb21c20b2016-04-15 13:33:52 +0800703 const char *server_string;
Andy Greend738f842016-01-19 04:32:14 +0800704
Andy Green86ed65f2016-02-14 09:27:41 +0800705#if defined(LWS_USE_LIBEV)
706 lws_ev_signal_cb_t * lws_ev_sigint_cb;
707#endif
708#if defined(LWS_USE_LIBUV)
Denis Osvaldf107e4b2016-03-22 14:04:15 +0100709 uv_signal_cb lws_uv_sigint_cb;
Andy Green86ed65f2016-02-14 09:27:41 +0800710#endif
Andy Greenaa775fd2015-12-26 08:56:58 +0800711 char canonical_hostname[128];
712#ifdef LWS_LATENCY
713 unsigned long worst_latency;
714 char worst_latency_info[256];
715#endif
Andy Greenb8b247d2013-01-22 07:20:08 +0800716
Andy Greenaa775fd2015-12-26 08:56:58 +0800717 int max_fds;
Andy Green86ed65f2016-02-14 09:27:41 +0800718#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
Andy Greenaa775fd2015-12-26 08:56:58 +0800719 int use_ev_sigint;
720#endif
Andy Green24cba922013-01-19 13:56:10 +0800721 int started_with_parent;
Andy Greend526c502016-03-28 10:10:43 +0800722 int uid, gid;
Andy Green24cba922013-01-19 13:56:10 +0800723
Andy Green44eee682011-02-10 09:32:24 +0000724 int fd_random;
Andy Greend526c502016-03-28 10:10:43 +0800725#ifdef LWS_OPENSSL_SUPPORT
726#define lws_ssl_anybody_has_buffered_read(w) \
727 (w->vhost->use_ssl && \
728 w->context->pt[(int)w->tsi].pending_read_list)
729#define lws_ssl_anybody_has_buffered_read_tsi(c, t) \
730 (/*c->use_ssl && */ \
731 c->pt[(int)t].pending_read_list)
732#else
733#define lws_ssl_anybody_has_buffered_read(ctx) (0)
734#define lws_ssl_anybody_has_buffered_read_tsi(ctx, t) (0)
735#endif
Andy Green86ed65f2016-02-14 09:27:41 +0800736 int count_wsi_allocated;
Andy Green748a2212016-04-20 06:10:56 +0800737 int count_cgi_spawned;
Andy Greenaa775fd2015-12-26 08:56:58 +0800738 unsigned int options;
Andy Greend3a55052016-01-19 03:34:24 +0800739 unsigned int fd_limit_per_thread;
Andy Green200a6a22016-02-15 20:36:02 +0800740 unsigned int timeout_secs;
Andy Green6ee372f2012-04-09 15:09:01 +0800741
Patrick Gansterer1ee57f62014-03-06 11:57:50 +0100742 /*
743 * set to the Thread ID that's doing the service loop just before entry
744 * to poll indicates service thread likely idling in poll()
745 * volatile because other threads may check it as part of processing
746 * for pollfd event change.
747 */
748 volatile int service_tid;
Andy Greenc35b36b2015-12-24 13:00:54 +0800749 int service_tid_detected;
Patrick Gansterer1ee57f62014-03-06 11:57:50 +0100750
Andy Green3df58002015-12-25 12:44:12 +0800751 short max_http_header_data;
752 short max_http_header_pool;
Andy Greend3a55052016-01-19 03:34:24 +0800753 short count_threads;
Andy Green02077052016-04-06 16:15:40 +0800754 short plugin_protocol_count;
755 short plugin_extension_count;
Andy Greenb21c20b2016-04-15 13:33:52 +0800756 short server_string_len;
Andy Green9a9d5ea2016-01-18 11:49:41 +0800757
758 unsigned int being_destroyed:1;
Andy Green86ed65f2016-02-14 09:27:41 +0800759 unsigned int requested_kill:1;
Andy Green02077052016-04-06 16:15:40 +0800760 unsigned int protocol_init_done:1;
Andy Greenb45993c2010-12-18 15:13:50 +0000761};
762
Andy Greend526c502016-03-28 10:10:43 +0800763#define lws_get_context_protocol(ctx, x) ctx->vhost_list->protocols[x]
764#define lws_get_vh_protocol(vh, x) vh->protocols[x]
765
Andy Green86ed65f2016-02-14 09:27:41 +0800766LWS_EXTERN void
767lws_close_free_wsi_final(struct lws *wsi);
768LWS_EXTERN void
769lws_libuv_closehandle(struct lws *wsi);
770
Andy Green0a183542016-04-09 07:22:40 +0800771LWS_VISIBLE LWS_EXTERN int
772lws_plat_plugins_init(struct lws_context * context, const char *d);
773
774LWS_VISIBLE LWS_EXTERN int
775lws_plat_plugins_destroy(struct lws_context * context);
776
Andy Greena717df22014-04-11 13:14:37 +0800777enum {
778 LWS_EV_READ = (1 << 0),
779 LWS_EV_WRITE = (1 << 1),
780 LWS_EV_START = (1 << 2),
781 LWS_EV_STOP = (1 << 3),
Andy Green86ed65f2016-02-14 09:27:41 +0800782
783 LWS_EV_PREPARE_DELETION = (1 << 31),
Andy Greena717df22014-04-11 13:14:37 +0800784};
785
Andy Green86ed65f2016-02-14 09:27:41 +0800786#if defined(LWS_USE_LIBEV)
Andy Greena717df22014-04-11 13:14:37 +0800787LWS_EXTERN void
Andy Green11c05bf2015-12-16 18:19:08 +0800788lws_libev_accept(struct lws *new_wsi, lws_sockfd_type accept_fd);
Andy Greena717df22014-04-11 13:14:37 +0800789LWS_EXTERN void
Andy Green11c05bf2015-12-16 18:19:08 +0800790lws_libev_io(struct lws *wsi, int flags);
Andy Greena717df22014-04-11 13:14:37 +0800791LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +0800792lws_libev_init_fd_table(struct lws_context *context);
Andy Greena717df22014-04-11 13:14:37 +0800793LWS_EXTERN void
Andy Green86ed65f2016-02-14 09:27:41 +0800794lws_libev_destroyloop(struct lws_context *context, int tsi);
795LWS_EXTERN void
796lws_libev_run(const struct lws_context *context, int tsi);
Andy Greenc6fd3602016-03-23 09:22:11 +0800797#define LWS_LIBEV_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBEV)
Andy Green86ed65f2016-02-14 09:27:41 +0800798LWS_EXTERN void lws_feature_status_libev(struct lws_context_creation_info *info);
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800799#else
Andy Green86ed65f2016-02-14 09:27:41 +0800800#define lws_libev_accept(_a, _b) ((void) 0)
801#define lws_libev_io(_a, _b) ((void) 0)
802#define lws_libev_init_fd_table(_a) (0)
803#define lws_libev_run(_a, _b) ((void) 0)
804#define lws_libev_destroyloop(_a, _b) ((void) 0)
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800805#define LWS_LIBEV_ENABLED(context) (0)
Andy Green86ed65f2016-02-14 09:27:41 +0800806#if LWS_POSIX
Andy Greena717df22014-04-11 13:14:37 +0800807#define lws_feature_status_libev(_a) \
808 lwsl_notice("libev support not compiled in\n")
Andy Green8c0d3c02015-11-02 20:34:12 +0800809#else
810#define lws_feature_status_libev(_a)
811#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800812#endif
813
Andy Green86ed65f2016-02-14 09:27:41 +0800814#if defined(LWS_USE_LIBUV)
815LWS_EXTERN void
816lws_libuv_accept(struct lws *new_wsi, lws_sockfd_type accept_fd);
817LWS_EXTERN void
818lws_libuv_io(struct lws *wsi, int flags);
819LWS_EXTERN int
820lws_libuv_init_fd_table(struct lws_context *context);
821LWS_EXTERN void
822lws_libuv_run(const struct lws_context *context, int tsi);
823LWS_EXTERN void
824lws_libuv_destroyloop(struct lws_context *context, int tsi);
Andy Greenc6fd3602016-03-23 09:22:11 +0800825#define LWS_LIBUV_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBUV)
Andy Green86ed65f2016-02-14 09:27:41 +0800826LWS_EXTERN void lws_feature_status_libuv(struct lws_context_creation_info *info);
827#else
828#define lws_libuv_accept(_a, _b) ((void) 0)
829#define lws_libuv_io(_a, _b) ((void) 0)
830#define lws_libuv_init_fd_table(_a) (0)
831#define lws_libuv_run(_a, _b) ((void) 0)
832#define lws_libuv_destroyloop(_a, _b) ((void) 0)
833#define LWS_LIBUV_ENABLED(context) (0)
834#if LWS_POSIX
835#define lws_feature_status_libuv(_a) \
836 lwsl_notice("libuv support not compiled in\n")
837#else
838#define lws_feature_status_libuv(_a)
839#endif
840#endif
841
842
Andy Green055f2972014-03-24 16:09:25 +0800843#ifdef LWS_USE_IPV6
Andy Greendc8a3a82015-12-06 09:15:27 +0800844#define LWS_IPV6_ENABLED(context) \
Andy Greenc6fd3602016-03-23 09:22:11 +0800845 (!lws_check_opt(context->options, LWS_SERVER_OPTION_DISABLE_IPV6))
James Devine3f13ea22014-03-24 16:09:25 +0800846#else
847#define LWS_IPV6_ENABLED(context) (0)
848#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800849
Yeonjun Lim3c6a8c12016-03-30 22:47:02 -0700850#ifdef LWS_USE_UNIX_SOCK
Andy Green144594d2016-04-14 12:11:51 +0800851#define LWS_UNIX_SOCK_ENABLED(vhost) \
852 (vhost->options & LWS_SERVER_OPTION_UNIX_SOCK)
Yeonjun Lim3c6a8c12016-03-30 22:47:02 -0700853#else
Andy Green144594d2016-04-14 12:11:51 +0800854#define LWS_UNIX_SOCK_ENABLED(vhost) (0)
Yeonjun Lim3c6a8c12016-03-30 22:47:02 -0700855#endif
Andy Greenb1a9e502013-11-10 15:15:21 +0800856enum uri_path_states {
857 URIPS_IDLE,
858 URIPS_SEEN_SLASH,
859 URIPS_SEEN_SLASH_DOT,
860 URIPS_SEEN_SLASH_DOT_DOT,
861};
862
863enum uri_esc_states {
864 URIES_IDLE,
865 URIES_SEEN_PERCENT,
866 URIES_SEEN_PERCENT_H1,
867};
Andy Greenf3d3b402011-02-09 07:16:34 +0000868
Andy Green024eb6c2014-10-08 12:00:53 +0800869/* notice that these union members:
Andy Green40110e82015-12-14 08:52:03 +0800870 *
Andy Green024eb6c2014-10-08 12:00:53 +0800871 * hdr
872 * http
873 * http2
Andy Green40110e82015-12-14 08:52:03 +0800874 *
Andy Green024eb6c2014-10-08 12:00:53 +0800875 * all have a pointer to allocated_headers struct as their first member.
Andy Green40110e82015-12-14 08:52:03 +0800876 *
Andy Green024eb6c2014-10-08 12:00:53 +0800877 * It means for allocated_headers access, the three union paths can all be
Peter Pentchevbb085da2015-12-03 15:55:11 +0200878 * used interchangeably to access the same data
Andy Green024eb6c2014-10-08 12:00:53 +0800879 */
880
Andy Greena661ee52016-02-29 13:18:30 +0800881
882#ifndef LWS_NO_CLIENT
883struct client_info_stash {
884 char address[256];
885 char path[1024];
886 char host[256];
887 char origin[256];
888 char protocol[256];
889 char method[16];
890};
891#endif
892
Andy Green2d8d35a2016-02-29 14:19:16 +0800893struct _lws_header_related {
894 /* MUST be first in struct */
895 struct allocated_headers *ah;
896 struct lws *ah_wait_list;
897 unsigned char *preamble_rx;
898#ifndef LWS_NO_CLIENT
899 struct client_info_stash *stash;
900#endif
901 unsigned int preamble_rx_len;
902 enum uri_path_states ups;
903 enum uri_esc_states ues;
904 short lextable_pos;
905 unsigned short current_token_limit;
906#ifndef LWS_NO_CLIENT
907 unsigned short c_port;
908#endif
909 char esc_stash;
910 char post_literal_equal;
911 unsigned char parser_state; /* enum lws_token_indexes */
912 char redirects;
913};
914
Andy Green84fd9492013-11-09 11:40:32 +0800915struct _lws_http_mode_related {
Andy Green024eb6c2014-10-08 12:00:53 +0800916 /* MUST be first in struct */
Andy Green84fd9492013-11-09 11:40:32 +0800917 struct allocated_headers *ah; /* mirroring _lws_header_related */
Andy Green8c1f6022016-01-26 20:56:56 +0800918 struct lws *ah_wait_list;
Andy Green2d8d35a2016-02-29 14:19:16 +0800919 unsigned char *preamble_rx;
920#ifndef LWS_NO_CLIENT
921 struct client_info_stash *stash;
922#endif
923 unsigned int preamble_rx_len;
Andy Green8c1f6022016-01-26 20:56:56 +0800924 struct lws *new_wsi_list;
Andy Green84fd9492013-11-09 11:40:32 +0800925 unsigned long filepos;
926 unsigned long filelen;
Andy Greenaa775fd2015-12-26 08:56:58 +0800927 lws_filefd_type fd;
kapejodce64fb02013-11-19 13:38:16 +0100928
Andrew Canadayafe26cf2014-07-13 01:07:36 -0400929 enum http_version request_version;
930 enum http_connection_type connection_type;
Andy Green2cd30742015-11-02 13:10:33 +0800931 unsigned int content_length;
932 unsigned int content_remain;
Andy Green84fd9492013-11-09 11:40:32 +0800933};
934
Andy Green024eb6c2014-10-08 12:00:53 +0800935#ifdef LWS_USE_HTTP2
936
937enum lws_http2_settings {
938 LWS_HTTP2_SETTINGS__HEADER_TABLE_SIZE = 1,
939 LWS_HTTP2_SETTINGS__ENABLE_PUSH,
940 LWS_HTTP2_SETTINGS__MAX_CONCURRENT_STREAMS,
941 LWS_HTTP2_SETTINGS__INITIAL_WINDOW_SIZE,
942 LWS_HTTP2_SETTINGS__MAX_FRAME_SIZE,
943 LWS_HTTP2_SETTINGS__MAX_HEADER_LIST_SIZE,
Andy Green40110e82015-12-14 08:52:03 +0800944
Andy Green024eb6c2014-10-08 12:00:53 +0800945 LWS_HTTP2_SETTINGS__COUNT /* always last */
Andy Greena54f2322014-09-30 09:43:14 +0800946};
947
Andy Green024eb6c2014-10-08 12:00:53 +0800948enum lws_http2_wellknown_frame_types {
949 LWS_HTTP2_FRAME_TYPE_DATA,
950 LWS_HTTP2_FRAME_TYPE_HEADERS,
951 LWS_HTTP2_FRAME_TYPE_PRIORITY,
952 LWS_HTTP2_FRAME_TYPE_RST_STREAM,
953 LWS_HTTP2_FRAME_TYPE_SETTINGS,
954 LWS_HTTP2_FRAME_TYPE_PUSH_PROMISE,
955 LWS_HTTP2_FRAME_TYPE_PING,
956 LWS_HTTP2_FRAME_TYPE_GOAWAY,
957 LWS_HTTP2_FRAME_TYPE_WINDOW_UPDATE,
958 LWS_HTTP2_FRAME_TYPE_CONTINUATION,
Andy Green40110e82015-12-14 08:52:03 +0800959
Andy Green024eb6c2014-10-08 12:00:53 +0800960 LWS_HTTP2_FRAME_TYPE_COUNT /* always last */
961};
962
Andy Green91b05892014-10-17 08:38:44 +0800963enum lws_http2_flags {
964 LWS_HTTP2_FLAG_END_STREAM = 1,
965 LWS_HTTP2_FLAG_END_HEADERS = 4,
966 LWS_HTTP2_FLAG_PADDED = 8,
967 LWS_HTTP2_FLAG_PRIORITY = 0x20,
968
969 LWS_HTTP2_FLAG_SETTINGS_ACK = 1,
970};
971
Andy Green024eb6c2014-10-08 12:00:53 +0800972#define LWS_HTTP2_STREAM_ID_MASTER 0
973#define LWS_HTTP2_FRAME_HEADER_LENGTH 9
974#define LWS_HTTP2_SETTINGS_LENGTH 6
975
976struct http2_settings {
977 unsigned int setting[LWS_HTTP2_SETTINGS__COUNT];
978};
979
Andy Greenecc2e722014-10-09 16:57:47 +0800980enum http2_hpack_state {
Andy Green40110e82015-12-14 08:52:03 +0800981
Andy Green200f3852014-10-18 12:23:05 +0800982 /* optional before first header block */
983 HPKS_OPT_PADDING,
984 HKPS_OPT_E_DEPENDENCY,
985 HKPS_OPT_WEIGHT,
Andy Green40110e82015-12-14 08:52:03 +0800986
Andy Green200f3852014-10-18 12:23:05 +0800987 /* header block */
Andy Greenecc2e722014-10-09 16:57:47 +0800988 HPKS_TYPE,
Andy Green40110e82015-12-14 08:52:03 +0800989
Andy Green2add6342014-10-12 08:38:16 +0800990 HPKS_IDX_EXT,
Andy Green40110e82015-12-14 08:52:03 +0800991
Andy Greenecc2e722014-10-09 16:57:47 +0800992 HPKS_HLEN,
993 HPKS_HLEN_EXT,
994
995 HPKS_DATA,
Andy Green40110e82015-12-14 08:52:03 +0800996
Andy Green200f3852014-10-18 12:23:05 +0800997 /* optional after last header block */
998 HKPS_OPT_DISCARD_PADDING,
Andy Greenecc2e722014-10-09 16:57:47 +0800999};
1000
Andy Green2add6342014-10-12 08:38:16 +08001001enum http2_hpack_type {
1002 HPKT_INDEXED_HDR_7,
1003 HPKT_INDEXED_HDR_6_VALUE_INCR,
1004 HPKT_LITERAL_HDR_VALUE_INCR,
1005 HPKT_INDEXED_HDR_4_VALUE,
1006 HPKT_LITERAL_HDR_VALUE,
1007 HPKT_SIZE_5
1008};
1009
Andy Green200f3852014-10-18 12:23:05 +08001010struct hpack_dt_entry {
1011 int token; /* additions that don't map to a token are ignored */
1012 int arg_offset;
1013 int arg_len;
1014};
1015
1016struct hpack_dynamic_table {
1017 struct hpack_dt_entry *entries;
1018 char *args;
1019 int pos;
1020 int next;
1021 int num_entries;
1022 int args_length;
1023};
1024
Andy Green024eb6c2014-10-08 12:00:53 +08001025struct _lws_http2_related {
Andy Green40110e82015-12-14 08:52:03 +08001026 /*
Andy Green024eb6c2014-10-08 12:00:53 +08001027 * having this first lets us also re-use all HTTP union code
1028 * and in turn, http_mode_related has allocated headers in right
1029 * place so we can use the header apis on the wsi directly still
1030 */
1031 struct _lws_http_mode_related http; /* MUST BE FIRST IN STRUCT */
1032
1033 struct http2_settings my_settings;
1034 struct http2_settings peer_settings;
Andy Green40110e82015-12-14 08:52:03 +08001035
Andy Green4b85c1d2015-12-04 11:08:32 +08001036 struct lws *parent_wsi;
1037 struct lws *next_child_wsi;
Andy Green024eb6c2014-10-08 12:00:53 +08001038
Andy Green200f3852014-10-18 12:23:05 +08001039 struct hpack_dynamic_table *hpack_dyn_table;
Andy Greenaa775fd2015-12-26 08:56:58 +08001040 struct lws *stream_wsi;
1041 unsigned char ping_payload[8];
1042 unsigned char one_setting[LWS_HTTP2_SETTINGS_LENGTH];
Andy Green40110e82015-12-14 08:52:03 +08001043
Andy Green024eb6c2014-10-08 12:00:53 +08001044 unsigned int count;
Andy Green024eb6c2014-10-08 12:00:53 +08001045 unsigned int length;
1046 unsigned int stream_id;
Andy Greenaa775fd2015-12-26 08:56:58 +08001047 enum http2_hpack_state hpack;
1048 enum http2_hpack_type hpack_type;
1049 unsigned int header_index;
1050 unsigned int hpack_len;
1051 unsigned int hpack_e_dep;
1052 int tx_credit;
1053 unsigned int my_stream_id;
1054 unsigned int child_count;
1055 int my_priority;
Andy Green67112662016-01-11 11:34:01 +08001056
Andy Green91b05892014-10-17 08:38:44 +08001057 unsigned int END_STREAM:1;
1058 unsigned int END_HEADERS:1;
Andy Green1cea5812014-10-19 07:36:20 +08001059 unsigned int send_END_STREAM:1;
Andy Green7df53c52014-10-22 15:37:28 +08001060 unsigned int GOING_AWAY;
1061 unsigned int requested_POLLOUT:1;
Andy Green97ee57f2014-10-29 09:39:08 +08001062 unsigned int waiting_tx_credit:1;
Andy Greenecc2e722014-10-09 16:57:47 +08001063 unsigned int huff:1;
1064 unsigned int value:1;
Andy Green40110e82015-12-14 08:52:03 +08001065
Andy Greenaa775fd2015-12-26 08:56:58 +08001066 unsigned short round_robin_POLLOUT;
1067 unsigned short count_POLLOUT_children;
1068 unsigned short hpack_pos;
1069
1070 unsigned char type;
1071 unsigned char flags;
1072 unsigned char frame_state;
1073 unsigned char padding;
1074 unsigned char hpack_m;
Andy Green024eb6c2014-10-08 12:00:53 +08001075 unsigned char initialized;
Andy Green024eb6c2014-10-08 12:00:53 +08001076};
1077
Andy Green7df53c52014-10-22 15:37:28 +08001078#define HTTP2_IS_TOPLEVEL_WSI(wsi) (!wsi->u.http2.parent_wsi)
Andy Green024eb6c2014-10-08 12:00:53 +08001079
1080#endif
1081
Andy Green623a98d2013-01-21 11:04:23 +08001082struct _lws_websocket_related {
Andy Green2c218e72016-02-15 12:37:04 +08001083 /* cheapest way to deal with ah overlap with ws union transition */
Andy Green26d42492016-02-24 12:40:21 +08001084 struct _lws_header_related hdr;
Andy Green67112662016-01-11 11:34:01 +08001085 char *rx_ubuf;
Andy Green4019aab2016-01-30 11:43:10 +08001086 unsigned int rx_ubuf_alloc;
Andy Green67112662016-01-11 11:34:01 +08001087 struct lws *rx_draining_ext_list;
1088 struct lws *tx_draining_ext_list;
Andy Greende132b92015-12-25 13:48:20 +08001089 size_t rx_packet_length;
Andy Green67112662016-01-11 11:34:01 +08001090 unsigned int rx_ubuf_head;
1091 unsigned char mask[4];
Andy Green1fb95e82015-12-26 17:20:34 +08001092 /* Also used for close content... control opcode == < 128 */
Andy Green67112662016-01-11 11:34:01 +08001093 unsigned char ping_payload_buf[128 - 3 + LWS_PRE];
Andy Green1fb95e82015-12-26 17:20:34 +08001094
Andy Greenaa775fd2015-12-26 08:56:58 +08001095 unsigned char ping_payload_len;
Andy Green67112662016-01-11 11:34:01 +08001096 unsigned char mask_idx;
Andy Green623a98d2013-01-21 11:04:23 +08001097 unsigned char opcode;
Andy Green623a98d2013-01-21 11:04:23 +08001098 unsigned char rsv;
Andy Green67112662016-01-11 11:34:01 +08001099 unsigned char rsv_first_msg;
Andy Green1fb95e82015-12-26 17:20:34 +08001100 /* zero if no info, or length including 2-byte close code */
1101 unsigned char close_in_ping_buffer_len;
Andy Green0c7b38b2015-12-29 09:46:03 +08001102 unsigned char utf8;
Andy Green67112662016-01-11 11:34:01 +08001103 unsigned char stashed_write_type;
1104 unsigned char tx_draining_stashed_wp;
Andy Greende132b92015-12-25 13:48:20 +08001105
1106 unsigned int final:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001107 unsigned int frame_is_binary:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001108 unsigned int all_zero_nonce:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001109 unsigned int this_frame_masked:1;
Andy Green1f4267b2013-10-17 08:09:19 +08001110 unsigned int inside_frame:1; /* next write will be more of frame */
1111 unsigned int clean_buffer:1; /* buffer not rewritten by extension */
Andy Green40d5abc2015-04-17 20:29:58 +08001112 unsigned int payload_is_close:1; /* process as PONG, but it is close */
Andy Greenba38a7e2015-12-25 13:14:09 +08001113 unsigned int ping_pending_flag:1;
Andy Green977734e2015-12-28 16:51:08 +08001114 unsigned int continuation_possible:1;
Andy Green91d624e2015-12-28 17:05:40 +08001115 unsigned int owed_a_fin:1;
Andy Green9b81d3c2015-12-29 12:28:48 +08001116 unsigned int check_utf8:1;
1117 unsigned int defeat_check_utf8:1;
Andy Green67112662016-01-11 11:34:01 +08001118 unsigned int pmce_compressed_message:1;
1119 unsigned int stashed_write_pending:1;
1120 unsigned int rx_draining_ext:1;
1121 unsigned int tx_draining_ext:1;
Andy Green623a98d2013-01-21 11:04:23 +08001122};
1123
Andy Green6a8099b2016-02-21 21:25:48 +08001124#ifdef LWS_WITH_CGI
1125
1126/* wsi who is master of the cgi points to an lws_cgi */
1127
1128struct lws_cgi {
1129 struct lws_cgi *cgi_list;
1130 struct lws *stdwsi[3]; /* points to the associated stdin/out/err wsis */
1131 struct lws *wsi; /* owner */
Andy Greenf5efa742016-04-13 11:42:53 +08001132 unsigned long content_length;
1133 unsigned long content_length_seen;
Andy Green6a8099b2016-02-21 21:25:48 +08001134 int pipe_fds[3][2];
1135 int pid;
1136
1137 unsigned int being_closed:1;
1138};
Andy Green5c8906e2016-03-13 16:44:19 +08001139#endif
Andy Greenc3c2d6d2016-03-09 07:41:59 +08001140
Andy Green5c8906e2016-03-13 16:44:19 +08001141signed char char_to_hex(const char c);
1142
1143#ifndef LWS_NO_CLIENT
1144enum lws_chunk_parser {
1145 ELCP_HEX,
1146 ELCP_CR,
1147 ELCP_CONTENT,
1148 ELCP_POST_CR,
1149 ELCP_POST_LF,
1150};
Andy Green6a8099b2016-02-21 21:25:48 +08001151#endif
1152
Andy Green1e5a9ad2016-03-20 11:59:53 +08001153struct lws_rewrite;
1154
Andy Green2f0bc932016-04-15 12:00:23 +08001155#ifdef LWS_WITH_ACCESS_LOG
1156struct lws_access_log {
1157 char *header_log;
1158 char *user_agent;
1159 unsigned long sent;
1160 int response;
1161};
1162#endif
1163
Andy Green4b85c1d2015-12-04 11:08:32 +08001164struct lws {
Andy Green623a98d2013-01-21 11:04:23 +08001165
Andy Greenaa775fd2015-12-26 08:56:58 +08001166 /* structs */
1167 /* members with mutually exclusive lifetimes are unionized */
1168
1169 union u {
1170 struct _lws_http_mode_related http;
1171#ifdef LWS_USE_HTTP2
1172 struct _lws_http2_related http2;
1173#endif
1174 struct _lws_header_related hdr;
1175 struct _lws_websocket_related ws;
1176 } u;
1177
Andy Green623a98d2013-01-21 11:04:23 +08001178 /* lifetime members */
1179
Andy Green86ed65f2016-02-14 09:27:41 +08001180#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
Andy Green40110e82015-12-14 08:52:03 +08001181 struct lws_io_watcher w_read;
Andy Green86ed65f2016-02-14 09:27:41 +08001182#endif
1183#if defined(LWS_USE_LIBEV)
Andy Green40110e82015-12-14 08:52:03 +08001184 struct lws_io_watcher w_write;
Andy Green86ed65f2016-02-14 09:27:41 +08001185#endif
Andy Greende132b92015-12-25 13:48:20 +08001186 time_t pending_timeout_limit;
Andy Greenaa775fd2015-12-26 08:56:58 +08001187
1188 /* pointers */
1189
Andy Green40110e82015-12-14 08:52:03 +08001190 struct lws_context *context;
Andy Greend526c502016-03-28 10:10:43 +08001191 struct lws_vhost *vhost;
Andy Green494418a2016-03-02 09:17:22 +08001192 struct lws *parent; /* points to parent, if any */
1193 struct lws *child_list; /* points to first child */
1194 struct lws *sibling_list; /* subsequent children at same level */
Andy Green6a8099b2016-02-21 21:25:48 +08001195#ifdef LWS_WITH_CGI
1196 struct lws_cgi *cgi; /* wsi being cgi master have one of these */
Andy Green6a8099b2016-02-21 21:25:48 +08001197#endif
Andy Green4b85c1d2015-12-04 11:08:32 +08001198 const struct lws_protocols *protocol;
Andy Green4714cf02016-04-16 08:40:35 +08001199 struct lws **same_vh_protocol_prev, *same_vh_protocol_next;
Andy Greend738f842016-01-19 04:32:14 +08001200 struct lws *timeout_list;
1201 struct lws **timeout_list_prev;
Andy Green2f0bc932016-04-15 12:00:23 +08001202#ifdef LWS_WITH_ACCESS_LOG
1203 struct lws_access_log access_log;
1204#endif
Andy Greende132b92015-12-25 13:48:20 +08001205 void *user_space;
1206 /* rxflow handling */
1207 unsigned char *rxflow_buffer;
1208 /* truncated send handling */
1209 unsigned char *trunc_alloc; /* non-NULL means buffering in progress */
Andy Green3182ece2013-01-20 17:08:31 +08001210#ifndef LWS_NO_EXTENSIONS
Andy Greend2ac22c2015-12-11 10:45:35 +08001211 const struct lws_extension *active_extensions[LWS_MAX_EXTENSIONS_ACTIVE];
Andy Green67112662016-01-11 11:34:01 +08001212 void *act_ext_user[LWS_MAX_EXTENSIONS_ACTIVE];
Andy Green3182ece2013-01-20 17:08:31 +08001213#endif
Andy Greende132b92015-12-25 13:48:20 +08001214#ifdef LWS_OPENSSL_SUPPORT
1215 SSL *ssl;
Andy Green1a3f1772016-03-28 19:58:02 +08001216#if !defined(LWS_USE_POLARSSL) && !defined(LWS_USE_MBEDTLS)
Andy Greende132b92015-12-25 13:48:20 +08001217 BIO *client_bio;
Andy Green1a3f1772016-03-28 19:58:02 +08001218#endif
Andy Greende132b92015-12-25 13:48:20 +08001219 struct lws *pending_read_list_prev, *pending_read_list_next;
1220#endif
Andy Green1a138852016-03-20 11:55:25 +08001221#ifdef LWS_WITH_HTTP_PROXY
Andy Green1e5a9ad2016-03-20 11:59:53 +08001222 struct lws_rewrite *rw;
1223#endif
Andy Greenaa775fd2015-12-26 08:56:58 +08001224#ifdef LWS_LATENCY
1225 unsigned long action_start;
1226 unsigned long latency_start;
1227#endif
1228 /* pointer / int */
Andy Green3b193862015-11-02 13:13:44 +08001229 lws_sockfd_type sock;
Andy Greende132b92015-12-25 13:48:20 +08001230
Andy Greenaa775fd2015-12-26 08:56:58 +08001231 /* ints */
Andy Greendfb23042013-01-17 12:26:48 +08001232 int position_in_fds_table;
Andy Green024eb6c2014-10-08 12:00:53 +08001233 int rxflow_len;
1234 int rxflow_pos;
Andy Green54806b12015-12-17 17:03:59 +08001235 unsigned int trunc_alloc_len; /* size of malloc */
1236 unsigned int trunc_offset; /* where we are in terms of spilling */
1237 unsigned int trunc_len; /* how much is buffered */
Andy Green5c8906e2016-03-13 16:44:19 +08001238#ifndef LWS_NO_CLIENT
1239 int chunk_remaining;
1240#endif
Andy Green42e8b182016-04-22 08:53:49 +08001241 unsigned int cache_secs;
Andy Green2764eba2013-12-09 14:16:17 +08001242
Andy Greende132b92015-12-25 13:48:20 +08001243 unsigned int hdr_parsing_completed:1;
Andy Green22d6f392016-04-10 09:33:54 +08001244 unsigned int http2_substream:1;
Andy Greend526c502016-03-28 10:10:43 +08001245 unsigned int listener:1;
Andy Greende132b92015-12-25 13:48:20 +08001246 unsigned int user_space_externally_allocated:1;
1247 unsigned int socket_is_permanently_unusable:1;
1248 unsigned int rxflow_change_to:2;
Andy Green83af28a2016-02-28 10:55:31 +08001249 unsigned int more_rx_waiting:1; /* has to live here since ah may stick to end */
Andy Green98061402016-04-15 14:01:29 +08001250 unsigned int conn_stat_done:1;
Andy Green42e8b182016-04-22 08:53:49 +08001251 unsigned int cache_reuse:1;
1252 unsigned int cache_revalidate:1;
1253 unsigned int cache_intermediaries:1;
Andy Green2f216282016-04-23 09:26:11 +08001254 unsigned int favoured_pollin:1;
Andy Green2f0bc932016-04-15 12:00:23 +08001255#ifdef LWS_WITH_ACCESS_LOG
1256 unsigned int access_log_pending:1;
1257#endif
Andy Greena661ee52016-02-29 13:18:30 +08001258#ifndef LWS_NO_CLIENT
1259 unsigned int do_ws:1; /* whether we are doing http or ws flow */
Andy Green5c8906e2016-03-13 16:44:19 +08001260 unsigned int chunked:1; /* if the clientside connection is chunked */
Andy Green1e5a9ad2016-03-20 11:59:53 +08001261 unsigned int client_rx_avail:1;
Andy Green1a138852016-03-20 11:55:25 +08001262#endif
1263#ifdef LWS_WITH_HTTP_PROXY
Andy Green1e5a9ad2016-03-20 11:59:53 +08001264 unsigned int perform_rewrite:1;
Andy Greena661ee52016-02-29 13:18:30 +08001265#endif
Andy Greende132b92015-12-25 13:48:20 +08001266#ifndef LWS_NO_EXTENSIONS
1267 unsigned int extension_data_pending:1;
1268#endif
1269#ifdef LWS_OPENSSL_SUPPORT
1270 unsigned int use_ssl:2;
1271 unsigned int upgraded:1;
1272#endif
Andy Greenaa775fd2015-12-26 08:56:58 +08001273#ifdef _WIN32
1274 unsigned int sock_send_blocking:1;
1275#endif
Andy Green0f9904f2016-03-17 15:26:49 +08001276#ifdef LWS_OPENSSL_SUPPORT
1277 unsigned int redirect_to_https:1;
1278#endif
Andy Greende132b92015-12-25 13:48:20 +08001279
Andy Greenaa775fd2015-12-26 08:56:58 +08001280 /* chars */
Andy Greende132b92015-12-25 13:48:20 +08001281#ifndef LWS_NO_EXTENSIONS
Andy Green67112662016-01-11 11:34:01 +08001282 unsigned char count_act_ext;
Andy Greende132b92015-12-25 13:48:20 +08001283#endif
1284 unsigned char ietf_spec_revision;
1285 char mode; /* enum connection_mode */
1286 char state; /* enum lws_connection_states */
Andy Green8c1f6022016-01-26 20:56:56 +08001287 char state_pre_close;
Andy Greende132b92015-12-25 13:48:20 +08001288 char lws_rx_parse_state; /* enum lws_rx_parse_state */
1289 char rx_frame_type; /* enum lws_write_protocol */
1290 char pending_timeout; /* enum pending_timeout */
Andy Greend738f842016-01-19 04:32:14 +08001291 char pps; /* enum lws_pending_protocol_send */
Andy Greend3a55052016-01-19 03:34:24 +08001292 char tsi; /* thread service index we belong to */
Andy Green6a8099b2016-02-21 21:25:48 +08001293#ifdef LWS_WITH_CGI
1294 char cgi_channel; /* which of stdin/out/err */
Andy Greenc3c2d6d2016-03-09 07:41:59 +08001295 char hdr_state;
Andy Green6a8099b2016-02-21 21:25:48 +08001296#endif
Andy Green5c8906e2016-03-13 16:44:19 +08001297#ifndef LWS_NO_CLIENT
1298 char chunk_parser; /* enum lws_chunk_parser */
1299#endif
Andy Green7c212cc2010-11-08 20:20:42 +00001300};
1301
Andy Green3d67f512014-04-03 07:29:50 +08001302LWS_EXTERN int log_level;
1303
Andy Greenc7939442016-03-12 08:18:58 +08001304LWS_EXTERN int
Andy Green144594d2016-04-14 12:11:51 +08001305lws_socket_bind(struct lws_vhost *vhost, int sockfd, int port,
Andy Greenc7939442016-03-12 08:18:58 +08001306 const char *iface);
1307
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001308LWS_EXTERN void
Andy Green6b5de702015-12-15 21:15:58 +08001309lws_close_free_wsi(struct lws *wsi, enum lws_close_status);
Andy Green508946c2013-02-12 10:19:08 +08001310
Andy Green34f3dd22014-04-03 07:42:50 +08001311LWS_EXTERN int
Andy Green6b5de702015-12-15 21:15:58 +08001312remove_wsi_socket_from_fds(struct lws *wsi);
Andy Green024eb6c2014-10-08 12:00:53 +08001313LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001314lws_rxflow_cache(struct lws *wsi, unsigned char *buf, int n, int len);
Andy Green34f3dd22014-04-03 07:42:50 +08001315
Andy Greend636e352013-01-29 12:36:17 +08001316#ifndef LWS_LATENCY
Andy Greendc8a3a82015-12-06 09:15:27 +08001317static inline void
1318lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1319 int ret, int completion) {
Andy Green40110e82015-12-14 08:52:03 +08001320 do {
1321 (void)context; (void)wsi; (void)action; (void)ret;
1322 (void)completion;
Andy Greendc8a3a82015-12-06 09:15:27 +08001323 } while (0);
1324}
1325static inline void
1326lws_latency_pre(struct lws_context *context, struct lws *wsi) {
1327 do { (void)context; (void)wsi; } while (0);
1328}
Andy Greend636e352013-01-29 12:36:17 +08001329#else
1330#define lws_latency_pre(_context, _wsi) lws_latency(_context, _wsi, NULL, 0, 0)
1331extern void
Andy Greendc8a3a82015-12-06 09:15:27 +08001332lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1333 int ret, int completion);
Andy Greend636e352013-01-29 12:36:17 +08001334#endif
1335
Andy Greendc8a3a82015-12-06 09:15:27 +08001336LWS_EXTERN void
Andy Green6b5de702015-12-15 21:15:58 +08001337lws_set_protocol_write_pending(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001338 enum lws_pending_protocol_send pend);
Andy Greene99a83c2016-01-20 16:56:06 +08001339LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001340lws_client_rx_sm(struct lws *wsi, unsigned char c);
Andy Green4739e5c2011-01-22 12:51:57 +00001341
Andy Greene99a83c2016-01-20 16:56:06 +08001342LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001343lws_parse(struct lws *wsi, unsigned char c);
Andy Greenb45993c2010-12-18 15:13:50 +00001344
Andy Greene99a83c2016-01-20 16:56:06 +08001345LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001346lws_http_action(struct lws *wsi);
Andy Green024eb6c2014-10-08 12:00:53 +08001347
1348LWS_EXTERN int
Andy Greendf736162011-01-18 15:39:02 +00001349lws_b64_selftest(void);
Andy Greenbfb051f2011-02-09 08:49:14 +00001350
Andy Green2c218e72016-02-15 12:37:04 +08001351LWS_EXTERN int
1352lws_service_adjust_timeout(struct lws_context *context, int timeout_ms, int tsi);
1353
1354LWS_EXTERN int
1355lws_service_flag_pending(struct lws_context *context, int tsi);
1356
Andy Green2cd30742015-11-02 13:10:33 +08001357#if defined(_WIN32) || defined(MBED_OPERATORS)
Andy Green4b85c1d2015-12-04 11:08:32 +08001358LWS_EXTERN struct lws *
Andy Green1fa76852015-12-14 11:17:16 +08001359wsi_from_fd(const struct lws_context *context, lws_sockfd_type fd);
Andy Green0d338332011-02-12 11:57:43 +00001360
Andy Green40110e82015-12-14 08:52:03 +08001361LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001362insert_wsi(struct lws_context *context, struct lws *wsi);
Bud Davis229bfec2015-01-30 10:13:01 +08001363
1364LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001365delete_from_fd(struct lws_context *context, lws_sockfd_type fd);
Bud Davis229bfec2015-01-30 10:13:01 +08001366#else
Andy Green40110e82015-12-14 08:52:03 +08001367#define wsi_from_fd(A,B) A->lws_lookup[B]
Andy Green8c1f6022016-01-26 20:56:56 +08001368#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 +08001369#define delete_from_fd(A,B) A->lws_lookup[B]=0
1370#endif
1371
Andy Greene99a83c2016-01-20 16:56:06 +08001372LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001373insert_wsi_socket_into_fds(struct lws_context *context, struct lws *wsi);
Darin Willitsc19456f2011-02-14 17:52:39 +00001374
Andy Greene99a83c2016-01-20 16:56:06 +08001375LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001376lws_issue_raw(struct lws *wsi, unsigned char *buf, size_t len);
Andy Greend44bf7f2011-03-06 10:29:38 +00001377
Andy Green95a7b5d2011-03-06 10:29:39 +00001378
Andy Greene99a83c2016-01-20 16:56:06 +08001379LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001380lws_service_timeout_check(struct lws *wsi, unsigned int sec);
Andy Greena41314f2011-05-23 10:00:03 +01001381
Andy Greene99a83c2016-01-20 16:56:06 +08001382LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001383lws_client_connect_2(struct lws *wsi);
Andy Greena41314f2011-05-23 10:00:03 +01001384
Andy Greene99a83c2016-01-20 16:56:06 +08001385LWS_VISIBLE struct lws * LWS_WARN_UNUSED_RESULT
1386lws_client_reset(struct lws *wsi, int ssl, const char *address, int port,
1387 const char *path, const char *host);
Andy Green809d69a2016-01-14 11:37:56 +08001388
Andy Greene99a83c2016-01-20 16:56:06 +08001389LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
Andy Greend526c502016-03-28 10:10:43 +08001390lws_create_new_server_wsi(struct lws_vhost *vhost);
Andy Greena41314f2011-05-23 10:00:03 +01001391
Andy Greene99a83c2016-01-20 16:56:06 +08001392LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001393lws_generate_client_handshake(struct lws *wsi, char *pkt);
Andy Greena41314f2011-05-23 10:00:03 +01001394
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001395LWS_EXTERN int
Andy Green6b5de702015-12-15 21:15:58 +08001396lws_handle_POLLOUT_event(struct lws *wsi, struct lws_pollfd *pollfd);
Andy Green91b05892014-10-17 08:38:44 +08001397
Andy Green2d8d35a2016-02-29 14:19:16 +08001398LWS_EXTERN struct lws *
1399lws_client_connect_via_info2(struct lws *wsi);
1400
Andy Greencdb9bf92014-04-12 10:07:02 +08001401/*
1402 * EXTENSIONS
1403 */
1404
Andy Green3182ece2013-01-20 17:08:31 +08001405#ifndef LWS_NO_EXTENSIONS
Andy Greencdb9bf92014-04-12 10:07:02 +08001406LWS_VISIBLE void
1407lws_context_init_extensions(struct lws_context_creation_info *info,
Andy Greendc8a3a82015-12-06 09:15:27 +08001408 struct lws_context *context);
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001409LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001410lws_any_extension_handled(struct lws *wsi, enum lws_extension_callback_reasons r,
Andy Green6ee372f2012-04-09 15:09:01 +08001411 void *v, size_t len);
Andy Greena41314f2011-05-23 10:00:03 +01001412
Andy Green2c24ec02014-04-02 19:45:42 +08001413LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001414lws_ext_cb_active(struct lws *wsi, int reason, void *buf, int len);
Andy Green2c24ec02014-04-02 19:45:42 +08001415LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001416lws_ext_cb_all_exts(struct lws_context *context, struct lws *wsi, int reason,
1417 void *arg, int len);
Andy Green67112662016-01-11 11:34:01 +08001418
Andy Green2c24ec02014-04-02 19:45:42 +08001419#else
Andy Green6b5de702015-12-15 21:15:58 +08001420#define lws_any_extension_handled(_a, _b, _c, _d) (0)
Andy Green67112662016-01-11 11:34:01 +08001421#define lws_ext_cb_active(_a, _b, _c, _d) (0)
Andy Green54806b12015-12-17 17:03:59 +08001422#define lws_ext_cb_all_exts(_a, _b, _c, _d, _e) (0)
Andy Greenb49a9952014-04-03 10:11:04 +08001423#define lws_issue_raw_ext_access lws_issue_raw
Andy Greencdb9bf92014-04-12 10:07:02 +08001424#define lws_context_init_extensions(_a, _b)
Andy Green3182ece2013-01-20 17:08:31 +08001425#endif
Andy Greena41314f2011-05-23 10:00:03 +01001426
Andy Greene99a83c2016-01-20 16:56:06 +08001427LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001428lws_client_interpret_server_handshake(struct lws *wsi);
Andy Greena41314f2011-05-23 10:00:03 +01001429
Andy Greene99a83c2016-01-20 16:56:06 +08001430LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001431lws_rx_sm(struct lws *wsi, unsigned char c);
Andy Greena41314f2011-05-23 10:00:03 +01001432
Alex Hultman599cad92016-03-17 09:34:15 +08001433LWS_EXTERN void
1434lws_payload_until_length_exhausted(struct lws *wsi, unsigned char **buf, size_t *len);
1435
Andy Greene99a83c2016-01-20 16:56:06 +08001436LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001437lws_issue_raw_ext_access(struct lws *wsi, unsigned char *buf, size_t len);
Andy Green09226502011-05-28 10:19:19 +01001438
Andy Green44c11612014-11-08 11:18:47 +08001439LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001440lws_union_transition(struct lws *wsi, enum connection_mode mode);
Andy Green44c11612014-11-08 11:18:47 +08001441
Andy Greene99a83c2016-01-20 16:56:06 +08001442LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Denis Osvald034e5142015-12-21 18:06:38 +01001443user_callback_handle_rxflow(lws_callback_function, struct lws *wsi,
Andy Green00c6d152015-12-17 07:54:44 +08001444 enum lws_callback_reasons reason, void *user,
1445 void *in, size_t len);
Andy Green024eb6c2014-10-08 12:00:53 +08001446#ifdef LWS_USE_HTTP2
Andy Green4b85c1d2015-12-04 11:08:32 +08001447LWS_EXTERN struct lws *lws_http2_get_network_wsi(struct lws *wsi);
1448struct lws * lws_http2_get_nth_child(struct lws *wsi, int n);
Andy Green024eb6c2014-10-08 12:00:53 +08001449LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001450lws_http2_interpret_settings_payload(struct http2_settings *settings,
1451 unsigned char *buf, int len);
Andy Green024eb6c2014-10-08 12:00:53 +08001452LWS_EXTERN void lws_http2_init(struct http2_settings *settings);
1453LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001454lws_http2_parser(struct lws *wsi, unsigned char c);
Andy Greendc8a3a82015-12-06 09:15:27 +08001455LWS_EXTERN int lws_http2_do_pps_send(struct lws_context *context,
1456 struct lws *wsi);
1457LWS_EXTERN int lws_http2_frame_write(struct lws *wsi, int type, int flags,
1458 unsigned int sid, unsigned int len,
1459 unsigned char *buf);
Andy Green4b85c1d2015-12-04 11:08:32 +08001460LWS_EXTERN struct lws *
1461lws_http2_wsi_from_id(struct lws *wsi, unsigned int sid);
Andy Green11c05bf2015-12-16 18:19:08 +08001462LWS_EXTERN int lws_hpack_interpret(struct lws *wsi,
Andy Green2add6342014-10-12 08:38:16 +08001463 unsigned char c);
Andy Green917f43a2014-10-12 14:31:47 +08001464LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001465lws_add_http2_header_by_name(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001466 const unsigned char *name,
1467 const unsigned char *value, int length,
1468 unsigned char **p, unsigned char *end);
Andy Green917f43a2014-10-12 14:31:47 +08001469LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001470lws_add_http2_header_by_token(struct lws *wsi,
Andy Green917f43a2014-10-12 14:31:47 +08001471 enum lws_token_indexes token,
Andy Greendc8a3a82015-12-06 09:15:27 +08001472 const unsigned char *value, int length,
1473 unsigned char **p, unsigned char *end);
Andy Green917f43a2014-10-12 14:31:47 +08001474LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001475lws_add_http2_header_status(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001476 unsigned int code, unsigned char **p,
Andy Green917f43a2014-10-12 14:31:47 +08001477 unsigned char *end);
Andy Green7df53c52014-10-22 15:37:28 +08001478LWS_EXTERN
Andy Green4b85c1d2015-12-04 11:08:32 +08001479void lws_http2_configure_if_upgraded(struct lws *wsi);
Andy Green7df53c52014-10-22 15:37:28 +08001480#else
1481#define lws_http2_configure_if_upgraded(x)
Andy Green024eb6c2014-10-08 12:00:53 +08001482#endif
Andy Green706961d2013-01-17 16:50:35 +08001483
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001484LWS_EXTERN int
Andy Greend526c502016-03-28 10:10:43 +08001485lws_plat_set_socket_options(struct lws_vhost *vhost, lws_sockfd_type fd);
Andy Greena690cd02013-02-09 12:25:31 +08001486
Andy Greene99a83c2016-01-20 16:56:06 +08001487LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greene3d141d2016-02-27 11:42:22 +08001488lws_header_table_attach(struct lws *wsi, int autoservice);
Andy Green16ab3182013-02-10 18:02:31 +08001489
Andrew Canaday37718812014-11-07 11:20:59 +08001490LWS_EXTERN int
Andy Greene3d141d2016-02-27 11:42:22 +08001491lws_header_table_detach(struct lws *wsi, int autoservice);
Andrew Canaday37718812014-11-07 11:20:59 +08001492
Andy Green4019aab2016-01-30 11:43:10 +08001493LWS_EXTERN void
Andy Greene3d141d2016-02-27 11:42:22 +08001494lws_header_table_reset(struct lws *wsi, int autoservice);
Andy Green4019aab2016-01-30 11:43:10 +08001495
Andy Greene99a83c2016-01-20 16:56:06 +08001496LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001497lws_hdr_simple_ptr(struct lws *wsi, enum lws_token_indexes h);
Andy Green16ab3182013-02-10 18:02:31 +08001498
Andy Greene99a83c2016-01-20 16:56:06 +08001499LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green11c05bf2015-12-16 18:19:08 +08001500lws_hdr_simple_create(struct lws *wsi, enum lws_token_indexes h, const char *s);
Andy Greenb5b23192013-02-11 17:13:32 +08001501
Andy Green16146cd2016-04-23 07:53:46 +08001502LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001503lws_ensure_user_space(struct lws *wsi);
Andy Green2af4d5b2013-02-18 16:30:10 +08001504
Andy Green158e8042014-04-02 14:25:10 +08001505LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001506lws_change_pollfd(struct lws *wsi, int _and, int _or);
Andy Green91f19d82013-12-21 11:18:34 +08001507
Andy Greenb5b23192013-02-11 17:13:32 +08001508#ifndef LWS_NO_SERVER
Andy Greene38031a2014-04-03 08:24:29 +08001509int lws_context_init_server(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08001510 struct lws_vhost *vhost);
1511LWS_EXTERN struct lws_vhost *
1512lws_select_vhost(struct lws_context *context, int port, const char *servername);
Andy Greend7340c12014-04-10 14:08:10 +08001513LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001514handshake_0405(struct lws_context *context, struct lws *wsi);
Andy Greene99a83c2016-01-20 16:56:06 +08001515LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green67112662016-01-11 11:34:01 +08001516lws_interpret_incoming_packet(struct lws *wsi, unsigned char **buf, size_t len);
Andy Greencdb9bf92014-04-12 10:07:02 +08001517LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001518lws_server_get_canonical_hostname(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001519 struct lws_context_creation_info *info);
Andy Greene38031a2014-04-03 08:24:29 +08001520#else
1521#define lws_context_init_server(_a, _b) (0)
Andy Green3ef579b2015-12-04 09:23:56 +08001522#define lws_interpret_incoming_packet(_a, _b, _c) (0)
Andy Greencdb9bf92014-04-12 10:07:02 +08001523#define lws_server_get_canonical_hostname(_a, _b)
Andy Greenb5b23192013-02-11 17:13:32 +08001524#endif
1525
1526#ifndef LWS_NO_DAEMONIZE
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001527LWS_EXTERN int get_daemonize_pid();
Andy Greencdb9bf92014-04-12 10:07:02 +08001528#else
1529#define get_daemonize_pid() (0)
Andy Greenb5b23192013-02-11 17:13:32 +08001530#endif
1531
Andy Green2cd30742015-11-02 13:10:33 +08001532#if !defined(MBED_OPERATORS)
Andy Greene99a83c2016-01-20 16:56:06 +08001533LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001534interface_to_sa(struct lws_context *context, const char *ifname,
1535 struct sockaddr_in *addr, size_t addrlen);
Andy Green2cd30742015-11-02 13:10:33 +08001536#endif
Andy Greenb25b85f2014-04-03 23:34:09 +08001537LWS_EXTERN void lwsl_emit_stderr(int level, const char *line);
1538
Andy Green1a308e42014-04-08 07:26:30 +01001539enum lws_ssl_capable_status {
1540 LWS_SSL_CAPABLE_ERROR = -1,
1541 LWS_SSL_CAPABLE_MORE_SERVICE = -2,
1542};
1543
Darin Willitsc19456f2011-02-14 17:52:39 +00001544#ifndef LWS_OPENSSL_SUPPORT
Andy Greencdb9bf92014-04-12 10:07:02 +08001545#define LWS_SSL_ENABLED(context) (0)
Andy Greenc57037a2014-04-03 10:17:00 +08001546#define lws_context_init_server_ssl(_a, _b) (0)
1547#define lws_ssl_destroy(_a)
Andy Green2eedea92014-04-03 14:33:48 +08001548#define lws_context_init_http2_ssl(_a)
Andy Green02138122014-04-06 06:26:35 +01001549#define lws_ssl_capable_read lws_ssl_capable_read_no_ssl
1550#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 +02001551#define lws_ssl_pending lws_ssl_pending_no_ssl
Andy Green8c1f6022016-01-26 20:56:56 +08001552#define lws_server_socket_service_ssl(_b, _c) (0)
Andy Greencdb9bf92014-04-12 10:07:02 +08001553#define lws_ssl_close(_a) (0)
1554#define lws_ssl_context_destroy(_a)
Andy Greend526c502016-03-28 10:10:43 +08001555#define lws_ssl_SSL_CTX_destroy(_a)
Andy Green6b5de702015-12-15 21:15:58 +08001556#define lws_ssl_remove_wsi_from_buffered_list(_a)
Andy Greend526c502016-03-28 10:10:43 +08001557#define lws_context_init_ssl_library(_a)
Andy Greenb5b23192013-02-11 17:13:32 +08001558#else
Andy Greencdb9bf92014-04-12 10:07:02 +08001559#define LWS_SSL_ENABLED(context) (context->use_ssl)
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001560LWS_EXTERN int openssl_websocket_private_data_index;
Andy Greene99a83c2016-01-20 16:56:06 +08001561LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001562lws_ssl_capable_read(struct lws *wsi, unsigned char *buf, int len);
Andy Greene99a83c2016-01-20 16:56:06 +08001563LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001564lws_ssl_capable_write(struct lws *wsi, unsigned char *buf, int len);
Andy Greene99a83c2016-01-20 16:56:06 +08001565LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001566lws_ssl_pending(struct lws *wsi);
Andy Greend526c502016-03-28 10:10:43 +08001567LWS_EXTERN int
1568lws_context_init_ssl_library(struct lws_context_creation_info *info);
Andy Greene99a83c2016-01-20 16:56:06 +08001569LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green8c1f6022016-01-26 20:56:56 +08001570lws_server_socket_service_ssl(struct lws *new_wsi, lws_sockfd_type accept_fd);
Andy Greencdb9bf92014-04-12 10:07:02 +08001571LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001572lws_ssl_close(struct lws *wsi);
Andy Greencdb9bf92014-04-12 10:07:02 +08001573LWS_EXTERN void
Andy Greend526c502016-03-28 10:10:43 +08001574lws_ssl_SSL_CTX_destroy(struct lws_vhost *vhost);
1575LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001576lws_ssl_context_destroy(struct lws_context *context);
Andy Green52815602015-01-29 08:36:18 +08001577LWS_VISIBLE void
Andy Green6b5de702015-12-15 21:15:58 +08001578lws_ssl_remove_wsi_from_buffered_list(struct lws *wsi);
Andy Greeneefb13a2016-03-28 12:43:55 +08001579LWS_EXTERN int
1580lws_ssl_client_bio_create(struct lws *wsi);
1581LWS_EXTERN int
1582lws_ssl_client_connect1(struct lws *wsi);
1583LWS_EXTERN int
1584lws_ssl_client_connect2(struct lws *wsi);
Andy Greenc57037a2014-04-03 10:17:00 +08001585#ifndef LWS_NO_SERVER
1586LWS_EXTERN int
1587lws_context_init_server_ssl(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08001588 struct lws_vhost *vhost);
Andy Greenc57037a2014-04-03 10:17:00 +08001589#else
1590#define lws_context_init_server_ssl(_a, _b) (0)
1591#endif
1592LWS_EXTERN void
Andy Greend526c502016-03-28 10:10:43 +08001593lws_ssl_destroy(struct lws_vhost *vhost);
Andy Green2eedea92014-04-03 14:33:48 +08001594
1595/* HTTP2-related */
1596
1597#ifdef LWS_USE_HTTP2
1598LWS_EXTERN void
Andy Green22d6f392016-04-10 09:33:54 +08001599lws_context_init_http2_ssl(struct lws_vhost *vhost);
Andy Green2eedea92014-04-03 14:33:48 +08001600#else
1601#define lws_context_init_http2_ssl(_a)
1602#endif
Darin Willitsc19456f2011-02-14 17:52:39 +00001603#endif
Andy Greena654fc02014-04-03 07:16:40 +08001604
Andy Green8c1f6022016-01-26 20:56:56 +08001605#if LWS_MAX_SMP > 1
1606static LWS_INLINE void
1607lws_pt_mutex_init(struct lws_context_per_thread *pt)
1608{
1609 pthread_mutex_init(&pt->lock, NULL);
1610}
1611static LWS_INLINE void
1612lws_pt_lock(struct lws_context_per_thread *pt)
1613{
1614 pthread_mutex_lock(&pt->lock);
1615}
1616
1617static LWS_INLINE void
1618lws_pt_unlock(struct lws_context_per_thread *pt)
1619{
1620 pthread_mutex_unlock(&pt->lock);
1621}
1622#else
1623#define lws_pt_mutex_init(_a) (void)(_a)
1624#define lws_pt_lock(_a) (void)(_a)
1625#define lws_pt_unlock(_a) (void)(_a)
1626#endif
1627
Andy Greene99a83c2016-01-20 16:56:06 +08001628LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001629lws_ssl_capable_read_no_ssl(struct lws *wsi, unsigned char *buf, int len);
Patrick Gansterera6b019a2014-04-15 18:40:31 +02001630
Andy Greene99a83c2016-01-20 16:56:06 +08001631LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001632lws_ssl_capable_write_no_ssl(struct lws *wsi, unsigned char *buf, int len);
Patrick Gansterera6b019a2014-04-15 18:40:31 +02001633
Andy Greene99a83c2016-01-20 16:56:06 +08001634LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001635lws_ssl_pending_no_ssl(struct lws *wsi);
=?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?=4c0ba022015-08-19 16:23:33 +02001636
Andy Green1e5a9ad2016-03-20 11:59:53 +08001637#ifdef LWS_WITH_HTTP_PROXY
1638struct lws_rewrite {
1639 hubbub_parser *parser;
1640 hubbub_parser_optparams params;
1641 const char *from, *to;
1642 int from_len, to_len;
1643 unsigned char *p, *end;
1644 struct lws *wsi;
1645};
1646static LWS_INLINE int hstrcmp(hubbub_string *s, const char *p, int len)
1647{
1648 if (s->len != len)
1649 return 1;
1650
1651 return strncmp((const char *)s->ptr, p, len);
1652}
1653typedef hubbub_error (*hubbub_callback_t)(const hubbub_token *token, void *pw);
Andy Green1e5a9ad2016-03-20 11:59:53 +08001654LWS_EXTERN struct lws_rewrite *
1655lws_rewrite_create(struct lws *wsi, hubbub_callback_t cb, const char *from, const char *to);
1656LWS_EXTERN void
1657lws_rewrite_destroy(struct lws_rewrite *r);
1658LWS_EXTERN int
1659lws_rewrite_parse(struct lws_rewrite *r, const unsigned char *in, int in_len);
1660#endif
1661
1662#ifndef LWS_NO_CLIENT
Andy Green1a138852016-03-20 11:55:25 +08001663LWS_EXTERN int lws_client_socket_service(struct lws_context *context,
1664 struct lws *wsi,
1665 struct lws_pollfd *pollfd);
1666LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1667lws_http_transaction_completed_client(struct lws *wsi);
Andy Greenc57037a2014-04-03 10:17:00 +08001668#ifdef LWS_OPENSSL_SUPPORT
Andy Greendc8a3a82015-12-06 09:15:27 +08001669LWS_EXTERN int
1670lws_context_init_client_ssl(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08001671 struct lws_vhost *vhost);
Andy Greene38031a2014-04-03 08:24:29 +08001672#else
Andy Greenc57037a2014-04-03 10:17:00 +08001673 #define lws_context_init_client_ssl(_a, _b) (0)
1674#endif
Andy Greene99a83c2016-01-20 16:56:06 +08001675LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001676lws_handshake_client(struct lws *wsi, unsigned char **buf, size_t len);
1677LWS_EXTERN void
1678lws_decode_ssl_error(void);
Andy Greenc57037a2014-04-03 10:17:00 +08001679#else
1680#define lws_context_init_client_ssl(_a, _b) (0)
Andy Greenaad2eac2014-04-03 09:03:37 +08001681#define lws_handshake_client(_a, _b, _c) (0)
Andy Greena654fc02014-04-03 07:16:40 +08001682#endif
Andy Green44e0b082015-12-28 14:24:49 +08001683
1684LWS_EXTERN int
1685_lws_rx_flow_control(struct lws *wsi);
1686
Andy Green8c1f6022016-01-26 20:56:56 +08001687LWS_EXTERN int
1688_lws_change_pollfd(struct lws *wsi, int _and, int _or, struct lws_pollargs *pa);
1689
Andy Greena654fc02014-04-03 07:16:40 +08001690#ifndef LWS_NO_SERVER
Andy Greendc8a3a82015-12-06 09:15:27 +08001691LWS_EXTERN int
1692lws_server_socket_service(struct lws_context *context, struct lws *wsi,
1693 struct lws_pollfd *pollfd);
1694LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001695lws_handshake_server(struct lws *wsi, unsigned char **buf, size_t len);
Andy Greenb3d21f12015-12-25 09:12:08 +08001696LWS_EXTERN int
Andy Green8c1f6022016-01-26 20:56:56 +08001697_lws_server_listen_accept_flow_control(struct lws *twsi, int on);
Andy Greend99476b2014-04-03 08:40:05 +08001698#else
Andy Greenb49a9952014-04-03 10:11:04 +08001699#define lws_server_socket_service(_a, _b, _c) (0)
Andy Green11c05bf2015-12-16 18:19:08 +08001700#define lws_handshake_server(_a, _b, _c) (0)
Andy Greenb3d21f12015-12-25 09:12:08 +08001701#define _lws_server_listen_accept_flow_control(a, b) (0)
Andy Greena654fc02014-04-03 07:16:40 +08001702#endif
Andy Green40110e82015-12-14 08:52:03 +08001703
Andy Greendc8a3a82015-12-06 09:15:27 +08001704LWS_EXTERN int
1705lws_get_addresses(struct lws_context *context, void *ads, char *name,
1706 int name_len, char *rip, int rip_len);
Andy Greena654fc02014-04-03 07:16:40 +08001707
Andy Green2f0bc932016-04-15 12:00:23 +08001708LWS_EXTERN const char *
1709lws_get_peer_simple(struct lws *wsi, char *name, int namelen);
1710
1711#ifdef LWS_WITH_ACCESS_LOG
1712LWS_EXTERN int
1713lws_access_log(struct lws *wsi);
1714#else
1715#define lws_access_log(_a)
1716#endif
1717
Andy Green6a8099b2016-02-21 21:25:48 +08001718LWS_EXTERN int
1719lws_cgi_kill_terminated(struct lws_context_per_thread *pt);
1720
Andy Green02077052016-04-06 16:15:40 +08001721int
1722lws_protocol_init(struct lws_context *context);
1723
Andy Greena654fc02014-04-03 07:16:40 +08001724/*
Alejandro Merycdc97172014-12-04 23:15:27 +01001725 * custom allocator
1726 */
Andy Greene99a83c2016-01-20 16:56:06 +08001727LWS_EXTERN void *
Alejandro Merycdc97172014-12-04 23:15:27 +01001728lws_realloc(void *ptr, size_t size);
1729
Andy Greene99a83c2016-01-20 16:56:06 +08001730LWS_EXTERN void * LWS_WARN_UNUSED_RESULT
Alejandro Merycdc97172014-12-04 23:15:27 +01001731lws_zalloc(size_t size);
1732
1733#define lws_malloc(S) lws_realloc(NULL, S)
1734#define lws_free(P) lws_realloc(P, 0)
Andy Green54806b12015-12-17 17:03:59 +08001735#define lws_free_set_NULL(P) do { lws_realloc(P, 0); (P) = NULL; } while(0)
Alejandro Merycdc97172014-12-04 23:15:27 +01001736
Andy Greendc8a3a82015-12-06 09:15:27 +08001737/* lws_plat_ */
Andy Greena654fc02014-04-03 07:16:40 +08001738LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001739lws_plat_delete_socket_from_fds(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001740 struct lws *wsi, int m);
Andy Greena654fc02014-04-03 07:16:40 +08001741LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001742lws_plat_insert_socket_into_fds(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001743 struct lws *wsi);
Andy Greena654fc02014-04-03 07:16:40 +08001744LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001745lws_plat_service_periodic(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001746
1747LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001748lws_plat_change_pollfd(struct lws_context *context, struct lws *wsi,
1749 struct lws_pollfd *pfd);
Andy Greena654fc02014-04-03 07:16:40 +08001750LWS_EXTERN int
1751lws_plat_context_early_init(void);
1752LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001753lws_plat_context_early_destroy(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001754LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001755lws_plat_context_late_destroy(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001756LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001757lws_poll_listen_fd(struct lws_pollfd *fd);
Andy Greena654fc02014-04-03 07:16:40 +08001758LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001759lws_plat_service(struct lws_context *context, int timeout_ms);
Andy Greend3a55052016-01-19 03:34:24 +08001760LWS_EXTERN LWS_VISIBLE int
1761lws_plat_service_tsi(struct lws_context *context, int timeout_ms, int tsi);
Andy Greena654fc02014-04-03 07:16:40 +08001762LWS_EXTERN int
Andy Green4386e362015-12-10 07:14:16 +08001763lws_plat_init(struct lws_context *context,
1764 struct lws_context_creation_info *info);
Andy Greena654fc02014-04-03 07:16:40 +08001765LWS_EXTERN void
1766lws_plat_drop_app_privileges(struct lws_context_creation_info *info);
1767LWS_EXTERN unsigned long long
1768time_in_microseconds(void);
Andy Greene99a83c2016-01-20 16:56:06 +08001769LWS_EXTERN const char * LWS_WARN_UNUSED_RESULT
Andy Greena654fc02014-04-03 07:16:40 +08001770lws_plat_inet_ntop(int af, const void *src, char *dst, int cnt);
Andy Green8c0d3c02015-11-02 20:34:12 +08001771
Andy Greene99a83c2016-01-20 16:56:06 +08001772LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green86c1ef12015-12-30 11:43:36 +08001773lws_check_utf8(unsigned char *state, unsigned char *buf, size_t len);
1774
Andy Green8c0d3c02015-11-02 20:34:12 +08001775#ifdef __cplusplus
1776};
1777#endif