blob: 99ce9e84ac83833bfa812d62b2dd2591eb840ee3 [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 Green1f9bf522011-02-14 21:14:37 +0000131#ifdef LWS_OPENSSL_SUPPORT
132static void
133libwebsockets_decode_ssl_error(void)
134{
135 char buf[256];
136 u_long err;
137
138 while ((err = ERR_get_error()) != 0) {
139 ERR_error_string_n(err, buf, sizeof(buf));
Andy Green43db0452013-01-10 19:50:35 +0800140 lwsl_err("*** %s\n", buf);
Andy Green1f9bf522011-02-14 21:14:37 +0000141 }
142}
143#endif
Andy Green0d338332011-02-12 11:57:43 +0000144
Andy Green32375b72011-02-19 08:32:53 +0000145
146static int
Andy Green6ee372f2012-04-09 15:09:01 +0800147interface_to_sa(const char *ifname, struct sockaddr_in *addr, size_t addrlen)
Andy Green32375b72011-02-19 08:32:53 +0000148{
149 int rc = -1;
Peter Hinz56885f32011-03-02 22:03:47 +0000150#ifdef WIN32
Andy Green6ee372f2012-04-09 15:09:01 +0800151 /* TODO */
Peter Hinz56885f32011-03-02 22:03:47 +0000152#else
Andy Green32375b72011-02-19 08:32:53 +0000153 struct ifaddrs *ifr;
154 struct ifaddrs *ifc;
155 struct sockaddr_in *sin;
156
157 getifaddrs(&ifr);
158 for (ifc = ifr; ifc != NULL; ifc = ifc->ifa_next) {
159 if (strcmp(ifc->ifa_name, ifname))
160 continue;
161 if (ifc->ifa_addr == NULL)
162 continue;
163 sin = (struct sockaddr_in *)ifc->ifa_addr;
164 if (sin->sin_family != AF_INET)
165 continue;
166 memcpy(addr, sin, addrlen);
Andy Green6ee372f2012-04-09 15:09:01 +0800167 rc = 0;
Andy Green32375b72011-02-19 08:32:53 +0000168 }
169
170 freeifaddrs(ifr);
Peter Hinz56885f32011-03-02 22:03:47 +0000171#endif
Andy Green32375b72011-02-19 08:32:53 +0000172 return rc;
173}
174
Andy Green8f037e42010-12-19 22:13:26 +0000175void
Peter Hinz56885f32011-03-02 22:03:47 +0000176libwebsocket_close_and_free_session(struct libwebsocket_context *context,
Andy Green687b0182011-02-26 11:04:01 +0000177 struct libwebsocket *wsi, enum lws_close_status reason)
Andy Green251f6fa2010-11-03 11:13:06 +0000178{
Andy Greenb45993c2010-12-18 15:13:50 +0000179 int n;
Andy Green62c54d22011-02-14 09:14:25 +0000180 int old_state;
Andy Green5e1fa172011-02-10 09:07:05 +0000181 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 2 +
182 LWS_SEND_BUFFER_POST_PADDING];
Andy Greenc44159f2011-03-07 07:08:18 +0000183 int ret;
184 int m;
185 struct lws_tokens eff_buf;
Andy Greena41314f2011-05-23 10:00:03 +0100186 struct libwebsocket_extension *ext;
Andy Greenb45993c2010-12-18 15:13:50 +0000187
Andy Green4b6fbe12011-02-14 08:03:48 +0000188 if (!wsi)
Andy Greenb45993c2010-12-18 15:13:50 +0000189 return;
190
Andy Green62c54d22011-02-14 09:14:25 +0000191 old_state = wsi->state;
Andy Green251f6fa2010-11-03 11:13:06 +0000192
Andy Green62c54d22011-02-14 09:14:25 +0000193 if (old_state == WSI_STATE_DEAD_SOCKET)
Andy Green5e1fa172011-02-10 09:07:05 +0000194 return;
195
Andy Greenda527df2011-03-07 07:08:12 +0000196 wsi->close_reason = reason;
197
198 /*
Andy Green68b45042011-05-25 21:41:57 +0100199 * are his extensions okay with him closing? Eg he might be a mux
200 * parent and just his ch1 aspect is closing?
201 */
202
203
204 for (n = 0; n < wsi->count_active_extensions; n++) {
205 if (!wsi->active_extensions[n]->callback)
206 continue;
207
208 m = wsi->active_extensions[n]->callback(context,
209 wsi->active_extensions[n], wsi,
210 LWS_EXT_CALLBACK_CHECK_OK_TO_REALLY_CLOSE,
211 wsi->active_extensions_user[n], NULL, 0);
212
213 /*
214 * if somebody vetoed actually closing him at this time....
215 * up to the extension to track the attempted close, let's
216 * just bail
217 */
218
219 if (m) {
Andy Green43db0452013-01-10 19:50:35 +0800220 lwsl_ext("extension vetoed close\n");
Andy Green68b45042011-05-25 21:41:57 +0100221 return;
222 }
223 }
224
225
226
227 /*
Andy Greenc44159f2011-03-07 07:08:18 +0000228 * flush any tx pending from extensions, since we may send close packet
229 * if there are problems with send, just nuke the connection
230 */
231
232 ret = 1;
233 while (ret == 1) {
234
235 /* default to nobody has more to spill */
236
237 ret = 0;
238 eff_buf.token = NULL;
239 eff_buf.token_len = 0;
240
241 /* show every extension the new incoming data */
242
243 for (n = 0; n < wsi->count_active_extensions; n++) {
244 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000245 wsi->protocol->owning_server,
246 wsi->active_extensions[n], wsi,
Andy Greenc44159f2011-03-07 07:08:18 +0000247 LWS_EXT_CALLBACK_FLUSH_PENDING_TX,
248 wsi->active_extensions_user[n], &eff_buf, 0);
249 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800250 lwsl_ext("Extension reports fatal error\n");
Andy Greenc44159f2011-03-07 07:08:18 +0000251 goto just_kill_connection;
252 }
253 if (m)
254 /*
255 * at least one extension told us he has more
256 * to spill, so we will go around again after
257 */
258 ret = 1;
259 }
260
261 /* assuming they left us something to send, send it */
262
263 if (eff_buf.token_len)
264 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
Andy Green0303db42013-01-17 14:46:43 +0800265 eff_buf.token_len)) {
266 lwsl_debug("close: sending final extension spill had problems\n");
Andy Greenc44159f2011-03-07 07:08:18 +0000267 goto just_kill_connection;
Andy Green0303db42013-01-17 14:46:43 +0800268 }
Andy Greenc44159f2011-03-07 07:08:18 +0000269 }
270
271 /*
Andy Greenda527df2011-03-07 07:08:12 +0000272 * signal we are closing, libsocket_write will
273 * add any necessary version-specific stuff. If the write fails,
274 * no worries we are closing anyway. If we didn't initiate this
275 * close, then our state has been changed to
276 * WSI_STATE_RETURNED_CLOSE_ALREADY and we will skip this.
277 *
278 * Likewise if it's a second call to close this connection after we
279 * sent the close indication to the peer already, we are in state
280 * WSI_STATE_AWAITING_CLOSE_ACK and will skip doing this a second time.
281 */
282
283 if (old_state == WSI_STATE_ESTABLISHED &&
284 reason != LWS_CLOSE_STATUS_NOSTATUS) {
Andy Green66a16f32011-05-24 22:07:45 +0100285
Andy Green43db0452013-01-10 19:50:35 +0800286 lwsl_debug("sending close indication...\n");
Andy Green66a16f32011-05-24 22:07:45 +0100287
Andy Greenda527df2011-03-07 07:08:12 +0000288 n = libwebsocket_write(wsi, &buf[LWS_SEND_BUFFER_PRE_PADDING],
289 0, LWS_WRITE_CLOSE);
290 if (!n) {
291 /*
292 * we have sent a nice protocol level indication we
293 * now wish to close, we should not send anything more
294 */
295
296 wsi->state = WSI_STATE_AWAITING_CLOSE_ACK;
297
Andy Green0303db42013-01-17 14:46:43 +0800298 /* and we should wait for a reply for a bit out of politeness */
Andy Greenda527df2011-03-07 07:08:12 +0000299
300 libwebsocket_set_timeout(wsi,
Andy Green0303db42013-01-17 14:46:43 +0800301 PENDING_TIMEOUT_CLOSE_ACK, 1);
Andy Greenda527df2011-03-07 07:08:12 +0000302
Andy Green43db0452013-01-10 19:50:35 +0800303 lwsl_debug("sent close indication, awaiting ack\n");
Andy Greenda527df2011-03-07 07:08:12 +0000304
305 return;
306 }
307
Andy Green0303db42013-01-17 14:46:43 +0800308 lwsl_info("close: sending the close packet failed, hanging up\n");
309
Andy Greenda527df2011-03-07 07:08:12 +0000310 /* else, the send failed and we should just hang up */
311 }
312
Andy Greenc44159f2011-03-07 07:08:18 +0000313just_kill_connection:
Andy Green66a16f32011-05-24 22:07:45 +0100314
Andy Green43db0452013-01-10 19:50:35 +0800315 lwsl_debug("libwebsocket_close_and_free_session: just_kill_connection\n");
Andy Green66a16f32011-05-24 22:07:45 +0100316
Andy Greenda527df2011-03-07 07:08:12 +0000317 /*
318 * we won't be servicing or receiving anything further from this guy
Andy Greendfb23042013-01-17 12:26:48 +0800319 * delete socket from the internal poll list if still present
Andy Greenda527df2011-03-07 07:08:12 +0000320 */
Andy Green4b6fbe12011-02-14 08:03:48 +0000321
Andy Greendfb23042013-01-17 12:26:48 +0800322 remove_wsi_socket_from_fds(context, wsi);
Andy Green4b6fbe12011-02-14 08:03:48 +0000323
Andy Green251f6fa2010-11-03 11:13:06 +0000324 wsi->state = WSI_STATE_DEAD_SOCKET;
325
Andy Green4b6fbe12011-02-14 08:03:48 +0000326 /* tell the user it's all over for this guy */
327
Andy Greend4302732011-02-28 07:45:29 +0000328 if (wsi->protocol && wsi->protocol->callback &&
Andy Green6ee372f2012-04-09 15:09:01 +0800329 ((old_state == WSI_STATE_ESTABLISHED) ||
330 (old_state == WSI_STATE_RETURNED_CLOSE_ALREADY) ||
331 (old_state == WSI_STATE_AWAITING_CLOSE_ACK))) {
Andy Green43db0452013-01-10 19:50:35 +0800332 lwsl_debug("calling back CLOSED\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000333 wsi->protocol->callback(context, wsi, LWS_CALLBACK_CLOSED,
Andy Greene77ddd82010-11-13 10:03:47 +0000334 wsi->user_space, NULL, 0);
Andy Greencc012472011-11-07 19:53:23 +0800335 } else
Andy Green43db0452013-01-10 19:50:35 +0800336 lwsl_debug("not calling back closed, old_state=%d\n", old_state);
Andy Green251f6fa2010-11-03 11:13:06 +0000337
Andy Greenef660a92011-03-06 10:29:38 +0000338 /* deallocate any active extension contexts */
339
340 for (n = 0; n < wsi->count_active_extensions; n++) {
341 if (!wsi->active_extensions[n]->callback)
342 continue;
343
Andy Green46c2ea02011-03-22 09:04:01 +0000344 wsi->active_extensions[n]->callback(context,
345 wsi->active_extensions[n], wsi,
346 LWS_EXT_CALLBACK_DESTROY,
347 wsi->active_extensions_user[n], NULL, 0);
Andy Greenef660a92011-03-06 10:29:38 +0000348
349 free(wsi->active_extensions_user[n]);
350 }
351
Andy Greena41314f2011-05-23 10:00:03 +0100352 /*
353 * inform all extensions in case they tracked this guy out of band
354 * even though not active on him specifically
355 */
356
357 ext = context->extensions;
358 while (ext && ext->callback) {
359 ext->callback(context, ext, wsi,
360 LWS_EXT_CALLBACK_DESTROY_ANY_WSI_CLOSING,
361 NULL, NULL, 0);
362 ext++;
363 }
364
Andy Greenef660a92011-03-06 10:29:38 +0000365 /* free up his parsing allocations */
Andy Green4b6fbe12011-02-14 08:03:48 +0000366
Andy Green251f6fa2010-11-03 11:13:06 +0000367 for (n = 0; n < WSI_TOKEN_COUNT; n++)
368 if (wsi->utf8_token[n].token)
369 free(wsi->utf8_token[n].token);
370
Andy Greena41314f2011-05-23 10:00:03 +0100371 if (wsi->c_address)
372 free(wsi->c_address);
373
Andy Green706961d2013-01-17 16:50:35 +0800374 if (wsi->rxflow_buffer)
375 free(wsi->rxflow_buffer);
376
Andy Green43db0452013-01-10 19:50:35 +0800377/* lwsl_info("closing fd=%d\n", wsi->sock); */
Andy Green251f6fa2010-11-03 11:13:06 +0000378
Andy Green3faa9c72010-11-08 17:03:03 +0000379#ifdef LWS_OPENSSL_SUPPORT
Andy Green90c7cbc2011-01-27 06:26:52 +0000380 if (wsi->ssl) {
Andy Green3faa9c72010-11-08 17:03:03 +0000381 n = SSL_get_fd(wsi->ssl);
382 SSL_shutdown(wsi->ssl);
Andy Green3fc2c652013-01-14 15:35:02 +0800383 compatible_close(n);
Andy Green3faa9c72010-11-08 17:03:03 +0000384 SSL_free(wsi->ssl);
385 } else {
386#endif
Andy Green0303db42013-01-17 14:46:43 +0800387 if (wsi->sock) {
388 n = shutdown(wsi->sock, SHUT_RDWR);
389 if (n)
390 lwsl_debug("closing: shutdown returned %d\n", errno);
Andy Green3fc2c652013-01-14 15:35:02 +0800391
Andy Green0303db42013-01-17 14:46:43 +0800392 n = compatible_close(wsi->sock);
393 if (n)
394 lwsl_debug("closing: close returned %d\n", errno);
395 }
Andy Green3faa9c72010-11-08 17:03:03 +0000396#ifdef LWS_OPENSSL_SUPPORT
397 }
398#endif
David Brooks2c60d952012-04-20 12:19:01 +0800399 if (wsi->protocol && wsi->protocol->per_session_data_size && wsi->user_space) /* user code may own */
Andy Green4f3943a2010-11-12 10:44:16 +0000400 free(wsi->user_space);
401
Andy Green251f6fa2010-11-03 11:13:06 +0000402 free(wsi);
403}
404
Andy Green07034092011-02-13 08:37:12 +0000405/**
Andy Greenf7ee5492011-02-13 09:04:21 +0000406 * libwebsockets_hangup_on_client() - Server calls to terminate client
Andy Green6ee372f2012-04-09 15:09:01 +0800407 * connection
Peter Hinz56885f32011-03-02 22:03:47 +0000408 * @context: libwebsockets context
Andy Greenf7ee5492011-02-13 09:04:21 +0000409 * @fd: Connection socket descriptor
410 */
411
412void
Peter Hinz56885f32011-03-02 22:03:47 +0000413libwebsockets_hangup_on_client(struct libwebsocket_context *context, int fd)
Andy Greenf7ee5492011-02-13 09:04:21 +0000414{
Andy Greendfb23042013-01-17 12:26:48 +0800415 struct libwebsocket *wsi = context->lws_lookup[fd];
Andy Greenf7ee5492011-02-13 09:04:21 +0000416
Andy Greendfb23042013-01-17 12:26:48 +0800417 if (wsi) {
418 libwebsocket_close_and_free_session(context,
419 wsi, LWS_CLOSE_STATUS_NOSTATUS);
420 } else
421 close(fd);
Andy Greenf7ee5492011-02-13 09:04:21 +0000422}
423
424
425/**
Andy Green07034092011-02-13 08:37:12 +0000426 * libwebsockets_get_peer_addresses() - Get client address information
427 * @fd: Connection socket descriptor
428 * @name: Buffer to take client address name
429 * @name_len: Length of client address name buffer
430 * @rip: Buffer to take client address IP qotted quad
431 * @rip_len: Length of client address IP buffer
432 *
433 * This function fills in @name and @rip with the name and IP of
Andy Green6ee372f2012-04-09 15:09:01 +0800434 * the client connected with socket descriptor @fd. Names may be
435 * truncated if there is not enough room. If either cannot be
436 * determined, they will be returned as valid zero-length strings.
Andy Green07034092011-02-13 08:37:12 +0000437 */
438
439void
440libwebsockets_get_peer_addresses(int fd, char *name, int name_len,
441 char *rip, int rip_len)
442{
443 unsigned int len;
444 struct sockaddr_in sin;
445 struct hostent *host;
446 struct hostent *host1;
447 char ip[128];
Andy Greenf92def72011-03-09 15:02:20 +0000448 unsigned char *p;
Andy Green07034092011-02-13 08:37:12 +0000449 int n;
David Galeanocb193682013-01-09 15:29:00 +0800450#ifdef AF_LOCAL
451 struct sockaddr_un *un;
452#endif
Andy Green07034092011-02-13 08:37:12 +0000453
454 rip[0] = '\0';
455 name[0] = '\0';
456
457 len = sizeof sin;
458 if (getpeername(fd, (struct sockaddr *) &sin, &len) < 0) {
459 perror("getpeername");
460 return;
461 }
Andy Green6ee372f2012-04-09 15:09:01 +0800462
Andy Green07034092011-02-13 08:37:12 +0000463 host = gethostbyaddr((char *) &sin.sin_addr, sizeof sin.sin_addr,
464 AF_INET);
465 if (host == NULL) {
466 perror("gethostbyaddr");
467 return;
468 }
469
470 strncpy(name, host->h_name, name_len);
471 name[name_len - 1] = '\0';
472
473 host1 = gethostbyname(host->h_name);
474 if (host1 == NULL)
475 return;
Andy Greenf92def72011-03-09 15:02:20 +0000476 p = (unsigned char *)host1;
Andy Green07034092011-02-13 08:37:12 +0000477 n = 0;
478 while (p != NULL) {
Andy Greenf92def72011-03-09 15:02:20 +0000479 p = (unsigned char *)host1->h_addr_list[n++];
Andy Green07034092011-02-13 08:37:12 +0000480 if (p == NULL)
481 continue;
Peter Hinzbb45a902011-03-10 18:14:01 +0000482 if ((host1->h_addrtype != AF_INET)
483#ifdef AF_LOCAL
484 && (host1->h_addrtype != AF_LOCAL)
485#endif
486 )
Andy Green07034092011-02-13 08:37:12 +0000487 continue;
488
Andy Green7627af52011-03-09 15:13:52 +0000489 if (host1->h_addrtype == AF_INET)
490 sprintf(ip, "%u.%u.%u.%u", p[0], p[1], p[2], p[3]);
Peter Hinzbb45a902011-03-10 18:14:01 +0000491#ifdef AF_LOCAL
Andy Green7627af52011-03-09 15:13:52 +0000492 else {
493 un = (struct sockaddr_un *)p;
Andy Green6ee372f2012-04-09 15:09:01 +0800494 strncpy(ip, un->sun_path, sizeof(ip) - 1);
Andy Green7627af52011-03-09 15:13:52 +0000495 ip[sizeof(ip) - 1] = '\0';
496 }
Peter Hinzbb45a902011-03-10 18:14:01 +0000497#endif
Andy Green07034092011-02-13 08:37:12 +0000498 p = NULL;
499 strncpy(rip, ip, rip_len);
500 rip[rip_len - 1] = '\0';
501 }
502}
Andy Green9f990342011-02-12 11:57:45 +0000503
Peter Hinz56885f32011-03-02 22:03:47 +0000504int libwebsockets_get_random(struct libwebsocket_context *context,
505 void *buf, int len)
506{
507 int n;
Aaron Zinman4550f1d2013-01-10 12:35:18 +0800508 char *p = (char *)buf;
Peter Hinz56885f32011-03-02 22:03:47 +0000509
510#ifdef WIN32
511 for (n = 0; n < len; n++)
512 p[n] = (unsigned char)rand();
513#else
514 n = read(context->fd_random, p, len);
515#endif
516
517 return n;
518}
519
Andy Green2836c642011-03-07 20:47:41 +0000520unsigned char *
521libwebsockets_SHA1(const unsigned char *d, size_t n, unsigned char *md)
522{
523 return SHA1(d, n, md);
524}
525
Andy Green95a7b5d2011-03-06 10:29:39 +0000526int lws_send_pipe_choked(struct libwebsocket *wsi)
527{
528 struct pollfd fds;
529
530 fds.fd = wsi->sock;
531 fds.events = POLLOUT;
532 fds.revents = 0;
533
534 if (poll(&fds, 1, 0) != 1)
535 return 1;
536
537 if ((fds.revents & POLLOUT) == 0)
538 return 1;
539
540 /* okay to send another packet without blocking */
541
542 return 0;
543}
544
Andy Greena41314f2011-05-23 10:00:03 +0100545int
Andy Green3b84c002011-03-06 13:14:42 +0000546lws_handle_POLLOUT_event(struct libwebsocket_context *context,
547 struct libwebsocket *wsi, struct pollfd *pollfd)
548{
549 struct lws_tokens eff_buf;
550 int n;
551 int ret;
552 int m;
Andy Greena41314f2011-05-23 10:00:03 +0100553 int handled = 0;
Andy Green3b84c002011-03-06 13:14:42 +0000554
Andy Greena41314f2011-05-23 10:00:03 +0100555 for (n = 0; n < wsi->count_active_extensions; n++) {
556 if (!wsi->active_extensions[n]->callback)
557 continue;
558
559 m = wsi->active_extensions[n]->callback(context,
560 wsi->active_extensions[n], wsi,
561 LWS_EXT_CALLBACK_IS_WRITEABLE,
562 wsi->active_extensions_user[n], NULL, 0);
563 if (m > handled)
564 handled = m;
565 }
566
567 if (handled == 1)
568 goto notify_action;
569
570 if (!wsi->extension_data_pending || handled == 2)
Andy Green3b84c002011-03-06 13:14:42 +0000571 goto user_service;
572
573 /*
574 * check in on the active extensions, see if they
575 * had pending stuff to spill... they need to get the
576 * first look-in otherwise sequence will be disordered
577 *
578 * NULL, zero-length eff_buf means just spill pending
579 */
580
581 ret = 1;
582 while (ret == 1) {
583
584 /* default to nobody has more to spill */
585
586 ret = 0;
587 eff_buf.token = NULL;
588 eff_buf.token_len = 0;
589
590 /* give every extension a chance to spill */
591
592 for (n = 0; n < wsi->count_active_extensions; n++) {
593 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000594 wsi->protocol->owning_server,
595 wsi->active_extensions[n], wsi,
Andy Green3b84c002011-03-06 13:14:42 +0000596 LWS_EXT_CALLBACK_PACKET_TX_PRESEND,
597 wsi->active_extensions_user[n], &eff_buf, 0);
598 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800599 lwsl_err("ext reports fatal error\n");
Andy Green3b84c002011-03-06 13:14:42 +0000600 return -1;
601 }
602 if (m)
603 /*
604 * at least one extension told us he has more
605 * to spill, so we will go around again after
606 */
607 ret = 1;
608 }
609
610 /* assuming they gave us something to send, send it */
611
612 if (eff_buf.token_len) {
613 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
614 eff_buf.token_len))
615 return -1;
616 } else
617 continue;
618
619 /* no extension has more to spill */
620
621 if (!ret)
622 continue;
623
624 /*
625 * There's more to spill from an extension, but we just sent
626 * something... did that leave the pipe choked?
627 */
628
629 if (!lws_send_pipe_choked(wsi))
630 /* no we could add more */
631 continue;
632
Andy Green43db0452013-01-10 19:50:35 +0800633 lwsl_info("choked in POLLOUT service\n");
Andy Green3b84c002011-03-06 13:14:42 +0000634
635 /*
636 * Yes, he's choked. Leave the POLLOUT masked on so we will
637 * come back here when he is unchoked. Don't call the user
638 * callback to enforce ordering of spilling, he'll get called
639 * when we come back here and there's nothing more to spill.
640 */
641
642 return 0;
643 }
644
645 wsi->extension_data_pending = 0;
646
647user_service:
648 /* one shot */
649
Andy Greena41314f2011-05-23 10:00:03 +0100650 if (pollfd) {
651 pollfd->events &= ~POLLOUT;
Andy Green3b84c002011-03-06 13:14:42 +0000652
Andy Greena41314f2011-05-23 10:00:03 +0100653 /* external POLL support via protocol 0 */
654 context->protocols[0].callback(context, wsi,
655 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
656 (void *)(long)wsi->sock, NULL, POLLOUT);
657 }
658
659notify_action:
Andy Green3b84c002011-03-06 13:14:42 +0000660
Andy Green9e4c2b62011-03-07 20:47:39 +0000661 if (wsi->mode == LWS_CONNMODE_WS_CLIENT)
662 n = LWS_CALLBACK_CLIENT_WRITEABLE;
663 else
664 n = LWS_CALLBACK_SERVER_WRITEABLE;
665
Andy Green706961d2013-01-17 16:50:35 +0800666 user_callback_handle_rxflow(wsi->protocol->callback, context,
667 wsi, (enum libwebsocket_callback_reasons) n, wsi->user_space, NULL, 0);
Andy Green3b84c002011-03-06 13:14:42 +0000668
669 return 0;
670}
671
672
673
Andy Greena41314f2011-05-23 10:00:03 +0100674void
675libwebsocket_service_timeout_check(struct libwebsocket_context *context,
676 struct libwebsocket *wsi, unsigned int sec)
677{
678 int n;
679
680 /*
681 * if extensions want in on it (eg, we are a mux parent)
682 * give them a chance to service child timeouts
683 */
684
685 for (n = 0; n < wsi->count_active_extensions; n++)
686 wsi->active_extensions[n]->callback(
687 context, wsi->active_extensions[n],
688 wsi, LWS_EXT_CALLBACK_1HZ,
689 wsi->active_extensions_user[n], NULL, sec);
690
691 if (!wsi->pending_timeout)
692 return;
Andy Green6ee372f2012-04-09 15:09:01 +0800693
Andy Greena41314f2011-05-23 10:00:03 +0100694 /*
695 * if we went beyond the allowed time, kill the
696 * connection
697 */
698
699 if (sec > wsi->pending_timeout_limit) {
Andy Green43db0452013-01-10 19:50:35 +0800700 lwsl_info("TIMEDOUT WAITING\n");
Andy Greena41314f2011-05-23 10:00:03 +0100701 libwebsocket_close_and_free_session(context,
702 wsi, LWS_CLOSE_STATUS_NOSTATUS);
703 }
704}
705
706struct libwebsocket *
707libwebsocket_create_new_server_wsi(struct libwebsocket_context *context)
708{
709 struct libwebsocket *new_wsi;
710 int n;
711
Aaron Zinman4550f1d2013-01-10 12:35:18 +0800712 new_wsi = (struct libwebsocket *)malloc(sizeof(struct libwebsocket));
Andy Greena41314f2011-05-23 10:00:03 +0100713 if (new_wsi == NULL) {
Andy Green43db0452013-01-10 19:50:35 +0800714 lwsl_err("Out of memory for new connection\n");
Andy Greena41314f2011-05-23 10:00:03 +0100715 return NULL;
716 }
717
Andy Green6ee372f2012-04-09 15:09:01 +0800718 memset(new_wsi, 0, sizeof(struct libwebsocket));
Andy Greena41314f2011-05-23 10:00:03 +0100719 new_wsi->count_active_extensions = 0;
720 new_wsi->pending_timeout = NO_PENDING_TIMEOUT;
721
722 /* intialize the instance struct */
723
724 new_wsi->state = WSI_STATE_HTTP;
725 new_wsi->name_buffer_pos = 0;
Andy Greend280b6e2013-01-15 13:40:23 +0800726 new_wsi->mode = LWS_CONNMODE_HTTP_SERVING;
Andy Greena41314f2011-05-23 10:00:03 +0100727
728 for (n = 0; n < WSI_TOKEN_COUNT; n++) {
729 new_wsi->utf8_token[n].token = NULL;
730 new_wsi->utf8_token[n].token_len = 0;
731 }
732
733 /*
734 * these can only be set once the protocol is known
735 * we set an unestablished connection's protocol pointer
736 * to the start of the supported list, so it can look
737 * for matching ones during the handshake
738 */
739 new_wsi->protocol = context->protocols;
740 new_wsi->user_space = NULL;
741
742 /*
743 * Default protocol is 76 / 00
744 * After 76, there's a header specified to inform which
745 * draft the client wants, when that's seen we modify
746 * the individual connection's spec revision accordingly
747 */
748 new_wsi->ietf_spec_revision = 0;
749
750 return new_wsi;
751}
752
Andy Greena41314f2011-05-23 10:00:03 +0100753
Andy Green9f990342011-02-12 11:57:45 +0000754/**
755 * libwebsocket_service_fd() - Service polled socket with something waiting
Peter Hinz56885f32011-03-02 22:03:47 +0000756 * @context: Websocket context
Andy Green9f990342011-02-12 11:57:45 +0000757 * @pollfd: The pollfd entry describing the socket fd and which events
Andy Green6ee372f2012-04-09 15:09:01 +0800758 * happened.
Andy Green9f990342011-02-12 11:57:45 +0000759 *
760 * This function closes any active connections and then frees the
761 * context. After calling this, any further use of the context is
762 * undefined.
763 */
764
765int
Peter Hinz56885f32011-03-02 22:03:47 +0000766libwebsocket_service_fd(struct libwebsocket_context *context,
Andy Green0d338332011-02-12 11:57:43 +0000767 struct pollfd *pollfd)
Andy Greenb45993c2010-12-18 15:13:50 +0000768{
Andy Green6ee372f2012-04-09 15:09:01 +0800769 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 1 +
770 MAX_BROADCAST_PAYLOAD + LWS_SEND_BUFFER_POST_PADDING];
Andy Greena71eafc2011-02-14 17:59:43 +0000771 struct libwebsocket *wsi;
Andy Green0d338332011-02-12 11:57:43 +0000772 struct libwebsocket *new_wsi;
Andy Greenb45993c2010-12-18 15:13:50 +0000773 int n;
Andy Green0d338332011-02-12 11:57:43 +0000774 int m;
Tobias Maiere8c9b562012-04-05 11:57:12 +0200775 ssize_t len;
Andy Green0d338332011-02-12 11:57:43 +0000776 int accept_fd;
777 unsigned int clilen;
778 struct sockaddr_in cli_addr;
Andy Greena71eafc2011-02-14 17:59:43 +0000779 struct timeval tv;
Andy Green2366b1c2011-03-06 13:15:31 +0000780 int more = 1;
Andy Green98a717c2011-03-06 13:14:15 +0000781 struct lws_tokens eff_buf;
Andy Green6c939552011-03-08 08:56:57 +0000782 int opt = 1;
Andy Green03674a62013-01-16 11:47:40 +0800783#ifndef LWS_NO_CLIENT
Andy Green76f61e72013-01-16 11:53:05 +0800784 extern int lws_client_socket_service(struct libwebsocket_context *context, struct libwebsocket *wsi, struct pollfd *pollfd);
Andy Green03674a62013-01-16 11:47:40 +0800785#endif
Andy Greena71eafc2011-02-14 17:59:43 +0000786 /*
787 * you can call us with pollfd = NULL to just allow the once-per-second
788 * global timeout checks; if less than a second since the last check
789 * it returns immediately then.
790 */
791
792 gettimeofday(&tv, NULL);
793
Peter Hinz56885f32011-03-02 22:03:47 +0000794 if (context->last_timeout_check_s != tv.tv_sec) {
795 context->last_timeout_check_s = tv.tv_sec;
Andy Greena71eafc2011-02-14 17:59:43 +0000796
797 /* global timeout check once per second */
798
Peter Hinz56885f32011-03-02 22:03:47 +0000799 for (n = 0; n < context->fds_count; n++) {
Andy Greendfb23042013-01-17 12:26:48 +0800800 struct libwebsocket *new_wsi = context->lws_lookup[context->fds[n].fd];
801 if (!new_wsi)
802 continue;
803 libwebsocket_service_timeout_check(context,
804 new_wsi, tv.tv_sec);
Andy Greena71eafc2011-02-14 17:59:43 +0000805 }
806 }
807
808 /* just here for timeout management? */
809
810 if (pollfd == NULL)
811 return 0;
812
813 /* no, here to service a socket descriptor */
814
Andy Green65b0e912013-01-16 07:59:47 +0800815 /*
816 * deal with listen service piggybacking
817 * every listen_service_modulo services of other fds, we
818 * sneak one in to service the listen socket if there's anything waiting
819 *
820 * To handle connection storms, as found in ab, if we previously saw a
821 * pending connection here, it causes us to check again next time.
822 */
823
824 if (context->listen_service_fd && pollfd->fd != context->listen_service_fd) {
825 context->listen_service_count++;
826 if (context->listen_service_extraseen ||
827 context->listen_service_count == context->listen_service_modulo) {
828 context->listen_service_count = 0;
829 m = 1;
830 if (context->listen_service_extraseen > 5)
831 m = 2;
832 while (m--) {
833 /* even with extpoll, we prepared this internal fds for listen */
834 n = poll(&context->fds[0], 1, 0);
835 if (n > 0) { /* there's a connection waiting for us */
836 libwebsocket_service_fd(context, &context->fds[0]);
837 context->listen_service_extraseen++;
838 } else {
839 if (context->listen_service_extraseen)
840 context->listen_service_extraseen--;
841 break;
842 }
843 }
844 }
845
846 }
847
848 /* okay, what we came here to do... */
849
Andy Greendfb23042013-01-17 12:26:48 +0800850 wsi = context->lws_lookup[pollfd->fd];
Andy Greend280b6e2013-01-15 13:40:23 +0800851 if (wsi == NULL) {
Andy Greendfb23042013-01-17 12:26:48 +0800852 if (pollfd->fd > 11)
853 lwsl_err("unexpected NULL wsi fd=%d fds_count=%d\n", pollfd->fd, context->fds_count);
Andy Greenfa3f4052012-10-07 20:40:35 +0800854 return 0;
Andy Greend280b6e2013-01-15 13:40:23 +0800855 }
Andy Green8f037e42010-12-19 22:13:26 +0000856
Andy Green0d338332011-02-12 11:57:43 +0000857 switch (wsi->mode) {
Andy Greend280b6e2013-01-15 13:40:23 +0800858
859 case LWS_CONNMODE_HTTP_SERVING:
860
861 /* handle http headers coming in */
862
863 /* any incoming data ready? */
864
865 if (pollfd->revents & POLLIN) {
866
867 #ifdef LWS_OPENSSL_SUPPORT
868 if (wsi->ssl)
869 len = SSL_read(wsi->ssl, buf, sizeof buf);
870 else
871 #endif
872 len = recv(pollfd->fd, buf, sizeof buf, 0);
873
874 if (len < 0) {
875 lwsl_debug("Socket read returned %d\n", len);
876 if (errno != EINTR && errno != EAGAIN)
877 libwebsocket_close_and_free_session(context,
878 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Green040d2ef2013-01-16 13:40:43 +0800879 return 0;
Andy Greend280b6e2013-01-15 13:40:23 +0800880 }
881 if (!len) {
882 libwebsocket_close_and_free_session(context, wsi,
883 LWS_CLOSE_STATUS_NOSTATUS);
884 return 0;
885 }
886
887 n = libwebsocket_read(context, wsi, buf, len);
888 if (n < 0)
889 /* we closed wsi */
Andy Green040d2ef2013-01-16 13:40:43 +0800890 return 0;
Andy Greend280b6e2013-01-15 13:40:23 +0800891 }
892
893 /* this handles POLLOUT for http serving fragments */
894
895 if (!(pollfd->revents & POLLOUT))
896 break;
897
898 /* one shot */
899 pollfd->events &= ~POLLOUT;
900
901 if (wsi->state != WSI_STATE_HTTP_ISSUING_FILE)
902 break;
903
904 if (libwebsockets_serve_http_file_fragment(context, wsi) < 0)
905 libwebsocket_close_and_free_session(context, wsi,
906 LWS_CLOSE_STATUS_NOSTATUS);
907 else
908 if (wsi->state == WSI_STATE_HTTP && wsi->protocol->callback)
Andy Green706961d2013-01-17 16:50:35 +0800909 if (user_callback_handle_rxflow(wsi->protocol->callback, context, wsi, LWS_CALLBACK_HTTP_FILE_COMPLETION, wsi->user_space,
Andy Greend280b6e2013-01-15 13:40:23 +0800910 wsi->filepath, wsi->filepos))
911 libwebsocket_close_and_free_session(context, wsi, LWS_CLOSE_STATUS_NOSTATUS);
912 break;
913
Andy Green0d338332011-02-12 11:57:43 +0000914 case LWS_CONNMODE_SERVER_LISTENER:
915
916 /* pollin means a client has connected to us then */
917
David Galeanob88e0962013-01-10 09:54:10 +0800918 if (!(pollfd->revents & POLLIN))
Andy Green0d338332011-02-12 11:57:43 +0000919 break;
920
921 /* listen socket got an unencrypted connection... */
922
923 clilen = sizeof(cli_addr);
924 accept_fd = accept(pollfd->fd, (struct sockaddr *)&cli_addr,
925 &clilen);
926 if (accept_fd < 0) {
Andy Green1023d2b2013-01-16 11:43:53 +0800927 lwsl_warn("ERROR on accept: %s\n", strerror(errno));
928 break;
Andy Green0d338332011-02-12 11:57:43 +0000929 }
930
Andy Green6c939552011-03-08 08:56:57 +0000931 /* Disable Nagle */
932 opt = 1;
Andy Green6ee372f2012-04-09 15:09:01 +0800933 setsockopt(accept_fd, IPPROTO_TCP, TCP_NODELAY,
934 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +0000935
Andy Green07034092011-02-13 08:37:12 +0000936 /*
937 * look at who we connected to and give user code a chance
938 * to reject based on client IP. There's no protocol selected
939 * yet so we issue this to protocols[0]
940 */
941
Peter Hinz56885f32011-03-02 22:03:47 +0000942 if ((context->protocols[0].callback)(context, wsi,
Andy Green07034092011-02-13 08:37:12 +0000943 LWS_CALLBACK_FILTER_NETWORK_CONNECTION,
Andy Green6ee372f2012-04-09 15:09:01 +0800944 (void *)(long)accept_fd, NULL, 0)) {
Andy Green43db0452013-01-10 19:50:35 +0800945 lwsl_debug("Callback denied network connection\n");
Andy Green3fc2c652013-01-14 15:35:02 +0800946 compatible_close(accept_fd);
Andy Green07034092011-02-13 08:37:12 +0000947 break;
948 }
949
Andy Greena41314f2011-05-23 10:00:03 +0100950 new_wsi = libwebsocket_create_new_server_wsi(context);
David Galeanoed3c8402013-01-10 10:45:24 +0800951 if (new_wsi == NULL) {
Andy Green3fc2c652013-01-14 15:35:02 +0800952 compatible_close(accept_fd);
Andy Green0d338332011-02-12 11:57:43 +0000953 break;
David Galeanoed3c8402013-01-10 10:45:24 +0800954 }
Andy Green0d338332011-02-12 11:57:43 +0000955
Andy Green0d338332011-02-12 11:57:43 +0000956 new_wsi->sock = accept_fd;
Andy Greena41314f2011-05-23 10:00:03 +0100957
Andy Green0d338332011-02-12 11:57:43 +0000958
959#ifdef LWS_OPENSSL_SUPPORT
960 new_wsi->ssl = NULL;
Andy Green0d338332011-02-12 11:57:43 +0000961
Peter Hinz56885f32011-03-02 22:03:47 +0000962 if (context->use_ssl) {
Andy Green0d338332011-02-12 11:57:43 +0000963
Peter Hinz56885f32011-03-02 22:03:47 +0000964 new_wsi->ssl = SSL_new(context->ssl_ctx);
Andy Green0d338332011-02-12 11:57:43 +0000965 if (new_wsi->ssl == NULL) {
Andy Green43db0452013-01-10 19:50:35 +0800966 lwsl_err("SSL_new failed: %s\n",
Andy Green0d338332011-02-12 11:57:43 +0000967 ERR_error_string(SSL_get_error(
968 new_wsi->ssl, 0), NULL));
Andy Green1f9bf522011-02-14 21:14:37 +0000969 libwebsockets_decode_ssl_error();
Andy Green0d338332011-02-12 11:57:43 +0000970 free(new_wsi);
Andy Green3fc2c652013-01-14 15:35:02 +0800971 compatible_close(accept_fd);
Andy Green0d338332011-02-12 11:57:43 +0000972 break;
973 }
974
Larry Hayes455d1fe2013-01-15 01:03:58 +0800975 SSL_set_ex_data(new_wsi->ssl,
976 openssl_websocket_private_data_index, context);
977
Andy Green0d338332011-02-12 11:57:43 +0000978 SSL_set_fd(new_wsi->ssl, accept_fd);
979
980 n = SSL_accept(new_wsi->ssl);
981 if (n != 1) {
982 /*
983 * browsers seem to probe with various
984 * ssl params which fail then retry
985 * and succeed
986 */
Andy Green43db0452013-01-10 19:50:35 +0800987 lwsl_debug("SSL_accept failed skt %u: %s\n",
Andy Green0d338332011-02-12 11:57:43 +0000988 pollfd->fd,
989 ERR_error_string(SSL_get_error(
990 new_wsi->ssl, n), NULL));
991 SSL_free(
992 new_wsi->ssl);
993 free(new_wsi);
Andy Green3fc2c652013-01-14 15:35:02 +0800994 compatible_close(accept_fd);
Andy Green0d338332011-02-12 11:57:43 +0000995 break;
996 }
Andy Green6ee372f2012-04-09 15:09:01 +0800997
Andy Green43db0452013-01-10 19:50:35 +0800998 lwsl_debug("accepted new SSL conn "
Andy Green0d338332011-02-12 11:57:43 +0000999 "port %u on fd=%d SSL ver %s\n",
1000 ntohs(cli_addr.sin_port), accept_fd,
1001 SSL_get_version(new_wsi->ssl));
1002
1003 } else
1004#endif
Andy Green43db0452013-01-10 19:50:35 +08001005 lwsl_debug("accepted new conn port %u on fd=%d\n",
Andy Green0d338332011-02-12 11:57:43 +00001006 ntohs(cli_addr.sin_port), accept_fd);
1007
Andy Greendfb23042013-01-17 12:26:48 +08001008 insert_wsi_socket_into_fds(context, new_wsi);
Andy Green0d338332011-02-12 11:57:43 +00001009 break;
1010
1011 case LWS_CONNMODE_BROADCAST_PROXY_LISTENER:
1012
1013 /* as we are listening, POLLIN means accept() is needed */
Andy Green6ee372f2012-04-09 15:09:01 +08001014
David Galeanob88e0962013-01-10 09:54:10 +08001015 if (!(pollfd->revents & POLLIN))
Andy Green0d338332011-02-12 11:57:43 +00001016 break;
1017
1018 /* listen socket got an unencrypted connection... */
1019
1020 clilen = sizeof(cli_addr);
1021 accept_fd = accept(pollfd->fd, (struct sockaddr *)&cli_addr,
1022 &clilen);
1023 if (accept_fd < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001024 lwsl_warn("ERROR on accept %d\n", accept_fd);
Andy Green040d2ef2013-01-16 13:40:43 +08001025 return 0;
Andy Green0d338332011-02-12 11:57:43 +00001026 }
1027
Andy Green0d338332011-02-12 11:57:43 +00001028 /* create a dummy wsi for the connection and add it */
1029
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001030 new_wsi = (struct libwebsocket *)malloc(sizeof(struct libwebsocket));
Andy Green41c58032013-01-12 13:21:08 +08001031 if (new_wsi == NULL) {
1032 lwsl_err("Out of mem\n");
1033 goto bail_prox_listener;
1034 }
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001035 memset(new_wsi, 0, sizeof (struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00001036 new_wsi->sock = accept_fd;
1037 new_wsi->mode = LWS_CONNMODE_BROADCAST_PROXY;
1038 new_wsi->state = WSI_STATE_ESTABLISHED;
Andy Greend6e09112011-03-05 16:12:15 +00001039 new_wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00001040 /* note which protocol we are proxying */
1041 new_wsi->protocol_index_for_broadcast_proxy =
1042 wsi->protocol_index_for_broadcast_proxy;
Andy Green0d338332011-02-12 11:57:43 +00001043
Andy Greendfb23042013-01-17 12:26:48 +08001044 insert_wsi_socket_into_fds(context, new_wsi);
Andy Green0d338332011-02-12 11:57:43 +00001045 break;
1046
Andy Green41c58032013-01-12 13:21:08 +08001047bail_prox_listener:
Andy Green3fc2c652013-01-14 15:35:02 +08001048 compatible_close(accept_fd);
Andy Green41c58032013-01-12 13:21:08 +08001049 break;
1050
Andy Green0d338332011-02-12 11:57:43 +00001051 case LWS_CONNMODE_BROADCAST_PROXY:
Andy Green8f037e42010-12-19 22:13:26 +00001052
Andy Greenb45993c2010-12-18 15:13:50 +00001053 /* handle session socket closed */
Andy Green8f037e42010-12-19 22:13:26 +00001054
Andy Green0d338332011-02-12 11:57:43 +00001055 if (pollfd->revents & (POLLERR | POLLHUP)) {
Andy Green8f037e42010-12-19 22:13:26 +00001056
Andy Green43db0452013-01-10 19:50:35 +08001057 lwsl_debug("Session Socket %p (fd=%d) dead\n",
Timothy J Fontaineb86d64e2011-02-14 17:55:27 +00001058 (void *)wsi, pollfd->fd);
Andy Greenb45993c2010-12-18 15:13:50 +00001059
Peter Hinz56885f32011-03-02 22:03:47 +00001060 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001061 LWS_CLOSE_STATUS_NORMAL);
Andy Green040d2ef2013-01-16 13:40:43 +08001062 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +00001063 }
Andy Green8f037e42010-12-19 22:13:26 +00001064
Andy Green3b84c002011-03-06 13:14:42 +00001065 /*
1066 * either extension code with stuff to spill, or the user code,
1067 * requested a callback when it was OK to write
1068 */
Andy Green90c7cbc2011-01-27 06:26:52 +00001069
Andy Green3b84c002011-03-06 13:14:42 +00001070 if (pollfd->revents & POLLOUT)
Andy Green6ee372f2012-04-09 15:09:01 +08001071 if (lws_handle_POLLOUT_event(context, wsi,
1072 pollfd) < 0) {
1073 libwebsocket_close_and_free_session(
1074 context, wsi, LWS_CLOSE_STATUS_NORMAL);
Andy Green040d2ef2013-01-16 13:40:43 +08001075 return 0;
Andy Green3b84c002011-03-06 13:14:42 +00001076 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001077
Andy Greenb45993c2010-12-18 15:13:50 +00001078 /* any incoming data ready? */
1079
Andy Green0d338332011-02-12 11:57:43 +00001080 if (!(pollfd->revents & POLLIN))
1081 break;
Andy Greenb45993c2010-12-18 15:13:50 +00001082
Andy Green0d338332011-02-12 11:57:43 +00001083 /* get the issued broadcast payload from the socket */
Andy Greenb45993c2010-12-18 15:13:50 +00001084
Andy Green0d338332011-02-12 11:57:43 +00001085 len = read(pollfd->fd, buf + LWS_SEND_BUFFER_PRE_PADDING,
1086 MAX_BROADCAST_PAYLOAD);
1087 if (len < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001088 lwsl_err("Error reading broadcast payload\n");
Andy Green4b6fbe12011-02-14 08:03:48 +00001089 break;
Andy Green0d338332011-02-12 11:57:43 +00001090 }
Andy Greenb45993c2010-12-18 15:13:50 +00001091
Andy Green0d338332011-02-12 11:57:43 +00001092 /* broadcast it to all guys with this protocol index */
Andy Green8f037e42010-12-19 22:13:26 +00001093
Andy Greendfb23042013-01-17 12:26:48 +08001094 for (n = 0; n < context->fds_count; n++) {
Andy Green8f037e42010-12-19 22:13:26 +00001095
Andy Greendfb23042013-01-17 12:26:48 +08001096 new_wsi = context->lws_lookup[context->fds[n].fd];
1097 if (new_wsi == NULL)
1098 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00001099
Andy Greendfb23042013-01-17 12:26:48 +08001100 /* only to clients we are serving to */
Andy Greenb45993c2010-12-18 15:13:50 +00001101
Andy Greendfb23042013-01-17 12:26:48 +08001102 if (new_wsi->mode != LWS_CONNMODE_WS_SERVING)
1103 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00001104
Andy Greendfb23042013-01-17 12:26:48 +08001105 /*
1106 * never broadcast to non-established
1107 * connection
1108 */
Andy Greenb45993c2010-12-18 15:13:50 +00001109
Andy Greendfb23042013-01-17 12:26:48 +08001110 if (new_wsi->state != WSI_STATE_ESTABLISHED)
1111 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00001112
Andy Greendfb23042013-01-17 12:26:48 +08001113 /*
1114 * only broadcast to connections using
1115 * the requested protocol
1116 */
Andy Green4739e5c2011-01-22 12:51:57 +00001117
Andy Greendfb23042013-01-17 12:26:48 +08001118 if (new_wsi->protocol->protocol_index !=
1119 wsi->protocol_index_for_broadcast_proxy)
1120 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00001121
Andy Greendfb23042013-01-17 12:26:48 +08001122 /* broadcast it to this connection */
Andy Greenb45993c2010-12-18 15:13:50 +00001123
Andy Green706961d2013-01-17 16:50:35 +08001124 user_callback_handle_rxflow(new_wsi->protocol->callback, context, new_wsi,
Andy Greendfb23042013-01-17 12:26:48 +08001125 LWS_CALLBACK_BROADCAST,
1126 new_wsi->user_space,
1127 buf + LWS_SEND_BUFFER_PRE_PADDING, len);
Andy Green0d338332011-02-12 11:57:43 +00001128 }
1129 break;
Andy Greenb45993c2010-12-18 15:13:50 +00001130
Andy Greenbe93fef2011-02-14 20:25:43 +00001131
Andy Green0d338332011-02-12 11:57:43 +00001132 case LWS_CONNMODE_WS_SERVING:
1133 case LWS_CONNMODE_WS_CLIENT:
1134
1135 /* handle session socket closed */
1136
1137 if (pollfd->revents & (POLLERR | POLLHUP)) {
1138
Andy Green43db0452013-01-10 19:50:35 +08001139 lwsl_debug("Session Socket %p (fd=%d) dead\n",
Andy Green0d338332011-02-12 11:57:43 +00001140 (void *)wsi, pollfd->fd);
1141
Peter Hinz56885f32011-03-02 22:03:47 +00001142 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001143 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green040d2ef2013-01-16 13:40:43 +08001144 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +00001145 }
1146
Andy Green0d338332011-02-12 11:57:43 +00001147 /* the guy requested a callback when it was OK to write */
1148
Andy Greenda527df2011-03-07 07:08:12 +00001149 if ((pollfd->revents & POLLOUT) &&
1150 wsi->state == WSI_STATE_ESTABLISHED)
1151 if (lws_handle_POLLOUT_event(context, wsi,
1152 pollfd) < 0) {
1153 libwebsocket_close_and_free_session(
1154 context, wsi, LWS_CLOSE_STATUS_NORMAL);
Andy Green040d2ef2013-01-16 13:40:43 +08001155 return 0;
Andy Green3b84c002011-03-06 13:14:42 +00001156 }
Andy Green0d338332011-02-12 11:57:43 +00001157
Andy Green0d338332011-02-12 11:57:43 +00001158
1159 /* any incoming data ready? */
1160
1161 if (!(pollfd->revents & POLLIN))
1162 break;
1163
Andy Greenb45993c2010-12-18 15:13:50 +00001164#ifdef LWS_OPENSSL_SUPPORT
David Galeano7ffbe1b2013-01-10 10:35:32 +08001165read_pending:
Andy Green0d338332011-02-12 11:57:43 +00001166 if (wsi->ssl)
Andy Green98a717c2011-03-06 13:14:15 +00001167 eff_buf.token_len = SSL_read(wsi->ssl, buf, sizeof buf);
Andy Greenb45993c2010-12-18 15:13:50 +00001168 else
1169#endif
Andy Green98a717c2011-03-06 13:14:15 +00001170 eff_buf.token_len =
Andy Green72c34322011-04-16 10:46:21 +01001171 recv(pollfd->fd, buf, sizeof buf, 0);
Andy Greenb45993c2010-12-18 15:13:50 +00001172
Andy Green98a717c2011-03-06 13:14:15 +00001173 if (eff_buf.token_len < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001174 lwsl_debug("Socket read returned %d\n",
Andy Green98a717c2011-03-06 13:14:15 +00001175 eff_buf.token_len);
Alon Levydc93b7f2012-10-19 11:21:57 +02001176 if (errno != EINTR && errno != EAGAIN)
Andy Green6ee372f2012-04-09 15:09:01 +08001177 libwebsocket_close_and_free_session(context,
1178 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Green040d2ef2013-01-16 13:40:43 +08001179 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +00001180 }
Andy Green98a717c2011-03-06 13:14:15 +00001181 if (!eff_buf.token_len) {
Peter Hinz56885f32011-03-02 22:03:47 +00001182 libwebsocket_close_and_free_session(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001183 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenfa3f4052012-10-07 20:40:35 +08001184 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +00001185 }
1186
Andy Green98a717c2011-03-06 13:14:15 +00001187 /*
1188 * give any active extensions a chance to munge the buffer
1189 * before parse. We pass in a pointer to an lws_tokens struct
1190 * prepared with the default buffer and content length that's in
1191 * there. Rather than rewrite the default buffer, extensions
1192 * that expect to grow the buffer can adapt .token to
1193 * point to their own per-connection buffer in the extension
1194 * user allocation. By default with no extensions or no
1195 * extension callback handling, just the normal input buffer is
1196 * used then so it is efficient.
1197 */
Andy Greenb45993c2010-12-18 15:13:50 +00001198
Andy Green98a717c2011-03-06 13:14:15 +00001199 eff_buf.token = (char *)buf;
Andy Greenb45993c2010-12-18 15:13:50 +00001200
Andy Green98a717c2011-03-06 13:14:15 +00001201 more = 1;
1202 while (more) {
Andy Green0d338332011-02-12 11:57:43 +00001203
Andy Green98a717c2011-03-06 13:14:15 +00001204 more = 0;
1205
1206 for (n = 0; n < wsi->count_active_extensions; n++) {
Andy Green46c2ea02011-03-22 09:04:01 +00001207 m = wsi->active_extensions[n]->callback(context,
1208 wsi->active_extensions[n], wsi,
Andy Green98a717c2011-03-06 13:14:15 +00001209 LWS_EXT_CALLBACK_PACKET_RX_PREPARSE,
Andy Green46c2ea02011-03-22 09:04:01 +00001210 wsi->active_extensions_user[n],
1211 &eff_buf, 0);
Andy Green98a717c2011-03-06 13:14:15 +00001212 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001213 lwsl_ext(
Andy Green6ee372f2012-04-09 15:09:01 +08001214 "Extension reports fatal error\n");
1215 libwebsocket_close_and_free_session(
1216 context, wsi,
1217 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green040d2ef2013-01-16 13:40:43 +08001218 return 0;
Andy Green98a717c2011-03-06 13:14:15 +00001219 }
1220 if (m)
1221 more = 1;
1222 }
1223
1224 /* service incoming data */
1225
1226 if (eff_buf.token_len) {
1227 n = libwebsocket_read(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001228 (unsigned char *)eff_buf.token,
1229 eff_buf.token_len);
Andy Green98a717c2011-03-06 13:14:15 +00001230 if (n < 0)
1231 /* we closed wsi */
Andy Green040d2ef2013-01-16 13:40:43 +08001232 return 0;
Andy Green98a717c2011-03-06 13:14:15 +00001233 }
1234
1235 eff_buf.token = NULL;
1236 eff_buf.token_len = 0;
1237 }
David Galeano7ffbe1b2013-01-10 10:35:32 +08001238
1239#ifdef LWS_OPENSSL_SUPPORT
1240 if (wsi->ssl && SSL_pending(wsi->ssl))
1241 goto read_pending;
1242#endif
Andy Green98a717c2011-03-06 13:14:15 +00001243 break;
Andy Green76f61e72013-01-16 11:53:05 +08001244
1245 default:
Andy Green03674a62013-01-16 11:47:40 +08001246#ifdef LWS_NO_CLIENT
1247 break;
1248#else
Andy Green76f61e72013-01-16 11:53:05 +08001249 return lws_client_socket_service(context, wsi, pollfd);
Andy Green03674a62013-01-16 11:47:40 +08001250#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001251 }
1252
1253 return 0;
1254}
1255
Andy Green0d338332011-02-12 11:57:43 +00001256
Andy Green6964bb52011-01-23 16:50:33 +00001257/**
1258 * libwebsocket_context_destroy() - Destroy the websocket context
Peter Hinz56885f32011-03-02 22:03:47 +00001259 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001260 *
1261 * This function closes any active connections and then frees the
1262 * context. After calling this, any further use of the context is
1263 * undefined.
1264 */
1265void
Peter Hinz56885f32011-03-02 22:03:47 +00001266libwebsocket_context_destroy(struct libwebsocket_context *context)
Andy Green6964bb52011-01-23 16:50:33 +00001267{
Andy Green0d338332011-02-12 11:57:43 +00001268 int n;
1269 int m;
Andy Greena41314f2011-05-23 10:00:03 +01001270 struct libwebsocket_extension *ext;
Andy Green6964bb52011-01-23 16:50:33 +00001271
Andy Greendfb23042013-01-17 12:26:48 +08001272 for (n = 0; n < context->fds_count; n++) {
1273 struct libwebsocket *wsi = context->lws_lookup[context->fds[n].fd];
1274 libwebsocket_close_and_free_session(context,
1275 wsi, LWS_CLOSE_STATUS_GOINGAWAY);
1276 }
Andy Green6964bb52011-01-23 16:50:33 +00001277
Andy Greena41314f2011-05-23 10:00:03 +01001278 /*
1279 * give all extensions a chance to clean up any per-context
1280 * allocations they might have made
1281 */
1282
1283 ext = context->extensions;
1284 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_DESTRUCT;
1285 if (context->listen_port)
1286 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_DESTRUCT;
Paulo Roberto Urio1f680ab2012-06-04 08:40:28 +08001287 while (ext && ext->callback) {
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001288 ext->callback(context, ext, NULL, (enum libwebsocket_extension_callback_reasons)m, NULL, NULL, 0);
Andy Greena41314f2011-05-23 10:00:03 +01001289 ext++;
1290 }
1291
Peter Hinz56885f32011-03-02 22:03:47 +00001292#ifdef WIN32
1293#else
1294 close(context->fd_random);
Andy Green6964bb52011-01-23 16:50:33 +00001295#endif
1296
Peter Hinz56885f32011-03-02 22:03:47 +00001297#ifdef LWS_OPENSSL_SUPPORT
1298 if (context->ssl_ctx)
1299 SSL_CTX_free(context->ssl_ctx);
1300 if (context->ssl_client_ctx)
1301 SSL_CTX_free(context->ssl_client_ctx);
1302#endif
1303
1304 free(context);
1305
1306#ifdef WIN32
1307 WSACleanup();
1308#endif
Andy Green6964bb52011-01-23 16:50:33 +00001309}
1310
Alon Levy0291eb32012-10-19 11:21:56 +02001311LWS_EXTERN void *
1312libwebsocket_context_user(struct libwebsocket_context *context)
1313{
1314 return context->user_space;
1315}
1316
Andy Green6964bb52011-01-23 16:50:33 +00001317/**
1318 * libwebsocket_service() - Service any pending websocket activity
Peter Hinz56885f32011-03-02 22:03:47 +00001319 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001320 * @timeout_ms: Timeout for poll; 0 means return immediately if nothing needed
1321 * service otherwise block and service immediately, returning
1322 * after the timeout if nothing needed service.
1323 *
1324 * This function deals with any pending websocket traffic, for three
1325 * kinds of event. It handles these events on both server and client
1326 * types of connection the same.
1327 *
1328 * 1) Accept new connections to our context's server
1329 *
1330 * 2) Perform pending broadcast writes initiated from other forked
1331 * processes (effectively serializing asynchronous broadcasts)
1332 *
1333 * 3) Call the receive callback for incoming frame data received by
1334 * server or client connections.
1335 *
1336 * You need to call this service function periodically to all the above
1337 * functions to happen; if your application is single-threaded you can
1338 * just call it in your main event loop.
1339 *
1340 * Alternatively you can fork a new process that asynchronously handles
1341 * calling this service in a loop. In that case you are happy if this
1342 * call blocks your thread until it needs to take care of something and
1343 * would call it with a large nonzero timeout. Your loop then takes no
1344 * CPU while there is nothing happening.
1345 *
1346 * If you are calling it in a single-threaded app, you don't want it to
1347 * wait around blocking other things in your loop from happening, so you
1348 * would call it with a timeout_ms of 0, so it returns immediately if
1349 * nothing is pending, or as soon as it services whatever was pending.
1350 */
1351
Andy Greenb45993c2010-12-18 15:13:50 +00001352
Andy Greene92cd172011-01-19 13:11:55 +00001353int
Peter Hinz56885f32011-03-02 22:03:47 +00001354libwebsocket_service(struct libwebsocket_context *context, int timeout_ms)
Andy Greene92cd172011-01-19 13:11:55 +00001355{
1356 int n;
Andy Greene92cd172011-01-19 13:11:55 +00001357
1358 /* stay dead once we are dead */
1359
Peter Hinz56885f32011-03-02 22:03:47 +00001360 if (context == NULL)
Andy Greene92cd172011-01-19 13:11:55 +00001361 return 1;
1362
Andy Green0d338332011-02-12 11:57:43 +00001363 /* wait for something to need service */
Andy Green4739e5c2011-01-22 12:51:57 +00001364
Peter Hinz56885f32011-03-02 22:03:47 +00001365 n = poll(context->fds, context->fds_count, timeout_ms);
Andy Green3221f922011-02-12 13:14:11 +00001366 if (n == 0) /* poll timeout */
1367 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001368
Andy Greendfb23042013-01-17 12:26:48 +08001369 if (n < 0)
Andy Green3928f612012-07-20 12:58:38 +08001370 return -1;
Andy Greene92cd172011-01-19 13:11:55 +00001371
Andy Greendfb23042013-01-17 12:26:48 +08001372 /* any socket with events to service? */
Andy Greene92cd172011-01-19 13:11:55 +00001373
Peter Hinz56885f32011-03-02 22:03:47 +00001374 for (n = 0; n < context->fds_count; n++)
1375 if (context->fds[n].revents)
Andy Green3928f612012-07-20 12:58:38 +08001376 if (libwebsocket_service_fd(context,
1377 &context->fds[n]) < 0)
1378 return -1;
Andy Greene92cd172011-01-19 13:11:55 +00001379 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001380}
1381
Andy Greena41314f2011-05-23 10:00:03 +01001382int
1383lws_any_extension_handled(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001384 struct libwebsocket *wsi,
1385 enum libwebsocket_extension_callback_reasons r,
Andy Greena41314f2011-05-23 10:00:03 +01001386 void *v, size_t len)
1387{
1388 int n;
1389 int handled = 0;
1390
1391 /* maybe an extension will take care of it for us */
1392
1393 for (n = 0; n < wsi->count_active_extensions && !handled; n++) {
1394 if (!wsi->active_extensions[n]->callback)
1395 continue;
1396
1397 handled |= wsi->active_extensions[n]->callback(context,
1398 wsi->active_extensions[n], wsi,
1399 r, wsi->active_extensions_user[n], v, len);
1400 }
1401
1402 return handled;
1403}
1404
1405
1406void *
1407lws_get_extension_user_matching_ext(struct libwebsocket *wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001408 struct libwebsocket_extension *ext)
Andy Greena41314f2011-05-23 10:00:03 +01001409{
1410 int n = 0;
1411
Andy Green68b45042011-05-25 21:41:57 +01001412 if (wsi == NULL)
1413 return NULL;
1414
Andy Greena41314f2011-05-23 10:00:03 +01001415 while (n < wsi->count_active_extensions) {
1416 if (wsi->active_extensions[n] != ext) {
1417 n++;
1418 continue;
1419 }
1420 return wsi->active_extensions_user[n];
1421 }
1422
1423 return NULL;
1424}
1425
Andy Green90c7cbc2011-01-27 06:26:52 +00001426/**
1427 * libwebsocket_callback_on_writable() - Request a callback when this socket
1428 * becomes able to be written to without
1429 * blocking
Andy Green32375b72011-02-19 08:32:53 +00001430 *
Peter Hinz56885f32011-03-02 22:03:47 +00001431 * @context: libwebsockets context
Andy Green90c7cbc2011-01-27 06:26:52 +00001432 * @wsi: Websocket connection instance to get callback for
1433 */
1434
1435int
Peter Hinz56885f32011-03-02 22:03:47 +00001436libwebsocket_callback_on_writable(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001437 struct libwebsocket *wsi)
Andy Green90c7cbc2011-01-27 06:26:52 +00001438{
Andy Green90c7cbc2011-01-27 06:26:52 +00001439 int n;
Andy Greena41314f2011-05-23 10:00:03 +01001440 int handled = 0;
1441
1442 /* maybe an extension will take care of it for us */
1443
1444 for (n = 0; n < wsi->count_active_extensions; n++) {
1445 if (!wsi->active_extensions[n]->callback)
1446 continue;
1447
1448 handled |= wsi->active_extensions[n]->callback(context,
1449 wsi->active_extensions[n], wsi,
1450 LWS_EXT_CALLBACK_REQUEST_ON_WRITEABLE,
1451 wsi->active_extensions_user[n], NULL, 0);
1452 }
1453
1454 if (handled)
1455 return 1;
Andy Green90c7cbc2011-01-27 06:26:52 +00001456
Andy Greendfb23042013-01-17 12:26:48 +08001457 if (wsi->position_in_fds_table < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001458 lwsl_err("libwebsocket_callback_on_writable: "
Andy Green6ee372f2012-04-09 15:09:01 +08001459 "failed to find socket %d\n", wsi->sock);
Andy Greendfb23042013-01-17 12:26:48 +08001460 return -1;
1461 }
1462
1463 context->fds[wsi->position_in_fds_table].events |= POLLOUT;
Andy Greena41314f2011-05-23 10:00:03 +01001464
Andy Green3221f922011-02-12 13:14:11 +00001465 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001466 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001467 LWS_CALLBACK_SET_MODE_POLL_FD,
1468 (void *)(long)wsi->sock, NULL, POLLOUT);
1469
Andy Green90c7cbc2011-01-27 06:26:52 +00001470 return 1;
1471}
1472
1473/**
1474 * libwebsocket_callback_on_writable_all_protocol() - Request a callback for
1475 * all connections using the given protocol when it
1476 * becomes possible to write to each socket without
1477 * blocking in turn.
1478 *
1479 * @protocol: Protocol whose connections will get callbacks
1480 */
1481
1482int
1483libwebsocket_callback_on_writable_all_protocol(
1484 const struct libwebsocket_protocols *protocol)
1485{
Peter Hinz56885f32011-03-02 22:03:47 +00001486 struct libwebsocket_context *context = protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001487 int n;
Andy Green0d338332011-02-12 11:57:43 +00001488 struct libwebsocket *wsi;
Andy Green90c7cbc2011-01-27 06:26:52 +00001489
Andy Greendfb23042013-01-17 12:26:48 +08001490 for (n = 0; n < context->fds_count; n++) {
1491 wsi = context->lws_lookup[context->fds[n].fd];
1492 if (!wsi)
1493 continue;
1494 if (wsi->protocol == protocol)
1495 libwebsocket_callback_on_writable(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001496 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001497
1498 return 0;
1499}
1500
Andy Greenbe93fef2011-02-14 20:25:43 +00001501/**
1502 * libwebsocket_set_timeout() - marks the wsi as subject to a timeout
1503 *
1504 * You will not need this unless you are doing something special
1505 *
1506 * @wsi: Websocket connection instance
1507 * @reason: timeout reason
1508 * @secs: how many seconds
1509 */
1510
1511void
1512libwebsocket_set_timeout(struct libwebsocket *wsi,
1513 enum pending_timeout reason, int secs)
1514{
1515 struct timeval tv;
1516
1517 gettimeofday(&tv, NULL);
1518
1519 wsi->pending_timeout_limit = tv.tv_sec + secs;
1520 wsi->pending_timeout = reason;
1521}
1522
Andy Greena6cbece2011-01-27 20:06:03 +00001523
1524/**
1525 * libwebsocket_get_socket_fd() - returns the socket file descriptor
1526 *
1527 * You will not need this unless you are doing something special
1528 *
1529 * @wsi: Websocket connection instance
1530 */
1531
1532int
1533libwebsocket_get_socket_fd(struct libwebsocket *wsi)
1534{
1535 return wsi->sock;
1536}
1537
Andy Green706961d2013-01-17 16:50:35 +08001538
1539int
1540_libwebsocket_rx_flow_control(struct libwebsocket *wsi)
1541{
1542 struct libwebsocket_context *context = wsi->protocol->owning_server;
1543 int n;
1544
1545 if (!(wsi->rxflow_change_to & 2))
1546 return 0;
1547
1548 wsi->rxflow_change_to &= ~2;
1549
1550 lwsl_info("rxflow: wsi %p change_to %d\n", wsi, wsi->rxflow_change_to);
1551
1552 /* if we're letting it come again, did we interrupt anything? */
1553 if ((wsi->rxflow_change_to & 1) && wsi->rxflow_buffer) {
1554 n = libwebsocket_interpret_incoming_packet(wsi, NULL, 0);
1555 if (n < 0) {
1556 libwebsocket_close_and_free_session(context, wsi, LWS_CLOSE_STATUS_NOSTATUS);
1557 return -1;
1558 }
1559 if (n)
1560 /* oh he stuck again, do nothing */
1561 return 0;
1562 }
1563
1564 if (wsi->rxflow_change_to & 1)
1565 context->fds[wsi->position_in_fds_table].events |= POLLIN;
1566 else
1567 context->fds[wsi->position_in_fds_table].events &= ~POLLIN;
1568
1569 if (wsi->rxflow_change_to & 1)
1570 /* external POLL support via protocol 0 */
1571 context->protocols[0].callback(context, wsi,
1572 LWS_CALLBACK_SET_MODE_POLL_FD,
1573 (void *)(long)wsi->sock, NULL, POLLIN);
1574 else
1575 /* external POLL support via protocol 0 */
1576 context->protocols[0].callback(context, wsi,
1577 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
1578 (void *)(long)wsi->sock, NULL, POLLIN);
1579
1580 return 1;
1581}
1582
Andy Green90c7cbc2011-01-27 06:26:52 +00001583/**
1584 * libwebsocket_rx_flow_control() - Enable and disable socket servicing for
1585 * receieved packets.
1586 *
1587 * If the output side of a server process becomes choked, this allows flow
1588 * control for the input side.
1589 *
1590 * @wsi: Websocket connection instance to get callback for
1591 * @enable: 0 = disable read servicing for this connection, 1 = enable
1592 */
1593
1594int
1595libwebsocket_rx_flow_control(struct libwebsocket *wsi, int enable)
1596{
Andy Green706961d2013-01-17 16:50:35 +08001597 wsi->rxflow_change_to = 2 | !!enable;
Andy Green90c7cbc2011-01-27 06:26:52 +00001598
Andy Green706961d2013-01-17 16:50:35 +08001599 return 0;
Andy Green90c7cbc2011-01-27 06:26:52 +00001600}
1601
Andy Green706961d2013-01-17 16:50:35 +08001602
Andy Green2ac5a6f2011-01-28 10:00:18 +00001603/**
1604 * libwebsocket_canonical_hostname() - returns this host's hostname
1605 *
1606 * This is typically used by client code to fill in the host parameter
1607 * when making a client connection. You can only call it after the context
1608 * has been created.
1609 *
Peter Hinz56885f32011-03-02 22:03:47 +00001610 * @context: Websocket context
Andy Green2ac5a6f2011-01-28 10:00:18 +00001611 */
1612
1613
1614extern const char *
Peter Hinz56885f32011-03-02 22:03:47 +00001615libwebsocket_canonical_hostname(struct libwebsocket_context *context)
Andy Green2ac5a6f2011-01-28 10:00:18 +00001616{
Peter Hinz56885f32011-03-02 22:03:47 +00001617 return (const char *)context->canonical_hostname;
Andy Green2ac5a6f2011-01-28 10:00:18 +00001618}
1619
1620
Andy Green90c7cbc2011-01-27 06:26:52 +00001621static void sigpipe_handler(int x)
1622{
1623}
1624
Andy Green6901cb32011-02-21 08:06:47 +00001625#ifdef LWS_OPENSSL_SUPPORT
1626static int
1627OpenSSL_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx)
1628{
1629
1630 SSL *ssl;
1631 int n;
Andy Green2e24da02011-03-05 16:12:04 +00001632 struct libwebsocket_context *context;
Andy Green6901cb32011-02-21 08:06:47 +00001633
1634 ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
1635 SSL_get_ex_data_X509_STORE_CTX_idx());
1636
1637 /*
Andy Green2e24da02011-03-05 16:12:04 +00001638 * !!! nasty openssl requires the index to come as a library-scope
1639 * static
Andy Green6901cb32011-02-21 08:06:47 +00001640 */
Andy Green2e24da02011-03-05 16:12:04 +00001641 context = SSL_get_ex_data(ssl, openssl_websocket_private_data_index);
Andy Green6ee372f2012-04-09 15:09:01 +08001642
Peter Hinz56885f32011-03-02 22:03:47 +00001643 n = context->protocols[0].callback(NULL, NULL,
Andy Green6901cb32011-02-21 08:06:47 +00001644 LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION,
1645 x509_ctx, ssl, preverify_ok);
1646
1647 /* convert return code from 0 = OK to 1 = OK */
1648
1649 if (!n)
1650 n = 1;
1651 else
1652 n = 0;
1653
1654 return n;
1655}
1656#endif
1657
Andy Green706961d2013-01-17 16:50:35 +08001658int user_callback_handle_rxflow(callback_function callback_function,
1659 struct libwebsocket_context * context,
1660 struct libwebsocket *wsi,
1661 enum libwebsocket_callback_reasons reason, void *user,
1662 void *in, size_t len)
1663{
1664 int n;
1665
1666 n = callback_function(context, wsi, reason, user, in, len);
1667 if (n < 0)
1668 return n;
1669
1670 _libwebsocket_rx_flow_control(wsi);
1671
1672 return 0;
1673}
1674
Andy Greenb45993c2010-12-18 15:13:50 +00001675
Andy Greenab990e42010-10-31 12:42:52 +00001676/**
Andy Green4739e5c2011-01-22 12:51:57 +00001677 * libwebsocket_create_context() - Create the websocket handler
1678 * @port: Port to listen on... you can use 0 to suppress listening on
Andy Green6964bb52011-01-23 16:50:33 +00001679 * any port, that's what you want if you are not running a
1680 * websocket server at all but just using it as a client
Peter Hinz56885f32011-03-02 22:03:47 +00001681 * @interf: NULL to bind the listen socket to all interfaces, or the
Andy Green32375b72011-02-19 08:32:53 +00001682 * interface name, eg, "eth2"
Andy Green4f3943a2010-11-12 10:44:16 +00001683 * @protocols: Array of structures listing supported protocols and a protocol-
Andy Green8f037e42010-12-19 22:13:26 +00001684 * specific callback for each one. The list is ended with an
1685 * entry that has a NULL callback pointer.
Andy Green6964bb52011-01-23 16:50:33 +00001686 * It's not const because we write the owning_server member
Andy Greenc5114822011-03-06 10:29:35 +00001687 * @extensions: NULL or array of libwebsocket_extension structs listing the
Andy Green6ee372f2012-04-09 15:09:01 +08001688 * extensions this context supports
Andy Green3faa9c72010-11-08 17:03:03 +00001689 * @ssl_cert_filepath: If libwebsockets was compiled to use ssl, and you want
Andy Green8f037e42010-12-19 22:13:26 +00001690 * to listen using SSL, set to the filepath to fetch the
1691 * server cert from, otherwise NULL for unencrypted
Andy Green3faa9c72010-11-08 17:03:03 +00001692 * @ssl_private_key_filepath: filepath to private key if wanting SSL mode,
Andy Green8f037e42010-12-19 22:13:26 +00001693 * else ignored
David Galeano2f82be82013-01-09 16:25:54 +08001694 * @ssl_ca_filepath: CA certificate filepath or NULL
Andy Green3faa9c72010-11-08 17:03:03 +00001695 * @gid: group id to change to after setting listen socket, or -1.
1696 * @uid: user id to change to after setting listen socket, or -1.
Andy Greenbfb051f2011-02-09 08:49:14 +00001697 * @options: 0, or LWS_SERVER_OPTION_DEFEAT_CLIENT_MASK
Andy Green15e31f32012-10-19 18:36:28 +08001698 * @user: optional user pointer that can be recovered via the context
1699 * pointer using libwebsocket_context_user
Andy Green05464c62010-11-12 10:44:18 +00001700 *
Andy Green8f037e42010-12-19 22:13:26 +00001701 * This function creates the listening socket and takes care
1702 * of all initialization in one step.
1703 *
Andy Greene92cd172011-01-19 13:11:55 +00001704 * After initialization, it returns a struct libwebsocket_context * that
1705 * represents this server. After calling, user code needs to take care
1706 * of calling libwebsocket_service() with the context pointer to get the
1707 * server's sockets serviced. This can be done in the same process context
1708 * or a forked process, or another thread,
Andy Green05464c62010-11-12 10:44:18 +00001709 *
Andy Green8f037e42010-12-19 22:13:26 +00001710 * The protocol callback functions are called for a handful of events
1711 * including http requests coming in, websocket connections becoming
1712 * established, and data arriving; it's also called periodically to allow
1713 * async transmission.
1714 *
1715 * HTTP requests are sent always to the FIRST protocol in @protocol, since
1716 * at that time websocket protocol has not been negotiated. Other
1717 * protocols after the first one never see any HTTP callack activity.
1718 *
1719 * The server created is a simple http server by default; part of the
1720 * websocket standard is upgrading this http connection to a websocket one.
1721 *
1722 * This allows the same server to provide files like scripts and favicon /
1723 * images or whatever over http and dynamic data over websockets all in
1724 * one place; they're all handled in the user callback.
Andy Greenab990e42010-10-31 12:42:52 +00001725 */
Andy Green4ea60062010-10-30 12:15:07 +01001726
Andy Greene92cd172011-01-19 13:11:55 +00001727struct libwebsocket_context *
Peter Hinz56885f32011-03-02 22:03:47 +00001728libwebsocket_create_context(int port, const char *interf,
Andy Greenb45993c2010-12-18 15:13:50 +00001729 struct libwebsocket_protocols *protocols,
Andy Greend6e09112011-03-05 16:12:15 +00001730 struct libwebsocket_extension *extensions,
Andy Green8f037e42010-12-19 22:13:26 +00001731 const char *ssl_cert_filepath,
1732 const char *ssl_private_key_filepath,
David Galeano2f82be82013-01-09 16:25:54 +08001733 const char *ssl_ca_filepath,
Alon Levy0291eb32012-10-19 11:21:56 +02001734 int gid, int uid, unsigned int options,
David Galeano2f82be82013-01-09 16:25:54 +08001735 void *user)
Andy Greenff95d7a2010-10-28 22:36:01 +01001736{
1737 int n;
Andy Greena41314f2011-05-23 10:00:03 +01001738 int m;
Andy Green4739e5c2011-01-22 12:51:57 +00001739 int sockfd = 0;
Andy Green251f6fa2010-11-03 11:13:06 +00001740 int fd;
Andy Greenff95d7a2010-10-28 22:36:01 +01001741 struct sockaddr_in serv_addr, cli_addr;
Andy Green251f6fa2010-11-03 11:13:06 +00001742 int opt = 1;
Peter Hinz56885f32011-03-02 22:03:47 +00001743 struct libwebsocket_context *context = NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00001744 unsigned int slen;
Andy Green9659f372011-01-27 22:01:43 +00001745 char *p;
Paulo Roberto Urio1e326632012-06-04 10:52:19 +08001746 char hostname[1024] = "";
Andy Greena69f0512012-05-03 12:32:38 +08001747// struct hostent *he;
Andy Green0d338332011-02-12 11:57:43 +00001748 struct libwebsocket *wsi;
Andy Greena69f0512012-05-03 12:32:38 +08001749 struct sockaddr sa;
Andy Greenff95d7a2010-10-28 22:36:01 +01001750
Andy Green3faa9c72010-11-08 17:03:03 +00001751#ifdef LWS_OPENSSL_SUPPORT
Andy Greenf2f54d52010-11-15 22:08:00 +00001752 SSL_METHOD *method;
Andy Green3faa9c72010-11-08 17:03:03 +00001753 char ssl_err_buf[512];
Andy Green3faa9c72010-11-08 17:03:03 +00001754#endif
1755
Andy Green43db0452013-01-10 19:50:35 +08001756 lwsl_info("Initial logging level %d\n", log_level);
Andy Greenc0d6b632013-01-12 23:42:17 +08001757 lwsl_info(" LWS_MAX_HEADER_NAME_LENGTH: %u\n", LWS_MAX_HEADER_NAME_LENGTH);
1758 lwsl_info(" LWS_MAX_HEADER_LEN: %u\n", LWS_MAX_HEADER_LEN);
1759 lwsl_info(" LWS_INITIAL_HDR_ALLOC: %u\n", LWS_INITIAL_HDR_ALLOC);
1760 lwsl_info(" LWS_ADDITIONAL_HDR_ALLOC: %u\n", LWS_ADDITIONAL_HDR_ALLOC);
1761 lwsl_info(" MAX_USER_RX_BUFFER: %u\n", MAX_USER_RX_BUFFER);
1762 lwsl_info(" MAX_BROADCAST_PAYLOAD: %u\n", MAX_BROADCAST_PAYLOAD);
1763 lwsl_info(" LWS_MAX_PROTOCOLS: %u\n", LWS_MAX_PROTOCOLS);
1764 lwsl_info(" LWS_MAX_EXTENSIONS_ACTIVE: %u\n", LWS_MAX_EXTENSIONS_ACTIVE);
1765 lwsl_info(" SPEC_LATEST_SUPPORTED: %u\n", SPEC_LATEST_SUPPORTED);
1766 lwsl_info(" AWAITING_TIMEOUT: %u\n", AWAITING_TIMEOUT);
1767 lwsl_info(" CIPHERS_LIST_STRING: '%s'\n", CIPHERS_LIST_STRING);
1768 lwsl_info(" SYSTEM_RANDOM_FILEPATH: '%s'\n", SYSTEM_RANDOM_FILEPATH);
1769 lwsl_info(" LWS_MAX_ZLIB_CONN_BUFFER: %u\n", LWS_MAX_ZLIB_CONN_BUFFER);
Andy Green43db0452013-01-10 19:50:35 +08001770
Peter Hinz56885f32011-03-02 22:03:47 +00001771#ifdef _WIN32
1772 {
1773 WORD wVersionRequested;
1774 WSADATA wsaData;
1775 int err;
Andy Green6ee372f2012-04-09 15:09:01 +08001776 HMODULE wsdll;
Peter Hinz56885f32011-03-02 22:03:47 +00001777
1778 /* Use the MAKEWORD(lowbyte, highbyte) macro from Windef.h */
1779 wVersionRequested = MAKEWORD(2, 2);
1780
1781 err = WSAStartup(wVersionRequested, &wsaData);
1782 if (err != 0) {
1783 /* Tell the user that we could not find a usable */
1784 /* Winsock DLL. */
Andy Green43db0452013-01-10 19:50:35 +08001785 lwsl_err("WSAStartup failed with error: %d\n", err);
Peter Hinz56885f32011-03-02 22:03:47 +00001786 return NULL;
1787 }
David Galeano7b11fec2011-10-04 19:55:18 +08001788
Andy Green6ee372f2012-04-09 15:09:01 +08001789 /* default to a poll() made out of select() */
1790 poll = emulated_poll;
David Galeano7b11fec2011-10-04 19:55:18 +08001791
Andy Green6ee372f2012-04-09 15:09:01 +08001792 /* if windows socket lib available, use his WSAPoll */
David Galeanocb193682013-01-09 15:29:00 +08001793 wsdll = GetModuleHandle(_T("Ws2_32.dll"));
Andy Green6ee372f2012-04-09 15:09:01 +08001794 if (wsdll)
1795 poll = (PFNWSAPOLL)GetProcAddress(wsdll, "WSAPoll");
Peter Hinz56885f32011-03-02 22:03:47 +00001796 }
1797#endif
1798
1799
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001800 context = (struct libwebsocket_context *) malloc(sizeof(struct libwebsocket_context));
Peter Hinz56885f32011-03-02 22:03:47 +00001801 if (!context) {
Andy Green43db0452013-01-10 19:50:35 +08001802 lwsl_err("No memory for websocket context\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001803 return NULL;
1804 }
Peter Hinz56885f32011-03-02 22:03:47 +00001805 context->protocols = protocols;
1806 context->listen_port = port;
1807 context->http_proxy_port = 0;
1808 context->http_proxy_address[0] = '\0';
1809 context->options = options;
Andy Greendfb23042013-01-17 12:26:48 +08001810 /* to reduce this allocation, */
1811 context->max_fds = getdtablesize();
1812 lwsl_info(" max fd tracked: %u\n", context->max_fds);
1813
1814 context->fds = (struct pollfd *)malloc(sizeof(struct pollfd) * context->max_fds);
1815 if (context->fds == NULL) {
1816 lwsl_err("Unable to allocate fds array for %d connections\n", context->max_fds);
1817 free(context);
1818 return NULL;
1819 }
1820 context->lws_lookup = (struct libwebsocket **)malloc(sizeof(struct libwebsocke *) * context->max_fds);
1821 if (context->lws_lookup == NULL) {
1822 lwsl_err("Unable to allocate lws_lookup array for %d connections\n", context->max_fds);
1823 free(context->fds);
1824 free(context);
1825 return NULL;
1826 }
Peter Hinz56885f32011-03-02 22:03:47 +00001827 context->fds_count = 0;
Andy Greend6e09112011-03-05 16:12:15 +00001828 context->extensions = extensions;
Paulo Roberto Urio1e326632012-06-04 10:52:19 +08001829 context->last_timeout_check_s = 0;
Andy Greendfb23042013-01-17 12:26:48 +08001830 context->user_space = user;
Andy Green9659f372011-01-27 22:01:43 +00001831
Peter Hinz56885f32011-03-02 22:03:47 +00001832#ifdef WIN32
1833 context->fd_random = 0;
1834#else
1835 context->fd_random = open(SYSTEM_RANDOM_FILEPATH, O_RDONLY);
1836 if (context->fd_random < 0) {
Andy Greendfb23042013-01-17 12:26:48 +08001837 free(context);
Andy Green43db0452013-01-10 19:50:35 +08001838 lwsl_err("Unable to open random device %s %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001839 SYSTEM_RANDOM_FILEPATH, context->fd_random);
Andy Green44eee682011-02-10 09:32:24 +00001840 return NULL;
1841 }
Peter Hinz56885f32011-03-02 22:03:47 +00001842#endif
Andy Green44eee682011-02-10 09:32:24 +00001843
Peter Hinz56885f32011-03-02 22:03:47 +00001844#ifdef LWS_OPENSSL_SUPPORT
1845 context->use_ssl = 0;
1846 context->ssl_ctx = NULL;
1847 context->ssl_client_ctx = NULL;
Andy Green2e24da02011-03-05 16:12:04 +00001848 openssl_websocket_private_data_index = 0;
Peter Hinz56885f32011-03-02 22:03:47 +00001849#endif
Andy Green2ac5a6f2011-01-28 10:00:18 +00001850
Andy Green788c4a82012-10-22 12:29:57 +01001851 if (options & LWS_SERVER_OPTION_SKIP_SERVER_CANONICAL_NAME) {
Andy Greena69f0512012-05-03 12:32:38 +08001852
Andy Green788c4a82012-10-22 12:29:57 +01001853 strcpy(context->canonical_hostname, "unknown");
Andy Greena69f0512012-05-03 12:32:38 +08001854
Andy Green788c4a82012-10-22 12:29:57 +01001855 } else {
1856
1857 /* find canonical hostname */
1858
1859 hostname[(sizeof hostname) - 1] = '\0';
1860 memset(&sa, 0, sizeof(sa));
1861 sa.sa_family = AF_INET;
1862 sa.sa_data[(sizeof sa.sa_data) - 1] = '\0';
1863 gethostname(hostname, (sizeof hostname) - 1);
1864
1865 n = 0;
1866
David Galeanoed3c8402013-01-10 10:45:24 +08001867 if (strlen(hostname) < sizeof(sa.sa_data) - 1) {
Andy Green788c4a82012-10-22 12:29:57 +01001868 strcpy(sa.sa_data, hostname);
Andy Green43db0452013-01-10 19:50:35 +08001869 // lwsl_debug("my host name is %s\n", sa.sa_data);
Andy Green788c4a82012-10-22 12:29:57 +01001870 n = getnameinfo(&sa, sizeof(sa), hostname,
1871 (sizeof hostname) - 1, NULL, 0, 0);
1872 }
1873
1874 if (!n) {
1875 strncpy(context->canonical_hostname, hostname,
1876 sizeof context->canonical_hostname - 1);
1877 context->canonical_hostname[
1878 sizeof context->canonical_hostname - 1] = '\0';
1879 } else
1880 strncpy(context->canonical_hostname, hostname,
1881 sizeof context->canonical_hostname - 1);
1882
Andy Green43db0452013-01-10 19:50:35 +08001883 // lwsl_debug("context->canonical_hostname = %s\n",
Andy Green788c4a82012-10-22 12:29:57 +01001884 // context->canonical_hostname);
Andy Greena69f0512012-05-03 12:32:38 +08001885 }
1886
Andy Green9659f372011-01-27 22:01:43 +00001887 /* split the proxy ads:port if given */
1888
1889 p = getenv("http_proxy");
1890 if (p) {
Peter Hinz56885f32011-03-02 22:03:47 +00001891 strncpy(context->http_proxy_address, p,
Andy Green6ee372f2012-04-09 15:09:01 +08001892 sizeof context->http_proxy_address - 1);
Peter Hinz56885f32011-03-02 22:03:47 +00001893 context->http_proxy_address[
1894 sizeof context->http_proxy_address - 1] = '\0';
Andy Green9659f372011-01-27 22:01:43 +00001895
Peter Hinz56885f32011-03-02 22:03:47 +00001896 p = strchr(context->http_proxy_address, ':');
Andy Green9659f372011-01-27 22:01:43 +00001897 if (p == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08001898 lwsl_err("http_proxy needs to be ads:port\n");
Andy Green9659f372011-01-27 22:01:43 +00001899 return NULL;
1900 }
1901 *p = '\0';
Peter Hinz56885f32011-03-02 22:03:47 +00001902 context->http_proxy_port = atoi(p + 1);
Andy Green9659f372011-01-27 22:01:43 +00001903
Andy Green43db0452013-01-10 19:50:35 +08001904 lwsl_debug("Using proxy %s:%u\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001905 context->http_proxy_address,
1906 context->http_proxy_port);
Andy Green9659f372011-01-27 22:01:43 +00001907 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001908
1909 if (port) {
1910
Andy Green3faa9c72010-11-08 17:03:03 +00001911#ifdef LWS_OPENSSL_SUPPORT
Peter Hinz56885f32011-03-02 22:03:47 +00001912 context->use_ssl = ssl_cert_filepath != NULL &&
Andy Green90c7cbc2011-01-27 06:26:52 +00001913 ssl_private_key_filepath != NULL;
Peter Hinz56885f32011-03-02 22:03:47 +00001914 if (context->use_ssl)
Andy Green43db0452013-01-10 19:50:35 +08001915 lwsl_info(" Compiled with SSL support, using it\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001916 else
Andy Green43db0452013-01-10 19:50:35 +08001917 lwsl_info(" Compiled with SSL support, not using it\n");
Andy Green3faa9c72010-11-08 17:03:03 +00001918
Andy Green90c7cbc2011-01-27 06:26:52 +00001919#else
1920 if (ssl_cert_filepath != NULL &&
1921 ssl_private_key_filepath != NULL) {
Andy Green43db0452013-01-10 19:50:35 +08001922 lwsl_info(" Not compiled for OpenSSl support!\n");
Andy Greene92cd172011-01-19 13:11:55 +00001923 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001924 }
Andy Green43db0452013-01-10 19:50:35 +08001925 lwsl_info(" Compiled without SSL support, "
Andy Green90c7cbc2011-01-27 06:26:52 +00001926 "serving unencrypted\n");
1927#endif
1928 }
1929
1930 /* ignore SIGPIPE */
Peter Hinz56885f32011-03-02 22:03:47 +00001931#ifdef WIN32
1932#else
Andy Green90c7cbc2011-01-27 06:26:52 +00001933 signal(SIGPIPE, sigpipe_handler);
Peter Hinz56885f32011-03-02 22:03:47 +00001934#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00001935
1936
1937#ifdef LWS_OPENSSL_SUPPORT
1938
1939 /* basic openssl init */
1940
1941 SSL_library_init();
1942
1943 OpenSSL_add_all_algorithms();
1944 SSL_load_error_strings();
1945
Andy Green2e24da02011-03-05 16:12:04 +00001946 openssl_websocket_private_data_index =
Andy Green6901cb32011-02-21 08:06:47 +00001947 SSL_get_ex_new_index(0, "libwebsockets", NULL, NULL, NULL);
1948
Andy Green90c7cbc2011-01-27 06:26:52 +00001949 /*
1950 * Firefox insists on SSLv23 not SSLv3
1951 * Konq disables SSLv2 by default now, SSLv23 works
1952 */
1953
1954 method = (SSL_METHOD *)SSLv23_server_method();
1955 if (!method) {
Andy Green43db0452013-01-10 19:50:35 +08001956 lwsl_err("problem creating ssl method: %s\n",
Andy Green90c7cbc2011-01-27 06:26:52 +00001957 ERR_error_string(ERR_get_error(), ssl_err_buf));
1958 return NULL;
1959 }
Peter Hinz56885f32011-03-02 22:03:47 +00001960 context->ssl_ctx = SSL_CTX_new(method); /* create context */
1961 if (!context->ssl_ctx) {
Andy Green43db0452013-01-10 19:50:35 +08001962 lwsl_err("problem creating ssl context: %s\n",
Andy Green90c7cbc2011-01-27 06:26:52 +00001963 ERR_error_string(ERR_get_error(), ssl_err_buf));
1964 return NULL;
1965 }
1966
David Galeanocc148e42013-01-10 10:18:59 +08001967#ifdef SSL_OP_NO_COMPRESSION
David Galeanoc72f6f92013-01-10 10:11:57 +08001968 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08001969#endif
David Galeano77a677c2013-01-10 10:14:12 +08001970 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
David Galeanof177f2a2013-01-10 10:15:19 +08001971 SSL_CTX_set_cipher_list(context->ssl_ctx, CIPHERS_LIST_STRING);
David Galeanoc72f6f92013-01-10 10:11:57 +08001972
Andy Green90c7cbc2011-01-27 06:26:52 +00001973 /* client context */
Andy Green6ee372f2012-04-09 15:09:01 +08001974
1975 if (port == CONTEXT_PORT_NO_LISTEN) {
Peter Hinz56885f32011-03-02 22:03:47 +00001976 method = (SSL_METHOD *)SSLv23_client_method();
1977 if (!method) {
Andy Green43db0452013-01-10 19:50:35 +08001978 lwsl_err("problem creating ssl method: %s\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001979 ERR_error_string(ERR_get_error(), ssl_err_buf));
1980 return NULL;
1981 }
1982 /* create context */
1983 context->ssl_client_ctx = SSL_CTX_new(method);
1984 if (!context->ssl_client_ctx) {
Andy Green43db0452013-01-10 19:50:35 +08001985 lwsl_err("problem creating ssl context: %s\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001986 ERR_error_string(ERR_get_error(), ssl_err_buf));
1987 return NULL;
1988 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001989
David Galeanocc148e42013-01-10 10:18:59 +08001990#ifdef SSL_OP_NO_COMPRESSION
David Galeanoc72f6f92013-01-10 10:11:57 +08001991 SSL_CTX_set_options(context->ssl_client_ctx, SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08001992#endif
David Galeano77a677c2013-01-10 10:14:12 +08001993 SSL_CTX_set_options(context->ssl_client_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
David Galeanof177f2a2013-01-10 10:15:19 +08001994 SSL_CTX_set_cipher_list(context->ssl_client_ctx, CIPHERS_LIST_STRING);
David Galeanoc72f6f92013-01-10 10:11:57 +08001995
Peter Hinz56885f32011-03-02 22:03:47 +00001996 /* openssl init for cert verification (for client sockets) */
David Galeano2f82be82013-01-09 16:25:54 +08001997 if (!ssl_ca_filepath) {
1998 if (!SSL_CTX_load_verify_locations(
1999 context->ssl_client_ctx, NULL,
2000 LWS_OPENSSL_CLIENT_CERTS))
Andy Green43db0452013-01-10 19:50:35 +08002001 lwsl_err(
David Galeano2f82be82013-01-09 16:25:54 +08002002 "Unable to load SSL Client certs from %s "
2003 "(set by --with-client-cert-dir= in configure) -- "
2004 " client ssl isn't going to work",
2005 LWS_OPENSSL_CLIENT_CERTS);
2006 } else
2007 if (!SSL_CTX_load_verify_locations(
2008 context->ssl_client_ctx, ssl_ca_filepath,
2009 NULL))
Andy Green43db0452013-01-10 19:50:35 +08002010 lwsl_err(
David Galeano2f82be82013-01-09 16:25:54 +08002011 "Unable to load SSL Client certs "
2012 "file from %s -- client ssl isn't "
2013 "going to work", ssl_ca_filepath);
Peter Hinz56885f32011-03-02 22:03:47 +00002014
2015 /*
2016 * callback allowing user code to load extra verification certs
2017 * helping the client to verify server identity
2018 */
2019
2020 context->protocols[0].callback(context, NULL,
2021 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS,
2022 context->ssl_client_ctx, NULL, 0);
Andy Green90c7cbc2011-01-27 06:26:52 +00002023 }
Andy Green6ee372f2012-04-09 15:09:01 +08002024
Andy Greenc6bf2c22011-02-20 11:10:47 +00002025 /* as a server, are we requiring clients to identify themselves? */
2026
2027 if (options & LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT) {
2028
2029 /* absolutely require the client cert */
Andy Green6ee372f2012-04-09 15:09:01 +08002030
Peter Hinz56885f32011-03-02 22:03:47 +00002031 SSL_CTX_set_verify(context->ssl_ctx,
Andy Green6901cb32011-02-21 08:06:47 +00002032 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
2033 OpenSSL_verify_callback);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002034
2035 /*
2036 * give user code a chance to load certs into the server
2037 * allowing it to verify incoming client certs
2038 */
2039
Peter Hinz56885f32011-03-02 22:03:47 +00002040 context->protocols[0].callback(context, NULL,
Andy Greenc6bf2c22011-02-20 11:10:47 +00002041 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS,
Peter Hinz56885f32011-03-02 22:03:47 +00002042 context->ssl_ctx, NULL, 0);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002043 }
2044
Peter Hinz56885f32011-03-02 22:03:47 +00002045 if (context->use_ssl) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002046
2047 /* openssl init for server sockets */
2048
Andy Green3faa9c72010-11-08 17:03:03 +00002049 /* set the local certificate from CertFile */
David Galeano9b3d4b22013-01-10 10:11:21 +08002050 n = SSL_CTX_use_certificate_chain_file(context->ssl_ctx,
2051 ssl_cert_filepath);
Andy Green3faa9c72010-11-08 17:03:03 +00002052 if (n != 1) {
Andy Green43db0452013-01-10 19:50:35 +08002053 lwsl_err("problem getting cert '%s': %s\n",
Andy Green3faa9c72010-11-08 17:03:03 +00002054 ssl_cert_filepath,
2055 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00002056 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002057 }
2058 /* set the private key from KeyFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002059 if (SSL_CTX_use_PrivateKey_file(context->ssl_ctx,
2060 ssl_private_key_filepath, SSL_FILETYPE_PEM) != 1) {
Andy Green43db0452013-01-10 19:50:35 +08002061 lwsl_err("ssl problem getting key '%s': %s\n",
Andy Green018d8eb2010-11-08 21:04:23 +00002062 ssl_private_key_filepath,
2063 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00002064 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002065 }
2066 /* verify private key */
Peter Hinz56885f32011-03-02 22:03:47 +00002067 if (!SSL_CTX_check_private_key(context->ssl_ctx)) {
Andy Green43db0452013-01-10 19:50:35 +08002068 lwsl_err("Private SSL key doesn't match cert\n");
Andy Greene92cd172011-01-19 13:11:55 +00002069 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002070 }
2071
2072 /* SSL is happy and has a cert it's content with */
2073 }
2074#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002075
Andy Greendf736162011-01-18 15:39:02 +00002076 /* selftest */
2077
2078 if (lws_b64_selftest())
Andy Greene92cd172011-01-19 13:11:55 +00002079 return NULL;
Andy Greendf736162011-01-18 15:39:02 +00002080
Andy Greenb45993c2010-12-18 15:13:50 +00002081 /* set up our external listening socket we serve on */
Andy Green8f037e42010-12-19 22:13:26 +00002082
Andy Green4739e5c2011-01-22 12:51:57 +00002083 if (port) {
Andy Green8f037e42010-12-19 22:13:26 +00002084
Andy Green4739e5c2011-01-22 12:51:57 +00002085 sockfd = socket(AF_INET, SOCK_STREAM, 0);
2086 if (sockfd < 0) {
Andy Greenf7609e92013-01-14 13:10:55 +08002087 lwsl_err("ERROR opening socket\n");
Andy Green4739e5c2011-01-22 12:51:57 +00002088 return NULL;
2089 }
Andy Green775c0dd2010-10-29 14:15:22 +01002090
Andy Green4739e5c2011-01-22 12:51:57 +00002091 /* allow us to restart even if old sockets in TIME_WAIT */
Andy Green6ee372f2012-04-09 15:09:01 +08002092 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR,
2093 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00002094
2095 /* Disable Nagle */
2096 opt = 1;
Andy Green6ee372f2012-04-09 15:09:01 +08002097 setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY,
2098 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00002099
Andy Green4739e5c2011-01-22 12:51:57 +00002100 bzero((char *) &serv_addr, sizeof(serv_addr));
2101 serv_addr.sin_family = AF_INET;
Peter Hinz56885f32011-03-02 22:03:47 +00002102 if (interf == NULL)
Andy Green32375b72011-02-19 08:32:53 +00002103 serv_addr.sin_addr.s_addr = INADDR_ANY;
2104 else
Peter Hinz56885f32011-03-02 22:03:47 +00002105 interface_to_sa(interf, &serv_addr,
Andy Green32375b72011-02-19 08:32:53 +00002106 sizeof(serv_addr));
Andy Green4739e5c2011-01-22 12:51:57 +00002107 serv_addr.sin_port = htons(port);
2108
2109 n = bind(sockfd, (struct sockaddr *) &serv_addr,
2110 sizeof(serv_addr));
2111 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08002112 lwsl_err("ERROR on binding to port %d (%d %d)\n",
Andy Green8f037e42010-12-19 22:13:26 +00002113 port, n, errno);
Andy Green41c58032013-01-12 13:21:08 +08002114 close(sockfd);
Andy Green4739e5c2011-01-22 12:51:57 +00002115 return NULL;
2116 }
Andy Green0d338332011-02-12 11:57:43 +00002117
Aaron Zinman4550f1d2013-01-10 12:35:18 +08002118 wsi = (struct libwebsocket *)malloc(sizeof(struct libwebsocket));
Andy Green41c58032013-01-12 13:21:08 +08002119 if (wsi == NULL) {
2120 lwsl_err("Out of mem\n");
2121 close(sockfd);
2122 return NULL;
2123 }
Aaron Zinman4550f1d2013-01-10 12:35:18 +08002124 memset(wsi, 0, sizeof (struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00002125 wsi->sock = sockfd;
Andy Greend6e09112011-03-05 16:12:15 +00002126 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00002127 wsi->mode = LWS_CONNMODE_SERVER_LISTENER;
Andy Greendfb23042013-01-17 12:26:48 +08002128
2129 insert_wsi_socket_into_fds(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002130
Andy Green65b0e912013-01-16 07:59:47 +08002131 context->listen_service_modulo = LWS_LISTEN_SERVICE_MODULO;
2132 context->listen_service_count = 0;
2133 context->listen_service_fd = sockfd;
2134
Andy Greena824d182013-01-15 20:52:29 +08002135 listen(sockfd, LWS_SOMAXCONN);
Andy Green43db0452013-01-10 19:50:35 +08002136 lwsl_info(" Listening on port %d\n", port);
Andy Green8f037e42010-12-19 22:13:26 +00002137 }
Andy Greenb45993c2010-12-18 15:13:50 +00002138
Andy Green6ee372f2012-04-09 15:09:01 +08002139 /*
2140 * drop any root privs for this process
2141 * to listen on port < 1023 we would have needed root, but now we are
2142 * listening, we don't want the power for anything else
2143 */
Peter Hinz56885f32011-03-02 22:03:47 +00002144#ifdef WIN32
2145#else
Andy Green3faa9c72010-11-08 17:03:03 +00002146 if (gid != -1)
2147 if (setgid(gid))
Andy Green43db0452013-01-10 19:50:35 +08002148 lwsl_warn("setgid: %s\n", strerror(errno));
Andy Green3faa9c72010-11-08 17:03:03 +00002149 if (uid != -1)
2150 if (setuid(uid))
Andy Green43db0452013-01-10 19:50:35 +08002151 lwsl_warn("setuid: %s\n", strerror(errno));
Peter Hinz56885f32011-03-02 22:03:47 +00002152#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002153
2154 /* set up our internal broadcast trigger sockets per-protocol */
2155
Peter Hinz56885f32011-03-02 22:03:47 +00002156 for (context->count_protocols = 0;
2157 protocols[context->count_protocols].callback;
2158 context->count_protocols++) {
Andy Green2d1301e2011-05-24 10:14:41 +01002159
Andy Green43db0452013-01-10 19:50:35 +08002160 lwsl_parser(" Protocol: %s\n",
2161 protocols[context->count_protocols].name);
Andy Green2d1301e2011-05-24 10:14:41 +01002162
Peter Hinz56885f32011-03-02 22:03:47 +00002163 protocols[context->count_protocols].owning_server = context;
2164 protocols[context->count_protocols].protocol_index =
2165 context->count_protocols;
Andy Greenb45993c2010-12-18 15:13:50 +00002166
2167 fd = socket(AF_INET, SOCK_STREAM, 0);
2168 if (fd < 0) {
Andy Greenf7609e92013-01-14 13:10:55 +08002169 lwsl_err("ERROR opening socket\n");
Andy Greene92cd172011-01-19 13:11:55 +00002170 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002171 }
Andy Green8f037e42010-12-19 22:13:26 +00002172
Andy Greenb45993c2010-12-18 15:13:50 +00002173 /* allow us to restart even if old sockets in TIME_WAIT */
Andy Green6ee372f2012-04-09 15:09:01 +08002174 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const void *)&opt,
2175 sizeof(opt));
Andy Greenb45993c2010-12-18 15:13:50 +00002176
2177 bzero((char *) &serv_addr, sizeof(serv_addr));
2178 serv_addr.sin_family = AF_INET;
2179 serv_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
2180 serv_addr.sin_port = 0; /* pick the port for us */
2181
2182 n = bind(fd, (struct sockaddr *) &serv_addr, sizeof(serv_addr));
2183 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08002184 lwsl_err("ERROR on binding to port %d (%d %d)\n",
Andy Greenb45993c2010-12-18 15:13:50 +00002185 port, n, errno);
Andy Greene92cd172011-01-19 13:11:55 +00002186 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002187 }
2188
2189 slen = sizeof cli_addr;
2190 n = getsockname(fd, (struct sockaddr *)&cli_addr, &slen);
2191 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08002192 lwsl_err("getsockname failed\n");
Andy Greene92cd172011-01-19 13:11:55 +00002193 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002194 }
Peter Hinz56885f32011-03-02 22:03:47 +00002195 protocols[context->count_protocols].broadcast_socket_port =
Andy Greenb45993c2010-12-18 15:13:50 +00002196 ntohs(cli_addr.sin_port);
2197 listen(fd, 5);
2198
Andy Green43db0452013-01-10 19:50:35 +08002199 lwsl_debug(" Protocol %s broadcast socket %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002200 protocols[context->count_protocols].name,
Andy Greenb45993c2010-12-18 15:13:50 +00002201 ntohs(cli_addr.sin_port));
2202
Andy Green0d338332011-02-12 11:57:43 +00002203 /* dummy wsi per broadcast proxy socket */
2204
Aaron Zinman4550f1d2013-01-10 12:35:18 +08002205 wsi = (struct libwebsocket *)malloc(sizeof(struct libwebsocket));
Andy Green41c58032013-01-12 13:21:08 +08002206 if (wsi == NULL) {
2207 lwsl_err("Out of mem\n");
2208 close(fd);
2209 return NULL;
2210 }
Aaron Zinman4550f1d2013-01-10 12:35:18 +08002211 memset(wsi, 0, sizeof (struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00002212 wsi->sock = fd;
2213 wsi->mode = LWS_CONNMODE_BROADCAST_PROXY_LISTENER;
Andy Greend6e09112011-03-05 16:12:15 +00002214 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00002215 /* note which protocol we are proxying */
Peter Hinz56885f32011-03-02 22:03:47 +00002216 wsi->protocol_index_for_broadcast_proxy =
2217 context->count_protocols;
Andy Green0d338332011-02-12 11:57:43 +00002218
Andy Greendfb23042013-01-17 12:26:48 +08002219 insert_wsi_socket_into_fds(context, wsi);
Andy Greenb45993c2010-12-18 15:13:50 +00002220 }
2221
Andy Greena41314f2011-05-23 10:00:03 +01002222 /*
2223 * give all extensions a chance to create any per-context
2224 * allocations they need
2225 */
2226
2227 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_CONSTRUCT;
2228 if (port)
2229 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_CONSTRUCT;
Andrew Chambersd5512172012-05-20 08:17:09 +08002230
2231 if (extensions) {
2232 while (extensions->callback) {
Andy Green43db0452013-01-10 19:50:35 +08002233 lwsl_ext(" Extension: %s\n", extensions->name);
Aaron Zinman4550f1d2013-01-10 12:35:18 +08002234 extensions->callback(context, extensions, NULL,
2235 (enum libwebsocket_extension_callback_reasons)m,
2236 NULL, NULL, 0);
Andrew Chambersd5512172012-05-20 08:17:09 +08002237 extensions++;
2238 }
Andy Greena41314f2011-05-23 10:00:03 +01002239 }
2240
Peter Hinz56885f32011-03-02 22:03:47 +00002241 return context;
Andy Greene92cd172011-01-19 13:11:55 +00002242}
Andy Greenb45993c2010-12-18 15:13:50 +00002243
Andy Green4739e5c2011-01-22 12:51:57 +00002244
Andy Greened11a022011-01-20 10:23:50 +00002245#ifndef LWS_NO_FORK
2246
Andy Greene92cd172011-01-19 13:11:55 +00002247/**
2248 * libwebsockets_fork_service_loop() - Optional helper function forks off
2249 * a process for the websocket server loop.
Andy Green6964bb52011-01-23 16:50:33 +00002250 * You don't have to use this but if not, you
2251 * have to make sure you are calling
2252 * libwebsocket_service periodically to service
2253 * the websocket traffic
Peter Hinz56885f32011-03-02 22:03:47 +00002254 * @context: server context returned by creation function
Andy Greene92cd172011-01-19 13:11:55 +00002255 */
Andy Greenb45993c2010-12-18 15:13:50 +00002256
Andy Greene92cd172011-01-19 13:11:55 +00002257int
Peter Hinz56885f32011-03-02 22:03:47 +00002258libwebsockets_fork_service_loop(struct libwebsocket_context *context)
Andy Greene92cd172011-01-19 13:11:55 +00002259{
Andy Greene92cd172011-01-19 13:11:55 +00002260 int fd;
2261 struct sockaddr_in cli_addr;
2262 int n;
Andy Green3221f922011-02-12 13:14:11 +00002263 int p;
Andy Greenb45993c2010-12-18 15:13:50 +00002264
Andy Greened11a022011-01-20 10:23:50 +00002265 n = fork();
2266 if (n < 0)
2267 return n;
2268
2269 if (!n) {
2270
2271 /* main process context */
2272
Andy Green3221f922011-02-12 13:14:11 +00002273 /*
2274 * set up the proxy sockets to allow broadcast from
2275 * service process context
2276 */
2277
Peter Hinz56885f32011-03-02 22:03:47 +00002278 for (p = 0; p < context->count_protocols; p++) {
Andy Greened11a022011-01-20 10:23:50 +00002279 fd = socket(AF_INET, SOCK_STREAM, 0);
2280 if (fd < 0) {
Andy Green43db0452013-01-10 19:50:35 +08002281 lwsl_err("Unable to create socket\n");
Andy Greened11a022011-01-20 10:23:50 +00002282 return -1;
2283 }
2284 cli_addr.sin_family = AF_INET;
2285 cli_addr.sin_port = htons(
Peter Hinz56885f32011-03-02 22:03:47 +00002286 context->protocols[p].broadcast_socket_port);
Andy Greened11a022011-01-20 10:23:50 +00002287 cli_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
2288 n = connect(fd, (struct sockaddr *)&cli_addr,
2289 sizeof cli_addr);
2290 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08002291 lwsl_err("Unable to connect to "
Andy Greened11a022011-01-20 10:23:50 +00002292 "broadcast socket %d, %s\n",
Andy Green3221f922011-02-12 13:14:11 +00002293 n, strerror(errno));
Andy Greened11a022011-01-20 10:23:50 +00002294 return -1;
2295 }
2296
Peter Hinz56885f32011-03-02 22:03:47 +00002297 context->protocols[p].broadcast_socket_user_fd = fd;
Andy Greened11a022011-01-20 10:23:50 +00002298 }
2299
Andy Greene92cd172011-01-19 13:11:55 +00002300 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +00002301 }
2302
Artem Baguinski91531662011-12-14 22:14:03 +01002303#ifdef HAVE_SYS_PRCTL_H
Andy Greenb45993c2010-12-18 15:13:50 +00002304 /* we want a SIGHUP when our parent goes down */
2305 prctl(PR_SET_PDEATHSIG, SIGHUP);
Artem Baguinski91531662011-12-14 22:14:03 +01002306#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002307
2308 /* in this forked process, sit and service websocket connections */
Andy Green8f037e42010-12-19 22:13:26 +00002309
Artem Baguinski91531662011-12-14 22:14:03 +01002310 while (1) {
Peter Hinz56885f32011-03-02 22:03:47 +00002311 if (libwebsocket_service(context, 1000))
Andy Green3928f612012-07-20 12:58:38 +08002312 break;
Andy Green5e8967a2012-10-17 20:10:44 +08002313//#ifndef HAVE_SYS_PRCTL_H
Artem Baguinski91531662011-12-14 22:14:03 +01002314/*
2315 * on systems without prctl() (i.e. anything but linux) we can notice that our
2316 * parent is dead if getppid() returns 1. FIXME apparently this is not true for
2317 * solaris, could remember ppid right after fork and wait for it to change.
2318 */
2319
2320 if (getppid() == 1)
2321 break;
Andy Green5e8967a2012-10-17 20:10:44 +08002322//#endif
Artem Baguinski91531662011-12-14 22:14:03 +01002323 }
2324
Andy Green8f037e42010-12-19 22:13:26 +00002325
Andy Green3928f612012-07-20 12:58:38 +08002326 return 1;
Andy Greenff95d7a2010-10-28 22:36:01 +01002327}
2328
Andy Greened11a022011-01-20 10:23:50 +00002329#endif
2330
Andy Greenb45993c2010-12-18 15:13:50 +00002331/**
2332 * libwebsockets_get_protocol() - Returns a protocol pointer from a websocket
Andy Green8f037e42010-12-19 22:13:26 +00002333 * connection.
Andy Greenb45993c2010-12-18 15:13:50 +00002334 * @wsi: pointer to struct websocket you want to know the protocol of
2335 *
Andy Green8f037e42010-12-19 22:13:26 +00002336 *
2337 * This is useful to get the protocol to broadcast back to from inside
Andy Greenb45993c2010-12-18 15:13:50 +00002338 * the callback.
2339 */
Andy Greenab990e42010-10-31 12:42:52 +00002340
Andy Greenb45993c2010-12-18 15:13:50 +00002341const struct libwebsocket_protocols *
2342libwebsockets_get_protocol(struct libwebsocket *wsi)
2343{
2344 return wsi->protocol;
2345}
2346
2347/**
Andy Greene92cd172011-01-19 13:11:55 +00002348 * libwebsockets_broadcast() - Sends a buffer to the callback for all active
Andy Green8f037e42010-12-19 22:13:26 +00002349 * connections of the given protocol.
Andy Greenb45993c2010-12-18 15:13:50 +00002350 * @protocol: pointer to the protocol you will broadcast to all members of
2351 * @buf: buffer containing the data to be broadcase. NOTE: this has to be
Andy Green8f037e42010-12-19 22:13:26 +00002352 * allocated with LWS_SEND_BUFFER_PRE_PADDING valid bytes before
2353 * the pointer and LWS_SEND_BUFFER_POST_PADDING afterwards in the
2354 * case you are calling this function from callback context.
Andy Greenb45993c2010-12-18 15:13:50 +00002355 * @len: length of payload data in buf, starting from buf.
Andy Green8f037e42010-12-19 22:13:26 +00002356 *
2357 * This function allows bulk sending of a packet to every connection using
Andy Greenb45993c2010-12-18 15:13:50 +00002358 * the given protocol. It does not send the data directly; instead it calls
2359 * the callback with a reason type of LWS_CALLBACK_BROADCAST. If the callback
2360 * wants to actually send the data for that connection, the callback itself
2361 * should call libwebsocket_write().
2362 *
2363 * libwebsockets_broadcast() can be called from another fork context without
2364 * having to take any care about data visibility between the processes, it'll
2365 * "just work".
2366 */
2367
2368
2369int
Andy Green8f037e42010-12-19 22:13:26 +00002370libwebsockets_broadcast(const struct libwebsocket_protocols *protocol,
Andy Greenb45993c2010-12-18 15:13:50 +00002371 unsigned char *buf, size_t len)
2372{
Peter Hinz56885f32011-03-02 22:03:47 +00002373 struct libwebsocket_context *context = protocol->owning_server;
Andy Greenb45993c2010-12-18 15:13:50 +00002374 int n;
Andy Green6ee372f2012-04-09 15:09:01 +08002375 struct libwebsocket *wsi;
Andy Greenb45993c2010-12-18 15:13:50 +00002376
2377 if (!protocol->broadcast_socket_user_fd) {
2378 /*
Andy Greene92cd172011-01-19 13:11:55 +00002379 * We are either running unforked / flat, or we are being
2380 * called from poll thread context
Andy Greenb45993c2010-12-18 15:13:50 +00002381 * eg, from a callback. In that case don't use sockets for
2382 * broadcast IPC (since we can't open a socket connection to
2383 * a socket listening on our own thread) but directly do the
2384 * send action.
2385 *
2386 * Locking is not needed because we are by definition being
2387 * called in the poll thread context and are serialized.
2388 */
2389
Andy Greendfb23042013-01-17 12:26:48 +08002390 for (n = 0; n < context->fds_count; n++) {
Andy Greenb45993c2010-12-18 15:13:50 +00002391
Andy Greendfb23042013-01-17 12:26:48 +08002392 wsi = context->lws_lookup[context->fds[n].fd];
2393 if (!wsi)
2394 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00002395
Andy Greendfb23042013-01-17 12:26:48 +08002396 if (wsi->mode != LWS_CONNMODE_WS_SERVING)
2397 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00002398
Andy Greendfb23042013-01-17 12:26:48 +08002399 /*
2400 * never broadcast to non-established connections
2401 */
2402 if (wsi->state != WSI_STATE_ESTABLISHED)
2403 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00002404
Andy Greendfb23042013-01-17 12:26:48 +08002405 /* only broadcast to guys using
2406 * requested protocol
2407 */
2408 if (wsi->protocol != protocol)
2409 continue;
Andy Green0d338332011-02-12 11:57:43 +00002410
Andy Green706961d2013-01-17 16:50:35 +08002411 user_callback_handle_rxflow(wsi->protocol->callback,
2412 context, wsi,
Andy Greendfb23042013-01-17 12:26:48 +08002413 LWS_CALLBACK_BROADCAST,
2414 wsi->user_space,
2415 buf, len);
Andy Greenb45993c2010-12-18 15:13:50 +00002416 }
2417
2418 return 0;
2419 }
2420
Andy Green0ca6a172010-12-19 20:50:01 +00002421 /*
2422 * We're being called from a different process context than the server
2423 * loop. Instead of broadcasting directly, we send our
2424 * payload on a socket to do the IPC; the server process will serialize
2425 * the broadcast action in its main poll() loop.
2426 *
2427 * There's one broadcast socket listening for each protocol supported
2428 * set up when the websocket server initializes
2429 */
2430
Andy Green6964bb52011-01-23 16:50:33 +00002431 n = send(protocol->broadcast_socket_user_fd, buf, len, MSG_NOSIGNAL);
Andy Greenb45993c2010-12-18 15:13:50 +00002432
2433 return n;
2434}
Andy Green82c3d542011-03-07 21:16:31 +00002435
2436int
2437libwebsocket_is_final_fragment(struct libwebsocket *wsi)
2438{
2439 return wsi->final;
2440}
Alex Bligh49146db2011-11-07 17:19:25 +08002441
David Galeanoe2cf9922013-01-09 18:06:55 +08002442unsigned char
2443libwebsocket_get_reserved_bits(struct libwebsocket *wsi)
2444{
2445 return wsi->rsv;
2446}
2447
Alex Bligh49146db2011-11-07 17:19:25 +08002448void *
2449libwebsocket_ensure_user_space(struct libwebsocket *wsi)
2450{
2451 /* allocate the per-connection user memory (if any) */
2452
2453 if (wsi->protocol->per_session_data_size && !wsi->user_space) {
2454 wsi->user_space = malloc(
2455 wsi->protocol->per_session_data_size);
2456 if (wsi->user_space == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08002457 lwsl_err("Out of memory for conn user space\n");
Alex Bligh49146db2011-11-07 17:19:25 +08002458 return NULL;
2459 }
Andy Green6ee372f2012-04-09 15:09:01 +08002460 memset(wsi->user_space, 0,
2461 wsi->protocol->per_session_data_size);
Alex Bligh49146db2011-11-07 17:19:25 +08002462 }
2463 return wsi->user_space;
2464}
Andy Green43db0452013-01-10 19:50:35 +08002465
Andy Greende8f27a2013-01-12 09:17:42 +08002466
2467static void lwsl_emit_stderr(const char *line)
2468{
2469 fprintf(stderr, "%s", line);
2470}
2471
Andy Green43db0452013-01-10 19:50:35 +08002472void _lws_log(int filter, const char *format, ...)
2473{
Andy Greende8f27a2013-01-12 09:17:42 +08002474 char buf[256];
Andy Green43db0452013-01-10 19:50:35 +08002475 va_list ap;
2476 int n;
Andy Greende8f27a2013-01-12 09:17:42 +08002477 int pos = 0;
Andy Green8a265092013-01-12 09:25:07 +08002478 struct timeval tv;
Andy Green43db0452013-01-10 19:50:35 +08002479
2480 if (!(log_level & filter))
2481 return;
2482
Andy Green8a265092013-01-12 09:25:07 +08002483 gettimeofday(&tv, NULL);
2484
Andy Green43db0452013-01-10 19:50:35 +08002485 for (n = 0; n < LLL_COUNT; n++)
2486 if (filter == (1 << n)) {
Andy Greeneff73742013-01-17 15:02:02 +08002487 pos = sprintf(buf, "[%ld:%04d] %s: ", tv.tv_sec,
2488 (int)(tv.tv_usec / 100), log_level_names[n]);
Andy Green43db0452013-01-10 19:50:35 +08002489 break;
2490 }
2491
2492 va_start(ap, format);
Andy Greende8f27a2013-01-12 09:17:42 +08002493 vsnprintf(buf + pos, (sizeof buf) - pos, format, ap);
2494 buf[(sizeof buf) - 1] = '\0';
2495 va_end(ap);
2496
2497 lwsl_emit(buf);
Andy Green43db0452013-01-10 19:50:35 +08002498}
2499
2500/**
2501 * lws_set_log_level() - Set the logging bitfield
2502 * @level: OR together the LLL_ debug contexts you want output from
Andy Greende8f27a2013-01-12 09:17:42 +08002503 * @log_emit_function: NULL to leave it as it is, or a user-supplied
2504 * function to perform log string emission instead of
2505 * the default stderr one.
Andy Green43db0452013-01-10 19:50:35 +08002506 *
Andy Greende8f27a2013-01-12 09:17:42 +08002507 * log level defaults to "err" and "warn" contexts enabled only and
2508 * emission on stderr.
Andy Green43db0452013-01-10 19:50:35 +08002509 */
2510
Andy Greende8f27a2013-01-12 09:17:42 +08002511void lws_set_log_level(int level, void (*log_emit_function)(const char *line))
Andy Green43db0452013-01-10 19:50:35 +08002512{
2513 log_level = level;
Andy Greende8f27a2013-01-12 09:17:42 +08002514 if (log_emit_function)
2515 lwsl_emit = log_emit_function;
Andy Green43db0452013-01-10 19:50:35 +08002516}