Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 1 | /* |
| 2 | * libwebsockets - small server side websockets and web server implementation |
Andy Green | e77ddd8 | 2010-11-13 10:03:47 +0000 | [diff] [blame] | 3 | * |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 4 | * Copyright (C) 2010 - 2016 Andy Green <andy@warmcat.com> |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 5 | * |
| 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 Soderberg | 91de933 | 2013-02-06 15:30:33 +0900 | [diff] [blame] | 21 | |
Joakim Soderberg | 4c53123 | 2013-02-06 15:26:58 +0900 | [diff] [blame] | 22 | #include "lws_config.h" |
Roger A. Light | 7a474b4 | 2015-06-26 11:40:54 +0200 | [diff] [blame] | 23 | #include "lws_config_private.h" |
Andy Green | e40aa9b | 2014-04-02 21:02:54 +0800 | [diff] [blame] | 24 | |
=?UTF-8?q?Joakim=20S=C3=B6derberg?= | cefab31 | 2015-06-24 16:46:02 +0200 | [diff] [blame] | 25 | #ifdef LWS_HAVE_SYS_TYPES_H |
Andy Green | e40aa9b | 2014-04-02 21:02:54 +0800 | [diff] [blame] | 26 | #include <sys/types.h> |
Joakim Soderberg | 91de933 | 2013-02-06 15:30:33 +0900 | [diff] [blame] | 27 | #endif |
Joakim Soderberg | 4c53123 | 2013-02-06 15:26:58 +0900 | [diff] [blame] | 28 | |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 29 | #include <stdio.h> |
| 30 | #include <stdlib.h> |
| 31 | #include <string.h> |
Patrick Gansterer | b13eed4 | 2014-03-30 10:19:23 +0200 | [diff] [blame] | 32 | #include <time.h> |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 33 | #include <ctype.h> |
Peter Young | 26757a7 | 2013-01-17 10:08:16 +0800 | [diff] [blame] | 34 | #include <limits.h> |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 35 | #include <stdarg.h> |
Andy Green | 112f980 | 2015-12-04 07:22:44 +0800 | [diff] [blame] | 36 | #include <assert.h> |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 37 | #if LWS_MAX_SMP > 1 |
| 38 | #include <pthread.h> |
| 39 | #endif |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 40 | |
=?UTF-8?q?Joakim=20S=C3=B6derberg?= | cefab31 | 2015-06-24 16:46:02 +0200 | [diff] [blame] | 41 | #ifdef LWS_HAVE_SYS_STAT_H |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 42 | #include <sys/stat.h> |
Patrick Gansterer | e5720a3 | 2014-02-28 00:57:19 +0100 | [diff] [blame] | 43 | #endif |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 44 | |
Andreas Pakulat | 68bd4bd | 2013-10-28 15:18:04 +0100 | [diff] [blame] | 45 | #if defined(WIN32) || defined(_WIN32) |
Stephan Eberle | b820e2c | 2015-10-23 08:10:55 +0200 | [diff] [blame] | 46 | #if (WINVER < 0x0501) |
| 47 | #undef WINVER |
| 48 | #undef _WIN32_WINNT |
| 49 | #define WINVER 0x0501 |
| 50 | #define _WIN32_WINNT WINVER |
| 51 | #endif |
Joakim Soderberg | 4c53123 | 2013-02-06 15:26:58 +0900 | [diff] [blame] | 52 | #define LWS_NO_DAEMONIZE |
Patrick Gansterer | 2dbd837 | 2014-02-28 12:37:52 +0100 | [diff] [blame] | 53 | #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 Gansterer | b47f87b | 2014-03-30 09:18:05 +0200 | [diff] [blame] | 60 | #define LWS_POLLHUP (FD_CLOSE) |
Patrick Gansterer | 0fc37b6 | 2014-03-28 15:44:56 +0100 | [diff] [blame] | 61 | #define LWS_POLLIN (FD_READ | FD_ACCEPT) |
| 62 | #define LWS_POLLOUT (FD_WRITE) |
Patrick Gansterer | 73882e4 | 2014-03-29 08:25:58 +0100 | [diff] [blame] | 63 | #define MSG_NOSIGNAL 0 |
| 64 | #define SHUT_RDWR SD_BOTH |
| 65 | #define SOL_TCP IPPROTO_TCP |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 66 | #define SHUT_WR SD_SEND |
Joakim Soderberg | 4c53123 | 2013-02-06 15:26:58 +0900 | [diff] [blame] | 67 | |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 68 | #define compatible_close(fd) closesocket(fd) |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 69 | #define lws_set_blocking_send(wsi) wsi->sock_send_blocking = 1 |
Andy Green | c53f7ca | 2015-11-14 07:35:27 +0800 | [diff] [blame] | 70 | #define lws_socket_is_valid(x) (!!x) |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 71 | #define LWS_SOCK_INVALID 0 |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 72 | #include <winsock2.h> |
Andy Green | eee0d8a | 2015-12-17 15:15:12 +0800 | [diff] [blame] | 73 | #include <ws2tcpip.h> |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 74 | #include <windows.h> |
Joakim Soderberg | d2f5b19 | 2014-04-07 11:28:08 +0200 | [diff] [blame] | 75 | #include <tchar.h> |
=?UTF-8?q?Joakim=20S=C3=B6derberg?= | cefab31 | 2015-06-24 16:46:02 +0200 | [diff] [blame] | 76 | #ifdef LWS_HAVE_IN6ADDR_H |
Andy Green | 0f58db3 | 2014-04-12 11:10:35 +0800 | [diff] [blame] | 77 | #include <in6addr.h> |
| 78 | #endif |
Joakim Soderberg | d2f5b19 | 2014-04-07 11:28:08 +0200 | [diff] [blame] | 79 | #include <mstcpip.h> |
| 80 | |
| 81 | #ifndef __func__ |
| 82 | #define __func__ __FUNCTION__ |
| 83 | #endif |
| 84 | |
Patrick Gansterer | 6bb4b62 | 2014-04-15 18:39:26 +0200 | [diff] [blame] | 85 | #ifdef _WIN32_WCE |
| 86 | #define vsnprintf _vsnprintf |
| 87 | #endif |
| 88 | |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 89 | #else /* not windows --> */ |
Andy Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 90 | |
Patrick Gansterer | b13eed4 | 2014-03-30 10:19:23 +0200 | [diff] [blame] | 91 | #include <fcntl.h> |
Patrick Gansterer | b13eed4 | 2014-03-30 10:19:23 +0200 | [diff] [blame] | 92 | #include <strings.h> |
| 93 | #include <unistd.h> |
Andy Green | e77ddd8 | 2010-11-13 10:03:47 +0000 | [diff] [blame] | 94 | #include <sys/types.h> |
Andy Green | 5f2a815 | 2015-11-02 08:21:08 +0800 | [diff] [blame] | 95 | #ifndef MBED_OPERATORS |
Andy Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 96 | #ifndef __cplusplus |
| 97 | #include <errno.h> |
| 98 | #endif |
Andy Green | 5f2a815 | 2015-11-02 08:21:08 +0800 | [diff] [blame] | 99 | #include <netdb.h> |
| 100 | #include <signal.h> |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 101 | #include <sys/socket.h> |
Andy Green | e40aa9b | 2014-04-02 21:02:54 +0800 | [diff] [blame] | 102 | #ifdef LWS_BUILTIN_GETIFADDRS |
| 103 | #include <getifaddrs.h> |
| 104 | #else |
| 105 | #include <ifaddrs.h> |
| 106 | #endif |
Dnyanesh Gate | 759e50c | 2014-09-26 05:39:05 +0800 | [diff] [blame] | 107 | #if defined (__ANDROID__) |
| 108 | #include <syslog.h> |
| 109 | #else |
Andy Green | e40aa9b | 2014-04-02 21:02:54 +0800 | [diff] [blame] | 110 | #include <sys/syslog.h> |
Dnyanesh Gate | 759e50c | 2014-09-26 05:39:05 +0800 | [diff] [blame] | 111 | #endif |
Andy Green | e40aa9b | 2014-04-02 21:02:54 +0800 | [diff] [blame] | 112 | #include <sys/un.h> |
| 113 | #include <sys/socket.h> |
| 114 | #include <netdb.h> |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 115 | #include <netinet/in.h> |
Andy Green | 6c93955 | 2011-03-08 08:56:57 +0000 | [diff] [blame] | 116 | #include <netinet/tcp.h> |
Andy Green | b45993c | 2010-12-18 15:13:50 +0000 | [diff] [blame] | 117 | #include <arpa/inet.h> |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 118 | #include <poll.h> |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 119 | #ifdef LWS_USE_LIBEV |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 120 | #include <ev.h> |
| 121 | #endif |
| 122 | #ifdef LWS_USE_LIBUV |
Alex Hultman | a43c2ac | 2016-02-01 08:31:54 +0800 | [diff] [blame] | 123 | #include <uv.h> |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 124 | #endif |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 125 | #include <sys/mman.h> |
Andy Green | 5f2a815 | 2015-11-02 08:21:08 +0800 | [diff] [blame] | 126 | |
| 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 Green | 038d582 | 2011-02-14 20:58:26 +0000 | [diff] [blame] | 135 | #include <sys/time.h> |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 136 | |
Patrick Gansterer | 2dbd837 | 2014-02-28 12:37:52 +0100 | [diff] [blame] | 137 | #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 Gansterer | b47f87b | 2014-03-30 09:18:05 +0200 | [diff] [blame] | 144 | #define LWS_POLLHUP (POLLHUP|POLLERR) |
| 145 | #define LWS_POLLIN (POLLIN) |
| 146 | #define LWS_POLLOUT (POLLOUT) |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 147 | #define compatible_close(fd) close(fd) |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 148 | #define lws_set_blocking_send(wsi) |
Andy Green | 2cd3074 | 2015-11-02 13:10:33 +0800 | [diff] [blame] | 149 | |
| 150 | #ifdef MBED_OPERATORS |
| 151 | #define lws_socket_is_valid(x) ((x) != NULL) |
| 152 | #define LWS_SOCK_INVALID (NULL) |
| 153 | #else |
Andy Green | c53f7ca | 2015-11-14 07:35:27 +0800 | [diff] [blame] | 154 | #define lws_socket_is_valid(x) (x >= 0) |
| 155 | #define LWS_SOCK_INVALID (-1) |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 156 | #endif |
Andy Green | 2cd3074 | 2015-11-02 13:10:33 +0800 | [diff] [blame] | 157 | #endif |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 158 | |
=?UTF-8?q?Joakim=20S=C3=B6derberg?= | cefab31 | 2015-06-24 16:46:02 +0200 | [diff] [blame] | 159 | #ifndef LWS_HAVE_BZERO |
Andy Green | e5ea1f9 | 2014-11-18 18:25:24 +0800 | [diff] [blame] | 160 | #ifndef bzero |
Patrick Gansterer | 4a83727 | 2014-02-28 13:17:49 +0100 | [diff] [blame] | 161 | #define bzero(b, len) (memset((b), '\0', (len)), (void) 0) |
| 162 | #endif |
Andy Green | e5ea1f9 | 2014-11-18 18:25:24 +0800 | [diff] [blame] | 163 | #endif |
Patrick Gansterer | 4a83727 | 2014-02-28 13:17:49 +0100 | [diff] [blame] | 164 | |
=?UTF-8?q?Joakim=20S=C3=B6derberg?= | cefab31 | 2015-06-24 16:46:02 +0200 | [diff] [blame] | 165 | #ifndef LWS_HAVE_STRERROR |
Patrick Gansterer | 9d61491 | 2014-02-28 00:59:53 +0100 | [diff] [blame] | 166 | #define strerror(x) "" |
| 167 | #endif |
| 168 | |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 169 | #ifdef LWS_OPENSSL_SUPPORT |
Alexander Bruines | c3bcb89 | 2015-08-08 18:54:49 +0200 | [diff] [blame] | 170 | #ifdef USE_WOLFSSL |
ABruines | 80a7068 | 2015-08-09 22:56:32 +0200 | [diff] [blame] | 171 | #ifdef USE_OLD_CYASSL |
| 172 | #include <cyassl/openssl/ssl.h> |
| 173 | #include <cyassl/error-ssl.h> |
| 174 | #else |
Alexander Bruines | c3bcb89 | 2015-08-08 18:54:49 +0200 | [diff] [blame] | 175 | #include <wolfssl/openssl/ssl.h> |
| 176 | #include <wolfssl/error-ssl.h> |
ABruines | 80a7068 | 2015-08-09 22:56:32 +0200 | [diff] [blame] | 177 | #endif /* not USE_OLD_CYASSL */ |
Andy Green | 23c5f2e | 2013-02-06 15:43:00 +0900 | [diff] [blame] | 178 | #else |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 179 | #include <openssl/ssl.h> |
| 180 | #include <openssl/evp.h> |
| 181 | #include <openssl/err.h> |
Andy Green | 70dfebd | 2010-12-20 09:35:03 +0000 | [diff] [blame] | 182 | #include <openssl/md5.h> |
Andy Green | e252217 | 2011-01-18 17:14:03 +0000 | [diff] [blame] | 183 | #include <openssl/sha.h> |
Alexander Bruines | c3bcb89 | 2015-08-08 18:54:49 +0200 | [diff] [blame] | 184 | #endif /* not USE_WOLFSSL */ |
Darin Willits | db9ba42 | 2011-02-14 20:56:24 +0000 | [diff] [blame] | 185 | #endif |
| 186 | |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 187 | #include "libwebsockets.h" |
| 188 | |
Andy Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 189 | #if defined(MBED_OPERATORS) |
| 190 | #undef compatible_close |
| 191 | #define compatible_close(fd) mbed3_delete_tcp_stream_socket(fd) |
Andy Green | 11f2734 | 2015-11-08 12:10:26 +0800 | [diff] [blame] | 192 | #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 Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 201 | #endif |
| 202 | |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 203 | #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 Green | 11f2734 | 2015-11-08 12:10:26 +0800 | [diff] [blame] | 214 | #ifndef u_int64_t |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 215 | typedef unsigned __int64 u_int64_t; |
Andy Green | 11f2734 | 2015-11-08 12:10:26 +0800 | [diff] [blame] | 216 | #endif |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 217 | |
| 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 Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 241 | #ifdef __cplusplus |
| 242 | extern "C" { |
| 243 | #endif |
Alejandro Mery | ead8afe | 2014-12-07 03:36:11 +0100 | [diff] [blame] | 244 | #include <stddef.h> |
| 245 | |
| 246 | #ifndef container_of |
| 247 | #define container_of(P,T,M) ((T *)((char *)(P) - offsetof(T, M))) |
| 248 | #endif |
| 249 | |
emironov | a49d084 | 2014-09-16 14:05:13 +0400 | [diff] [blame] | 250 | #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 Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 264 | #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 Willits | c19456f | 2011-02-14 17:52:39 +0000 | [diff] [blame] | 276 | /* |
| 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 Green | 6ee372f | 2012-04-09 15:09:01 +0800 | [diff] [blame] | 281 | #define MSG_NOSIGNAL SO_NOSIGPIPE |
Darin Willits | c19456f | 2011-02-14 17:52:39 +0000 | [diff] [blame] | 282 | #endif |
| 283 | |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 284 | #ifdef _WIN32 |
| 285 | #ifndef FD_HASHTABLE_MODULUS |
| 286 | #define FD_HASHTABLE_MODULUS 32 |
| 287 | #endif |
| 288 | #endif |
| 289 | |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 290 | #ifndef LWS_DEF_HEADER_LEN |
| 291 | #define LWS_DEF_HEADER_LEN 1024 |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 292 | #endif |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 293 | #ifndef LWS_DEF_HEADER_POOL |
| 294 | #define LWS_DEF_HEADER_POOL 16 |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 295 | #endif |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 296 | #ifndef LWS_MAX_PROTOCOLS |
Andy Green | d91d5e8 | 2013-02-10 16:00:47 +0800 | [diff] [blame] | 297 | #define LWS_MAX_PROTOCOLS 5 |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 298 | #endif |
| 299 | #ifndef LWS_MAX_EXTENSIONS_ACTIVE |
Andy Green | d738f84 | 2016-01-19 04:32:14 +0800 | [diff] [blame] | 300 | #define LWS_MAX_EXTENSIONS_ACTIVE 2 |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 301 | #endif |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 302 | #ifndef LWS_MAX_EXT_OFFERS |
| 303 | #define LWS_MAX_EXT_OFFERS 8 |
| 304 | #endif |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 305 | #ifndef SPEC_LATEST_SUPPORTED |
Andy Green | d85cb20 | 2011-09-25 09:32:54 +0100 | [diff] [blame] | 306 | #define SPEC_LATEST_SUPPORTED 13 |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 307 | #endif |
| 308 | #ifndef AWAITING_TIMEOUT |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 309 | #define AWAITING_TIMEOUT 20 |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 310 | #endif |
| 311 | #ifndef CIPHERS_LIST_STRING |
David Galeano | f177f2a | 2013-01-10 10:15:19 +0800 | [diff] [blame] | 312 | #define CIPHERS_LIST_STRING "DEFAULT" |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 313 | #endif |
Andy Green | a824d18 | 2013-01-15 20:52:29 +0800 | [diff] [blame] | 314 | #ifndef LWS_SOMAXCONN |
| 315 | #define LWS_SOMAXCONN SOMAXCONN |
| 316 | #endif |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 317 | |
Andy Green | e252217 | 2011-01-18 17:14:03 +0000 | [diff] [blame] | 318 | #define MAX_WEBSOCKET_04_KEY_LEN 128 |
Andy Green | 5449511 | 2013-02-06 21:10:16 +0900 | [diff] [blame] | 319 | #define LWS_MAX_SOCKET_IO_BUF 4096 |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 320 | |
| 321 | #ifndef SYSTEM_RANDOM_FILEPATH |
Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 322 | #define SYSTEM_RANDOM_FILEPATH "/dev/urandom" |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 323 | #endif |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 324 | |
Andy Green | 5fd55cd | 2011-04-23 10:54:53 +0100 | [diff] [blame] | 325 | enum lws_websocket_opcodes_07 { |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 326 | LWSWSOPC_CONTINUATION = 0, |
| 327 | LWSWSOPC_TEXT_FRAME = 1, |
| 328 | LWSWSOPC_BINARY_FRAME = 2, |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 329 | |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 330 | LWSWSOPC_NOSPEC__MUX = 7, |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 331 | |
| 332 | /* control extensions 8+ */ |
| 333 | |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 334 | LWSWSOPC_CLOSE = 8, |
| 335 | LWSWSOPC_PING = 9, |
| 336 | LWSWSOPC_PONG = 0xa, |
Andy Green | 5fd55cd | 2011-04-23 10:54:53 +0100 | [diff] [blame] | 337 | }; |
| 338 | |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 339 | |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 340 | enum lws_connection_states { |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 341 | 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 Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 351 | LWSS_SHUTDOWN, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 352 | |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 353 | LWSS_HTTP2_AWAIT_CLIENT_PREFACE, |
| 354 | LWSS_HTTP2_ESTABLISHED_PRE_SETTINGS, |
| 355 | LWSS_HTTP2_ESTABLISHED, |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 356 | }; |
| 357 | |
Andrew Canaday | afe26cf | 2014-07-13 01:07:36 -0400 | [diff] [blame] | 358 | enum http_version { |
| 359 | HTTP_VERSION_1_0, |
| 360 | HTTP_VERSION_1_1, |
| 361 | }; |
| 362 | |
| 363 | enum http_connection_type { |
| 364 | HTTP_CONNECTION_CLOSE, |
| 365 | HTTP_CONNECTION_KEEP_ALIVE |
| 366 | }; |
| 367 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 368 | enum lws_pending_protocol_send { |
| 369 | LWS_PPS_NONE, |
| 370 | LWS_PPS_HTTP2_MY_SETTINGS, |
| 371 | LWS_PPS_HTTP2_ACK_SETTINGS, |
Andy Green | bbbf07a | 2014-10-27 16:46:44 +0800 | [diff] [blame] | 372 | LWS_PPS_HTTP2_PONG, |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 373 | }; |
| 374 | |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 375 | enum lws_rx_parse_state { |
| 376 | LWS_RXPS_NEW, |
Andy Green | e77ddd8 | 2010-11-13 10:03:47 +0000 | [diff] [blame] | 377 | |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 378 | LWS_RXPS_04_mask_1, |
| 379 | LWS_RXPS_04_mask_2, |
| 380 | LWS_RXPS_04_mask_3, |
Andy Green | 3e5eb78 | 2011-01-18 18:14:26 +0000 | [diff] [blame] | 381 | |
| 382 | LWS_RXPS_04_FRAME_HDR_1, |
Andy Green | 38e57bb | 2011-01-19 12:20:27 +0000 | [diff] [blame] | 383 | 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 Green | 3e5eb78 | 2011-01-18 18:14:26 +0000 | [diff] [blame] | 394 | |
Andy Green | 283d0a2 | 2011-04-24 05:46:23 +0100 | [diff] [blame] | 395 | 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 Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 400 | LWS_RXPS_PAYLOAD_UNTIL_LENGTH_EXHAUSTED |
| 401 | }; |
| 402 | |
| 403 | |
Andy Green | 0d33833 | 2011-02-12 11:57:43 +0000 | [diff] [blame] | 404 | enum connection_mode { |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 405 | LWSCM_HTTP_SERVING, |
| 406 | LWSCM_HTTP_SERVING_ACCEPTED, /* actual HTTP service going on */ |
| 407 | LWSCM_PRE_WS_SERVING_ACCEPT, |
Andy Green | d280b6e | 2013-01-15 13:40:23 +0800 | [diff] [blame] | 408 | |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 409 | LWSCM_WS_SERVING, |
| 410 | LWSCM_WS_CLIENT, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 411 | |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 412 | LWSCM_HTTP2_SERVING, |
Andy Green | 0d33833 | 2011-02-12 11:57:43 +0000 | [diff] [blame] | 413 | |
Andy Green | e216071 | 2013-01-28 12:19:10 +0800 | [diff] [blame] | 414 | /* transient, ssl delay hiding */ |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 415 | LWSCM_SSL_ACK_PENDING, |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 416 | LWSCM_SSL_INIT, |
Andy Green | e216071 | 2013-01-28 12:19:10 +0800 | [diff] [blame] | 417 | |
Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame] | 418 | /* transient modes */ |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 419 | 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 Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame] | 427 | |
Andy Green | 0d33833 | 2011-02-12 11:57:43 +0000 | [diff] [blame] | 428 | /* special internal types */ |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 429 | LWSCM_SERVER_LISTENER, |
Andy Green | 0d33833 | 2011-02-12 11:57:43 +0000 | [diff] [blame] | 430 | }; |
| 431 | |
Andy Green | ca0a129 | 2013-03-16 11:24:23 +0800 | [diff] [blame] | 432 | enum { |
| 433 | LWS_RXFLOW_ALLOW = (1 << 0), |
| 434 | LWS_RXFLOW_PENDING_CHANGE = (1 << 1), |
| 435 | }; |
| 436 | |
Andy Green | 1fb95e8 | 2015-12-26 17:20:34 +0800 | [diff] [blame] | 437 | /* this is not usable directly by user code any more, lws_close_reason() */ |
| 438 | #define LWS_WRITE_CLOSE 4 |
| 439 | |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 440 | struct lws_protocols; |
| 441 | struct lws; |
Andy Green | e92cd17 | 2011-01-19 13:11:55 +0000 | [diff] [blame] | 442 | |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 443 | #if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) |
| 444 | |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 445 | struct lws_io_watcher { |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 446 | #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 Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 453 | }; |
| 454 | |
| 455 | struct lws_signal_watcher { |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 456 | #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 Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 463 | }; |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 464 | #endif |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 465 | |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 466 | #ifdef _WIN32 |
| 467 | #define LWS_FD_HASH(fd) ((fd ^ (fd >> 8) ^ (fd >> 16)) % FD_HASHTABLE_MODULUS) |
Andy Green | 3ef579b | 2015-12-04 09:23:56 +0800 | [diff] [blame] | 468 | struct lws_fd_hashtable { |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 469 | struct lws **wsi; |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 470 | int length; |
| 471 | }; |
| 472 | #endif |
| 473 | |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 474 | /* |
| 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 | |
| 480 | struct 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 | |
| 491 | struct allocated_headers { |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 492 | char *data; /* prepared by context init to point to dedicated storage */ |
| 493 | /* |
| 494 | * the randomly ordered fragments, indexed by frag_index and |
| 495 | * lws_fragments->nfrag for continuation. |
| 496 | */ |
| 497 | struct lws_fragments frags[WSI_TOKEN_COUNT * 2]; |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 498 | time_t assigned; |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 499 | /* |
| 500 | * for each recognized token, frag_index says which frag[] his data |
| 501 | * starts in (0 means the token did not appear) |
| 502 | * the actual header data gets dumped as it comes in, into data[] |
| 503 | */ |
| 504 | unsigned char frag_index[WSI_TOKEN_COUNT]; |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 505 | #ifndef LWS_NO_CLIENT |
| 506 | char initial_handshake_hash_base64[30]; |
| 507 | unsigned short c_port; |
| 508 | #endif |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 509 | |
| 510 | unsigned short pos; |
| 511 | unsigned char in_use; |
| 512 | unsigned char nfrag; |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 513 | }; |
| 514 | |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 515 | /* |
| 516 | * so we can have n connections being serviced simultaneously, |
| 517 | * these things need to be isolated per-thread. |
| 518 | */ |
| 519 | |
| 520 | struct lws_context_per_thread { |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 521 | #if LWS_MAX_SMP > 1 |
| 522 | pthread_mutex_t lock; |
| 523 | #endif |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 524 | struct lws_pollfd *fds; |
| 525 | struct lws *rx_draining_ext_list; |
| 526 | struct lws *tx_draining_ext_list; |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 527 | struct lws *timeout_list; |
| 528 | void *http_header_data; |
| 529 | struct allocated_headers *ah_pool; |
| 530 | struct lws *ah_wait_list; |
| 531 | int ah_wait_list_length; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 532 | #ifdef LWS_OPENSSL_SUPPORT |
| 533 | struct lws *pending_read_list; /* linked list */ |
| 534 | #endif |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 535 | #ifndef LWS_NO_SERVER |
| 536 | struct lws *wsi_listening; |
| 537 | #endif |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 538 | #if defined(LWS_USE_LIBEV) |
| 539 | struct ev_loop *io_loop_ev; |
| 540 | #endif |
| 541 | #if defined(LWS_USE_LIBUV) |
| 542 | uv_loop_t *io_loop_uv; |
| 543 | uv_signal_t signals[8]; |
| 544 | #endif |
| 545 | #if defined(LWS_USE_LIBEV) |
| 546 | struct lws_io_watcher w_accept; |
| 547 | #endif |
| 548 | #if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) |
| 549 | struct lws_signal_watcher w_sigint; |
| 550 | unsigned char ev_loop_foreign:1; |
| 551 | #endif |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 552 | lws_sockfd_type lserv_fd; |
| 553 | |
| 554 | unsigned long count_conns; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 555 | /* |
| 556 | * usable by anything in the service code, but only if the scope |
| 557 | * does not last longer than the service action (since next service |
| 558 | * of any socket can likewise use it and overwrite) |
| 559 | */ |
| 560 | unsigned char *serv_buf; |
| 561 | #ifdef _WIN32 |
| 562 | WSAEVENT *events; |
| 563 | #else |
| 564 | int dummy_pipe_fds[2]; |
| 565 | #endif |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 566 | unsigned int fds_count; |
| 567 | |
| 568 | short ah_count_in_use; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 569 | }; |
| 570 | |
| 571 | /* |
| 572 | * the rest is managed per-context, that includes |
| 573 | * |
| 574 | * - processwide single fd -> wsi lookup |
| 575 | * - contextwide headers pool |
| 576 | * - contextwide ssl context |
| 577 | * - contextwide proxy |
| 578 | */ |
| 579 | |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 580 | struct lws_context { |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 581 | time_t last_timeout_check_s; |
| 582 | struct lws_plat_file_ops fops; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 583 | struct lws_context_per_thread pt[LWS_MAX_SMP]; |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 584 | #ifdef _WIN32 |
| 585 | /* different implementation between unix and windows */ |
Andy Green | 3ef579b | 2015-12-04 09:23:56 +0800 | [diff] [blame] | 586 | struct lws_fd_hashtable fd_hashtable[FD_HASHTABLE_MODULUS]; |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 587 | #else |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 588 | struct lws **lws_lookup; /* fd to wsi */ |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 589 | #endif |
Mattias Lundberg | 03bb8f9 | 2014-02-18 10:06:57 +0100 | [diff] [blame] | 590 | const char *iface; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 591 | const struct lws_token_limits *token_limits; |
| 592 | void *user_space; |
Andy Green | d738f84 | 2016-01-19 04:32:14 +0800 | [diff] [blame] | 593 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 594 | const struct lws_protocols *protocols; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 595 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 596 | #ifdef LWS_OPENSSL_SUPPORT |
| 597 | SSL_CTX *ssl_ctx; |
| 598 | SSL_CTX *ssl_client_ctx; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 599 | #endif |
| 600 | #ifndef LWS_NO_EXTENSIONS |
| 601 | const struct lws_extension *extensions; |
| 602 | #endif |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 603 | #if defined(LWS_USE_LIBEV) |
| 604 | lws_ev_signal_cb_t * lws_ev_sigint_cb; |
| 605 | #endif |
| 606 | #if defined(LWS_USE_LIBUV) |
| 607 | lws_uv_signal_cb_t * lws_uv_sigint_cb; |
| 608 | #endif |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 609 | char http_proxy_address[128]; |
| 610 | char proxy_basic_auth_token[128]; |
| 611 | char canonical_hostname[128]; |
| 612 | #ifdef LWS_LATENCY |
| 613 | unsigned long worst_latency; |
| 614 | char worst_latency_info[256]; |
| 615 | #endif |
Andy Green | b8b247d | 2013-01-22 07:20:08 +0800 | [diff] [blame] | 616 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 617 | int max_fds; |
| 618 | int listen_port; |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 619 | #if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 620 | int use_ev_sigint; |
| 621 | #endif |
Andy Green | 24cba92 | 2013-01-19 13:56:10 +0800 | [diff] [blame] | 622 | int started_with_parent; |
| 623 | |
Andy Green | 44eee68 | 2011-02-10 09:32:24 +0000 | [diff] [blame] | 624 | int fd_random; |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 625 | int lserv_mod; |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 626 | int count_wsi_allocated; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 627 | unsigned int http_proxy_port; |
| 628 | unsigned int options; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 629 | unsigned int fd_limit_per_thread; |
Andy Green | 6ee372f | 2012-04-09 15:09:01 +0800 | [diff] [blame] | 630 | |
Patrick Gansterer | 1ee57f6 | 2014-03-06 11:57:50 +0100 | [diff] [blame] | 631 | /* |
| 632 | * set to the Thread ID that's doing the service loop just before entry |
| 633 | * to poll indicates service thread likely idling in poll() |
| 634 | * volatile because other threads may check it as part of processing |
| 635 | * for pollfd event change. |
| 636 | */ |
| 637 | volatile int service_tid; |
Andy Green | c35b36b | 2015-12-24 13:00:54 +0800 | [diff] [blame] | 638 | int service_tid_detected; |
Patrick Gansterer | 1ee57f6 | 2014-03-06 11:57:50 +0100 | [diff] [blame] | 639 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 640 | int count_protocols; |
Andy Green | a690cd0 | 2013-02-09 12:25:31 +0800 | [diff] [blame] | 641 | int ka_time; |
| 642 | int ka_probes; |
| 643 | int ka_interval; |
| 644 | |
Andy Green | b45993c | 2010-12-18 15:13:50 +0000 | [diff] [blame] | 645 | #ifdef LWS_OPENSSL_SUPPORT |
| 646 | int use_ssl; |
James Devine | 5b34c97 | 2013-12-14 11:41:29 +0800 | [diff] [blame] | 647 | int allow_non_ssl_on_ssl_port; |
joseph.urciuoli | 4d9c8fc | 2014-10-16 08:53:19 +0800 | [diff] [blame] | 648 | unsigned int user_supplied_ssl_ctx:1; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 649 | #define lws_ssl_anybody_has_buffered_read(w) \ |
| 650 | (w->context->use_ssl && \ |
| 651 | w->context->pt[(int)w->tsi].pending_read_list) |
| 652 | #define lws_ssl_anybody_has_buffered_read_tsi(c, t) \ |
| 653 | (c->use_ssl && \ |
| 654 | c->pt[(int)t].pending_read_list) |
Andy Green | 5281560 | 2015-01-29 08:36:18 +0800 | [diff] [blame] | 655 | #else |
| 656 | #define lws_ssl_anybody_has_buffered_read(ctx) (0) |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 657 | #define lws_ssl_anybody_has_buffered_read_tsi(ctx, t) (0) |
Andy Green | b45993c | 2010-12-18 15:13:50 +0000 | [diff] [blame] | 658 | #endif |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 659 | |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 660 | short max_http_header_data; |
| 661 | short max_http_header_pool; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 662 | short count_threads; |
Andy Green | 9a9d5ea | 2016-01-18 11:49:41 +0800 | [diff] [blame] | 663 | |
| 664 | unsigned int being_destroyed:1; |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 665 | unsigned int requested_kill:1; |
Andy Green | b45993c | 2010-12-18 15:13:50 +0000 | [diff] [blame] | 666 | }; |
| 667 | |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 668 | LWS_EXTERN void |
| 669 | lws_close_free_wsi_final(struct lws *wsi); |
| 670 | LWS_EXTERN void |
| 671 | lws_libuv_closehandle(struct lws *wsi); |
| 672 | |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 673 | enum { |
| 674 | LWS_EV_READ = (1 << 0), |
| 675 | LWS_EV_WRITE = (1 << 1), |
| 676 | LWS_EV_START = (1 << 2), |
| 677 | LWS_EV_STOP = (1 << 3), |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 678 | |
| 679 | LWS_EV_PREPARE_DELETION = (1 << 31), |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 680 | }; |
| 681 | |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 682 | #if defined(LWS_USE_LIBEV) |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 683 | LWS_EXTERN void |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 684 | lws_libev_accept(struct lws *new_wsi, lws_sockfd_type accept_fd); |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 685 | LWS_EXTERN void |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 686 | lws_libev_io(struct lws *wsi, int flags); |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 687 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 688 | lws_libev_init_fd_table(struct lws_context *context); |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 689 | LWS_EXTERN void |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 690 | lws_libev_destroyloop(struct lws_context *context, int tsi); |
| 691 | LWS_EXTERN void |
| 692 | lws_libev_run(const struct lws_context *context, int tsi); |
| 693 | #define LWS_LIBEV_ENABLED(context) (context->options & LWS_SERVER_OPTION_LIBEV) |
| 694 | LWS_EXTERN void lws_feature_status_libev(struct lws_context_creation_info *info); |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 695 | #else |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 696 | #define lws_libev_accept(_a, _b) ((void) 0) |
| 697 | #define lws_libev_io(_a, _b) ((void) 0) |
| 698 | #define lws_libev_init_fd_table(_a) (0) |
| 699 | #define lws_libev_run(_a, _b) ((void) 0) |
| 700 | #define lws_libev_destroyloop(_a, _b) ((void) 0) |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 701 | #define LWS_LIBEV_ENABLED(context) (0) |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 702 | #if LWS_POSIX |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 703 | #define lws_feature_status_libev(_a) \ |
| 704 | lwsl_notice("libev support not compiled in\n") |
Andy Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 705 | #else |
| 706 | #define lws_feature_status_libev(_a) |
| 707 | #endif |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 708 | #endif |
| 709 | |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 710 | #if defined(LWS_USE_LIBUV) |
| 711 | LWS_EXTERN void |
| 712 | lws_libuv_accept(struct lws *new_wsi, lws_sockfd_type accept_fd); |
| 713 | LWS_EXTERN void |
| 714 | lws_libuv_io(struct lws *wsi, int flags); |
| 715 | LWS_EXTERN int |
| 716 | lws_libuv_init_fd_table(struct lws_context *context); |
| 717 | LWS_EXTERN void |
| 718 | lws_libuv_run(const struct lws_context *context, int tsi); |
| 719 | LWS_EXTERN void |
| 720 | lws_libuv_destroyloop(struct lws_context *context, int tsi); |
| 721 | #define LWS_LIBUV_ENABLED(context) (context->options & LWS_SERVER_OPTION_LIBUV) |
| 722 | LWS_EXTERN void lws_feature_status_libuv(struct lws_context_creation_info *info); |
| 723 | #else |
| 724 | #define lws_libuv_accept(_a, _b) ((void) 0) |
| 725 | #define lws_libuv_io(_a, _b) ((void) 0) |
| 726 | #define lws_libuv_init_fd_table(_a) (0) |
| 727 | #define lws_libuv_run(_a, _b) ((void) 0) |
| 728 | #define lws_libuv_destroyloop(_a, _b) ((void) 0) |
| 729 | #define LWS_LIBUV_ENABLED(context) (0) |
| 730 | #if LWS_POSIX |
| 731 | #define lws_feature_status_libuv(_a) \ |
| 732 | lwsl_notice("libuv support not compiled in\n") |
| 733 | #else |
| 734 | #define lws_feature_status_libuv(_a) |
| 735 | #endif |
| 736 | #endif |
| 737 | |
| 738 | |
Andy Green | 055f297 | 2014-03-24 16:09:25 +0800 | [diff] [blame] | 739 | #ifdef LWS_USE_IPV6 |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 740 | #define LWS_IPV6_ENABLED(context) \ |
| 741 | (!(context->options & LWS_SERVER_OPTION_DISABLE_IPV6)) |
James Devine | 3f13ea2 | 2014-03-24 16:09:25 +0800 | [diff] [blame] | 742 | #else |
| 743 | #define LWS_IPV6_ENABLED(context) (0) |
| 744 | #endif |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 745 | |
Andy Green | b1a9e50 | 2013-11-10 15:15:21 +0800 | [diff] [blame] | 746 | enum uri_path_states { |
| 747 | URIPS_IDLE, |
| 748 | URIPS_SEEN_SLASH, |
| 749 | URIPS_SEEN_SLASH_DOT, |
| 750 | URIPS_SEEN_SLASH_DOT_DOT, |
| 751 | }; |
| 752 | |
| 753 | enum uri_esc_states { |
| 754 | URIES_IDLE, |
| 755 | URIES_SEEN_PERCENT, |
| 756 | URIES_SEEN_PERCENT_H1, |
| 757 | }; |
Andy Green | f3d3b40 | 2011-02-09 07:16:34 +0000 | [diff] [blame] | 758 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 759 | /* notice that these union members: |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 760 | * |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 761 | * hdr |
| 762 | * http |
| 763 | * http2 |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 764 | * |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 765 | * all have a pointer to allocated_headers struct as their first member. |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 766 | * |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 767 | * It means for allocated_headers access, the three union paths can all be |
Peter Pentchev | bb085da | 2015-12-03 15:55:11 +0200 | [diff] [blame] | 768 | * used interchangeably to access the same data |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 769 | */ |
| 770 | |
Andy Green | 84fd949 | 2013-11-09 11:40:32 +0800 | [diff] [blame] | 771 | struct _lws_http_mode_related { |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 772 | /* MUST be first in struct */ |
Andy Green | 84fd949 | 2013-11-09 11:40:32 +0800 | [diff] [blame] | 773 | struct allocated_headers *ah; /* mirroring _lws_header_related */ |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 774 | struct lws *ah_wait_list; |
| 775 | struct lws *new_wsi_list; |
Andy Green | 84fd949 | 2013-11-09 11:40:32 +0800 | [diff] [blame] | 776 | unsigned long filepos; |
| 777 | unsigned long filelen; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 778 | lws_filefd_type fd; |
kapejod | ce64fb0 | 2013-11-19 13:38:16 +0100 | [diff] [blame] | 779 | |
Andrew Canaday | afe26cf | 2014-07-13 01:07:36 -0400 | [diff] [blame] | 780 | enum http_version request_version; |
| 781 | enum http_connection_type connection_type; |
Andy Green | 2cd3074 | 2015-11-02 13:10:33 +0800 | [diff] [blame] | 782 | unsigned int content_length; |
| 783 | unsigned int content_remain; |
Andy Green | 84fd949 | 2013-11-09 11:40:32 +0800 | [diff] [blame] | 784 | }; |
| 785 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 786 | #ifdef LWS_USE_HTTP2 |
| 787 | |
| 788 | enum lws_http2_settings { |
| 789 | LWS_HTTP2_SETTINGS__HEADER_TABLE_SIZE = 1, |
| 790 | LWS_HTTP2_SETTINGS__ENABLE_PUSH, |
| 791 | LWS_HTTP2_SETTINGS__MAX_CONCURRENT_STREAMS, |
| 792 | LWS_HTTP2_SETTINGS__INITIAL_WINDOW_SIZE, |
| 793 | LWS_HTTP2_SETTINGS__MAX_FRAME_SIZE, |
| 794 | LWS_HTTP2_SETTINGS__MAX_HEADER_LIST_SIZE, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 795 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 796 | LWS_HTTP2_SETTINGS__COUNT /* always last */ |
Andy Green | a54f232 | 2014-09-30 09:43:14 +0800 | [diff] [blame] | 797 | }; |
| 798 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 799 | enum lws_http2_wellknown_frame_types { |
| 800 | LWS_HTTP2_FRAME_TYPE_DATA, |
| 801 | LWS_HTTP2_FRAME_TYPE_HEADERS, |
| 802 | LWS_HTTP2_FRAME_TYPE_PRIORITY, |
| 803 | LWS_HTTP2_FRAME_TYPE_RST_STREAM, |
| 804 | LWS_HTTP2_FRAME_TYPE_SETTINGS, |
| 805 | LWS_HTTP2_FRAME_TYPE_PUSH_PROMISE, |
| 806 | LWS_HTTP2_FRAME_TYPE_PING, |
| 807 | LWS_HTTP2_FRAME_TYPE_GOAWAY, |
| 808 | LWS_HTTP2_FRAME_TYPE_WINDOW_UPDATE, |
| 809 | LWS_HTTP2_FRAME_TYPE_CONTINUATION, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 810 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 811 | LWS_HTTP2_FRAME_TYPE_COUNT /* always last */ |
| 812 | }; |
| 813 | |
Andy Green | 91b0589 | 2014-10-17 08:38:44 +0800 | [diff] [blame] | 814 | enum lws_http2_flags { |
| 815 | LWS_HTTP2_FLAG_END_STREAM = 1, |
| 816 | LWS_HTTP2_FLAG_END_HEADERS = 4, |
| 817 | LWS_HTTP2_FLAG_PADDED = 8, |
| 818 | LWS_HTTP2_FLAG_PRIORITY = 0x20, |
| 819 | |
| 820 | LWS_HTTP2_FLAG_SETTINGS_ACK = 1, |
| 821 | }; |
| 822 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 823 | #define LWS_HTTP2_STREAM_ID_MASTER 0 |
| 824 | #define LWS_HTTP2_FRAME_HEADER_LENGTH 9 |
| 825 | #define LWS_HTTP2_SETTINGS_LENGTH 6 |
| 826 | |
| 827 | struct http2_settings { |
| 828 | unsigned int setting[LWS_HTTP2_SETTINGS__COUNT]; |
| 829 | }; |
| 830 | |
Andy Green | ecc2e72 | 2014-10-09 16:57:47 +0800 | [diff] [blame] | 831 | enum http2_hpack_state { |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 832 | |
Andy Green | 200f385 | 2014-10-18 12:23:05 +0800 | [diff] [blame] | 833 | /* optional before first header block */ |
| 834 | HPKS_OPT_PADDING, |
| 835 | HKPS_OPT_E_DEPENDENCY, |
| 836 | HKPS_OPT_WEIGHT, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 837 | |
Andy Green | 200f385 | 2014-10-18 12:23:05 +0800 | [diff] [blame] | 838 | /* header block */ |
Andy Green | ecc2e72 | 2014-10-09 16:57:47 +0800 | [diff] [blame] | 839 | HPKS_TYPE, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 840 | |
Andy Green | 2add634 | 2014-10-12 08:38:16 +0800 | [diff] [blame] | 841 | HPKS_IDX_EXT, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 842 | |
Andy Green | ecc2e72 | 2014-10-09 16:57:47 +0800 | [diff] [blame] | 843 | HPKS_HLEN, |
| 844 | HPKS_HLEN_EXT, |
| 845 | |
| 846 | HPKS_DATA, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 847 | |
Andy Green | 200f385 | 2014-10-18 12:23:05 +0800 | [diff] [blame] | 848 | /* optional after last header block */ |
| 849 | HKPS_OPT_DISCARD_PADDING, |
Andy Green | ecc2e72 | 2014-10-09 16:57:47 +0800 | [diff] [blame] | 850 | }; |
| 851 | |
Andy Green | 2add634 | 2014-10-12 08:38:16 +0800 | [diff] [blame] | 852 | enum http2_hpack_type { |
| 853 | HPKT_INDEXED_HDR_7, |
| 854 | HPKT_INDEXED_HDR_6_VALUE_INCR, |
| 855 | HPKT_LITERAL_HDR_VALUE_INCR, |
| 856 | HPKT_INDEXED_HDR_4_VALUE, |
| 857 | HPKT_LITERAL_HDR_VALUE, |
| 858 | HPKT_SIZE_5 |
| 859 | }; |
| 860 | |
Andy Green | 200f385 | 2014-10-18 12:23:05 +0800 | [diff] [blame] | 861 | struct hpack_dt_entry { |
| 862 | int token; /* additions that don't map to a token are ignored */ |
| 863 | int arg_offset; |
| 864 | int arg_len; |
| 865 | }; |
| 866 | |
| 867 | struct hpack_dynamic_table { |
| 868 | struct hpack_dt_entry *entries; |
| 869 | char *args; |
| 870 | int pos; |
| 871 | int next; |
| 872 | int num_entries; |
| 873 | int args_length; |
| 874 | }; |
| 875 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 876 | struct _lws_http2_related { |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 877 | /* |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 878 | * having this first lets us also re-use all HTTP union code |
| 879 | * and in turn, http_mode_related has allocated headers in right |
| 880 | * place so we can use the header apis on the wsi directly still |
| 881 | */ |
| 882 | struct _lws_http_mode_related http; /* MUST BE FIRST IN STRUCT */ |
| 883 | |
| 884 | struct http2_settings my_settings; |
| 885 | struct http2_settings peer_settings; |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 886 | |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 887 | struct lws *parent_wsi; |
| 888 | struct lws *next_child_wsi; |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 889 | |
Andy Green | 200f385 | 2014-10-18 12:23:05 +0800 | [diff] [blame] | 890 | struct hpack_dynamic_table *hpack_dyn_table; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 891 | struct lws *stream_wsi; |
| 892 | unsigned char ping_payload[8]; |
| 893 | unsigned char one_setting[LWS_HTTP2_SETTINGS_LENGTH]; |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 894 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 895 | unsigned int count; |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 896 | unsigned int length; |
| 897 | unsigned int stream_id; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 898 | enum http2_hpack_state hpack; |
| 899 | enum http2_hpack_type hpack_type; |
| 900 | unsigned int header_index; |
| 901 | unsigned int hpack_len; |
| 902 | unsigned int hpack_e_dep; |
| 903 | int tx_credit; |
| 904 | unsigned int my_stream_id; |
| 905 | unsigned int child_count; |
| 906 | int my_priority; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 907 | |
Andy Green | 91b0589 | 2014-10-17 08:38:44 +0800 | [diff] [blame] | 908 | unsigned int END_STREAM:1; |
| 909 | unsigned int END_HEADERS:1; |
Andy Green | 1cea581 | 2014-10-19 07:36:20 +0800 | [diff] [blame] | 910 | unsigned int send_END_STREAM:1; |
Andy Green | 7df53c5 | 2014-10-22 15:37:28 +0800 | [diff] [blame] | 911 | unsigned int GOING_AWAY; |
| 912 | unsigned int requested_POLLOUT:1; |
Andy Green | 97ee57f | 2014-10-29 09:39:08 +0800 | [diff] [blame] | 913 | unsigned int waiting_tx_credit:1; |
Andy Green | ecc2e72 | 2014-10-09 16:57:47 +0800 | [diff] [blame] | 914 | unsigned int huff:1; |
| 915 | unsigned int value:1; |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 916 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 917 | unsigned short round_robin_POLLOUT; |
| 918 | unsigned short count_POLLOUT_children; |
| 919 | unsigned short hpack_pos; |
| 920 | |
| 921 | unsigned char type; |
| 922 | unsigned char flags; |
| 923 | unsigned char frame_state; |
| 924 | unsigned char padding; |
| 925 | unsigned char hpack_m; |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 926 | unsigned char initialized; |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 927 | }; |
| 928 | |
Andy Green | 7df53c5 | 2014-10-22 15:37:28 +0800 | [diff] [blame] | 929 | #define HTTP2_IS_TOPLEVEL_WSI(wsi) (!wsi->u.http2.parent_wsi) |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 930 | |
| 931 | #endif |
| 932 | |
Andy Green | 623a98d | 2013-01-21 11:04:23 +0800 | [diff] [blame] | 933 | struct _lws_header_related { |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 934 | /* MUST be first in struct */ |
Andy Green | 16ab318 | 2013-02-10 18:02:31 +0800 | [diff] [blame] | 935 | struct allocated_headers *ah; |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 936 | struct lws *ah_wait_list; |
Andy Green | b1a9e50 | 2013-11-10 15:15:21 +0800 | [diff] [blame] | 937 | enum uri_path_states ups; |
| 938 | enum uri_esc_states ues; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 939 | short lextable_pos; |
| 940 | unsigned short current_token_limit; |
Andy Green | b1a9e50 | 2013-11-10 15:15:21 +0800 | [diff] [blame] | 941 | char esc_stash; |
Andy Green | 3ba035d | 2015-12-18 15:40:03 +0800 | [diff] [blame] | 942 | char post_literal_equal; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 943 | unsigned char parser_state; /* enum lws_token_indexes */ |
Andy Green | 809d69a | 2016-01-14 11:37:56 +0800 | [diff] [blame] | 944 | char redirects; |
Andy Green | 4019aab | 2016-01-30 11:43:10 +0800 | [diff] [blame] | 945 | char more_rx_waiting; |
Andy Green | 623a98d | 2013-01-21 11:04:23 +0800 | [diff] [blame] | 946 | }; |
| 947 | |
| 948 | struct _lws_websocket_related { |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 949 | char *rx_ubuf; |
Andy Green | 4019aab | 2016-01-30 11:43:10 +0800 | [diff] [blame] | 950 | unsigned int rx_ubuf_alloc; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 951 | struct lws *rx_draining_ext_list; |
| 952 | struct lws *tx_draining_ext_list; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 953 | size_t rx_packet_length; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 954 | unsigned int rx_ubuf_head; |
| 955 | unsigned char mask[4]; |
Andy Green | 1fb95e8 | 2015-12-26 17:20:34 +0800 | [diff] [blame] | 956 | /* Also used for close content... control opcode == < 128 */ |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 957 | unsigned char ping_payload_buf[128 - 3 + LWS_PRE]; |
Andy Green | 1fb95e8 | 2015-12-26 17:20:34 +0800 | [diff] [blame] | 958 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 959 | unsigned char ping_payload_len; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 960 | unsigned char mask_idx; |
Andy Green | 623a98d | 2013-01-21 11:04:23 +0800 | [diff] [blame] | 961 | unsigned char opcode; |
Andy Green | 623a98d | 2013-01-21 11:04:23 +0800 | [diff] [blame] | 962 | unsigned char rsv; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 963 | unsigned char rsv_first_msg; |
Andy Green | 1fb95e8 | 2015-12-26 17:20:34 +0800 | [diff] [blame] | 964 | /* zero if no info, or length including 2-byte close code */ |
| 965 | unsigned char close_in_ping_buffer_len; |
Andy Green | 0c7b38b | 2015-12-29 09:46:03 +0800 | [diff] [blame] | 966 | unsigned char utf8; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 967 | unsigned char stashed_write_type; |
| 968 | unsigned char tx_draining_stashed_wp; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 969 | |
| 970 | unsigned int final:1; |
Andy Green | d91d5e8 | 2013-02-10 16:00:47 +0800 | [diff] [blame] | 971 | unsigned int frame_is_binary:1; |
Andy Green | d91d5e8 | 2013-02-10 16:00:47 +0800 | [diff] [blame] | 972 | unsigned int all_zero_nonce:1; |
Andy Green | d91d5e8 | 2013-02-10 16:00:47 +0800 | [diff] [blame] | 973 | unsigned int this_frame_masked:1; |
Andy Green | 1f4267b | 2013-10-17 08:09:19 +0800 | [diff] [blame] | 974 | unsigned int inside_frame:1; /* next write will be more of frame */ |
| 975 | unsigned int clean_buffer:1; /* buffer not rewritten by extension */ |
Andy Green | 40d5abc | 2015-04-17 20:29:58 +0800 | [diff] [blame] | 976 | unsigned int payload_is_close:1; /* process as PONG, but it is close */ |
Andy Green | ba38a7e | 2015-12-25 13:14:09 +0800 | [diff] [blame] | 977 | unsigned int ping_pending_flag:1; |
Andy Green | 977734e | 2015-12-28 16:51:08 +0800 | [diff] [blame] | 978 | unsigned int continuation_possible:1; |
Andy Green | 91d624e | 2015-12-28 17:05:40 +0800 | [diff] [blame] | 979 | unsigned int owed_a_fin:1; |
Andy Green | 9b81d3c | 2015-12-29 12:28:48 +0800 | [diff] [blame] | 980 | unsigned int check_utf8:1; |
| 981 | unsigned int defeat_check_utf8:1; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 982 | unsigned int pmce_compressed_message:1; |
| 983 | unsigned int stashed_write_pending:1; |
| 984 | unsigned int rx_draining_ext:1; |
| 985 | unsigned int tx_draining_ext:1; |
Andy Green | 623a98d | 2013-01-21 11:04:23 +0800 | [diff] [blame] | 986 | }; |
| 987 | |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 988 | struct lws { |
Andy Green | 623a98d | 2013-01-21 11:04:23 +0800 | [diff] [blame] | 989 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 990 | /* structs */ |
| 991 | /* members with mutually exclusive lifetimes are unionized */ |
| 992 | |
| 993 | union u { |
| 994 | struct _lws_http_mode_related http; |
| 995 | #ifdef LWS_USE_HTTP2 |
| 996 | struct _lws_http2_related http2; |
| 997 | #endif |
| 998 | struct _lws_header_related hdr; |
| 999 | struct _lws_websocket_related ws; |
| 1000 | } u; |
| 1001 | |
Andy Green | 623a98d | 2013-01-21 11:04:23 +0800 | [diff] [blame] | 1002 | /* lifetime members */ |
| 1003 | |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 1004 | #if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1005 | struct lws_io_watcher w_read; |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 1006 | #endif |
| 1007 | #if defined(LWS_USE_LIBEV) |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1008 | struct lws_io_watcher w_write; |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 1009 | #endif |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1010 | time_t pending_timeout_limit; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1011 | |
| 1012 | /* pointers */ |
| 1013 | |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1014 | struct lws_context *context; |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1015 | const struct lws_protocols *protocol; |
Andy Green | d738f84 | 2016-01-19 04:32:14 +0800 | [diff] [blame] | 1016 | struct lws *timeout_list; |
| 1017 | struct lws **timeout_list_prev; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1018 | void *user_space; |
| 1019 | /* rxflow handling */ |
| 1020 | unsigned char *rxflow_buffer; |
| 1021 | /* truncated send handling */ |
| 1022 | unsigned char *trunc_alloc; /* non-NULL means buffering in progress */ |
Andy Green | 3182ece | 2013-01-20 17:08:31 +0800 | [diff] [blame] | 1023 | #ifndef LWS_NO_EXTENSIONS |
Andy Green | d2ac22c | 2015-12-11 10:45:35 +0800 | [diff] [blame] | 1024 | const struct lws_extension *active_extensions[LWS_MAX_EXTENSIONS_ACTIVE]; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1025 | void *act_ext_user[LWS_MAX_EXTENSIONS_ACTIVE]; |
Andy Green | 3182ece | 2013-01-20 17:08:31 +0800 | [diff] [blame] | 1026 | #endif |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1027 | #ifdef LWS_OPENSSL_SUPPORT |
| 1028 | SSL *ssl; |
| 1029 | BIO *client_bio; |
| 1030 | struct lws *pending_read_list_prev, *pending_read_list_next; |
| 1031 | #endif |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1032 | #ifdef LWS_LATENCY |
| 1033 | unsigned long action_start; |
| 1034 | unsigned long latency_start; |
| 1035 | #endif |
| 1036 | /* pointer / int */ |
Andy Green | 3b19386 | 2015-11-02 13:13:44 +0800 | [diff] [blame] | 1037 | lws_sockfd_type sock; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1038 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1039 | /* ints */ |
Andy Green | dfb2304 | 2013-01-17 12:26:48 +0800 | [diff] [blame] | 1040 | int position_in_fds_table; |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1041 | int rxflow_len; |
| 1042 | int rxflow_pos; |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 1043 | unsigned int trunc_alloc_len; /* size of malloc */ |
| 1044 | unsigned int trunc_offset; /* where we are in terms of spilling */ |
| 1045 | unsigned int trunc_len; /* how much is buffered */ |
Andy Green | 2764eba | 2013-12-09 14:16:17 +0800 | [diff] [blame] | 1046 | |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1047 | unsigned int hdr_parsing_completed:1; |
| 1048 | unsigned int user_space_externally_allocated:1; |
| 1049 | unsigned int socket_is_permanently_unusable:1; |
| 1050 | unsigned int rxflow_change_to:2; |
| 1051 | #ifndef LWS_NO_EXTENSIONS |
| 1052 | unsigned int extension_data_pending:1; |
| 1053 | #endif |
| 1054 | #ifdef LWS_OPENSSL_SUPPORT |
| 1055 | unsigned int use_ssl:2; |
| 1056 | unsigned int upgraded:1; |
| 1057 | #endif |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1058 | #ifdef _WIN32 |
| 1059 | unsigned int sock_send_blocking:1; |
| 1060 | #endif |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1061 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1062 | /* chars */ |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1063 | #ifndef LWS_NO_EXTENSIONS |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1064 | unsigned char count_act_ext; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1065 | #endif |
| 1066 | unsigned char ietf_spec_revision; |
| 1067 | char mode; /* enum connection_mode */ |
| 1068 | char state; /* enum lws_connection_states */ |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1069 | char state_pre_close; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1070 | char lws_rx_parse_state; /* enum lws_rx_parse_state */ |
| 1071 | char rx_frame_type; /* enum lws_write_protocol */ |
| 1072 | char pending_timeout; /* enum pending_timeout */ |
Andy Green | d738f84 | 2016-01-19 04:32:14 +0800 | [diff] [blame] | 1073 | char pps; /* enum lws_pending_protocol_send */ |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 1074 | char tsi; /* thread service index we belong to */ |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 1075 | }; |
| 1076 | |
Andy Green | 3d67f51 | 2014-04-03 07:29:50 +0800 | [diff] [blame] | 1077 | LWS_EXTERN int log_level; |
| 1078 | |
Joakim Soderberg | f272cb0 | 2013-02-13 09:29:26 +0800 | [diff] [blame] | 1079 | LWS_EXTERN void |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1080 | lws_close_free_wsi(struct lws *wsi, enum lws_close_status); |
Andy Green | 508946c | 2013-02-12 10:19:08 +0800 | [diff] [blame] | 1081 | |
Andy Green | 34f3dd2 | 2014-04-03 07:42:50 +0800 | [diff] [blame] | 1082 | LWS_EXTERN int |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1083 | remove_wsi_socket_from_fds(struct lws *wsi); |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1084 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1085 | lws_rxflow_cache(struct lws *wsi, unsigned char *buf, int n, int len); |
Andy Green | 34f3dd2 | 2014-04-03 07:42:50 +0800 | [diff] [blame] | 1086 | |
Andy Green | d636e35 | 2013-01-29 12:36:17 +0800 | [diff] [blame] | 1087 | #ifndef LWS_LATENCY |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1088 | static inline void |
| 1089 | lws_latency(struct lws_context *context, struct lws *wsi, const char *action, |
| 1090 | int ret, int completion) { |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1091 | do { |
| 1092 | (void)context; (void)wsi; (void)action; (void)ret; |
| 1093 | (void)completion; |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1094 | } while (0); |
| 1095 | } |
| 1096 | static inline void |
| 1097 | lws_latency_pre(struct lws_context *context, struct lws *wsi) { |
| 1098 | do { (void)context; (void)wsi; } while (0); |
| 1099 | } |
Andy Green | d636e35 | 2013-01-29 12:36:17 +0800 | [diff] [blame] | 1100 | #else |
| 1101 | #define lws_latency_pre(_context, _wsi) lws_latency(_context, _wsi, NULL, 0, 0) |
| 1102 | extern void |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1103 | lws_latency(struct lws_context *context, struct lws *wsi, const char *action, |
| 1104 | int ret, int completion); |
Andy Green | d636e35 | 2013-01-29 12:36:17 +0800 | [diff] [blame] | 1105 | #endif |
| 1106 | |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1107 | LWS_EXTERN void |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1108 | lws_set_protocol_write_pending(struct lws *wsi, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1109 | enum lws_pending_protocol_send pend); |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1110 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1111 | lws_client_rx_sm(struct lws *wsi, unsigned char c); |
Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 1112 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1113 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1114 | lws_parse(struct lws *wsi, unsigned char c); |
Andy Green | b45993c | 2010-12-18 15:13:50 +0000 | [diff] [blame] | 1115 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1116 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1117 | lws_http_action(struct lws *wsi); |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1118 | |
| 1119 | LWS_EXTERN int |
Andy Green | df73616 | 2011-01-18 15:39:02 +0000 | [diff] [blame] | 1120 | lws_b64_selftest(void); |
Andy Green | bfb051f | 2011-02-09 08:49:14 +0000 | [diff] [blame] | 1121 | |
Andy Green | 2cd3074 | 2015-11-02 13:10:33 +0800 | [diff] [blame] | 1122 | #if defined(_WIN32) || defined(MBED_OPERATORS) |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1123 | LWS_EXTERN struct lws * |
Andy Green | 1fa7685 | 2015-12-14 11:17:16 +0800 | [diff] [blame] | 1124 | wsi_from_fd(const struct lws_context *context, lws_sockfd_type fd); |
Andy Green | 0d33833 | 2011-02-12 11:57:43 +0000 | [diff] [blame] | 1125 | |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1126 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1127 | insert_wsi(struct lws_context *context, struct lws *wsi); |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 1128 | |
| 1129 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1130 | delete_from_fd(struct lws_context *context, lws_sockfd_type fd); |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 1131 | #else |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1132 | #define wsi_from_fd(A,B) A->lws_lookup[B] |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1133 | #define insert_wsi(A,B) assert(A->lws_lookup[B->sock] == 0); A->lws_lookup[B->sock]=B |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 1134 | #define delete_from_fd(A,B) A->lws_lookup[B]=0 |
| 1135 | #endif |
| 1136 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1137 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1138 | insert_wsi_socket_into_fds(struct lws_context *context, struct lws *wsi); |
Darin Willits | c19456f | 2011-02-14 17:52:39 +0000 | [diff] [blame] | 1139 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1140 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1141 | lws_issue_raw(struct lws *wsi, unsigned char *buf, size_t len); |
Andy Green | d44bf7f | 2011-03-06 10:29:38 +0000 | [diff] [blame] | 1142 | |
Andy Green | 95a7b5d | 2011-03-06 10:29:39 +0000 | [diff] [blame] | 1143 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1144 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1145 | lws_service_timeout_check(struct lws *wsi, unsigned int sec); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1146 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1147 | LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1148 | lws_client_connect_2(struct lws *wsi); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1149 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1150 | LWS_VISIBLE struct lws * LWS_WARN_UNUSED_RESULT |
| 1151 | lws_client_reset(struct lws *wsi, int ssl, const char *address, int port, |
| 1152 | const char *path, const char *host); |
Andy Green | 809d69a | 2016-01-14 11:37:56 +0800 | [diff] [blame] | 1153 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1154 | LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1155 | lws_create_new_server_wsi(struct lws_context *context); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1156 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1157 | LWS_EXTERN char * LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1158 | lws_generate_client_handshake(struct lws *wsi, char *pkt); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1159 | |
Joakim Soderberg | f272cb0 | 2013-02-13 09:29:26 +0800 | [diff] [blame] | 1160 | LWS_EXTERN int |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1161 | lws_handle_POLLOUT_event(struct lws *wsi, struct lws_pollfd *pollfd); |
Andy Green | 91b0589 | 2014-10-17 08:38:44 +0800 | [diff] [blame] | 1162 | |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1163 | /* |
| 1164 | * EXTENSIONS |
| 1165 | */ |
| 1166 | |
Andy Green | 3182ece | 2013-01-20 17:08:31 +0800 | [diff] [blame] | 1167 | #ifndef LWS_NO_EXTENSIONS |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1168 | LWS_VISIBLE void |
| 1169 | lws_context_init_extensions(struct lws_context_creation_info *info, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1170 | struct lws_context *context); |
Joakim Soderberg | f272cb0 | 2013-02-13 09:29:26 +0800 | [diff] [blame] | 1171 | LWS_EXTERN int |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1172 | lws_any_extension_handled(struct lws *wsi, enum lws_extension_callback_reasons r, |
Andy Green | 6ee372f | 2012-04-09 15:09:01 +0800 | [diff] [blame] | 1173 | void *v, size_t len); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1174 | |
Andy Green | 2c24ec0 | 2014-04-02 19:45:42 +0800 | [diff] [blame] | 1175 | LWS_EXTERN int |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1176 | lws_ext_cb_active(struct lws *wsi, int reason, void *buf, int len); |
Andy Green | 2c24ec0 | 2014-04-02 19:45:42 +0800 | [diff] [blame] | 1177 | LWS_EXTERN int |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1178 | lws_ext_cb_all_exts(struct lws_context *context, struct lws *wsi, int reason, |
| 1179 | void *arg, int len); |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1180 | |
Andy Green | 2c24ec0 | 2014-04-02 19:45:42 +0800 | [diff] [blame] | 1181 | #else |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1182 | #define lws_any_extension_handled(_a, _b, _c, _d) (0) |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1183 | #define lws_ext_cb_active(_a, _b, _c, _d) (0) |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 1184 | #define lws_ext_cb_all_exts(_a, _b, _c, _d, _e) (0) |
Andy Green | b49a995 | 2014-04-03 10:11:04 +0800 | [diff] [blame] | 1185 | #define lws_issue_raw_ext_access lws_issue_raw |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1186 | #define lws_context_init_extensions(_a, _b) |
Andy Green | 3182ece | 2013-01-20 17:08:31 +0800 | [diff] [blame] | 1187 | #endif |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1188 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1189 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1190 | lws_client_interpret_server_handshake(struct lws *wsi); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1191 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1192 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1193 | lws_rx_sm(struct lws *wsi, unsigned char c); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1194 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1195 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1196 | lws_issue_raw_ext_access(struct lws *wsi, unsigned char *buf, size_t len); |
Andy Green | 0922650 | 2011-05-28 10:19:19 +0100 | [diff] [blame] | 1197 | |
Andy Green | 44c1161 | 2014-11-08 11:18:47 +0800 | [diff] [blame] | 1198 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1199 | lws_union_transition(struct lws *wsi, enum connection_mode mode); |
Andy Green | 44c1161 | 2014-11-08 11:18:47 +0800 | [diff] [blame] | 1200 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1201 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Denis Osvald | 034e514 | 2015-12-21 18:06:38 +0100 | [diff] [blame] | 1202 | user_callback_handle_rxflow(lws_callback_function, struct lws *wsi, |
Andy Green | 00c6d15 | 2015-12-17 07:54:44 +0800 | [diff] [blame] | 1203 | enum lws_callback_reasons reason, void *user, |
| 1204 | void *in, size_t len); |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1205 | #ifdef LWS_USE_HTTP2 |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1206 | LWS_EXTERN struct lws *lws_http2_get_network_wsi(struct lws *wsi); |
| 1207 | struct lws * lws_http2_get_nth_child(struct lws *wsi, int n); |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1208 | LWS_EXTERN int |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1209 | lws_http2_interpret_settings_payload(struct http2_settings *settings, |
| 1210 | unsigned char *buf, int len); |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1211 | LWS_EXTERN void lws_http2_init(struct http2_settings *settings); |
| 1212 | LWS_EXTERN int |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1213 | lws_http2_parser(struct lws *wsi, unsigned char c); |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1214 | LWS_EXTERN int lws_http2_do_pps_send(struct lws_context *context, |
| 1215 | struct lws *wsi); |
| 1216 | LWS_EXTERN int lws_http2_frame_write(struct lws *wsi, int type, int flags, |
| 1217 | unsigned int sid, unsigned int len, |
| 1218 | unsigned char *buf); |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1219 | LWS_EXTERN struct lws * |
| 1220 | lws_http2_wsi_from_id(struct lws *wsi, unsigned int sid); |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1221 | LWS_EXTERN int lws_hpack_interpret(struct lws *wsi, |
Andy Green | 2add634 | 2014-10-12 08:38:16 +0800 | [diff] [blame] | 1222 | unsigned char c); |
Andy Green | 917f43a | 2014-10-12 14:31:47 +0800 | [diff] [blame] | 1223 | LWS_EXTERN int |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1224 | lws_add_http2_header_by_name(struct lws *wsi, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1225 | const unsigned char *name, |
| 1226 | const unsigned char *value, int length, |
| 1227 | unsigned char **p, unsigned char *end); |
Andy Green | 917f43a | 2014-10-12 14:31:47 +0800 | [diff] [blame] | 1228 | LWS_EXTERN int |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1229 | lws_add_http2_header_by_token(struct lws *wsi, |
Andy Green | 917f43a | 2014-10-12 14:31:47 +0800 | [diff] [blame] | 1230 | enum lws_token_indexes token, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1231 | const unsigned char *value, int length, |
| 1232 | unsigned char **p, unsigned char *end); |
Andy Green | 917f43a | 2014-10-12 14:31:47 +0800 | [diff] [blame] | 1233 | LWS_EXTERN int |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1234 | lws_add_http2_header_status(struct lws *wsi, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1235 | unsigned int code, unsigned char **p, |
Andy Green | 917f43a | 2014-10-12 14:31:47 +0800 | [diff] [blame] | 1236 | unsigned char *end); |
Andy Green | 7df53c5 | 2014-10-22 15:37:28 +0800 | [diff] [blame] | 1237 | LWS_EXTERN |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1238 | void lws_http2_configure_if_upgraded(struct lws *wsi); |
Andy Green | 7df53c5 | 2014-10-22 15:37:28 +0800 | [diff] [blame] | 1239 | #else |
| 1240 | #define lws_http2_configure_if_upgraded(x) |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1241 | #endif |
Andy Green | 706961d | 2013-01-17 16:50:35 +0800 | [diff] [blame] | 1242 | |
Joakim Soderberg | f272cb0 | 2013-02-13 09:29:26 +0800 | [diff] [blame] | 1243 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1244 | lws_plat_set_socket_options(struct lws_context *context, lws_sockfd_type fd); |
Andy Green | a690cd0 | 2013-02-09 12:25:31 +0800 | [diff] [blame] | 1245 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1246 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1247 | lws_allocate_header_table(struct lws *wsi); |
Andy Green | 16ab318 | 2013-02-10 18:02:31 +0800 | [diff] [blame] | 1248 | |
Andrew Canaday | 3771881 | 2014-11-07 11:20:59 +0800 | [diff] [blame] | 1249 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1250 | lws_free_header_table(struct lws *wsi); |
Andrew Canaday | 3771881 | 2014-11-07 11:20:59 +0800 | [diff] [blame] | 1251 | |
Andy Green | 4019aab | 2016-01-30 11:43:10 +0800 | [diff] [blame] | 1252 | LWS_EXTERN void |
| 1253 | lws_reset_header_table(struct lws *wsi); |
| 1254 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1255 | LWS_EXTERN char * LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1256 | lws_hdr_simple_ptr(struct lws *wsi, enum lws_token_indexes h); |
Andy Green | 16ab318 | 2013-02-10 18:02:31 +0800 | [diff] [blame] | 1257 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1258 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1259 | lws_hdr_simple_create(struct lws *wsi, enum lws_token_indexes h, const char *s); |
Andy Green | b5b2319 | 2013-02-11 17:13:32 +0800 | [diff] [blame] | 1260 | |
Andy Green | 2af4d5b | 2013-02-18 16:30:10 +0800 | [diff] [blame] | 1261 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1262 | lws_ensure_user_space(struct lws *wsi); |
Andy Green | 2af4d5b | 2013-02-18 16:30:10 +0800 | [diff] [blame] | 1263 | |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 1264 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1265 | lws_change_pollfd(struct lws *wsi, int _and, int _or); |
Andy Green | 91f19d8 | 2013-12-21 11:18:34 +0800 | [diff] [blame] | 1266 | |
Andy Green | b5b2319 | 2013-02-11 17:13:32 +0800 | [diff] [blame] | 1267 | #ifndef LWS_NO_SERVER |
Andy Green | e38031a | 2014-04-03 08:24:29 +0800 | [diff] [blame] | 1268 | int lws_context_init_server(struct lws_context_creation_info *info, |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1269 | struct lws_context *context); |
Andy Green | d7340c1 | 2014-04-10 14:08:10 +0800 | [diff] [blame] | 1270 | LWS_EXTERN int |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1271 | handshake_0405(struct lws_context *context, struct lws *wsi); |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1272 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1273 | lws_interpret_incoming_packet(struct lws *wsi, unsigned char **buf, size_t len); |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1274 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1275 | lws_server_get_canonical_hostname(struct lws_context *context, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1276 | struct lws_context_creation_info *info); |
Andy Green | e38031a | 2014-04-03 08:24:29 +0800 | [diff] [blame] | 1277 | #else |
| 1278 | #define lws_context_init_server(_a, _b) (0) |
Andy Green | 3ef579b | 2015-12-04 09:23:56 +0800 | [diff] [blame] | 1279 | #define lws_interpret_incoming_packet(_a, _b, _c) (0) |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1280 | #define lws_server_get_canonical_hostname(_a, _b) |
Andy Green | b5b2319 | 2013-02-11 17:13:32 +0800 | [diff] [blame] | 1281 | #endif |
| 1282 | |
| 1283 | #ifndef LWS_NO_DAEMONIZE |
Joakim Soderberg | f272cb0 | 2013-02-13 09:29:26 +0800 | [diff] [blame] | 1284 | LWS_EXTERN int get_daemonize_pid(); |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1285 | #else |
| 1286 | #define get_daemonize_pid() (0) |
Andy Green | b5b2319 | 2013-02-11 17:13:32 +0800 | [diff] [blame] | 1287 | #endif |
| 1288 | |
Andy Green | 2cd3074 | 2015-11-02 13:10:33 +0800 | [diff] [blame] | 1289 | #if !defined(MBED_OPERATORS) |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1290 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1291 | interface_to_sa(struct lws_context *context, const char *ifname, |
| 1292 | struct sockaddr_in *addr, size_t addrlen); |
Andy Green | 2cd3074 | 2015-11-02 13:10:33 +0800 | [diff] [blame] | 1293 | #endif |
Andy Green | b25b85f | 2014-04-03 23:34:09 +0800 | [diff] [blame] | 1294 | LWS_EXTERN void lwsl_emit_stderr(int level, const char *line); |
| 1295 | |
Andy Green | 1a308e4 | 2014-04-08 07:26:30 +0100 | [diff] [blame] | 1296 | enum lws_ssl_capable_status { |
| 1297 | LWS_SSL_CAPABLE_ERROR = -1, |
| 1298 | LWS_SSL_CAPABLE_MORE_SERVICE = -2, |
| 1299 | }; |
| 1300 | |
Darin Willits | c19456f | 2011-02-14 17:52:39 +0000 | [diff] [blame] | 1301 | #ifndef LWS_OPENSSL_SUPPORT |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1302 | #define LWS_SSL_ENABLED(context) (0) |
Andy Green | c57037a | 2014-04-03 10:17:00 +0800 | [diff] [blame] | 1303 | #define lws_context_init_server_ssl(_a, _b) (0) |
| 1304 | #define lws_ssl_destroy(_a) |
Andy Green | 2eedea9 | 2014-04-03 14:33:48 +0800 | [diff] [blame] | 1305 | #define lws_context_init_http2_ssl(_a) |
Andy Green | 0213812 | 2014-04-06 06:26:35 +0100 | [diff] [blame] | 1306 | #define lws_ssl_capable_read lws_ssl_capable_read_no_ssl |
| 1307 | #define lws_ssl_capable_write lws_ssl_capable_write_no_ssl |
=?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?= | 4c0ba02 | 2015-08-19 16:23:33 +0200 | [diff] [blame] | 1308 | #define lws_ssl_pending lws_ssl_pending_no_ssl |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1309 | #define lws_server_socket_service_ssl(_b, _c) (0) |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1310 | #define lws_ssl_close(_a) (0) |
| 1311 | #define lws_ssl_context_destroy(_a) |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1312 | #define lws_ssl_remove_wsi_from_buffered_list(_a) |
Andy Green | b5b2319 | 2013-02-11 17:13:32 +0800 | [diff] [blame] | 1313 | #else |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1314 | #define LWS_SSL_ENABLED(context) (context->use_ssl) |
Joakim Soderberg | f272cb0 | 2013-02-13 09:29:26 +0800 | [diff] [blame] | 1315 | LWS_EXTERN int openssl_websocket_private_data_index; |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1316 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1317 | lws_ssl_capable_read(struct lws *wsi, unsigned char *buf, int len); |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1318 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1319 | lws_ssl_capable_write(struct lws *wsi, unsigned char *buf, int len); |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1320 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1321 | lws_ssl_pending(struct lws *wsi); |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1322 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1323 | lws_server_socket_service_ssl(struct lws *new_wsi, lws_sockfd_type accept_fd); |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1324 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1325 | lws_ssl_close(struct lws *wsi); |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1326 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1327 | lws_ssl_context_destroy(struct lws_context *context); |
Andy Green | 5281560 | 2015-01-29 08:36:18 +0800 | [diff] [blame] | 1328 | LWS_VISIBLE void |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1329 | lws_ssl_remove_wsi_from_buffered_list(struct lws *wsi); |
Andy Green | c57037a | 2014-04-03 10:17:00 +0800 | [diff] [blame] | 1330 | #ifndef LWS_NO_SERVER |
| 1331 | LWS_EXTERN int |
| 1332 | lws_context_init_server_ssl(struct lws_context_creation_info *info, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1333 | struct lws_context *context); |
Andy Green | c57037a | 2014-04-03 10:17:00 +0800 | [diff] [blame] | 1334 | #else |
| 1335 | #define lws_context_init_server_ssl(_a, _b) (0) |
| 1336 | #endif |
| 1337 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1338 | lws_ssl_destroy(struct lws_context *context); |
Andy Green | 2eedea9 | 2014-04-03 14:33:48 +0800 | [diff] [blame] | 1339 | |
| 1340 | /* HTTP2-related */ |
| 1341 | |
| 1342 | #ifdef LWS_USE_HTTP2 |
| 1343 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1344 | lws_context_init_http2_ssl(struct lws_context *context); |
Andy Green | 2eedea9 | 2014-04-03 14:33:48 +0800 | [diff] [blame] | 1345 | #else |
| 1346 | #define lws_context_init_http2_ssl(_a) |
| 1347 | #endif |
Darin Willits | c19456f | 2011-02-14 17:52:39 +0000 | [diff] [blame] | 1348 | #endif |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1349 | |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1350 | #if LWS_MAX_SMP > 1 |
| 1351 | static LWS_INLINE void |
| 1352 | lws_pt_mutex_init(struct lws_context_per_thread *pt) |
| 1353 | { |
| 1354 | pthread_mutex_init(&pt->lock, NULL); |
| 1355 | } |
| 1356 | static LWS_INLINE void |
| 1357 | lws_pt_lock(struct lws_context_per_thread *pt) |
| 1358 | { |
| 1359 | pthread_mutex_lock(&pt->lock); |
| 1360 | } |
| 1361 | |
| 1362 | static LWS_INLINE void |
| 1363 | lws_pt_unlock(struct lws_context_per_thread *pt) |
| 1364 | { |
| 1365 | pthread_mutex_unlock(&pt->lock); |
| 1366 | } |
| 1367 | #else |
| 1368 | #define lws_pt_mutex_init(_a) (void)(_a) |
| 1369 | #define lws_pt_lock(_a) (void)(_a) |
| 1370 | #define lws_pt_unlock(_a) (void)(_a) |
| 1371 | #endif |
| 1372 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1373 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1374 | lws_ssl_capable_read_no_ssl(struct lws *wsi, unsigned char *buf, int len); |
Patrick Gansterer | a6b019a | 2014-04-15 18:40:31 +0200 | [diff] [blame] | 1375 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1376 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1377 | lws_ssl_capable_write_no_ssl(struct lws *wsi, unsigned char *buf, int len); |
Patrick Gansterer | a6b019a | 2014-04-15 18:40:31 +0200 | [diff] [blame] | 1378 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1379 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1380 | lws_ssl_pending_no_ssl(struct lws *wsi); |
=?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?= | 4c0ba02 | 2015-08-19 16:23:33 +0200 | [diff] [blame] | 1381 | |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1382 | #ifndef LWS_NO_CLIENT |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1383 | LWS_EXTERN int lws_client_socket_service(struct lws_context *context, |
| 1384 | struct lws *wsi, |
| 1385 | struct lws_pollfd *pollfd); |
Andy Green | c57037a | 2014-04-03 10:17:00 +0800 | [diff] [blame] | 1386 | #ifdef LWS_OPENSSL_SUPPORT |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1387 | LWS_EXTERN int |
| 1388 | lws_context_init_client_ssl(struct lws_context_creation_info *info, |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1389 | struct lws_context *context); |
Andy Green | e38031a | 2014-04-03 08:24:29 +0800 | [diff] [blame] | 1390 | #else |
Andy Green | c57037a | 2014-04-03 10:17:00 +0800 | [diff] [blame] | 1391 | #define lws_context_init_client_ssl(_a, _b) (0) |
| 1392 | #endif |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1393 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1394 | lws_handshake_client(struct lws *wsi, unsigned char **buf, size_t len); |
| 1395 | LWS_EXTERN void |
| 1396 | lws_decode_ssl_error(void); |
Andy Green | c57037a | 2014-04-03 10:17:00 +0800 | [diff] [blame] | 1397 | #else |
| 1398 | #define lws_context_init_client_ssl(_a, _b) (0) |
Andy Green | aad2eac | 2014-04-03 09:03:37 +0800 | [diff] [blame] | 1399 | #define lws_handshake_client(_a, _b, _c) (0) |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1400 | #endif |
Andy Green | 44e0b08 | 2015-12-28 14:24:49 +0800 | [diff] [blame] | 1401 | |
| 1402 | LWS_EXTERN int |
| 1403 | _lws_rx_flow_control(struct lws *wsi); |
| 1404 | |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1405 | LWS_EXTERN int |
| 1406 | _lws_change_pollfd(struct lws *wsi, int _and, int _or, struct lws_pollargs *pa); |
| 1407 | |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1408 | #ifndef LWS_NO_SERVER |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1409 | LWS_EXTERN int |
| 1410 | lws_server_socket_service(struct lws_context *context, struct lws *wsi, |
| 1411 | struct lws_pollfd *pollfd); |
| 1412 | LWS_EXTERN int |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1413 | lws_handshake_server(struct lws *wsi, unsigned char **buf, size_t len); |
Andy Green | b3d21f1 | 2015-12-25 09:12:08 +0800 | [diff] [blame] | 1414 | LWS_EXTERN int |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1415 | _lws_server_listen_accept_flow_control(struct lws *twsi, int on); |
Andy Green | d99476b | 2014-04-03 08:40:05 +0800 | [diff] [blame] | 1416 | #else |
Andy Green | b49a995 | 2014-04-03 10:11:04 +0800 | [diff] [blame] | 1417 | #define lws_server_socket_service(_a, _b, _c) (0) |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1418 | #define lws_handshake_server(_a, _b, _c) (0) |
Andy Green | b3d21f1 | 2015-12-25 09:12:08 +0800 | [diff] [blame] | 1419 | #define _lws_server_listen_accept_flow_control(a, b) (0) |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1420 | #endif |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1421 | |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1422 | LWS_EXTERN int |
| 1423 | lws_get_addresses(struct lws_context *context, void *ads, char *name, |
| 1424 | int name_len, char *rip, int rip_len); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1425 | |
| 1426 | /* |
Alejandro Mery | cdc9717 | 2014-12-04 23:15:27 +0100 | [diff] [blame] | 1427 | * custom allocator |
| 1428 | */ |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1429 | LWS_EXTERN void * |
Alejandro Mery | cdc9717 | 2014-12-04 23:15:27 +0100 | [diff] [blame] | 1430 | lws_realloc(void *ptr, size_t size); |
| 1431 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1432 | LWS_EXTERN void * LWS_WARN_UNUSED_RESULT |
Alejandro Mery | cdc9717 | 2014-12-04 23:15:27 +0100 | [diff] [blame] | 1433 | lws_zalloc(size_t size); |
| 1434 | |
| 1435 | #define lws_malloc(S) lws_realloc(NULL, S) |
| 1436 | #define lws_free(P) lws_realloc(P, 0) |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 1437 | #define lws_free_set_NULL(P) do { lws_realloc(P, 0); (P) = NULL; } while(0) |
Alejandro Mery | cdc9717 | 2014-12-04 23:15:27 +0100 | [diff] [blame] | 1438 | |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1439 | /* lws_plat_ */ |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1440 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1441 | lws_plat_delete_socket_from_fds(struct lws_context *context, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1442 | struct lws *wsi, int m); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1443 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1444 | lws_plat_insert_socket_into_fds(struct lws_context *context, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1445 | struct lws *wsi); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1446 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1447 | lws_plat_service_periodic(struct lws_context *context); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1448 | |
| 1449 | LWS_EXTERN int |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1450 | lws_plat_change_pollfd(struct lws_context *context, struct lws *wsi, |
| 1451 | struct lws_pollfd *pfd); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1452 | LWS_EXTERN int |
| 1453 | lws_plat_context_early_init(void); |
| 1454 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1455 | lws_plat_context_early_destroy(struct lws_context *context); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1456 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1457 | lws_plat_context_late_destroy(struct lws_context *context); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1458 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1459 | lws_poll_listen_fd(struct lws_pollfd *fd); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1460 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1461 | lws_plat_service(struct lws_context *context, int timeout_ms); |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 1462 | LWS_EXTERN LWS_VISIBLE int |
| 1463 | lws_plat_service_tsi(struct lws_context *context, int timeout_ms, int tsi); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1464 | LWS_EXTERN int |
Andy Green | 4386e36 | 2015-12-10 07:14:16 +0800 | [diff] [blame] | 1465 | lws_plat_init(struct lws_context *context, |
| 1466 | struct lws_context_creation_info *info); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1467 | LWS_EXTERN void |
| 1468 | lws_plat_drop_app_privileges(struct lws_context_creation_info *info); |
| 1469 | LWS_EXTERN unsigned long long |
| 1470 | time_in_microseconds(void); |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1471 | LWS_EXTERN const char * LWS_WARN_UNUSED_RESULT |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1472 | lws_plat_inet_ntop(int af, const void *src, char *dst, int cnt); |
Andy Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 1473 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1474 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 86c1ef1 | 2015-12-30 11:43:36 +0800 | [diff] [blame] | 1475 | lws_check_utf8(unsigned char *state, unsigned char *buf, size_t len); |
| 1476 | |
Andy Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 1477 | #ifdef __cplusplus |
| 1478 | }; |
| 1479 | #endif |