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 | |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 25 | |
| 26 | #if defined(LWS_WITH_CGI) && defined(LWS_HAVE_VFORK) |
| 27 | #define _GNU_SOURCE |
| 28 | #endif |
| 29 | |
=?UTF-8?q?Joakim=20S=C3=B6derberg?= | cefab31 | 2015-06-24 16:46:02 +0200 | [diff] [blame] | 30 | #ifdef LWS_HAVE_SYS_TYPES_H |
Andy Green | e40aa9b | 2014-04-02 21:02:54 +0800 | [diff] [blame] | 31 | #include <sys/types.h> |
Joakim Soderberg | 91de933 | 2013-02-06 15:30:33 +0900 | [diff] [blame] | 32 | #endif |
Joakim Soderberg | 4c53123 | 2013-02-06 15:26:58 +0900 | [diff] [blame] | 33 | |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 34 | #include <stdio.h> |
| 35 | #include <stdlib.h> |
| 36 | #include <string.h> |
Patrick Gansterer | b13eed4 | 2014-03-30 10:19:23 +0200 | [diff] [blame] | 37 | #include <time.h> |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 38 | #include <ctype.h> |
Peter Young | 26757a7 | 2013-01-17 10:08:16 +0800 | [diff] [blame] | 39 | #include <limits.h> |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 40 | #include <stdarg.h> |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 41 | #if defined(LWS_WITH_ESP8266) |
| 42 | #include <user_interface.h> |
| 43 | #define assert(n) |
| 44 | |
| 45 | /* rom-provided stdc functions for free, ensure use these instead of libc ones */ |
| 46 | |
| 47 | int ets_vsprintf(char *str, const char *format, va_list argptr); |
| 48 | int ets_vsnprintf(char *buffer, size_t sizeOfBuffer, const char *format, va_list argptr); |
| 49 | int ets_snprintf(char *str, size_t size, const char *format, ...); |
| 50 | int ets_sprintf(char *str, const char *format, ...); |
| 51 | int os_printf_plus(const char *format, ...); |
| 52 | #undef malloc |
| 53 | #undef realloc |
| 54 | #undef free |
| 55 | void *pvPortMalloc(size_t s, const char *f, int line); |
| 56 | #define malloc(s) pvPortMalloc(s, "", 0) |
| 57 | void *pvPortRealloc(void *p, size_t s, const char *f, int line); |
| 58 | #define realloc(p, s) pvPortRealloc(p, s, "", 0) |
| 59 | void vPortFree(void *p, const char *f, int line); |
| 60 | #define free(p) vPortFree(p, "", 0) |
| 61 | #undef memcpy |
| 62 | void *ets_memcpy(void *dest, const void *src, size_t n); |
| 63 | #define memcpy ets_memcpy |
| 64 | void *ets_memset(void *dest, int v, size_t n); |
| 65 | #define memset ets_memset |
| 66 | char *ets_strcpy(char *dest, const char *src); |
| 67 | #define strcpy ets_strcpy |
| 68 | char *ets_strncpy(char *dest, const char *src, size_t n); |
| 69 | #define strncpy ets_strncpy |
| 70 | char *ets_strstr(const char *haystack, const char *needle); |
| 71 | #define strstr ets_strstr |
| 72 | int ets_strcmp(const char *s1, const char *s2); |
| 73 | int ets_strncmp(const char *s1, const char *s2, size_t n); |
| 74 | #define strcmp ets_strcmp |
| 75 | #define strncmp ets_strncmp |
| 76 | size_t ets_strlen(const char *s); |
| 77 | #define strlen ets_strlen |
| 78 | void *ets_memmove(void *dest, const void *src, size_t n); |
| 79 | #define memmove ets_memmove |
| 80 | char *ets_strchr(const char *s, int c); |
| 81 | #define strchr_ets_strchr |
| 82 | #undef _DEBUG |
| 83 | #include <osapi.h> |
| 84 | |
| 85 | #else |
| 86 | #define STORE_IN_ROM |
Andy Green | 112f980 | 2015-12-04 07:22:44 +0800 | [diff] [blame] | 87 | #include <assert.h> |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 88 | #endif |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 89 | #if LWS_MAX_SMP > 1 |
| 90 | #include <pthread.h> |
| 91 | #endif |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 92 | |
=?UTF-8?q?Joakim=20S=C3=B6derberg?= | cefab31 | 2015-06-24 16:46:02 +0200 | [diff] [blame] | 93 | #ifdef LWS_HAVE_SYS_STAT_H |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 94 | #include <sys/stat.h> |
Patrick Gansterer | e5720a3 | 2014-02-28 00:57:19 +0100 | [diff] [blame] | 95 | #endif |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 96 | |
Andreas Pakulat | 68bd4bd | 2013-10-28 15:18:04 +0100 | [diff] [blame] | 97 | #if defined(WIN32) || defined(_WIN32) |
Stephan Eberle | b820e2c | 2015-10-23 08:10:55 +0200 | [diff] [blame] | 98 | #if (WINVER < 0x0501) |
| 99 | #undef WINVER |
| 100 | #undef _WIN32_WINNT |
| 101 | #define WINVER 0x0501 |
| 102 | #define _WIN32_WINNT WINVER |
| 103 | #endif |
Joakim Soderberg | 4c53123 | 2013-02-06 15:26:58 +0900 | [diff] [blame] | 104 | #define LWS_NO_DAEMONIZE |
Patrick Gansterer | 2dbd837 | 2014-02-28 12:37:52 +0100 | [diff] [blame] | 105 | #define LWS_ERRNO WSAGetLastError() |
| 106 | #define LWS_EAGAIN WSAEWOULDBLOCK |
| 107 | #define LWS_EALREADY WSAEALREADY |
| 108 | #define LWS_EINPROGRESS WSAEINPROGRESS |
| 109 | #define LWS_EINTR WSAEINTR |
| 110 | #define LWS_EISCONN WSAEISCONN |
| 111 | #define LWS_EWOULDBLOCK WSAEWOULDBLOCK |
Patrick Gansterer | 73882e4 | 2014-03-29 08:25:58 +0100 | [diff] [blame] | 112 | #define MSG_NOSIGNAL 0 |
| 113 | #define SHUT_RDWR SD_BOTH |
| 114 | #define SOL_TCP IPPROTO_TCP |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 115 | #define SHUT_WR SD_SEND |
Joakim Soderberg | 4c53123 | 2013-02-06 15:26:58 +0900 | [diff] [blame] | 116 | |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 117 | #define compatible_close(fd) closesocket(fd) |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 118 | #define lws_set_blocking_send(wsi) wsi->sock_send_blocking = 1 |
Andy Green | c53f7ca | 2015-11-14 07:35:27 +0800 | [diff] [blame] | 119 | #define lws_socket_is_valid(x) (!!x) |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 120 | #define LWS_SOCK_INVALID 0 |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 121 | #include <winsock2.h> |
Andy Green | eee0d8a | 2015-12-17 15:15:12 +0800 | [diff] [blame] | 122 | #include <ws2tcpip.h> |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 123 | #include <windows.h> |
Joakim Soderberg | d2f5b19 | 2014-04-07 11:28:08 +0200 | [diff] [blame] | 124 | #include <tchar.h> |
=?UTF-8?q?Joakim=20S=C3=B6derberg?= | cefab31 | 2015-06-24 16:46:02 +0200 | [diff] [blame] | 125 | #ifdef LWS_HAVE_IN6ADDR_H |
Andy Green | 0f58db3 | 2014-04-12 11:10:35 +0800 | [diff] [blame] | 126 | #include <in6addr.h> |
| 127 | #endif |
Joakim Soderberg | d2f5b19 | 2014-04-07 11:28:08 +0200 | [diff] [blame] | 128 | #include <mstcpip.h> |
Andy Green | d6be677 | 2016-05-14 06:49:29 +0800 | [diff] [blame] | 129 | #include <io.h> |
Joakim Soderberg | d2f5b19 | 2014-04-07 11:28:08 +0200 | [diff] [blame] | 130 | |
| 131 | #ifndef __func__ |
| 132 | #define __func__ __FUNCTION__ |
| 133 | #endif |
| 134 | |
OndraCo | a709cbb | 2016-05-05 13:56:07 +0200 | [diff] [blame] | 135 | #if (defined(_MSC_VER) && _MSC_VER < 1900) || defined(_WIN32_WCE) |
Patrick Gansterer | 6bb4b62 | 2014-04-15 18:39:26 +0200 | [diff] [blame] | 136 | #define vsnprintf _vsnprintf |
Andy Green | 7d22c29 | 2016-03-04 10:53:51 +0800 | [diff] [blame] | 137 | #else |
| 138 | #ifdef LWS_HAVE__VSNPRINTF |
| 139 | #define vsnprintf _vsnprintf |
| 140 | #endif |
| 141 | #endif |
| 142 | |
| 143 | #ifdef LWS_HAVE__SNPRINTF |
Andy Green | a496700 | 2016-09-15 02:22:57 +0800 | [diff] [blame] | 144 | #define lws_snprintf _snprintf |
Patrick Gansterer | 6bb4b62 | 2014-04-15 18:39:26 +0200 | [diff] [blame] | 145 | #endif |
| 146 | |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 147 | #else /* not windows --> */ |
Andy Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 148 | |
Patrick Gansterer | b13eed4 | 2014-03-30 10:19:23 +0200 | [diff] [blame] | 149 | #include <fcntl.h> |
Patrick Gansterer | b13eed4 | 2014-03-30 10:19:23 +0200 | [diff] [blame] | 150 | #include <strings.h> |
| 151 | #include <unistd.h> |
Andy Green | e77ddd8 | 2010-11-13 10:03:47 +0000 | [diff] [blame] | 152 | #include <sys/types.h> |
Andy Green | 5f2a815 | 2015-11-02 08:21:08 +0800 | [diff] [blame] | 153 | #ifndef MBED_OPERATORS |
Andy Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 154 | #ifndef __cplusplus |
| 155 | #include <errno.h> |
| 156 | #endif |
Andy Green | 5f2a815 | 2015-11-02 08:21:08 +0800 | [diff] [blame] | 157 | #include <netdb.h> |
| 158 | #include <signal.h> |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 159 | #ifdef LWS_WITH_ESP8266 |
| 160 | #include <sockets.h> |
| 161 | #define vsnprintf ets_vsnprintf |
| 162 | #define snprintf ets_snprintf |
| 163 | #define sprintf ets_sprintf |
| 164 | #else |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 165 | #include <sys/socket.h> |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 166 | #endif |
Andy Green | 1e5a9ad | 2016-03-20 11:59:53 +0800 | [diff] [blame] | 167 | #ifdef LWS_WITH_HTTP_PROXY |
| 168 | #include <hubbub/hubbub.h> |
| 169 | #include <hubbub/parser.h> |
| 170 | #endif |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 171 | #if defined(LWS_BUILTIN_GETIFADDRS) |
Andy Green | e40aa9b | 2014-04-02 21:02:54 +0800 | [diff] [blame] | 172 | #include <getifaddrs.h> |
| 173 | #else |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 174 | #if !defined(LWS_WITH_ESP8266) |
Andy Green | e40aa9b | 2014-04-02 21:02:54 +0800 | [diff] [blame] | 175 | #include <ifaddrs.h> |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 176 | #endif |
Andy Green | e40aa9b | 2014-04-02 21:02:54 +0800 | [diff] [blame] | 177 | #endif |
Dnyanesh Gate | 759e50c | 2014-09-26 05:39:05 +0800 | [diff] [blame] | 178 | #if defined (__ANDROID__) |
| 179 | #include <syslog.h> |
Alexander Bruines | 119bdaa | 2016-04-23 11:10:18 +0200 | [diff] [blame] | 180 | #include <sys/resource.h> |
Fredrik Skogman | 316960b | 2016-09-09 06:49:44 +0800 | [diff] [blame] | 181 | #elif defined (__sun) |
| 182 | #include <syslog.h> |
Dnyanesh Gate | 759e50c | 2014-09-26 05:39:05 +0800 | [diff] [blame] | 183 | #else |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 184 | #if !defined(LWS_WITH_ESP8266) |
Andy Green | e40aa9b | 2014-04-02 21:02:54 +0800 | [diff] [blame] | 185 | #include <sys/syslog.h> |
Dnyanesh Gate | 759e50c | 2014-09-26 05:39:05 +0800 | [diff] [blame] | 186 | #endif |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 187 | #endif |
Andy Green | e40aa9b | 2014-04-02 21:02:54 +0800 | [diff] [blame] | 188 | #include <netdb.h> |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 189 | #if !defined(LWS_WITH_ESP8266) |
| 190 | #include <sys/mman.h> |
| 191 | #include <sys/un.h> |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 192 | #include <netinet/in.h> |
Andy Green | 6c93955 | 2011-03-08 08:56:57 +0000 | [diff] [blame] | 193 | #include <netinet/tcp.h> |
Andy Green | b45993c | 2010-12-18 15:13:50 +0000 | [diff] [blame] | 194 | #include <arpa/inet.h> |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 195 | #include <poll.h> |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 196 | #endif |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 197 | #ifdef LWS_USE_LIBEV |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 198 | #include <ev.h> |
| 199 | #endif |
| 200 | #ifdef LWS_USE_LIBUV |
Alex Hultman | a43c2ac | 2016-02-01 08:31:54 +0800 | [diff] [blame] | 201 | #include <uv.h> |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 202 | #endif |
Andy Green | 5f2a815 | 2015-11-02 08:21:08 +0800 | [diff] [blame] | 203 | |
| 204 | #endif /* MBED */ |
| 205 | |
| 206 | #ifndef LWS_NO_FORK |
| 207 | #ifdef LWS_HAVE_SYS_PRCTL_H |
| 208 | #include <sys/prctl.h> |
| 209 | #endif |
| 210 | #endif |
| 211 | |
Andy Green | 038d582 | 2011-02-14 20:58:26 +0000 | [diff] [blame] | 212 | #include <sys/time.h> |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 213 | |
Patrick Gansterer | 2dbd837 | 2014-02-28 12:37:52 +0100 | [diff] [blame] | 214 | #define LWS_ERRNO errno |
| 215 | #define LWS_EAGAIN EAGAIN |
| 216 | #define LWS_EALREADY EALREADY |
| 217 | #define LWS_EINPROGRESS EINPROGRESS |
| 218 | #define LWS_EINTR EINTR |
| 219 | #define LWS_EISCONN EISCONN |
| 220 | #define LWS_EWOULDBLOCK EWOULDBLOCK |
Andy Green | 2b304a9 | 2016-07-11 07:28:23 +0800 | [diff] [blame] | 221 | |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 222 | #define lws_set_blocking_send(wsi) |
Andy Green | 2cd3074 | 2015-11-02 13:10:33 +0800 | [diff] [blame] | 223 | |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 224 | #if defined(MBED_OPERATORS) || defined(LWS_WITH_ESP8266) |
Andy Green | 2cd3074 | 2015-11-02 13:10:33 +0800 | [diff] [blame] | 225 | #define lws_socket_is_valid(x) ((x) != NULL) |
| 226 | #define LWS_SOCK_INVALID (NULL) |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 227 | struct lws; |
| 228 | const char * |
| 229 | lws_plat_get_peer_simple(struct lws *wsi, char *name, int namelen); |
Andy Green | 2cd3074 | 2015-11-02 13:10:33 +0800 | [diff] [blame] | 230 | #else |
Andy Green | c53f7ca | 2015-11-14 07:35:27 +0800 | [diff] [blame] | 231 | #define lws_socket_is_valid(x) (x >= 0) |
| 232 | #define LWS_SOCK_INVALID (-1) |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 233 | #endif |
Andy Green | 2cd3074 | 2015-11-02 13:10:33 +0800 | [diff] [blame] | 234 | #endif |
Peter Hinz | 56885f3 | 2011-03-02 22:03:47 +0000 | [diff] [blame] | 235 | |
=?UTF-8?q?Joakim=20S=C3=B6derberg?= | cefab31 | 2015-06-24 16:46:02 +0200 | [diff] [blame] | 236 | #ifndef LWS_HAVE_BZERO |
Andy Green | e5ea1f9 | 2014-11-18 18:25:24 +0800 | [diff] [blame] | 237 | #ifndef bzero |
Patrick Gansterer | 4a83727 | 2014-02-28 13:17:49 +0100 | [diff] [blame] | 238 | #define bzero(b, len) (memset((b), '\0', (len)), (void) 0) |
| 239 | #endif |
Andy Green | e5ea1f9 | 2014-11-18 18:25:24 +0800 | [diff] [blame] | 240 | #endif |
Patrick Gansterer | 4a83727 | 2014-02-28 13:17:49 +0100 | [diff] [blame] | 241 | |
=?UTF-8?q?Joakim=20S=C3=B6derberg?= | cefab31 | 2015-06-24 16:46:02 +0200 | [diff] [blame] | 242 | #ifndef LWS_HAVE_STRERROR |
Patrick Gansterer | 9d61491 | 2014-02-28 00:59:53 +0100 | [diff] [blame] | 243 | #define strerror(x) "" |
| 244 | #endif |
| 245 | |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 246 | #ifdef LWS_OPENSSL_SUPPORT |
Andy Green | 1a3f177 | 2016-03-28 19:58:02 +0800 | [diff] [blame] | 247 | |
Alexander Bruines | c3bcb89 | 2015-08-08 18:54:49 +0200 | [diff] [blame] | 248 | #ifdef USE_WOLFSSL |
ABruines | 80a7068 | 2015-08-09 22:56:32 +0200 | [diff] [blame] | 249 | #ifdef USE_OLD_CYASSL |
| 250 | #include <cyassl/openssl/ssl.h> |
| 251 | #include <cyassl/error-ssl.h> |
| 252 | #else |
Alexander Bruines | c3bcb89 | 2015-08-08 18:54:49 +0200 | [diff] [blame] | 253 | #include <wolfssl/openssl/ssl.h> |
| 254 | #include <wolfssl/error-ssl.h> |
ABruines | 80a7068 | 2015-08-09 22:56:32 +0200 | [diff] [blame] | 255 | #endif /* not USE_OLD_CYASSL */ |
Andy Green | 23c5f2e | 2013-02-06 15:43:00 +0900 | [diff] [blame] | 256 | #else |
Andy Green | 1a3f177 | 2016-03-28 19:58:02 +0800 | [diff] [blame] | 257 | #if defined(LWS_USE_POLARSSL) |
| 258 | #include <polarssl/ssl.h> |
| 259 | #include <polarssl/error.h> |
| 260 | #include <polarssl/md5.h> |
| 261 | #include <polarssl/sha1.h> |
| 262 | #include <polarssl/ecdh.h> |
Andy Green | 451cee5 | 2016-04-17 11:28:43 +0800 | [diff] [blame] | 263 | #define SSL_ERROR_WANT_READ POLARSSL_ERR_NET_WANT_READ |
| 264 | #define SSL_ERROR_WANT_WRITE POLARSSL_ERR_NET_WANT_WRITE |
| 265 | #define OPENSSL_VERSION_NUMBER 0x10002000L |
Andy Green | 1a3f177 | 2016-03-28 19:58:02 +0800 | [diff] [blame] | 266 | #else |
| 267 | #if defined(LWS_USE_MBEDTLS) |
| 268 | #include <mbedtls/ssl.h> |
| 269 | #include <mbedtls/error.h> |
| 270 | #include <mbedtls/md5.h> |
| 271 | #include <mbedtls/sha1.h> |
| 272 | #include <mbedtls/ecdh.h> |
| 273 | #else |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 274 | #include <openssl/ssl.h> |
| 275 | #include <openssl/evp.h> |
| 276 | #include <openssl/err.h> |
Andy Green | 70dfebd | 2010-12-20 09:35:03 +0000 | [diff] [blame] | 277 | #include <openssl/md5.h> |
Andy Green | e252217 | 2011-01-18 17:14:03 +0000 | [diff] [blame] | 278 | #include <openssl/sha.h> |
Andy Green | 1a3f177 | 2016-03-28 19:58:02 +0800 | [diff] [blame] | 279 | #ifdef LWS_HAVE_OPENSSL_ECDH_H |
| 280 | #include <openssl/ecdh.h> |
| 281 | #endif |
Andy Green | e7bf0aa | 2016-06-28 19:50:40 +0800 | [diff] [blame] | 282 | #include <openssl/x509v3.h> |
Andy Green | 1a3f177 | 2016-03-28 19:58:02 +0800 | [diff] [blame] | 283 | #endif /* not USE_MBEDTLS */ |
| 284 | #endif /* not USE_POLARSSL */ |
Alexander Bruines | c3bcb89 | 2015-08-08 18:54:49 +0200 | [diff] [blame] | 285 | #endif /* not USE_WOLFSSL */ |
Darin Willits | db9ba42 | 2011-02-14 20:56:24 +0000 | [diff] [blame] | 286 | #endif |
| 287 | |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 288 | #include "libwebsockets.h" |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 289 | #if defined(WIN32) || defined(_WIN32) |
| 290 | #else |
| 291 | static inline int compatible_close(int fd) { return close(fd); } |
| 292 | #endif |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 293 | |
Andy Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 294 | #if defined(MBED_OPERATORS) |
| 295 | #undef compatible_close |
| 296 | #define compatible_close(fd) mbed3_delete_tcp_stream_socket(fd) |
Andy Green | 11f2734 | 2015-11-08 12:10:26 +0800 | [diff] [blame] | 297 | #ifndef BIG_ENDIAN |
| 298 | #define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */ |
| 299 | #endif |
| 300 | #ifndef LITTLE_ENDIAN |
| 301 | #define LITTLE_ENDIAN 1234 |
| 302 | #endif |
| 303 | #ifndef BYTE_ORDER |
| 304 | #define BYTE_ORDER LITTLE_ENDIAN |
| 305 | #endif |
Andy Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 306 | #endif |
| 307 | |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 308 | #if defined(LWS_WITH_ESP8266) |
| 309 | #undef compatible_close |
| 310 | #define compatible_close(fd) { fd->state=ESPCONN_CLOSE; espconn_delete(fd); } |
| 311 | lws_sockfd_type |
| 312 | esp8266_create_tcp_stream_socket(void); |
| 313 | void |
| 314 | esp8266_tcp_stream_bind(lws_sockfd_type fd, int port, struct lws *wsi); |
| 315 | #ifndef BIG_ENDIAN |
| 316 | #define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */ |
| 317 | #endif |
| 318 | #ifndef LITTLE_ENDIAN |
| 319 | #define LITTLE_ENDIAN 1234 |
| 320 | #endif |
| 321 | #ifndef BYTE_ORDER |
| 322 | #define BYTE_ORDER LITTLE_ENDIAN |
| 323 | #endif |
| 324 | #endif |
| 325 | |
| 326 | |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 327 | #if defined(WIN32) || defined(_WIN32) |
| 328 | |
| 329 | #ifndef BIG_ENDIAN |
| 330 | #define BIG_ENDIAN 4321 /* to show byte order (taken from gcc) */ |
| 331 | #endif |
| 332 | #ifndef LITTLE_ENDIAN |
| 333 | #define LITTLE_ENDIAN 1234 |
| 334 | #endif |
| 335 | #ifndef BYTE_ORDER |
| 336 | #define BYTE_ORDER LITTLE_ENDIAN |
| 337 | #endif |
Andy Green | 11f2734 | 2015-11-08 12:10:26 +0800 | [diff] [blame] | 338 | #ifndef u_int64_t |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 339 | typedef unsigned __int64 u_int64_t; |
Andy Green | 11f2734 | 2015-11-08 12:10:26 +0800 | [diff] [blame] | 340 | #endif |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 341 | |
| 342 | #undef __P |
| 343 | #ifndef __P |
| 344 | #if __STDC__ |
| 345 | #define __P(protos) protos |
| 346 | #else |
| 347 | #define __P(protos) () |
| 348 | #endif |
| 349 | #endif |
| 350 | |
| 351 | #else |
| 352 | |
| 353 | #include <sys/stat.h> |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 354 | #include <sys/time.h> |
| 355 | |
| 356 | #if defined(__APPLE__) |
| 357 | #include <machine/endian.h> |
| 358 | #elif defined(__FreeBSD__) |
| 359 | #include <sys/endian.h> |
| 360 | #elif defined(__linux__) |
| 361 | #include <endian.h> |
| 362 | #endif |
| 363 | |
Andy Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 364 | #ifdef __cplusplus |
| 365 | extern "C" { |
| 366 | #endif |
Alejandro Mery | ead8afe | 2014-12-07 03:36:11 +0100 | [diff] [blame] | 367 | |
emironov | a49d084 | 2014-09-16 14:05:13 +0400 | [diff] [blame] | 368 | #if defined(__QNX__) |
| 369 | #include <gulliver.h> |
| 370 | #if defined(__LITTLEENDIAN__) |
| 371 | #define BYTE_ORDER __LITTLEENDIAN__ |
| 372 | #define LITTLE_ENDIAN __LITTLEENDIAN__ |
| 373 | #define BIG_ENDIAN 4321 /* to show byte order (taken from gcc); for suppres warning that BIG_ENDIAN is not defined. */ |
| 374 | #endif |
| 375 | #if defined(__BIGENDIAN__) |
| 376 | #define BYTE_ORDER __BIGENDIAN__ |
| 377 | #define LITTLE_ENDIAN 1234 /* to show byte order (taken from gcc); for suppres warning that LITTLE_ENDIAN is not defined. */ |
| 378 | #define BIG_ENDIAN __BIGENDIAN__ |
| 379 | #endif |
| 380 | #endif |
| 381 | |
Fredrik Skogman | 316960b | 2016-09-09 06:49:44 +0800 | [diff] [blame] | 382 | #if defined(__sun) && defined(__GNUC__) |
| 383 | # define BYTE_ORDER __BYTE_ORDER__ |
| 384 | # define LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__ |
| 385 | # define BIG_ENDIAN __ORDER_BIG_ENDIAN__ |
| 386 | #endif |
| 387 | |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 388 | #if !defined(BYTE_ORDER) |
| 389 | # define BYTE_ORDER __BYTE_ORDER |
| 390 | #endif |
| 391 | #if !defined(LITTLE_ENDIAN) |
| 392 | # define LITTLE_ENDIAN __LITTLE_ENDIAN |
| 393 | #endif |
| 394 | #if !defined(BIG_ENDIAN) |
| 395 | # define BIG_ENDIAN __BIG_ENDIAN |
| 396 | #endif |
| 397 | |
| 398 | #endif |
| 399 | |
Darin Willits | c19456f | 2011-02-14 17:52:39 +0000 | [diff] [blame] | 400 | /* |
| 401 | * Mac OSX as well as iOS do not define the MSG_NOSIGNAL flag, |
| 402 | * but happily have something equivalent in the SO_NOSIGPIPE flag. |
| 403 | */ |
| 404 | #ifdef __APPLE__ |
Andy Green | 6ee372f | 2012-04-09 15:09:01 +0800 | [diff] [blame] | 405 | #define MSG_NOSIGNAL SO_NOSIGPIPE |
Darin Willits | c19456f | 2011-02-14 17:52:39 +0000 | [diff] [blame] | 406 | #endif |
| 407 | |
Fredrik Skogman | 316960b | 2016-09-09 06:49:44 +0800 | [diff] [blame] | 408 | /* |
| 409 | * Solaris 11.X only supports POSIX 2001, MSG_NOSIGNAL appears in |
| 410 | * POSIX 2008. |
| 411 | */ |
| 412 | #ifdef __sun |
| 413 | #define MSG_NOSIGNAL 0 |
| 414 | #endif |
| 415 | |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 416 | #ifdef _WIN32 |
| 417 | #ifndef FD_HASHTABLE_MODULUS |
| 418 | #define FD_HASHTABLE_MODULUS 32 |
| 419 | #endif |
| 420 | #endif |
| 421 | |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 422 | #ifndef LWS_DEF_HEADER_LEN |
Andy Green | 5ab523e | 2016-07-11 07:48:53 +0800 | [diff] [blame] | 423 | #define LWS_DEF_HEADER_LEN 4096 |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 424 | #endif |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 425 | #ifndef LWS_DEF_HEADER_POOL |
Andy Green | 5ab523e | 2016-07-11 07:48:53 +0800 | [diff] [blame] | 426 | #define LWS_DEF_HEADER_POOL 4 |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 427 | #endif |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 428 | #ifndef LWS_MAX_PROTOCOLS |
Andy Green | d91d5e8 | 2013-02-10 16:00:47 +0800 | [diff] [blame] | 429 | #define LWS_MAX_PROTOCOLS 5 |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 430 | #endif |
| 431 | #ifndef LWS_MAX_EXTENSIONS_ACTIVE |
Andy Green | d738f84 | 2016-01-19 04:32:14 +0800 | [diff] [blame] | 432 | #define LWS_MAX_EXTENSIONS_ACTIVE 2 |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 433 | #endif |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 434 | #ifndef LWS_MAX_EXT_OFFERS |
| 435 | #define LWS_MAX_EXT_OFFERS 8 |
| 436 | #endif |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 437 | #ifndef SPEC_LATEST_SUPPORTED |
Andy Green | d85cb20 | 2011-09-25 09:32:54 +0100 | [diff] [blame] | 438 | #define SPEC_LATEST_SUPPORTED 13 |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 439 | #endif |
| 440 | #ifndef AWAITING_TIMEOUT |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 441 | #define AWAITING_TIMEOUT 20 |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 442 | #endif |
| 443 | #ifndef CIPHERS_LIST_STRING |
David Galeano | f177f2a | 2013-01-10 10:15:19 +0800 | [diff] [blame] | 444 | #define CIPHERS_LIST_STRING "DEFAULT" |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 445 | #endif |
Andy Green | a824d18 | 2013-01-15 20:52:29 +0800 | [diff] [blame] | 446 | #ifndef LWS_SOMAXCONN |
| 447 | #define LWS_SOMAXCONN SOMAXCONN |
| 448 | #endif |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 449 | |
Andy Green | e252217 | 2011-01-18 17:14:03 +0000 | [diff] [blame] | 450 | #define MAX_WEBSOCKET_04_KEY_LEN 128 |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 451 | |
| 452 | #ifndef SYSTEM_RANDOM_FILEPATH |
Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 453 | #define SYSTEM_RANDOM_FILEPATH "/dev/urandom" |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 454 | #endif |
Andy Green | c0d6b63 | 2013-01-12 23:42:17 +0800 | [diff] [blame] | 455 | |
Andy Green | 5fd55cd | 2011-04-23 10:54:53 +0100 | [diff] [blame] | 456 | enum lws_websocket_opcodes_07 { |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 457 | LWSWSOPC_CONTINUATION = 0, |
| 458 | LWSWSOPC_TEXT_FRAME = 1, |
| 459 | LWSWSOPC_BINARY_FRAME = 2, |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 460 | |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 461 | LWSWSOPC_NOSPEC__MUX = 7, |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 462 | |
| 463 | /* control extensions 8+ */ |
| 464 | |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 465 | LWSWSOPC_CLOSE = 8, |
| 466 | LWSWSOPC_PING = 9, |
| 467 | LWSWSOPC_PONG = 0xa, |
Andy Green | 5fd55cd | 2011-04-23 10:54:53 +0100 | [diff] [blame] | 468 | }; |
| 469 | |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 470 | |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 471 | enum lws_connection_states { |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 472 | LWSS_HTTP, |
| 473 | LWSS_HTTP_ISSUING_FILE, |
| 474 | LWSS_HTTP_HEADERS, |
| 475 | LWSS_HTTP_BODY, |
| 476 | LWSS_DEAD_SOCKET, |
| 477 | LWSS_ESTABLISHED, |
Andy Green | a661ee5 | 2016-02-29 13:18:30 +0800 | [diff] [blame] | 478 | LWSS_CLIENT_HTTP_ESTABLISHED, |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 479 | LWSS_CLIENT_UNCONNECTED, |
| 480 | LWSS_RETURNED_CLOSE_ALREADY, |
| 481 | LWSS_AWAITING_CLOSE_ACK, |
| 482 | LWSS_FLUSHING_STORED_SEND_BEFORE_CLOSE, |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 483 | LWSS_SHUTDOWN, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 484 | |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 485 | LWSS_HTTP2_AWAIT_CLIENT_PREFACE, |
| 486 | LWSS_HTTP2_ESTABLISHED_PRE_SETTINGS, |
| 487 | LWSS_HTTP2_ESTABLISHED, |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 488 | |
Andy Green | 2d8d35a | 2016-02-29 14:19:16 +0800 | [diff] [blame] | 489 | LWSS_CGI, |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 490 | }; |
| 491 | |
Andrew Canaday | afe26cf | 2014-07-13 01:07:36 -0400 | [diff] [blame] | 492 | enum http_version { |
| 493 | HTTP_VERSION_1_0, |
| 494 | HTTP_VERSION_1_1, |
Andy Green | 22d6f39 | 2016-04-10 09:33:54 +0800 | [diff] [blame] | 495 | HTTP_VERSION_2 |
Andrew Canaday | afe26cf | 2014-07-13 01:07:36 -0400 | [diff] [blame] | 496 | }; |
| 497 | |
| 498 | enum http_connection_type { |
| 499 | HTTP_CONNECTION_CLOSE, |
| 500 | HTTP_CONNECTION_KEEP_ALIVE |
| 501 | }; |
| 502 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 503 | enum lws_pending_protocol_send { |
| 504 | LWS_PPS_NONE, |
| 505 | LWS_PPS_HTTP2_MY_SETTINGS, |
| 506 | LWS_PPS_HTTP2_ACK_SETTINGS, |
Andy Green | bbbf07a | 2014-10-27 16:46:44 +0800 | [diff] [blame] | 507 | LWS_PPS_HTTP2_PONG, |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 508 | }; |
| 509 | |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 510 | enum lws_rx_parse_state { |
| 511 | LWS_RXPS_NEW, |
Andy Green | e77ddd8 | 2010-11-13 10:03:47 +0000 | [diff] [blame] | 512 | |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 513 | LWS_RXPS_04_mask_1, |
| 514 | LWS_RXPS_04_mask_2, |
| 515 | LWS_RXPS_04_mask_3, |
Andy Green | 3e5eb78 | 2011-01-18 18:14:26 +0000 | [diff] [blame] | 516 | |
| 517 | LWS_RXPS_04_FRAME_HDR_1, |
Andy Green | 38e57bb | 2011-01-19 12:20:27 +0000 | [diff] [blame] | 518 | LWS_RXPS_04_FRAME_HDR_LEN, |
| 519 | LWS_RXPS_04_FRAME_HDR_LEN16_2, |
| 520 | LWS_RXPS_04_FRAME_HDR_LEN16_1, |
| 521 | LWS_RXPS_04_FRAME_HDR_LEN64_8, |
| 522 | LWS_RXPS_04_FRAME_HDR_LEN64_7, |
| 523 | LWS_RXPS_04_FRAME_HDR_LEN64_6, |
| 524 | LWS_RXPS_04_FRAME_HDR_LEN64_5, |
| 525 | LWS_RXPS_04_FRAME_HDR_LEN64_4, |
| 526 | LWS_RXPS_04_FRAME_HDR_LEN64_3, |
| 527 | LWS_RXPS_04_FRAME_HDR_LEN64_2, |
| 528 | LWS_RXPS_04_FRAME_HDR_LEN64_1, |
Andy Green | 3e5eb78 | 2011-01-18 18:14:26 +0000 | [diff] [blame] | 529 | |
Andy Green | 283d0a2 | 2011-04-24 05:46:23 +0100 | [diff] [blame] | 530 | LWS_RXPS_07_COLLECT_FRAME_KEY_1, |
| 531 | LWS_RXPS_07_COLLECT_FRAME_KEY_2, |
| 532 | LWS_RXPS_07_COLLECT_FRAME_KEY_3, |
| 533 | LWS_RXPS_07_COLLECT_FRAME_KEY_4, |
| 534 | |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 535 | LWS_RXPS_PAYLOAD_UNTIL_LENGTH_EXHAUSTED |
| 536 | }; |
| 537 | |
Andy Green | 95fff47 | 2016-08-08 21:54:30 +0800 | [diff] [blame] | 538 | #define LWSCM_FLAG_IMPLIES_CALLBACK_CLOSED_CLIENT_HTTP 32 |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 539 | |
Andy Green | 0d33833 | 2011-02-12 11:57:43 +0000 | [diff] [blame] | 540 | enum connection_mode { |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 541 | LWSCM_HTTP_SERVING, |
| 542 | LWSCM_HTTP_SERVING_ACCEPTED, /* actual HTTP service going on */ |
| 543 | LWSCM_PRE_WS_SERVING_ACCEPT, |
Andy Green | d280b6e | 2013-01-15 13:40:23 +0800 | [diff] [blame] | 544 | |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 545 | LWSCM_WS_SERVING, |
| 546 | LWSCM_WS_CLIENT, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 547 | |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 548 | LWSCM_HTTP2_SERVING, |
Andy Green | 0d33833 | 2011-02-12 11:57:43 +0000 | [diff] [blame] | 549 | |
Andy Green | e216071 | 2013-01-28 12:19:10 +0800 | [diff] [blame] | 550 | /* transient, ssl delay hiding */ |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 551 | LWSCM_SSL_ACK_PENDING, |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 552 | LWSCM_SSL_INIT, |
Andy Green | e216071 | 2013-01-28 12:19:10 +0800 | [diff] [blame] | 553 | |
Andy Green | 95fff47 | 2016-08-08 21:54:30 +0800 | [diff] [blame] | 554 | /* special internal types */ |
| 555 | LWSCM_SERVER_LISTENER, |
| 556 | LWSCM_CGI, /* stdin, stdout, stderr for another cgi master wsi */ |
| 557 | |
| 558 | /* HTTP Client related */ |
| 559 | LWSCM_HTTP_CLIENT = LWSCM_FLAG_IMPLIES_CALLBACK_CLOSED_CLIENT_HTTP, |
| 560 | LWSCM_HTTP_CLIENT_ACCEPTED, /* actual HTTP service going on */ |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 561 | LWSCM_WSCL_WAITING_CONNECT, |
| 562 | LWSCM_WSCL_WAITING_PROXY_REPLY, |
| 563 | LWSCM_WSCL_ISSUE_HANDSHAKE, |
| 564 | LWSCM_WSCL_ISSUE_HANDSHAKE2, |
Andy Green | 95fff47 | 2016-08-08 21:54:30 +0800 | [diff] [blame] | 565 | LWSCM_WSCL_ISSUE_HTTP_BODY, |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 566 | LWSCM_WSCL_WAITING_SSL, |
| 567 | LWSCM_WSCL_WAITING_SERVER_REPLY, |
| 568 | LWSCM_WSCL_WAITING_EXTENSION_CONNECT, |
| 569 | LWSCM_WSCL_PENDING_CANDIDATE_CHILD, |
Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame] | 570 | |
Andy Green | 95fff47 | 2016-08-08 21:54:30 +0800 | [diff] [blame] | 571 | /****** add new things just above ---^ ******/ |
| 572 | |
| 573 | |
Andy Green | 0d33833 | 2011-02-12 11:57:43 +0000 | [diff] [blame] | 574 | }; |
| 575 | |
Andy Green | ca0a129 | 2013-03-16 11:24:23 +0800 | [diff] [blame] | 576 | enum { |
| 577 | LWS_RXFLOW_ALLOW = (1 << 0), |
| 578 | LWS_RXFLOW_PENDING_CHANGE = (1 << 1), |
| 579 | }; |
| 580 | |
Andy Green | 1fb95e8 | 2015-12-26 17:20:34 +0800 | [diff] [blame] | 581 | /* this is not usable directly by user code any more, lws_close_reason() */ |
| 582 | #define LWS_WRITE_CLOSE 4 |
| 583 | |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 584 | struct lws_protocols; |
| 585 | struct lws; |
Andy Green | e92cd17 | 2011-01-19 13:11:55 +0000 | [diff] [blame] | 586 | |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 587 | #if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) |
| 588 | |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 589 | struct lws_io_watcher { |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 590 | #ifdef LWS_USE_LIBEV |
| 591 | ev_io ev_watcher; |
| 592 | #endif |
| 593 | #ifdef LWS_USE_LIBUV |
| 594 | uv_poll_t uv_watcher; |
| 595 | #endif |
| 596 | struct lws_context *context; |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 597 | }; |
| 598 | |
| 599 | struct lws_signal_watcher { |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 600 | #ifdef LWS_USE_LIBEV |
| 601 | ev_signal ev_watcher; |
| 602 | #endif |
| 603 | #ifdef LWS_USE_LIBUV |
| 604 | uv_signal_t uv_watcher; |
| 605 | #endif |
| 606 | struct lws_context *context; |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 607 | }; |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 608 | #endif |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 609 | |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 610 | #ifdef _WIN32 |
| 611 | #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] | 612 | struct lws_fd_hashtable { |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 613 | struct lws **wsi; |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 614 | int length; |
| 615 | }; |
| 616 | #endif |
| 617 | |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 618 | /* |
| 619 | * This is totally opaque to code using the library. It's exported as a |
| 620 | * forward-reference pointer-only declaration; the user can use the pointer with |
| 621 | * other APIs to get information out of it. |
| 622 | */ |
| 623 | |
| 624 | struct lws_fragments { |
Andy Green | 4889566 | 2016-06-02 12:32:38 +0800 | [diff] [blame] | 625 | unsigned int offset; |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 626 | unsigned short len; |
| 627 | unsigned char nfrag; /* which ah->frag[] continues this content, or 0 */ |
| 628 | }; |
| 629 | |
| 630 | /* |
| 631 | * these are assigned from a pool held in the context. |
| 632 | * Both client and server mode uses them for http header analysis |
| 633 | */ |
| 634 | |
| 635 | struct allocated_headers { |
Andy Green | 2c218e7 | 2016-02-15 12:37:04 +0800 | [diff] [blame] | 636 | struct lws *wsi; /* owner */ |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 637 | char *data; /* prepared by context init to point to dedicated storage */ |
| 638 | /* |
| 639 | * the randomly ordered fragments, indexed by frag_index and |
| 640 | * lws_fragments->nfrag for continuation. |
| 641 | */ |
| 642 | struct lws_fragments frags[WSI_TOKEN_COUNT * 2]; |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 643 | time_t assigned; |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 644 | /* |
| 645 | * for each recognized token, frag_index says which frag[] his data |
| 646 | * starts in (0 means the token did not appear) |
| 647 | * the actual header data gets dumped as it comes in, into data[] |
| 648 | */ |
| 649 | unsigned char frag_index[WSI_TOKEN_COUNT]; |
Andy Green | 2c218e7 | 2016-02-15 12:37:04 +0800 | [diff] [blame] | 650 | unsigned char rx[2048]; |
| 651 | unsigned int rxpos; |
| 652 | unsigned int rxlen; |
Andy Green | 4889566 | 2016-06-02 12:32:38 +0800 | [diff] [blame] | 653 | unsigned int pos; |
Andy Green | 2c218e7 | 2016-02-15 12:37:04 +0800 | [diff] [blame] | 654 | |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 655 | #ifndef LWS_NO_CLIENT |
| 656 | char initial_handshake_hash_base64[30]; |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 657 | #endif |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 658 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 659 | unsigned char in_use; |
| 660 | unsigned char nfrag; |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 661 | }; |
| 662 | |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 663 | /* |
| 664 | * so we can have n connections being serviced simultaneously, |
| 665 | * these things need to be isolated per-thread. |
| 666 | */ |
| 667 | |
| 668 | struct lws_context_per_thread { |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 669 | #if LWS_MAX_SMP > 1 |
| 670 | pthread_mutex_t lock; |
| 671 | #endif |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 672 | struct lws_pollfd *fds; |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 673 | #if defined(LWS_WITH_ESP8266) |
| 674 | struct lws **lws_vs_fds_index; |
| 675 | #endif |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 676 | struct lws *rx_draining_ext_list; |
| 677 | struct lws *tx_draining_ext_list; |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 678 | struct lws *timeout_list; |
Patrick Gansterer | fa9ebb3 | 2016-08-14 14:04:56 +0200 | [diff] [blame] | 679 | #ifdef LWS_USE_LIBUV |
Andy Green | 38a1cbb | 2016-02-27 11:03:27 +0800 | [diff] [blame] | 680 | struct lws_context *context; |
Patrick Gansterer | fa9ebb3 | 2016-08-14 14:04:56 +0200 | [diff] [blame] | 681 | #endif |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 682 | #ifdef LWS_WITH_CGI |
| 683 | struct lws_cgi *cgi_list; |
| 684 | #endif |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 685 | void *http_header_data; |
| 686 | struct allocated_headers *ah_pool; |
| 687 | struct lws *ah_wait_list; |
| 688 | int ah_wait_list_length; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 689 | #ifdef LWS_OPENSSL_SUPPORT |
| 690 | struct lws *pending_read_list; /* linked list */ |
| 691 | #endif |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 692 | #ifndef LWS_NO_SERVER |
| 693 | struct lws *wsi_listening; |
| 694 | #endif |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 695 | #if defined(LWS_USE_LIBEV) |
| 696 | struct ev_loop *io_loop_ev; |
| 697 | #endif |
| 698 | #if defined(LWS_USE_LIBUV) |
| 699 | uv_loop_t *io_loop_uv; |
| 700 | uv_signal_t signals[8]; |
Andy Green | 38a1cbb | 2016-02-27 11:03:27 +0800 | [diff] [blame] | 701 | uv_timer_t uv_timeout_watcher; |
Andy Green | 09998e3 | 2016-04-06 09:23:16 +0800 | [diff] [blame] | 702 | uv_idle_t uv_idle; |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 703 | #endif |
| 704 | #if defined(LWS_USE_LIBEV) |
| 705 | struct lws_io_watcher w_accept; |
| 706 | #endif |
| 707 | #if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) |
| 708 | struct lws_signal_watcher w_sigint; |
| 709 | unsigned char ev_loop_foreign:1; |
| 710 | #endif |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 711 | |
| 712 | unsigned long count_conns; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 713 | /* |
| 714 | * usable by anything in the service code, but only if the scope |
| 715 | * does not last longer than the service action (since next service |
| 716 | * of any socket can likewise use it and overwrite) |
| 717 | */ |
| 718 | unsigned char *serv_buf; |
| 719 | #ifdef _WIN32 |
| 720 | WSAEVENT *events; |
| 721 | #else |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 722 | lws_sockfd_type dummy_pipe_fds[2]; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 723 | #endif |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 724 | unsigned int fds_count; |
| 725 | |
| 726 | short ah_count_in_use; |
Andy Green | 38a1cbb | 2016-02-27 11:03:27 +0800 | [diff] [blame] | 727 | unsigned char tid; |
Andy Green | bbf9369 | 2016-08-07 08:33:08 +0800 | [diff] [blame] | 728 | unsigned char lock_depth; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 729 | }; |
| 730 | |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 731 | /* |
| 732 | * virtual host -related context information |
| 733 | * vhostwide SSL context |
| 734 | * vhostwide proxy |
| 735 | * |
Peter Pentchev | fb71b79 | 2016-10-02 02:21:03 +0300 | [diff] [blame] | 736 | * hierarchy: |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 737 | * |
| 738 | * context -> vhost -> wsi |
| 739 | * |
| 740 | * incoming connection non-SSL vhost binding: |
| 741 | * |
| 742 | * listen socket -> wsi -> select vhost after first headers |
| 743 | * |
| 744 | * incoming connection SSL vhost binding: |
| 745 | * |
| 746 | * SSL SNI -> wsi -> bind after SSL negotiation |
| 747 | */ |
| 748 | |
| 749 | struct lws_vhost { |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 750 | #if !defined(LWS_WITH_ESP8266) |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 751 | char http_proxy_address[128]; |
| 752 | char proxy_basic_auth_token[128]; |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 753 | #endif |
| 754 | #if defined(LWS_WITH_ESP8266) |
| 755 | /* listen sockets need a place to hang their hat */ |
| 756 | esp_tcp tcp; |
| 757 | #endif |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 758 | struct lws_context *context; |
| 759 | struct lws_vhost *vhost_next; |
Andy Green | 4664f71 | 2016-05-02 04:59:54 +0800 | [diff] [blame] | 760 | const struct lws_http_mount *mount_list; |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 761 | struct lws *lserv_wsi; |
| 762 | const char *name; |
| 763 | const char *iface; |
| 764 | const struct lws_protocols *protocols; |
Andy Green | 0207705 | 2016-04-06 16:15:40 +0800 | [diff] [blame] | 765 | void **protocol_vh_privs; |
Andy Green | 952fcde | 2016-05-02 06:01:59 +0800 | [diff] [blame] | 766 | const struct lws_protocol_vhost_options *pvo; |
Andy Green | e35d91a | 2016-08-27 17:07:06 +0800 | [diff] [blame] | 767 | const struct lws_protocol_vhost_options *headers; |
Andy Green | 4714cf0 | 2016-04-16 08:40:35 +0800 | [diff] [blame] | 768 | struct lws **same_vh_protocol_list; |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 769 | #ifdef LWS_OPENSSL_SUPPORT |
| 770 | SSL_CTX *ssl_ctx; |
| 771 | SSL_CTX *ssl_client_ctx; |
| 772 | #endif |
| 773 | #ifndef LWS_NO_EXTENSIONS |
| 774 | const struct lws_extension *extensions; |
| 775 | #endif |
Andy Green | c25b290 | 2016-05-04 15:59:27 +0800 | [diff] [blame] | 776 | unsigned long long rx, tx; |
| 777 | unsigned long conn, trans, ws_upgrades, http2_upgrades; |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 778 | |
| 779 | int listen_port; |
| 780 | unsigned int http_proxy_port; |
Andy Green | cc3c6fb | 2016-04-14 15:09:01 +0800 | [diff] [blame] | 781 | unsigned int options; |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 782 | int count_protocols; |
| 783 | int ka_time; |
| 784 | int ka_probes; |
| 785 | int ka_interval; |
Andy Green | b46e4a8 | 2016-04-12 16:26:03 +0800 | [diff] [blame] | 786 | int keepalive_timeout; |
Andy Green | 2f0bc93 | 2016-04-15 12:00:23 +0800 | [diff] [blame] | 787 | #ifdef LWS_WITH_ACCESS_LOG |
| 788 | int log_fd; |
| 789 | #endif |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 790 | |
| 791 | #ifdef LWS_OPENSSL_SUPPORT |
| 792 | int use_ssl; |
| 793 | int allow_non_ssl_on_ssl_port; |
| 794 | unsigned int user_supplied_ssl_ctx:1; |
| 795 | #endif |
Andy Green | f32d250 | 2016-07-15 13:41:38 +0800 | [diff] [blame] | 796 | |
Andy Green | f658528 | 2016-05-06 14:24:59 +0800 | [diff] [blame] | 797 | unsigned char default_protocol_index; |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 798 | }; |
| 799 | |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 800 | /* |
| 801 | * the rest is managed per-context, that includes |
| 802 | * |
| 803 | * - processwide single fd -> wsi lookup |
| 804 | * - contextwide headers pool |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 805 | */ |
| 806 | |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 807 | struct lws_context { |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 808 | time_t last_timeout_check_s; |
Andy Green | f32d250 | 2016-07-15 13:41:38 +0800 | [diff] [blame] | 809 | time_t last_ws_ping_pong_check_s; |
Andy Green | 9806140 | 2016-04-15 14:01:29 +0800 | [diff] [blame] | 810 | time_t time_up; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 811 | struct lws_plat_file_ops fops; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 812 | struct lws_context_per_thread pt[LWS_MAX_SMP]; |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 813 | #ifdef _WIN32 |
| 814 | /* different implementation between unix and windows */ |
Andy Green | 3ef579b | 2015-12-04 09:23:56 +0800 | [diff] [blame] | 815 | struct lws_fd_hashtable fd_hashtable[FD_HASHTABLE_MODULUS]; |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 816 | #else |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 817 | #if defined(LWS_WITH_ESP8266) |
| 818 | struct espconn **connpool; /* .reverse points to the wsi */ |
| 819 | void *rxd; |
| 820 | int rxd_len; |
| 821 | os_timer_t to_timer; |
| 822 | #else |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 823 | struct lws **lws_lookup; /* fd to wsi */ |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 824 | #endif |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 825 | #endif |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 826 | struct lws_vhost *vhost_list; |
Andy Green | 0207705 | 2016-04-06 16:15:40 +0800 | [diff] [blame] | 827 | struct lws_plugin *plugin_list; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 828 | const struct lws_token_limits *token_limits; |
| 829 | void *user_space; |
Andy Green | b21c20b | 2016-04-15 13:33:52 +0800 | [diff] [blame] | 830 | const char *server_string; |
Andy Green | 3b93e34 | 2016-10-13 06:32:57 +0800 | [diff] [blame^] | 831 | const struct lws_protocol_vhost_options *reject_service_keywords; |
Andy Green | d738f84 | 2016-01-19 04:32:14 +0800 | [diff] [blame] | 832 | |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 833 | #if defined(LWS_USE_LIBEV) |
| 834 | lws_ev_signal_cb_t * lws_ev_sigint_cb; |
| 835 | #endif |
| 836 | #if defined(LWS_USE_LIBUV) |
Denis Osvald | f107e4b | 2016-03-22 14:04:15 +0100 | [diff] [blame] | 837 | uv_signal_cb lws_uv_sigint_cb; |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 838 | #endif |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 839 | char canonical_hostname[128]; |
| 840 | #ifdef LWS_LATENCY |
| 841 | unsigned long worst_latency; |
| 842 | char worst_latency_info[256]; |
| 843 | #endif |
Andy Green | b8b247d | 2013-01-22 07:20:08 +0800 | [diff] [blame] | 844 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 845 | int max_fds; |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 846 | #if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 847 | int use_ev_sigint; |
| 848 | #endif |
Andy Green | 24cba92 | 2013-01-19 13:56:10 +0800 | [diff] [blame] | 849 | int started_with_parent; |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 850 | int uid, gid; |
Andy Green | 24cba92 | 2013-01-19 13:56:10 +0800 | [diff] [blame] | 851 | |
Andy Green | 44eee68 | 2011-02-10 09:32:24 +0000 | [diff] [blame] | 852 | int fd_random; |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 853 | #ifdef LWS_OPENSSL_SUPPORT |
| 854 | #define lws_ssl_anybody_has_buffered_read(w) \ |
| 855 | (w->vhost->use_ssl && \ |
| 856 | w->context->pt[(int)w->tsi].pending_read_list) |
| 857 | #define lws_ssl_anybody_has_buffered_read_tsi(c, t) \ |
| 858 | (/*c->use_ssl && */ \ |
| 859 | c->pt[(int)t].pending_read_list) |
| 860 | #else |
| 861 | #define lws_ssl_anybody_has_buffered_read(ctx) (0) |
| 862 | #define lws_ssl_anybody_has_buffered_read_tsi(ctx, t) (0) |
| 863 | #endif |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 864 | int count_wsi_allocated; |
Andy Green | 748a221 | 2016-04-20 06:10:56 +0800 | [diff] [blame] | 865 | int count_cgi_spawned; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 866 | unsigned int options; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 867 | unsigned int fd_limit_per_thread; |
Andy Green | 200a6a2 | 2016-02-15 20:36:02 +0800 | [diff] [blame] | 868 | unsigned int timeout_secs; |
Andy Green | e7c1c75 | 2016-05-19 12:34:35 +0800 | [diff] [blame] | 869 | unsigned int pt_serv_buf_size; |
Andy Green | 4889566 | 2016-06-02 12:32:38 +0800 | [diff] [blame] | 870 | int max_http_header_data; |
Andy Green | 6ee372f | 2012-04-09 15:09:01 +0800 | [diff] [blame] | 871 | |
Patrick Gansterer | 1ee57f6 | 2014-03-06 11:57:50 +0100 | [diff] [blame] | 872 | /* |
| 873 | * set to the Thread ID that's doing the service loop just before entry |
| 874 | * to poll indicates service thread likely idling in poll() |
| 875 | * volatile because other threads may check it as part of processing |
| 876 | * for pollfd event change. |
| 877 | */ |
| 878 | volatile int service_tid; |
Andy Green | c35b36b | 2015-12-24 13:00:54 +0800 | [diff] [blame] | 879 | int service_tid_detected; |
Patrick Gansterer | 1ee57f6 | 2014-03-06 11:57:50 +0100 | [diff] [blame] | 880 | |
Andy Green | 3df5800 | 2015-12-25 12:44:12 +0800 | [diff] [blame] | 881 | short max_http_header_pool; |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 882 | short count_threads; |
Andy Green | 0207705 | 2016-04-06 16:15:40 +0800 | [diff] [blame] | 883 | short plugin_protocol_count; |
| 884 | short plugin_extension_count; |
Andy Green | b21c20b | 2016-04-15 13:33:52 +0800 | [diff] [blame] | 885 | short server_string_len; |
Andy Green | f32d250 | 2016-07-15 13:41:38 +0800 | [diff] [blame] | 886 | unsigned short ws_ping_pong_interval; |
Andy Green | 9a9d5ea | 2016-01-18 11:49:41 +0800 | [diff] [blame] | 887 | |
| 888 | unsigned int being_destroyed:1; |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 889 | unsigned int requested_kill:1; |
Andy Green | 0207705 | 2016-04-06 16:15:40 +0800 | [diff] [blame] | 890 | unsigned int protocol_init_done:1; |
Andy Green | b45993c | 2010-12-18 15:13:50 +0000 | [diff] [blame] | 891 | }; |
| 892 | |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 893 | #define lws_get_context_protocol(ctx, x) ctx->vhost_list->protocols[x] |
| 894 | #define lws_get_vh_protocol(vh, x) vh->protocols[x] |
| 895 | |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 896 | LWS_EXTERN void |
| 897 | lws_close_free_wsi_final(struct lws *wsi); |
| 898 | LWS_EXTERN void |
| 899 | lws_libuv_closehandle(struct lws *wsi); |
| 900 | |
Andy Green | 0a18354 | 2016-04-09 07:22:40 +0800 | [diff] [blame] | 901 | LWS_VISIBLE LWS_EXTERN int |
Andy Green | cae57ad | 2016-05-02 10:03:25 +0800 | [diff] [blame] | 902 | lws_plat_plugins_init(struct lws_context * context, const char * const *d); |
Andy Green | 0a18354 | 2016-04-09 07:22:40 +0800 | [diff] [blame] | 903 | |
| 904 | LWS_VISIBLE LWS_EXTERN int |
| 905 | lws_plat_plugins_destroy(struct lws_context * context); |
| 906 | |
Andy Green | f32d250 | 2016-07-15 13:41:38 +0800 | [diff] [blame] | 907 | LWS_EXTERN void |
| 908 | lws_restart_ws_ping_pong_timer(struct lws *wsi); |
| 909 | |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 910 | struct lws * |
| 911 | lws_adopt_socket_vhost(struct lws_vhost *vh, lws_sockfd_type accept_fd); |
| 912 | |
| 913 | |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 914 | enum { |
| 915 | LWS_EV_READ = (1 << 0), |
| 916 | LWS_EV_WRITE = (1 << 1), |
| 917 | LWS_EV_START = (1 << 2), |
| 918 | LWS_EV_STOP = (1 << 3), |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 919 | |
| 920 | LWS_EV_PREPARE_DELETION = (1 << 31), |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 921 | }; |
| 922 | |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 923 | #if defined(LWS_USE_LIBEV) |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 924 | LWS_EXTERN void |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 925 | lws_libev_accept(struct lws *new_wsi, lws_sockfd_type accept_fd); |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 926 | LWS_EXTERN void |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 927 | lws_libev_io(struct lws *wsi, int flags); |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 928 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 929 | lws_libev_init_fd_table(struct lws_context *context); |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 930 | LWS_EXTERN void |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 931 | lws_libev_destroyloop(struct lws_context *context, int tsi); |
| 932 | LWS_EXTERN void |
| 933 | lws_libev_run(const struct lws_context *context, int tsi); |
Andy Green | c6fd360 | 2016-03-23 09:22:11 +0800 | [diff] [blame] | 934 | #define LWS_LIBEV_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBEV) |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 935 | 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] | 936 | #else |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 937 | #define lws_libev_accept(_a, _b) ((void) 0) |
| 938 | #define lws_libev_io(_a, _b) ((void) 0) |
| 939 | #define lws_libev_init_fd_table(_a) (0) |
| 940 | #define lws_libev_run(_a, _b) ((void) 0) |
| 941 | #define lws_libev_destroyloop(_a, _b) ((void) 0) |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 942 | #define LWS_LIBEV_ENABLED(context) (0) |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 943 | #if LWS_POSIX |
Andy Green | a717df2 | 2014-04-11 13:14:37 +0800 | [diff] [blame] | 944 | #define lws_feature_status_libev(_a) \ |
| 945 | lwsl_notice("libev support not compiled in\n") |
Andy Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 946 | #else |
| 947 | #define lws_feature_status_libev(_a) |
| 948 | #endif |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 949 | #endif |
| 950 | |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 951 | #if defined(LWS_USE_LIBUV) |
| 952 | LWS_EXTERN void |
| 953 | lws_libuv_accept(struct lws *new_wsi, lws_sockfd_type accept_fd); |
| 954 | LWS_EXTERN void |
| 955 | lws_libuv_io(struct lws *wsi, int flags); |
| 956 | LWS_EXTERN int |
| 957 | lws_libuv_init_fd_table(struct lws_context *context); |
| 958 | LWS_EXTERN void |
| 959 | lws_libuv_run(const struct lws_context *context, int tsi); |
| 960 | LWS_EXTERN void |
| 961 | lws_libuv_destroyloop(struct lws_context *context, int tsi); |
Andy Green | c6fd360 | 2016-03-23 09:22:11 +0800 | [diff] [blame] | 962 | #define LWS_LIBUV_ENABLED(context) lws_check_opt(context->options, LWS_SERVER_OPTION_LIBUV) |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 963 | LWS_EXTERN void lws_feature_status_libuv(struct lws_context_creation_info *info); |
| 964 | #else |
| 965 | #define lws_libuv_accept(_a, _b) ((void) 0) |
| 966 | #define lws_libuv_io(_a, _b) ((void) 0) |
| 967 | #define lws_libuv_init_fd_table(_a) (0) |
| 968 | #define lws_libuv_run(_a, _b) ((void) 0) |
| 969 | #define lws_libuv_destroyloop(_a, _b) ((void) 0) |
| 970 | #define LWS_LIBUV_ENABLED(context) (0) |
| 971 | #if LWS_POSIX |
| 972 | #define lws_feature_status_libuv(_a) \ |
| 973 | lwsl_notice("libuv support not compiled in\n") |
| 974 | #else |
| 975 | #define lws_feature_status_libuv(_a) |
| 976 | #endif |
| 977 | #endif |
| 978 | |
| 979 | |
Andy Green | 055f297 | 2014-03-24 16:09:25 +0800 | [diff] [blame] | 980 | #ifdef LWS_USE_IPV6 |
Andy Green | 2dc7dde | 2016-06-03 21:19:40 +0800 | [diff] [blame] | 981 | #define LWS_IPV6_ENABLED(vh) \ |
Denis Osvald | c16c6c8 | 2016-06-03 17:40:12 +0200 | [diff] [blame] | 982 | (!lws_check_opt(vh->context->options, LWS_SERVER_OPTION_DISABLE_IPV6) && \ |
Andy Green | 2dc7dde | 2016-06-03 21:19:40 +0800 | [diff] [blame] | 983 | !lws_check_opt(vh->options, LWS_SERVER_OPTION_DISABLE_IPV6)) |
James Devine | 3f13ea2 | 2014-03-24 16:09:25 +0800 | [diff] [blame] | 984 | #else |
| 985 | #define LWS_IPV6_ENABLED(context) (0) |
| 986 | #endif |
Andrew Canaday | 9769f4f | 2014-03-23 13:25:07 +0800 | [diff] [blame] | 987 | |
Yeonjun Lim | 3c6a8c1 | 2016-03-30 22:47:02 -0700 | [diff] [blame] | 988 | #ifdef LWS_USE_UNIX_SOCK |
Andy Green | 144594d | 2016-04-14 12:11:51 +0800 | [diff] [blame] | 989 | #define LWS_UNIX_SOCK_ENABLED(vhost) \ |
| 990 | (vhost->options & LWS_SERVER_OPTION_UNIX_SOCK) |
Yeonjun Lim | 3c6a8c1 | 2016-03-30 22:47:02 -0700 | [diff] [blame] | 991 | #else |
Andy Green | 144594d | 2016-04-14 12:11:51 +0800 | [diff] [blame] | 992 | #define LWS_UNIX_SOCK_ENABLED(vhost) (0) |
Yeonjun Lim | 3c6a8c1 | 2016-03-30 22:47:02 -0700 | [diff] [blame] | 993 | #endif |
Andy Green | b1a9e50 | 2013-11-10 15:15:21 +0800 | [diff] [blame] | 994 | enum uri_path_states { |
| 995 | URIPS_IDLE, |
| 996 | URIPS_SEEN_SLASH, |
| 997 | URIPS_SEEN_SLASH_DOT, |
| 998 | URIPS_SEEN_SLASH_DOT_DOT, |
| 999 | }; |
| 1000 | |
| 1001 | enum uri_esc_states { |
| 1002 | URIES_IDLE, |
| 1003 | URIES_SEEN_PERCENT, |
| 1004 | URIES_SEEN_PERCENT_H1, |
| 1005 | }; |
Andy Green | f3d3b40 | 2011-02-09 07:16:34 +0000 | [diff] [blame] | 1006 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1007 | /* notice that these union members: |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1008 | * |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1009 | * hdr |
| 1010 | * http |
| 1011 | * http2 |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1012 | * |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1013 | * all have a pointer to allocated_headers struct as their first member. |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1014 | * |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1015 | * 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] | 1016 | * used interchangeably to access the same data |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1017 | */ |
| 1018 | |
Andy Green | a661ee5 | 2016-02-29 13:18:30 +0800 | [diff] [blame] | 1019 | |
| 1020 | #ifndef LWS_NO_CLIENT |
| 1021 | struct client_info_stash { |
| 1022 | char address[256]; |
| 1023 | char path[1024]; |
| 1024 | char host[256]; |
| 1025 | char origin[256]; |
| 1026 | char protocol[256]; |
| 1027 | char method[16]; |
| 1028 | }; |
| 1029 | #endif |
| 1030 | |
Andy Green | 2d8d35a | 2016-02-29 14:19:16 +0800 | [diff] [blame] | 1031 | struct _lws_header_related { |
| 1032 | /* MUST be first in struct */ |
| 1033 | struct allocated_headers *ah; |
| 1034 | struct lws *ah_wait_list; |
| 1035 | unsigned char *preamble_rx; |
| 1036 | #ifndef LWS_NO_CLIENT |
| 1037 | struct client_info_stash *stash; |
| 1038 | #endif |
| 1039 | unsigned int preamble_rx_len; |
| 1040 | enum uri_path_states ups; |
| 1041 | enum uri_esc_states ues; |
| 1042 | short lextable_pos; |
Andy Green | 4889566 | 2016-06-02 12:32:38 +0800 | [diff] [blame] | 1043 | unsigned int current_token_limit; |
Andy Green | 2d8d35a | 2016-02-29 14:19:16 +0800 | [diff] [blame] | 1044 | #ifndef LWS_NO_CLIENT |
| 1045 | unsigned short c_port; |
| 1046 | #endif |
| 1047 | char esc_stash; |
| 1048 | char post_literal_equal; |
| 1049 | unsigned char parser_state; /* enum lws_token_indexes */ |
| 1050 | char redirects; |
| 1051 | }; |
| 1052 | |
Andy Green | 84fd949 | 2013-11-09 11:40:32 +0800 | [diff] [blame] | 1053 | struct _lws_http_mode_related { |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1054 | /* MUST be first in struct */ |
Andy Green | 84fd949 | 2013-11-09 11:40:32 +0800 | [diff] [blame] | 1055 | struct allocated_headers *ah; /* mirroring _lws_header_related */ |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1056 | struct lws *ah_wait_list; |
Andy Green | 2d8d35a | 2016-02-29 14:19:16 +0800 | [diff] [blame] | 1057 | unsigned char *preamble_rx; |
| 1058 | #ifndef LWS_NO_CLIENT |
| 1059 | struct client_info_stash *stash; |
| 1060 | #endif |
| 1061 | unsigned int preamble_rx_len; |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1062 | struct lws *new_wsi_list; |
Andy Green | 84fd949 | 2013-11-09 11:40:32 +0800 | [diff] [blame] | 1063 | unsigned long filepos; |
| 1064 | unsigned long filelen; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1065 | lws_filefd_type fd; |
kapejod | ce64fb0 | 2013-11-19 13:38:16 +0100 | [diff] [blame] | 1066 | |
Andrew Canaday | afe26cf | 2014-07-13 01:07:36 -0400 | [diff] [blame] | 1067 | enum http_version request_version; |
| 1068 | enum http_connection_type connection_type; |
Andy Green | 2cd3074 | 2015-11-02 13:10:33 +0800 | [diff] [blame] | 1069 | unsigned int content_length; |
| 1070 | unsigned int content_remain; |
Andy Green | 84fd949 | 2013-11-09 11:40:32 +0800 | [diff] [blame] | 1071 | }; |
| 1072 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1073 | #ifdef LWS_USE_HTTP2 |
| 1074 | |
| 1075 | enum lws_http2_settings { |
| 1076 | LWS_HTTP2_SETTINGS__HEADER_TABLE_SIZE = 1, |
| 1077 | LWS_HTTP2_SETTINGS__ENABLE_PUSH, |
| 1078 | LWS_HTTP2_SETTINGS__MAX_CONCURRENT_STREAMS, |
| 1079 | LWS_HTTP2_SETTINGS__INITIAL_WINDOW_SIZE, |
| 1080 | LWS_HTTP2_SETTINGS__MAX_FRAME_SIZE, |
| 1081 | LWS_HTTP2_SETTINGS__MAX_HEADER_LIST_SIZE, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1082 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1083 | LWS_HTTP2_SETTINGS__COUNT /* always last */ |
Andy Green | a54f232 | 2014-09-30 09:43:14 +0800 | [diff] [blame] | 1084 | }; |
| 1085 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1086 | enum lws_http2_wellknown_frame_types { |
| 1087 | LWS_HTTP2_FRAME_TYPE_DATA, |
| 1088 | LWS_HTTP2_FRAME_TYPE_HEADERS, |
| 1089 | LWS_HTTP2_FRAME_TYPE_PRIORITY, |
| 1090 | LWS_HTTP2_FRAME_TYPE_RST_STREAM, |
| 1091 | LWS_HTTP2_FRAME_TYPE_SETTINGS, |
| 1092 | LWS_HTTP2_FRAME_TYPE_PUSH_PROMISE, |
| 1093 | LWS_HTTP2_FRAME_TYPE_PING, |
| 1094 | LWS_HTTP2_FRAME_TYPE_GOAWAY, |
| 1095 | LWS_HTTP2_FRAME_TYPE_WINDOW_UPDATE, |
| 1096 | LWS_HTTP2_FRAME_TYPE_CONTINUATION, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1097 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1098 | LWS_HTTP2_FRAME_TYPE_COUNT /* always last */ |
| 1099 | }; |
| 1100 | |
Andy Green | 91b0589 | 2014-10-17 08:38:44 +0800 | [diff] [blame] | 1101 | enum lws_http2_flags { |
| 1102 | LWS_HTTP2_FLAG_END_STREAM = 1, |
| 1103 | LWS_HTTP2_FLAG_END_HEADERS = 4, |
| 1104 | LWS_HTTP2_FLAG_PADDED = 8, |
| 1105 | LWS_HTTP2_FLAG_PRIORITY = 0x20, |
| 1106 | |
| 1107 | LWS_HTTP2_FLAG_SETTINGS_ACK = 1, |
| 1108 | }; |
| 1109 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1110 | #define LWS_HTTP2_STREAM_ID_MASTER 0 |
| 1111 | #define LWS_HTTP2_FRAME_HEADER_LENGTH 9 |
| 1112 | #define LWS_HTTP2_SETTINGS_LENGTH 6 |
| 1113 | |
| 1114 | struct http2_settings { |
| 1115 | unsigned int setting[LWS_HTTP2_SETTINGS__COUNT]; |
| 1116 | }; |
| 1117 | |
Andy Green | ecc2e72 | 2014-10-09 16:57:47 +0800 | [diff] [blame] | 1118 | enum http2_hpack_state { |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1119 | |
Andy Green | 200f385 | 2014-10-18 12:23:05 +0800 | [diff] [blame] | 1120 | /* optional before first header block */ |
| 1121 | HPKS_OPT_PADDING, |
| 1122 | HKPS_OPT_E_DEPENDENCY, |
| 1123 | HKPS_OPT_WEIGHT, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1124 | |
Andy Green | 200f385 | 2014-10-18 12:23:05 +0800 | [diff] [blame] | 1125 | /* header block */ |
Andy Green | ecc2e72 | 2014-10-09 16:57:47 +0800 | [diff] [blame] | 1126 | HPKS_TYPE, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1127 | |
Andy Green | 2add634 | 2014-10-12 08:38:16 +0800 | [diff] [blame] | 1128 | HPKS_IDX_EXT, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1129 | |
Andy Green | ecc2e72 | 2014-10-09 16:57:47 +0800 | [diff] [blame] | 1130 | HPKS_HLEN, |
| 1131 | HPKS_HLEN_EXT, |
| 1132 | |
| 1133 | HPKS_DATA, |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1134 | |
Andy Green | 200f385 | 2014-10-18 12:23:05 +0800 | [diff] [blame] | 1135 | /* optional after last header block */ |
| 1136 | HKPS_OPT_DISCARD_PADDING, |
Andy Green | ecc2e72 | 2014-10-09 16:57:47 +0800 | [diff] [blame] | 1137 | }; |
| 1138 | |
Andy Green | 2add634 | 2014-10-12 08:38:16 +0800 | [diff] [blame] | 1139 | enum http2_hpack_type { |
| 1140 | HPKT_INDEXED_HDR_7, |
| 1141 | HPKT_INDEXED_HDR_6_VALUE_INCR, |
| 1142 | HPKT_LITERAL_HDR_VALUE_INCR, |
| 1143 | HPKT_INDEXED_HDR_4_VALUE, |
| 1144 | HPKT_LITERAL_HDR_VALUE, |
| 1145 | HPKT_SIZE_5 |
| 1146 | }; |
| 1147 | |
Andy Green | 200f385 | 2014-10-18 12:23:05 +0800 | [diff] [blame] | 1148 | struct hpack_dt_entry { |
| 1149 | int token; /* additions that don't map to a token are ignored */ |
| 1150 | int arg_offset; |
| 1151 | int arg_len; |
| 1152 | }; |
| 1153 | |
| 1154 | struct hpack_dynamic_table { |
| 1155 | struct hpack_dt_entry *entries; |
| 1156 | char *args; |
| 1157 | int pos; |
| 1158 | int next; |
| 1159 | int num_entries; |
| 1160 | int args_length; |
| 1161 | }; |
| 1162 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1163 | struct _lws_http2_related { |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1164 | /* |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1165 | * having this first lets us also re-use all HTTP union code |
| 1166 | * and in turn, http_mode_related has allocated headers in right |
| 1167 | * place so we can use the header apis on the wsi directly still |
| 1168 | */ |
| 1169 | struct _lws_http_mode_related http; /* MUST BE FIRST IN STRUCT */ |
| 1170 | |
| 1171 | struct http2_settings my_settings; |
| 1172 | struct http2_settings peer_settings; |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1173 | |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1174 | struct lws *parent_wsi; |
| 1175 | struct lws *next_child_wsi; |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1176 | |
Andy Green | 200f385 | 2014-10-18 12:23:05 +0800 | [diff] [blame] | 1177 | struct hpack_dynamic_table *hpack_dyn_table; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1178 | struct lws *stream_wsi; |
| 1179 | unsigned char ping_payload[8]; |
| 1180 | unsigned char one_setting[LWS_HTTP2_SETTINGS_LENGTH]; |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1181 | |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1182 | unsigned int count; |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1183 | unsigned int length; |
| 1184 | unsigned int stream_id; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1185 | enum http2_hpack_state hpack; |
| 1186 | enum http2_hpack_type hpack_type; |
| 1187 | unsigned int header_index; |
| 1188 | unsigned int hpack_len; |
| 1189 | unsigned int hpack_e_dep; |
| 1190 | int tx_credit; |
| 1191 | unsigned int my_stream_id; |
| 1192 | unsigned int child_count; |
| 1193 | int my_priority; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1194 | |
Andy Green | 91b0589 | 2014-10-17 08:38:44 +0800 | [diff] [blame] | 1195 | unsigned int END_STREAM:1; |
| 1196 | unsigned int END_HEADERS:1; |
Andy Green | 1cea581 | 2014-10-19 07:36:20 +0800 | [diff] [blame] | 1197 | unsigned int send_END_STREAM:1; |
Andy Green | 7df53c5 | 2014-10-22 15:37:28 +0800 | [diff] [blame] | 1198 | unsigned int GOING_AWAY; |
| 1199 | unsigned int requested_POLLOUT:1; |
Andy Green | 97ee57f | 2014-10-29 09:39:08 +0800 | [diff] [blame] | 1200 | unsigned int waiting_tx_credit:1; |
Andy Green | ecc2e72 | 2014-10-09 16:57:47 +0800 | [diff] [blame] | 1201 | unsigned int huff:1; |
| 1202 | unsigned int value:1; |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1203 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1204 | unsigned short round_robin_POLLOUT; |
| 1205 | unsigned short count_POLLOUT_children; |
| 1206 | unsigned short hpack_pos; |
| 1207 | |
| 1208 | unsigned char type; |
| 1209 | unsigned char flags; |
| 1210 | unsigned char frame_state; |
| 1211 | unsigned char padding; |
| 1212 | unsigned char hpack_m; |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1213 | unsigned char initialized; |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1214 | }; |
| 1215 | |
Andy Green | 7df53c5 | 2014-10-22 15:37:28 +0800 | [diff] [blame] | 1216 | #define HTTP2_IS_TOPLEVEL_WSI(wsi) (!wsi->u.http2.parent_wsi) |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1217 | |
| 1218 | #endif |
| 1219 | |
Andy Green | 623a98d | 2013-01-21 11:04:23 +0800 | [diff] [blame] | 1220 | struct _lws_websocket_related { |
Andy Green | 2c218e7 | 2016-02-15 12:37:04 +0800 | [diff] [blame] | 1221 | /* cheapest way to deal with ah overlap with ws union transition */ |
Andy Green | 26d4249 | 2016-02-24 12:40:21 +0800 | [diff] [blame] | 1222 | struct _lws_header_related hdr; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1223 | char *rx_ubuf; |
Andy Green | 4019aab | 2016-01-30 11:43:10 +0800 | [diff] [blame] | 1224 | unsigned int rx_ubuf_alloc; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1225 | struct lws *rx_draining_ext_list; |
| 1226 | struct lws *tx_draining_ext_list; |
Andy Green | f32d250 | 2016-07-15 13:41:38 +0800 | [diff] [blame] | 1227 | time_t time_next_ping_check; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1228 | size_t rx_packet_length; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1229 | unsigned int rx_ubuf_head; |
| 1230 | unsigned char mask[4]; |
Andy Green | 1fb95e8 | 2015-12-26 17:20:34 +0800 | [diff] [blame] | 1231 | /* Also used for close content... control opcode == < 128 */ |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1232 | unsigned char ping_payload_buf[128 - 3 + LWS_PRE]; |
Andy Green | 1fb95e8 | 2015-12-26 17:20:34 +0800 | [diff] [blame] | 1233 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1234 | unsigned char ping_payload_len; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1235 | unsigned char mask_idx; |
Andy Green | 623a98d | 2013-01-21 11:04:23 +0800 | [diff] [blame] | 1236 | unsigned char opcode; |
Andy Green | 623a98d | 2013-01-21 11:04:23 +0800 | [diff] [blame] | 1237 | unsigned char rsv; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1238 | unsigned char rsv_first_msg; |
Andy Green | 1fb95e8 | 2015-12-26 17:20:34 +0800 | [diff] [blame] | 1239 | /* zero if no info, or length including 2-byte close code */ |
| 1240 | unsigned char close_in_ping_buffer_len; |
Andy Green | 0c7b38b | 2015-12-29 09:46:03 +0800 | [diff] [blame] | 1241 | unsigned char utf8; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1242 | unsigned char stashed_write_type; |
| 1243 | unsigned char tx_draining_stashed_wp; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1244 | |
| 1245 | unsigned int final:1; |
Andy Green | d91d5e8 | 2013-02-10 16:00:47 +0800 | [diff] [blame] | 1246 | unsigned int frame_is_binary:1; |
Andy Green | d91d5e8 | 2013-02-10 16:00:47 +0800 | [diff] [blame] | 1247 | unsigned int all_zero_nonce:1; |
Andy Green | d91d5e8 | 2013-02-10 16:00:47 +0800 | [diff] [blame] | 1248 | unsigned int this_frame_masked:1; |
Andy Green | 1f4267b | 2013-10-17 08:09:19 +0800 | [diff] [blame] | 1249 | unsigned int inside_frame:1; /* next write will be more of frame */ |
| 1250 | unsigned int clean_buffer:1; /* buffer not rewritten by extension */ |
Andy Green | 40d5abc | 2015-04-17 20:29:58 +0800 | [diff] [blame] | 1251 | 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] | 1252 | unsigned int ping_pending_flag:1; |
Andy Green | 977734e | 2015-12-28 16:51:08 +0800 | [diff] [blame] | 1253 | unsigned int continuation_possible:1; |
Andy Green | 91d624e | 2015-12-28 17:05:40 +0800 | [diff] [blame] | 1254 | unsigned int owed_a_fin:1; |
Andy Green | 9b81d3c | 2015-12-29 12:28:48 +0800 | [diff] [blame] | 1255 | unsigned int check_utf8:1; |
| 1256 | unsigned int defeat_check_utf8:1; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1257 | unsigned int pmce_compressed_message:1; |
| 1258 | unsigned int stashed_write_pending:1; |
| 1259 | unsigned int rx_draining_ext:1; |
| 1260 | unsigned int tx_draining_ext:1; |
Andy Green | f32d250 | 2016-07-15 13:41:38 +0800 | [diff] [blame] | 1261 | unsigned int send_check_ping:1; |
Andy Green | 623a98d | 2013-01-21 11:04:23 +0800 | [diff] [blame] | 1262 | }; |
| 1263 | |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 1264 | #ifdef LWS_WITH_CGI |
| 1265 | |
| 1266 | /* wsi who is master of the cgi points to an lws_cgi */ |
| 1267 | |
| 1268 | struct lws_cgi { |
| 1269 | struct lws_cgi *cgi_list; |
| 1270 | struct lws *stdwsi[3]; /* points to the associated stdin/out/err wsis */ |
| 1271 | struct lws *wsi; /* owner */ |
Andy Green | f5efa74 | 2016-04-13 11:42:53 +0800 | [diff] [blame] | 1272 | unsigned long content_length; |
| 1273 | unsigned long content_length_seen; |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 1274 | int pipe_fds[3][2]; |
| 1275 | int pid; |
| 1276 | |
| 1277 | unsigned int being_closed:1; |
| 1278 | }; |
Andy Green | 5c8906e | 2016-03-13 16:44:19 +0800 | [diff] [blame] | 1279 | #endif |
Andy Green | c3c2d6d | 2016-03-09 07:41:59 +0800 | [diff] [blame] | 1280 | |
Andy Green | 5c8906e | 2016-03-13 16:44:19 +0800 | [diff] [blame] | 1281 | signed char char_to_hex(const char c); |
| 1282 | |
| 1283 | #ifndef LWS_NO_CLIENT |
| 1284 | enum lws_chunk_parser { |
| 1285 | ELCP_HEX, |
| 1286 | ELCP_CR, |
| 1287 | ELCP_CONTENT, |
| 1288 | ELCP_POST_CR, |
| 1289 | ELCP_POST_LF, |
| 1290 | }; |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 1291 | #endif |
| 1292 | |
Andy Green | 1e5a9ad | 2016-03-20 11:59:53 +0800 | [diff] [blame] | 1293 | struct lws_rewrite; |
| 1294 | |
Andy Green | 2f0bc93 | 2016-04-15 12:00:23 +0800 | [diff] [blame] | 1295 | #ifdef LWS_WITH_ACCESS_LOG |
| 1296 | struct lws_access_log { |
| 1297 | char *header_log; |
| 1298 | char *user_agent; |
| 1299 | unsigned long sent; |
| 1300 | int response; |
| 1301 | }; |
| 1302 | #endif |
| 1303 | |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1304 | struct lws { |
Andy Green | 623a98d | 2013-01-21 11:04:23 +0800 | [diff] [blame] | 1305 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1306 | /* structs */ |
| 1307 | /* members with mutually exclusive lifetimes are unionized */ |
| 1308 | |
| 1309 | union u { |
| 1310 | struct _lws_http_mode_related http; |
| 1311 | #ifdef LWS_USE_HTTP2 |
| 1312 | struct _lws_http2_related http2; |
| 1313 | #endif |
| 1314 | struct _lws_header_related hdr; |
| 1315 | struct _lws_websocket_related ws; |
| 1316 | } u; |
| 1317 | |
Andy Green | 623a98d | 2013-01-21 11:04:23 +0800 | [diff] [blame] | 1318 | /* lifetime members */ |
| 1319 | |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 1320 | #if defined(LWS_USE_LIBEV) || defined(LWS_USE_LIBUV) |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1321 | struct lws_io_watcher w_read; |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 1322 | #endif |
| 1323 | #if defined(LWS_USE_LIBEV) |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1324 | struct lws_io_watcher w_write; |
Andy Green | 86ed65f | 2016-02-14 09:27:41 +0800 | [diff] [blame] | 1325 | #endif |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1326 | time_t pending_timeout_limit; |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1327 | |
| 1328 | /* pointers */ |
| 1329 | |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1330 | struct lws_context *context; |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 1331 | struct lws_vhost *vhost; |
Andy Green | 494418a | 2016-03-02 09:17:22 +0800 | [diff] [blame] | 1332 | struct lws *parent; /* points to parent, if any */ |
| 1333 | struct lws *child_list; /* points to first child */ |
| 1334 | struct lws *sibling_list; /* subsequent children at same level */ |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 1335 | #ifdef LWS_WITH_CGI |
| 1336 | struct lws_cgi *cgi; /* wsi being cgi master have one of these */ |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 1337 | #endif |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1338 | const struct lws_protocols *protocol; |
Andy Green | 4714cf0 | 2016-04-16 08:40:35 +0800 | [diff] [blame] | 1339 | struct lws **same_vh_protocol_prev, *same_vh_protocol_next; |
Andy Green | d738f84 | 2016-01-19 04:32:14 +0800 | [diff] [blame] | 1340 | struct lws *timeout_list; |
| 1341 | struct lws **timeout_list_prev; |
Andy Green | 2f0bc93 | 2016-04-15 12:00:23 +0800 | [diff] [blame] | 1342 | #ifdef LWS_WITH_ACCESS_LOG |
| 1343 | struct lws_access_log access_log; |
| 1344 | #endif |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1345 | void *user_space; |
| 1346 | /* rxflow handling */ |
| 1347 | unsigned char *rxflow_buffer; |
| 1348 | /* truncated send handling */ |
| 1349 | unsigned char *trunc_alloc; /* non-NULL means buffering in progress */ |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 1350 | |
| 1351 | #if defined (LWS_WITH_ESP8266) |
| 1352 | void *premature_rx; |
| 1353 | unsigned short prem_rx_size, prem_rx_pos; |
| 1354 | #endif |
| 1355 | |
Andy Green | 3182ece | 2013-01-20 17:08:31 +0800 | [diff] [blame] | 1356 | #ifndef LWS_NO_EXTENSIONS |
Andy Green | d2ac22c | 2015-12-11 10:45:35 +0800 | [diff] [blame] | 1357 | const struct lws_extension *active_extensions[LWS_MAX_EXTENSIONS_ACTIVE]; |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1358 | void *act_ext_user[LWS_MAX_EXTENSIONS_ACTIVE]; |
Andy Green | 3182ece | 2013-01-20 17:08:31 +0800 | [diff] [blame] | 1359 | #endif |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1360 | #ifdef LWS_OPENSSL_SUPPORT |
| 1361 | SSL *ssl; |
Andy Green | 1a3f177 | 2016-03-28 19:58:02 +0800 | [diff] [blame] | 1362 | #if !defined(LWS_USE_POLARSSL) && !defined(LWS_USE_MBEDTLS) |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1363 | BIO *client_bio; |
Andy Green | 1a3f177 | 2016-03-28 19:58:02 +0800 | [diff] [blame] | 1364 | #endif |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1365 | struct lws *pending_read_list_prev, *pending_read_list_next; |
| 1366 | #endif |
Andy Green | 1a13885 | 2016-03-20 11:55:25 +0800 | [diff] [blame] | 1367 | #ifdef LWS_WITH_HTTP_PROXY |
Andy Green | 1e5a9ad | 2016-03-20 11:59:53 +0800 | [diff] [blame] | 1368 | struct lws_rewrite *rw; |
| 1369 | #endif |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1370 | #ifdef LWS_LATENCY |
| 1371 | unsigned long action_start; |
| 1372 | unsigned long latency_start; |
| 1373 | #endif |
| 1374 | /* pointer / int */ |
Andy Green | 3b19386 | 2015-11-02 13:13:44 +0800 | [diff] [blame] | 1375 | lws_sockfd_type sock; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1376 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1377 | /* ints */ |
Andy Green | dfb2304 | 2013-01-17 12:26:48 +0800 | [diff] [blame] | 1378 | int position_in_fds_table; |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1379 | int rxflow_len; |
| 1380 | int rxflow_pos; |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 1381 | unsigned int trunc_alloc_len; /* size of malloc */ |
| 1382 | unsigned int trunc_offset; /* where we are in terms of spilling */ |
| 1383 | unsigned int trunc_len; /* how much is buffered */ |
Andy Green | 5c8906e | 2016-03-13 16:44:19 +0800 | [diff] [blame] | 1384 | #ifndef LWS_NO_CLIENT |
| 1385 | int chunk_remaining; |
| 1386 | #endif |
Andy Green | 42e8b18 | 2016-04-22 08:53:49 +0800 | [diff] [blame] | 1387 | unsigned int cache_secs; |
Andy Green | 2764eba | 2013-12-09 14:16:17 +0800 | [diff] [blame] | 1388 | |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1389 | unsigned int hdr_parsing_completed:1; |
Andy Green | 22d6f39 | 2016-04-10 09:33:54 +0800 | [diff] [blame] | 1390 | unsigned int http2_substream:1; |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 1391 | unsigned int listener:1; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1392 | unsigned int user_space_externally_allocated:1; |
| 1393 | unsigned int socket_is_permanently_unusable:1; |
| 1394 | unsigned int rxflow_change_to:2; |
Andy Green | 83af28a | 2016-02-28 10:55:31 +0800 | [diff] [blame] | 1395 | unsigned int more_rx_waiting:1; /* has to live here since ah may stick to end */ |
Andy Green | 9806140 | 2016-04-15 14:01:29 +0800 | [diff] [blame] | 1396 | unsigned int conn_stat_done:1; |
Andy Green | 42e8b18 | 2016-04-22 08:53:49 +0800 | [diff] [blame] | 1397 | unsigned int cache_reuse:1; |
| 1398 | unsigned int cache_revalidate:1; |
| 1399 | unsigned int cache_intermediaries:1; |
Andy Green | 2f21628 | 2016-04-23 09:26:11 +0800 | [diff] [blame] | 1400 | unsigned int favoured_pollin:1; |
Andy Green | 7a2fc44 | 2016-05-19 15:28:31 +0800 | [diff] [blame] | 1401 | unsigned int sending_chunked:1; |
Andy Green | 81c221e | 2016-07-01 08:54:39 +0800 | [diff] [blame] | 1402 | unsigned int already_did_cce:1; |
Andy Green | 723b3f1 | 2016-09-06 15:36:51 +0800 | [diff] [blame] | 1403 | unsigned int told_user_closed:1; |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 1404 | #if defined(LWS_WITH_ESP8266) |
| 1405 | unsigned int pending_send_completion:3; |
| 1406 | unsigned int close_is_pending_send_completion:1; |
| 1407 | #endif |
Andy Green | 2f0bc93 | 2016-04-15 12:00:23 +0800 | [diff] [blame] | 1408 | #ifdef LWS_WITH_ACCESS_LOG |
| 1409 | unsigned int access_log_pending:1; |
| 1410 | #endif |
Andy Green | a661ee5 | 2016-02-29 13:18:30 +0800 | [diff] [blame] | 1411 | #ifndef LWS_NO_CLIENT |
| 1412 | unsigned int do_ws:1; /* whether we are doing http or ws flow */ |
Andy Green | 5c8906e | 2016-03-13 16:44:19 +0800 | [diff] [blame] | 1413 | unsigned int chunked:1; /* if the clientside connection is chunked */ |
Andy Green | 1e5a9ad | 2016-03-20 11:59:53 +0800 | [diff] [blame] | 1414 | unsigned int client_rx_avail:1; |
Andy Green | 95fff47 | 2016-08-08 21:54:30 +0800 | [diff] [blame] | 1415 | unsigned int client_http_body_pending:1; |
Andy Green | 1a13885 | 2016-03-20 11:55:25 +0800 | [diff] [blame] | 1416 | #endif |
| 1417 | #ifdef LWS_WITH_HTTP_PROXY |
Andy Green | 1e5a9ad | 2016-03-20 11:59:53 +0800 | [diff] [blame] | 1418 | unsigned int perform_rewrite:1; |
Andy Green | a661ee5 | 2016-02-29 13:18:30 +0800 | [diff] [blame] | 1419 | #endif |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1420 | #ifndef LWS_NO_EXTENSIONS |
| 1421 | unsigned int extension_data_pending:1; |
| 1422 | #endif |
| 1423 | #ifdef LWS_OPENSSL_SUPPORT |
Andy Green | 675c349 | 2016-07-07 08:14:26 +0800 | [diff] [blame] | 1424 | unsigned int use_ssl:3; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1425 | unsigned int upgraded:1; |
| 1426 | #endif |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1427 | #ifdef _WIN32 |
| 1428 | unsigned int sock_send_blocking:1; |
| 1429 | #endif |
Andy Green | 0f9904f | 2016-03-17 15:26:49 +0800 | [diff] [blame] | 1430 | #ifdef LWS_OPENSSL_SUPPORT |
| 1431 | unsigned int redirect_to_https:1; |
| 1432 | #endif |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1433 | |
Andy Green | aa775fd | 2015-12-26 08:56:58 +0800 | [diff] [blame] | 1434 | /* chars */ |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1435 | #ifndef LWS_NO_EXTENSIONS |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1436 | unsigned char count_act_ext; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1437 | #endif |
| 1438 | unsigned char ietf_spec_revision; |
| 1439 | char mode; /* enum connection_mode */ |
| 1440 | char state; /* enum lws_connection_states */ |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1441 | char state_pre_close; |
Andy Green | de132b9 | 2015-12-25 13:48:20 +0800 | [diff] [blame] | 1442 | char lws_rx_parse_state; /* enum lws_rx_parse_state */ |
| 1443 | char rx_frame_type; /* enum lws_write_protocol */ |
| 1444 | char pending_timeout; /* enum pending_timeout */ |
Andy Green | d738f84 | 2016-01-19 04:32:14 +0800 | [diff] [blame] | 1445 | char pps; /* enum lws_pending_protocol_send */ |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 1446 | char tsi; /* thread service index we belong to */ |
Andy Green | 7a2fc44 | 2016-05-19 15:28:31 +0800 | [diff] [blame] | 1447 | char protocol_interpret_idx; |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 1448 | #ifdef LWS_WITH_CGI |
| 1449 | char cgi_channel; /* which of stdin/out/err */ |
Andy Green | c3c2d6d | 2016-03-09 07:41:59 +0800 | [diff] [blame] | 1450 | char hdr_state; |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 1451 | #endif |
Andy Green | 5c8906e | 2016-03-13 16:44:19 +0800 | [diff] [blame] | 1452 | #ifndef LWS_NO_CLIENT |
| 1453 | char chunk_parser; /* enum lws_chunk_parser */ |
| 1454 | #endif |
Andy Green | 0a4da2c | 2016-05-10 10:16:52 +0800 | [diff] [blame] | 1455 | #if defined(LWS_WITH_CGI) || !defined(LWS_NO_CLIENT) |
| 1456 | char reason_bf; /* internal writeable callback reason bitfield */ |
| 1457 | #endif |
Andy Green | 7c212cc | 2010-11-08 20:20:42 +0000 | [diff] [blame] | 1458 | }; |
| 1459 | |
Andy Green | 3d67f51 | 2014-04-03 07:29:50 +0800 | [diff] [blame] | 1460 | LWS_EXTERN int log_level; |
| 1461 | |
Andy Green | c793944 | 2016-03-12 08:18:58 +0800 | [diff] [blame] | 1462 | LWS_EXTERN int |
Andy Green | 144594d | 2016-04-14 12:11:51 +0800 | [diff] [blame] | 1463 | lws_socket_bind(struct lws_vhost *vhost, int sockfd, int port, |
Andy Green | c793944 | 2016-03-12 08:18:58 +0800 | [diff] [blame] | 1464 | const char *iface); |
| 1465 | |
Joakim Soderberg | f272cb0 | 2013-02-13 09:29:26 +0800 | [diff] [blame] | 1466 | LWS_EXTERN void |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1467 | lws_close_free_wsi(struct lws *wsi, enum lws_close_status); |
Andy Green | 508946c | 2013-02-12 10:19:08 +0800 | [diff] [blame] | 1468 | |
Andy Green | 34f3dd2 | 2014-04-03 07:42:50 +0800 | [diff] [blame] | 1469 | LWS_EXTERN int |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1470 | remove_wsi_socket_from_fds(struct lws *wsi); |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1471 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1472 | 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] | 1473 | |
Andy Green | d636e35 | 2013-01-29 12:36:17 +0800 | [diff] [blame] | 1474 | #ifndef LWS_LATENCY |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1475 | static inline void |
| 1476 | lws_latency(struct lws_context *context, struct lws *wsi, const char *action, |
| 1477 | int ret, int completion) { |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1478 | do { |
| 1479 | (void)context; (void)wsi; (void)action; (void)ret; |
| 1480 | (void)completion; |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1481 | } while (0); |
| 1482 | } |
| 1483 | static inline void |
| 1484 | lws_latency_pre(struct lws_context *context, struct lws *wsi) { |
| 1485 | do { (void)context; (void)wsi; } while (0); |
| 1486 | } |
Andy Green | d636e35 | 2013-01-29 12:36:17 +0800 | [diff] [blame] | 1487 | #else |
| 1488 | #define lws_latency_pre(_context, _wsi) lws_latency(_context, _wsi, NULL, 0, 0) |
| 1489 | extern void |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1490 | lws_latency(struct lws_context *context, struct lws *wsi, const char *action, |
| 1491 | int ret, int completion); |
Andy Green | d636e35 | 2013-01-29 12:36:17 +0800 | [diff] [blame] | 1492 | #endif |
| 1493 | |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1494 | LWS_EXTERN void |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1495 | lws_set_protocol_write_pending(struct lws *wsi, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1496 | enum lws_pending_protocol_send pend); |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1497 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1498 | lws_client_rx_sm(struct lws *wsi, unsigned char c); |
Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 1499 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1500 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1501 | lws_parse(struct lws *wsi, unsigned char c); |
Andy Green | b45993c | 2010-12-18 15:13:50 +0000 | [diff] [blame] | 1502 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1503 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1504 | lws_http_action(struct lws *wsi); |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1505 | |
| 1506 | LWS_EXTERN int |
Andy Green | df73616 | 2011-01-18 15:39:02 +0000 | [diff] [blame] | 1507 | lws_b64_selftest(void); |
Andy Green | bfb051f | 2011-02-09 08:49:14 +0000 | [diff] [blame] | 1508 | |
Andy Green | 2c218e7 | 2016-02-15 12:37:04 +0800 | [diff] [blame] | 1509 | LWS_EXTERN int |
Andy Green | 2c218e7 | 2016-02-15 12:37:04 +0800 | [diff] [blame] | 1510 | lws_service_flag_pending(struct lws_context *context, int tsi); |
| 1511 | |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 1512 | #if defined(_WIN32) || defined(MBED_OPERATORS) || defined(LWS_WITH_ESP8266) |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1513 | LWS_EXTERN struct lws * |
Andy Green | 1fa7685 | 2015-12-14 11:17:16 +0800 | [diff] [blame] | 1514 | wsi_from_fd(const struct lws_context *context, lws_sockfd_type fd); |
Andy Green | 0d33833 | 2011-02-12 11:57:43 +0000 | [diff] [blame] | 1515 | |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1516 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1517 | insert_wsi(struct lws_context *context, struct lws *wsi); |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 1518 | |
| 1519 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1520 | delete_from_fd(struct lws_context *context, lws_sockfd_type fd); |
Bud Davis | 229bfec | 2015-01-30 10:13:01 +0800 | [diff] [blame] | 1521 | #else |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1522 | #define wsi_from_fd(A,B) A->lws_lookup[B] |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1523 | #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] | 1524 | #define delete_from_fd(A,B) A->lws_lookup[B]=0 |
| 1525 | #endif |
| 1526 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1527 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1528 | insert_wsi_socket_into_fds(struct lws_context *context, struct lws *wsi); |
Darin Willits | c19456f | 2011-02-14 17:52:39 +0000 | [diff] [blame] | 1529 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1530 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1531 | lws_issue_raw(struct lws *wsi, unsigned char *buf, size_t len); |
Andy Green | d44bf7f | 2011-03-06 10:29:38 +0000 | [diff] [blame] | 1532 | |
Andy Green | 95a7b5d | 2011-03-06 10:29:39 +0000 | [diff] [blame] | 1533 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1534 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1535 | lws_service_timeout_check(struct lws *wsi, unsigned int sec); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1536 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1537 | LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1538 | lws_client_connect_2(struct lws *wsi); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1539 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1540 | LWS_VISIBLE struct lws * LWS_WARN_UNUSED_RESULT |
| 1541 | lws_client_reset(struct lws *wsi, int ssl, const char *address, int port, |
| 1542 | const char *path, const char *host); |
Andy Green | 809d69a | 2016-01-14 11:37:56 +0800 | [diff] [blame] | 1543 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1544 | LWS_EXTERN struct lws * LWS_WARN_UNUSED_RESULT |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 1545 | lws_create_new_server_wsi(struct lws_vhost *vhost); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1546 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1547 | LWS_EXTERN char * LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1548 | lws_generate_client_handshake(struct lws *wsi, char *pkt); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1549 | |
Joakim Soderberg | f272cb0 | 2013-02-13 09:29:26 +0800 | [diff] [blame] | 1550 | LWS_EXTERN int |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1551 | lws_handle_POLLOUT_event(struct lws *wsi, struct lws_pollfd *pollfd); |
Andy Green | 91b0589 | 2014-10-17 08:38:44 +0800 | [diff] [blame] | 1552 | |
Andy Green | 2d8d35a | 2016-02-29 14:19:16 +0800 | [diff] [blame] | 1553 | LWS_EXTERN struct lws * |
| 1554 | lws_client_connect_via_info2(struct lws *wsi); |
| 1555 | |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1556 | /* |
| 1557 | * EXTENSIONS |
| 1558 | */ |
| 1559 | |
Andy Green | 3182ece | 2013-01-20 17:08:31 +0800 | [diff] [blame] | 1560 | #ifndef LWS_NO_EXTENSIONS |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1561 | LWS_VISIBLE void |
| 1562 | lws_context_init_extensions(struct lws_context_creation_info *info, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1563 | struct lws_context *context); |
Joakim Soderberg | f272cb0 | 2013-02-13 09:29:26 +0800 | [diff] [blame] | 1564 | LWS_EXTERN int |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1565 | 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] | 1566 | void *v, size_t len); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1567 | |
Andy Green | 2c24ec0 | 2014-04-02 19:45:42 +0800 | [diff] [blame] | 1568 | LWS_EXTERN int |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1569 | 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] | 1570 | LWS_EXTERN int |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1571 | lws_ext_cb_all_exts(struct lws_context *context, struct lws *wsi, int reason, |
| 1572 | void *arg, int len); |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1573 | |
Andy Green | 2c24ec0 | 2014-04-02 19:45:42 +0800 | [diff] [blame] | 1574 | #else |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1575 | #define lws_any_extension_handled(_a, _b, _c, _d) (0) |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1576 | #define lws_ext_cb_active(_a, _b, _c, _d) (0) |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 1577 | #define lws_ext_cb_all_exts(_a, _b, _c, _d, _e) (0) |
Andy Green | b49a995 | 2014-04-03 10:11:04 +0800 | [diff] [blame] | 1578 | #define lws_issue_raw_ext_access lws_issue_raw |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1579 | #define lws_context_init_extensions(_a, _b) |
Andy Green | 3182ece | 2013-01-20 17:08:31 +0800 | [diff] [blame] | 1580 | #endif |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1581 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1582 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1583 | lws_client_interpret_server_handshake(struct lws *wsi); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1584 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1585 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1586 | lws_rx_sm(struct lws *wsi, unsigned char c); |
Andy Green | a41314f | 2011-05-23 10:00:03 +0100 | [diff] [blame] | 1587 | |
Andy Green | c15714f | 2016-09-10 04:43:07 +0800 | [diff] [blame] | 1588 | LWS_EXTERN int |
Alex Hultman | 599cad9 | 2016-03-17 09:34:15 +0800 | [diff] [blame] | 1589 | lws_payload_until_length_exhausted(struct lws *wsi, unsigned char **buf, size_t *len); |
| 1590 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1591 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1592 | 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] | 1593 | |
Andy Green | 44c1161 | 2014-11-08 11:18:47 +0800 | [diff] [blame] | 1594 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1595 | lws_union_transition(struct lws *wsi, enum connection_mode mode); |
Andy Green | 44c1161 | 2014-11-08 11:18:47 +0800 | [diff] [blame] | 1596 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1597 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Denis Osvald | 034e514 | 2015-12-21 18:06:38 +0100 | [diff] [blame] | 1598 | user_callback_handle_rxflow(lws_callback_function, struct lws *wsi, |
Andy Green | 00c6d15 | 2015-12-17 07:54:44 +0800 | [diff] [blame] | 1599 | enum lws_callback_reasons reason, void *user, |
| 1600 | void *in, size_t len); |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1601 | #ifdef LWS_USE_HTTP2 |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1602 | LWS_EXTERN struct lws *lws_http2_get_network_wsi(struct lws *wsi); |
| 1603 | struct lws * lws_http2_get_nth_child(struct lws *wsi, int n); |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1604 | LWS_EXTERN int |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1605 | lws_http2_interpret_settings_payload(struct http2_settings *settings, |
| 1606 | unsigned char *buf, int len); |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1607 | LWS_EXTERN void lws_http2_init(struct http2_settings *settings); |
| 1608 | LWS_EXTERN int |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1609 | lws_http2_parser(struct lws *wsi, unsigned char c); |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1610 | LWS_EXTERN int lws_http2_do_pps_send(struct lws_context *context, |
| 1611 | struct lws *wsi); |
| 1612 | LWS_EXTERN int lws_http2_frame_write(struct lws *wsi, int type, int flags, |
| 1613 | unsigned int sid, unsigned int len, |
| 1614 | unsigned char *buf); |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1615 | LWS_EXTERN struct lws * |
| 1616 | lws_http2_wsi_from_id(struct lws *wsi, unsigned int sid); |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1617 | LWS_EXTERN int lws_hpack_interpret(struct lws *wsi, |
Andy Green | 2add634 | 2014-10-12 08:38:16 +0800 | [diff] [blame] | 1618 | unsigned char c); |
Andy Green | 917f43a | 2014-10-12 14:31:47 +0800 | [diff] [blame] | 1619 | LWS_EXTERN int |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1620 | lws_add_http2_header_by_name(struct lws *wsi, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1621 | const unsigned char *name, |
| 1622 | const unsigned char *value, int length, |
| 1623 | unsigned char **p, unsigned char *end); |
Andy Green | 917f43a | 2014-10-12 14:31:47 +0800 | [diff] [blame] | 1624 | LWS_EXTERN int |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1625 | lws_add_http2_header_by_token(struct lws *wsi, |
Andy Green | 917f43a | 2014-10-12 14:31:47 +0800 | [diff] [blame] | 1626 | enum lws_token_indexes token, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1627 | const unsigned char *value, int length, |
| 1628 | unsigned char **p, unsigned char *end); |
Andy Green | 917f43a | 2014-10-12 14:31:47 +0800 | [diff] [blame] | 1629 | LWS_EXTERN int |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1630 | lws_add_http2_header_status(struct lws *wsi, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1631 | unsigned int code, unsigned char **p, |
Andy Green | 917f43a | 2014-10-12 14:31:47 +0800 | [diff] [blame] | 1632 | unsigned char *end); |
Andy Green | 7df53c5 | 2014-10-22 15:37:28 +0800 | [diff] [blame] | 1633 | LWS_EXTERN |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1634 | void lws_http2_configure_if_upgraded(struct lws *wsi); |
Andy Green | 7df53c5 | 2014-10-22 15:37:28 +0800 | [diff] [blame] | 1635 | #else |
| 1636 | #define lws_http2_configure_if_upgraded(x) |
Andy Green | 024eb6c | 2014-10-08 12:00:53 +0800 | [diff] [blame] | 1637 | #endif |
Andy Green | 706961d | 2013-01-17 16:50:35 +0800 | [diff] [blame] | 1638 | |
Joakim Soderberg | f272cb0 | 2013-02-13 09:29:26 +0800 | [diff] [blame] | 1639 | LWS_EXTERN int |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 1640 | lws_plat_set_socket_options(struct lws_vhost *vhost, lws_sockfd_type fd); |
Andy Green | a690cd0 | 2013-02-09 12:25:31 +0800 | [diff] [blame] | 1641 | |
Andy Piper | 6ff571f | 2016-06-28 19:01:20 +0800 | [diff] [blame] | 1642 | LWS_EXTERN int |
| 1643 | lws_plat_check_connection_error(struct lws *wsi); |
| 1644 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1645 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | e3d141d | 2016-02-27 11:42:22 +0800 | [diff] [blame] | 1646 | lws_header_table_attach(struct lws *wsi, int autoservice); |
Andy Green | 16ab318 | 2013-02-10 18:02:31 +0800 | [diff] [blame] | 1647 | |
Andrew Canaday | 3771881 | 2014-11-07 11:20:59 +0800 | [diff] [blame] | 1648 | LWS_EXTERN int |
Andy Green | e3d141d | 2016-02-27 11:42:22 +0800 | [diff] [blame] | 1649 | lws_header_table_detach(struct lws *wsi, int autoservice); |
Andrew Canaday | 3771881 | 2014-11-07 11:20:59 +0800 | [diff] [blame] | 1650 | |
Andy Green | 4019aab | 2016-01-30 11:43:10 +0800 | [diff] [blame] | 1651 | LWS_EXTERN void |
Andy Green | e3d141d | 2016-02-27 11:42:22 +0800 | [diff] [blame] | 1652 | lws_header_table_reset(struct lws *wsi, int autoservice); |
Andy Green | 4019aab | 2016-01-30 11:43:10 +0800 | [diff] [blame] | 1653 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1654 | LWS_EXTERN char * LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1655 | lws_hdr_simple_ptr(struct lws *wsi, enum lws_token_indexes h); |
Andy Green | 16ab318 | 2013-02-10 18:02:31 +0800 | [diff] [blame] | 1656 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1657 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1658 | 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] | 1659 | |
Andy Green | 16146cd | 2016-04-23 07:53:46 +0800 | [diff] [blame] | 1660 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1661 | lws_ensure_user_space(struct lws *wsi); |
Andy Green | 2af4d5b | 2013-02-18 16:30:10 +0800 | [diff] [blame] | 1662 | |
Andy Green | 158e804 | 2014-04-02 14:25:10 +0800 | [diff] [blame] | 1663 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1664 | lws_change_pollfd(struct lws *wsi, int _and, int _or); |
Andy Green | 91f19d8 | 2013-12-21 11:18:34 +0800 | [diff] [blame] | 1665 | |
Andy Green | b5b2319 | 2013-02-11 17:13:32 +0800 | [diff] [blame] | 1666 | #ifndef LWS_NO_SERVER |
Andy Green | e38031a | 2014-04-03 08:24:29 +0800 | [diff] [blame] | 1667 | int lws_context_init_server(struct lws_context_creation_info *info, |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 1668 | struct lws_vhost *vhost); |
| 1669 | LWS_EXTERN struct lws_vhost * |
| 1670 | lws_select_vhost(struct lws_context *context, int port, const char *servername); |
Andy Green | d7340c1 | 2014-04-10 14:08:10 +0800 | [diff] [blame] | 1671 | LWS_EXTERN int |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1672 | handshake_0405(struct lws_context *context, struct lws *wsi); |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1673 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6711266 | 2016-01-11 11:34:01 +0800 | [diff] [blame] | 1674 | 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] | 1675 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1676 | lws_server_get_canonical_hostname(struct lws_context *context, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1677 | struct lws_context_creation_info *info); |
Andy Green | e38031a | 2014-04-03 08:24:29 +0800 | [diff] [blame] | 1678 | #else |
| 1679 | #define lws_context_init_server(_a, _b) (0) |
Andy Green | 3ef579b | 2015-12-04 09:23:56 +0800 | [diff] [blame] | 1680 | #define lws_interpret_incoming_packet(_a, _b, _c) (0) |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1681 | #define lws_server_get_canonical_hostname(_a, _b) |
Andy Green | b5b2319 | 2013-02-11 17:13:32 +0800 | [diff] [blame] | 1682 | #endif |
| 1683 | |
| 1684 | #ifndef LWS_NO_DAEMONIZE |
Joakim Soderberg | f272cb0 | 2013-02-13 09:29:26 +0800 | [diff] [blame] | 1685 | LWS_EXTERN int get_daemonize_pid(); |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1686 | #else |
| 1687 | #define get_daemonize_pid() (0) |
Andy Green | b5b2319 | 2013-02-11 17:13:32 +0800 | [diff] [blame] | 1688 | #endif |
| 1689 | |
Andy Green | 7acf76c | 2016-07-23 14:18:25 +0800 | [diff] [blame] | 1690 | #if !defined(MBED_OPERATORS) && !defined(LWS_WITH_ESP8266) |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1691 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 2dc7dde | 2016-06-03 21:19:40 +0800 | [diff] [blame] | 1692 | interface_to_sa(struct lws_vhost *vh, const char *ifname, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1693 | struct sockaddr_in *addr, size_t addrlen); |
Andy Green | 2cd3074 | 2015-11-02 13:10:33 +0800 | [diff] [blame] | 1694 | #endif |
Andy Green | b25b85f | 2014-04-03 23:34:09 +0800 | [diff] [blame] | 1695 | LWS_EXTERN void lwsl_emit_stderr(int level, const char *line); |
| 1696 | |
Andy Green | 1a308e4 | 2014-04-08 07:26:30 +0100 | [diff] [blame] | 1697 | enum lws_ssl_capable_status { |
| 1698 | LWS_SSL_CAPABLE_ERROR = -1, |
| 1699 | LWS_SSL_CAPABLE_MORE_SERVICE = -2, |
| 1700 | }; |
| 1701 | |
Darin Willits | c19456f | 2011-02-14 17:52:39 +0000 | [diff] [blame] | 1702 | #ifndef LWS_OPENSSL_SUPPORT |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1703 | #define LWS_SSL_ENABLED(context) (0) |
Andy Green | c57037a | 2014-04-03 10:17:00 +0800 | [diff] [blame] | 1704 | #define lws_context_init_server_ssl(_a, _b) (0) |
| 1705 | #define lws_ssl_destroy(_a) |
Andy Green | 2eedea9 | 2014-04-03 14:33:48 +0800 | [diff] [blame] | 1706 | #define lws_context_init_http2_ssl(_a) |
Andy Green | 0213812 | 2014-04-06 06:26:35 +0100 | [diff] [blame] | 1707 | #define lws_ssl_capable_read lws_ssl_capable_read_no_ssl |
| 1708 | #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] | 1709 | #define lws_ssl_pending lws_ssl_pending_no_ssl |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1710 | #define lws_server_socket_service_ssl(_b, _c) (0) |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1711 | #define lws_ssl_close(_a) (0) |
| 1712 | #define lws_ssl_context_destroy(_a) |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 1713 | #define lws_ssl_SSL_CTX_destroy(_a) |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1714 | #define lws_ssl_remove_wsi_from_buffered_list(_a) |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 1715 | #define lws_context_init_ssl_library(_a) |
Andy Green | b5b2319 | 2013-02-11 17:13:32 +0800 | [diff] [blame] | 1716 | #else |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1717 | #define LWS_SSL_ENABLED(context) (context->use_ssl) |
Joakim Soderberg | f272cb0 | 2013-02-13 09:29:26 +0800 | [diff] [blame] | 1718 | LWS_EXTERN int openssl_websocket_private_data_index; |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1719 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1720 | lws_ssl_capable_read(struct lws *wsi, unsigned char *buf, int len); |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1721 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1722 | lws_ssl_capable_write(struct lws *wsi, unsigned char *buf, int len); |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1723 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1724 | lws_ssl_pending(struct lws *wsi); |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 1725 | LWS_EXTERN int |
| 1726 | lws_context_init_ssl_library(struct lws_context_creation_info *info); |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1727 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1728 | 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] | 1729 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1730 | lws_ssl_close(struct lws *wsi); |
Andy Green | cdb9bf9 | 2014-04-12 10:07:02 +0800 | [diff] [blame] | 1731 | LWS_EXTERN void |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 1732 | lws_ssl_SSL_CTX_destroy(struct lws_vhost *vhost); |
| 1733 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1734 | lws_ssl_context_destroy(struct lws_context *context); |
Andy Green | 5281560 | 2015-01-29 08:36:18 +0800 | [diff] [blame] | 1735 | LWS_VISIBLE void |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1736 | lws_ssl_remove_wsi_from_buffered_list(struct lws *wsi); |
Andy Green | eefb13a | 2016-03-28 12:43:55 +0800 | [diff] [blame] | 1737 | LWS_EXTERN int |
| 1738 | lws_ssl_client_bio_create(struct lws *wsi); |
| 1739 | LWS_EXTERN int |
| 1740 | lws_ssl_client_connect1(struct lws *wsi); |
| 1741 | LWS_EXTERN int |
| 1742 | lws_ssl_client_connect2(struct lws *wsi); |
Andy Green | f1fd882 | 2016-05-03 07:26:10 +0800 | [diff] [blame] | 1743 | LWS_EXTERN void |
| 1744 | lws_ssl_elaborate_error(void); |
Andy Green | c57037a | 2014-04-03 10:17:00 +0800 | [diff] [blame] | 1745 | #ifndef LWS_NO_SERVER |
| 1746 | LWS_EXTERN int |
| 1747 | lws_context_init_server_ssl(struct lws_context_creation_info *info, |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 1748 | struct lws_vhost *vhost); |
Andy Green | c57037a | 2014-04-03 10:17:00 +0800 | [diff] [blame] | 1749 | #else |
| 1750 | #define lws_context_init_server_ssl(_a, _b) (0) |
| 1751 | #endif |
| 1752 | LWS_EXTERN void |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 1753 | lws_ssl_destroy(struct lws_vhost *vhost); |
Andy Green | 2eedea9 | 2014-04-03 14:33:48 +0800 | [diff] [blame] | 1754 | |
| 1755 | /* HTTP2-related */ |
| 1756 | |
| 1757 | #ifdef LWS_USE_HTTP2 |
| 1758 | LWS_EXTERN void |
Andy Green | 22d6f39 | 2016-04-10 09:33:54 +0800 | [diff] [blame] | 1759 | lws_context_init_http2_ssl(struct lws_vhost *vhost); |
Andy Green | 2eedea9 | 2014-04-03 14:33:48 +0800 | [diff] [blame] | 1760 | #else |
| 1761 | #define lws_context_init_http2_ssl(_a) |
| 1762 | #endif |
Darin Willits | c19456f | 2011-02-14 17:52:39 +0000 | [diff] [blame] | 1763 | #endif |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1764 | |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1765 | #if LWS_MAX_SMP > 1 |
| 1766 | static LWS_INLINE void |
| 1767 | lws_pt_mutex_init(struct lws_context_per_thread *pt) |
| 1768 | { |
| 1769 | pthread_mutex_init(&pt->lock, NULL); |
| 1770 | } |
Sterling Jensen | ecaed5e | 2016-05-12 20:22:35 -0500 | [diff] [blame] | 1771 | |
| 1772 | static LWS_INLINE void |
| 1773 | lws_pt_mutex_destroy(struct lws_context_per_thread *pt) |
| 1774 | { |
| 1775 | pthread_mutex_destroy(&pt->lock); |
| 1776 | } |
| 1777 | |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1778 | static LWS_INLINE void |
| 1779 | lws_pt_lock(struct lws_context_per_thread *pt) |
| 1780 | { |
Andy Green | bbf9369 | 2016-08-07 08:33:08 +0800 | [diff] [blame] | 1781 | if (!pt->lock_depth++) |
| 1782 | pthread_mutex_lock(&pt->lock); |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1783 | } |
| 1784 | |
| 1785 | static LWS_INLINE void |
| 1786 | lws_pt_unlock(struct lws_context_per_thread *pt) |
| 1787 | { |
Andy Green | bbf9369 | 2016-08-07 08:33:08 +0800 | [diff] [blame] | 1788 | if (!(--pt->lock_depth)) |
| 1789 | pthread_mutex_unlock(&pt->lock); |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1790 | } |
| 1791 | #else |
| 1792 | #define lws_pt_mutex_init(_a) (void)(_a) |
Sterling Jensen | ecaed5e | 2016-05-12 20:22:35 -0500 | [diff] [blame] | 1793 | #define lws_pt_mutex_destroy(_a) (void)(_a) |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1794 | #define lws_pt_lock(_a) (void)(_a) |
| 1795 | #define lws_pt_unlock(_a) (void)(_a) |
| 1796 | #endif |
| 1797 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1798 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 6b5de70 | 2015-12-15 21:15:58 +0800 | [diff] [blame] | 1799 | 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] | 1800 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1801 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1802 | 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] | 1803 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1804 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1805 | 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] | 1806 | |
Andy Green | 1e5a9ad | 2016-03-20 11:59:53 +0800 | [diff] [blame] | 1807 | #ifdef LWS_WITH_HTTP_PROXY |
| 1808 | struct lws_rewrite { |
| 1809 | hubbub_parser *parser; |
| 1810 | hubbub_parser_optparams params; |
| 1811 | const char *from, *to; |
| 1812 | int from_len, to_len; |
| 1813 | unsigned char *p, *end; |
| 1814 | struct lws *wsi; |
| 1815 | }; |
| 1816 | static LWS_INLINE int hstrcmp(hubbub_string *s, const char *p, int len) |
| 1817 | { |
| 1818 | if (s->len != len) |
| 1819 | return 1; |
| 1820 | |
| 1821 | return strncmp((const char *)s->ptr, p, len); |
| 1822 | } |
| 1823 | typedef hubbub_error (*hubbub_callback_t)(const hubbub_token *token, void *pw); |
Andy Green | 1e5a9ad | 2016-03-20 11:59:53 +0800 | [diff] [blame] | 1824 | LWS_EXTERN struct lws_rewrite * |
| 1825 | lws_rewrite_create(struct lws *wsi, hubbub_callback_t cb, const char *from, const char *to); |
| 1826 | LWS_EXTERN void |
| 1827 | lws_rewrite_destroy(struct lws_rewrite *r); |
| 1828 | LWS_EXTERN int |
| 1829 | lws_rewrite_parse(struct lws_rewrite *r, const unsigned char *in, int in_len); |
| 1830 | #endif |
| 1831 | |
| 1832 | #ifndef LWS_NO_CLIENT |
Andy Green | 1a13885 | 2016-03-20 11:55:25 +0800 | [diff] [blame] | 1833 | LWS_EXTERN int lws_client_socket_service(struct lws_context *context, |
| 1834 | struct lws *wsi, |
| 1835 | struct lws_pollfd *pollfd); |
| 1836 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
| 1837 | lws_http_transaction_completed_client(struct lws *wsi); |
Andy Green | c57037a | 2014-04-03 10:17:00 +0800 | [diff] [blame] | 1838 | #ifdef LWS_OPENSSL_SUPPORT |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1839 | LWS_EXTERN int |
| 1840 | lws_context_init_client_ssl(struct lws_context_creation_info *info, |
Andy Green | d526c50 | 2016-03-28 10:10:43 +0800 | [diff] [blame] | 1841 | struct lws_vhost *vhost); |
Andy Green | e38031a | 2014-04-03 08:24:29 +0800 | [diff] [blame] | 1842 | #else |
Andy Green | c57037a | 2014-04-03 10:17:00 +0800 | [diff] [blame] | 1843 | #define lws_context_init_client_ssl(_a, _b) (0) |
| 1844 | #endif |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1845 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1846 | lws_handshake_client(struct lws *wsi, unsigned char **buf, size_t len); |
| 1847 | LWS_EXTERN void |
| 1848 | lws_decode_ssl_error(void); |
Andy Green | c57037a | 2014-04-03 10:17:00 +0800 | [diff] [blame] | 1849 | #else |
| 1850 | #define lws_context_init_client_ssl(_a, _b) (0) |
Andy Green | aad2eac | 2014-04-03 09:03:37 +0800 | [diff] [blame] | 1851 | #define lws_handshake_client(_a, _b, _c) (0) |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1852 | #endif |
Andy Green | 44e0b08 | 2015-12-28 14:24:49 +0800 | [diff] [blame] | 1853 | |
| 1854 | LWS_EXTERN int |
| 1855 | _lws_rx_flow_control(struct lws *wsi); |
| 1856 | |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1857 | LWS_EXTERN int |
| 1858 | _lws_change_pollfd(struct lws *wsi, int _and, int _or, struct lws_pollargs *pa); |
| 1859 | |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1860 | #ifndef LWS_NO_SERVER |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1861 | LWS_EXTERN int |
| 1862 | lws_server_socket_service(struct lws_context *context, struct lws *wsi, |
| 1863 | struct lws_pollfd *pollfd); |
| 1864 | LWS_EXTERN int |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1865 | lws_handshake_server(struct lws *wsi, unsigned char **buf, size_t len); |
Andy Green | b3d21f1 | 2015-12-25 09:12:08 +0800 | [diff] [blame] | 1866 | LWS_EXTERN int |
Andy Green | 8c1f602 | 2016-01-26 20:56:56 +0800 | [diff] [blame] | 1867 | _lws_server_listen_accept_flow_control(struct lws *twsi, int on); |
Andy Green | d99476b | 2014-04-03 08:40:05 +0800 | [diff] [blame] | 1868 | #else |
Andy Green | b49a995 | 2014-04-03 10:11:04 +0800 | [diff] [blame] | 1869 | #define lws_server_socket_service(_a, _b, _c) (0) |
Andy Green | 11c05bf | 2015-12-16 18:19:08 +0800 | [diff] [blame] | 1870 | #define lws_handshake_server(_a, _b, _c) (0) |
Andy Green | b3d21f1 | 2015-12-25 09:12:08 +0800 | [diff] [blame] | 1871 | #define _lws_server_listen_accept_flow_control(a, b) (0) |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1872 | #endif |
Andy Green | 40110e8 | 2015-12-14 08:52:03 +0800 | [diff] [blame] | 1873 | |
Andy Green | 2f0bc93 | 2016-04-15 12:00:23 +0800 | [diff] [blame] | 1874 | #ifdef LWS_WITH_ACCESS_LOG |
| 1875 | LWS_EXTERN int |
| 1876 | lws_access_log(struct lws *wsi); |
| 1877 | #else |
| 1878 | #define lws_access_log(_a) |
| 1879 | #endif |
| 1880 | |
Andy Green | 6a8099b | 2016-02-21 21:25:48 +0800 | [diff] [blame] | 1881 | LWS_EXTERN int |
| 1882 | lws_cgi_kill_terminated(struct lws_context_per_thread *pt); |
| 1883 | |
Andy Green | 0207705 | 2016-04-06 16:15:40 +0800 | [diff] [blame] | 1884 | int |
| 1885 | lws_protocol_init(struct lws_context *context); |
| 1886 | |
Andy Green | 7f92ee8 | 2016-06-18 09:00:04 +0800 | [diff] [blame] | 1887 | int |
| 1888 | lws_bind_protocol(struct lws *wsi, const struct lws_protocols *p); |
| 1889 | |
Andy Green | 722cc4a | 2016-06-26 06:29:20 +0800 | [diff] [blame] | 1890 | const struct lws_http_mount * |
| 1891 | lws_find_mount(struct lws *wsi, const char *uri_ptr, int uri_len); |
| 1892 | |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1893 | /* |
Alejandro Mery | cdc9717 | 2014-12-04 23:15:27 +0100 | [diff] [blame] | 1894 | * custom allocator |
| 1895 | */ |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1896 | LWS_EXTERN void * |
Alejandro Mery | cdc9717 | 2014-12-04 23:15:27 +0100 | [diff] [blame] | 1897 | lws_realloc(void *ptr, size_t size); |
| 1898 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1899 | LWS_EXTERN void * LWS_WARN_UNUSED_RESULT |
Alejandro Mery | cdc9717 | 2014-12-04 23:15:27 +0100 | [diff] [blame] | 1900 | lws_zalloc(size_t size); |
| 1901 | |
| 1902 | #define lws_malloc(S) lws_realloc(NULL, S) |
| 1903 | #define lws_free(P) lws_realloc(P, 0) |
Andy Green | 54806b1 | 2015-12-17 17:03:59 +0800 | [diff] [blame] | 1904 | #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] | 1905 | |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1906 | /* lws_plat_ */ |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1907 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1908 | lws_plat_delete_socket_from_fds(struct lws_context *context, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1909 | struct lws *wsi, int m); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1910 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1911 | lws_plat_insert_socket_into_fds(struct lws_context *context, |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1912 | struct lws *wsi); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1913 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1914 | lws_plat_service_periodic(struct lws_context *context); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1915 | |
| 1916 | LWS_EXTERN int |
Andy Green | dc8a3a8 | 2015-12-06 09:15:27 +0800 | [diff] [blame] | 1917 | lws_plat_change_pollfd(struct lws_context *context, struct lws *wsi, |
| 1918 | struct lws_pollfd *pfd); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1919 | LWS_EXTERN int |
| 1920 | lws_plat_context_early_init(void); |
| 1921 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1922 | lws_plat_context_early_destroy(struct lws_context *context); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1923 | LWS_EXTERN void |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1924 | lws_plat_context_late_destroy(struct lws_context *context); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1925 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1926 | lws_poll_listen_fd(struct lws_pollfd *fd); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1927 | LWS_EXTERN int |
Andy Green | 4b85c1d | 2015-12-04 11:08:32 +0800 | [diff] [blame] | 1928 | lws_plat_service(struct lws_context *context, int timeout_ms); |
Andy Green | d3a5505 | 2016-01-19 03:34:24 +0800 | [diff] [blame] | 1929 | LWS_EXTERN LWS_VISIBLE int |
| 1930 | 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] | 1931 | LWS_EXTERN int |
Andy Green | 4386e36 | 2015-12-10 07:14:16 +0800 | [diff] [blame] | 1932 | lws_plat_init(struct lws_context *context, |
| 1933 | struct lws_context_creation_info *info); |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1934 | LWS_EXTERN void |
| 1935 | lws_plat_drop_app_privileges(struct lws_context_creation_info *info); |
| 1936 | LWS_EXTERN unsigned long long |
| 1937 | time_in_microseconds(void); |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1938 | LWS_EXTERN const char * LWS_WARN_UNUSED_RESULT |
Andy Green | a654fc0 | 2014-04-03 07:16:40 +0800 | [diff] [blame] | 1939 | 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] | 1940 | |
Andy Green | e99a83c | 2016-01-20 16:56:06 +0800 | [diff] [blame] | 1941 | LWS_EXTERN int LWS_WARN_UNUSED_RESULT |
Andy Green | 86c1ef1 | 2015-12-30 11:43:36 +0800 | [diff] [blame] | 1942 | lws_check_utf8(unsigned char *state, unsigned char *buf, size_t len); |
| 1943 | |
Andy Green | 8c0d3c0 | 2015-11-02 20:34:12 +0800 | [diff] [blame] | 1944 | #ifdef __cplusplus |
| 1945 | }; |
| 1946 | #endif |