blob: ea8a8ff3b769972f7ba79f1f24fe22d0896ff756 [file] [log] [blame]
Andy Green58eaa742011-03-07 17:54:06 +00001/*
Andy Greena0da8a82010-11-08 17:12:19 +00002 * libwebsockets - small server side websockets and web server implementation
Andy Green8f037e42010-12-19 22:13:26 +00003 *
Andy Greena0da8a82010-11-08 17:12:19 +00004 * Copyright (C) 2010 Andy Green <andy@warmcat.com>
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
Andy Green05a0a7b2010-10-31 17:51:39 +000020 */
21
Andy Green7c212cc2010-11-08 20:20:42 +000022#include "private-libwebsockets.h"
Andy Greenff95d7a2010-10-28 22:36:01 +010023
Peter Hinz56885f32011-03-02 22:03:47 +000024#ifdef WIN32
David Galeanocb193682013-01-09 15:29:00 +080025#include <tchar.h>
26#include <io.h>
Joakim Soderberg63ff1202013-02-11 17:52:23 +010027#include <mstcpip.h>
Peter Hinz56885f32011-03-02 22:03:47 +000028#else
Davidc4ef7b12013-01-12 20:39:47 +080029#ifdef LWS_BUILTIN_GETIFADDRS
30#include <getifaddrs.h>
31#else
Peter Hinz56885f32011-03-02 22:03:47 +000032#include <ifaddrs.h>
Davidc4ef7b12013-01-12 20:39:47 +080033#endif
Joakim Soderberg4c531232013-02-06 15:26:58 +090034#include <syslog.h>
Andy Green7627af52011-03-09 15:13:52 +000035#include <sys/un.h>
Andy Greena69f0512012-05-03 12:32:38 +080036#include <sys/socket.h>
37#include <netdb.h>
Peter Hinz56885f32011-03-02 22:03:47 +000038#endif
Andy Green2e24da02011-03-05 16:12:04 +000039
40#ifdef LWS_OPENSSL_SUPPORT
41int openssl_websocket_private_data_index;
42#endif
43
Andy Greenaa6fc442012-04-12 13:26:49 +080044#ifdef __MINGW32__
45#include "../win32port/win32helpers/websock-w32.c"
46#else
47#ifdef __MINGW64__
48#include "../win32port/win32helpers/websock-w32.c"
49#endif
50#endif
51
Andy Green7b405452013-02-01 10:50:15 +080052#ifndef LWS_BUILD_HASH
53#define LWS_BUILD_HASH "unknown-build-hash"
54#endif
Andy Green3182ece2013-01-20 17:08:31 +080055
Andy Green7c19c342013-01-19 12:18:07 +080056static int log_level = LLL_ERR | LLL_WARN | LLL_NOTICE;
Andy Green058ba812013-01-19 11:32:18 +080057static void lwsl_emit_stderr(int level, const char *line);
58static void (*lwsl_emit)(int level, const char *line) = lwsl_emit_stderr;
59
Andy Green7b405452013-02-01 10:50:15 +080060static const char *library_version = LWS_LIBRARY_VERSION " " LWS_BUILD_HASH;
61
Andy Greenb5b23192013-02-11 17:13:32 +080062static const char * const log_level_names[] = {
Andy Green43db0452013-01-10 19:50:35 +080063 "ERR",
64 "WARN",
Andy Green7c19c342013-01-19 12:18:07 +080065 "NOTICE",
Andy Green43db0452013-01-10 19:50:35 +080066 "INFO",
67 "DEBUG",
68 "PARSER",
69 "HEADER",
70 "EXTENSION",
71 "CLIENT",
Andy Greend636e352013-01-29 12:36:17 +080072 "LATENCY",
Andy Green43db0452013-01-10 19:50:35 +080073};
74
Andy Greenb5b23192013-02-11 17:13:32 +080075#ifndef LWS_NO_CLIENT
76 extern int lws_client_socket_service(
77 struct libwebsocket_context *context,
78 struct libwebsocket *wsi, struct pollfd *pollfd);
79#endif
80#ifndef LWS_NO_SERVER
81 extern int lws_server_socket_service(
82 struct libwebsocket_context *context,
83 struct libwebsocket *wsi, struct pollfd *pollfd);
84#endif
85
Andy Green7b405452013-02-01 10:50:15 +080086/**
87 * lws_get_library_version: get version and git hash library built from
88 *
89 * returns a const char * to a string like "1.1 178d78c"
90 * representing the library version followed by the git head hash it
91 * was built from
92 */
93
Peter Pentchev9a4fef72013-03-30 09:52:21 +080094LWS_VISIBLE const char *
Andy Green7b405452013-02-01 10:50:15 +080095lws_get_library_version(void)
96{
97 return library_version;
98}
99
Andy Green0d338332011-02-12 11:57:43 +0000100int
Andy Greenb5b23192013-02-11 17:13:32 +0800101insert_wsi_socket_into_fds(struct libwebsocket_context *context,
102 struct libwebsocket *wsi)
Andy Green0d338332011-02-12 11:57:43 +0000103{
Andy Greendfb23042013-01-17 12:26:48 +0800104 if (context->fds_count >= context->max_fds) {
Andy Greenb5b23192013-02-11 17:13:32 +0800105 lwsl_err("Too many fds (%d)\n", context->max_fds);
Andy Green0d338332011-02-12 11:57:43 +0000106 return 1;
107 }
108
Andy Greendfb23042013-01-17 12:26:48 +0800109 if (wsi->sock > context->max_fds) {
Andy Greenb5b23192013-02-11 17:13:32 +0800110 lwsl_err("Socket fd %d is too high (%d)\n",
111 wsi->sock, context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +0800112 return 1;
113 }
114
115 assert(wsi);
Andy Green512c2462013-09-18 12:59:33 +0800116 assert(wsi->sock >= 0);
Andy Greendfb23042013-01-17 12:26:48 +0800117
Andy Greenb5b23192013-02-11 17:13:32 +0800118 lwsl_info("insert_wsi_socket_into_fds: wsi=%p, sock=%d, fds pos=%d\n",
119 wsi, wsi->sock, context->fds_count);
Andy Greendfb23042013-01-17 12:26:48 +0800120
121 context->lws_lookup[wsi->sock] = wsi;
122 wsi->position_in_fds_table = context->fds_count;
123 context->fds[context->fds_count].fd = wsi->sock;
124 context->fds[context->fds_count].events = POLLIN;
125 context->fds[context->fds_count++].revents = 0;
126
127 /* external POLL support via protocol 0 */
128 context->protocols[0].callback(context, wsi,
129 LWS_CALLBACK_ADD_POLL_FD,
Andy Green50097dd2013-02-15 22:36:30 +0800130 wsi->user_space, (void *)(long)wsi->sock, POLLIN);
Andy Green0d338332011-02-12 11:57:43 +0000131
132 return 0;
133}
134
Andy Greendfb23042013-01-17 12:26:48 +0800135static int
Andy Greenb5b23192013-02-11 17:13:32 +0800136remove_wsi_socket_from_fds(struct libwebsocket_context *context,
137 struct libwebsocket *wsi)
Andy Green0d338332011-02-12 11:57:43 +0000138{
Andy Greendfb23042013-01-17 12:26:48 +0800139 int m;
Andy Green0d338332011-02-12 11:57:43 +0000140
Andy Greendfb23042013-01-17 12:26:48 +0800141 if (!--context->fds_count)
142 goto do_ext;
Andy Green0d338332011-02-12 11:57:43 +0000143
Andy Greendfb23042013-01-17 12:26:48 +0800144 if (wsi->sock > context->max_fds) {
Andy Greenb5b23192013-02-11 17:13:32 +0800145 lwsl_err("Socket fd %d too high (%d)\n",
146 wsi->sock, context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +0800147 return 1;
148 }
Andy Green0d338332011-02-12 11:57:43 +0000149
Andy Greenb5b23192013-02-11 17:13:32 +0800150 lwsl_info("remove_wsi_socket_from_fds: wsi=%p, sock=%d, fds pos=%d\n",
151 wsi, wsi->sock, wsi->position_in_fds_table);
Andy Greendfb23042013-01-17 12:26:48 +0800152
153 m = wsi->position_in_fds_table; /* replace the contents for this */
154
155 /* have the last guy take up the vacant slot */
Andy Greenb5b23192013-02-11 17:13:32 +0800156 context->fds[m] = context->fds[context->fds_count];
157 /*
158 * end guy's fds_lookup entry remains unchanged
159 * (still same fd pointing to same wsi)
160 */
Andy Greendfb23042013-01-17 12:26:48 +0800161 /* end guy's "position in fds table" changed */
Andy Greenb5b23192013-02-11 17:13:32 +0800162 context->lws_lookup[context->fds[context->fds_count].fd]->
163 position_in_fds_table = m;
Andy Greendfb23042013-01-17 12:26:48 +0800164 /* deletion guy's lws_lookup entry needs nuking */
Andy Greenb5b23192013-02-11 17:13:32 +0800165 context->lws_lookup[wsi->sock] = NULL;
166 /* removed wsi has no position any more */
167 wsi->position_in_fds_table = -1;
Andy Greendfb23042013-01-17 12:26:48 +0800168
169do_ext:
170 /* remove also from external POLL support via protocol 0 */
171 if (wsi->sock)
172 context->protocols[0].callback(context, wsi,
Andy Green50097dd2013-02-15 22:36:30 +0800173 LWS_CALLBACK_DEL_POLL_FD, wsi->user_space,
174 (void *)(long)wsi->sock, 0);
Andy Greendfb23042013-01-17 12:26:48 +0800175
176 return 0;
Andy Green0d338332011-02-12 11:57:43 +0000177}
178
Andy Green32375b72011-02-19 08:32:53 +0000179
Andy Green8f037e42010-12-19 22:13:26 +0000180void
Peter Hinz56885f32011-03-02 22:03:47 +0000181libwebsocket_close_and_free_session(struct libwebsocket_context *context,
Andy Green687b0182011-02-26 11:04:01 +0000182 struct libwebsocket *wsi, enum lws_close_status reason)
Andy Green251f6fa2010-11-03 11:13:06 +0000183{
Andy Greenb45993c2010-12-18 15:13:50 +0000184 int n;
Andy Green62c54d22011-02-14 09:14:25 +0000185 int old_state;
Andy Green5e1fa172011-02-10 09:07:05 +0000186 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 2 +
187 LWS_SEND_BUFFER_POST_PADDING];
Andy Green3182ece2013-01-20 17:08:31 +0800188#ifndef LWS_NO_EXTENSIONS
Andy Greenc44159f2011-03-07 07:08:18 +0000189 int ret;
190 int m;
191 struct lws_tokens eff_buf;
Andy Greena41314f2011-05-23 10:00:03 +0100192 struct libwebsocket_extension *ext;
Andy Green3182ece2013-01-20 17:08:31 +0800193#endif
Andy Greenb45993c2010-12-18 15:13:50 +0000194
Andy Green4b6fbe12011-02-14 08:03:48 +0000195 if (!wsi)
Andy Greenb45993c2010-12-18 15:13:50 +0000196 return;
197
Andy Green62c54d22011-02-14 09:14:25 +0000198 old_state = wsi->state;
Andy Green251f6fa2010-11-03 11:13:06 +0000199
Andy Green62c54d22011-02-14 09:14:25 +0000200 if (old_state == WSI_STATE_DEAD_SOCKET)
Andy Green5e1fa172011-02-10 09:07:05 +0000201 return;
202
Andy Green22524a62013-02-15 22:48:58 +0800203 /* we tried the polite way... */
204 if (old_state == WSI_STATE_AWAITING_CLOSE_ACK)
205 goto just_kill_connection;
206
Andy Green623a98d2013-01-21 11:04:23 +0800207 wsi->u.ws.close_reason = reason;
Andy Greenda527df2011-03-07 07:08:12 +0000208
Andy Green5dc62ea2013-09-20 20:26:12 +0800209 if (wsi->mode == LWS_CONNMODE_WS_CLIENT_WAITING_CONNECT ||
210 wsi->mode == LWS_CONNMODE_WS_CLIENT_ISSUE_HANDSHAKE) {
211
212 context->protocols[0].callback(context, wsi,
213 LWS_CALLBACK_CLIENT_CONNECTION_ERROR, NULL, NULL, 0);
214
215 free(wsi->u.hdr.ah);
216 goto just_kill_connection;
217 }
218
219
Andy Green7cf6cb02013-05-19 14:04:10 +0800220 if (wsi->mode == LWS_CONNMODE_HTTP_SERVING_ACCEPTED && wsi->u.http.fd) {
Andy Green25eddab2013-03-09 12:54:14 +0800221 lwsl_debug("closing http fd %d\n", wsi->u.http.fd);
Andy Greenb8b247d2013-01-22 07:20:08 +0800222 close(wsi->u.http.fd);
223 wsi->u.http.fd = 0;
Andy Green0c9563b2013-06-10 22:54:40 +0800224 context->protocols[0].callback(context, wsi,
225 LWS_CALLBACK_CLOSED_HTTP, wsi->user_space, NULL, 0);
Andy Greenb8b247d2013-01-22 07:20:08 +0800226 }
227
Andy Green3182ece2013-01-20 17:08:31 +0800228#ifndef LWS_NO_EXTENSIONS
Andy Greenda527df2011-03-07 07:08:12 +0000229 /*
Andy Green68b45042011-05-25 21:41:57 +0100230 * are his extensions okay with him closing? Eg he might be a mux
231 * parent and just his ch1 aspect is closing?
232 */
233
Andy Green68b45042011-05-25 21:41:57 +0100234 for (n = 0; n < wsi->count_active_extensions; n++) {
235 if (!wsi->active_extensions[n]->callback)
236 continue;
237
238 m = wsi->active_extensions[n]->callback(context,
239 wsi->active_extensions[n], wsi,
240 LWS_EXT_CALLBACK_CHECK_OK_TO_REALLY_CLOSE,
241 wsi->active_extensions_user[n], NULL, 0);
242
243 /*
244 * if somebody vetoed actually closing him at this time....
245 * up to the extension to track the attempted close, let's
246 * just bail
247 */
248
249 if (m) {
Andy Green43db0452013-01-10 19:50:35 +0800250 lwsl_ext("extension vetoed close\n");
Andy Green68b45042011-05-25 21:41:57 +0100251 return;
252 }
253 }
254
Andy Green68b45042011-05-25 21:41:57 +0100255 /*
Andy Greenc44159f2011-03-07 07:08:18 +0000256 * flush any tx pending from extensions, since we may send close packet
257 * if there are problems with send, just nuke the connection
258 */
259
260 ret = 1;
261 while (ret == 1) {
262
263 /* default to nobody has more to spill */
264
265 ret = 0;
266 eff_buf.token = NULL;
267 eff_buf.token_len = 0;
268
269 /* show every extension the new incoming data */
270
271 for (n = 0; n < wsi->count_active_extensions; n++) {
272 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000273 wsi->protocol->owning_server,
274 wsi->active_extensions[n], wsi,
Andy Greenc44159f2011-03-07 07:08:18 +0000275 LWS_EXT_CALLBACK_FLUSH_PENDING_TX,
276 wsi->active_extensions_user[n], &eff_buf, 0);
277 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800278 lwsl_ext("Extension reports fatal error\n");
Andy Greenc44159f2011-03-07 07:08:18 +0000279 goto just_kill_connection;
280 }
281 if (m)
282 /*
283 * at least one extension told us he has more
284 * to spill, so we will go around again after
285 */
286 ret = 1;
287 }
288
289 /* assuming they left us something to send, send it */
290
291 if (eff_buf.token_len)
292 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
Andy Greenfc7c5e42013-02-23 10:50:10 +0800293 eff_buf.token_len) != eff_buf.token_len) {
Andy Greenb5b23192013-02-11 17:13:32 +0800294 lwsl_debug("close: ext spill failed\n");
Andy Greenc44159f2011-03-07 07:08:18 +0000295 goto just_kill_connection;
Andy Green0303db42013-01-17 14:46:43 +0800296 }
Andy Greenc44159f2011-03-07 07:08:18 +0000297 }
Andy Green3182ece2013-01-20 17:08:31 +0800298#endif
Andy Greenc44159f2011-03-07 07:08:18 +0000299
300 /*
Andy Greenda527df2011-03-07 07:08:12 +0000301 * signal we are closing, libsocket_write will
302 * add any necessary version-specific stuff. If the write fails,
303 * no worries we are closing anyway. If we didn't initiate this
304 * close, then our state has been changed to
305 * WSI_STATE_RETURNED_CLOSE_ALREADY and we will skip this.
306 *
307 * Likewise if it's a second call to close this connection after we
308 * sent the close indication to the peer already, we are in state
309 * WSI_STATE_AWAITING_CLOSE_ACK and will skip doing this a second time.
310 */
311
312 if (old_state == WSI_STATE_ESTABLISHED &&
313 reason != LWS_CLOSE_STATUS_NOSTATUS) {
Andy Green66a16f32011-05-24 22:07:45 +0100314
Andy Green43db0452013-01-10 19:50:35 +0800315 lwsl_debug("sending close indication...\n");
Andy Green66a16f32011-05-24 22:07:45 +0100316
Andy Greenfdd305a2013-02-11 14:32:48 +0800317 /* make valgrind happy */
Andy Greenb5b23192013-02-11 17:13:32 +0800318 memset(buf, 0, sizeof(buf));
319 n = libwebsocket_write(wsi,
320 &buf[LWS_SEND_BUFFER_PRE_PADDING + 2],
Andy Greenda527df2011-03-07 07:08:12 +0000321 0, LWS_WRITE_CLOSE);
Andy Greenfc7c5e42013-02-23 10:50:10 +0800322 if (n >= 0) {
Andy Greenda527df2011-03-07 07:08:12 +0000323 /*
324 * we have sent a nice protocol level indication we
325 * now wish to close, we should not send anything more
326 */
327
328 wsi->state = WSI_STATE_AWAITING_CLOSE_ACK;
329
Andy Greenb5b23192013-02-11 17:13:32 +0800330 /*
331 * ...and we should wait for a reply for a bit
332 * out of politeness
333 */
Andy Greenda527df2011-03-07 07:08:12 +0000334
335 libwebsocket_set_timeout(wsi,
Andy Green0303db42013-01-17 14:46:43 +0800336 PENDING_TIMEOUT_CLOSE_ACK, 1);
Andy Greenda527df2011-03-07 07:08:12 +0000337
Andy Green43db0452013-01-10 19:50:35 +0800338 lwsl_debug("sent close indication, awaiting ack\n");
Andy Greenda527df2011-03-07 07:08:12 +0000339
340 return;
341 }
342
Andy Greenb5b23192013-02-11 17:13:32 +0800343 lwsl_info("close: sending close packet failed, hanging up\n");
Andy Green0303db42013-01-17 14:46:43 +0800344
Andy Greenda527df2011-03-07 07:08:12 +0000345 /* else, the send failed and we should just hang up */
346 }
347
Andy Greenc44159f2011-03-07 07:08:18 +0000348just_kill_connection:
Andy Green66a16f32011-05-24 22:07:45 +0100349
Andy Greenb5b23192013-02-11 17:13:32 +0800350 lwsl_debug("close: just_kill_connection\n");
Andy Green66a16f32011-05-24 22:07:45 +0100351
Andy Greenda527df2011-03-07 07:08:12 +0000352 /*
353 * we won't be servicing or receiving anything further from this guy
Andy Greendfb23042013-01-17 12:26:48 +0800354 * delete socket from the internal poll list if still present
Andy Greenda527df2011-03-07 07:08:12 +0000355 */
Andy Green4b6fbe12011-02-14 08:03:48 +0000356
Andy Greendfb23042013-01-17 12:26:48 +0800357 remove_wsi_socket_from_fds(context, wsi);
Andy Green4b6fbe12011-02-14 08:03:48 +0000358
Andy Green251f6fa2010-11-03 11:13:06 +0000359 wsi->state = WSI_STATE_DEAD_SOCKET;
360
Andy Greenb5b23192013-02-11 17:13:32 +0800361 if ((old_state == WSI_STATE_ESTABLISHED ||
362 wsi->mode == LWS_CONNMODE_WS_SERVING ||
Andy Green3ee9b312013-02-12 12:52:39 +0800363 wsi->mode == LWS_CONNMODE_WS_CLIENT)) {
364
365 if (wsi->u.ws.rx_user_buffer) {
366 free(wsi->u.ws.rx_user_buffer);
367 wsi->u.ws.rx_user_buffer = NULL;
368 }
369 if (wsi->u.ws.rxflow_buffer) {
370 free(wsi->u.ws.rxflow_buffer);
371 wsi->u.ws.rxflow_buffer = NULL;
372 }
Andy Green54495112013-02-06 21:10:16 +0900373 }
374
Andy Green4b6fbe12011-02-14 08:03:48 +0000375 /* tell the user it's all over for this guy */
376
Andy Greend4302732011-02-28 07:45:29 +0000377 if (wsi->protocol && wsi->protocol->callback &&
Andy Green6ee372f2012-04-09 15:09:01 +0800378 ((old_state == WSI_STATE_ESTABLISHED) ||
379 (old_state == WSI_STATE_RETURNED_CLOSE_ALREADY) ||
380 (old_state == WSI_STATE_AWAITING_CLOSE_ACK))) {
Andy Green43db0452013-01-10 19:50:35 +0800381 lwsl_debug("calling back CLOSED\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000382 wsi->protocol->callback(context, wsi, LWS_CALLBACK_CLOSED,
Andy Greene77ddd82010-11-13 10:03:47 +0000383 wsi->user_space, NULL, 0);
Niall T. Davidsondb761be2013-06-29 10:16:18 +0800384 } else if ( wsi->mode == LWS_CONNMODE_HTTP_SERVING_ACCEPTED ) {
385 lwsl_debug("calling back CLOSED_HTTP\n");
386 context->protocols[0].callback(context, wsi,
387 LWS_CALLBACK_CLOSED_HTTP, wsi->user_space, NULL, 0 );
Andy Greencc012472011-11-07 19:53:23 +0800388 } else
Andy Greenb5b23192013-02-11 17:13:32 +0800389 lwsl_debug("not calling back closed\n");
Andy Green251f6fa2010-11-03 11:13:06 +0000390
Andy Green3182ece2013-01-20 17:08:31 +0800391#ifndef LWS_NO_EXTENSIONS
Andy Greenef660a92011-03-06 10:29:38 +0000392 /* deallocate any active extension contexts */
393
394 for (n = 0; n < wsi->count_active_extensions; n++) {
395 if (!wsi->active_extensions[n]->callback)
396 continue;
397
Andy Green46c2ea02011-03-22 09:04:01 +0000398 wsi->active_extensions[n]->callback(context,
399 wsi->active_extensions[n], wsi,
400 LWS_EXT_CALLBACK_DESTROY,
401 wsi->active_extensions_user[n], NULL, 0);
Andy Greenef660a92011-03-06 10:29:38 +0000402
403 free(wsi->active_extensions_user[n]);
404 }
405
Andy Greena41314f2011-05-23 10:00:03 +0100406 /*
407 * inform all extensions in case they tracked this guy out of band
408 * even though not active on him specifically
409 */
410
411 ext = context->extensions;
412 while (ext && ext->callback) {
413 ext->callback(context, ext, wsi,
414 LWS_EXT_CALLBACK_DESTROY_ANY_WSI_CLOSING,
415 NULL, NULL, 0);
416 ext++;
417 }
Andy Green3182ece2013-01-20 17:08:31 +0800418#endif
Andy Greena41314f2011-05-23 10:00:03 +0100419
Andy Green43db0452013-01-10 19:50:35 +0800420/* lwsl_info("closing fd=%d\n", wsi->sock); */
Andy Green251f6fa2010-11-03 11:13:06 +0000421
Andy Green3faa9c72010-11-08 17:03:03 +0000422#ifdef LWS_OPENSSL_SUPPORT
Andy Green90c7cbc2011-01-27 06:26:52 +0000423 if (wsi->ssl) {
Andy Green3faa9c72010-11-08 17:03:03 +0000424 n = SSL_get_fd(wsi->ssl);
425 SSL_shutdown(wsi->ssl);
Andy Green3fc2c652013-01-14 15:35:02 +0800426 compatible_close(n);
Andy Green3faa9c72010-11-08 17:03:03 +0000427 SSL_free(wsi->ssl);
428 } else {
429#endif
Andy Green0303db42013-01-17 14:46:43 +0800430 if (wsi->sock) {
431 n = shutdown(wsi->sock, SHUT_RDWR);
432 if (n)
Andy Greenb5b23192013-02-11 17:13:32 +0800433 lwsl_debug("closing: shutdown returned %d\n",
434 errno);
Andy Green3fc2c652013-01-14 15:35:02 +0800435
Andy Green0303db42013-01-17 14:46:43 +0800436 n = compatible_close(wsi->sock);
437 if (n)
Andy Greenb5b23192013-02-11 17:13:32 +0800438 lwsl_debug("closing: close returned %d\n",
439 errno);
Andy Green0303db42013-01-17 14:46:43 +0800440 }
Andy Green3faa9c72010-11-08 17:03:03 +0000441#ifdef LWS_OPENSSL_SUPPORT
442 }
443#endif
Andy Greenb5b23192013-02-11 17:13:32 +0800444 if (wsi->protocol && wsi->protocol->per_session_data_size &&
445 wsi->user_space) /* user code may own */
Andy Green4f3943a2010-11-12 10:44:16 +0000446 free(wsi->user_space);
447
Andy Green251f6fa2010-11-03 11:13:06 +0000448 free(wsi);
449}
450
Andy Green07034092011-02-13 08:37:12 +0000451/**
452 * libwebsockets_get_peer_addresses() - Get client address information
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800453 * @context: Libwebsockets context
454 * @wsi: Local struct libwebsocket associated with
Andy Green07034092011-02-13 08:37:12 +0000455 * @fd: Connection socket descriptor
456 * @name: Buffer to take client address name
457 * @name_len: Length of client address name buffer
458 * @rip: Buffer to take client address IP qotted quad
459 * @rip_len: Length of client address IP buffer
460 *
461 * This function fills in @name and @rip with the name and IP of
Andy Green6ee372f2012-04-09 15:09:01 +0800462 * the client connected with socket descriptor @fd. Names may be
463 * truncated if there is not enough room. If either cannot be
464 * determined, they will be returned as valid zero-length strings.
Andy Green07034092011-02-13 08:37:12 +0000465 */
466
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800467LWS_VISIBLE void
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800468libwebsockets_get_peer_addresses(struct libwebsocket_context *context,
469 struct libwebsocket *wsi, int fd, char *name, int name_len,
Andy Green07034092011-02-13 08:37:12 +0000470 char *rip, int rip_len)
471{
Bob Robertsac049112013-04-25 09:16:30 +0800472 socklen_t len;
Andy Green07034092011-02-13 08:37:12 +0000473 struct sockaddr_in sin;
474 struct hostent *host;
475 struct hostent *host1;
476 char ip[128];
Andy Greenf92def72011-03-09 15:02:20 +0000477 unsigned char *p;
Andy Green07034092011-02-13 08:37:12 +0000478 int n;
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800479 int ret = -1;
David Galeanocb193682013-01-09 15:29:00 +0800480#ifdef AF_LOCAL
Andy Greenb5b23192013-02-11 17:13:32 +0800481 struct sockaddr_un *un;
David Galeanocb193682013-01-09 15:29:00 +0800482#endif
Andy Green07034092011-02-13 08:37:12 +0000483
484 rip[0] = '\0';
485 name[0] = '\0';
486
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800487 lws_latency_pre(context, wsi);
488
Andy Greenb5b23192013-02-11 17:13:32 +0800489 len = sizeof(sin);
Andy Green07034092011-02-13 08:37:12 +0000490 if (getpeername(fd, (struct sockaddr *) &sin, &len) < 0) {
491 perror("getpeername");
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800492 goto bail;
Andy Green07034092011-02-13 08:37:12 +0000493 }
Andy Green6ee372f2012-04-09 15:09:01 +0800494
Andy Greenb5b23192013-02-11 17:13:32 +0800495 host = gethostbyaddr((char *) &sin.sin_addr, sizeof(sin.sin_addr),
Andy Green07034092011-02-13 08:37:12 +0000496 AF_INET);
497 if (host == NULL) {
498 perror("gethostbyaddr");
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800499 goto bail;
Andy Green07034092011-02-13 08:37:12 +0000500 }
501
502 strncpy(name, host->h_name, name_len);
503 name[name_len - 1] = '\0';
504
505 host1 = gethostbyname(host->h_name);
506 if (host1 == NULL)
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800507 goto bail;
Andy Greenf92def72011-03-09 15:02:20 +0000508 p = (unsigned char *)host1;
Andy Green07034092011-02-13 08:37:12 +0000509 n = 0;
510 while (p != NULL) {
Andy Greenf92def72011-03-09 15:02:20 +0000511 p = (unsigned char *)host1->h_addr_list[n++];
Andy Green07034092011-02-13 08:37:12 +0000512 if (p == NULL)
513 continue;
Peter Hinzbb45a902011-03-10 18:14:01 +0000514 if ((host1->h_addrtype != AF_INET)
515#ifdef AF_LOCAL
516 && (host1->h_addrtype != AF_LOCAL)
517#endif
518 )
Andy Green07034092011-02-13 08:37:12 +0000519 continue;
520
Andy Green7627af52011-03-09 15:13:52 +0000521 if (host1->h_addrtype == AF_INET)
522 sprintf(ip, "%u.%u.%u.%u", p[0], p[1], p[2], p[3]);
Peter Hinzbb45a902011-03-10 18:14:01 +0000523#ifdef AF_LOCAL
Andy Green7627af52011-03-09 15:13:52 +0000524 else {
525 un = (struct sockaddr_un *)p;
Andy Green6ee372f2012-04-09 15:09:01 +0800526 strncpy(ip, un->sun_path, sizeof(ip) - 1);
Andy Green7627af52011-03-09 15:13:52 +0000527 ip[sizeof(ip) - 1] = '\0';
528 }
Peter Hinzbb45a902011-03-10 18:14:01 +0000529#endif
Andy Green07034092011-02-13 08:37:12 +0000530 p = NULL;
531 strncpy(rip, ip, rip_len);
532 rip[rip_len - 1] = '\0';
533 }
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800534
535 ret = 0;
536bail:
537 lws_latency(context, wsi, "libwebsockets_get_peer_addresses", ret, 1);
Andy Green07034092011-02-13 08:37:12 +0000538}
Andy Green9f990342011-02-12 11:57:45 +0000539
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800540LWS_VISIBLE int libwebsockets_get_random(struct libwebsocket_context *context,
Peter Hinz56885f32011-03-02 22:03:47 +0000541 void *buf, int len)
542{
543 int n;
Aaron Zinman4550f1d2013-01-10 12:35:18 +0800544 char *p = (char *)buf;
Peter Hinz56885f32011-03-02 22:03:47 +0000545
546#ifdef WIN32
547 for (n = 0; n < len; n++)
548 p[n] = (unsigned char)rand();
549#else
550 n = read(context->fd_random, p, len);
551#endif
552
553 return n;
554}
555
Andy Greena690cd02013-02-09 12:25:31 +0800556int lws_set_socket_options(struct libwebsocket_context *context, int fd)
557{
558 int optval = 1;
559 socklen_t optlen = sizeof(optval);
560#ifdef WIN32
561 unsigned long optl = 0;
562#endif
563#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__)
564 struct protoent *tcp_proto;
565#endif
566
567 if (context->ka_time) {
568 /* enable keepalive on this socket */
569 optval = 1;
570 if (setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE,
571 (const void *)&optval, optlen) < 0)
572 return 1;
573
Bob Robertsac049112013-04-25 09:16:30 +0800574#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__CYGWIN__)
Andy Greena47865f2013-02-10 09:39:47 +0800575
576 /*
577 * didn't find a way to set these per-socket, need to
578 * tune kernel systemwide values
579 */
Joakim Soderberg63ff1202013-02-11 17:52:23 +0100580#elif WIN32
581 {
582 DWORD dwBytesRet;
583 struct tcp_keepalive alive;
584 alive.onoff = TRUE;
585 alive.keepalivetime = context->ka_time;
586 alive.keepaliveinterval = context->ka_interval;
Andy Greena47865f2013-02-10 09:39:47 +0800587
Joakim Soderberg63ff1202013-02-11 17:52:23 +0100588 if (WSAIoctl(fd, SIO_KEEPALIVE_VALS, &alive, sizeof(alive),
589 NULL, 0, &dwBytesRet, NULL, NULL))
590 return 1;
591 }
Andy Greena47865f2013-02-10 09:39:47 +0800592#else
Andy Greena690cd02013-02-09 12:25:31 +0800593 /* set the keepalive conditions we want on it too */
594 optval = context->ka_time;
595 if (setsockopt(fd, IPPROTO_IP, TCP_KEEPIDLE,
596 (const void *)&optval, optlen) < 0)
597 return 1;
598
Larry Hayesbb66ac62013-02-22 09:16:20 +0800599 optval = context->ka_interval;
Andy Greena690cd02013-02-09 12:25:31 +0800600 if (setsockopt(fd, IPPROTO_IP, TCP_KEEPINTVL,
601 (const void *)&optval, optlen) < 0)
602 return 1;
603
Larry Hayesbb66ac62013-02-22 09:16:20 +0800604 optval = context->ka_probes;
Andy Greena690cd02013-02-09 12:25:31 +0800605 if (setsockopt(fd, IPPROTO_IP, TCP_KEEPCNT,
606 (const void *)&optval, optlen) < 0)
607 return 1;
Andy Greena47865f2013-02-10 09:39:47 +0800608#endif
Andy Greena690cd02013-02-09 12:25:31 +0800609 }
610
611 /* Disable Nagle */
612 optval = 1;
613#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__NetBSD__)
614 setsockopt(fd, SOL_TCP, TCP_NODELAY, (const void *)&optval, optlen);
615#else
616 tcp_proto = getprotobyname("TCP");
617 setsockopt(fd, tcp_proto->p_proto, TCP_NODELAY, &optval, optlen);
618#endif
619
620 /* We are nonblocking... */
621#ifdef WIN32
622 ioctlsocket(fd, FIONBIO, &optl);
623#else
624 fcntl(fd, F_SETFL, O_NONBLOCK);
625#endif
626
627 return 0;
628}
629
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800630LWS_VISIBLE int lws_send_pipe_choked(struct libwebsocket *wsi)
Andy Green95a7b5d2011-03-06 10:29:39 +0000631{
632 struct pollfd fds;
633
634 fds.fd = wsi->sock;
635 fds.events = POLLOUT;
636 fds.revents = 0;
637
638 if (poll(&fds, 1, 0) != 1)
639 return 1;
640
641 if ((fds.revents & POLLOUT) == 0)
642 return 1;
643
644 /* okay to send another packet without blocking */
645
646 return 0;
647}
648
Andy Greena41314f2011-05-23 10:00:03 +0100649int
Andy Green3b84c002011-03-06 13:14:42 +0000650lws_handle_POLLOUT_event(struct libwebsocket_context *context,
651 struct libwebsocket *wsi, struct pollfd *pollfd)
652{
Andy Green3b84c002011-03-06 13:14:42 +0000653 int n;
Andy Green6f520a52013-01-29 17:57:39 +0800654
Andy Green3182ece2013-01-20 17:08:31 +0800655#ifndef LWS_NO_EXTENSIONS
656 struct lws_tokens eff_buf;
Andy Green3b84c002011-03-06 13:14:42 +0000657 int ret;
658 int m;
Andy Greena41314f2011-05-23 10:00:03 +0100659 int handled = 0;
Andy Green3b84c002011-03-06 13:14:42 +0000660
Andy Greena41314f2011-05-23 10:00:03 +0100661 for (n = 0; n < wsi->count_active_extensions; n++) {
662 if (!wsi->active_extensions[n]->callback)
663 continue;
664
665 m = wsi->active_extensions[n]->callback(context,
666 wsi->active_extensions[n], wsi,
667 LWS_EXT_CALLBACK_IS_WRITEABLE,
668 wsi->active_extensions_user[n], NULL, 0);
669 if (m > handled)
670 handled = m;
671 }
672
673 if (handled == 1)
674 goto notify_action;
675
676 if (!wsi->extension_data_pending || handled == 2)
Andy Green3b84c002011-03-06 13:14:42 +0000677 goto user_service;
678
679 /*
680 * check in on the active extensions, see if they
681 * had pending stuff to spill... they need to get the
682 * first look-in otherwise sequence will be disordered
683 *
684 * NULL, zero-length eff_buf means just spill pending
685 */
686
687 ret = 1;
688 while (ret == 1) {
689
690 /* default to nobody has more to spill */
691
692 ret = 0;
693 eff_buf.token = NULL;
694 eff_buf.token_len = 0;
695
696 /* give every extension a chance to spill */
697
698 for (n = 0; n < wsi->count_active_extensions; n++) {
699 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000700 wsi->protocol->owning_server,
701 wsi->active_extensions[n], wsi,
Andy Green3b84c002011-03-06 13:14:42 +0000702 LWS_EXT_CALLBACK_PACKET_TX_PRESEND,
703 wsi->active_extensions_user[n], &eff_buf, 0);
704 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800705 lwsl_err("ext reports fatal error\n");
Andy Green3b84c002011-03-06 13:14:42 +0000706 return -1;
707 }
708 if (m)
709 /*
710 * at least one extension told us he has more
711 * to spill, so we will go around again after
712 */
713 ret = 1;
714 }
715
716 /* assuming they gave us something to send, send it */
717
718 if (eff_buf.token_len) {
Andy Greenfc7c5e42013-02-23 10:50:10 +0800719 n = lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
720 eff_buf.token_len);
721 if (n < 0)
Andy Green3b84c002011-03-06 13:14:42 +0000722 return -1;
Andy Greenfc7c5e42013-02-23 10:50:10 +0800723 /*
724 * Keep amount spilled small to minimize chance of this
725 */
726 if (n != eff_buf.token_len) {
727 lwsl_err("Unable to spill ext %d vs %s\n",
728 eff_buf.token_len, n);
729 return -1;
730 }
Andy Green3b84c002011-03-06 13:14:42 +0000731 } else
732 continue;
733
734 /* no extension has more to spill */
735
736 if (!ret)
737 continue;
738
739 /*
740 * There's more to spill from an extension, but we just sent
741 * something... did that leave the pipe choked?
742 */
743
744 if (!lws_send_pipe_choked(wsi))
745 /* no we could add more */
746 continue;
747
Andy Green43db0452013-01-10 19:50:35 +0800748 lwsl_info("choked in POLLOUT service\n");
Andy Green3b84c002011-03-06 13:14:42 +0000749
750 /*
751 * Yes, he's choked. Leave the POLLOUT masked on so we will
752 * come back here when he is unchoked. Don't call the user
753 * callback to enforce ordering of spilling, he'll get called
754 * when we come back here and there's nothing more to spill.
755 */
756
757 return 0;
758 }
759
760 wsi->extension_data_pending = 0;
761
762user_service:
Andy Green3182ece2013-01-20 17:08:31 +0800763#endif
Andy Green3b84c002011-03-06 13:14:42 +0000764 /* one shot */
765
Andy Greena41314f2011-05-23 10:00:03 +0100766 if (pollfd) {
767 pollfd->events &= ~POLLOUT;
Andy Green3b84c002011-03-06 13:14:42 +0000768
Andy Greena41314f2011-05-23 10:00:03 +0100769 /* external POLL support via protocol 0 */
770 context->protocols[0].callback(context, wsi,
771 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
Andy Green50097dd2013-02-15 22:36:30 +0800772 wsi->user_space, (void *)(long)wsi->sock, POLLOUT);
Andy Greena41314f2011-05-23 10:00:03 +0100773 }
Andy Green3182ece2013-01-20 17:08:31 +0800774#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +0100775notify_action:
Andy Green3182ece2013-01-20 17:08:31 +0800776#endif
Andy Green3b84c002011-03-06 13:14:42 +0000777
Andy Green9e4c2b62011-03-07 20:47:39 +0000778 if (wsi->mode == LWS_CONNMODE_WS_CLIENT)
779 n = LWS_CALLBACK_CLIENT_WRITEABLE;
780 else
781 n = LWS_CALLBACK_SERVER_WRITEABLE;
782
Andy Greenb8b247d2013-01-22 07:20:08 +0800783 return user_callback_handle_rxflow(wsi->protocol->callback, context,
Andy Greenb5b23192013-02-11 17:13:32 +0800784 wsi, (enum libwebsocket_callback_reasons) n,
785 wsi->user_space, NULL, 0);
Andy Green3b84c002011-03-06 13:14:42 +0000786}
787
788
789
Andy Green1c6e1422013-02-20 19:11:31 +0800790int
Andy Greena41314f2011-05-23 10:00:03 +0100791libwebsocket_service_timeout_check(struct libwebsocket_context *context,
792 struct libwebsocket *wsi, unsigned int sec)
793{
Andy Green3182ece2013-01-20 17:08:31 +0800794#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +0100795 int n;
796
797 /*
798 * if extensions want in on it (eg, we are a mux parent)
799 * give them a chance to service child timeouts
800 */
801
802 for (n = 0; n < wsi->count_active_extensions; n++)
803 wsi->active_extensions[n]->callback(
804 context, wsi->active_extensions[n],
805 wsi, LWS_EXT_CALLBACK_1HZ,
806 wsi->active_extensions_user[n], NULL, sec);
807
Andy Green3182ece2013-01-20 17:08:31 +0800808#endif
Andy Greena41314f2011-05-23 10:00:03 +0100809 if (!wsi->pending_timeout)
Andy Green1c6e1422013-02-20 19:11:31 +0800810 return 0;
Andy Green6ee372f2012-04-09 15:09:01 +0800811
Andy Greena41314f2011-05-23 10:00:03 +0100812 /*
813 * if we went beyond the allowed time, kill the
814 * connection
815 */
816
817 if (sec > wsi->pending_timeout_limit) {
Andy Green43db0452013-01-10 19:50:35 +0800818 lwsl_info("TIMEDOUT WAITING\n");
Andy Greena41314f2011-05-23 10:00:03 +0100819 libwebsocket_close_and_free_session(context,
820 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Green1c6e1422013-02-20 19:11:31 +0800821 return 1;
Andy Greena41314f2011-05-23 10:00:03 +0100822 }
Andy Green1c6e1422013-02-20 19:11:31 +0800823
824 return 0;
Andy Greena41314f2011-05-23 10:00:03 +0100825}
826
Andy Green9f990342011-02-12 11:57:45 +0000827/**
828 * libwebsocket_service_fd() - Service polled socket with something waiting
Peter Hinz56885f32011-03-02 22:03:47 +0000829 * @context: Websocket context
Andy Green9f990342011-02-12 11:57:45 +0000830 * @pollfd: The pollfd entry describing the socket fd and which events
Andy Green6ee372f2012-04-09 15:09:01 +0800831 * happened.
Andy Green9f990342011-02-12 11:57:45 +0000832 *
Andy Green75006172013-01-22 12:32:11 +0800833 * This function takes a pollfd that has POLLIN or POLLOUT activity and
Andy Greenb5b23192013-02-11 17:13:32 +0800834 * services it according to the state of the associated
835 * struct libwebsocket.
Andy Green75006172013-01-22 12:32:11 +0800836 *
837 * The one call deals with all "service" that might happen on a socket
838 * including listen accepts, http files as well as websocket protocol.
Andy Green2577c832013-03-11 20:37:03 +0800839 *
840 * If a pollfd says it has something, you can just pass it to
841 * libwebsocket_serice_fd() whether it is a socket handled by lws or not.
842 * If it sees it is a lws socket, the traffic will be handled and
843 * pollfd->revents will be zeroed now.
844 *
845 * If the socket is foreign to lws, it leaves revents alone. So you can
846 * see if you should service yourself by checking the pollfd revents
847 * after letting lws try to service it.
Andy Green9f990342011-02-12 11:57:45 +0000848 */
849
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800850LWS_VISIBLE int
Peter Hinz56885f32011-03-02 22:03:47 +0000851libwebsocket_service_fd(struct libwebsocket_context *context,
Andy Green0d338332011-02-12 11:57:43 +0000852 struct pollfd *pollfd)
Andy Greenb45993c2010-12-18 15:13:50 +0000853{
Andy Greena1ce6be2013-01-18 11:43:21 +0800854 struct libwebsocket *wsi;
Andy Greenb45993c2010-12-18 15:13:50 +0000855 int n;
Andy Green0d338332011-02-12 11:57:43 +0000856 int m;
Andy Greenf0b79e22013-02-10 10:46:45 +0800857 int listen_socket_fds_index = 0;
Andy Greena71eafc2011-02-14 17:59:43 +0000858 struct timeval tv;
Andy Green1c6e1422013-02-20 19:11:31 +0800859 int timed_out = 0;
860 int our_fd = 0;
Andy Greenca0a1292013-03-16 11:24:23 +0800861 char draining_flow = 0;
Andy Green6f520a52013-01-29 17:57:39 +0800862
Andy Green3182ece2013-01-20 17:08:31 +0800863#ifndef LWS_NO_EXTENSIONS
Andy Green2366b1c2011-03-06 13:15:31 +0000864 int more = 1;
Andy Green3182ece2013-01-20 17:08:31 +0800865#endif
Andy Green98a717c2011-03-06 13:14:15 +0000866 struct lws_tokens eff_buf;
Andy Greenf0b79e22013-02-10 10:46:45 +0800867
868 if (context->listen_service_fd)
869 listen_socket_fds_index = context->lws_lookup[
870 context->listen_service_fd]->position_in_fds_table;
871
Andy Greena71eafc2011-02-14 17:59:43 +0000872 /*
873 * you can call us with pollfd = NULL to just allow the once-per-second
874 * global timeout checks; if less than a second since the last check
875 * it returns immediately then.
876 */
877
878 gettimeofday(&tv, NULL);
879
Peter Hinz56885f32011-03-02 22:03:47 +0000880 if (context->last_timeout_check_s != tv.tv_sec) {
881 context->last_timeout_check_s = tv.tv_sec;
Andy Greena71eafc2011-02-14 17:59:43 +0000882
Joakim Soderberg4c531232013-02-06 15:26:58 +0900883 #ifndef WIN32
Andy Green24cba922013-01-19 13:56:10 +0800884 /* if our parent went down, don't linger around */
Andy Greenb5b23192013-02-11 17:13:32 +0800885 if (context->started_with_parent &&
886 kill(context->started_with_parent, 0) < 0)
Andy Green24cba922013-01-19 13:56:10 +0800887 kill(getpid(), SIGTERM);
Joakim Soderberg4c531232013-02-06 15:26:58 +0900888 #endif
Andy Green24cba922013-01-19 13:56:10 +0800889
Andy Greena71eafc2011-02-14 17:59:43 +0000890 /* global timeout check once per second */
891
Andy Green1c6e1422013-02-20 19:11:31 +0800892 if (pollfd)
893 our_fd = pollfd->fd;
894
Peter Hinz56885f32011-03-02 22:03:47 +0000895 for (n = 0; n < context->fds_count; n++) {
Andy Green1c6e1422013-02-20 19:11:31 +0800896 m = context->fds[n].fd;
897 wsi = context->lws_lookup[m];
898 if (!wsi)
Andy Greendfb23042013-01-17 12:26:48 +0800899 continue;
Andy Green1c6e1422013-02-20 19:11:31 +0800900
901 if (libwebsocket_service_timeout_check(context, wsi,
902 tv.tv_sec))
903 /* he did time out... */
Andy Greenb1a5e6c2013-03-09 12:34:30 +0800904 if (m == our_fd) {
Andy Green1c6e1422013-02-20 19:11:31 +0800905 /* it was the guy we came to service! */
906 timed_out = 1;
Andy Greenb1a5e6c2013-03-09 12:34:30 +0800907 /* mark as handled */
908 pollfd->revents = 0;
909 }
Andy Greena71eafc2011-02-14 17:59:43 +0000910 }
911 }
912
Andy Green1c6e1422013-02-20 19:11:31 +0800913 /* the socket we came to service timed out, nothing to do */
914 if (timed_out)
915 return 0;
916
Andy Greena71eafc2011-02-14 17:59:43 +0000917 /* just here for timeout management? */
Andy Greena71eafc2011-02-14 17:59:43 +0000918 if (pollfd == NULL)
919 return 0;
920
921 /* no, here to service a socket descriptor */
Andy Greenb1a5e6c2013-03-09 12:34:30 +0800922 wsi = context->lws_lookup[pollfd->fd];
923 if (wsi == NULL)
924 /* not lws connection ... leave revents alone and return */
925 return 0;
926
927 /*
928 * so that caller can tell we handled, past here we need to
929 * zero down pollfd->revents after handling
930 */
931
Andy Green65b0e912013-01-16 07:59:47 +0800932 /*
933 * deal with listen service piggybacking
934 * every listen_service_modulo services of other fds, we
935 * sneak one in to service the listen socket if there's anything waiting
936 *
937 * To handle connection storms, as found in ab, if we previously saw a
938 * pending connection here, it causes us to check again next time.
939 */
940
Andy Greenb5b23192013-02-11 17:13:32 +0800941 if (context->listen_service_fd && pollfd !=
942 &context->fds[listen_socket_fds_index]) {
Andy Green65b0e912013-01-16 07:59:47 +0800943 context->listen_service_count++;
944 if (context->listen_service_extraseen ||
Andy Greenb5b23192013-02-11 17:13:32 +0800945 context->listen_service_count ==
946 context->listen_service_modulo) {
Andy Green65b0e912013-01-16 07:59:47 +0800947 context->listen_service_count = 0;
948 m = 1;
949 if (context->listen_service_extraseen > 5)
950 m = 2;
951 while (m--) {
Andy Greenb5b23192013-02-11 17:13:32 +0800952 /*
953 * even with extpoll, we prepared this
954 * internal fds for listen
955 */
956 n = poll(&context->fds[listen_socket_fds_index],
957 1, 0);
958 if (n > 0) { /* there's a conn waiting for us */
959 libwebsocket_service_fd(context,
960 &context->
961 fds[listen_socket_fds_index]);
Andy Green65b0e912013-01-16 07:59:47 +0800962 context->listen_service_extraseen++;
963 } else {
964 if (context->listen_service_extraseen)
Andy Greenb5b23192013-02-11 17:13:32 +0800965 context->
966 listen_service_extraseen--;
Andy Green65b0e912013-01-16 07:59:47 +0800967 break;
968 }
969 }
970 }
971
972 }
973
974 /* okay, what we came here to do... */
975
Andy Green0d338332011-02-12 11:57:43 +0000976 switch (wsi->mode) {
Andy Greend280b6e2013-01-15 13:40:23 +0800977
Andy Greena1ce6be2013-01-18 11:43:21 +0800978#ifndef LWS_NO_SERVER
Andy Greend280b6e2013-01-15 13:40:23 +0800979 case LWS_CONNMODE_HTTP_SERVING:
Andy Green7cf6cb02013-05-19 14:04:10 +0800980 case LWS_CONNMODE_HTTP_SERVING_ACCEPTED:
Andy Green0d338332011-02-12 11:57:43 +0000981 case LWS_CONNMODE_SERVER_LISTENER:
Andy Greene2160712013-01-28 12:19:10 +0800982 case LWS_CONNMODE_SSL_ACK_PENDING:
Andy Greenb1a5e6c2013-03-09 12:34:30 +0800983 n = lws_server_socket_service(context, wsi, pollfd);
984 goto handled;
Andy Greena1ce6be2013-01-18 11:43:21 +0800985#endif
Andy Greenbe93fef2011-02-14 20:25:43 +0000986
Andy Green0d338332011-02-12 11:57:43 +0000987 case LWS_CONNMODE_WS_SERVING:
988 case LWS_CONNMODE_WS_CLIENT:
989
990 /* handle session socket closed */
991
Simon Wulf502b9942013-05-06 06:11:53 +0800992 if ((!(pollfd->revents & POLLIN)) &&
Andy Greenc9ac31e2013-02-16 10:17:52 +0800993 (pollfd->revents & (POLLERR | POLLHUP))) {
Andy Green0d338332011-02-12 11:57:43 +0000994
Andy Green43db0452013-01-10 19:50:35 +0800995 lwsl_debug("Session Socket %p (fd=%d) dead\n",
Andy Green0d338332011-02-12 11:57:43 +0000996 (void *)wsi, pollfd->fd);
997
Andy Greenb1a5e6c2013-03-09 12:34:30 +0800998 goto close_and_handled;
Andy Greenb45993c2010-12-18 15:13:50 +0000999 }
1000
Andy Green0d338332011-02-12 11:57:43 +00001001 /* the guy requested a callback when it was OK to write */
1002
Andy Greenda527df2011-03-07 07:08:12 +00001003 if ((pollfd->revents & POLLOUT) &&
Andy Greenca0a1292013-03-16 11:24:23 +08001004 wsi->state == WSI_STATE_ESTABLISHED &&
1005 lws_handle_POLLOUT_event(context, wsi, pollfd) < 0) {
Andy Green0878b9e2013-02-13 11:44:20 +08001006 lwsl_info("libwebsocket_service_fd: closing\n");
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001007 goto close_and_handled;
Andy Green3b84c002011-03-06 13:14:42 +00001008 }
Andy Green0d338332011-02-12 11:57:43 +00001009
Andy Green0d338332011-02-12 11:57:43 +00001010
Andy Greenca0a1292013-03-16 11:24:23 +08001011 if (wsi->u.ws.rxflow_buffer &&
1012 (wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW)) {
1013 lwsl_info("draining rxflow\n");
1014 /* well, drain it */
1015 eff_buf.token = (char *)wsi->u.ws.rxflow_buffer +
1016 wsi->u.ws.rxflow_pos;
1017 eff_buf.token_len = wsi->u.ws.rxflow_len -
1018 wsi->u.ws.rxflow_pos;
1019 draining_flow = 1;
1020 goto drain;
1021 }
1022
Andy Green0d338332011-02-12 11:57:43 +00001023 /* any incoming data ready? */
1024
1025 if (!(pollfd->revents & POLLIN))
1026 break;
1027
Andy Greenb45993c2010-12-18 15:13:50 +00001028#ifdef LWS_OPENSSL_SUPPORT
David Galeano7ffbe1b2013-01-10 10:35:32 +08001029read_pending:
Andy Green467c7ef2013-01-30 12:28:34 +08001030 if (wsi->ssl) {
Andy Greene84652c2013-02-08 13:01:02 +08001031 eff_buf.token_len = SSL_read(wsi->ssl,
1032 context->service_buffer,
Andy Greenb5b23192013-02-11 17:13:32 +08001033 sizeof(context->service_buffer));
Andy Green467c7ef2013-01-30 12:28:34 +08001034 if (!eff_buf.token_len) {
1035 n = SSL_get_error(wsi->ssl, eff_buf.token_len);
Andy Greene84652c2013-02-08 13:01:02 +08001036 lwsl_err("SSL_read returned 0 with reason %s\n",
Andy Greenb5b23192013-02-11 17:13:32 +08001037 ERR_error_string(n,
1038 (char *)context->service_buffer));
Andy Green467c7ef2013-01-30 12:28:34 +08001039 }
1040 } else
Andy Greenb45993c2010-12-18 15:13:50 +00001041#endif
Andy Greene84652c2013-02-08 13:01:02 +08001042 eff_buf.token_len = recv(pollfd->fd,
Andy Greenb5b23192013-02-11 17:13:32 +08001043 context->service_buffer,
1044 sizeof(context->service_buffer), 0);
Andy Greenb45993c2010-12-18 15:13:50 +00001045
Andy Green98a717c2011-03-06 13:14:15 +00001046 if (eff_buf.token_len < 0) {
Andy Green98ba9e02013-03-23 09:44:47 +08001047 lwsl_debug("service_fd read ret = %d, errno = %d\n",
1048 eff_buf.token_len, errno);
Alon Levydc93b7f2012-10-19 11:21:57 +02001049 if (errno != EINTR && errno != EAGAIN)
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001050 goto close_and_handled;
1051 n = 0;
1052 goto handled;
Andy Greenb45993c2010-12-18 15:13:50 +00001053 }
Andy Green98a717c2011-03-06 13:14:15 +00001054 if (!eff_buf.token_len) {
Andy Green98ba9e02013-03-23 09:44:47 +08001055 lwsl_info("service_fd: closing due to 0 length read\n");
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001056 goto close_and_handled;
Andy Greenb45993c2010-12-18 15:13:50 +00001057 }
1058
Andy Green98a717c2011-03-06 13:14:15 +00001059 /*
1060 * give any active extensions a chance to munge the buffer
1061 * before parse. We pass in a pointer to an lws_tokens struct
1062 * prepared with the default buffer and content length that's in
1063 * there. Rather than rewrite the default buffer, extensions
1064 * that expect to grow the buffer can adapt .token to
1065 * point to their own per-connection buffer in the extension
1066 * user allocation. By default with no extensions or no
1067 * extension callback handling, just the normal input buffer is
1068 * used then so it is efficient.
1069 */
Andy Greenb45993c2010-12-18 15:13:50 +00001070
Andy Greene84652c2013-02-08 13:01:02 +08001071 eff_buf.token = (char *)context->service_buffer;
Andy Greenca0a1292013-03-16 11:24:23 +08001072drain:
Andy Green3182ece2013-01-20 17:08:31 +08001073#ifndef LWS_NO_EXTENSIONS
Andy Green98a717c2011-03-06 13:14:15 +00001074 more = 1;
1075 while (more) {
Andy Green0d338332011-02-12 11:57:43 +00001076
Andy Green98a717c2011-03-06 13:14:15 +00001077 more = 0;
1078
1079 for (n = 0; n < wsi->count_active_extensions; n++) {
Andy Green46c2ea02011-03-22 09:04:01 +00001080 m = wsi->active_extensions[n]->callback(context,
1081 wsi->active_extensions[n], wsi,
Andy Green98a717c2011-03-06 13:14:15 +00001082 LWS_EXT_CALLBACK_PACKET_RX_PREPARSE,
Andy Green46c2ea02011-03-22 09:04:01 +00001083 wsi->active_extensions_user[n],
1084 &eff_buf, 0);
Andy Green98a717c2011-03-06 13:14:15 +00001085 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001086 lwsl_ext(
Andy Green6ee372f2012-04-09 15:09:01 +08001087 "Extension reports fatal error\n");
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001088 goto close_and_handled;
Andy Green98a717c2011-03-06 13:14:15 +00001089 }
1090 if (m)
1091 more = 1;
1092 }
Andy Green3182ece2013-01-20 17:08:31 +08001093#endif
Andy Green98a717c2011-03-06 13:14:15 +00001094 /* service incoming data */
1095
1096 if (eff_buf.token_len) {
1097 n = libwebsocket_read(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001098 (unsigned char *)eff_buf.token,
1099 eff_buf.token_len);
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001100 if (n < 0) {
Andy Green98a717c2011-03-06 13:14:15 +00001101 /* we closed wsi */
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001102 n = 0;
1103 goto handled;
1104 }
Andy Green98a717c2011-03-06 13:14:15 +00001105 }
Andy Green3182ece2013-01-20 17:08:31 +08001106#ifndef LWS_NO_EXTENSIONS
Andy Green98a717c2011-03-06 13:14:15 +00001107 eff_buf.token = NULL;
1108 eff_buf.token_len = 0;
1109 }
Andy Green3182ece2013-01-20 17:08:31 +08001110#endif
Andy Greenca0a1292013-03-16 11:24:23 +08001111 if (draining_flow && wsi->u.ws.rxflow_buffer &&
1112 wsi->u.ws.rxflow_pos == wsi->u.ws.rxflow_len) {
1113 lwsl_info("flow buffer: drained\n");
1114 free(wsi->u.ws.rxflow_buffer);
1115 wsi->u.ws.rxflow_buffer = NULL;
1116 /* having drained the rxflow buffer, can rearm POLLIN */
1117 _libwebsocket_rx_flow_control(wsi);
1118 }
David Galeano7ffbe1b2013-01-10 10:35:32 +08001119
1120#ifdef LWS_OPENSSL_SUPPORT
1121 if (wsi->ssl && SSL_pending(wsi->ssl))
1122 goto read_pending;
1123#endif
Andy Green98a717c2011-03-06 13:14:15 +00001124 break;
Andy Green76f61e72013-01-16 11:53:05 +08001125
1126 default:
Andy Green03674a62013-01-16 11:47:40 +08001127#ifdef LWS_NO_CLIENT
1128 break;
1129#else
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001130 n = lws_client_socket_service(context, wsi, pollfd);
1131 goto handled;
Andy Green03674a62013-01-16 11:47:40 +08001132#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001133 }
1134
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001135 n = 0;
1136 goto handled;
1137
1138close_and_handled:
Andy Greenca0a1292013-03-16 11:24:23 +08001139 libwebsocket_close_and_free_session(context, wsi,
1140 LWS_CLOSE_STATUS_NOSTATUS);
1141 n = 1;
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001142
1143handled:
1144 pollfd->revents = 0;
1145 return n;
Andy Greenb45993c2010-12-18 15:13:50 +00001146}
1147
Andy Green0d338332011-02-12 11:57:43 +00001148
Andy Green6964bb52011-01-23 16:50:33 +00001149/**
1150 * libwebsocket_context_destroy() - Destroy the websocket context
Peter Hinz56885f32011-03-02 22:03:47 +00001151 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001152 *
1153 * This function closes any active connections and then frees the
1154 * context. After calling this, any further use of the context is
1155 * undefined.
1156 */
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001157LWS_VISIBLE void
Peter Hinz56885f32011-03-02 22:03:47 +00001158libwebsocket_context_destroy(struct libwebsocket_context *context)
Andy Green6964bb52011-01-23 16:50:33 +00001159{
Andy Green3182ece2013-01-20 17:08:31 +08001160#ifndef LWS_NO_EXTENSIONS
Andy Green0d338332011-02-12 11:57:43 +00001161 int n;
1162 int m;
Andy Greena41314f2011-05-23 10:00:03 +01001163 struct libwebsocket_extension *ext;
Andy Greena7109e62013-02-11 12:05:54 +08001164 struct libwebsocket_protocols *protocol = context->protocols;
Andy Green6964bb52011-01-23 16:50:33 +00001165
Andy Greend636e352013-01-29 12:36:17 +08001166#ifdef LWS_LATENCY
1167 if (context->worst_latency_info[0])
1168 lwsl_notice("Worst latency: %s\n", context->worst_latency_info);
1169#endif
1170
Andy Greendfb23042013-01-17 12:26:48 +08001171 for (n = 0; n < context->fds_count; n++) {
Andy Greenb5b23192013-02-11 17:13:32 +08001172 struct libwebsocket *wsi =
1173 context->lws_lookup[context->fds[n].fd];
Andy Greendfb23042013-01-17 12:26:48 +08001174 libwebsocket_close_and_free_session(context,
Andy Green7b922052013-02-11 11:43:05 +08001175 wsi, LWS_CLOSE_STATUS_NOSTATUS /* no protocol close */);
1176 n--;
Andy Greendfb23042013-01-17 12:26:48 +08001177 }
Andy Green6964bb52011-01-23 16:50:33 +00001178
Andy Greena41314f2011-05-23 10:00:03 +01001179 /*
1180 * give all extensions a chance to clean up any per-context
1181 * allocations they might have made
1182 */
1183
1184 ext = context->extensions;
1185 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_DESTRUCT;
1186 if (context->listen_port)
1187 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_DESTRUCT;
Paulo Roberto Urio1f680ab2012-06-04 08:40:28 +08001188 while (ext && ext->callback) {
Andy Greenb5b23192013-02-11 17:13:32 +08001189 ext->callback(context, ext, NULL,
1190 (enum libwebsocket_extension_callback_reasons)m,
1191 NULL, NULL, 0);
Andy Greena41314f2011-05-23 10:00:03 +01001192 ext++;
1193 }
Andy Greena7109e62013-02-11 12:05:54 +08001194
1195 /*
1196 * inform all the protocols that they are done and will have no more
1197 * callbacks
1198 */
1199
1200 while (protocol->callback) {
1201 protocol->callback(context, NULL, LWS_CALLBACK_PROTOCOL_DESTROY,
1202 NULL, NULL, 0);
1203 protocol++;
1204 }
1205
Andy Green3182ece2013-01-20 17:08:31 +08001206#endif
Andy Greena41314f2011-05-23 10:00:03 +01001207
Peter Hinz56885f32011-03-02 22:03:47 +00001208#ifdef WIN32
1209#else
1210 close(context->fd_random);
Andy Green6964bb52011-01-23 16:50:33 +00001211#endif
1212
Peter Hinz56885f32011-03-02 22:03:47 +00001213#ifdef LWS_OPENSSL_SUPPORT
1214 if (context->ssl_ctx)
1215 SSL_CTX_free(context->ssl_ctx);
1216 if (context->ssl_client_ctx)
1217 SSL_CTX_free(context->ssl_client_ctx);
Andy Greenad686392013-02-11 14:50:45 +08001218
1219 ERR_remove_state(0);
1220 ERR_free_strings();
1221 EVP_cleanup();
1222 CRYPTO_cleanup_all_ex_data();
Peter Hinz56885f32011-03-02 22:03:47 +00001223#endif
1224
Andy Green46596482013-02-11 11:04:01 +08001225 if (context->fds)
1226 free(context->fds);
1227 if (context->lws_lookup)
1228 free(context->lws_lookup);
1229
Peter Hinz56885f32011-03-02 22:03:47 +00001230 free(context);
1231
1232#ifdef WIN32
1233 WSACleanup();
1234#endif
Andy Green6964bb52011-01-23 16:50:33 +00001235}
1236
Andy Greend88146d2013-01-22 12:40:35 +08001237/**
Andy Greenb5b23192013-02-11 17:13:32 +08001238 * libwebsocket_context_user() - get the user data associated with the context
Andy Greend88146d2013-01-22 12:40:35 +08001239 * @context: Websocket context
1240 *
1241 * This returns the optional user allocation that can be attached to
1242 * the context the sockets live in at context_create time. It's a way
1243 * to let all sockets serviced in the same context share data without
1244 * using globals statics in the user code.
1245 */
Alon Levy0291eb32012-10-19 11:21:56 +02001246LWS_EXTERN void *
1247libwebsocket_context_user(struct libwebsocket_context *context)
1248{
Andy Greenb5b23192013-02-11 17:13:32 +08001249 return context->user_space;
Alon Levy0291eb32012-10-19 11:21:56 +02001250}
1251
Andy Green6964bb52011-01-23 16:50:33 +00001252/**
1253 * libwebsocket_service() - Service any pending websocket activity
Peter Hinz56885f32011-03-02 22:03:47 +00001254 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001255 * @timeout_ms: Timeout for poll; 0 means return immediately if nothing needed
1256 * service otherwise block and service immediately, returning
1257 * after the timeout if nothing needed service.
1258 *
1259 * This function deals with any pending websocket traffic, for three
1260 * kinds of event. It handles these events on both server and client
1261 * types of connection the same.
1262 *
1263 * 1) Accept new connections to our context's server
1264 *
Andy Green6f520a52013-01-29 17:57:39 +08001265 * 2) Call the receive callback for incoming frame data received by
Andy Green6964bb52011-01-23 16:50:33 +00001266 * server or client connections.
1267 *
1268 * You need to call this service function periodically to all the above
1269 * functions to happen; if your application is single-threaded you can
1270 * just call it in your main event loop.
1271 *
1272 * Alternatively you can fork a new process that asynchronously handles
1273 * calling this service in a loop. In that case you are happy if this
1274 * call blocks your thread until it needs to take care of something and
1275 * would call it with a large nonzero timeout. Your loop then takes no
1276 * CPU while there is nothing happening.
1277 *
1278 * If you are calling it in a single-threaded app, you don't want it to
1279 * wait around blocking other things in your loop from happening, so you
1280 * would call it with a timeout_ms of 0, so it returns immediately if
1281 * nothing is pending, or as soon as it services whatever was pending.
1282 */
1283
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001284LWS_VISIBLE int
Peter Hinz56885f32011-03-02 22:03:47 +00001285libwebsocket_service(struct libwebsocket_context *context, int timeout_ms)
Andy Greene92cd172011-01-19 13:11:55 +00001286{
1287 int n;
Andy Greenca0a1292013-03-16 11:24:23 +08001288 int m;
Andy Greene92cd172011-01-19 13:11:55 +00001289
1290 /* stay dead once we are dead */
1291
Peter Hinz56885f32011-03-02 22:03:47 +00001292 if (context == NULL)
Andy Greene92cd172011-01-19 13:11:55 +00001293 return 1;
1294
Andy Green0d338332011-02-12 11:57:43 +00001295 /* wait for something to need service */
Andy Green4739e5c2011-01-22 12:51:57 +00001296
Peter Hinz56885f32011-03-02 22:03:47 +00001297 n = poll(context->fds, context->fds_count, timeout_ms);
Andy Green5dc62ea2013-09-20 20:26:12 +08001298 if (n == 0) /* poll timeout */ {
1299 libwebsocket_service_fd(context, NULL);
Andy Green3221f922011-02-12 13:14:11 +00001300 return 0;
Andy Green5dc62ea2013-09-20 20:26:12 +08001301 }
Andy Greene92cd172011-01-19 13:11:55 +00001302
Andy Greendfb23042013-01-17 12:26:48 +08001303 if (n < 0)
Andy Green3928f612012-07-20 12:58:38 +08001304 return -1;
Andy Greene92cd172011-01-19 13:11:55 +00001305
Andy Greendfb23042013-01-17 12:26:48 +08001306 /* any socket with events to service? */
Andy Greene92cd172011-01-19 13:11:55 +00001307
Andy Greenca0a1292013-03-16 11:24:23 +08001308 for (n = 0; n < context->fds_count; n++) {
1309 if (!context->fds[n].revents)
1310 continue;
1311 m = libwebsocket_service_fd(context, &context->fds[n]);
1312 if (m < 0)
1313 return -1;
1314 /* if something closed, retry this slot */
1315 if (m)
1316 n--;
1317 }
1318
Andy Greene92cd172011-01-19 13:11:55 +00001319 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001320}
1321
Andy Green3182ece2013-01-20 17:08:31 +08001322#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +01001323int
1324lws_any_extension_handled(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001325 struct libwebsocket *wsi,
1326 enum libwebsocket_extension_callback_reasons r,
Andy Greena41314f2011-05-23 10:00:03 +01001327 void *v, size_t len)
1328{
1329 int n;
1330 int handled = 0;
1331
1332 /* maybe an extension will take care of it for us */
1333
1334 for (n = 0; n < wsi->count_active_extensions && !handled; n++) {
1335 if (!wsi->active_extensions[n]->callback)
1336 continue;
1337
1338 handled |= wsi->active_extensions[n]->callback(context,
1339 wsi->active_extensions[n], wsi,
1340 r, wsi->active_extensions_user[n], v, len);
1341 }
1342
1343 return handled;
1344}
1345
1346
1347void *
1348lws_get_extension_user_matching_ext(struct libwebsocket *wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001349 struct libwebsocket_extension *ext)
Andy Greena41314f2011-05-23 10:00:03 +01001350{
1351 int n = 0;
1352
Andy Green68b45042011-05-25 21:41:57 +01001353 if (wsi == NULL)
1354 return NULL;
1355
Andy Greena41314f2011-05-23 10:00:03 +01001356 while (n < wsi->count_active_extensions) {
1357 if (wsi->active_extensions[n] != ext) {
1358 n++;
1359 continue;
1360 }
1361 return wsi->active_extensions_user[n];
1362 }
1363
1364 return NULL;
1365}
Andy Green3182ece2013-01-20 17:08:31 +08001366#endif
Andy Greena41314f2011-05-23 10:00:03 +01001367
Andy Green90c7cbc2011-01-27 06:26:52 +00001368/**
1369 * libwebsocket_callback_on_writable() - Request a callback when this socket
1370 * becomes able to be written to without
1371 * blocking
Andy Green32375b72011-02-19 08:32:53 +00001372 *
Peter Hinz56885f32011-03-02 22:03:47 +00001373 * @context: libwebsockets context
Andy Green90c7cbc2011-01-27 06:26:52 +00001374 * @wsi: Websocket connection instance to get callback for
1375 */
1376
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001377LWS_VISIBLE int
Peter Hinz56885f32011-03-02 22:03:47 +00001378libwebsocket_callback_on_writable(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001379 struct libwebsocket *wsi)
Andy Green90c7cbc2011-01-27 06:26:52 +00001380{
Andy Green3182ece2013-01-20 17:08:31 +08001381#ifndef LWS_NO_EXTENSIONS
Andy Green90c7cbc2011-01-27 06:26:52 +00001382 int n;
Andy Greena41314f2011-05-23 10:00:03 +01001383 int handled = 0;
1384
1385 /* maybe an extension will take care of it for us */
1386
1387 for (n = 0; n < wsi->count_active_extensions; n++) {
1388 if (!wsi->active_extensions[n]->callback)
1389 continue;
1390
1391 handled |= wsi->active_extensions[n]->callback(context,
1392 wsi->active_extensions[n], wsi,
1393 LWS_EXT_CALLBACK_REQUEST_ON_WRITEABLE,
1394 wsi->active_extensions_user[n], NULL, 0);
1395 }
1396
1397 if (handled)
1398 return 1;
Andy Green3182ece2013-01-20 17:08:31 +08001399#endif
Andy Greendfb23042013-01-17 12:26:48 +08001400 if (wsi->position_in_fds_table < 0) {
Andy Greenb5b23192013-02-11 17:13:32 +08001401 lwsl_err("libwebsocket_callback_on_writable: failed to find socket %d\n",
1402 wsi->sock);
Andy Greendfb23042013-01-17 12:26:48 +08001403 return -1;
1404 }
1405
1406 context->fds[wsi->position_in_fds_table].events |= POLLOUT;
Andy Greena41314f2011-05-23 10:00:03 +01001407
Andy Green3221f922011-02-12 13:14:11 +00001408 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001409 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001410 LWS_CALLBACK_SET_MODE_POLL_FD,
Andy Green50097dd2013-02-15 22:36:30 +08001411 wsi->user_space, (void *)(long)wsi->sock, POLLOUT);
Andy Green3221f922011-02-12 13:14:11 +00001412
Andy Green90c7cbc2011-01-27 06:26:52 +00001413 return 1;
1414}
1415
1416/**
1417 * libwebsocket_callback_on_writable_all_protocol() - Request a callback for
1418 * all connections using the given protocol when it
1419 * becomes possible to write to each socket without
1420 * blocking in turn.
1421 *
1422 * @protocol: Protocol whose connections will get callbacks
1423 */
1424
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001425LWS_VISIBLE int
Andy Green90c7cbc2011-01-27 06:26:52 +00001426libwebsocket_callback_on_writable_all_protocol(
1427 const struct libwebsocket_protocols *protocol)
1428{
Peter Hinz56885f32011-03-02 22:03:47 +00001429 struct libwebsocket_context *context = protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001430 int n;
Andy Green0d338332011-02-12 11:57:43 +00001431 struct libwebsocket *wsi;
Andy Green90c7cbc2011-01-27 06:26:52 +00001432
Andy Greendfb23042013-01-17 12:26:48 +08001433 for (n = 0; n < context->fds_count; n++) {
1434 wsi = context->lws_lookup[context->fds[n].fd];
1435 if (!wsi)
1436 continue;
1437 if (wsi->protocol == protocol)
1438 libwebsocket_callback_on_writable(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001439 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001440
1441 return 0;
1442}
1443
Andy Greenbe93fef2011-02-14 20:25:43 +00001444/**
1445 * libwebsocket_set_timeout() - marks the wsi as subject to a timeout
1446 *
1447 * You will not need this unless you are doing something special
1448 *
1449 * @wsi: Websocket connection instance
1450 * @reason: timeout reason
1451 * @secs: how many seconds
1452 */
1453
1454void
1455libwebsocket_set_timeout(struct libwebsocket *wsi,
1456 enum pending_timeout reason, int secs)
1457{
1458 struct timeval tv;
1459
1460 gettimeofday(&tv, NULL);
1461
1462 wsi->pending_timeout_limit = tv.tv_sec + secs;
1463 wsi->pending_timeout = reason;
1464}
1465
Andy Greena6cbece2011-01-27 20:06:03 +00001466
1467/**
1468 * libwebsocket_get_socket_fd() - returns the socket file descriptor
1469 *
1470 * You will not need this unless you are doing something special
1471 *
1472 * @wsi: Websocket connection instance
1473 */
1474
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001475LWS_VISIBLE int
Andy Greena6cbece2011-01-27 20:06:03 +00001476libwebsocket_get_socket_fd(struct libwebsocket *wsi)
1477{
1478 return wsi->sock;
1479}
1480
Andy Greend636e352013-01-29 12:36:17 +08001481#ifdef LWS_LATENCY
1482void
Andy Greenb5b23192013-02-11 17:13:32 +08001483lws_latency(struct libwebsocket_context *context, struct libwebsocket *wsi,
1484 const char *action, int ret, int completed)
Andy Greend636e352013-01-29 12:36:17 +08001485{
1486 struct timeval tv;
1487 unsigned long u;
1488 char buf[256];
1489
1490 gettimeofday(&tv, NULL);
1491
1492 u = (tv.tv_sec * 1000000) + tv.tv_usec;
1493
1494 if (action) {
1495 if (completed) {
1496 if (wsi->action_start == wsi->latency_start)
Andy Greenb5b23192013-02-11 17:13:32 +08001497 sprintf(buf,
1498 "Completion first try lat %luus: %p: ret %d: %s\n",
1499 u - wsi->latency_start,
1500 (void *)wsi, ret, action);
Andy Greend636e352013-01-29 12:36:17 +08001501 else
Andy Greenb5b23192013-02-11 17:13:32 +08001502 sprintf(buf,
1503 "Completion %luus: lat %luus: %p: ret %d: %s\n",
1504 u - wsi->action_start,
1505 u - wsi->latency_start,
1506 (void *)wsi, ret, action);
Andy Greend636e352013-01-29 12:36:17 +08001507 wsi->action_start = 0;
1508 } else
Andy Greenb5b23192013-02-11 17:13:32 +08001509 sprintf(buf, "lat %luus: %p: ret %d: %s\n",
1510 u - wsi->latency_start,
1511 (void *)wsi, ret, action);
Andy Greend636e352013-01-29 12:36:17 +08001512 if (u - wsi->latency_start > context->worst_latency) {
1513 context->worst_latency = u - wsi->latency_start;
1514 strcpy(context->worst_latency_info, buf);
1515 }
1516 lwsl_latency("%s", buf);
1517 } else {
1518 wsi->latency_start = u;
1519 if (!wsi->action_start)
1520 wsi->action_start = u;
1521 }
1522}
1523#endif
1524
Andy Greena1ce6be2013-01-18 11:43:21 +08001525#ifdef LWS_NO_SERVER
1526int
Andy Greenca0a1292013-03-16 11:24:23 +08001527_libwebsocket_rx_flow_control(struct libswebsocket *wsi)
Andy Greena1ce6be2013-01-18 11:43:21 +08001528{
1529 return 0;
1530}
1531#else
Andy Green706961d2013-01-17 16:50:35 +08001532int
1533_libwebsocket_rx_flow_control(struct libwebsocket *wsi)
1534{
1535 struct libwebsocket_context *context = wsi->protocol->owning_server;
Andy Green706961d2013-01-17 16:50:35 +08001536
Andy Greenca0a1292013-03-16 11:24:23 +08001537 /* there is no pending change */
1538 if (!(wsi->u.ws.rxflow_change_to & LWS_RXFLOW_PENDING_CHANGE))
Andy Green706961d2013-01-17 16:50:35 +08001539 return 0;
1540
Andy Greenca0a1292013-03-16 11:24:23 +08001541 /* stuff is still buffered, not ready to really accept new input */
1542 if (wsi->u.ws.rxflow_buffer) {
1543 /* get ourselves called back to deal with stashed buffer */
1544 libwebsocket_callback_on_writable(context, wsi);
1545 return 0;
Andy Green706961d2013-01-17 16:50:35 +08001546 }
1547
Andy Greenca0a1292013-03-16 11:24:23 +08001548 /* pending is cleared, we can change rxflow state */
1549
1550 wsi->u.ws.rxflow_change_to &= ~LWS_RXFLOW_PENDING_CHANGE;
1551
1552 lwsl_info("rxflow: wsi %p change_to %d\n", wsi,
1553 wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW);
1554
1555 /* adjust the pollfd for this wsi */
1556
1557 if (wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW)
Andy Green706961d2013-01-17 16:50:35 +08001558 context->fds[wsi->position_in_fds_table].events |= POLLIN;
1559 else
1560 context->fds[wsi->position_in_fds_table].events &= ~POLLIN;
1561
Andy Greenca0a1292013-03-16 11:24:23 +08001562 if (wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW)
Andy Green706961d2013-01-17 16:50:35 +08001563 /* external POLL support via protocol 0 */
1564 context->protocols[0].callback(context, wsi,
1565 LWS_CALLBACK_SET_MODE_POLL_FD,
Andy Green50097dd2013-02-15 22:36:30 +08001566 wsi->user_space, (void *)(long)wsi->sock, POLLIN);
Andy Green706961d2013-01-17 16:50:35 +08001567 else
1568 /* external POLL support via protocol 0 */
1569 context->protocols[0].callback(context, wsi,
1570 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
Andy Green50097dd2013-02-15 22:36:30 +08001571 wsi->user_space, (void *)(long)wsi->sock, POLLIN);
Andy Green706961d2013-01-17 16:50:35 +08001572
1573 return 1;
1574}
Andy Greena1ce6be2013-01-18 11:43:21 +08001575#endif
Andy Green706961d2013-01-17 16:50:35 +08001576
Andy Green90c7cbc2011-01-27 06:26:52 +00001577/**
1578 * libwebsocket_rx_flow_control() - Enable and disable socket servicing for
1579 * receieved packets.
1580 *
1581 * If the output side of a server process becomes choked, this allows flow
1582 * control for the input side.
1583 *
1584 * @wsi: Websocket connection instance to get callback for
1585 * @enable: 0 = disable read servicing for this connection, 1 = enable
1586 */
1587
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001588LWS_VISIBLE int
Andy Green90c7cbc2011-01-27 06:26:52 +00001589libwebsocket_rx_flow_control(struct libwebsocket *wsi, int enable)
1590{
Andy Greenca0a1292013-03-16 11:24:23 +08001591 if (enable == (wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW))
1592 return 0;
1593
1594 lwsl_info("libwebsocket_rx_flow_control(0x%p, %d)\n", wsi, enable);
1595 wsi->u.ws.rxflow_change_to = LWS_RXFLOW_PENDING_CHANGE | !!enable;
Andy Green90c7cbc2011-01-27 06:26:52 +00001596
Andy Green706961d2013-01-17 16:50:35 +08001597 return 0;
Andy Green90c7cbc2011-01-27 06:26:52 +00001598}
1599
Andy Greenb55451c2013-03-16 12:32:27 +08001600/**
1601 * libwebsocket_rx_flow_allow_all_protocol() - Allow all connections with this protocol to receive
1602 *
1603 * When the user server code realizes it can accept more input, it can
1604 * call this to have the RX flow restriction removed from all connections using
1605 * the given protocol.
1606 *
1607 * @protocol: all connections using this protocol will be allowed to receive
1608 */
1609
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001610LWS_VISIBLE void
Andy Greenb55451c2013-03-16 12:32:27 +08001611libwebsocket_rx_flow_allow_all_protocol(
1612 const struct libwebsocket_protocols *protocol)
1613{
1614 struct libwebsocket_context *context = protocol->owning_server;
1615 int n;
1616 struct libwebsocket *wsi;
1617
1618 for (n = 0; n < context->fds_count; n++) {
1619 wsi = context->lws_lookup[context->fds[n].fd];
1620 if (!wsi)
1621 continue;
1622 if (wsi->protocol == protocol)
1623 libwebsocket_rx_flow_control(wsi, LWS_RXFLOW_ALLOW);
1624 }
1625}
1626
Andy Green706961d2013-01-17 16:50:35 +08001627
Andy Green2ac5a6f2011-01-28 10:00:18 +00001628/**
1629 * libwebsocket_canonical_hostname() - returns this host's hostname
1630 *
1631 * This is typically used by client code to fill in the host parameter
1632 * when making a client connection. You can only call it after the context
1633 * has been created.
1634 *
Peter Hinz56885f32011-03-02 22:03:47 +00001635 * @context: Websocket context
Andy Green2ac5a6f2011-01-28 10:00:18 +00001636 */
1637
1638
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001639LWS_VISIBLE extern const char *
Peter Hinz56885f32011-03-02 22:03:47 +00001640libwebsocket_canonical_hostname(struct libwebsocket_context *context)
Andy Green2ac5a6f2011-01-28 10:00:18 +00001641{
Peter Hinz56885f32011-03-02 22:03:47 +00001642 return (const char *)context->canonical_hostname;
Andy Green2ac5a6f2011-01-28 10:00:18 +00001643}
1644
1645
Andy Green90c7cbc2011-01-27 06:26:52 +00001646static void sigpipe_handler(int x)
1647{
1648}
1649
Andy Green6901cb32011-02-21 08:06:47 +00001650#ifdef LWS_OPENSSL_SUPPORT
1651static int
1652OpenSSL_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx)
1653{
1654
1655 SSL *ssl;
1656 int n;
Andy Green2e24da02011-03-05 16:12:04 +00001657 struct libwebsocket_context *context;
Andy Green6901cb32011-02-21 08:06:47 +00001658
1659 ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
1660 SSL_get_ex_data_X509_STORE_CTX_idx());
1661
1662 /*
Andy Green2e24da02011-03-05 16:12:04 +00001663 * !!! nasty openssl requires the index to come as a library-scope
1664 * static
Andy Green6901cb32011-02-21 08:06:47 +00001665 */
Andy Green2e24da02011-03-05 16:12:04 +00001666 context = SSL_get_ex_data(ssl, openssl_websocket_private_data_index);
Andy Green6ee372f2012-04-09 15:09:01 +08001667
Peter Hinz56885f32011-03-02 22:03:47 +00001668 n = context->protocols[0].callback(NULL, NULL,
Andy Green6901cb32011-02-21 08:06:47 +00001669 LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION,
1670 x509_ctx, ssl, preverify_ok);
1671
1672 /* convert return code from 0 = OK to 1 = OK */
1673
1674 if (!n)
1675 n = 1;
1676 else
1677 n = 0;
1678
1679 return n;
1680}
1681#endif
1682
Andy Green706961d2013-01-17 16:50:35 +08001683int user_callback_handle_rxflow(callback_function callback_function,
Andy Greenb5b23192013-02-11 17:13:32 +08001684 struct libwebsocket_context *context,
Andy Green706961d2013-01-17 16:50:35 +08001685 struct libwebsocket *wsi,
1686 enum libwebsocket_callback_reasons reason, void *user,
1687 void *in, size_t len)
1688{
1689 int n;
1690
1691 n = callback_function(context, wsi, reason, user, in, len);
Andy Greenaedc9532013-02-10 21:21:24 +08001692 if (!n)
1693 n = _libwebsocket_rx_flow_control(wsi);
Andy Green706961d2013-01-17 16:50:35 +08001694
Andy Greenaedc9532013-02-10 21:21:24 +08001695 return n;
Andy Green706961d2013-01-17 16:50:35 +08001696}
1697
Andy Greenb45993c2010-12-18 15:13:50 +00001698
Andy Greenab990e42010-10-31 12:42:52 +00001699/**
Andy Green4739e5c2011-01-22 12:51:57 +00001700 * libwebsocket_create_context() - Create the websocket handler
Andy Green1b265272013-02-09 14:01:09 +08001701 * @info: pointer to struct with parameters
Andy Green05464c62010-11-12 10:44:18 +00001702 *
Andy Green1b265272013-02-09 14:01:09 +08001703 * This function creates the listening socket (if serving) and takes care
Andy Green8f037e42010-12-19 22:13:26 +00001704 * of all initialization in one step.
1705 *
Andy Greene92cd172011-01-19 13:11:55 +00001706 * After initialization, it returns a struct libwebsocket_context * that
1707 * represents this server. After calling, user code needs to take care
1708 * of calling libwebsocket_service() with the context pointer to get the
1709 * server's sockets serviced. This can be done in the same process context
1710 * or a forked process, or another thread,
Andy Green05464c62010-11-12 10:44:18 +00001711 *
Andy Green8f037e42010-12-19 22:13:26 +00001712 * The protocol callback functions are called for a handful of events
1713 * including http requests coming in, websocket connections becoming
1714 * established, and data arriving; it's also called periodically to allow
1715 * async transmission.
1716 *
1717 * HTTP requests are sent always to the FIRST protocol in @protocol, since
1718 * at that time websocket protocol has not been negotiated. Other
1719 * protocols after the first one never see any HTTP callack activity.
1720 *
1721 * The server created is a simple http server by default; part of the
1722 * websocket standard is upgrading this http connection to a websocket one.
1723 *
1724 * This allows the same server to provide files like scripts and favicon /
1725 * images or whatever over http and dynamic data over websockets all in
1726 * one place; they're all handled in the user callback.
Andy Greenab990e42010-10-31 12:42:52 +00001727 */
Andy Green4ea60062010-10-30 12:15:07 +01001728
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001729LWS_VISIBLE struct libwebsocket_context *
Andy Green1b265272013-02-09 14:01:09 +08001730libwebsocket_create_context(struct lws_context_creation_info *info)
Andy Greenff95d7a2010-10-28 22:36:01 +01001731{
Peter Hinz56885f32011-03-02 22:03:47 +00001732 struct libwebsocket_context *context = NULL;
Andy Green9659f372011-01-27 22:01:43 +00001733 char *p;
Andy Green14f47292013-02-11 19:36:15 +08001734 int n;
Joakim Soderberg3baa08c2013-02-22 09:27:59 +08001735#ifndef LWS_NO_SERVER
Andy Greencbb31222013-01-31 09:57:05 +08001736 int opt = 1;
Andy Green0d338332011-02-12 11:57:43 +00001737 struct libwebsocket *wsi;
Andy Greencbb31222013-01-31 09:57:05 +08001738 struct sockaddr_in serv_addr;
1739#endif
Andy Green3182ece2013-01-20 17:08:31 +08001740#ifndef LWS_NO_EXTENSIONS
1741 int m;
Andy Green1b265272013-02-09 14:01:09 +08001742 struct libwebsocket_extension *ext;
Andy Green3182ece2013-01-20 17:08:31 +08001743#endif
Andy Greenff95d7a2010-10-28 22:36:01 +01001744
Andy Green3faa9c72010-11-08 17:03:03 +00001745#ifdef LWS_OPENSSL_SUPPORT
Andy Greenf2f54d52010-11-15 22:08:00 +00001746 SSL_METHOD *method;
Andy Green3faa9c72010-11-08 17:03:03 +00001747#endif
1748
Joakim Soderberg4c531232013-02-06 15:26:58 +09001749#ifndef LWS_NO_DAEMONIZE
Joakim Söderberg68e8d732013-02-06 15:27:39 +09001750 int pid_daemon = get_daemonize_pid();
Joakim Soderberg4c531232013-02-06 15:26:58 +09001751#endif
1752
Andy Greenb3a614a2013-01-19 13:08:17 +08001753 lwsl_notice("Initial logging level %d\n", log_level);
Andy Green7b405452013-02-01 10:50:15 +08001754 lwsl_notice("Library version: %s\n", library_version);
Andy Greenc0d6b632013-01-12 23:42:17 +08001755 lwsl_info(" LWS_MAX_HEADER_LEN: %u\n", LWS_MAX_HEADER_LEN);
Andy Greenc0d6b632013-01-12 23:42:17 +08001756 lwsl_info(" LWS_MAX_PROTOCOLS: %u\n", LWS_MAX_PROTOCOLS);
Andy Green3182ece2013-01-20 17:08:31 +08001757#ifndef LWS_NO_EXTENSIONS
Andy Greenb5b23192013-02-11 17:13:32 +08001758 lwsl_info(" LWS_MAX_EXTENSIONS_ACTIVE: %u\n",
1759 LWS_MAX_EXTENSIONS_ACTIVE);
Andy Green3182ece2013-01-20 17:08:31 +08001760#else
1761 lwsl_notice(" Configured without extension support\n");
1762#endif
Andy Greenc0d6b632013-01-12 23:42:17 +08001763 lwsl_info(" SPEC_LATEST_SUPPORTED: %u\n", SPEC_LATEST_SUPPORTED);
1764 lwsl_info(" AWAITING_TIMEOUT: %u\n", AWAITING_TIMEOUT);
Andy Green2672fb22013-02-22 09:54:35 +08001765 if (info->ssl_cipher_list)
1766 lwsl_info(" SSL ciphers: '%s'\n", info->ssl_cipher_list);
Andy Greenc0d6b632013-01-12 23:42:17 +08001767 lwsl_info(" SYSTEM_RANDOM_FILEPATH: '%s'\n", SYSTEM_RANDOM_FILEPATH);
1768 lwsl_info(" LWS_MAX_ZLIB_CONN_BUFFER: %u\n", LWS_MAX_ZLIB_CONN_BUFFER);
Andy Green43db0452013-01-10 19:50:35 +08001769
Peter Hinz56885f32011-03-02 22:03:47 +00001770#ifdef _WIN32
1771 {
1772 WORD wVersionRequested;
1773 WSADATA wsaData;
1774 int err;
Andy Green6ee372f2012-04-09 15:09:01 +08001775 HMODULE wsdll;
Peter Hinz56885f32011-03-02 22:03:47 +00001776
1777 /* Use the MAKEWORD(lowbyte, highbyte) macro from Windef.h */
1778 wVersionRequested = MAKEWORD(2, 2);
1779
1780 err = WSAStartup(wVersionRequested, &wsaData);
1781 if (err != 0) {
1782 /* Tell the user that we could not find a usable */
1783 /* Winsock DLL. */
Andy Green43db0452013-01-10 19:50:35 +08001784 lwsl_err("WSAStartup failed with error: %d\n", err);
Peter Hinz56885f32011-03-02 22:03:47 +00001785 return NULL;
1786 }
David Galeano7b11fec2011-10-04 19:55:18 +08001787
Andy Green6ee372f2012-04-09 15:09:01 +08001788 /* default to a poll() made out of select() */
1789 poll = emulated_poll;
David Galeano7b11fec2011-10-04 19:55:18 +08001790
Andy Green6ee372f2012-04-09 15:09:01 +08001791 /* if windows socket lib available, use his WSAPoll */
David Galeanocb193682013-01-09 15:29:00 +08001792 wsdll = GetModuleHandle(_T("Ws2_32.dll"));
Andy Green6ee372f2012-04-09 15:09:01 +08001793 if (wsdll)
1794 poll = (PFNWSAPOLL)GetProcAddress(wsdll, "WSAPoll");
Joakim Soderberg4c531232013-02-06 15:26:58 +09001795
Joakim Söderberg68e8d732013-02-06 15:27:39 +09001796 /* Finally fall back to emulated poll if all else fails */
Joakim Soderberg4c531232013-02-06 15:26:58 +09001797 if (!poll)
1798 poll = emulated_poll;
Peter Hinz56885f32011-03-02 22:03:47 +00001799 }
1800#endif
1801
Andy Greenb5b23192013-02-11 17:13:32 +08001802 context = (struct libwebsocket_context *)
1803 malloc(sizeof(struct libwebsocket_context));
Peter Hinz56885f32011-03-02 22:03:47 +00001804 if (!context) {
Andy Green43db0452013-01-10 19:50:35 +08001805 lwsl_err("No memory for websocket context\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001806 return NULL;
1807 }
Peter Pentchev3b233cb2013-02-07 16:31:19 +02001808 memset(context, 0, sizeof(*context));
Andy Green35f332b2013-01-21 13:06:38 +08001809#ifndef LWS_NO_DAEMONIZE
Andy Green24cba922013-01-19 13:56:10 +08001810 context->started_with_parent = pid_daemon;
1811 lwsl_notice(" Started with daemon pid %d\n", pid_daemon);
1812#endif
Andy Greenb5b23192013-02-11 17:13:32 +08001813
Joakim Soderberg4c531232013-02-06 15:26:58 +09001814 context->listen_service_extraseen = 0;
Andy Green1b265272013-02-09 14:01:09 +08001815 context->protocols = info->protocols;
1816 context->listen_port = info->port;
Peter Hinz56885f32011-03-02 22:03:47 +00001817 context->http_proxy_port = 0;
1818 context->http_proxy_address[0] = '\0';
Andy Green1b265272013-02-09 14:01:09 +08001819 context->options = info->options;
Andy Greendfb23042013-01-17 12:26:48 +08001820 /* to reduce this allocation, */
1821 context->max_fds = getdtablesize();
Andy Greena86f6342013-02-11 11:04:56 +08001822 lwsl_notice(" static allocation: %u + (%u x %u fds) = %u bytes\n",
1823 sizeof(struct libwebsocket_context),
1824 sizeof(struct pollfd) + sizeof(struct libwebsocket *),
1825 context->max_fds,
Andy Greenb5b23192013-02-11 17:13:32 +08001826 sizeof(struct libwebsocket_context) +
1827 ((sizeof(struct pollfd) + sizeof(struct libwebsocket *)) *
1828 context->max_fds));
Andy Greendfb23042013-01-17 12:26:48 +08001829
Andy Greenb5b23192013-02-11 17:13:32 +08001830 context->fds = (struct pollfd *)malloc(sizeof(struct pollfd) *
1831 context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08001832 if (context->fds == NULL) {
Andy Greenb5b23192013-02-11 17:13:32 +08001833 lwsl_err("Unable to allocate fds array for %d connections\n",
1834 context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08001835 free(context);
1836 return NULL;
1837 }
Andy Greenb5b23192013-02-11 17:13:32 +08001838 context->lws_lookup = (struct libwebsocket **)
1839 malloc(sizeof(struct libwebsocket *) * context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08001840 if (context->lws_lookup == NULL) {
Andy Greenb5b23192013-02-11 17:13:32 +08001841 lwsl_err(
1842 "Unable to allocate lws_lookup array for %d connections\n",
1843 context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08001844 free(context->fds);
1845 free(context);
1846 return NULL;
1847 }
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001848 memset(context->lws_lookup, 0, sizeof(struct libwebsocket *) *
1849 context->max_fds);
Andy Greena17c6922013-01-20 20:21:54 +08001850
Peter Hinz56885f32011-03-02 22:03:47 +00001851 context->fds_count = 0;
Andy Green3182ece2013-01-20 17:08:31 +08001852#ifndef LWS_NO_EXTENSIONS
Andy Green1b265272013-02-09 14:01:09 +08001853 context->extensions = info->extensions;
Andy Green3182ece2013-01-20 17:08:31 +08001854#endif
Paulo Roberto Urio1e326632012-06-04 10:52:19 +08001855 context->last_timeout_check_s = 0;
Andy Green1b265272013-02-09 14:01:09 +08001856 context->user_space = info->user;
Andy Green9659f372011-01-27 22:01:43 +00001857
Peter Hinz56885f32011-03-02 22:03:47 +00001858#ifdef WIN32
1859 context->fd_random = 0;
1860#else
1861 context->fd_random = open(SYSTEM_RANDOM_FILEPATH, O_RDONLY);
1862 if (context->fd_random < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001863 lwsl_err("Unable to open random device %s %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001864 SYSTEM_RANDOM_FILEPATH, context->fd_random);
Peter Pentchev3b233cb2013-02-07 16:31:19 +02001865 goto bail;
Andy Green44eee682011-02-10 09:32:24 +00001866 }
Peter Hinz56885f32011-03-02 22:03:47 +00001867#endif
Andy Green44eee682011-02-10 09:32:24 +00001868
Peter Hinz56885f32011-03-02 22:03:47 +00001869#ifdef LWS_OPENSSL_SUPPORT
1870 context->use_ssl = 0;
1871 context->ssl_ctx = NULL;
1872 context->ssl_client_ctx = NULL;
Andy Green2e24da02011-03-05 16:12:04 +00001873 openssl_websocket_private_data_index = 0;
Peter Hinz56885f32011-03-02 22:03:47 +00001874#endif
Andy Green2ac5a6f2011-01-28 10:00:18 +00001875
Andy Greena1ce6be2013-01-18 11:43:21 +08001876 strcpy(context->canonical_hostname, "unknown");
Andy Greena69f0512012-05-03 12:32:38 +08001877
Andy Greena1ce6be2013-01-18 11:43:21 +08001878#ifndef LWS_NO_SERVER
Andy Green1b265272013-02-09 14:01:09 +08001879 if (!(info->options & LWS_SERVER_OPTION_SKIP_SERVER_CANONICAL_NAME)) {
Andy Green788c4a82012-10-22 12:29:57 +01001880 /* find canonical hostname */
Andy Greenadc71462013-02-14 17:11:22 +08001881 gethostname((char *)context->canonical_hostname,
Andy Greenb5b23192013-02-11 17:13:32 +08001882 sizeof(context->canonical_hostname) - 1);
Andy Green788c4a82012-10-22 12:29:57 +01001883
Andy Greenb5b23192013-02-11 17:13:32 +08001884 lwsl_notice(" canonical_hostname = %s\n",
1885 context->canonical_hostname);
Andy Greena69f0512012-05-03 12:32:38 +08001886 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001887#endif
Andy Greena69f0512012-05-03 12:32:38 +08001888
Andy Green9659f372011-01-27 22:01:43 +00001889 /* split the proxy ads:port if given */
1890
1891 p = getenv("http_proxy");
1892 if (p) {
Peter Hinz56885f32011-03-02 22:03:47 +00001893 strncpy(context->http_proxy_address, p,
Andy Greenb5b23192013-02-11 17:13:32 +08001894 sizeof(context->http_proxy_address) - 1);
Peter Hinz56885f32011-03-02 22:03:47 +00001895 context->http_proxy_address[
Andy Greenb5b23192013-02-11 17:13:32 +08001896 sizeof(context->http_proxy_address) - 1] = '\0';
Andy Green9659f372011-01-27 22:01:43 +00001897
Peter Hinz56885f32011-03-02 22:03:47 +00001898 p = strchr(context->http_proxy_address, ':');
Andy Green9659f372011-01-27 22:01:43 +00001899 if (p == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08001900 lwsl_err("http_proxy needs to be ads:port\n");
Peter Pentchev3b233cb2013-02-07 16:31:19 +02001901 goto bail;
Andy Green9659f372011-01-27 22:01:43 +00001902 }
1903 *p = '\0';
Peter Hinz56885f32011-03-02 22:03:47 +00001904 context->http_proxy_port = atoi(p + 1);
Andy Green9659f372011-01-27 22:01:43 +00001905
Andy Greenb3a614a2013-01-19 13:08:17 +08001906 lwsl_notice(" Proxy %s:%u\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001907 context->http_proxy_address,
1908 context->http_proxy_port);
Andy Green9659f372011-01-27 22:01:43 +00001909 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001910
Andy Greena1ce6be2013-01-18 11:43:21 +08001911#ifndef LWS_NO_SERVER
Andy Green1b265272013-02-09 14:01:09 +08001912 if (info->port) {
Andy Green90c7cbc2011-01-27 06:26:52 +00001913
Andy Green3faa9c72010-11-08 17:03:03 +00001914#ifdef LWS_OPENSSL_SUPPORT
Andy Green1b265272013-02-09 14:01:09 +08001915 context->use_ssl = info->ssl_cert_filepath != NULL &&
1916 info->ssl_private_key_filepath != NULL;
Andy Green23c5f2e2013-02-06 15:43:00 +09001917#ifdef USE_CYASSL
1918 lwsl_notice(" Compiled with CYASSL support\n");
1919#else
1920 lwsl_notice(" Compiled with OpenSSL support\n");
1921#endif
Peter Hinz56885f32011-03-02 22:03:47 +00001922 if (context->use_ssl)
Andy Green23c5f2e2013-02-06 15:43:00 +09001923 lwsl_notice(" Using SSL mode\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001924 else
Andy Green23c5f2e2013-02-06 15:43:00 +09001925 lwsl_notice(" Using non-SSL mode\n");
Andy Green3faa9c72010-11-08 17:03:03 +00001926
Andy Green90c7cbc2011-01-27 06:26:52 +00001927#else
Andy Green2b40b792013-02-10 22:22:01 +08001928 if (info->ssl_cert_filepath != NULL &&
1929 info->ssl_private_key_filepath != NULL) {
Andy Greenb3a614a2013-01-19 13:08:17 +08001930 lwsl_notice(" Not compiled for OpenSSl support!\n");
Peter Pentchev3b233cb2013-02-07 16:31:19 +02001931 goto bail;
Andy Green3faa9c72010-11-08 17:03:03 +00001932 }
Andy Greenb5b23192013-02-11 17:13:32 +08001933 lwsl_notice(" Compiled without SSL support\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001934#endif
Andy Greena17c6922013-01-20 20:21:54 +08001935
Andy Greenb5b23192013-02-11 17:13:32 +08001936 lwsl_notice(
1937 " per-conn mem: %u + %u headers + protocol rx buf\n",
1938 sizeof(struct libwebsocket),
1939 sizeof(struct allocated_headers));
Andy Green90c7cbc2011-01-27 06:26:52 +00001940 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001941#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00001942
1943 /* ignore SIGPIPE */
Peter Hinz56885f32011-03-02 22:03:47 +00001944#ifdef WIN32
1945#else
Andy Green90c7cbc2011-01-27 06:26:52 +00001946 signal(SIGPIPE, sigpipe_handler);
Peter Hinz56885f32011-03-02 22:03:47 +00001947#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00001948
1949
1950#ifdef LWS_OPENSSL_SUPPORT
1951
1952 /* basic openssl init */
1953
1954 SSL_library_init();
1955
1956 OpenSSL_add_all_algorithms();
1957 SSL_load_error_strings();
1958
Andy Green2e24da02011-03-05 16:12:04 +00001959 openssl_websocket_private_data_index =
Andy Green6901cb32011-02-21 08:06:47 +00001960 SSL_get_ex_new_index(0, "libwebsockets", NULL, NULL, NULL);
1961
Andy Green90c7cbc2011-01-27 06:26:52 +00001962 /*
1963 * Firefox insists on SSLv23 not SSLv3
1964 * Konq disables SSLv2 by default now, SSLv23 works
1965 */
1966
1967 method = (SSL_METHOD *)SSLv23_server_method();
1968 if (!method) {
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08001969 lwsl_err("problem creating ssl method %lu: %s\n",
1970 ERR_get_error(),
Andy Greenb5b23192013-02-11 17:13:32 +08001971 ERR_error_string(ERR_get_error(),
1972 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02001973 goto bail;
Andy Green90c7cbc2011-01-27 06:26:52 +00001974 }
Peter Hinz56885f32011-03-02 22:03:47 +00001975 context->ssl_ctx = SSL_CTX_new(method); /* create context */
1976 if (!context->ssl_ctx) {
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08001977 lwsl_err("problem creating ssl context %lu: %s\n",
1978 ERR_get_error(),
Andy Greenb5b23192013-02-11 17:13:32 +08001979 ERR_error_string(ERR_get_error(),
1980 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02001981 goto bail;
Andy Green90c7cbc2011-01-27 06:26:52 +00001982 }
1983
David Galeanocc148e42013-01-10 10:18:59 +08001984#ifdef SSL_OP_NO_COMPRESSION
David Galeanoc72f6f92013-01-10 10:11:57 +08001985 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08001986#endif
David Galeano77a677c2013-01-10 10:14:12 +08001987 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
Andy Green2672fb22013-02-22 09:54:35 +08001988 if (info->ssl_cipher_list)
1989 SSL_CTX_set_cipher_list(context->ssl_ctx,
1990 info->ssl_cipher_list);
David Galeanoc72f6f92013-01-10 10:11:57 +08001991
Andy Greena1ce6be2013-01-18 11:43:21 +08001992#ifndef LWS_NO_CLIENT
1993
Andy Green90c7cbc2011-01-27 06:26:52 +00001994 /* client context */
Andy Green6ee372f2012-04-09 15:09:01 +08001995
Andy Green1b265272013-02-09 14:01:09 +08001996 if (info->port == CONTEXT_PORT_NO_LISTEN) {
Peter Hinz56885f32011-03-02 22:03:47 +00001997 method = (SSL_METHOD *)SSLv23_client_method();
1998 if (!method) {
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08001999 lwsl_err("problem creating ssl method %lu: %s\n",
2000 ERR_get_error(),
Andy Greenb5b23192013-02-11 17:13:32 +08002001 ERR_error_string(ERR_get_error(),
2002 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002003 goto bail;
Peter Hinz56885f32011-03-02 22:03:47 +00002004 }
2005 /* create context */
2006 context->ssl_client_ctx = SSL_CTX_new(method);
2007 if (!context->ssl_client_ctx) {
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002008 lwsl_err("problem creating ssl context %lu: %s\n",
2009 ERR_get_error(),
Andy Greenb5b23192013-02-11 17:13:32 +08002010 ERR_error_string(ERR_get_error(),
2011 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002012 goto bail;
Peter Hinz56885f32011-03-02 22:03:47 +00002013 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002014
David Galeanocc148e42013-01-10 10:18:59 +08002015#ifdef SSL_OP_NO_COMPRESSION
Andy Greenb5b23192013-02-11 17:13:32 +08002016 SSL_CTX_set_options(context->ssl_client_ctx,
2017 SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08002018#endif
Andy Greenb5b23192013-02-11 17:13:32 +08002019 SSL_CTX_set_options(context->ssl_client_ctx,
2020 SSL_OP_CIPHER_SERVER_PREFERENCE);
Andy Green2672fb22013-02-22 09:54:35 +08002021 if (info->ssl_cipher_list)
2022 SSL_CTX_set_cipher_list(context->ssl_client_ctx,
2023 info->ssl_cipher_list);
David Galeanoc72f6f92013-01-10 10:11:57 +08002024
Peter Hinz56885f32011-03-02 22:03:47 +00002025 /* openssl init for cert verification (for client sockets) */
Andy Green1b265272013-02-09 14:01:09 +08002026 if (!info->ssl_ca_filepath) {
David Galeano2f82be82013-01-09 16:25:54 +08002027 if (!SSL_CTX_load_verify_locations(
2028 context->ssl_client_ctx, NULL,
2029 LWS_OPENSSL_CLIENT_CERTS))
Andy Green43db0452013-01-10 19:50:35 +08002030 lwsl_err(
Andy Greenb5b23192013-02-11 17:13:32 +08002031 "Unable to load SSL Client certs from %s "
2032 "(set by --with-client-cert-dir= "
2033 "in configure) -- client ssl isn't "
2034 "going to work", LWS_OPENSSL_CLIENT_CERTS);
David Galeano2f82be82013-01-09 16:25:54 +08002035 } else
2036 if (!SSL_CTX_load_verify_locations(
Andy Green1b265272013-02-09 14:01:09 +08002037 context->ssl_client_ctx, info->ssl_ca_filepath,
David Galeano2f82be82013-01-09 16:25:54 +08002038 NULL))
Andy Green43db0452013-01-10 19:50:35 +08002039 lwsl_err(
David Galeano2f82be82013-01-09 16:25:54 +08002040 "Unable to load SSL Client certs "
2041 "file from %s -- client ssl isn't "
Andy Green1b265272013-02-09 14:01:09 +08002042 "going to work", info->ssl_ca_filepath);
Peter Hinz56885f32011-03-02 22:03:47 +00002043
2044 /*
2045 * callback allowing user code to load extra verification certs
2046 * helping the client to verify server identity
2047 */
2048
2049 context->protocols[0].callback(context, NULL,
2050 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS,
2051 context->ssl_client_ctx, NULL, 0);
Andy Green90c7cbc2011-01-27 06:26:52 +00002052 }
Andy Greena1ce6be2013-01-18 11:43:21 +08002053#endif
Andy Green6ee372f2012-04-09 15:09:01 +08002054
Andy Greenc6bf2c22011-02-20 11:10:47 +00002055 /* as a server, are we requiring clients to identify themselves? */
2056
Andy Greenb5b23192013-02-11 17:13:32 +08002057 if (info->options &
2058 LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT) {
Andy Greenc6bf2c22011-02-20 11:10:47 +00002059
2060 /* absolutely require the client cert */
Andy Green6ee372f2012-04-09 15:09:01 +08002061
Peter Hinz56885f32011-03-02 22:03:47 +00002062 SSL_CTX_set_verify(context->ssl_ctx,
Andy Green6901cb32011-02-21 08:06:47 +00002063 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
2064 OpenSSL_verify_callback);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002065
2066 /*
2067 * give user code a chance to load certs into the server
2068 * allowing it to verify incoming client certs
2069 */
2070
Peter Hinz56885f32011-03-02 22:03:47 +00002071 context->protocols[0].callback(context, NULL,
Andy Greenc6bf2c22011-02-20 11:10:47 +00002072 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS,
Peter Hinz56885f32011-03-02 22:03:47 +00002073 context->ssl_ctx, NULL, 0);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002074 }
2075
Peter Hinz56885f32011-03-02 22:03:47 +00002076 if (context->use_ssl) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002077
2078 /* openssl init for server sockets */
2079
Andy Green3faa9c72010-11-08 17:03:03 +00002080 /* set the local certificate from CertFile */
David Galeano9b3d4b22013-01-10 10:11:21 +08002081 n = SSL_CTX_use_certificate_chain_file(context->ssl_ctx,
Andy Green1b265272013-02-09 14:01:09 +08002082 info->ssl_cert_filepath);
Andy Green3faa9c72010-11-08 17:03:03 +00002083 if (n != 1) {
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002084 lwsl_err("problem getting cert '%s' %lu: %s\n",
Andy Green1b265272013-02-09 14:01:09 +08002085 info->ssl_cert_filepath,
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002086 ERR_get_error(),
Andy Greenb5b23192013-02-11 17:13:32 +08002087 ERR_error_string(ERR_get_error(),
2088 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002089 goto bail;
Andy Green3faa9c72010-11-08 17:03:03 +00002090 }
2091 /* set the private key from KeyFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002092 if (SSL_CTX_use_PrivateKey_file(context->ssl_ctx,
Andy Green1b265272013-02-09 14:01:09 +08002093 info->ssl_private_key_filepath,
2094 SSL_FILETYPE_PEM) != 1) {
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002095 lwsl_err("ssl problem getting key '%s' %lu: %s\n",
Andy Greenb5b23192013-02-11 17:13:32 +08002096 info->ssl_private_key_filepath,
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002097 ERR_get_error(),
Andy Greenb5b23192013-02-11 17:13:32 +08002098 ERR_error_string(ERR_get_error(),
2099 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002100 goto bail;
Andy Green3faa9c72010-11-08 17:03:03 +00002101 }
2102 /* verify private key */
Peter Hinz56885f32011-03-02 22:03:47 +00002103 if (!SSL_CTX_check_private_key(context->ssl_ctx)) {
Andy Green43db0452013-01-10 19:50:35 +08002104 lwsl_err("Private SSL key doesn't match cert\n");
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002105 goto bail;
Andy Green3faa9c72010-11-08 17:03:03 +00002106 }
2107
2108 /* SSL is happy and has a cert it's content with */
2109 }
2110#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002111
Andy Greena1ce6be2013-01-18 11:43:21 +08002112#ifndef LWS_NO_SERVER
Andy Greenb45993c2010-12-18 15:13:50 +00002113 /* set up our external listening socket we serve on */
Andy Green8f037e42010-12-19 22:13:26 +00002114
Andy Green1b265272013-02-09 14:01:09 +08002115 if (info->port) {
Andy Greena1ce6be2013-01-18 11:43:21 +08002116 int sockfd;
Andy Green8f037e42010-12-19 22:13:26 +00002117
Andy Green4739e5c2011-01-22 12:51:57 +00002118 sockfd = socket(AF_INET, SOCK_STREAM, 0);
2119 if (sockfd < 0) {
Andy Greenf7609e92013-01-14 13:10:55 +08002120 lwsl_err("ERROR opening socket\n");
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002121 goto bail;
Andy Green4739e5c2011-01-22 12:51:57 +00002122 }
Andy Green775c0dd2010-10-29 14:15:22 +01002123
Joakim Soderberg4c531232013-02-06 15:26:58 +09002124#ifndef WIN32
Andy Greenb5b23192013-02-11 17:13:32 +08002125 /*
2126 * allow us to restart even if old sockets in TIME_WAIT
2127 * (REUSEADDR on Unix means, "don't hang on to this
2128 * address after the listener is closed." On Windows, though,
2129 * it means "don't keep other processes from binding to
2130 * this address while we're using it)
2131 */
Andy Green6ee372f2012-04-09 15:09:01 +08002132 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR,
2133 (const void *)&opt, sizeof(opt));
Joakim Soderberg4c531232013-02-06 15:26:58 +09002134#endif
Andy Green6c939552011-03-08 08:56:57 +00002135
2136 /* Disable Nagle */
2137 opt = 1;
Andy Green6ee372f2012-04-09 15:09:01 +08002138 setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY,
2139 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00002140
Joakim Soderberg4c531232013-02-06 15:26:58 +09002141 #ifdef WIN32
2142 opt = 0;
Andy Greenb5b23192013-02-11 17:13:32 +08002143 ioctlsocket(sockfd, FIONBIO, (unsigned long *)&opt);
Joakim Soderberg4c531232013-02-06 15:26:58 +09002144 #else
Andy Greene2160712013-01-28 12:19:10 +08002145 fcntl(sockfd, F_SETFL, O_NONBLOCK);
Joakim Soderberg4c531232013-02-06 15:26:58 +09002146 #endif
Andy Greene2160712013-01-28 12:19:10 +08002147
Andy Green4739e5c2011-01-22 12:51:57 +00002148 bzero((char *) &serv_addr, sizeof(serv_addr));
2149 serv_addr.sin_family = AF_INET;
Joakim Soderberg63ff1202013-02-11 17:52:23 +01002150 if (info->iface == NULL)
Andy Green32375b72011-02-19 08:32:53 +00002151 serv_addr.sin_addr.s_addr = INADDR_ANY;
2152 else
Joakim Soderberg63ff1202013-02-11 17:52:23 +01002153 interface_to_sa(info->iface, &serv_addr,
Andy Green32375b72011-02-19 08:32:53 +00002154 sizeof(serv_addr));
Andy Green1b265272013-02-09 14:01:09 +08002155 serv_addr.sin_port = htons(info->port);
Andy Green4739e5c2011-01-22 12:51:57 +00002156
2157 n = bind(sockfd, (struct sockaddr *) &serv_addr,
2158 sizeof(serv_addr));
2159 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08002160 lwsl_err("ERROR on binding to port %d (%d %d)\n",
Andy Green1b265272013-02-09 14:01:09 +08002161 info->port, n, errno);
Andy Green41c58032013-01-12 13:21:08 +08002162 close(sockfd);
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002163 goto bail;
Andy Green4739e5c2011-01-22 12:51:57 +00002164 }
Andy Green0d338332011-02-12 11:57:43 +00002165
Andy Greenb5b23192013-02-11 17:13:32 +08002166 wsi = (struct libwebsocket *)malloc(
2167 sizeof(struct libwebsocket));
Andy Green41c58032013-01-12 13:21:08 +08002168 if (wsi == NULL) {
2169 lwsl_err("Out of mem\n");
2170 close(sockfd);
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002171 goto bail;
Andy Green41c58032013-01-12 13:21:08 +08002172 }
Andy Greenb5b23192013-02-11 17:13:32 +08002173 memset(wsi, 0, sizeof(struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00002174 wsi->sock = sockfd;
Andy Green3182ece2013-01-20 17:08:31 +08002175#ifndef LWS_NO_EXTENSIONS
Andy Greend6e09112011-03-05 16:12:15 +00002176 wsi->count_active_extensions = 0;
Andy Green3182ece2013-01-20 17:08:31 +08002177#endif
Andy Green0d338332011-02-12 11:57:43 +00002178 wsi->mode = LWS_CONNMODE_SERVER_LISTENER;
Andy Greendfb23042013-01-17 12:26:48 +08002179
2180 insert_wsi_socket_into_fds(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002181
Andy Green65b0e912013-01-16 07:59:47 +08002182 context->listen_service_modulo = LWS_LISTEN_SERVICE_MODULO;
2183 context->listen_service_count = 0;
2184 context->listen_service_fd = sockfd;
2185
Andy Greena824d182013-01-15 20:52:29 +08002186 listen(sockfd, LWS_SOMAXCONN);
Andy Green1b265272013-02-09 14:01:09 +08002187 lwsl_notice(" Listening on port %d\n", info->port);
Andy Green8f037e42010-12-19 22:13:26 +00002188 }
Andy Greena1ce6be2013-01-18 11:43:21 +08002189#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002190
Andy Green6ee372f2012-04-09 15:09:01 +08002191 /*
2192 * drop any root privs for this process
2193 * to listen on port < 1023 we would have needed root, but now we are
2194 * listening, we don't want the power for anything else
2195 */
Peter Hinz56885f32011-03-02 22:03:47 +00002196#ifdef WIN32
2197#else
Andy Green1b265272013-02-09 14:01:09 +08002198 if (info->gid != -1)
2199 if (setgid(info->gid))
Andy Green43db0452013-01-10 19:50:35 +08002200 lwsl_warn("setgid: %s\n", strerror(errno));
Andy Green1b265272013-02-09 14:01:09 +08002201 if (info->uid != -1)
2202 if (setuid(info->uid))
Andy Green43db0452013-01-10 19:50:35 +08002203 lwsl_warn("setuid: %s\n", strerror(errno));
Peter Hinz56885f32011-03-02 22:03:47 +00002204#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002205
Andy Green6f520a52013-01-29 17:57:39 +08002206 /* initialize supported protocols */
Andy Greenb45993c2010-12-18 15:13:50 +00002207
Peter Hinz56885f32011-03-02 22:03:47 +00002208 for (context->count_protocols = 0;
Andy Green1b265272013-02-09 14:01:09 +08002209 info->protocols[context->count_protocols].callback;
Peter Hinz56885f32011-03-02 22:03:47 +00002210 context->count_protocols++) {
Andy Green2d1301e2011-05-24 10:14:41 +01002211
Andy Green43db0452013-01-10 19:50:35 +08002212 lwsl_parser(" Protocol: %s\n",
Andy Green1b265272013-02-09 14:01:09 +08002213 info->protocols[context->count_protocols].name);
Andy Green2d1301e2011-05-24 10:14:41 +01002214
Andy Green1b265272013-02-09 14:01:09 +08002215 info->protocols[context->count_protocols].owning_server =
2216 context;
2217 info->protocols[context->count_protocols].protocol_index =
Peter Hinz56885f32011-03-02 22:03:47 +00002218 context->count_protocols;
Andy Greena7109e62013-02-11 12:05:54 +08002219
2220 /*
2221 * inform all the protocols that they are doing their one-time
2222 * initialization if they want to
2223 */
2224 info->protocols[context->count_protocols].callback(context,
2225 NULL, LWS_CALLBACK_PROTOCOL_INIT, NULL, NULL, 0);
Andy Greenb45993c2010-12-18 15:13:50 +00002226 }
Andy Greenf5bc1302013-01-21 09:09:52 +08002227
Andy Green3182ece2013-01-20 17:08:31 +08002228#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +01002229 /*
2230 * give all extensions a chance to create any per-context
2231 * allocations they need
2232 */
2233
2234 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_CONSTRUCT;
Andy Green1b265272013-02-09 14:01:09 +08002235 if (info->port)
Andy Greena41314f2011-05-23 10:00:03 +01002236 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_CONSTRUCT;
Andy Greenb5b23192013-02-11 17:13:32 +08002237
Andy Green1b265272013-02-09 14:01:09 +08002238 if (info->extensions) {
2239 ext = info->extensions;
2240 while (ext->callback) {
2241 lwsl_ext(" Extension: %s\n", ext->name);
2242 ext->callback(context, ext, NULL,
Aaron Zinman4550f1d2013-01-10 12:35:18 +08002243 (enum libwebsocket_extension_callback_reasons)m,
2244 NULL, NULL, 0);
Andy Green1b265272013-02-09 14:01:09 +08002245 ext++;
2246 }
Andy Greena41314f2011-05-23 10:00:03 +01002247 }
Andy Green3182ece2013-01-20 17:08:31 +08002248#endif
Peter Hinz56885f32011-03-02 22:03:47 +00002249 return context;
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002250
2251bail:
2252 libwebsocket_context_destroy(context);
2253 return NULL;
Andy Greene92cd172011-01-19 13:11:55 +00002254}
Andy Greenb45993c2010-12-18 15:13:50 +00002255
Andy Greenb45993c2010-12-18 15:13:50 +00002256/**
2257 * libwebsockets_get_protocol() - Returns a protocol pointer from a websocket
Andy Green8f037e42010-12-19 22:13:26 +00002258 * connection.
Andy Greenb45993c2010-12-18 15:13:50 +00002259 * @wsi: pointer to struct websocket you want to know the protocol of
2260 *
Andy Green8f037e42010-12-19 22:13:26 +00002261 *
Andy Green6f520a52013-01-29 17:57:39 +08002262 * Some apis can act on all live connections of a given protocol,
2263 * this is how you can get a pointer to the active protocol if needed.
Andy Greenb45993c2010-12-18 15:13:50 +00002264 */
Andy Greenab990e42010-10-31 12:42:52 +00002265
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002266LWS_VISIBLE const struct libwebsocket_protocols *
Andy Greenb45993c2010-12-18 15:13:50 +00002267libwebsockets_get_protocol(struct libwebsocket *wsi)
2268{
2269 return wsi->protocol;
2270}
2271
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002272LWS_VISIBLE int
Andy Green82c3d542011-03-07 21:16:31 +00002273libwebsocket_is_final_fragment(struct libwebsocket *wsi)
2274{
Andy Green623a98d2013-01-21 11:04:23 +08002275 return wsi->u.ws.final;
Andy Green82c3d542011-03-07 21:16:31 +00002276}
Alex Bligh49146db2011-11-07 17:19:25 +08002277
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002278LWS_VISIBLE unsigned char
David Galeanoe2cf9922013-01-09 18:06:55 +08002279libwebsocket_get_reserved_bits(struct libwebsocket *wsi)
2280{
Andy Green623a98d2013-01-21 11:04:23 +08002281 return wsi->u.ws.rsv;
David Galeanoe2cf9922013-01-09 18:06:55 +08002282}
2283
Andy Green2af4d5b2013-02-18 16:30:10 +08002284int
Alex Bligh49146db2011-11-07 17:19:25 +08002285libwebsocket_ensure_user_space(struct libwebsocket *wsi)
2286{
Andy Green67d556c2013-02-15 22:31:55 +08002287 if (!wsi->protocol)
Andy Green2af4d5b2013-02-18 16:30:10 +08002288 return 1;
Andy Green67d556c2013-02-15 22:31:55 +08002289
Alex Bligh49146db2011-11-07 17:19:25 +08002290 /* allocate the per-connection user memory (if any) */
2291
2292 if (wsi->protocol->per_session_data_size && !wsi->user_space) {
2293 wsi->user_space = malloc(
2294 wsi->protocol->per_session_data_size);
2295 if (wsi->user_space == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08002296 lwsl_err("Out of memory for conn user space\n");
Andy Green2af4d5b2013-02-18 16:30:10 +08002297 return 1;
Alex Bligh49146db2011-11-07 17:19:25 +08002298 }
Andy Green6ee372f2012-04-09 15:09:01 +08002299 memset(wsi->user_space, 0,
2300 wsi->protocol->per_session_data_size);
Alex Bligh49146db2011-11-07 17:19:25 +08002301 }
Andy Green2af4d5b2013-02-18 16:30:10 +08002302 return 0;
Alex Bligh49146db2011-11-07 17:19:25 +08002303}
Andy Green43db0452013-01-10 19:50:35 +08002304
Andy Green0b319092013-01-19 11:17:56 +08002305static void lwsl_emit_stderr(int level, const char *line)
Andy Greende8f27a2013-01-12 09:17:42 +08002306{
Andy Green0b319092013-01-19 11:17:56 +08002307 char buf[300];
2308 struct timeval tv;
Andy Green0b319092013-01-19 11:17:56 +08002309 int n;
2310
2311 gettimeofday(&tv, NULL);
2312
2313 buf[0] = '\0';
2314 for (n = 0; n < LLL_COUNT; n++)
2315 if (level == (1 << n)) {
Andy Green058ba812013-01-19 11:32:18 +08002316 sprintf(buf, "[%ld:%04d] %s: ", tv.tv_sec,
Andy Greenb5b23192013-02-11 17:13:32 +08002317 (int)(tv.tv_usec / 100), log_level_names[n]);
Andy Green0b319092013-01-19 11:17:56 +08002318 break;
2319 }
Andy Greenb5b23192013-02-11 17:13:32 +08002320
Andy Green0b319092013-01-19 11:17:56 +08002321 fprintf(stderr, "%s%s", buf, line);
Andy Greende8f27a2013-01-12 09:17:42 +08002322}
2323
Joakim Soderberg4c531232013-02-06 15:26:58 +09002324#ifdef WIN32
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002325LWS_VISIBLE void lwsl_emit_syslog(int level, const char *line)
Joakim Soderberg4c531232013-02-06 15:26:58 +09002326{
2327 lwsl_emit_stderr(level, line);
2328}
2329#else
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002330LWS_VISIBLE void lwsl_emit_syslog(int level, const char *line)
Andy Greenc11db202013-01-19 11:12:16 +08002331{
2332 int syslog_level = LOG_DEBUG;
2333
2334 switch (level) {
2335 case LLL_ERR:
2336 syslog_level = LOG_ERR;
2337 break;
2338 case LLL_WARN:
2339 syslog_level = LOG_WARNING;
2340 break;
2341 case LLL_NOTICE:
2342 syslog_level = LOG_NOTICE;
2343 break;
2344 case LLL_INFO:
2345 syslog_level = LOG_INFO;
2346 break;
2347 }
Edwin van den Oetelaarf6eeabc2013-01-19 20:01:01 +08002348 syslog(syslog_level, "%s", line);
Andy Greenc11db202013-01-19 11:12:16 +08002349}
Joakim Soderberg4c531232013-02-06 15:26:58 +09002350#endif
Andy Greenc11db202013-01-19 11:12:16 +08002351
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002352LWS_VISIBLE void _lws_log(int filter, const char *format, ...)
Andy Green43db0452013-01-10 19:50:35 +08002353{
Andy Greende8f27a2013-01-12 09:17:42 +08002354 char buf[256];
Andy Green43db0452013-01-10 19:50:35 +08002355 va_list ap;
Andy Green43db0452013-01-10 19:50:35 +08002356
2357 if (!(log_level & filter))
2358 return;
2359
Andy Green43db0452013-01-10 19:50:35 +08002360 va_start(ap, format);
Andy Greenb5b23192013-02-11 17:13:32 +08002361 vsnprintf(buf, sizeof(buf), format, ap);
2362 buf[sizeof(buf) - 1] = '\0';
Andy Greende8f27a2013-01-12 09:17:42 +08002363 va_end(ap);
2364
Andy Green0b319092013-01-19 11:17:56 +08002365 lwsl_emit(filter, buf);
Andy Green43db0452013-01-10 19:50:35 +08002366}
2367
2368/**
2369 * lws_set_log_level() - Set the logging bitfield
2370 * @level: OR together the LLL_ debug contexts you want output from
Andy Greende8f27a2013-01-12 09:17:42 +08002371 * @log_emit_function: NULL to leave it as it is, or a user-supplied
2372 * function to perform log string emission instead of
2373 * the default stderr one.
Andy Green43db0452013-01-10 19:50:35 +08002374 *
Andy Greenc6511a02013-02-19 10:01:48 +08002375 * log level defaults to "err", "warn" and "notice" contexts enabled and
Andy Greende8f27a2013-01-12 09:17:42 +08002376 * emission on stderr.
Andy Green43db0452013-01-10 19:50:35 +08002377 */
2378
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002379LWS_VISIBLE void lws_set_log_level(int level, void (*log_emit_function)(int level,
Andy Greenb5b23192013-02-11 17:13:32 +08002380 const char *line))
Andy Green43db0452013-01-10 19:50:35 +08002381{
2382 log_level = level;
Andy Greende8f27a2013-01-12 09:17:42 +08002383 if (log_emit_function)
2384 lwsl_emit = log_emit_function;
Andy Green43db0452013-01-10 19:50:35 +08002385}