blob: f4d331990520afff849b4a222ce554b44db3c467 [file] [log] [blame]
Andy Green58eaa742011-03-07 17:54:06 +00001/*
Andy Greena0da8a82010-11-08 17:12:19 +00002 * libwebsockets - small server side websockets and web server implementation
Andy Green8f037e42010-12-19 22:13:26 +00003 *
Andy Greena0da8a82010-11-08 17:12:19 +00004 * Copyright (C) 2010 Andy Green <andy@warmcat.com>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation:
9 * version 2.1 of the License.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 * MA 02110-1301 USA
Andy Green05a0a7b2010-10-31 17:51:39 +000020 */
21
Andy Green7c212cc2010-11-08 20:20:42 +000022#include "private-libwebsockets.h"
Andy Greenff95d7a2010-10-28 22:36:01 +010023
Peter Hinz56885f32011-03-02 22:03:47 +000024#ifdef WIN32
David Galeanocb193682013-01-09 15:29:00 +080025#include <tchar.h>
26#include <io.h>
Peter Hinz56885f32011-03-02 22:03:47 +000027#else
Davidc4ef7b12013-01-12 20:39:47 +080028#ifdef LWS_BUILTIN_GETIFADDRS
29#include <getifaddrs.h>
30#else
Peter Hinz56885f32011-03-02 22:03:47 +000031#include <ifaddrs.h>
Davidc4ef7b12013-01-12 20:39:47 +080032#endif
Andy Green7627af52011-03-09 15:13:52 +000033#include <sys/un.h>
Andy Greena69f0512012-05-03 12:32:38 +080034#include <sys/socket.h>
35#include <netdb.h>
Peter Hinz56885f32011-03-02 22:03:47 +000036#endif
Andy Green2e24da02011-03-05 16:12:04 +000037
38#ifdef LWS_OPENSSL_SUPPORT
39int openssl_websocket_private_data_index;
40#endif
41
Andy Greenaa6fc442012-04-12 13:26:49 +080042#ifdef __MINGW32__
43#include "../win32port/win32helpers/websock-w32.c"
44#else
45#ifdef __MINGW64__
46#include "../win32port/win32helpers/websock-w32.c"
47#endif
48#endif
49
Andy Green43db0452013-01-10 19:50:35 +080050static int log_level = LLL_ERR | LLL_WARN;
Andy Greende8f27a2013-01-12 09:17:42 +080051static void lwsl_emit_stderr(const char *line);
52static void (*lwsl_emit)(const char *line) = lwsl_emit_stderr;
Andy Green43db0452013-01-10 19:50:35 +080053static const char *log_level_names[] = {
54 "ERR",
55 "WARN",
56 "INFO",
57 "DEBUG",
58 "PARSER",
59 "HEADER",
60 "EXTENSION",
61 "CLIENT",
62};
63
Andy Green0d338332011-02-12 11:57:43 +000064int
Andy Greendfb23042013-01-17 12:26:48 +080065insert_wsi_socket_into_fds(struct libwebsocket_context *context, struct libwebsocket *wsi)
Andy Green0d338332011-02-12 11:57:43 +000066{
Andy Greendfb23042013-01-17 12:26:48 +080067 if (context->fds_count >= context->max_fds) {
68 lwsl_err("Reached limit of fds tracking (%d)\n", context->max_fds);
Andy Green0d338332011-02-12 11:57:43 +000069 return 1;
70 }
71
Andy Greendfb23042013-01-17 12:26:48 +080072 if (wsi->sock > context->max_fds) {
73 lwsl_err("Socket fd %d is beyond what we can index (%d)\n", wsi->sock, context->max_fds);
74 return 1;
75 }
76
77 assert(wsi);
78 assert(wsi->sock);
79
80 lwsl_info("insert_wsi_socket_into_fds: wsi=%p, sock=%d, fds pos=%d\n", wsi, wsi->sock, context->fds_count);
81
82 context->lws_lookup[wsi->sock] = wsi;
83 wsi->position_in_fds_table = context->fds_count;
84 context->fds[context->fds_count].fd = wsi->sock;
85 context->fds[context->fds_count].events = POLLIN;
86 context->fds[context->fds_count++].revents = 0;
87
88 /* external POLL support via protocol 0 */
89 context->protocols[0].callback(context, wsi,
90 LWS_CALLBACK_ADD_POLL_FD,
91 (void *)(long)wsi->sock, NULL, POLLIN);
Andy Green0d338332011-02-12 11:57:43 +000092
93 return 0;
94}
95
Andy Greendfb23042013-01-17 12:26:48 +080096static int
97remove_wsi_socket_from_fds(struct libwebsocket_context *context, struct libwebsocket *wsi)
Andy Green0d338332011-02-12 11:57:43 +000098{
Andy Greendfb23042013-01-17 12:26:48 +080099 int m;
Andy Green0d338332011-02-12 11:57:43 +0000100
Andy Greendfb23042013-01-17 12:26:48 +0800101 if (!--context->fds_count)
102 goto do_ext;
Andy Green0d338332011-02-12 11:57:43 +0000103
Andy Greendfb23042013-01-17 12:26:48 +0800104 if (wsi->sock > context->max_fds) {
105 lwsl_err("Socket fd %d is beyond what we can index (%d)\n", wsi->sock, context->max_fds);
106 return 1;
107 }
Andy Green0d338332011-02-12 11:57:43 +0000108
Andy Greendfb23042013-01-17 12:26:48 +0800109 lwsl_info("remove_wsi_socket_from_fds: wsi=%p, sock=%d, fds pos=%d\n", wsi, wsi->sock, wsi->position_in_fds_table);
110
111 m = wsi->position_in_fds_table; /* replace the contents for this */
112
113 /* have the last guy take up the vacant slot */
114 context->fds[m] = context->fds[context->fds_count]; /* vacant fds slot filled with end one */
115 /* end guy's fds_lookup entry remains unchanged (still same fd pointing to same wsi) */
116 /* end guy's "position in fds table" changed */
117 context->lws_lookup[context->fds[context->fds_count].fd]->position_in_fds_table = m;
118 /* deletion guy's lws_lookup entry needs nuking */
119 context->lws_lookup[wsi->sock] = NULL; /* no WSI for the socket of the wsi being removed*/
120 wsi->position_in_fds_table = -1; /* removed wsi has no position any more */
121
122do_ext:
123 /* remove also from external POLL support via protocol 0 */
124 if (wsi->sock)
125 context->protocols[0].callback(context, wsi,
126 LWS_CALLBACK_DEL_POLL_FD, (void *)(long)wsi->sock, NULL, 0);
127
128 return 0;
Andy Green0d338332011-02-12 11:57:43 +0000129}
130
Andy Green32375b72011-02-19 08:32:53 +0000131
Andy Green8f037e42010-12-19 22:13:26 +0000132void
Peter Hinz56885f32011-03-02 22:03:47 +0000133libwebsocket_close_and_free_session(struct libwebsocket_context *context,
Andy Green687b0182011-02-26 11:04:01 +0000134 struct libwebsocket *wsi, enum lws_close_status reason)
Andy Green251f6fa2010-11-03 11:13:06 +0000135{
Andy Greenb45993c2010-12-18 15:13:50 +0000136 int n;
Andy Green62c54d22011-02-14 09:14:25 +0000137 int old_state;
Andy Green5e1fa172011-02-10 09:07:05 +0000138 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 2 +
139 LWS_SEND_BUFFER_POST_PADDING];
Andy Greenc44159f2011-03-07 07:08:18 +0000140 int ret;
141 int m;
142 struct lws_tokens eff_buf;
Andy Greena41314f2011-05-23 10:00:03 +0100143 struct libwebsocket_extension *ext;
Andy Greenb45993c2010-12-18 15:13:50 +0000144
Andy Green4b6fbe12011-02-14 08:03:48 +0000145 if (!wsi)
Andy Greenb45993c2010-12-18 15:13:50 +0000146 return;
147
Andy Green62c54d22011-02-14 09:14:25 +0000148 old_state = wsi->state;
Andy Green251f6fa2010-11-03 11:13:06 +0000149
Andy Green62c54d22011-02-14 09:14:25 +0000150 if (old_state == WSI_STATE_DEAD_SOCKET)
Andy Green5e1fa172011-02-10 09:07:05 +0000151 return;
152
Andy Greenda527df2011-03-07 07:08:12 +0000153 wsi->close_reason = reason;
154
155 /*
Andy Green68b45042011-05-25 21:41:57 +0100156 * are his extensions okay with him closing? Eg he might be a mux
157 * parent and just his ch1 aspect is closing?
158 */
159
160
161 for (n = 0; n < wsi->count_active_extensions; n++) {
162 if (!wsi->active_extensions[n]->callback)
163 continue;
164
165 m = wsi->active_extensions[n]->callback(context,
166 wsi->active_extensions[n], wsi,
167 LWS_EXT_CALLBACK_CHECK_OK_TO_REALLY_CLOSE,
168 wsi->active_extensions_user[n], NULL, 0);
169
170 /*
171 * if somebody vetoed actually closing him at this time....
172 * up to the extension to track the attempted close, let's
173 * just bail
174 */
175
176 if (m) {
Andy Green43db0452013-01-10 19:50:35 +0800177 lwsl_ext("extension vetoed close\n");
Andy Green68b45042011-05-25 21:41:57 +0100178 return;
179 }
180 }
181
182
183
184 /*
Andy Greenc44159f2011-03-07 07:08:18 +0000185 * flush any tx pending from extensions, since we may send close packet
186 * if there are problems with send, just nuke the connection
187 */
188
189 ret = 1;
190 while (ret == 1) {
191
192 /* default to nobody has more to spill */
193
194 ret = 0;
195 eff_buf.token = NULL;
196 eff_buf.token_len = 0;
197
198 /* show every extension the new incoming data */
199
200 for (n = 0; n < wsi->count_active_extensions; n++) {
201 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000202 wsi->protocol->owning_server,
203 wsi->active_extensions[n], wsi,
Andy Greenc44159f2011-03-07 07:08:18 +0000204 LWS_EXT_CALLBACK_FLUSH_PENDING_TX,
205 wsi->active_extensions_user[n], &eff_buf, 0);
206 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800207 lwsl_ext("Extension reports fatal error\n");
Andy Greenc44159f2011-03-07 07:08:18 +0000208 goto just_kill_connection;
209 }
210 if (m)
211 /*
212 * at least one extension told us he has more
213 * to spill, so we will go around again after
214 */
215 ret = 1;
216 }
217
218 /* assuming they left us something to send, send it */
219
220 if (eff_buf.token_len)
221 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
Andy Green0303db42013-01-17 14:46:43 +0800222 eff_buf.token_len)) {
223 lwsl_debug("close: sending final extension spill had problems\n");
Andy Greenc44159f2011-03-07 07:08:18 +0000224 goto just_kill_connection;
Andy Green0303db42013-01-17 14:46:43 +0800225 }
Andy Greenc44159f2011-03-07 07:08:18 +0000226 }
227
228 /*
Andy Greenda527df2011-03-07 07:08:12 +0000229 * signal we are closing, libsocket_write will
230 * add any necessary version-specific stuff. If the write fails,
231 * no worries we are closing anyway. If we didn't initiate this
232 * close, then our state has been changed to
233 * WSI_STATE_RETURNED_CLOSE_ALREADY and we will skip this.
234 *
235 * Likewise if it's a second call to close this connection after we
236 * sent the close indication to the peer already, we are in state
237 * WSI_STATE_AWAITING_CLOSE_ACK and will skip doing this a second time.
238 */
239
240 if (old_state == WSI_STATE_ESTABLISHED &&
241 reason != LWS_CLOSE_STATUS_NOSTATUS) {
Andy Green66a16f32011-05-24 22:07:45 +0100242
Andy Green43db0452013-01-10 19:50:35 +0800243 lwsl_debug("sending close indication...\n");
Andy Green66a16f32011-05-24 22:07:45 +0100244
Andy Greenda527df2011-03-07 07:08:12 +0000245 n = libwebsocket_write(wsi, &buf[LWS_SEND_BUFFER_PRE_PADDING],
246 0, LWS_WRITE_CLOSE);
247 if (!n) {
248 /*
249 * we have sent a nice protocol level indication we
250 * now wish to close, we should not send anything more
251 */
252
253 wsi->state = WSI_STATE_AWAITING_CLOSE_ACK;
254
Andy Green0303db42013-01-17 14:46:43 +0800255 /* and we should wait for a reply for a bit out of politeness */
Andy Greenda527df2011-03-07 07:08:12 +0000256
257 libwebsocket_set_timeout(wsi,
Andy Green0303db42013-01-17 14:46:43 +0800258 PENDING_TIMEOUT_CLOSE_ACK, 1);
Andy Greenda527df2011-03-07 07:08:12 +0000259
Andy Green43db0452013-01-10 19:50:35 +0800260 lwsl_debug("sent close indication, awaiting ack\n");
Andy Greenda527df2011-03-07 07:08:12 +0000261
262 return;
263 }
264
Andy Green0303db42013-01-17 14:46:43 +0800265 lwsl_info("close: sending the close packet failed, hanging up\n");
266
Andy Greenda527df2011-03-07 07:08:12 +0000267 /* else, the send failed and we should just hang up */
268 }
269
Andy Greenc44159f2011-03-07 07:08:18 +0000270just_kill_connection:
Andy Green66a16f32011-05-24 22:07:45 +0100271
Andy Green43db0452013-01-10 19:50:35 +0800272 lwsl_debug("libwebsocket_close_and_free_session: just_kill_connection\n");
Andy Green66a16f32011-05-24 22:07:45 +0100273
Andy Greenda527df2011-03-07 07:08:12 +0000274 /*
275 * we won't be servicing or receiving anything further from this guy
Andy Greendfb23042013-01-17 12:26:48 +0800276 * delete socket from the internal poll list if still present
Andy Greenda527df2011-03-07 07:08:12 +0000277 */
Andy Green4b6fbe12011-02-14 08:03:48 +0000278
Andy Greendfb23042013-01-17 12:26:48 +0800279 remove_wsi_socket_from_fds(context, wsi);
Andy Green4b6fbe12011-02-14 08:03:48 +0000280
Andy Green251f6fa2010-11-03 11:13:06 +0000281 wsi->state = WSI_STATE_DEAD_SOCKET;
282
Andy Green4b6fbe12011-02-14 08:03:48 +0000283 /* tell the user it's all over for this guy */
284
Andy Greend4302732011-02-28 07:45:29 +0000285 if (wsi->protocol && wsi->protocol->callback &&
Andy Green6ee372f2012-04-09 15:09:01 +0800286 ((old_state == WSI_STATE_ESTABLISHED) ||
287 (old_state == WSI_STATE_RETURNED_CLOSE_ALREADY) ||
288 (old_state == WSI_STATE_AWAITING_CLOSE_ACK))) {
Andy Green43db0452013-01-10 19:50:35 +0800289 lwsl_debug("calling back CLOSED\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000290 wsi->protocol->callback(context, wsi, LWS_CALLBACK_CLOSED,
Andy Greene77ddd82010-11-13 10:03:47 +0000291 wsi->user_space, NULL, 0);
Andy Greencc012472011-11-07 19:53:23 +0800292 } else
Andy Green43db0452013-01-10 19:50:35 +0800293 lwsl_debug("not calling back closed, old_state=%d\n", old_state);
Andy Green251f6fa2010-11-03 11:13:06 +0000294
Andy Greenef660a92011-03-06 10:29:38 +0000295 /* deallocate any active extension contexts */
296
297 for (n = 0; n < wsi->count_active_extensions; n++) {
298 if (!wsi->active_extensions[n]->callback)
299 continue;
300
Andy Green46c2ea02011-03-22 09:04:01 +0000301 wsi->active_extensions[n]->callback(context,
302 wsi->active_extensions[n], wsi,
303 LWS_EXT_CALLBACK_DESTROY,
304 wsi->active_extensions_user[n], NULL, 0);
Andy Greenef660a92011-03-06 10:29:38 +0000305
306 free(wsi->active_extensions_user[n]);
307 }
308
Andy Greena41314f2011-05-23 10:00:03 +0100309 /*
310 * inform all extensions in case they tracked this guy out of band
311 * even though not active on him specifically
312 */
313
314 ext = context->extensions;
315 while (ext && ext->callback) {
316 ext->callback(context, ext, wsi,
317 LWS_EXT_CALLBACK_DESTROY_ANY_WSI_CLOSING,
318 NULL, NULL, 0);
319 ext++;
320 }
321
Andy Greenef660a92011-03-06 10:29:38 +0000322 /* free up his parsing allocations */
Andy Green4b6fbe12011-02-14 08:03:48 +0000323
Andy Green251f6fa2010-11-03 11:13:06 +0000324 for (n = 0; n < WSI_TOKEN_COUNT; n++)
325 if (wsi->utf8_token[n].token)
326 free(wsi->utf8_token[n].token);
Andy Greena1ce6be2013-01-18 11:43:21 +0800327#ifndef LWS_NO_CLIENT
Andy Greena41314f2011-05-23 10:00:03 +0100328 if (wsi->c_address)
329 free(wsi->c_address);
Andy Greena1ce6be2013-01-18 11:43:21 +0800330#endif
Andy Green706961d2013-01-17 16:50:35 +0800331 if (wsi->rxflow_buffer)
332 free(wsi->rxflow_buffer);
333
Andy Green43db0452013-01-10 19:50:35 +0800334/* lwsl_info("closing fd=%d\n", wsi->sock); */
Andy Green251f6fa2010-11-03 11:13:06 +0000335
Andy Green3faa9c72010-11-08 17:03:03 +0000336#ifdef LWS_OPENSSL_SUPPORT
Andy Green90c7cbc2011-01-27 06:26:52 +0000337 if (wsi->ssl) {
Andy Green3faa9c72010-11-08 17:03:03 +0000338 n = SSL_get_fd(wsi->ssl);
339 SSL_shutdown(wsi->ssl);
Andy Green3fc2c652013-01-14 15:35:02 +0800340 compatible_close(n);
Andy Green3faa9c72010-11-08 17:03:03 +0000341 SSL_free(wsi->ssl);
342 } else {
343#endif
Andy Green0303db42013-01-17 14:46:43 +0800344 if (wsi->sock) {
345 n = shutdown(wsi->sock, SHUT_RDWR);
346 if (n)
347 lwsl_debug("closing: shutdown returned %d\n", errno);
Andy Green3fc2c652013-01-14 15:35:02 +0800348
Andy Green0303db42013-01-17 14:46:43 +0800349 n = compatible_close(wsi->sock);
350 if (n)
351 lwsl_debug("closing: close returned %d\n", errno);
352 }
Andy Green3faa9c72010-11-08 17:03:03 +0000353#ifdef LWS_OPENSSL_SUPPORT
354 }
355#endif
David Brooks2c60d952012-04-20 12:19:01 +0800356 if (wsi->protocol && wsi->protocol->per_session_data_size && wsi->user_space) /* user code may own */
Andy Green4f3943a2010-11-12 10:44:16 +0000357 free(wsi->user_space);
358
Andy Green251f6fa2010-11-03 11:13:06 +0000359 free(wsi);
360}
361
Andy Green07034092011-02-13 08:37:12 +0000362/**
Andy Greenf7ee5492011-02-13 09:04:21 +0000363 * libwebsockets_hangup_on_client() - Server calls to terminate client
Andy Green6ee372f2012-04-09 15:09:01 +0800364 * connection
Peter Hinz56885f32011-03-02 22:03:47 +0000365 * @context: libwebsockets context
Andy Greenf7ee5492011-02-13 09:04:21 +0000366 * @fd: Connection socket descriptor
367 */
368
369void
Peter Hinz56885f32011-03-02 22:03:47 +0000370libwebsockets_hangup_on_client(struct libwebsocket_context *context, int fd)
Andy Greenf7ee5492011-02-13 09:04:21 +0000371{
Andy Greendfb23042013-01-17 12:26:48 +0800372 struct libwebsocket *wsi = context->lws_lookup[fd];
Andy Greenf7ee5492011-02-13 09:04:21 +0000373
Andy Greendfb23042013-01-17 12:26:48 +0800374 if (wsi) {
375 libwebsocket_close_and_free_session(context,
376 wsi, LWS_CLOSE_STATUS_NOSTATUS);
377 } else
378 close(fd);
Andy Greenf7ee5492011-02-13 09:04:21 +0000379}
380
381
382/**
Andy Green07034092011-02-13 08:37:12 +0000383 * libwebsockets_get_peer_addresses() - Get client address information
384 * @fd: Connection socket descriptor
385 * @name: Buffer to take client address name
386 * @name_len: Length of client address name buffer
387 * @rip: Buffer to take client address IP qotted quad
388 * @rip_len: Length of client address IP buffer
389 *
390 * This function fills in @name and @rip with the name and IP of
Andy Green6ee372f2012-04-09 15:09:01 +0800391 * the client connected with socket descriptor @fd. Names may be
392 * truncated if there is not enough room. If either cannot be
393 * determined, they will be returned as valid zero-length strings.
Andy Green07034092011-02-13 08:37:12 +0000394 */
395
396void
397libwebsockets_get_peer_addresses(int fd, char *name, int name_len,
398 char *rip, int rip_len)
399{
400 unsigned int len;
401 struct sockaddr_in sin;
402 struct hostent *host;
403 struct hostent *host1;
404 char ip[128];
Andy Greenf92def72011-03-09 15:02:20 +0000405 unsigned char *p;
Andy Green07034092011-02-13 08:37:12 +0000406 int n;
David Galeanocb193682013-01-09 15:29:00 +0800407#ifdef AF_LOCAL
408 struct sockaddr_un *un;
409#endif
Andy Green07034092011-02-13 08:37:12 +0000410
411 rip[0] = '\0';
412 name[0] = '\0';
413
414 len = sizeof sin;
415 if (getpeername(fd, (struct sockaddr *) &sin, &len) < 0) {
416 perror("getpeername");
417 return;
418 }
Andy Green6ee372f2012-04-09 15:09:01 +0800419
Andy Green07034092011-02-13 08:37:12 +0000420 host = gethostbyaddr((char *) &sin.sin_addr, sizeof sin.sin_addr,
421 AF_INET);
422 if (host == NULL) {
423 perror("gethostbyaddr");
424 return;
425 }
426
427 strncpy(name, host->h_name, name_len);
428 name[name_len - 1] = '\0';
429
430 host1 = gethostbyname(host->h_name);
431 if (host1 == NULL)
432 return;
Andy Greenf92def72011-03-09 15:02:20 +0000433 p = (unsigned char *)host1;
Andy Green07034092011-02-13 08:37:12 +0000434 n = 0;
435 while (p != NULL) {
Andy Greenf92def72011-03-09 15:02:20 +0000436 p = (unsigned char *)host1->h_addr_list[n++];
Andy Green07034092011-02-13 08:37:12 +0000437 if (p == NULL)
438 continue;
Peter Hinzbb45a902011-03-10 18:14:01 +0000439 if ((host1->h_addrtype != AF_INET)
440#ifdef AF_LOCAL
441 && (host1->h_addrtype != AF_LOCAL)
442#endif
443 )
Andy Green07034092011-02-13 08:37:12 +0000444 continue;
445
Andy Green7627af52011-03-09 15:13:52 +0000446 if (host1->h_addrtype == AF_INET)
447 sprintf(ip, "%u.%u.%u.%u", p[0], p[1], p[2], p[3]);
Peter Hinzbb45a902011-03-10 18:14:01 +0000448#ifdef AF_LOCAL
Andy Green7627af52011-03-09 15:13:52 +0000449 else {
450 un = (struct sockaddr_un *)p;
Andy Green6ee372f2012-04-09 15:09:01 +0800451 strncpy(ip, un->sun_path, sizeof(ip) - 1);
Andy Green7627af52011-03-09 15:13:52 +0000452 ip[sizeof(ip) - 1] = '\0';
453 }
Peter Hinzbb45a902011-03-10 18:14:01 +0000454#endif
Andy Green07034092011-02-13 08:37:12 +0000455 p = NULL;
456 strncpy(rip, ip, rip_len);
457 rip[rip_len - 1] = '\0';
458 }
459}
Andy Green9f990342011-02-12 11:57:45 +0000460
Peter Hinz56885f32011-03-02 22:03:47 +0000461int libwebsockets_get_random(struct libwebsocket_context *context,
462 void *buf, int len)
463{
464 int n;
Aaron Zinman4550f1d2013-01-10 12:35:18 +0800465 char *p = (char *)buf;
Peter Hinz56885f32011-03-02 22:03:47 +0000466
467#ifdef WIN32
468 for (n = 0; n < len; n++)
469 p[n] = (unsigned char)rand();
470#else
471 n = read(context->fd_random, p, len);
472#endif
473
474 return n;
475}
476
Andy Green2836c642011-03-07 20:47:41 +0000477unsigned char *
478libwebsockets_SHA1(const unsigned char *d, size_t n, unsigned char *md)
479{
480 return SHA1(d, n, md);
481}
482
Andy Green95a7b5d2011-03-06 10:29:39 +0000483int lws_send_pipe_choked(struct libwebsocket *wsi)
484{
485 struct pollfd fds;
486
487 fds.fd = wsi->sock;
488 fds.events = POLLOUT;
489 fds.revents = 0;
490
491 if (poll(&fds, 1, 0) != 1)
492 return 1;
493
494 if ((fds.revents & POLLOUT) == 0)
495 return 1;
496
497 /* okay to send another packet without blocking */
498
499 return 0;
500}
501
Andy Greena41314f2011-05-23 10:00:03 +0100502int
Andy Green3b84c002011-03-06 13:14:42 +0000503lws_handle_POLLOUT_event(struct libwebsocket_context *context,
504 struct libwebsocket *wsi, struct pollfd *pollfd)
505{
506 struct lws_tokens eff_buf;
507 int n;
508 int ret;
509 int m;
Andy Greena41314f2011-05-23 10:00:03 +0100510 int handled = 0;
Andy Green3b84c002011-03-06 13:14:42 +0000511
Andy Greena41314f2011-05-23 10:00:03 +0100512 for (n = 0; n < wsi->count_active_extensions; n++) {
513 if (!wsi->active_extensions[n]->callback)
514 continue;
515
516 m = wsi->active_extensions[n]->callback(context,
517 wsi->active_extensions[n], wsi,
518 LWS_EXT_CALLBACK_IS_WRITEABLE,
519 wsi->active_extensions_user[n], NULL, 0);
520 if (m > handled)
521 handled = m;
522 }
523
524 if (handled == 1)
525 goto notify_action;
526
527 if (!wsi->extension_data_pending || handled == 2)
Andy Green3b84c002011-03-06 13:14:42 +0000528 goto user_service;
529
530 /*
531 * check in on the active extensions, see if they
532 * had pending stuff to spill... they need to get the
533 * first look-in otherwise sequence will be disordered
534 *
535 * NULL, zero-length eff_buf means just spill pending
536 */
537
538 ret = 1;
539 while (ret == 1) {
540
541 /* default to nobody has more to spill */
542
543 ret = 0;
544 eff_buf.token = NULL;
545 eff_buf.token_len = 0;
546
547 /* give every extension a chance to spill */
548
549 for (n = 0; n < wsi->count_active_extensions; n++) {
550 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000551 wsi->protocol->owning_server,
552 wsi->active_extensions[n], wsi,
Andy Green3b84c002011-03-06 13:14:42 +0000553 LWS_EXT_CALLBACK_PACKET_TX_PRESEND,
554 wsi->active_extensions_user[n], &eff_buf, 0);
555 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800556 lwsl_err("ext reports fatal error\n");
Andy Green3b84c002011-03-06 13:14:42 +0000557 return -1;
558 }
559 if (m)
560 /*
561 * at least one extension told us he has more
562 * to spill, so we will go around again after
563 */
564 ret = 1;
565 }
566
567 /* assuming they gave us something to send, send it */
568
569 if (eff_buf.token_len) {
570 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
571 eff_buf.token_len))
572 return -1;
573 } else
574 continue;
575
576 /* no extension has more to spill */
577
578 if (!ret)
579 continue;
580
581 /*
582 * There's more to spill from an extension, but we just sent
583 * something... did that leave the pipe choked?
584 */
585
586 if (!lws_send_pipe_choked(wsi))
587 /* no we could add more */
588 continue;
589
Andy Green43db0452013-01-10 19:50:35 +0800590 lwsl_info("choked in POLLOUT service\n");
Andy Green3b84c002011-03-06 13:14:42 +0000591
592 /*
593 * Yes, he's choked. Leave the POLLOUT masked on so we will
594 * come back here when he is unchoked. Don't call the user
595 * callback to enforce ordering of spilling, he'll get called
596 * when we come back here and there's nothing more to spill.
597 */
598
599 return 0;
600 }
601
602 wsi->extension_data_pending = 0;
603
604user_service:
605 /* one shot */
606
Andy Greena41314f2011-05-23 10:00:03 +0100607 if (pollfd) {
608 pollfd->events &= ~POLLOUT;
Andy Green3b84c002011-03-06 13:14:42 +0000609
Andy Greena41314f2011-05-23 10:00:03 +0100610 /* external POLL support via protocol 0 */
611 context->protocols[0].callback(context, wsi,
612 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
613 (void *)(long)wsi->sock, NULL, POLLOUT);
614 }
615
616notify_action:
Andy Green3b84c002011-03-06 13:14:42 +0000617
Andy Green9e4c2b62011-03-07 20:47:39 +0000618 if (wsi->mode == LWS_CONNMODE_WS_CLIENT)
619 n = LWS_CALLBACK_CLIENT_WRITEABLE;
620 else
621 n = LWS_CALLBACK_SERVER_WRITEABLE;
622
Andy Green706961d2013-01-17 16:50:35 +0800623 user_callback_handle_rxflow(wsi->protocol->callback, context,
624 wsi, (enum libwebsocket_callback_reasons) n, wsi->user_space, NULL, 0);
Andy Green3b84c002011-03-06 13:14:42 +0000625
626 return 0;
627}
628
629
630
Andy Greena41314f2011-05-23 10:00:03 +0100631void
632libwebsocket_service_timeout_check(struct libwebsocket_context *context,
633 struct libwebsocket *wsi, unsigned int sec)
634{
635 int n;
636
637 /*
638 * if extensions want in on it (eg, we are a mux parent)
639 * give them a chance to service child timeouts
640 */
641
642 for (n = 0; n < wsi->count_active_extensions; n++)
643 wsi->active_extensions[n]->callback(
644 context, wsi->active_extensions[n],
645 wsi, LWS_EXT_CALLBACK_1HZ,
646 wsi->active_extensions_user[n], NULL, sec);
647
648 if (!wsi->pending_timeout)
649 return;
Andy Green6ee372f2012-04-09 15:09:01 +0800650
Andy Greena41314f2011-05-23 10:00:03 +0100651 /*
652 * if we went beyond the allowed time, kill the
653 * connection
654 */
655
656 if (sec > wsi->pending_timeout_limit) {
Andy Green43db0452013-01-10 19:50:35 +0800657 lwsl_info("TIMEDOUT WAITING\n");
Andy Greena41314f2011-05-23 10:00:03 +0100658 libwebsocket_close_and_free_session(context,
659 wsi, LWS_CLOSE_STATUS_NOSTATUS);
660 }
661}
662
Andy Green9f990342011-02-12 11:57:45 +0000663/**
664 * libwebsocket_service_fd() - Service polled socket with something waiting
Peter Hinz56885f32011-03-02 22:03:47 +0000665 * @context: Websocket context
Andy Green9f990342011-02-12 11:57:45 +0000666 * @pollfd: The pollfd entry describing the socket fd and which events
Andy Green6ee372f2012-04-09 15:09:01 +0800667 * happened.
Andy Green9f990342011-02-12 11:57:45 +0000668 *
669 * This function closes any active connections and then frees the
670 * context. After calling this, any further use of the context is
671 * undefined.
672 */
673
674int
Peter Hinz56885f32011-03-02 22:03:47 +0000675libwebsocket_service_fd(struct libwebsocket_context *context,
Andy Green0d338332011-02-12 11:57:43 +0000676 struct pollfd *pollfd)
Andy Greenb45993c2010-12-18 15:13:50 +0000677{
Andy Greena1ce6be2013-01-18 11:43:21 +0800678 struct libwebsocket *wsi;
Andy Green6ee372f2012-04-09 15:09:01 +0800679 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 1 +
680 MAX_BROADCAST_PAYLOAD + LWS_SEND_BUFFER_POST_PADDING];
Andy Greenb45993c2010-12-18 15:13:50 +0000681 int n;
Andy Green0d338332011-02-12 11:57:43 +0000682 int m;
Andy Greena71eafc2011-02-14 17:59:43 +0000683 struct timeval tv;
Andy Green2366b1c2011-03-06 13:15:31 +0000684 int more = 1;
Andy Green98a717c2011-03-06 13:14:15 +0000685 struct lws_tokens eff_buf;
Andy Green03674a62013-01-16 11:47:40 +0800686#ifndef LWS_NO_CLIENT
Andy Green76f61e72013-01-16 11:53:05 +0800687 extern int lws_client_socket_service(struct libwebsocket_context *context, struct libwebsocket *wsi, struct pollfd *pollfd);
Andy Green03674a62013-01-16 11:47:40 +0800688#endif
Andy Greena1ce6be2013-01-18 11:43:21 +0800689#ifndef LWS_NO_SERVER
690 extern int lws_server_socket_service(struct libwebsocket_context *context, struct libwebsocket *wsi, struct pollfd *pollfd);
691#endif
Andy Greena71eafc2011-02-14 17:59:43 +0000692 /*
693 * you can call us with pollfd = NULL to just allow the once-per-second
694 * global timeout checks; if less than a second since the last check
695 * it returns immediately then.
696 */
697
698 gettimeofday(&tv, NULL);
699
Peter Hinz56885f32011-03-02 22:03:47 +0000700 if (context->last_timeout_check_s != tv.tv_sec) {
701 context->last_timeout_check_s = tv.tv_sec;
Andy Greena71eafc2011-02-14 17:59:43 +0000702
703 /* global timeout check once per second */
704
Peter Hinz56885f32011-03-02 22:03:47 +0000705 for (n = 0; n < context->fds_count; n++) {
Andy Greendfb23042013-01-17 12:26:48 +0800706 struct libwebsocket *new_wsi = context->lws_lookup[context->fds[n].fd];
707 if (!new_wsi)
708 continue;
709 libwebsocket_service_timeout_check(context,
710 new_wsi, tv.tv_sec);
Andy Greena71eafc2011-02-14 17:59:43 +0000711 }
712 }
713
714 /* just here for timeout management? */
715
716 if (pollfd == NULL)
717 return 0;
718
719 /* no, here to service a socket descriptor */
720
Andy Green65b0e912013-01-16 07:59:47 +0800721 /*
722 * deal with listen service piggybacking
723 * every listen_service_modulo services of other fds, we
724 * sneak one in to service the listen socket if there's anything waiting
725 *
726 * To handle connection storms, as found in ab, if we previously saw a
727 * pending connection here, it causes us to check again next time.
728 */
729
730 if (context->listen_service_fd && pollfd->fd != context->listen_service_fd) {
731 context->listen_service_count++;
732 if (context->listen_service_extraseen ||
733 context->listen_service_count == context->listen_service_modulo) {
734 context->listen_service_count = 0;
735 m = 1;
736 if (context->listen_service_extraseen > 5)
737 m = 2;
738 while (m--) {
739 /* even with extpoll, we prepared this internal fds for listen */
740 n = poll(&context->fds[0], 1, 0);
741 if (n > 0) { /* there's a connection waiting for us */
742 libwebsocket_service_fd(context, &context->fds[0]);
743 context->listen_service_extraseen++;
744 } else {
745 if (context->listen_service_extraseen)
746 context->listen_service_extraseen--;
747 break;
748 }
749 }
750 }
751
752 }
753
754 /* okay, what we came here to do... */
755
Andy Greendfb23042013-01-17 12:26:48 +0800756 wsi = context->lws_lookup[pollfd->fd];
Andy Greend280b6e2013-01-15 13:40:23 +0800757 if (wsi == NULL) {
Andy Greendfb23042013-01-17 12:26:48 +0800758 if (pollfd->fd > 11)
759 lwsl_err("unexpected NULL wsi fd=%d fds_count=%d\n", pollfd->fd, context->fds_count);
Andy Greenfa3f4052012-10-07 20:40:35 +0800760 return 0;
Andy Greend280b6e2013-01-15 13:40:23 +0800761 }
Andy Green8f037e42010-12-19 22:13:26 +0000762
Andy Green0d338332011-02-12 11:57:43 +0000763 switch (wsi->mode) {
Andy Greend280b6e2013-01-15 13:40:23 +0800764
Andy Greena1ce6be2013-01-18 11:43:21 +0800765#ifndef LWS_NO_SERVER
Andy Greend280b6e2013-01-15 13:40:23 +0800766 case LWS_CONNMODE_HTTP_SERVING:
Andy Green0d338332011-02-12 11:57:43 +0000767 case LWS_CONNMODE_SERVER_LISTENER:
Andy Green0d338332011-02-12 11:57:43 +0000768 case LWS_CONNMODE_BROADCAST_PROXY_LISTENER:
Andy Green0d338332011-02-12 11:57:43 +0000769 case LWS_CONNMODE_BROADCAST_PROXY:
Andy Greena1ce6be2013-01-18 11:43:21 +0800770 return lws_server_socket_service(context, wsi, pollfd);
771#endif
Andy Greenbe93fef2011-02-14 20:25:43 +0000772
Andy Green0d338332011-02-12 11:57:43 +0000773 case LWS_CONNMODE_WS_SERVING:
774 case LWS_CONNMODE_WS_CLIENT:
775
776 /* handle session socket closed */
777
778 if (pollfd->revents & (POLLERR | POLLHUP)) {
779
Andy Green43db0452013-01-10 19:50:35 +0800780 lwsl_debug("Session Socket %p (fd=%d) dead\n",
Andy Green0d338332011-02-12 11:57:43 +0000781 (void *)wsi, pollfd->fd);
782
Peter Hinz56885f32011-03-02 22:03:47 +0000783 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000784 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green040d2ef2013-01-16 13:40:43 +0800785 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +0000786 }
787
Andy Green0d338332011-02-12 11:57:43 +0000788 /* the guy requested a callback when it was OK to write */
789
Andy Greenda527df2011-03-07 07:08:12 +0000790 if ((pollfd->revents & POLLOUT) &&
791 wsi->state == WSI_STATE_ESTABLISHED)
792 if (lws_handle_POLLOUT_event(context, wsi,
793 pollfd) < 0) {
794 libwebsocket_close_and_free_session(
795 context, wsi, LWS_CLOSE_STATUS_NORMAL);
Andy Green040d2ef2013-01-16 13:40:43 +0800796 return 0;
Andy Green3b84c002011-03-06 13:14:42 +0000797 }
Andy Green0d338332011-02-12 11:57:43 +0000798
Andy Green0d338332011-02-12 11:57:43 +0000799
800 /* any incoming data ready? */
801
802 if (!(pollfd->revents & POLLIN))
803 break;
804
Andy Greenb45993c2010-12-18 15:13:50 +0000805#ifdef LWS_OPENSSL_SUPPORT
David Galeano7ffbe1b2013-01-10 10:35:32 +0800806read_pending:
Andy Green0d338332011-02-12 11:57:43 +0000807 if (wsi->ssl)
Andy Green98a717c2011-03-06 13:14:15 +0000808 eff_buf.token_len = SSL_read(wsi->ssl, buf, sizeof buf);
Andy Greenb45993c2010-12-18 15:13:50 +0000809 else
810#endif
Andy Green98a717c2011-03-06 13:14:15 +0000811 eff_buf.token_len =
Andy Green72c34322011-04-16 10:46:21 +0100812 recv(pollfd->fd, buf, sizeof buf, 0);
Andy Greenb45993c2010-12-18 15:13:50 +0000813
Andy Green98a717c2011-03-06 13:14:15 +0000814 if (eff_buf.token_len < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800815 lwsl_debug("Socket read returned %d\n",
Andy Green98a717c2011-03-06 13:14:15 +0000816 eff_buf.token_len);
Alon Levydc93b7f2012-10-19 11:21:57 +0200817 if (errno != EINTR && errno != EAGAIN)
Andy Green6ee372f2012-04-09 15:09:01 +0800818 libwebsocket_close_and_free_session(context,
819 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Green040d2ef2013-01-16 13:40:43 +0800820 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +0000821 }
Andy Green98a717c2011-03-06 13:14:15 +0000822 if (!eff_buf.token_len) {
Peter Hinz56885f32011-03-02 22:03:47 +0000823 libwebsocket_close_and_free_session(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +0800824 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenfa3f4052012-10-07 20:40:35 +0800825 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +0000826 }
827
Andy Green98a717c2011-03-06 13:14:15 +0000828 /*
829 * give any active extensions a chance to munge the buffer
830 * before parse. We pass in a pointer to an lws_tokens struct
831 * prepared with the default buffer and content length that's in
832 * there. Rather than rewrite the default buffer, extensions
833 * that expect to grow the buffer can adapt .token to
834 * point to their own per-connection buffer in the extension
835 * user allocation. By default with no extensions or no
836 * extension callback handling, just the normal input buffer is
837 * used then so it is efficient.
838 */
Andy Greenb45993c2010-12-18 15:13:50 +0000839
Andy Green98a717c2011-03-06 13:14:15 +0000840 eff_buf.token = (char *)buf;
Andy Greenb45993c2010-12-18 15:13:50 +0000841
Andy Green98a717c2011-03-06 13:14:15 +0000842 more = 1;
843 while (more) {
Andy Green0d338332011-02-12 11:57:43 +0000844
Andy Green98a717c2011-03-06 13:14:15 +0000845 more = 0;
846
847 for (n = 0; n < wsi->count_active_extensions; n++) {
Andy Green46c2ea02011-03-22 09:04:01 +0000848 m = wsi->active_extensions[n]->callback(context,
849 wsi->active_extensions[n], wsi,
Andy Green98a717c2011-03-06 13:14:15 +0000850 LWS_EXT_CALLBACK_PACKET_RX_PREPARSE,
Andy Green46c2ea02011-03-22 09:04:01 +0000851 wsi->active_extensions_user[n],
852 &eff_buf, 0);
Andy Green98a717c2011-03-06 13:14:15 +0000853 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800854 lwsl_ext(
Andy Green6ee372f2012-04-09 15:09:01 +0800855 "Extension reports fatal error\n");
856 libwebsocket_close_and_free_session(
857 context, wsi,
858 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green040d2ef2013-01-16 13:40:43 +0800859 return 0;
Andy Green98a717c2011-03-06 13:14:15 +0000860 }
861 if (m)
862 more = 1;
863 }
864
865 /* service incoming data */
866
867 if (eff_buf.token_len) {
868 n = libwebsocket_read(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +0800869 (unsigned char *)eff_buf.token,
870 eff_buf.token_len);
Andy Green98a717c2011-03-06 13:14:15 +0000871 if (n < 0)
872 /* we closed wsi */
Andy Green040d2ef2013-01-16 13:40:43 +0800873 return 0;
Andy Green98a717c2011-03-06 13:14:15 +0000874 }
875
876 eff_buf.token = NULL;
877 eff_buf.token_len = 0;
878 }
David Galeano7ffbe1b2013-01-10 10:35:32 +0800879
880#ifdef LWS_OPENSSL_SUPPORT
881 if (wsi->ssl && SSL_pending(wsi->ssl))
882 goto read_pending;
883#endif
Andy Green98a717c2011-03-06 13:14:15 +0000884 break;
Andy Green76f61e72013-01-16 11:53:05 +0800885
886 default:
Andy Green03674a62013-01-16 11:47:40 +0800887#ifdef LWS_NO_CLIENT
888 break;
889#else
Andy Green76f61e72013-01-16 11:53:05 +0800890 return lws_client_socket_service(context, wsi, pollfd);
Andy Green03674a62013-01-16 11:47:40 +0800891#endif
Andy Greenb45993c2010-12-18 15:13:50 +0000892 }
893
894 return 0;
895}
896
Andy Green0d338332011-02-12 11:57:43 +0000897
Andy Green6964bb52011-01-23 16:50:33 +0000898/**
899 * libwebsocket_context_destroy() - Destroy the websocket context
Peter Hinz56885f32011-03-02 22:03:47 +0000900 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +0000901 *
902 * This function closes any active connections and then frees the
903 * context. After calling this, any further use of the context is
904 * undefined.
905 */
906void
Peter Hinz56885f32011-03-02 22:03:47 +0000907libwebsocket_context_destroy(struct libwebsocket_context *context)
Andy Green6964bb52011-01-23 16:50:33 +0000908{
Andy Green0d338332011-02-12 11:57:43 +0000909 int n;
910 int m;
Andy Greena41314f2011-05-23 10:00:03 +0100911 struct libwebsocket_extension *ext;
Andy Green6964bb52011-01-23 16:50:33 +0000912
Andy Greendfb23042013-01-17 12:26:48 +0800913 for (n = 0; n < context->fds_count; n++) {
914 struct libwebsocket *wsi = context->lws_lookup[context->fds[n].fd];
915 libwebsocket_close_and_free_session(context,
916 wsi, LWS_CLOSE_STATUS_GOINGAWAY);
917 }
Andy Green6964bb52011-01-23 16:50:33 +0000918
Andy Greena41314f2011-05-23 10:00:03 +0100919 /*
920 * give all extensions a chance to clean up any per-context
921 * allocations they might have made
922 */
923
924 ext = context->extensions;
925 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_DESTRUCT;
926 if (context->listen_port)
927 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_DESTRUCT;
Paulo Roberto Urio1f680ab2012-06-04 08:40:28 +0800928 while (ext && ext->callback) {
Aaron Zinman4550f1d2013-01-10 12:35:18 +0800929 ext->callback(context, ext, NULL, (enum libwebsocket_extension_callback_reasons)m, NULL, NULL, 0);
Andy Greena41314f2011-05-23 10:00:03 +0100930 ext++;
931 }
932
Peter Hinz56885f32011-03-02 22:03:47 +0000933#ifdef WIN32
934#else
935 close(context->fd_random);
Andy Green6964bb52011-01-23 16:50:33 +0000936#endif
937
Peter Hinz56885f32011-03-02 22:03:47 +0000938#ifdef LWS_OPENSSL_SUPPORT
939 if (context->ssl_ctx)
940 SSL_CTX_free(context->ssl_ctx);
941 if (context->ssl_client_ctx)
942 SSL_CTX_free(context->ssl_client_ctx);
943#endif
944
945 free(context);
946
947#ifdef WIN32
948 WSACleanup();
949#endif
Andy Green6964bb52011-01-23 16:50:33 +0000950}
951
Alon Levy0291eb32012-10-19 11:21:56 +0200952LWS_EXTERN void *
953libwebsocket_context_user(struct libwebsocket_context *context)
954{
955 return context->user_space;
956}
957
Andy Green6964bb52011-01-23 16:50:33 +0000958/**
959 * libwebsocket_service() - Service any pending websocket activity
Peter Hinz56885f32011-03-02 22:03:47 +0000960 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +0000961 * @timeout_ms: Timeout for poll; 0 means return immediately if nothing needed
962 * service otherwise block and service immediately, returning
963 * after the timeout if nothing needed service.
964 *
965 * This function deals with any pending websocket traffic, for three
966 * kinds of event. It handles these events on both server and client
967 * types of connection the same.
968 *
969 * 1) Accept new connections to our context's server
970 *
971 * 2) Perform pending broadcast writes initiated from other forked
972 * processes (effectively serializing asynchronous broadcasts)
973 *
974 * 3) Call the receive callback for incoming frame data received by
975 * server or client connections.
976 *
977 * You need to call this service function periodically to all the above
978 * functions to happen; if your application is single-threaded you can
979 * just call it in your main event loop.
980 *
981 * Alternatively you can fork a new process that asynchronously handles
982 * calling this service in a loop. In that case you are happy if this
983 * call blocks your thread until it needs to take care of something and
984 * would call it with a large nonzero timeout. Your loop then takes no
985 * CPU while there is nothing happening.
986 *
987 * If you are calling it in a single-threaded app, you don't want it to
988 * wait around blocking other things in your loop from happening, so you
989 * would call it with a timeout_ms of 0, so it returns immediately if
990 * nothing is pending, or as soon as it services whatever was pending.
991 */
992
Andy Greenb45993c2010-12-18 15:13:50 +0000993
Andy Greene92cd172011-01-19 13:11:55 +0000994int
Peter Hinz56885f32011-03-02 22:03:47 +0000995libwebsocket_service(struct libwebsocket_context *context, int timeout_ms)
Andy Greene92cd172011-01-19 13:11:55 +0000996{
997 int n;
Andy Greene92cd172011-01-19 13:11:55 +0000998
999 /* stay dead once we are dead */
1000
Peter Hinz56885f32011-03-02 22:03:47 +00001001 if (context == NULL)
Andy Greene92cd172011-01-19 13:11:55 +00001002 return 1;
1003
Andy Green0d338332011-02-12 11:57:43 +00001004 /* wait for something to need service */
Andy Green4739e5c2011-01-22 12:51:57 +00001005
Peter Hinz56885f32011-03-02 22:03:47 +00001006 n = poll(context->fds, context->fds_count, timeout_ms);
Andy Green3221f922011-02-12 13:14:11 +00001007 if (n == 0) /* poll timeout */
1008 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001009
Andy Greendfb23042013-01-17 12:26:48 +08001010 if (n < 0)
Andy Green3928f612012-07-20 12:58:38 +08001011 return -1;
Andy Greene92cd172011-01-19 13:11:55 +00001012
Andy Greendfb23042013-01-17 12:26:48 +08001013 /* any socket with events to service? */
Andy Greene92cd172011-01-19 13:11:55 +00001014
Peter Hinz56885f32011-03-02 22:03:47 +00001015 for (n = 0; n < context->fds_count; n++)
1016 if (context->fds[n].revents)
Andy Green3928f612012-07-20 12:58:38 +08001017 if (libwebsocket_service_fd(context,
1018 &context->fds[n]) < 0)
1019 return -1;
Andy Greene92cd172011-01-19 13:11:55 +00001020 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001021}
1022
Andy Greena41314f2011-05-23 10:00:03 +01001023int
1024lws_any_extension_handled(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001025 struct libwebsocket *wsi,
1026 enum libwebsocket_extension_callback_reasons r,
Andy Greena41314f2011-05-23 10:00:03 +01001027 void *v, size_t len)
1028{
1029 int n;
1030 int handled = 0;
1031
1032 /* maybe an extension will take care of it for us */
1033
1034 for (n = 0; n < wsi->count_active_extensions && !handled; n++) {
1035 if (!wsi->active_extensions[n]->callback)
1036 continue;
1037
1038 handled |= wsi->active_extensions[n]->callback(context,
1039 wsi->active_extensions[n], wsi,
1040 r, wsi->active_extensions_user[n], v, len);
1041 }
1042
1043 return handled;
1044}
1045
1046
1047void *
1048lws_get_extension_user_matching_ext(struct libwebsocket *wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001049 struct libwebsocket_extension *ext)
Andy Greena41314f2011-05-23 10:00:03 +01001050{
1051 int n = 0;
1052
Andy Green68b45042011-05-25 21:41:57 +01001053 if (wsi == NULL)
1054 return NULL;
1055
Andy Greena41314f2011-05-23 10:00:03 +01001056 while (n < wsi->count_active_extensions) {
1057 if (wsi->active_extensions[n] != ext) {
1058 n++;
1059 continue;
1060 }
1061 return wsi->active_extensions_user[n];
1062 }
1063
1064 return NULL;
1065}
1066
Andy Green90c7cbc2011-01-27 06:26:52 +00001067/**
1068 * libwebsocket_callback_on_writable() - Request a callback when this socket
1069 * becomes able to be written to without
1070 * blocking
Andy Green32375b72011-02-19 08:32:53 +00001071 *
Peter Hinz56885f32011-03-02 22:03:47 +00001072 * @context: libwebsockets context
Andy Green90c7cbc2011-01-27 06:26:52 +00001073 * @wsi: Websocket connection instance to get callback for
1074 */
1075
1076int
Peter Hinz56885f32011-03-02 22:03:47 +00001077libwebsocket_callback_on_writable(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001078 struct libwebsocket *wsi)
Andy Green90c7cbc2011-01-27 06:26:52 +00001079{
Andy Green90c7cbc2011-01-27 06:26:52 +00001080 int n;
Andy Greena41314f2011-05-23 10:00:03 +01001081 int handled = 0;
1082
1083 /* maybe an extension will take care of it for us */
1084
1085 for (n = 0; n < wsi->count_active_extensions; n++) {
1086 if (!wsi->active_extensions[n]->callback)
1087 continue;
1088
1089 handled |= wsi->active_extensions[n]->callback(context,
1090 wsi->active_extensions[n], wsi,
1091 LWS_EXT_CALLBACK_REQUEST_ON_WRITEABLE,
1092 wsi->active_extensions_user[n], NULL, 0);
1093 }
1094
1095 if (handled)
1096 return 1;
Andy Green90c7cbc2011-01-27 06:26:52 +00001097
Andy Greendfb23042013-01-17 12:26:48 +08001098 if (wsi->position_in_fds_table < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001099 lwsl_err("libwebsocket_callback_on_writable: "
Andy Green6ee372f2012-04-09 15:09:01 +08001100 "failed to find socket %d\n", wsi->sock);
Andy Greendfb23042013-01-17 12:26:48 +08001101 return -1;
1102 }
1103
1104 context->fds[wsi->position_in_fds_table].events |= POLLOUT;
Andy Greena41314f2011-05-23 10:00:03 +01001105
Andy Green3221f922011-02-12 13:14:11 +00001106 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001107 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001108 LWS_CALLBACK_SET_MODE_POLL_FD,
1109 (void *)(long)wsi->sock, NULL, POLLOUT);
1110
Andy Green90c7cbc2011-01-27 06:26:52 +00001111 return 1;
1112}
1113
1114/**
1115 * libwebsocket_callback_on_writable_all_protocol() - Request a callback for
1116 * all connections using the given protocol when it
1117 * becomes possible to write to each socket without
1118 * blocking in turn.
1119 *
1120 * @protocol: Protocol whose connections will get callbacks
1121 */
1122
1123int
1124libwebsocket_callback_on_writable_all_protocol(
1125 const struct libwebsocket_protocols *protocol)
1126{
Peter Hinz56885f32011-03-02 22:03:47 +00001127 struct libwebsocket_context *context = protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001128 int n;
Andy Green0d338332011-02-12 11:57:43 +00001129 struct libwebsocket *wsi;
Andy Green90c7cbc2011-01-27 06:26:52 +00001130
Andy Greendfb23042013-01-17 12:26:48 +08001131 for (n = 0; n < context->fds_count; n++) {
1132 wsi = context->lws_lookup[context->fds[n].fd];
1133 if (!wsi)
1134 continue;
1135 if (wsi->protocol == protocol)
1136 libwebsocket_callback_on_writable(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001137 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001138
1139 return 0;
1140}
1141
Andy Greenbe93fef2011-02-14 20:25:43 +00001142/**
1143 * libwebsocket_set_timeout() - marks the wsi as subject to a timeout
1144 *
1145 * You will not need this unless you are doing something special
1146 *
1147 * @wsi: Websocket connection instance
1148 * @reason: timeout reason
1149 * @secs: how many seconds
1150 */
1151
1152void
1153libwebsocket_set_timeout(struct libwebsocket *wsi,
1154 enum pending_timeout reason, int secs)
1155{
1156 struct timeval tv;
1157
1158 gettimeofday(&tv, NULL);
1159
1160 wsi->pending_timeout_limit = tv.tv_sec + secs;
1161 wsi->pending_timeout = reason;
1162}
1163
Andy Greena6cbece2011-01-27 20:06:03 +00001164
1165/**
1166 * libwebsocket_get_socket_fd() - returns the socket file descriptor
1167 *
1168 * You will not need this unless you are doing something special
1169 *
1170 * @wsi: Websocket connection instance
1171 */
1172
1173int
1174libwebsocket_get_socket_fd(struct libwebsocket *wsi)
1175{
1176 return wsi->sock;
1177}
1178
Andy Greena1ce6be2013-01-18 11:43:21 +08001179#ifdef LWS_NO_SERVER
1180int
1181_libwebsocket_rx_flow_control(struct libwebsocket *wsi)
1182{
1183 return 0;
1184}
1185#else
Andy Green706961d2013-01-17 16:50:35 +08001186int
1187_libwebsocket_rx_flow_control(struct libwebsocket *wsi)
1188{
1189 struct libwebsocket_context *context = wsi->protocol->owning_server;
1190 int n;
1191
1192 if (!(wsi->rxflow_change_to & 2))
1193 return 0;
1194
1195 wsi->rxflow_change_to &= ~2;
1196
1197 lwsl_info("rxflow: wsi %p change_to %d\n", wsi, wsi->rxflow_change_to);
1198
1199 /* if we're letting it come again, did we interrupt anything? */
1200 if ((wsi->rxflow_change_to & 1) && wsi->rxflow_buffer) {
1201 n = libwebsocket_interpret_incoming_packet(wsi, NULL, 0);
1202 if (n < 0) {
1203 libwebsocket_close_and_free_session(context, wsi, LWS_CLOSE_STATUS_NOSTATUS);
1204 return -1;
1205 }
1206 if (n)
1207 /* oh he stuck again, do nothing */
1208 return 0;
1209 }
1210
1211 if (wsi->rxflow_change_to & 1)
1212 context->fds[wsi->position_in_fds_table].events |= POLLIN;
1213 else
1214 context->fds[wsi->position_in_fds_table].events &= ~POLLIN;
1215
1216 if (wsi->rxflow_change_to & 1)
1217 /* external POLL support via protocol 0 */
1218 context->protocols[0].callback(context, wsi,
1219 LWS_CALLBACK_SET_MODE_POLL_FD,
1220 (void *)(long)wsi->sock, NULL, POLLIN);
1221 else
1222 /* external POLL support via protocol 0 */
1223 context->protocols[0].callback(context, wsi,
1224 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
1225 (void *)(long)wsi->sock, NULL, POLLIN);
1226
1227 return 1;
1228}
Andy Greena1ce6be2013-01-18 11:43:21 +08001229#endif
Andy Green706961d2013-01-17 16:50:35 +08001230
Andy Green90c7cbc2011-01-27 06:26:52 +00001231/**
1232 * libwebsocket_rx_flow_control() - Enable and disable socket servicing for
1233 * receieved packets.
1234 *
1235 * If the output side of a server process becomes choked, this allows flow
1236 * control for the input side.
1237 *
1238 * @wsi: Websocket connection instance to get callback for
1239 * @enable: 0 = disable read servicing for this connection, 1 = enable
1240 */
1241
1242int
1243libwebsocket_rx_flow_control(struct libwebsocket *wsi, int enable)
1244{
Andy Green706961d2013-01-17 16:50:35 +08001245 wsi->rxflow_change_to = 2 | !!enable;
Andy Green90c7cbc2011-01-27 06:26:52 +00001246
Andy Green706961d2013-01-17 16:50:35 +08001247 return 0;
Andy Green90c7cbc2011-01-27 06:26:52 +00001248}
1249
Andy Green706961d2013-01-17 16:50:35 +08001250
Andy Green2ac5a6f2011-01-28 10:00:18 +00001251/**
1252 * libwebsocket_canonical_hostname() - returns this host's hostname
1253 *
1254 * This is typically used by client code to fill in the host parameter
1255 * when making a client connection. You can only call it after the context
1256 * has been created.
1257 *
Peter Hinz56885f32011-03-02 22:03:47 +00001258 * @context: Websocket context
Andy Green2ac5a6f2011-01-28 10:00:18 +00001259 */
1260
1261
1262extern const char *
Peter Hinz56885f32011-03-02 22:03:47 +00001263libwebsocket_canonical_hostname(struct libwebsocket_context *context)
Andy Green2ac5a6f2011-01-28 10:00:18 +00001264{
Peter Hinz56885f32011-03-02 22:03:47 +00001265 return (const char *)context->canonical_hostname;
Andy Green2ac5a6f2011-01-28 10:00:18 +00001266}
1267
1268
Andy Green90c7cbc2011-01-27 06:26:52 +00001269static void sigpipe_handler(int x)
1270{
1271}
1272
Andy Green6901cb32011-02-21 08:06:47 +00001273#ifdef LWS_OPENSSL_SUPPORT
1274static int
1275OpenSSL_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx)
1276{
1277
1278 SSL *ssl;
1279 int n;
Andy Green2e24da02011-03-05 16:12:04 +00001280 struct libwebsocket_context *context;
Andy Green6901cb32011-02-21 08:06:47 +00001281
1282 ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
1283 SSL_get_ex_data_X509_STORE_CTX_idx());
1284
1285 /*
Andy Green2e24da02011-03-05 16:12:04 +00001286 * !!! nasty openssl requires the index to come as a library-scope
1287 * static
Andy Green6901cb32011-02-21 08:06:47 +00001288 */
Andy Green2e24da02011-03-05 16:12:04 +00001289 context = SSL_get_ex_data(ssl, openssl_websocket_private_data_index);
Andy Green6ee372f2012-04-09 15:09:01 +08001290
Peter Hinz56885f32011-03-02 22:03:47 +00001291 n = context->protocols[0].callback(NULL, NULL,
Andy Green6901cb32011-02-21 08:06:47 +00001292 LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION,
1293 x509_ctx, ssl, preverify_ok);
1294
1295 /* convert return code from 0 = OK to 1 = OK */
1296
1297 if (!n)
1298 n = 1;
1299 else
1300 n = 0;
1301
1302 return n;
1303}
1304#endif
1305
Andy Green706961d2013-01-17 16:50:35 +08001306int user_callback_handle_rxflow(callback_function callback_function,
1307 struct libwebsocket_context * context,
1308 struct libwebsocket *wsi,
1309 enum libwebsocket_callback_reasons reason, void *user,
1310 void *in, size_t len)
1311{
1312 int n;
1313
1314 n = callback_function(context, wsi, reason, user, in, len);
1315 if (n < 0)
1316 return n;
1317
1318 _libwebsocket_rx_flow_control(wsi);
1319
1320 return 0;
1321}
1322
Andy Greenb45993c2010-12-18 15:13:50 +00001323
Andy Greenab990e42010-10-31 12:42:52 +00001324/**
Andy Green4739e5c2011-01-22 12:51:57 +00001325 * libwebsocket_create_context() - Create the websocket handler
1326 * @port: Port to listen on... you can use 0 to suppress listening on
Andy Green6964bb52011-01-23 16:50:33 +00001327 * any port, that's what you want if you are not running a
1328 * websocket server at all but just using it as a client
Peter Hinz56885f32011-03-02 22:03:47 +00001329 * @interf: NULL to bind the listen socket to all interfaces, or the
Andy Green32375b72011-02-19 08:32:53 +00001330 * interface name, eg, "eth2"
Andy Green4f3943a2010-11-12 10:44:16 +00001331 * @protocols: Array of structures listing supported protocols and a protocol-
Andy Green8f037e42010-12-19 22:13:26 +00001332 * specific callback for each one. The list is ended with an
1333 * entry that has a NULL callback pointer.
Andy Green6964bb52011-01-23 16:50:33 +00001334 * It's not const because we write the owning_server member
Andy Greenc5114822011-03-06 10:29:35 +00001335 * @extensions: NULL or array of libwebsocket_extension structs listing the
Andy Green6ee372f2012-04-09 15:09:01 +08001336 * extensions this context supports
Andy Green3faa9c72010-11-08 17:03:03 +00001337 * @ssl_cert_filepath: If libwebsockets was compiled to use ssl, and you want
Andy Green8f037e42010-12-19 22:13:26 +00001338 * to listen using SSL, set to the filepath to fetch the
1339 * server cert from, otherwise NULL for unencrypted
Andy Green3faa9c72010-11-08 17:03:03 +00001340 * @ssl_private_key_filepath: filepath to private key if wanting SSL mode,
Andy Green8f037e42010-12-19 22:13:26 +00001341 * else ignored
David Galeano2f82be82013-01-09 16:25:54 +08001342 * @ssl_ca_filepath: CA certificate filepath or NULL
Andy Green3faa9c72010-11-08 17:03:03 +00001343 * @gid: group id to change to after setting listen socket, or -1.
1344 * @uid: user id to change to after setting listen socket, or -1.
Andy Greenbfb051f2011-02-09 08:49:14 +00001345 * @options: 0, or LWS_SERVER_OPTION_DEFEAT_CLIENT_MASK
Andy Green15e31f32012-10-19 18:36:28 +08001346 * @user: optional user pointer that can be recovered via the context
1347 * pointer using libwebsocket_context_user
Andy Green05464c62010-11-12 10:44:18 +00001348 *
Andy Green8f037e42010-12-19 22:13:26 +00001349 * This function creates the listening socket and takes care
1350 * of all initialization in one step.
1351 *
Andy Greene92cd172011-01-19 13:11:55 +00001352 * After initialization, it returns a struct libwebsocket_context * that
1353 * represents this server. After calling, user code needs to take care
1354 * of calling libwebsocket_service() with the context pointer to get the
1355 * server's sockets serviced. This can be done in the same process context
1356 * or a forked process, or another thread,
Andy Green05464c62010-11-12 10:44:18 +00001357 *
Andy Green8f037e42010-12-19 22:13:26 +00001358 * The protocol callback functions are called for a handful of events
1359 * including http requests coming in, websocket connections becoming
1360 * established, and data arriving; it's also called periodically to allow
1361 * async transmission.
1362 *
1363 * HTTP requests are sent always to the FIRST protocol in @protocol, since
1364 * at that time websocket protocol has not been negotiated. Other
1365 * protocols after the first one never see any HTTP callack activity.
1366 *
1367 * The server created is a simple http server by default; part of the
1368 * websocket standard is upgrading this http connection to a websocket one.
1369 *
1370 * This allows the same server to provide files like scripts and favicon /
1371 * images or whatever over http and dynamic data over websockets all in
1372 * one place; they're all handled in the user callback.
Andy Greenab990e42010-10-31 12:42:52 +00001373 */
Andy Green4ea60062010-10-30 12:15:07 +01001374
Andy Greene92cd172011-01-19 13:11:55 +00001375struct libwebsocket_context *
Peter Hinz56885f32011-03-02 22:03:47 +00001376libwebsocket_create_context(int port, const char *interf,
Andy Greenb45993c2010-12-18 15:13:50 +00001377 struct libwebsocket_protocols *protocols,
Andy Greend6e09112011-03-05 16:12:15 +00001378 struct libwebsocket_extension *extensions,
Andy Green8f037e42010-12-19 22:13:26 +00001379 const char *ssl_cert_filepath,
1380 const char *ssl_private_key_filepath,
David Galeano2f82be82013-01-09 16:25:54 +08001381 const char *ssl_ca_filepath,
Alon Levy0291eb32012-10-19 11:21:56 +02001382 int gid, int uid, unsigned int options,
David Galeano2f82be82013-01-09 16:25:54 +08001383 void *user)
Andy Greenff95d7a2010-10-28 22:36:01 +01001384{
1385 int n;
Andy Greena41314f2011-05-23 10:00:03 +01001386 int m;
Andy Green251f6fa2010-11-03 11:13:06 +00001387 int fd;
Andy Greenff95d7a2010-10-28 22:36:01 +01001388 struct sockaddr_in serv_addr, cli_addr;
Andy Green251f6fa2010-11-03 11:13:06 +00001389 int opt = 1;
Peter Hinz56885f32011-03-02 22:03:47 +00001390 struct libwebsocket_context *context = NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00001391 unsigned int slen;
Andy Green9659f372011-01-27 22:01:43 +00001392 char *p;
Andy Green0d338332011-02-12 11:57:43 +00001393 struct libwebsocket *wsi;
Andy Greenff95d7a2010-10-28 22:36:01 +01001394
Andy Green3faa9c72010-11-08 17:03:03 +00001395#ifdef LWS_OPENSSL_SUPPORT
Andy Greenf2f54d52010-11-15 22:08:00 +00001396 SSL_METHOD *method;
Andy Green3faa9c72010-11-08 17:03:03 +00001397 char ssl_err_buf[512];
Andy Green3faa9c72010-11-08 17:03:03 +00001398#endif
1399
Andy Green43db0452013-01-10 19:50:35 +08001400 lwsl_info("Initial logging level %d\n", log_level);
Andy Greenc0d6b632013-01-12 23:42:17 +08001401 lwsl_info(" LWS_MAX_HEADER_NAME_LENGTH: %u\n", LWS_MAX_HEADER_NAME_LENGTH);
1402 lwsl_info(" LWS_MAX_HEADER_LEN: %u\n", LWS_MAX_HEADER_LEN);
1403 lwsl_info(" LWS_INITIAL_HDR_ALLOC: %u\n", LWS_INITIAL_HDR_ALLOC);
1404 lwsl_info(" LWS_ADDITIONAL_HDR_ALLOC: %u\n", LWS_ADDITIONAL_HDR_ALLOC);
1405 lwsl_info(" MAX_USER_RX_BUFFER: %u\n", MAX_USER_RX_BUFFER);
1406 lwsl_info(" MAX_BROADCAST_PAYLOAD: %u\n", MAX_BROADCAST_PAYLOAD);
1407 lwsl_info(" LWS_MAX_PROTOCOLS: %u\n", LWS_MAX_PROTOCOLS);
1408 lwsl_info(" LWS_MAX_EXTENSIONS_ACTIVE: %u\n", LWS_MAX_EXTENSIONS_ACTIVE);
1409 lwsl_info(" SPEC_LATEST_SUPPORTED: %u\n", SPEC_LATEST_SUPPORTED);
1410 lwsl_info(" AWAITING_TIMEOUT: %u\n", AWAITING_TIMEOUT);
1411 lwsl_info(" CIPHERS_LIST_STRING: '%s'\n", CIPHERS_LIST_STRING);
1412 lwsl_info(" SYSTEM_RANDOM_FILEPATH: '%s'\n", SYSTEM_RANDOM_FILEPATH);
1413 lwsl_info(" LWS_MAX_ZLIB_CONN_BUFFER: %u\n", LWS_MAX_ZLIB_CONN_BUFFER);
Andy Green43db0452013-01-10 19:50:35 +08001414
Peter Hinz56885f32011-03-02 22:03:47 +00001415#ifdef _WIN32
1416 {
1417 WORD wVersionRequested;
1418 WSADATA wsaData;
1419 int err;
Andy Green6ee372f2012-04-09 15:09:01 +08001420 HMODULE wsdll;
Peter Hinz56885f32011-03-02 22:03:47 +00001421
1422 /* Use the MAKEWORD(lowbyte, highbyte) macro from Windef.h */
1423 wVersionRequested = MAKEWORD(2, 2);
1424
1425 err = WSAStartup(wVersionRequested, &wsaData);
1426 if (err != 0) {
1427 /* Tell the user that we could not find a usable */
1428 /* Winsock DLL. */
Andy Green43db0452013-01-10 19:50:35 +08001429 lwsl_err("WSAStartup failed with error: %d\n", err);
Peter Hinz56885f32011-03-02 22:03:47 +00001430 return NULL;
1431 }
David Galeano7b11fec2011-10-04 19:55:18 +08001432
Andy Green6ee372f2012-04-09 15:09:01 +08001433 /* default to a poll() made out of select() */
1434 poll = emulated_poll;
David Galeano7b11fec2011-10-04 19:55:18 +08001435
Andy Green6ee372f2012-04-09 15:09:01 +08001436 /* if windows socket lib available, use his WSAPoll */
David Galeanocb193682013-01-09 15:29:00 +08001437 wsdll = GetModuleHandle(_T("Ws2_32.dll"));
Andy Green6ee372f2012-04-09 15:09:01 +08001438 if (wsdll)
1439 poll = (PFNWSAPOLL)GetProcAddress(wsdll, "WSAPoll");
Peter Hinz56885f32011-03-02 22:03:47 +00001440 }
1441#endif
1442
1443
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001444 context = (struct libwebsocket_context *) malloc(sizeof(struct libwebsocket_context));
Peter Hinz56885f32011-03-02 22:03:47 +00001445 if (!context) {
Andy Green43db0452013-01-10 19:50:35 +08001446 lwsl_err("No memory for websocket context\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001447 return NULL;
1448 }
Peter Hinz56885f32011-03-02 22:03:47 +00001449 context->protocols = protocols;
1450 context->listen_port = port;
1451 context->http_proxy_port = 0;
1452 context->http_proxy_address[0] = '\0';
1453 context->options = options;
Andy Greendfb23042013-01-17 12:26:48 +08001454 /* to reduce this allocation, */
1455 context->max_fds = getdtablesize();
1456 lwsl_info(" max fd tracked: %u\n", context->max_fds);
1457
1458 context->fds = (struct pollfd *)malloc(sizeof(struct pollfd) * context->max_fds);
1459 if (context->fds == NULL) {
1460 lwsl_err("Unable to allocate fds array for %d connections\n", context->max_fds);
1461 free(context);
1462 return NULL;
1463 }
1464 context->lws_lookup = (struct libwebsocket **)malloc(sizeof(struct libwebsocke *) * context->max_fds);
1465 if (context->lws_lookup == NULL) {
1466 lwsl_err("Unable to allocate lws_lookup array for %d connections\n", context->max_fds);
1467 free(context->fds);
1468 free(context);
1469 return NULL;
1470 }
Peter Hinz56885f32011-03-02 22:03:47 +00001471 context->fds_count = 0;
Andy Greend6e09112011-03-05 16:12:15 +00001472 context->extensions = extensions;
Paulo Roberto Urio1e326632012-06-04 10:52:19 +08001473 context->last_timeout_check_s = 0;
Andy Greendfb23042013-01-17 12:26:48 +08001474 context->user_space = user;
Andy Green9659f372011-01-27 22:01:43 +00001475
Peter Hinz56885f32011-03-02 22:03:47 +00001476#ifdef WIN32
1477 context->fd_random = 0;
1478#else
1479 context->fd_random = open(SYSTEM_RANDOM_FILEPATH, O_RDONLY);
1480 if (context->fd_random < 0) {
Andy Greendfb23042013-01-17 12:26:48 +08001481 free(context);
Andy Green43db0452013-01-10 19:50:35 +08001482 lwsl_err("Unable to open random device %s %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001483 SYSTEM_RANDOM_FILEPATH, context->fd_random);
Andy Green44eee682011-02-10 09:32:24 +00001484 return NULL;
1485 }
Peter Hinz56885f32011-03-02 22:03:47 +00001486#endif
Andy Green44eee682011-02-10 09:32:24 +00001487
Peter Hinz56885f32011-03-02 22:03:47 +00001488#ifdef LWS_OPENSSL_SUPPORT
1489 context->use_ssl = 0;
1490 context->ssl_ctx = NULL;
1491 context->ssl_client_ctx = NULL;
Andy Green2e24da02011-03-05 16:12:04 +00001492 openssl_websocket_private_data_index = 0;
Peter Hinz56885f32011-03-02 22:03:47 +00001493#endif
Andy Green2ac5a6f2011-01-28 10:00:18 +00001494
Andy Greena1ce6be2013-01-18 11:43:21 +08001495 strcpy(context->canonical_hostname, "unknown");
Andy Greena69f0512012-05-03 12:32:38 +08001496
Andy Greena1ce6be2013-01-18 11:43:21 +08001497#ifndef LWS_NO_SERVER
1498 if (!(options & LWS_SERVER_OPTION_SKIP_SERVER_CANONICAL_NAME)) {
1499 struct sockaddr sa;
1500 char hostname[1024] = "";
Andy Green788c4a82012-10-22 12:29:57 +01001501
1502 /* find canonical hostname */
1503
1504 hostname[(sizeof hostname) - 1] = '\0';
1505 memset(&sa, 0, sizeof(sa));
1506 sa.sa_family = AF_INET;
1507 sa.sa_data[(sizeof sa.sa_data) - 1] = '\0';
1508 gethostname(hostname, (sizeof hostname) - 1);
1509
1510 n = 0;
1511
David Galeanoed3c8402013-01-10 10:45:24 +08001512 if (strlen(hostname) < sizeof(sa.sa_data) - 1) {
Andy Green788c4a82012-10-22 12:29:57 +01001513 strcpy(sa.sa_data, hostname);
Andy Green43db0452013-01-10 19:50:35 +08001514 // lwsl_debug("my host name is %s\n", sa.sa_data);
Andy Green788c4a82012-10-22 12:29:57 +01001515 n = getnameinfo(&sa, sizeof(sa), hostname,
1516 (sizeof hostname) - 1, NULL, 0, 0);
1517 }
1518
1519 if (!n) {
1520 strncpy(context->canonical_hostname, hostname,
1521 sizeof context->canonical_hostname - 1);
1522 context->canonical_hostname[
1523 sizeof context->canonical_hostname - 1] = '\0';
1524 } else
1525 strncpy(context->canonical_hostname, hostname,
1526 sizeof context->canonical_hostname - 1);
1527
Andy Greena1ce6be2013-01-18 11:43:21 +08001528 lwsl_info(" canonical_hostname = %s\n", context->canonical_hostname);
Andy Greena69f0512012-05-03 12:32:38 +08001529 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001530#endif
Andy Greena69f0512012-05-03 12:32:38 +08001531
Andy Green9659f372011-01-27 22:01:43 +00001532 /* split the proxy ads:port if given */
1533
1534 p = getenv("http_proxy");
1535 if (p) {
Peter Hinz56885f32011-03-02 22:03:47 +00001536 strncpy(context->http_proxy_address, p,
Andy Green6ee372f2012-04-09 15:09:01 +08001537 sizeof context->http_proxy_address - 1);
Peter Hinz56885f32011-03-02 22:03:47 +00001538 context->http_proxy_address[
1539 sizeof context->http_proxy_address - 1] = '\0';
Andy Green9659f372011-01-27 22:01:43 +00001540
Peter Hinz56885f32011-03-02 22:03:47 +00001541 p = strchr(context->http_proxy_address, ':');
Andy Green9659f372011-01-27 22:01:43 +00001542 if (p == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08001543 lwsl_err("http_proxy needs to be ads:port\n");
Andy Green9659f372011-01-27 22:01:43 +00001544 return NULL;
1545 }
1546 *p = '\0';
Peter Hinz56885f32011-03-02 22:03:47 +00001547 context->http_proxy_port = atoi(p + 1);
Andy Green9659f372011-01-27 22:01:43 +00001548
Andy Greena1ce6be2013-01-18 11:43:21 +08001549 lwsl_info(" Proxy %s:%u\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001550 context->http_proxy_address,
1551 context->http_proxy_port);
Andy Green9659f372011-01-27 22:01:43 +00001552 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001553
Andy Greena1ce6be2013-01-18 11:43:21 +08001554#ifndef LWS_NO_SERVER
Andy Green90c7cbc2011-01-27 06:26:52 +00001555 if (port) {
1556
Andy Green3faa9c72010-11-08 17:03:03 +00001557#ifdef LWS_OPENSSL_SUPPORT
Peter Hinz56885f32011-03-02 22:03:47 +00001558 context->use_ssl = ssl_cert_filepath != NULL &&
Andy Green90c7cbc2011-01-27 06:26:52 +00001559 ssl_private_key_filepath != NULL;
Peter Hinz56885f32011-03-02 22:03:47 +00001560 if (context->use_ssl)
Andy Green43db0452013-01-10 19:50:35 +08001561 lwsl_info(" Compiled with SSL support, using it\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001562 else
Andy Green43db0452013-01-10 19:50:35 +08001563 lwsl_info(" Compiled with SSL support, not using it\n");
Andy Green3faa9c72010-11-08 17:03:03 +00001564
Andy Green90c7cbc2011-01-27 06:26:52 +00001565#else
1566 if (ssl_cert_filepath != NULL &&
1567 ssl_private_key_filepath != NULL) {
Andy Green43db0452013-01-10 19:50:35 +08001568 lwsl_info(" Not compiled for OpenSSl support!\n");
Andy Greene92cd172011-01-19 13:11:55 +00001569 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001570 }
Andy Green43db0452013-01-10 19:50:35 +08001571 lwsl_info(" Compiled without SSL support, "
Andy Green90c7cbc2011-01-27 06:26:52 +00001572 "serving unencrypted\n");
1573#endif
1574 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001575#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00001576
1577 /* ignore SIGPIPE */
Peter Hinz56885f32011-03-02 22:03:47 +00001578#ifdef WIN32
1579#else
Andy Green90c7cbc2011-01-27 06:26:52 +00001580 signal(SIGPIPE, sigpipe_handler);
Peter Hinz56885f32011-03-02 22:03:47 +00001581#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00001582
1583
1584#ifdef LWS_OPENSSL_SUPPORT
1585
1586 /* basic openssl init */
1587
1588 SSL_library_init();
1589
1590 OpenSSL_add_all_algorithms();
1591 SSL_load_error_strings();
1592
Andy Green2e24da02011-03-05 16:12:04 +00001593 openssl_websocket_private_data_index =
Andy Green6901cb32011-02-21 08:06:47 +00001594 SSL_get_ex_new_index(0, "libwebsockets", NULL, NULL, NULL);
1595
Andy Green90c7cbc2011-01-27 06:26:52 +00001596 /*
1597 * Firefox insists on SSLv23 not SSLv3
1598 * Konq disables SSLv2 by default now, SSLv23 works
1599 */
1600
1601 method = (SSL_METHOD *)SSLv23_server_method();
1602 if (!method) {
Andy Green43db0452013-01-10 19:50:35 +08001603 lwsl_err("problem creating ssl method: %s\n",
Andy Green90c7cbc2011-01-27 06:26:52 +00001604 ERR_error_string(ERR_get_error(), ssl_err_buf));
1605 return NULL;
1606 }
Peter Hinz56885f32011-03-02 22:03:47 +00001607 context->ssl_ctx = SSL_CTX_new(method); /* create context */
1608 if (!context->ssl_ctx) {
Andy Green43db0452013-01-10 19:50:35 +08001609 lwsl_err("problem creating ssl context: %s\n",
Andy Green90c7cbc2011-01-27 06:26:52 +00001610 ERR_error_string(ERR_get_error(), ssl_err_buf));
1611 return NULL;
1612 }
1613
David Galeanocc148e42013-01-10 10:18:59 +08001614#ifdef SSL_OP_NO_COMPRESSION
David Galeanoc72f6f92013-01-10 10:11:57 +08001615 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08001616#endif
David Galeano77a677c2013-01-10 10:14:12 +08001617 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
David Galeanof177f2a2013-01-10 10:15:19 +08001618 SSL_CTX_set_cipher_list(context->ssl_ctx, CIPHERS_LIST_STRING);
David Galeanoc72f6f92013-01-10 10:11:57 +08001619
Andy Greena1ce6be2013-01-18 11:43:21 +08001620#ifndef LWS_NO_CLIENT
1621
Andy Green90c7cbc2011-01-27 06:26:52 +00001622 /* client context */
Andy Green6ee372f2012-04-09 15:09:01 +08001623
1624 if (port == CONTEXT_PORT_NO_LISTEN) {
Peter Hinz56885f32011-03-02 22:03:47 +00001625 method = (SSL_METHOD *)SSLv23_client_method();
1626 if (!method) {
Andy Green43db0452013-01-10 19:50:35 +08001627 lwsl_err("problem creating ssl method: %s\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001628 ERR_error_string(ERR_get_error(), ssl_err_buf));
1629 return NULL;
1630 }
1631 /* create context */
1632 context->ssl_client_ctx = SSL_CTX_new(method);
1633 if (!context->ssl_client_ctx) {
Andy Green43db0452013-01-10 19:50:35 +08001634 lwsl_err("problem creating ssl context: %s\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001635 ERR_error_string(ERR_get_error(), ssl_err_buf));
1636 return NULL;
1637 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001638
David Galeanocc148e42013-01-10 10:18:59 +08001639#ifdef SSL_OP_NO_COMPRESSION
David Galeanoc72f6f92013-01-10 10:11:57 +08001640 SSL_CTX_set_options(context->ssl_client_ctx, SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08001641#endif
David Galeano77a677c2013-01-10 10:14:12 +08001642 SSL_CTX_set_options(context->ssl_client_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
David Galeanof177f2a2013-01-10 10:15:19 +08001643 SSL_CTX_set_cipher_list(context->ssl_client_ctx, CIPHERS_LIST_STRING);
David Galeanoc72f6f92013-01-10 10:11:57 +08001644
Peter Hinz56885f32011-03-02 22:03:47 +00001645 /* openssl init for cert verification (for client sockets) */
David Galeano2f82be82013-01-09 16:25:54 +08001646 if (!ssl_ca_filepath) {
1647 if (!SSL_CTX_load_verify_locations(
1648 context->ssl_client_ctx, NULL,
1649 LWS_OPENSSL_CLIENT_CERTS))
Andy Green43db0452013-01-10 19:50:35 +08001650 lwsl_err(
David Galeano2f82be82013-01-09 16:25:54 +08001651 "Unable to load SSL Client certs from %s "
1652 "(set by --with-client-cert-dir= in configure) -- "
1653 " client ssl isn't going to work",
1654 LWS_OPENSSL_CLIENT_CERTS);
1655 } else
1656 if (!SSL_CTX_load_verify_locations(
1657 context->ssl_client_ctx, ssl_ca_filepath,
1658 NULL))
Andy Green43db0452013-01-10 19:50:35 +08001659 lwsl_err(
David Galeano2f82be82013-01-09 16:25:54 +08001660 "Unable to load SSL Client certs "
1661 "file from %s -- client ssl isn't "
1662 "going to work", ssl_ca_filepath);
Peter Hinz56885f32011-03-02 22:03:47 +00001663
1664 /*
1665 * callback allowing user code to load extra verification certs
1666 * helping the client to verify server identity
1667 */
1668
1669 context->protocols[0].callback(context, NULL,
1670 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS,
1671 context->ssl_client_ctx, NULL, 0);
Andy Green90c7cbc2011-01-27 06:26:52 +00001672 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001673#endif
Andy Green6ee372f2012-04-09 15:09:01 +08001674
Andy Greenc6bf2c22011-02-20 11:10:47 +00001675 /* as a server, are we requiring clients to identify themselves? */
1676
1677 if (options & LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT) {
1678
1679 /* absolutely require the client cert */
Andy Green6ee372f2012-04-09 15:09:01 +08001680
Peter Hinz56885f32011-03-02 22:03:47 +00001681 SSL_CTX_set_verify(context->ssl_ctx,
Andy Green6901cb32011-02-21 08:06:47 +00001682 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
1683 OpenSSL_verify_callback);
Andy Greenc6bf2c22011-02-20 11:10:47 +00001684
1685 /*
1686 * give user code a chance to load certs into the server
1687 * allowing it to verify incoming client certs
1688 */
1689
Peter Hinz56885f32011-03-02 22:03:47 +00001690 context->protocols[0].callback(context, NULL,
Andy Greenc6bf2c22011-02-20 11:10:47 +00001691 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS,
Peter Hinz56885f32011-03-02 22:03:47 +00001692 context->ssl_ctx, NULL, 0);
Andy Greenc6bf2c22011-02-20 11:10:47 +00001693 }
1694
Peter Hinz56885f32011-03-02 22:03:47 +00001695 if (context->use_ssl) {
Andy Green90c7cbc2011-01-27 06:26:52 +00001696
1697 /* openssl init for server sockets */
1698
Andy Green3faa9c72010-11-08 17:03:03 +00001699 /* set the local certificate from CertFile */
David Galeano9b3d4b22013-01-10 10:11:21 +08001700 n = SSL_CTX_use_certificate_chain_file(context->ssl_ctx,
1701 ssl_cert_filepath);
Andy Green3faa9c72010-11-08 17:03:03 +00001702 if (n != 1) {
Andy Green43db0452013-01-10 19:50:35 +08001703 lwsl_err("problem getting cert '%s': %s\n",
Andy Green3faa9c72010-11-08 17:03:03 +00001704 ssl_cert_filepath,
1705 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00001706 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001707 }
1708 /* set the private key from KeyFile */
Peter Hinz56885f32011-03-02 22:03:47 +00001709 if (SSL_CTX_use_PrivateKey_file(context->ssl_ctx,
1710 ssl_private_key_filepath, SSL_FILETYPE_PEM) != 1) {
Andy Green43db0452013-01-10 19:50:35 +08001711 lwsl_err("ssl problem getting key '%s': %s\n",
Andy Green018d8eb2010-11-08 21:04:23 +00001712 ssl_private_key_filepath,
1713 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00001714 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001715 }
1716 /* verify private key */
Peter Hinz56885f32011-03-02 22:03:47 +00001717 if (!SSL_CTX_check_private_key(context->ssl_ctx)) {
Andy Green43db0452013-01-10 19:50:35 +08001718 lwsl_err("Private SSL key doesn't match cert\n");
Andy Greene92cd172011-01-19 13:11:55 +00001719 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001720 }
1721
1722 /* SSL is happy and has a cert it's content with */
1723 }
1724#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001725
Andy Greendf736162011-01-18 15:39:02 +00001726 /* selftest */
1727
1728 if (lws_b64_selftest())
Andy Greene92cd172011-01-19 13:11:55 +00001729 return NULL;
Andy Greendf736162011-01-18 15:39:02 +00001730
Andy Greena1ce6be2013-01-18 11:43:21 +08001731#ifndef LWS_NO_SERVER
Andy Greenb45993c2010-12-18 15:13:50 +00001732 /* set up our external listening socket we serve on */
Andy Green8f037e42010-12-19 22:13:26 +00001733
Andy Green4739e5c2011-01-22 12:51:57 +00001734 if (port) {
Andy Greena1ce6be2013-01-18 11:43:21 +08001735 extern int interface_to_sa(const char *ifname, struct sockaddr_in *addr, size_t addrlen);
1736 int sockfd;
Andy Green8f037e42010-12-19 22:13:26 +00001737
Andy Green4739e5c2011-01-22 12:51:57 +00001738 sockfd = socket(AF_INET, SOCK_STREAM, 0);
1739 if (sockfd < 0) {
Andy Greenf7609e92013-01-14 13:10:55 +08001740 lwsl_err("ERROR opening socket\n");
Andy Green4739e5c2011-01-22 12:51:57 +00001741 return NULL;
1742 }
Andy Green775c0dd2010-10-29 14:15:22 +01001743
Andy Green4739e5c2011-01-22 12:51:57 +00001744 /* allow us to restart even if old sockets in TIME_WAIT */
Andy Green6ee372f2012-04-09 15:09:01 +08001745 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR,
1746 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00001747
1748 /* Disable Nagle */
1749 opt = 1;
Andy Green6ee372f2012-04-09 15:09:01 +08001750 setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY,
1751 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00001752
Andy Green4739e5c2011-01-22 12:51:57 +00001753 bzero((char *) &serv_addr, sizeof(serv_addr));
1754 serv_addr.sin_family = AF_INET;
Peter Hinz56885f32011-03-02 22:03:47 +00001755 if (interf == NULL)
Andy Green32375b72011-02-19 08:32:53 +00001756 serv_addr.sin_addr.s_addr = INADDR_ANY;
1757 else
Peter Hinz56885f32011-03-02 22:03:47 +00001758 interface_to_sa(interf, &serv_addr,
Andy Green32375b72011-02-19 08:32:53 +00001759 sizeof(serv_addr));
Andy Green4739e5c2011-01-22 12:51:57 +00001760 serv_addr.sin_port = htons(port);
1761
1762 n = bind(sockfd, (struct sockaddr *) &serv_addr,
1763 sizeof(serv_addr));
1764 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001765 lwsl_err("ERROR on binding to port %d (%d %d)\n",
Andy Green8f037e42010-12-19 22:13:26 +00001766 port, n, errno);
Andy Green41c58032013-01-12 13:21:08 +08001767 close(sockfd);
Andy Green4739e5c2011-01-22 12:51:57 +00001768 return NULL;
1769 }
Andy Green0d338332011-02-12 11:57:43 +00001770
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001771 wsi = (struct libwebsocket *)malloc(sizeof(struct libwebsocket));
Andy Green41c58032013-01-12 13:21:08 +08001772 if (wsi == NULL) {
1773 lwsl_err("Out of mem\n");
1774 close(sockfd);
1775 return NULL;
1776 }
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001777 memset(wsi, 0, sizeof (struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00001778 wsi->sock = sockfd;
Andy Greend6e09112011-03-05 16:12:15 +00001779 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00001780 wsi->mode = LWS_CONNMODE_SERVER_LISTENER;
Andy Greendfb23042013-01-17 12:26:48 +08001781
1782 insert_wsi_socket_into_fds(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001783
Andy Green65b0e912013-01-16 07:59:47 +08001784 context->listen_service_modulo = LWS_LISTEN_SERVICE_MODULO;
1785 context->listen_service_count = 0;
1786 context->listen_service_fd = sockfd;
1787
Andy Greena824d182013-01-15 20:52:29 +08001788 listen(sockfd, LWS_SOMAXCONN);
Andy Green43db0452013-01-10 19:50:35 +08001789 lwsl_info(" Listening on port %d\n", port);
Andy Green8f037e42010-12-19 22:13:26 +00001790 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001791#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001792
Andy Green6ee372f2012-04-09 15:09:01 +08001793 /*
1794 * drop any root privs for this process
1795 * to listen on port < 1023 we would have needed root, but now we are
1796 * listening, we don't want the power for anything else
1797 */
Peter Hinz56885f32011-03-02 22:03:47 +00001798#ifdef WIN32
1799#else
Andy Green3faa9c72010-11-08 17:03:03 +00001800 if (gid != -1)
1801 if (setgid(gid))
Andy Green43db0452013-01-10 19:50:35 +08001802 lwsl_warn("setgid: %s\n", strerror(errno));
Andy Green3faa9c72010-11-08 17:03:03 +00001803 if (uid != -1)
1804 if (setuid(uid))
Andy Green43db0452013-01-10 19:50:35 +08001805 lwsl_warn("setuid: %s\n", strerror(errno));
Peter Hinz56885f32011-03-02 22:03:47 +00001806#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001807
1808 /* set up our internal broadcast trigger sockets per-protocol */
1809
Peter Hinz56885f32011-03-02 22:03:47 +00001810 for (context->count_protocols = 0;
1811 protocols[context->count_protocols].callback;
1812 context->count_protocols++) {
Andy Green2d1301e2011-05-24 10:14:41 +01001813
Andy Green43db0452013-01-10 19:50:35 +08001814 lwsl_parser(" Protocol: %s\n",
1815 protocols[context->count_protocols].name);
Andy Green2d1301e2011-05-24 10:14:41 +01001816
Peter Hinz56885f32011-03-02 22:03:47 +00001817 protocols[context->count_protocols].owning_server = context;
1818 protocols[context->count_protocols].protocol_index =
1819 context->count_protocols;
Andy Greenb45993c2010-12-18 15:13:50 +00001820
1821 fd = socket(AF_INET, SOCK_STREAM, 0);
1822 if (fd < 0) {
Andy Greenf7609e92013-01-14 13:10:55 +08001823 lwsl_err("ERROR opening socket\n");
Andy Greene92cd172011-01-19 13:11:55 +00001824 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00001825 }
Andy Green8f037e42010-12-19 22:13:26 +00001826
Andy Greenb45993c2010-12-18 15:13:50 +00001827 /* allow us to restart even if old sockets in TIME_WAIT */
Andy Green6ee372f2012-04-09 15:09:01 +08001828 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const void *)&opt,
1829 sizeof(opt));
Andy Greenb45993c2010-12-18 15:13:50 +00001830
1831 bzero((char *) &serv_addr, sizeof(serv_addr));
1832 serv_addr.sin_family = AF_INET;
1833 serv_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
1834 serv_addr.sin_port = 0; /* pick the port for us */
1835
1836 n = bind(fd, (struct sockaddr *) &serv_addr, sizeof(serv_addr));
1837 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001838 lwsl_err("ERROR on binding to port %d (%d %d)\n",
Andy Greenb45993c2010-12-18 15:13:50 +00001839 port, n, errno);
Andy Greene92cd172011-01-19 13:11:55 +00001840 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00001841 }
1842
1843 slen = sizeof cli_addr;
1844 n = getsockname(fd, (struct sockaddr *)&cli_addr, &slen);
1845 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001846 lwsl_err("getsockname failed\n");
Andy Greene92cd172011-01-19 13:11:55 +00001847 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00001848 }
Peter Hinz56885f32011-03-02 22:03:47 +00001849 protocols[context->count_protocols].broadcast_socket_port =
Andy Greenb45993c2010-12-18 15:13:50 +00001850 ntohs(cli_addr.sin_port);
1851 listen(fd, 5);
1852
Andy Green43db0452013-01-10 19:50:35 +08001853 lwsl_debug(" Protocol %s broadcast socket %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001854 protocols[context->count_protocols].name,
Andy Greenb45993c2010-12-18 15:13:50 +00001855 ntohs(cli_addr.sin_port));
1856
Andy Green0d338332011-02-12 11:57:43 +00001857 /* dummy wsi per broadcast proxy socket */
1858
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001859 wsi = (struct libwebsocket *)malloc(sizeof(struct libwebsocket));
Andy Green41c58032013-01-12 13:21:08 +08001860 if (wsi == NULL) {
1861 lwsl_err("Out of mem\n");
1862 close(fd);
1863 return NULL;
1864 }
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001865 memset(wsi, 0, sizeof (struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00001866 wsi->sock = fd;
1867 wsi->mode = LWS_CONNMODE_BROADCAST_PROXY_LISTENER;
Andy Greend6e09112011-03-05 16:12:15 +00001868 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00001869 /* note which protocol we are proxying */
Peter Hinz56885f32011-03-02 22:03:47 +00001870 wsi->protocol_index_for_broadcast_proxy =
1871 context->count_protocols;
Andy Green0d338332011-02-12 11:57:43 +00001872
Andy Greendfb23042013-01-17 12:26:48 +08001873 insert_wsi_socket_into_fds(context, wsi);
Andy Greenb45993c2010-12-18 15:13:50 +00001874 }
1875
Andy Greena41314f2011-05-23 10:00:03 +01001876 /*
1877 * give all extensions a chance to create any per-context
1878 * allocations they need
1879 */
1880
1881 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_CONSTRUCT;
1882 if (port)
1883 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_CONSTRUCT;
Andrew Chambersd5512172012-05-20 08:17:09 +08001884
1885 if (extensions) {
1886 while (extensions->callback) {
Andy Green43db0452013-01-10 19:50:35 +08001887 lwsl_ext(" Extension: %s\n", extensions->name);
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001888 extensions->callback(context, extensions, NULL,
1889 (enum libwebsocket_extension_callback_reasons)m,
1890 NULL, NULL, 0);
Andrew Chambersd5512172012-05-20 08:17:09 +08001891 extensions++;
1892 }
Andy Greena41314f2011-05-23 10:00:03 +01001893 }
1894
Peter Hinz56885f32011-03-02 22:03:47 +00001895 return context;
Andy Greene92cd172011-01-19 13:11:55 +00001896}
Andy Greenb45993c2010-12-18 15:13:50 +00001897
Andy Green4739e5c2011-01-22 12:51:57 +00001898
Andy Greened11a022011-01-20 10:23:50 +00001899#ifndef LWS_NO_FORK
1900
Andy Greene92cd172011-01-19 13:11:55 +00001901/**
1902 * libwebsockets_fork_service_loop() - Optional helper function forks off
1903 * a process for the websocket server loop.
Andy Green6964bb52011-01-23 16:50:33 +00001904 * You don't have to use this but if not, you
1905 * have to make sure you are calling
1906 * libwebsocket_service periodically to service
1907 * the websocket traffic
Peter Hinz56885f32011-03-02 22:03:47 +00001908 * @context: server context returned by creation function
Andy Greene92cd172011-01-19 13:11:55 +00001909 */
Andy Greenb45993c2010-12-18 15:13:50 +00001910
Andy Greene92cd172011-01-19 13:11:55 +00001911int
Peter Hinz56885f32011-03-02 22:03:47 +00001912libwebsockets_fork_service_loop(struct libwebsocket_context *context)
Andy Greene92cd172011-01-19 13:11:55 +00001913{
Andy Greene92cd172011-01-19 13:11:55 +00001914 int fd;
1915 struct sockaddr_in cli_addr;
1916 int n;
Andy Green3221f922011-02-12 13:14:11 +00001917 int p;
Andy Greenb45993c2010-12-18 15:13:50 +00001918
Andy Greened11a022011-01-20 10:23:50 +00001919 n = fork();
1920 if (n < 0)
1921 return n;
1922
1923 if (!n) {
1924
1925 /* main process context */
1926
Andy Green3221f922011-02-12 13:14:11 +00001927 /*
1928 * set up the proxy sockets to allow broadcast from
1929 * service process context
1930 */
1931
Peter Hinz56885f32011-03-02 22:03:47 +00001932 for (p = 0; p < context->count_protocols; p++) {
Andy Greened11a022011-01-20 10:23:50 +00001933 fd = socket(AF_INET, SOCK_STREAM, 0);
1934 if (fd < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001935 lwsl_err("Unable to create socket\n");
Andy Greened11a022011-01-20 10:23:50 +00001936 return -1;
1937 }
1938 cli_addr.sin_family = AF_INET;
1939 cli_addr.sin_port = htons(
Peter Hinz56885f32011-03-02 22:03:47 +00001940 context->protocols[p].broadcast_socket_port);
Andy Greened11a022011-01-20 10:23:50 +00001941 cli_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
1942 n = connect(fd, (struct sockaddr *)&cli_addr,
1943 sizeof cli_addr);
1944 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001945 lwsl_err("Unable to connect to "
Andy Greened11a022011-01-20 10:23:50 +00001946 "broadcast socket %d, %s\n",
Andy Green3221f922011-02-12 13:14:11 +00001947 n, strerror(errno));
Andy Greened11a022011-01-20 10:23:50 +00001948 return -1;
1949 }
1950
Peter Hinz56885f32011-03-02 22:03:47 +00001951 context->protocols[p].broadcast_socket_user_fd = fd;
Andy Greened11a022011-01-20 10:23:50 +00001952 }
1953
Andy Greene92cd172011-01-19 13:11:55 +00001954 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +00001955 }
1956
Artem Baguinski91531662011-12-14 22:14:03 +01001957#ifdef HAVE_SYS_PRCTL_H
Andy Greenb45993c2010-12-18 15:13:50 +00001958 /* we want a SIGHUP when our parent goes down */
1959 prctl(PR_SET_PDEATHSIG, SIGHUP);
Artem Baguinski91531662011-12-14 22:14:03 +01001960#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001961
1962 /* in this forked process, sit and service websocket connections */
Andy Green8f037e42010-12-19 22:13:26 +00001963
Artem Baguinski91531662011-12-14 22:14:03 +01001964 while (1) {
Peter Hinz56885f32011-03-02 22:03:47 +00001965 if (libwebsocket_service(context, 1000))
Andy Green3928f612012-07-20 12:58:38 +08001966 break;
Andy Green5e8967a2012-10-17 20:10:44 +08001967//#ifndef HAVE_SYS_PRCTL_H
Artem Baguinski91531662011-12-14 22:14:03 +01001968/*
1969 * on systems without prctl() (i.e. anything but linux) we can notice that our
1970 * parent is dead if getppid() returns 1. FIXME apparently this is not true for
1971 * solaris, could remember ppid right after fork and wait for it to change.
1972 */
1973
1974 if (getppid() == 1)
1975 break;
Andy Green5e8967a2012-10-17 20:10:44 +08001976//#endif
Artem Baguinski91531662011-12-14 22:14:03 +01001977 }
1978
Andy Green8f037e42010-12-19 22:13:26 +00001979
Andy Green3928f612012-07-20 12:58:38 +08001980 return 1;
Andy Greenff95d7a2010-10-28 22:36:01 +01001981}
1982
Andy Greened11a022011-01-20 10:23:50 +00001983#endif
1984
Andy Greenb45993c2010-12-18 15:13:50 +00001985/**
1986 * libwebsockets_get_protocol() - Returns a protocol pointer from a websocket
Andy Green8f037e42010-12-19 22:13:26 +00001987 * connection.
Andy Greenb45993c2010-12-18 15:13:50 +00001988 * @wsi: pointer to struct websocket you want to know the protocol of
1989 *
Andy Green8f037e42010-12-19 22:13:26 +00001990 *
1991 * This is useful to get the protocol to broadcast back to from inside
Andy Greenb45993c2010-12-18 15:13:50 +00001992 * the callback.
1993 */
Andy Greenab990e42010-10-31 12:42:52 +00001994
Andy Greenb45993c2010-12-18 15:13:50 +00001995const struct libwebsocket_protocols *
1996libwebsockets_get_protocol(struct libwebsocket *wsi)
1997{
1998 return wsi->protocol;
1999}
2000
2001/**
Andy Greene92cd172011-01-19 13:11:55 +00002002 * libwebsockets_broadcast() - Sends a buffer to the callback for all active
Andy Green8f037e42010-12-19 22:13:26 +00002003 * connections of the given protocol.
Andy Greenb45993c2010-12-18 15:13:50 +00002004 * @protocol: pointer to the protocol you will broadcast to all members of
2005 * @buf: buffer containing the data to be broadcase. NOTE: this has to be
Andy Green8f037e42010-12-19 22:13:26 +00002006 * allocated with LWS_SEND_BUFFER_PRE_PADDING valid bytes before
2007 * the pointer and LWS_SEND_BUFFER_POST_PADDING afterwards in the
2008 * case you are calling this function from callback context.
Andy Greenb45993c2010-12-18 15:13:50 +00002009 * @len: length of payload data in buf, starting from buf.
Andy Green8f037e42010-12-19 22:13:26 +00002010 *
2011 * This function allows bulk sending of a packet to every connection using
Andy Greenb45993c2010-12-18 15:13:50 +00002012 * the given protocol. It does not send the data directly; instead it calls
2013 * the callback with a reason type of LWS_CALLBACK_BROADCAST. If the callback
2014 * wants to actually send the data for that connection, the callback itself
2015 * should call libwebsocket_write().
2016 *
2017 * libwebsockets_broadcast() can be called from another fork context without
2018 * having to take any care about data visibility between the processes, it'll
2019 * "just work".
2020 */
2021
2022
2023int
Andy Green8f037e42010-12-19 22:13:26 +00002024libwebsockets_broadcast(const struct libwebsocket_protocols *protocol,
Andy Greenb45993c2010-12-18 15:13:50 +00002025 unsigned char *buf, size_t len)
2026{
Peter Hinz56885f32011-03-02 22:03:47 +00002027 struct libwebsocket_context *context = protocol->owning_server;
Andy Greenb45993c2010-12-18 15:13:50 +00002028 int n;
Andy Green6ee372f2012-04-09 15:09:01 +08002029 struct libwebsocket *wsi;
Andy Greenb45993c2010-12-18 15:13:50 +00002030
2031 if (!protocol->broadcast_socket_user_fd) {
2032 /*
Andy Greene92cd172011-01-19 13:11:55 +00002033 * We are either running unforked / flat, or we are being
2034 * called from poll thread context
Andy Greenb45993c2010-12-18 15:13:50 +00002035 * eg, from a callback. In that case don't use sockets for
2036 * broadcast IPC (since we can't open a socket connection to
2037 * a socket listening on our own thread) but directly do the
2038 * send action.
2039 *
2040 * Locking is not needed because we are by definition being
2041 * called in the poll thread context and are serialized.
2042 */
2043
Andy Greendfb23042013-01-17 12:26:48 +08002044 for (n = 0; n < context->fds_count; n++) {
Andy Greenb45993c2010-12-18 15:13:50 +00002045
Andy Greendfb23042013-01-17 12:26:48 +08002046 wsi = context->lws_lookup[context->fds[n].fd];
2047 if (!wsi)
2048 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00002049
Andy Greendfb23042013-01-17 12:26:48 +08002050 if (wsi->mode != LWS_CONNMODE_WS_SERVING)
2051 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00002052
Andy Greendfb23042013-01-17 12:26:48 +08002053 /*
2054 * never broadcast to non-established connections
2055 */
2056 if (wsi->state != WSI_STATE_ESTABLISHED)
2057 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00002058
Andy Greendfb23042013-01-17 12:26:48 +08002059 /* only broadcast to guys using
2060 * requested protocol
2061 */
2062 if (wsi->protocol != protocol)
2063 continue;
Andy Green0d338332011-02-12 11:57:43 +00002064
Andy Green706961d2013-01-17 16:50:35 +08002065 user_callback_handle_rxflow(wsi->protocol->callback,
2066 context, wsi,
Andy Greendfb23042013-01-17 12:26:48 +08002067 LWS_CALLBACK_BROADCAST,
2068 wsi->user_space,
2069 buf, len);
Andy Greenb45993c2010-12-18 15:13:50 +00002070 }
2071
2072 return 0;
2073 }
2074
Andy Green0ca6a172010-12-19 20:50:01 +00002075 /*
2076 * We're being called from a different process context than the server
2077 * loop. Instead of broadcasting directly, we send our
2078 * payload on a socket to do the IPC; the server process will serialize
2079 * the broadcast action in its main poll() loop.
2080 *
2081 * There's one broadcast socket listening for each protocol supported
2082 * set up when the websocket server initializes
2083 */
2084
Andy Green6964bb52011-01-23 16:50:33 +00002085 n = send(protocol->broadcast_socket_user_fd, buf, len, MSG_NOSIGNAL);
Andy Greenb45993c2010-12-18 15:13:50 +00002086
2087 return n;
2088}
Andy Green82c3d542011-03-07 21:16:31 +00002089
2090int
2091libwebsocket_is_final_fragment(struct libwebsocket *wsi)
2092{
2093 return wsi->final;
2094}
Alex Bligh49146db2011-11-07 17:19:25 +08002095
David Galeanoe2cf9922013-01-09 18:06:55 +08002096unsigned char
2097libwebsocket_get_reserved_bits(struct libwebsocket *wsi)
2098{
2099 return wsi->rsv;
2100}
2101
Alex Bligh49146db2011-11-07 17:19:25 +08002102void *
2103libwebsocket_ensure_user_space(struct libwebsocket *wsi)
2104{
2105 /* allocate the per-connection user memory (if any) */
2106
2107 if (wsi->protocol->per_session_data_size && !wsi->user_space) {
2108 wsi->user_space = malloc(
2109 wsi->protocol->per_session_data_size);
2110 if (wsi->user_space == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08002111 lwsl_err("Out of memory for conn user space\n");
Alex Bligh49146db2011-11-07 17:19:25 +08002112 return NULL;
2113 }
Andy Green6ee372f2012-04-09 15:09:01 +08002114 memset(wsi->user_space, 0,
2115 wsi->protocol->per_session_data_size);
Alex Bligh49146db2011-11-07 17:19:25 +08002116 }
2117 return wsi->user_space;
2118}
Andy Green43db0452013-01-10 19:50:35 +08002119
Andy Greenacbaee62013-01-18 22:00:22 +08002120/**
2121 * lws_confirm_legit_wsi: returns nonzero if the wsi looks bad
2122 *
2123 * @wsi: struct libwebsocket to assess
2124 *
2125 * Performs consistecy checks on what the wsi claims and what the
2126 * polling arrays hold. This'll catch a closed wsi still in use.
2127 * Don't try to use on the listen (nonconnection) wsi as it will
2128 * fail it. Otherwise 0 return == wsi seems consistent.
2129 */
2130
2131int lws_confirm_legit_wsi(struct libwebsocket *wsi)
2132{
2133 struct libwebsocket_context *context;
2134
2135 if (!(wsi && wsi->protocol && wsi->protocol->owning_server))
2136 return 1;
2137
2138 context = wsi->protocol->owning_server;
2139
2140 if (!context)
2141 return 2;
2142
2143 if (!wsi->position_in_fds_table)
2144 return 3; /* position in fds table looks bad */
2145 if (context->fds[wsi->position_in_fds_table].fd != wsi->sock)
2146 return 4; /* pollfd entry does not wait on our socket descriptor */
2147 if (context->lws_lookup[wsi->sock] != wsi)
2148 return 5; /* lookup table does not agree with wsi */
2149
2150 return 0;
2151}
Andy Greende8f27a2013-01-12 09:17:42 +08002152
Andy Green0b319092013-01-19 11:17:56 +08002153static void lwsl_emit_stderr(int level, const char *line)
Andy Greende8f27a2013-01-12 09:17:42 +08002154{
Andy Green0b319092013-01-19 11:17:56 +08002155 char buf[300];
2156 struct timeval tv;
2157 int pos = 0;
2158 int n;
2159
2160 gettimeofday(&tv, NULL);
2161
2162 buf[0] = '\0';
2163 for (n = 0; n < LLL_COUNT; n++)
2164 if (level == (1 << n)) {
2165 pos = sprintf(buf, "[%ld:%04d] %s: ", tv.tv_sec,
2166 (int)(tv.tv_usec / 100), log_level_names[n]);
2167 break;
2168 }
2169
2170 fprintf(stderr, "%s%s", buf, line);
Andy Greende8f27a2013-01-12 09:17:42 +08002171}
2172
Andy Green43db0452013-01-10 19:50:35 +08002173void _lws_log(int filter, const char *format, ...)
2174{
Andy Greende8f27a2013-01-12 09:17:42 +08002175 char buf[256];
Andy Green43db0452013-01-10 19:50:35 +08002176 va_list ap;
Andy Green43db0452013-01-10 19:50:35 +08002177
2178 if (!(log_level & filter))
2179 return;
2180
Andy Green43db0452013-01-10 19:50:35 +08002181 va_start(ap, format);
Andy Green0b319092013-01-19 11:17:56 +08002182 vsnprintf(buf, (sizeof buf), format, ap);
Andy Greende8f27a2013-01-12 09:17:42 +08002183 buf[(sizeof buf) - 1] = '\0';
2184 va_end(ap);
2185
Andy Green0b319092013-01-19 11:17:56 +08002186 lwsl_emit(filter, buf);
Andy Green43db0452013-01-10 19:50:35 +08002187}
2188
2189/**
2190 * lws_set_log_level() - Set the logging bitfield
2191 * @level: OR together the LLL_ debug contexts you want output from
Andy Greende8f27a2013-01-12 09:17:42 +08002192 * @log_emit_function: NULL to leave it as it is, or a user-supplied
2193 * function to perform log string emission instead of
2194 * the default stderr one.
Andy Green43db0452013-01-10 19:50:35 +08002195 *
Andy Greende8f27a2013-01-12 09:17:42 +08002196 * log level defaults to "err" and "warn" contexts enabled only and
2197 * emission on stderr.
Andy Green43db0452013-01-10 19:50:35 +08002198 */
2199
Andy Greende8f27a2013-01-12 09:17:42 +08002200void lws_set_log_level(int level, void (*log_emit_function)(const char *line))
Andy Green43db0452013-01-10 19:50:35 +08002201{
2202 log_level = level;
Andy Greende8f27a2013-01-12 09:17:42 +08002203 if (log_emit_function)
2204 lwsl_emit = log_emit_function;
Andy Green43db0452013-01-10 19:50:35 +08002205}