blob: b759b39757526df9fa200f1588812f34e8918540 [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 Green1f4267b2013-10-17 08:09:19 +0800373 if (wsi->u.ws.truncated_send_malloc) {
374 /* not going to be completed... nuke it */
375 free(wsi->u.ws.truncated_send_malloc);
376 wsi->u.ws.truncated_send_malloc = NULL;
377 }
Andy Green54495112013-02-06 21:10:16 +0900378 }
379
Andy Green4b6fbe12011-02-14 08:03:48 +0000380 /* tell the user it's all over for this guy */
381
Andy Greend4302732011-02-28 07:45:29 +0000382 if (wsi->protocol && wsi->protocol->callback &&
Andy Green6ee372f2012-04-09 15:09:01 +0800383 ((old_state == WSI_STATE_ESTABLISHED) ||
384 (old_state == WSI_STATE_RETURNED_CLOSE_ALREADY) ||
385 (old_state == WSI_STATE_AWAITING_CLOSE_ACK))) {
Andy Green43db0452013-01-10 19:50:35 +0800386 lwsl_debug("calling back CLOSED\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000387 wsi->protocol->callback(context, wsi, LWS_CALLBACK_CLOSED,
Andy Greene77ddd82010-11-13 10:03:47 +0000388 wsi->user_space, NULL, 0);
Niall T. Davidsondb761be2013-06-29 10:16:18 +0800389 } else if ( wsi->mode == LWS_CONNMODE_HTTP_SERVING_ACCEPTED ) {
390 lwsl_debug("calling back CLOSED_HTTP\n");
391 context->protocols[0].callback(context, wsi,
392 LWS_CALLBACK_CLOSED_HTTP, wsi->user_space, NULL, 0 );
Andy Greencc012472011-11-07 19:53:23 +0800393 } else
Andy Greenb5b23192013-02-11 17:13:32 +0800394 lwsl_debug("not calling back closed\n");
Andy Green251f6fa2010-11-03 11:13:06 +0000395
Andy Green3182ece2013-01-20 17:08:31 +0800396#ifndef LWS_NO_EXTENSIONS
Andy Greenef660a92011-03-06 10:29:38 +0000397 /* deallocate any active extension contexts */
398
399 for (n = 0; n < wsi->count_active_extensions; n++) {
400 if (!wsi->active_extensions[n]->callback)
401 continue;
402
Andy Green46c2ea02011-03-22 09:04:01 +0000403 wsi->active_extensions[n]->callback(context,
404 wsi->active_extensions[n], wsi,
405 LWS_EXT_CALLBACK_DESTROY,
406 wsi->active_extensions_user[n], NULL, 0);
Andy Greenef660a92011-03-06 10:29:38 +0000407
408 free(wsi->active_extensions_user[n]);
409 }
410
Andy Greena41314f2011-05-23 10:00:03 +0100411 /*
412 * inform all extensions in case they tracked this guy out of band
413 * even though not active on him specifically
414 */
415
416 ext = context->extensions;
417 while (ext && ext->callback) {
418 ext->callback(context, ext, wsi,
419 LWS_EXT_CALLBACK_DESTROY_ANY_WSI_CLOSING,
420 NULL, NULL, 0);
421 ext++;
422 }
Andy Green3182ece2013-01-20 17:08:31 +0800423#endif
Andy Greena41314f2011-05-23 10:00:03 +0100424
Andy Green43db0452013-01-10 19:50:35 +0800425/* lwsl_info("closing fd=%d\n", wsi->sock); */
Andy Green251f6fa2010-11-03 11:13:06 +0000426
Andy Green3faa9c72010-11-08 17:03:03 +0000427#ifdef LWS_OPENSSL_SUPPORT
Andy Green90c7cbc2011-01-27 06:26:52 +0000428 if (wsi->ssl) {
Andy Green3faa9c72010-11-08 17:03:03 +0000429 n = SSL_get_fd(wsi->ssl);
430 SSL_shutdown(wsi->ssl);
Andy Green3fc2c652013-01-14 15:35:02 +0800431 compatible_close(n);
Andy Green3faa9c72010-11-08 17:03:03 +0000432 SSL_free(wsi->ssl);
433 } else {
434#endif
Andy Green0303db42013-01-17 14:46:43 +0800435 if (wsi->sock) {
436 n = shutdown(wsi->sock, SHUT_RDWR);
437 if (n)
Andy Greenb5b23192013-02-11 17:13:32 +0800438 lwsl_debug("closing: shutdown returned %d\n",
439 errno);
Andy Green3fc2c652013-01-14 15:35:02 +0800440
Andy Green0303db42013-01-17 14:46:43 +0800441 n = compatible_close(wsi->sock);
442 if (n)
Andy Greenb5b23192013-02-11 17:13:32 +0800443 lwsl_debug("closing: close returned %d\n",
444 errno);
Andy Green0303db42013-01-17 14:46:43 +0800445 }
Andy Green3faa9c72010-11-08 17:03:03 +0000446#ifdef LWS_OPENSSL_SUPPORT
447 }
448#endif
Andy Greenb5b23192013-02-11 17:13:32 +0800449 if (wsi->protocol && wsi->protocol->per_session_data_size &&
450 wsi->user_space) /* user code may own */
Andy Green4f3943a2010-11-12 10:44:16 +0000451 free(wsi->user_space);
452
Andy Green251f6fa2010-11-03 11:13:06 +0000453 free(wsi);
454}
455
Andy Green07034092011-02-13 08:37:12 +0000456/**
457 * libwebsockets_get_peer_addresses() - Get client address information
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800458 * @context: Libwebsockets context
459 * @wsi: Local struct libwebsocket associated with
Andy Green07034092011-02-13 08:37:12 +0000460 * @fd: Connection socket descriptor
461 * @name: Buffer to take client address name
462 * @name_len: Length of client address name buffer
463 * @rip: Buffer to take client address IP qotted quad
464 * @rip_len: Length of client address IP buffer
465 *
466 * This function fills in @name and @rip with the name and IP of
Andy Green6ee372f2012-04-09 15:09:01 +0800467 * the client connected with socket descriptor @fd. Names may be
468 * truncated if there is not enough room. If either cannot be
469 * determined, they will be returned as valid zero-length strings.
Andy Green07034092011-02-13 08:37:12 +0000470 */
471
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800472LWS_VISIBLE void
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800473libwebsockets_get_peer_addresses(struct libwebsocket_context *context,
474 struct libwebsocket *wsi, int fd, char *name, int name_len,
Andy Green07034092011-02-13 08:37:12 +0000475 char *rip, int rip_len)
476{
Bob Robertsac049112013-04-25 09:16:30 +0800477 socklen_t len;
Andy Green07034092011-02-13 08:37:12 +0000478 struct sockaddr_in sin;
479 struct hostent *host;
480 struct hostent *host1;
481 char ip[128];
Andy Greenf92def72011-03-09 15:02:20 +0000482 unsigned char *p;
Andy Green07034092011-02-13 08:37:12 +0000483 int n;
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800484 int ret = -1;
David Galeanocb193682013-01-09 15:29:00 +0800485#ifdef AF_LOCAL
Andy Greenb5b23192013-02-11 17:13:32 +0800486 struct sockaddr_un *un;
David Galeanocb193682013-01-09 15:29:00 +0800487#endif
Andy Green07034092011-02-13 08:37:12 +0000488
489 rip[0] = '\0';
490 name[0] = '\0';
491
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800492 lws_latency_pre(context, wsi);
493
Andy Greenb5b23192013-02-11 17:13:32 +0800494 len = sizeof(sin);
Andy Green07034092011-02-13 08:37:12 +0000495 if (getpeername(fd, (struct sockaddr *) &sin, &len) < 0) {
496 perror("getpeername");
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800497 goto bail;
Andy Green07034092011-02-13 08:37:12 +0000498 }
Andy Green6ee372f2012-04-09 15:09:01 +0800499
Andy Greenb5b23192013-02-11 17:13:32 +0800500 host = gethostbyaddr((char *) &sin.sin_addr, sizeof(sin.sin_addr),
Andy Green07034092011-02-13 08:37:12 +0000501 AF_INET);
502 if (host == NULL) {
503 perror("gethostbyaddr");
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800504 goto bail;
Andy Green07034092011-02-13 08:37:12 +0000505 }
506
507 strncpy(name, host->h_name, name_len);
508 name[name_len - 1] = '\0';
509
510 host1 = gethostbyname(host->h_name);
511 if (host1 == NULL)
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800512 goto bail;
Andy Greenf92def72011-03-09 15:02:20 +0000513 p = (unsigned char *)host1;
Andy Green07034092011-02-13 08:37:12 +0000514 n = 0;
515 while (p != NULL) {
Andy Greenf92def72011-03-09 15:02:20 +0000516 p = (unsigned char *)host1->h_addr_list[n++];
Andy Green07034092011-02-13 08:37:12 +0000517 if (p == NULL)
518 continue;
Peter Hinzbb45a902011-03-10 18:14:01 +0000519 if ((host1->h_addrtype != AF_INET)
520#ifdef AF_LOCAL
521 && (host1->h_addrtype != AF_LOCAL)
522#endif
523 )
Andy Green07034092011-02-13 08:37:12 +0000524 continue;
525
Andy Green7627af52011-03-09 15:13:52 +0000526 if (host1->h_addrtype == AF_INET)
527 sprintf(ip, "%u.%u.%u.%u", p[0], p[1], p[2], p[3]);
Peter Hinzbb45a902011-03-10 18:14:01 +0000528#ifdef AF_LOCAL
Andy Green7627af52011-03-09 15:13:52 +0000529 else {
530 un = (struct sockaddr_un *)p;
Andy Green6ee372f2012-04-09 15:09:01 +0800531 strncpy(ip, un->sun_path, sizeof(ip) - 1);
Andy Green7627af52011-03-09 15:13:52 +0000532 ip[sizeof(ip) - 1] = '\0';
533 }
Peter Hinzbb45a902011-03-10 18:14:01 +0000534#endif
Andy Green07034092011-02-13 08:37:12 +0000535 p = NULL;
536 strncpy(rip, ip, rip_len);
537 rip[rip_len - 1] = '\0';
538 }
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800539
540 ret = 0;
541bail:
542 lws_latency(context, wsi, "libwebsockets_get_peer_addresses", ret, 1);
Andy Green07034092011-02-13 08:37:12 +0000543}
Andy Green9f990342011-02-12 11:57:45 +0000544
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800545LWS_VISIBLE int libwebsockets_get_random(struct libwebsocket_context *context,
Peter Hinz56885f32011-03-02 22:03:47 +0000546 void *buf, int len)
547{
548 int n;
Aaron Zinman4550f1d2013-01-10 12:35:18 +0800549 char *p = (char *)buf;
Peter Hinz56885f32011-03-02 22:03:47 +0000550
551#ifdef WIN32
552 for (n = 0; n < len; n++)
553 p[n] = (unsigned char)rand();
554#else
555 n = read(context->fd_random, p, len);
556#endif
557
558 return n;
559}
560
Andy Greena690cd02013-02-09 12:25:31 +0800561int lws_set_socket_options(struct libwebsocket_context *context, int fd)
562{
563 int optval = 1;
564 socklen_t optlen = sizeof(optval);
565#ifdef WIN32
566 unsigned long optl = 0;
567#endif
568#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__)
569 struct protoent *tcp_proto;
570#endif
571
572 if (context->ka_time) {
573 /* enable keepalive on this socket */
574 optval = 1;
575 if (setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE,
576 (const void *)&optval, optlen) < 0)
577 return 1;
578
Bob Robertsac049112013-04-25 09:16:30 +0800579#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__CYGWIN__)
Andy Greena47865f2013-02-10 09:39:47 +0800580
581 /*
582 * didn't find a way to set these per-socket, need to
583 * tune kernel systemwide values
584 */
Joakim Soderberg63ff1202013-02-11 17:52:23 +0100585#elif WIN32
586 {
587 DWORD dwBytesRet;
588 struct tcp_keepalive alive;
589 alive.onoff = TRUE;
590 alive.keepalivetime = context->ka_time;
591 alive.keepaliveinterval = context->ka_interval;
Andy Greena47865f2013-02-10 09:39:47 +0800592
Joakim Soderberg63ff1202013-02-11 17:52:23 +0100593 if (WSAIoctl(fd, SIO_KEEPALIVE_VALS, &alive, sizeof(alive),
594 NULL, 0, &dwBytesRet, NULL, NULL))
595 return 1;
596 }
Andy Greena47865f2013-02-10 09:39:47 +0800597#else
Andy Greena690cd02013-02-09 12:25:31 +0800598 /* set the keepalive conditions we want on it too */
599 optval = context->ka_time;
600 if (setsockopt(fd, IPPROTO_IP, TCP_KEEPIDLE,
601 (const void *)&optval, optlen) < 0)
602 return 1;
603
Larry Hayesbb66ac62013-02-22 09:16:20 +0800604 optval = context->ka_interval;
Andy Greena690cd02013-02-09 12:25:31 +0800605 if (setsockopt(fd, IPPROTO_IP, TCP_KEEPINTVL,
606 (const void *)&optval, optlen) < 0)
607 return 1;
608
Larry Hayesbb66ac62013-02-22 09:16:20 +0800609 optval = context->ka_probes;
Andy Greena690cd02013-02-09 12:25:31 +0800610 if (setsockopt(fd, IPPROTO_IP, TCP_KEEPCNT,
611 (const void *)&optval, optlen) < 0)
612 return 1;
Andy Greena47865f2013-02-10 09:39:47 +0800613#endif
Andy Greena690cd02013-02-09 12:25:31 +0800614 }
615
616 /* Disable Nagle */
617 optval = 1;
618#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__NetBSD__)
619 setsockopt(fd, SOL_TCP, TCP_NODELAY, (const void *)&optval, optlen);
620#else
621 tcp_proto = getprotobyname("TCP");
622 setsockopt(fd, tcp_proto->p_proto, TCP_NODELAY, &optval, optlen);
623#endif
624
625 /* We are nonblocking... */
626#ifdef WIN32
627 ioctlsocket(fd, FIONBIO, &optl);
628#else
629 fcntl(fd, F_SETFL, O_NONBLOCK);
630#endif
631
632 return 0;
633}
634
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800635LWS_VISIBLE int lws_send_pipe_choked(struct libwebsocket *wsi)
Andy Green95a7b5d2011-03-06 10:29:39 +0000636{
637 struct pollfd fds;
638
639 fds.fd = wsi->sock;
640 fds.events = POLLOUT;
641 fds.revents = 0;
642
643 if (poll(&fds, 1, 0) != 1)
644 return 1;
645
646 if ((fds.revents & POLLOUT) == 0)
647 return 1;
648
649 /* okay to send another packet without blocking */
650
651 return 0;
652}
653
Andy Greena41314f2011-05-23 10:00:03 +0100654int
Andy Green3b84c002011-03-06 13:14:42 +0000655lws_handle_POLLOUT_event(struct libwebsocket_context *context,
656 struct libwebsocket *wsi, struct pollfd *pollfd)
657{
Andy Green3b84c002011-03-06 13:14:42 +0000658 int n;
Andy Green6f520a52013-01-29 17:57:39 +0800659
Andy Green3182ece2013-01-20 17:08:31 +0800660#ifndef LWS_NO_EXTENSIONS
661 struct lws_tokens eff_buf;
Andy Green3b84c002011-03-06 13:14:42 +0000662 int ret;
663 int m;
Andy Greena41314f2011-05-23 10:00:03 +0100664 int handled = 0;
Andy Green3b84c002011-03-06 13:14:42 +0000665
Andy Green1f4267b2013-10-17 08:09:19 +0800666 /* pending truncated sends have uber priority */
667
668 if (wsi->u.ws.truncated_send_malloc) {
669 lws_issue_raw(wsi, wsi->u.ws.truncated_send_malloc +
670 wsi->u.ws.truncated_send_offset,
671 wsi->u.ws.truncated_send_len);
672 /* leave POLLOUT active either way */
673 return 0;
674 }
675
Andy Greena41314f2011-05-23 10:00:03 +0100676 for (n = 0; n < wsi->count_active_extensions; n++) {
677 if (!wsi->active_extensions[n]->callback)
678 continue;
679
680 m = wsi->active_extensions[n]->callback(context,
681 wsi->active_extensions[n], wsi,
682 LWS_EXT_CALLBACK_IS_WRITEABLE,
683 wsi->active_extensions_user[n], NULL, 0);
684 if (m > handled)
685 handled = m;
686 }
687
688 if (handled == 1)
689 goto notify_action;
690
691 if (!wsi->extension_data_pending || handled == 2)
Andy Green3b84c002011-03-06 13:14:42 +0000692 goto user_service;
693
694 /*
695 * check in on the active extensions, see if they
696 * had pending stuff to spill... they need to get the
697 * first look-in otherwise sequence will be disordered
698 *
699 * NULL, zero-length eff_buf means just spill pending
700 */
701
702 ret = 1;
703 while (ret == 1) {
704
705 /* default to nobody has more to spill */
706
707 ret = 0;
708 eff_buf.token = NULL;
709 eff_buf.token_len = 0;
710
711 /* give every extension a chance to spill */
712
713 for (n = 0; n < wsi->count_active_extensions; n++) {
714 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000715 wsi->protocol->owning_server,
716 wsi->active_extensions[n], wsi,
Andy Green3b84c002011-03-06 13:14:42 +0000717 LWS_EXT_CALLBACK_PACKET_TX_PRESEND,
718 wsi->active_extensions_user[n], &eff_buf, 0);
719 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800720 lwsl_err("ext reports fatal error\n");
Andy Green3b84c002011-03-06 13:14:42 +0000721 return -1;
722 }
723 if (m)
724 /*
725 * at least one extension told us he has more
726 * to spill, so we will go around again after
727 */
728 ret = 1;
729 }
730
731 /* assuming they gave us something to send, send it */
732
733 if (eff_buf.token_len) {
Andy Greenfc7c5e42013-02-23 10:50:10 +0800734 n = lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
735 eff_buf.token_len);
736 if (n < 0)
Andy Green3b84c002011-03-06 13:14:42 +0000737 return -1;
Andy Greenfc7c5e42013-02-23 10:50:10 +0800738 /*
739 * Keep amount spilled small to minimize chance of this
740 */
741 if (n != eff_buf.token_len) {
742 lwsl_err("Unable to spill ext %d vs %s\n",
743 eff_buf.token_len, n);
744 return -1;
745 }
Andy Green3b84c002011-03-06 13:14:42 +0000746 } else
747 continue;
748
749 /* no extension has more to spill */
750
751 if (!ret)
752 continue;
753
754 /*
755 * There's more to spill from an extension, but we just sent
756 * something... did that leave the pipe choked?
757 */
758
759 if (!lws_send_pipe_choked(wsi))
760 /* no we could add more */
761 continue;
762
Andy Green43db0452013-01-10 19:50:35 +0800763 lwsl_info("choked in POLLOUT service\n");
Andy Green3b84c002011-03-06 13:14:42 +0000764
765 /*
766 * Yes, he's choked. Leave the POLLOUT masked on so we will
767 * come back here when he is unchoked. Don't call the user
768 * callback to enforce ordering of spilling, he'll get called
769 * when we come back here and there's nothing more to spill.
770 */
771
772 return 0;
773 }
774
775 wsi->extension_data_pending = 0;
776
777user_service:
Andy Green3182ece2013-01-20 17:08:31 +0800778#endif
Andy Green3b84c002011-03-06 13:14:42 +0000779 /* one shot */
780
Andy Greena41314f2011-05-23 10:00:03 +0100781 if (pollfd) {
782 pollfd->events &= ~POLLOUT;
Andy Green3b84c002011-03-06 13:14:42 +0000783
Andy Greena41314f2011-05-23 10:00:03 +0100784 /* external POLL support via protocol 0 */
785 context->protocols[0].callback(context, wsi,
786 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
Andy Green50097dd2013-02-15 22:36:30 +0800787 wsi->user_space, (void *)(long)wsi->sock, POLLOUT);
Andy Greena41314f2011-05-23 10:00:03 +0100788 }
Andy Green3182ece2013-01-20 17:08:31 +0800789#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +0100790notify_action:
Andy Green3182ece2013-01-20 17:08:31 +0800791#endif
Andy Green3b84c002011-03-06 13:14:42 +0000792
Andy Green9e4c2b62011-03-07 20:47:39 +0000793 if (wsi->mode == LWS_CONNMODE_WS_CLIENT)
794 n = LWS_CALLBACK_CLIENT_WRITEABLE;
795 else
796 n = LWS_CALLBACK_SERVER_WRITEABLE;
797
Andy Greenb8b247d2013-01-22 07:20:08 +0800798 return user_callback_handle_rxflow(wsi->protocol->callback, context,
Andy Greenb5b23192013-02-11 17:13:32 +0800799 wsi, (enum libwebsocket_callback_reasons) n,
800 wsi->user_space, NULL, 0);
Andy Green3b84c002011-03-06 13:14:42 +0000801}
802
803
804
Andy Green1c6e1422013-02-20 19:11:31 +0800805int
Andy Greena41314f2011-05-23 10:00:03 +0100806libwebsocket_service_timeout_check(struct libwebsocket_context *context,
807 struct libwebsocket *wsi, unsigned int sec)
808{
Andy Green3182ece2013-01-20 17:08:31 +0800809#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +0100810 int n;
811
812 /*
813 * if extensions want in on it (eg, we are a mux parent)
814 * give them a chance to service child timeouts
815 */
816
817 for (n = 0; n < wsi->count_active_extensions; n++)
818 wsi->active_extensions[n]->callback(
819 context, wsi->active_extensions[n],
820 wsi, LWS_EXT_CALLBACK_1HZ,
821 wsi->active_extensions_user[n], NULL, sec);
822
Andy Green3182ece2013-01-20 17:08:31 +0800823#endif
Andy Greena41314f2011-05-23 10:00:03 +0100824 if (!wsi->pending_timeout)
Andy Green1c6e1422013-02-20 19:11:31 +0800825 return 0;
Andy Green6ee372f2012-04-09 15:09:01 +0800826
Andy Greena41314f2011-05-23 10:00:03 +0100827 /*
828 * if we went beyond the allowed time, kill the
829 * connection
830 */
831
832 if (sec > wsi->pending_timeout_limit) {
Andy Green43db0452013-01-10 19:50:35 +0800833 lwsl_info("TIMEDOUT WAITING\n");
Andy Greena41314f2011-05-23 10:00:03 +0100834 libwebsocket_close_and_free_session(context,
835 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Green1c6e1422013-02-20 19:11:31 +0800836 return 1;
Andy Greena41314f2011-05-23 10:00:03 +0100837 }
Andy Green1c6e1422013-02-20 19:11:31 +0800838
839 return 0;
Andy Greena41314f2011-05-23 10:00:03 +0100840}
841
Andy Green9f990342011-02-12 11:57:45 +0000842/**
843 * libwebsocket_service_fd() - Service polled socket with something waiting
Peter Hinz56885f32011-03-02 22:03:47 +0000844 * @context: Websocket context
Andy Green9f990342011-02-12 11:57:45 +0000845 * @pollfd: The pollfd entry describing the socket fd and which events
Andy Green6ee372f2012-04-09 15:09:01 +0800846 * happened.
Andy Green9f990342011-02-12 11:57:45 +0000847 *
Andy Green75006172013-01-22 12:32:11 +0800848 * This function takes a pollfd that has POLLIN or POLLOUT activity and
Andy Greenb5b23192013-02-11 17:13:32 +0800849 * services it according to the state of the associated
850 * struct libwebsocket.
Andy Green75006172013-01-22 12:32:11 +0800851 *
852 * The one call deals with all "service" that might happen on a socket
853 * including listen accepts, http files as well as websocket protocol.
Andy Green2577c832013-03-11 20:37:03 +0800854 *
855 * If a pollfd says it has something, you can just pass it to
856 * libwebsocket_serice_fd() whether it is a socket handled by lws or not.
857 * If it sees it is a lws socket, the traffic will be handled and
858 * pollfd->revents will be zeroed now.
859 *
860 * If the socket is foreign to lws, it leaves revents alone. So you can
861 * see if you should service yourself by checking the pollfd revents
862 * after letting lws try to service it.
Andy Green9f990342011-02-12 11:57:45 +0000863 */
864
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800865LWS_VISIBLE int
Peter Hinz56885f32011-03-02 22:03:47 +0000866libwebsocket_service_fd(struct libwebsocket_context *context,
Andy Green0d338332011-02-12 11:57:43 +0000867 struct pollfd *pollfd)
Andy Greenb45993c2010-12-18 15:13:50 +0000868{
Andy Greena1ce6be2013-01-18 11:43:21 +0800869 struct libwebsocket *wsi;
Andy Greenb45993c2010-12-18 15:13:50 +0000870 int n;
Andy Green0d338332011-02-12 11:57:43 +0000871 int m;
Andy Greenf0b79e22013-02-10 10:46:45 +0800872 int listen_socket_fds_index = 0;
Andy Greena71eafc2011-02-14 17:59:43 +0000873 struct timeval tv;
Andy Green1c6e1422013-02-20 19:11:31 +0800874 int timed_out = 0;
875 int our_fd = 0;
Andy Greenca0a1292013-03-16 11:24:23 +0800876 char draining_flow = 0;
Andy Green6f520a52013-01-29 17:57:39 +0800877
Andy Green3182ece2013-01-20 17:08:31 +0800878#ifndef LWS_NO_EXTENSIONS
Andy Green2366b1c2011-03-06 13:15:31 +0000879 int more = 1;
Andy Green3182ece2013-01-20 17:08:31 +0800880#endif
Andy Green98a717c2011-03-06 13:14:15 +0000881 struct lws_tokens eff_buf;
Andy Greenf0b79e22013-02-10 10:46:45 +0800882
883 if (context->listen_service_fd)
884 listen_socket_fds_index = context->lws_lookup[
885 context->listen_service_fd]->position_in_fds_table;
886
Andy Greena71eafc2011-02-14 17:59:43 +0000887 /*
888 * you can call us with pollfd = NULL to just allow the once-per-second
889 * global timeout checks; if less than a second since the last check
890 * it returns immediately then.
891 */
892
893 gettimeofday(&tv, NULL);
894
Peter Hinz56885f32011-03-02 22:03:47 +0000895 if (context->last_timeout_check_s != tv.tv_sec) {
896 context->last_timeout_check_s = tv.tv_sec;
Andy Greena71eafc2011-02-14 17:59:43 +0000897
Joakim Soderberg4c531232013-02-06 15:26:58 +0900898 #ifndef WIN32
Andy Green24cba922013-01-19 13:56:10 +0800899 /* if our parent went down, don't linger around */
Andy Greenb5b23192013-02-11 17:13:32 +0800900 if (context->started_with_parent &&
901 kill(context->started_with_parent, 0) < 0)
Andy Green24cba922013-01-19 13:56:10 +0800902 kill(getpid(), SIGTERM);
Joakim Soderberg4c531232013-02-06 15:26:58 +0900903 #endif
Andy Green24cba922013-01-19 13:56:10 +0800904
Andy Greena71eafc2011-02-14 17:59:43 +0000905 /* global timeout check once per second */
906
Andy Green1c6e1422013-02-20 19:11:31 +0800907 if (pollfd)
908 our_fd = pollfd->fd;
909
Peter Hinz56885f32011-03-02 22:03:47 +0000910 for (n = 0; n < context->fds_count; n++) {
Andy Green1c6e1422013-02-20 19:11:31 +0800911 m = context->fds[n].fd;
912 wsi = context->lws_lookup[m];
913 if (!wsi)
Andy Greendfb23042013-01-17 12:26:48 +0800914 continue;
Andy Green1c6e1422013-02-20 19:11:31 +0800915
916 if (libwebsocket_service_timeout_check(context, wsi,
917 tv.tv_sec))
918 /* he did time out... */
Andy Greenb1a5e6c2013-03-09 12:34:30 +0800919 if (m == our_fd) {
Andy Green1c6e1422013-02-20 19:11:31 +0800920 /* it was the guy we came to service! */
921 timed_out = 1;
Andy Greenb1a5e6c2013-03-09 12:34:30 +0800922 /* mark as handled */
923 pollfd->revents = 0;
924 }
Andy Greena71eafc2011-02-14 17:59:43 +0000925 }
926 }
927
Andy Green1c6e1422013-02-20 19:11:31 +0800928 /* the socket we came to service timed out, nothing to do */
929 if (timed_out)
930 return 0;
931
Andy Greena71eafc2011-02-14 17:59:43 +0000932 /* just here for timeout management? */
Andy Greena71eafc2011-02-14 17:59:43 +0000933 if (pollfd == NULL)
934 return 0;
935
936 /* no, here to service a socket descriptor */
Andy Greenb1a5e6c2013-03-09 12:34:30 +0800937 wsi = context->lws_lookup[pollfd->fd];
938 if (wsi == NULL)
939 /* not lws connection ... leave revents alone and return */
940 return 0;
941
942 /*
943 * so that caller can tell we handled, past here we need to
944 * zero down pollfd->revents after handling
945 */
946
Andy Green65b0e912013-01-16 07:59:47 +0800947 /*
948 * deal with listen service piggybacking
949 * every listen_service_modulo services of other fds, we
950 * sneak one in to service the listen socket if there's anything waiting
951 *
952 * To handle connection storms, as found in ab, if we previously saw a
953 * pending connection here, it causes us to check again next time.
954 */
955
Andy Greenb5b23192013-02-11 17:13:32 +0800956 if (context->listen_service_fd && pollfd !=
957 &context->fds[listen_socket_fds_index]) {
Andy Green65b0e912013-01-16 07:59:47 +0800958 context->listen_service_count++;
959 if (context->listen_service_extraseen ||
Andy Greenb5b23192013-02-11 17:13:32 +0800960 context->listen_service_count ==
961 context->listen_service_modulo) {
Andy Green65b0e912013-01-16 07:59:47 +0800962 context->listen_service_count = 0;
963 m = 1;
964 if (context->listen_service_extraseen > 5)
965 m = 2;
966 while (m--) {
Andy Greenb5b23192013-02-11 17:13:32 +0800967 /*
968 * even with extpoll, we prepared this
969 * internal fds for listen
970 */
971 n = poll(&context->fds[listen_socket_fds_index],
972 1, 0);
973 if (n > 0) { /* there's a conn waiting for us */
974 libwebsocket_service_fd(context,
975 &context->
976 fds[listen_socket_fds_index]);
Andy Green65b0e912013-01-16 07:59:47 +0800977 context->listen_service_extraseen++;
978 } else {
979 if (context->listen_service_extraseen)
Andy Greenb5b23192013-02-11 17:13:32 +0800980 context->
981 listen_service_extraseen--;
Andy Green65b0e912013-01-16 07:59:47 +0800982 break;
983 }
984 }
985 }
986
987 }
988
989 /* okay, what we came here to do... */
990
Andy Green0d338332011-02-12 11:57:43 +0000991 switch (wsi->mode) {
Andy Greend280b6e2013-01-15 13:40:23 +0800992
Andy Greena1ce6be2013-01-18 11:43:21 +0800993#ifndef LWS_NO_SERVER
Andy Greend280b6e2013-01-15 13:40:23 +0800994 case LWS_CONNMODE_HTTP_SERVING:
Andy Green7cf6cb02013-05-19 14:04:10 +0800995 case LWS_CONNMODE_HTTP_SERVING_ACCEPTED:
Andy Green0d338332011-02-12 11:57:43 +0000996 case LWS_CONNMODE_SERVER_LISTENER:
Andy Greene2160712013-01-28 12:19:10 +0800997 case LWS_CONNMODE_SSL_ACK_PENDING:
Andy Greenb1a5e6c2013-03-09 12:34:30 +0800998 n = lws_server_socket_service(context, wsi, pollfd);
999 goto handled;
Andy Greena1ce6be2013-01-18 11:43:21 +08001000#endif
Andy Greenbe93fef2011-02-14 20:25:43 +00001001
Andy Green0d338332011-02-12 11:57:43 +00001002 case LWS_CONNMODE_WS_SERVING:
1003 case LWS_CONNMODE_WS_CLIENT:
1004
1005 /* handle session socket closed */
1006
Simon Wulf502b9942013-05-06 06:11:53 +08001007 if ((!(pollfd->revents & POLLIN)) &&
Andy Greenc9ac31e2013-02-16 10:17:52 +08001008 (pollfd->revents & (POLLERR | POLLHUP))) {
Andy Green0d338332011-02-12 11:57:43 +00001009
Andy Green43db0452013-01-10 19:50:35 +08001010 lwsl_debug("Session Socket %p (fd=%d) dead\n",
Andy Green0d338332011-02-12 11:57:43 +00001011 (void *)wsi, pollfd->fd);
1012
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001013 goto close_and_handled;
Andy Greenb45993c2010-12-18 15:13:50 +00001014 }
1015
Andy Green0d338332011-02-12 11:57:43 +00001016 /* the guy requested a callback when it was OK to write */
1017
Andy Greenda527df2011-03-07 07:08:12 +00001018 if ((pollfd->revents & POLLOUT) &&
Andy Greenca0a1292013-03-16 11:24:23 +08001019 wsi->state == WSI_STATE_ESTABLISHED &&
1020 lws_handle_POLLOUT_event(context, wsi, pollfd) < 0) {
Andy Green0878b9e2013-02-13 11:44:20 +08001021 lwsl_info("libwebsocket_service_fd: closing\n");
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001022 goto close_and_handled;
Andy Green3b84c002011-03-06 13:14:42 +00001023 }
Andy Green0d338332011-02-12 11:57:43 +00001024
Andy Green0d338332011-02-12 11:57:43 +00001025
Andy Greenca0a1292013-03-16 11:24:23 +08001026 if (wsi->u.ws.rxflow_buffer &&
1027 (wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW)) {
1028 lwsl_info("draining rxflow\n");
1029 /* well, drain it */
1030 eff_buf.token = (char *)wsi->u.ws.rxflow_buffer +
1031 wsi->u.ws.rxflow_pos;
1032 eff_buf.token_len = wsi->u.ws.rxflow_len -
1033 wsi->u.ws.rxflow_pos;
1034 draining_flow = 1;
1035 goto drain;
1036 }
1037
Andy Green0d338332011-02-12 11:57:43 +00001038 /* any incoming data ready? */
1039
1040 if (!(pollfd->revents & POLLIN))
1041 break;
1042
Andy Greenb45993c2010-12-18 15:13:50 +00001043#ifdef LWS_OPENSSL_SUPPORT
David Galeano7ffbe1b2013-01-10 10:35:32 +08001044read_pending:
Andy Green467c7ef2013-01-30 12:28:34 +08001045 if (wsi->ssl) {
Andy Greene84652c2013-02-08 13:01:02 +08001046 eff_buf.token_len = SSL_read(wsi->ssl,
1047 context->service_buffer,
Andy Greenb5b23192013-02-11 17:13:32 +08001048 sizeof(context->service_buffer));
Andy Green467c7ef2013-01-30 12:28:34 +08001049 if (!eff_buf.token_len) {
1050 n = SSL_get_error(wsi->ssl, eff_buf.token_len);
Andy Greene84652c2013-02-08 13:01:02 +08001051 lwsl_err("SSL_read returned 0 with reason %s\n",
Andy Greenb5b23192013-02-11 17:13:32 +08001052 ERR_error_string(n,
1053 (char *)context->service_buffer));
Andy Green467c7ef2013-01-30 12:28:34 +08001054 }
1055 } else
Andy Greenb45993c2010-12-18 15:13:50 +00001056#endif
Andy Greene84652c2013-02-08 13:01:02 +08001057 eff_buf.token_len = recv(pollfd->fd,
Andy Greenb5b23192013-02-11 17:13:32 +08001058 context->service_buffer,
1059 sizeof(context->service_buffer), 0);
Andy Greenb45993c2010-12-18 15:13:50 +00001060
Andy Green98a717c2011-03-06 13:14:15 +00001061 if (eff_buf.token_len < 0) {
Andy Green98ba9e02013-03-23 09:44:47 +08001062 lwsl_debug("service_fd read ret = %d, errno = %d\n",
1063 eff_buf.token_len, errno);
Alon Levydc93b7f2012-10-19 11:21:57 +02001064 if (errno != EINTR && errno != EAGAIN)
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001065 goto close_and_handled;
1066 n = 0;
1067 goto handled;
Andy Greenb45993c2010-12-18 15:13:50 +00001068 }
Andy Green98a717c2011-03-06 13:14:15 +00001069 if (!eff_buf.token_len) {
Andy Green98ba9e02013-03-23 09:44:47 +08001070 lwsl_info("service_fd: closing due to 0 length read\n");
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001071 goto close_and_handled;
Andy Greenb45993c2010-12-18 15:13:50 +00001072 }
1073
Andy Green98a717c2011-03-06 13:14:15 +00001074 /*
1075 * give any active extensions a chance to munge the buffer
1076 * before parse. We pass in a pointer to an lws_tokens struct
1077 * prepared with the default buffer and content length that's in
1078 * there. Rather than rewrite the default buffer, extensions
1079 * that expect to grow the buffer can adapt .token to
1080 * point to their own per-connection buffer in the extension
1081 * user allocation. By default with no extensions or no
1082 * extension callback handling, just the normal input buffer is
1083 * used then so it is efficient.
1084 */
Andy Greenb45993c2010-12-18 15:13:50 +00001085
Andy Greene84652c2013-02-08 13:01:02 +08001086 eff_buf.token = (char *)context->service_buffer;
Andy Greenca0a1292013-03-16 11:24:23 +08001087drain:
Andy Green3182ece2013-01-20 17:08:31 +08001088#ifndef LWS_NO_EXTENSIONS
Andy Green98a717c2011-03-06 13:14:15 +00001089 more = 1;
1090 while (more) {
Andy Green0d338332011-02-12 11:57:43 +00001091
Andy Green98a717c2011-03-06 13:14:15 +00001092 more = 0;
1093
1094 for (n = 0; n < wsi->count_active_extensions; n++) {
Andy Green46c2ea02011-03-22 09:04:01 +00001095 m = wsi->active_extensions[n]->callback(context,
1096 wsi->active_extensions[n], wsi,
Andy Green98a717c2011-03-06 13:14:15 +00001097 LWS_EXT_CALLBACK_PACKET_RX_PREPARSE,
Andy Green46c2ea02011-03-22 09:04:01 +00001098 wsi->active_extensions_user[n],
1099 &eff_buf, 0);
Andy Green98a717c2011-03-06 13:14:15 +00001100 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001101 lwsl_ext(
Andy Green6ee372f2012-04-09 15:09:01 +08001102 "Extension reports fatal error\n");
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001103 goto close_and_handled;
Andy Green98a717c2011-03-06 13:14:15 +00001104 }
1105 if (m)
1106 more = 1;
1107 }
Andy Green3182ece2013-01-20 17:08:31 +08001108#endif
Andy Green98a717c2011-03-06 13:14:15 +00001109 /* service incoming data */
1110
1111 if (eff_buf.token_len) {
1112 n = libwebsocket_read(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001113 (unsigned char *)eff_buf.token,
1114 eff_buf.token_len);
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001115 if (n < 0) {
Andy Green98a717c2011-03-06 13:14:15 +00001116 /* we closed wsi */
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001117 n = 0;
1118 goto handled;
1119 }
Andy Green98a717c2011-03-06 13:14:15 +00001120 }
Andy Green3182ece2013-01-20 17:08:31 +08001121#ifndef LWS_NO_EXTENSIONS
Andy Green98a717c2011-03-06 13:14:15 +00001122 eff_buf.token = NULL;
1123 eff_buf.token_len = 0;
1124 }
Andy Green3182ece2013-01-20 17:08:31 +08001125#endif
Andy Greenca0a1292013-03-16 11:24:23 +08001126 if (draining_flow && wsi->u.ws.rxflow_buffer &&
1127 wsi->u.ws.rxflow_pos == wsi->u.ws.rxflow_len) {
1128 lwsl_info("flow buffer: drained\n");
1129 free(wsi->u.ws.rxflow_buffer);
1130 wsi->u.ws.rxflow_buffer = NULL;
1131 /* having drained the rxflow buffer, can rearm POLLIN */
1132 _libwebsocket_rx_flow_control(wsi);
1133 }
David Galeano7ffbe1b2013-01-10 10:35:32 +08001134
1135#ifdef LWS_OPENSSL_SUPPORT
1136 if (wsi->ssl && SSL_pending(wsi->ssl))
1137 goto read_pending;
1138#endif
Andy Green98a717c2011-03-06 13:14:15 +00001139 break;
Andy Green76f61e72013-01-16 11:53:05 +08001140
1141 default:
Andy Green03674a62013-01-16 11:47:40 +08001142#ifdef LWS_NO_CLIENT
1143 break;
1144#else
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001145 n = lws_client_socket_service(context, wsi, pollfd);
1146 goto handled;
Andy Green03674a62013-01-16 11:47:40 +08001147#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001148 }
1149
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001150 n = 0;
1151 goto handled;
1152
1153close_and_handled:
Andy Greenca0a1292013-03-16 11:24:23 +08001154 libwebsocket_close_and_free_session(context, wsi,
1155 LWS_CLOSE_STATUS_NOSTATUS);
1156 n = 1;
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001157
1158handled:
1159 pollfd->revents = 0;
1160 return n;
Andy Greenb45993c2010-12-18 15:13:50 +00001161}
1162
Andy Green0d338332011-02-12 11:57:43 +00001163
Andy Green6964bb52011-01-23 16:50:33 +00001164/**
1165 * libwebsocket_context_destroy() - Destroy the websocket context
Peter Hinz56885f32011-03-02 22:03:47 +00001166 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001167 *
1168 * This function closes any active connections and then frees the
1169 * context. After calling this, any further use of the context is
1170 * undefined.
1171 */
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001172LWS_VISIBLE void
Peter Hinz56885f32011-03-02 22:03:47 +00001173libwebsocket_context_destroy(struct libwebsocket_context *context)
Andy Green6964bb52011-01-23 16:50:33 +00001174{
Andy Green3182ece2013-01-20 17:08:31 +08001175#ifndef LWS_NO_EXTENSIONS
Andy Green0d338332011-02-12 11:57:43 +00001176 int n;
1177 int m;
Andy Greena41314f2011-05-23 10:00:03 +01001178 struct libwebsocket_extension *ext;
Andy Greena7109e62013-02-11 12:05:54 +08001179 struct libwebsocket_protocols *protocol = context->protocols;
Andy Green6964bb52011-01-23 16:50:33 +00001180
Andy Greend636e352013-01-29 12:36:17 +08001181#ifdef LWS_LATENCY
1182 if (context->worst_latency_info[0])
1183 lwsl_notice("Worst latency: %s\n", context->worst_latency_info);
1184#endif
1185
Andy Greendfb23042013-01-17 12:26:48 +08001186 for (n = 0; n < context->fds_count; n++) {
Andy Greenb5b23192013-02-11 17:13:32 +08001187 struct libwebsocket *wsi =
1188 context->lws_lookup[context->fds[n].fd];
Andy Greendfb23042013-01-17 12:26:48 +08001189 libwebsocket_close_and_free_session(context,
Andy Green7b922052013-02-11 11:43:05 +08001190 wsi, LWS_CLOSE_STATUS_NOSTATUS /* no protocol close */);
1191 n--;
Andy Greendfb23042013-01-17 12:26:48 +08001192 }
Andy Green6964bb52011-01-23 16:50:33 +00001193
Andy Greena41314f2011-05-23 10:00:03 +01001194 /*
1195 * give all extensions a chance to clean up any per-context
1196 * allocations they might have made
1197 */
1198
1199 ext = context->extensions;
1200 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_DESTRUCT;
1201 if (context->listen_port)
1202 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_DESTRUCT;
Paulo Roberto Urio1f680ab2012-06-04 08:40:28 +08001203 while (ext && ext->callback) {
Andy Greenb5b23192013-02-11 17:13:32 +08001204 ext->callback(context, ext, NULL,
1205 (enum libwebsocket_extension_callback_reasons)m,
1206 NULL, NULL, 0);
Andy Greena41314f2011-05-23 10:00:03 +01001207 ext++;
1208 }
Andy Greena7109e62013-02-11 12:05:54 +08001209
1210 /*
1211 * inform all the protocols that they are done and will have no more
1212 * callbacks
1213 */
1214
1215 while (protocol->callback) {
1216 protocol->callback(context, NULL, LWS_CALLBACK_PROTOCOL_DESTROY,
1217 NULL, NULL, 0);
1218 protocol++;
1219 }
1220
Andy Green3182ece2013-01-20 17:08:31 +08001221#endif
Andy Greena41314f2011-05-23 10:00:03 +01001222
Peter Hinz56885f32011-03-02 22:03:47 +00001223#ifdef WIN32
1224#else
1225 close(context->fd_random);
Andy Green6964bb52011-01-23 16:50:33 +00001226#endif
1227
Peter Hinz56885f32011-03-02 22:03:47 +00001228#ifdef LWS_OPENSSL_SUPPORT
1229 if (context->ssl_ctx)
1230 SSL_CTX_free(context->ssl_ctx);
1231 if (context->ssl_client_ctx)
1232 SSL_CTX_free(context->ssl_client_ctx);
Andy Greenad686392013-02-11 14:50:45 +08001233
1234 ERR_remove_state(0);
1235 ERR_free_strings();
1236 EVP_cleanup();
1237 CRYPTO_cleanup_all_ex_data();
Peter Hinz56885f32011-03-02 22:03:47 +00001238#endif
1239
Andy Green46596482013-02-11 11:04:01 +08001240 if (context->fds)
1241 free(context->fds);
1242 if (context->lws_lookup)
1243 free(context->lws_lookup);
1244
Peter Hinz56885f32011-03-02 22:03:47 +00001245 free(context);
1246
1247#ifdef WIN32
1248 WSACleanup();
1249#endif
Andy Green6964bb52011-01-23 16:50:33 +00001250}
1251
Andy Greend88146d2013-01-22 12:40:35 +08001252/**
Andy Greenb5b23192013-02-11 17:13:32 +08001253 * libwebsocket_context_user() - get the user data associated with the context
Andy Greend88146d2013-01-22 12:40:35 +08001254 * @context: Websocket context
1255 *
1256 * This returns the optional user allocation that can be attached to
1257 * the context the sockets live in at context_create time. It's a way
1258 * to let all sockets serviced in the same context share data without
1259 * using globals statics in the user code.
1260 */
Alon Levy0291eb32012-10-19 11:21:56 +02001261LWS_EXTERN void *
1262libwebsocket_context_user(struct libwebsocket_context *context)
1263{
Andy Greenb5b23192013-02-11 17:13:32 +08001264 return context->user_space;
Alon Levy0291eb32012-10-19 11:21:56 +02001265}
1266
Andy Green6964bb52011-01-23 16:50:33 +00001267/**
1268 * libwebsocket_service() - Service any pending websocket activity
Peter Hinz56885f32011-03-02 22:03:47 +00001269 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001270 * @timeout_ms: Timeout for poll; 0 means return immediately if nothing needed
1271 * service otherwise block and service immediately, returning
1272 * after the timeout if nothing needed service.
1273 *
1274 * This function deals with any pending websocket traffic, for three
1275 * kinds of event. It handles these events on both server and client
1276 * types of connection the same.
1277 *
1278 * 1) Accept new connections to our context's server
1279 *
Andy Green6f520a52013-01-29 17:57:39 +08001280 * 2) Call the receive callback for incoming frame data received by
Andy Green6964bb52011-01-23 16:50:33 +00001281 * server or client connections.
1282 *
1283 * You need to call this service function periodically to all the above
1284 * functions to happen; if your application is single-threaded you can
1285 * just call it in your main event loop.
1286 *
1287 * Alternatively you can fork a new process that asynchronously handles
1288 * calling this service in a loop. In that case you are happy if this
1289 * call blocks your thread until it needs to take care of something and
1290 * would call it with a large nonzero timeout. Your loop then takes no
1291 * CPU while there is nothing happening.
1292 *
1293 * If you are calling it in a single-threaded app, you don't want it to
1294 * wait around blocking other things in your loop from happening, so you
1295 * would call it with a timeout_ms of 0, so it returns immediately if
1296 * nothing is pending, or as soon as it services whatever was pending.
1297 */
1298
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001299LWS_VISIBLE int
Peter Hinz56885f32011-03-02 22:03:47 +00001300libwebsocket_service(struct libwebsocket_context *context, int timeout_ms)
Andy Greene92cd172011-01-19 13:11:55 +00001301{
1302 int n;
Andy Greenca0a1292013-03-16 11:24:23 +08001303 int m;
Andy Greene92cd172011-01-19 13:11:55 +00001304
1305 /* stay dead once we are dead */
1306
Peter Hinz56885f32011-03-02 22:03:47 +00001307 if (context == NULL)
Andy Greene92cd172011-01-19 13:11:55 +00001308 return 1;
1309
Andy Green0d338332011-02-12 11:57:43 +00001310 /* wait for something to need service */
Andy Green4739e5c2011-01-22 12:51:57 +00001311
Peter Hinz56885f32011-03-02 22:03:47 +00001312 n = poll(context->fds, context->fds_count, timeout_ms);
Andy Green5dc62ea2013-09-20 20:26:12 +08001313 if (n == 0) /* poll timeout */ {
1314 libwebsocket_service_fd(context, NULL);
Andy Green3221f922011-02-12 13:14:11 +00001315 return 0;
Andy Green5dc62ea2013-09-20 20:26:12 +08001316 }
Andy Greene92cd172011-01-19 13:11:55 +00001317
Andy Greendfb23042013-01-17 12:26:48 +08001318 if (n < 0)
Andy Green3928f612012-07-20 12:58:38 +08001319 return -1;
Andy Greene92cd172011-01-19 13:11:55 +00001320
Andy Greendfb23042013-01-17 12:26:48 +08001321 /* any socket with events to service? */
Andy Greene92cd172011-01-19 13:11:55 +00001322
Andy Greenca0a1292013-03-16 11:24:23 +08001323 for (n = 0; n < context->fds_count; n++) {
1324 if (!context->fds[n].revents)
1325 continue;
1326 m = libwebsocket_service_fd(context, &context->fds[n]);
1327 if (m < 0)
1328 return -1;
1329 /* if something closed, retry this slot */
1330 if (m)
1331 n--;
1332 }
1333
Andy Greene92cd172011-01-19 13:11:55 +00001334 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001335}
1336
Andy Green3182ece2013-01-20 17:08:31 +08001337#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +01001338int
1339lws_any_extension_handled(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001340 struct libwebsocket *wsi,
1341 enum libwebsocket_extension_callback_reasons r,
Andy Greena41314f2011-05-23 10:00:03 +01001342 void *v, size_t len)
1343{
1344 int n;
1345 int handled = 0;
1346
1347 /* maybe an extension will take care of it for us */
1348
1349 for (n = 0; n < wsi->count_active_extensions && !handled; n++) {
1350 if (!wsi->active_extensions[n]->callback)
1351 continue;
1352
1353 handled |= wsi->active_extensions[n]->callback(context,
1354 wsi->active_extensions[n], wsi,
1355 r, wsi->active_extensions_user[n], v, len);
1356 }
1357
1358 return handled;
1359}
1360
1361
1362void *
1363lws_get_extension_user_matching_ext(struct libwebsocket *wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001364 struct libwebsocket_extension *ext)
Andy Greena41314f2011-05-23 10:00:03 +01001365{
1366 int n = 0;
1367
Andy Green68b45042011-05-25 21:41:57 +01001368 if (wsi == NULL)
1369 return NULL;
1370
Andy Greena41314f2011-05-23 10:00:03 +01001371 while (n < wsi->count_active_extensions) {
1372 if (wsi->active_extensions[n] != ext) {
1373 n++;
1374 continue;
1375 }
1376 return wsi->active_extensions_user[n];
1377 }
1378
1379 return NULL;
1380}
Andy Green3182ece2013-01-20 17:08:31 +08001381#endif
Andy Greena41314f2011-05-23 10:00:03 +01001382
Andy Green90c7cbc2011-01-27 06:26:52 +00001383/**
1384 * libwebsocket_callback_on_writable() - Request a callback when this socket
1385 * becomes able to be written to without
1386 * blocking
Andy Green32375b72011-02-19 08:32:53 +00001387 *
Peter Hinz56885f32011-03-02 22:03:47 +00001388 * @context: libwebsockets context
Andy Green90c7cbc2011-01-27 06:26:52 +00001389 * @wsi: Websocket connection instance to get callback for
1390 */
1391
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001392LWS_VISIBLE int
Peter Hinz56885f32011-03-02 22:03:47 +00001393libwebsocket_callback_on_writable(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001394 struct libwebsocket *wsi)
Andy Green90c7cbc2011-01-27 06:26:52 +00001395{
Andy Green3182ece2013-01-20 17:08:31 +08001396#ifndef LWS_NO_EXTENSIONS
Andy Green90c7cbc2011-01-27 06:26:52 +00001397 int n;
Andy Greena41314f2011-05-23 10:00:03 +01001398 int handled = 0;
1399
1400 /* maybe an extension will take care of it for us */
1401
1402 for (n = 0; n < wsi->count_active_extensions; n++) {
1403 if (!wsi->active_extensions[n]->callback)
1404 continue;
1405
1406 handled |= wsi->active_extensions[n]->callback(context,
1407 wsi->active_extensions[n], wsi,
1408 LWS_EXT_CALLBACK_REQUEST_ON_WRITEABLE,
1409 wsi->active_extensions_user[n], NULL, 0);
1410 }
1411
1412 if (handled)
1413 return 1;
Andy Green3182ece2013-01-20 17:08:31 +08001414#endif
Andy Greendfb23042013-01-17 12:26:48 +08001415 if (wsi->position_in_fds_table < 0) {
Andy Greenb5b23192013-02-11 17:13:32 +08001416 lwsl_err("libwebsocket_callback_on_writable: failed to find socket %d\n",
1417 wsi->sock);
Andy Greendfb23042013-01-17 12:26:48 +08001418 return -1;
1419 }
1420
1421 context->fds[wsi->position_in_fds_table].events |= POLLOUT;
Andy Greena41314f2011-05-23 10:00:03 +01001422
Andy Green3221f922011-02-12 13:14:11 +00001423 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001424 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001425 LWS_CALLBACK_SET_MODE_POLL_FD,
Andy Green50097dd2013-02-15 22:36:30 +08001426 wsi->user_space, (void *)(long)wsi->sock, POLLOUT);
Andy Green3221f922011-02-12 13:14:11 +00001427
Andy Green90c7cbc2011-01-27 06:26:52 +00001428 return 1;
1429}
1430
1431/**
1432 * libwebsocket_callback_on_writable_all_protocol() - Request a callback for
1433 * all connections using the given protocol when it
1434 * becomes possible to write to each socket without
1435 * blocking in turn.
1436 *
1437 * @protocol: Protocol whose connections will get callbacks
1438 */
1439
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001440LWS_VISIBLE int
Andy Green90c7cbc2011-01-27 06:26:52 +00001441libwebsocket_callback_on_writable_all_protocol(
1442 const struct libwebsocket_protocols *protocol)
1443{
Peter Hinz56885f32011-03-02 22:03:47 +00001444 struct libwebsocket_context *context = protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001445 int n;
Andy Green0d338332011-02-12 11:57:43 +00001446 struct libwebsocket *wsi;
Andy Green90c7cbc2011-01-27 06:26:52 +00001447
Andy Greendfb23042013-01-17 12:26:48 +08001448 for (n = 0; n < context->fds_count; n++) {
1449 wsi = context->lws_lookup[context->fds[n].fd];
1450 if (!wsi)
1451 continue;
1452 if (wsi->protocol == protocol)
1453 libwebsocket_callback_on_writable(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001454 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001455
1456 return 0;
1457}
1458
Andy Greenbe93fef2011-02-14 20:25:43 +00001459/**
1460 * libwebsocket_set_timeout() - marks the wsi as subject to a timeout
1461 *
1462 * You will not need this unless you are doing something special
1463 *
1464 * @wsi: Websocket connection instance
1465 * @reason: timeout reason
1466 * @secs: how many seconds
1467 */
1468
1469void
1470libwebsocket_set_timeout(struct libwebsocket *wsi,
1471 enum pending_timeout reason, int secs)
1472{
1473 struct timeval tv;
1474
1475 gettimeofday(&tv, NULL);
1476
1477 wsi->pending_timeout_limit = tv.tv_sec + secs;
1478 wsi->pending_timeout = reason;
1479}
1480
Andy Greena6cbece2011-01-27 20:06:03 +00001481
1482/**
1483 * libwebsocket_get_socket_fd() - returns the socket file descriptor
1484 *
1485 * You will not need this unless you are doing something special
1486 *
1487 * @wsi: Websocket connection instance
1488 */
1489
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001490LWS_VISIBLE int
Andy Greena6cbece2011-01-27 20:06:03 +00001491libwebsocket_get_socket_fd(struct libwebsocket *wsi)
1492{
1493 return wsi->sock;
1494}
1495
Andy Greend636e352013-01-29 12:36:17 +08001496#ifdef LWS_LATENCY
1497void
Andy Greenb5b23192013-02-11 17:13:32 +08001498lws_latency(struct libwebsocket_context *context, struct libwebsocket *wsi,
1499 const char *action, int ret, int completed)
Andy Greend636e352013-01-29 12:36:17 +08001500{
1501 struct timeval tv;
1502 unsigned long u;
1503 char buf[256];
1504
1505 gettimeofday(&tv, NULL);
1506
1507 u = (tv.tv_sec * 1000000) + tv.tv_usec;
1508
1509 if (action) {
1510 if (completed) {
1511 if (wsi->action_start == wsi->latency_start)
Andy Greenb5b23192013-02-11 17:13:32 +08001512 sprintf(buf,
1513 "Completion first try lat %luus: %p: ret %d: %s\n",
1514 u - wsi->latency_start,
1515 (void *)wsi, ret, action);
Andy Greend636e352013-01-29 12:36:17 +08001516 else
Andy Greenb5b23192013-02-11 17:13:32 +08001517 sprintf(buf,
1518 "Completion %luus: lat %luus: %p: ret %d: %s\n",
1519 u - wsi->action_start,
1520 u - wsi->latency_start,
1521 (void *)wsi, ret, action);
Andy Greend636e352013-01-29 12:36:17 +08001522 wsi->action_start = 0;
1523 } else
Andy Greenb5b23192013-02-11 17:13:32 +08001524 sprintf(buf, "lat %luus: %p: ret %d: %s\n",
1525 u - wsi->latency_start,
1526 (void *)wsi, ret, action);
Andy Greend636e352013-01-29 12:36:17 +08001527 if (u - wsi->latency_start > context->worst_latency) {
1528 context->worst_latency = u - wsi->latency_start;
1529 strcpy(context->worst_latency_info, buf);
1530 }
1531 lwsl_latency("%s", buf);
1532 } else {
1533 wsi->latency_start = u;
1534 if (!wsi->action_start)
1535 wsi->action_start = u;
1536 }
1537}
1538#endif
1539
Andy Greena1ce6be2013-01-18 11:43:21 +08001540#ifdef LWS_NO_SERVER
1541int
Andy Greenca0a1292013-03-16 11:24:23 +08001542_libwebsocket_rx_flow_control(struct libswebsocket *wsi)
Andy Greena1ce6be2013-01-18 11:43:21 +08001543{
1544 return 0;
1545}
1546#else
Andy Green706961d2013-01-17 16:50:35 +08001547int
1548_libwebsocket_rx_flow_control(struct libwebsocket *wsi)
1549{
1550 struct libwebsocket_context *context = wsi->protocol->owning_server;
Andy Green706961d2013-01-17 16:50:35 +08001551
Andy Greenca0a1292013-03-16 11:24:23 +08001552 /* there is no pending change */
1553 if (!(wsi->u.ws.rxflow_change_to & LWS_RXFLOW_PENDING_CHANGE))
Andy Green706961d2013-01-17 16:50:35 +08001554 return 0;
1555
Andy Greenca0a1292013-03-16 11:24:23 +08001556 /* stuff is still buffered, not ready to really accept new input */
1557 if (wsi->u.ws.rxflow_buffer) {
1558 /* get ourselves called back to deal with stashed buffer */
1559 libwebsocket_callback_on_writable(context, wsi);
1560 return 0;
Andy Green706961d2013-01-17 16:50:35 +08001561 }
1562
Andy Greenca0a1292013-03-16 11:24:23 +08001563 /* pending is cleared, we can change rxflow state */
1564
1565 wsi->u.ws.rxflow_change_to &= ~LWS_RXFLOW_PENDING_CHANGE;
1566
1567 lwsl_info("rxflow: wsi %p change_to %d\n", wsi,
1568 wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW);
1569
1570 /* adjust the pollfd for this wsi */
1571
1572 if (wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW)
Andy Green706961d2013-01-17 16:50:35 +08001573 context->fds[wsi->position_in_fds_table].events |= POLLIN;
1574 else
1575 context->fds[wsi->position_in_fds_table].events &= ~POLLIN;
1576
Andy Greenca0a1292013-03-16 11:24:23 +08001577 if (wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW)
Andy Green706961d2013-01-17 16:50:35 +08001578 /* external POLL support via protocol 0 */
1579 context->protocols[0].callback(context, wsi,
1580 LWS_CALLBACK_SET_MODE_POLL_FD,
Andy Green50097dd2013-02-15 22:36:30 +08001581 wsi->user_space, (void *)(long)wsi->sock, POLLIN);
Andy Green706961d2013-01-17 16:50:35 +08001582 else
1583 /* external POLL support via protocol 0 */
1584 context->protocols[0].callback(context, wsi,
1585 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
Andy Green50097dd2013-02-15 22:36:30 +08001586 wsi->user_space, (void *)(long)wsi->sock, POLLIN);
Andy Green706961d2013-01-17 16:50:35 +08001587
1588 return 1;
1589}
Andy Greena1ce6be2013-01-18 11:43:21 +08001590#endif
Andy Green706961d2013-01-17 16:50:35 +08001591
Andy Green90c7cbc2011-01-27 06:26:52 +00001592/**
1593 * libwebsocket_rx_flow_control() - Enable and disable socket servicing for
1594 * receieved packets.
1595 *
1596 * If the output side of a server process becomes choked, this allows flow
1597 * control for the input side.
1598 *
1599 * @wsi: Websocket connection instance to get callback for
1600 * @enable: 0 = disable read servicing for this connection, 1 = enable
1601 */
1602
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001603LWS_VISIBLE int
Andy Green90c7cbc2011-01-27 06:26:52 +00001604libwebsocket_rx_flow_control(struct libwebsocket *wsi, int enable)
1605{
Andy Greenca0a1292013-03-16 11:24:23 +08001606 if (enable == (wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW))
1607 return 0;
1608
1609 lwsl_info("libwebsocket_rx_flow_control(0x%p, %d)\n", wsi, enable);
1610 wsi->u.ws.rxflow_change_to = LWS_RXFLOW_PENDING_CHANGE | !!enable;
Andy Green90c7cbc2011-01-27 06:26:52 +00001611
Andy Green706961d2013-01-17 16:50:35 +08001612 return 0;
Andy Green90c7cbc2011-01-27 06:26:52 +00001613}
1614
Andy Greenb55451c2013-03-16 12:32:27 +08001615/**
1616 * libwebsocket_rx_flow_allow_all_protocol() - Allow all connections with this protocol to receive
1617 *
1618 * When the user server code realizes it can accept more input, it can
1619 * call this to have the RX flow restriction removed from all connections using
1620 * the given protocol.
1621 *
1622 * @protocol: all connections using this protocol will be allowed to receive
1623 */
1624
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001625LWS_VISIBLE void
Andy Greenb55451c2013-03-16 12:32:27 +08001626libwebsocket_rx_flow_allow_all_protocol(
1627 const struct libwebsocket_protocols *protocol)
1628{
1629 struct libwebsocket_context *context = protocol->owning_server;
1630 int n;
1631 struct libwebsocket *wsi;
1632
1633 for (n = 0; n < context->fds_count; n++) {
1634 wsi = context->lws_lookup[context->fds[n].fd];
1635 if (!wsi)
1636 continue;
1637 if (wsi->protocol == protocol)
1638 libwebsocket_rx_flow_control(wsi, LWS_RXFLOW_ALLOW);
1639 }
1640}
1641
Andy Green706961d2013-01-17 16:50:35 +08001642
Andy Green2ac5a6f2011-01-28 10:00:18 +00001643/**
1644 * libwebsocket_canonical_hostname() - returns this host's hostname
1645 *
1646 * This is typically used by client code to fill in the host parameter
1647 * when making a client connection. You can only call it after the context
1648 * has been created.
1649 *
Peter Hinz56885f32011-03-02 22:03:47 +00001650 * @context: Websocket context
Andy Green2ac5a6f2011-01-28 10:00:18 +00001651 */
1652
1653
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001654LWS_VISIBLE extern const char *
Peter Hinz56885f32011-03-02 22:03:47 +00001655libwebsocket_canonical_hostname(struct libwebsocket_context *context)
Andy Green2ac5a6f2011-01-28 10:00:18 +00001656{
Peter Hinz56885f32011-03-02 22:03:47 +00001657 return (const char *)context->canonical_hostname;
Andy Green2ac5a6f2011-01-28 10:00:18 +00001658}
1659
1660
Andy Green90c7cbc2011-01-27 06:26:52 +00001661static void sigpipe_handler(int x)
1662{
1663}
1664
Andy Green6901cb32011-02-21 08:06:47 +00001665#ifdef LWS_OPENSSL_SUPPORT
1666static int
1667OpenSSL_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx)
1668{
1669
1670 SSL *ssl;
1671 int n;
Andy Green2e24da02011-03-05 16:12:04 +00001672 struct libwebsocket_context *context;
Andy Green6901cb32011-02-21 08:06:47 +00001673
1674 ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
1675 SSL_get_ex_data_X509_STORE_CTX_idx());
1676
1677 /*
Andy Green2e24da02011-03-05 16:12:04 +00001678 * !!! nasty openssl requires the index to come as a library-scope
1679 * static
Andy Green6901cb32011-02-21 08:06:47 +00001680 */
Andy Green2e24da02011-03-05 16:12:04 +00001681 context = SSL_get_ex_data(ssl, openssl_websocket_private_data_index);
Andy Green6ee372f2012-04-09 15:09:01 +08001682
Peter Hinz56885f32011-03-02 22:03:47 +00001683 n = context->protocols[0].callback(NULL, NULL,
Andy Green6901cb32011-02-21 08:06:47 +00001684 LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION,
1685 x509_ctx, ssl, preverify_ok);
1686
1687 /* convert return code from 0 = OK to 1 = OK */
1688
1689 if (!n)
1690 n = 1;
1691 else
1692 n = 0;
1693
1694 return n;
1695}
1696#endif
1697
Andy Green706961d2013-01-17 16:50:35 +08001698int user_callback_handle_rxflow(callback_function callback_function,
Andy Greenb5b23192013-02-11 17:13:32 +08001699 struct libwebsocket_context *context,
Andy Green706961d2013-01-17 16:50:35 +08001700 struct libwebsocket *wsi,
1701 enum libwebsocket_callback_reasons reason, void *user,
1702 void *in, size_t len)
1703{
1704 int n;
1705
1706 n = callback_function(context, wsi, reason, user, in, len);
Andy Greenaedc9532013-02-10 21:21:24 +08001707 if (!n)
1708 n = _libwebsocket_rx_flow_control(wsi);
Andy Green706961d2013-01-17 16:50:35 +08001709
Andy Greenaedc9532013-02-10 21:21:24 +08001710 return n;
Andy Green706961d2013-01-17 16:50:35 +08001711}
1712
Andy Greenb45993c2010-12-18 15:13:50 +00001713
Andy Greenab990e42010-10-31 12:42:52 +00001714/**
Andy Green4739e5c2011-01-22 12:51:57 +00001715 * libwebsocket_create_context() - Create the websocket handler
Andy Green1b265272013-02-09 14:01:09 +08001716 * @info: pointer to struct with parameters
Andy Green05464c62010-11-12 10:44:18 +00001717 *
Andy Green1b265272013-02-09 14:01:09 +08001718 * This function creates the listening socket (if serving) and takes care
Andy Green8f037e42010-12-19 22:13:26 +00001719 * of all initialization in one step.
1720 *
Andy Greene92cd172011-01-19 13:11:55 +00001721 * After initialization, it returns a struct libwebsocket_context * that
1722 * represents this server. After calling, user code needs to take care
1723 * of calling libwebsocket_service() with the context pointer to get the
1724 * server's sockets serviced. This can be done in the same process context
1725 * or a forked process, or another thread,
Andy Green05464c62010-11-12 10:44:18 +00001726 *
Andy Green8f037e42010-12-19 22:13:26 +00001727 * The protocol callback functions are called for a handful of events
1728 * including http requests coming in, websocket connections becoming
1729 * established, and data arriving; it's also called periodically to allow
1730 * async transmission.
1731 *
1732 * HTTP requests are sent always to the FIRST protocol in @protocol, since
1733 * at that time websocket protocol has not been negotiated. Other
1734 * protocols after the first one never see any HTTP callack activity.
1735 *
1736 * The server created is a simple http server by default; part of the
1737 * websocket standard is upgrading this http connection to a websocket one.
1738 *
1739 * This allows the same server to provide files like scripts and favicon /
1740 * images or whatever over http and dynamic data over websockets all in
1741 * one place; they're all handled in the user callback.
Andy Greenab990e42010-10-31 12:42:52 +00001742 */
Andy Green4ea60062010-10-30 12:15:07 +01001743
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001744LWS_VISIBLE struct libwebsocket_context *
Andy Green1b265272013-02-09 14:01:09 +08001745libwebsocket_create_context(struct lws_context_creation_info *info)
Andy Greenff95d7a2010-10-28 22:36:01 +01001746{
Peter Hinz56885f32011-03-02 22:03:47 +00001747 struct libwebsocket_context *context = NULL;
Andy Green9659f372011-01-27 22:01:43 +00001748 char *p;
Andy Green14f47292013-02-11 19:36:15 +08001749 int n;
Joakim Soderberg3baa08c2013-02-22 09:27:59 +08001750#ifndef LWS_NO_SERVER
Andy Greencbb31222013-01-31 09:57:05 +08001751 int opt = 1;
Andy Green0d338332011-02-12 11:57:43 +00001752 struct libwebsocket *wsi;
Andy Greencbb31222013-01-31 09:57:05 +08001753 struct sockaddr_in serv_addr;
1754#endif
Andy Green3182ece2013-01-20 17:08:31 +08001755#ifndef LWS_NO_EXTENSIONS
1756 int m;
Andy Green1b265272013-02-09 14:01:09 +08001757 struct libwebsocket_extension *ext;
Andy Green3182ece2013-01-20 17:08:31 +08001758#endif
Andy Greenff95d7a2010-10-28 22:36:01 +01001759
Andy Green3faa9c72010-11-08 17:03:03 +00001760#ifdef LWS_OPENSSL_SUPPORT
Andy Greenf2f54d52010-11-15 22:08:00 +00001761 SSL_METHOD *method;
Andy Green3faa9c72010-11-08 17:03:03 +00001762#endif
1763
Joakim Soderberg4c531232013-02-06 15:26:58 +09001764#ifndef LWS_NO_DAEMONIZE
Joakim Söderberg68e8d732013-02-06 15:27:39 +09001765 int pid_daemon = get_daemonize_pid();
Joakim Soderberg4c531232013-02-06 15:26:58 +09001766#endif
1767
Andy Greenb3a614a2013-01-19 13:08:17 +08001768 lwsl_notice("Initial logging level %d\n", log_level);
Andy Green7b405452013-02-01 10:50:15 +08001769 lwsl_notice("Library version: %s\n", library_version);
Andy Greenc0d6b632013-01-12 23:42:17 +08001770 lwsl_info(" LWS_MAX_HEADER_LEN: %u\n", LWS_MAX_HEADER_LEN);
Andy Greenc0d6b632013-01-12 23:42:17 +08001771 lwsl_info(" LWS_MAX_PROTOCOLS: %u\n", LWS_MAX_PROTOCOLS);
Andy Green3182ece2013-01-20 17:08:31 +08001772#ifndef LWS_NO_EXTENSIONS
Andy Greenb5b23192013-02-11 17:13:32 +08001773 lwsl_info(" LWS_MAX_EXTENSIONS_ACTIVE: %u\n",
1774 LWS_MAX_EXTENSIONS_ACTIVE);
Andy Green3182ece2013-01-20 17:08:31 +08001775#else
1776 lwsl_notice(" Configured without extension support\n");
1777#endif
Andy Greenc0d6b632013-01-12 23:42:17 +08001778 lwsl_info(" SPEC_LATEST_SUPPORTED: %u\n", SPEC_LATEST_SUPPORTED);
1779 lwsl_info(" AWAITING_TIMEOUT: %u\n", AWAITING_TIMEOUT);
Andy Green2672fb22013-02-22 09:54:35 +08001780 if (info->ssl_cipher_list)
1781 lwsl_info(" SSL ciphers: '%s'\n", info->ssl_cipher_list);
Andy Greenc0d6b632013-01-12 23:42:17 +08001782 lwsl_info(" SYSTEM_RANDOM_FILEPATH: '%s'\n", SYSTEM_RANDOM_FILEPATH);
1783 lwsl_info(" LWS_MAX_ZLIB_CONN_BUFFER: %u\n", LWS_MAX_ZLIB_CONN_BUFFER);
Andy Green43db0452013-01-10 19:50:35 +08001784
Peter Hinz56885f32011-03-02 22:03:47 +00001785#ifdef _WIN32
1786 {
1787 WORD wVersionRequested;
1788 WSADATA wsaData;
1789 int err;
Andy Green6ee372f2012-04-09 15:09:01 +08001790 HMODULE wsdll;
Peter Hinz56885f32011-03-02 22:03:47 +00001791
1792 /* Use the MAKEWORD(lowbyte, highbyte) macro from Windef.h */
1793 wVersionRequested = MAKEWORD(2, 2);
1794
1795 err = WSAStartup(wVersionRequested, &wsaData);
1796 if (err != 0) {
1797 /* Tell the user that we could not find a usable */
1798 /* Winsock DLL. */
Andy Green43db0452013-01-10 19:50:35 +08001799 lwsl_err("WSAStartup failed with error: %d\n", err);
Peter Hinz56885f32011-03-02 22:03:47 +00001800 return NULL;
1801 }
David Galeano7b11fec2011-10-04 19:55:18 +08001802
Andy Green6ee372f2012-04-09 15:09:01 +08001803 /* default to a poll() made out of select() */
1804 poll = emulated_poll;
David Galeano7b11fec2011-10-04 19:55:18 +08001805
Andy Green6ee372f2012-04-09 15:09:01 +08001806 /* if windows socket lib available, use his WSAPoll */
David Galeanocb193682013-01-09 15:29:00 +08001807 wsdll = GetModuleHandle(_T("Ws2_32.dll"));
Andy Green6ee372f2012-04-09 15:09:01 +08001808 if (wsdll)
1809 poll = (PFNWSAPOLL)GetProcAddress(wsdll, "WSAPoll");
Joakim Soderberg4c531232013-02-06 15:26:58 +09001810
Joakim Söderberg68e8d732013-02-06 15:27:39 +09001811 /* Finally fall back to emulated poll if all else fails */
Joakim Soderberg4c531232013-02-06 15:26:58 +09001812 if (!poll)
1813 poll = emulated_poll;
Peter Hinz56885f32011-03-02 22:03:47 +00001814 }
1815#endif
1816
Andy Greenb5b23192013-02-11 17:13:32 +08001817 context = (struct libwebsocket_context *)
1818 malloc(sizeof(struct libwebsocket_context));
Peter Hinz56885f32011-03-02 22:03:47 +00001819 if (!context) {
Andy Green43db0452013-01-10 19:50:35 +08001820 lwsl_err("No memory for websocket context\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001821 return NULL;
1822 }
Peter Pentchev3b233cb2013-02-07 16:31:19 +02001823 memset(context, 0, sizeof(*context));
Andy Green35f332b2013-01-21 13:06:38 +08001824#ifndef LWS_NO_DAEMONIZE
Andy Green24cba922013-01-19 13:56:10 +08001825 context->started_with_parent = pid_daemon;
1826 lwsl_notice(" Started with daemon pid %d\n", pid_daemon);
1827#endif
Andy Greenb5b23192013-02-11 17:13:32 +08001828
Joakim Soderberg4c531232013-02-06 15:26:58 +09001829 context->listen_service_extraseen = 0;
Andy Green1b265272013-02-09 14:01:09 +08001830 context->protocols = info->protocols;
1831 context->listen_port = info->port;
Peter Hinz56885f32011-03-02 22:03:47 +00001832 context->http_proxy_port = 0;
1833 context->http_proxy_address[0] = '\0';
Andy Green1b265272013-02-09 14:01:09 +08001834 context->options = info->options;
Andy Greendfb23042013-01-17 12:26:48 +08001835 /* to reduce this allocation, */
1836 context->max_fds = getdtablesize();
Andy Greena86f6342013-02-11 11:04:56 +08001837 lwsl_notice(" static allocation: %u + (%u x %u fds) = %u bytes\n",
1838 sizeof(struct libwebsocket_context),
1839 sizeof(struct pollfd) + sizeof(struct libwebsocket *),
1840 context->max_fds,
Andy Greenb5b23192013-02-11 17:13:32 +08001841 sizeof(struct libwebsocket_context) +
1842 ((sizeof(struct pollfd) + sizeof(struct libwebsocket *)) *
1843 context->max_fds));
Andy Greendfb23042013-01-17 12:26:48 +08001844
Andy Greenb5b23192013-02-11 17:13:32 +08001845 context->fds = (struct pollfd *)malloc(sizeof(struct pollfd) *
1846 context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08001847 if (context->fds == NULL) {
Andy Greenb5b23192013-02-11 17:13:32 +08001848 lwsl_err("Unable to allocate fds array for %d connections\n",
1849 context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08001850 free(context);
1851 return NULL;
1852 }
Andy Greenb5b23192013-02-11 17:13:32 +08001853 context->lws_lookup = (struct libwebsocket **)
1854 malloc(sizeof(struct libwebsocket *) * context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08001855 if (context->lws_lookup == NULL) {
Andy Greenb5b23192013-02-11 17:13:32 +08001856 lwsl_err(
1857 "Unable to allocate lws_lookup array for %d connections\n",
1858 context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08001859 free(context->fds);
1860 free(context);
1861 return NULL;
1862 }
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001863 memset(context->lws_lookup, 0, sizeof(struct libwebsocket *) *
1864 context->max_fds);
Andy Greena17c6922013-01-20 20:21:54 +08001865
Peter Hinz56885f32011-03-02 22:03:47 +00001866 context->fds_count = 0;
Andy Green3182ece2013-01-20 17:08:31 +08001867#ifndef LWS_NO_EXTENSIONS
Andy Green1b265272013-02-09 14:01:09 +08001868 context->extensions = info->extensions;
Andy Green3182ece2013-01-20 17:08:31 +08001869#endif
Paulo Roberto Urio1e326632012-06-04 10:52:19 +08001870 context->last_timeout_check_s = 0;
Andy Green1b265272013-02-09 14:01:09 +08001871 context->user_space = info->user;
Andy Green9659f372011-01-27 22:01:43 +00001872
Peter Hinz56885f32011-03-02 22:03:47 +00001873#ifdef WIN32
1874 context->fd_random = 0;
1875#else
1876 context->fd_random = open(SYSTEM_RANDOM_FILEPATH, O_RDONLY);
1877 if (context->fd_random < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001878 lwsl_err("Unable to open random device %s %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001879 SYSTEM_RANDOM_FILEPATH, context->fd_random);
Peter Pentchev3b233cb2013-02-07 16:31:19 +02001880 goto bail;
Andy Green44eee682011-02-10 09:32:24 +00001881 }
Peter Hinz56885f32011-03-02 22:03:47 +00001882#endif
Andy Green44eee682011-02-10 09:32:24 +00001883
Peter Hinz56885f32011-03-02 22:03:47 +00001884#ifdef LWS_OPENSSL_SUPPORT
1885 context->use_ssl = 0;
1886 context->ssl_ctx = NULL;
1887 context->ssl_client_ctx = NULL;
Andy Green2e24da02011-03-05 16:12:04 +00001888 openssl_websocket_private_data_index = 0;
Peter Hinz56885f32011-03-02 22:03:47 +00001889#endif
Andy Green2ac5a6f2011-01-28 10:00:18 +00001890
Andy Greena1ce6be2013-01-18 11:43:21 +08001891 strcpy(context->canonical_hostname, "unknown");
Andy Greena69f0512012-05-03 12:32:38 +08001892
Andy Greena1ce6be2013-01-18 11:43:21 +08001893#ifndef LWS_NO_SERVER
Andy Green1b265272013-02-09 14:01:09 +08001894 if (!(info->options & LWS_SERVER_OPTION_SKIP_SERVER_CANONICAL_NAME)) {
Andy Green788c4a82012-10-22 12:29:57 +01001895 /* find canonical hostname */
Andy Greenadc71462013-02-14 17:11:22 +08001896 gethostname((char *)context->canonical_hostname,
Andy Greenb5b23192013-02-11 17:13:32 +08001897 sizeof(context->canonical_hostname) - 1);
Andy Green788c4a82012-10-22 12:29:57 +01001898
Andy Greenb5b23192013-02-11 17:13:32 +08001899 lwsl_notice(" canonical_hostname = %s\n",
1900 context->canonical_hostname);
Andy Greena69f0512012-05-03 12:32:38 +08001901 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001902#endif
Andy Greena69f0512012-05-03 12:32:38 +08001903
Andy Green9659f372011-01-27 22:01:43 +00001904 /* split the proxy ads:port if given */
1905
1906 p = getenv("http_proxy");
1907 if (p) {
Peter Hinz56885f32011-03-02 22:03:47 +00001908 strncpy(context->http_proxy_address, p,
Andy Greenb5b23192013-02-11 17:13:32 +08001909 sizeof(context->http_proxy_address) - 1);
Peter Hinz56885f32011-03-02 22:03:47 +00001910 context->http_proxy_address[
Andy Greenb5b23192013-02-11 17:13:32 +08001911 sizeof(context->http_proxy_address) - 1] = '\0';
Andy Green9659f372011-01-27 22:01:43 +00001912
Peter Hinz56885f32011-03-02 22:03:47 +00001913 p = strchr(context->http_proxy_address, ':');
Andy Green9659f372011-01-27 22:01:43 +00001914 if (p == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08001915 lwsl_err("http_proxy needs to be ads:port\n");
Peter Pentchev3b233cb2013-02-07 16:31:19 +02001916 goto bail;
Andy Green9659f372011-01-27 22:01:43 +00001917 }
1918 *p = '\0';
Peter Hinz56885f32011-03-02 22:03:47 +00001919 context->http_proxy_port = atoi(p + 1);
Andy Green9659f372011-01-27 22:01:43 +00001920
Andy Greenb3a614a2013-01-19 13:08:17 +08001921 lwsl_notice(" Proxy %s:%u\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001922 context->http_proxy_address,
1923 context->http_proxy_port);
Andy Green9659f372011-01-27 22:01:43 +00001924 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001925
Andy Greena1ce6be2013-01-18 11:43:21 +08001926#ifndef LWS_NO_SERVER
Andy Green1b265272013-02-09 14:01:09 +08001927 if (info->port) {
Andy Green90c7cbc2011-01-27 06:26:52 +00001928
Andy Green3faa9c72010-11-08 17:03:03 +00001929#ifdef LWS_OPENSSL_SUPPORT
Andy Green1b265272013-02-09 14:01:09 +08001930 context->use_ssl = info->ssl_cert_filepath != NULL &&
1931 info->ssl_private_key_filepath != NULL;
Andy Green23c5f2e2013-02-06 15:43:00 +09001932#ifdef USE_CYASSL
1933 lwsl_notice(" Compiled with CYASSL support\n");
1934#else
1935 lwsl_notice(" Compiled with OpenSSL support\n");
1936#endif
Peter Hinz56885f32011-03-02 22:03:47 +00001937 if (context->use_ssl)
Andy Green23c5f2e2013-02-06 15:43:00 +09001938 lwsl_notice(" Using SSL mode\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001939 else
Andy Green23c5f2e2013-02-06 15:43:00 +09001940 lwsl_notice(" Using non-SSL mode\n");
Andy Green3faa9c72010-11-08 17:03:03 +00001941
Andy Green90c7cbc2011-01-27 06:26:52 +00001942#else
Andy Green2b40b792013-02-10 22:22:01 +08001943 if (info->ssl_cert_filepath != NULL &&
1944 info->ssl_private_key_filepath != NULL) {
Andy Greenb3a614a2013-01-19 13:08:17 +08001945 lwsl_notice(" Not compiled for OpenSSl support!\n");
Peter Pentchev3b233cb2013-02-07 16:31:19 +02001946 goto bail;
Andy Green3faa9c72010-11-08 17:03:03 +00001947 }
Andy Greenb5b23192013-02-11 17:13:32 +08001948 lwsl_notice(" Compiled without SSL support\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001949#endif
Andy Greena17c6922013-01-20 20:21:54 +08001950
Andy Greenb5b23192013-02-11 17:13:32 +08001951 lwsl_notice(
1952 " per-conn mem: %u + %u headers + protocol rx buf\n",
1953 sizeof(struct libwebsocket),
1954 sizeof(struct allocated_headers));
Andy Green90c7cbc2011-01-27 06:26:52 +00001955 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001956#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00001957
1958 /* ignore SIGPIPE */
Peter Hinz56885f32011-03-02 22:03:47 +00001959#ifdef WIN32
1960#else
Andy Green90c7cbc2011-01-27 06:26:52 +00001961 signal(SIGPIPE, sigpipe_handler);
Peter Hinz56885f32011-03-02 22:03:47 +00001962#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00001963
1964
1965#ifdef LWS_OPENSSL_SUPPORT
1966
1967 /* basic openssl init */
1968
1969 SSL_library_init();
1970
1971 OpenSSL_add_all_algorithms();
1972 SSL_load_error_strings();
1973
Andy Green2e24da02011-03-05 16:12:04 +00001974 openssl_websocket_private_data_index =
Andy Green6901cb32011-02-21 08:06:47 +00001975 SSL_get_ex_new_index(0, "libwebsockets", NULL, NULL, NULL);
1976
Andy Green90c7cbc2011-01-27 06:26:52 +00001977 /*
1978 * Firefox insists on SSLv23 not SSLv3
1979 * Konq disables SSLv2 by default now, SSLv23 works
1980 */
1981
1982 method = (SSL_METHOD *)SSLv23_server_method();
1983 if (!method) {
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08001984 lwsl_err("problem creating ssl method %lu: %s\n",
1985 ERR_get_error(),
Andy Greenb5b23192013-02-11 17:13:32 +08001986 ERR_error_string(ERR_get_error(),
1987 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02001988 goto bail;
Andy Green90c7cbc2011-01-27 06:26:52 +00001989 }
Peter Hinz56885f32011-03-02 22:03:47 +00001990 context->ssl_ctx = SSL_CTX_new(method); /* create context */
1991 if (!context->ssl_ctx) {
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08001992 lwsl_err("problem creating ssl context %lu: %s\n",
1993 ERR_get_error(),
Andy Greenb5b23192013-02-11 17:13:32 +08001994 ERR_error_string(ERR_get_error(),
1995 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02001996 goto bail;
Andy Green90c7cbc2011-01-27 06:26:52 +00001997 }
1998
David Galeanocc148e42013-01-10 10:18:59 +08001999#ifdef SSL_OP_NO_COMPRESSION
David Galeanoc72f6f92013-01-10 10:11:57 +08002000 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08002001#endif
David Galeano77a677c2013-01-10 10:14:12 +08002002 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
Andy Green2672fb22013-02-22 09:54:35 +08002003 if (info->ssl_cipher_list)
2004 SSL_CTX_set_cipher_list(context->ssl_ctx,
2005 info->ssl_cipher_list);
David Galeanoc72f6f92013-01-10 10:11:57 +08002006
Andy Greena1ce6be2013-01-18 11:43:21 +08002007#ifndef LWS_NO_CLIENT
2008
Andy Green90c7cbc2011-01-27 06:26:52 +00002009 /* client context */
Andy Green6ee372f2012-04-09 15:09:01 +08002010
Andy Green1b265272013-02-09 14:01:09 +08002011 if (info->port == CONTEXT_PORT_NO_LISTEN) {
Peter Hinz56885f32011-03-02 22:03:47 +00002012 method = (SSL_METHOD *)SSLv23_client_method();
2013 if (!method) {
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002014 lwsl_err("problem creating ssl method %lu: %s\n",
2015 ERR_get_error(),
Andy Greenb5b23192013-02-11 17:13:32 +08002016 ERR_error_string(ERR_get_error(),
2017 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002018 goto bail;
Peter Hinz56885f32011-03-02 22:03:47 +00002019 }
2020 /* create context */
2021 context->ssl_client_ctx = SSL_CTX_new(method);
2022 if (!context->ssl_client_ctx) {
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002023 lwsl_err("problem creating ssl context %lu: %s\n",
2024 ERR_get_error(),
Andy Greenb5b23192013-02-11 17:13:32 +08002025 ERR_error_string(ERR_get_error(),
2026 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002027 goto bail;
Peter Hinz56885f32011-03-02 22:03:47 +00002028 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002029
David Galeanocc148e42013-01-10 10:18:59 +08002030#ifdef SSL_OP_NO_COMPRESSION
Andy Greenb5b23192013-02-11 17:13:32 +08002031 SSL_CTX_set_options(context->ssl_client_ctx,
2032 SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08002033#endif
Andy Greenb5b23192013-02-11 17:13:32 +08002034 SSL_CTX_set_options(context->ssl_client_ctx,
2035 SSL_OP_CIPHER_SERVER_PREFERENCE);
Andy Green2672fb22013-02-22 09:54:35 +08002036 if (info->ssl_cipher_list)
2037 SSL_CTX_set_cipher_list(context->ssl_client_ctx,
2038 info->ssl_cipher_list);
David Galeanoc72f6f92013-01-10 10:11:57 +08002039
Peter Hinz56885f32011-03-02 22:03:47 +00002040 /* openssl init for cert verification (for client sockets) */
Andy Green1b265272013-02-09 14:01:09 +08002041 if (!info->ssl_ca_filepath) {
David Galeano2f82be82013-01-09 16:25:54 +08002042 if (!SSL_CTX_load_verify_locations(
2043 context->ssl_client_ctx, NULL,
2044 LWS_OPENSSL_CLIENT_CERTS))
Andy Green43db0452013-01-10 19:50:35 +08002045 lwsl_err(
Andy Greenb5b23192013-02-11 17:13:32 +08002046 "Unable to load SSL Client certs from %s "
2047 "(set by --with-client-cert-dir= "
2048 "in configure) -- client ssl isn't "
2049 "going to work", LWS_OPENSSL_CLIENT_CERTS);
David Galeano2f82be82013-01-09 16:25:54 +08002050 } else
2051 if (!SSL_CTX_load_verify_locations(
Andy Green1b265272013-02-09 14:01:09 +08002052 context->ssl_client_ctx, info->ssl_ca_filepath,
David Galeano2f82be82013-01-09 16:25:54 +08002053 NULL))
Andy Green43db0452013-01-10 19:50:35 +08002054 lwsl_err(
David Galeano2f82be82013-01-09 16:25:54 +08002055 "Unable to load SSL Client certs "
2056 "file from %s -- client ssl isn't "
Andy Green1b265272013-02-09 14:01:09 +08002057 "going to work", info->ssl_ca_filepath);
Peter Hinz56885f32011-03-02 22:03:47 +00002058
2059 /*
2060 * callback allowing user code to load extra verification certs
2061 * helping the client to verify server identity
2062 */
2063
2064 context->protocols[0].callback(context, NULL,
2065 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS,
2066 context->ssl_client_ctx, NULL, 0);
Andy Green90c7cbc2011-01-27 06:26:52 +00002067 }
Andy Greena1ce6be2013-01-18 11:43:21 +08002068#endif
Andy Green6ee372f2012-04-09 15:09:01 +08002069
Andy Greenc6bf2c22011-02-20 11:10:47 +00002070 /* as a server, are we requiring clients to identify themselves? */
2071
Andy Greenb5b23192013-02-11 17:13:32 +08002072 if (info->options &
2073 LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT) {
Andy Greenc6bf2c22011-02-20 11:10:47 +00002074
2075 /* absolutely require the client cert */
Andy Green6ee372f2012-04-09 15:09:01 +08002076
Peter Hinz56885f32011-03-02 22:03:47 +00002077 SSL_CTX_set_verify(context->ssl_ctx,
Andy Green6901cb32011-02-21 08:06:47 +00002078 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
2079 OpenSSL_verify_callback);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002080
2081 /*
2082 * give user code a chance to load certs into the server
2083 * allowing it to verify incoming client certs
2084 */
2085
Peter Hinz56885f32011-03-02 22:03:47 +00002086 context->protocols[0].callback(context, NULL,
Andy Greenc6bf2c22011-02-20 11:10:47 +00002087 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS,
Peter Hinz56885f32011-03-02 22:03:47 +00002088 context->ssl_ctx, NULL, 0);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002089 }
2090
Peter Hinz56885f32011-03-02 22:03:47 +00002091 if (context->use_ssl) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002092
2093 /* openssl init for server sockets */
2094
Andy Green3faa9c72010-11-08 17:03:03 +00002095 /* set the local certificate from CertFile */
David Galeano9b3d4b22013-01-10 10:11:21 +08002096 n = SSL_CTX_use_certificate_chain_file(context->ssl_ctx,
Andy Green1b265272013-02-09 14:01:09 +08002097 info->ssl_cert_filepath);
Andy Green3faa9c72010-11-08 17:03:03 +00002098 if (n != 1) {
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002099 lwsl_err("problem getting cert '%s' %lu: %s\n",
Andy Green1b265272013-02-09 14:01:09 +08002100 info->ssl_cert_filepath,
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002101 ERR_get_error(),
Andy Greenb5b23192013-02-11 17:13:32 +08002102 ERR_error_string(ERR_get_error(),
2103 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002104 goto bail;
Andy Green3faa9c72010-11-08 17:03:03 +00002105 }
2106 /* set the private key from KeyFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002107 if (SSL_CTX_use_PrivateKey_file(context->ssl_ctx,
Andy Green1b265272013-02-09 14:01:09 +08002108 info->ssl_private_key_filepath,
2109 SSL_FILETYPE_PEM) != 1) {
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002110 lwsl_err("ssl problem getting key '%s' %lu: %s\n",
Andy Greenb5b23192013-02-11 17:13:32 +08002111 info->ssl_private_key_filepath,
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002112 ERR_get_error(),
Andy Greenb5b23192013-02-11 17:13:32 +08002113 ERR_error_string(ERR_get_error(),
2114 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002115 goto bail;
Andy Green3faa9c72010-11-08 17:03:03 +00002116 }
2117 /* verify private key */
Peter Hinz56885f32011-03-02 22:03:47 +00002118 if (!SSL_CTX_check_private_key(context->ssl_ctx)) {
Andy Green43db0452013-01-10 19:50:35 +08002119 lwsl_err("Private SSL key doesn't match cert\n");
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002120 goto bail;
Andy Green3faa9c72010-11-08 17:03:03 +00002121 }
2122
2123 /* SSL is happy and has a cert it's content with */
2124 }
2125#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002126
Andy Greena1ce6be2013-01-18 11:43:21 +08002127#ifndef LWS_NO_SERVER
Andy Greenb45993c2010-12-18 15:13:50 +00002128 /* set up our external listening socket we serve on */
Andy Green8f037e42010-12-19 22:13:26 +00002129
Andy Green1b265272013-02-09 14:01:09 +08002130 if (info->port) {
Andy Greena1ce6be2013-01-18 11:43:21 +08002131 int sockfd;
Andy Green8f037e42010-12-19 22:13:26 +00002132
Andy Green4739e5c2011-01-22 12:51:57 +00002133 sockfd = socket(AF_INET, SOCK_STREAM, 0);
2134 if (sockfd < 0) {
Andy Greenf7609e92013-01-14 13:10:55 +08002135 lwsl_err("ERROR opening socket\n");
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002136 goto bail;
Andy Green4739e5c2011-01-22 12:51:57 +00002137 }
Andy Green775c0dd2010-10-29 14:15:22 +01002138
Joakim Soderberg4c531232013-02-06 15:26:58 +09002139#ifndef WIN32
Andy Greenb5b23192013-02-11 17:13:32 +08002140 /*
2141 * allow us to restart even if old sockets in TIME_WAIT
2142 * (REUSEADDR on Unix means, "don't hang on to this
2143 * address after the listener is closed." On Windows, though,
2144 * it means "don't keep other processes from binding to
2145 * this address while we're using it)
2146 */
Andy Green6ee372f2012-04-09 15:09:01 +08002147 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR,
2148 (const void *)&opt, sizeof(opt));
Joakim Soderberg4c531232013-02-06 15:26:58 +09002149#endif
Andy Green6c939552011-03-08 08:56:57 +00002150
2151 /* Disable Nagle */
2152 opt = 1;
Andy Green6ee372f2012-04-09 15:09:01 +08002153 setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY,
2154 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00002155
Joakim Soderberg4c531232013-02-06 15:26:58 +09002156 #ifdef WIN32
2157 opt = 0;
Andy Greenb5b23192013-02-11 17:13:32 +08002158 ioctlsocket(sockfd, FIONBIO, (unsigned long *)&opt);
Joakim Soderberg4c531232013-02-06 15:26:58 +09002159 #else
Andy Greene2160712013-01-28 12:19:10 +08002160 fcntl(sockfd, F_SETFL, O_NONBLOCK);
Joakim Soderberg4c531232013-02-06 15:26:58 +09002161 #endif
Andy Greene2160712013-01-28 12:19:10 +08002162
Andy Green4739e5c2011-01-22 12:51:57 +00002163 bzero((char *) &serv_addr, sizeof(serv_addr));
2164 serv_addr.sin_family = AF_INET;
Joakim Soderberg63ff1202013-02-11 17:52:23 +01002165 if (info->iface == NULL)
Andy Green32375b72011-02-19 08:32:53 +00002166 serv_addr.sin_addr.s_addr = INADDR_ANY;
2167 else
Joakim Soderberg63ff1202013-02-11 17:52:23 +01002168 interface_to_sa(info->iface, &serv_addr,
Andy Green32375b72011-02-19 08:32:53 +00002169 sizeof(serv_addr));
Andy Green1b265272013-02-09 14:01:09 +08002170 serv_addr.sin_port = htons(info->port);
Andy Green4739e5c2011-01-22 12:51:57 +00002171
2172 n = bind(sockfd, (struct sockaddr *) &serv_addr,
2173 sizeof(serv_addr));
2174 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08002175 lwsl_err("ERROR on binding to port %d (%d %d)\n",
Andy Green1b265272013-02-09 14:01:09 +08002176 info->port, n, errno);
Andy Green8b2d6f02013-10-22 06:49:30 +08002177 compatible_close(sockfd);
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002178 goto bail;
Andy Green4739e5c2011-01-22 12:51:57 +00002179 }
Andy Green0d338332011-02-12 11:57:43 +00002180
Andy Greenb5b23192013-02-11 17:13:32 +08002181 wsi = (struct libwebsocket *)malloc(
2182 sizeof(struct libwebsocket));
Andy Green41c58032013-01-12 13:21:08 +08002183 if (wsi == NULL) {
2184 lwsl_err("Out of mem\n");
Andy Green8b2d6f02013-10-22 06:49:30 +08002185 compatible_close(sockfd);
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002186 goto bail;
Andy Green41c58032013-01-12 13:21:08 +08002187 }
Andy Greenb5b23192013-02-11 17:13:32 +08002188 memset(wsi, 0, sizeof(struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00002189 wsi->sock = sockfd;
Andy Green3182ece2013-01-20 17:08:31 +08002190#ifndef LWS_NO_EXTENSIONS
Andy Greend6e09112011-03-05 16:12:15 +00002191 wsi->count_active_extensions = 0;
Andy Green3182ece2013-01-20 17:08:31 +08002192#endif
Andy Green0d338332011-02-12 11:57:43 +00002193 wsi->mode = LWS_CONNMODE_SERVER_LISTENER;
Andy Greendfb23042013-01-17 12:26:48 +08002194
2195 insert_wsi_socket_into_fds(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002196
Andy Green65b0e912013-01-16 07:59:47 +08002197 context->listen_service_modulo = LWS_LISTEN_SERVICE_MODULO;
2198 context->listen_service_count = 0;
2199 context->listen_service_fd = sockfd;
2200
Andy Greena824d182013-01-15 20:52:29 +08002201 listen(sockfd, LWS_SOMAXCONN);
Andy Green1b265272013-02-09 14:01:09 +08002202 lwsl_notice(" Listening on port %d\n", info->port);
Andy Green8f037e42010-12-19 22:13:26 +00002203 }
Andy Greena1ce6be2013-01-18 11:43:21 +08002204#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002205
Andy Green6ee372f2012-04-09 15:09:01 +08002206 /*
2207 * drop any root privs for this process
2208 * to listen on port < 1023 we would have needed root, but now we are
2209 * listening, we don't want the power for anything else
2210 */
Peter Hinz56885f32011-03-02 22:03:47 +00002211#ifdef WIN32
2212#else
Andy Green1b265272013-02-09 14:01:09 +08002213 if (info->gid != -1)
2214 if (setgid(info->gid))
Andy Green43db0452013-01-10 19:50:35 +08002215 lwsl_warn("setgid: %s\n", strerror(errno));
Andy Green1b265272013-02-09 14:01:09 +08002216 if (info->uid != -1)
2217 if (setuid(info->uid))
Andy Green43db0452013-01-10 19:50:35 +08002218 lwsl_warn("setuid: %s\n", strerror(errno));
Peter Hinz56885f32011-03-02 22:03:47 +00002219#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002220
Andy Green6f520a52013-01-29 17:57:39 +08002221 /* initialize supported protocols */
Andy Greenb45993c2010-12-18 15:13:50 +00002222
Peter Hinz56885f32011-03-02 22:03:47 +00002223 for (context->count_protocols = 0;
Andy Green1b265272013-02-09 14:01:09 +08002224 info->protocols[context->count_protocols].callback;
Peter Hinz56885f32011-03-02 22:03:47 +00002225 context->count_protocols++) {
Andy Green2d1301e2011-05-24 10:14:41 +01002226
Andy Green43db0452013-01-10 19:50:35 +08002227 lwsl_parser(" Protocol: %s\n",
Andy Green1b265272013-02-09 14:01:09 +08002228 info->protocols[context->count_protocols].name);
Andy Green2d1301e2011-05-24 10:14:41 +01002229
Andy Green1b265272013-02-09 14:01:09 +08002230 info->protocols[context->count_protocols].owning_server =
2231 context;
2232 info->protocols[context->count_protocols].protocol_index =
Peter Hinz56885f32011-03-02 22:03:47 +00002233 context->count_protocols;
Andy Greena7109e62013-02-11 12:05:54 +08002234
2235 /*
2236 * inform all the protocols that they are doing their one-time
2237 * initialization if they want to
2238 */
2239 info->protocols[context->count_protocols].callback(context,
2240 NULL, LWS_CALLBACK_PROTOCOL_INIT, NULL, NULL, 0);
Andy Greenb45993c2010-12-18 15:13:50 +00002241 }
Andy Greenf5bc1302013-01-21 09:09:52 +08002242
Andy Green3182ece2013-01-20 17:08:31 +08002243#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +01002244 /*
2245 * give all extensions a chance to create any per-context
2246 * allocations they need
2247 */
2248
2249 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_CONSTRUCT;
Andy Green1b265272013-02-09 14:01:09 +08002250 if (info->port)
Andy Greena41314f2011-05-23 10:00:03 +01002251 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_CONSTRUCT;
Andy Greenb5b23192013-02-11 17:13:32 +08002252
Andy Green1b265272013-02-09 14:01:09 +08002253 if (info->extensions) {
2254 ext = info->extensions;
2255 while (ext->callback) {
2256 lwsl_ext(" Extension: %s\n", ext->name);
2257 ext->callback(context, ext, NULL,
Aaron Zinman4550f1d2013-01-10 12:35:18 +08002258 (enum libwebsocket_extension_callback_reasons)m,
2259 NULL, NULL, 0);
Andy Green1b265272013-02-09 14:01:09 +08002260 ext++;
2261 }
Andy Greena41314f2011-05-23 10:00:03 +01002262 }
Andy Green3182ece2013-01-20 17:08:31 +08002263#endif
Peter Hinz56885f32011-03-02 22:03:47 +00002264 return context;
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002265
2266bail:
2267 libwebsocket_context_destroy(context);
2268 return NULL;
Andy Greene92cd172011-01-19 13:11:55 +00002269}
Andy Greenb45993c2010-12-18 15:13:50 +00002270
Andy Greenb45993c2010-12-18 15:13:50 +00002271/**
2272 * libwebsockets_get_protocol() - Returns a protocol pointer from a websocket
Andy Green8f037e42010-12-19 22:13:26 +00002273 * connection.
Andy Greenb45993c2010-12-18 15:13:50 +00002274 * @wsi: pointer to struct websocket you want to know the protocol of
2275 *
Andy Green8f037e42010-12-19 22:13:26 +00002276 *
Andy Green6f520a52013-01-29 17:57:39 +08002277 * Some apis can act on all live connections of a given protocol,
2278 * this is how you can get a pointer to the active protocol if needed.
Andy Greenb45993c2010-12-18 15:13:50 +00002279 */
Andy Greenab990e42010-10-31 12:42:52 +00002280
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002281LWS_VISIBLE const struct libwebsocket_protocols *
Andy Greenb45993c2010-12-18 15:13:50 +00002282libwebsockets_get_protocol(struct libwebsocket *wsi)
2283{
2284 return wsi->protocol;
2285}
2286
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002287LWS_VISIBLE int
Andy Green82c3d542011-03-07 21:16:31 +00002288libwebsocket_is_final_fragment(struct libwebsocket *wsi)
2289{
Andy Green623a98d2013-01-21 11:04:23 +08002290 return wsi->u.ws.final;
Andy Green82c3d542011-03-07 21:16:31 +00002291}
Alex Bligh49146db2011-11-07 17:19:25 +08002292
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002293LWS_VISIBLE unsigned char
David Galeanoe2cf9922013-01-09 18:06:55 +08002294libwebsocket_get_reserved_bits(struct libwebsocket *wsi)
2295{
Andy Green623a98d2013-01-21 11:04:23 +08002296 return wsi->u.ws.rsv;
David Galeanoe2cf9922013-01-09 18:06:55 +08002297}
2298
Andy Green2af4d5b2013-02-18 16:30:10 +08002299int
Alex Bligh49146db2011-11-07 17:19:25 +08002300libwebsocket_ensure_user_space(struct libwebsocket *wsi)
2301{
Andy Green67d556c2013-02-15 22:31:55 +08002302 if (!wsi->protocol)
Andy Green2af4d5b2013-02-18 16:30:10 +08002303 return 1;
Andy Green67d556c2013-02-15 22:31:55 +08002304
Alex Bligh49146db2011-11-07 17:19:25 +08002305 /* allocate the per-connection user memory (if any) */
2306
2307 if (wsi->protocol->per_session_data_size && !wsi->user_space) {
2308 wsi->user_space = malloc(
2309 wsi->protocol->per_session_data_size);
2310 if (wsi->user_space == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08002311 lwsl_err("Out of memory for conn user space\n");
Andy Green2af4d5b2013-02-18 16:30:10 +08002312 return 1;
Alex Bligh49146db2011-11-07 17:19:25 +08002313 }
Andy Green6ee372f2012-04-09 15:09:01 +08002314 memset(wsi->user_space, 0,
2315 wsi->protocol->per_session_data_size);
Alex Bligh49146db2011-11-07 17:19:25 +08002316 }
Andy Green2af4d5b2013-02-18 16:30:10 +08002317 return 0;
Alex Bligh49146db2011-11-07 17:19:25 +08002318}
Andy Green43db0452013-01-10 19:50:35 +08002319
Andy Green0b319092013-01-19 11:17:56 +08002320static void lwsl_emit_stderr(int level, const char *line)
Andy Greende8f27a2013-01-12 09:17:42 +08002321{
Andy Green0b319092013-01-19 11:17:56 +08002322 char buf[300];
2323 struct timeval tv;
Andy Green0b319092013-01-19 11:17:56 +08002324 int n;
2325
2326 gettimeofday(&tv, NULL);
2327
2328 buf[0] = '\0';
2329 for (n = 0; n < LLL_COUNT; n++)
2330 if (level == (1 << n)) {
Andy Green058ba812013-01-19 11:32:18 +08002331 sprintf(buf, "[%ld:%04d] %s: ", tv.tv_sec,
Andy Greenb5b23192013-02-11 17:13:32 +08002332 (int)(tv.tv_usec / 100), log_level_names[n]);
Andy Green0b319092013-01-19 11:17:56 +08002333 break;
2334 }
Andy Greenb5b23192013-02-11 17:13:32 +08002335
Andy Green0b319092013-01-19 11:17:56 +08002336 fprintf(stderr, "%s%s", buf, line);
Andy Greende8f27a2013-01-12 09:17:42 +08002337}
2338
Joakim Soderberg4c531232013-02-06 15:26:58 +09002339#ifdef WIN32
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002340LWS_VISIBLE void lwsl_emit_syslog(int level, const char *line)
Joakim Soderberg4c531232013-02-06 15:26:58 +09002341{
2342 lwsl_emit_stderr(level, line);
2343}
2344#else
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002345LWS_VISIBLE void lwsl_emit_syslog(int level, const char *line)
Andy Greenc11db202013-01-19 11:12:16 +08002346{
2347 int syslog_level = LOG_DEBUG;
2348
2349 switch (level) {
2350 case LLL_ERR:
2351 syslog_level = LOG_ERR;
2352 break;
2353 case LLL_WARN:
2354 syslog_level = LOG_WARNING;
2355 break;
2356 case LLL_NOTICE:
2357 syslog_level = LOG_NOTICE;
2358 break;
2359 case LLL_INFO:
2360 syslog_level = LOG_INFO;
2361 break;
2362 }
Edwin van den Oetelaarf6eeabc2013-01-19 20:01:01 +08002363 syslog(syslog_level, "%s", line);
Andy Greenc11db202013-01-19 11:12:16 +08002364}
Joakim Soderberg4c531232013-02-06 15:26:58 +09002365#endif
Andy Greenc11db202013-01-19 11:12:16 +08002366
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002367LWS_VISIBLE void _lws_log(int filter, const char *format, ...)
Andy Green43db0452013-01-10 19:50:35 +08002368{
Andy Greende8f27a2013-01-12 09:17:42 +08002369 char buf[256];
Andy Green43db0452013-01-10 19:50:35 +08002370 va_list ap;
Andy Green43db0452013-01-10 19:50:35 +08002371
2372 if (!(log_level & filter))
2373 return;
2374
Andy Green43db0452013-01-10 19:50:35 +08002375 va_start(ap, format);
Andy Greenb5b23192013-02-11 17:13:32 +08002376 vsnprintf(buf, sizeof(buf), format, ap);
2377 buf[sizeof(buf) - 1] = '\0';
Andy Greende8f27a2013-01-12 09:17:42 +08002378 va_end(ap);
2379
Andy Green0b319092013-01-19 11:17:56 +08002380 lwsl_emit(filter, buf);
Andy Green43db0452013-01-10 19:50:35 +08002381}
2382
2383/**
2384 * lws_set_log_level() - Set the logging bitfield
2385 * @level: OR together the LLL_ debug contexts you want output from
Andy Greende8f27a2013-01-12 09:17:42 +08002386 * @log_emit_function: NULL to leave it as it is, or a user-supplied
2387 * function to perform log string emission instead of
2388 * the default stderr one.
Andy Green43db0452013-01-10 19:50:35 +08002389 *
Andy Greenc6511a02013-02-19 10:01:48 +08002390 * log level defaults to "err", "warn" and "notice" contexts enabled and
Andy Greende8f27a2013-01-12 09:17:42 +08002391 * emission on stderr.
Andy Green43db0452013-01-10 19:50:35 +08002392 */
2393
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002394LWS_VISIBLE void lws_set_log_level(int level, void (*log_emit_function)(int level,
Andy Greenb5b23192013-02-11 17:13:32 +08002395 const char *line))
Andy Green43db0452013-01-10 19:50:35 +08002396{
2397 log_level = level;
Andy Greende8f27a2013-01-12 09:17:42 +08002398 if (log_emit_function)
2399 lwsl_emit = log_emit_function;
Andy Green43db0452013-01-10 19:50:35 +08002400}