blob: 72a3fe5e3d55dce6b1a53df073c25f788b71d572 [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
25
26#else
27#include <ifaddrs.h>
28#endif
Andy Green2e24da02011-03-05 16:12:04 +000029
30#ifdef LWS_OPENSSL_SUPPORT
31int openssl_websocket_private_data_index;
32#endif
33
Andy Greenbe93fef2011-02-14 20:25:43 +000034/*
35 * In-place str to lower case
36 */
37
38static void
39strtolower(char *s)
40{
41 while (*s) {
42 *s = tolower(*s);
43 s++;
44 }
45}
46
Andy Green0d338332011-02-12 11:57:43 +000047/* file descriptor hash management */
48
49struct libwebsocket *
Peter Hinz56885f32011-03-02 22:03:47 +000050wsi_from_fd(struct libwebsocket_context *context, int fd)
Andy Green0d338332011-02-12 11:57:43 +000051{
52 int h = LWS_FD_HASH(fd);
53 int n = 0;
54
Peter Hinz56885f32011-03-02 22:03:47 +000055 for (n = 0; n < context->fd_hashtable[h].length; n++)
56 if (context->fd_hashtable[h].wsi[n]->sock == fd)
57 return context->fd_hashtable[h].wsi[n];
Andy Green0d338332011-02-12 11:57:43 +000058
59 return NULL;
60}
61
62int
Peter Hinz56885f32011-03-02 22:03:47 +000063insert_wsi(struct libwebsocket_context *context, struct libwebsocket *wsi)
Andy Green0d338332011-02-12 11:57:43 +000064{
65 int h = LWS_FD_HASH(wsi->sock);
66
Peter Hinz56885f32011-03-02 22:03:47 +000067 if (context->fd_hashtable[h].length == MAX_CLIENTS - 1) {
Andy Green0d338332011-02-12 11:57:43 +000068 fprintf(stderr, "hash table overflow\n");
69 return 1;
70 }
71
Peter Hinz56885f32011-03-02 22:03:47 +000072 context->fd_hashtable[h].wsi[context->fd_hashtable[h].length++] = wsi;
Andy Green0d338332011-02-12 11:57:43 +000073
74 return 0;
75}
76
77int
Peter Hinz56885f32011-03-02 22:03:47 +000078delete_from_fd(struct libwebsocket_context *context, int fd)
Andy Green0d338332011-02-12 11:57:43 +000079{
80 int h = LWS_FD_HASH(fd);
81 int n = 0;
82
Peter Hinz56885f32011-03-02 22:03:47 +000083 for (n = 0; n < context->fd_hashtable[h].length; n++)
84 if (context->fd_hashtable[h].wsi[n]->sock == fd) {
85 while (n < context->fd_hashtable[h].length) {
86 context->fd_hashtable[h].wsi[n] =
87 context->fd_hashtable[h].wsi[n + 1];
Andy Green0d338332011-02-12 11:57:43 +000088 n++;
89 }
Peter Hinz56885f32011-03-02 22:03:47 +000090 context->fd_hashtable[h].length--;
Andy Green0d338332011-02-12 11:57:43 +000091
92 return 0;
93 }
94
95 fprintf(stderr, "Failed to find fd %d requested for "
96 "delete in hashtable\n", fd);
97 return 1;
98}
99
Andy Green1f9bf522011-02-14 21:14:37 +0000100#ifdef LWS_OPENSSL_SUPPORT
101static void
102libwebsockets_decode_ssl_error(void)
103{
104 char buf[256];
105 u_long err;
106
107 while ((err = ERR_get_error()) != 0) {
108 ERR_error_string_n(err, buf, sizeof(buf));
109 fprintf(stderr, "*** %s\n", buf);
110 }
111}
112#endif
Andy Green0d338332011-02-12 11:57:43 +0000113
Andy Green32375b72011-02-19 08:32:53 +0000114
115static int
116interface_to_sa(const char* ifname, struct sockaddr_in *addr, size_t addrlen)
117{
118 int rc = -1;
Peter Hinz56885f32011-03-02 22:03:47 +0000119#ifdef WIN32
120 // TODO
121#else
Andy Green32375b72011-02-19 08:32:53 +0000122 struct ifaddrs *ifr;
123 struct ifaddrs *ifc;
124 struct sockaddr_in *sin;
125
126 getifaddrs(&ifr);
127 for (ifc = ifr; ifc != NULL; ifc = ifc->ifa_next) {
128 if (strcmp(ifc->ifa_name, ifname))
129 continue;
130 if (ifc->ifa_addr == NULL)
131 continue;
132 sin = (struct sockaddr_in *)ifc->ifa_addr;
133 if (sin->sin_family != AF_INET)
134 continue;
135 memcpy(addr, sin, addrlen);
136 rc = 0;
137 }
138
139 freeifaddrs(ifr);
Peter Hinz56885f32011-03-02 22:03:47 +0000140#endif
Andy Green32375b72011-02-19 08:32:53 +0000141 return rc;
142}
143
Andy Green8f037e42010-12-19 22:13:26 +0000144void
Peter Hinz56885f32011-03-02 22:03:47 +0000145libwebsocket_close_and_free_session(struct libwebsocket_context *context,
Andy Green687b0182011-02-26 11:04:01 +0000146 struct libwebsocket *wsi, enum lws_close_status reason)
Andy Green251f6fa2010-11-03 11:13:06 +0000147{
Andy Greenb45993c2010-12-18 15:13:50 +0000148 int n;
Andy Green62c54d22011-02-14 09:14:25 +0000149 int old_state;
Andy Green5e1fa172011-02-10 09:07:05 +0000150 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 2 +
151 LWS_SEND_BUFFER_POST_PADDING];
Andy Greenc44159f2011-03-07 07:08:18 +0000152 int ret;
153 int m;
154 struct lws_tokens eff_buf;
Andy Greenb45993c2010-12-18 15:13:50 +0000155
Andy Green4b6fbe12011-02-14 08:03:48 +0000156 if (!wsi)
Andy Greenb45993c2010-12-18 15:13:50 +0000157 return;
158
Andy Green62c54d22011-02-14 09:14:25 +0000159 old_state = wsi->state;
Andy Green251f6fa2010-11-03 11:13:06 +0000160
Andy Green62c54d22011-02-14 09:14:25 +0000161 if (old_state == WSI_STATE_DEAD_SOCKET)
Andy Green5e1fa172011-02-10 09:07:05 +0000162 return;
163
Andy Greenda527df2011-03-07 07:08:12 +0000164 wsi->close_reason = reason;
165
166 /*
Andy Greenc44159f2011-03-07 07:08:18 +0000167 * flush any tx pending from extensions, since we may send close packet
168 * if there are problems with send, just nuke the connection
169 */
170
171 ret = 1;
172 while (ret == 1) {
173
174 /* default to nobody has more to spill */
175
176 ret = 0;
177 eff_buf.token = NULL;
178 eff_buf.token_len = 0;
179
180 /* show every extension the new incoming data */
181
182 for (n = 0; n < wsi->count_active_extensions; n++) {
183 m = wsi->active_extensions[n]->callback(
184 wsi->protocol->owning_server, wsi,
185 LWS_EXT_CALLBACK_FLUSH_PENDING_TX,
186 wsi->active_extensions_user[n], &eff_buf, 0);
187 if (m < 0) {
188 fprintf(stderr, "Extension reports "
189 "fatal error\n");
190 goto just_kill_connection;
191 }
192 if (m)
193 /*
194 * at least one extension told us he has more
195 * to spill, so we will go around again after
196 */
197 ret = 1;
198 }
199
200 /* assuming they left us something to send, send it */
201
202 if (eff_buf.token_len)
203 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
204 eff_buf.token_len))
205 goto just_kill_connection;
206 }
207
208 /*
Andy Greenda527df2011-03-07 07:08:12 +0000209 * signal we are closing, libsocket_write will
210 * add any necessary version-specific stuff. If the write fails,
211 * no worries we are closing anyway. If we didn't initiate this
212 * close, then our state has been changed to
213 * WSI_STATE_RETURNED_CLOSE_ALREADY and we will skip this.
214 *
215 * Likewise if it's a second call to close this connection after we
216 * sent the close indication to the peer already, we are in state
217 * WSI_STATE_AWAITING_CLOSE_ACK and will skip doing this a second time.
218 */
219
220 if (old_state == WSI_STATE_ESTABLISHED &&
221 reason != LWS_CLOSE_STATUS_NOSTATUS) {
222 n = libwebsocket_write(wsi, &buf[LWS_SEND_BUFFER_PRE_PADDING],
223 0, LWS_WRITE_CLOSE);
224 if (!n) {
225 /*
226 * we have sent a nice protocol level indication we
227 * now wish to close, we should not send anything more
228 */
229
230 wsi->state = WSI_STATE_AWAITING_CLOSE_ACK;
231
232 /* and we should wait for a reply for a bit */
233
234 libwebsocket_set_timeout(wsi,
235 PENDING_TIMEOUT_CLOSE_ACK, 5);
236
237 fprintf(stderr, "sent close indication, awaiting ack\n");
238
239 return;
240 }
241
242 /* else, the send failed and we should just hang up */
243 }
244
Andy Greenc44159f2011-03-07 07:08:18 +0000245just_kill_connection:
Andy Greenda527df2011-03-07 07:08:12 +0000246 /*
247 * we won't be servicing or receiving anything further from this guy
248 * remove this fd from wsi mapping hashtable
249 */
Andy Green4b6fbe12011-02-14 08:03:48 +0000250
Peter Hinz56885f32011-03-02 22:03:47 +0000251 delete_from_fd(context, wsi->sock);
Andy Green4b6fbe12011-02-14 08:03:48 +0000252
253 /* delete it from the internal poll list if still present */
254
Peter Hinz56885f32011-03-02 22:03:47 +0000255 for (n = 0; n < context->fds_count; n++) {
256 if (context->fds[n].fd != wsi->sock)
Andy Green4b6fbe12011-02-14 08:03:48 +0000257 continue;
Peter Hinz56885f32011-03-02 22:03:47 +0000258 while (n < context->fds_count - 1) {
259 context->fds[n] = context->fds[n + 1];
Andy Green4b6fbe12011-02-14 08:03:48 +0000260 n++;
261 }
Peter Hinz56885f32011-03-02 22:03:47 +0000262 context->fds_count--;
Andy Green4b6fbe12011-02-14 08:03:48 +0000263 /* we only have to deal with one */
Peter Hinz56885f32011-03-02 22:03:47 +0000264 n = context->fds_count;
Andy Green4b6fbe12011-02-14 08:03:48 +0000265 }
266
267 /* remove also from external POLL support via protocol 0 */
268
Peter Hinz56885f32011-03-02 22:03:47 +0000269 context->protocols[0].callback(context, wsi,
Andy Green4b6fbe12011-02-14 08:03:48 +0000270 LWS_CALLBACK_DEL_POLL_FD, (void *)(long)wsi->sock, NULL, 0);
271
Andy Green251f6fa2010-11-03 11:13:06 +0000272 wsi->state = WSI_STATE_DEAD_SOCKET;
273
Andy Green4b6fbe12011-02-14 08:03:48 +0000274 /* tell the user it's all over for this guy */
275
Andy Greend4302732011-02-28 07:45:29 +0000276 if (wsi->protocol && wsi->protocol->callback &&
277 old_state == WSI_STATE_ESTABLISHED)
Peter Hinz56885f32011-03-02 22:03:47 +0000278 wsi->protocol->callback(context, wsi, LWS_CALLBACK_CLOSED,
Andy Greene77ddd82010-11-13 10:03:47 +0000279 wsi->user_space, NULL, 0);
Andy Green251f6fa2010-11-03 11:13:06 +0000280
Andy Greenef660a92011-03-06 10:29:38 +0000281 /* deallocate any active extension contexts */
282
283 for (n = 0; n < wsi->count_active_extensions; n++) {
284 if (!wsi->active_extensions[n]->callback)
285 continue;
286
287 wsi->active_extensions[n]->callback(context, wsi,
288 LWS_EXT_CALLBACK_DESTROY,
289 wsi->active_extensions_user[n], NULL, 0);
290
291 free(wsi->active_extensions_user[n]);
292 }
293
294 /* free up his parsing allocations */
Andy Green4b6fbe12011-02-14 08:03:48 +0000295
Andy Green251f6fa2010-11-03 11:13:06 +0000296 for (n = 0; n < WSI_TOKEN_COUNT; n++)
297 if (wsi->utf8_token[n].token)
298 free(wsi->utf8_token[n].token);
299
Andy Green0ca6a172010-12-19 20:50:01 +0000300/* fprintf(stderr, "closing fd=%d\n", wsi->sock); */
Andy Green251f6fa2010-11-03 11:13:06 +0000301
Andy Green3faa9c72010-11-08 17:03:03 +0000302#ifdef LWS_OPENSSL_SUPPORT
Andy Green90c7cbc2011-01-27 06:26:52 +0000303 if (wsi->ssl) {
Andy Green3faa9c72010-11-08 17:03:03 +0000304 n = SSL_get_fd(wsi->ssl);
305 SSL_shutdown(wsi->ssl);
Peter Hinz56885f32011-03-02 22:03:47 +0000306#ifdef WIN32
307 closesocket(n);
308#else
Andy Green3faa9c72010-11-08 17:03:03 +0000309 close(n);
Peter Hinz56885f32011-03-02 22:03:47 +0000310#endif
Andy Green3faa9c72010-11-08 17:03:03 +0000311 SSL_free(wsi->ssl);
312 } else {
313#endif
314 shutdown(wsi->sock, SHUT_RDWR);
Peter Hinz56885f32011-03-02 22:03:47 +0000315#ifdef WIN32
316 closesocket(wsi->sock);
317#else
Andy Green3faa9c72010-11-08 17:03:03 +0000318 close(wsi->sock);
Peter Hinz56885f32011-03-02 22:03:47 +0000319#endif
Andy Green3faa9c72010-11-08 17:03:03 +0000320#ifdef LWS_OPENSSL_SUPPORT
321 }
322#endif
Andy Green4f3943a2010-11-12 10:44:16 +0000323 if (wsi->user_space)
324 free(wsi->user_space);
325
Andy Green251f6fa2010-11-03 11:13:06 +0000326 free(wsi);
327}
328
Andy Green07034092011-02-13 08:37:12 +0000329/**
Andy Greenf7ee5492011-02-13 09:04:21 +0000330 * libwebsockets_hangup_on_client() - Server calls to terminate client
331 * connection
Peter Hinz56885f32011-03-02 22:03:47 +0000332 * @context: libwebsockets context
Andy Greenf7ee5492011-02-13 09:04:21 +0000333 * @fd: Connection socket descriptor
334 */
335
336void
Peter Hinz56885f32011-03-02 22:03:47 +0000337libwebsockets_hangup_on_client(struct libwebsocket_context *context, int fd)
Andy Greenf7ee5492011-02-13 09:04:21 +0000338{
Peter Hinz56885f32011-03-02 22:03:47 +0000339 struct libwebsocket *wsi = wsi_from_fd(context, fd);
Andy Greenf7ee5492011-02-13 09:04:21 +0000340
341 if (wsi == NULL)
342 return;
343
Peter Hinz56885f32011-03-02 22:03:47 +0000344 libwebsocket_close_and_free_session(context, wsi,
Andy Green6da560c2011-02-26 11:06:27 +0000345 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenf7ee5492011-02-13 09:04:21 +0000346}
347
348
349/**
Andy Green07034092011-02-13 08:37:12 +0000350 * libwebsockets_get_peer_addresses() - Get client address information
351 * @fd: Connection socket descriptor
352 * @name: Buffer to take client address name
353 * @name_len: Length of client address name buffer
354 * @rip: Buffer to take client address IP qotted quad
355 * @rip_len: Length of client address IP buffer
356 *
357 * This function fills in @name and @rip with the name and IP of
358 * the client connected with socket descriptor @fd. Names may be
359 * truncated if there is not enough room. If either cannot be
360 * determined, they will be returned as valid zero-length strings.
361 */
362
363void
364libwebsockets_get_peer_addresses(int fd, char *name, int name_len,
365 char *rip, int rip_len)
366{
367 unsigned int len;
368 struct sockaddr_in sin;
369 struct hostent *host;
370 struct hostent *host1;
371 char ip[128];
372 char *p;
373 int n;
374
375 rip[0] = '\0';
376 name[0] = '\0';
377
378 len = sizeof sin;
379 if (getpeername(fd, (struct sockaddr *) &sin, &len) < 0) {
380 perror("getpeername");
381 return;
382 }
383
384 host = gethostbyaddr((char *) &sin.sin_addr, sizeof sin.sin_addr,
385 AF_INET);
386 if (host == NULL) {
387 perror("gethostbyaddr");
388 return;
389 }
390
391 strncpy(name, host->h_name, name_len);
392 name[name_len - 1] = '\0';
393
394 host1 = gethostbyname(host->h_name);
395 if (host1 == NULL)
396 return;
397 p = (char *)host1;
398 n = 0;
399 while (p != NULL) {
400 p = host1->h_addr_list[n++];
401 if (p == NULL)
402 continue;
403 if (host1->h_addrtype != AF_INET)
404 continue;
405
406 sprintf(ip, "%d.%d.%d.%d",
407 p[0], p[1], p[2], p[3]);
408 p = NULL;
409 strncpy(rip, ip, rip_len);
410 rip[rip_len - 1] = '\0';
411 }
412}
Andy Green9f990342011-02-12 11:57:45 +0000413
Peter Hinz56885f32011-03-02 22:03:47 +0000414int libwebsockets_get_random(struct libwebsocket_context *context,
415 void *buf, int len)
416{
417 int n;
418 char *p = buf;
419
420#ifdef WIN32
421 for (n = 0; n < len; n++)
422 p[n] = (unsigned char)rand();
423#else
424 n = read(context->fd_random, p, len);
425#endif
426
427 return n;
428}
429
Andy Greeneeaacb32011-03-01 20:44:24 +0000430void libwebsockets_00_spaceout(char *key, int spaces, int seed)
431{
432 char *p;
Peter Hinz56885f32011-03-02 22:03:47 +0000433
Andy Greeneeaacb32011-03-01 20:44:24 +0000434 key++;
435 while (spaces--) {
436 if (*key && (seed & 1))
437 key++;
438 seed >>= 1;
Peter Hinz56885f32011-03-02 22:03:47 +0000439
Andy Greeneeaacb32011-03-01 20:44:24 +0000440 p = key + strlen(key);
441 while (p >= key) {
442 p[1] = p[0];
443 p--;
444 }
445 *key++ = ' ';
446 }
447}
448
449void libwebsockets_00_spam(char *key, int count, int seed)
450{
451 char *p;
452
453 key++;
454 while (count--) {
455
456 if (*key && (seed & 1))
457 key++;
458 seed >>= 1;
459
460 p = key + strlen(key);
461 while (p >= key) {
462 p[1] = p[0];
463 p--;
464 }
465 *key++ = 0x21 + ((seed & 0xffff) % 15);
466 /* 4 would use it up too fast.. not like it matters */
467 seed >>= 1;
468 }
469}
470
Andy Green95a7b5d2011-03-06 10:29:39 +0000471int lws_send_pipe_choked(struct libwebsocket *wsi)
472{
473 struct pollfd fds;
474
475 fds.fd = wsi->sock;
476 fds.events = POLLOUT;
477 fds.revents = 0;
478
479 if (poll(&fds, 1, 0) != 1)
480 return 1;
481
482 if ((fds.revents & POLLOUT) == 0)
483 return 1;
484
485 /* okay to send another packet without blocking */
486
487 return 0;
488}
489
Andy Green3b84c002011-03-06 13:14:42 +0000490static int
491lws_handle_POLLOUT_event(struct libwebsocket_context *context,
492 struct libwebsocket *wsi, struct pollfd *pollfd)
493{
494 struct lws_tokens eff_buf;
495 int n;
496 int ret;
497 int m;
498
499 if (!wsi->extension_data_pending)
500 goto user_service;
501
502 /*
503 * check in on the active extensions, see if they
504 * had pending stuff to spill... they need to get the
505 * first look-in otherwise sequence will be disordered
506 *
507 * NULL, zero-length eff_buf means just spill pending
508 */
509
510 ret = 1;
511 while (ret == 1) {
512
513 /* default to nobody has more to spill */
514
515 ret = 0;
516 eff_buf.token = NULL;
517 eff_buf.token_len = 0;
518
519 /* give every extension a chance to spill */
520
521 for (n = 0; n < wsi->count_active_extensions; n++) {
522 m = wsi->active_extensions[n]->callback(
523 wsi->protocol->owning_server, wsi,
524 LWS_EXT_CALLBACK_PACKET_TX_PRESEND,
525 wsi->active_extensions_user[n], &eff_buf, 0);
526 if (m < 0) {
527 fprintf(stderr, "extension reports fatal error\n");
528 return -1;
529 }
530 if (m)
531 /*
532 * at least one extension told us he has more
533 * to spill, so we will go around again after
534 */
535 ret = 1;
536 }
537
538 /* assuming they gave us something to send, send it */
539
540 if (eff_buf.token_len) {
541 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
542 eff_buf.token_len))
543 return -1;
544 } else
545 continue;
546
547 /* no extension has more to spill */
548
549 if (!ret)
550 continue;
551
552 /*
553 * There's more to spill from an extension, but we just sent
554 * something... did that leave the pipe choked?
555 */
556
557 if (!lws_send_pipe_choked(wsi))
558 /* no we could add more */
559 continue;
560
561 fprintf(stderr, "choked in POLLOUT service\n");
562
563 /*
564 * Yes, he's choked. Leave the POLLOUT masked on so we will
565 * come back here when he is unchoked. Don't call the user
566 * callback to enforce ordering of spilling, he'll get called
567 * when we come back here and there's nothing more to spill.
568 */
569
570 return 0;
571 }
572
573 wsi->extension_data_pending = 0;
574
575user_service:
576 /* one shot */
577
578 pollfd->events &= ~POLLOUT;
579
580 /* external POLL support via protocol 0 */
581 context->protocols[0].callback(context, wsi,
582 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
583 (void *)(long)wsi->sock, NULL, POLLOUT);
584
585 wsi->protocol->callback(context, wsi,
586 LWS_CALLBACK_CLIENT_WRITEABLE,
587 wsi->user_space,
588 NULL, 0);
589
590 return 0;
591}
592
593
594
Andy Green9f990342011-02-12 11:57:45 +0000595/**
596 * libwebsocket_service_fd() - Service polled socket with something waiting
Peter Hinz56885f32011-03-02 22:03:47 +0000597 * @context: Websocket context
Andy Green9f990342011-02-12 11:57:45 +0000598 * @pollfd: The pollfd entry describing the socket fd and which events
599 * happened.
600 *
601 * This function closes any active connections and then frees the
602 * context. After calling this, any further use of the context is
603 * undefined.
604 */
605
606int
Peter Hinz56885f32011-03-02 22:03:47 +0000607libwebsocket_service_fd(struct libwebsocket_context *context,
Andy Green0d338332011-02-12 11:57:43 +0000608 struct pollfd *pollfd)
Andy Greenb45993c2010-12-18 15:13:50 +0000609{
Andy Green3b84c002011-03-06 13:14:42 +0000610 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 1 + MAX_BROADCAST_PAYLOAD +
Andy Greenb45993c2010-12-18 15:13:50 +0000611 LWS_SEND_BUFFER_POST_PADDING];
Andy Greena71eafc2011-02-14 17:59:43 +0000612 struct libwebsocket *wsi;
Andy Green0d338332011-02-12 11:57:43 +0000613 struct libwebsocket *new_wsi;
Andy Greenb45993c2010-12-18 15:13:50 +0000614 int n;
Andy Green0d338332011-02-12 11:57:43 +0000615 int m;
Andy Greenb45993c2010-12-18 15:13:50 +0000616 size_t len;
Andy Green0d338332011-02-12 11:57:43 +0000617 int accept_fd;
618 unsigned int clilen;
619 struct sockaddr_in cli_addr;
Andy Greena71eafc2011-02-14 17:59:43 +0000620 struct timeval tv;
Andy Greenbe93fef2011-02-14 20:25:43 +0000621 static const char magic_websocket_guid[] =
622 "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
623 static const char magic_websocket_04_masking_guid[] =
624 "61AC5F19-FBBA-4540-B96F-6561F1AB40A8";
625 char hash[20];
626 char pkt[1024];
627 char *p = &pkt[0];
628 const char *pc;
Andy Green2366b1c2011-03-06 13:15:31 +0000629 const char *c;
630 int more = 1;
Andy Greenbe93fef2011-02-14 20:25:43 +0000631 int okay = 0;
Andy Green2366b1c2011-03-06 13:15:31 +0000632 char ext_name[128];
Andy Green98a717c2011-03-06 13:14:15 +0000633 struct lws_tokens eff_buf;
Andy Greenc6517fa2011-03-06 13:15:29 +0000634 int ext_count = 0;
635 struct libwebsocket_extension *ext;
636
Andy Greenbe93fef2011-02-14 20:25:43 +0000637#ifdef LWS_OPENSSL_SUPPORT
638 char ssl_err_buf[512];
639#endif
Andy Greena71eafc2011-02-14 17:59:43 +0000640 /*
641 * you can call us with pollfd = NULL to just allow the once-per-second
642 * global timeout checks; if less than a second since the last check
643 * it returns immediately then.
644 */
645
646 gettimeofday(&tv, NULL);
647
Peter Hinz56885f32011-03-02 22:03:47 +0000648 if (context->last_timeout_check_s != tv.tv_sec) {
649 context->last_timeout_check_s = tv.tv_sec;
Andy Greena71eafc2011-02-14 17:59:43 +0000650
651 /* global timeout check once per second */
652
Peter Hinz56885f32011-03-02 22:03:47 +0000653 for (n = 0; n < context->fds_count; n++) {
654 wsi = wsi_from_fd(context, context->fds[n].fd);
Andy Greena71eafc2011-02-14 17:59:43 +0000655 if (!wsi->pending_timeout)
656 continue;
657
658 /*
659 * if we went beyond the allowed time, kill the
660 * connection
661 */
662
Andy Greenda527df2011-03-07 07:08:12 +0000663 if (tv.tv_sec > wsi->pending_timeout_limit) {
664 fprintf(stderr, "TIMEDOUT WAITING\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000665 libwebsocket_close_and_free_session(context,
666 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenda527df2011-03-07 07:08:12 +0000667 }
Andy Greena71eafc2011-02-14 17:59:43 +0000668 }
669 }
670
671 /* just here for timeout management? */
672
673 if (pollfd == NULL)
674 return 0;
675
676 /* no, here to service a socket descriptor */
677
Peter Hinz56885f32011-03-02 22:03:47 +0000678 wsi = wsi_from_fd(context, pollfd->fd);
Andy Greenb45993c2010-12-18 15:13:50 +0000679
Andy Green0d338332011-02-12 11:57:43 +0000680 if (wsi == NULL)
681 return 1;
Andy Green8f037e42010-12-19 22:13:26 +0000682
Andy Green0d338332011-02-12 11:57:43 +0000683 switch (wsi->mode) {
684 case LWS_CONNMODE_SERVER_LISTENER:
685
686 /* pollin means a client has connected to us then */
687
688 if (!pollfd->revents & POLLIN)
689 break;
690
691 /* listen socket got an unencrypted connection... */
692
693 clilen = sizeof(cli_addr);
694 accept_fd = accept(pollfd->fd, (struct sockaddr *)&cli_addr,
695 &clilen);
696 if (accept_fd < 0) {
697 fprintf(stderr, "ERROR on accept");
698 break;
699 }
700
Peter Hinz56885f32011-03-02 22:03:47 +0000701 if (context->fds_count >= MAX_CLIENTS) {
Andy Green3221f922011-02-12 13:14:11 +0000702 fprintf(stderr, "too busy to accept new client\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000703#ifdef WIN32
704 closesocket(accept_fd);
705#else
Andy Green0d338332011-02-12 11:57:43 +0000706 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +0000707#endif
Andy Green0d338332011-02-12 11:57:43 +0000708 break;
709 }
710
Andy Green07034092011-02-13 08:37:12 +0000711 /*
712 * look at who we connected to and give user code a chance
713 * to reject based on client IP. There's no protocol selected
714 * yet so we issue this to protocols[0]
715 */
716
Peter Hinz56885f32011-03-02 22:03:47 +0000717 if ((context->protocols[0].callback)(context, wsi,
Andy Green07034092011-02-13 08:37:12 +0000718 LWS_CALLBACK_FILTER_NETWORK_CONNECTION,
719 (void*)(long)accept_fd, NULL, 0)) {
720 fprintf(stderr, "Callback denied network connection\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000721#ifdef WIN32
722 closesocket(accept_fd);
723#else
Andy Green07034092011-02-13 08:37:12 +0000724 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +0000725#endif
Andy Green07034092011-02-13 08:37:12 +0000726 break;
727 }
728
Andy Green0d338332011-02-12 11:57:43 +0000729 /* accepting connection to main listener */
730
731 new_wsi = malloc(sizeof(struct libwebsocket));
732 if (new_wsi == NULL) {
733 fprintf(stderr, "Out of memory for new connection\n");
734 break;
735 }
736
737 memset(new_wsi, 0, sizeof (struct libwebsocket));
738 new_wsi->sock = accept_fd;
Andy Greend6e09112011-03-05 16:12:15 +0000739 new_wsi->count_active_extensions = 0;
Andy Greena71eafc2011-02-14 17:59:43 +0000740 new_wsi->pending_timeout = NO_PENDING_TIMEOUT;
Andy Green0d338332011-02-12 11:57:43 +0000741
742#ifdef LWS_OPENSSL_SUPPORT
743 new_wsi->ssl = NULL;
Andy Green0d338332011-02-12 11:57:43 +0000744
Peter Hinz56885f32011-03-02 22:03:47 +0000745 if (context->use_ssl) {
Andy Green0d338332011-02-12 11:57:43 +0000746
Peter Hinz56885f32011-03-02 22:03:47 +0000747 new_wsi->ssl = SSL_new(context->ssl_ctx);
Andy Green0d338332011-02-12 11:57:43 +0000748 if (new_wsi->ssl == NULL) {
749 fprintf(stderr, "SSL_new failed: %s\n",
750 ERR_error_string(SSL_get_error(
751 new_wsi->ssl, 0), NULL));
Andy Green1f9bf522011-02-14 21:14:37 +0000752 libwebsockets_decode_ssl_error();
Andy Green0d338332011-02-12 11:57:43 +0000753 free(new_wsi);
754 break;
755 }
756
757 SSL_set_fd(new_wsi->ssl, accept_fd);
758
759 n = SSL_accept(new_wsi->ssl);
760 if (n != 1) {
761 /*
762 * browsers seem to probe with various
763 * ssl params which fail then retry
764 * and succeed
765 */
766 debug("SSL_accept failed skt %u: %s\n",
767 pollfd->fd,
768 ERR_error_string(SSL_get_error(
769 new_wsi->ssl, n), NULL));
770 SSL_free(
771 new_wsi->ssl);
772 free(new_wsi);
773 break;
774 }
Andy Greenc6bf2c22011-02-20 11:10:47 +0000775
Andy Green0d338332011-02-12 11:57:43 +0000776 debug("accepted new SSL conn "
777 "port %u on fd=%d SSL ver %s\n",
778 ntohs(cli_addr.sin_port), accept_fd,
779 SSL_get_version(new_wsi->ssl));
780
781 } else
782#endif
783 debug("accepted new conn port %u on fd=%d\n",
784 ntohs(cli_addr.sin_port), accept_fd);
785
786 /* intialize the instance struct */
787
788 new_wsi->state = WSI_STATE_HTTP;
789 new_wsi->name_buffer_pos = 0;
790 new_wsi->mode = LWS_CONNMODE_WS_SERVING;
791
792 for (n = 0; n < WSI_TOKEN_COUNT; n++) {
793 new_wsi->utf8_token[n].token = NULL;
794 new_wsi->utf8_token[n].token_len = 0;
795 }
796
797 /*
798 * these can only be set once the protocol is known
799 * we set an unestablished connection's protocol pointer
800 * to the start of the supported list, so it can look
801 * for matching ones during the handshake
802 */
Peter Hinz56885f32011-03-02 22:03:47 +0000803 new_wsi->protocol = context->protocols;
Andy Green0d338332011-02-12 11:57:43 +0000804 new_wsi->user_space = NULL;
805
806 /*
807 * Default protocol is 76 / 00
808 * After 76, there's a header specified to inform which
809 * draft the client wants, when that's seen we modify
810 * the individual connection's spec revision accordingly
811 */
812 new_wsi->ietf_spec_revision = 0;
813
Peter Hinz56885f32011-03-02 22:03:47 +0000814 insert_wsi(context, new_wsi);
Andy Green0d338332011-02-12 11:57:43 +0000815
Andy Green0d338332011-02-12 11:57:43 +0000816 /*
817 * make sure NO events are seen yet on this new socket
818 * (otherwise we inherit old fds[client].revents from
819 * previous socket there and die mysteriously! )
820 */
Peter Hinz56885f32011-03-02 22:03:47 +0000821 context->fds[context->fds_count].revents = 0;
Andy Green0d338332011-02-12 11:57:43 +0000822
Peter Hinz56885f32011-03-02 22:03:47 +0000823 context->fds[context->fds_count].events = POLLIN;
824 context->fds[context->fds_count++].fd = accept_fd;
Andy Green0d338332011-02-12 11:57:43 +0000825
Andy Green3221f922011-02-12 13:14:11 +0000826 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +0000827 context->protocols[0].callback(context, new_wsi,
Andy Green3221f922011-02-12 13:14:11 +0000828 LWS_CALLBACK_ADD_POLL_FD,
829 (void *)(long)accept_fd, NULL, POLLIN);
830
Andy Green0d338332011-02-12 11:57:43 +0000831 break;
832
833 case LWS_CONNMODE_BROADCAST_PROXY_LISTENER:
834
835 /* as we are listening, POLLIN means accept() is needed */
836
837 if (!pollfd->revents & POLLIN)
838 break;
839
840 /* listen socket got an unencrypted connection... */
841
842 clilen = sizeof(cli_addr);
843 accept_fd = accept(pollfd->fd, (struct sockaddr *)&cli_addr,
844 &clilen);
845 if (accept_fd < 0) {
846 fprintf(stderr, "ERROR on accept");
847 break;
848 }
849
Peter Hinz56885f32011-03-02 22:03:47 +0000850 if (context->fds_count >= MAX_CLIENTS) {
Andy Green3221f922011-02-12 13:14:11 +0000851 fprintf(stderr, "too busy to accept new broadcast "
852 "proxy client\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000853#ifdef WIN32
854 closesocket(accept_fd);
855#else
Andy Green0d338332011-02-12 11:57:43 +0000856 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +0000857#endif
Andy Green0d338332011-02-12 11:57:43 +0000858 break;
859 }
860
861 /* create a dummy wsi for the connection and add it */
862
863 new_wsi = malloc(sizeof(struct libwebsocket));
864 memset(new_wsi, 0, sizeof (struct libwebsocket));
865 new_wsi->sock = accept_fd;
866 new_wsi->mode = LWS_CONNMODE_BROADCAST_PROXY;
867 new_wsi->state = WSI_STATE_ESTABLISHED;
Andy Greend6e09112011-03-05 16:12:15 +0000868 new_wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +0000869 /* note which protocol we are proxying */
870 new_wsi->protocol_index_for_broadcast_proxy =
871 wsi->protocol_index_for_broadcast_proxy;
Peter Hinz56885f32011-03-02 22:03:47 +0000872 insert_wsi(context, new_wsi);
Andy Green0d338332011-02-12 11:57:43 +0000873
874 /* add connected socket to internal poll array */
875
Peter Hinz56885f32011-03-02 22:03:47 +0000876 context->fds[context->fds_count].revents = 0;
877 context->fds[context->fds_count].events = POLLIN;
878 context->fds[context->fds_count++].fd = accept_fd;
Andy Green0d338332011-02-12 11:57:43 +0000879
Andy Green3221f922011-02-12 13:14:11 +0000880 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +0000881 context->protocols[0].callback(context, new_wsi,
Andy Green3221f922011-02-12 13:14:11 +0000882 LWS_CALLBACK_ADD_POLL_FD,
883 (void *)(long)accept_fd, NULL, POLLIN);
884
Andy Green0d338332011-02-12 11:57:43 +0000885 break;
886
887 case LWS_CONNMODE_BROADCAST_PROXY:
Andy Green8f037e42010-12-19 22:13:26 +0000888
Andy Greenb45993c2010-12-18 15:13:50 +0000889 /* handle session socket closed */
Andy Green8f037e42010-12-19 22:13:26 +0000890
Andy Green0d338332011-02-12 11:57:43 +0000891 if (pollfd->revents & (POLLERR | POLLHUP)) {
Andy Green8f037e42010-12-19 22:13:26 +0000892
Andy Green0d338332011-02-12 11:57:43 +0000893 debug("Session Socket %p (fd=%d) dead\n",
Timothy J Fontaineb86d64e2011-02-14 17:55:27 +0000894 (void *)wsi, pollfd->fd);
Andy Greenb45993c2010-12-18 15:13:50 +0000895
Peter Hinz56885f32011-03-02 22:03:47 +0000896 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000897 LWS_CLOSE_STATUS_NORMAL);
Andy Green4b6fbe12011-02-14 08:03:48 +0000898 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +0000899 }
Andy Green8f037e42010-12-19 22:13:26 +0000900
Andy Green3b84c002011-03-06 13:14:42 +0000901 /*
902 * either extension code with stuff to spill, or the user code,
903 * requested a callback when it was OK to write
904 */
Andy Green90c7cbc2011-01-27 06:26:52 +0000905
Andy Green3b84c002011-03-06 13:14:42 +0000906 if (pollfd->revents & POLLOUT)
907 if (lws_handle_POLLOUT_event(context, wsi, pollfd) < 0) {
908 libwebsocket_close_and_free_session(context, wsi,
909 LWS_CLOSE_STATUS_NORMAL);
910 return 1;
911 }
Andy Green90c7cbc2011-01-27 06:26:52 +0000912
Andy Greenb45993c2010-12-18 15:13:50 +0000913 /* any incoming data ready? */
914
Andy Green0d338332011-02-12 11:57:43 +0000915 if (!(pollfd->revents & POLLIN))
916 break;
Andy Greenb45993c2010-12-18 15:13:50 +0000917
Andy Green0d338332011-02-12 11:57:43 +0000918 /* get the issued broadcast payload from the socket */
Andy Greenb45993c2010-12-18 15:13:50 +0000919
Andy Green0d338332011-02-12 11:57:43 +0000920 len = read(pollfd->fd, buf + LWS_SEND_BUFFER_PRE_PADDING,
921 MAX_BROADCAST_PAYLOAD);
922 if (len < 0) {
923 fprintf(stderr, "Error reading broadcast payload\n");
Andy Green4b6fbe12011-02-14 08:03:48 +0000924 break;
Andy Green0d338332011-02-12 11:57:43 +0000925 }
Andy Greenb45993c2010-12-18 15:13:50 +0000926
Andy Green0d338332011-02-12 11:57:43 +0000927 /* broadcast it to all guys with this protocol index */
Andy Green8f037e42010-12-19 22:13:26 +0000928
Andy Green0d338332011-02-12 11:57:43 +0000929 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
Andy Green8f037e42010-12-19 22:13:26 +0000930
Peter Hinz56885f32011-03-02 22:03:47 +0000931 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Greenb45993c2010-12-18 15:13:50 +0000932
Peter Hinz56885f32011-03-02 22:03:47 +0000933 new_wsi = context->fd_hashtable[n].wsi[m];
Andy Greenb45993c2010-12-18 15:13:50 +0000934
Andy Green0d338332011-02-12 11:57:43 +0000935 /* only to clients we are serving to */
Andy Greenb45993c2010-12-18 15:13:50 +0000936
Andy Green0d338332011-02-12 11:57:43 +0000937 if (new_wsi->mode != LWS_CONNMODE_WS_SERVING)
Andy Greenb45993c2010-12-18 15:13:50 +0000938 continue;
939
940 /*
941 * never broadcast to non-established
942 * connection
943 */
944
Andy Green0d338332011-02-12 11:57:43 +0000945 if (new_wsi->state != WSI_STATE_ESTABLISHED)
Andy Green4739e5c2011-01-22 12:51:57 +0000946 continue;
947
Andy Greenb45993c2010-12-18 15:13:50 +0000948 /*
949 * only broadcast to connections using
950 * the requested protocol
951 */
952
Andy Green0d338332011-02-12 11:57:43 +0000953 if (new_wsi->protocol->protocol_index !=
954 wsi->protocol_index_for_broadcast_proxy)
Andy Greenb45993c2010-12-18 15:13:50 +0000955 continue;
956
Andy Green8f037e42010-12-19 22:13:26 +0000957 /* broadcast it to this connection */
958
Peter Hinz56885f32011-03-02 22:03:47 +0000959 new_wsi->protocol->callback(context, new_wsi,
Andy Green8f037e42010-12-19 22:13:26 +0000960 LWS_CALLBACK_BROADCAST,
Andy Green0d338332011-02-12 11:57:43 +0000961 new_wsi->user_space,
Andy Green0ca6a172010-12-19 20:50:01 +0000962 buf + LWS_SEND_BUFFER_PRE_PADDING, len);
Andy Greenb45993c2010-12-18 15:13:50 +0000963 }
Andy Green0d338332011-02-12 11:57:43 +0000964 }
965 break;
Andy Greenb45993c2010-12-18 15:13:50 +0000966
Andy Greenbe93fef2011-02-14 20:25:43 +0000967 case LWS_CONNMODE_WS_CLIENT_WAITING_PROXY_REPLY:
968
969 /* handle proxy hung up on us */
970
971 if (pollfd->revents & (POLLERR | POLLHUP)) {
972
973 fprintf(stderr, "Proxy connection %p (fd=%d) dead\n",
974 (void *)wsi, pollfd->fd);
975
Peter Hinz56885f32011-03-02 22:03:47 +0000976 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000977 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000978 return 1;
979 }
980
981 n = recv(wsi->sock, pkt, sizeof pkt, 0);
982 if (n < 0) {
Peter Hinz56885f32011-03-02 22:03:47 +0000983 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000984 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000985 fprintf(stderr, "ERROR reading from proxy socket\n");
986 return 1;
987 }
988
989 pkt[13] = '\0';
990 if (strcmp(pkt, "HTTP/1.0 200 ") != 0) {
Peter Hinz56885f32011-03-02 22:03:47 +0000991 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000992 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000993 fprintf(stderr, "ERROR from proxy: %s\n", pkt);
994 return 1;
995 }
996
997 /* clear his proxy connection timeout */
998
999 libwebsocket_set_timeout(wsi, NO_PENDING_TIMEOUT, 0);
1000
1001 /* fallthru */
1002
1003 case LWS_CONNMODE_WS_CLIENT_ISSUE_HANDSHAKE:
1004
1005 #ifdef LWS_OPENSSL_SUPPORT
1006 if (wsi->use_ssl) {
1007
Peter Hinz56885f32011-03-02 22:03:47 +00001008 wsi->ssl = SSL_new(context->ssl_client_ctx);
1009 wsi->client_bio = BIO_new_socket(wsi->sock,
1010 BIO_NOCLOSE);
Andy Greenbe93fef2011-02-14 20:25:43 +00001011 SSL_set_bio(wsi->ssl, wsi->client_bio, wsi->client_bio);
1012
Andy Green6901cb32011-02-21 08:06:47 +00001013 SSL_set_ex_data(wsi->ssl,
Andy Green2e24da02011-03-05 16:12:04 +00001014 openssl_websocket_private_data_index,
Peter Hinz56885f32011-03-02 22:03:47 +00001015 context);
Andy Green6901cb32011-02-21 08:06:47 +00001016
Andy Greenbe93fef2011-02-14 20:25:43 +00001017 if (SSL_connect(wsi->ssl) <= 0) {
1018 fprintf(stderr, "SSL connect error %s\n",
Andy Green687b0182011-02-26 11:04:01 +00001019 ERR_error_string(ERR_get_error(),
1020 ssl_err_buf));
Peter Hinz56885f32011-03-02 22:03:47 +00001021 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001022 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001023 return 1;
1024 }
1025
1026 n = SSL_get_verify_result(wsi->ssl);
Andy Green2e24da02011-03-05 16:12:04 +00001027 if ((n != X509_V_OK) && (
Andy Green687b0182011-02-26 11:04:01 +00001028 n != X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT ||
1029 wsi->use_ssl != 2)) {
Andy Greenbe93fef2011-02-14 20:25:43 +00001030
Andy Green687b0182011-02-26 11:04:01 +00001031 fprintf(stderr, "server's cert didn't "
1032 "look good %d\n", n);
Peter Hinz56885f32011-03-02 22:03:47 +00001033 libwebsocket_close_and_free_session(context,
1034 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Green687b0182011-02-26 11:04:01 +00001035 return 1;
Andy Greenbe93fef2011-02-14 20:25:43 +00001036 }
1037 } else {
1038 wsi->ssl = NULL;
1039 #endif
1040
1041
1042 #ifdef LWS_OPENSSL_SUPPORT
1043 }
1044 #endif
1045
1046 /*
1047 * create the random key
1048 */
1049
Peter Hinz56885f32011-03-02 22:03:47 +00001050 n = libwebsockets_get_random(context, hash, 16);
Andy Greenbe93fef2011-02-14 20:25:43 +00001051 if (n != 16) {
1052 fprintf(stderr, "Unable to read from random dev %s\n",
1053 SYSTEM_RANDOM_FILEPATH);
1054 free(wsi->c_path);
1055 free(wsi->c_host);
Andy Green08d33922011-02-26 10:22:49 +00001056 if (wsi->c_origin)
1057 free(wsi->c_origin);
Andy Greenbe93fef2011-02-14 20:25:43 +00001058 if (wsi->c_protocol)
1059 free(wsi->c_protocol);
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_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001062 return 1;
1063 }
1064
1065 lws_b64_encode_string(hash, 16, wsi->key_b64,
1066 sizeof wsi->key_b64);
1067
1068 /*
Andy Greeneeaacb32011-03-01 20:44:24 +00001069 * 00 example client handshake
1070 *
1071 * GET /socket.io/websocket HTTP/1.1
1072 * Upgrade: WebSocket
1073 * Connection: Upgrade
1074 * Host: 127.0.0.1:9999
1075 * Origin: http://127.0.0.1
1076 * Sec-WebSocket-Key1: 1 0 2#0W 9 89 7 92 ^
1077 * Sec-WebSocket-Key2: 7 7Y 4328 B2v[8(z1
1078 * Cookie: socketio=websocket
1079 *
1080 * (Á®Ä0¶†≥
1081 *
Andy Greenbe93fef2011-02-14 20:25:43 +00001082 * 04 example client handshake
1083 *
1084 * GET /chat HTTP/1.1
1085 * Host: server.example.com
1086 * Upgrade: websocket
1087 * Connection: Upgrade
1088 * Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
1089 * Sec-WebSocket-Origin: http://example.com
1090 * Sec-WebSocket-Protocol: chat, superchat
1091 * Sec-WebSocket-Version: 4
1092 */
1093
Andy Green08d33922011-02-26 10:22:49 +00001094 p += sprintf(p, "GET %s HTTP/1.1\x0d\x0a", wsi->c_path);
Andy Greeneeaacb32011-03-01 20:44:24 +00001095
1096 if (wsi->ietf_spec_revision == 0) {
1097 unsigned char spaces_1, spaces_2;
1098 unsigned int max_1, max_2;
1099 unsigned int num_1, num_2;
1100 unsigned long product_1, product_2;
1101 char key_1[40];
1102 char key_2[40];
1103 unsigned int seed;
1104 unsigned int count;
1105 char challenge[16];
1106
Peter Hinz56885f32011-03-02 22:03:47 +00001107 libwebsockets_get_random(context, &spaces_1,
1108 sizeof(char));
1109 libwebsockets_get_random(context, &spaces_2,
1110 sizeof(char));
1111
Andy Greeneeaacb32011-03-01 20:44:24 +00001112 spaces_1 = (spaces_1 % 12) + 1;
1113 spaces_2 = (spaces_2 % 12) + 1;
Peter Hinz56885f32011-03-02 22:03:47 +00001114
Andy Greeneeaacb32011-03-01 20:44:24 +00001115 max_1 = 4294967295 / spaces_1;
1116 max_2 = 4294967295 / spaces_2;
1117
Peter Hinz56885f32011-03-02 22:03:47 +00001118 libwebsockets_get_random(context, &num_1, sizeof(int));
1119 libwebsockets_get_random(context, &num_2, sizeof(int));
1120
Andy Greeneeaacb32011-03-01 20:44:24 +00001121 num_1 = (num_1 % max_1);
1122 num_2 = (num_2 % max_2);
Peter Hinz56885f32011-03-02 22:03:47 +00001123
Andy Greeneeaacb32011-03-01 20:44:24 +00001124 challenge[0] = num_1 >> 24;
1125 challenge[1] = num_1 >> 16;
1126 challenge[2] = num_1 >> 8;
1127 challenge[3] = num_1;
1128 challenge[4] = num_2 >> 24;
1129 challenge[5] = num_2 >> 16;
1130 challenge[6] = num_2 >> 8;
1131 challenge[7] = num_2;
Peter Hinz56885f32011-03-02 22:03:47 +00001132
Andy Greeneeaacb32011-03-01 20:44:24 +00001133 product_1 = num_1 * spaces_1;
1134 product_2 = num_2 * spaces_2;
Peter Hinz56885f32011-03-02 22:03:47 +00001135
Andy Greeneeaacb32011-03-01 20:44:24 +00001136 sprintf(key_1, "%lu", product_1);
1137 sprintf(key_2, "%lu", product_2);
1138
Peter Hinz56885f32011-03-02 22:03:47 +00001139 libwebsockets_get_random(context, &seed, sizeof(int));
1140 libwebsockets_get_random(context, &count, sizeof(int));
1141
Andy Greeneeaacb32011-03-01 20:44:24 +00001142 libwebsockets_00_spam(key_1, (count % 12) + 1, seed);
Peter Hinz56885f32011-03-02 22:03:47 +00001143
1144 libwebsockets_get_random(context, &seed, sizeof(int));
1145 libwebsockets_get_random(context, &count, sizeof(int));
1146
Andy Greeneeaacb32011-03-01 20:44:24 +00001147 libwebsockets_00_spam(key_2, (count % 12) + 1, seed);
Peter Hinz56885f32011-03-02 22:03:47 +00001148
1149 libwebsockets_get_random(context, &seed, sizeof(int));
1150
Andy Greeneeaacb32011-03-01 20:44:24 +00001151 libwebsockets_00_spaceout(key_1, spaces_1, seed);
1152 libwebsockets_00_spaceout(key_2, spaces_2, seed >> 16);
Peter Hinz56885f32011-03-02 22:03:47 +00001153
Andy Greeneeaacb32011-03-01 20:44:24 +00001154 p += sprintf(p, "Upgrade: websocket\x0d\x0a"
1155 "Connection: Upgrade\x0d\x0aHost: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +00001156 wsi->c_host);
Andy Greeneeaacb32011-03-01 20:44:24 +00001157 if (wsi->c_origin)
1158 p += sprintf(p, "Origin: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +00001159 wsi->c_origin);
1160
Andy Greeneeaacb32011-03-01 20:44:24 +00001161 if (wsi->c_protocol)
Peter Hinz56885f32011-03-02 22:03:47 +00001162 p += sprintf(p, "Sec-WebSocket-Protocol: %s"
1163 "\x0d\x0a", wsi->c_protocol);
1164
Andy Greeneeaacb32011-03-01 20:44:24 +00001165 p += sprintf(p, "Sec-WebSocket-Key1: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +00001166 key_1);
Andy Greeneeaacb32011-03-01 20:44:24 +00001167 p += sprintf(p, "Sec-WebSocket-Key2: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +00001168 key_2);
Andy Greeneeaacb32011-03-01 20:44:24 +00001169
Andy Green385e7ad2011-03-01 21:06:02 +00001170 /* give userland a chance to append, eg, cookies */
Peter Hinz56885f32011-03-02 22:03:47 +00001171
1172 context->protocols[0].callback(context, wsi,
1173 LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER,
Andy Green385e7ad2011-03-01 21:06:02 +00001174 NULL, &p, (pkt + sizeof(pkt)) - p - 12);
1175
Andy Greeneeaacb32011-03-01 20:44:24 +00001176 p += sprintf(p, "\x0d\x0a");
Peter Hinz56885f32011-03-02 22:03:47 +00001177
1178 read(context->fd_random, p, 8);
Andy Greeneeaacb32011-03-01 20:44:24 +00001179 memcpy(&challenge[8], p, 8);
1180 p += 8;
Peter Hinz56885f32011-03-02 22:03:47 +00001181
Andy Greeneeaacb32011-03-01 20:44:24 +00001182 /* precompute what we want to see from the server */
Peter Hinz56885f32011-03-02 22:03:47 +00001183
Andy Greeneeaacb32011-03-01 20:44:24 +00001184 MD5((unsigned char *)challenge, 16,
1185 (unsigned char *)wsi->initial_handshake_hash_base64);
Peter Hinz56885f32011-03-02 22:03:47 +00001186
Andy Greeneeaacb32011-03-01 20:44:24 +00001187 goto issue_hdr;
1188 }
1189
Andy Green08d33922011-02-26 10:22:49 +00001190 p += sprintf(p, "Host: %s\x0d\x0a", wsi->c_host);
1191 p += sprintf(p, "Upgrade: websocket\x0d\x0a");
1192 p += sprintf(p, "Connection: Upgrade\x0d\x0a"
Andy Greenbe93fef2011-02-14 20:25:43 +00001193 "Sec-WebSocket-Key: ");
Andy Green08d33922011-02-26 10:22:49 +00001194 strcpy(p, wsi->key_b64);
1195 p += strlen(wsi->key_b64);
1196 p += sprintf(p, "\x0d\x0a");
1197 if (wsi->c_origin)
1198 p += sprintf(p, "Sec-WebSocket-Origin: %s\x0d\x0a",
Andy Greenbe93fef2011-02-14 20:25:43 +00001199 wsi->c_origin);
Andy Green08d33922011-02-26 10:22:49 +00001200 if (wsi->c_protocol)
Andy Greenbe93fef2011-02-14 20:25:43 +00001201 p += sprintf(p, "Sec-WebSocket-Protocol: %s\x0d\x0a",
1202 wsi->c_protocol);
Andy Greenc6517fa2011-03-06 13:15:29 +00001203
1204 /* tell the server what extensions we could support */
1205
1206 p += sprintf(p, "Sec-WebSocket-Extensions: ");
1207
1208 ext =context->extensions;
1209 while (ext && ext->callback) {
1210
1211 n = 0;
1212 n = context->protocols[0].callback(context, wsi,
1213 LWS_CALLBACK_CLIENT_CONFIRM_EXTENSION_SUPPORTED,
1214 wsi->user_space, (char *)ext->name, 0);
1215
1216 /*
1217 * zero return from callback means
1218 * go ahead and allow the extension,
1219 * it's what we get if the callback is
1220 * unhandled
1221 */
1222
1223 if (n) {
1224 ext++;
1225 continue;
1226 }
1227
1228 /* apply it */
1229
1230 if (ext_count)
1231 *p++ = ',';
1232 p += sprintf(p, ext->name);
1233 ext_count++;
1234
1235 ext++;
1236 }
1237
1238 p += sprintf(p, "\x0d\x0a");
1239
1240 if (wsi->ietf_spec_revision)
1241 p += sprintf(p, "Sec-WebSocket-Version: %d\x0d\x0a",
1242 wsi->ietf_spec_revision);
1243
Andy Green385e7ad2011-03-01 21:06:02 +00001244 /* give userland a chance to append, eg, cookies */
Peter Hinz56885f32011-03-02 22:03:47 +00001245
1246 context->protocols[0].callback(context, wsi,
1247 LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER,
1248 NULL, &p, (pkt + sizeof(pkt)) - p - 12);
1249
Andy Green385e7ad2011-03-01 21:06:02 +00001250 p += sprintf(p, "\x0d\x0a");
1251
Andy Greenbe93fef2011-02-14 20:25:43 +00001252 /* prepare the expected server accept response */
1253
1254 strcpy((char *)buf, wsi->key_b64);
1255 strcpy((char *)&buf[strlen((char *)buf)], magic_websocket_guid);
1256
1257 SHA1(buf, strlen((char *)buf), (unsigned char *)hash);
1258
1259 lws_b64_encode_string(hash, 20,
1260 wsi->initial_handshake_hash_base64,
1261 sizeof wsi->initial_handshake_hash_base64);
Peter Hinz56885f32011-03-02 22:03:47 +00001262
Andy Greeneeaacb32011-03-01 20:44:24 +00001263issue_hdr:
Peter Hinz56885f32011-03-02 22:03:47 +00001264
Andy Greeneeaacb32011-03-01 20:44:24 +00001265 /* done with these now */
Peter Hinz56885f32011-03-02 22:03:47 +00001266
Andy Greeneeaacb32011-03-01 20:44:24 +00001267 free(wsi->c_path);
1268 free(wsi->c_host);
1269 if (wsi->c_origin)
1270 free(wsi->c_origin);
1271
Andy Greenbe93fef2011-02-14 20:25:43 +00001272 /* send our request to the server */
1273
1274 #ifdef LWS_OPENSSL_SUPPORT
1275 if (wsi->use_ssl)
1276 n = SSL_write(wsi->ssl, pkt, p - pkt);
1277 else
1278 #endif
1279 n = send(wsi->sock, pkt, p - pkt, 0);
1280
1281 if (n < 0) {
1282 fprintf(stderr, "ERROR writing to client socket\n");
Peter Hinz56885f32011-03-02 22:03:47 +00001283 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001284 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001285 return 1;
1286 }
1287
1288 wsi->parser_state = WSI_TOKEN_NAME_PART;
1289 wsi->mode = LWS_CONNMODE_WS_CLIENT_WAITING_SERVER_REPLY;
1290 libwebsocket_set_timeout(wsi,
1291 PENDING_TIMEOUT_AWAITING_SERVER_RESPONSE, 5);
1292
1293 break;
1294
1295 case LWS_CONNMODE_WS_CLIENT_WAITING_SERVER_REPLY:
1296
1297 /* handle server hung up on us */
1298
1299 if (pollfd->revents & (POLLERR | POLLHUP)) {
1300
1301 fprintf(stderr, "Server connection %p (fd=%d) dead\n",
1302 (void *)wsi, pollfd->fd);
1303
1304 goto bail3;
1305 }
1306
1307
1308 /* interpret the server response */
1309
1310 /*
1311 * HTTP/1.1 101 Switching Protocols
1312 * Upgrade: websocket
1313 * Connection: Upgrade
1314 * Sec-WebSocket-Accept: me89jWimTRKTWwrS3aRrL53YZSo=
1315 * Sec-WebSocket-Nonce: AQIDBAUGBwgJCgsMDQ4PEC==
1316 * Sec-WebSocket-Protocol: chat
1317 */
1318
1319 #ifdef LWS_OPENSSL_SUPPORT
1320 if (wsi->use_ssl)
1321 len = SSL_read(wsi->ssl, pkt, sizeof pkt);
1322 else
1323 #endif
1324 len = recv(wsi->sock, pkt, sizeof pkt, 0);
1325
1326 if (len < 0) {
1327 fprintf(stderr,
1328 "libwebsocket_client_handshake read error\n");
1329 goto bail3;
1330 }
1331
1332 p = pkt;
1333 for (n = 0; n < len; n++)
1334 libwebsocket_parse(wsi, *p++);
1335
1336 if (wsi->parser_state != WSI_PARSING_COMPLETE) {
1337 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001338 "server response failed parsing\n");
Andy Greenbe93fef2011-02-14 20:25:43 +00001339 goto bail3;
1340 }
1341
1342 /*
Andy Greeneeaacb32011-03-01 20:44:24 +00001343 * 00 / 76 -->
1344 *
1345 * HTTP/1.1 101 WebSocket Protocol Handshake
1346 * Upgrade: WebSocket
1347 * Connection: Upgrade
1348 * Sec-WebSocket-Origin: http://127.0.0.1
1349 * Sec-WebSocket-Location: ws://127.0.0.1:9999/socket.io/websocket
1350 *
1351 * xxxxxxxxxxxxxxxx
1352 */
Peter Hinz56885f32011-03-02 22:03:47 +00001353
Andy Greeneeaacb32011-03-01 20:44:24 +00001354 if (wsi->ietf_spec_revision == 0) {
1355 if (!wsi->utf8_token[WSI_TOKEN_HTTP].token_len ||
Peter Hinz56885f32011-03-02 22:03:47 +00001356 !wsi->utf8_token[WSI_TOKEN_UPGRADE].token_len ||
1357 !wsi->utf8_token[WSI_TOKEN_CHALLENGE].token_len ||
1358 !wsi->utf8_token[WSI_TOKEN_CONNECTION].token_len ||
1359 (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len &&
1360 wsi->c_protocol != NULL)) {
Andy Greeneeaacb32011-03-01 20:44:24 +00001361 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001362 "missing required header(s)\n");
Andy Greeneeaacb32011-03-01 20:44:24 +00001363 pkt[len] = '\0';
1364 fprintf(stderr, "%s", pkt);
1365 goto bail3;
1366 }
Andy Greeneeaacb32011-03-01 20:44:24 +00001367
Peter Hinz56885f32011-03-02 22:03:47 +00001368 strtolower(wsi->utf8_token[WSI_TOKEN_HTTP].token);
1369 if (strcmp(wsi->utf8_token[WSI_TOKEN_HTTP].token,
1370 "101 websocket protocol handshake")) {
Andy Greeneeaacb32011-03-01 20:44:24 +00001371 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001372 "server sent bad HTTP response '%s'\n",
1373 wsi->utf8_token[WSI_TOKEN_HTTP].token);
1374 goto bail3;
1375 }
1376
1377 if (wsi->utf8_token[WSI_TOKEN_CHALLENGE].token_len <
1378 16) {
1379 fprintf(stderr, "libwebsocket_client_handshake "
1380 "challenge reply too short %d\n",
1381 wsi->utf8_token[
1382 WSI_TOKEN_CHALLENGE].token_len);
Andy Greeneeaacb32011-03-01 20:44:24 +00001383 pkt[len] = '\0';
1384 fprintf(stderr, "%s", pkt);
1385 goto bail3;
Peter Hinz56885f32011-03-02 22:03:47 +00001386
Andy Greeneeaacb32011-03-01 20:44:24 +00001387 }
Peter Hinz56885f32011-03-02 22:03:47 +00001388
Andy Greeneeaacb32011-03-01 20:44:24 +00001389 goto select_protocol;
1390 }
Peter Hinz56885f32011-03-02 22:03:47 +00001391
Andy Greeneeaacb32011-03-01 20:44:24 +00001392 /*
Andy Greenbe93fef2011-02-14 20:25:43 +00001393 * well, what the server sent looked reasonable for syntax.
1394 * Now let's confirm it sent all the necessary headers
1395 */
1396
1397 if (!wsi->utf8_token[WSI_TOKEN_HTTP].token_len ||
1398 !wsi->utf8_token[WSI_TOKEN_UPGRADE].token_len ||
1399 !wsi->utf8_token[WSI_TOKEN_CONNECTION].token_len ||
1400 !wsi->utf8_token[WSI_TOKEN_ACCEPT].token_len ||
Andy Green4eaa86b2011-02-26 11:17:48 +00001401 (!wsi->utf8_token[WSI_TOKEN_NONCE].token_len &&
1402 wsi->ietf_spec_revision == 4) ||
Andy Greenbe93fef2011-02-14 20:25:43 +00001403 (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len &&
1404 wsi->c_protocol != NULL)) {
1405 fprintf(stderr, "libwebsocket_client_handshake "
Andy Green687b0182011-02-26 11:04:01 +00001406 "missing required header(s)\n");
Andy Greenbe93fef2011-02-14 20:25:43 +00001407 pkt[len] = '\0';
1408 fprintf(stderr, "%s", pkt);
1409 goto bail3;
1410 }
1411
1412 /*
1413 * Everything seems to be there, now take a closer look at what
1414 * is in each header
1415 */
1416
1417 strtolower(wsi->utf8_token[WSI_TOKEN_HTTP].token);
1418 if (strcmp(wsi->utf8_token[WSI_TOKEN_HTTP].token,
1419 "101 switching protocols")) {
1420 fprintf(stderr, "libwebsocket_client_handshake "
1421 "server sent bad HTTP response '%s'\n",
1422 wsi->utf8_token[WSI_TOKEN_HTTP].token);
1423 goto bail3;
1424 }
1425
1426 strtolower(wsi->utf8_token[WSI_TOKEN_UPGRADE].token);
1427 if (strcmp(wsi->utf8_token[WSI_TOKEN_UPGRADE].token,
1428 "websocket")) {
1429 fprintf(stderr, "libwebsocket_client_handshake server "
1430 "sent bad Upgrade header '%s'\n",
1431 wsi->utf8_token[WSI_TOKEN_UPGRADE].token);
1432 goto bail3;
1433 }
1434
1435 strtolower(wsi->utf8_token[WSI_TOKEN_CONNECTION].token);
1436 if (strcmp(wsi->utf8_token[WSI_TOKEN_CONNECTION].token,
1437 "upgrade")) {
1438 fprintf(stderr, "libwebsocket_client_handshake server "
1439 "sent bad Connection hdr '%s'\n",
1440 wsi->utf8_token[WSI_TOKEN_CONNECTION].token);
1441 goto bail3;
1442 }
1443
Andy Greeneeaacb32011-03-01 20:44:24 +00001444select_protocol:
Andy Greenbe93fef2011-02-14 20:25:43 +00001445 pc = wsi->c_protocol;
1446
1447 /*
1448 * confirm the protocol the server wants to talk was in the list
1449 * of protocols we offered
1450 */
1451
1452 if (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len) {
1453
1454 /*
1455 * no protocol name to work from,
1456 * default to first protocol
1457 */
Peter Hinz56885f32011-03-02 22:03:47 +00001458 wsi->protocol = &context->protocols[0];
Andy Greenbe93fef2011-02-14 20:25:43 +00001459
1460 free(wsi->c_protocol);
1461
1462 goto check_accept;
1463 }
1464
1465 while (*pc && !okay) {
1466 if ((!strncmp(pc,
1467 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token,
1468 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len)) &&
1469 (pc[wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len] == ',' ||
1470 pc[wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len] == '\0')) {
1471 okay = 1;
1472 continue;
1473 }
1474 while (*pc && *pc != ',')
1475 pc++;
1476 while (*pc && *pc != ' ')
1477 pc++;
1478 }
1479
1480 /* done with him now */
1481
1482 if (wsi->c_protocol)
1483 free(wsi->c_protocol);
1484
1485
1486 if (!okay) {
1487 fprintf(stderr, "libwebsocket_client_handshake server "
1488 "sent bad protocol '%s'\n",
1489 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token);
1490 goto bail2;
1491 }
1492
1493 /*
1494 * identify the selected protocol struct and set it
1495 */
1496 n = 0;
1497 wsi->protocol = NULL;
Peter Hinz56885f32011-03-02 22:03:47 +00001498 while (context->protocols[n].callback) {
Andy Greenbe93fef2011-02-14 20:25:43 +00001499 if (strcmp(wsi->utf8_token[WSI_TOKEN_PROTOCOL].token,
Peter Hinz56885f32011-03-02 22:03:47 +00001500 context->protocols[n].name) == 0)
1501 wsi->protocol = &context->protocols[n];
Andy Greenbe93fef2011-02-14 20:25:43 +00001502 n++;
1503 }
1504
1505 if (wsi->protocol == NULL) {
1506 fprintf(stderr, "libwebsocket_client_handshake server "
1507 "requested protocol '%s', which we "
1508 "said we supported but we don't!\n",
1509 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token);
1510 goto bail2;
1511 }
1512
Andy Green2366b1c2011-03-06 13:15:31 +00001513
1514 /* instantiate the accepted extensions */
1515
1516 if (!wsi->utf8_token[WSI_TOKEN_EXTENSIONS].token_len)
1517 goto check_accept;
1518
1519 /*
1520 * break down the list of server accepted extensions
1521 * and go through matching them or identifying bogons
1522 */
1523
1524 c = wsi->utf8_token[WSI_TOKEN_EXTENSIONS].token;
1525 n = 0;
1526 while (more) {
1527
1528 if (*c && *c != ',') {
1529 ext_name[n] = *c++;
1530 if (n < sizeof(ext_name) - 1)
1531 n++;
1532 continue;
1533 }
1534 ext_name[n] = '\0';
1535 if (!*c)
1536 more = 0;
1537
1538 /* check we actually support it */
1539
1540 n = 0;
1541 ext = wsi->protocol->owning_server->extensions;
1542 while (ext && ext->callback) {
1543
1544 if (strcmp(ext_name, ext->name)) {
1545 ext++;
1546 continue;
1547 }
1548
1549 n = 1;
1550
1551 /* instantiate the extension on this conn */
1552
1553 wsi->active_extensions_user[
1554 wsi->count_active_extensions] =
1555 malloc(ext->per_session_data_size);
1556 wsi->active_extensions[
1557 wsi->count_active_extensions] = ext;
1558
1559 /* allow him to construct his context */
1560
1561 ext->callback(wsi->protocol->owning_server,
1562 wsi, LWS_EXT_CALLBACK_CLIENT_CONSTRUCT,
1563 wsi->active_extensions_user[
1564 wsi->count_active_extensions], NULL, 0);
1565
1566 wsi->count_active_extensions++;
1567
1568 ext++;
1569 }
1570
1571 if (n == 0) {
1572 fprintf(stderr, "Server said we should use"
1573 "an unknown extension '%s'!\n", ext_name);
1574 goto bail2;
1575 }
1576
1577 n = 0;
1578 }
1579
1580
Andy Greenbe93fef2011-02-14 20:25:43 +00001581 check_accept:
Andy Greeneeaacb32011-03-01 20:44:24 +00001582
1583 if (wsi->ietf_spec_revision == 0) {
Peter Hinz56885f32011-03-02 22:03:47 +00001584
Andy Greeneeaacb32011-03-01 20:44:24 +00001585 if (memcmp(wsi->initial_handshake_hash_base64,
Peter Hinz56885f32011-03-02 22:03:47 +00001586 wsi->utf8_token[WSI_TOKEN_CHALLENGE].token, 16)) {
Andy Greeneeaacb32011-03-01 20:44:24 +00001587 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001588 "failed 00 challenge compare\n");
1589 pkt[len] = '\0';
1590 fprintf(stderr, "%s", pkt);
1591 goto bail2;
Andy Greeneeaacb32011-03-01 20:44:24 +00001592 }
Peter Hinz56885f32011-03-02 22:03:47 +00001593
Andy Greeneeaacb32011-03-01 20:44:24 +00001594 goto accept_ok;
1595 }
Peter Hinz56885f32011-03-02 22:03:47 +00001596
Andy Greenbe93fef2011-02-14 20:25:43 +00001597 /*
1598 * Confirm his accept token is the one we precomputed
1599 */
1600
1601 if (strcmp(wsi->utf8_token[WSI_TOKEN_ACCEPT].token,
1602 wsi->initial_handshake_hash_base64)) {
1603 fprintf(stderr, "libwebsocket_client_handshake server "
1604 "sent bad ACCEPT '%s' vs computed '%s'\n",
1605 wsi->utf8_token[WSI_TOKEN_ACCEPT].token,
1606 wsi->initial_handshake_hash_base64);
1607 goto bail2;
1608 }
1609
Andy Green4eaa86b2011-02-26 11:17:48 +00001610 if (wsi->ietf_spec_revision == 4) {
1611 /*
1612 * Calculate the 04 masking key to use when
1613 * sending data to server
1614 */
Andy Greenbe93fef2011-02-14 20:25:43 +00001615
Andy Green4eaa86b2011-02-26 11:17:48 +00001616 strcpy((char *)buf, wsi->key_b64);
1617 p = (char *)buf + strlen(wsi->key_b64);
1618 strcpy(p, wsi->utf8_token[WSI_TOKEN_NONCE].token);
1619 p += wsi->utf8_token[WSI_TOKEN_NONCE].token_len;
1620 strcpy(p, magic_websocket_04_masking_guid);
1621 SHA1(buf, strlen((char *)buf), wsi->masking_key_04);
1622 }
Andy Greeneeaacb32011-03-01 20:44:24 +00001623accept_ok:
1624
Andy Greenbe93fef2011-02-14 20:25:43 +00001625 /* allocate the per-connection user memory (if any) */
1626
1627 if (wsi->protocol->per_session_data_size) {
1628 wsi->user_space = malloc(
1629 wsi->protocol->per_session_data_size);
1630 if (wsi->user_space == NULL) {
1631 fprintf(stderr, "Out of memory for "
1632 "conn user space\n");
1633 goto bail2;
1634 }
1635 } else
1636 wsi->user_space = NULL;
1637
1638 /* clear his proxy connection timeout */
1639
1640 libwebsocket_set_timeout(wsi, NO_PENDING_TIMEOUT, 0);
1641
1642 /* mark him as being alive */
1643
1644 wsi->state = WSI_STATE_ESTABLISHED;
1645 wsi->mode = LWS_CONNMODE_WS_CLIENT;
1646
1647 fprintf(stderr, "handshake OK for protocol %s\n",
1648 wsi->protocol->name);
1649
1650 /* call him back to inform him he is up */
1651
Peter Hinz56885f32011-03-02 22:03:47 +00001652 wsi->protocol->callback(context, wsi,
Andy Greenbe93fef2011-02-14 20:25:43 +00001653 LWS_CALLBACK_CLIENT_ESTABLISHED,
1654 wsi->user_space,
1655 NULL, 0);
1656
1657 break;
1658
1659bail3:
1660 if (wsi->c_protocol)
1661 free(wsi->c_protocol);
1662
1663bail2:
Peter Hinz56885f32011-03-02 22:03:47 +00001664 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001665 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001666 return 1;
1667
1668
Andy Green0d338332011-02-12 11:57:43 +00001669 case LWS_CONNMODE_WS_SERVING:
1670 case LWS_CONNMODE_WS_CLIENT:
1671
1672 /* handle session socket closed */
1673
1674 if (pollfd->revents & (POLLERR | POLLHUP)) {
1675
Andy Green62c54d22011-02-14 09:14:25 +00001676 fprintf(stderr, "Session Socket %p (fd=%d) dead\n",
Andy Green0d338332011-02-12 11:57:43 +00001677 (void *)wsi, pollfd->fd);
1678
Peter Hinz56885f32011-03-02 22:03:47 +00001679 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001680 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green4b6fbe12011-02-14 08:03:48 +00001681 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +00001682 }
1683
Andy Green0d338332011-02-12 11:57:43 +00001684 /* the guy requested a callback when it was OK to write */
1685
Andy Greenda527df2011-03-07 07:08:12 +00001686 if ((pollfd->revents & POLLOUT) &&
1687 wsi->state == WSI_STATE_ESTABLISHED)
1688 if (lws_handle_POLLOUT_event(context, wsi,
1689 pollfd) < 0) {
1690 libwebsocket_close_and_free_session(
1691 context, wsi, LWS_CLOSE_STATUS_NORMAL);
Andy Green3b84c002011-03-06 13:14:42 +00001692 return 1;
1693 }
Andy Green0d338332011-02-12 11:57:43 +00001694
Andy Green0d338332011-02-12 11:57:43 +00001695
1696 /* any incoming data ready? */
1697
1698 if (!(pollfd->revents & POLLIN))
1699 break;
1700
Andy Greenb45993c2010-12-18 15:13:50 +00001701#ifdef LWS_OPENSSL_SUPPORT
Andy Green0d338332011-02-12 11:57:43 +00001702 if (wsi->ssl)
Andy Green98a717c2011-03-06 13:14:15 +00001703 eff_buf.token_len = SSL_read(wsi->ssl, buf, sizeof buf);
Andy Greenb45993c2010-12-18 15:13:50 +00001704 else
1705#endif
Andy Green98a717c2011-03-06 13:14:15 +00001706 eff_buf.token_len =
1707 recv(pollfd->fd, buf, sizeof buf, 0);
Andy Greenb45993c2010-12-18 15:13:50 +00001708
Andy Green98a717c2011-03-06 13:14:15 +00001709 if (eff_buf.token_len < 0) {
1710 fprintf(stderr, "Socket read returned %d\n",
1711 eff_buf.token_len);
Andy Green4b6fbe12011-02-14 08:03:48 +00001712 break;
Andy Greenb45993c2010-12-18 15:13:50 +00001713 }
Andy Green98a717c2011-03-06 13:14:15 +00001714 if (!eff_buf.token_len) {
Peter Hinz56885f32011-03-02 22:03:47 +00001715 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001716 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green4b6fbe12011-02-14 08:03:48 +00001717 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +00001718 }
1719
Andy Green98a717c2011-03-06 13:14:15 +00001720 /*
1721 * give any active extensions a chance to munge the buffer
1722 * before parse. We pass in a pointer to an lws_tokens struct
1723 * prepared with the default buffer and content length that's in
1724 * there. Rather than rewrite the default buffer, extensions
1725 * that expect to grow the buffer can adapt .token to
1726 * point to their own per-connection buffer in the extension
1727 * user allocation. By default with no extensions or no
1728 * extension callback handling, just the normal input buffer is
1729 * used then so it is efficient.
1730 */
Andy Greenb45993c2010-12-18 15:13:50 +00001731
Andy Green98a717c2011-03-06 13:14:15 +00001732 eff_buf.token = (char *)buf;
Andy Greenb45993c2010-12-18 15:13:50 +00001733
Andy Green98a717c2011-03-06 13:14:15 +00001734 more = 1;
1735 while (more) {
Andy Green0d338332011-02-12 11:57:43 +00001736
Andy Green98a717c2011-03-06 13:14:15 +00001737 more = 0;
1738
1739 for (n = 0; n < wsi->count_active_extensions; n++) {
1740 m = wsi->active_extensions[n]->callback(context, wsi,
1741 LWS_EXT_CALLBACK_PACKET_RX_PREPARSE,
1742 wsi->active_extensions_user[n], &eff_buf, 0);
1743 if (m < 0) {
1744 fprintf(stderr, "Extension reports fatal error\n");
1745 libwebsocket_close_and_free_session(context, wsi,
1746 LWS_CLOSE_STATUS_NOSTATUS);
1747 return 1;
1748 }
1749 if (m)
1750 more = 1;
1751 }
1752
1753 /* service incoming data */
1754
1755 if (eff_buf.token_len) {
1756 n = libwebsocket_read(context, wsi,
1757 (unsigned char *)eff_buf.token, eff_buf.token_len);
1758 if (n < 0)
1759 /* we closed wsi */
1760 return 1;
1761 }
1762
1763 eff_buf.token = NULL;
1764 eff_buf.token_len = 0;
1765 }
1766 break;
Andy Greenb45993c2010-12-18 15:13:50 +00001767 }
1768
1769 return 0;
1770}
1771
Andy Green0d338332011-02-12 11:57:43 +00001772
Andy Green6964bb52011-01-23 16:50:33 +00001773/**
1774 * libwebsocket_context_destroy() - Destroy the websocket context
Peter Hinz56885f32011-03-02 22:03:47 +00001775 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001776 *
1777 * This function closes any active connections and then frees the
1778 * context. After calling this, any further use of the context is
1779 * undefined.
1780 */
1781void
Peter Hinz56885f32011-03-02 22:03:47 +00001782libwebsocket_context_destroy(struct libwebsocket_context *context)
Andy Green6964bb52011-01-23 16:50:33 +00001783{
Andy Green0d338332011-02-12 11:57:43 +00001784 int n;
1785 int m;
1786 struct libwebsocket *wsi;
Andy Green6964bb52011-01-23 16:50:33 +00001787
Andy Green4b6fbe12011-02-14 08:03:48 +00001788 for (n = 0; n < FD_HASHTABLE_MODULUS; n++)
Peter Hinz56885f32011-03-02 22:03:47 +00001789 for (m = 0; m < context->fd_hashtable[n].length; m++) {
1790 wsi = context->fd_hashtable[n].wsi[m];
1791 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001792 LWS_CLOSE_STATUS_GOINGAWAY);
Andy Greenf3d3b402011-02-09 07:16:34 +00001793 }
Andy Green6964bb52011-01-23 16:50:33 +00001794
Peter Hinz56885f32011-03-02 22:03:47 +00001795#ifdef WIN32
1796#else
1797 close(context->fd_random);
Andy Green6964bb52011-01-23 16:50:33 +00001798#endif
1799
Peter Hinz56885f32011-03-02 22:03:47 +00001800#ifdef LWS_OPENSSL_SUPPORT
1801 if (context->ssl_ctx)
1802 SSL_CTX_free(context->ssl_ctx);
1803 if (context->ssl_client_ctx)
1804 SSL_CTX_free(context->ssl_client_ctx);
1805#endif
1806
1807 free(context);
1808
1809#ifdef WIN32
1810 WSACleanup();
1811#endif
Andy Green6964bb52011-01-23 16:50:33 +00001812}
1813
1814/**
1815 * libwebsocket_service() - Service any pending websocket activity
Peter Hinz56885f32011-03-02 22:03:47 +00001816 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001817 * @timeout_ms: Timeout for poll; 0 means return immediately if nothing needed
1818 * service otherwise block and service immediately, returning
1819 * after the timeout if nothing needed service.
1820 *
1821 * This function deals with any pending websocket traffic, for three
1822 * kinds of event. It handles these events on both server and client
1823 * types of connection the same.
1824 *
1825 * 1) Accept new connections to our context's server
1826 *
1827 * 2) Perform pending broadcast writes initiated from other forked
1828 * processes (effectively serializing asynchronous broadcasts)
1829 *
1830 * 3) Call the receive callback for incoming frame data received by
1831 * server or client connections.
1832 *
1833 * You need to call this service function periodically to all the above
1834 * functions to happen; if your application is single-threaded you can
1835 * just call it in your main event loop.
1836 *
1837 * Alternatively you can fork a new process that asynchronously handles
1838 * calling this service in a loop. In that case you are happy if this
1839 * call blocks your thread until it needs to take care of something and
1840 * would call it with a large nonzero timeout. Your loop then takes no
1841 * CPU while there is nothing happening.
1842 *
1843 * If you are calling it in a single-threaded app, you don't want it to
1844 * wait around blocking other things in your loop from happening, so you
1845 * would call it with a timeout_ms of 0, so it returns immediately if
1846 * nothing is pending, or as soon as it services whatever was pending.
1847 */
1848
Andy Greenb45993c2010-12-18 15:13:50 +00001849
Andy Greene92cd172011-01-19 13:11:55 +00001850int
Peter Hinz56885f32011-03-02 22:03:47 +00001851libwebsocket_service(struct libwebsocket_context *context, int timeout_ms)
Andy Greene92cd172011-01-19 13:11:55 +00001852{
1853 int n;
Andy Greene92cd172011-01-19 13:11:55 +00001854
1855 /* stay dead once we are dead */
1856
Peter Hinz56885f32011-03-02 22:03:47 +00001857 if (context == NULL)
Andy Greene92cd172011-01-19 13:11:55 +00001858 return 1;
1859
Andy Green0d338332011-02-12 11:57:43 +00001860 /* wait for something to need service */
Andy Green4739e5c2011-01-22 12:51:57 +00001861
Peter Hinz56885f32011-03-02 22:03:47 +00001862 n = poll(context->fds, context->fds_count, timeout_ms);
Andy Green3221f922011-02-12 13:14:11 +00001863 if (n == 0) /* poll timeout */
1864 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001865
Andy Green62c54d22011-02-14 09:14:25 +00001866 if (n < 0) {
Andy Green5e1fa172011-02-10 09:07:05 +00001867 /*
Andy Greene92cd172011-01-19 13:11:55 +00001868 fprintf(stderr, "Listen Socket dead\n");
Andy Green5e1fa172011-02-10 09:07:05 +00001869 */
Andy Green0d338332011-02-12 11:57:43 +00001870 return 1;
Andy Greene92cd172011-01-19 13:11:55 +00001871 }
Andy Greene92cd172011-01-19 13:11:55 +00001872
1873 /* handle accept on listening socket? */
1874
Peter Hinz56885f32011-03-02 22:03:47 +00001875 for (n = 0; n < context->fds_count; n++)
1876 if (context->fds[n].revents)
1877 libwebsocket_service_fd(context, &context->fds[n]);
Andy Greene92cd172011-01-19 13:11:55 +00001878
1879 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001880}
1881
Andy Green90c7cbc2011-01-27 06:26:52 +00001882/**
1883 * libwebsocket_callback_on_writable() - Request a callback when this socket
1884 * becomes able to be written to without
1885 * blocking
Andy Green32375b72011-02-19 08:32:53 +00001886 *
Peter Hinz56885f32011-03-02 22:03:47 +00001887 * @context: libwebsockets context
Andy Green90c7cbc2011-01-27 06:26:52 +00001888 * @wsi: Websocket connection instance to get callback for
1889 */
1890
1891int
Peter Hinz56885f32011-03-02 22:03:47 +00001892libwebsocket_callback_on_writable(struct libwebsocket_context *context,
Andy Green62c54d22011-02-14 09:14:25 +00001893 struct libwebsocket *wsi)
Andy Green90c7cbc2011-01-27 06:26:52 +00001894{
Andy Green90c7cbc2011-01-27 06:26:52 +00001895 int n;
1896
Peter Hinz56885f32011-03-02 22:03:47 +00001897 for (n = 0; n < context->fds_count; n++)
1898 if (context->fds[n].fd == wsi->sock) {
1899 context->fds[n].events |= POLLOUT;
1900 n = context->fds_count;
Andy Green90c7cbc2011-01-27 06:26:52 +00001901 }
1902
Andy Green3221f922011-02-12 13:14:11 +00001903 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001904 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001905 LWS_CALLBACK_SET_MODE_POLL_FD,
1906 (void *)(long)wsi->sock, NULL, POLLOUT);
1907
Andy Green90c7cbc2011-01-27 06:26:52 +00001908 return 1;
1909}
1910
1911/**
1912 * libwebsocket_callback_on_writable_all_protocol() - Request a callback for
1913 * all connections using the given protocol when it
1914 * becomes possible to write to each socket without
1915 * blocking in turn.
1916 *
1917 * @protocol: Protocol whose connections will get callbacks
1918 */
1919
1920int
1921libwebsocket_callback_on_writable_all_protocol(
1922 const struct libwebsocket_protocols *protocol)
1923{
Peter Hinz56885f32011-03-02 22:03:47 +00001924 struct libwebsocket_context *context = protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001925 int n;
Andy Green0d338332011-02-12 11:57:43 +00001926 int m;
1927 struct libwebsocket *wsi;
Andy Green90c7cbc2011-01-27 06:26:52 +00001928
Andy Green0d338332011-02-12 11:57:43 +00001929 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
1930
Peter Hinz56885f32011-03-02 22:03:47 +00001931 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Green0d338332011-02-12 11:57:43 +00001932
Peter Hinz56885f32011-03-02 22:03:47 +00001933 wsi = context->fd_hashtable[n].wsi[m];
Andy Green0d338332011-02-12 11:57:43 +00001934
1935 if (wsi->protocol == protocol)
Peter Hinz56885f32011-03-02 22:03:47 +00001936 libwebsocket_callback_on_writable(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001937 }
1938 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001939
1940 return 0;
1941}
1942
Andy Greenbe93fef2011-02-14 20:25:43 +00001943/**
1944 * libwebsocket_set_timeout() - marks the wsi as subject to a timeout
1945 *
1946 * You will not need this unless you are doing something special
1947 *
1948 * @wsi: Websocket connection instance
1949 * @reason: timeout reason
1950 * @secs: how many seconds
1951 */
1952
1953void
1954libwebsocket_set_timeout(struct libwebsocket *wsi,
1955 enum pending_timeout reason, int secs)
1956{
1957 struct timeval tv;
1958
1959 gettimeofday(&tv, NULL);
1960
1961 wsi->pending_timeout_limit = tv.tv_sec + secs;
1962 wsi->pending_timeout = reason;
1963}
1964
Andy Greena6cbece2011-01-27 20:06:03 +00001965
1966/**
1967 * libwebsocket_get_socket_fd() - returns the socket file descriptor
1968 *
1969 * You will not need this unless you are doing something special
1970 *
1971 * @wsi: Websocket connection instance
1972 */
1973
1974int
1975libwebsocket_get_socket_fd(struct libwebsocket *wsi)
1976{
1977 return wsi->sock;
1978}
1979
Andy Green90c7cbc2011-01-27 06:26:52 +00001980/**
1981 * libwebsocket_rx_flow_control() - Enable and disable socket servicing for
1982 * receieved packets.
1983 *
1984 * If the output side of a server process becomes choked, this allows flow
1985 * control for the input side.
1986 *
1987 * @wsi: Websocket connection instance to get callback for
1988 * @enable: 0 = disable read servicing for this connection, 1 = enable
1989 */
1990
1991int
1992libwebsocket_rx_flow_control(struct libwebsocket *wsi, int enable)
1993{
Peter Hinz56885f32011-03-02 22:03:47 +00001994 struct libwebsocket_context *context = wsi->protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001995 int n;
1996
Peter Hinz56885f32011-03-02 22:03:47 +00001997 for (n = 0; n < context->fds_count; n++)
1998 if (context->fds[n].fd == wsi->sock) {
Andy Green90c7cbc2011-01-27 06:26:52 +00001999 if (enable)
Peter Hinz56885f32011-03-02 22:03:47 +00002000 context->fds[n].events |= POLLIN;
Andy Green90c7cbc2011-01-27 06:26:52 +00002001 else
Peter Hinz56885f32011-03-02 22:03:47 +00002002 context->fds[n].events &= ~POLLIN;
Andy Green90c7cbc2011-01-27 06:26:52 +00002003
2004 return 0;
2005 }
2006
Andy Green3221f922011-02-12 13:14:11 +00002007 if (enable)
2008 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002009 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002010 LWS_CALLBACK_SET_MODE_POLL_FD,
2011 (void *)(long)wsi->sock, NULL, POLLIN);
2012 else
2013 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002014 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002015 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
2016 (void *)(long)wsi->sock, NULL, POLLIN);
2017
2018
Andy Green90c7cbc2011-01-27 06:26:52 +00002019 fprintf(stderr, "libwebsocket_callback_on_writable "
2020 "unable to find socket\n");
2021 return 1;
2022}
2023
Andy Green2ac5a6f2011-01-28 10:00:18 +00002024/**
2025 * libwebsocket_canonical_hostname() - returns this host's hostname
2026 *
2027 * This is typically used by client code to fill in the host parameter
2028 * when making a client connection. You can only call it after the context
2029 * has been created.
2030 *
Peter Hinz56885f32011-03-02 22:03:47 +00002031 * @context: Websocket context
Andy Green2ac5a6f2011-01-28 10:00:18 +00002032 */
2033
2034
2035extern const char *
Peter Hinz56885f32011-03-02 22:03:47 +00002036libwebsocket_canonical_hostname(struct libwebsocket_context *context)
Andy Green2ac5a6f2011-01-28 10:00:18 +00002037{
Peter Hinz56885f32011-03-02 22:03:47 +00002038 return (const char *)context->canonical_hostname;
Andy Green2ac5a6f2011-01-28 10:00:18 +00002039}
2040
2041
Andy Green90c7cbc2011-01-27 06:26:52 +00002042static void sigpipe_handler(int x)
2043{
2044}
2045
Andy Green6901cb32011-02-21 08:06:47 +00002046#ifdef LWS_OPENSSL_SUPPORT
2047static int
2048OpenSSL_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx)
2049{
2050
2051 SSL *ssl;
2052 int n;
Andy Green2e24da02011-03-05 16:12:04 +00002053 struct libwebsocket_context *context;
Andy Green6901cb32011-02-21 08:06:47 +00002054
2055 ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
2056 SSL_get_ex_data_X509_STORE_CTX_idx());
2057
2058 /*
Andy Green2e24da02011-03-05 16:12:04 +00002059 * !!! nasty openssl requires the index to come as a library-scope
2060 * static
Andy Green6901cb32011-02-21 08:06:47 +00002061 */
Andy Green2e24da02011-03-05 16:12:04 +00002062 context = SSL_get_ex_data(ssl, openssl_websocket_private_data_index);
Andy Green6901cb32011-02-21 08:06:47 +00002063
Peter Hinz56885f32011-03-02 22:03:47 +00002064 n = context->protocols[0].callback(NULL, NULL,
Andy Green6901cb32011-02-21 08:06:47 +00002065 LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION,
2066 x509_ctx, ssl, preverify_ok);
2067
2068 /* convert return code from 0 = OK to 1 = OK */
2069
2070 if (!n)
2071 n = 1;
2072 else
2073 n = 0;
2074
2075 return n;
2076}
2077#endif
2078
Andy Greenb45993c2010-12-18 15:13:50 +00002079
Andy Greenab990e42010-10-31 12:42:52 +00002080/**
Andy Green4739e5c2011-01-22 12:51:57 +00002081 * libwebsocket_create_context() - Create the websocket handler
2082 * @port: Port to listen on... you can use 0 to suppress listening on
Andy Green6964bb52011-01-23 16:50:33 +00002083 * any port, that's what you want if you are not running a
2084 * websocket server at all but just using it as a client
Peter Hinz56885f32011-03-02 22:03:47 +00002085 * @interf: NULL to bind the listen socket to all interfaces, or the
Andy Green32375b72011-02-19 08:32:53 +00002086 * interface name, eg, "eth2"
Andy Green4f3943a2010-11-12 10:44:16 +00002087 * @protocols: Array of structures listing supported protocols and a protocol-
Andy Green8f037e42010-12-19 22:13:26 +00002088 * specific callback for each one. The list is ended with an
2089 * entry that has a NULL callback pointer.
Andy Green6964bb52011-01-23 16:50:33 +00002090 * It's not const because we write the owning_server member
Andy Greenc5114822011-03-06 10:29:35 +00002091 * @extensions: NULL or array of libwebsocket_extension structs listing the
2092 * extensions this context supports
Andy Green3faa9c72010-11-08 17:03:03 +00002093 * @ssl_cert_filepath: If libwebsockets was compiled to use ssl, and you want
Andy Green8f037e42010-12-19 22:13:26 +00002094 * to listen using SSL, set to the filepath to fetch the
2095 * server cert from, otherwise NULL for unencrypted
Andy Green3faa9c72010-11-08 17:03:03 +00002096 * @ssl_private_key_filepath: filepath to private key if wanting SSL mode,
Andy Green8f037e42010-12-19 22:13:26 +00002097 * else ignored
Andy Green3faa9c72010-11-08 17:03:03 +00002098 * @gid: group id to change to after setting listen socket, or -1.
2099 * @uid: user id to change to after setting listen socket, or -1.
Andy Greenbfb051f2011-02-09 08:49:14 +00002100 * @options: 0, or LWS_SERVER_OPTION_DEFEAT_CLIENT_MASK
Andy Green05464c62010-11-12 10:44:18 +00002101 *
Andy Green8f037e42010-12-19 22:13:26 +00002102 * This function creates the listening socket and takes care
2103 * of all initialization in one step.
2104 *
Andy Greene92cd172011-01-19 13:11:55 +00002105 * After initialization, it returns a struct libwebsocket_context * that
2106 * represents this server. After calling, user code needs to take care
2107 * of calling libwebsocket_service() with the context pointer to get the
2108 * server's sockets serviced. This can be done in the same process context
2109 * or a forked process, or another thread,
Andy Green05464c62010-11-12 10:44:18 +00002110 *
Andy Green8f037e42010-12-19 22:13:26 +00002111 * The protocol callback functions are called for a handful of events
2112 * including http requests coming in, websocket connections becoming
2113 * established, and data arriving; it's also called periodically to allow
2114 * async transmission.
2115 *
2116 * HTTP requests are sent always to the FIRST protocol in @protocol, since
2117 * at that time websocket protocol has not been negotiated. Other
2118 * protocols after the first one never see any HTTP callack activity.
2119 *
2120 * The server created is a simple http server by default; part of the
2121 * websocket standard is upgrading this http connection to a websocket one.
2122 *
2123 * This allows the same server to provide files like scripts and favicon /
2124 * images or whatever over http and dynamic data over websockets all in
2125 * one place; they're all handled in the user callback.
Andy Greenab990e42010-10-31 12:42:52 +00002126 */
Andy Green4ea60062010-10-30 12:15:07 +01002127
Andy Greene92cd172011-01-19 13:11:55 +00002128struct libwebsocket_context *
Peter Hinz56885f32011-03-02 22:03:47 +00002129libwebsocket_create_context(int port, const char *interf,
Andy Greenb45993c2010-12-18 15:13:50 +00002130 struct libwebsocket_protocols *protocols,
Andy Greend6e09112011-03-05 16:12:15 +00002131 struct libwebsocket_extension *extensions,
Andy Green8f037e42010-12-19 22:13:26 +00002132 const char *ssl_cert_filepath,
2133 const char *ssl_private_key_filepath,
Andy Green8014b292011-01-30 20:57:25 +00002134 int gid, int uid, unsigned int options)
Andy Greenff95d7a2010-10-28 22:36:01 +01002135{
2136 int n;
Andy Green4739e5c2011-01-22 12:51:57 +00002137 int sockfd = 0;
Andy Green251f6fa2010-11-03 11:13:06 +00002138 int fd;
Andy Greenff95d7a2010-10-28 22:36:01 +01002139 struct sockaddr_in serv_addr, cli_addr;
Andy Green251f6fa2010-11-03 11:13:06 +00002140 int opt = 1;
Peter Hinz56885f32011-03-02 22:03:47 +00002141 struct libwebsocket_context *context = NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002142 unsigned int slen;
Andy Green9659f372011-01-27 22:01:43 +00002143 char *p;
Andy Green2ac5a6f2011-01-28 10:00:18 +00002144 char hostname[1024];
Andy Green42f69142011-01-30 08:10:02 +00002145 struct hostent *he;
Andy Green0d338332011-02-12 11:57:43 +00002146 struct libwebsocket *wsi;
Andy Greenff95d7a2010-10-28 22:36:01 +01002147
Andy Green3faa9c72010-11-08 17:03:03 +00002148#ifdef LWS_OPENSSL_SUPPORT
Andy Greenf2f54d52010-11-15 22:08:00 +00002149 SSL_METHOD *method;
Andy Green3faa9c72010-11-08 17:03:03 +00002150 char ssl_err_buf[512];
Andy Green3faa9c72010-11-08 17:03:03 +00002151#endif
2152
Peter Hinz56885f32011-03-02 22:03:47 +00002153#ifdef _WIN32
2154 {
2155 WORD wVersionRequested;
2156 WSADATA wsaData;
2157 int err;
2158
2159 /* Use the MAKEWORD(lowbyte, highbyte) macro from Windef.h */
2160 wVersionRequested = MAKEWORD(2, 2);
2161
2162 err = WSAStartup(wVersionRequested, &wsaData);
2163 if (err != 0) {
2164 /* Tell the user that we could not find a usable */
2165 /* Winsock DLL. */
2166 fprintf(stderr, "WSAStartup failed with error: %d\n",
2167 err);
2168 return NULL;
2169 }
2170 }
2171#endif
2172
2173
2174 context = malloc(sizeof(struct libwebsocket_context));
2175 if (!context) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002176 fprintf(stderr, "No memory for websocket context\n");
2177 return NULL;
2178 }
Peter Hinz56885f32011-03-02 22:03:47 +00002179 context->protocols = protocols;
2180 context->listen_port = port;
2181 context->http_proxy_port = 0;
2182 context->http_proxy_address[0] = '\0';
2183 context->options = options;
2184 context->fds_count = 0;
Andy Greend6e09112011-03-05 16:12:15 +00002185 context->extensions = extensions;
Andy Green9659f372011-01-27 22:01:43 +00002186
Peter Hinz56885f32011-03-02 22:03:47 +00002187#ifdef WIN32
2188 context->fd_random = 0;
2189#else
2190 context->fd_random = open(SYSTEM_RANDOM_FILEPATH, O_RDONLY);
2191 if (context->fd_random < 0) {
Andy Green44eee682011-02-10 09:32:24 +00002192 fprintf(stderr, "Unable to open random device %s %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002193 SYSTEM_RANDOM_FILEPATH, context->fd_random);
Andy Green44eee682011-02-10 09:32:24 +00002194 return NULL;
2195 }
Peter Hinz56885f32011-03-02 22:03:47 +00002196#endif
Andy Green44eee682011-02-10 09:32:24 +00002197
Peter Hinz56885f32011-03-02 22:03:47 +00002198#ifdef LWS_OPENSSL_SUPPORT
2199 context->use_ssl = 0;
2200 context->ssl_ctx = NULL;
2201 context->ssl_client_ctx = NULL;
Andy Green2e24da02011-03-05 16:12:04 +00002202 openssl_websocket_private_data_index = 0;
Peter Hinz56885f32011-03-02 22:03:47 +00002203#endif
Andy Green2ac5a6f2011-01-28 10:00:18 +00002204 /* find canonical hostname */
2205
2206 hostname[(sizeof hostname) - 1] = '\0';
2207 gethostname(hostname, (sizeof hostname) - 1);
2208 he = gethostbyname(hostname);
Darin Willitsc19456f2011-02-14 17:52:39 +00002209 if (he) {
Peter Hinz56885f32011-03-02 22:03:47 +00002210 strncpy(context->canonical_hostname, he->h_name,
2211 sizeof context->canonical_hostname - 1);
2212 context->canonical_hostname[
2213 sizeof context->canonical_hostname - 1] = '\0';
Darin Willitsc19456f2011-02-14 17:52:39 +00002214 } else
Peter Hinz56885f32011-03-02 22:03:47 +00002215 strncpy(context->canonical_hostname, hostname,
2216 sizeof context->canonical_hostname - 1);
Andy Green2ac5a6f2011-01-28 10:00:18 +00002217
Andy Green9659f372011-01-27 22:01:43 +00002218 /* split the proxy ads:port if given */
2219
2220 p = getenv("http_proxy");
2221 if (p) {
Peter Hinz56885f32011-03-02 22:03:47 +00002222 strncpy(context->http_proxy_address, p,
2223 sizeof context->http_proxy_address - 1);
2224 context->http_proxy_address[
2225 sizeof context->http_proxy_address - 1] = '\0';
Andy Green9659f372011-01-27 22:01:43 +00002226
Peter Hinz56885f32011-03-02 22:03:47 +00002227 p = strchr(context->http_proxy_address, ':');
Andy Green9659f372011-01-27 22:01:43 +00002228 if (p == NULL) {
2229 fprintf(stderr, "http_proxy needs to be ads:port\n");
2230 return NULL;
2231 }
2232 *p = '\0';
Peter Hinz56885f32011-03-02 22:03:47 +00002233 context->http_proxy_port = atoi(p + 1);
Andy Green9659f372011-01-27 22:01:43 +00002234
2235 fprintf(stderr, "Using proxy %s:%u\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002236 context->http_proxy_address,
2237 context->http_proxy_port);
Andy Green9659f372011-01-27 22:01:43 +00002238 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002239
2240 if (port) {
2241
Andy Green3faa9c72010-11-08 17:03:03 +00002242#ifdef LWS_OPENSSL_SUPPORT
Peter Hinz56885f32011-03-02 22:03:47 +00002243 context->use_ssl = ssl_cert_filepath != NULL &&
Andy Green90c7cbc2011-01-27 06:26:52 +00002244 ssl_private_key_filepath != NULL;
Peter Hinz56885f32011-03-02 22:03:47 +00002245 if (context->use_ssl)
Andy Green90c7cbc2011-01-27 06:26:52 +00002246 fprintf(stderr, " Compiled with SSL support, "
2247 "using it\n");
2248 else
2249 fprintf(stderr, " Compiled with SSL support, "
2250 "not using it\n");
Andy Green3faa9c72010-11-08 17:03:03 +00002251
Andy Green90c7cbc2011-01-27 06:26:52 +00002252#else
2253 if (ssl_cert_filepath != NULL &&
2254 ssl_private_key_filepath != NULL) {
2255 fprintf(stderr, " Not compiled for OpenSSl support!\n");
Andy Greene92cd172011-01-19 13:11:55 +00002256 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002257 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002258 fprintf(stderr, " Compiled without SSL support, "
2259 "serving unencrypted\n");
2260#endif
2261 }
2262
2263 /* ignore SIGPIPE */
Peter Hinz56885f32011-03-02 22:03:47 +00002264#ifdef WIN32
2265#else
Andy Green90c7cbc2011-01-27 06:26:52 +00002266 signal(SIGPIPE, sigpipe_handler);
Peter Hinz56885f32011-03-02 22:03:47 +00002267#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00002268
2269
2270#ifdef LWS_OPENSSL_SUPPORT
2271
2272 /* basic openssl init */
2273
2274 SSL_library_init();
2275
2276 OpenSSL_add_all_algorithms();
2277 SSL_load_error_strings();
2278
Andy Green2e24da02011-03-05 16:12:04 +00002279 openssl_websocket_private_data_index =
Andy Green6901cb32011-02-21 08:06:47 +00002280 SSL_get_ex_new_index(0, "libwebsockets", NULL, NULL, NULL);
2281
Andy Green90c7cbc2011-01-27 06:26:52 +00002282 /*
2283 * Firefox insists on SSLv23 not SSLv3
2284 * Konq disables SSLv2 by default now, SSLv23 works
2285 */
2286
2287 method = (SSL_METHOD *)SSLv23_server_method();
2288 if (!method) {
2289 fprintf(stderr, "problem creating ssl method: %s\n",
2290 ERR_error_string(ERR_get_error(), ssl_err_buf));
2291 return NULL;
2292 }
Peter Hinz56885f32011-03-02 22:03:47 +00002293 context->ssl_ctx = SSL_CTX_new(method); /* create context */
2294 if (!context->ssl_ctx) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002295 fprintf(stderr, "problem creating ssl context: %s\n",
2296 ERR_error_string(ERR_get_error(), ssl_err_buf));
2297 return NULL;
2298 }
2299
2300 /* client context */
Peter Hinz56885f32011-03-02 22:03:47 +00002301 if (port == CONTEXT_PORT_NO_LISTEN)
2302 {
2303 method = (SSL_METHOD *)SSLv23_client_method();
2304 if (!method) {
2305 fprintf(stderr, "problem creating ssl method: %s\n",
2306 ERR_error_string(ERR_get_error(), ssl_err_buf));
2307 return NULL;
2308 }
2309 /* create context */
2310 context->ssl_client_ctx = SSL_CTX_new(method);
2311 if (!context->ssl_client_ctx) {
2312 fprintf(stderr, "problem creating ssl context: %s\n",
2313 ERR_error_string(ERR_get_error(), ssl_err_buf));
2314 return NULL;
2315 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002316
Peter Hinz56885f32011-03-02 22:03:47 +00002317 /* openssl init for cert verification (for client sockets) */
Andy Green90c7cbc2011-01-27 06:26:52 +00002318
Peter Hinz56885f32011-03-02 22:03:47 +00002319 if (!SSL_CTX_load_verify_locations(
2320 context->ssl_client_ctx, NULL,
2321 LWS_OPENSSL_CLIENT_CERTS))
2322 fprintf(stderr,
2323 "Unable to load SSL Client certs from %s "
2324 "(set by --with-client-cert-dir= in configure) -- "
2325 " client ssl isn't going to work",
Andy Green90c7cbc2011-01-27 06:26:52 +00002326 LWS_OPENSSL_CLIENT_CERTS);
Peter Hinz56885f32011-03-02 22:03:47 +00002327
2328 /*
2329 * callback allowing user code to load extra verification certs
2330 * helping the client to verify server identity
2331 */
2332
2333 context->protocols[0].callback(context, NULL,
2334 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS,
2335 context->ssl_client_ctx, NULL, 0);
Andy Green90c7cbc2011-01-27 06:26:52 +00002336 }
Andy Greenc6bf2c22011-02-20 11:10:47 +00002337 /* as a server, are we requiring clients to identify themselves? */
2338
2339 if (options & LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT) {
2340
2341 /* absolutely require the client cert */
2342
Peter Hinz56885f32011-03-02 22:03:47 +00002343 SSL_CTX_set_verify(context->ssl_ctx,
Andy Green6901cb32011-02-21 08:06:47 +00002344 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
2345 OpenSSL_verify_callback);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002346
2347 /*
2348 * give user code a chance to load certs into the server
2349 * allowing it to verify incoming client certs
2350 */
2351
Peter Hinz56885f32011-03-02 22:03:47 +00002352 context->protocols[0].callback(context, NULL,
Andy Greenc6bf2c22011-02-20 11:10:47 +00002353 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS,
Peter Hinz56885f32011-03-02 22:03:47 +00002354 context->ssl_ctx, NULL, 0);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002355 }
2356
Peter Hinz56885f32011-03-02 22:03:47 +00002357 if (context->use_ssl) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002358
2359 /* openssl init for server sockets */
2360
Andy Green3faa9c72010-11-08 17:03:03 +00002361 /* set the local certificate from CertFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002362 n = SSL_CTX_use_certificate_file(context->ssl_ctx,
Andy Green3faa9c72010-11-08 17:03:03 +00002363 ssl_cert_filepath, SSL_FILETYPE_PEM);
2364 if (n != 1) {
2365 fprintf(stderr, "problem getting cert '%s': %s\n",
2366 ssl_cert_filepath,
2367 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00002368 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002369 }
2370 /* set the private key from KeyFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002371 if (SSL_CTX_use_PrivateKey_file(context->ssl_ctx,
2372 ssl_private_key_filepath, SSL_FILETYPE_PEM) != 1) {
Andy Green018d8eb2010-11-08 21:04:23 +00002373 fprintf(stderr, "ssl problem getting key '%s': %s\n",
2374 ssl_private_key_filepath,
2375 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00002376 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002377 }
2378 /* verify private key */
Peter Hinz56885f32011-03-02 22:03:47 +00002379 if (!SSL_CTX_check_private_key(context->ssl_ctx)) {
Andy Green018d8eb2010-11-08 21:04:23 +00002380 fprintf(stderr, "Private SSL key doesn't match cert\n");
Andy Greene92cd172011-01-19 13:11:55 +00002381 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002382 }
2383
2384 /* SSL is happy and has a cert it's content with */
2385 }
2386#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002387
Andy Greendf736162011-01-18 15:39:02 +00002388 /* selftest */
2389
2390 if (lws_b64_selftest())
Andy Greene92cd172011-01-19 13:11:55 +00002391 return NULL;
Andy Greendf736162011-01-18 15:39:02 +00002392
Andy Green0d338332011-02-12 11:57:43 +00002393 /* fd hashtable init */
2394
2395 for (n = 0; n < FD_HASHTABLE_MODULUS; n++)
Peter Hinz56885f32011-03-02 22:03:47 +00002396 context->fd_hashtable[n].length = 0;
Andy Green0d338332011-02-12 11:57:43 +00002397
Andy Greenb45993c2010-12-18 15:13:50 +00002398 /* set up our external listening socket we serve on */
Andy Green8f037e42010-12-19 22:13:26 +00002399
Andy Green4739e5c2011-01-22 12:51:57 +00002400 if (port) {
Andy Green8f037e42010-12-19 22:13:26 +00002401
Andy Green4739e5c2011-01-22 12:51:57 +00002402 sockfd = socket(AF_INET, SOCK_STREAM, 0);
2403 if (sockfd < 0) {
2404 fprintf(stderr, "ERROR opening socket");
2405 return NULL;
2406 }
Andy Green775c0dd2010-10-29 14:15:22 +01002407
Andy Green4739e5c2011-01-22 12:51:57 +00002408 /* allow us to restart even if old sockets in TIME_WAIT */
2409 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
Andy Greene77ddd82010-11-13 10:03:47 +00002410
Andy Green4739e5c2011-01-22 12:51:57 +00002411 bzero((char *) &serv_addr, sizeof(serv_addr));
2412 serv_addr.sin_family = AF_INET;
Peter Hinz56885f32011-03-02 22:03:47 +00002413 if (interf == NULL)
Andy Green32375b72011-02-19 08:32:53 +00002414 serv_addr.sin_addr.s_addr = INADDR_ANY;
2415 else
Peter Hinz56885f32011-03-02 22:03:47 +00002416 interface_to_sa(interf, &serv_addr,
Andy Green32375b72011-02-19 08:32:53 +00002417 sizeof(serv_addr));
Andy Green4739e5c2011-01-22 12:51:57 +00002418 serv_addr.sin_port = htons(port);
2419
2420 n = bind(sockfd, (struct sockaddr *) &serv_addr,
2421 sizeof(serv_addr));
2422 if (n < 0) {
2423 fprintf(stderr, "ERROR on binding to port %d (%d %d)\n",
Andy Green8f037e42010-12-19 22:13:26 +00002424 port, n, errno);
Andy Green4739e5c2011-01-22 12:51:57 +00002425 return NULL;
2426 }
Andy Green0d338332011-02-12 11:57:43 +00002427
2428 wsi = malloc(sizeof(struct libwebsocket));
2429 memset(wsi, 0, sizeof (struct libwebsocket));
2430 wsi->sock = sockfd;
Andy Greend6e09112011-03-05 16:12:15 +00002431 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00002432 wsi->mode = LWS_CONNMODE_SERVER_LISTENER;
Peter Hinz56885f32011-03-02 22:03:47 +00002433 insert_wsi(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002434
2435 listen(sockfd, 5);
2436 fprintf(stderr, " Listening on port %d\n", port);
2437
2438 /* list in the internal poll array */
2439
Peter Hinz56885f32011-03-02 22:03:47 +00002440 context->fds[context->fds_count].fd = sockfd;
2441 context->fds[context->fds_count++].events = POLLIN;
Andy Green3221f922011-02-12 13:14:11 +00002442
2443 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002444 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002445 LWS_CALLBACK_ADD_POLL_FD,
2446 (void *)(long)sockfd, NULL, POLLIN);
2447
Andy Green8f037e42010-12-19 22:13:26 +00002448 }
Andy Greenb45993c2010-12-18 15:13:50 +00002449
Andy Greene77ddd82010-11-13 10:03:47 +00002450 /* drop any root privs for this process */
Peter Hinz56885f32011-03-02 22:03:47 +00002451#ifdef WIN32
2452#else
Andy Green3faa9c72010-11-08 17:03:03 +00002453 if (gid != -1)
2454 if (setgid(gid))
2455 fprintf(stderr, "setgid: %s\n", strerror(errno));
2456 if (uid != -1)
2457 if (setuid(uid))
2458 fprintf(stderr, "setuid: %s\n", strerror(errno));
Peter Hinz56885f32011-03-02 22:03:47 +00002459#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002460
2461 /* set up our internal broadcast trigger sockets per-protocol */
2462
Peter Hinz56885f32011-03-02 22:03:47 +00002463 for (context->count_protocols = 0;
2464 protocols[context->count_protocols].callback;
2465 context->count_protocols++) {
2466 protocols[context->count_protocols].owning_server = context;
2467 protocols[context->count_protocols].protocol_index =
2468 context->count_protocols;
Andy Greenb45993c2010-12-18 15:13:50 +00002469
2470 fd = socket(AF_INET, SOCK_STREAM, 0);
2471 if (fd < 0) {
2472 fprintf(stderr, "ERROR opening socket");
Andy Greene92cd172011-01-19 13:11:55 +00002473 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002474 }
Andy Green8f037e42010-12-19 22:13:26 +00002475
Andy Greenb45993c2010-12-18 15:13:50 +00002476 /* allow us to restart even if old sockets in TIME_WAIT */
2477 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
2478
2479 bzero((char *) &serv_addr, sizeof(serv_addr));
2480 serv_addr.sin_family = AF_INET;
2481 serv_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
2482 serv_addr.sin_port = 0; /* pick the port for us */
2483
2484 n = bind(fd, (struct sockaddr *) &serv_addr, sizeof(serv_addr));
2485 if (n < 0) {
Andy Green8f037e42010-12-19 22:13:26 +00002486 fprintf(stderr, "ERROR on binding to port %d (%d %d)\n",
Andy Greenb45993c2010-12-18 15:13:50 +00002487 port, n, errno);
Andy Greene92cd172011-01-19 13:11:55 +00002488 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002489 }
2490
2491 slen = sizeof cli_addr;
2492 n = getsockname(fd, (struct sockaddr *)&cli_addr, &slen);
2493 if (n < 0) {
2494 fprintf(stderr, "getsockname failed\n");
Andy Greene92cd172011-01-19 13:11:55 +00002495 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002496 }
Peter Hinz56885f32011-03-02 22:03:47 +00002497 protocols[context->count_protocols].broadcast_socket_port =
Andy Greenb45993c2010-12-18 15:13:50 +00002498 ntohs(cli_addr.sin_port);
2499 listen(fd, 5);
2500
2501 debug(" Protocol %s broadcast socket %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002502 protocols[context->count_protocols].name,
Andy Greenb45993c2010-12-18 15:13:50 +00002503 ntohs(cli_addr.sin_port));
2504
Andy Green0d338332011-02-12 11:57:43 +00002505 /* dummy wsi per broadcast proxy socket */
2506
2507 wsi = malloc(sizeof(struct libwebsocket));
2508 memset(wsi, 0, sizeof (struct libwebsocket));
2509 wsi->sock = fd;
2510 wsi->mode = LWS_CONNMODE_BROADCAST_PROXY_LISTENER;
Andy Greend6e09112011-03-05 16:12:15 +00002511 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00002512 /* note which protocol we are proxying */
Peter Hinz56885f32011-03-02 22:03:47 +00002513 wsi->protocol_index_for_broadcast_proxy =
2514 context->count_protocols;
2515 insert_wsi(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002516
2517 /* list in internal poll array */
2518
Peter Hinz56885f32011-03-02 22:03:47 +00002519 context->fds[context->fds_count].fd = fd;
2520 context->fds[context->fds_count].events = POLLIN;
2521 context->fds[context->fds_count].revents = 0;
2522 context->fds_count++;
Andy Green3221f922011-02-12 13:14:11 +00002523
2524 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002525 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002526 LWS_CALLBACK_ADD_POLL_FD,
2527 (void *)(long)fd, NULL, POLLIN);
Andy Greenb45993c2010-12-18 15:13:50 +00002528 }
2529
Peter Hinz56885f32011-03-02 22:03:47 +00002530 return context;
Andy Greene92cd172011-01-19 13:11:55 +00002531}
Andy Greenb45993c2010-12-18 15:13:50 +00002532
Andy Green4739e5c2011-01-22 12:51:57 +00002533
Andy Greened11a022011-01-20 10:23:50 +00002534#ifndef LWS_NO_FORK
2535
Andy Greene92cd172011-01-19 13:11:55 +00002536/**
2537 * libwebsockets_fork_service_loop() - Optional helper function forks off
2538 * a process for the websocket server loop.
Andy Green6964bb52011-01-23 16:50:33 +00002539 * You don't have to use this but if not, you
2540 * have to make sure you are calling
2541 * libwebsocket_service periodically to service
2542 * the websocket traffic
Peter Hinz56885f32011-03-02 22:03:47 +00002543 * @context: server context returned by creation function
Andy Greene92cd172011-01-19 13:11:55 +00002544 */
Andy Greenb45993c2010-12-18 15:13:50 +00002545
Andy Greene92cd172011-01-19 13:11:55 +00002546int
Peter Hinz56885f32011-03-02 22:03:47 +00002547libwebsockets_fork_service_loop(struct libwebsocket_context *context)
Andy Greene92cd172011-01-19 13:11:55 +00002548{
Andy Greene92cd172011-01-19 13:11:55 +00002549 int fd;
2550 struct sockaddr_in cli_addr;
2551 int n;
Andy Green3221f922011-02-12 13:14:11 +00002552 int p;
Andy Greenb45993c2010-12-18 15:13:50 +00002553
Andy Greened11a022011-01-20 10:23:50 +00002554 n = fork();
2555 if (n < 0)
2556 return n;
2557
2558 if (!n) {
2559
2560 /* main process context */
2561
Andy Green3221f922011-02-12 13:14:11 +00002562 /*
2563 * set up the proxy sockets to allow broadcast from
2564 * service process context
2565 */
2566
Peter Hinz56885f32011-03-02 22:03:47 +00002567 for (p = 0; p < context->count_protocols; p++) {
Andy Greened11a022011-01-20 10:23:50 +00002568 fd = socket(AF_INET, SOCK_STREAM, 0);
2569 if (fd < 0) {
2570 fprintf(stderr, "Unable to create socket\n");
2571 return -1;
2572 }
2573 cli_addr.sin_family = AF_INET;
2574 cli_addr.sin_port = htons(
Peter Hinz56885f32011-03-02 22:03:47 +00002575 context->protocols[p].broadcast_socket_port);
Andy Greened11a022011-01-20 10:23:50 +00002576 cli_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
2577 n = connect(fd, (struct sockaddr *)&cli_addr,
2578 sizeof cli_addr);
2579 if (n < 0) {
2580 fprintf(stderr, "Unable to connect to "
2581 "broadcast socket %d, %s\n",
Andy Green3221f922011-02-12 13:14:11 +00002582 n, strerror(errno));
Andy Greened11a022011-01-20 10:23:50 +00002583 return -1;
2584 }
2585
Peter Hinz56885f32011-03-02 22:03:47 +00002586 context->protocols[p].broadcast_socket_user_fd = fd;
Andy Greened11a022011-01-20 10:23:50 +00002587 }
2588
Andy Greene92cd172011-01-19 13:11:55 +00002589 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +00002590 }
2591
2592 /* we want a SIGHUP when our parent goes down */
2593 prctl(PR_SET_PDEATHSIG, SIGHUP);
2594
2595 /* in this forked process, sit and service websocket connections */
Andy Green8f037e42010-12-19 22:13:26 +00002596
Andy Greene92cd172011-01-19 13:11:55 +00002597 while (1)
Peter Hinz56885f32011-03-02 22:03:47 +00002598 if (libwebsocket_service(context, 1000))
Andy Greene92cd172011-01-19 13:11:55 +00002599 return -1;
Andy Green8f037e42010-12-19 22:13:26 +00002600
Andy Green251f6fa2010-11-03 11:13:06 +00002601 return 0;
Andy Greenff95d7a2010-10-28 22:36:01 +01002602}
2603
Andy Greened11a022011-01-20 10:23:50 +00002604#endif
2605
Andy Greenb45993c2010-12-18 15:13:50 +00002606/**
2607 * libwebsockets_get_protocol() - Returns a protocol pointer from a websocket
Andy Green8f037e42010-12-19 22:13:26 +00002608 * connection.
Andy Greenb45993c2010-12-18 15:13:50 +00002609 * @wsi: pointer to struct websocket you want to know the protocol of
2610 *
Andy Green8f037e42010-12-19 22:13:26 +00002611 *
2612 * This is useful to get the protocol to broadcast back to from inside
Andy Greenb45993c2010-12-18 15:13:50 +00002613 * the callback.
2614 */
Andy Greenab990e42010-10-31 12:42:52 +00002615
Andy Greenb45993c2010-12-18 15:13:50 +00002616const struct libwebsocket_protocols *
2617libwebsockets_get_protocol(struct libwebsocket *wsi)
2618{
2619 return wsi->protocol;
2620}
2621
2622/**
Andy Greene92cd172011-01-19 13:11:55 +00002623 * libwebsockets_broadcast() - Sends a buffer to the callback for all active
Andy Green8f037e42010-12-19 22:13:26 +00002624 * connections of the given protocol.
Andy Greenb45993c2010-12-18 15:13:50 +00002625 * @protocol: pointer to the protocol you will broadcast to all members of
2626 * @buf: buffer containing the data to be broadcase. NOTE: this has to be
Andy Green8f037e42010-12-19 22:13:26 +00002627 * allocated with LWS_SEND_BUFFER_PRE_PADDING valid bytes before
2628 * the pointer and LWS_SEND_BUFFER_POST_PADDING afterwards in the
2629 * case you are calling this function from callback context.
Andy Greenb45993c2010-12-18 15:13:50 +00002630 * @len: length of payload data in buf, starting from buf.
Andy Green8f037e42010-12-19 22:13:26 +00002631 *
2632 * This function allows bulk sending of a packet to every connection using
Andy Greenb45993c2010-12-18 15:13:50 +00002633 * the given protocol. It does not send the data directly; instead it calls
2634 * the callback with a reason type of LWS_CALLBACK_BROADCAST. If the callback
2635 * wants to actually send the data for that connection, the callback itself
2636 * should call libwebsocket_write().
2637 *
2638 * libwebsockets_broadcast() can be called from another fork context without
2639 * having to take any care about data visibility between the processes, it'll
2640 * "just work".
2641 */
2642
2643
2644int
Andy Green8f037e42010-12-19 22:13:26 +00002645libwebsockets_broadcast(const struct libwebsocket_protocols *protocol,
Andy Greenb45993c2010-12-18 15:13:50 +00002646 unsigned char *buf, size_t len)
2647{
Peter Hinz56885f32011-03-02 22:03:47 +00002648 struct libwebsocket_context *context = protocol->owning_server;
Andy Greenb45993c2010-12-18 15:13:50 +00002649 int n;
Andy Green0d338332011-02-12 11:57:43 +00002650 int m;
2651 struct libwebsocket * wsi;
Andy Greenb45993c2010-12-18 15:13:50 +00002652
2653 if (!protocol->broadcast_socket_user_fd) {
2654 /*
Andy Greene92cd172011-01-19 13:11:55 +00002655 * We are either running unforked / flat, or we are being
2656 * called from poll thread context
Andy Greenb45993c2010-12-18 15:13:50 +00002657 * eg, from a callback. In that case don't use sockets for
2658 * broadcast IPC (since we can't open a socket connection to
2659 * a socket listening on our own thread) but directly do the
2660 * send action.
2661 *
2662 * Locking is not needed because we are by definition being
2663 * called in the poll thread context and are serialized.
2664 */
2665
Andy Green0d338332011-02-12 11:57:43 +00002666 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
Andy Greenb45993c2010-12-18 15:13:50 +00002667
Peter Hinz56885f32011-03-02 22:03:47 +00002668 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Greenb45993c2010-12-18 15:13:50 +00002669
Peter Hinz56885f32011-03-02 22:03:47 +00002670 wsi = context->fd_hashtable[n].wsi[m];
Andy Greenb45993c2010-12-18 15:13:50 +00002671
Andy Green0d338332011-02-12 11:57:43 +00002672 if (wsi->mode != LWS_CONNMODE_WS_SERVING)
2673 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00002674
Andy Green0d338332011-02-12 11:57:43 +00002675 /*
2676 * never broadcast to
2677 * non-established connections
2678 */
2679 if (wsi->state != WSI_STATE_ESTABLISHED)
2680 continue;
2681
2682 /* only broadcast to guys using
2683 * requested protocol
2684 */
2685 if (wsi->protocol != protocol)
2686 continue;
2687
Peter Hinz56885f32011-03-02 22:03:47 +00002688 wsi->protocol->callback(context, wsi,
Andy Green8f037e42010-12-19 22:13:26 +00002689 LWS_CALLBACK_BROADCAST,
Andy Green0d338332011-02-12 11:57:43 +00002690 wsi->user_space,
Andy Greenb45993c2010-12-18 15:13:50 +00002691 buf, len);
Andy Green0d338332011-02-12 11:57:43 +00002692 }
Andy Greenb45993c2010-12-18 15:13:50 +00002693 }
2694
2695 return 0;
2696 }
2697
Andy Green0ca6a172010-12-19 20:50:01 +00002698 /*
2699 * We're being called from a different process context than the server
2700 * loop. Instead of broadcasting directly, we send our
2701 * payload on a socket to do the IPC; the server process will serialize
2702 * the broadcast action in its main poll() loop.
2703 *
2704 * There's one broadcast socket listening for each protocol supported
2705 * set up when the websocket server initializes
2706 */
2707
Andy Green6964bb52011-01-23 16:50:33 +00002708 n = send(protocol->broadcast_socket_user_fd, buf, len, MSG_NOSIGNAL);
Andy Greenb45993c2010-12-18 15:13:50 +00002709
2710 return n;
2711}