blob: 09d140f5c7b6fa62df28eb8b1b00e201e6cd930b [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
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +020025#ifdef LWS_HAVE_SYS_TYPES_H
Andy Greene40aa9b2014-04-02 21:02:54 +080026#include <sys/types.h>
Joakim Soderberg91de9332013-02-06 15:30:33 +090027#endif
Joakim Soderberg4c531232013-02-06 15:26:58 +090028
Andy Green7c212cc2010-11-08 20:20:42 +000029#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
Patrick Ganstererb13eed42014-03-30 10:19:23 +020032#include <time.h>
Andy Green7c212cc2010-11-08 20:20:42 +000033#include <ctype.h>
Peter Young26757a72013-01-17 10:08:16 +080034#include <limits.h>
Peter Hinz56885f32011-03-02 22:03:47 +000035#include <stdarg.h>
Andy Green112f9802015-12-04 07:22:44 +080036#include <assert.h>
Andy Green8c1f6022016-01-26 20:56:56 +080037#if LWS_MAX_SMP > 1
38#include <pthread.h>
39#endif
Peter Hinz56885f32011-03-02 22:03:47 +000040
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +020041#ifdef LWS_HAVE_SYS_STAT_H
Peter Hinz56885f32011-03-02 22:03:47 +000042#include <sys/stat.h>
Patrick Gansterere5720a32014-02-28 00:57:19 +010043#endif
Peter Hinz56885f32011-03-02 22:03:47 +000044
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +010045#if defined(WIN32) || defined(_WIN32)
Stephan Eberleb820e2c2015-10-23 08:10:55 +020046#if (WINVER < 0x0501)
47#undef WINVER
48#undef _WIN32_WINNT
49#define WINVER 0x0501
50#define _WIN32_WINNT WINVER
51#endif
Joakim Soderberg4c531232013-02-06 15:26:58 +090052#define LWS_NO_DAEMONIZE
Patrick Gansterer2dbd8372014-02-28 12:37:52 +010053#define LWS_ERRNO WSAGetLastError()
54#define LWS_EAGAIN WSAEWOULDBLOCK
55#define LWS_EALREADY WSAEALREADY
56#define LWS_EINPROGRESS WSAEINPROGRESS
57#define LWS_EINTR WSAEINTR
58#define LWS_EISCONN WSAEISCONN
59#define LWS_EWOULDBLOCK WSAEWOULDBLOCK
Patrick Ganstererb47f87b2014-03-30 09:18:05 +020060#define LWS_POLLHUP (FD_CLOSE)
Patrick Gansterer0fc37b62014-03-28 15:44:56 +010061#define LWS_POLLIN (FD_READ | FD_ACCEPT)
62#define LWS_POLLOUT (FD_WRITE)
Patrick Gansterer73882e42014-03-29 08:25:58 +010063#define MSG_NOSIGNAL 0
64#define SHUT_RDWR SD_BOTH
65#define SOL_TCP IPPROTO_TCP
Andy Green8c1f6022016-01-26 20:56:56 +080066#define SHUT_WR SD_SEND
Joakim Soderberg4c531232013-02-06 15:26:58 +090067
Andy Green158e8042014-04-02 14:25:10 +080068#define compatible_close(fd) closesocket(fd)
Andy Greenaa775fd2015-12-26 08:56:58 +080069#define lws_set_blocking_send(wsi) wsi->sock_send_blocking = 1
Andy Greenc53f7ca2015-11-14 07:35:27 +080070#define lws_socket_is_valid(x) (!!x)
Andy Green40110e82015-12-14 08:52:03 +080071#define LWS_SOCK_INVALID 0
Peter Hinz56885f32011-03-02 22:03:47 +000072#include <winsock2.h>
Andy Greeneee0d8a2015-12-17 15:15:12 +080073#include <ws2tcpip.h>
Peter Hinz56885f32011-03-02 22:03:47 +000074#include <windows.h>
Joakim Soderbergd2f5b192014-04-07 11:28:08 +020075#include <tchar.h>
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +020076#ifdef LWS_HAVE_IN6ADDR_H
Andy Green0f58db32014-04-12 11:10:35 +080077#include <in6addr.h>
78#endif
Joakim Soderbergd2f5b192014-04-07 11:28:08 +020079#include <mstcpip.h>
80
81#ifndef __func__
82#define __func__ __FUNCTION__
83#endif
84
Patrick Gansterer6bb4b622014-04-15 18:39:26 +020085#ifdef _WIN32_WCE
86#define vsnprintf _vsnprintf
87#endif
88
Andy Green158e8042014-04-02 14:25:10 +080089#else /* not windows --> */
Andy Green8c0d3c02015-11-02 20:34:12 +080090
Patrick Ganstererb13eed42014-03-30 10:19:23 +020091#include <fcntl.h>
Patrick Ganstererb13eed42014-03-30 10:19:23 +020092#include <strings.h>
93#include <unistd.h>
Andy Greene77ddd82010-11-13 10:03:47 +000094#include <sys/types.h>
Andy Green5f2a8152015-11-02 08:21:08 +080095#ifndef MBED_OPERATORS
Andy Green8c0d3c02015-11-02 20:34:12 +080096#ifndef __cplusplus
97#include <errno.h>
98#endif
Andy Green5f2a8152015-11-02 08:21:08 +080099#include <netdb.h>
100#include <signal.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000101#include <sys/socket.h>
Andy Greene40aa9b2014-04-02 21:02:54 +0800102#ifdef LWS_BUILTIN_GETIFADDRS
103 #include <getifaddrs.h>
104#else
105 #include <ifaddrs.h>
106#endif
Dnyanesh Gate759e50c2014-09-26 05:39:05 +0800107#if defined (__ANDROID__)
108#include <syslog.h>
109#else
Andy Greene40aa9b2014-04-02 21:02:54 +0800110#include <sys/syslog.h>
Dnyanesh Gate759e50c2014-09-26 05:39:05 +0800111#endif
Andy Greene40aa9b2014-04-02 21:02:54 +0800112#include <sys/un.h>
113#include <sys/socket.h>
114#include <netdb.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000115#include <netinet/in.h>
Andy Green6c939552011-03-08 08:56:57 +0000116#include <netinet/tcp.h>
Andy Greenb45993c2010-12-18 15:13:50 +0000117#include <arpa/inet.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000118#include <poll.h>
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800119#ifdef LWS_USE_LIBEV
Andy Green86ed65f2016-02-14 09:27:41 +0800120#include <ev.h>
121#endif
122#ifdef LWS_USE_LIBUV
Alex Hultmana43c2ac2016-02-01 08:31:54 +0800123#include <uv.h>
Andy Green86ed65f2016-02-14 09:27:41 +0800124#endif
Andy Green7c212cc2010-11-08 20:20:42 +0000125#include <sys/mman.h>
Andy Green5f2a8152015-11-02 08:21:08 +0800126
127#endif /* MBED */
128
129#ifndef LWS_NO_FORK
130#ifdef LWS_HAVE_SYS_PRCTL_H
131#include <sys/prctl.h>
132#endif
133#endif
134
Andy Green038d5822011-02-14 20:58:26 +0000135#include <sys/time.h>
Andy Green7c212cc2010-11-08 20:20:42 +0000136
Patrick Gansterer2dbd8372014-02-28 12:37:52 +0100137#define LWS_ERRNO errno
138#define LWS_EAGAIN EAGAIN
139#define LWS_EALREADY EALREADY
140#define LWS_EINPROGRESS EINPROGRESS
141#define LWS_EINTR EINTR
142#define LWS_EISCONN EISCONN
143#define LWS_EWOULDBLOCK EWOULDBLOCK
Patrick Ganstererb47f87b2014-03-30 09:18:05 +0200144#define LWS_POLLHUP (POLLHUP|POLLERR)
145#define LWS_POLLIN (POLLIN)
146#define LWS_POLLOUT (POLLOUT)
Andy Green158e8042014-04-02 14:25:10 +0800147#define compatible_close(fd) close(fd)
Andy Green158e8042014-04-02 14:25:10 +0800148#define lws_set_blocking_send(wsi)
Andy Green2cd30742015-11-02 13:10:33 +0800149
150#ifdef MBED_OPERATORS
151#define lws_socket_is_valid(x) ((x) != NULL)
152#define LWS_SOCK_INVALID (NULL)
153#else
Andy Greenc53f7ca2015-11-14 07:35:27 +0800154#define lws_socket_is_valid(x) (x >= 0)
155#define LWS_SOCK_INVALID (-1)
Peter Hinz56885f32011-03-02 22:03:47 +0000156#endif
Andy Green2cd30742015-11-02 13:10:33 +0800157#endif
Peter Hinz56885f32011-03-02 22:03:47 +0000158
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +0200159#ifndef LWS_HAVE_BZERO
Andy Greene5ea1f92014-11-18 18:25:24 +0800160#ifndef bzero
Patrick Gansterer4a837272014-02-28 13:17:49 +0100161#define bzero(b, len) (memset((b), '\0', (len)), (void) 0)
162#endif
Andy Greene5ea1f92014-11-18 18:25:24 +0800163#endif
Patrick Gansterer4a837272014-02-28 13:17:49 +0100164
=?UTF-8?q?Joakim=20S=C3=B6derberg?=cefab312015-06-24 16:46:02 +0200165#ifndef LWS_HAVE_STRERROR
Patrick Gansterer9d614912014-02-28 00:59:53 +0100166#define strerror(x) ""
167#endif
168
Andy Green7c212cc2010-11-08 20:20:42 +0000169#ifdef LWS_OPENSSL_SUPPORT
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200170#ifdef USE_WOLFSSL
ABruines80a70682015-08-09 22:56:32 +0200171#ifdef USE_OLD_CYASSL
172#include <cyassl/openssl/ssl.h>
173#include <cyassl/error-ssl.h>
174#else
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200175#include <wolfssl/openssl/ssl.h>
176#include <wolfssl/error-ssl.h>
ABruines80a70682015-08-09 22:56:32 +0200177#endif /* not USE_OLD_CYASSL */
Andy Green23c5f2e2013-02-06 15:43:00 +0900178#else
Andy Green7c212cc2010-11-08 20:20:42 +0000179#include <openssl/ssl.h>
180#include <openssl/evp.h>
181#include <openssl/err.h>
Andy Green70dfebd2010-12-20 09:35:03 +0000182#include <openssl/md5.h>
Andy Greene2522172011-01-18 17:14:03 +0000183#include <openssl/sha.h>
Alexander Bruinesc3bcb892015-08-08 18:54:49 +0200184#endif /* not USE_WOLFSSL */
Darin Willitsdb9ba422011-02-14 20:56:24 +0000185#endif
186
Andy Green7c212cc2010-11-08 20:20:42 +0000187#include "libwebsockets.h"
188
Andy Green8c0d3c02015-11-02 20:34:12 +0800189#if defined(MBED_OPERATORS)
190#undef compatible_close
191#define compatible_close(fd) mbed3_delete_tcp_stream_socket(fd)
Andy Green11f27342015-11-08 12:10:26 +0800192#ifndef BIG_ENDIAN
193#define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */
194#endif
195#ifndef LITTLE_ENDIAN
196#define LITTLE_ENDIAN 1234
197#endif
198#ifndef BYTE_ORDER
199#define BYTE_ORDER LITTLE_ENDIAN
200#endif
Andy Green8c0d3c02015-11-02 20:34:12 +0800201#endif
202
Andy Green158e8042014-04-02 14:25:10 +0800203#if defined(WIN32) || defined(_WIN32)
204
205#ifndef BIG_ENDIAN
206#define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */
207#endif
208#ifndef LITTLE_ENDIAN
209#define LITTLE_ENDIAN 1234
210#endif
211#ifndef BYTE_ORDER
212#define BYTE_ORDER LITTLE_ENDIAN
213#endif
Andy Green11f27342015-11-08 12:10:26 +0800214#ifndef u_int64_t
Andy Green158e8042014-04-02 14:25:10 +0800215typedef unsigned __int64 u_int64_t;
Andy Green11f27342015-11-08 12:10:26 +0800216#endif
Andy Green158e8042014-04-02 14:25:10 +0800217
218#undef __P
219#ifndef __P
220#if __STDC__
221#define __P(protos) protos
222#else
223#define __P(protos) ()
224#endif
225#endif
226
227#else
228
229#include <sys/stat.h>
230#include <sys/cdefs.h>
231#include <sys/time.h>
232
233#if defined(__APPLE__)
234#include <machine/endian.h>
235#elif defined(__FreeBSD__)
236#include <sys/endian.h>
237#elif defined(__linux__)
238#include <endian.h>
239#endif
240
Andy Green8c0d3c02015-11-02 20:34:12 +0800241#ifdef __cplusplus
242extern "C" {
243#endif
Alejandro Meryead8afe2014-12-07 03:36:11 +0100244#include <stddef.h>
245
246#ifndef container_of
247#define container_of(P,T,M) ((T *)((char *)(P) - offsetof(T, M)))
248#endif
249
emironova49d0842014-09-16 14:05:13 +0400250#if defined(__QNX__)
251 #include <gulliver.h>
252 #if defined(__LITTLEENDIAN__)
253 #define BYTE_ORDER __LITTLEENDIAN__
254 #define LITTLE_ENDIAN __LITTLEENDIAN__
255 #define BIG_ENDIAN 4321 /* to show byte order (taken from gcc); for suppres warning that BIG_ENDIAN is not defined. */
256 #endif
257 #if defined(__BIGENDIAN__)
258 #define BYTE_ORDER __BIGENDIAN__
259 #define LITTLE_ENDIAN 1234 /* to show byte order (taken from gcc); for suppres warning that LITTLE_ENDIAN is not defined. */
260 #define BIG_ENDIAN __BIGENDIAN__
261 #endif
262#endif
263
Andy Green158e8042014-04-02 14:25:10 +0800264#if !defined(BYTE_ORDER)
265# define BYTE_ORDER __BYTE_ORDER
266#endif
267#if !defined(LITTLE_ENDIAN)
268# define LITTLE_ENDIAN __LITTLE_ENDIAN
269#endif
270#if !defined(BIG_ENDIAN)
271# define BIG_ENDIAN __BIG_ENDIAN
272#endif
273
274#endif
275
Darin Willitsc19456f2011-02-14 17:52:39 +0000276/*
277 * Mac OSX as well as iOS do not define the MSG_NOSIGNAL flag,
278 * but happily have something equivalent in the SO_NOSIGPIPE flag.
279 */
280#ifdef __APPLE__
Andy Green6ee372f2012-04-09 15:09:01 +0800281#define MSG_NOSIGNAL SO_NOSIGPIPE
Darin Willitsc19456f2011-02-14 17:52:39 +0000282#endif
283
Bud Davis229bfec2015-01-30 10:13:01 +0800284#ifdef _WIN32
285#ifndef FD_HASHTABLE_MODULUS
286#define FD_HASHTABLE_MODULUS 32
287#endif
288#endif
289
Andy Green8c1f6022016-01-26 20:56:56 +0800290#ifndef LWS_DEF_HEADER_LEN
291#define LWS_DEF_HEADER_LEN 1024
Andy Greenc0d6b632013-01-12 23:42:17 +0800292#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800293#ifndef LWS_DEF_HEADER_POOL
294#define LWS_DEF_HEADER_POOL 16
Andy Green3df58002015-12-25 12:44:12 +0800295#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800296#ifndef LWS_MAX_PROTOCOLS
Andy Greend91d5e82013-02-10 16:00:47 +0800297#define LWS_MAX_PROTOCOLS 5
Andy Greenc0d6b632013-01-12 23:42:17 +0800298#endif
299#ifndef LWS_MAX_EXTENSIONS_ACTIVE
Andy Greend738f842016-01-19 04:32:14 +0800300#define LWS_MAX_EXTENSIONS_ACTIVE 2
Andy Greenc0d6b632013-01-12 23:42:17 +0800301#endif
Andy Green67112662016-01-11 11:34:01 +0800302#ifndef LWS_MAX_EXT_OFFERS
303#define LWS_MAX_EXT_OFFERS 8
304#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800305#ifndef SPEC_LATEST_SUPPORTED
Andy Greend85cb202011-09-25 09:32:54 +0100306#define SPEC_LATEST_SUPPORTED 13
Andy Greenc0d6b632013-01-12 23:42:17 +0800307#endif
308#ifndef AWAITING_TIMEOUT
Andy Green8c1f6022016-01-26 20:56:56 +0800309#define AWAITING_TIMEOUT 20
Andy Greenc0d6b632013-01-12 23:42:17 +0800310#endif
311#ifndef CIPHERS_LIST_STRING
David Galeanof177f2a2013-01-10 10:15:19 +0800312#define CIPHERS_LIST_STRING "DEFAULT"
Andy Greenc0d6b632013-01-12 23:42:17 +0800313#endif
Andy Greena824d182013-01-15 20:52:29 +0800314#ifndef LWS_SOMAXCONN
315#define LWS_SOMAXCONN SOMAXCONN
316#endif
Andy Green7c212cc2010-11-08 20:20:42 +0000317
Andy Greene2522172011-01-18 17:14:03 +0000318#define MAX_WEBSOCKET_04_KEY_LEN 128
Andy Green54495112013-02-06 21:10:16 +0900319#define LWS_MAX_SOCKET_IO_BUF 4096
Andy Greenc0d6b632013-01-12 23:42:17 +0800320
321#ifndef SYSTEM_RANDOM_FILEPATH
Andy Green4739e5c2011-01-22 12:51:57 +0000322#define SYSTEM_RANDOM_FILEPATH "/dev/urandom"
Andy Greenc0d6b632013-01-12 23:42:17 +0800323#endif
Andy Greenc0d6b632013-01-12 23:42:17 +0800324
Andy Green5fd55cd2011-04-23 10:54:53 +0100325enum lws_websocket_opcodes_07 {
Andy Green54806b12015-12-17 17:03:59 +0800326 LWSWSOPC_CONTINUATION = 0,
327 LWSWSOPC_TEXT_FRAME = 1,
328 LWSWSOPC_BINARY_FRAME = 2,
Andy Greena41314f2011-05-23 10:00:03 +0100329
Andy Green54806b12015-12-17 17:03:59 +0800330 LWSWSOPC_NOSPEC__MUX = 7,
Andy Greena41314f2011-05-23 10:00:03 +0100331
332 /* control extensions 8+ */
333
Andy Green54806b12015-12-17 17:03:59 +0800334 LWSWSOPC_CLOSE = 8,
335 LWSWSOPC_PING = 9,
336 LWSWSOPC_PONG = 0xa,
Andy Green5fd55cd2011-04-23 10:54:53 +0100337};
338
Andy Greena41314f2011-05-23 10:00:03 +0100339
Andy Green7c212cc2010-11-08 20:20:42 +0000340enum lws_connection_states {
Andy Green54806b12015-12-17 17:03:59 +0800341 LWSS_HTTP,
342 LWSS_HTTP_ISSUING_FILE,
343 LWSS_HTTP_HEADERS,
344 LWSS_HTTP_BODY,
345 LWSS_DEAD_SOCKET,
346 LWSS_ESTABLISHED,
347 LWSS_CLIENT_UNCONNECTED,
348 LWSS_RETURNED_CLOSE_ALREADY,
349 LWSS_AWAITING_CLOSE_ACK,
350 LWSS_FLUSHING_STORED_SEND_BEFORE_CLOSE,
Andy Green8c1f6022016-01-26 20:56:56 +0800351 LWSS_SHUTDOWN,
Andy Green40110e82015-12-14 08:52:03 +0800352
Andy Green54806b12015-12-17 17:03:59 +0800353 LWSS_HTTP2_AWAIT_CLIENT_PREFACE,
354 LWSS_HTTP2_ESTABLISHED_PRE_SETTINGS,
355 LWSS_HTTP2_ESTABLISHED,
Andy Green7c212cc2010-11-08 20:20:42 +0000356};
357
Andrew Canadayafe26cf2014-07-13 01:07:36 -0400358enum http_version {
359 HTTP_VERSION_1_0,
360 HTTP_VERSION_1_1,
361};
362
363enum http_connection_type {
364 HTTP_CONNECTION_CLOSE,
365 HTTP_CONNECTION_KEEP_ALIVE
366};
367
Andy Green024eb6c2014-10-08 12:00:53 +0800368enum lws_pending_protocol_send {
369 LWS_PPS_NONE,
370 LWS_PPS_HTTP2_MY_SETTINGS,
371 LWS_PPS_HTTP2_ACK_SETTINGS,
Andy Greenbbbf07a2014-10-27 16:46:44 +0800372 LWS_PPS_HTTP2_PONG,
Andy Green024eb6c2014-10-08 12:00:53 +0800373};
374
Andy Green7c212cc2010-11-08 20:20:42 +0000375enum lws_rx_parse_state {
376 LWS_RXPS_NEW,
Andy Greene77ddd82010-11-13 10:03:47 +0000377
Andy Green67112662016-01-11 11:34:01 +0800378 LWS_RXPS_04_mask_1,
379 LWS_RXPS_04_mask_2,
380 LWS_RXPS_04_mask_3,
Andy Green3e5eb782011-01-18 18:14:26 +0000381
382 LWS_RXPS_04_FRAME_HDR_1,
Andy Green38e57bb2011-01-19 12:20:27 +0000383 LWS_RXPS_04_FRAME_HDR_LEN,
384 LWS_RXPS_04_FRAME_HDR_LEN16_2,
385 LWS_RXPS_04_FRAME_HDR_LEN16_1,
386 LWS_RXPS_04_FRAME_HDR_LEN64_8,
387 LWS_RXPS_04_FRAME_HDR_LEN64_7,
388 LWS_RXPS_04_FRAME_HDR_LEN64_6,
389 LWS_RXPS_04_FRAME_HDR_LEN64_5,
390 LWS_RXPS_04_FRAME_HDR_LEN64_4,
391 LWS_RXPS_04_FRAME_HDR_LEN64_3,
392 LWS_RXPS_04_FRAME_HDR_LEN64_2,
393 LWS_RXPS_04_FRAME_HDR_LEN64_1,
Andy Green3e5eb782011-01-18 18:14:26 +0000394
Andy Green283d0a22011-04-24 05:46:23 +0100395 LWS_RXPS_07_COLLECT_FRAME_KEY_1,
396 LWS_RXPS_07_COLLECT_FRAME_KEY_2,
397 LWS_RXPS_07_COLLECT_FRAME_KEY_3,
398 LWS_RXPS_07_COLLECT_FRAME_KEY_4,
399
Andy Green7c212cc2010-11-08 20:20:42 +0000400 LWS_RXPS_PAYLOAD_UNTIL_LENGTH_EXHAUSTED
401};
402
403
Andy Green0d338332011-02-12 11:57:43 +0000404enum connection_mode {
Andy Green54806b12015-12-17 17:03:59 +0800405 LWSCM_HTTP_SERVING,
406 LWSCM_HTTP_SERVING_ACCEPTED, /* actual HTTP service going on */
407 LWSCM_PRE_WS_SERVING_ACCEPT,
Andy Greend280b6e2013-01-15 13:40:23 +0800408
Andy Green54806b12015-12-17 17:03:59 +0800409 LWSCM_WS_SERVING,
410 LWSCM_WS_CLIENT,
Andy Green40110e82015-12-14 08:52:03 +0800411
Andy Green54806b12015-12-17 17:03:59 +0800412 LWSCM_HTTP2_SERVING,
Andy Green0d338332011-02-12 11:57:43 +0000413
Andy Greene2160712013-01-28 12:19:10 +0800414 /* transient, ssl delay hiding */
Andy Green54806b12015-12-17 17:03:59 +0800415 LWSCM_SSL_ACK_PENDING,
Andy Green8c1f6022016-01-26 20:56:56 +0800416 LWSCM_SSL_INIT,
Andy Greene2160712013-01-28 12:19:10 +0800417
Andy Greenbe93fef2011-02-14 20:25:43 +0000418 /* transient modes */
Andy Green54806b12015-12-17 17:03:59 +0800419 LWSCM_WSCL_WAITING_CONNECT,
420 LWSCM_WSCL_WAITING_PROXY_REPLY,
421 LWSCM_WSCL_ISSUE_HANDSHAKE,
422 LWSCM_WSCL_ISSUE_HANDSHAKE2,
423 LWSCM_WSCL_WAITING_SSL,
424 LWSCM_WSCL_WAITING_SERVER_REPLY,
425 LWSCM_WSCL_WAITING_EXTENSION_CONNECT,
426 LWSCM_WSCL_PENDING_CANDIDATE_CHILD,
Andy Greenbe93fef2011-02-14 20:25:43 +0000427
Andy Green0d338332011-02-12 11:57:43 +0000428 /* special internal types */
Andy Green54806b12015-12-17 17:03:59 +0800429 LWSCM_SERVER_LISTENER,
Andy Green0d338332011-02-12 11:57:43 +0000430};
431
Andy Greenca0a1292013-03-16 11:24:23 +0800432enum {
433 LWS_RXFLOW_ALLOW = (1 << 0),
434 LWS_RXFLOW_PENDING_CHANGE = (1 << 1),
435};
436
Andy Green1fb95e82015-12-26 17:20:34 +0800437/* this is not usable directly by user code any more, lws_close_reason() */
438#define LWS_WRITE_CLOSE 4
439
Andy Green4b85c1d2015-12-04 11:08:32 +0800440struct lws_protocols;
441struct lws;
Andy Greene92cd172011-01-19 13:11:55 +0000442
Andy Green86ed65f2016-02-14 09:27:41 +0800443#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
444
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800445struct lws_io_watcher {
Andy Green86ed65f2016-02-14 09:27:41 +0800446#ifdef LWS_USE_LIBEV
447 ev_io ev_watcher;
448#endif
449#ifdef LWS_USE_LIBUV
450 uv_poll_t uv_watcher;
451#endif
452 struct lws_context *context;
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800453};
454
455struct lws_signal_watcher {
Andy Green86ed65f2016-02-14 09:27:41 +0800456#ifdef LWS_USE_LIBEV
457 ev_signal ev_watcher;
458#endif
459#ifdef LWS_USE_LIBUV
460 uv_signal_t uv_watcher;
461#endif
462 struct lws_context *context;
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800463};
Andy Green86ed65f2016-02-14 09:27:41 +0800464#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800465
Bud Davis229bfec2015-01-30 10:13:01 +0800466#ifdef _WIN32
467#define LWS_FD_HASH(fd) ((fd ^ (fd >> 8) ^ (fd >> 16)) % FD_HASHTABLE_MODULUS)
Andy Green3ef579b2015-12-04 09:23:56 +0800468struct lws_fd_hashtable {
Andy Green4b85c1d2015-12-04 11:08:32 +0800469 struct lws **wsi;
Bud Davis229bfec2015-01-30 10:13:01 +0800470 int length;
471};
472#endif
473
Andy Green3df58002015-12-25 12:44:12 +0800474/*
475 * This is totally opaque to code using the library. It's exported as a
476 * forward-reference pointer-only declaration; the user can use the pointer with
477 * other APIs to get information out of it.
478 */
479
480struct lws_fragments {
481 unsigned short offset;
482 unsigned short len;
483 unsigned char nfrag; /* which ah->frag[] continues this content, or 0 */
484};
485
486/*
487 * these are assigned from a pool held in the context.
488 * Both client and server mode uses them for http header analysis
489 */
490
491struct allocated_headers {
Andy Green2c218e72016-02-15 12:37:04 +0800492 struct lws *wsi; /* owner */
Andy Greende132b92015-12-25 13:48:20 +0800493 char *data; /* prepared by context init to point to dedicated storage */
494 /*
495 * the randomly ordered fragments, indexed by frag_index and
496 * lws_fragments->nfrag for continuation.
497 */
498 struct lws_fragments frags[WSI_TOKEN_COUNT * 2];
Andy Green8c1f6022016-01-26 20:56:56 +0800499 time_t assigned;
Andy Green3df58002015-12-25 12:44:12 +0800500 /*
501 * for each recognized token, frag_index says which frag[] his data
502 * starts in (0 means the token did not appear)
503 * the actual header data gets dumped as it comes in, into data[]
504 */
505 unsigned char frag_index[WSI_TOKEN_COUNT];
Andy Green2c218e72016-02-15 12:37:04 +0800506 unsigned char rx[2048];
507 unsigned int rxpos;
508 unsigned int rxlen;
509
Andy Green3df58002015-12-25 12:44:12 +0800510#ifndef LWS_NO_CLIENT
511 char initial_handshake_hash_base64[30];
512 unsigned short c_port;
513#endif
Andy Greenaa775fd2015-12-26 08:56:58 +0800514
515 unsigned short pos;
516 unsigned char in_use;
517 unsigned char nfrag;
Andy Green3df58002015-12-25 12:44:12 +0800518};
519
Andy Greend3a55052016-01-19 03:34:24 +0800520/*
521 * so we can have n connections being serviced simultaneously,
522 * these things need to be isolated per-thread.
523 */
524
525struct lws_context_per_thread {
Andy Green8c1f6022016-01-26 20:56:56 +0800526#if LWS_MAX_SMP > 1
527 pthread_mutex_t lock;
528#endif
Andy Greend3a55052016-01-19 03:34:24 +0800529 struct lws_pollfd *fds;
530 struct lws *rx_draining_ext_list;
531 struct lws *tx_draining_ext_list;
Andy Green8c1f6022016-01-26 20:56:56 +0800532 struct lws *timeout_list;
533 void *http_header_data;
534 struct allocated_headers *ah_pool;
535 struct lws *ah_wait_list;
536 int ah_wait_list_length;
Andy Greend3a55052016-01-19 03:34:24 +0800537#ifdef LWS_OPENSSL_SUPPORT
538 struct lws *pending_read_list; /* linked list */
539#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800540#ifndef LWS_NO_SERVER
541 struct lws *wsi_listening;
542#endif
Andy Green86ed65f2016-02-14 09:27:41 +0800543#if defined(LWS_USE_LIBEV)
544 struct ev_loop *io_loop_ev;
545#endif
546#if defined(LWS_USE_LIBUV)
547 uv_loop_t *io_loop_uv;
548 uv_signal_t signals[8];
549#endif
550#if defined(LWS_USE_LIBEV)
551 struct lws_io_watcher w_accept;
552#endif
553#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
554 struct lws_signal_watcher w_sigint;
555 unsigned char ev_loop_foreign:1;
556#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800557 lws_sockfd_type lserv_fd;
558
559 unsigned long count_conns;
Andy Greend3a55052016-01-19 03:34:24 +0800560 /*
561 * usable by anything in the service code, but only if the scope
562 * does not last longer than the service action (since next service
563 * of any socket can likewise use it and overwrite)
564 */
565 unsigned char *serv_buf;
566#ifdef _WIN32
567 WSAEVENT *events;
568#else
569 int dummy_pipe_fds[2];
570#endif
Andy Green8c1f6022016-01-26 20:56:56 +0800571 unsigned int fds_count;
572
573 short ah_count_in_use;
Andy Greend3a55052016-01-19 03:34:24 +0800574};
575
576/*
577 * the rest is managed per-context, that includes
578 *
579 * - processwide single fd -> wsi lookup
580 * - contextwide headers pool
581 * - contextwide ssl context
582 * - contextwide proxy
583 */
584
Andy Green4b85c1d2015-12-04 11:08:32 +0800585struct lws_context {
Andy Greenaa775fd2015-12-26 08:56:58 +0800586 time_t last_timeout_check_s;
587 struct lws_plat_file_ops fops;
Andy Greend3a55052016-01-19 03:34:24 +0800588 struct lws_context_per_thread pt[LWS_MAX_SMP];
Bud Davis229bfec2015-01-30 10:13:01 +0800589#ifdef _WIN32
590/* different implementation between unix and windows */
Andy Green3ef579b2015-12-04 09:23:56 +0800591 struct lws_fd_hashtable fd_hashtable[FD_HASHTABLE_MODULUS];
Bud Davis229bfec2015-01-30 10:13:01 +0800592#else
Andy Green4b85c1d2015-12-04 11:08:32 +0800593 struct lws **lws_lookup; /* fd to wsi */
Bud Davis229bfec2015-01-30 10:13:01 +0800594#endif
Mattias Lundberg03bb8f92014-02-18 10:06:57 +0100595 const char *iface;
Andy Greenaa775fd2015-12-26 08:56:58 +0800596 const struct lws_token_limits *token_limits;
597 void *user_space;
Andy Greend738f842016-01-19 04:32:14 +0800598
Andy Greenaa775fd2015-12-26 08:56:58 +0800599 const struct lws_protocols *protocols;
Andy Greend3a55052016-01-19 03:34:24 +0800600
Andy Greenaa775fd2015-12-26 08:56:58 +0800601#ifdef LWS_OPENSSL_SUPPORT
602 SSL_CTX *ssl_ctx;
603 SSL_CTX *ssl_client_ctx;
Andy Greenaa775fd2015-12-26 08:56:58 +0800604#endif
605#ifndef LWS_NO_EXTENSIONS
606 const struct lws_extension *extensions;
607#endif
Andy Green86ed65f2016-02-14 09:27:41 +0800608#if defined(LWS_USE_LIBEV)
609 lws_ev_signal_cb_t * lws_ev_sigint_cb;
610#endif
611#if defined(LWS_USE_LIBUV)
612 lws_uv_signal_cb_t * lws_uv_sigint_cb;
613#endif
Andy Greenaa775fd2015-12-26 08:56:58 +0800614 char http_proxy_address[128];
615 char proxy_basic_auth_token[128];
616 char canonical_hostname[128];
617#ifdef LWS_LATENCY
618 unsigned long worst_latency;
619 char worst_latency_info[256];
620#endif
Andy Greenb8b247d2013-01-22 07:20:08 +0800621
Andy Greenaa775fd2015-12-26 08:56:58 +0800622 int max_fds;
623 int listen_port;
Andy Green86ed65f2016-02-14 09:27:41 +0800624#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
Andy Greenaa775fd2015-12-26 08:56:58 +0800625 int use_ev_sigint;
626#endif
Andy Green24cba922013-01-19 13:56:10 +0800627 int started_with_parent;
628
Andy Green44eee682011-02-10 09:32:24 +0000629 int fd_random;
Andy Green54806b12015-12-17 17:03:59 +0800630 int lserv_mod;
Andy Green86ed65f2016-02-14 09:27:41 +0800631 int count_wsi_allocated;
Andy Greenaa775fd2015-12-26 08:56:58 +0800632 unsigned int http_proxy_port;
633 unsigned int options;
Andy Greend3a55052016-01-19 03:34:24 +0800634 unsigned int fd_limit_per_thread;
Andy Green6ee372f2012-04-09 15:09:01 +0800635
Patrick Gansterer1ee57f62014-03-06 11:57:50 +0100636 /*
637 * set to the Thread ID that's doing the service loop just before entry
638 * to poll indicates service thread likely idling in poll()
639 * volatile because other threads may check it as part of processing
640 * for pollfd event change.
641 */
642 volatile int service_tid;
Andy Greenc35b36b2015-12-24 13:00:54 +0800643 int service_tid_detected;
Patrick Gansterer1ee57f62014-03-06 11:57:50 +0100644
Andy Greenaa775fd2015-12-26 08:56:58 +0800645 int count_protocols;
Andy Greena690cd02013-02-09 12:25:31 +0800646 int ka_time;
647 int ka_probes;
648 int ka_interval;
649
Andy Greenb45993c2010-12-18 15:13:50 +0000650#ifdef LWS_OPENSSL_SUPPORT
651 int use_ssl;
James Devine5b34c972013-12-14 11:41:29 +0800652 int allow_non_ssl_on_ssl_port;
joseph.urciuoli4d9c8fc2014-10-16 08:53:19 +0800653 unsigned int user_supplied_ssl_ctx:1;
Andy Greend3a55052016-01-19 03:34:24 +0800654#define lws_ssl_anybody_has_buffered_read(w) \
655 (w->context->use_ssl && \
656 w->context->pt[(int)w->tsi].pending_read_list)
657#define lws_ssl_anybody_has_buffered_read_tsi(c, t) \
658 (c->use_ssl && \
659 c->pt[(int)t].pending_read_list)
Andy Green52815602015-01-29 08:36:18 +0800660#else
661#define lws_ssl_anybody_has_buffered_read(ctx) (0)
Andy Greend3a55052016-01-19 03:34:24 +0800662#define lws_ssl_anybody_has_buffered_read_tsi(ctx, t) (0)
Andy Greenb45993c2010-12-18 15:13:50 +0000663#endif
Andy Green40110e82015-12-14 08:52:03 +0800664
Andy Green3df58002015-12-25 12:44:12 +0800665 short max_http_header_data;
666 short max_http_header_pool;
Andy Greend3a55052016-01-19 03:34:24 +0800667 short count_threads;
Andy Green9a9d5ea2016-01-18 11:49:41 +0800668
669 unsigned int being_destroyed:1;
Andy Green86ed65f2016-02-14 09:27:41 +0800670 unsigned int requested_kill:1;
Andy Greenb45993c2010-12-18 15:13:50 +0000671};
672
Andy Green86ed65f2016-02-14 09:27:41 +0800673LWS_EXTERN void
674lws_close_free_wsi_final(struct lws *wsi);
675LWS_EXTERN void
676lws_libuv_closehandle(struct lws *wsi);
677
Andy Greena717df22014-04-11 13:14:37 +0800678enum {
679 LWS_EV_READ = (1 << 0),
680 LWS_EV_WRITE = (1 << 1),
681 LWS_EV_START = (1 << 2),
682 LWS_EV_STOP = (1 << 3),
Andy Green86ed65f2016-02-14 09:27:41 +0800683
684 LWS_EV_PREPARE_DELETION = (1 << 31),
Andy Greena717df22014-04-11 13:14:37 +0800685};
686
Andy Green86ed65f2016-02-14 09:27:41 +0800687#if defined(LWS_USE_LIBEV)
Andy Greena717df22014-04-11 13:14:37 +0800688LWS_EXTERN void
Andy Green11c05bf2015-12-16 18:19:08 +0800689lws_libev_accept(struct lws *new_wsi, lws_sockfd_type accept_fd);
Andy Greena717df22014-04-11 13:14:37 +0800690LWS_EXTERN void
Andy Green11c05bf2015-12-16 18:19:08 +0800691lws_libev_io(struct lws *wsi, int flags);
Andy Greena717df22014-04-11 13:14:37 +0800692LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +0800693lws_libev_init_fd_table(struct lws_context *context);
Andy Greena717df22014-04-11 13:14:37 +0800694LWS_EXTERN void
Andy Green86ed65f2016-02-14 09:27:41 +0800695lws_libev_destroyloop(struct lws_context *context, int tsi);
696LWS_EXTERN void
697lws_libev_run(const struct lws_context *context, int tsi);
698#define LWS_LIBEV_ENABLED(context) (context->options & LWS_SERVER_OPTION_LIBEV)
699LWS_EXTERN void lws_feature_status_libev(struct lws_context_creation_info *info);
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800700#else
Andy Green86ed65f2016-02-14 09:27:41 +0800701#define lws_libev_accept(_a, _b) ((void) 0)
702#define lws_libev_io(_a, _b) ((void) 0)
703#define lws_libev_init_fd_table(_a) (0)
704#define lws_libev_run(_a, _b) ((void) 0)
705#define lws_libev_destroyloop(_a, _b) ((void) 0)
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800706#define LWS_LIBEV_ENABLED(context) (0)
Andy Green86ed65f2016-02-14 09:27:41 +0800707#if LWS_POSIX
Andy Greena717df22014-04-11 13:14:37 +0800708#define lws_feature_status_libev(_a) \
709 lwsl_notice("libev support not compiled in\n")
Andy Green8c0d3c02015-11-02 20:34:12 +0800710#else
711#define lws_feature_status_libev(_a)
712#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800713#endif
714
Andy Green86ed65f2016-02-14 09:27:41 +0800715#if defined(LWS_USE_LIBUV)
716LWS_EXTERN void
717lws_libuv_accept(struct lws *new_wsi, lws_sockfd_type accept_fd);
718LWS_EXTERN void
719lws_libuv_io(struct lws *wsi, int flags);
720LWS_EXTERN int
721lws_libuv_init_fd_table(struct lws_context *context);
722LWS_EXTERN void
723lws_libuv_run(const struct lws_context *context, int tsi);
724LWS_EXTERN void
725lws_libuv_destroyloop(struct lws_context *context, int tsi);
726#define LWS_LIBUV_ENABLED(context) (context->options & LWS_SERVER_OPTION_LIBUV)
727LWS_EXTERN void lws_feature_status_libuv(struct lws_context_creation_info *info);
728#else
729#define lws_libuv_accept(_a, _b) ((void) 0)
730#define lws_libuv_io(_a, _b) ((void) 0)
731#define lws_libuv_init_fd_table(_a) (0)
732#define lws_libuv_run(_a, _b) ((void) 0)
733#define lws_libuv_destroyloop(_a, _b) ((void) 0)
734#define LWS_LIBUV_ENABLED(context) (0)
735#if LWS_POSIX
736#define lws_feature_status_libuv(_a) \
737 lwsl_notice("libuv support not compiled in\n")
738#else
739#define lws_feature_status_libuv(_a)
740#endif
741#endif
742
743
Andy Green055f2972014-03-24 16:09:25 +0800744#ifdef LWS_USE_IPV6
Andy Greendc8a3a82015-12-06 09:15:27 +0800745#define LWS_IPV6_ENABLED(context) \
746 (!(context->options & LWS_SERVER_OPTION_DISABLE_IPV6))
James Devine3f13ea22014-03-24 16:09:25 +0800747#else
748#define LWS_IPV6_ENABLED(context) (0)
749#endif
Andrew Canaday9769f4f2014-03-23 13:25:07 +0800750
Andy Greenb1a9e502013-11-10 15:15:21 +0800751enum uri_path_states {
752 URIPS_IDLE,
753 URIPS_SEEN_SLASH,
754 URIPS_SEEN_SLASH_DOT,
755 URIPS_SEEN_SLASH_DOT_DOT,
756};
757
758enum uri_esc_states {
759 URIES_IDLE,
760 URIES_SEEN_PERCENT,
761 URIES_SEEN_PERCENT_H1,
762};
Andy Greenf3d3b402011-02-09 07:16:34 +0000763
Andy Green024eb6c2014-10-08 12:00:53 +0800764/* notice that these union members:
Andy Green40110e82015-12-14 08:52:03 +0800765 *
Andy Green024eb6c2014-10-08 12:00:53 +0800766 * hdr
767 * http
768 * http2
Andy Green40110e82015-12-14 08:52:03 +0800769 *
Andy Green024eb6c2014-10-08 12:00:53 +0800770 * all have a pointer to allocated_headers struct as their first member.
Andy Green40110e82015-12-14 08:52:03 +0800771 *
Andy Green024eb6c2014-10-08 12:00:53 +0800772 * It means for allocated_headers access, the three union paths can all be
Peter Pentchevbb085da2015-12-03 15:55:11 +0200773 * used interchangeably to access the same data
Andy Green024eb6c2014-10-08 12:00:53 +0800774 */
775
Andy Green84fd9492013-11-09 11:40:32 +0800776struct _lws_http_mode_related {
Andy Green024eb6c2014-10-08 12:00:53 +0800777 /* MUST be first in struct */
Andy Green84fd9492013-11-09 11:40:32 +0800778 struct allocated_headers *ah; /* mirroring _lws_header_related */
Andy Green8c1f6022016-01-26 20:56:56 +0800779 struct lws *ah_wait_list;
780 struct lws *new_wsi_list;
Andy Green84fd9492013-11-09 11:40:32 +0800781 unsigned long filepos;
782 unsigned long filelen;
Andy Greenaa775fd2015-12-26 08:56:58 +0800783 lws_filefd_type fd;
kapejodce64fb02013-11-19 13:38:16 +0100784
Andrew Canadayafe26cf2014-07-13 01:07:36 -0400785 enum http_version request_version;
786 enum http_connection_type connection_type;
Andy Green2cd30742015-11-02 13:10:33 +0800787 unsigned int content_length;
788 unsigned int content_remain;
Andy Green84fd9492013-11-09 11:40:32 +0800789};
790
Andy Green024eb6c2014-10-08 12:00:53 +0800791#ifdef LWS_USE_HTTP2
792
793enum lws_http2_settings {
794 LWS_HTTP2_SETTINGS__HEADER_TABLE_SIZE = 1,
795 LWS_HTTP2_SETTINGS__ENABLE_PUSH,
796 LWS_HTTP2_SETTINGS__MAX_CONCURRENT_STREAMS,
797 LWS_HTTP2_SETTINGS__INITIAL_WINDOW_SIZE,
798 LWS_HTTP2_SETTINGS__MAX_FRAME_SIZE,
799 LWS_HTTP2_SETTINGS__MAX_HEADER_LIST_SIZE,
Andy Green40110e82015-12-14 08:52:03 +0800800
Andy Green024eb6c2014-10-08 12:00:53 +0800801 LWS_HTTP2_SETTINGS__COUNT /* always last */
Andy Greena54f2322014-09-30 09:43:14 +0800802};
803
Andy Green024eb6c2014-10-08 12:00:53 +0800804enum lws_http2_wellknown_frame_types {
805 LWS_HTTP2_FRAME_TYPE_DATA,
806 LWS_HTTP2_FRAME_TYPE_HEADERS,
807 LWS_HTTP2_FRAME_TYPE_PRIORITY,
808 LWS_HTTP2_FRAME_TYPE_RST_STREAM,
809 LWS_HTTP2_FRAME_TYPE_SETTINGS,
810 LWS_HTTP2_FRAME_TYPE_PUSH_PROMISE,
811 LWS_HTTP2_FRAME_TYPE_PING,
812 LWS_HTTP2_FRAME_TYPE_GOAWAY,
813 LWS_HTTP2_FRAME_TYPE_WINDOW_UPDATE,
814 LWS_HTTP2_FRAME_TYPE_CONTINUATION,
Andy Green40110e82015-12-14 08:52:03 +0800815
Andy Green024eb6c2014-10-08 12:00:53 +0800816 LWS_HTTP2_FRAME_TYPE_COUNT /* always last */
817};
818
Andy Green91b05892014-10-17 08:38:44 +0800819enum lws_http2_flags {
820 LWS_HTTP2_FLAG_END_STREAM = 1,
821 LWS_HTTP2_FLAG_END_HEADERS = 4,
822 LWS_HTTP2_FLAG_PADDED = 8,
823 LWS_HTTP2_FLAG_PRIORITY = 0x20,
824
825 LWS_HTTP2_FLAG_SETTINGS_ACK = 1,
826};
827
Andy Green024eb6c2014-10-08 12:00:53 +0800828#define LWS_HTTP2_STREAM_ID_MASTER 0
829#define LWS_HTTP2_FRAME_HEADER_LENGTH 9
830#define LWS_HTTP2_SETTINGS_LENGTH 6
831
832struct http2_settings {
833 unsigned int setting[LWS_HTTP2_SETTINGS__COUNT];
834};
835
Andy Greenecc2e722014-10-09 16:57:47 +0800836enum http2_hpack_state {
Andy Green40110e82015-12-14 08:52:03 +0800837
Andy Green200f3852014-10-18 12:23:05 +0800838 /* optional before first header block */
839 HPKS_OPT_PADDING,
840 HKPS_OPT_E_DEPENDENCY,
841 HKPS_OPT_WEIGHT,
Andy Green40110e82015-12-14 08:52:03 +0800842
Andy Green200f3852014-10-18 12:23:05 +0800843 /* header block */
Andy Greenecc2e722014-10-09 16:57:47 +0800844 HPKS_TYPE,
Andy Green40110e82015-12-14 08:52:03 +0800845
Andy Green2add6342014-10-12 08:38:16 +0800846 HPKS_IDX_EXT,
Andy Green40110e82015-12-14 08:52:03 +0800847
Andy Greenecc2e722014-10-09 16:57:47 +0800848 HPKS_HLEN,
849 HPKS_HLEN_EXT,
850
851 HPKS_DATA,
Andy Green40110e82015-12-14 08:52:03 +0800852
Andy Green200f3852014-10-18 12:23:05 +0800853 /* optional after last header block */
854 HKPS_OPT_DISCARD_PADDING,
Andy Greenecc2e722014-10-09 16:57:47 +0800855};
856
Andy Green2add6342014-10-12 08:38:16 +0800857enum http2_hpack_type {
858 HPKT_INDEXED_HDR_7,
859 HPKT_INDEXED_HDR_6_VALUE_INCR,
860 HPKT_LITERAL_HDR_VALUE_INCR,
861 HPKT_INDEXED_HDR_4_VALUE,
862 HPKT_LITERAL_HDR_VALUE,
863 HPKT_SIZE_5
864};
865
Andy Green200f3852014-10-18 12:23:05 +0800866struct hpack_dt_entry {
867 int token; /* additions that don't map to a token are ignored */
868 int arg_offset;
869 int arg_len;
870};
871
872struct hpack_dynamic_table {
873 struct hpack_dt_entry *entries;
874 char *args;
875 int pos;
876 int next;
877 int num_entries;
878 int args_length;
879};
880
Andy Green024eb6c2014-10-08 12:00:53 +0800881struct _lws_http2_related {
Andy Green40110e82015-12-14 08:52:03 +0800882 /*
Andy Green024eb6c2014-10-08 12:00:53 +0800883 * having this first lets us also re-use all HTTP union code
884 * and in turn, http_mode_related has allocated headers in right
885 * place so we can use the header apis on the wsi directly still
886 */
887 struct _lws_http_mode_related http; /* MUST BE FIRST IN STRUCT */
888
889 struct http2_settings my_settings;
890 struct http2_settings peer_settings;
Andy Green40110e82015-12-14 08:52:03 +0800891
Andy Green4b85c1d2015-12-04 11:08:32 +0800892 struct lws *parent_wsi;
893 struct lws *next_child_wsi;
Andy Green024eb6c2014-10-08 12:00:53 +0800894
Andy Green200f3852014-10-18 12:23:05 +0800895 struct hpack_dynamic_table *hpack_dyn_table;
Andy Greenaa775fd2015-12-26 08:56:58 +0800896 struct lws *stream_wsi;
897 unsigned char ping_payload[8];
898 unsigned char one_setting[LWS_HTTP2_SETTINGS_LENGTH];
Andy Green40110e82015-12-14 08:52:03 +0800899
Andy Green024eb6c2014-10-08 12:00:53 +0800900 unsigned int count;
Andy Green024eb6c2014-10-08 12:00:53 +0800901 unsigned int length;
902 unsigned int stream_id;
Andy Greenaa775fd2015-12-26 08:56:58 +0800903 enum http2_hpack_state hpack;
904 enum http2_hpack_type hpack_type;
905 unsigned int header_index;
906 unsigned int hpack_len;
907 unsigned int hpack_e_dep;
908 int tx_credit;
909 unsigned int my_stream_id;
910 unsigned int child_count;
911 int my_priority;
Andy Green67112662016-01-11 11:34:01 +0800912
Andy Green91b05892014-10-17 08:38:44 +0800913 unsigned int END_STREAM:1;
914 unsigned int END_HEADERS:1;
Andy Green1cea5812014-10-19 07:36:20 +0800915 unsigned int send_END_STREAM:1;
Andy Green7df53c52014-10-22 15:37:28 +0800916 unsigned int GOING_AWAY;
917 unsigned int requested_POLLOUT:1;
Andy Green97ee57f2014-10-29 09:39:08 +0800918 unsigned int waiting_tx_credit:1;
Andy Greenecc2e722014-10-09 16:57:47 +0800919 unsigned int huff:1;
920 unsigned int value:1;
Andy Green40110e82015-12-14 08:52:03 +0800921
Andy Greenaa775fd2015-12-26 08:56:58 +0800922 unsigned short round_robin_POLLOUT;
923 unsigned short count_POLLOUT_children;
924 unsigned short hpack_pos;
925
926 unsigned char type;
927 unsigned char flags;
928 unsigned char frame_state;
929 unsigned char padding;
930 unsigned char hpack_m;
Andy Green024eb6c2014-10-08 12:00:53 +0800931 unsigned char initialized;
Andy Green024eb6c2014-10-08 12:00:53 +0800932};
933
Andy Green7df53c52014-10-22 15:37:28 +0800934#define HTTP2_IS_TOPLEVEL_WSI(wsi) (!wsi->u.http2.parent_wsi)
Andy Green024eb6c2014-10-08 12:00:53 +0800935
936#endif
937
Andy Green623a98d2013-01-21 11:04:23 +0800938struct _lws_header_related {
Andy Green024eb6c2014-10-08 12:00:53 +0800939 /* MUST be first in struct */
Andy Green16ab3182013-02-10 18:02:31 +0800940 struct allocated_headers *ah;
Andy Green8c1f6022016-01-26 20:56:56 +0800941 struct lws *ah_wait_list;
Andy Greenb1a9e502013-11-10 15:15:21 +0800942 enum uri_path_states ups;
943 enum uri_esc_states ues;
Andy Greende132b92015-12-25 13:48:20 +0800944 short lextable_pos;
945 unsigned short current_token_limit;
Andy Greenb1a9e502013-11-10 15:15:21 +0800946 char esc_stash;
Andy Green3ba035d2015-12-18 15:40:03 +0800947 char post_literal_equal;
Andy Greende132b92015-12-25 13:48:20 +0800948 unsigned char parser_state; /* enum lws_token_indexes */
Andy Green809d69a2016-01-14 11:37:56 +0800949 char redirects;
Andy Green4019aab2016-01-30 11:43:10 +0800950 char more_rx_waiting;
Andy Green623a98d2013-01-21 11:04:23 +0800951};
952
953struct _lws_websocket_related {
Andy Green2c218e72016-02-15 12:37:04 +0800954 /* cheapest way to deal with ah overlap with ws union transition */
955 struct _lws_header_related *hdr;
Andy Green67112662016-01-11 11:34:01 +0800956 char *rx_ubuf;
Andy Green4019aab2016-01-30 11:43:10 +0800957 unsigned int rx_ubuf_alloc;
Andy Green67112662016-01-11 11:34:01 +0800958 struct lws *rx_draining_ext_list;
959 struct lws *tx_draining_ext_list;
Andy Greende132b92015-12-25 13:48:20 +0800960 size_t rx_packet_length;
Andy Green67112662016-01-11 11:34:01 +0800961 unsigned int rx_ubuf_head;
962 unsigned char mask[4];
Andy Green1fb95e82015-12-26 17:20:34 +0800963 /* Also used for close content... control opcode == < 128 */
Andy Green67112662016-01-11 11:34:01 +0800964 unsigned char ping_payload_buf[128 - 3 + LWS_PRE];
Andy Green1fb95e82015-12-26 17:20:34 +0800965
Andy Greenaa775fd2015-12-26 08:56:58 +0800966 unsigned char ping_payload_len;
Andy Green67112662016-01-11 11:34:01 +0800967 unsigned char mask_idx;
Andy Green623a98d2013-01-21 11:04:23 +0800968 unsigned char opcode;
Andy Green623a98d2013-01-21 11:04:23 +0800969 unsigned char rsv;
Andy Green67112662016-01-11 11:34:01 +0800970 unsigned char rsv_first_msg;
Andy Green1fb95e82015-12-26 17:20:34 +0800971 /* zero if no info, or length including 2-byte close code */
972 unsigned char close_in_ping_buffer_len;
Andy Green0c7b38b2015-12-29 09:46:03 +0800973 unsigned char utf8;
Andy Green67112662016-01-11 11:34:01 +0800974 unsigned char stashed_write_type;
975 unsigned char tx_draining_stashed_wp;
Andy Greende132b92015-12-25 13:48:20 +0800976
977 unsigned int final:1;
Andy Greend91d5e82013-02-10 16:00:47 +0800978 unsigned int frame_is_binary:1;
Andy Greend91d5e82013-02-10 16:00:47 +0800979 unsigned int all_zero_nonce:1;
Andy Greend91d5e82013-02-10 16:00:47 +0800980 unsigned int this_frame_masked:1;
Andy Green1f4267b2013-10-17 08:09:19 +0800981 unsigned int inside_frame:1; /* next write will be more of frame */
982 unsigned int clean_buffer:1; /* buffer not rewritten by extension */
Andy Green40d5abc2015-04-17 20:29:58 +0800983 unsigned int payload_is_close:1; /* process as PONG, but it is close */
Andy Greenba38a7e2015-12-25 13:14:09 +0800984 unsigned int ping_pending_flag:1;
Andy Green977734e2015-12-28 16:51:08 +0800985 unsigned int continuation_possible:1;
Andy Green91d624e2015-12-28 17:05:40 +0800986 unsigned int owed_a_fin:1;
Andy Green9b81d3c2015-12-29 12:28:48 +0800987 unsigned int check_utf8:1;
988 unsigned int defeat_check_utf8:1;
Andy Green67112662016-01-11 11:34:01 +0800989 unsigned int pmce_compressed_message:1;
990 unsigned int stashed_write_pending:1;
991 unsigned int rx_draining_ext:1;
992 unsigned int tx_draining_ext:1;
Andy Green623a98d2013-01-21 11:04:23 +0800993};
994
Andy Green4b85c1d2015-12-04 11:08:32 +0800995struct lws {
Andy Green623a98d2013-01-21 11:04:23 +0800996
Andy Greenaa775fd2015-12-26 08:56:58 +0800997 /* structs */
998 /* members with mutually exclusive lifetimes are unionized */
999
1000 union u {
1001 struct _lws_http_mode_related http;
1002#ifdef LWS_USE_HTTP2
1003 struct _lws_http2_related http2;
1004#endif
1005 struct _lws_header_related hdr;
1006 struct _lws_websocket_related ws;
1007 } u;
1008
Andy Green623a98d2013-01-21 11:04:23 +08001009 /* lifetime members */
1010
Andy Green86ed65f2016-02-14 09:27:41 +08001011#if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV)
Andy Green40110e82015-12-14 08:52:03 +08001012 struct lws_io_watcher w_read;
Andy Green86ed65f2016-02-14 09:27:41 +08001013#endif
1014#if defined(LWS_USE_LIBEV)
Andy Green40110e82015-12-14 08:52:03 +08001015 struct lws_io_watcher w_write;
Andy Green86ed65f2016-02-14 09:27:41 +08001016#endif
Andy Greende132b92015-12-25 13:48:20 +08001017 time_t pending_timeout_limit;
Andy Greenaa775fd2015-12-26 08:56:58 +08001018
1019 /* pointers */
1020
Andy Green40110e82015-12-14 08:52:03 +08001021 struct lws_context *context;
Andy Green4b85c1d2015-12-04 11:08:32 +08001022 const struct lws_protocols *protocol;
Andy Greend738f842016-01-19 04:32:14 +08001023 struct lws *timeout_list;
1024 struct lws **timeout_list_prev;
Andy Greende132b92015-12-25 13:48:20 +08001025 void *user_space;
1026 /* rxflow handling */
1027 unsigned char *rxflow_buffer;
1028 /* truncated send handling */
1029 unsigned char *trunc_alloc; /* non-NULL means buffering in progress */
Andy Green3182ece2013-01-20 17:08:31 +08001030#ifndef LWS_NO_EXTENSIONS
Andy Greend2ac22c2015-12-11 10:45:35 +08001031 const struct lws_extension *active_extensions[LWS_MAX_EXTENSIONS_ACTIVE];
Andy Green67112662016-01-11 11:34:01 +08001032 void *act_ext_user[LWS_MAX_EXTENSIONS_ACTIVE];
Andy Green3182ece2013-01-20 17:08:31 +08001033#endif
Andy Greende132b92015-12-25 13:48:20 +08001034#ifdef LWS_OPENSSL_SUPPORT
1035 SSL *ssl;
1036 BIO *client_bio;
1037 struct lws *pending_read_list_prev, *pending_read_list_next;
1038#endif
Andy Greenaa775fd2015-12-26 08:56:58 +08001039#ifdef LWS_LATENCY
1040 unsigned long action_start;
1041 unsigned long latency_start;
1042#endif
1043 /* pointer / int */
Andy Green3b193862015-11-02 13:13:44 +08001044 lws_sockfd_type sock;
Andy Greende132b92015-12-25 13:48:20 +08001045
Andy Greenaa775fd2015-12-26 08:56:58 +08001046 /* ints */
Andy Greendfb23042013-01-17 12:26:48 +08001047 int position_in_fds_table;
Andy Green024eb6c2014-10-08 12:00:53 +08001048 int rxflow_len;
1049 int rxflow_pos;
Andy Green54806b12015-12-17 17:03:59 +08001050 unsigned int trunc_alloc_len; /* size of malloc */
1051 unsigned int trunc_offset; /* where we are in terms of spilling */
1052 unsigned int trunc_len; /* how much is buffered */
Andy Green2764eba2013-12-09 14:16:17 +08001053
Andy Greende132b92015-12-25 13:48:20 +08001054 unsigned int hdr_parsing_completed:1;
1055 unsigned int user_space_externally_allocated:1;
1056 unsigned int socket_is_permanently_unusable:1;
1057 unsigned int rxflow_change_to:2;
1058#ifndef LWS_NO_EXTENSIONS
1059 unsigned int extension_data_pending:1;
1060#endif
1061#ifdef LWS_OPENSSL_SUPPORT
1062 unsigned int use_ssl:2;
1063 unsigned int upgraded:1;
1064#endif
Andy Greenaa775fd2015-12-26 08:56:58 +08001065#ifdef _WIN32
1066 unsigned int sock_send_blocking:1;
1067#endif
Andy Greende132b92015-12-25 13:48:20 +08001068
Andy Greenaa775fd2015-12-26 08:56:58 +08001069 /* chars */
Andy Greende132b92015-12-25 13:48:20 +08001070#ifndef LWS_NO_EXTENSIONS
Andy Green67112662016-01-11 11:34:01 +08001071 unsigned char count_act_ext;
Andy Greende132b92015-12-25 13:48:20 +08001072#endif
1073 unsigned char ietf_spec_revision;
1074 char mode; /* enum connection_mode */
1075 char state; /* enum lws_connection_states */
Andy Green8c1f6022016-01-26 20:56:56 +08001076 char state_pre_close;
Andy Greende132b92015-12-25 13:48:20 +08001077 char lws_rx_parse_state; /* enum lws_rx_parse_state */
1078 char rx_frame_type; /* enum lws_write_protocol */
1079 char pending_timeout; /* enum pending_timeout */
Andy Greend738f842016-01-19 04:32:14 +08001080 char pps; /* enum lws_pending_protocol_send */
Andy Greend3a55052016-01-19 03:34:24 +08001081 char tsi; /* thread service index we belong to */
Andy Green7c212cc2010-11-08 20:20:42 +00001082};
1083
Andy Green3d67f512014-04-03 07:29:50 +08001084LWS_EXTERN int log_level;
1085
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001086LWS_EXTERN void
Andy Green6b5de702015-12-15 21:15:58 +08001087lws_close_free_wsi(struct lws *wsi, enum lws_close_status);
Andy Green508946c2013-02-12 10:19:08 +08001088
Andy Green34f3dd22014-04-03 07:42:50 +08001089LWS_EXTERN int
Andy Green6b5de702015-12-15 21:15:58 +08001090remove_wsi_socket_from_fds(struct lws *wsi);
Andy Green024eb6c2014-10-08 12:00:53 +08001091LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001092lws_rxflow_cache(struct lws *wsi, unsigned char *buf, int n, int len);
Andy Green34f3dd22014-04-03 07:42:50 +08001093
Andy Greend636e352013-01-29 12:36:17 +08001094#ifndef LWS_LATENCY
Andy Greendc8a3a82015-12-06 09:15:27 +08001095static inline void
1096lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1097 int ret, int completion) {
Andy Green40110e82015-12-14 08:52:03 +08001098 do {
1099 (void)context; (void)wsi; (void)action; (void)ret;
1100 (void)completion;
Andy Greendc8a3a82015-12-06 09:15:27 +08001101 } while (0);
1102}
1103static inline void
1104lws_latency_pre(struct lws_context *context, struct lws *wsi) {
1105 do { (void)context; (void)wsi; } while (0);
1106}
Andy Greend636e352013-01-29 12:36:17 +08001107#else
1108#define lws_latency_pre(_context, _wsi) lws_latency(_context, _wsi, NULL, 0, 0)
1109extern void
Andy Greendc8a3a82015-12-06 09:15:27 +08001110lws_latency(struct lws_context *context, struct lws *wsi, const char *action,
1111 int ret, int completion);
Andy Greend636e352013-01-29 12:36:17 +08001112#endif
1113
Andy Greendc8a3a82015-12-06 09:15:27 +08001114LWS_EXTERN void
Andy Green6b5de702015-12-15 21:15:58 +08001115lws_set_protocol_write_pending(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001116 enum lws_pending_protocol_send pend);
Andy Greene99a83c2016-01-20 16:56:06 +08001117LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001118lws_client_rx_sm(struct lws *wsi, unsigned char c);
Andy Green4739e5c2011-01-22 12:51:57 +00001119
Andy Greene99a83c2016-01-20 16:56:06 +08001120LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001121lws_parse(struct lws *wsi, unsigned char c);
Andy Greenb45993c2010-12-18 15:13:50 +00001122
Andy Greene99a83c2016-01-20 16:56:06 +08001123LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001124lws_http_action(struct lws *wsi);
Andy Green024eb6c2014-10-08 12:00:53 +08001125
1126LWS_EXTERN int
Andy Greendf736162011-01-18 15:39:02 +00001127lws_b64_selftest(void);
Andy Greenbfb051f2011-02-09 08:49:14 +00001128
Andy Green2c218e72016-02-15 12:37:04 +08001129LWS_EXTERN int
1130lws_service_adjust_timeout(struct lws_context *context, int timeout_ms, int tsi);
1131
1132LWS_EXTERN int
1133lws_service_flag_pending(struct lws_context *context, int tsi);
1134
Andy Green2cd30742015-11-02 13:10:33 +08001135#if defined(_WIN32) || defined(MBED_OPERATORS)
Andy Green4b85c1d2015-12-04 11:08:32 +08001136LWS_EXTERN struct lws *
Andy Green1fa76852015-12-14 11:17:16 +08001137wsi_from_fd(const struct lws_context *context, lws_sockfd_type fd);
Andy Green0d338332011-02-12 11:57:43 +00001138
Andy Green40110e82015-12-14 08:52:03 +08001139LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001140insert_wsi(struct lws_context *context, struct lws *wsi);
Bud Davis229bfec2015-01-30 10:13:01 +08001141
1142LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001143delete_from_fd(struct lws_context *context, lws_sockfd_type fd);
Bud Davis229bfec2015-01-30 10:13:01 +08001144#else
Andy Green40110e82015-12-14 08:52:03 +08001145#define wsi_from_fd(A,B) A->lws_lookup[B]
Andy Green8c1f6022016-01-26 20:56:56 +08001146#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 +08001147#define delete_from_fd(A,B) A->lws_lookup[B]=0
1148#endif
1149
Andy Greene99a83c2016-01-20 16:56:06 +08001150LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001151insert_wsi_socket_into_fds(struct lws_context *context, struct lws *wsi);
Darin Willitsc19456f2011-02-14 17:52:39 +00001152
Andy Greene99a83c2016-01-20 16:56:06 +08001153LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001154lws_issue_raw(struct lws *wsi, unsigned char *buf, size_t len);
Andy Greend44bf7f2011-03-06 10:29:38 +00001155
Andy Green95a7b5d2011-03-06 10:29:39 +00001156
Andy Greene99a83c2016-01-20 16:56:06 +08001157LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001158lws_service_timeout_check(struct lws *wsi, unsigned int sec);
Andy Greena41314f2011-05-23 10:00:03 +01001159
Andy Greene99a83c2016-01-20 16:56:06 +08001160LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001161lws_client_connect_2(struct lws *wsi);
Andy Greena41314f2011-05-23 10:00:03 +01001162
Andy Greene99a83c2016-01-20 16:56:06 +08001163LWS_VISIBLE struct lws * LWS_WARN_UNUSED_RESULT
1164lws_client_reset(struct lws *wsi, int ssl, const char *address, int port,
1165 const char *path, const char *host);
Andy Green809d69a2016-01-14 11:37:56 +08001166
Andy Greene99a83c2016-01-20 16:56:06 +08001167LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001168lws_create_new_server_wsi(struct lws_context *context);
Andy Greena41314f2011-05-23 10:00:03 +01001169
Andy Greene99a83c2016-01-20 16:56:06 +08001170LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001171lws_generate_client_handshake(struct lws *wsi, char *pkt);
Andy Greena41314f2011-05-23 10:00:03 +01001172
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001173LWS_EXTERN int
Andy Green6b5de702015-12-15 21:15:58 +08001174lws_handle_POLLOUT_event(struct lws *wsi, struct lws_pollfd *pollfd);
Andy Green91b05892014-10-17 08:38:44 +08001175
Andy Greencdb9bf92014-04-12 10:07:02 +08001176/*
1177 * EXTENSIONS
1178 */
1179
Andy Green3182ece2013-01-20 17:08:31 +08001180#ifndef LWS_NO_EXTENSIONS
Andy Greencdb9bf92014-04-12 10:07:02 +08001181LWS_VISIBLE void
1182lws_context_init_extensions(struct lws_context_creation_info *info,
Andy Greendc8a3a82015-12-06 09:15:27 +08001183 struct lws_context *context);
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001184LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001185lws_any_extension_handled(struct lws *wsi, enum lws_extension_callback_reasons r,
Andy Green6ee372f2012-04-09 15:09:01 +08001186 void *v, size_t len);
Andy Greena41314f2011-05-23 10:00:03 +01001187
Andy Green2c24ec02014-04-02 19:45:42 +08001188LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001189lws_ext_cb_active(struct lws *wsi, int reason, void *buf, int len);
Andy Green2c24ec02014-04-02 19:45:42 +08001190LWS_EXTERN int
Andy Greene99a83c2016-01-20 16:56:06 +08001191lws_ext_cb_all_exts(struct lws_context *context, struct lws *wsi, int reason,
1192 void *arg, int len);
Andy Green67112662016-01-11 11:34:01 +08001193
Andy Green2c24ec02014-04-02 19:45:42 +08001194#else
Andy Green6b5de702015-12-15 21:15:58 +08001195#define lws_any_extension_handled(_a, _b, _c, _d) (0)
Andy Green67112662016-01-11 11:34:01 +08001196#define lws_ext_cb_active(_a, _b, _c, _d) (0)
Andy Green54806b12015-12-17 17:03:59 +08001197#define lws_ext_cb_all_exts(_a, _b, _c, _d, _e) (0)
Andy Greenb49a9952014-04-03 10:11:04 +08001198#define lws_issue_raw_ext_access lws_issue_raw
Andy Greencdb9bf92014-04-12 10:07:02 +08001199#define lws_context_init_extensions(_a, _b)
Andy Green3182ece2013-01-20 17:08:31 +08001200#endif
Andy Greena41314f2011-05-23 10:00:03 +01001201
Andy Greene99a83c2016-01-20 16:56:06 +08001202LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001203lws_client_interpret_server_handshake(struct lws *wsi);
Andy Greena41314f2011-05-23 10:00:03 +01001204
Andy Greene99a83c2016-01-20 16:56:06 +08001205LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001206lws_rx_sm(struct lws *wsi, unsigned char c);
Andy Greena41314f2011-05-23 10:00:03 +01001207
Andy Greene99a83c2016-01-20 16:56:06 +08001208LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001209lws_issue_raw_ext_access(struct lws *wsi, unsigned char *buf, size_t len);
Andy Green09226502011-05-28 10:19:19 +01001210
Andy Green44c11612014-11-08 11:18:47 +08001211LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001212lws_union_transition(struct lws *wsi, enum connection_mode mode);
Andy Green44c11612014-11-08 11:18:47 +08001213
Andy Greene99a83c2016-01-20 16:56:06 +08001214LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Denis Osvald034e5142015-12-21 18:06:38 +01001215user_callback_handle_rxflow(lws_callback_function, struct lws *wsi,
Andy Green00c6d152015-12-17 07:54:44 +08001216 enum lws_callback_reasons reason, void *user,
1217 void *in, size_t len);
Andy Green024eb6c2014-10-08 12:00:53 +08001218#ifdef LWS_USE_HTTP2
Andy Green4b85c1d2015-12-04 11:08:32 +08001219LWS_EXTERN struct lws *lws_http2_get_network_wsi(struct lws *wsi);
1220struct lws * lws_http2_get_nth_child(struct lws *wsi, int n);
Andy Green024eb6c2014-10-08 12:00:53 +08001221LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001222lws_http2_interpret_settings_payload(struct http2_settings *settings,
1223 unsigned char *buf, int len);
Andy Green024eb6c2014-10-08 12:00:53 +08001224LWS_EXTERN void lws_http2_init(struct http2_settings *settings);
1225LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001226lws_http2_parser(struct lws *wsi, unsigned char c);
Andy Greendc8a3a82015-12-06 09:15:27 +08001227LWS_EXTERN int lws_http2_do_pps_send(struct lws_context *context,
1228 struct lws *wsi);
1229LWS_EXTERN int lws_http2_frame_write(struct lws *wsi, int type, int flags,
1230 unsigned int sid, unsigned int len,
1231 unsigned char *buf);
Andy Green4b85c1d2015-12-04 11:08:32 +08001232LWS_EXTERN struct lws *
1233lws_http2_wsi_from_id(struct lws *wsi, unsigned int sid);
Andy Green11c05bf2015-12-16 18:19:08 +08001234LWS_EXTERN int lws_hpack_interpret(struct lws *wsi,
Andy Green2add6342014-10-12 08:38:16 +08001235 unsigned char c);
Andy Green917f43a2014-10-12 14:31:47 +08001236LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001237lws_add_http2_header_by_name(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001238 const unsigned char *name,
1239 const unsigned char *value, int length,
1240 unsigned char **p, unsigned char *end);
Andy Green917f43a2014-10-12 14:31:47 +08001241LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001242lws_add_http2_header_by_token(struct lws *wsi,
Andy Green917f43a2014-10-12 14:31:47 +08001243 enum lws_token_indexes token,
Andy Greendc8a3a82015-12-06 09:15:27 +08001244 const unsigned char *value, int length,
1245 unsigned char **p, unsigned char *end);
Andy Green917f43a2014-10-12 14:31:47 +08001246LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001247lws_add_http2_header_status(struct lws *wsi,
Andy Greendc8a3a82015-12-06 09:15:27 +08001248 unsigned int code, unsigned char **p,
Andy Green917f43a2014-10-12 14:31:47 +08001249 unsigned char *end);
Andy Green7df53c52014-10-22 15:37:28 +08001250LWS_EXTERN
Andy Green4b85c1d2015-12-04 11:08:32 +08001251void lws_http2_configure_if_upgraded(struct lws *wsi);
Andy Green7df53c52014-10-22 15:37:28 +08001252#else
1253#define lws_http2_configure_if_upgraded(x)
Andy Green024eb6c2014-10-08 12:00:53 +08001254#endif
Andy Green706961d2013-01-17 16:50:35 +08001255
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001256LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001257lws_plat_set_socket_options(struct lws_context *context, lws_sockfd_type fd);
Andy Greena690cd02013-02-09 12:25:31 +08001258
Andy Greene99a83c2016-01-20 16:56:06 +08001259LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green2c218e72016-02-15 12:37:04 +08001260lws_header_table_attach(struct lws *wsi);
Andy Green16ab3182013-02-10 18:02:31 +08001261
Andrew Canaday37718812014-11-07 11:20:59 +08001262LWS_EXTERN int
Andy Green2c218e72016-02-15 12:37:04 +08001263lws_header_table_detach(struct lws *wsi);
Andrew Canaday37718812014-11-07 11:20:59 +08001264
Andy Green4019aab2016-01-30 11:43:10 +08001265LWS_EXTERN void
Andy Green2c218e72016-02-15 12:37:04 +08001266lws_header_table_reset(struct lws *wsi);
Andy Green4019aab2016-01-30 11:43:10 +08001267
Andy Greene99a83c2016-01-20 16:56:06 +08001268LWS_EXTERN char * LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001269lws_hdr_simple_ptr(struct lws *wsi, enum lws_token_indexes h);
Andy Green16ab3182013-02-10 18:02:31 +08001270
Andy Greene99a83c2016-01-20 16:56:06 +08001271LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green11c05bf2015-12-16 18:19:08 +08001272lws_hdr_simple_create(struct lws *wsi, enum lws_token_indexes h, const char *s);
Andy Greenb5b23192013-02-11 17:13:32 +08001273
Andy Green2af4d5b2013-02-18 16:30:10 +08001274LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001275lws_ensure_user_space(struct lws *wsi);
Andy Green2af4d5b2013-02-18 16:30:10 +08001276
Andy Green158e8042014-04-02 14:25:10 +08001277LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001278lws_change_pollfd(struct lws *wsi, int _and, int _or);
Andy Green91f19d82013-12-21 11:18:34 +08001279
Andy Greenb5b23192013-02-11 17:13:32 +08001280#ifndef LWS_NO_SERVER
Andy Greene38031a2014-04-03 08:24:29 +08001281int lws_context_init_server(struct lws_context_creation_info *info,
Andy Greenaa775fd2015-12-26 08:56:58 +08001282 struct lws_context *context);
Andy Greend7340c12014-04-10 14:08:10 +08001283LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001284handshake_0405(struct lws_context *context, struct lws *wsi);
Andy Greene99a83c2016-01-20 16:56:06 +08001285LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green67112662016-01-11 11:34:01 +08001286lws_interpret_incoming_packet(struct lws *wsi, unsigned char **buf, size_t len);
Andy Greencdb9bf92014-04-12 10:07:02 +08001287LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001288lws_server_get_canonical_hostname(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001289 struct lws_context_creation_info *info);
Andy Greene38031a2014-04-03 08:24:29 +08001290#else
1291#define lws_context_init_server(_a, _b) (0)
Andy Green3ef579b2015-12-04 09:23:56 +08001292#define lws_interpret_incoming_packet(_a, _b, _c) (0)
Andy Greencdb9bf92014-04-12 10:07:02 +08001293#define lws_server_get_canonical_hostname(_a, _b)
Andy Greenb5b23192013-02-11 17:13:32 +08001294#endif
1295
1296#ifndef LWS_NO_DAEMONIZE
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001297LWS_EXTERN int get_daemonize_pid();
Andy Greencdb9bf92014-04-12 10:07:02 +08001298#else
1299#define get_daemonize_pid() (0)
Andy Greenb5b23192013-02-11 17:13:32 +08001300#endif
1301
Andy Green2cd30742015-11-02 13:10:33 +08001302#if !defined(MBED_OPERATORS)
Andy Greene99a83c2016-01-20 16:56:06 +08001303LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001304interface_to_sa(struct lws_context *context, const char *ifname,
1305 struct sockaddr_in *addr, size_t addrlen);
Andy Green2cd30742015-11-02 13:10:33 +08001306#endif
Andy Greenb25b85f2014-04-03 23:34:09 +08001307LWS_EXTERN void lwsl_emit_stderr(int level, const char *line);
1308
Andy Green1a308e42014-04-08 07:26:30 +01001309enum lws_ssl_capable_status {
1310 LWS_SSL_CAPABLE_ERROR = -1,
1311 LWS_SSL_CAPABLE_MORE_SERVICE = -2,
1312};
1313
Darin Willitsc19456f2011-02-14 17:52:39 +00001314#ifndef LWS_OPENSSL_SUPPORT
Andy Greencdb9bf92014-04-12 10:07:02 +08001315#define LWS_SSL_ENABLED(context) (0)
Andy Greenc57037a2014-04-03 10:17:00 +08001316#define lws_context_init_server_ssl(_a, _b) (0)
1317#define lws_ssl_destroy(_a)
Andy Green2eedea92014-04-03 14:33:48 +08001318#define lws_context_init_http2_ssl(_a)
Andy Green02138122014-04-06 06:26:35 +01001319#define lws_ssl_capable_read lws_ssl_capable_read_no_ssl
1320#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 +02001321#define lws_ssl_pending lws_ssl_pending_no_ssl
Andy Green8c1f6022016-01-26 20:56:56 +08001322#define lws_server_socket_service_ssl(_b, _c) (0)
Andy Greencdb9bf92014-04-12 10:07:02 +08001323#define lws_ssl_close(_a) (0)
1324#define lws_ssl_context_destroy(_a)
Andy Green6b5de702015-12-15 21:15:58 +08001325#define lws_ssl_remove_wsi_from_buffered_list(_a)
Andy Greenb5b23192013-02-11 17:13:32 +08001326#else
Andy Greencdb9bf92014-04-12 10:07:02 +08001327#define LWS_SSL_ENABLED(context) (context->use_ssl)
Joakim Soderbergf272cb02013-02-13 09:29:26 +08001328LWS_EXTERN int openssl_websocket_private_data_index;
Andy Greene99a83c2016-01-20 16:56:06 +08001329LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001330lws_ssl_capable_read(struct lws *wsi, unsigned char *buf, int len);
Andy Greene99a83c2016-01-20 16:56:06 +08001331LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001332lws_ssl_capable_write(struct lws *wsi, unsigned char *buf, int len);
Andy Greene99a83c2016-01-20 16:56:06 +08001333LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001334lws_ssl_pending(struct lws *wsi);
Andy Greene99a83c2016-01-20 16:56:06 +08001335LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green8c1f6022016-01-26 20:56:56 +08001336lws_server_socket_service_ssl(struct lws *new_wsi, lws_sockfd_type accept_fd);
Andy Greencdb9bf92014-04-12 10:07:02 +08001337LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001338lws_ssl_close(struct lws *wsi);
Andy Greencdb9bf92014-04-12 10:07:02 +08001339LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001340lws_ssl_context_destroy(struct lws_context *context);
Andy Green52815602015-01-29 08:36:18 +08001341LWS_VISIBLE void
Andy Green6b5de702015-12-15 21:15:58 +08001342lws_ssl_remove_wsi_from_buffered_list(struct lws *wsi);
Andy Greenc57037a2014-04-03 10:17:00 +08001343#ifndef LWS_NO_SERVER
1344LWS_EXTERN int
1345lws_context_init_server_ssl(struct lws_context_creation_info *info,
Andy Greendc8a3a82015-12-06 09:15:27 +08001346 struct lws_context *context);
Andy Greenc57037a2014-04-03 10:17:00 +08001347#else
1348#define lws_context_init_server_ssl(_a, _b) (0)
1349#endif
1350LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001351lws_ssl_destroy(struct lws_context *context);
Andy Green2eedea92014-04-03 14:33:48 +08001352
1353/* HTTP2-related */
1354
1355#ifdef LWS_USE_HTTP2
1356LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001357lws_context_init_http2_ssl(struct lws_context *context);
Andy Green2eedea92014-04-03 14:33:48 +08001358#else
1359#define lws_context_init_http2_ssl(_a)
1360#endif
Darin Willitsc19456f2011-02-14 17:52:39 +00001361#endif
Andy Greena654fc02014-04-03 07:16:40 +08001362
Andy Green8c1f6022016-01-26 20:56:56 +08001363#if LWS_MAX_SMP > 1
1364static LWS_INLINE void
1365lws_pt_mutex_init(struct lws_context_per_thread *pt)
1366{
1367 pthread_mutex_init(&pt->lock, NULL);
1368}
1369static LWS_INLINE void
1370lws_pt_lock(struct lws_context_per_thread *pt)
1371{
1372 pthread_mutex_lock(&pt->lock);
1373}
1374
1375static LWS_INLINE void
1376lws_pt_unlock(struct lws_context_per_thread *pt)
1377{
1378 pthread_mutex_unlock(&pt->lock);
1379}
1380#else
1381#define lws_pt_mutex_init(_a) (void)(_a)
1382#define lws_pt_lock(_a) (void)(_a)
1383#define lws_pt_unlock(_a) (void)(_a)
1384#endif
1385
Andy Greene99a83c2016-01-20 16:56:06 +08001386LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green6b5de702015-12-15 21:15:58 +08001387lws_ssl_capable_read_no_ssl(struct lws *wsi, unsigned char *buf, int len);
Patrick Gansterera6b019a2014-04-15 18:40:31 +02001388
Andy Greene99a83c2016-01-20 16:56:06 +08001389LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001390lws_ssl_capable_write_no_ssl(struct lws *wsi, unsigned char *buf, int len);
Patrick Gansterera6b019a2014-04-15 18:40:31 +02001391
Andy Greene99a83c2016-01-20 16:56:06 +08001392LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green4b85c1d2015-12-04 11:08:32 +08001393lws_ssl_pending_no_ssl(struct lws *wsi);
=?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?=4c0ba022015-08-19 16:23:33 +02001394
Andy Greena654fc02014-04-03 07:16:40 +08001395#ifndef LWS_NO_CLIENT
Andy Greendc8a3a82015-12-06 09:15:27 +08001396LWS_EXTERN int lws_client_socket_service(struct lws_context *context,
1397 struct lws *wsi,
1398 struct lws_pollfd *pollfd);
Andy Greenc57037a2014-04-03 10:17:00 +08001399#ifdef LWS_OPENSSL_SUPPORT
Andy Greendc8a3a82015-12-06 09:15:27 +08001400LWS_EXTERN int
1401lws_context_init_client_ssl(struct lws_context_creation_info *info,
Andy Green4b85c1d2015-12-04 11:08:32 +08001402 struct lws_context *context);
Andy Greene38031a2014-04-03 08:24:29 +08001403#else
Andy Greenc57037a2014-04-03 10:17:00 +08001404 #define lws_context_init_client_ssl(_a, _b) (0)
1405#endif
Andy Greene99a83c2016-01-20 16:56:06 +08001406LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Greendc8a3a82015-12-06 09:15:27 +08001407lws_handshake_client(struct lws *wsi, unsigned char **buf, size_t len);
1408LWS_EXTERN void
1409lws_decode_ssl_error(void);
Andy Greenc57037a2014-04-03 10:17:00 +08001410#else
1411#define lws_context_init_client_ssl(_a, _b) (0)
Andy Greenaad2eac2014-04-03 09:03:37 +08001412#define lws_handshake_client(_a, _b, _c) (0)
Andy Greena654fc02014-04-03 07:16:40 +08001413#endif
Andy Green44e0b082015-12-28 14:24:49 +08001414
1415LWS_EXTERN int
1416_lws_rx_flow_control(struct lws *wsi);
1417
Andy Green8c1f6022016-01-26 20:56:56 +08001418LWS_EXTERN int
1419_lws_change_pollfd(struct lws *wsi, int _and, int _or, struct lws_pollargs *pa);
1420
Andy Greena654fc02014-04-03 07:16:40 +08001421#ifndef LWS_NO_SERVER
Andy Greendc8a3a82015-12-06 09:15:27 +08001422LWS_EXTERN int
1423lws_server_socket_service(struct lws_context *context, struct lws *wsi,
1424 struct lws_pollfd *pollfd);
1425LWS_EXTERN int
Andy Green11c05bf2015-12-16 18:19:08 +08001426lws_handshake_server(struct lws *wsi, unsigned char **buf, size_t len);
Andy Greenb3d21f12015-12-25 09:12:08 +08001427LWS_EXTERN int
Andy Green8c1f6022016-01-26 20:56:56 +08001428_lws_server_listen_accept_flow_control(struct lws *twsi, int on);
Andy Greend99476b2014-04-03 08:40:05 +08001429#else
Andy Greenb49a9952014-04-03 10:11:04 +08001430#define lws_server_socket_service(_a, _b, _c) (0)
Andy Green11c05bf2015-12-16 18:19:08 +08001431#define lws_handshake_server(_a, _b, _c) (0)
Andy Greenb3d21f12015-12-25 09:12:08 +08001432#define _lws_server_listen_accept_flow_control(a, b) (0)
Andy Greena654fc02014-04-03 07:16:40 +08001433#endif
Andy Green40110e82015-12-14 08:52:03 +08001434
Andy Greendc8a3a82015-12-06 09:15:27 +08001435LWS_EXTERN int
1436lws_get_addresses(struct lws_context *context, void *ads, char *name,
1437 int name_len, char *rip, int rip_len);
Andy Greena654fc02014-04-03 07:16:40 +08001438
1439/*
Alejandro Merycdc97172014-12-04 23:15:27 +01001440 * custom allocator
1441 */
Andy Greene99a83c2016-01-20 16:56:06 +08001442LWS_EXTERN void *
Alejandro Merycdc97172014-12-04 23:15:27 +01001443lws_realloc(void *ptr, size_t size);
1444
Andy Greene99a83c2016-01-20 16:56:06 +08001445LWS_EXTERN void * LWS_WARN_UNUSED_RESULT
Alejandro Merycdc97172014-12-04 23:15:27 +01001446lws_zalloc(size_t size);
1447
1448#define lws_malloc(S) lws_realloc(NULL, S)
1449#define lws_free(P) lws_realloc(P, 0)
Andy Green54806b12015-12-17 17:03:59 +08001450#define lws_free_set_NULL(P) do { lws_realloc(P, 0); (P) = NULL; } while(0)
Alejandro Merycdc97172014-12-04 23:15:27 +01001451
Andy Greendc8a3a82015-12-06 09:15:27 +08001452/* lws_plat_ */
Andy Greena654fc02014-04-03 07:16:40 +08001453LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001454lws_plat_delete_socket_from_fds(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001455 struct lws *wsi, int m);
Andy Greena654fc02014-04-03 07:16:40 +08001456LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001457lws_plat_insert_socket_into_fds(struct lws_context *context,
Andy Greendc8a3a82015-12-06 09:15:27 +08001458 struct lws *wsi);
Andy Greena654fc02014-04-03 07:16:40 +08001459LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001460lws_plat_service_periodic(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001461
1462LWS_EXTERN int
Andy Greendc8a3a82015-12-06 09:15:27 +08001463lws_plat_change_pollfd(struct lws_context *context, struct lws *wsi,
1464 struct lws_pollfd *pfd);
Andy Greena654fc02014-04-03 07:16:40 +08001465LWS_EXTERN int
1466lws_plat_context_early_init(void);
1467LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001468lws_plat_context_early_destroy(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001469LWS_EXTERN void
Andy Green4b85c1d2015-12-04 11:08:32 +08001470lws_plat_context_late_destroy(struct lws_context *context);
Andy Greena654fc02014-04-03 07:16:40 +08001471LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001472lws_poll_listen_fd(struct lws_pollfd *fd);
Andy Greena654fc02014-04-03 07:16:40 +08001473LWS_EXTERN int
Andy Green4b85c1d2015-12-04 11:08:32 +08001474lws_plat_service(struct lws_context *context, int timeout_ms);
Andy Greend3a55052016-01-19 03:34:24 +08001475LWS_EXTERN LWS_VISIBLE int
1476lws_plat_service_tsi(struct lws_context *context, int timeout_ms, int tsi);
Andy Greena654fc02014-04-03 07:16:40 +08001477LWS_EXTERN int
Andy Green4386e362015-12-10 07:14:16 +08001478lws_plat_init(struct lws_context *context,
1479 struct lws_context_creation_info *info);
Andy Greena654fc02014-04-03 07:16:40 +08001480LWS_EXTERN void
1481lws_plat_drop_app_privileges(struct lws_context_creation_info *info);
1482LWS_EXTERN unsigned long long
1483time_in_microseconds(void);
Andy Greene99a83c2016-01-20 16:56:06 +08001484LWS_EXTERN const char * LWS_WARN_UNUSED_RESULT
Andy Greena654fc02014-04-03 07:16:40 +08001485lws_plat_inet_ntop(int af, const void *src, char *dst, int cnt);
Andy Green8c0d3c02015-11-02 20:34:12 +08001486
Andy Greene99a83c2016-01-20 16:56:06 +08001487LWS_EXTERN int LWS_WARN_UNUSED_RESULT
Andy Green86c1ef12015-12-30 11:43:36 +08001488lws_check_utf8(unsigned char *state, unsigned char *buf, size_t len);
1489
Andy Green8c0d3c02015-11-02 20:34:12 +08001490#ifdef __cplusplus
1491};
1492#endif