blob: a8f2cf1ea0b8346c9788d466771b4a09280eb480 [file] [log] [blame]
Peter Hinz56885f32011-03-02 22:03:47 +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 Greenb45993c2010-12-18 15:13:50 +0000152
Andy Green4b6fbe12011-02-14 08:03:48 +0000153 if (!wsi)
Andy Greenb45993c2010-12-18 15:13:50 +0000154 return;
155
Andy Green62c54d22011-02-14 09:14:25 +0000156 old_state = wsi->state;
Andy Green251f6fa2010-11-03 11:13:06 +0000157
Andy Green62c54d22011-02-14 09:14:25 +0000158 if (old_state == WSI_STATE_DEAD_SOCKET)
Andy Green5e1fa172011-02-10 09:07:05 +0000159 return;
160
Andy Green4b6fbe12011-02-14 08:03:48 +0000161 /* remove this fd from wsi mapping hashtable */
162
Peter Hinz56885f32011-03-02 22:03:47 +0000163 delete_from_fd(context, wsi->sock);
Andy Green4b6fbe12011-02-14 08:03:48 +0000164
165 /* delete it from the internal poll list if still present */
166
Peter Hinz56885f32011-03-02 22:03:47 +0000167 for (n = 0; n < context->fds_count; n++) {
168 if (context->fds[n].fd != wsi->sock)
Andy Green4b6fbe12011-02-14 08:03:48 +0000169 continue;
Peter Hinz56885f32011-03-02 22:03:47 +0000170 while (n < context->fds_count - 1) {
171 context->fds[n] = context->fds[n + 1];
Andy Green4b6fbe12011-02-14 08:03:48 +0000172 n++;
173 }
Peter Hinz56885f32011-03-02 22:03:47 +0000174 context->fds_count--;
Andy Green4b6fbe12011-02-14 08:03:48 +0000175 /* we only have to deal with one */
Peter Hinz56885f32011-03-02 22:03:47 +0000176 n = context->fds_count;
Andy Green4b6fbe12011-02-14 08:03:48 +0000177 }
178
179 /* remove also from external POLL support via protocol 0 */
180
Peter Hinz56885f32011-03-02 22:03:47 +0000181 context->protocols[0].callback(context, wsi,
Andy Green4b6fbe12011-02-14 08:03:48 +0000182 LWS_CALLBACK_DEL_POLL_FD, (void *)(long)wsi->sock, NULL, 0);
183
Andy Green687b0182011-02-26 11:04:01 +0000184 wsi->close_reason = reason;
185
Andy Green5e1fa172011-02-10 09:07:05 +0000186 /*
187 * signal we are closing, libsocket_write will
188 * add any necessary version-specific stuff. If the write fails,
189 * no worries we are closing anyway. If we didn't initiate this
190 * close, then our state has been changed to
Andy Green4b6fbe12011-02-14 08:03:48 +0000191 * WSI_STATE_RETURNED_CLOSE_ALREADY and we will skip this
Andy Green5e1fa172011-02-10 09:07:05 +0000192 */
193
Andy Green62c54d22011-02-14 09:14:25 +0000194 if (old_state == WSI_STATE_ESTABLISHED)
Andy Green5e1fa172011-02-10 09:07:05 +0000195 libwebsocket_write(wsi, &buf[LWS_SEND_BUFFER_PRE_PADDING], 0,
196 LWS_WRITE_CLOSE);
197
Andy Green251f6fa2010-11-03 11:13:06 +0000198 wsi->state = WSI_STATE_DEAD_SOCKET;
199
Andy Green4b6fbe12011-02-14 08:03:48 +0000200 /* tell the user it's all over for this guy */
201
Andy Greend4302732011-02-28 07:45:29 +0000202 if (wsi->protocol && wsi->protocol->callback &&
203 old_state == WSI_STATE_ESTABLISHED)
Peter Hinz56885f32011-03-02 22:03:47 +0000204 wsi->protocol->callback(context, wsi, LWS_CALLBACK_CLOSED,
Andy Greene77ddd82010-11-13 10:03:47 +0000205 wsi->user_space, NULL, 0);
Andy Green251f6fa2010-11-03 11:13:06 +0000206
Andy Greenef660a92011-03-06 10:29:38 +0000207 /* deallocate any active extension contexts */
208
209 for (n = 0; n < wsi->count_active_extensions; n++) {
210 if (!wsi->active_extensions[n]->callback)
211 continue;
212
213 wsi->active_extensions[n]->callback(context, wsi,
214 LWS_EXT_CALLBACK_DESTROY,
215 wsi->active_extensions_user[n], NULL, 0);
216
217 free(wsi->active_extensions_user[n]);
218 }
219
220 /* free up his parsing allocations */
Andy Green4b6fbe12011-02-14 08:03:48 +0000221
Andy Green251f6fa2010-11-03 11:13:06 +0000222 for (n = 0; n < WSI_TOKEN_COUNT; n++)
223 if (wsi->utf8_token[n].token)
224 free(wsi->utf8_token[n].token);
225
Andy Green0ca6a172010-12-19 20:50:01 +0000226/* fprintf(stderr, "closing fd=%d\n", wsi->sock); */
Andy Green251f6fa2010-11-03 11:13:06 +0000227
Andy Green3faa9c72010-11-08 17:03:03 +0000228#ifdef LWS_OPENSSL_SUPPORT
Andy Green90c7cbc2011-01-27 06:26:52 +0000229 if (wsi->ssl) {
Andy Green3faa9c72010-11-08 17:03:03 +0000230 n = SSL_get_fd(wsi->ssl);
231 SSL_shutdown(wsi->ssl);
Peter Hinz56885f32011-03-02 22:03:47 +0000232#ifdef WIN32
233 closesocket(n);
234#else
Andy Green3faa9c72010-11-08 17:03:03 +0000235 close(n);
Peter Hinz56885f32011-03-02 22:03:47 +0000236#endif
Andy Green3faa9c72010-11-08 17:03:03 +0000237 SSL_free(wsi->ssl);
238 } else {
239#endif
240 shutdown(wsi->sock, SHUT_RDWR);
Peter Hinz56885f32011-03-02 22:03:47 +0000241#ifdef WIN32
242 closesocket(wsi->sock);
243#else
Andy Green3faa9c72010-11-08 17:03:03 +0000244 close(wsi->sock);
Peter Hinz56885f32011-03-02 22:03:47 +0000245#endif
Andy Green3faa9c72010-11-08 17:03:03 +0000246#ifdef LWS_OPENSSL_SUPPORT
247 }
248#endif
Andy Green4f3943a2010-11-12 10:44:16 +0000249 if (wsi->user_space)
250 free(wsi->user_space);
251
Andy Green251f6fa2010-11-03 11:13:06 +0000252 free(wsi);
253}
254
Andy Green07034092011-02-13 08:37:12 +0000255/**
Andy Greenf7ee5492011-02-13 09:04:21 +0000256 * libwebsockets_hangup_on_client() - Server calls to terminate client
257 * connection
Peter Hinz56885f32011-03-02 22:03:47 +0000258 * @context: libwebsockets context
Andy Greenf7ee5492011-02-13 09:04:21 +0000259 * @fd: Connection socket descriptor
260 */
261
262void
Peter Hinz56885f32011-03-02 22:03:47 +0000263libwebsockets_hangup_on_client(struct libwebsocket_context *context, int fd)
Andy Greenf7ee5492011-02-13 09:04:21 +0000264{
Peter Hinz56885f32011-03-02 22:03:47 +0000265 struct libwebsocket *wsi = wsi_from_fd(context, fd);
Andy Greenf7ee5492011-02-13 09:04:21 +0000266
267 if (wsi == NULL)
268 return;
269
Peter Hinz56885f32011-03-02 22:03:47 +0000270 libwebsocket_close_and_free_session(context, wsi,
Andy Green6da560c2011-02-26 11:06:27 +0000271 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenf7ee5492011-02-13 09:04:21 +0000272}
273
274
275/**
Andy Green07034092011-02-13 08:37:12 +0000276 * libwebsockets_get_peer_addresses() - Get client address information
277 * @fd: Connection socket descriptor
278 * @name: Buffer to take client address name
279 * @name_len: Length of client address name buffer
280 * @rip: Buffer to take client address IP qotted quad
281 * @rip_len: Length of client address IP buffer
282 *
283 * This function fills in @name and @rip with the name and IP of
284 * the client connected with socket descriptor @fd. Names may be
285 * truncated if there is not enough room. If either cannot be
286 * determined, they will be returned as valid zero-length strings.
287 */
288
289void
290libwebsockets_get_peer_addresses(int fd, char *name, int name_len,
291 char *rip, int rip_len)
292{
293 unsigned int len;
294 struct sockaddr_in sin;
295 struct hostent *host;
296 struct hostent *host1;
297 char ip[128];
298 char *p;
299 int n;
300
301 rip[0] = '\0';
302 name[0] = '\0';
303
304 len = sizeof sin;
305 if (getpeername(fd, (struct sockaddr *) &sin, &len) < 0) {
306 perror("getpeername");
307 return;
308 }
309
310 host = gethostbyaddr((char *) &sin.sin_addr, sizeof sin.sin_addr,
311 AF_INET);
312 if (host == NULL) {
313 perror("gethostbyaddr");
314 return;
315 }
316
317 strncpy(name, host->h_name, name_len);
318 name[name_len - 1] = '\0';
319
320 host1 = gethostbyname(host->h_name);
321 if (host1 == NULL)
322 return;
323 p = (char *)host1;
324 n = 0;
325 while (p != NULL) {
326 p = host1->h_addr_list[n++];
327 if (p == NULL)
328 continue;
329 if (host1->h_addrtype != AF_INET)
330 continue;
331
332 sprintf(ip, "%d.%d.%d.%d",
333 p[0], p[1], p[2], p[3]);
334 p = NULL;
335 strncpy(rip, ip, rip_len);
336 rip[rip_len - 1] = '\0';
337 }
338}
Andy Green9f990342011-02-12 11:57:45 +0000339
Peter Hinz56885f32011-03-02 22:03:47 +0000340int libwebsockets_get_random(struct libwebsocket_context *context,
341 void *buf, int len)
342{
343 int n;
344 char *p = buf;
345
346#ifdef WIN32
347 for (n = 0; n < len; n++)
348 p[n] = (unsigned char)rand();
349#else
350 n = read(context->fd_random, p, len);
351#endif
352
353 return n;
354}
355
Andy Greeneeaacb32011-03-01 20:44:24 +0000356void libwebsockets_00_spaceout(char *key, int spaces, int seed)
357{
358 char *p;
Peter Hinz56885f32011-03-02 22:03:47 +0000359
Andy Greeneeaacb32011-03-01 20:44:24 +0000360 key++;
361 while (spaces--) {
362 if (*key && (seed & 1))
363 key++;
364 seed >>= 1;
Peter Hinz56885f32011-03-02 22:03:47 +0000365
Andy Greeneeaacb32011-03-01 20:44:24 +0000366 p = key + strlen(key);
367 while (p >= key) {
368 p[1] = p[0];
369 p--;
370 }
371 *key++ = ' ';
372 }
373}
374
375void libwebsockets_00_spam(char *key, int count, int seed)
376{
377 char *p;
378
379 key++;
380 while (count--) {
381
382 if (*key && (seed & 1))
383 key++;
384 seed >>= 1;
385
386 p = key + strlen(key);
387 while (p >= key) {
388 p[1] = p[0];
389 p--;
390 }
391 *key++ = 0x21 + ((seed & 0xffff) % 15);
392 /* 4 would use it up too fast.. not like it matters */
393 seed >>= 1;
394 }
395}
396
Andy Green95a7b5d2011-03-06 10:29:39 +0000397int lws_send_pipe_choked(struct libwebsocket *wsi)
398{
399 struct pollfd fds;
400
401 fds.fd = wsi->sock;
402 fds.events = POLLOUT;
403 fds.revents = 0;
404
405 if (poll(&fds, 1, 0) != 1)
406 return 1;
407
408 if ((fds.revents & POLLOUT) == 0)
409 return 1;
410
411 /* okay to send another packet without blocking */
412
413 return 0;
414}
415
Andy Green9f990342011-02-12 11:57:45 +0000416/**
417 * libwebsocket_service_fd() - Service polled socket with something waiting
Peter Hinz56885f32011-03-02 22:03:47 +0000418 * @context: Websocket context
Andy Green9f990342011-02-12 11:57:45 +0000419 * @pollfd: The pollfd entry describing the socket fd and which events
420 * happened.
421 *
422 * This function closes any active connections and then frees the
423 * context. After calling this, any further use of the context is
424 * undefined.
425 */
426
427int
Peter Hinz56885f32011-03-02 22:03:47 +0000428libwebsocket_service_fd(struct libwebsocket_context *context,
Andy Green0d338332011-02-12 11:57:43 +0000429 struct pollfd *pollfd)
Andy Greenb45993c2010-12-18 15:13:50 +0000430{
431 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + MAX_BROADCAST_PAYLOAD +
432 LWS_SEND_BUFFER_POST_PADDING];
Andy Greena71eafc2011-02-14 17:59:43 +0000433 struct libwebsocket *wsi;
Andy Green0d338332011-02-12 11:57:43 +0000434 struct libwebsocket *new_wsi;
Andy Greenb45993c2010-12-18 15:13:50 +0000435 int n;
Andy Green0d338332011-02-12 11:57:43 +0000436 int m;
Andy Greenb45993c2010-12-18 15:13:50 +0000437 size_t len;
Andy Green0d338332011-02-12 11:57:43 +0000438 int accept_fd;
439 unsigned int clilen;
440 struct sockaddr_in cli_addr;
Andy Greena71eafc2011-02-14 17:59:43 +0000441 struct timeval tv;
Andy Greenbe93fef2011-02-14 20:25:43 +0000442 static const char magic_websocket_guid[] =
443 "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
444 static const char magic_websocket_04_masking_guid[] =
445 "61AC5F19-FBBA-4540-B96F-6561F1AB40A8";
446 char hash[20];
447 char pkt[1024];
448 char *p = &pkt[0];
449 const char *pc;
450 int okay = 0;
Andy Green98a717c2011-03-06 13:14:15 +0000451 struct lws_tokens eff_buf;
452 int more = 1;
Andy Greenbe93fef2011-02-14 20:25:43 +0000453#ifdef LWS_OPENSSL_SUPPORT
454 char ssl_err_buf[512];
455#endif
Andy Greena71eafc2011-02-14 17:59:43 +0000456 /*
457 * you can call us with pollfd = NULL to just allow the once-per-second
458 * global timeout checks; if less than a second since the last check
459 * it returns immediately then.
460 */
461
462 gettimeofday(&tv, NULL);
463
Peter Hinz56885f32011-03-02 22:03:47 +0000464 if (context->last_timeout_check_s != tv.tv_sec) {
465 context->last_timeout_check_s = tv.tv_sec;
Andy Greena71eafc2011-02-14 17:59:43 +0000466
467 /* global timeout check once per second */
468
Peter Hinz56885f32011-03-02 22:03:47 +0000469 for (n = 0; n < context->fds_count; n++) {
470 wsi = wsi_from_fd(context, context->fds[n].fd);
Andy Greena71eafc2011-02-14 17:59:43 +0000471 if (!wsi->pending_timeout)
472 continue;
473
474 /*
475 * if we went beyond the allowed time, kill the
476 * connection
477 */
478
479 if (tv.tv_sec > wsi->pending_timeout_limit)
Peter Hinz56885f32011-03-02 22:03:47 +0000480 libwebsocket_close_and_free_session(context,
481 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Greena71eafc2011-02-14 17:59:43 +0000482 }
483 }
484
485 /* just here for timeout management? */
486
487 if (pollfd == NULL)
488 return 0;
489
490 /* no, here to service a socket descriptor */
491
Peter Hinz56885f32011-03-02 22:03:47 +0000492 wsi = wsi_from_fd(context, pollfd->fd);
Andy Greenb45993c2010-12-18 15:13:50 +0000493
Andy Green0d338332011-02-12 11:57:43 +0000494 if (wsi == NULL)
495 return 1;
Andy Green8f037e42010-12-19 22:13:26 +0000496
Andy Green0d338332011-02-12 11:57:43 +0000497 switch (wsi->mode) {
498 case LWS_CONNMODE_SERVER_LISTENER:
499
500 /* pollin means a client has connected to us then */
501
502 if (!pollfd->revents & POLLIN)
503 break;
504
505 /* listen socket got an unencrypted connection... */
506
507 clilen = sizeof(cli_addr);
508 accept_fd = accept(pollfd->fd, (struct sockaddr *)&cli_addr,
509 &clilen);
510 if (accept_fd < 0) {
511 fprintf(stderr, "ERROR on accept");
512 break;
513 }
514
Peter Hinz56885f32011-03-02 22:03:47 +0000515 if (context->fds_count >= MAX_CLIENTS) {
Andy Green3221f922011-02-12 13:14:11 +0000516 fprintf(stderr, "too busy to accept new client\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000517#ifdef WIN32
518 closesocket(accept_fd);
519#else
Andy Green0d338332011-02-12 11:57:43 +0000520 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +0000521#endif
Andy Green0d338332011-02-12 11:57:43 +0000522 break;
523 }
524
Andy Green07034092011-02-13 08:37:12 +0000525 /*
526 * look at who we connected to and give user code a chance
527 * to reject based on client IP. There's no protocol selected
528 * yet so we issue this to protocols[0]
529 */
530
Peter Hinz56885f32011-03-02 22:03:47 +0000531 if ((context->protocols[0].callback)(context, wsi,
Andy Green07034092011-02-13 08:37:12 +0000532 LWS_CALLBACK_FILTER_NETWORK_CONNECTION,
533 (void*)(long)accept_fd, NULL, 0)) {
534 fprintf(stderr, "Callback denied network connection\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000535#ifdef WIN32
536 closesocket(accept_fd);
537#else
Andy Green07034092011-02-13 08:37:12 +0000538 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +0000539#endif
Andy Green07034092011-02-13 08:37:12 +0000540 break;
541 }
542
Andy Green0d338332011-02-12 11:57:43 +0000543 /* accepting connection to main listener */
544
545 new_wsi = malloc(sizeof(struct libwebsocket));
546 if (new_wsi == NULL) {
547 fprintf(stderr, "Out of memory for new connection\n");
548 break;
549 }
550
551 memset(new_wsi, 0, sizeof (struct libwebsocket));
552 new_wsi->sock = accept_fd;
Andy Greend6e09112011-03-05 16:12:15 +0000553 new_wsi->count_active_extensions = 0;
Andy Greena71eafc2011-02-14 17:59:43 +0000554 new_wsi->pending_timeout = NO_PENDING_TIMEOUT;
Andy Green0d338332011-02-12 11:57:43 +0000555
556#ifdef LWS_OPENSSL_SUPPORT
557 new_wsi->ssl = NULL;
Andy Green0d338332011-02-12 11:57:43 +0000558
Peter Hinz56885f32011-03-02 22:03:47 +0000559 if (context->use_ssl) {
Andy Green0d338332011-02-12 11:57:43 +0000560
Peter Hinz56885f32011-03-02 22:03:47 +0000561 new_wsi->ssl = SSL_new(context->ssl_ctx);
Andy Green0d338332011-02-12 11:57:43 +0000562 if (new_wsi->ssl == NULL) {
563 fprintf(stderr, "SSL_new failed: %s\n",
564 ERR_error_string(SSL_get_error(
565 new_wsi->ssl, 0), NULL));
Andy Green1f9bf522011-02-14 21:14:37 +0000566 libwebsockets_decode_ssl_error();
Andy Green0d338332011-02-12 11:57:43 +0000567 free(new_wsi);
568 break;
569 }
570
571 SSL_set_fd(new_wsi->ssl, accept_fd);
572
573 n = SSL_accept(new_wsi->ssl);
574 if (n != 1) {
575 /*
576 * browsers seem to probe with various
577 * ssl params which fail then retry
578 * and succeed
579 */
580 debug("SSL_accept failed skt %u: %s\n",
581 pollfd->fd,
582 ERR_error_string(SSL_get_error(
583 new_wsi->ssl, n), NULL));
584 SSL_free(
585 new_wsi->ssl);
586 free(new_wsi);
587 break;
588 }
Andy Greenc6bf2c22011-02-20 11:10:47 +0000589
Andy Green0d338332011-02-12 11:57:43 +0000590 debug("accepted new SSL conn "
591 "port %u on fd=%d SSL ver %s\n",
592 ntohs(cli_addr.sin_port), accept_fd,
593 SSL_get_version(new_wsi->ssl));
594
595 } else
596#endif
597 debug("accepted new conn port %u on fd=%d\n",
598 ntohs(cli_addr.sin_port), accept_fd);
599
600 /* intialize the instance struct */
601
602 new_wsi->state = WSI_STATE_HTTP;
603 new_wsi->name_buffer_pos = 0;
604 new_wsi->mode = LWS_CONNMODE_WS_SERVING;
605
606 for (n = 0; n < WSI_TOKEN_COUNT; n++) {
607 new_wsi->utf8_token[n].token = NULL;
608 new_wsi->utf8_token[n].token_len = 0;
609 }
610
611 /*
612 * these can only be set once the protocol is known
613 * we set an unestablished connection's protocol pointer
614 * to the start of the supported list, so it can look
615 * for matching ones during the handshake
616 */
Peter Hinz56885f32011-03-02 22:03:47 +0000617 new_wsi->protocol = context->protocols;
Andy Green0d338332011-02-12 11:57:43 +0000618 new_wsi->user_space = NULL;
619
620 /*
621 * Default protocol is 76 / 00
622 * After 76, there's a header specified to inform which
623 * draft the client wants, when that's seen we modify
624 * the individual connection's spec revision accordingly
625 */
626 new_wsi->ietf_spec_revision = 0;
627
Peter Hinz56885f32011-03-02 22:03:47 +0000628 insert_wsi(context, new_wsi);
Andy Green0d338332011-02-12 11:57:43 +0000629
Andy Green0d338332011-02-12 11:57:43 +0000630 /*
631 * make sure NO events are seen yet on this new socket
632 * (otherwise we inherit old fds[client].revents from
633 * previous socket there and die mysteriously! )
634 */
Peter Hinz56885f32011-03-02 22:03:47 +0000635 context->fds[context->fds_count].revents = 0;
Andy Green0d338332011-02-12 11:57:43 +0000636
Peter Hinz56885f32011-03-02 22:03:47 +0000637 context->fds[context->fds_count].events = POLLIN;
638 context->fds[context->fds_count++].fd = accept_fd;
Andy Green0d338332011-02-12 11:57:43 +0000639
Andy Green3221f922011-02-12 13:14:11 +0000640 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +0000641 context->protocols[0].callback(context, new_wsi,
Andy Green3221f922011-02-12 13:14:11 +0000642 LWS_CALLBACK_ADD_POLL_FD,
643 (void *)(long)accept_fd, NULL, POLLIN);
644
Andy Green0d338332011-02-12 11:57:43 +0000645 break;
646
647 case LWS_CONNMODE_BROADCAST_PROXY_LISTENER:
648
649 /* as we are listening, POLLIN means accept() is needed */
650
651 if (!pollfd->revents & POLLIN)
652 break;
653
654 /* listen socket got an unencrypted connection... */
655
656 clilen = sizeof(cli_addr);
657 accept_fd = accept(pollfd->fd, (struct sockaddr *)&cli_addr,
658 &clilen);
659 if (accept_fd < 0) {
660 fprintf(stderr, "ERROR on accept");
661 break;
662 }
663
Peter Hinz56885f32011-03-02 22:03:47 +0000664 if (context->fds_count >= MAX_CLIENTS) {
Andy Green3221f922011-02-12 13:14:11 +0000665 fprintf(stderr, "too busy to accept new broadcast "
666 "proxy client\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000667#ifdef WIN32
668 closesocket(accept_fd);
669#else
Andy Green0d338332011-02-12 11:57:43 +0000670 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +0000671#endif
Andy Green0d338332011-02-12 11:57:43 +0000672 break;
673 }
674
675 /* create a dummy wsi for the connection and add it */
676
677 new_wsi = malloc(sizeof(struct libwebsocket));
678 memset(new_wsi, 0, sizeof (struct libwebsocket));
679 new_wsi->sock = accept_fd;
680 new_wsi->mode = LWS_CONNMODE_BROADCAST_PROXY;
681 new_wsi->state = WSI_STATE_ESTABLISHED;
Andy Greend6e09112011-03-05 16:12:15 +0000682 new_wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +0000683 /* note which protocol we are proxying */
684 new_wsi->protocol_index_for_broadcast_proxy =
685 wsi->protocol_index_for_broadcast_proxy;
Peter Hinz56885f32011-03-02 22:03:47 +0000686 insert_wsi(context, new_wsi);
Andy Green0d338332011-02-12 11:57:43 +0000687
688 /* add connected socket to internal poll array */
689
Peter Hinz56885f32011-03-02 22:03:47 +0000690 context->fds[context->fds_count].revents = 0;
691 context->fds[context->fds_count].events = POLLIN;
692 context->fds[context->fds_count++].fd = accept_fd;
Andy Green0d338332011-02-12 11:57:43 +0000693
Andy Green3221f922011-02-12 13:14:11 +0000694 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +0000695 context->protocols[0].callback(context, new_wsi,
Andy Green3221f922011-02-12 13:14:11 +0000696 LWS_CALLBACK_ADD_POLL_FD,
697 (void *)(long)accept_fd, NULL, POLLIN);
698
Andy Green0d338332011-02-12 11:57:43 +0000699 break;
700
701 case LWS_CONNMODE_BROADCAST_PROXY:
Andy Green8f037e42010-12-19 22:13:26 +0000702
Andy Greenb45993c2010-12-18 15:13:50 +0000703 /* handle session socket closed */
Andy Green8f037e42010-12-19 22:13:26 +0000704
Andy Green0d338332011-02-12 11:57:43 +0000705 if (pollfd->revents & (POLLERR | POLLHUP)) {
Andy Green8f037e42010-12-19 22:13:26 +0000706
Andy Green0d338332011-02-12 11:57:43 +0000707 debug("Session Socket %p (fd=%d) dead\n",
Timothy J Fontaineb86d64e2011-02-14 17:55:27 +0000708 (void *)wsi, pollfd->fd);
Andy Greenb45993c2010-12-18 15:13:50 +0000709
Peter Hinz56885f32011-03-02 22:03:47 +0000710 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000711 LWS_CLOSE_STATUS_NORMAL);
Andy Green4b6fbe12011-02-14 08:03:48 +0000712 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +0000713 }
Andy Green8f037e42010-12-19 22:13:26 +0000714
Andy Green90c7cbc2011-01-27 06:26:52 +0000715 /* the guy requested a callback when it was OK to write */
716
Andy Green0d338332011-02-12 11:57:43 +0000717 if (pollfd->revents & POLLOUT) {
Andy Green90c7cbc2011-01-27 06:26:52 +0000718
Andy Green0d338332011-02-12 11:57:43 +0000719 /* one shot */
Andy Green90c7cbc2011-01-27 06:26:52 +0000720
Andy Green0d338332011-02-12 11:57:43 +0000721 pollfd->events &= ~POLLOUT;
722
Andy Green3221f922011-02-12 13:14:11 +0000723 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +0000724 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +0000725 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
726 (void *)(long)wsi->sock, NULL, POLLOUT);
727
Peter Hinz56885f32011-03-02 22:03:47 +0000728 wsi->protocol->callback(context, wsi,
Andy Green90c7cbc2011-01-27 06:26:52 +0000729 LWS_CALLBACK_CLIENT_WRITEABLE,
Andy Green0d338332011-02-12 11:57:43 +0000730 wsi->user_space,
Andy Green90c7cbc2011-01-27 06:26:52 +0000731 NULL, 0);
732 }
733
Andy Greenb45993c2010-12-18 15:13:50 +0000734 /* any incoming data ready? */
735
Andy Green0d338332011-02-12 11:57:43 +0000736 if (!(pollfd->revents & POLLIN))
737 break;
Andy Greenb45993c2010-12-18 15:13:50 +0000738
Andy Green0d338332011-02-12 11:57:43 +0000739 /* get the issued broadcast payload from the socket */
Andy Greenb45993c2010-12-18 15:13:50 +0000740
Andy Green0d338332011-02-12 11:57:43 +0000741 len = read(pollfd->fd, buf + LWS_SEND_BUFFER_PRE_PADDING,
742 MAX_BROADCAST_PAYLOAD);
743 if (len < 0) {
744 fprintf(stderr, "Error reading broadcast payload\n");
Andy Green4b6fbe12011-02-14 08:03:48 +0000745 break;
Andy Green0d338332011-02-12 11:57:43 +0000746 }
Andy Greenb45993c2010-12-18 15:13:50 +0000747
Andy Green0d338332011-02-12 11:57:43 +0000748 /* broadcast it to all guys with this protocol index */
Andy Green8f037e42010-12-19 22:13:26 +0000749
Andy Green0d338332011-02-12 11:57:43 +0000750 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
Andy Green8f037e42010-12-19 22:13:26 +0000751
Peter Hinz56885f32011-03-02 22:03:47 +0000752 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Greenb45993c2010-12-18 15:13:50 +0000753
Peter Hinz56885f32011-03-02 22:03:47 +0000754 new_wsi = context->fd_hashtable[n].wsi[m];
Andy Greenb45993c2010-12-18 15:13:50 +0000755
Andy Green0d338332011-02-12 11:57:43 +0000756 /* only to clients we are serving to */
Andy Greenb45993c2010-12-18 15:13:50 +0000757
Andy Green0d338332011-02-12 11:57:43 +0000758 if (new_wsi->mode != LWS_CONNMODE_WS_SERVING)
Andy Greenb45993c2010-12-18 15:13:50 +0000759 continue;
760
761 /*
762 * never broadcast to non-established
763 * connection
764 */
765
Andy Green0d338332011-02-12 11:57:43 +0000766 if (new_wsi->state != WSI_STATE_ESTABLISHED)
Andy Green4739e5c2011-01-22 12:51:57 +0000767 continue;
768
Andy Greenb45993c2010-12-18 15:13:50 +0000769 /*
770 * only broadcast to connections using
771 * the requested protocol
772 */
773
Andy Green0d338332011-02-12 11:57:43 +0000774 if (new_wsi->protocol->protocol_index !=
775 wsi->protocol_index_for_broadcast_proxy)
Andy Greenb45993c2010-12-18 15:13:50 +0000776 continue;
777
Andy Green8f037e42010-12-19 22:13:26 +0000778 /* broadcast it to this connection */
779
Peter Hinz56885f32011-03-02 22:03:47 +0000780 new_wsi->protocol->callback(context, new_wsi,
Andy Green8f037e42010-12-19 22:13:26 +0000781 LWS_CALLBACK_BROADCAST,
Andy Green0d338332011-02-12 11:57:43 +0000782 new_wsi->user_space,
Andy Green0ca6a172010-12-19 20:50:01 +0000783 buf + LWS_SEND_BUFFER_PRE_PADDING, len);
Andy Greenb45993c2010-12-18 15:13:50 +0000784 }
Andy Green0d338332011-02-12 11:57:43 +0000785 }
786 break;
Andy Greenb45993c2010-12-18 15:13:50 +0000787
Andy Greenbe93fef2011-02-14 20:25:43 +0000788 case LWS_CONNMODE_WS_CLIENT_WAITING_PROXY_REPLY:
789
790 /* handle proxy hung up on us */
791
792 if (pollfd->revents & (POLLERR | POLLHUP)) {
793
794 fprintf(stderr, "Proxy connection %p (fd=%d) dead\n",
795 (void *)wsi, pollfd->fd);
796
Peter Hinz56885f32011-03-02 22:03:47 +0000797 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000798 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000799 return 1;
800 }
801
802 n = recv(wsi->sock, pkt, sizeof pkt, 0);
803 if (n < 0) {
Peter Hinz56885f32011-03-02 22:03:47 +0000804 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000805 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000806 fprintf(stderr, "ERROR reading from proxy socket\n");
807 return 1;
808 }
809
810 pkt[13] = '\0';
811 if (strcmp(pkt, "HTTP/1.0 200 ") != 0) {
Peter Hinz56885f32011-03-02 22:03:47 +0000812 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000813 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000814 fprintf(stderr, "ERROR from proxy: %s\n", pkt);
815 return 1;
816 }
817
818 /* clear his proxy connection timeout */
819
820 libwebsocket_set_timeout(wsi, NO_PENDING_TIMEOUT, 0);
821
822 /* fallthru */
823
824 case LWS_CONNMODE_WS_CLIENT_ISSUE_HANDSHAKE:
825
826 #ifdef LWS_OPENSSL_SUPPORT
827 if (wsi->use_ssl) {
828
Peter Hinz56885f32011-03-02 22:03:47 +0000829 wsi->ssl = SSL_new(context->ssl_client_ctx);
830 wsi->client_bio = BIO_new_socket(wsi->sock,
831 BIO_NOCLOSE);
Andy Greenbe93fef2011-02-14 20:25:43 +0000832 SSL_set_bio(wsi->ssl, wsi->client_bio, wsi->client_bio);
833
Andy Green6901cb32011-02-21 08:06:47 +0000834 SSL_set_ex_data(wsi->ssl,
Andy Green2e24da02011-03-05 16:12:04 +0000835 openssl_websocket_private_data_index,
Peter Hinz56885f32011-03-02 22:03:47 +0000836 context);
Andy Green6901cb32011-02-21 08:06:47 +0000837
Andy Greenbe93fef2011-02-14 20:25:43 +0000838 if (SSL_connect(wsi->ssl) <= 0) {
839 fprintf(stderr, "SSL connect error %s\n",
Andy Green687b0182011-02-26 11:04:01 +0000840 ERR_error_string(ERR_get_error(),
841 ssl_err_buf));
Peter Hinz56885f32011-03-02 22:03:47 +0000842 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000843 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000844 return 1;
845 }
846
847 n = SSL_get_verify_result(wsi->ssl);
Andy Green2e24da02011-03-05 16:12:04 +0000848 if ((n != X509_V_OK) && (
Andy Green687b0182011-02-26 11:04:01 +0000849 n != X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT ||
850 wsi->use_ssl != 2)) {
Andy Greenbe93fef2011-02-14 20:25:43 +0000851
Andy Green687b0182011-02-26 11:04:01 +0000852 fprintf(stderr, "server's cert didn't "
853 "look good %d\n", n);
Peter Hinz56885f32011-03-02 22:03:47 +0000854 libwebsocket_close_and_free_session(context,
855 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Green687b0182011-02-26 11:04:01 +0000856 return 1;
Andy Greenbe93fef2011-02-14 20:25:43 +0000857 }
858 } else {
859 wsi->ssl = NULL;
860 #endif
861
862
863 #ifdef LWS_OPENSSL_SUPPORT
864 }
865 #endif
866
867 /*
868 * create the random key
869 */
870
Peter Hinz56885f32011-03-02 22:03:47 +0000871 n = libwebsockets_get_random(context, hash, 16);
Andy Greenbe93fef2011-02-14 20:25:43 +0000872 if (n != 16) {
873 fprintf(stderr, "Unable to read from random dev %s\n",
874 SYSTEM_RANDOM_FILEPATH);
875 free(wsi->c_path);
876 free(wsi->c_host);
Andy Green08d33922011-02-26 10:22:49 +0000877 if (wsi->c_origin)
878 free(wsi->c_origin);
Andy Greenbe93fef2011-02-14 20:25:43 +0000879 if (wsi->c_protocol)
880 free(wsi->c_protocol);
Peter Hinz56885f32011-03-02 22:03:47 +0000881 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000882 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000883 return 1;
884 }
885
886 lws_b64_encode_string(hash, 16, wsi->key_b64,
887 sizeof wsi->key_b64);
888
889 /*
Andy Greeneeaacb32011-03-01 20:44:24 +0000890 * 00 example client handshake
891 *
892 * GET /socket.io/websocket HTTP/1.1
893 * Upgrade: WebSocket
894 * Connection: Upgrade
895 * Host: 127.0.0.1:9999
896 * Origin: http://127.0.0.1
897 * Sec-WebSocket-Key1: 1 0 2#0W 9 89 7 92 ^
898 * Sec-WebSocket-Key2: 7 7Y 4328 B2v[8(z1
899 * Cookie: socketio=websocket
900 *
901 * (Á®Ä0¶†≥
902 *
Andy Greenbe93fef2011-02-14 20:25:43 +0000903 * 04 example client handshake
904 *
905 * GET /chat HTTP/1.1
906 * Host: server.example.com
907 * Upgrade: websocket
908 * Connection: Upgrade
909 * Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
910 * Sec-WebSocket-Origin: http://example.com
911 * Sec-WebSocket-Protocol: chat, superchat
912 * Sec-WebSocket-Version: 4
913 */
914
Andy Green08d33922011-02-26 10:22:49 +0000915 p += sprintf(p, "GET %s HTTP/1.1\x0d\x0a", wsi->c_path);
Andy Greeneeaacb32011-03-01 20:44:24 +0000916
917 if (wsi->ietf_spec_revision == 0) {
918 unsigned char spaces_1, spaces_2;
919 unsigned int max_1, max_2;
920 unsigned int num_1, num_2;
921 unsigned long product_1, product_2;
922 char key_1[40];
923 char key_2[40];
924 unsigned int seed;
925 unsigned int count;
926 char challenge[16];
927
Peter Hinz56885f32011-03-02 22:03:47 +0000928 libwebsockets_get_random(context, &spaces_1,
929 sizeof(char));
930 libwebsockets_get_random(context, &spaces_2,
931 sizeof(char));
932
Andy Greeneeaacb32011-03-01 20:44:24 +0000933 spaces_1 = (spaces_1 % 12) + 1;
934 spaces_2 = (spaces_2 % 12) + 1;
Peter Hinz56885f32011-03-02 22:03:47 +0000935
Andy Greeneeaacb32011-03-01 20:44:24 +0000936 max_1 = 4294967295 / spaces_1;
937 max_2 = 4294967295 / spaces_2;
938
Peter Hinz56885f32011-03-02 22:03:47 +0000939 libwebsockets_get_random(context, &num_1, sizeof(int));
940 libwebsockets_get_random(context, &num_2, sizeof(int));
941
Andy Greeneeaacb32011-03-01 20:44:24 +0000942 num_1 = (num_1 % max_1);
943 num_2 = (num_2 % max_2);
Peter Hinz56885f32011-03-02 22:03:47 +0000944
Andy Greeneeaacb32011-03-01 20:44:24 +0000945 challenge[0] = num_1 >> 24;
946 challenge[1] = num_1 >> 16;
947 challenge[2] = num_1 >> 8;
948 challenge[3] = num_1;
949 challenge[4] = num_2 >> 24;
950 challenge[5] = num_2 >> 16;
951 challenge[6] = num_2 >> 8;
952 challenge[7] = num_2;
Peter Hinz56885f32011-03-02 22:03:47 +0000953
Andy Greeneeaacb32011-03-01 20:44:24 +0000954 product_1 = num_1 * spaces_1;
955 product_2 = num_2 * spaces_2;
Peter Hinz56885f32011-03-02 22:03:47 +0000956
Andy Greeneeaacb32011-03-01 20:44:24 +0000957 sprintf(key_1, "%lu", product_1);
958 sprintf(key_2, "%lu", product_2);
959
Peter Hinz56885f32011-03-02 22:03:47 +0000960 libwebsockets_get_random(context, &seed, sizeof(int));
961 libwebsockets_get_random(context, &count, sizeof(int));
962
Andy Greeneeaacb32011-03-01 20:44:24 +0000963 libwebsockets_00_spam(key_1, (count % 12) + 1, seed);
Peter Hinz56885f32011-03-02 22:03:47 +0000964
965 libwebsockets_get_random(context, &seed, sizeof(int));
966 libwebsockets_get_random(context, &count, sizeof(int));
967
Andy Greeneeaacb32011-03-01 20:44:24 +0000968 libwebsockets_00_spam(key_2, (count % 12) + 1, seed);
Peter Hinz56885f32011-03-02 22:03:47 +0000969
970 libwebsockets_get_random(context, &seed, sizeof(int));
971
Andy Greeneeaacb32011-03-01 20:44:24 +0000972 libwebsockets_00_spaceout(key_1, spaces_1, seed);
973 libwebsockets_00_spaceout(key_2, spaces_2, seed >> 16);
Peter Hinz56885f32011-03-02 22:03:47 +0000974
Andy Greeneeaacb32011-03-01 20:44:24 +0000975 p += sprintf(p, "Upgrade: websocket\x0d\x0a"
976 "Connection: Upgrade\x0d\x0aHost: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +0000977 wsi->c_host);
Andy Greeneeaacb32011-03-01 20:44:24 +0000978 if (wsi->c_origin)
979 p += sprintf(p, "Origin: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +0000980 wsi->c_origin);
981
Andy Greeneeaacb32011-03-01 20:44:24 +0000982 if (wsi->c_protocol)
Peter Hinz56885f32011-03-02 22:03:47 +0000983 p += sprintf(p, "Sec-WebSocket-Protocol: %s"
984 "\x0d\x0a", wsi->c_protocol);
985
Andy Greeneeaacb32011-03-01 20:44:24 +0000986 p += sprintf(p, "Sec-WebSocket-Key1: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +0000987 key_1);
Andy Greeneeaacb32011-03-01 20:44:24 +0000988 p += sprintf(p, "Sec-WebSocket-Key2: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +0000989 key_2);
Andy Greeneeaacb32011-03-01 20:44:24 +0000990
Andy Green385e7ad2011-03-01 21:06:02 +0000991 /* give userland a chance to append, eg, cookies */
Peter Hinz56885f32011-03-02 22:03:47 +0000992
993 context->protocols[0].callback(context, wsi,
994 LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER,
Andy Green385e7ad2011-03-01 21:06:02 +0000995 NULL, &p, (pkt + sizeof(pkt)) - p - 12);
996
Andy Greeneeaacb32011-03-01 20:44:24 +0000997 p += sprintf(p, "\x0d\x0a");
Peter Hinz56885f32011-03-02 22:03:47 +0000998
999 read(context->fd_random, p, 8);
Andy Greeneeaacb32011-03-01 20:44:24 +00001000 memcpy(&challenge[8], p, 8);
1001 p += 8;
Peter Hinz56885f32011-03-02 22:03:47 +00001002
Andy Greeneeaacb32011-03-01 20:44:24 +00001003 /* precompute what we want to see from the server */
Peter Hinz56885f32011-03-02 22:03:47 +00001004
Andy Greeneeaacb32011-03-01 20:44:24 +00001005 MD5((unsigned char *)challenge, 16,
1006 (unsigned char *)wsi->initial_handshake_hash_base64);
Peter Hinz56885f32011-03-02 22:03:47 +00001007
Andy Greeneeaacb32011-03-01 20:44:24 +00001008 goto issue_hdr;
1009 }
1010
Andy Green08d33922011-02-26 10:22:49 +00001011 p += sprintf(p, "Host: %s\x0d\x0a", wsi->c_host);
1012 p += sprintf(p, "Upgrade: websocket\x0d\x0a");
1013 p += sprintf(p, "Connection: Upgrade\x0d\x0a"
Andy Greenbe93fef2011-02-14 20:25:43 +00001014 "Sec-WebSocket-Key: ");
Andy Green08d33922011-02-26 10:22:49 +00001015 strcpy(p, wsi->key_b64);
1016 p += strlen(wsi->key_b64);
1017 p += sprintf(p, "\x0d\x0a");
1018 if (wsi->c_origin)
1019 p += sprintf(p, "Sec-WebSocket-Origin: %s\x0d\x0a",
Andy Greenbe93fef2011-02-14 20:25:43 +00001020 wsi->c_origin);
Andy Green08d33922011-02-26 10:22:49 +00001021 if (wsi->c_protocol)
Andy Greenbe93fef2011-02-14 20:25:43 +00001022 p += sprintf(p, "Sec-WebSocket-Protocol: %s\x0d\x0a",
1023 wsi->c_protocol);
Andy Green385e7ad2011-03-01 21:06:02 +00001024 p += sprintf(p, "Sec-WebSocket-Version: %d\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +00001025 wsi->ietf_spec_revision);
Andy Green385e7ad2011-03-01 21:06:02 +00001026 /* give userland a chance to append, eg, cookies */
Peter Hinz56885f32011-03-02 22:03:47 +00001027
1028 context->protocols[0].callback(context, wsi,
1029 LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER,
1030 NULL, &p, (pkt + sizeof(pkt)) - p - 12);
1031
Andy Green385e7ad2011-03-01 21:06:02 +00001032 p += sprintf(p, "\x0d\x0a");
1033
Andy Greenbe93fef2011-02-14 20:25:43 +00001034 /* prepare the expected server accept response */
1035
1036 strcpy((char *)buf, wsi->key_b64);
1037 strcpy((char *)&buf[strlen((char *)buf)], magic_websocket_guid);
1038
1039 SHA1(buf, strlen((char *)buf), (unsigned char *)hash);
1040
1041 lws_b64_encode_string(hash, 20,
1042 wsi->initial_handshake_hash_base64,
1043 sizeof wsi->initial_handshake_hash_base64);
Peter Hinz56885f32011-03-02 22:03:47 +00001044
Andy Greeneeaacb32011-03-01 20:44:24 +00001045issue_hdr:
Peter Hinz56885f32011-03-02 22:03:47 +00001046
Andy Greeneeaacb32011-03-01 20:44:24 +00001047 /* done with these now */
Peter Hinz56885f32011-03-02 22:03:47 +00001048
Andy Greeneeaacb32011-03-01 20:44:24 +00001049 free(wsi->c_path);
1050 free(wsi->c_host);
1051 if (wsi->c_origin)
1052 free(wsi->c_origin);
1053
Andy Greenbe93fef2011-02-14 20:25:43 +00001054 /* send our request to the server */
1055
1056 #ifdef LWS_OPENSSL_SUPPORT
1057 if (wsi->use_ssl)
1058 n = SSL_write(wsi->ssl, pkt, p - pkt);
1059 else
1060 #endif
1061 n = send(wsi->sock, pkt, p - pkt, 0);
1062
1063 if (n < 0) {
1064 fprintf(stderr, "ERROR writing to client socket\n");
Peter Hinz56885f32011-03-02 22:03:47 +00001065 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001066 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001067 return 1;
1068 }
1069
1070 wsi->parser_state = WSI_TOKEN_NAME_PART;
1071 wsi->mode = LWS_CONNMODE_WS_CLIENT_WAITING_SERVER_REPLY;
1072 libwebsocket_set_timeout(wsi,
1073 PENDING_TIMEOUT_AWAITING_SERVER_RESPONSE, 5);
1074
1075 break;
1076
1077 case LWS_CONNMODE_WS_CLIENT_WAITING_SERVER_REPLY:
1078
1079 /* handle server hung up on us */
1080
1081 if (pollfd->revents & (POLLERR | POLLHUP)) {
1082
1083 fprintf(stderr, "Server connection %p (fd=%d) dead\n",
1084 (void *)wsi, pollfd->fd);
1085
1086 goto bail3;
1087 }
1088
1089
1090 /* interpret the server response */
1091
1092 /*
1093 * HTTP/1.1 101 Switching Protocols
1094 * Upgrade: websocket
1095 * Connection: Upgrade
1096 * Sec-WebSocket-Accept: me89jWimTRKTWwrS3aRrL53YZSo=
1097 * Sec-WebSocket-Nonce: AQIDBAUGBwgJCgsMDQ4PEC==
1098 * Sec-WebSocket-Protocol: chat
1099 */
1100
1101 #ifdef LWS_OPENSSL_SUPPORT
1102 if (wsi->use_ssl)
1103 len = SSL_read(wsi->ssl, pkt, sizeof pkt);
1104 else
1105 #endif
1106 len = recv(wsi->sock, pkt, sizeof pkt, 0);
1107
1108 if (len < 0) {
1109 fprintf(stderr,
1110 "libwebsocket_client_handshake read error\n");
1111 goto bail3;
1112 }
1113
1114 p = pkt;
1115 for (n = 0; n < len; n++)
1116 libwebsocket_parse(wsi, *p++);
1117
1118 if (wsi->parser_state != WSI_PARSING_COMPLETE) {
1119 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001120 "server response failed parsing\n");
Andy Greenbe93fef2011-02-14 20:25:43 +00001121 goto bail3;
1122 }
1123
1124 /*
Andy Greeneeaacb32011-03-01 20:44:24 +00001125 * 00 / 76 -->
1126 *
1127 * HTTP/1.1 101 WebSocket Protocol Handshake
1128 * Upgrade: WebSocket
1129 * Connection: Upgrade
1130 * Sec-WebSocket-Origin: http://127.0.0.1
1131 * Sec-WebSocket-Location: ws://127.0.0.1:9999/socket.io/websocket
1132 *
1133 * xxxxxxxxxxxxxxxx
1134 */
Peter Hinz56885f32011-03-02 22:03:47 +00001135
Andy Greeneeaacb32011-03-01 20:44:24 +00001136 if (wsi->ietf_spec_revision == 0) {
1137 if (!wsi->utf8_token[WSI_TOKEN_HTTP].token_len ||
Peter Hinz56885f32011-03-02 22:03:47 +00001138 !wsi->utf8_token[WSI_TOKEN_UPGRADE].token_len ||
1139 !wsi->utf8_token[WSI_TOKEN_CHALLENGE].token_len ||
1140 !wsi->utf8_token[WSI_TOKEN_CONNECTION].token_len ||
1141 (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len &&
1142 wsi->c_protocol != NULL)) {
Andy Greeneeaacb32011-03-01 20:44:24 +00001143 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001144 "missing required header(s)\n");
Andy Greeneeaacb32011-03-01 20:44:24 +00001145 pkt[len] = '\0';
1146 fprintf(stderr, "%s", pkt);
1147 goto bail3;
1148 }
Andy Greeneeaacb32011-03-01 20:44:24 +00001149
Peter Hinz56885f32011-03-02 22:03:47 +00001150 strtolower(wsi->utf8_token[WSI_TOKEN_HTTP].token);
1151 if (strcmp(wsi->utf8_token[WSI_TOKEN_HTTP].token,
1152 "101 websocket protocol handshake")) {
Andy Greeneeaacb32011-03-01 20:44:24 +00001153 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001154 "server sent bad HTTP response '%s'\n",
1155 wsi->utf8_token[WSI_TOKEN_HTTP].token);
1156 goto bail3;
1157 }
1158
1159 if (wsi->utf8_token[WSI_TOKEN_CHALLENGE].token_len <
1160 16) {
1161 fprintf(stderr, "libwebsocket_client_handshake "
1162 "challenge reply too short %d\n",
1163 wsi->utf8_token[
1164 WSI_TOKEN_CHALLENGE].token_len);
Andy Greeneeaacb32011-03-01 20:44:24 +00001165 pkt[len] = '\0';
1166 fprintf(stderr, "%s", pkt);
1167 goto bail3;
Peter Hinz56885f32011-03-02 22:03:47 +00001168
Andy Greeneeaacb32011-03-01 20:44:24 +00001169 }
Peter Hinz56885f32011-03-02 22:03:47 +00001170
Andy Greeneeaacb32011-03-01 20:44:24 +00001171 goto select_protocol;
1172 }
Peter Hinz56885f32011-03-02 22:03:47 +00001173
Andy Greeneeaacb32011-03-01 20:44:24 +00001174 /*
Andy Greenbe93fef2011-02-14 20:25:43 +00001175 * well, what the server sent looked reasonable for syntax.
1176 * Now let's confirm it sent all the necessary headers
1177 */
1178
1179 if (!wsi->utf8_token[WSI_TOKEN_HTTP].token_len ||
1180 !wsi->utf8_token[WSI_TOKEN_UPGRADE].token_len ||
1181 !wsi->utf8_token[WSI_TOKEN_CONNECTION].token_len ||
1182 !wsi->utf8_token[WSI_TOKEN_ACCEPT].token_len ||
Andy Green4eaa86b2011-02-26 11:17:48 +00001183 (!wsi->utf8_token[WSI_TOKEN_NONCE].token_len &&
1184 wsi->ietf_spec_revision == 4) ||
Andy Greenbe93fef2011-02-14 20:25:43 +00001185 (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len &&
1186 wsi->c_protocol != NULL)) {
1187 fprintf(stderr, "libwebsocket_client_handshake "
Andy Green687b0182011-02-26 11:04:01 +00001188 "missing required header(s)\n");
Andy Greenbe93fef2011-02-14 20:25:43 +00001189 pkt[len] = '\0';
1190 fprintf(stderr, "%s", pkt);
1191 goto bail3;
1192 }
1193
1194 /*
1195 * Everything seems to be there, now take a closer look at what
1196 * is in each header
1197 */
1198
1199 strtolower(wsi->utf8_token[WSI_TOKEN_HTTP].token);
1200 if (strcmp(wsi->utf8_token[WSI_TOKEN_HTTP].token,
1201 "101 switching protocols")) {
1202 fprintf(stderr, "libwebsocket_client_handshake "
1203 "server sent bad HTTP response '%s'\n",
1204 wsi->utf8_token[WSI_TOKEN_HTTP].token);
1205 goto bail3;
1206 }
1207
1208 strtolower(wsi->utf8_token[WSI_TOKEN_UPGRADE].token);
1209 if (strcmp(wsi->utf8_token[WSI_TOKEN_UPGRADE].token,
1210 "websocket")) {
1211 fprintf(stderr, "libwebsocket_client_handshake server "
1212 "sent bad Upgrade header '%s'\n",
1213 wsi->utf8_token[WSI_TOKEN_UPGRADE].token);
1214 goto bail3;
1215 }
1216
1217 strtolower(wsi->utf8_token[WSI_TOKEN_CONNECTION].token);
1218 if (strcmp(wsi->utf8_token[WSI_TOKEN_CONNECTION].token,
1219 "upgrade")) {
1220 fprintf(stderr, "libwebsocket_client_handshake server "
1221 "sent bad Connection hdr '%s'\n",
1222 wsi->utf8_token[WSI_TOKEN_CONNECTION].token);
1223 goto bail3;
1224 }
1225
Andy Greeneeaacb32011-03-01 20:44:24 +00001226select_protocol:
Andy Greenbe93fef2011-02-14 20:25:43 +00001227 pc = wsi->c_protocol;
1228
1229 /*
1230 * confirm the protocol the server wants to talk was in the list
1231 * of protocols we offered
1232 */
1233
1234 if (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len) {
1235
1236 /*
1237 * no protocol name to work from,
1238 * default to first protocol
1239 */
Peter Hinz56885f32011-03-02 22:03:47 +00001240 wsi->protocol = &context->protocols[0];
Andy Greenbe93fef2011-02-14 20:25:43 +00001241
1242 free(wsi->c_protocol);
1243
1244 goto check_accept;
1245 }
1246
1247 while (*pc && !okay) {
1248 if ((!strncmp(pc,
1249 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token,
1250 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len)) &&
1251 (pc[wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len] == ',' ||
1252 pc[wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len] == '\0')) {
1253 okay = 1;
1254 continue;
1255 }
1256 while (*pc && *pc != ',')
1257 pc++;
1258 while (*pc && *pc != ' ')
1259 pc++;
1260 }
1261
1262 /* done with him now */
1263
1264 if (wsi->c_protocol)
1265 free(wsi->c_protocol);
1266
1267
1268 if (!okay) {
1269 fprintf(stderr, "libwebsocket_client_handshake server "
1270 "sent bad protocol '%s'\n",
1271 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token);
1272 goto bail2;
1273 }
1274
1275 /*
1276 * identify the selected protocol struct and set it
1277 */
1278 n = 0;
1279 wsi->protocol = NULL;
Peter Hinz56885f32011-03-02 22:03:47 +00001280 while (context->protocols[n].callback) {
Andy Greenbe93fef2011-02-14 20:25:43 +00001281 if (strcmp(wsi->utf8_token[WSI_TOKEN_PROTOCOL].token,
Peter Hinz56885f32011-03-02 22:03:47 +00001282 context->protocols[n].name) == 0)
1283 wsi->protocol = &context->protocols[n];
Andy Greenbe93fef2011-02-14 20:25:43 +00001284 n++;
1285 }
1286
1287 if (wsi->protocol == NULL) {
1288 fprintf(stderr, "libwebsocket_client_handshake server "
1289 "requested protocol '%s', which we "
1290 "said we supported but we don't!\n",
1291 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token);
1292 goto bail2;
1293 }
1294
1295 check_accept:
Andy Greeneeaacb32011-03-01 20:44:24 +00001296
1297 if (wsi->ietf_spec_revision == 0) {
Peter Hinz56885f32011-03-02 22:03:47 +00001298
Andy Greeneeaacb32011-03-01 20:44:24 +00001299 if (memcmp(wsi->initial_handshake_hash_base64,
Peter Hinz56885f32011-03-02 22:03:47 +00001300 wsi->utf8_token[WSI_TOKEN_CHALLENGE].token, 16)) {
Andy Greeneeaacb32011-03-01 20:44:24 +00001301 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001302 "failed 00 challenge compare\n");
1303 pkt[len] = '\0';
1304 fprintf(stderr, "%s", pkt);
1305 goto bail2;
Andy Greeneeaacb32011-03-01 20:44:24 +00001306 }
Peter Hinz56885f32011-03-02 22:03:47 +00001307
Andy Greeneeaacb32011-03-01 20:44:24 +00001308 goto accept_ok;
1309 }
Peter Hinz56885f32011-03-02 22:03:47 +00001310
Andy Greenbe93fef2011-02-14 20:25:43 +00001311 /*
1312 * Confirm his accept token is the one we precomputed
1313 */
1314
1315 if (strcmp(wsi->utf8_token[WSI_TOKEN_ACCEPT].token,
1316 wsi->initial_handshake_hash_base64)) {
1317 fprintf(stderr, "libwebsocket_client_handshake server "
1318 "sent bad ACCEPT '%s' vs computed '%s'\n",
1319 wsi->utf8_token[WSI_TOKEN_ACCEPT].token,
1320 wsi->initial_handshake_hash_base64);
1321 goto bail2;
1322 }
1323
Andy Green4eaa86b2011-02-26 11:17:48 +00001324 if (wsi->ietf_spec_revision == 4) {
1325 /*
1326 * Calculate the 04 masking key to use when
1327 * sending data to server
1328 */
Andy Greenbe93fef2011-02-14 20:25:43 +00001329
Andy Green4eaa86b2011-02-26 11:17:48 +00001330 strcpy((char *)buf, wsi->key_b64);
1331 p = (char *)buf + strlen(wsi->key_b64);
1332 strcpy(p, wsi->utf8_token[WSI_TOKEN_NONCE].token);
1333 p += wsi->utf8_token[WSI_TOKEN_NONCE].token_len;
1334 strcpy(p, magic_websocket_04_masking_guid);
1335 SHA1(buf, strlen((char *)buf), wsi->masking_key_04);
1336 }
Andy Greeneeaacb32011-03-01 20:44:24 +00001337accept_ok:
1338
Andy Greenbe93fef2011-02-14 20:25:43 +00001339 /* allocate the per-connection user memory (if any) */
1340
1341 if (wsi->protocol->per_session_data_size) {
1342 wsi->user_space = malloc(
1343 wsi->protocol->per_session_data_size);
1344 if (wsi->user_space == NULL) {
1345 fprintf(stderr, "Out of memory for "
1346 "conn user space\n");
1347 goto bail2;
1348 }
1349 } else
1350 wsi->user_space = NULL;
1351
1352 /* clear his proxy connection timeout */
1353
1354 libwebsocket_set_timeout(wsi, NO_PENDING_TIMEOUT, 0);
1355
1356 /* mark him as being alive */
1357
1358 wsi->state = WSI_STATE_ESTABLISHED;
1359 wsi->mode = LWS_CONNMODE_WS_CLIENT;
1360
1361 fprintf(stderr, "handshake OK for protocol %s\n",
1362 wsi->protocol->name);
1363
1364 /* call him back to inform him he is up */
1365
Peter Hinz56885f32011-03-02 22:03:47 +00001366 wsi->protocol->callback(context, wsi,
Andy Greenbe93fef2011-02-14 20:25:43 +00001367 LWS_CALLBACK_CLIENT_ESTABLISHED,
1368 wsi->user_space,
1369 NULL, 0);
1370
1371 break;
1372
1373bail3:
1374 if (wsi->c_protocol)
1375 free(wsi->c_protocol);
1376
1377bail2:
Peter Hinz56885f32011-03-02 22:03:47 +00001378 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001379 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001380 return 1;
1381
1382
Andy Green0d338332011-02-12 11:57:43 +00001383 case LWS_CONNMODE_WS_SERVING:
1384 case LWS_CONNMODE_WS_CLIENT:
1385
1386 /* handle session socket closed */
1387
1388 if (pollfd->revents & (POLLERR | POLLHUP)) {
1389
Andy Green62c54d22011-02-14 09:14:25 +00001390 fprintf(stderr, "Session Socket %p (fd=%d) dead\n",
Andy Green0d338332011-02-12 11:57:43 +00001391 (void *)wsi, pollfd->fd);
1392
Peter Hinz56885f32011-03-02 22:03:47 +00001393 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001394 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green4b6fbe12011-02-14 08:03:48 +00001395 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +00001396 }
1397
Andy Green0d338332011-02-12 11:57:43 +00001398 /* the guy requested a callback when it was OK to write */
1399
1400 if (pollfd->revents & POLLOUT) {
1401
1402 pollfd->events &= ~POLLOUT;
1403
Andy Green3221f922011-02-12 13:14:11 +00001404 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001405 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001406 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
1407 (void *)(long)wsi->sock, NULL, POLLOUT);
1408
Peter Hinz56885f32011-03-02 22:03:47 +00001409 wsi->protocol->callback(context, wsi,
Andy Green0d338332011-02-12 11:57:43 +00001410 LWS_CALLBACK_CLIENT_WRITEABLE,
1411 wsi->user_space,
1412 NULL, 0);
1413 }
1414
1415 /* any incoming data ready? */
1416
1417 if (!(pollfd->revents & POLLIN))
1418 break;
1419
Andy Greenb45993c2010-12-18 15:13:50 +00001420#ifdef LWS_OPENSSL_SUPPORT
Andy Green0d338332011-02-12 11:57:43 +00001421 if (wsi->ssl)
Andy Green98a717c2011-03-06 13:14:15 +00001422 eff_buf.token_len = SSL_read(wsi->ssl, buf, sizeof buf);
Andy Greenb45993c2010-12-18 15:13:50 +00001423 else
1424#endif
Andy Green98a717c2011-03-06 13:14:15 +00001425 eff_buf.token_len =
1426 recv(pollfd->fd, buf, sizeof buf, 0);
Andy Greenb45993c2010-12-18 15:13:50 +00001427
Andy Green98a717c2011-03-06 13:14:15 +00001428 if (eff_buf.token_len < 0) {
1429 fprintf(stderr, "Socket read returned %d\n",
1430 eff_buf.token_len);
Andy Green4b6fbe12011-02-14 08:03:48 +00001431 break;
Andy Greenb45993c2010-12-18 15:13:50 +00001432 }
Andy Green98a717c2011-03-06 13:14:15 +00001433 if (!eff_buf.token_len) {
Peter Hinz56885f32011-03-02 22:03:47 +00001434 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001435 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green4b6fbe12011-02-14 08:03:48 +00001436 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +00001437 }
1438
Andy Green98a717c2011-03-06 13:14:15 +00001439 /*
1440 * give any active extensions a chance to munge the buffer
1441 * before parse. We pass in a pointer to an lws_tokens struct
1442 * prepared with the default buffer and content length that's in
1443 * there. Rather than rewrite the default buffer, extensions
1444 * that expect to grow the buffer can adapt .token to
1445 * point to their own per-connection buffer in the extension
1446 * user allocation. By default with no extensions or no
1447 * extension callback handling, just the normal input buffer is
1448 * used then so it is efficient.
1449 */
Andy Greenb45993c2010-12-18 15:13:50 +00001450
Andy Green98a717c2011-03-06 13:14:15 +00001451 eff_buf.token = (char *)buf;
Andy Greenb45993c2010-12-18 15:13:50 +00001452
Andy Green98a717c2011-03-06 13:14:15 +00001453 more = 1;
1454 while (more) {
Andy Green0d338332011-02-12 11:57:43 +00001455
Andy Green98a717c2011-03-06 13:14:15 +00001456 more = 0;
1457
1458 for (n = 0; n < wsi->count_active_extensions; n++) {
1459 m = wsi->active_extensions[n]->callback(context, wsi,
1460 LWS_EXT_CALLBACK_PACKET_RX_PREPARSE,
1461 wsi->active_extensions_user[n], &eff_buf, 0);
1462 if (m < 0) {
1463 fprintf(stderr, "Extension reports fatal error\n");
1464 libwebsocket_close_and_free_session(context, wsi,
1465 LWS_CLOSE_STATUS_NOSTATUS);
1466 return 1;
1467 }
1468 if (m)
1469 more = 1;
1470 }
1471
1472 /* service incoming data */
1473
1474 if (eff_buf.token_len) {
1475 n = libwebsocket_read(context, wsi,
1476 (unsigned char *)eff_buf.token, eff_buf.token_len);
1477 if (n < 0)
1478 /* we closed wsi */
1479 return 1;
1480 }
1481
1482 eff_buf.token = NULL;
1483 eff_buf.token_len = 0;
1484 }
1485 break;
Andy Greenb45993c2010-12-18 15:13:50 +00001486 }
1487
1488 return 0;
1489}
1490
Andy Green0d338332011-02-12 11:57:43 +00001491
Andy Green6964bb52011-01-23 16:50:33 +00001492/**
1493 * libwebsocket_context_destroy() - Destroy the websocket context
Peter Hinz56885f32011-03-02 22:03:47 +00001494 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001495 *
1496 * This function closes any active connections and then frees the
1497 * context. After calling this, any further use of the context is
1498 * undefined.
1499 */
1500void
Peter Hinz56885f32011-03-02 22:03:47 +00001501libwebsocket_context_destroy(struct libwebsocket_context *context)
Andy Green6964bb52011-01-23 16:50:33 +00001502{
Andy Green0d338332011-02-12 11:57:43 +00001503 int n;
1504 int m;
1505 struct libwebsocket *wsi;
Andy Green6964bb52011-01-23 16:50:33 +00001506
Andy Green4b6fbe12011-02-14 08:03:48 +00001507 for (n = 0; n < FD_HASHTABLE_MODULUS; n++)
Peter Hinz56885f32011-03-02 22:03:47 +00001508 for (m = 0; m < context->fd_hashtable[n].length; m++) {
1509 wsi = context->fd_hashtable[n].wsi[m];
1510 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001511 LWS_CLOSE_STATUS_GOINGAWAY);
Andy Greenf3d3b402011-02-09 07:16:34 +00001512 }
Andy Green6964bb52011-01-23 16:50:33 +00001513
Peter Hinz56885f32011-03-02 22:03:47 +00001514#ifdef WIN32
1515#else
1516 close(context->fd_random);
Andy Green6964bb52011-01-23 16:50:33 +00001517#endif
1518
Peter Hinz56885f32011-03-02 22:03:47 +00001519#ifdef LWS_OPENSSL_SUPPORT
1520 if (context->ssl_ctx)
1521 SSL_CTX_free(context->ssl_ctx);
1522 if (context->ssl_client_ctx)
1523 SSL_CTX_free(context->ssl_client_ctx);
1524#endif
1525
1526 free(context);
1527
1528#ifdef WIN32
1529 WSACleanup();
1530#endif
Andy Green6964bb52011-01-23 16:50:33 +00001531}
1532
1533/**
1534 * libwebsocket_service() - Service any pending websocket activity
Peter Hinz56885f32011-03-02 22:03:47 +00001535 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001536 * @timeout_ms: Timeout for poll; 0 means return immediately if nothing needed
1537 * service otherwise block and service immediately, returning
1538 * after the timeout if nothing needed service.
1539 *
1540 * This function deals with any pending websocket traffic, for three
1541 * kinds of event. It handles these events on both server and client
1542 * types of connection the same.
1543 *
1544 * 1) Accept new connections to our context's server
1545 *
1546 * 2) Perform pending broadcast writes initiated from other forked
1547 * processes (effectively serializing asynchronous broadcasts)
1548 *
1549 * 3) Call the receive callback for incoming frame data received by
1550 * server or client connections.
1551 *
1552 * You need to call this service function periodically to all the above
1553 * functions to happen; if your application is single-threaded you can
1554 * just call it in your main event loop.
1555 *
1556 * Alternatively you can fork a new process that asynchronously handles
1557 * calling this service in a loop. In that case you are happy if this
1558 * call blocks your thread until it needs to take care of something and
1559 * would call it with a large nonzero timeout. Your loop then takes no
1560 * CPU while there is nothing happening.
1561 *
1562 * If you are calling it in a single-threaded app, you don't want it to
1563 * wait around blocking other things in your loop from happening, so you
1564 * would call it with a timeout_ms of 0, so it returns immediately if
1565 * nothing is pending, or as soon as it services whatever was pending.
1566 */
1567
Andy Greenb45993c2010-12-18 15:13:50 +00001568
Andy Greene92cd172011-01-19 13:11:55 +00001569int
Peter Hinz56885f32011-03-02 22:03:47 +00001570libwebsocket_service(struct libwebsocket_context *context, int timeout_ms)
Andy Greene92cd172011-01-19 13:11:55 +00001571{
1572 int n;
Andy Greene92cd172011-01-19 13:11:55 +00001573
1574 /* stay dead once we are dead */
1575
Peter Hinz56885f32011-03-02 22:03:47 +00001576 if (context == NULL)
Andy Greene92cd172011-01-19 13:11:55 +00001577 return 1;
1578
Andy Green0d338332011-02-12 11:57:43 +00001579 /* wait for something to need service */
Andy Green4739e5c2011-01-22 12:51:57 +00001580
Peter Hinz56885f32011-03-02 22:03:47 +00001581 n = poll(context->fds, context->fds_count, timeout_ms);
Andy Green3221f922011-02-12 13:14:11 +00001582 if (n == 0) /* poll timeout */
1583 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001584
Andy Green62c54d22011-02-14 09:14:25 +00001585 if (n < 0) {
Andy Green5e1fa172011-02-10 09:07:05 +00001586 /*
Andy Greene92cd172011-01-19 13:11:55 +00001587 fprintf(stderr, "Listen Socket dead\n");
Andy Green5e1fa172011-02-10 09:07:05 +00001588 */
Andy Green0d338332011-02-12 11:57:43 +00001589 return 1;
Andy Greene92cd172011-01-19 13:11:55 +00001590 }
Andy Greene92cd172011-01-19 13:11:55 +00001591
1592 /* handle accept on listening socket? */
1593
Peter Hinz56885f32011-03-02 22:03:47 +00001594 for (n = 0; n < context->fds_count; n++)
1595 if (context->fds[n].revents)
1596 libwebsocket_service_fd(context, &context->fds[n]);
Andy Greene92cd172011-01-19 13:11:55 +00001597
1598 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001599}
1600
Andy Green90c7cbc2011-01-27 06:26:52 +00001601/**
1602 * libwebsocket_callback_on_writable() - Request a callback when this socket
1603 * becomes able to be written to without
1604 * blocking
Andy Green32375b72011-02-19 08:32:53 +00001605 *
Peter Hinz56885f32011-03-02 22:03:47 +00001606 * @context: libwebsockets context
Andy Green90c7cbc2011-01-27 06:26:52 +00001607 * @wsi: Websocket connection instance to get callback for
1608 */
1609
1610int
Peter Hinz56885f32011-03-02 22:03:47 +00001611libwebsocket_callback_on_writable(struct libwebsocket_context *context,
Andy Green62c54d22011-02-14 09:14:25 +00001612 struct libwebsocket *wsi)
Andy Green90c7cbc2011-01-27 06:26:52 +00001613{
Andy Green90c7cbc2011-01-27 06:26:52 +00001614 int n;
1615
Peter Hinz56885f32011-03-02 22:03:47 +00001616 for (n = 0; n < context->fds_count; n++)
1617 if (context->fds[n].fd == wsi->sock) {
1618 context->fds[n].events |= POLLOUT;
1619 n = context->fds_count;
Andy Green90c7cbc2011-01-27 06:26:52 +00001620 }
1621
Andy Green3221f922011-02-12 13:14:11 +00001622 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001623 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001624 LWS_CALLBACK_SET_MODE_POLL_FD,
1625 (void *)(long)wsi->sock, NULL, POLLOUT);
1626
Andy Green90c7cbc2011-01-27 06:26:52 +00001627 return 1;
1628}
1629
1630/**
1631 * libwebsocket_callback_on_writable_all_protocol() - Request a callback for
1632 * all connections using the given protocol when it
1633 * becomes possible to write to each socket without
1634 * blocking in turn.
1635 *
1636 * @protocol: Protocol whose connections will get callbacks
1637 */
1638
1639int
1640libwebsocket_callback_on_writable_all_protocol(
1641 const struct libwebsocket_protocols *protocol)
1642{
Peter Hinz56885f32011-03-02 22:03:47 +00001643 struct libwebsocket_context *context = protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001644 int n;
Andy Green0d338332011-02-12 11:57:43 +00001645 int m;
1646 struct libwebsocket *wsi;
Andy Green90c7cbc2011-01-27 06:26:52 +00001647
Andy Green0d338332011-02-12 11:57:43 +00001648 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
1649
Peter Hinz56885f32011-03-02 22:03:47 +00001650 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Green0d338332011-02-12 11:57:43 +00001651
Peter Hinz56885f32011-03-02 22:03:47 +00001652 wsi = context->fd_hashtable[n].wsi[m];
Andy Green0d338332011-02-12 11:57:43 +00001653
1654 if (wsi->protocol == protocol)
Peter Hinz56885f32011-03-02 22:03:47 +00001655 libwebsocket_callback_on_writable(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001656 }
1657 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001658
1659 return 0;
1660}
1661
Andy Greenbe93fef2011-02-14 20:25:43 +00001662/**
1663 * libwebsocket_set_timeout() - marks the wsi as subject to a timeout
1664 *
1665 * You will not need this unless you are doing something special
1666 *
1667 * @wsi: Websocket connection instance
1668 * @reason: timeout reason
1669 * @secs: how many seconds
1670 */
1671
1672void
1673libwebsocket_set_timeout(struct libwebsocket *wsi,
1674 enum pending_timeout reason, int secs)
1675{
1676 struct timeval tv;
1677
1678 gettimeofday(&tv, NULL);
1679
1680 wsi->pending_timeout_limit = tv.tv_sec + secs;
1681 wsi->pending_timeout = reason;
1682}
1683
Andy Greena6cbece2011-01-27 20:06:03 +00001684
1685/**
1686 * libwebsocket_get_socket_fd() - returns the socket file descriptor
1687 *
1688 * You will not need this unless you are doing something special
1689 *
1690 * @wsi: Websocket connection instance
1691 */
1692
1693int
1694libwebsocket_get_socket_fd(struct libwebsocket *wsi)
1695{
1696 return wsi->sock;
1697}
1698
Andy Green90c7cbc2011-01-27 06:26:52 +00001699/**
1700 * libwebsocket_rx_flow_control() - Enable and disable socket servicing for
1701 * receieved packets.
1702 *
1703 * If the output side of a server process becomes choked, this allows flow
1704 * control for the input side.
1705 *
1706 * @wsi: Websocket connection instance to get callback for
1707 * @enable: 0 = disable read servicing for this connection, 1 = enable
1708 */
1709
1710int
1711libwebsocket_rx_flow_control(struct libwebsocket *wsi, int enable)
1712{
Peter Hinz56885f32011-03-02 22:03:47 +00001713 struct libwebsocket_context *context = wsi->protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001714 int n;
1715
Peter Hinz56885f32011-03-02 22:03:47 +00001716 for (n = 0; n < context->fds_count; n++)
1717 if (context->fds[n].fd == wsi->sock) {
Andy Green90c7cbc2011-01-27 06:26:52 +00001718 if (enable)
Peter Hinz56885f32011-03-02 22:03:47 +00001719 context->fds[n].events |= POLLIN;
Andy Green90c7cbc2011-01-27 06:26:52 +00001720 else
Peter Hinz56885f32011-03-02 22:03:47 +00001721 context->fds[n].events &= ~POLLIN;
Andy Green90c7cbc2011-01-27 06:26:52 +00001722
1723 return 0;
1724 }
1725
Andy Green3221f922011-02-12 13:14:11 +00001726 if (enable)
1727 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001728 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001729 LWS_CALLBACK_SET_MODE_POLL_FD,
1730 (void *)(long)wsi->sock, NULL, POLLIN);
1731 else
1732 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001733 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001734 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
1735 (void *)(long)wsi->sock, NULL, POLLIN);
1736
1737
Andy Green90c7cbc2011-01-27 06:26:52 +00001738 fprintf(stderr, "libwebsocket_callback_on_writable "
1739 "unable to find socket\n");
1740 return 1;
1741}
1742
Andy Green2ac5a6f2011-01-28 10:00:18 +00001743/**
1744 * libwebsocket_canonical_hostname() - returns this host's hostname
1745 *
1746 * This is typically used by client code to fill in the host parameter
1747 * when making a client connection. You can only call it after the context
1748 * has been created.
1749 *
Peter Hinz56885f32011-03-02 22:03:47 +00001750 * @context: Websocket context
Andy Green2ac5a6f2011-01-28 10:00:18 +00001751 */
1752
1753
1754extern const char *
Peter Hinz56885f32011-03-02 22:03:47 +00001755libwebsocket_canonical_hostname(struct libwebsocket_context *context)
Andy Green2ac5a6f2011-01-28 10:00:18 +00001756{
Peter Hinz56885f32011-03-02 22:03:47 +00001757 return (const char *)context->canonical_hostname;
Andy Green2ac5a6f2011-01-28 10:00:18 +00001758}
1759
1760
Andy Green90c7cbc2011-01-27 06:26:52 +00001761static void sigpipe_handler(int x)
1762{
1763}
1764
Andy Green6901cb32011-02-21 08:06:47 +00001765#ifdef LWS_OPENSSL_SUPPORT
1766static int
1767OpenSSL_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx)
1768{
1769
1770 SSL *ssl;
1771 int n;
Andy Green2e24da02011-03-05 16:12:04 +00001772 struct libwebsocket_context *context;
Andy Green6901cb32011-02-21 08:06:47 +00001773
1774 ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
1775 SSL_get_ex_data_X509_STORE_CTX_idx());
1776
1777 /*
Andy Green2e24da02011-03-05 16:12:04 +00001778 * !!! nasty openssl requires the index to come as a library-scope
1779 * static
Andy Green6901cb32011-02-21 08:06:47 +00001780 */
Andy Green2e24da02011-03-05 16:12:04 +00001781 context = SSL_get_ex_data(ssl, openssl_websocket_private_data_index);
Andy Green6901cb32011-02-21 08:06:47 +00001782
Peter Hinz56885f32011-03-02 22:03:47 +00001783 n = context->protocols[0].callback(NULL, NULL,
Andy Green6901cb32011-02-21 08:06:47 +00001784 LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION,
1785 x509_ctx, ssl, preverify_ok);
1786
1787 /* convert return code from 0 = OK to 1 = OK */
1788
1789 if (!n)
1790 n = 1;
1791 else
1792 n = 0;
1793
1794 return n;
1795}
1796#endif
1797
Andy Greenb45993c2010-12-18 15:13:50 +00001798
Andy Greenab990e42010-10-31 12:42:52 +00001799/**
Andy Green4739e5c2011-01-22 12:51:57 +00001800 * libwebsocket_create_context() - Create the websocket handler
1801 * @port: Port to listen on... you can use 0 to suppress listening on
Andy Green6964bb52011-01-23 16:50:33 +00001802 * any port, that's what you want if you are not running a
1803 * websocket server at all but just using it as a client
Peter Hinz56885f32011-03-02 22:03:47 +00001804 * @interf: NULL to bind the listen socket to all interfaces, or the
Andy Green32375b72011-02-19 08:32:53 +00001805 * interface name, eg, "eth2"
Andy Green4f3943a2010-11-12 10:44:16 +00001806 * @protocols: Array of structures listing supported protocols and a protocol-
Andy Green8f037e42010-12-19 22:13:26 +00001807 * specific callback for each one. The list is ended with an
1808 * entry that has a NULL callback pointer.
Andy Green6964bb52011-01-23 16:50:33 +00001809 * It's not const because we write the owning_server member
Andy Greenc5114822011-03-06 10:29:35 +00001810 * @extensions: NULL or array of libwebsocket_extension structs listing the
1811 * extensions this context supports
Andy Green3faa9c72010-11-08 17:03:03 +00001812 * @ssl_cert_filepath: If libwebsockets was compiled to use ssl, and you want
Andy Green8f037e42010-12-19 22:13:26 +00001813 * to listen using SSL, set to the filepath to fetch the
1814 * server cert from, otherwise NULL for unencrypted
Andy Green3faa9c72010-11-08 17:03:03 +00001815 * @ssl_private_key_filepath: filepath to private key if wanting SSL mode,
Andy Green8f037e42010-12-19 22:13:26 +00001816 * else ignored
Andy Green3faa9c72010-11-08 17:03:03 +00001817 * @gid: group id to change to after setting listen socket, or -1.
1818 * @uid: user id to change to after setting listen socket, or -1.
Andy Greenbfb051f2011-02-09 08:49:14 +00001819 * @options: 0, or LWS_SERVER_OPTION_DEFEAT_CLIENT_MASK
Andy Green05464c62010-11-12 10:44:18 +00001820 *
Andy Green8f037e42010-12-19 22:13:26 +00001821 * This function creates the listening socket and takes care
1822 * of all initialization in one step.
1823 *
Andy Greene92cd172011-01-19 13:11:55 +00001824 * After initialization, it returns a struct libwebsocket_context * that
1825 * represents this server. After calling, user code needs to take care
1826 * of calling libwebsocket_service() with the context pointer to get the
1827 * server's sockets serviced. This can be done in the same process context
1828 * or a forked process, or another thread,
Andy Green05464c62010-11-12 10:44:18 +00001829 *
Andy Green8f037e42010-12-19 22:13:26 +00001830 * The protocol callback functions are called for a handful of events
1831 * including http requests coming in, websocket connections becoming
1832 * established, and data arriving; it's also called periodically to allow
1833 * async transmission.
1834 *
1835 * HTTP requests are sent always to the FIRST protocol in @protocol, since
1836 * at that time websocket protocol has not been negotiated. Other
1837 * protocols after the first one never see any HTTP callack activity.
1838 *
1839 * The server created is a simple http server by default; part of the
1840 * websocket standard is upgrading this http connection to a websocket one.
1841 *
1842 * This allows the same server to provide files like scripts and favicon /
1843 * images or whatever over http and dynamic data over websockets all in
1844 * one place; they're all handled in the user callback.
Andy Greenab990e42010-10-31 12:42:52 +00001845 */
Andy Green4ea60062010-10-30 12:15:07 +01001846
Andy Greene92cd172011-01-19 13:11:55 +00001847struct libwebsocket_context *
Peter Hinz56885f32011-03-02 22:03:47 +00001848libwebsocket_create_context(int port, const char *interf,
Andy Greenb45993c2010-12-18 15:13:50 +00001849 struct libwebsocket_protocols *protocols,
Andy Greend6e09112011-03-05 16:12:15 +00001850 struct libwebsocket_extension *extensions,
Andy Green8f037e42010-12-19 22:13:26 +00001851 const char *ssl_cert_filepath,
1852 const char *ssl_private_key_filepath,
Andy Green8014b292011-01-30 20:57:25 +00001853 int gid, int uid, unsigned int options)
Andy Greenff95d7a2010-10-28 22:36:01 +01001854{
1855 int n;
Andy Green4739e5c2011-01-22 12:51:57 +00001856 int sockfd = 0;
Andy Green251f6fa2010-11-03 11:13:06 +00001857 int fd;
Andy Greenff95d7a2010-10-28 22:36:01 +01001858 struct sockaddr_in serv_addr, cli_addr;
Andy Green251f6fa2010-11-03 11:13:06 +00001859 int opt = 1;
Peter Hinz56885f32011-03-02 22:03:47 +00001860 struct libwebsocket_context *context = NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00001861 unsigned int slen;
Andy Green9659f372011-01-27 22:01:43 +00001862 char *p;
Andy Green2ac5a6f2011-01-28 10:00:18 +00001863 char hostname[1024];
Andy Green42f69142011-01-30 08:10:02 +00001864 struct hostent *he;
Andy Green0d338332011-02-12 11:57:43 +00001865 struct libwebsocket *wsi;
Andy Greenff95d7a2010-10-28 22:36:01 +01001866
Andy Green3faa9c72010-11-08 17:03:03 +00001867#ifdef LWS_OPENSSL_SUPPORT
Andy Greenf2f54d52010-11-15 22:08:00 +00001868 SSL_METHOD *method;
Andy Green3faa9c72010-11-08 17:03:03 +00001869 char ssl_err_buf[512];
Andy Green3faa9c72010-11-08 17:03:03 +00001870#endif
1871
Peter Hinz56885f32011-03-02 22:03:47 +00001872#ifdef _WIN32
1873 {
1874 WORD wVersionRequested;
1875 WSADATA wsaData;
1876 int err;
1877
1878 /* Use the MAKEWORD(lowbyte, highbyte) macro from Windef.h */
1879 wVersionRequested = MAKEWORD(2, 2);
1880
1881 err = WSAStartup(wVersionRequested, &wsaData);
1882 if (err != 0) {
1883 /* Tell the user that we could not find a usable */
1884 /* Winsock DLL. */
1885 fprintf(stderr, "WSAStartup failed with error: %d\n",
1886 err);
1887 return NULL;
1888 }
1889 }
1890#endif
1891
1892
1893 context = malloc(sizeof(struct libwebsocket_context));
1894 if (!context) {
Andy Green90c7cbc2011-01-27 06:26:52 +00001895 fprintf(stderr, "No memory for websocket context\n");
1896 return NULL;
1897 }
Peter Hinz56885f32011-03-02 22:03:47 +00001898 context->protocols = protocols;
1899 context->listen_port = port;
1900 context->http_proxy_port = 0;
1901 context->http_proxy_address[0] = '\0';
1902 context->options = options;
1903 context->fds_count = 0;
Andy Greend6e09112011-03-05 16:12:15 +00001904 context->extensions = extensions;
Andy Green9659f372011-01-27 22:01:43 +00001905
Peter Hinz56885f32011-03-02 22:03:47 +00001906#ifdef WIN32
1907 context->fd_random = 0;
1908#else
1909 context->fd_random = open(SYSTEM_RANDOM_FILEPATH, O_RDONLY);
1910 if (context->fd_random < 0) {
Andy Green44eee682011-02-10 09:32:24 +00001911 fprintf(stderr, "Unable to open random device %s %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001912 SYSTEM_RANDOM_FILEPATH, context->fd_random);
Andy Green44eee682011-02-10 09:32:24 +00001913 return NULL;
1914 }
Peter Hinz56885f32011-03-02 22:03:47 +00001915#endif
Andy Green44eee682011-02-10 09:32:24 +00001916
Peter Hinz56885f32011-03-02 22:03:47 +00001917#ifdef LWS_OPENSSL_SUPPORT
1918 context->use_ssl = 0;
1919 context->ssl_ctx = NULL;
1920 context->ssl_client_ctx = NULL;
Andy Green2e24da02011-03-05 16:12:04 +00001921 openssl_websocket_private_data_index = 0;
Peter Hinz56885f32011-03-02 22:03:47 +00001922#endif
Andy Green2ac5a6f2011-01-28 10:00:18 +00001923 /* find canonical hostname */
1924
1925 hostname[(sizeof hostname) - 1] = '\0';
1926 gethostname(hostname, (sizeof hostname) - 1);
1927 he = gethostbyname(hostname);
Darin Willitsc19456f2011-02-14 17:52:39 +00001928 if (he) {
Peter Hinz56885f32011-03-02 22:03:47 +00001929 strncpy(context->canonical_hostname, he->h_name,
1930 sizeof context->canonical_hostname - 1);
1931 context->canonical_hostname[
1932 sizeof context->canonical_hostname - 1] = '\0';
Darin Willitsc19456f2011-02-14 17:52:39 +00001933 } else
Peter Hinz56885f32011-03-02 22:03:47 +00001934 strncpy(context->canonical_hostname, hostname,
1935 sizeof context->canonical_hostname - 1);
Andy Green2ac5a6f2011-01-28 10:00:18 +00001936
Andy Green9659f372011-01-27 22:01:43 +00001937 /* split the proxy ads:port if given */
1938
1939 p = getenv("http_proxy");
1940 if (p) {
Peter Hinz56885f32011-03-02 22:03:47 +00001941 strncpy(context->http_proxy_address, p,
1942 sizeof context->http_proxy_address - 1);
1943 context->http_proxy_address[
1944 sizeof context->http_proxy_address - 1] = '\0';
Andy Green9659f372011-01-27 22:01:43 +00001945
Peter Hinz56885f32011-03-02 22:03:47 +00001946 p = strchr(context->http_proxy_address, ':');
Andy Green9659f372011-01-27 22:01:43 +00001947 if (p == NULL) {
1948 fprintf(stderr, "http_proxy needs to be ads:port\n");
1949 return NULL;
1950 }
1951 *p = '\0';
Peter Hinz56885f32011-03-02 22:03:47 +00001952 context->http_proxy_port = atoi(p + 1);
Andy Green9659f372011-01-27 22:01:43 +00001953
1954 fprintf(stderr, "Using proxy %s:%u\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001955 context->http_proxy_address,
1956 context->http_proxy_port);
Andy Green9659f372011-01-27 22:01:43 +00001957 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001958
1959 if (port) {
1960
Andy Green3faa9c72010-11-08 17:03:03 +00001961#ifdef LWS_OPENSSL_SUPPORT
Peter Hinz56885f32011-03-02 22:03:47 +00001962 context->use_ssl = ssl_cert_filepath != NULL &&
Andy Green90c7cbc2011-01-27 06:26:52 +00001963 ssl_private_key_filepath != NULL;
Peter Hinz56885f32011-03-02 22:03:47 +00001964 if (context->use_ssl)
Andy Green90c7cbc2011-01-27 06:26:52 +00001965 fprintf(stderr, " Compiled with SSL support, "
1966 "using it\n");
1967 else
1968 fprintf(stderr, " Compiled with SSL support, "
1969 "not using it\n");
Andy Green3faa9c72010-11-08 17:03:03 +00001970
Andy Green90c7cbc2011-01-27 06:26:52 +00001971#else
1972 if (ssl_cert_filepath != NULL &&
1973 ssl_private_key_filepath != NULL) {
1974 fprintf(stderr, " Not compiled for OpenSSl support!\n");
Andy Greene92cd172011-01-19 13:11:55 +00001975 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001976 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001977 fprintf(stderr, " Compiled without SSL support, "
1978 "serving unencrypted\n");
1979#endif
1980 }
1981
1982 /* ignore SIGPIPE */
Peter Hinz56885f32011-03-02 22:03:47 +00001983#ifdef WIN32
1984#else
Andy Green90c7cbc2011-01-27 06:26:52 +00001985 signal(SIGPIPE, sigpipe_handler);
Peter Hinz56885f32011-03-02 22:03:47 +00001986#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00001987
1988
1989#ifdef LWS_OPENSSL_SUPPORT
1990
1991 /* basic openssl init */
1992
1993 SSL_library_init();
1994
1995 OpenSSL_add_all_algorithms();
1996 SSL_load_error_strings();
1997
Andy Green2e24da02011-03-05 16:12:04 +00001998 openssl_websocket_private_data_index =
Andy Green6901cb32011-02-21 08:06:47 +00001999 SSL_get_ex_new_index(0, "libwebsockets", NULL, NULL, NULL);
2000
Andy Green90c7cbc2011-01-27 06:26:52 +00002001 /*
2002 * Firefox insists on SSLv23 not SSLv3
2003 * Konq disables SSLv2 by default now, SSLv23 works
2004 */
2005
2006 method = (SSL_METHOD *)SSLv23_server_method();
2007 if (!method) {
2008 fprintf(stderr, "problem creating ssl method: %s\n",
2009 ERR_error_string(ERR_get_error(), ssl_err_buf));
2010 return NULL;
2011 }
Peter Hinz56885f32011-03-02 22:03:47 +00002012 context->ssl_ctx = SSL_CTX_new(method); /* create context */
2013 if (!context->ssl_ctx) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002014 fprintf(stderr, "problem creating ssl context: %s\n",
2015 ERR_error_string(ERR_get_error(), ssl_err_buf));
2016 return NULL;
2017 }
2018
2019 /* client context */
Peter Hinz56885f32011-03-02 22:03:47 +00002020 if (port == CONTEXT_PORT_NO_LISTEN)
2021 {
2022 method = (SSL_METHOD *)SSLv23_client_method();
2023 if (!method) {
2024 fprintf(stderr, "problem creating ssl method: %s\n",
2025 ERR_error_string(ERR_get_error(), ssl_err_buf));
2026 return NULL;
2027 }
2028 /* create context */
2029 context->ssl_client_ctx = SSL_CTX_new(method);
2030 if (!context->ssl_client_ctx) {
2031 fprintf(stderr, "problem creating ssl context: %s\n",
2032 ERR_error_string(ERR_get_error(), ssl_err_buf));
2033 return NULL;
2034 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002035
Peter Hinz56885f32011-03-02 22:03:47 +00002036 /* openssl init for cert verification (for client sockets) */
Andy Green90c7cbc2011-01-27 06:26:52 +00002037
Peter Hinz56885f32011-03-02 22:03:47 +00002038 if (!SSL_CTX_load_verify_locations(
2039 context->ssl_client_ctx, NULL,
2040 LWS_OPENSSL_CLIENT_CERTS))
2041 fprintf(stderr,
2042 "Unable to load SSL Client certs from %s "
2043 "(set by --with-client-cert-dir= in configure) -- "
2044 " client ssl isn't going to work",
Andy Green90c7cbc2011-01-27 06:26:52 +00002045 LWS_OPENSSL_CLIENT_CERTS);
Peter Hinz56885f32011-03-02 22:03:47 +00002046
2047 /*
2048 * callback allowing user code to load extra verification certs
2049 * helping the client to verify server identity
2050 */
2051
2052 context->protocols[0].callback(context, NULL,
2053 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS,
2054 context->ssl_client_ctx, NULL, 0);
Andy Green90c7cbc2011-01-27 06:26:52 +00002055 }
Andy Greenc6bf2c22011-02-20 11:10:47 +00002056 /* as a server, are we requiring clients to identify themselves? */
2057
2058 if (options & LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT) {
2059
2060 /* absolutely require the client cert */
2061
Peter Hinz56885f32011-03-02 22:03:47 +00002062 SSL_CTX_set_verify(context->ssl_ctx,
Andy Green6901cb32011-02-21 08:06:47 +00002063 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
2064 OpenSSL_verify_callback);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002065
2066 /*
2067 * give user code a chance to load certs into the server
2068 * allowing it to verify incoming client certs
2069 */
2070
Peter Hinz56885f32011-03-02 22:03:47 +00002071 context->protocols[0].callback(context, NULL,
Andy Greenc6bf2c22011-02-20 11:10:47 +00002072 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS,
Peter Hinz56885f32011-03-02 22:03:47 +00002073 context->ssl_ctx, NULL, 0);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002074 }
2075
Peter Hinz56885f32011-03-02 22:03:47 +00002076 if (context->use_ssl) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002077
2078 /* openssl init for server sockets */
2079
Andy Green3faa9c72010-11-08 17:03:03 +00002080 /* set the local certificate from CertFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002081 n = SSL_CTX_use_certificate_file(context->ssl_ctx,
Andy Green3faa9c72010-11-08 17:03:03 +00002082 ssl_cert_filepath, SSL_FILETYPE_PEM);
2083 if (n != 1) {
2084 fprintf(stderr, "problem getting cert '%s': %s\n",
2085 ssl_cert_filepath,
2086 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00002087 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002088 }
2089 /* set the private key from KeyFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002090 if (SSL_CTX_use_PrivateKey_file(context->ssl_ctx,
2091 ssl_private_key_filepath, SSL_FILETYPE_PEM) != 1) {
Andy Green018d8eb2010-11-08 21:04:23 +00002092 fprintf(stderr, "ssl problem getting key '%s': %s\n",
2093 ssl_private_key_filepath,
2094 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00002095 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002096 }
2097 /* verify private key */
Peter Hinz56885f32011-03-02 22:03:47 +00002098 if (!SSL_CTX_check_private_key(context->ssl_ctx)) {
Andy Green018d8eb2010-11-08 21:04:23 +00002099 fprintf(stderr, "Private SSL key doesn't match cert\n");
Andy Greene92cd172011-01-19 13:11:55 +00002100 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002101 }
2102
2103 /* SSL is happy and has a cert it's content with */
2104 }
2105#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002106
Andy Greendf736162011-01-18 15:39:02 +00002107 /* selftest */
2108
2109 if (lws_b64_selftest())
Andy Greene92cd172011-01-19 13:11:55 +00002110 return NULL;
Andy Greendf736162011-01-18 15:39:02 +00002111
Andy Green0d338332011-02-12 11:57:43 +00002112 /* fd hashtable init */
2113
2114 for (n = 0; n < FD_HASHTABLE_MODULUS; n++)
Peter Hinz56885f32011-03-02 22:03:47 +00002115 context->fd_hashtable[n].length = 0;
Andy Green0d338332011-02-12 11:57:43 +00002116
Andy Greenb45993c2010-12-18 15:13:50 +00002117 /* set up our external listening socket we serve on */
Andy Green8f037e42010-12-19 22:13:26 +00002118
Andy Green4739e5c2011-01-22 12:51:57 +00002119 if (port) {
Andy Green8f037e42010-12-19 22:13:26 +00002120
Andy Green4739e5c2011-01-22 12:51:57 +00002121 sockfd = socket(AF_INET, SOCK_STREAM, 0);
2122 if (sockfd < 0) {
2123 fprintf(stderr, "ERROR opening socket");
2124 return NULL;
2125 }
Andy Green775c0dd2010-10-29 14:15:22 +01002126
Andy Green4739e5c2011-01-22 12:51:57 +00002127 /* allow us to restart even if old sockets in TIME_WAIT */
2128 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
Andy Greene77ddd82010-11-13 10:03:47 +00002129
Andy Green4739e5c2011-01-22 12:51:57 +00002130 bzero((char *) &serv_addr, sizeof(serv_addr));
2131 serv_addr.sin_family = AF_INET;
Peter Hinz56885f32011-03-02 22:03:47 +00002132 if (interf == NULL)
Andy Green32375b72011-02-19 08:32:53 +00002133 serv_addr.sin_addr.s_addr = INADDR_ANY;
2134 else
Peter Hinz56885f32011-03-02 22:03:47 +00002135 interface_to_sa(interf, &serv_addr,
Andy Green32375b72011-02-19 08:32:53 +00002136 sizeof(serv_addr));
Andy Green4739e5c2011-01-22 12:51:57 +00002137 serv_addr.sin_port = htons(port);
2138
2139 n = bind(sockfd, (struct sockaddr *) &serv_addr,
2140 sizeof(serv_addr));
2141 if (n < 0) {
2142 fprintf(stderr, "ERROR on binding to port %d (%d %d)\n",
Andy Green8f037e42010-12-19 22:13:26 +00002143 port, n, errno);
Andy Green4739e5c2011-01-22 12:51:57 +00002144 return NULL;
2145 }
Andy Green0d338332011-02-12 11:57:43 +00002146
2147 wsi = malloc(sizeof(struct libwebsocket));
2148 memset(wsi, 0, sizeof (struct libwebsocket));
2149 wsi->sock = sockfd;
Andy Greend6e09112011-03-05 16:12:15 +00002150 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00002151 wsi->mode = LWS_CONNMODE_SERVER_LISTENER;
Peter Hinz56885f32011-03-02 22:03:47 +00002152 insert_wsi(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002153
2154 listen(sockfd, 5);
2155 fprintf(stderr, " Listening on port %d\n", port);
2156
2157 /* list in the internal poll array */
2158
Peter Hinz56885f32011-03-02 22:03:47 +00002159 context->fds[context->fds_count].fd = sockfd;
2160 context->fds[context->fds_count++].events = POLLIN;
Andy Green3221f922011-02-12 13:14:11 +00002161
2162 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002163 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002164 LWS_CALLBACK_ADD_POLL_FD,
2165 (void *)(long)sockfd, NULL, POLLIN);
2166
Andy Green8f037e42010-12-19 22:13:26 +00002167 }
Andy Greenb45993c2010-12-18 15:13:50 +00002168
Andy Greene77ddd82010-11-13 10:03:47 +00002169 /* drop any root privs for this process */
Peter Hinz56885f32011-03-02 22:03:47 +00002170#ifdef WIN32
2171#else
Andy Green3faa9c72010-11-08 17:03:03 +00002172 if (gid != -1)
2173 if (setgid(gid))
2174 fprintf(stderr, "setgid: %s\n", strerror(errno));
2175 if (uid != -1)
2176 if (setuid(uid))
2177 fprintf(stderr, "setuid: %s\n", strerror(errno));
Peter Hinz56885f32011-03-02 22:03:47 +00002178#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002179
2180 /* set up our internal broadcast trigger sockets per-protocol */
2181
Peter Hinz56885f32011-03-02 22:03:47 +00002182 for (context->count_protocols = 0;
2183 protocols[context->count_protocols].callback;
2184 context->count_protocols++) {
2185 protocols[context->count_protocols].owning_server = context;
2186 protocols[context->count_protocols].protocol_index =
2187 context->count_protocols;
Andy Greenb45993c2010-12-18 15:13:50 +00002188
2189 fd = socket(AF_INET, SOCK_STREAM, 0);
2190 if (fd < 0) {
2191 fprintf(stderr, "ERROR opening socket");
Andy Greene92cd172011-01-19 13:11:55 +00002192 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002193 }
Andy Green8f037e42010-12-19 22:13:26 +00002194
Andy Greenb45993c2010-12-18 15:13:50 +00002195 /* allow us to restart even if old sockets in TIME_WAIT */
2196 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
2197
2198 bzero((char *) &serv_addr, sizeof(serv_addr));
2199 serv_addr.sin_family = AF_INET;
2200 serv_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
2201 serv_addr.sin_port = 0; /* pick the port for us */
2202
2203 n = bind(fd, (struct sockaddr *) &serv_addr, sizeof(serv_addr));
2204 if (n < 0) {
Andy Green8f037e42010-12-19 22:13:26 +00002205 fprintf(stderr, "ERROR on binding to port %d (%d %d)\n",
Andy Greenb45993c2010-12-18 15:13:50 +00002206 port, n, errno);
Andy Greene92cd172011-01-19 13:11:55 +00002207 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002208 }
2209
2210 slen = sizeof cli_addr;
2211 n = getsockname(fd, (struct sockaddr *)&cli_addr, &slen);
2212 if (n < 0) {
2213 fprintf(stderr, "getsockname failed\n");
Andy Greene92cd172011-01-19 13:11:55 +00002214 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002215 }
Peter Hinz56885f32011-03-02 22:03:47 +00002216 protocols[context->count_protocols].broadcast_socket_port =
Andy Greenb45993c2010-12-18 15:13:50 +00002217 ntohs(cli_addr.sin_port);
2218 listen(fd, 5);
2219
2220 debug(" Protocol %s broadcast socket %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002221 protocols[context->count_protocols].name,
Andy Greenb45993c2010-12-18 15:13:50 +00002222 ntohs(cli_addr.sin_port));
2223
Andy Green0d338332011-02-12 11:57:43 +00002224 /* dummy wsi per broadcast proxy socket */
2225
2226 wsi = malloc(sizeof(struct libwebsocket));
2227 memset(wsi, 0, sizeof (struct libwebsocket));
2228 wsi->sock = fd;
2229 wsi->mode = LWS_CONNMODE_BROADCAST_PROXY_LISTENER;
Andy Greend6e09112011-03-05 16:12:15 +00002230 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00002231 /* note which protocol we are proxying */
Peter Hinz56885f32011-03-02 22:03:47 +00002232 wsi->protocol_index_for_broadcast_proxy =
2233 context->count_protocols;
2234 insert_wsi(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002235
2236 /* list in internal poll array */
2237
Peter Hinz56885f32011-03-02 22:03:47 +00002238 context->fds[context->fds_count].fd = fd;
2239 context->fds[context->fds_count].events = POLLIN;
2240 context->fds[context->fds_count].revents = 0;
2241 context->fds_count++;
Andy Green3221f922011-02-12 13:14:11 +00002242
2243 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002244 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002245 LWS_CALLBACK_ADD_POLL_FD,
2246 (void *)(long)fd, NULL, POLLIN);
Andy Greenb45993c2010-12-18 15:13:50 +00002247 }
2248
Peter Hinz56885f32011-03-02 22:03:47 +00002249 return context;
Andy Greene92cd172011-01-19 13:11:55 +00002250}
Andy Greenb45993c2010-12-18 15:13:50 +00002251
Andy Green4739e5c2011-01-22 12:51:57 +00002252
Andy Greened11a022011-01-20 10:23:50 +00002253#ifndef LWS_NO_FORK
2254
Andy Greene92cd172011-01-19 13:11:55 +00002255/**
2256 * libwebsockets_fork_service_loop() - Optional helper function forks off
2257 * a process for the websocket server loop.
Andy Green6964bb52011-01-23 16:50:33 +00002258 * You don't have to use this but if not, you
2259 * have to make sure you are calling
2260 * libwebsocket_service periodically to service
2261 * the websocket traffic
Peter Hinz56885f32011-03-02 22:03:47 +00002262 * @context: server context returned by creation function
Andy Greene92cd172011-01-19 13:11:55 +00002263 */
Andy Greenb45993c2010-12-18 15:13:50 +00002264
Andy Greene92cd172011-01-19 13:11:55 +00002265int
Peter Hinz56885f32011-03-02 22:03:47 +00002266libwebsockets_fork_service_loop(struct libwebsocket_context *context)
Andy Greene92cd172011-01-19 13:11:55 +00002267{
Andy Greene92cd172011-01-19 13:11:55 +00002268 int fd;
2269 struct sockaddr_in cli_addr;
2270 int n;
Andy Green3221f922011-02-12 13:14:11 +00002271 int p;
Andy Greenb45993c2010-12-18 15:13:50 +00002272
Andy Greened11a022011-01-20 10:23:50 +00002273 n = fork();
2274 if (n < 0)
2275 return n;
2276
2277 if (!n) {
2278
2279 /* main process context */
2280
Andy Green3221f922011-02-12 13:14:11 +00002281 /*
2282 * set up the proxy sockets to allow broadcast from
2283 * service process context
2284 */
2285
Peter Hinz56885f32011-03-02 22:03:47 +00002286 for (p = 0; p < context->count_protocols; p++) {
Andy Greened11a022011-01-20 10:23:50 +00002287 fd = socket(AF_INET, SOCK_STREAM, 0);
2288 if (fd < 0) {
2289 fprintf(stderr, "Unable to create socket\n");
2290 return -1;
2291 }
2292 cli_addr.sin_family = AF_INET;
2293 cli_addr.sin_port = htons(
Peter Hinz56885f32011-03-02 22:03:47 +00002294 context->protocols[p].broadcast_socket_port);
Andy Greened11a022011-01-20 10:23:50 +00002295 cli_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
2296 n = connect(fd, (struct sockaddr *)&cli_addr,
2297 sizeof cli_addr);
2298 if (n < 0) {
2299 fprintf(stderr, "Unable to connect to "
2300 "broadcast socket %d, %s\n",
Andy Green3221f922011-02-12 13:14:11 +00002301 n, strerror(errno));
Andy Greened11a022011-01-20 10:23:50 +00002302 return -1;
2303 }
2304
Peter Hinz56885f32011-03-02 22:03:47 +00002305 context->protocols[p].broadcast_socket_user_fd = fd;
Andy Greened11a022011-01-20 10:23:50 +00002306 }
2307
Andy Greene92cd172011-01-19 13:11:55 +00002308 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +00002309 }
2310
2311 /* we want a SIGHUP when our parent goes down */
2312 prctl(PR_SET_PDEATHSIG, SIGHUP);
2313
2314 /* in this forked process, sit and service websocket connections */
Andy Green8f037e42010-12-19 22:13:26 +00002315
Andy Greene92cd172011-01-19 13:11:55 +00002316 while (1)
Peter Hinz56885f32011-03-02 22:03:47 +00002317 if (libwebsocket_service(context, 1000))
Andy Greene92cd172011-01-19 13:11:55 +00002318 return -1;
Andy Green8f037e42010-12-19 22:13:26 +00002319
Andy Green251f6fa2010-11-03 11:13:06 +00002320 return 0;
Andy Greenff95d7a2010-10-28 22:36:01 +01002321}
2322
Andy Greened11a022011-01-20 10:23:50 +00002323#endif
2324
Andy Greenb45993c2010-12-18 15:13:50 +00002325/**
2326 * libwebsockets_get_protocol() - Returns a protocol pointer from a websocket
Andy Green8f037e42010-12-19 22:13:26 +00002327 * connection.
Andy Greenb45993c2010-12-18 15:13:50 +00002328 * @wsi: pointer to struct websocket you want to know the protocol of
2329 *
Andy Green8f037e42010-12-19 22:13:26 +00002330 *
2331 * This is useful to get the protocol to broadcast back to from inside
Andy Greenb45993c2010-12-18 15:13:50 +00002332 * the callback.
2333 */
Andy Greenab990e42010-10-31 12:42:52 +00002334
Andy Greenb45993c2010-12-18 15:13:50 +00002335const struct libwebsocket_protocols *
2336libwebsockets_get_protocol(struct libwebsocket *wsi)
2337{
2338 return wsi->protocol;
2339}
2340
2341/**
Andy Greene92cd172011-01-19 13:11:55 +00002342 * libwebsockets_broadcast() - Sends a buffer to the callback for all active
Andy Green8f037e42010-12-19 22:13:26 +00002343 * connections of the given protocol.
Andy Greenb45993c2010-12-18 15:13:50 +00002344 * @protocol: pointer to the protocol you will broadcast to all members of
2345 * @buf: buffer containing the data to be broadcase. NOTE: this has to be
Andy Green8f037e42010-12-19 22:13:26 +00002346 * allocated with LWS_SEND_BUFFER_PRE_PADDING valid bytes before
2347 * the pointer and LWS_SEND_BUFFER_POST_PADDING afterwards in the
2348 * case you are calling this function from callback context.
Andy Greenb45993c2010-12-18 15:13:50 +00002349 * @len: length of payload data in buf, starting from buf.
Andy Green8f037e42010-12-19 22:13:26 +00002350 *
2351 * This function allows bulk sending of a packet to every connection using
Andy Greenb45993c2010-12-18 15:13:50 +00002352 * the given protocol. It does not send the data directly; instead it calls
2353 * the callback with a reason type of LWS_CALLBACK_BROADCAST. If the callback
2354 * wants to actually send the data for that connection, the callback itself
2355 * should call libwebsocket_write().
2356 *
2357 * libwebsockets_broadcast() can be called from another fork context without
2358 * having to take any care about data visibility between the processes, it'll
2359 * "just work".
2360 */
2361
2362
2363int
Andy Green8f037e42010-12-19 22:13:26 +00002364libwebsockets_broadcast(const struct libwebsocket_protocols *protocol,
Andy Greenb45993c2010-12-18 15:13:50 +00002365 unsigned char *buf, size_t len)
2366{
Peter Hinz56885f32011-03-02 22:03:47 +00002367 struct libwebsocket_context *context = protocol->owning_server;
Andy Greenb45993c2010-12-18 15:13:50 +00002368 int n;
Andy Green0d338332011-02-12 11:57:43 +00002369 int m;
2370 struct libwebsocket * wsi;
Andy Greenb45993c2010-12-18 15:13:50 +00002371
2372 if (!protocol->broadcast_socket_user_fd) {
2373 /*
Andy Greene92cd172011-01-19 13:11:55 +00002374 * We are either running unforked / flat, or we are being
2375 * called from poll thread context
Andy Greenb45993c2010-12-18 15:13:50 +00002376 * eg, from a callback. In that case don't use sockets for
2377 * broadcast IPC (since we can't open a socket connection to
2378 * a socket listening on our own thread) but directly do the
2379 * send action.
2380 *
2381 * Locking is not needed because we are by definition being
2382 * called in the poll thread context and are serialized.
2383 */
2384
Andy Green0d338332011-02-12 11:57:43 +00002385 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
Andy Greenb45993c2010-12-18 15:13:50 +00002386
Peter Hinz56885f32011-03-02 22:03:47 +00002387 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Greenb45993c2010-12-18 15:13:50 +00002388
Peter Hinz56885f32011-03-02 22:03:47 +00002389 wsi = context->fd_hashtable[n].wsi[m];
Andy Greenb45993c2010-12-18 15:13:50 +00002390
Andy Green0d338332011-02-12 11:57:43 +00002391 if (wsi->mode != LWS_CONNMODE_WS_SERVING)
2392 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00002393
Andy Green0d338332011-02-12 11:57:43 +00002394 /*
2395 * never broadcast to
2396 * non-established connections
2397 */
2398 if (wsi->state != WSI_STATE_ESTABLISHED)
2399 continue;
2400
2401 /* only broadcast to guys using
2402 * requested protocol
2403 */
2404 if (wsi->protocol != protocol)
2405 continue;
2406
Peter Hinz56885f32011-03-02 22:03:47 +00002407 wsi->protocol->callback(context, wsi,
Andy Green8f037e42010-12-19 22:13:26 +00002408 LWS_CALLBACK_BROADCAST,
Andy Green0d338332011-02-12 11:57:43 +00002409 wsi->user_space,
Andy Greenb45993c2010-12-18 15:13:50 +00002410 buf, len);
Andy Green0d338332011-02-12 11:57:43 +00002411 }
Andy Greenb45993c2010-12-18 15:13:50 +00002412 }
2413
2414 return 0;
2415 }
2416
Andy Green0ca6a172010-12-19 20:50:01 +00002417 /*
2418 * We're being called from a different process context than the server
2419 * loop. Instead of broadcasting directly, we send our
2420 * payload on a socket to do the IPC; the server process will serialize
2421 * the broadcast action in its main poll() loop.
2422 *
2423 * There's one broadcast socket listening for each protocol supported
2424 * set up when the websocket server initializes
2425 */
2426
Andy Green6964bb52011-01-23 16:50:33 +00002427 n = send(protocol->broadcast_socket_user_fd, buf, len, MSG_NOSIGNAL);
Andy Greenb45993c2010-12-18 15:13:50 +00002428
2429 return n;
2430}