blob: 0e1cf8b8196526cebf715300f0cb8ee4a9118917 [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 Gansterer73882e42014-03-29 08:25:58 +010065#define MSG_NOSIGNAL 0
66#define SHUT_RDWR SD_BOTH
67#define SOL_TCP IPPROTO_TCP
Andy Green8c1f6022016-01-26 20:56:56 +080068#define SHUT_WR SD_SEND
Joakim Soderberg4c531232013-02-06 15:26:58 +090069
Andy Green158e8042014-04-02 14:25:10 +080070#define compatible_close(fd) closesocket(fd)
Andy Greenaa775fd2015-12-26 08:56:58 +080071#define lws_set_blocking_send(wsi) wsi->sock_send_blocking = 1
Andy Greenc53f7ca2015-11-14 07:35:27 +080072#define lws_socket_is_valid(x) (!!x)
Andy Green40110e82015-12-14 08:52:03 +080073#define LWS_SOCK_INVALID 0
Peter Hinz56885f32011-03-02 22:03:47 +000074#include <winsock2.h>
Andy Greeneee0d8a2015-12-17 15:15:12 +080075#include <ws2tcpip.h>
Peter Hinz56885f32011-03-02 22:03:47 +000076#include <windows.h>
Joakim Soderbergd2f5b192014-04-07 11:28:08 +020077#include <tchar.h>
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +020078#ifdef LWS_HAVE_IN6ADDR_H
Andy Green0f58db32014-04-12 11:10:35 +080079#include <in6addr.h>
80#endif
Joakim Soderbergd2f5b192014-04-07 11:28:08 +020081#include <mstcpip.h>
Andy Greend6be6772016-05-14 06:49:29 +080082#include <io.h>
Joakim Soderbergd2f5b192014-04-07 11:28:08 +020083
84#ifndef __func__
85#define __func__ __FUNCTION__
86#endif
87
OndraCoa709cbb2016-05-05 13:56:07 +020088#if (defined(_MSC_VER) && _MSC_VER < 1900) || defined(_WIN32_WCE)
Patrick Gansterer6bb4b622014-04-15 18:39:26 +020089#define vsnprintf _vsnprintf
Andy Green7d22c292016-03-04 10:53:51 +080090#else
91#ifdef LWS_HAVE__VSNPRINTF
92#define vsnprintf _vsnprintf
93#endif
94#endif
95
96#ifdef LWS_HAVE__SNPRINTF
97#define snprintf _snprintf
Patrick Gansterer6bb4b622014-04-15 18:39:26 +020098#endif
99
Andy Green158e8042014-04-02 14:25:10 +0800100#else /* not windows --> */
Andy Green8c0d3c02015-11-02 20:34:12 +0800101
Patrick Ganstererb13eed42014-03-30 10:19:23 +0200102#include <fcntl.h>
Patrick Ganstererb13eed42014-03-30 10:19:23 +0200103#include <strings.h>
104#include <unistd.h>
Andy Greene77ddd82010-11-13 10:03:47 +0000105#include <sys/types.h>
Andy Green5f2a8152015-11-02 08:21:08 +0800106#ifndef MBED_OPERATORS
Andy Green8c0d3c02015-11-02 20:34:12 +0800107#ifndef __cplusplus
108#include <errno.h>
109#endif
Andy Green5f2a8152015-11-02 08:21:08 +0800110#include <netdb.h>
111#include <signal.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000112#include <sys/socket.h>
Andy Green1e5a9ad2016-03-20 11:59:53 +0800113#ifdef LWS_WITH_HTTP_PROXY
114#include <hubbub/hubbub.h>
115#include <hubbub/parser.h>
116#endif
Andy Greene40aa9b2014-04-02 21:02:54 +0800117#ifdef LWS_BUILTIN_GETIFADDRS
118 #include <getifaddrs.h>
119#else
120 #include <ifaddrs.h>
121#endif
Dnyanesh Gate759e50c2014-09-26 05:39:05 +0800122#if defined (__ANDROID__)
123#include <syslog.h>
Alexander Bruines119bdaa2016-04-23 11:10:18 +0200124#include <sys/resource.h>
Dnyanesh Gate759e50c2014-09-26 05:39:05 +0800125#else
Andy Greene40aa9b2014-04-02 21:02:54 +0800126#include <sys/syslog.h>
Dnyanesh Gate759e50c2014-09-26 05:39:05 +0800127#endif
Andy Greene40aa9b2014-04-02 21:02:54 +0800128#include <sys/un.h>
129#include <sys/socket.h>
130#include <netdb.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000131#include <netinet/in.h>
Andy Green6c939552011-03-08 08:56:57 +0000132#include <netinet/tcp.h>
Andy Greenb45993c2010-12-18 15:13:50 +0000133#include <arpa/inet.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000134#include <poll.h>
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800135#ifdef LWS_USE_LIBEV
Andy Green86ed65f2016-02-14 09:27:41 +0800136#include <ev.h>
137#endif
138#ifdef LWS_USE_LIBUV
Alex Hultmana43c2ac2016-02-01 08:31:54 +0800139#include <uv.h>
Andy Green86ed65f2016-02-14 09:27:41 +0800140#endif
Andy Green7c212cc2010-11-08 20:20:42 +0000141#include <sys/mman.h>
Andy Green5f2a8152015-11-02 08:21:08 +0800142
143#endif /* MBED */
144
145#ifndef LWS_NO_FORK
146#ifdef LWS_HAVE_SYS_PRCTL_H
147#include <sys/prctl.h>
148#endif
149#endif
150
Andy Green038d5822011-02-14 20:58:26 +0000151#include <sys/time.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000152
Patrick Gansterer2dbd8372014-02-28 12:37:52 +0100153#define LWS_ERRNO errno
154#define LWS_EAGAIN EAGAIN
155#define LWS_EALREADY EALREADY
156#define LWS_EINPROGRESS EINPROGRESS
157#define LWS_EINTR EINTR
158#define LWS_EISCONN EISCONN
159#define LWS_EWOULDBLOCK EWOULDBLOCK
Andy Green2b304a92016-07-11 07:28:23 +0800160
Andy Green1e5a9ad2016-03-20 11:59:53 +0800161static inline int compatible_close(int fd) { return close(fd); }
Andy Green158e8042014-04-02 14:25:10 +0800162#define lws_set_blocking_send(wsi)
Andy Green2cd30742015-11-02 13:10:33 +0800163
164#ifdef MBED_OPERATORS
165#define lws_socket_is_valid(x) ((x) != NULL)
166#define LWS_SOCK_INVALID (NULL)
167#else
Andy Greenc53f7ca2015-11-14 07:35:27 +0800168#define lws_socket_is_valid(x) (x >= 0)
169#define LWS_SOCK_INVALID (-1)
Peter Hinz56885f32011-03-02 22:03:47 +0000170#endif
Andy Green2cd30742015-11-02 13:10:33 +0800171#endif
Peter Hinz56885f32011-03-02 22:03:47 +0000172
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +0200173#ifndef LWS_HAVE_BZERO
Andy Greene5ea1f92014-11-18 18:25:24 +0800174#ifndef bzero
Patrick Gansterer4a837272014-02-28 13:17:49 +0100175#define bzero(b, len) (memset((b), '\0', (len)), (void) 0)
176#endif
Andy Greene5ea1f92014-11-18 18:25:24 +0800177#endif
Patrick Gansterer4a837272014-02-28 13:17:49 +0100178
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +0200179#ifndef LWS_HAVE_STRERROR
Patrick Gansterer9d614912014-02-28 00:59:53 +0100180#define strerror(x) ""
181#endif
182
Andy Green7c212cc2010-11-08 20:20:42 +0000183#ifdef LWS_OPENSSL_SUPPORT
Andy Green1a3f1772016-03-28 19:58:02 +0800184
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200185#ifdef USE_WOLFSSL
ABruines80a70682015-08-09 22:56:32 +0200186#ifdef USE_OLD_CYASSL
187#include <cyassl/openssl/ssl.h>
188#include <cyassl/error-ssl.h>
189#else
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200190#include <wolfssl/openssl/ssl.h>
191#include <wolfssl/error-ssl.h>
ABruines80a70682015-08-09 22:56:32 +0200192#endif /* not USE_OLD_CYASSL */
Andy Green23c5f2e2013-02-06 15:43:00 +0900193#else
Andy Green1a3f1772016-03-28 19:58:02 +0800194#if defined(LWS_USE_POLARSSL)
195#include <polarssl/ssl.h>
196#include <polarssl/error.h>
197#include <polarssl/md5.h>
198#include <polarssl/sha1.h>
199#include <polarssl/ecdh.h>
Andy Green451cee52016-04-17 11:28:43 +0800200#define SSL_ERROR_WANT_READ POLARSSL_ERR_NET_WANT_READ
201#define SSL_ERROR_WANT_WRITE POLARSSL_ERR_NET_WANT_WRITE
202#define OPENSSL_VERSION_NUMBER 0x10002000L
Andy Green1a3f1772016-03-28 19:58:02 +0800203#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
Andy Greene7bf0aa2016-06-28 19:50:40 +0800219#include <openssl/x509v3.h>
Andy Green1a3f1772016-03-28 19:58:02 +0800220#endif /* not USE_MBEDTLS */
221#endif /* not USE_POLARSSL */
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200222#endif /* not USE_WOLFSSL */
Darin Willitsdb9ba422011-02-14 20:56:24 +0000223#endif
224
Andy Green7c212cc2010-11-08 20:20:42 +0000225#include "libwebsockets.h"
226
Andy Green8c0d3c02015-11-02 20:34:12 +0800227#if defined(MBED_OPERATORS)
228#undef compatible_close
229#define compatible_close(fd) mbed3_delete_tcp_stream_socket(fd)
Andy Green11f27342015-11-08 12:10:26 +0800230#ifndef BIG_ENDIAN
231#define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */
232#endif
233#ifndef LITTLE_ENDIAN
234#define LITTLE_ENDIAN 1234
235#endif
236#ifndef BYTE_ORDER
237#define BYTE_ORDER LITTLE_ENDIAN
238#endif
Andy Green8c0d3c02015-11-02 20:34:12 +0800239#endif
240
Andy Green158e8042014-04-02 14:25:10 +0800241#if defined(WIN32) || defined(_WIN32)
242
243#ifndef BIG_ENDIAN
244#define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */
245#endif
246#ifndef LITTLE_ENDIAN
247#define LITTLE_ENDIAN 1234
248#endif
249#ifndef BYTE_ORDER
250#define BYTE_ORDER LITTLE_ENDIAN
251#endif
Andy Green11f27342015-11-08 12:10:26 +0800252#ifndef u_int64_t
Andy Green158e8042014-04-02 14:25:10 +0800253typedef unsigned __int64 u_int64_t;
Andy Green11f27342015-11-08 12:10:26 +0800254#endif
Andy Green158e8042014-04-02 14:25:10 +0800255
256#undef __P
257#ifndef __P
258#if __STDC__
259#define __P(protos) protos
260#else
261#define __P(protos) ()
262#endif
263#endif
264
265#else
266
267#include <sys/stat.h>
Andy Green158e8042014-04-02 14:25:10 +0800268#include <sys/time.h>
269
270#if defined(__APPLE__)
271#include <machine/endian.h>
272#elif defined(__FreeBSD__)
273#include <sys/endian.h>
274#elif defined(__linux__)
275#include <endian.h>
276#endif
277
Andy Green8c0d3c02015-11-02 20:34:12 +0800278#ifdef __cplusplus
279extern "C" {
280#endif
Alejandro Meryead8afe2014-12-07 03:36:11 +0100281
emironova49d0842014-09-16 14:05:13 +0400282#if defined(__QNX__)
283 #include <gulliver.h>
284 #if defined(__LITTLEENDIAN__)
285 #define BYTE_ORDER __LITTLEENDIAN__
286 #define LITTLE_ENDIAN __LITTLEENDIAN__
287 #define BIG_ENDIAN 4321 /* to show byte order (taken from gcc); for suppres warning that BIG_ENDIAN is not defined. */
288 #endif
289 #if defined(__BIGENDIAN__)
290 #define BYTE_ORDER __BIGENDIAN__
291 #define LITTLE_ENDIAN 1234 /* to show byte order (taken from gcc); for suppres warning that LITTLE_ENDIAN is not defined. */
292 #define BIG_ENDIAN __BIGENDIAN__
293 #endif
294#endif
295
Andy Green158e8042014-04-02 14:25:10 +0800296#if !defined(BYTE_ORDER)
297# define BYTE_ORDER __BYTE_ORDER
298#endif
299#if !defined(LITTLE_ENDIAN)
300# define LITTLE_ENDIAN __LITTLE_ENDIAN
301#endif
302#if !defined(BIG_ENDIAN)
303# define BIG_ENDIAN __BIG_ENDIAN
304#endif
305
306#endif
307
Darin Willitsc19456f2011-02-14 17:52:39 +0000308/*
309 * Mac OSX as well as iOS do not define the MSG_NOSIGNAL flag,
310 * but happily have something equivalent in the SO_NOSIGPIPE flag.
311 */
312#ifdef __APPLE__
Andy Green6ee372f2012-04-09 15:09:01 +0800313#define MSG_NOSIGNAL SO_NOSIGPIPE
Darin Willitsc19456f2011-02-14 17:52:39 +0000314#endif
315
Bud Davis229bfec2015-01-30 10:13:01 +0800316#ifdef _WIN32
317#ifndef FD_HASHTABLE_MODULUS
318#define FD_HASHTABLE_MODULUS 32
319#endif
320#endif
321
Andy Green8c1f6022016-01-26 20:56:56 +0800322#ifndef LWS_DEF_HEADER_LEN
323#define LWS_DEF_HEADER_LEN 1024
Andy Greenc0d6b632013-01-12 23:42:17 +0800324#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800325#ifndef LWS_DEF_HEADER_POOL
326#define LWS_DEF_HEADER_POOL 16
Andy Green3df58002015-12-25 12:44:12 +0800327#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800328#ifndef LWS_MAX_PROTOCOLS
Andy Greend91d5e82013-02-10 16:00:47 +0800329#define LWS_MAX_PROTOCOLS 5
Andy Greenc0d6b632013-01-12 23:42:17 +0800330#endif
331#ifndef LWS_MAX_EXTENSIONS_ACTIVE
Andy Greend738f842016-01-19 04:32:14 +0800332#define LWS_MAX_EXTENSIONS_ACTIVE 2
Andy Greenc0d6b632013-01-12 23:42:17 +0800333#endif
Andy Green67112662016-01-11 11:34:01 +0800334#ifndef LWS_MAX_EXT_OFFERS
335#define LWS_MAX_EXT_OFFERS 8
336#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800337#ifndef SPEC_LATEST_SUPPORTED
Andy Greend85cb202011-09-25 09:32:54 +0100338#define SPEC_LATEST_SUPPORTED 13
Andy Greenc0d6b632013-01-12 23:42:17 +0800339#endif
340#ifndef AWAITING_TIMEOUT
Andy Green8c1f6022016-01-26 20:56:56 +0800341#define AWAITING_TIMEOUT 20
Andy Greenc0d6b632013-01-12 23:42:17 +0800342#endif
343#ifndef CIPHERS_LIST_STRING
David Galeanof177f2a2013-01-10 10:15:19 +0800344#define CIPHERS_LIST_STRING "DEFAULT"
Andy Greenc0d6b632013-01-12 23:42:17 +0800345#endif
Andy Greena824d182013-01-15 20:52:29 +0800346#ifndef LWS_SOMAXCONN
347#define LWS_SOMAXCONN SOMAXCONN
348#endif
Andy Green7c212cc2010-11-08 20:20:42 +0000349
Andy Greene2522172011-01-18 17:14:03 +0000350#define MAX_WEBSOCKET_04_KEY_LEN 128
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 {
Andy Green48895662016-06-02 12:32:38 +0800519 unsigned int offset;
Andy Green3df58002015-12-25 12:44:12 +0800520 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;
Andy Green48895662016-06-02 12:32:38 +0800547 unsigned int pos;
Andy Green2c218e72016-02-15 12:37:04 +0800548
Andy Green3df58002015-12-25 12:44:12 +0800549#ifndef LWS_NO_CLIENT
550 char initial_handshake_hash_base64[30];
Andy Green3df58002015-12-25 12:44:12 +0800551#endif
Andy Greenaa775fd2015-12-26 08:56:58 +0800552
Andy Greenaa775fd2015-12-26 08:56:58 +0800553 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 +0800619/*
620 * virtual host -related context information
621 * vhostwide SSL context
622 * vhostwide proxy
623 *
624 * heirarchy:
625 *
626 * context -> vhost -> wsi
627 *
628 * incoming connection non-SSL vhost binding:
629 *
630 * listen socket -> wsi -> select vhost after first headers
631 *
632 * incoming connection SSL vhost binding:
633 *
634 * SSL SNI -> wsi -> bind after SSL negotiation
635 */
636
637struct lws_vhost {
638 char http_proxy_address[128];
639 char proxy_basic_auth_token[128];
640 struct lws_context *context;
641 struct lws_vhost *vhost_next;
Andy Green4664f712016-05-02 04:59:54 +0800642 const struct lws_http_mount *mount_list;
Andy Greend526c502016-03-28 10:10:43 +0800643 struct lws *lserv_wsi;
644 const char *name;
645 const char *iface;
646 const struct lws_protocols *protocols;
Andy Green02077052016-04-06 16:15:40 +0800647 void **protocol_vh_privs;
Andy Green952fcde2016-05-02 06:01:59 +0800648 const struct lws_protocol_vhost_options *pvo;
Andy Green4714cf02016-04-16 08:40:35 +0800649 struct lws **same_vh_protocol_list;
Andy Greend526c502016-03-28 10:10:43 +0800650#ifdef LWS_OPENSSL_SUPPORT
651 SSL_CTX *ssl_ctx;
652 SSL_CTX *ssl_client_ctx;
653#endif
654#ifndef LWS_NO_EXTENSIONS
655 const struct lws_extension *extensions;
656#endif
Andy Greenc25b2902016-05-04 15:59:27 +0800657 unsigned long long rx, tx;
658 unsigned long conn, trans, ws_upgrades, http2_upgrades;
Andy Greend526c502016-03-28 10:10:43 +0800659
660 int listen_port;
661 unsigned int http_proxy_port;
Andy Greencc3c6fb2016-04-14 15:09:01 +0800662 unsigned int options;
Andy Greend526c502016-03-28 10:10:43 +0800663 int count_protocols;
664 int ka_time;
665 int ka_probes;
666 int ka_interval;
Andy Greenb46e4a82016-04-12 16:26:03 +0800667 int keepalive_timeout;
Andy Green2f0bc932016-04-15 12:00:23 +0800668#ifdef LWS_WITH_ACCESS_LOG
669 int log_fd;
670#endif
Andy Greend526c502016-03-28 10:10:43 +0800671
672#ifdef LWS_OPENSSL_SUPPORT
673 int use_ssl;
674 int allow_non_ssl_on_ssl_port;
675 unsigned int user_supplied_ssl_ctx:1;
676#endif
Andy Greenf6585282016-05-06 14:24:59 +0800677 unsigned char default_protocol_index;
Andy Greend526c502016-03-28 10:10:43 +0800678};
679
Andy Greend3a55052016-01-19 03:34:24 +0800680/*
681 * the rest is managed per-context, that includes
682 *
683 * - processwide single fd -> wsi lookup
684 * - contextwide headers pool
Andy Greend3a55052016-01-19 03:34:24 +0800685 */
686
Andy Green4b85c1d2015-12-04 11:08:32 +0800687struct lws_context {
Andy Greenaa775fd2015-12-26 08:56:58 +0800688 time_t last_timeout_check_s;
Andy Green98061402016-04-15 14:01:29 +0800689 time_t time_up;
Andy Greenaa775fd2015-12-26 08:56:58 +0800690 struct lws_plat_file_ops fops;
Andy Greend3a55052016-01-19 03:34:24 +0800691 struct lws_context_per_thread pt[LWS_MAX_SMP];
Bud Davis229bfec2015-01-30 10:13:01 +0800692#ifdef _WIN32
693/* different implementation between unix and windows */
Andy Green3ef579b2015-12-04 09:23:56 +0800694 struct lws_fd_hashtable fd_hashtable[FD_HASHTABLE_MODULUS];
Bud Davis229bfec2015-01-30 10:13:01 +0800695#else
Andy Green4b85c1d2015-12-04 11:08:32 +0800696 struct lws **lws_lookup; /* fd to wsi */
Bud Davis229bfec2015-01-30 10:13:01 +0800697#endif
Andy Greend526c502016-03-28 10:10:43 +0800698 struct lws_vhost *vhost_list;
Andy Green02077052016-04-06 16:15:40 +0800699 struct lws_plugin *plugin_list;
Andy Greenaa775fd2015-12-26 08:56:58 +0800700 const struct lws_token_limits *token_limits;
701 void *user_space;
Andy Greenb21c20b2016-04-15 13:33:52 +0800702 const char *server_string;
Andy Greend738f842016-01-19 04:32:14 +0800703
Andy Green86ed65f2016-02-14 09:27:41 +0800704#if defined(LWS_USE_LIBEV)
705 lws_ev_signal_cb_t * lws_ev_sigint_cb;
706#endif
707#if defined(LWS_USE_LIBUV)
Denis Osvaldf107e4b2016-03-22 14:04:15 +0100708 uv_signal_cb lws_uv_sigint_cb;
Andy Green86ed65f2016-02-14 09:27:41 +0800709#endif
Andy Greenaa775fd2015-12-26 08:56:58 +0800710 char canonical_hostname[128];
711#ifdef LWS_LATENCY
712 unsigned long worst_latency;
713 char worst_latency_info[256];
714#endif
Andy Greenb8b247d2013-01-22 07:20:08 +0800715
Andy Greenaa775fd2015-12-26 08:56:58 +0800716 int max_fds;
Andy Green86ed65f2016-02-14 09:27:41 +0800717#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
Andy Greenaa775fd2015-12-26 08:56:58 +0800718 int use_ev_sigint;
719#endif
Andy Green24cba922013-01-19 13:56:10 +0800720 int started_with_parent;
Andy Greend526c502016-03-28 10:10:43 +0800721 int uid, gid;
Andy Green24cba922013-01-19 13:56:10 +0800722
Andy Green44eee682011-02-10 09:32:24 +0000723 int fd_random;
Andy Greend526c502016-03-28 10:10:43 +0800724#ifdef LWS_OPENSSL_SUPPORT
725#define lws_ssl_anybody_has_buffered_read(w) \
726 (w->vhost->use_ssl && \
727 w->context->pt[(int)w->tsi].pending_read_list)
728#define lws_ssl_anybody_has_buffered_read_tsi(c, t) \
729 (/*c->use_ssl && */ \
730 c->pt[(int)t].pending_read_list)
731#else
732#define lws_ssl_anybody_has_buffered_read(ctx) (0)
733#define lws_ssl_anybody_has_buffered_read_tsi(ctx, t) (0)
734#endif
Andy Green86ed65f2016-02-14 09:27:41 +0800735 int count_wsi_allocated;
Andy Green748a2212016-04-20 06:10:56 +0800736 int count_cgi_spawned;
Andy Greenaa775fd2015-12-26 08:56:58 +0800737 unsigned int options;
Andy Greend3a55052016-01-19 03:34:24 +0800738 unsigned int fd_limit_per_thread;
Andy Green200a6a22016-02-15 20:36:02 +0800739 unsigned int timeout_secs;
Andy Greene7c1c752016-05-19 12:34:35 +0800740 unsigned int pt_serv_buf_size;
Andy Green48895662016-06-02 12:32:38 +0800741 int max_http_header_data;
Andy Green6ee372f2012-04-09 15:09:01 +0800742
Patrick Gansterer1ee57f62014-03-06 11:57:50 +0100743 /*
744 * set to the Thread ID that's doing the service loop just before entry
745 * to poll indicates service thread likely idling in poll()
746 * volatile because other threads may check it as part of processing
747 * for pollfd event change.
748 */
749 volatile int service_tid;
Andy Greenc35b36b2015-12-24 13:00:54 +0800750 int service_tid_detected;
Patrick Gansterer1ee57f62014-03-06 11:57:50 +0100751
Andy Green3df58002015-12-25 12:44:12 +0800752 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
Andy Greencae57ad2016-05-02 10:03:25 +0800772lws_plat_plugins_init(struct lws_context * context, const char * const *d);
Andy Green0a183542016-04-09 07:22:40 +0800773
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 Green2dc7dde2016-06-03 21:19:40 +0800844#define LWS_IPV6_ENABLED(vh) \
Denis Osvaldc16c6c82016-06-03 17:40:12 +0200845 (!lws_check_opt(vh->context->options, LWS_SERVER_OPTION_DISABLE_IPV6) && \
Andy Green2dc7dde2016-06-03 21:19:40 +0800846 !lws_check_opt(vh->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
Yeonjun Lim3c6a8c12016-03-30 22:47:02 -0700851#ifdef LWS_USE_UNIX_SOCK
Andy Green144594d2016-04-14 12:11:51 +0800852#define LWS_UNIX_SOCK_ENABLED(vhost) \
853 (vhost->options & LWS_SERVER_OPTION_UNIX_SOCK)
Yeonjun Lim3c6a8c12016-03-30 22:47:02 -0700854#else
Andy Green144594d2016-04-14 12:11:51 +0800855#define LWS_UNIX_SOCK_ENABLED(vhost) (0)
Yeonjun Lim3c6a8c12016-03-30 22:47:02 -0700856#endif
Andy Greenb1a9e502013-11-10 15:15:21 +0800857enum uri_path_states {
858 URIPS_IDLE,
859 URIPS_SEEN_SLASH,
860 URIPS_SEEN_SLASH_DOT,
861 URIPS_SEEN_SLASH_DOT_DOT,
862};
863
864enum uri_esc_states {
865 URIES_IDLE,
866 URIES_SEEN_PERCENT,
867 URIES_SEEN_PERCENT_H1,
868};
Andy Greenf3d3b402011-02-09 07:16:34 +0000869
Andy Green024eb6c2014-10-08 12:00:53 +0800870/* notice that these union members:
Andy Green40110e82015-12-14 08:52:03 +0800871 *
Andy Green024eb6c2014-10-08 12:00:53 +0800872 * hdr
873 * http
874 * http2
Andy Green40110e82015-12-14 08:52:03 +0800875 *
Andy Green024eb6c2014-10-08 12:00:53 +0800876 * all have a pointer to allocated_headers struct as their first member.
Andy Green40110e82015-12-14 08:52:03 +0800877 *
Andy Green024eb6c2014-10-08 12:00:53 +0800878 * It means for allocated_headers access, the three union paths can all be
Peter Pentchevbb085da2015-12-03 15:55:11 +0200879 * used interchangeably to access the same data
Andy Green024eb6c2014-10-08 12:00:53 +0800880 */
881
Andy Greena661ee52016-02-29 13:18:30 +0800882
883#ifndef LWS_NO_CLIENT
884struct client_info_stash {
885 char address[256];
886 char path[1024];
887 char host[256];
888 char origin[256];
889 char protocol[256];
890 char method[16];
891};
892#endif
893
Andy Green2d8d35a2016-02-29 14:19:16 +0800894struct _lws_header_related {
895 /* MUST be first in struct */
896 struct allocated_headers *ah;
897 struct lws *ah_wait_list;
898 unsigned char *preamble_rx;
899#ifndef LWS_NO_CLIENT
900 struct client_info_stash *stash;
901#endif
902 unsigned int preamble_rx_len;
903 enum uri_path_states ups;
904 enum uri_esc_states ues;
905 short lextable_pos;
Andy Green48895662016-06-02 12:32:38 +0800906 unsigned int current_token_limit;
Andy Green2d8d35a2016-02-29 14:19:16 +0800907#ifndef LWS_NO_CLIENT
908 unsigned short c_port;
909#endif
910 char esc_stash;
911 char post_literal_equal;
912 unsigned char parser_state; /* enum lws_token_indexes */
913 char redirects;
914};
915
Andy Green84fd9492013-11-09 11:40:32 +0800916struct _lws_http_mode_related {
Andy Green024eb6c2014-10-08 12:00:53 +0800917 /* MUST be first in struct */
Andy Green84fd9492013-11-09 11:40:32 +0800918 struct allocated_headers *ah; /* mirroring _lws_header_related */
Andy Green8c1f6022016-01-26 20:56:56 +0800919 struct lws *ah_wait_list;
Andy Green2d8d35a2016-02-29 14:19:16 +0800920 unsigned char *preamble_rx;
921#ifndef LWS_NO_CLIENT
922 struct client_info_stash *stash;
923#endif
924 unsigned int preamble_rx_len;
Andy Green8c1f6022016-01-26 20:56:56 +0800925 struct lws *new_wsi_list;
Andy Green84fd9492013-11-09 11:40:32 +0800926 unsigned long filepos;
927 unsigned long filelen;
Andy Greenaa775fd2015-12-26 08:56:58 +0800928 lws_filefd_type fd;
kapejodce64fb02013-11-19 13:38:16 +0100929
Andrew Canadayafe26cf2014-07-13 01:07:36 -0400930 enum http_version request_version;
931 enum http_connection_type connection_type;
Andy Green2cd30742015-11-02 13:10:33 +0800932 unsigned int content_length;
933 unsigned int content_remain;
Andy Green84fd9492013-11-09 11:40:32 +0800934};
935
Andy Green024eb6c2014-10-08 12:00:53 +0800936#ifdef LWS_USE_HTTP2
937
938enum lws_http2_settings {
939 LWS_HTTP2_SETTINGS__HEADER_TABLE_SIZE = 1,
940 LWS_HTTP2_SETTINGS__ENABLE_PUSH,
941 LWS_HTTP2_SETTINGS__MAX_CONCURRENT_STREAMS,
942 LWS_HTTP2_SETTINGS__INITIAL_WINDOW_SIZE,
943 LWS_HTTP2_SETTINGS__MAX_FRAME_SIZE,
944 LWS_HTTP2_SETTINGS__MAX_HEADER_LIST_SIZE,
Andy Green40110e82015-12-14 08:52:03 +0800945
Andy Green024eb6c2014-10-08 12:00:53 +0800946 LWS_HTTP2_SETTINGS__COUNT /* always last */
Andy Greena54f2322014-09-30 09:43:14 +0800947};
948
Andy Green024eb6c2014-10-08 12:00:53 +0800949enum lws_http2_wellknown_frame_types {
950 LWS_HTTP2_FRAME_TYPE_DATA,
951 LWS_HTTP2_FRAME_TYPE_HEADERS,
952 LWS_HTTP2_FRAME_TYPE_PRIORITY,
953 LWS_HTTP2_FRAME_TYPE_RST_STREAM,
954 LWS_HTTP2_FRAME_TYPE_SETTINGS,
955 LWS_HTTP2_FRAME_TYPE_PUSH_PROMISE,
956 LWS_HTTP2_FRAME_TYPE_PING,
957 LWS_HTTP2_FRAME_TYPE_GOAWAY,
958 LWS_HTTP2_FRAME_TYPE_WINDOW_UPDATE,
959 LWS_HTTP2_FRAME_TYPE_CONTINUATION,
Andy Green40110e82015-12-14 08:52:03 +0800960
Andy Green024eb6c2014-10-08 12:00:53 +0800961 LWS_HTTP2_FRAME_TYPE_COUNT /* always last */
962};
963
Andy Green91b05892014-10-17 08:38:44 +0800964enum lws_http2_flags {
965 LWS_HTTP2_FLAG_END_STREAM = 1,
966 LWS_HTTP2_FLAG_END_HEADERS = 4,
967 LWS_HTTP2_FLAG_PADDED = 8,
968 LWS_HTTP2_FLAG_PRIORITY = 0x20,
969
970 LWS_HTTP2_FLAG_SETTINGS_ACK = 1,
971};
972
Andy Green024eb6c2014-10-08 12:00:53 +0800973#define LWS_HTTP2_STREAM_ID_MASTER 0
974#define LWS_HTTP2_FRAME_HEADER_LENGTH 9
975#define LWS_HTTP2_SETTINGS_LENGTH 6
976
977struct http2_settings {
978 unsigned int setting[LWS_HTTP2_SETTINGS__COUNT];
979};
980
Andy Greenecc2e722014-10-09 16:57:47 +0800981enum http2_hpack_state {
Andy Green40110e82015-12-14 08:52:03 +0800982
Andy Green200f3852014-10-18 12:23:05 +0800983 /* optional before first header block */
984 HPKS_OPT_PADDING,
985 HKPS_OPT_E_DEPENDENCY,
986 HKPS_OPT_WEIGHT,
Andy Green40110e82015-12-14 08:52:03 +0800987
Andy Green200f3852014-10-18 12:23:05 +0800988 /* header block */
Andy Greenecc2e722014-10-09 16:57:47 +0800989 HPKS_TYPE,
Andy Green40110e82015-12-14 08:52:03 +0800990
Andy Green2add6342014-10-12 08:38:16 +0800991 HPKS_IDX_EXT,
Andy Green40110e82015-12-14 08:52:03 +0800992
Andy Greenecc2e722014-10-09 16:57:47 +0800993 HPKS_HLEN,
994 HPKS_HLEN_EXT,
995
996 HPKS_DATA,
Andy Green40110e82015-12-14 08:52:03 +0800997
Andy Green200f3852014-10-18 12:23:05 +0800998 /* optional after last header block */
999 HKPS_OPT_DISCARD_PADDING,
Andy Greenecc2e722014-10-09 16:57:47 +08001000};
1001
Andy Green2add6342014-10-12 08:38:16 +08001002enum http2_hpack_type {
1003 HPKT_INDEXED_HDR_7,
1004 HPKT_INDEXED_HDR_6_VALUE_INCR,
1005 HPKT_LITERAL_HDR_VALUE_INCR,
1006 HPKT_INDEXED_HDR_4_VALUE,
1007 HPKT_LITERAL_HDR_VALUE,
1008 HPKT_SIZE_5
1009};
1010
Andy Green200f3852014-10-18 12:23:05 +08001011struct hpack_dt_entry {
1012 int token; /* additions that don't map to a token are ignored */
1013 int arg_offset;
1014 int arg_len;
1015};
1016
1017struct hpack_dynamic_table {
1018 struct hpack_dt_entry *entries;
1019 char *args;
1020 int pos;
1021 int next;
1022 int num_entries;
1023 int args_length;
1024};
1025
Andy Green024eb6c2014-10-08 12:00:53 +08001026struct _lws_http2_related {
Andy Green40110e82015-12-14 08:52:03 +08001027 /*
Andy Green024eb6c2014-10-08 12:00:53 +08001028 * having this first lets us also re-use all HTTP union code
1029 * and in turn, http_mode_related has allocated headers in right
1030 * place so we can use the header apis on the wsi directly still
1031 */
1032 struct _lws_http_mode_related http; /* MUST BE FIRST IN STRUCT */
1033
1034 struct http2_settings my_settings;
1035 struct http2_settings peer_settings;
Andy Green40110e82015-12-14 08:52:03 +08001036
Andy Green4b85c1d2015-12-04 11:08:32 +08001037 struct lws *parent_wsi;
1038 struct lws *next_child_wsi;
Andy Green024eb6c2014-10-08 12:00:53 +08001039
Andy Green200f3852014-10-18 12:23:05 +08001040 struct hpack_dynamic_table *hpack_dyn_table;
Andy Greenaa775fd2015-12-26 08:56:58 +08001041 struct lws *stream_wsi;
1042 unsigned char ping_payload[8];
1043 unsigned char one_setting[LWS_HTTP2_SETTINGS_LENGTH];
Andy Green40110e82015-12-14 08:52:03 +08001044
Andy Green024eb6c2014-10-08 12:00:53 +08001045 unsigned int count;
Andy Green024eb6c2014-10-08 12:00:53 +08001046 unsigned int length;
1047 unsigned int stream_id;
Andy Greenaa775fd2015-12-26 08:56:58 +08001048 enum http2_hpack_state hpack;
1049 enum http2_hpack_type hpack_type;
1050 unsigned int header_index;
1051 unsigned int hpack_len;
1052 unsigned int hpack_e_dep;
1053 int tx_credit;
1054 unsigned int my_stream_id;
1055 unsigned int child_count;
1056 int my_priority;
Andy Green67112662016-01-11 11:34:01 +08001057
Andy Green91b05892014-10-17 08:38:44 +08001058 unsigned int END_STREAM:1;
1059 unsigned int END_HEADERS:1;
Andy Green1cea5812014-10-19 07:36:20 +08001060 unsigned int send_END_STREAM:1;
Andy Green7df53c52014-10-22 15:37:28 +08001061 unsigned int GOING_AWAY;
1062 unsigned int requested_POLLOUT:1;
Andy Green97ee57f2014-10-29 09:39:08 +08001063 unsigned int waiting_tx_credit:1;
Andy Greenecc2e722014-10-09 16:57:47 +08001064 unsigned int huff:1;
1065 unsigned int value:1;
Andy Green40110e82015-12-14 08:52:03 +08001066
Andy Greenaa775fd2015-12-26 08:56:58 +08001067 unsigned short round_robin_POLLOUT;
1068 unsigned short count_POLLOUT_children;
1069 unsigned short hpack_pos;
1070
1071 unsigned char type;
1072 unsigned char flags;
1073 unsigned char frame_state;
1074 unsigned char padding;
1075 unsigned char hpack_m;
Andy Green024eb6c2014-10-08 12:00:53 +08001076 unsigned char initialized;
Andy Green024eb6c2014-10-08 12:00:53 +08001077};
1078
Andy Green7df53c52014-10-22 15:37:28 +08001079#define HTTP2_IS_TOPLEVEL_WSI(wsi) (!wsi->u.http2.parent_wsi)
Andy Green024eb6c2014-10-08 12:00:53 +08001080
1081#endif
1082
Andy Green623a98d2013-01-21 11:04:23 +08001083struct _lws_websocket_related {
Andy Green2c218e72016-02-15 12:37:04 +08001084 /* cheapest way to deal with ah overlap with ws union transition */
Andy Green26d42492016-02-24 12:40:21 +08001085 struct _lws_header_related hdr;
Andy Green67112662016-01-11 11:34:01 +08001086 char *rx_ubuf;
Andy Green4019aab2016-01-30 11:43:10 +08001087 unsigned int rx_ubuf_alloc;
Andy Green67112662016-01-11 11:34:01 +08001088 struct lws *rx_draining_ext_list;
1089 struct lws *tx_draining_ext_list;
Andy Greende132b92015-12-25 13:48:20 +08001090 size_t rx_packet_length;
Andy Green67112662016-01-11 11:34:01 +08001091 unsigned int rx_ubuf_head;
1092 unsigned char mask[4];
Andy Green1fb95e82015-12-26 17:20:34 +08001093 /* Also used for close content... control opcode == < 128 */
Andy Green67112662016-01-11 11:34:01 +08001094 unsigned char ping_payload_buf[128 - 3 + LWS_PRE];
Andy Green1fb95e82015-12-26 17:20:34 +08001095
Andy Greenaa775fd2015-12-26 08:56:58 +08001096 unsigned char ping_payload_len;
Andy Green67112662016-01-11 11:34:01 +08001097 unsigned char mask_idx;
Andy Green623a98d2013-01-21 11:04:23 +08001098 unsigned char opcode;
Andy Green623a98d2013-01-21 11:04:23 +08001099 unsigned char rsv;
Andy Green67112662016-01-11 11:34:01 +08001100 unsigned char rsv_first_msg;
Andy Green1fb95e82015-12-26 17:20:34 +08001101 /* zero if no info, or length including 2-byte close code */
1102 unsigned char close_in_ping_buffer_len;
Andy Green0c7b38b2015-12-29 09:46:03 +08001103 unsigned char utf8;
Andy Green67112662016-01-11 11:34:01 +08001104 unsigned char stashed_write_type;
1105 unsigned char tx_draining_stashed_wp;
Andy Greende132b92015-12-25 13:48:20 +08001106
1107 unsigned int final:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001108 unsigned int frame_is_binary:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001109 unsigned int all_zero_nonce:1;
Andy Greend91d5e82013-02-10 16:00:47 +08001110 unsigned int this_frame_masked:1;
Andy Green1f4267b2013-10-17 08:09:19 +08001111 unsigned int inside_frame:1; /* next write will be more of frame */
1112 unsigned int clean_buffer:1; /* buffer not rewritten by extension */
Andy Green40d5abc2015-04-17 20:29:58 +08001113 unsigned int payload_is_close:1; /* process as PONG, but it is close */
Andy Greenba38a7e2015-12-25 13:14:09 +08001114 unsigned int ping_pending_flag:1;
Andy Green977734e2015-12-28 16:51:08 +08001115 unsigned int continuation_possible:1;
Andy Green91d624e2015-12-28 17:05:40 +08001116 unsigned int owed_a_fin:1;
Andy Green9b81d3c2015-12-29 12:28:48 +08001117 unsigned int check_utf8:1;
1118 unsigned int defeat_check_utf8:1;
Andy Green67112662016-01-11 11:34:01 +08001119 unsigned int pmce_compressed_message:1;
1120 unsigned int stashed_write_pending:1;
1121 unsigned int rx_draining_ext:1;
1122 unsigned int tx_draining_ext:1;
Andy Green623a98d2013-01-21 11:04:23 +08001123};
1124
Andy Green6a8099b2016-02-21 21:25:48 +08001125#ifdef LWS_WITH_CGI
1126
1127/* wsi who is master of the cgi points to an lws_cgi */
1128
1129struct lws_cgi {
1130 struct lws_cgi *cgi_list;
1131 struct lws *stdwsi[3]; /* points to the associated stdin/out/err wsis */
1132 struct lws *wsi; /* owner */
Andy Greenf5efa742016-04-13 11:42:53 +08001133 unsigned long content_length;
1134 unsigned long content_length_seen;
Andy Green6a8099b2016-02-21 21:25:48 +08001135 int pipe_fds[3][2];
1136 int pid;
1137
1138 unsigned int being_closed:1;
1139};
Andy Green5c8906e2016-03-13 16:44:19 +08001140#endif
Andy Greenc3c2d6d2016-03-09 07:41:59 +08001141
Andy Green5c8906e2016-03-13 16:44:19 +08001142signed char char_to_hex(const char c);
1143
1144#ifndef LWS_NO_CLIENT
1145enum lws_chunk_parser {
1146 ELCP_HEX,
1147 ELCP_CR,
1148 ELCP_CONTENT,
1149 ELCP_POST_CR,
1150 ELCP_POST_LF,
1151};
Andy Green6a8099b2016-02-21 21:25:48 +08001152#endif
1153
Andy Green1e5a9ad2016-03-20 11:59:53 +08001154struct lws_rewrite;
1155
Andy Green2f0bc932016-04-15 12:00:23 +08001156#ifdef LWS_WITH_ACCESS_LOG
1157struct lws_access_log {
1158 char *header_log;
1159 char *user_agent;
1160 unsigned long sent;
1161 int response;
1162};
1163#endif
1164
Andy Green4b85c1d2015-12-04 11:08:32 +08001165struct lws {
Andy Green623a98d2013-01-21 11:04:23 +08001166
Andy Greenaa775fd2015-12-26 08:56:58 +08001167 /* structs */
1168 /* members with mutually exclusive lifetimes are unionized */
1169
1170 union u {
1171 struct _lws_http_mode_related http;
1172#ifdef LWS_USE_HTTP2
1173 struct _lws_http2_related http2;
1174#endif
1175 struct _lws_header_related hdr;
1176 struct _lws_websocket_related ws;
1177 } u;
1178
Andy Green623a98d2013-01-21 11:04:23 +08001179 /* lifetime members */
1180
Andy Green86ed65f2016-02-14 09:27:41 +08001181#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
Andy Green40110e82015-12-14 08:52:03 +08001182 struct lws_io_watcher w_read;
Andy Green86ed65f2016-02-14 09:27:41 +08001183#endif
1184#if defined(LWS_USE_LIBEV)
Andy Green40110e82015-12-14 08:52:03 +08001185 struct lws_io_watcher w_write;
Andy Green86ed65f2016-02-14 09:27:41 +08001186#endif
Andy Greende132b92015-12-25 13:48:20 +08001187 time_t pending_timeout_limit;
Andy Greenaa775fd2015-12-26 08:56:58 +08001188
1189 /* pointers */
1190
Andy Green40110e82015-12-14 08:52:03 +08001191 struct lws_context *context;
Andy Greend526c502016-03-28 10:10:43 +08001192 struct lws_vhost *vhost;
Andy Green494418a2016-03-02 09:17:22 +08001193 struct lws *parent; /* points to parent, if any */
1194 struct lws *child_list; /* points to first child */
1195 struct lws *sibling_list; /* subsequent children at same level */
Andy Green6a8099b2016-02-21 21:25:48 +08001196#ifdef LWS_WITH_CGI
1197 struct lws_cgi *cgi; /* wsi being cgi master have one of these */
Andy Green6a8099b2016-02-21 21:25:48 +08001198#endif
Andy Green4b85c1d2015-12-04 11:08:32 +08001199 const struct lws_protocols *protocol;
Andy Green4714cf02016-04-16 08:40:35 +08001200 struct lws **same_vh_protocol_prev, *same_vh_protocol_next;
Andy Greend738f842016-01-19 04:32:14 +08001201 struct lws *timeout_list;
1202 struct lws **timeout_list_prev;
Andy Green2f0bc932016-04-15 12:00:23 +08001203#ifdef LWS_WITH_ACCESS_LOG
1204 struct lws_access_log access_log;
1205#endif
Andy Greende132b92015-12-25 13:48:20 +08001206 void *user_space;
1207 /* rxflow handling */
1208 unsigned char *rxflow_buffer;
1209 /* truncated send handling */
1210 unsigned char *trunc_alloc; /* non-NULL means buffering in progress */
Andy Green3182ece2013-01-20 17:08:31 +08001211#ifndef LWS_NO_EXTENSIONS
Andy Greend2ac22c2015-12-11 10:45:35 +08001212 const struct lws_extension *active_extensions[LWS_MAX_EXTENSIONS_ACTIVE];
Andy Green67112662016-01-11 11:34:01 +08001213 void *act_ext_user[LWS_MAX_EXTENSIONS_ACTIVE];
Andy Green3182ece2013-01-20 17:08:31 +08001214#endif
Andy Greende132b92015-12-25 13:48:20 +08001215#ifdef LWS_OPENSSL_SUPPORT
1216 SSL *ssl;
Andy Green1a3f1772016-03-28 19:58:02 +08001217#if !defined(LWS_USE_POLARSSL) && !defined(LWS_USE_MBEDTLS)
Andy Greende132b92015-12-25 13:48:20 +08001218 BIO *client_bio;
Andy Green1a3f1772016-03-28 19:58:02 +08001219#endif
Andy Greende132b92015-12-25 13:48:20 +08001220 struct lws *pending_read_list_prev, *pending_read_list_next;
1221#endif
Andy Green1a138852016-03-20 11:55:25 +08001222#ifdef LWS_WITH_HTTP_PROXY
Andy Green1e5a9ad2016-03-20 11:59:53 +08001223 struct lws_rewrite *rw;
1224#endif
Andy Greenaa775fd2015-12-26 08:56:58 +08001225#ifdef LWS_LATENCY
1226 unsigned long action_start;
1227 unsigned long latency_start;
1228#endif
1229 /* pointer / int */
Andy Green3b193862015-11-02 13:13:44 +08001230 lws_sockfd_type sock;
Andy Greende132b92015-12-25 13:48:20 +08001231
Andy Greenaa775fd2015-12-26 08:56:58 +08001232 /* ints */
Andy Greendfb23042013-01-17 12:26:48 +08001233 int position_in_fds_table;
Andy Green024eb6c2014-10-08 12:00:53 +08001234 int rxflow_len;
1235 int rxflow_pos;
Andy Green54806b12015-12-17 17:03:59 +08001236 unsigned int trunc_alloc_len; /* size of malloc */
1237 unsigned int trunc_offset; /* where we are in terms of spilling */
1238 unsigned int trunc_len; /* how much is buffered */
Andy Green5c8906e2016-03-13 16:44:19 +08001239#ifndef LWS_NO_CLIENT
1240 int chunk_remaining;
1241#endif
Andy Green42e8b182016-04-22 08:53:49 +08001242 unsigned int cache_secs;
Andy Green2764eba2013-12-09 14:16:17 +08001243
Andy Greende132b92015-12-25 13:48:20 +08001244 unsigned int hdr_parsing_completed:1;
Andy Green22d6f392016-04-10 09:33:54 +08001245 unsigned int http2_substream:1;
Andy Greend526c502016-03-28 10:10:43 +08001246 unsigned int listener:1;
Andy Greende132b92015-12-25 13:48:20 +08001247 unsigned int user_space_externally_allocated:1;
1248 unsigned int socket_is_permanently_unusable:1;
1249 unsigned int rxflow_change_to:2;
Andy Green83af28a2016-02-28 10:55:31 +08001250 unsigned int more_rx_waiting:1; /* has to live here since ah may stick to end */
Andy Green98061402016-04-15 14:01:29 +08001251 unsigned int conn_stat_done:1;
Andy Green42e8b182016-04-22 08:53:49 +08001252 unsigned int cache_reuse:1;
1253 unsigned int cache_revalidate:1;
1254 unsigned int cache_intermediaries:1;
Andy Green2f216282016-04-23 09:26:11 +08001255 unsigned int favoured_pollin:1;
Andy Green7a2fc442016-05-19 15:28:31 +08001256 unsigned int sending_chunked:1;
Andy Green81c221e2016-07-01 08:54:39 +08001257 unsigned int already_did_cce:1;
Andy Green2f0bc932016-04-15 12:00:23 +08001258#ifdef LWS_WITH_ACCESS_LOG
1259 unsigned int access_log_pending:1;
1260#endif
Andy Greena661ee52016-02-29 13:18:30 +08001261#ifndef LWS_NO_CLIENT
1262 unsigned int do_ws:1; /* whether we are doing http or ws flow */
Andy Green5c8906e2016-03-13 16:44:19 +08001263 unsigned int chunked:1; /* if the clientside connection is chunked */
Andy Green1e5a9ad2016-03-20 11:59:53 +08001264 unsigned int client_rx_avail:1;
Andy Green1a138852016-03-20 11:55:25 +08001265#endif
1266#ifdef LWS_WITH_HTTP_PROXY
Andy Green1e5a9ad2016-03-20 11:59:53 +08001267 unsigned int perform_rewrite:1;
Andy Greena661ee52016-02-29 13:18:30 +08001268#endif
Andy Greende132b92015-12-25 13:48:20 +08001269#ifndef LWS_NO_EXTENSIONS
1270 unsigned int extension_data_pending:1;
1271#endif
1272#ifdef LWS_OPENSSL_SUPPORT
Andy Green675c3492016-07-07 08:14:26 +08001273 unsigned int use_ssl:3;
Andy Greende132b92015-12-25 13:48:20 +08001274 unsigned int upgraded:1;
1275#endif
Andy Greenaa775fd2015-12-26 08:56:58 +08001276#ifdef _WIN32
1277 unsigned int sock_send_blocking:1;
1278#endif
Andy Green0f9904f2016-03-17 15:26:49 +08001279#ifdef LWS_OPENSSL_SUPPORT
1280 unsigned int redirect_to_https:1;
1281#endif
Andy Greende132b92015-12-25 13:48:20 +08001282
Andy Greenaa775fd2015-12-26 08:56:58 +08001283 /* chars */
Andy Greende132b92015-12-25 13:48:20 +08001284#ifndef LWS_NO_EXTENSIONS
Andy Green67112662016-01-11 11:34:01 +08001285 unsigned char count_act_ext;
Andy Greende132b92015-12-25 13:48:20 +08001286#endif
1287 unsigned char ietf_spec_revision;
1288 char mode; /* enum connection_mode */
1289 char state; /* enum lws_connection_states */
Andy Green8c1f6022016-01-26 20:56:56 +08001290 char state_pre_close;
Andy Greende132b92015-12-25 13:48:20 +08001291 char lws_rx_parse_state; /* enum lws_rx_parse_state */
1292 char rx_frame_type; /* enum lws_write_protocol */
1293 char pending_timeout; /* enum pending_timeout */
Andy Greend738f842016-01-19 04:32:14 +08001294 char pps; /* enum lws_pending_protocol_send */
Andy Greend3a55052016-01-19 03:34:24 +08001295 char tsi; /* thread service index we belong to */
Andy Green7a2fc442016-05-19 15:28:31 +08001296 char protocol_interpret_idx;
Andy Green6a8099b2016-02-21 21:25:48 +08001297#ifdef LWS_WITH_CGI
1298 char cgi_channel; /* which of stdin/out/err */
Andy Greenc3c2d6d2016-03-09 07:41:59 +08001299 char hdr_state;
Andy Green6a8099b2016-02-21 21:25:48 +08001300#endif
Andy Green5c8906e2016-03-13 16:44:19 +08001301#ifndef LWS_NO_CLIENT
1302 char chunk_parser; /* enum lws_chunk_parser */
1303#endif
Andy Green0a4da2c2016-05-10 10:16:52 +08001304#if defined(LWS_WITH_CGI) || !defined(LWS_NO_CLIENT)
1305 char reason_bf; /* internal writeable callback reason bitfield */
1306#endif
Andy Green7c212cc2010-11-08 20:20:42 +00001307};
1308
Andy Green3d67f512014-04-03 07:29:50 +08001309LWS_EXTERN int log_level;
1310
Andy Greenc7939442016-03-12 08:18:58 +08001311LWS_EXTERN int
Andy Green144594d2016-04-14 12:11:51 +08001312lws_socket_bind(struct lws_vhost *vhost, int sockfd, int port,
Andy Greenc7939442016-03-12 08:18:58 +08001313 const char *iface);
1314
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001315LWS_EXTERN void
Andy Green6b5de702015-12-15 21:15:58 +08001316lws_close_free_wsi(struct lws *wsi, enum lws_close_status);
Andy Green508946c2013-02-12 10:19:08 +08001317
Andy Green34f3dd22014-04-03 07:42:50 +08001318LWS_EXTERN int
Andy Green6b5de702015-12-15 21:15:58 +08001319remove_wsi_socket_from_fds(struct lws *wsi);
Andy Green024eb6c2014-10-08 12:00:53 +08001320LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001321lws_rxflow_cache(struct lws *wsi, unsigned char *buf, int n, int len);
Andy Green34f3dd22014-04-03 07:42:50 +08001322
Andy Greend636e352013-01-29 12:36:17 +08001323#ifndef LWS_LATENCY
Andy Greendc8a3a82015-12-06 09:15:27 +08001324static inline void
1325lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1326 int ret, int completion) {
Andy Green40110e82015-12-14 08:52:03 +08001327 do {
1328 (void)context; (void)wsi; (void)action; (void)ret;
1329 (void)completion;
Andy Greendc8a3a82015-12-06 09:15:27 +08001330 } while (0);
1331}
1332static inline void
1333lws_latency_pre(struct lws_context *context, struct lws *wsi) {
1334 do { (void)context; (void)wsi; } while (0);
1335}
Andy Greend636e352013-01-29 12:36:17 +08001336#else
1337#define lws_latency_pre(_context, _wsi) lws_latency(_context, _wsi, NULL, 0, 0)
1338extern void
Andy Greendc8a3a82015-12-06 09:15:27 +08001339lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1340 int ret, int completion);
Andy Greend636e352013-01-29 12:36:17 +08001341#endif
1342
Andy Greendc8a3a82015-12-06 09:15:27 +08001343LWS_EXTERN void
Andy Green6b5de702015-12-15 21:15:58 +08001344lws_set_protocol_write_pending(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001345 enum lws_pending_protocol_send pend);
Andy Greene99a83c2016-01-20 16:56:06 +08001346LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001347lws_client_rx_sm(struct lws *wsi, unsigned char c);
Andy Green4739e5c2011-01-22 12:51:57 +00001348
Andy Greene99a83c2016-01-20 16:56:06 +08001349LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001350lws_parse(struct lws *wsi, unsigned char c);
Andy Greenb45993c2010-12-18 15:13:50 +00001351
Andy Greene99a83c2016-01-20 16:56:06 +08001352LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001353lws_http_action(struct lws *wsi);
Andy Green024eb6c2014-10-08 12:00:53 +08001354
1355LWS_EXTERN int
Andy Greendf736162011-01-18 15:39:02 +00001356lws_b64_selftest(void);
Andy Greenbfb051f2011-02-09 08:49:14 +00001357
Andy Green2c218e72016-02-15 12:37:04 +08001358LWS_EXTERN int
1359lws_service_adjust_timeout(struct lws_context *context, int timeout_ms, int tsi);
1360
1361LWS_EXTERN int
1362lws_service_flag_pending(struct lws_context *context, int tsi);
1363
Andy Green2cd30742015-11-02 13:10:33 +08001364#if defined(_WIN32) || defined(MBED_OPERATORS)
Andy Green4b85c1d2015-12-04 11:08:32 +08001365LWS_EXTERN struct lws *
Andy Green1fa76852015-12-14 11:17:16 +08001366wsi_from_fd(const struct lws_context *context, lws_sockfd_type fd);
Andy Green0d338332011-02-12 11:57:43 +00001367
Andy Green40110e82015-12-14 08:52:03 +08001368LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001369insert_wsi(struct lws_context *context, struct lws *wsi);
Bud Davis229bfec2015-01-30 10:13:01 +08001370
1371LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001372delete_from_fd(struct lws_context *context, lws_sockfd_type fd);
Bud Davis229bfec2015-01-30 10:13:01 +08001373#else
Andy Green40110e82015-12-14 08:52:03 +08001374#define wsi_from_fd(A,B) A->lws_lookup[B]
Andy Green8c1f6022016-01-26 20:56:56 +08001375#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 +08001376#define delete_from_fd(A,B) A->lws_lookup[B]=0
1377#endif
1378
Andy Greene99a83c2016-01-20 16:56:06 +08001379LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001380insert_wsi_socket_into_fds(struct lws_context *context, struct lws *wsi);
Darin Willitsc19456f2011-02-14 17:52:39 +00001381
Andy Greene99a83c2016-01-20 16:56:06 +08001382LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001383lws_issue_raw(struct lws *wsi, unsigned char *buf, size_t len);
Andy Greend44bf7f2011-03-06 10:29:38 +00001384
Andy Green95a7b5d2011-03-06 10:29:39 +00001385
Andy Greene99a83c2016-01-20 16:56:06 +08001386LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001387lws_service_timeout_check(struct lws *wsi, unsigned int sec);
Andy Greena41314f2011-05-23 10:00:03 +01001388
Andy Greene99a83c2016-01-20 16:56:06 +08001389LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001390lws_client_connect_2(struct lws *wsi);
Andy Greena41314f2011-05-23 10:00:03 +01001391
Andy Greene99a83c2016-01-20 16:56:06 +08001392LWS_VISIBLE struct lws * LWS_WARN_UNUSED_RESULT
1393lws_client_reset(struct lws *wsi, int ssl, const char *address, int port,
1394 const char *path, const char *host);
Andy Green809d69a2016-01-14 11:37:56 +08001395
Andy Greene99a83c2016-01-20 16:56:06 +08001396LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
Andy Greend526c502016-03-28 10:10:43 +08001397lws_create_new_server_wsi(struct lws_vhost *vhost);
Andy Greena41314f2011-05-23 10:00:03 +01001398
Andy Greene99a83c2016-01-20 16:56:06 +08001399LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001400lws_generate_client_handshake(struct lws *wsi, char *pkt);
Andy Greena41314f2011-05-23 10:00:03 +01001401
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001402LWS_EXTERN int
Andy Green6b5de702015-12-15 21:15:58 +08001403lws_handle_POLLOUT_event(struct lws *wsi, struct lws_pollfd *pollfd);
Andy Green91b05892014-10-17 08:38:44 +08001404
Andy Green2d8d35a2016-02-29 14:19:16 +08001405LWS_EXTERN struct lws *
1406lws_client_connect_via_info2(struct lws *wsi);
1407
Andy Greencdb9bf92014-04-12 10:07:02 +08001408/*
1409 * EXTENSIONS
1410 */
1411
Andy Green3182ece2013-01-20 17:08:31 +08001412#ifndef LWS_NO_EXTENSIONS
Andy Greencdb9bf92014-04-12 10:07:02 +08001413LWS_VISIBLE void
1414lws_context_init_extensions(struct lws_context_creation_info *info,
Andy Greendc8a3a82015-12-06 09:15:27 +08001415 struct lws_context *context);
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001416LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001417lws_any_extension_handled(struct lws *wsi, enum lws_extension_callback_reasons r,
Andy Green6ee372f2012-04-09 15:09:01 +08001418 void *v, size_t len);
Andy Greena41314f2011-05-23 10:00:03 +01001419
Andy Green2c24ec02014-04-02 19:45:42 +08001420LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001421lws_ext_cb_active(struct lws *wsi, int reason, void *buf, int len);
Andy Green2c24ec02014-04-02 19:45:42 +08001422LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001423lws_ext_cb_all_exts(struct lws_context *context, struct lws *wsi, int reason,
1424 void *arg, int len);
Andy Green67112662016-01-11 11:34:01 +08001425
Andy Green2c24ec02014-04-02 19:45:42 +08001426#else
Andy Green6b5de702015-12-15 21:15:58 +08001427#define lws_any_extension_handled(_a, _b, _c, _d) (0)
Andy Green67112662016-01-11 11:34:01 +08001428#define lws_ext_cb_active(_a, _b, _c, _d) (0)
Andy Green54806b12015-12-17 17:03:59 +08001429#define lws_ext_cb_all_exts(_a, _b, _c, _d, _e) (0)
Andy Greenb49a9952014-04-03 10:11:04 +08001430#define lws_issue_raw_ext_access lws_issue_raw
Andy Greencdb9bf92014-04-12 10:07:02 +08001431#define lws_context_init_extensions(_a, _b)
Andy Green3182ece2013-01-20 17:08:31 +08001432#endif
Andy Greena41314f2011-05-23 10:00:03 +01001433
Andy Greene99a83c2016-01-20 16:56:06 +08001434LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001435lws_client_interpret_server_handshake(struct lws *wsi);
Andy Greena41314f2011-05-23 10:00:03 +01001436
Andy Greene99a83c2016-01-20 16:56:06 +08001437LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001438lws_rx_sm(struct lws *wsi, unsigned char c);
Andy Greena41314f2011-05-23 10:00:03 +01001439
Alex Hultman599cad92016-03-17 09:34:15 +08001440LWS_EXTERN void
1441lws_payload_until_length_exhausted(struct lws *wsi, unsigned char **buf, size_t *len);
1442
Andy Greene99a83c2016-01-20 16:56:06 +08001443LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001444lws_issue_raw_ext_access(struct lws *wsi, unsigned char *buf, size_t len);
Andy Green09226502011-05-28 10:19:19 +01001445
Andy Green44c11612014-11-08 11:18:47 +08001446LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001447lws_union_transition(struct lws *wsi, enum connection_mode mode);
Andy Green44c11612014-11-08 11:18:47 +08001448
Andy Greene99a83c2016-01-20 16:56:06 +08001449LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Denis Osvald034e5142015-12-21 18:06:38 +01001450user_callback_handle_rxflow(lws_callback_function, struct lws *wsi,
Andy Green00c6d152015-12-17 07:54:44 +08001451 enum lws_callback_reasons reason, void *user,
1452 void *in, size_t len);
Andy Green024eb6c2014-10-08 12:00:53 +08001453#ifdef LWS_USE_HTTP2
Andy Green4b85c1d2015-12-04 11:08:32 +08001454LWS_EXTERN struct lws *lws_http2_get_network_wsi(struct lws *wsi);
1455struct lws * lws_http2_get_nth_child(struct lws *wsi, int n);
Andy Green024eb6c2014-10-08 12:00:53 +08001456LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001457lws_http2_interpret_settings_payload(struct http2_settings *settings,
1458 unsigned char *buf, int len);
Andy Green024eb6c2014-10-08 12:00:53 +08001459LWS_EXTERN void lws_http2_init(struct http2_settings *settings);
1460LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001461lws_http2_parser(struct lws *wsi, unsigned char c);
Andy Greendc8a3a82015-12-06 09:15:27 +08001462LWS_EXTERN int lws_http2_do_pps_send(struct lws_context *context,
1463 struct lws *wsi);
1464LWS_EXTERN int lws_http2_frame_write(struct lws *wsi, int type, int flags,
1465 unsigned int sid, unsigned int len,
1466 unsigned char *buf);
Andy Green4b85c1d2015-12-04 11:08:32 +08001467LWS_EXTERN struct lws *
1468lws_http2_wsi_from_id(struct lws *wsi, unsigned int sid);
Andy Green11c05bf2015-12-16 18:19:08 +08001469LWS_EXTERN int lws_hpack_interpret(struct lws *wsi,
Andy Green2add6342014-10-12 08:38:16 +08001470 unsigned char c);
Andy Green917f43a2014-10-12 14:31:47 +08001471LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001472lws_add_http2_header_by_name(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001473 const unsigned char *name,
1474 const unsigned char *value, int length,
1475 unsigned char **p, unsigned char *end);
Andy Green917f43a2014-10-12 14:31:47 +08001476LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001477lws_add_http2_header_by_token(struct lws *wsi,
Andy Green917f43a2014-10-12 14:31:47 +08001478 enum lws_token_indexes token,
Andy Greendc8a3a82015-12-06 09:15:27 +08001479 const unsigned char *value, int length,
1480 unsigned char **p, unsigned char *end);
Andy Green917f43a2014-10-12 14:31:47 +08001481LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001482lws_add_http2_header_status(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001483 unsigned int code, unsigned char **p,
Andy Green917f43a2014-10-12 14:31:47 +08001484 unsigned char *end);
Andy Green7df53c52014-10-22 15:37:28 +08001485LWS_EXTERN
Andy Green4b85c1d2015-12-04 11:08:32 +08001486void lws_http2_configure_if_upgraded(struct lws *wsi);
Andy Green7df53c52014-10-22 15:37:28 +08001487#else
1488#define lws_http2_configure_if_upgraded(x)
Andy Green024eb6c2014-10-08 12:00:53 +08001489#endif
Andy Green706961d2013-01-17 16:50:35 +08001490
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001491LWS_EXTERN int
Andy Greend526c502016-03-28 10:10:43 +08001492lws_plat_set_socket_options(struct lws_vhost *vhost, lws_sockfd_type fd);
Andy Greena690cd02013-02-09 12:25:31 +08001493
Andy Piper6ff571f2016-06-28 19:01:20 +08001494LWS_EXTERN int
1495lws_plat_check_connection_error(struct lws *wsi);
1496
Andy Greene99a83c2016-01-20 16:56:06 +08001497LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greene3d141d2016-02-27 11:42:22 +08001498lws_header_table_attach(struct lws *wsi, int autoservice);
Andy Green16ab3182013-02-10 18:02:31 +08001499
Andrew Canaday37718812014-11-07 11:20:59 +08001500LWS_EXTERN int
Andy Greene3d141d2016-02-27 11:42:22 +08001501lws_header_table_detach(struct lws *wsi, int autoservice);
Andrew Canaday37718812014-11-07 11:20:59 +08001502
Andy Green4019aab2016-01-30 11:43:10 +08001503LWS_EXTERN void
Andy Greene3d141d2016-02-27 11:42:22 +08001504lws_header_table_reset(struct lws *wsi, int autoservice);
Andy Green4019aab2016-01-30 11:43:10 +08001505
Andy Greene99a83c2016-01-20 16:56:06 +08001506LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001507lws_hdr_simple_ptr(struct lws *wsi, enum lws_token_indexes h);
Andy Green16ab3182013-02-10 18:02:31 +08001508
Andy Greene99a83c2016-01-20 16:56:06 +08001509LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green11c05bf2015-12-16 18:19:08 +08001510lws_hdr_simple_create(struct lws *wsi, enum lws_token_indexes h, const char *s);
Andy Greenb5b23192013-02-11 17:13:32 +08001511
Andy Green16146cd2016-04-23 07:53:46 +08001512LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001513lws_ensure_user_space(struct lws *wsi);
Andy Green2af4d5b2013-02-18 16:30:10 +08001514
Andy Green158e8042014-04-02 14:25:10 +08001515LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001516lws_change_pollfd(struct lws *wsi, int _and, int _or);
Andy Green91f19d82013-12-21 11:18:34 +08001517
Andy Greenb5b23192013-02-11 17:13:32 +08001518#ifndef LWS_NO_SERVER
Andy Greene38031a2014-04-03 08:24:29 +08001519int lws_context_init_server(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08001520 struct lws_vhost *vhost);
1521LWS_EXTERN struct lws_vhost *
1522lws_select_vhost(struct lws_context *context, int port, const char *servername);
Andy Greend7340c12014-04-10 14:08:10 +08001523LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001524handshake_0405(struct lws_context *context, struct lws *wsi);
Andy Greene99a83c2016-01-20 16:56:06 +08001525LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green67112662016-01-11 11:34:01 +08001526lws_interpret_incoming_packet(struct lws *wsi, unsigned char **buf, size_t len);
Andy Greencdb9bf92014-04-12 10:07:02 +08001527LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001528lws_server_get_canonical_hostname(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001529 struct lws_context_creation_info *info);
Andy Greene38031a2014-04-03 08:24:29 +08001530#else
1531#define lws_context_init_server(_a, _b) (0)
Andy Green3ef579b2015-12-04 09:23:56 +08001532#define lws_interpret_incoming_packet(_a, _b, _c) (0)
Andy Greencdb9bf92014-04-12 10:07:02 +08001533#define lws_server_get_canonical_hostname(_a, _b)
Andy Greenb5b23192013-02-11 17:13:32 +08001534#endif
1535
1536#ifndef LWS_NO_DAEMONIZE
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001537LWS_EXTERN int get_daemonize_pid();
Andy Greencdb9bf92014-04-12 10:07:02 +08001538#else
1539#define get_daemonize_pid() (0)
Andy Greenb5b23192013-02-11 17:13:32 +08001540#endif
1541
Andy Green2cd30742015-11-02 13:10:33 +08001542#if !defined(MBED_OPERATORS)
Andy Greene99a83c2016-01-20 16:56:06 +08001543LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green2dc7dde2016-06-03 21:19:40 +08001544interface_to_sa(struct lws_vhost *vh, const char *ifname,
Andy Greendc8a3a82015-12-06 09:15:27 +08001545 struct sockaddr_in *addr, size_t addrlen);
Andy Green2cd30742015-11-02 13:10:33 +08001546#endif
Andy Greenb25b85f2014-04-03 23:34:09 +08001547LWS_EXTERN void lwsl_emit_stderr(int level, const char *line);
1548
Andy Green1a308e42014-04-08 07:26:30 +01001549enum lws_ssl_capable_status {
1550 LWS_SSL_CAPABLE_ERROR = -1,
1551 LWS_SSL_CAPABLE_MORE_SERVICE = -2,
1552};
1553
Darin Willitsc19456f2011-02-14 17:52:39 +00001554#ifndef LWS_OPENSSL_SUPPORT
Andy Greencdb9bf92014-04-12 10:07:02 +08001555#define LWS_SSL_ENABLED(context) (0)
Andy Greenc57037a2014-04-03 10:17:00 +08001556#define lws_context_init_server_ssl(_a, _b) (0)
1557#define lws_ssl_destroy(_a)
Andy Green2eedea92014-04-03 14:33:48 +08001558#define lws_context_init_http2_ssl(_a)
Andy Green02138122014-04-06 06:26:35 +01001559#define lws_ssl_capable_read lws_ssl_capable_read_no_ssl
1560#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 +02001561#define lws_ssl_pending lws_ssl_pending_no_ssl
Andy Green8c1f6022016-01-26 20:56:56 +08001562#define lws_server_socket_service_ssl(_b, _c) (0)
Andy Greencdb9bf92014-04-12 10:07:02 +08001563#define lws_ssl_close(_a) (0)
1564#define lws_ssl_context_destroy(_a)
Andy Greend526c502016-03-28 10:10:43 +08001565#define lws_ssl_SSL_CTX_destroy(_a)
Andy Green6b5de702015-12-15 21:15:58 +08001566#define lws_ssl_remove_wsi_from_buffered_list(_a)
Andy Greend526c502016-03-28 10:10:43 +08001567#define lws_context_init_ssl_library(_a)
Andy Greenb5b23192013-02-11 17:13:32 +08001568#else
Andy Greencdb9bf92014-04-12 10:07:02 +08001569#define LWS_SSL_ENABLED(context) (context->use_ssl)
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001570LWS_EXTERN int openssl_websocket_private_data_index;
Andy Greene99a83c2016-01-20 16:56:06 +08001571LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001572lws_ssl_capable_read(struct lws *wsi, unsigned char *buf, int len);
Andy Greene99a83c2016-01-20 16:56:06 +08001573LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001574lws_ssl_capable_write(struct lws *wsi, unsigned char *buf, int len);
Andy Greene99a83c2016-01-20 16:56:06 +08001575LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001576lws_ssl_pending(struct lws *wsi);
Andy Greend526c502016-03-28 10:10:43 +08001577LWS_EXTERN int
1578lws_context_init_ssl_library(struct lws_context_creation_info *info);
Andy Greene99a83c2016-01-20 16:56:06 +08001579LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green8c1f6022016-01-26 20:56:56 +08001580lws_server_socket_service_ssl(struct lws *new_wsi, lws_sockfd_type accept_fd);
Andy Greencdb9bf92014-04-12 10:07:02 +08001581LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001582lws_ssl_close(struct lws *wsi);
Andy Greencdb9bf92014-04-12 10:07:02 +08001583LWS_EXTERN void
Andy Greend526c502016-03-28 10:10:43 +08001584lws_ssl_SSL_CTX_destroy(struct lws_vhost *vhost);
1585LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001586lws_ssl_context_destroy(struct lws_context *context);
Andy Green52815602015-01-29 08:36:18 +08001587LWS_VISIBLE void
Andy Green6b5de702015-12-15 21:15:58 +08001588lws_ssl_remove_wsi_from_buffered_list(struct lws *wsi);
Andy Greeneefb13a2016-03-28 12:43:55 +08001589LWS_EXTERN int
1590lws_ssl_client_bio_create(struct lws *wsi);
1591LWS_EXTERN int
1592lws_ssl_client_connect1(struct lws *wsi);
1593LWS_EXTERN int
1594lws_ssl_client_connect2(struct lws *wsi);
Andy Greenf1fd8822016-05-03 07:26:10 +08001595LWS_EXTERN void
1596lws_ssl_elaborate_error(void);
Andy Greenc57037a2014-04-03 10:17:00 +08001597#ifndef LWS_NO_SERVER
1598LWS_EXTERN int
1599lws_context_init_server_ssl(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08001600 struct lws_vhost *vhost);
Andy Greenc57037a2014-04-03 10:17:00 +08001601#else
1602#define lws_context_init_server_ssl(_a, _b) (0)
1603#endif
1604LWS_EXTERN void
Andy Greend526c502016-03-28 10:10:43 +08001605lws_ssl_destroy(struct lws_vhost *vhost);
Andy Green2eedea92014-04-03 14:33:48 +08001606
1607/* HTTP2-related */
1608
1609#ifdef LWS_USE_HTTP2
1610LWS_EXTERN void
Andy Green22d6f392016-04-10 09:33:54 +08001611lws_context_init_http2_ssl(struct lws_vhost *vhost);
Andy Green2eedea92014-04-03 14:33:48 +08001612#else
1613#define lws_context_init_http2_ssl(_a)
1614#endif
Darin Willitsc19456f2011-02-14 17:52:39 +00001615#endif
Andy Greena654fc02014-04-03 07:16:40 +08001616
Andy Green8c1f6022016-01-26 20:56:56 +08001617#if LWS_MAX_SMP > 1
1618static LWS_INLINE void
1619lws_pt_mutex_init(struct lws_context_per_thread *pt)
1620{
1621 pthread_mutex_init(&pt->lock, NULL);
1622}
Sterling Jensenecaed5e2016-05-12 20:22:35 -05001623
1624static LWS_INLINE void
1625lws_pt_mutex_destroy(struct lws_context_per_thread *pt)
1626{
1627 pthread_mutex_destroy(&pt->lock);
1628}
1629
Andy Green8c1f6022016-01-26 20:56:56 +08001630static LWS_INLINE void
1631lws_pt_lock(struct lws_context_per_thread *pt)
1632{
1633 pthread_mutex_lock(&pt->lock);
1634}
1635
1636static LWS_INLINE void
1637lws_pt_unlock(struct lws_context_per_thread *pt)
1638{
1639 pthread_mutex_unlock(&pt->lock);
1640}
1641#else
1642#define lws_pt_mutex_init(_a) (void)(_a)
Sterling Jensenecaed5e2016-05-12 20:22:35 -05001643#define lws_pt_mutex_destroy(_a) (void)(_a)
Andy Green8c1f6022016-01-26 20:56:56 +08001644#define lws_pt_lock(_a) (void)(_a)
1645#define lws_pt_unlock(_a) (void)(_a)
1646#endif
1647
Andy Greene99a83c2016-01-20 16:56:06 +08001648LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001649lws_ssl_capable_read_no_ssl(struct lws *wsi, unsigned char *buf, int len);
Patrick Gansterera6b019a2014-04-15 18:40:31 +02001650
Andy Greene99a83c2016-01-20 16:56:06 +08001651LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001652lws_ssl_capable_write_no_ssl(struct lws *wsi, unsigned char *buf, int len);
Patrick Gansterera6b019a2014-04-15 18:40:31 +02001653
Andy Greene99a83c2016-01-20 16:56:06 +08001654LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001655lws_ssl_pending_no_ssl(struct lws *wsi);
=?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?=4c0ba022015-08-19 16:23:33 +02001656
Andy Green1e5a9ad2016-03-20 11:59:53 +08001657#ifdef LWS_WITH_HTTP_PROXY
1658struct lws_rewrite {
1659 hubbub_parser *parser;
1660 hubbub_parser_optparams params;
1661 const char *from, *to;
1662 int from_len, to_len;
1663 unsigned char *p, *end;
1664 struct lws *wsi;
1665};
1666static LWS_INLINE int hstrcmp(hubbub_string *s, const char *p, int len)
1667{
1668 if (s->len != len)
1669 return 1;
1670
1671 return strncmp((const char *)s->ptr, p, len);
1672}
1673typedef hubbub_error (*hubbub_callback_t)(const hubbub_token *token, void *pw);
Andy Green1e5a9ad2016-03-20 11:59:53 +08001674LWS_EXTERN struct lws_rewrite *
1675lws_rewrite_create(struct lws *wsi, hubbub_callback_t cb, const char *from, const char *to);
1676LWS_EXTERN void
1677lws_rewrite_destroy(struct lws_rewrite *r);
1678LWS_EXTERN int
1679lws_rewrite_parse(struct lws_rewrite *r, const unsigned char *in, int in_len);
1680#endif
1681
1682#ifndef LWS_NO_CLIENT
Andy Green1a138852016-03-20 11:55:25 +08001683LWS_EXTERN int lws_client_socket_service(struct lws_context *context,
1684 struct lws *wsi,
1685 struct lws_pollfd *pollfd);
1686LWS_EXTERN int LWS_WARN_UNUSED_RESULT
1687lws_http_transaction_completed_client(struct lws *wsi);
Andy Greenc57037a2014-04-03 10:17:00 +08001688#ifdef LWS_OPENSSL_SUPPORT
Andy Greendc8a3a82015-12-06 09:15:27 +08001689LWS_EXTERN int
1690lws_context_init_client_ssl(struct lws_context_creation_info *info,
Andy Greend526c502016-03-28 10:10:43 +08001691 struct lws_vhost *vhost);
Andy Greene38031a2014-04-03 08:24:29 +08001692#else
Andy Greenc57037a2014-04-03 10:17:00 +08001693 #define lws_context_init_client_ssl(_a, _b) (0)
1694#endif
Andy Greene99a83c2016-01-20 16:56:06 +08001695LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001696lws_handshake_client(struct lws *wsi, unsigned char **buf, size_t len);
1697LWS_EXTERN void
1698lws_decode_ssl_error(void);
Andy Greenc57037a2014-04-03 10:17:00 +08001699#else
1700#define lws_context_init_client_ssl(_a, _b) (0)
Andy Greenaad2eac2014-04-03 09:03:37 +08001701#define lws_handshake_client(_a, _b, _c) (0)
Andy Greena654fc02014-04-03 07:16:40 +08001702#endif
Andy Green44e0b082015-12-28 14:24:49 +08001703
1704LWS_EXTERN int
1705_lws_rx_flow_control(struct lws *wsi);
1706
Andy Green8c1f6022016-01-26 20:56:56 +08001707LWS_EXTERN int
1708_lws_change_pollfd(struct lws *wsi, int _and, int _or, struct lws_pollargs *pa);
1709
Andy Greena654fc02014-04-03 07:16:40 +08001710#ifndef LWS_NO_SERVER
Andy Greendc8a3a82015-12-06 09:15:27 +08001711LWS_EXTERN int
1712lws_server_socket_service(struct lws_context *context, struct lws *wsi,
1713 struct lws_pollfd *pollfd);
1714LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001715lws_handshake_server(struct lws *wsi, unsigned char **buf, size_t len);
Andy Greenb3d21f12015-12-25 09:12:08 +08001716LWS_EXTERN int
Andy Green8c1f6022016-01-26 20:56:56 +08001717_lws_server_listen_accept_flow_control(struct lws *twsi, int on);
Andy Greend99476b2014-04-03 08:40:05 +08001718#else
Andy Greenb49a9952014-04-03 10:11:04 +08001719#define lws_server_socket_service(_a, _b, _c) (0)
Andy Green11c05bf2015-12-16 18:19:08 +08001720#define lws_handshake_server(_a, _b, _c) (0)
Andy Greenb3d21f12015-12-25 09:12:08 +08001721#define _lws_server_listen_accept_flow_control(a, b) (0)
Andy Greena654fc02014-04-03 07:16:40 +08001722#endif
Andy Green40110e82015-12-14 08:52:03 +08001723
Andy Green2f0bc932016-04-15 12:00:23 +08001724#ifdef LWS_WITH_ACCESS_LOG
1725LWS_EXTERN int
1726lws_access_log(struct lws *wsi);
1727#else
1728#define lws_access_log(_a)
1729#endif
1730
Andy Green6a8099b2016-02-21 21:25:48 +08001731LWS_EXTERN int
1732lws_cgi_kill_terminated(struct lws_context_per_thread *pt);
1733
Andy Green02077052016-04-06 16:15:40 +08001734int
1735lws_protocol_init(struct lws_context *context);
1736
Andy Green7f92ee82016-06-18 09:00:04 +08001737int
1738lws_bind_protocol(struct lws *wsi, const struct lws_protocols *p);
1739
Andy Greena654fc02014-04-03 07:16:40 +08001740/*
Alejandro Merycdc97172014-12-04 23:15:27 +01001741 * custom allocator
1742 */
Andy Greene99a83c2016-01-20 16:56:06 +08001743LWS_EXTERN void *
Alejandro Merycdc97172014-12-04 23:15:27 +01001744lws_realloc(void *ptr, size_t size);
1745
Andy Greene99a83c2016-01-20 16:56:06 +08001746LWS_EXTERN void * LWS_WARN_UNUSED_RESULT
Alejandro Merycdc97172014-12-04 23:15:27 +01001747lws_zalloc(size_t size);
1748
1749#define lws_malloc(S) lws_realloc(NULL, S)
1750#define lws_free(P) lws_realloc(P, 0)
Andy Green54806b12015-12-17 17:03:59 +08001751#define lws_free_set_NULL(P) do { lws_realloc(P, 0); (P) = NULL; } while(0)
Alejandro Merycdc97172014-12-04 23:15:27 +01001752
Andy Greendc8a3a82015-12-06 09:15:27 +08001753/* lws_plat_ */
Andy Greena654fc02014-04-03 07:16:40 +08001754LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001755lws_plat_delete_socket_from_fds(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001756 struct lws *wsi, int m);
Andy Greena654fc02014-04-03 07:16:40 +08001757LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001758lws_plat_insert_socket_into_fds(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001759 struct lws *wsi);
Andy Greena654fc02014-04-03 07:16:40 +08001760LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001761lws_plat_service_periodic(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001762
1763LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001764lws_plat_change_pollfd(struct lws_context *context, struct lws *wsi,
1765 struct lws_pollfd *pfd);
Andy Greena654fc02014-04-03 07:16:40 +08001766LWS_EXTERN int
1767lws_plat_context_early_init(void);
1768LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001769lws_plat_context_early_destroy(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001770LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001771lws_plat_context_late_destroy(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001772LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001773lws_poll_listen_fd(struct lws_pollfd *fd);
Andy Greena654fc02014-04-03 07:16:40 +08001774LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001775lws_plat_service(struct lws_context *context, int timeout_ms);
Andy Greend3a55052016-01-19 03:34:24 +08001776LWS_EXTERN LWS_VISIBLE int
1777lws_plat_service_tsi(struct lws_context *context, int timeout_ms, int tsi);
Andy Greena654fc02014-04-03 07:16:40 +08001778LWS_EXTERN int
Andy Green4386e362015-12-10 07:14:16 +08001779lws_plat_init(struct lws_context *context,
1780 struct lws_context_creation_info *info);
Andy Greena654fc02014-04-03 07:16:40 +08001781LWS_EXTERN void
1782lws_plat_drop_app_privileges(struct lws_context_creation_info *info);
1783LWS_EXTERN unsigned long long
1784time_in_microseconds(void);
Andy Greene99a83c2016-01-20 16:56:06 +08001785LWS_EXTERN const char * LWS_WARN_UNUSED_RESULT
Andy Greena654fc02014-04-03 07:16:40 +08001786lws_plat_inet_ntop(int af, const void *src, char *dst, int cnt);
Andy Green8c0d3c02015-11-02 20:34:12 +08001787
Andy Greene99a83c2016-01-20 16:56:06 +08001788LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green86c1ef12015-12-30 11:43:36 +08001789lws_check_utf8(unsigned char *state, unsigned char *buf, size_t len);
1790
Andy Green8c0d3c02015-11-02 20:34:12 +08001791#ifdef __cplusplus
1792};
1793#endif