blob: 58256773bdf6873f7b9cdc962b3eeedf2688345b [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 Greenc11db202013-01-19 11:12:16 +080023#include <syslog.h>
Andy Greenff95d7a2010-10-28 22:36:01 +010024
Peter Hinz56885f32011-03-02 22:03:47 +000025#ifdef WIN32
David Galeanocb193682013-01-09 15:29:00 +080026#include <tchar.h>
27#include <io.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
Andy Green7627af52011-03-09 15:13:52 +000034#include <sys/un.h>
Andy Greena69f0512012-05-03 12:32:38 +080035#include <sys/socket.h>
36#include <netdb.h>
Peter Hinz56885f32011-03-02 22:03:47 +000037#endif
Andy Green2e24da02011-03-05 16:12:04 +000038
39#ifdef LWS_OPENSSL_SUPPORT
40int openssl_websocket_private_data_index;
41#endif
42
Andy Greenaa6fc442012-04-12 13:26:49 +080043#ifdef __MINGW32__
44#include "../win32port/win32helpers/websock-w32.c"
45#else
46#ifdef __MINGW64__
47#include "../win32port/win32helpers/websock-w32.c"
48#endif
49#endif
50
Andy Green7c19c342013-01-19 12:18:07 +080051static int log_level = LLL_ERR | LLL_WARN | LLL_NOTICE;
Andy Green058ba812013-01-19 11:32:18 +080052static void lwsl_emit_stderr(int level, const char *line);
53static void (*lwsl_emit)(int level, const char *line) = lwsl_emit_stderr;
54
Andy Green43db0452013-01-10 19:50:35 +080055static const char *log_level_names[] = {
56 "ERR",
57 "WARN",
Andy Green7c19c342013-01-19 12:18:07 +080058 "NOTICE",
Andy Green43db0452013-01-10 19:50:35 +080059 "INFO",
60 "DEBUG",
61 "PARSER",
62 "HEADER",
63 "EXTENSION",
64 "CLIENT",
65};
66
Andy Green0d338332011-02-12 11:57:43 +000067int
Andy Greendfb23042013-01-17 12:26:48 +080068insert_wsi_socket_into_fds(struct libwebsocket_context *context, struct libwebsocket *wsi)
Andy Green0d338332011-02-12 11:57:43 +000069{
Andy Greendfb23042013-01-17 12:26:48 +080070 if (context->fds_count >= context->max_fds) {
71 lwsl_err("Reached limit of fds tracking (%d)\n", context->max_fds);
Andy Green0d338332011-02-12 11:57:43 +000072 return 1;
73 }
74
Andy Greendfb23042013-01-17 12:26:48 +080075 if (wsi->sock > context->max_fds) {
76 lwsl_err("Socket fd %d is beyond what we can index (%d)\n", wsi->sock, context->max_fds);
77 return 1;
78 }
79
80 assert(wsi);
81 assert(wsi->sock);
82
83 lwsl_info("insert_wsi_socket_into_fds: wsi=%p, sock=%d, fds pos=%d\n", wsi, wsi->sock, context->fds_count);
84
85 context->lws_lookup[wsi->sock] = wsi;
86 wsi->position_in_fds_table = context->fds_count;
87 context->fds[context->fds_count].fd = wsi->sock;
88 context->fds[context->fds_count].events = POLLIN;
89 context->fds[context->fds_count++].revents = 0;
90
91 /* external POLL support via protocol 0 */
92 context->protocols[0].callback(context, wsi,
93 LWS_CALLBACK_ADD_POLL_FD,
94 (void *)(long)wsi->sock, NULL, POLLIN);
Andy Green0d338332011-02-12 11:57:43 +000095
96 return 0;
97}
98
Andy Greendfb23042013-01-17 12:26:48 +080099static int
100remove_wsi_socket_from_fds(struct libwebsocket_context *context, struct libwebsocket *wsi)
Andy Green0d338332011-02-12 11:57:43 +0000101{
Andy Greendfb23042013-01-17 12:26:48 +0800102 int m;
Andy Green0d338332011-02-12 11:57:43 +0000103
Andy Greendfb23042013-01-17 12:26:48 +0800104 if (!--context->fds_count)
105 goto do_ext;
Andy Green0d338332011-02-12 11:57:43 +0000106
Andy Greendfb23042013-01-17 12:26:48 +0800107 if (wsi->sock > context->max_fds) {
108 lwsl_err("Socket fd %d is beyond what we can index (%d)\n", wsi->sock, context->max_fds);
109 return 1;
110 }
Andy Green0d338332011-02-12 11:57:43 +0000111
Andy Greendfb23042013-01-17 12:26:48 +0800112 lwsl_info("remove_wsi_socket_from_fds: wsi=%p, sock=%d, fds pos=%d\n", wsi, wsi->sock, wsi->position_in_fds_table);
113
114 m = wsi->position_in_fds_table; /* replace the contents for this */
115
116 /* have the last guy take up the vacant slot */
117 context->fds[m] = context->fds[context->fds_count]; /* vacant fds slot filled with end one */
118 /* end guy's fds_lookup entry remains unchanged (still same fd pointing to same wsi) */
119 /* end guy's "position in fds table" changed */
120 context->lws_lookup[context->fds[context->fds_count].fd]->position_in_fds_table = m;
121 /* deletion guy's lws_lookup entry needs nuking */
122 context->lws_lookup[wsi->sock] = NULL; /* no WSI for the socket of the wsi being removed*/
123 wsi->position_in_fds_table = -1; /* removed wsi has no position any more */
124
125do_ext:
126 /* remove also from external POLL support via protocol 0 */
127 if (wsi->sock)
128 context->protocols[0].callback(context, wsi,
129 LWS_CALLBACK_DEL_POLL_FD, (void *)(long)wsi->sock, NULL, 0);
130
131 return 0;
Andy Green0d338332011-02-12 11:57:43 +0000132}
133
Andy Green32375b72011-02-19 08:32:53 +0000134
Andy Green8f037e42010-12-19 22:13:26 +0000135void
Peter Hinz56885f32011-03-02 22:03:47 +0000136libwebsocket_close_and_free_session(struct libwebsocket_context *context,
Andy Green687b0182011-02-26 11:04:01 +0000137 struct libwebsocket *wsi, enum lws_close_status reason)
Andy Green251f6fa2010-11-03 11:13:06 +0000138{
Andy Greenb45993c2010-12-18 15:13:50 +0000139 int n;
Andy Green62c54d22011-02-14 09:14:25 +0000140 int old_state;
Andy Green5e1fa172011-02-10 09:07:05 +0000141 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 2 +
142 LWS_SEND_BUFFER_POST_PADDING];
Andy Greenc44159f2011-03-07 07:08:18 +0000143 int ret;
144 int m;
145 struct lws_tokens eff_buf;
Andy Greena41314f2011-05-23 10:00:03 +0100146 struct libwebsocket_extension *ext;
Andy Greenb45993c2010-12-18 15:13:50 +0000147
Andy Green4b6fbe12011-02-14 08:03:48 +0000148 if (!wsi)
Andy Greenb45993c2010-12-18 15:13:50 +0000149 return;
150
Andy Green62c54d22011-02-14 09:14:25 +0000151 old_state = wsi->state;
Andy Green251f6fa2010-11-03 11:13:06 +0000152
Andy Green62c54d22011-02-14 09:14:25 +0000153 if (old_state == WSI_STATE_DEAD_SOCKET)
Andy Green5e1fa172011-02-10 09:07:05 +0000154 return;
155
Andy Greenda527df2011-03-07 07:08:12 +0000156 wsi->close_reason = reason;
157
158 /*
Andy Green68b45042011-05-25 21:41:57 +0100159 * are his extensions okay with him closing? Eg he might be a mux
160 * parent and just his ch1 aspect is closing?
161 */
162
163
164 for (n = 0; n < wsi->count_active_extensions; n++) {
165 if (!wsi->active_extensions[n]->callback)
166 continue;
167
168 m = wsi->active_extensions[n]->callback(context,
169 wsi->active_extensions[n], wsi,
170 LWS_EXT_CALLBACK_CHECK_OK_TO_REALLY_CLOSE,
171 wsi->active_extensions_user[n], NULL, 0);
172
173 /*
174 * if somebody vetoed actually closing him at this time....
175 * up to the extension to track the attempted close, let's
176 * just bail
177 */
178
179 if (m) {
Andy Green43db0452013-01-10 19:50:35 +0800180 lwsl_ext("extension vetoed close\n");
Andy Green68b45042011-05-25 21:41:57 +0100181 return;
182 }
183 }
184
185
186
187 /*
Andy Greenc44159f2011-03-07 07:08:18 +0000188 * flush any tx pending from extensions, since we may send close packet
189 * if there are problems with send, just nuke the connection
190 */
191
192 ret = 1;
193 while (ret == 1) {
194
195 /* default to nobody has more to spill */
196
197 ret = 0;
198 eff_buf.token = NULL;
199 eff_buf.token_len = 0;
200
201 /* show every extension the new incoming data */
202
203 for (n = 0; n < wsi->count_active_extensions; n++) {
204 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000205 wsi->protocol->owning_server,
206 wsi->active_extensions[n], wsi,
Andy Greenc44159f2011-03-07 07:08:18 +0000207 LWS_EXT_CALLBACK_FLUSH_PENDING_TX,
208 wsi->active_extensions_user[n], &eff_buf, 0);
209 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800210 lwsl_ext("Extension reports fatal error\n");
Andy Greenc44159f2011-03-07 07:08:18 +0000211 goto just_kill_connection;
212 }
213 if (m)
214 /*
215 * at least one extension told us he has more
216 * to spill, so we will go around again after
217 */
218 ret = 1;
219 }
220
221 /* assuming they left us something to send, send it */
222
223 if (eff_buf.token_len)
224 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
Andy Green0303db42013-01-17 14:46:43 +0800225 eff_buf.token_len)) {
226 lwsl_debug("close: sending final extension spill had problems\n");
Andy Greenc44159f2011-03-07 07:08:18 +0000227 goto just_kill_connection;
Andy Green0303db42013-01-17 14:46:43 +0800228 }
Andy Greenc44159f2011-03-07 07:08:18 +0000229 }
230
231 /*
Andy Greenda527df2011-03-07 07:08:12 +0000232 * signal we are closing, libsocket_write will
233 * add any necessary version-specific stuff. If the write fails,
234 * no worries we are closing anyway. If we didn't initiate this
235 * close, then our state has been changed to
236 * WSI_STATE_RETURNED_CLOSE_ALREADY and we will skip this.
237 *
238 * Likewise if it's a second call to close this connection after we
239 * sent the close indication to the peer already, we are in state
240 * WSI_STATE_AWAITING_CLOSE_ACK and will skip doing this a second time.
241 */
242
243 if (old_state == WSI_STATE_ESTABLISHED &&
244 reason != LWS_CLOSE_STATUS_NOSTATUS) {
Andy Green66a16f32011-05-24 22:07:45 +0100245
Andy Green43db0452013-01-10 19:50:35 +0800246 lwsl_debug("sending close indication...\n");
Andy Green66a16f32011-05-24 22:07:45 +0100247
Andy Greenda527df2011-03-07 07:08:12 +0000248 n = libwebsocket_write(wsi, &buf[LWS_SEND_BUFFER_PRE_PADDING],
249 0, LWS_WRITE_CLOSE);
250 if (!n) {
251 /*
252 * we have sent a nice protocol level indication we
253 * now wish to close, we should not send anything more
254 */
255
256 wsi->state = WSI_STATE_AWAITING_CLOSE_ACK;
257
Andy Green0303db42013-01-17 14:46:43 +0800258 /* and we should wait for a reply for a bit out of politeness */
Andy Greenda527df2011-03-07 07:08:12 +0000259
260 libwebsocket_set_timeout(wsi,
Andy Green0303db42013-01-17 14:46:43 +0800261 PENDING_TIMEOUT_CLOSE_ACK, 1);
Andy Greenda527df2011-03-07 07:08:12 +0000262
Andy Green43db0452013-01-10 19:50:35 +0800263 lwsl_debug("sent close indication, awaiting ack\n");
Andy Greenda527df2011-03-07 07:08:12 +0000264
265 return;
266 }
267
Andy Green0303db42013-01-17 14:46:43 +0800268 lwsl_info("close: sending the close packet failed, hanging up\n");
269
Andy Greenda527df2011-03-07 07:08:12 +0000270 /* else, the send failed and we should just hang up */
271 }
272
Andy Greenc44159f2011-03-07 07:08:18 +0000273just_kill_connection:
Andy Green66a16f32011-05-24 22:07:45 +0100274
Andy Green43db0452013-01-10 19:50:35 +0800275 lwsl_debug("libwebsocket_close_and_free_session: just_kill_connection\n");
Andy Green66a16f32011-05-24 22:07:45 +0100276
Andy Greenda527df2011-03-07 07:08:12 +0000277 /*
278 * we won't be servicing or receiving anything further from this guy
Andy Greendfb23042013-01-17 12:26:48 +0800279 * delete socket from the internal poll list if still present
Andy Greenda527df2011-03-07 07:08:12 +0000280 */
Andy Green4b6fbe12011-02-14 08:03:48 +0000281
Andy Greendfb23042013-01-17 12:26:48 +0800282 remove_wsi_socket_from_fds(context, wsi);
Andy Green4b6fbe12011-02-14 08:03:48 +0000283
Andy Green251f6fa2010-11-03 11:13:06 +0000284 wsi->state = WSI_STATE_DEAD_SOCKET;
285
Andy Green4b6fbe12011-02-14 08:03:48 +0000286 /* tell the user it's all over for this guy */
287
Andy Greend4302732011-02-28 07:45:29 +0000288 if (wsi->protocol && wsi->protocol->callback &&
Andy Green6ee372f2012-04-09 15:09:01 +0800289 ((old_state == WSI_STATE_ESTABLISHED) ||
290 (old_state == WSI_STATE_RETURNED_CLOSE_ALREADY) ||
291 (old_state == WSI_STATE_AWAITING_CLOSE_ACK))) {
Andy Green43db0452013-01-10 19:50:35 +0800292 lwsl_debug("calling back CLOSED\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000293 wsi->protocol->callback(context, wsi, LWS_CALLBACK_CLOSED,
Andy Greene77ddd82010-11-13 10:03:47 +0000294 wsi->user_space, NULL, 0);
Andy Greencc012472011-11-07 19:53:23 +0800295 } else
Andy Green43db0452013-01-10 19:50:35 +0800296 lwsl_debug("not calling back closed, old_state=%d\n", old_state);
Andy Green251f6fa2010-11-03 11:13:06 +0000297
Andy Greenef660a92011-03-06 10:29:38 +0000298 /* deallocate any active extension contexts */
299
300 for (n = 0; n < wsi->count_active_extensions; n++) {
301 if (!wsi->active_extensions[n]->callback)
302 continue;
303
Andy Green46c2ea02011-03-22 09:04:01 +0000304 wsi->active_extensions[n]->callback(context,
305 wsi->active_extensions[n], wsi,
306 LWS_EXT_CALLBACK_DESTROY,
307 wsi->active_extensions_user[n], NULL, 0);
Andy Greenef660a92011-03-06 10:29:38 +0000308
309 free(wsi->active_extensions_user[n]);
310 }
311
Andy Greena41314f2011-05-23 10:00:03 +0100312 /*
313 * inform all extensions in case they tracked this guy out of band
314 * even though not active on him specifically
315 */
316
317 ext = context->extensions;
318 while (ext && ext->callback) {
319 ext->callback(context, ext, wsi,
320 LWS_EXT_CALLBACK_DESTROY_ANY_WSI_CLOSING,
321 NULL, NULL, 0);
322 ext++;
323 }
324
Andy Greenef660a92011-03-06 10:29:38 +0000325 /* free up his parsing allocations */
Andy Green4b6fbe12011-02-14 08:03:48 +0000326
Andy Green251f6fa2010-11-03 11:13:06 +0000327 for (n = 0; n < WSI_TOKEN_COUNT; n++)
328 if (wsi->utf8_token[n].token)
329 free(wsi->utf8_token[n].token);
Andy Greena1ce6be2013-01-18 11:43:21 +0800330#ifndef LWS_NO_CLIENT
Andy Greena41314f2011-05-23 10:00:03 +0100331 if (wsi->c_address)
332 free(wsi->c_address);
Andy Greena1ce6be2013-01-18 11:43:21 +0800333#endif
Andy Green706961d2013-01-17 16:50:35 +0800334 if (wsi->rxflow_buffer)
335 free(wsi->rxflow_buffer);
336
Andy Green43db0452013-01-10 19:50:35 +0800337/* lwsl_info("closing fd=%d\n", wsi->sock); */
Andy Green251f6fa2010-11-03 11:13:06 +0000338
Andy Green3faa9c72010-11-08 17:03:03 +0000339#ifdef LWS_OPENSSL_SUPPORT
Andy Green90c7cbc2011-01-27 06:26:52 +0000340 if (wsi->ssl) {
Andy Green3faa9c72010-11-08 17:03:03 +0000341 n = SSL_get_fd(wsi->ssl);
342 SSL_shutdown(wsi->ssl);
Andy Green3fc2c652013-01-14 15:35:02 +0800343 compatible_close(n);
Andy Green3faa9c72010-11-08 17:03:03 +0000344 SSL_free(wsi->ssl);
345 } else {
346#endif
Andy Green0303db42013-01-17 14:46:43 +0800347 if (wsi->sock) {
348 n = shutdown(wsi->sock, SHUT_RDWR);
349 if (n)
350 lwsl_debug("closing: shutdown returned %d\n", errno);
Andy Green3fc2c652013-01-14 15:35:02 +0800351
Andy Green0303db42013-01-17 14:46:43 +0800352 n = compatible_close(wsi->sock);
353 if (n)
354 lwsl_debug("closing: close returned %d\n", errno);
355 }
Andy Green3faa9c72010-11-08 17:03:03 +0000356#ifdef LWS_OPENSSL_SUPPORT
357 }
358#endif
David Brooks2c60d952012-04-20 12:19:01 +0800359 if (wsi->protocol && wsi->protocol->per_session_data_size && wsi->user_space) /* user code may own */
Andy Green4f3943a2010-11-12 10:44:16 +0000360 free(wsi->user_space);
361
Andy Green251f6fa2010-11-03 11:13:06 +0000362 free(wsi);
363}
364
Andy Green07034092011-02-13 08:37:12 +0000365/**
Andy Greenf7ee5492011-02-13 09:04:21 +0000366 * libwebsockets_hangup_on_client() - Server calls to terminate client
Andy Green6ee372f2012-04-09 15:09:01 +0800367 * connection
Peter Hinz56885f32011-03-02 22:03:47 +0000368 * @context: libwebsockets context
Andy Greenf7ee5492011-02-13 09:04:21 +0000369 * @fd: Connection socket descriptor
370 */
371
372void
Peter Hinz56885f32011-03-02 22:03:47 +0000373libwebsockets_hangup_on_client(struct libwebsocket_context *context, int fd)
Andy Greenf7ee5492011-02-13 09:04:21 +0000374{
Andy Greendfb23042013-01-17 12:26:48 +0800375 struct libwebsocket *wsi = context->lws_lookup[fd];
Andy Greenf7ee5492011-02-13 09:04:21 +0000376
Andy Greendfb23042013-01-17 12:26:48 +0800377 if (wsi) {
378 libwebsocket_close_and_free_session(context,
379 wsi, LWS_CLOSE_STATUS_NOSTATUS);
380 } else
381 close(fd);
Andy Greenf7ee5492011-02-13 09:04:21 +0000382}
383
384
385/**
Andy Green07034092011-02-13 08:37:12 +0000386 * libwebsockets_get_peer_addresses() - Get client address information
387 * @fd: Connection socket descriptor
388 * @name: Buffer to take client address name
389 * @name_len: Length of client address name buffer
390 * @rip: Buffer to take client address IP qotted quad
391 * @rip_len: Length of client address IP buffer
392 *
393 * This function fills in @name and @rip with the name and IP of
Andy Green6ee372f2012-04-09 15:09:01 +0800394 * the client connected with socket descriptor @fd. Names may be
395 * truncated if there is not enough room. If either cannot be
396 * determined, they will be returned as valid zero-length strings.
Andy Green07034092011-02-13 08:37:12 +0000397 */
398
399void
400libwebsockets_get_peer_addresses(int fd, char *name, int name_len,
401 char *rip, int rip_len)
402{
403 unsigned int len;
404 struct sockaddr_in sin;
405 struct hostent *host;
406 struct hostent *host1;
407 char ip[128];
Andy Greenf92def72011-03-09 15:02:20 +0000408 unsigned char *p;
Andy Green07034092011-02-13 08:37:12 +0000409 int n;
David Galeanocb193682013-01-09 15:29:00 +0800410#ifdef AF_LOCAL
411 struct sockaddr_un *un;
412#endif
Andy Green07034092011-02-13 08:37:12 +0000413
414 rip[0] = '\0';
415 name[0] = '\0';
416
417 len = sizeof sin;
418 if (getpeername(fd, (struct sockaddr *) &sin, &len) < 0) {
419 perror("getpeername");
420 return;
421 }
Andy Green6ee372f2012-04-09 15:09:01 +0800422
Andy Green07034092011-02-13 08:37:12 +0000423 host = gethostbyaddr((char *) &sin.sin_addr, sizeof sin.sin_addr,
424 AF_INET);
425 if (host == NULL) {
426 perror("gethostbyaddr");
427 return;
428 }
429
430 strncpy(name, host->h_name, name_len);
431 name[name_len - 1] = '\0';
432
433 host1 = gethostbyname(host->h_name);
434 if (host1 == NULL)
435 return;
Andy Greenf92def72011-03-09 15:02:20 +0000436 p = (unsigned char *)host1;
Andy Green07034092011-02-13 08:37:12 +0000437 n = 0;
438 while (p != NULL) {
Andy Greenf92def72011-03-09 15:02:20 +0000439 p = (unsigned char *)host1->h_addr_list[n++];
Andy Green07034092011-02-13 08:37:12 +0000440 if (p == NULL)
441 continue;
Peter Hinzbb45a902011-03-10 18:14:01 +0000442 if ((host1->h_addrtype != AF_INET)
443#ifdef AF_LOCAL
444 && (host1->h_addrtype != AF_LOCAL)
445#endif
446 )
Andy Green07034092011-02-13 08:37:12 +0000447 continue;
448
Andy Green7627af52011-03-09 15:13:52 +0000449 if (host1->h_addrtype == AF_INET)
450 sprintf(ip, "%u.%u.%u.%u", p[0], p[1], p[2], p[3]);
Peter Hinzbb45a902011-03-10 18:14:01 +0000451#ifdef AF_LOCAL
Andy Green7627af52011-03-09 15:13:52 +0000452 else {
453 un = (struct sockaddr_un *)p;
Andy Green6ee372f2012-04-09 15:09:01 +0800454 strncpy(ip, un->sun_path, sizeof(ip) - 1);
Andy Green7627af52011-03-09 15:13:52 +0000455 ip[sizeof(ip) - 1] = '\0';
456 }
Peter Hinzbb45a902011-03-10 18:14:01 +0000457#endif
Andy Green07034092011-02-13 08:37:12 +0000458 p = NULL;
459 strncpy(rip, ip, rip_len);
460 rip[rip_len - 1] = '\0';
461 }
462}
Andy Green9f990342011-02-12 11:57:45 +0000463
Peter Hinz56885f32011-03-02 22:03:47 +0000464int libwebsockets_get_random(struct libwebsocket_context *context,
465 void *buf, int len)
466{
467 int n;
Aaron Zinman4550f1d2013-01-10 12:35:18 +0800468 char *p = (char *)buf;
Peter Hinz56885f32011-03-02 22:03:47 +0000469
470#ifdef WIN32
471 for (n = 0; n < len; n++)
472 p[n] = (unsigned char)rand();
473#else
474 n = read(context->fd_random, p, len);
475#endif
476
477 return n;
478}
479
Andy Green2836c642011-03-07 20:47:41 +0000480unsigned char *
481libwebsockets_SHA1(const unsigned char *d, size_t n, unsigned char *md)
482{
483 return SHA1(d, n, md);
484}
485
Andy Green95a7b5d2011-03-06 10:29:39 +0000486int lws_send_pipe_choked(struct libwebsocket *wsi)
487{
488 struct pollfd fds;
489
490 fds.fd = wsi->sock;
491 fds.events = POLLOUT;
492 fds.revents = 0;
493
494 if (poll(&fds, 1, 0) != 1)
495 return 1;
496
497 if ((fds.revents & POLLOUT) == 0)
498 return 1;
499
500 /* okay to send another packet without blocking */
501
502 return 0;
503}
504
Andy Greena41314f2011-05-23 10:00:03 +0100505int
Andy Green3b84c002011-03-06 13:14:42 +0000506lws_handle_POLLOUT_event(struct libwebsocket_context *context,
507 struct libwebsocket *wsi, struct pollfd *pollfd)
508{
509 struct lws_tokens eff_buf;
510 int n;
511 int ret;
512 int m;
Andy Greena41314f2011-05-23 10:00:03 +0100513 int handled = 0;
Andy Green3b84c002011-03-06 13:14:42 +0000514
Andy Greena41314f2011-05-23 10:00:03 +0100515 for (n = 0; n < wsi->count_active_extensions; n++) {
516 if (!wsi->active_extensions[n]->callback)
517 continue;
518
519 m = wsi->active_extensions[n]->callback(context,
520 wsi->active_extensions[n], wsi,
521 LWS_EXT_CALLBACK_IS_WRITEABLE,
522 wsi->active_extensions_user[n], NULL, 0);
523 if (m > handled)
524 handled = m;
525 }
526
527 if (handled == 1)
528 goto notify_action;
529
530 if (!wsi->extension_data_pending || handled == 2)
Andy Green3b84c002011-03-06 13:14:42 +0000531 goto user_service;
532
533 /*
534 * check in on the active extensions, see if they
535 * had pending stuff to spill... they need to get the
536 * first look-in otherwise sequence will be disordered
537 *
538 * NULL, zero-length eff_buf means just spill pending
539 */
540
541 ret = 1;
542 while (ret == 1) {
543
544 /* default to nobody has more to spill */
545
546 ret = 0;
547 eff_buf.token = NULL;
548 eff_buf.token_len = 0;
549
550 /* give every extension a chance to spill */
551
552 for (n = 0; n < wsi->count_active_extensions; n++) {
553 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000554 wsi->protocol->owning_server,
555 wsi->active_extensions[n], wsi,
Andy Green3b84c002011-03-06 13:14:42 +0000556 LWS_EXT_CALLBACK_PACKET_TX_PRESEND,
557 wsi->active_extensions_user[n], &eff_buf, 0);
558 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800559 lwsl_err("ext reports fatal error\n");
Andy Green3b84c002011-03-06 13:14:42 +0000560 return -1;
561 }
562 if (m)
563 /*
564 * at least one extension told us he has more
565 * to spill, so we will go around again after
566 */
567 ret = 1;
568 }
569
570 /* assuming they gave us something to send, send it */
571
572 if (eff_buf.token_len) {
573 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
574 eff_buf.token_len))
575 return -1;
576 } else
577 continue;
578
579 /* no extension has more to spill */
580
581 if (!ret)
582 continue;
583
584 /*
585 * There's more to spill from an extension, but we just sent
586 * something... did that leave the pipe choked?
587 */
588
589 if (!lws_send_pipe_choked(wsi))
590 /* no we could add more */
591 continue;
592
Andy Green43db0452013-01-10 19:50:35 +0800593 lwsl_info("choked in POLLOUT service\n");
Andy Green3b84c002011-03-06 13:14:42 +0000594
595 /*
596 * Yes, he's choked. Leave the POLLOUT masked on so we will
597 * come back here when he is unchoked. Don't call the user
598 * callback to enforce ordering of spilling, he'll get called
599 * when we come back here and there's nothing more to spill.
600 */
601
602 return 0;
603 }
604
605 wsi->extension_data_pending = 0;
606
607user_service:
608 /* one shot */
609
Andy Greena41314f2011-05-23 10:00:03 +0100610 if (pollfd) {
611 pollfd->events &= ~POLLOUT;
Andy Green3b84c002011-03-06 13:14:42 +0000612
Andy Greena41314f2011-05-23 10:00:03 +0100613 /* external POLL support via protocol 0 */
614 context->protocols[0].callback(context, wsi,
615 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
616 (void *)(long)wsi->sock, NULL, POLLOUT);
617 }
618
619notify_action:
Andy Green3b84c002011-03-06 13:14:42 +0000620
Andy Green9e4c2b62011-03-07 20:47:39 +0000621 if (wsi->mode == LWS_CONNMODE_WS_CLIENT)
622 n = LWS_CALLBACK_CLIENT_WRITEABLE;
623 else
624 n = LWS_CALLBACK_SERVER_WRITEABLE;
625
Andy Green706961d2013-01-17 16:50:35 +0800626 user_callback_handle_rxflow(wsi->protocol->callback, context,
627 wsi, (enum libwebsocket_callback_reasons) n, wsi->user_space, NULL, 0);
Andy Green3b84c002011-03-06 13:14:42 +0000628
629 return 0;
630}
631
632
633
Andy Greena41314f2011-05-23 10:00:03 +0100634void
635libwebsocket_service_timeout_check(struct libwebsocket_context *context,
636 struct libwebsocket *wsi, unsigned int sec)
637{
638 int n;
639
640 /*
641 * if extensions want in on it (eg, we are a mux parent)
642 * give them a chance to service child timeouts
643 */
644
645 for (n = 0; n < wsi->count_active_extensions; n++)
646 wsi->active_extensions[n]->callback(
647 context, wsi->active_extensions[n],
648 wsi, LWS_EXT_CALLBACK_1HZ,
649 wsi->active_extensions_user[n], NULL, sec);
650
651 if (!wsi->pending_timeout)
652 return;
Andy Green6ee372f2012-04-09 15:09:01 +0800653
Andy Greena41314f2011-05-23 10:00:03 +0100654 /*
655 * if we went beyond the allowed time, kill the
656 * connection
657 */
658
659 if (sec > wsi->pending_timeout_limit) {
Andy Green43db0452013-01-10 19:50:35 +0800660 lwsl_info("TIMEDOUT WAITING\n");
Andy Greena41314f2011-05-23 10:00:03 +0100661 libwebsocket_close_and_free_session(context,
662 wsi, LWS_CLOSE_STATUS_NOSTATUS);
663 }
664}
665
Andy Green9f990342011-02-12 11:57:45 +0000666/**
667 * libwebsocket_service_fd() - Service polled socket with something waiting
Peter Hinz56885f32011-03-02 22:03:47 +0000668 * @context: Websocket context
Andy Green9f990342011-02-12 11:57:45 +0000669 * @pollfd: The pollfd entry describing the socket fd and which events
Andy Green6ee372f2012-04-09 15:09:01 +0800670 * happened.
Andy Green9f990342011-02-12 11:57:45 +0000671 *
672 * This function closes any active connections and then frees the
673 * context. After calling this, any further use of the context is
674 * undefined.
675 */
676
677int
Peter Hinz56885f32011-03-02 22:03:47 +0000678libwebsocket_service_fd(struct libwebsocket_context *context,
Andy Green0d338332011-02-12 11:57:43 +0000679 struct pollfd *pollfd)
Andy Greenb45993c2010-12-18 15:13:50 +0000680{
Andy Greena1ce6be2013-01-18 11:43:21 +0800681 struct libwebsocket *wsi;
Andy Green6ee372f2012-04-09 15:09:01 +0800682 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 1 +
683 MAX_BROADCAST_PAYLOAD + LWS_SEND_BUFFER_POST_PADDING];
Andy Greenb45993c2010-12-18 15:13:50 +0000684 int n;
Andy Green0d338332011-02-12 11:57:43 +0000685 int m;
Andy Greena71eafc2011-02-14 17:59:43 +0000686 struct timeval tv;
Andy Green2366b1c2011-03-06 13:15:31 +0000687 int more = 1;
Andy Green98a717c2011-03-06 13:14:15 +0000688 struct lws_tokens eff_buf;
Andy Green03674a62013-01-16 11:47:40 +0800689#ifndef LWS_NO_CLIENT
Andy Green76f61e72013-01-16 11:53:05 +0800690 extern int lws_client_socket_service(struct libwebsocket_context *context, struct libwebsocket *wsi, struct pollfd *pollfd);
Andy Green03674a62013-01-16 11:47:40 +0800691#endif
Andy Greena1ce6be2013-01-18 11:43:21 +0800692#ifndef LWS_NO_SERVER
693 extern int lws_server_socket_service(struct libwebsocket_context *context, struct libwebsocket *wsi, struct pollfd *pollfd);
694#endif
Andy Greena71eafc2011-02-14 17:59:43 +0000695 /*
696 * you can call us with pollfd = NULL to just allow the once-per-second
697 * global timeout checks; if less than a second since the last check
698 * it returns immediately then.
699 */
700
701 gettimeofday(&tv, NULL);
702
Peter Hinz56885f32011-03-02 22:03:47 +0000703 if (context->last_timeout_check_s != tv.tv_sec) {
704 context->last_timeout_check_s = tv.tv_sec;
Andy Greena71eafc2011-02-14 17:59:43 +0000705
706 /* global timeout check once per second */
707
Peter Hinz56885f32011-03-02 22:03:47 +0000708 for (n = 0; n < context->fds_count; n++) {
Andy Greendfb23042013-01-17 12:26:48 +0800709 struct libwebsocket *new_wsi = context->lws_lookup[context->fds[n].fd];
710 if (!new_wsi)
711 continue;
712 libwebsocket_service_timeout_check(context,
713 new_wsi, tv.tv_sec);
Andy Greena71eafc2011-02-14 17:59:43 +0000714 }
715 }
716
717 /* just here for timeout management? */
718
719 if (pollfd == NULL)
720 return 0;
721
722 /* no, here to service a socket descriptor */
723
Andy Green65b0e912013-01-16 07:59:47 +0800724 /*
725 * deal with listen service piggybacking
726 * every listen_service_modulo services of other fds, we
727 * sneak one in to service the listen socket if there's anything waiting
728 *
729 * To handle connection storms, as found in ab, if we previously saw a
730 * pending connection here, it causes us to check again next time.
731 */
732
733 if (context->listen_service_fd && pollfd->fd != context->listen_service_fd) {
734 context->listen_service_count++;
735 if (context->listen_service_extraseen ||
736 context->listen_service_count == context->listen_service_modulo) {
737 context->listen_service_count = 0;
738 m = 1;
739 if (context->listen_service_extraseen > 5)
740 m = 2;
741 while (m--) {
742 /* even with extpoll, we prepared this internal fds for listen */
743 n = poll(&context->fds[0], 1, 0);
744 if (n > 0) { /* there's a connection waiting for us */
745 libwebsocket_service_fd(context, &context->fds[0]);
746 context->listen_service_extraseen++;
747 } else {
748 if (context->listen_service_extraseen)
749 context->listen_service_extraseen--;
750 break;
751 }
752 }
753 }
754
755 }
756
757 /* okay, what we came here to do... */
758
Andy Greendfb23042013-01-17 12:26:48 +0800759 wsi = context->lws_lookup[pollfd->fd];
Andy Greend280b6e2013-01-15 13:40:23 +0800760 if (wsi == NULL) {
Andy Greendfb23042013-01-17 12:26:48 +0800761 if (pollfd->fd > 11)
762 lwsl_err("unexpected NULL wsi fd=%d fds_count=%d\n", pollfd->fd, context->fds_count);
Andy Greenfa3f4052012-10-07 20:40:35 +0800763 return 0;
Andy Greend280b6e2013-01-15 13:40:23 +0800764 }
Andy Green8f037e42010-12-19 22:13:26 +0000765
Andy Green0d338332011-02-12 11:57:43 +0000766 switch (wsi->mode) {
Andy Greend280b6e2013-01-15 13:40:23 +0800767
Andy Greena1ce6be2013-01-18 11:43:21 +0800768#ifndef LWS_NO_SERVER
Andy Greend280b6e2013-01-15 13:40:23 +0800769 case LWS_CONNMODE_HTTP_SERVING:
Andy Green0d338332011-02-12 11:57:43 +0000770 case LWS_CONNMODE_SERVER_LISTENER:
Andy Green0d338332011-02-12 11:57:43 +0000771 case LWS_CONNMODE_BROADCAST_PROXY_LISTENER:
Andy Green0d338332011-02-12 11:57:43 +0000772 case LWS_CONNMODE_BROADCAST_PROXY:
Andy Greena1ce6be2013-01-18 11:43:21 +0800773 return lws_server_socket_service(context, wsi, pollfd);
774#endif
Andy Greenbe93fef2011-02-14 20:25:43 +0000775
Andy Green0d338332011-02-12 11:57:43 +0000776 case LWS_CONNMODE_WS_SERVING:
777 case LWS_CONNMODE_WS_CLIENT:
778
779 /* handle session socket closed */
780
781 if (pollfd->revents & (POLLERR | POLLHUP)) {
782
Andy Green43db0452013-01-10 19:50:35 +0800783 lwsl_debug("Session Socket %p (fd=%d) dead\n",
Andy Green0d338332011-02-12 11:57:43 +0000784 (void *)wsi, pollfd->fd);
785
Peter Hinz56885f32011-03-02 22:03:47 +0000786 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000787 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green040d2ef2013-01-16 13:40:43 +0800788 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +0000789 }
790
Andy Green0d338332011-02-12 11:57:43 +0000791 /* the guy requested a callback when it was OK to write */
792
Andy Greenda527df2011-03-07 07:08:12 +0000793 if ((pollfd->revents & POLLOUT) &&
794 wsi->state == WSI_STATE_ESTABLISHED)
795 if (lws_handle_POLLOUT_event(context, wsi,
796 pollfd) < 0) {
797 libwebsocket_close_and_free_session(
798 context, wsi, LWS_CLOSE_STATUS_NORMAL);
Andy Green040d2ef2013-01-16 13:40:43 +0800799 return 0;
Andy Green3b84c002011-03-06 13:14:42 +0000800 }
Andy Green0d338332011-02-12 11:57:43 +0000801
Andy Green0d338332011-02-12 11:57:43 +0000802
803 /* any incoming data ready? */
804
805 if (!(pollfd->revents & POLLIN))
806 break;
807
Andy Greenb45993c2010-12-18 15:13:50 +0000808#ifdef LWS_OPENSSL_SUPPORT
David Galeano7ffbe1b2013-01-10 10:35:32 +0800809read_pending:
Andy Green0d338332011-02-12 11:57:43 +0000810 if (wsi->ssl)
Andy Green98a717c2011-03-06 13:14:15 +0000811 eff_buf.token_len = SSL_read(wsi->ssl, buf, sizeof buf);
Andy Greenb45993c2010-12-18 15:13:50 +0000812 else
813#endif
Andy Green98a717c2011-03-06 13:14:15 +0000814 eff_buf.token_len =
Andy Green72c34322011-04-16 10:46:21 +0100815 recv(pollfd->fd, buf, sizeof buf, 0);
Andy Greenb45993c2010-12-18 15:13:50 +0000816
Andy Green98a717c2011-03-06 13:14:15 +0000817 if (eff_buf.token_len < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800818 lwsl_debug("Socket read returned %d\n",
Andy Green98a717c2011-03-06 13:14:15 +0000819 eff_buf.token_len);
Alon Levydc93b7f2012-10-19 11:21:57 +0200820 if (errno != EINTR && errno != EAGAIN)
Andy Green6ee372f2012-04-09 15:09:01 +0800821 libwebsocket_close_and_free_session(context,
822 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Green040d2ef2013-01-16 13:40:43 +0800823 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +0000824 }
Andy Green98a717c2011-03-06 13:14:15 +0000825 if (!eff_buf.token_len) {
Peter Hinz56885f32011-03-02 22:03:47 +0000826 libwebsocket_close_and_free_session(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +0800827 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenfa3f4052012-10-07 20:40:35 +0800828 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +0000829 }
830
Andy Green98a717c2011-03-06 13:14:15 +0000831 /*
832 * give any active extensions a chance to munge the buffer
833 * before parse. We pass in a pointer to an lws_tokens struct
834 * prepared with the default buffer and content length that's in
835 * there. Rather than rewrite the default buffer, extensions
836 * that expect to grow the buffer can adapt .token to
837 * point to their own per-connection buffer in the extension
838 * user allocation. By default with no extensions or no
839 * extension callback handling, just the normal input buffer is
840 * used then so it is efficient.
841 */
Andy Greenb45993c2010-12-18 15:13:50 +0000842
Andy Green98a717c2011-03-06 13:14:15 +0000843 eff_buf.token = (char *)buf;
Andy Greenb45993c2010-12-18 15:13:50 +0000844
Andy Green98a717c2011-03-06 13:14:15 +0000845 more = 1;
846 while (more) {
Andy Green0d338332011-02-12 11:57:43 +0000847
Andy Green98a717c2011-03-06 13:14:15 +0000848 more = 0;
849
850 for (n = 0; n < wsi->count_active_extensions; n++) {
Andy Green46c2ea02011-03-22 09:04:01 +0000851 m = wsi->active_extensions[n]->callback(context,
852 wsi->active_extensions[n], wsi,
Andy Green98a717c2011-03-06 13:14:15 +0000853 LWS_EXT_CALLBACK_PACKET_RX_PREPARSE,
Andy Green46c2ea02011-03-22 09:04:01 +0000854 wsi->active_extensions_user[n],
855 &eff_buf, 0);
Andy Green98a717c2011-03-06 13:14:15 +0000856 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800857 lwsl_ext(
Andy Green6ee372f2012-04-09 15:09:01 +0800858 "Extension reports fatal error\n");
859 libwebsocket_close_and_free_session(
860 context, wsi,
861 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green040d2ef2013-01-16 13:40:43 +0800862 return 0;
Andy Green98a717c2011-03-06 13:14:15 +0000863 }
864 if (m)
865 more = 1;
866 }
867
868 /* service incoming data */
869
870 if (eff_buf.token_len) {
871 n = libwebsocket_read(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +0800872 (unsigned char *)eff_buf.token,
873 eff_buf.token_len);
Andy Green98a717c2011-03-06 13:14:15 +0000874 if (n < 0)
875 /* we closed wsi */
Andy Green040d2ef2013-01-16 13:40:43 +0800876 return 0;
Andy Green98a717c2011-03-06 13:14:15 +0000877 }
878
879 eff_buf.token = NULL;
880 eff_buf.token_len = 0;
881 }
David Galeano7ffbe1b2013-01-10 10:35:32 +0800882
883#ifdef LWS_OPENSSL_SUPPORT
884 if (wsi->ssl && SSL_pending(wsi->ssl))
885 goto read_pending;
886#endif
Andy Green98a717c2011-03-06 13:14:15 +0000887 break;
Andy Green76f61e72013-01-16 11:53:05 +0800888
889 default:
Andy Green03674a62013-01-16 11:47:40 +0800890#ifdef LWS_NO_CLIENT
891 break;
892#else
Andy Green76f61e72013-01-16 11:53:05 +0800893 return lws_client_socket_service(context, wsi, pollfd);
Andy Green03674a62013-01-16 11:47:40 +0800894#endif
Andy Greenb45993c2010-12-18 15:13:50 +0000895 }
896
897 return 0;
898}
899
Andy Green0d338332011-02-12 11:57:43 +0000900
Andy Green6964bb52011-01-23 16:50:33 +0000901/**
902 * libwebsocket_context_destroy() - Destroy the websocket context
Peter Hinz56885f32011-03-02 22:03:47 +0000903 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +0000904 *
905 * This function closes any active connections and then frees the
906 * context. After calling this, any further use of the context is
907 * undefined.
908 */
909void
Peter Hinz56885f32011-03-02 22:03:47 +0000910libwebsocket_context_destroy(struct libwebsocket_context *context)
Andy Green6964bb52011-01-23 16:50:33 +0000911{
Andy Green0d338332011-02-12 11:57:43 +0000912 int n;
913 int m;
Andy Greena41314f2011-05-23 10:00:03 +0100914 struct libwebsocket_extension *ext;
Andy Green6964bb52011-01-23 16:50:33 +0000915
Andy Greendfb23042013-01-17 12:26:48 +0800916 for (n = 0; n < context->fds_count; n++) {
917 struct libwebsocket *wsi = context->lws_lookup[context->fds[n].fd];
918 libwebsocket_close_and_free_session(context,
919 wsi, LWS_CLOSE_STATUS_GOINGAWAY);
920 }
Andy Green6964bb52011-01-23 16:50:33 +0000921
Andy Greena41314f2011-05-23 10:00:03 +0100922 /*
923 * give all extensions a chance to clean up any per-context
924 * allocations they might have made
925 */
926
927 ext = context->extensions;
928 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_DESTRUCT;
929 if (context->listen_port)
930 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_DESTRUCT;
Paulo Roberto Urio1f680ab2012-06-04 08:40:28 +0800931 while (ext && ext->callback) {
Aaron Zinman4550f1d2013-01-10 12:35:18 +0800932 ext->callback(context, ext, NULL, (enum libwebsocket_extension_callback_reasons)m, NULL, NULL, 0);
Andy Greena41314f2011-05-23 10:00:03 +0100933 ext++;
934 }
935
Peter Hinz56885f32011-03-02 22:03:47 +0000936#ifdef WIN32
937#else
938 close(context->fd_random);
Andy Green6964bb52011-01-23 16:50:33 +0000939#endif
940
Peter Hinz56885f32011-03-02 22:03:47 +0000941#ifdef LWS_OPENSSL_SUPPORT
942 if (context->ssl_ctx)
943 SSL_CTX_free(context->ssl_ctx);
944 if (context->ssl_client_ctx)
945 SSL_CTX_free(context->ssl_client_ctx);
946#endif
947
948 free(context);
949
950#ifdef WIN32
951 WSACleanup();
952#endif
Andy Green6964bb52011-01-23 16:50:33 +0000953}
954
Alon Levy0291eb32012-10-19 11:21:56 +0200955LWS_EXTERN void *
956libwebsocket_context_user(struct libwebsocket_context *context)
957{
958 return context->user_space;
959}
960
Andy Green6964bb52011-01-23 16:50:33 +0000961/**
962 * libwebsocket_service() - Service any pending websocket activity
Peter Hinz56885f32011-03-02 22:03:47 +0000963 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +0000964 * @timeout_ms: Timeout for poll; 0 means return immediately if nothing needed
965 * service otherwise block and service immediately, returning
966 * after the timeout if nothing needed service.
967 *
968 * This function deals with any pending websocket traffic, for three
969 * kinds of event. It handles these events on both server and client
970 * types of connection the same.
971 *
972 * 1) Accept new connections to our context's server
973 *
974 * 2) Perform pending broadcast writes initiated from other forked
975 * processes (effectively serializing asynchronous broadcasts)
976 *
977 * 3) Call the receive callback for incoming frame data received by
978 * server or client connections.
979 *
980 * You need to call this service function periodically to all the above
981 * functions to happen; if your application is single-threaded you can
982 * just call it in your main event loop.
983 *
984 * Alternatively you can fork a new process that asynchronously handles
985 * calling this service in a loop. In that case you are happy if this
986 * call blocks your thread until it needs to take care of something and
987 * would call it with a large nonzero timeout. Your loop then takes no
988 * CPU while there is nothing happening.
989 *
990 * If you are calling it in a single-threaded app, you don't want it to
991 * wait around blocking other things in your loop from happening, so you
992 * would call it with a timeout_ms of 0, so it returns immediately if
993 * nothing is pending, or as soon as it services whatever was pending.
994 */
995
Andy Greenb45993c2010-12-18 15:13:50 +0000996
Andy Greene92cd172011-01-19 13:11:55 +0000997int
Peter Hinz56885f32011-03-02 22:03:47 +0000998libwebsocket_service(struct libwebsocket_context *context, int timeout_ms)
Andy Greene92cd172011-01-19 13:11:55 +0000999{
1000 int n;
Andy Greene92cd172011-01-19 13:11:55 +00001001
1002 /* stay dead once we are dead */
1003
Peter Hinz56885f32011-03-02 22:03:47 +00001004 if (context == NULL)
Andy Greene92cd172011-01-19 13:11:55 +00001005 return 1;
1006
Andy Green0d338332011-02-12 11:57:43 +00001007 /* wait for something to need service */
Andy Green4739e5c2011-01-22 12:51:57 +00001008
Peter Hinz56885f32011-03-02 22:03:47 +00001009 n = poll(context->fds, context->fds_count, timeout_ms);
Andy Green3221f922011-02-12 13:14:11 +00001010 if (n == 0) /* poll timeout */
1011 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001012
Andy Greendfb23042013-01-17 12:26:48 +08001013 if (n < 0)
Andy Green3928f612012-07-20 12:58:38 +08001014 return -1;
Andy Greene92cd172011-01-19 13:11:55 +00001015
Andy Greendfb23042013-01-17 12:26:48 +08001016 /* any socket with events to service? */
Andy Greene92cd172011-01-19 13:11:55 +00001017
Peter Hinz56885f32011-03-02 22:03:47 +00001018 for (n = 0; n < context->fds_count; n++)
1019 if (context->fds[n].revents)
Andy Green3928f612012-07-20 12:58:38 +08001020 if (libwebsocket_service_fd(context,
1021 &context->fds[n]) < 0)
1022 return -1;
Andy Greene92cd172011-01-19 13:11:55 +00001023 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001024}
1025
Andy Greena41314f2011-05-23 10:00:03 +01001026int
1027lws_any_extension_handled(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001028 struct libwebsocket *wsi,
1029 enum libwebsocket_extension_callback_reasons r,
Andy Greena41314f2011-05-23 10:00:03 +01001030 void *v, size_t len)
1031{
1032 int n;
1033 int handled = 0;
1034
1035 /* maybe an extension will take care of it for us */
1036
1037 for (n = 0; n < wsi->count_active_extensions && !handled; n++) {
1038 if (!wsi->active_extensions[n]->callback)
1039 continue;
1040
1041 handled |= wsi->active_extensions[n]->callback(context,
1042 wsi->active_extensions[n], wsi,
1043 r, wsi->active_extensions_user[n], v, len);
1044 }
1045
1046 return handled;
1047}
1048
1049
1050void *
1051lws_get_extension_user_matching_ext(struct libwebsocket *wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001052 struct libwebsocket_extension *ext)
Andy Greena41314f2011-05-23 10:00:03 +01001053{
1054 int n = 0;
1055
Andy Green68b45042011-05-25 21:41:57 +01001056 if (wsi == NULL)
1057 return NULL;
1058
Andy Greena41314f2011-05-23 10:00:03 +01001059 while (n < wsi->count_active_extensions) {
1060 if (wsi->active_extensions[n] != ext) {
1061 n++;
1062 continue;
1063 }
1064 return wsi->active_extensions_user[n];
1065 }
1066
1067 return NULL;
1068}
1069
Andy Green90c7cbc2011-01-27 06:26:52 +00001070/**
1071 * libwebsocket_callback_on_writable() - Request a callback when this socket
1072 * becomes able to be written to without
1073 * blocking
Andy Green32375b72011-02-19 08:32:53 +00001074 *
Peter Hinz56885f32011-03-02 22:03:47 +00001075 * @context: libwebsockets context
Andy Green90c7cbc2011-01-27 06:26:52 +00001076 * @wsi: Websocket connection instance to get callback for
1077 */
1078
1079int
Peter Hinz56885f32011-03-02 22:03:47 +00001080libwebsocket_callback_on_writable(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001081 struct libwebsocket *wsi)
Andy Green90c7cbc2011-01-27 06:26:52 +00001082{
Andy Green90c7cbc2011-01-27 06:26:52 +00001083 int n;
Andy Greena41314f2011-05-23 10:00:03 +01001084 int handled = 0;
1085
1086 /* maybe an extension will take care of it for us */
1087
1088 for (n = 0; n < wsi->count_active_extensions; n++) {
1089 if (!wsi->active_extensions[n]->callback)
1090 continue;
1091
1092 handled |= wsi->active_extensions[n]->callback(context,
1093 wsi->active_extensions[n], wsi,
1094 LWS_EXT_CALLBACK_REQUEST_ON_WRITEABLE,
1095 wsi->active_extensions_user[n], NULL, 0);
1096 }
1097
1098 if (handled)
1099 return 1;
Andy Green90c7cbc2011-01-27 06:26:52 +00001100
Andy Greendfb23042013-01-17 12:26:48 +08001101 if (wsi->position_in_fds_table < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001102 lwsl_err("libwebsocket_callback_on_writable: "
Andy Green6ee372f2012-04-09 15:09:01 +08001103 "failed to find socket %d\n", wsi->sock);
Andy Greendfb23042013-01-17 12:26:48 +08001104 return -1;
1105 }
1106
1107 context->fds[wsi->position_in_fds_table].events |= POLLOUT;
Andy Greena41314f2011-05-23 10:00:03 +01001108
Andy Green3221f922011-02-12 13:14:11 +00001109 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001110 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001111 LWS_CALLBACK_SET_MODE_POLL_FD,
1112 (void *)(long)wsi->sock, NULL, POLLOUT);
1113
Andy Green90c7cbc2011-01-27 06:26:52 +00001114 return 1;
1115}
1116
1117/**
1118 * libwebsocket_callback_on_writable_all_protocol() - Request a callback for
1119 * all connections using the given protocol when it
1120 * becomes possible to write to each socket without
1121 * blocking in turn.
1122 *
1123 * @protocol: Protocol whose connections will get callbacks
1124 */
1125
1126int
1127libwebsocket_callback_on_writable_all_protocol(
1128 const struct libwebsocket_protocols *protocol)
1129{
Peter Hinz56885f32011-03-02 22:03:47 +00001130 struct libwebsocket_context *context = protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001131 int n;
Andy Green0d338332011-02-12 11:57:43 +00001132 struct libwebsocket *wsi;
Andy Green90c7cbc2011-01-27 06:26:52 +00001133
Andy Greendfb23042013-01-17 12:26:48 +08001134 for (n = 0; n < context->fds_count; n++) {
1135 wsi = context->lws_lookup[context->fds[n].fd];
1136 if (!wsi)
1137 continue;
1138 if (wsi->protocol == protocol)
1139 libwebsocket_callback_on_writable(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001140 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001141
1142 return 0;
1143}
1144
Andy Greenbe93fef2011-02-14 20:25:43 +00001145/**
1146 * libwebsocket_set_timeout() - marks the wsi as subject to a timeout
1147 *
1148 * You will not need this unless you are doing something special
1149 *
1150 * @wsi: Websocket connection instance
1151 * @reason: timeout reason
1152 * @secs: how many seconds
1153 */
1154
1155void
1156libwebsocket_set_timeout(struct libwebsocket *wsi,
1157 enum pending_timeout reason, int secs)
1158{
1159 struct timeval tv;
1160
1161 gettimeofday(&tv, NULL);
1162
1163 wsi->pending_timeout_limit = tv.tv_sec + secs;
1164 wsi->pending_timeout = reason;
1165}
1166
Andy Greena6cbece2011-01-27 20:06:03 +00001167
1168/**
1169 * libwebsocket_get_socket_fd() - returns the socket file descriptor
1170 *
1171 * You will not need this unless you are doing something special
1172 *
1173 * @wsi: Websocket connection instance
1174 */
1175
1176int
1177libwebsocket_get_socket_fd(struct libwebsocket *wsi)
1178{
1179 return wsi->sock;
1180}
1181
Andy Greena1ce6be2013-01-18 11:43:21 +08001182#ifdef LWS_NO_SERVER
1183int
1184_libwebsocket_rx_flow_control(struct libwebsocket *wsi)
1185{
1186 return 0;
1187}
1188#else
Andy Green706961d2013-01-17 16:50:35 +08001189int
1190_libwebsocket_rx_flow_control(struct libwebsocket *wsi)
1191{
1192 struct libwebsocket_context *context = wsi->protocol->owning_server;
1193 int n;
1194
1195 if (!(wsi->rxflow_change_to & 2))
1196 return 0;
1197
1198 wsi->rxflow_change_to &= ~2;
1199
1200 lwsl_info("rxflow: wsi %p change_to %d\n", wsi, wsi->rxflow_change_to);
1201
1202 /* if we're letting it come again, did we interrupt anything? */
1203 if ((wsi->rxflow_change_to & 1) && wsi->rxflow_buffer) {
1204 n = libwebsocket_interpret_incoming_packet(wsi, NULL, 0);
1205 if (n < 0) {
1206 libwebsocket_close_and_free_session(context, wsi, LWS_CLOSE_STATUS_NOSTATUS);
1207 return -1;
1208 }
1209 if (n)
1210 /* oh he stuck again, do nothing */
1211 return 0;
1212 }
1213
1214 if (wsi->rxflow_change_to & 1)
1215 context->fds[wsi->position_in_fds_table].events |= POLLIN;
1216 else
1217 context->fds[wsi->position_in_fds_table].events &= ~POLLIN;
1218
1219 if (wsi->rxflow_change_to & 1)
1220 /* external POLL support via protocol 0 */
1221 context->protocols[0].callback(context, wsi,
1222 LWS_CALLBACK_SET_MODE_POLL_FD,
1223 (void *)(long)wsi->sock, NULL, POLLIN);
1224 else
1225 /* external POLL support via protocol 0 */
1226 context->protocols[0].callback(context, wsi,
1227 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
1228 (void *)(long)wsi->sock, NULL, POLLIN);
1229
1230 return 1;
1231}
Andy Greena1ce6be2013-01-18 11:43:21 +08001232#endif
Andy Green706961d2013-01-17 16:50:35 +08001233
Andy Green90c7cbc2011-01-27 06:26:52 +00001234/**
1235 * libwebsocket_rx_flow_control() - Enable and disable socket servicing for
1236 * receieved packets.
1237 *
1238 * If the output side of a server process becomes choked, this allows flow
1239 * control for the input side.
1240 *
1241 * @wsi: Websocket connection instance to get callback for
1242 * @enable: 0 = disable read servicing for this connection, 1 = enable
1243 */
1244
1245int
1246libwebsocket_rx_flow_control(struct libwebsocket *wsi, int enable)
1247{
Andy Green706961d2013-01-17 16:50:35 +08001248 wsi->rxflow_change_to = 2 | !!enable;
Andy Green90c7cbc2011-01-27 06:26:52 +00001249
Andy Green706961d2013-01-17 16:50:35 +08001250 return 0;
Andy Green90c7cbc2011-01-27 06:26:52 +00001251}
1252
Andy Green706961d2013-01-17 16:50:35 +08001253
Andy Green2ac5a6f2011-01-28 10:00:18 +00001254/**
1255 * libwebsocket_canonical_hostname() - returns this host's hostname
1256 *
1257 * This is typically used by client code to fill in the host parameter
1258 * when making a client connection. You can only call it after the context
1259 * has been created.
1260 *
Peter Hinz56885f32011-03-02 22:03:47 +00001261 * @context: Websocket context
Andy Green2ac5a6f2011-01-28 10:00:18 +00001262 */
1263
1264
1265extern const char *
Peter Hinz56885f32011-03-02 22:03:47 +00001266libwebsocket_canonical_hostname(struct libwebsocket_context *context)
Andy Green2ac5a6f2011-01-28 10:00:18 +00001267{
Peter Hinz56885f32011-03-02 22:03:47 +00001268 return (const char *)context->canonical_hostname;
Andy Green2ac5a6f2011-01-28 10:00:18 +00001269}
1270
1271
Andy Green90c7cbc2011-01-27 06:26:52 +00001272static void sigpipe_handler(int x)
1273{
1274}
1275
Andy Green6901cb32011-02-21 08:06:47 +00001276#ifdef LWS_OPENSSL_SUPPORT
1277static int
1278OpenSSL_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx)
1279{
1280
1281 SSL *ssl;
1282 int n;
Andy Green2e24da02011-03-05 16:12:04 +00001283 struct libwebsocket_context *context;
Andy Green6901cb32011-02-21 08:06:47 +00001284
1285 ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
1286 SSL_get_ex_data_X509_STORE_CTX_idx());
1287
1288 /*
Andy Green2e24da02011-03-05 16:12:04 +00001289 * !!! nasty openssl requires the index to come as a library-scope
1290 * static
Andy Green6901cb32011-02-21 08:06:47 +00001291 */
Andy Green2e24da02011-03-05 16:12:04 +00001292 context = SSL_get_ex_data(ssl, openssl_websocket_private_data_index);
Andy Green6ee372f2012-04-09 15:09:01 +08001293
Peter Hinz56885f32011-03-02 22:03:47 +00001294 n = context->protocols[0].callback(NULL, NULL,
Andy Green6901cb32011-02-21 08:06:47 +00001295 LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION,
1296 x509_ctx, ssl, preverify_ok);
1297
1298 /* convert return code from 0 = OK to 1 = OK */
1299
1300 if (!n)
1301 n = 1;
1302 else
1303 n = 0;
1304
1305 return n;
1306}
1307#endif
1308
Andy Green706961d2013-01-17 16:50:35 +08001309int user_callback_handle_rxflow(callback_function callback_function,
1310 struct libwebsocket_context * context,
1311 struct libwebsocket *wsi,
1312 enum libwebsocket_callback_reasons reason, void *user,
1313 void *in, size_t len)
1314{
1315 int n;
1316
1317 n = callback_function(context, wsi, reason, user, in, len);
1318 if (n < 0)
1319 return n;
1320
1321 _libwebsocket_rx_flow_control(wsi);
1322
1323 return 0;
1324}
1325
Andy Greenb45993c2010-12-18 15:13:50 +00001326
Andy Greenab990e42010-10-31 12:42:52 +00001327/**
Andy Green4739e5c2011-01-22 12:51:57 +00001328 * libwebsocket_create_context() - Create the websocket handler
1329 * @port: Port to listen on... you can use 0 to suppress listening on
Andy Green6964bb52011-01-23 16:50:33 +00001330 * any port, that's what you want if you are not running a
1331 * websocket server at all but just using it as a client
Peter Hinz56885f32011-03-02 22:03:47 +00001332 * @interf: NULL to bind the listen socket to all interfaces, or the
Andy Green32375b72011-02-19 08:32:53 +00001333 * interface name, eg, "eth2"
Andy Green4f3943a2010-11-12 10:44:16 +00001334 * @protocols: Array of structures listing supported protocols and a protocol-
Andy Green8f037e42010-12-19 22:13:26 +00001335 * specific callback for each one. The list is ended with an
1336 * entry that has a NULL callback pointer.
Andy Green6964bb52011-01-23 16:50:33 +00001337 * It's not const because we write the owning_server member
Andy Greenc5114822011-03-06 10:29:35 +00001338 * @extensions: NULL or array of libwebsocket_extension structs listing the
Andy Green6ee372f2012-04-09 15:09:01 +08001339 * extensions this context supports
Andy Green3faa9c72010-11-08 17:03:03 +00001340 * @ssl_cert_filepath: If libwebsockets was compiled to use ssl, and you want
Andy Green8f037e42010-12-19 22:13:26 +00001341 * to listen using SSL, set to the filepath to fetch the
1342 * server cert from, otherwise NULL for unencrypted
Andy Green3faa9c72010-11-08 17:03:03 +00001343 * @ssl_private_key_filepath: filepath to private key if wanting SSL mode,
Andy Green8f037e42010-12-19 22:13:26 +00001344 * else ignored
David Galeano2f82be82013-01-09 16:25:54 +08001345 * @ssl_ca_filepath: CA certificate filepath or NULL
Andy Green3faa9c72010-11-08 17:03:03 +00001346 * @gid: group id to change to after setting listen socket, or -1.
1347 * @uid: user id to change to after setting listen socket, or -1.
Andy Greenbfb051f2011-02-09 08:49:14 +00001348 * @options: 0, or LWS_SERVER_OPTION_DEFEAT_CLIENT_MASK
Andy Green15e31f32012-10-19 18:36:28 +08001349 * @user: optional user pointer that can be recovered via the context
1350 * pointer using libwebsocket_context_user
Andy Green05464c62010-11-12 10:44:18 +00001351 *
Andy Green8f037e42010-12-19 22:13:26 +00001352 * This function creates the listening socket and takes care
1353 * of all initialization in one step.
1354 *
Andy Greene92cd172011-01-19 13:11:55 +00001355 * After initialization, it returns a struct libwebsocket_context * that
1356 * represents this server. After calling, user code needs to take care
1357 * of calling libwebsocket_service() with the context pointer to get the
1358 * server's sockets serviced. This can be done in the same process context
1359 * or a forked process, or another thread,
Andy Green05464c62010-11-12 10:44:18 +00001360 *
Andy Green8f037e42010-12-19 22:13:26 +00001361 * The protocol callback functions are called for a handful of events
1362 * including http requests coming in, websocket connections becoming
1363 * established, and data arriving; it's also called periodically to allow
1364 * async transmission.
1365 *
1366 * HTTP requests are sent always to the FIRST protocol in @protocol, since
1367 * at that time websocket protocol has not been negotiated. Other
1368 * protocols after the first one never see any HTTP callack activity.
1369 *
1370 * The server created is a simple http server by default; part of the
1371 * websocket standard is upgrading this http connection to a websocket one.
1372 *
1373 * This allows the same server to provide files like scripts and favicon /
1374 * images or whatever over http and dynamic data over websockets all in
1375 * one place; they're all handled in the user callback.
Andy Greenab990e42010-10-31 12:42:52 +00001376 */
Andy Green4ea60062010-10-30 12:15:07 +01001377
Andy Greene92cd172011-01-19 13:11:55 +00001378struct libwebsocket_context *
Peter Hinz56885f32011-03-02 22:03:47 +00001379libwebsocket_create_context(int port, const char *interf,
Andy Greenb45993c2010-12-18 15:13:50 +00001380 struct libwebsocket_protocols *protocols,
Andy Greend6e09112011-03-05 16:12:15 +00001381 struct libwebsocket_extension *extensions,
Andy Green8f037e42010-12-19 22:13:26 +00001382 const char *ssl_cert_filepath,
1383 const char *ssl_private_key_filepath,
David Galeano2f82be82013-01-09 16:25:54 +08001384 const char *ssl_ca_filepath,
Alon Levy0291eb32012-10-19 11:21:56 +02001385 int gid, int uid, unsigned int options,
David Galeano2f82be82013-01-09 16:25:54 +08001386 void *user)
Andy Greenff95d7a2010-10-28 22:36:01 +01001387{
1388 int n;
Andy Greena41314f2011-05-23 10:00:03 +01001389 int m;
Andy Green251f6fa2010-11-03 11:13:06 +00001390 int fd;
Andy Greenff95d7a2010-10-28 22:36:01 +01001391 struct sockaddr_in serv_addr, cli_addr;
Andy Green251f6fa2010-11-03 11:13:06 +00001392 int opt = 1;
Peter Hinz56885f32011-03-02 22:03:47 +00001393 struct libwebsocket_context *context = NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00001394 unsigned int slen;
Andy Green9659f372011-01-27 22:01:43 +00001395 char *p;
Andy Green0d338332011-02-12 11:57:43 +00001396 struct libwebsocket *wsi;
Andy Greenff95d7a2010-10-28 22:36:01 +01001397
Andy Green3faa9c72010-11-08 17:03:03 +00001398#ifdef LWS_OPENSSL_SUPPORT
Andy Greenf2f54d52010-11-15 22:08:00 +00001399 SSL_METHOD *method;
Andy Green3faa9c72010-11-08 17:03:03 +00001400 char ssl_err_buf[512];
Andy Green3faa9c72010-11-08 17:03:03 +00001401#endif
1402
Andy Greenb3a614a2013-01-19 13:08:17 +08001403 lwsl_notice("Initial logging level %d\n", log_level);
Andy Greenc0d6b632013-01-12 23:42:17 +08001404 lwsl_info(" LWS_MAX_HEADER_NAME_LENGTH: %u\n", LWS_MAX_HEADER_NAME_LENGTH);
1405 lwsl_info(" LWS_MAX_HEADER_LEN: %u\n", LWS_MAX_HEADER_LEN);
1406 lwsl_info(" LWS_INITIAL_HDR_ALLOC: %u\n", LWS_INITIAL_HDR_ALLOC);
1407 lwsl_info(" LWS_ADDITIONAL_HDR_ALLOC: %u\n", LWS_ADDITIONAL_HDR_ALLOC);
1408 lwsl_info(" MAX_USER_RX_BUFFER: %u\n", MAX_USER_RX_BUFFER);
1409 lwsl_info(" MAX_BROADCAST_PAYLOAD: %u\n", MAX_BROADCAST_PAYLOAD);
1410 lwsl_info(" LWS_MAX_PROTOCOLS: %u\n", LWS_MAX_PROTOCOLS);
1411 lwsl_info(" LWS_MAX_EXTENSIONS_ACTIVE: %u\n", LWS_MAX_EXTENSIONS_ACTIVE);
1412 lwsl_info(" SPEC_LATEST_SUPPORTED: %u\n", SPEC_LATEST_SUPPORTED);
1413 lwsl_info(" AWAITING_TIMEOUT: %u\n", AWAITING_TIMEOUT);
1414 lwsl_info(" CIPHERS_LIST_STRING: '%s'\n", CIPHERS_LIST_STRING);
1415 lwsl_info(" SYSTEM_RANDOM_FILEPATH: '%s'\n", SYSTEM_RANDOM_FILEPATH);
1416 lwsl_info(" LWS_MAX_ZLIB_CONN_BUFFER: %u\n", LWS_MAX_ZLIB_CONN_BUFFER);
Andy Green43db0452013-01-10 19:50:35 +08001417
Peter Hinz56885f32011-03-02 22:03:47 +00001418#ifdef _WIN32
1419 {
1420 WORD wVersionRequested;
1421 WSADATA wsaData;
1422 int err;
Andy Green6ee372f2012-04-09 15:09:01 +08001423 HMODULE wsdll;
Peter Hinz56885f32011-03-02 22:03:47 +00001424
1425 /* Use the MAKEWORD(lowbyte, highbyte) macro from Windef.h */
1426 wVersionRequested = MAKEWORD(2, 2);
1427
1428 err = WSAStartup(wVersionRequested, &wsaData);
1429 if (err != 0) {
1430 /* Tell the user that we could not find a usable */
1431 /* Winsock DLL. */
Andy Green43db0452013-01-10 19:50:35 +08001432 lwsl_err("WSAStartup failed with error: %d\n", err);
Peter Hinz56885f32011-03-02 22:03:47 +00001433 return NULL;
1434 }
David Galeano7b11fec2011-10-04 19:55:18 +08001435
Andy Green6ee372f2012-04-09 15:09:01 +08001436 /* default to a poll() made out of select() */
1437 poll = emulated_poll;
David Galeano7b11fec2011-10-04 19:55:18 +08001438
Andy Green6ee372f2012-04-09 15:09:01 +08001439 /* if windows socket lib available, use his WSAPoll */
David Galeanocb193682013-01-09 15:29:00 +08001440 wsdll = GetModuleHandle(_T("Ws2_32.dll"));
Andy Green6ee372f2012-04-09 15:09:01 +08001441 if (wsdll)
1442 poll = (PFNWSAPOLL)GetProcAddress(wsdll, "WSAPoll");
Peter Hinz56885f32011-03-02 22:03:47 +00001443 }
1444#endif
1445
1446
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001447 context = (struct libwebsocket_context *) malloc(sizeof(struct libwebsocket_context));
Peter Hinz56885f32011-03-02 22:03:47 +00001448 if (!context) {
Andy Green43db0452013-01-10 19:50:35 +08001449 lwsl_err("No memory for websocket context\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001450 return NULL;
1451 }
Peter Hinz56885f32011-03-02 22:03:47 +00001452 context->protocols = protocols;
1453 context->listen_port = port;
1454 context->http_proxy_port = 0;
1455 context->http_proxy_address[0] = '\0';
1456 context->options = options;
Andy Greendfb23042013-01-17 12:26:48 +08001457 /* to reduce this allocation, */
1458 context->max_fds = getdtablesize();
Andy Greenb3a614a2013-01-19 13:08:17 +08001459 lwsl_notice(" max fd tracked: %u\n", context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08001460
1461 context->fds = (struct pollfd *)malloc(sizeof(struct pollfd) * context->max_fds);
1462 if (context->fds == NULL) {
1463 lwsl_err("Unable to allocate fds array for %d connections\n", context->max_fds);
1464 free(context);
1465 return NULL;
1466 }
1467 context->lws_lookup = (struct libwebsocket **)malloc(sizeof(struct libwebsocke *) * context->max_fds);
1468 if (context->lws_lookup == NULL) {
1469 lwsl_err("Unable to allocate lws_lookup array for %d connections\n", context->max_fds);
1470 free(context->fds);
1471 free(context);
1472 return NULL;
1473 }
Peter Hinz56885f32011-03-02 22:03:47 +00001474 context->fds_count = 0;
Andy Greend6e09112011-03-05 16:12:15 +00001475 context->extensions = extensions;
Paulo Roberto Urio1e326632012-06-04 10:52:19 +08001476 context->last_timeout_check_s = 0;
Andy Greendfb23042013-01-17 12:26:48 +08001477 context->user_space = user;
Andy Green9659f372011-01-27 22:01:43 +00001478
Peter Hinz56885f32011-03-02 22:03:47 +00001479#ifdef WIN32
1480 context->fd_random = 0;
1481#else
1482 context->fd_random = open(SYSTEM_RANDOM_FILEPATH, O_RDONLY);
1483 if (context->fd_random < 0) {
Andy Greendfb23042013-01-17 12:26:48 +08001484 free(context);
Andy Green43db0452013-01-10 19:50:35 +08001485 lwsl_err("Unable to open random device %s %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001486 SYSTEM_RANDOM_FILEPATH, context->fd_random);
Andy Green44eee682011-02-10 09:32:24 +00001487 return NULL;
1488 }
Peter Hinz56885f32011-03-02 22:03:47 +00001489#endif
Andy Green44eee682011-02-10 09:32:24 +00001490
Peter Hinz56885f32011-03-02 22:03:47 +00001491#ifdef LWS_OPENSSL_SUPPORT
1492 context->use_ssl = 0;
1493 context->ssl_ctx = NULL;
1494 context->ssl_client_ctx = NULL;
Andy Green2e24da02011-03-05 16:12:04 +00001495 openssl_websocket_private_data_index = 0;
Peter Hinz56885f32011-03-02 22:03:47 +00001496#endif
Andy Green2ac5a6f2011-01-28 10:00:18 +00001497
Andy Greena1ce6be2013-01-18 11:43:21 +08001498 strcpy(context->canonical_hostname, "unknown");
Andy Greena69f0512012-05-03 12:32:38 +08001499
Andy Greena1ce6be2013-01-18 11:43:21 +08001500#ifndef LWS_NO_SERVER
1501 if (!(options & LWS_SERVER_OPTION_SKIP_SERVER_CANONICAL_NAME)) {
1502 struct sockaddr sa;
1503 char hostname[1024] = "";
Andy Green788c4a82012-10-22 12:29:57 +01001504
1505 /* find canonical hostname */
1506
1507 hostname[(sizeof hostname) - 1] = '\0';
1508 memset(&sa, 0, sizeof(sa));
1509 sa.sa_family = AF_INET;
1510 sa.sa_data[(sizeof sa.sa_data) - 1] = '\0';
1511 gethostname(hostname, (sizeof hostname) - 1);
1512
1513 n = 0;
1514
David Galeanoed3c8402013-01-10 10:45:24 +08001515 if (strlen(hostname) < sizeof(sa.sa_data) - 1) {
Andy Green788c4a82012-10-22 12:29:57 +01001516 strcpy(sa.sa_data, hostname);
Andy Green43db0452013-01-10 19:50:35 +08001517 // lwsl_debug("my host name is %s\n", sa.sa_data);
Andy Green788c4a82012-10-22 12:29:57 +01001518 n = getnameinfo(&sa, sizeof(sa), hostname,
1519 (sizeof hostname) - 1, NULL, 0, 0);
1520 }
1521
1522 if (!n) {
1523 strncpy(context->canonical_hostname, hostname,
1524 sizeof context->canonical_hostname - 1);
1525 context->canonical_hostname[
1526 sizeof context->canonical_hostname - 1] = '\0';
1527 } else
1528 strncpy(context->canonical_hostname, hostname,
1529 sizeof context->canonical_hostname - 1);
1530
Andy Greenb3a614a2013-01-19 13:08:17 +08001531 lwsl_notice(" canonical_hostname = %s\n", context->canonical_hostname);
Andy Greena69f0512012-05-03 12:32:38 +08001532 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001533#endif
Andy Greena69f0512012-05-03 12:32:38 +08001534
Andy Green9659f372011-01-27 22:01:43 +00001535 /* split the proxy ads:port if given */
1536
1537 p = getenv("http_proxy");
1538 if (p) {
Peter Hinz56885f32011-03-02 22:03:47 +00001539 strncpy(context->http_proxy_address, p,
Andy Green6ee372f2012-04-09 15:09:01 +08001540 sizeof context->http_proxy_address - 1);
Peter Hinz56885f32011-03-02 22:03:47 +00001541 context->http_proxy_address[
1542 sizeof context->http_proxy_address - 1] = '\0';
Andy Green9659f372011-01-27 22:01:43 +00001543
Peter Hinz56885f32011-03-02 22:03:47 +00001544 p = strchr(context->http_proxy_address, ':');
Andy Green9659f372011-01-27 22:01:43 +00001545 if (p == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08001546 lwsl_err("http_proxy needs to be ads:port\n");
Andy Green9659f372011-01-27 22:01:43 +00001547 return NULL;
1548 }
1549 *p = '\0';
Peter Hinz56885f32011-03-02 22:03:47 +00001550 context->http_proxy_port = atoi(p + 1);
Andy Green9659f372011-01-27 22:01:43 +00001551
Andy Greenb3a614a2013-01-19 13:08:17 +08001552 lwsl_notice(" Proxy %s:%u\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001553 context->http_proxy_address,
1554 context->http_proxy_port);
Andy Green9659f372011-01-27 22:01:43 +00001555 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001556
Andy Greena1ce6be2013-01-18 11:43:21 +08001557#ifndef LWS_NO_SERVER
Andy Green90c7cbc2011-01-27 06:26:52 +00001558 if (port) {
1559
Andy Green3faa9c72010-11-08 17:03:03 +00001560#ifdef LWS_OPENSSL_SUPPORT
Peter Hinz56885f32011-03-02 22:03:47 +00001561 context->use_ssl = ssl_cert_filepath != NULL &&
Andy Green90c7cbc2011-01-27 06:26:52 +00001562 ssl_private_key_filepath != NULL;
Peter Hinz56885f32011-03-02 22:03:47 +00001563 if (context->use_ssl)
Andy Greenb3a614a2013-01-19 13:08:17 +08001564 lwsl_notice(" Compiled with SSL support, using it\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001565 else
Andy Greenb3a614a2013-01-19 13:08:17 +08001566 lwsl_notice(" Compiled with SSL support, not using it\n");
Andy Green3faa9c72010-11-08 17:03:03 +00001567
Andy Green90c7cbc2011-01-27 06:26:52 +00001568#else
1569 if (ssl_cert_filepath != NULL &&
1570 ssl_private_key_filepath != NULL) {
Andy Greenb3a614a2013-01-19 13:08:17 +08001571 lwsl_notice(" Not compiled for OpenSSl support!\n");
Andy Greene92cd172011-01-19 13:11:55 +00001572 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001573 }
Andy Greenb3a614a2013-01-19 13:08:17 +08001574 lwsl_notice(" Compiled without SSL support, "
Andy Green90c7cbc2011-01-27 06:26:52 +00001575 "serving unencrypted\n");
1576#endif
1577 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001578#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00001579
1580 /* ignore SIGPIPE */
Peter Hinz56885f32011-03-02 22:03:47 +00001581#ifdef WIN32
1582#else
Andy Green90c7cbc2011-01-27 06:26:52 +00001583 signal(SIGPIPE, sigpipe_handler);
Peter Hinz56885f32011-03-02 22:03:47 +00001584#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00001585
1586
1587#ifdef LWS_OPENSSL_SUPPORT
1588
1589 /* basic openssl init */
1590
1591 SSL_library_init();
1592
1593 OpenSSL_add_all_algorithms();
1594 SSL_load_error_strings();
1595
Andy Green2e24da02011-03-05 16:12:04 +00001596 openssl_websocket_private_data_index =
Andy Green6901cb32011-02-21 08:06:47 +00001597 SSL_get_ex_new_index(0, "libwebsockets", NULL, NULL, NULL);
1598
Andy Green90c7cbc2011-01-27 06:26:52 +00001599 /*
1600 * Firefox insists on SSLv23 not SSLv3
1601 * Konq disables SSLv2 by default now, SSLv23 works
1602 */
1603
1604 method = (SSL_METHOD *)SSLv23_server_method();
1605 if (!method) {
Andy Green43db0452013-01-10 19:50:35 +08001606 lwsl_err("problem creating ssl method: %s\n",
Andy Green90c7cbc2011-01-27 06:26:52 +00001607 ERR_error_string(ERR_get_error(), ssl_err_buf));
1608 return NULL;
1609 }
Peter Hinz56885f32011-03-02 22:03:47 +00001610 context->ssl_ctx = SSL_CTX_new(method); /* create context */
1611 if (!context->ssl_ctx) {
Andy Green43db0452013-01-10 19:50:35 +08001612 lwsl_err("problem creating ssl context: %s\n",
Andy Green90c7cbc2011-01-27 06:26:52 +00001613 ERR_error_string(ERR_get_error(), ssl_err_buf));
1614 return NULL;
1615 }
1616
David Galeanocc148e42013-01-10 10:18:59 +08001617#ifdef SSL_OP_NO_COMPRESSION
David Galeanoc72f6f92013-01-10 10:11:57 +08001618 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08001619#endif
David Galeano77a677c2013-01-10 10:14:12 +08001620 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
David Galeanof177f2a2013-01-10 10:15:19 +08001621 SSL_CTX_set_cipher_list(context->ssl_ctx, CIPHERS_LIST_STRING);
David Galeanoc72f6f92013-01-10 10:11:57 +08001622
Andy Greena1ce6be2013-01-18 11:43:21 +08001623#ifndef LWS_NO_CLIENT
1624
Andy Green90c7cbc2011-01-27 06:26:52 +00001625 /* client context */
Andy Green6ee372f2012-04-09 15:09:01 +08001626
1627 if (port == CONTEXT_PORT_NO_LISTEN) {
Peter Hinz56885f32011-03-02 22:03:47 +00001628 method = (SSL_METHOD *)SSLv23_client_method();
1629 if (!method) {
Andy Green43db0452013-01-10 19:50:35 +08001630 lwsl_err("problem creating ssl method: %s\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001631 ERR_error_string(ERR_get_error(), ssl_err_buf));
1632 return NULL;
1633 }
1634 /* create context */
1635 context->ssl_client_ctx = SSL_CTX_new(method);
1636 if (!context->ssl_client_ctx) {
Andy Green43db0452013-01-10 19:50:35 +08001637 lwsl_err("problem creating ssl context: %s\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001638 ERR_error_string(ERR_get_error(), ssl_err_buf));
1639 return NULL;
1640 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001641
David Galeanocc148e42013-01-10 10:18:59 +08001642#ifdef SSL_OP_NO_COMPRESSION
David Galeanoc72f6f92013-01-10 10:11:57 +08001643 SSL_CTX_set_options(context->ssl_client_ctx, SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08001644#endif
David Galeano77a677c2013-01-10 10:14:12 +08001645 SSL_CTX_set_options(context->ssl_client_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
David Galeanof177f2a2013-01-10 10:15:19 +08001646 SSL_CTX_set_cipher_list(context->ssl_client_ctx, CIPHERS_LIST_STRING);
David Galeanoc72f6f92013-01-10 10:11:57 +08001647
Peter Hinz56885f32011-03-02 22:03:47 +00001648 /* openssl init for cert verification (for client sockets) */
David Galeano2f82be82013-01-09 16:25:54 +08001649 if (!ssl_ca_filepath) {
1650 if (!SSL_CTX_load_verify_locations(
1651 context->ssl_client_ctx, NULL,
1652 LWS_OPENSSL_CLIENT_CERTS))
Andy Green43db0452013-01-10 19:50:35 +08001653 lwsl_err(
David Galeano2f82be82013-01-09 16:25:54 +08001654 "Unable to load SSL Client certs from %s "
1655 "(set by --with-client-cert-dir= in configure) -- "
1656 " client ssl isn't going to work",
1657 LWS_OPENSSL_CLIENT_CERTS);
1658 } else
1659 if (!SSL_CTX_load_verify_locations(
1660 context->ssl_client_ctx, ssl_ca_filepath,
1661 NULL))
Andy Green43db0452013-01-10 19:50:35 +08001662 lwsl_err(
David Galeano2f82be82013-01-09 16:25:54 +08001663 "Unable to load SSL Client certs "
1664 "file from %s -- client ssl isn't "
1665 "going to work", ssl_ca_filepath);
Peter Hinz56885f32011-03-02 22:03:47 +00001666
1667 /*
1668 * callback allowing user code to load extra verification certs
1669 * helping the client to verify server identity
1670 */
1671
1672 context->protocols[0].callback(context, NULL,
1673 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS,
1674 context->ssl_client_ctx, NULL, 0);
Andy Green90c7cbc2011-01-27 06:26:52 +00001675 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001676#endif
Andy Green6ee372f2012-04-09 15:09:01 +08001677
Andy Greenc6bf2c22011-02-20 11:10:47 +00001678 /* as a server, are we requiring clients to identify themselves? */
1679
1680 if (options & LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT) {
1681
1682 /* absolutely require the client cert */
Andy Green6ee372f2012-04-09 15:09:01 +08001683
Peter Hinz56885f32011-03-02 22:03:47 +00001684 SSL_CTX_set_verify(context->ssl_ctx,
Andy Green6901cb32011-02-21 08:06:47 +00001685 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
1686 OpenSSL_verify_callback);
Andy Greenc6bf2c22011-02-20 11:10:47 +00001687
1688 /*
1689 * give user code a chance to load certs into the server
1690 * allowing it to verify incoming client certs
1691 */
1692
Peter Hinz56885f32011-03-02 22:03:47 +00001693 context->protocols[0].callback(context, NULL,
Andy Greenc6bf2c22011-02-20 11:10:47 +00001694 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS,
Peter Hinz56885f32011-03-02 22:03:47 +00001695 context->ssl_ctx, NULL, 0);
Andy Greenc6bf2c22011-02-20 11:10:47 +00001696 }
1697
Peter Hinz56885f32011-03-02 22:03:47 +00001698 if (context->use_ssl) {
Andy Green90c7cbc2011-01-27 06:26:52 +00001699
1700 /* openssl init for server sockets */
1701
Andy Green3faa9c72010-11-08 17:03:03 +00001702 /* set the local certificate from CertFile */
David Galeano9b3d4b22013-01-10 10:11:21 +08001703 n = SSL_CTX_use_certificate_chain_file(context->ssl_ctx,
1704 ssl_cert_filepath);
Andy Green3faa9c72010-11-08 17:03:03 +00001705 if (n != 1) {
Andy Green43db0452013-01-10 19:50:35 +08001706 lwsl_err("problem getting cert '%s': %s\n",
Andy Green3faa9c72010-11-08 17:03:03 +00001707 ssl_cert_filepath,
1708 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00001709 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001710 }
1711 /* set the private key from KeyFile */
Peter Hinz56885f32011-03-02 22:03:47 +00001712 if (SSL_CTX_use_PrivateKey_file(context->ssl_ctx,
1713 ssl_private_key_filepath, SSL_FILETYPE_PEM) != 1) {
Andy Green43db0452013-01-10 19:50:35 +08001714 lwsl_err("ssl problem getting key '%s': %s\n",
Andy Green018d8eb2010-11-08 21:04:23 +00001715 ssl_private_key_filepath,
1716 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00001717 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001718 }
1719 /* verify private key */
Peter Hinz56885f32011-03-02 22:03:47 +00001720 if (!SSL_CTX_check_private_key(context->ssl_ctx)) {
Andy Green43db0452013-01-10 19:50:35 +08001721 lwsl_err("Private SSL key doesn't match cert\n");
Andy Greene92cd172011-01-19 13:11:55 +00001722 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001723 }
1724
1725 /* SSL is happy and has a cert it's content with */
1726 }
1727#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001728
Andy Greendf736162011-01-18 15:39:02 +00001729 /* selftest */
1730
1731 if (lws_b64_selftest())
Andy Greene92cd172011-01-19 13:11:55 +00001732 return NULL;
Andy Greendf736162011-01-18 15:39:02 +00001733
Andy Greena1ce6be2013-01-18 11:43:21 +08001734#ifndef LWS_NO_SERVER
Andy Greenb45993c2010-12-18 15:13:50 +00001735 /* set up our external listening socket we serve on */
Andy Green8f037e42010-12-19 22:13:26 +00001736
Andy Green4739e5c2011-01-22 12:51:57 +00001737 if (port) {
Andy Greena1ce6be2013-01-18 11:43:21 +08001738 extern int interface_to_sa(const char *ifname, struct sockaddr_in *addr, size_t addrlen);
1739 int sockfd;
Andy Green8f037e42010-12-19 22:13:26 +00001740
Andy Green4739e5c2011-01-22 12:51:57 +00001741 sockfd = socket(AF_INET, SOCK_STREAM, 0);
1742 if (sockfd < 0) {
Andy Greenf7609e92013-01-14 13:10:55 +08001743 lwsl_err("ERROR opening socket\n");
Andy Green4739e5c2011-01-22 12:51:57 +00001744 return NULL;
1745 }
Andy Green775c0dd2010-10-29 14:15:22 +01001746
Andy Green4739e5c2011-01-22 12:51:57 +00001747 /* allow us to restart even if old sockets in TIME_WAIT */
Andy Green6ee372f2012-04-09 15:09:01 +08001748 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR,
1749 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00001750
1751 /* Disable Nagle */
1752 opt = 1;
Andy Green6ee372f2012-04-09 15:09:01 +08001753 setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY,
1754 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00001755
Andy Green4739e5c2011-01-22 12:51:57 +00001756 bzero((char *) &serv_addr, sizeof(serv_addr));
1757 serv_addr.sin_family = AF_INET;
Peter Hinz56885f32011-03-02 22:03:47 +00001758 if (interf == NULL)
Andy Green32375b72011-02-19 08:32:53 +00001759 serv_addr.sin_addr.s_addr = INADDR_ANY;
1760 else
Peter Hinz56885f32011-03-02 22:03:47 +00001761 interface_to_sa(interf, &serv_addr,
Andy Green32375b72011-02-19 08:32:53 +00001762 sizeof(serv_addr));
Andy Green4739e5c2011-01-22 12:51:57 +00001763 serv_addr.sin_port = htons(port);
1764
1765 n = bind(sockfd, (struct sockaddr *) &serv_addr,
1766 sizeof(serv_addr));
1767 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001768 lwsl_err("ERROR on binding to port %d (%d %d)\n",
Andy Green8f037e42010-12-19 22:13:26 +00001769 port, n, errno);
Andy Green41c58032013-01-12 13:21:08 +08001770 close(sockfd);
Andy Green4739e5c2011-01-22 12:51:57 +00001771 return NULL;
1772 }
Andy Green0d338332011-02-12 11:57:43 +00001773
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001774 wsi = (struct libwebsocket *)malloc(sizeof(struct libwebsocket));
Andy Green41c58032013-01-12 13:21:08 +08001775 if (wsi == NULL) {
1776 lwsl_err("Out of mem\n");
1777 close(sockfd);
1778 return NULL;
1779 }
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001780 memset(wsi, 0, sizeof (struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00001781 wsi->sock = sockfd;
Andy Greend6e09112011-03-05 16:12:15 +00001782 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00001783 wsi->mode = LWS_CONNMODE_SERVER_LISTENER;
Andy Greendfb23042013-01-17 12:26:48 +08001784
1785 insert_wsi_socket_into_fds(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001786
Andy Green65b0e912013-01-16 07:59:47 +08001787 context->listen_service_modulo = LWS_LISTEN_SERVICE_MODULO;
1788 context->listen_service_count = 0;
1789 context->listen_service_fd = sockfd;
1790
Andy Greena824d182013-01-15 20:52:29 +08001791 listen(sockfd, LWS_SOMAXCONN);
Andy Greenb3a614a2013-01-19 13:08:17 +08001792 lwsl_notice(" Listening on port %d\n", port);
Andy Green8f037e42010-12-19 22:13:26 +00001793 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001794#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001795
Andy Green6ee372f2012-04-09 15:09:01 +08001796 /*
1797 * drop any root privs for this process
1798 * to listen on port < 1023 we would have needed root, but now we are
1799 * listening, we don't want the power for anything else
1800 */
Peter Hinz56885f32011-03-02 22:03:47 +00001801#ifdef WIN32
1802#else
Andy Green3faa9c72010-11-08 17:03:03 +00001803 if (gid != -1)
1804 if (setgid(gid))
Andy Green43db0452013-01-10 19:50:35 +08001805 lwsl_warn("setgid: %s\n", strerror(errno));
Andy Green3faa9c72010-11-08 17:03:03 +00001806 if (uid != -1)
1807 if (setuid(uid))
Andy Green43db0452013-01-10 19:50:35 +08001808 lwsl_warn("setuid: %s\n", strerror(errno));
Peter Hinz56885f32011-03-02 22:03:47 +00001809#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001810
1811 /* set up our internal broadcast trigger sockets per-protocol */
1812
Peter Hinz56885f32011-03-02 22:03:47 +00001813 for (context->count_protocols = 0;
1814 protocols[context->count_protocols].callback;
1815 context->count_protocols++) {
Andy Green2d1301e2011-05-24 10:14:41 +01001816
Andy Green43db0452013-01-10 19:50:35 +08001817 lwsl_parser(" Protocol: %s\n",
1818 protocols[context->count_protocols].name);
Andy Green2d1301e2011-05-24 10:14:41 +01001819
Peter Hinz56885f32011-03-02 22:03:47 +00001820 protocols[context->count_protocols].owning_server = context;
1821 protocols[context->count_protocols].protocol_index =
1822 context->count_protocols;
Andy Greenb45993c2010-12-18 15:13:50 +00001823
1824 fd = socket(AF_INET, SOCK_STREAM, 0);
1825 if (fd < 0) {
Andy Greenf7609e92013-01-14 13:10:55 +08001826 lwsl_err("ERROR opening socket\n");
Andy Greene92cd172011-01-19 13:11:55 +00001827 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00001828 }
Andy Green8f037e42010-12-19 22:13:26 +00001829
Andy Greenb45993c2010-12-18 15:13:50 +00001830 /* allow us to restart even if old sockets in TIME_WAIT */
Andy Green6ee372f2012-04-09 15:09:01 +08001831 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const void *)&opt,
1832 sizeof(opt));
Andy Greenb45993c2010-12-18 15:13:50 +00001833
1834 bzero((char *) &serv_addr, sizeof(serv_addr));
1835 serv_addr.sin_family = AF_INET;
1836 serv_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
1837 serv_addr.sin_port = 0; /* pick the port for us */
1838
1839 n = bind(fd, (struct sockaddr *) &serv_addr, sizeof(serv_addr));
1840 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001841 lwsl_err("ERROR on binding to port %d (%d %d)\n",
Andy Greenb45993c2010-12-18 15:13:50 +00001842 port, n, errno);
Andy Greene92cd172011-01-19 13:11:55 +00001843 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00001844 }
1845
1846 slen = sizeof cli_addr;
1847 n = getsockname(fd, (struct sockaddr *)&cli_addr, &slen);
1848 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001849 lwsl_err("getsockname failed\n");
Andy Greene92cd172011-01-19 13:11:55 +00001850 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00001851 }
Peter Hinz56885f32011-03-02 22:03:47 +00001852 protocols[context->count_protocols].broadcast_socket_port =
Andy Greenb45993c2010-12-18 15:13:50 +00001853 ntohs(cli_addr.sin_port);
1854 listen(fd, 5);
1855
Andy Green43db0452013-01-10 19:50:35 +08001856 lwsl_debug(" Protocol %s broadcast socket %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001857 protocols[context->count_protocols].name,
Andy Greenb45993c2010-12-18 15:13:50 +00001858 ntohs(cli_addr.sin_port));
1859
Andy Green0d338332011-02-12 11:57:43 +00001860 /* dummy wsi per broadcast proxy socket */
1861
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001862 wsi = (struct libwebsocket *)malloc(sizeof(struct libwebsocket));
Andy Green41c58032013-01-12 13:21:08 +08001863 if (wsi == NULL) {
1864 lwsl_err("Out of mem\n");
1865 close(fd);
1866 return NULL;
1867 }
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001868 memset(wsi, 0, sizeof (struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00001869 wsi->sock = fd;
1870 wsi->mode = LWS_CONNMODE_BROADCAST_PROXY_LISTENER;
Andy Greend6e09112011-03-05 16:12:15 +00001871 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00001872 /* note which protocol we are proxying */
Peter Hinz56885f32011-03-02 22:03:47 +00001873 wsi->protocol_index_for_broadcast_proxy =
1874 context->count_protocols;
Andy Green0d338332011-02-12 11:57:43 +00001875
Andy Greendfb23042013-01-17 12:26:48 +08001876 insert_wsi_socket_into_fds(context, wsi);
Andy Greenb45993c2010-12-18 15:13:50 +00001877 }
1878
Andy Greena41314f2011-05-23 10:00:03 +01001879 /*
1880 * give all extensions a chance to create any per-context
1881 * allocations they need
1882 */
1883
1884 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_CONSTRUCT;
1885 if (port)
1886 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_CONSTRUCT;
Andrew Chambersd5512172012-05-20 08:17:09 +08001887
1888 if (extensions) {
1889 while (extensions->callback) {
Andy Green43db0452013-01-10 19:50:35 +08001890 lwsl_ext(" Extension: %s\n", extensions->name);
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001891 extensions->callback(context, extensions, NULL,
1892 (enum libwebsocket_extension_callback_reasons)m,
1893 NULL, NULL, 0);
Andrew Chambersd5512172012-05-20 08:17:09 +08001894 extensions++;
1895 }
Andy Greena41314f2011-05-23 10:00:03 +01001896 }
1897
Peter Hinz56885f32011-03-02 22:03:47 +00001898 return context;
Andy Greene92cd172011-01-19 13:11:55 +00001899}
Andy Greenb45993c2010-12-18 15:13:50 +00001900
Andy Green4739e5c2011-01-22 12:51:57 +00001901
Andy Greened11a022011-01-20 10:23:50 +00001902#ifndef LWS_NO_FORK
1903
Andy Greene92cd172011-01-19 13:11:55 +00001904/**
1905 * libwebsockets_fork_service_loop() - Optional helper function forks off
1906 * a process for the websocket server loop.
Andy Green6964bb52011-01-23 16:50:33 +00001907 * You don't have to use this but if not, you
1908 * have to make sure you are calling
1909 * libwebsocket_service periodically to service
1910 * the websocket traffic
Peter Hinz56885f32011-03-02 22:03:47 +00001911 * @context: server context returned by creation function
Andy Greene92cd172011-01-19 13:11:55 +00001912 */
Andy Greenb45993c2010-12-18 15:13:50 +00001913
Andy Greene92cd172011-01-19 13:11:55 +00001914int
Peter Hinz56885f32011-03-02 22:03:47 +00001915libwebsockets_fork_service_loop(struct libwebsocket_context *context)
Andy Greene92cd172011-01-19 13:11:55 +00001916{
Andy Greene92cd172011-01-19 13:11:55 +00001917 int fd;
1918 struct sockaddr_in cli_addr;
1919 int n;
Andy Green3221f922011-02-12 13:14:11 +00001920 int p;
Andy Greenb45993c2010-12-18 15:13:50 +00001921
Andy Greened11a022011-01-20 10:23:50 +00001922 n = fork();
1923 if (n < 0)
1924 return n;
1925
1926 if (!n) {
1927
1928 /* main process context */
1929
Andy Green3221f922011-02-12 13:14:11 +00001930 /*
1931 * set up the proxy sockets to allow broadcast from
1932 * service process context
1933 */
1934
Peter Hinz56885f32011-03-02 22:03:47 +00001935 for (p = 0; p < context->count_protocols; p++) {
Andy Greened11a022011-01-20 10:23:50 +00001936 fd = socket(AF_INET, SOCK_STREAM, 0);
1937 if (fd < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001938 lwsl_err("Unable to create socket\n");
Andy Greened11a022011-01-20 10:23:50 +00001939 return -1;
1940 }
1941 cli_addr.sin_family = AF_INET;
1942 cli_addr.sin_port = htons(
Peter Hinz56885f32011-03-02 22:03:47 +00001943 context->protocols[p].broadcast_socket_port);
Andy Greened11a022011-01-20 10:23:50 +00001944 cli_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
1945 n = connect(fd, (struct sockaddr *)&cli_addr,
1946 sizeof cli_addr);
1947 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001948 lwsl_err("Unable to connect to "
Andy Greened11a022011-01-20 10:23:50 +00001949 "broadcast socket %d, %s\n",
Andy Green3221f922011-02-12 13:14:11 +00001950 n, strerror(errno));
Andy Greened11a022011-01-20 10:23:50 +00001951 return -1;
1952 }
1953
Peter Hinz56885f32011-03-02 22:03:47 +00001954 context->protocols[p].broadcast_socket_user_fd = fd;
Andy Greened11a022011-01-20 10:23:50 +00001955 }
1956
Andy Greene92cd172011-01-19 13:11:55 +00001957 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +00001958 }
1959
Artem Baguinski91531662011-12-14 22:14:03 +01001960#ifdef HAVE_SYS_PRCTL_H
Andy Greenb45993c2010-12-18 15:13:50 +00001961 /* we want a SIGHUP when our parent goes down */
1962 prctl(PR_SET_PDEATHSIG, SIGHUP);
Artem Baguinski91531662011-12-14 22:14:03 +01001963#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001964
1965 /* in this forked process, sit and service websocket connections */
Andy Green8f037e42010-12-19 22:13:26 +00001966
Artem Baguinski91531662011-12-14 22:14:03 +01001967 while (1) {
Peter Hinz56885f32011-03-02 22:03:47 +00001968 if (libwebsocket_service(context, 1000))
Andy Green3928f612012-07-20 12:58:38 +08001969 break;
Andy Green5e8967a2012-10-17 20:10:44 +08001970//#ifndef HAVE_SYS_PRCTL_H
Artem Baguinski91531662011-12-14 22:14:03 +01001971/*
1972 * on systems without prctl() (i.e. anything but linux) we can notice that our
1973 * parent is dead if getppid() returns 1. FIXME apparently this is not true for
1974 * solaris, could remember ppid right after fork and wait for it to change.
1975 */
1976
1977 if (getppid() == 1)
1978 break;
Andy Green5e8967a2012-10-17 20:10:44 +08001979//#endif
Artem Baguinski91531662011-12-14 22:14:03 +01001980 }
1981
Andy Green8f037e42010-12-19 22:13:26 +00001982
Andy Green3928f612012-07-20 12:58:38 +08001983 return 1;
Andy Greenff95d7a2010-10-28 22:36:01 +01001984}
1985
Andy Greened11a022011-01-20 10:23:50 +00001986#endif
1987
Andy Greenb45993c2010-12-18 15:13:50 +00001988/**
1989 * libwebsockets_get_protocol() - Returns a protocol pointer from a websocket
Andy Green8f037e42010-12-19 22:13:26 +00001990 * connection.
Andy Greenb45993c2010-12-18 15:13:50 +00001991 * @wsi: pointer to struct websocket you want to know the protocol of
1992 *
Andy Green8f037e42010-12-19 22:13:26 +00001993 *
1994 * This is useful to get the protocol to broadcast back to from inside
Andy Greenb45993c2010-12-18 15:13:50 +00001995 * the callback.
1996 */
Andy Greenab990e42010-10-31 12:42:52 +00001997
Andy Greenb45993c2010-12-18 15:13:50 +00001998const struct libwebsocket_protocols *
1999libwebsockets_get_protocol(struct libwebsocket *wsi)
2000{
2001 return wsi->protocol;
2002}
2003
2004/**
Andy Greene92cd172011-01-19 13:11:55 +00002005 * libwebsockets_broadcast() - Sends a buffer to the callback for all active
Andy Green8f037e42010-12-19 22:13:26 +00002006 * connections of the given protocol.
Andy Greenb45993c2010-12-18 15:13:50 +00002007 * @protocol: pointer to the protocol you will broadcast to all members of
2008 * @buf: buffer containing the data to be broadcase. NOTE: this has to be
Andy Green8f037e42010-12-19 22:13:26 +00002009 * allocated with LWS_SEND_BUFFER_PRE_PADDING valid bytes before
2010 * the pointer and LWS_SEND_BUFFER_POST_PADDING afterwards in the
2011 * case you are calling this function from callback context.
Andy Greenb45993c2010-12-18 15:13:50 +00002012 * @len: length of payload data in buf, starting from buf.
Andy Green8f037e42010-12-19 22:13:26 +00002013 *
2014 * This function allows bulk sending of a packet to every connection using
Andy Greenb45993c2010-12-18 15:13:50 +00002015 * the given protocol. It does not send the data directly; instead it calls
2016 * the callback with a reason type of LWS_CALLBACK_BROADCAST. If the callback
2017 * wants to actually send the data for that connection, the callback itself
2018 * should call libwebsocket_write().
2019 *
2020 * libwebsockets_broadcast() can be called from another fork context without
2021 * having to take any care about data visibility between the processes, it'll
2022 * "just work".
2023 */
2024
2025
2026int
Andy Green8f037e42010-12-19 22:13:26 +00002027libwebsockets_broadcast(const struct libwebsocket_protocols *protocol,
Andy Greenb45993c2010-12-18 15:13:50 +00002028 unsigned char *buf, size_t len)
2029{
Peter Hinz56885f32011-03-02 22:03:47 +00002030 struct libwebsocket_context *context = protocol->owning_server;
Andy Greenb45993c2010-12-18 15:13:50 +00002031 int n;
Andy Green6ee372f2012-04-09 15:09:01 +08002032 struct libwebsocket *wsi;
Andy Greenb45993c2010-12-18 15:13:50 +00002033
2034 if (!protocol->broadcast_socket_user_fd) {
2035 /*
Andy Greene92cd172011-01-19 13:11:55 +00002036 * We are either running unforked / flat, or we are being
2037 * called from poll thread context
Andy Greenb45993c2010-12-18 15:13:50 +00002038 * eg, from a callback. In that case don't use sockets for
2039 * broadcast IPC (since we can't open a socket connection to
2040 * a socket listening on our own thread) but directly do the
2041 * send action.
2042 *
2043 * Locking is not needed because we are by definition being
2044 * called in the poll thread context and are serialized.
2045 */
2046
Andy Greendfb23042013-01-17 12:26:48 +08002047 for (n = 0; n < context->fds_count; n++) {
Andy Greenb45993c2010-12-18 15:13:50 +00002048
Andy Greendfb23042013-01-17 12:26:48 +08002049 wsi = context->lws_lookup[context->fds[n].fd];
2050 if (!wsi)
2051 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00002052
Andy Greendfb23042013-01-17 12:26:48 +08002053 if (wsi->mode != LWS_CONNMODE_WS_SERVING)
2054 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00002055
Andy Greendfb23042013-01-17 12:26:48 +08002056 /*
2057 * never broadcast to non-established connections
2058 */
2059 if (wsi->state != WSI_STATE_ESTABLISHED)
2060 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00002061
Andy Greendfb23042013-01-17 12:26:48 +08002062 /* only broadcast to guys using
2063 * requested protocol
2064 */
2065 if (wsi->protocol != protocol)
2066 continue;
Andy Green0d338332011-02-12 11:57:43 +00002067
Andy Green706961d2013-01-17 16:50:35 +08002068 user_callback_handle_rxflow(wsi->protocol->callback,
2069 context, wsi,
Andy Greendfb23042013-01-17 12:26:48 +08002070 LWS_CALLBACK_BROADCAST,
2071 wsi->user_space,
2072 buf, len);
Andy Greenb45993c2010-12-18 15:13:50 +00002073 }
2074
2075 return 0;
2076 }
2077
Andy Green0ca6a172010-12-19 20:50:01 +00002078 /*
2079 * We're being called from a different process context than the server
2080 * loop. Instead of broadcasting directly, we send our
2081 * payload on a socket to do the IPC; the server process will serialize
2082 * the broadcast action in its main poll() loop.
2083 *
2084 * There's one broadcast socket listening for each protocol supported
2085 * set up when the websocket server initializes
2086 */
2087
Andy Green6964bb52011-01-23 16:50:33 +00002088 n = send(protocol->broadcast_socket_user_fd, buf, len, MSG_NOSIGNAL);
Andy Greenb45993c2010-12-18 15:13:50 +00002089
2090 return n;
2091}
Andy Green82c3d542011-03-07 21:16:31 +00002092
2093int
2094libwebsocket_is_final_fragment(struct libwebsocket *wsi)
2095{
2096 return wsi->final;
2097}
Alex Bligh49146db2011-11-07 17:19:25 +08002098
David Galeanoe2cf9922013-01-09 18:06:55 +08002099unsigned char
2100libwebsocket_get_reserved_bits(struct libwebsocket *wsi)
2101{
2102 return wsi->rsv;
2103}
2104
Alex Bligh49146db2011-11-07 17:19:25 +08002105void *
2106libwebsocket_ensure_user_space(struct libwebsocket *wsi)
2107{
2108 /* allocate the per-connection user memory (if any) */
2109
2110 if (wsi->protocol->per_session_data_size && !wsi->user_space) {
2111 wsi->user_space = malloc(
2112 wsi->protocol->per_session_data_size);
2113 if (wsi->user_space == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08002114 lwsl_err("Out of memory for conn user space\n");
Alex Bligh49146db2011-11-07 17:19:25 +08002115 return NULL;
2116 }
Andy Green6ee372f2012-04-09 15:09:01 +08002117 memset(wsi->user_space, 0,
2118 wsi->protocol->per_session_data_size);
Alex Bligh49146db2011-11-07 17:19:25 +08002119 }
2120 return wsi->user_space;
2121}
Andy Green43db0452013-01-10 19:50:35 +08002122
Andy Greenacbaee62013-01-18 22:00:22 +08002123/**
2124 * lws_confirm_legit_wsi: returns nonzero if the wsi looks bad
2125 *
2126 * @wsi: struct libwebsocket to assess
2127 *
2128 * Performs consistecy checks on what the wsi claims and what the
2129 * polling arrays hold. This'll catch a closed wsi still in use.
2130 * Don't try to use on the listen (nonconnection) wsi as it will
2131 * fail it. Otherwise 0 return == wsi seems consistent.
2132 */
2133
2134int lws_confirm_legit_wsi(struct libwebsocket *wsi)
2135{
2136 struct libwebsocket_context *context;
2137
2138 if (!(wsi && wsi->protocol && wsi->protocol->owning_server))
2139 return 1;
2140
2141 context = wsi->protocol->owning_server;
2142
2143 if (!context)
2144 return 2;
2145
2146 if (!wsi->position_in_fds_table)
2147 return 3; /* position in fds table looks bad */
2148 if (context->fds[wsi->position_in_fds_table].fd != wsi->sock)
2149 return 4; /* pollfd entry does not wait on our socket descriptor */
2150 if (context->lws_lookup[wsi->sock] != wsi)
2151 return 5; /* lookup table does not agree with wsi */
2152
2153 return 0;
2154}
Andy Greende8f27a2013-01-12 09:17:42 +08002155
Andy Green0b319092013-01-19 11:17:56 +08002156static void lwsl_emit_stderr(int level, const char *line)
Andy Greende8f27a2013-01-12 09:17:42 +08002157{
Andy Green0b319092013-01-19 11:17:56 +08002158 char buf[300];
2159 struct timeval tv;
Andy Green0b319092013-01-19 11:17:56 +08002160 int n;
2161
2162 gettimeofday(&tv, NULL);
2163
2164 buf[0] = '\0';
2165 for (n = 0; n < LLL_COUNT; n++)
2166 if (level == (1 << n)) {
Andy Green058ba812013-01-19 11:32:18 +08002167 sprintf(buf, "[%ld:%04d] %s: ", tv.tv_sec,
Andy Green0b319092013-01-19 11:17:56 +08002168 (int)(tv.tv_usec / 100), log_level_names[n]);
2169 break;
2170 }
2171
2172 fprintf(stderr, "%s%s", buf, line);
Andy Greende8f27a2013-01-12 09:17:42 +08002173}
2174
Andy Greenc11db202013-01-19 11:12:16 +08002175void lwsl_emit_syslog(int level, const char *line)
2176{
2177 int syslog_level = LOG_DEBUG;
2178
2179 switch (level) {
2180 case LLL_ERR:
2181 syslog_level = LOG_ERR;
2182 break;
2183 case LLL_WARN:
2184 syslog_level = LOG_WARNING;
2185 break;
2186 case LLL_NOTICE:
2187 syslog_level = LOG_NOTICE;
2188 break;
2189 case LLL_INFO:
2190 syslog_level = LOG_INFO;
2191 break;
2192 }
2193 syslog(syslog_level, line);
2194}
2195
Andy Green43db0452013-01-10 19:50:35 +08002196void _lws_log(int filter, const char *format, ...)
2197{
Andy Greende8f27a2013-01-12 09:17:42 +08002198 char buf[256];
Andy Green43db0452013-01-10 19:50:35 +08002199 va_list ap;
Andy Green43db0452013-01-10 19:50:35 +08002200
2201 if (!(log_level & filter))
2202 return;
2203
Andy Green43db0452013-01-10 19:50:35 +08002204 va_start(ap, format);
Andy Green0b319092013-01-19 11:17:56 +08002205 vsnprintf(buf, (sizeof buf), format, ap);
Andy Greende8f27a2013-01-12 09:17:42 +08002206 buf[(sizeof buf) - 1] = '\0';
2207 va_end(ap);
2208
Andy Green0b319092013-01-19 11:17:56 +08002209 lwsl_emit(filter, buf);
Andy Green43db0452013-01-10 19:50:35 +08002210}
2211
2212/**
2213 * lws_set_log_level() - Set the logging bitfield
2214 * @level: OR together the LLL_ debug contexts you want output from
Andy Greende8f27a2013-01-12 09:17:42 +08002215 * @log_emit_function: NULL to leave it as it is, or a user-supplied
2216 * function to perform log string emission instead of
2217 * the default stderr one.
Andy Green43db0452013-01-10 19:50:35 +08002218 *
Andy Greende8f27a2013-01-12 09:17:42 +08002219 * log level defaults to "err" and "warn" contexts enabled only and
2220 * emission on stderr.
Andy Green43db0452013-01-10 19:50:35 +08002221 */
2222
Andy Green058ba812013-01-19 11:32:18 +08002223void lws_set_log_level(int level, void (*log_emit_function)(int level, const char *line))
Andy Green43db0452013-01-10 19:50:35 +08002224{
2225 log_level = level;
Andy Greende8f27a2013-01-12 09:17:42 +08002226 if (log_emit_function)
2227 lwsl_emit = log_emit_function;
Andy Green43db0452013-01-10 19:50:35 +08002228}