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