blob: dded30ecaedb7b68daaddfb0c1518de821df1054 [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 Green9f990342011-02-12 11:57:45 +0000397/**
398 * libwebsocket_service_fd() - Service polled socket with something waiting
Peter Hinz56885f32011-03-02 22:03:47 +0000399 * @context: Websocket context
Andy Green9f990342011-02-12 11:57:45 +0000400 * @pollfd: The pollfd entry describing the socket fd and which events
401 * happened.
402 *
403 * This function closes any active connections and then frees the
404 * context. After calling this, any further use of the context is
405 * undefined.
406 */
407
408int
Peter Hinz56885f32011-03-02 22:03:47 +0000409libwebsocket_service_fd(struct libwebsocket_context *context,
Andy Green0d338332011-02-12 11:57:43 +0000410 struct pollfd *pollfd)
Andy Greenb45993c2010-12-18 15:13:50 +0000411{
412 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + MAX_BROADCAST_PAYLOAD +
413 LWS_SEND_BUFFER_POST_PADDING];
Andy Greena71eafc2011-02-14 17:59:43 +0000414 struct libwebsocket *wsi;
Andy Green0d338332011-02-12 11:57:43 +0000415 struct libwebsocket *new_wsi;
Andy Greenb45993c2010-12-18 15:13:50 +0000416 int n;
Andy Green0d338332011-02-12 11:57:43 +0000417 int m;
Andy Greenb45993c2010-12-18 15:13:50 +0000418 size_t len;
Andy Green0d338332011-02-12 11:57:43 +0000419 int accept_fd;
420 unsigned int clilen;
421 struct sockaddr_in cli_addr;
Andy Greena71eafc2011-02-14 17:59:43 +0000422 struct timeval tv;
Andy Greenbe93fef2011-02-14 20:25:43 +0000423 static const char magic_websocket_guid[] =
424 "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
425 static const char magic_websocket_04_masking_guid[] =
426 "61AC5F19-FBBA-4540-B96F-6561F1AB40A8";
427 char hash[20];
428 char pkt[1024];
429 char *p = &pkt[0];
430 const char *pc;
431 int okay = 0;
432#ifdef LWS_OPENSSL_SUPPORT
433 char ssl_err_buf[512];
434#endif
Andy Greena71eafc2011-02-14 17:59:43 +0000435 /*
436 * you can call us with pollfd = NULL to just allow the once-per-second
437 * global timeout checks; if less than a second since the last check
438 * it returns immediately then.
439 */
440
441 gettimeofday(&tv, NULL);
442
Peter Hinz56885f32011-03-02 22:03:47 +0000443 if (context->last_timeout_check_s != tv.tv_sec) {
444 context->last_timeout_check_s = tv.tv_sec;
Andy Greena71eafc2011-02-14 17:59:43 +0000445
446 /* global timeout check once per second */
447
Peter Hinz56885f32011-03-02 22:03:47 +0000448 for (n = 0; n < context->fds_count; n++) {
449 wsi = wsi_from_fd(context, context->fds[n].fd);
Andy Greena71eafc2011-02-14 17:59:43 +0000450 if (!wsi->pending_timeout)
451 continue;
452
453 /*
454 * if we went beyond the allowed time, kill the
455 * connection
456 */
457
458 if (tv.tv_sec > wsi->pending_timeout_limit)
Peter Hinz56885f32011-03-02 22:03:47 +0000459 libwebsocket_close_and_free_session(context,
460 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Greena71eafc2011-02-14 17:59:43 +0000461 }
462 }
463
464 /* just here for timeout management? */
465
466 if (pollfd == NULL)
467 return 0;
468
469 /* no, here to service a socket descriptor */
470
Peter Hinz56885f32011-03-02 22:03:47 +0000471 wsi = wsi_from_fd(context, pollfd->fd);
Andy Greenb45993c2010-12-18 15:13:50 +0000472
Andy Green0d338332011-02-12 11:57:43 +0000473 if (wsi == NULL)
474 return 1;
Andy Green8f037e42010-12-19 22:13:26 +0000475
Andy Green0d338332011-02-12 11:57:43 +0000476 switch (wsi->mode) {
477 case LWS_CONNMODE_SERVER_LISTENER:
478
479 /* pollin means a client has connected to us then */
480
481 if (!pollfd->revents & POLLIN)
482 break;
483
484 /* listen socket got an unencrypted connection... */
485
486 clilen = sizeof(cli_addr);
487 accept_fd = accept(pollfd->fd, (struct sockaddr *)&cli_addr,
488 &clilen);
489 if (accept_fd < 0) {
490 fprintf(stderr, "ERROR on accept");
491 break;
492 }
493
Peter Hinz56885f32011-03-02 22:03:47 +0000494 if (context->fds_count >= MAX_CLIENTS) {
Andy Green3221f922011-02-12 13:14:11 +0000495 fprintf(stderr, "too busy to accept new client\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000496#ifdef WIN32
497 closesocket(accept_fd);
498#else
Andy Green0d338332011-02-12 11:57:43 +0000499 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +0000500#endif
Andy Green0d338332011-02-12 11:57:43 +0000501 break;
502 }
503
Andy Green07034092011-02-13 08:37:12 +0000504 /*
505 * look at who we connected to and give user code a chance
506 * to reject based on client IP. There's no protocol selected
507 * yet so we issue this to protocols[0]
508 */
509
Peter Hinz56885f32011-03-02 22:03:47 +0000510 if ((context->protocols[0].callback)(context, wsi,
Andy Green07034092011-02-13 08:37:12 +0000511 LWS_CALLBACK_FILTER_NETWORK_CONNECTION,
512 (void*)(long)accept_fd, NULL, 0)) {
513 fprintf(stderr, "Callback denied network connection\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000514#ifdef WIN32
515 closesocket(accept_fd);
516#else
Andy Green07034092011-02-13 08:37:12 +0000517 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +0000518#endif
Andy Green07034092011-02-13 08:37:12 +0000519 break;
520 }
521
Andy Green0d338332011-02-12 11:57:43 +0000522 /* accepting connection to main listener */
523
524 new_wsi = malloc(sizeof(struct libwebsocket));
525 if (new_wsi == NULL) {
526 fprintf(stderr, "Out of memory for new connection\n");
527 break;
528 }
529
530 memset(new_wsi, 0, sizeof (struct libwebsocket));
531 new_wsi->sock = accept_fd;
Andy Greend6e09112011-03-05 16:12:15 +0000532 new_wsi->count_active_extensions = 0;
Andy Greena71eafc2011-02-14 17:59:43 +0000533 new_wsi->pending_timeout = NO_PENDING_TIMEOUT;
Andy Green0d338332011-02-12 11:57:43 +0000534
535#ifdef LWS_OPENSSL_SUPPORT
536 new_wsi->ssl = NULL;
Andy Green0d338332011-02-12 11:57:43 +0000537
Peter Hinz56885f32011-03-02 22:03:47 +0000538 if (context->use_ssl) {
Andy Green0d338332011-02-12 11:57:43 +0000539
Peter Hinz56885f32011-03-02 22:03:47 +0000540 new_wsi->ssl = SSL_new(context->ssl_ctx);
Andy Green0d338332011-02-12 11:57:43 +0000541 if (new_wsi->ssl == NULL) {
542 fprintf(stderr, "SSL_new failed: %s\n",
543 ERR_error_string(SSL_get_error(
544 new_wsi->ssl, 0), NULL));
Andy Green1f9bf522011-02-14 21:14:37 +0000545 libwebsockets_decode_ssl_error();
Andy Green0d338332011-02-12 11:57:43 +0000546 free(new_wsi);
547 break;
548 }
549
550 SSL_set_fd(new_wsi->ssl, accept_fd);
551
552 n = SSL_accept(new_wsi->ssl);
553 if (n != 1) {
554 /*
555 * browsers seem to probe with various
556 * ssl params which fail then retry
557 * and succeed
558 */
559 debug("SSL_accept failed skt %u: %s\n",
560 pollfd->fd,
561 ERR_error_string(SSL_get_error(
562 new_wsi->ssl, n), NULL));
563 SSL_free(
564 new_wsi->ssl);
565 free(new_wsi);
566 break;
567 }
Andy Greenc6bf2c22011-02-20 11:10:47 +0000568
Andy Green0d338332011-02-12 11:57:43 +0000569 debug("accepted new SSL conn "
570 "port %u on fd=%d SSL ver %s\n",
571 ntohs(cli_addr.sin_port), accept_fd,
572 SSL_get_version(new_wsi->ssl));
573
574 } else
575#endif
576 debug("accepted new conn port %u on fd=%d\n",
577 ntohs(cli_addr.sin_port), accept_fd);
578
579 /* intialize the instance struct */
580
581 new_wsi->state = WSI_STATE_HTTP;
582 new_wsi->name_buffer_pos = 0;
583 new_wsi->mode = LWS_CONNMODE_WS_SERVING;
584
585 for (n = 0; n < WSI_TOKEN_COUNT; n++) {
586 new_wsi->utf8_token[n].token = NULL;
587 new_wsi->utf8_token[n].token_len = 0;
588 }
589
590 /*
591 * these can only be set once the protocol is known
592 * we set an unestablished connection's protocol pointer
593 * to the start of the supported list, so it can look
594 * for matching ones during the handshake
595 */
Peter Hinz56885f32011-03-02 22:03:47 +0000596 new_wsi->protocol = context->protocols;
Andy Green0d338332011-02-12 11:57:43 +0000597 new_wsi->user_space = NULL;
598
599 /*
600 * Default protocol is 76 / 00
601 * After 76, there's a header specified to inform which
602 * draft the client wants, when that's seen we modify
603 * the individual connection's spec revision accordingly
604 */
605 new_wsi->ietf_spec_revision = 0;
606
Peter Hinz56885f32011-03-02 22:03:47 +0000607 insert_wsi(context, new_wsi);
Andy Green0d338332011-02-12 11:57:43 +0000608
Andy Green0d338332011-02-12 11:57:43 +0000609 /*
610 * make sure NO events are seen yet on this new socket
611 * (otherwise we inherit old fds[client].revents from
612 * previous socket there and die mysteriously! )
613 */
Peter Hinz56885f32011-03-02 22:03:47 +0000614 context->fds[context->fds_count].revents = 0;
Andy Green0d338332011-02-12 11:57:43 +0000615
Peter Hinz56885f32011-03-02 22:03:47 +0000616 context->fds[context->fds_count].events = POLLIN;
617 context->fds[context->fds_count++].fd = accept_fd;
Andy Green0d338332011-02-12 11:57:43 +0000618
Andy Green3221f922011-02-12 13:14:11 +0000619 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +0000620 context->protocols[0].callback(context, new_wsi,
Andy Green3221f922011-02-12 13:14:11 +0000621 LWS_CALLBACK_ADD_POLL_FD,
622 (void *)(long)accept_fd, NULL, POLLIN);
623
Andy Green0d338332011-02-12 11:57:43 +0000624 break;
625
626 case LWS_CONNMODE_BROADCAST_PROXY_LISTENER:
627
628 /* as we are listening, POLLIN means accept() is needed */
629
630 if (!pollfd->revents & POLLIN)
631 break;
632
633 /* listen socket got an unencrypted connection... */
634
635 clilen = sizeof(cli_addr);
636 accept_fd = accept(pollfd->fd, (struct sockaddr *)&cli_addr,
637 &clilen);
638 if (accept_fd < 0) {
639 fprintf(stderr, "ERROR on accept");
640 break;
641 }
642
Peter Hinz56885f32011-03-02 22:03:47 +0000643 if (context->fds_count >= MAX_CLIENTS) {
Andy Green3221f922011-02-12 13:14:11 +0000644 fprintf(stderr, "too busy to accept new broadcast "
645 "proxy client\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000646#ifdef WIN32
647 closesocket(accept_fd);
648#else
Andy Green0d338332011-02-12 11:57:43 +0000649 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +0000650#endif
Andy Green0d338332011-02-12 11:57:43 +0000651 break;
652 }
653
654 /* create a dummy wsi for the connection and add it */
655
656 new_wsi = malloc(sizeof(struct libwebsocket));
657 memset(new_wsi, 0, sizeof (struct libwebsocket));
658 new_wsi->sock = accept_fd;
659 new_wsi->mode = LWS_CONNMODE_BROADCAST_PROXY;
660 new_wsi->state = WSI_STATE_ESTABLISHED;
Andy Greend6e09112011-03-05 16:12:15 +0000661 new_wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +0000662 /* note which protocol we are proxying */
663 new_wsi->protocol_index_for_broadcast_proxy =
664 wsi->protocol_index_for_broadcast_proxy;
Peter Hinz56885f32011-03-02 22:03:47 +0000665 insert_wsi(context, new_wsi);
Andy Green0d338332011-02-12 11:57:43 +0000666
667 /* add connected socket to internal poll array */
668
Peter Hinz56885f32011-03-02 22:03:47 +0000669 context->fds[context->fds_count].revents = 0;
670 context->fds[context->fds_count].events = POLLIN;
671 context->fds[context->fds_count++].fd = accept_fd;
Andy Green0d338332011-02-12 11:57:43 +0000672
Andy Green3221f922011-02-12 13:14:11 +0000673 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +0000674 context->protocols[0].callback(context, new_wsi,
Andy Green3221f922011-02-12 13:14:11 +0000675 LWS_CALLBACK_ADD_POLL_FD,
676 (void *)(long)accept_fd, NULL, POLLIN);
677
Andy Green0d338332011-02-12 11:57:43 +0000678 break;
679
680 case LWS_CONNMODE_BROADCAST_PROXY:
Andy Green8f037e42010-12-19 22:13:26 +0000681
Andy Greenb45993c2010-12-18 15:13:50 +0000682 /* handle session socket closed */
Andy Green8f037e42010-12-19 22:13:26 +0000683
Andy Green0d338332011-02-12 11:57:43 +0000684 if (pollfd->revents & (POLLERR | POLLHUP)) {
Andy Green8f037e42010-12-19 22:13:26 +0000685
Andy Green0d338332011-02-12 11:57:43 +0000686 debug("Session Socket %p (fd=%d) dead\n",
Timothy J Fontaineb86d64e2011-02-14 17:55:27 +0000687 (void *)wsi, pollfd->fd);
Andy Greenb45993c2010-12-18 15:13:50 +0000688
Peter Hinz56885f32011-03-02 22:03:47 +0000689 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000690 LWS_CLOSE_STATUS_NORMAL);
Andy Green4b6fbe12011-02-14 08:03:48 +0000691 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +0000692 }
Andy Green8f037e42010-12-19 22:13:26 +0000693
Andy Green90c7cbc2011-01-27 06:26:52 +0000694 /* the guy requested a callback when it was OK to write */
695
Andy Green0d338332011-02-12 11:57:43 +0000696 if (pollfd->revents & POLLOUT) {
Andy Green90c7cbc2011-01-27 06:26:52 +0000697
Andy Green0d338332011-02-12 11:57:43 +0000698 /* one shot */
Andy Green90c7cbc2011-01-27 06:26:52 +0000699
Andy Green0d338332011-02-12 11:57:43 +0000700 pollfd->events &= ~POLLOUT;
701
Andy Green3221f922011-02-12 13:14:11 +0000702 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +0000703 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +0000704 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
705 (void *)(long)wsi->sock, NULL, POLLOUT);
706
Peter Hinz56885f32011-03-02 22:03:47 +0000707 wsi->protocol->callback(context, wsi,
Andy Green90c7cbc2011-01-27 06:26:52 +0000708 LWS_CALLBACK_CLIENT_WRITEABLE,
Andy Green0d338332011-02-12 11:57:43 +0000709 wsi->user_space,
Andy Green90c7cbc2011-01-27 06:26:52 +0000710 NULL, 0);
711 }
712
Andy Greenb45993c2010-12-18 15:13:50 +0000713 /* any incoming data ready? */
714
Andy Green0d338332011-02-12 11:57:43 +0000715 if (!(pollfd->revents & POLLIN))
716 break;
Andy Greenb45993c2010-12-18 15:13:50 +0000717
Andy Green0d338332011-02-12 11:57:43 +0000718 /* get the issued broadcast payload from the socket */
Andy Greenb45993c2010-12-18 15:13:50 +0000719
Andy Green0d338332011-02-12 11:57:43 +0000720 len = read(pollfd->fd, buf + LWS_SEND_BUFFER_PRE_PADDING,
721 MAX_BROADCAST_PAYLOAD);
722 if (len < 0) {
723 fprintf(stderr, "Error reading broadcast payload\n");
Andy Green4b6fbe12011-02-14 08:03:48 +0000724 break;
Andy Green0d338332011-02-12 11:57:43 +0000725 }
Andy Greenb45993c2010-12-18 15:13:50 +0000726
Andy Green0d338332011-02-12 11:57:43 +0000727 /* broadcast it to all guys with this protocol index */
Andy Green8f037e42010-12-19 22:13:26 +0000728
Andy Green0d338332011-02-12 11:57:43 +0000729 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
Andy Green8f037e42010-12-19 22:13:26 +0000730
Peter Hinz56885f32011-03-02 22:03:47 +0000731 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Greenb45993c2010-12-18 15:13:50 +0000732
Peter Hinz56885f32011-03-02 22:03:47 +0000733 new_wsi = context->fd_hashtable[n].wsi[m];
Andy Greenb45993c2010-12-18 15:13:50 +0000734
Andy Green0d338332011-02-12 11:57:43 +0000735 /* only to clients we are serving to */
Andy Greenb45993c2010-12-18 15:13:50 +0000736
Andy Green0d338332011-02-12 11:57:43 +0000737 if (new_wsi->mode != LWS_CONNMODE_WS_SERVING)
Andy Greenb45993c2010-12-18 15:13:50 +0000738 continue;
739
740 /*
741 * never broadcast to non-established
742 * connection
743 */
744
Andy Green0d338332011-02-12 11:57:43 +0000745 if (new_wsi->state != WSI_STATE_ESTABLISHED)
Andy Green4739e5c2011-01-22 12:51:57 +0000746 continue;
747
Andy Greenb45993c2010-12-18 15:13:50 +0000748 /*
749 * only broadcast to connections using
750 * the requested protocol
751 */
752
Andy Green0d338332011-02-12 11:57:43 +0000753 if (new_wsi->protocol->protocol_index !=
754 wsi->protocol_index_for_broadcast_proxy)
Andy Greenb45993c2010-12-18 15:13:50 +0000755 continue;
756
Andy Green8f037e42010-12-19 22:13:26 +0000757 /* broadcast it to this connection */
758
Peter Hinz56885f32011-03-02 22:03:47 +0000759 new_wsi->protocol->callback(context, new_wsi,
Andy Green8f037e42010-12-19 22:13:26 +0000760 LWS_CALLBACK_BROADCAST,
Andy Green0d338332011-02-12 11:57:43 +0000761 new_wsi->user_space,
Andy Green0ca6a172010-12-19 20:50:01 +0000762 buf + LWS_SEND_BUFFER_PRE_PADDING, len);
Andy Greenb45993c2010-12-18 15:13:50 +0000763 }
Andy Green0d338332011-02-12 11:57:43 +0000764 }
765 break;
Andy Greenb45993c2010-12-18 15:13:50 +0000766
Andy Greenbe93fef2011-02-14 20:25:43 +0000767 case LWS_CONNMODE_WS_CLIENT_WAITING_PROXY_REPLY:
768
769 /* handle proxy hung up on us */
770
771 if (pollfd->revents & (POLLERR | POLLHUP)) {
772
773 fprintf(stderr, "Proxy connection %p (fd=%d) dead\n",
774 (void *)wsi, pollfd->fd);
775
Peter Hinz56885f32011-03-02 22:03:47 +0000776 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000777 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000778 return 1;
779 }
780
781 n = recv(wsi->sock, pkt, sizeof pkt, 0);
782 if (n < 0) {
Peter Hinz56885f32011-03-02 22:03:47 +0000783 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000784 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000785 fprintf(stderr, "ERROR reading from proxy socket\n");
786 return 1;
787 }
788
789 pkt[13] = '\0';
790 if (strcmp(pkt, "HTTP/1.0 200 ") != 0) {
Peter Hinz56885f32011-03-02 22:03:47 +0000791 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000792 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000793 fprintf(stderr, "ERROR from proxy: %s\n", pkt);
794 return 1;
795 }
796
797 /* clear his proxy connection timeout */
798
799 libwebsocket_set_timeout(wsi, NO_PENDING_TIMEOUT, 0);
800
801 /* fallthru */
802
803 case LWS_CONNMODE_WS_CLIENT_ISSUE_HANDSHAKE:
804
805 #ifdef LWS_OPENSSL_SUPPORT
806 if (wsi->use_ssl) {
807
Peter Hinz56885f32011-03-02 22:03:47 +0000808 wsi->ssl = SSL_new(context->ssl_client_ctx);
809 wsi->client_bio = BIO_new_socket(wsi->sock,
810 BIO_NOCLOSE);
Andy Greenbe93fef2011-02-14 20:25:43 +0000811 SSL_set_bio(wsi->ssl, wsi->client_bio, wsi->client_bio);
812
Andy Green6901cb32011-02-21 08:06:47 +0000813 SSL_set_ex_data(wsi->ssl,
Andy Green2e24da02011-03-05 16:12:04 +0000814 openssl_websocket_private_data_index,
Peter Hinz56885f32011-03-02 22:03:47 +0000815 context);
Andy Green6901cb32011-02-21 08:06:47 +0000816
Andy Greenbe93fef2011-02-14 20:25:43 +0000817 if (SSL_connect(wsi->ssl) <= 0) {
818 fprintf(stderr, "SSL connect error %s\n",
Andy Green687b0182011-02-26 11:04:01 +0000819 ERR_error_string(ERR_get_error(),
820 ssl_err_buf));
Peter Hinz56885f32011-03-02 22:03:47 +0000821 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000822 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000823 return 1;
824 }
825
826 n = SSL_get_verify_result(wsi->ssl);
Andy Green2e24da02011-03-05 16:12:04 +0000827 if ((n != X509_V_OK) && (
Andy Green687b0182011-02-26 11:04:01 +0000828 n != X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT ||
829 wsi->use_ssl != 2)) {
Andy Greenbe93fef2011-02-14 20:25:43 +0000830
Andy Green687b0182011-02-26 11:04:01 +0000831 fprintf(stderr, "server's cert didn't "
832 "look good %d\n", n);
Peter Hinz56885f32011-03-02 22:03:47 +0000833 libwebsocket_close_and_free_session(context,
834 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Green687b0182011-02-26 11:04:01 +0000835 return 1;
Andy Greenbe93fef2011-02-14 20:25:43 +0000836 }
837 } else {
838 wsi->ssl = NULL;
839 #endif
840
841
842 #ifdef LWS_OPENSSL_SUPPORT
843 }
844 #endif
845
846 /*
847 * create the random key
848 */
849
Peter Hinz56885f32011-03-02 22:03:47 +0000850 n = libwebsockets_get_random(context, hash, 16);
Andy Greenbe93fef2011-02-14 20:25:43 +0000851 if (n != 16) {
852 fprintf(stderr, "Unable to read from random dev %s\n",
853 SYSTEM_RANDOM_FILEPATH);
854 free(wsi->c_path);
855 free(wsi->c_host);
Andy Green08d33922011-02-26 10:22:49 +0000856 if (wsi->c_origin)
857 free(wsi->c_origin);
Andy Greenbe93fef2011-02-14 20:25:43 +0000858 if (wsi->c_protocol)
859 free(wsi->c_protocol);
Peter Hinz56885f32011-03-02 22:03:47 +0000860 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000861 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000862 return 1;
863 }
864
865 lws_b64_encode_string(hash, 16, wsi->key_b64,
866 sizeof wsi->key_b64);
867
868 /*
Andy Greeneeaacb32011-03-01 20:44:24 +0000869 * 00 example client handshake
870 *
871 * GET /socket.io/websocket HTTP/1.1
872 * Upgrade: WebSocket
873 * Connection: Upgrade
874 * Host: 127.0.0.1:9999
875 * Origin: http://127.0.0.1
876 * Sec-WebSocket-Key1: 1 0 2#0W 9 89 7 92 ^
877 * Sec-WebSocket-Key2: 7 7Y 4328 B2v[8(z1
878 * Cookie: socketio=websocket
879 *
880 * (Á®Ä0¶†≥
881 *
Andy Greenbe93fef2011-02-14 20:25:43 +0000882 * 04 example client handshake
883 *
884 * GET /chat HTTP/1.1
885 * Host: server.example.com
886 * Upgrade: websocket
887 * Connection: Upgrade
888 * Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
889 * Sec-WebSocket-Origin: http://example.com
890 * Sec-WebSocket-Protocol: chat, superchat
891 * Sec-WebSocket-Version: 4
892 */
893
Andy Green08d33922011-02-26 10:22:49 +0000894 p += sprintf(p, "GET %s HTTP/1.1\x0d\x0a", wsi->c_path);
Andy Greeneeaacb32011-03-01 20:44:24 +0000895
896 if (wsi->ietf_spec_revision == 0) {
897 unsigned char spaces_1, spaces_2;
898 unsigned int max_1, max_2;
899 unsigned int num_1, num_2;
900 unsigned long product_1, product_2;
901 char key_1[40];
902 char key_2[40];
903 unsigned int seed;
904 unsigned int count;
905 char challenge[16];
906
Peter Hinz56885f32011-03-02 22:03:47 +0000907 libwebsockets_get_random(context, &spaces_1,
908 sizeof(char));
909 libwebsockets_get_random(context, &spaces_2,
910 sizeof(char));
911
Andy Greeneeaacb32011-03-01 20:44:24 +0000912 spaces_1 = (spaces_1 % 12) + 1;
913 spaces_2 = (spaces_2 % 12) + 1;
Peter Hinz56885f32011-03-02 22:03:47 +0000914
Andy Greeneeaacb32011-03-01 20:44:24 +0000915 max_1 = 4294967295 / spaces_1;
916 max_2 = 4294967295 / spaces_2;
917
Peter Hinz56885f32011-03-02 22:03:47 +0000918 libwebsockets_get_random(context, &num_1, sizeof(int));
919 libwebsockets_get_random(context, &num_2, sizeof(int));
920
Andy Greeneeaacb32011-03-01 20:44:24 +0000921 num_1 = (num_1 % max_1);
922 num_2 = (num_2 % max_2);
Peter Hinz56885f32011-03-02 22:03:47 +0000923
Andy Greeneeaacb32011-03-01 20:44:24 +0000924 challenge[0] = num_1 >> 24;
925 challenge[1] = num_1 >> 16;
926 challenge[2] = num_1 >> 8;
927 challenge[3] = num_1;
928 challenge[4] = num_2 >> 24;
929 challenge[5] = num_2 >> 16;
930 challenge[6] = num_2 >> 8;
931 challenge[7] = num_2;
Peter Hinz56885f32011-03-02 22:03:47 +0000932
Andy Greeneeaacb32011-03-01 20:44:24 +0000933 product_1 = num_1 * spaces_1;
934 product_2 = num_2 * spaces_2;
Peter Hinz56885f32011-03-02 22:03:47 +0000935
Andy Greeneeaacb32011-03-01 20:44:24 +0000936 sprintf(key_1, "%lu", product_1);
937 sprintf(key_2, "%lu", product_2);
938
Peter Hinz56885f32011-03-02 22:03:47 +0000939 libwebsockets_get_random(context, &seed, sizeof(int));
940 libwebsockets_get_random(context, &count, sizeof(int));
941
Andy Greeneeaacb32011-03-01 20:44:24 +0000942 libwebsockets_00_spam(key_1, (count % 12) + 1, seed);
Peter Hinz56885f32011-03-02 22:03:47 +0000943
944 libwebsockets_get_random(context, &seed, sizeof(int));
945 libwebsockets_get_random(context, &count, sizeof(int));
946
Andy Greeneeaacb32011-03-01 20:44:24 +0000947 libwebsockets_00_spam(key_2, (count % 12) + 1, seed);
Peter Hinz56885f32011-03-02 22:03:47 +0000948
949 libwebsockets_get_random(context, &seed, sizeof(int));
950
Andy Greeneeaacb32011-03-01 20:44:24 +0000951 libwebsockets_00_spaceout(key_1, spaces_1, seed);
952 libwebsockets_00_spaceout(key_2, spaces_2, seed >> 16);
Peter Hinz56885f32011-03-02 22:03:47 +0000953
Andy Greeneeaacb32011-03-01 20:44:24 +0000954 p += sprintf(p, "Upgrade: websocket\x0d\x0a"
955 "Connection: Upgrade\x0d\x0aHost: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +0000956 wsi->c_host);
Andy Greeneeaacb32011-03-01 20:44:24 +0000957 if (wsi->c_origin)
958 p += sprintf(p, "Origin: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +0000959 wsi->c_origin);
960
Andy Greeneeaacb32011-03-01 20:44:24 +0000961 if (wsi->c_protocol)
Peter Hinz56885f32011-03-02 22:03:47 +0000962 p += sprintf(p, "Sec-WebSocket-Protocol: %s"
963 "\x0d\x0a", wsi->c_protocol);
964
Andy Greeneeaacb32011-03-01 20:44:24 +0000965 p += sprintf(p, "Sec-WebSocket-Key1: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +0000966 key_1);
Andy Greeneeaacb32011-03-01 20:44:24 +0000967 p += sprintf(p, "Sec-WebSocket-Key2: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +0000968 key_2);
Andy Greeneeaacb32011-03-01 20:44:24 +0000969
Andy Green385e7ad2011-03-01 21:06:02 +0000970 /* give userland a chance to append, eg, cookies */
Peter Hinz56885f32011-03-02 22:03:47 +0000971
972 context->protocols[0].callback(context, wsi,
973 LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER,
Andy Green385e7ad2011-03-01 21:06:02 +0000974 NULL, &p, (pkt + sizeof(pkt)) - p - 12);
975
Andy Greeneeaacb32011-03-01 20:44:24 +0000976 p += sprintf(p, "\x0d\x0a");
Peter Hinz56885f32011-03-02 22:03:47 +0000977
978 read(context->fd_random, p, 8);
Andy Greeneeaacb32011-03-01 20:44:24 +0000979 memcpy(&challenge[8], p, 8);
980 p += 8;
Peter Hinz56885f32011-03-02 22:03:47 +0000981
Andy Greeneeaacb32011-03-01 20:44:24 +0000982 /* precompute what we want to see from the server */
Peter Hinz56885f32011-03-02 22:03:47 +0000983
Andy Greeneeaacb32011-03-01 20:44:24 +0000984 MD5((unsigned char *)challenge, 16,
985 (unsigned char *)wsi->initial_handshake_hash_base64);
Peter Hinz56885f32011-03-02 22:03:47 +0000986
Andy Greeneeaacb32011-03-01 20:44:24 +0000987 goto issue_hdr;
988 }
989
Andy Green08d33922011-02-26 10:22:49 +0000990 p += sprintf(p, "Host: %s\x0d\x0a", wsi->c_host);
991 p += sprintf(p, "Upgrade: websocket\x0d\x0a");
992 p += sprintf(p, "Connection: Upgrade\x0d\x0a"
Andy Greenbe93fef2011-02-14 20:25:43 +0000993 "Sec-WebSocket-Key: ");
Andy Green08d33922011-02-26 10:22:49 +0000994 strcpy(p, wsi->key_b64);
995 p += strlen(wsi->key_b64);
996 p += sprintf(p, "\x0d\x0a");
997 if (wsi->c_origin)
998 p += sprintf(p, "Sec-WebSocket-Origin: %s\x0d\x0a",
Andy Greenbe93fef2011-02-14 20:25:43 +0000999 wsi->c_origin);
Andy Green08d33922011-02-26 10:22:49 +00001000 if (wsi->c_protocol)
Andy Greenbe93fef2011-02-14 20:25:43 +00001001 p += sprintf(p, "Sec-WebSocket-Protocol: %s\x0d\x0a",
1002 wsi->c_protocol);
Andy Green385e7ad2011-03-01 21:06:02 +00001003 p += sprintf(p, "Sec-WebSocket-Version: %d\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +00001004 wsi->ietf_spec_revision);
Andy Green385e7ad2011-03-01 21:06:02 +00001005 /* give userland a chance to append, eg, cookies */
Peter Hinz56885f32011-03-02 22:03:47 +00001006
1007 context->protocols[0].callback(context, wsi,
1008 LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER,
1009 NULL, &p, (pkt + sizeof(pkt)) - p - 12);
1010
Andy Green385e7ad2011-03-01 21:06:02 +00001011 p += sprintf(p, "\x0d\x0a");
1012
Andy Greenbe93fef2011-02-14 20:25:43 +00001013 /* prepare the expected server accept response */
1014
1015 strcpy((char *)buf, wsi->key_b64);
1016 strcpy((char *)&buf[strlen((char *)buf)], magic_websocket_guid);
1017
1018 SHA1(buf, strlen((char *)buf), (unsigned char *)hash);
1019
1020 lws_b64_encode_string(hash, 20,
1021 wsi->initial_handshake_hash_base64,
1022 sizeof wsi->initial_handshake_hash_base64);
Peter Hinz56885f32011-03-02 22:03:47 +00001023
Andy Greeneeaacb32011-03-01 20:44:24 +00001024issue_hdr:
Peter Hinz56885f32011-03-02 22:03:47 +00001025
Andy Greeneeaacb32011-03-01 20:44:24 +00001026 /* done with these now */
Peter Hinz56885f32011-03-02 22:03:47 +00001027
Andy Greeneeaacb32011-03-01 20:44:24 +00001028 free(wsi->c_path);
1029 free(wsi->c_host);
1030 if (wsi->c_origin)
1031 free(wsi->c_origin);
1032
Andy Greenbe93fef2011-02-14 20:25:43 +00001033 /* send our request to the server */
1034
1035 #ifdef LWS_OPENSSL_SUPPORT
1036 if (wsi->use_ssl)
1037 n = SSL_write(wsi->ssl, pkt, p - pkt);
1038 else
1039 #endif
1040 n = send(wsi->sock, pkt, p - pkt, 0);
1041
1042 if (n < 0) {
1043 fprintf(stderr, "ERROR writing to client socket\n");
Peter Hinz56885f32011-03-02 22:03:47 +00001044 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001045 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001046 return 1;
1047 }
1048
1049 wsi->parser_state = WSI_TOKEN_NAME_PART;
1050 wsi->mode = LWS_CONNMODE_WS_CLIENT_WAITING_SERVER_REPLY;
1051 libwebsocket_set_timeout(wsi,
1052 PENDING_TIMEOUT_AWAITING_SERVER_RESPONSE, 5);
1053
1054 break;
1055
1056 case LWS_CONNMODE_WS_CLIENT_WAITING_SERVER_REPLY:
1057
1058 /* handle server hung up on us */
1059
1060 if (pollfd->revents & (POLLERR | POLLHUP)) {
1061
1062 fprintf(stderr, "Server connection %p (fd=%d) dead\n",
1063 (void *)wsi, pollfd->fd);
1064
1065 goto bail3;
1066 }
1067
1068
1069 /* interpret the server response */
1070
1071 /*
1072 * HTTP/1.1 101 Switching Protocols
1073 * Upgrade: websocket
1074 * Connection: Upgrade
1075 * Sec-WebSocket-Accept: me89jWimTRKTWwrS3aRrL53YZSo=
1076 * Sec-WebSocket-Nonce: AQIDBAUGBwgJCgsMDQ4PEC==
1077 * Sec-WebSocket-Protocol: chat
1078 */
1079
1080 #ifdef LWS_OPENSSL_SUPPORT
1081 if (wsi->use_ssl)
1082 len = SSL_read(wsi->ssl, pkt, sizeof pkt);
1083 else
1084 #endif
1085 len = recv(wsi->sock, pkt, sizeof pkt, 0);
1086
1087 if (len < 0) {
1088 fprintf(stderr,
1089 "libwebsocket_client_handshake read error\n");
1090 goto bail3;
1091 }
1092
1093 p = pkt;
1094 for (n = 0; n < len; n++)
1095 libwebsocket_parse(wsi, *p++);
1096
1097 if (wsi->parser_state != WSI_PARSING_COMPLETE) {
1098 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001099 "server response failed parsing\n");
Andy Greenbe93fef2011-02-14 20:25:43 +00001100 goto bail3;
1101 }
1102
1103 /*
Andy Greeneeaacb32011-03-01 20:44:24 +00001104 * 00 / 76 -->
1105 *
1106 * HTTP/1.1 101 WebSocket Protocol Handshake
1107 * Upgrade: WebSocket
1108 * Connection: Upgrade
1109 * Sec-WebSocket-Origin: http://127.0.0.1
1110 * Sec-WebSocket-Location: ws://127.0.0.1:9999/socket.io/websocket
1111 *
1112 * xxxxxxxxxxxxxxxx
1113 */
Peter Hinz56885f32011-03-02 22:03:47 +00001114
Andy Greeneeaacb32011-03-01 20:44:24 +00001115 if (wsi->ietf_spec_revision == 0) {
1116 if (!wsi->utf8_token[WSI_TOKEN_HTTP].token_len ||
Peter Hinz56885f32011-03-02 22:03:47 +00001117 !wsi->utf8_token[WSI_TOKEN_UPGRADE].token_len ||
1118 !wsi->utf8_token[WSI_TOKEN_CHALLENGE].token_len ||
1119 !wsi->utf8_token[WSI_TOKEN_CONNECTION].token_len ||
1120 (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len &&
1121 wsi->c_protocol != NULL)) {
Andy Greeneeaacb32011-03-01 20:44:24 +00001122 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001123 "missing required header(s)\n");
Andy Greeneeaacb32011-03-01 20:44:24 +00001124 pkt[len] = '\0';
1125 fprintf(stderr, "%s", pkt);
1126 goto bail3;
1127 }
Andy Greeneeaacb32011-03-01 20:44:24 +00001128
Peter Hinz56885f32011-03-02 22:03:47 +00001129 strtolower(wsi->utf8_token[WSI_TOKEN_HTTP].token);
1130 if (strcmp(wsi->utf8_token[WSI_TOKEN_HTTP].token,
1131 "101 websocket protocol handshake")) {
Andy Greeneeaacb32011-03-01 20:44:24 +00001132 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001133 "server sent bad HTTP response '%s'\n",
1134 wsi->utf8_token[WSI_TOKEN_HTTP].token);
1135 goto bail3;
1136 }
1137
1138 if (wsi->utf8_token[WSI_TOKEN_CHALLENGE].token_len <
1139 16) {
1140 fprintf(stderr, "libwebsocket_client_handshake "
1141 "challenge reply too short %d\n",
1142 wsi->utf8_token[
1143 WSI_TOKEN_CHALLENGE].token_len);
Andy Greeneeaacb32011-03-01 20:44:24 +00001144 pkt[len] = '\0';
1145 fprintf(stderr, "%s", pkt);
1146 goto bail3;
Peter Hinz56885f32011-03-02 22:03:47 +00001147
Andy Greeneeaacb32011-03-01 20:44:24 +00001148 }
Peter Hinz56885f32011-03-02 22:03:47 +00001149
Andy Greeneeaacb32011-03-01 20:44:24 +00001150 goto select_protocol;
1151 }
Peter Hinz56885f32011-03-02 22:03:47 +00001152
Andy Greeneeaacb32011-03-01 20:44:24 +00001153 /*
Andy Greenbe93fef2011-02-14 20:25:43 +00001154 * well, what the server sent looked reasonable for syntax.
1155 * Now let's confirm it sent all the necessary headers
1156 */
1157
1158 if (!wsi->utf8_token[WSI_TOKEN_HTTP].token_len ||
1159 !wsi->utf8_token[WSI_TOKEN_UPGRADE].token_len ||
1160 !wsi->utf8_token[WSI_TOKEN_CONNECTION].token_len ||
1161 !wsi->utf8_token[WSI_TOKEN_ACCEPT].token_len ||
Andy Green4eaa86b2011-02-26 11:17:48 +00001162 (!wsi->utf8_token[WSI_TOKEN_NONCE].token_len &&
1163 wsi->ietf_spec_revision == 4) ||
Andy Greenbe93fef2011-02-14 20:25:43 +00001164 (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len &&
1165 wsi->c_protocol != NULL)) {
1166 fprintf(stderr, "libwebsocket_client_handshake "
Andy Green687b0182011-02-26 11:04:01 +00001167 "missing required header(s)\n");
Andy Greenbe93fef2011-02-14 20:25:43 +00001168 pkt[len] = '\0';
1169 fprintf(stderr, "%s", pkt);
1170 goto bail3;
1171 }
1172
1173 /*
1174 * Everything seems to be there, now take a closer look at what
1175 * is in each header
1176 */
1177
1178 strtolower(wsi->utf8_token[WSI_TOKEN_HTTP].token);
1179 if (strcmp(wsi->utf8_token[WSI_TOKEN_HTTP].token,
1180 "101 switching protocols")) {
1181 fprintf(stderr, "libwebsocket_client_handshake "
1182 "server sent bad HTTP response '%s'\n",
1183 wsi->utf8_token[WSI_TOKEN_HTTP].token);
1184 goto bail3;
1185 }
1186
1187 strtolower(wsi->utf8_token[WSI_TOKEN_UPGRADE].token);
1188 if (strcmp(wsi->utf8_token[WSI_TOKEN_UPGRADE].token,
1189 "websocket")) {
1190 fprintf(stderr, "libwebsocket_client_handshake server "
1191 "sent bad Upgrade header '%s'\n",
1192 wsi->utf8_token[WSI_TOKEN_UPGRADE].token);
1193 goto bail3;
1194 }
1195
1196 strtolower(wsi->utf8_token[WSI_TOKEN_CONNECTION].token);
1197 if (strcmp(wsi->utf8_token[WSI_TOKEN_CONNECTION].token,
1198 "upgrade")) {
1199 fprintf(stderr, "libwebsocket_client_handshake server "
1200 "sent bad Connection hdr '%s'\n",
1201 wsi->utf8_token[WSI_TOKEN_CONNECTION].token);
1202 goto bail3;
1203 }
1204
Andy Greeneeaacb32011-03-01 20:44:24 +00001205select_protocol:
Andy Greenbe93fef2011-02-14 20:25:43 +00001206 pc = wsi->c_protocol;
1207
1208 /*
1209 * confirm the protocol the server wants to talk was in the list
1210 * of protocols we offered
1211 */
1212
1213 if (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len) {
1214
1215 /*
1216 * no protocol name to work from,
1217 * default to first protocol
1218 */
Peter Hinz56885f32011-03-02 22:03:47 +00001219 wsi->protocol = &context->protocols[0];
Andy Greenbe93fef2011-02-14 20:25:43 +00001220
1221 free(wsi->c_protocol);
1222
1223 goto check_accept;
1224 }
1225
1226 while (*pc && !okay) {
1227 if ((!strncmp(pc,
1228 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token,
1229 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len)) &&
1230 (pc[wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len] == ',' ||
1231 pc[wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len] == '\0')) {
1232 okay = 1;
1233 continue;
1234 }
1235 while (*pc && *pc != ',')
1236 pc++;
1237 while (*pc && *pc != ' ')
1238 pc++;
1239 }
1240
1241 /* done with him now */
1242
1243 if (wsi->c_protocol)
1244 free(wsi->c_protocol);
1245
1246
1247 if (!okay) {
1248 fprintf(stderr, "libwebsocket_client_handshake server "
1249 "sent bad protocol '%s'\n",
1250 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token);
1251 goto bail2;
1252 }
1253
1254 /*
1255 * identify the selected protocol struct and set it
1256 */
1257 n = 0;
1258 wsi->protocol = NULL;
Peter Hinz56885f32011-03-02 22:03:47 +00001259 while (context->protocols[n].callback) {
Andy Greenbe93fef2011-02-14 20:25:43 +00001260 if (strcmp(wsi->utf8_token[WSI_TOKEN_PROTOCOL].token,
Peter Hinz56885f32011-03-02 22:03:47 +00001261 context->protocols[n].name) == 0)
1262 wsi->protocol = &context->protocols[n];
Andy Greenbe93fef2011-02-14 20:25:43 +00001263 n++;
1264 }
1265
1266 if (wsi->protocol == NULL) {
1267 fprintf(stderr, "libwebsocket_client_handshake server "
1268 "requested protocol '%s', which we "
1269 "said we supported but we don't!\n",
1270 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token);
1271 goto bail2;
1272 }
1273
1274 check_accept:
Andy Greeneeaacb32011-03-01 20:44:24 +00001275
1276 if (wsi->ietf_spec_revision == 0) {
Peter Hinz56885f32011-03-02 22:03:47 +00001277
Andy Greeneeaacb32011-03-01 20:44:24 +00001278 if (memcmp(wsi->initial_handshake_hash_base64,
Peter Hinz56885f32011-03-02 22:03:47 +00001279 wsi->utf8_token[WSI_TOKEN_CHALLENGE].token, 16)) {
Andy Greeneeaacb32011-03-01 20:44:24 +00001280 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001281 "failed 00 challenge compare\n");
1282 pkt[len] = '\0';
1283 fprintf(stderr, "%s", pkt);
1284 goto bail2;
Andy Greeneeaacb32011-03-01 20:44:24 +00001285 }
Peter Hinz56885f32011-03-02 22:03:47 +00001286
Andy Greeneeaacb32011-03-01 20:44:24 +00001287 goto accept_ok;
1288 }
Peter Hinz56885f32011-03-02 22:03:47 +00001289
Andy Greenbe93fef2011-02-14 20:25:43 +00001290 /*
1291 * Confirm his accept token is the one we precomputed
1292 */
1293
1294 if (strcmp(wsi->utf8_token[WSI_TOKEN_ACCEPT].token,
1295 wsi->initial_handshake_hash_base64)) {
1296 fprintf(stderr, "libwebsocket_client_handshake server "
1297 "sent bad ACCEPT '%s' vs computed '%s'\n",
1298 wsi->utf8_token[WSI_TOKEN_ACCEPT].token,
1299 wsi->initial_handshake_hash_base64);
1300 goto bail2;
1301 }
1302
Andy Green4eaa86b2011-02-26 11:17:48 +00001303 if (wsi->ietf_spec_revision == 4) {
1304 /*
1305 * Calculate the 04 masking key to use when
1306 * sending data to server
1307 */
Andy Greenbe93fef2011-02-14 20:25:43 +00001308
Andy Green4eaa86b2011-02-26 11:17:48 +00001309 strcpy((char *)buf, wsi->key_b64);
1310 p = (char *)buf + strlen(wsi->key_b64);
1311 strcpy(p, wsi->utf8_token[WSI_TOKEN_NONCE].token);
1312 p += wsi->utf8_token[WSI_TOKEN_NONCE].token_len;
1313 strcpy(p, magic_websocket_04_masking_guid);
1314 SHA1(buf, strlen((char *)buf), wsi->masking_key_04);
1315 }
Andy Greeneeaacb32011-03-01 20:44:24 +00001316accept_ok:
1317
Andy Greenbe93fef2011-02-14 20:25:43 +00001318 /* allocate the per-connection user memory (if any) */
1319
1320 if (wsi->protocol->per_session_data_size) {
1321 wsi->user_space = malloc(
1322 wsi->protocol->per_session_data_size);
1323 if (wsi->user_space == NULL) {
1324 fprintf(stderr, "Out of memory for "
1325 "conn user space\n");
1326 goto bail2;
1327 }
1328 } else
1329 wsi->user_space = NULL;
1330
1331 /* clear his proxy connection timeout */
1332
1333 libwebsocket_set_timeout(wsi, NO_PENDING_TIMEOUT, 0);
1334
1335 /* mark him as being alive */
1336
1337 wsi->state = WSI_STATE_ESTABLISHED;
1338 wsi->mode = LWS_CONNMODE_WS_CLIENT;
1339
1340 fprintf(stderr, "handshake OK for protocol %s\n",
1341 wsi->protocol->name);
1342
1343 /* call him back to inform him he is up */
1344
Peter Hinz56885f32011-03-02 22:03:47 +00001345 wsi->protocol->callback(context, wsi,
Andy Greenbe93fef2011-02-14 20:25:43 +00001346 LWS_CALLBACK_CLIENT_ESTABLISHED,
1347 wsi->user_space,
1348 NULL, 0);
1349
1350 break;
1351
1352bail3:
1353 if (wsi->c_protocol)
1354 free(wsi->c_protocol);
1355
1356bail2:
Peter Hinz56885f32011-03-02 22:03:47 +00001357 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001358 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001359 return 1;
1360
1361
Andy Green0d338332011-02-12 11:57:43 +00001362 case LWS_CONNMODE_WS_SERVING:
1363 case LWS_CONNMODE_WS_CLIENT:
1364
1365 /* handle session socket closed */
1366
1367 if (pollfd->revents & (POLLERR | POLLHUP)) {
1368
Andy Green62c54d22011-02-14 09:14:25 +00001369 fprintf(stderr, "Session Socket %p (fd=%d) dead\n",
Andy Green0d338332011-02-12 11:57:43 +00001370 (void *)wsi, pollfd->fd);
1371
Peter Hinz56885f32011-03-02 22:03:47 +00001372 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001373 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green4b6fbe12011-02-14 08:03:48 +00001374 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +00001375 }
1376
Andy Green0d338332011-02-12 11:57:43 +00001377 /* the guy requested a callback when it was OK to write */
1378
1379 if (pollfd->revents & POLLOUT) {
1380
1381 pollfd->events &= ~POLLOUT;
1382
Andy Green3221f922011-02-12 13:14:11 +00001383 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001384 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001385 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
1386 (void *)(long)wsi->sock, NULL, POLLOUT);
1387
Peter Hinz56885f32011-03-02 22:03:47 +00001388 wsi->protocol->callback(context, wsi,
Andy Green0d338332011-02-12 11:57:43 +00001389 LWS_CALLBACK_CLIENT_WRITEABLE,
1390 wsi->user_space,
1391 NULL, 0);
1392 }
1393
1394 /* any incoming data ready? */
1395
1396 if (!(pollfd->revents & POLLIN))
1397 break;
1398
Andy Greenb45993c2010-12-18 15:13:50 +00001399#ifdef LWS_OPENSSL_SUPPORT
Andy Green0d338332011-02-12 11:57:43 +00001400 if (wsi->ssl)
1401 n = SSL_read(wsi->ssl, buf, sizeof buf);
Andy Greenb45993c2010-12-18 15:13:50 +00001402 else
1403#endif
Andy Green0d338332011-02-12 11:57:43 +00001404 n = recv(pollfd->fd, buf, sizeof buf, 0);
Andy Greenb45993c2010-12-18 15:13:50 +00001405
1406 if (n < 0) {
1407 fprintf(stderr, "Socket read returned %d\n", n);
Andy Green4b6fbe12011-02-14 08:03:48 +00001408 break;
Andy Greenb45993c2010-12-18 15:13:50 +00001409 }
1410 if (!n) {
Peter Hinz56885f32011-03-02 22:03:47 +00001411 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001412 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green4b6fbe12011-02-14 08:03:48 +00001413 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +00001414 }
1415
Andy Greenb45993c2010-12-18 15:13:50 +00001416 /* service incoming data */
1417
Peter Hinz56885f32011-03-02 22:03:47 +00001418 n = libwebsocket_read(context, wsi, buf, n);
Andy Green6964bb52011-01-23 16:50:33 +00001419 if (n >= 0)
Andy Green4b6fbe12011-02-14 08:03:48 +00001420 break;
Andy Greenb45993c2010-12-18 15:13:50 +00001421
Andy Green4b6fbe12011-02-14 08:03:48 +00001422 /* we closed wsi */
Andy Green0d338332011-02-12 11:57:43 +00001423
Andy Green4b6fbe12011-02-14 08:03:48 +00001424 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +00001425 }
1426
1427 return 0;
1428}
1429
Andy Green0d338332011-02-12 11:57:43 +00001430
Andy Green6964bb52011-01-23 16:50:33 +00001431/**
1432 * libwebsocket_context_destroy() - Destroy the websocket context
Peter Hinz56885f32011-03-02 22:03:47 +00001433 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001434 *
1435 * This function closes any active connections and then frees the
1436 * context. After calling this, any further use of the context is
1437 * undefined.
1438 */
1439void
Peter Hinz56885f32011-03-02 22:03:47 +00001440libwebsocket_context_destroy(struct libwebsocket_context *context)
Andy Green6964bb52011-01-23 16:50:33 +00001441{
Andy Green0d338332011-02-12 11:57:43 +00001442 int n;
1443 int m;
1444 struct libwebsocket *wsi;
Andy Green6964bb52011-01-23 16:50:33 +00001445
Andy Green4b6fbe12011-02-14 08:03:48 +00001446 for (n = 0; n < FD_HASHTABLE_MODULUS; n++)
Peter Hinz56885f32011-03-02 22:03:47 +00001447 for (m = 0; m < context->fd_hashtable[n].length; m++) {
1448 wsi = context->fd_hashtable[n].wsi[m];
1449 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001450 LWS_CLOSE_STATUS_GOINGAWAY);
Andy Greenf3d3b402011-02-09 07:16:34 +00001451 }
Andy Green6964bb52011-01-23 16:50:33 +00001452
Peter Hinz56885f32011-03-02 22:03:47 +00001453#ifdef WIN32
1454#else
1455 close(context->fd_random);
Andy Green6964bb52011-01-23 16:50:33 +00001456#endif
1457
Peter Hinz56885f32011-03-02 22:03:47 +00001458#ifdef LWS_OPENSSL_SUPPORT
1459 if (context->ssl_ctx)
1460 SSL_CTX_free(context->ssl_ctx);
1461 if (context->ssl_client_ctx)
1462 SSL_CTX_free(context->ssl_client_ctx);
1463#endif
1464
1465 free(context);
1466
1467#ifdef WIN32
1468 WSACleanup();
1469#endif
Andy Green6964bb52011-01-23 16:50:33 +00001470}
1471
1472/**
1473 * libwebsocket_service() - Service any pending websocket activity
Peter Hinz56885f32011-03-02 22:03:47 +00001474 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001475 * @timeout_ms: Timeout for poll; 0 means return immediately if nothing needed
1476 * service otherwise block and service immediately, returning
1477 * after the timeout if nothing needed service.
1478 *
1479 * This function deals with any pending websocket traffic, for three
1480 * kinds of event. It handles these events on both server and client
1481 * types of connection the same.
1482 *
1483 * 1) Accept new connections to our context's server
1484 *
1485 * 2) Perform pending broadcast writes initiated from other forked
1486 * processes (effectively serializing asynchronous broadcasts)
1487 *
1488 * 3) Call the receive callback for incoming frame data received by
1489 * server or client connections.
1490 *
1491 * You need to call this service function periodically to all the above
1492 * functions to happen; if your application is single-threaded you can
1493 * just call it in your main event loop.
1494 *
1495 * Alternatively you can fork a new process that asynchronously handles
1496 * calling this service in a loop. In that case you are happy if this
1497 * call blocks your thread until it needs to take care of something and
1498 * would call it with a large nonzero timeout. Your loop then takes no
1499 * CPU while there is nothing happening.
1500 *
1501 * If you are calling it in a single-threaded app, you don't want it to
1502 * wait around blocking other things in your loop from happening, so you
1503 * would call it with a timeout_ms of 0, so it returns immediately if
1504 * nothing is pending, or as soon as it services whatever was pending.
1505 */
1506
Andy Greenb45993c2010-12-18 15:13:50 +00001507
Andy Greene92cd172011-01-19 13:11:55 +00001508int
Peter Hinz56885f32011-03-02 22:03:47 +00001509libwebsocket_service(struct libwebsocket_context *context, int timeout_ms)
Andy Greene92cd172011-01-19 13:11:55 +00001510{
1511 int n;
Andy Greene92cd172011-01-19 13:11:55 +00001512
1513 /* stay dead once we are dead */
1514
Peter Hinz56885f32011-03-02 22:03:47 +00001515 if (context == NULL)
Andy Greene92cd172011-01-19 13:11:55 +00001516 return 1;
1517
Andy Green0d338332011-02-12 11:57:43 +00001518 /* wait for something to need service */
Andy Green4739e5c2011-01-22 12:51:57 +00001519
Peter Hinz56885f32011-03-02 22:03:47 +00001520 n = poll(context->fds, context->fds_count, timeout_ms);
Andy Green3221f922011-02-12 13:14:11 +00001521 if (n == 0) /* poll timeout */
1522 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001523
Andy Green62c54d22011-02-14 09:14:25 +00001524 if (n < 0) {
Andy Green5e1fa172011-02-10 09:07:05 +00001525 /*
Andy Greene92cd172011-01-19 13:11:55 +00001526 fprintf(stderr, "Listen Socket dead\n");
Andy Green5e1fa172011-02-10 09:07:05 +00001527 */
Andy Green0d338332011-02-12 11:57:43 +00001528 return 1;
Andy Greene92cd172011-01-19 13:11:55 +00001529 }
Andy Greene92cd172011-01-19 13:11:55 +00001530
1531 /* handle accept on listening socket? */
1532
Peter Hinz56885f32011-03-02 22:03:47 +00001533 for (n = 0; n < context->fds_count; n++)
1534 if (context->fds[n].revents)
1535 libwebsocket_service_fd(context, &context->fds[n]);
Andy Greene92cd172011-01-19 13:11:55 +00001536
1537 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001538}
1539
Andy Green90c7cbc2011-01-27 06:26:52 +00001540/**
1541 * libwebsocket_callback_on_writable() - Request a callback when this socket
1542 * becomes able to be written to without
1543 * blocking
Andy Green32375b72011-02-19 08:32:53 +00001544 *
Peter Hinz56885f32011-03-02 22:03:47 +00001545 * @context: libwebsockets context
Andy Green90c7cbc2011-01-27 06:26:52 +00001546 * @wsi: Websocket connection instance to get callback for
1547 */
1548
1549int
Peter Hinz56885f32011-03-02 22:03:47 +00001550libwebsocket_callback_on_writable(struct libwebsocket_context *context,
Andy Green62c54d22011-02-14 09:14:25 +00001551 struct libwebsocket *wsi)
Andy Green90c7cbc2011-01-27 06:26:52 +00001552{
Andy Green90c7cbc2011-01-27 06:26:52 +00001553 int n;
1554
Peter Hinz56885f32011-03-02 22:03:47 +00001555 for (n = 0; n < context->fds_count; n++)
1556 if (context->fds[n].fd == wsi->sock) {
1557 context->fds[n].events |= POLLOUT;
1558 n = context->fds_count;
Andy Green90c7cbc2011-01-27 06:26:52 +00001559 }
1560
Andy Green3221f922011-02-12 13:14:11 +00001561 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001562 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001563 LWS_CALLBACK_SET_MODE_POLL_FD,
1564 (void *)(long)wsi->sock, NULL, POLLOUT);
1565
Andy Green90c7cbc2011-01-27 06:26:52 +00001566 return 1;
1567}
1568
1569/**
1570 * libwebsocket_callback_on_writable_all_protocol() - Request a callback for
1571 * all connections using the given protocol when it
1572 * becomes possible to write to each socket without
1573 * blocking in turn.
1574 *
1575 * @protocol: Protocol whose connections will get callbacks
1576 */
1577
1578int
1579libwebsocket_callback_on_writable_all_protocol(
1580 const struct libwebsocket_protocols *protocol)
1581{
Peter Hinz56885f32011-03-02 22:03:47 +00001582 struct libwebsocket_context *context = protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001583 int n;
Andy Green0d338332011-02-12 11:57:43 +00001584 int m;
1585 struct libwebsocket *wsi;
Andy Green90c7cbc2011-01-27 06:26:52 +00001586
Andy Green0d338332011-02-12 11:57:43 +00001587 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
1588
Peter Hinz56885f32011-03-02 22:03:47 +00001589 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Green0d338332011-02-12 11:57:43 +00001590
Peter Hinz56885f32011-03-02 22:03:47 +00001591 wsi = context->fd_hashtable[n].wsi[m];
Andy Green0d338332011-02-12 11:57:43 +00001592
1593 if (wsi->protocol == protocol)
Peter Hinz56885f32011-03-02 22:03:47 +00001594 libwebsocket_callback_on_writable(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001595 }
1596 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001597
1598 return 0;
1599}
1600
Andy Greenbe93fef2011-02-14 20:25:43 +00001601/**
1602 * libwebsocket_set_timeout() - marks the wsi as subject to a timeout
1603 *
1604 * You will not need this unless you are doing something special
1605 *
1606 * @wsi: Websocket connection instance
1607 * @reason: timeout reason
1608 * @secs: how many seconds
1609 */
1610
1611void
1612libwebsocket_set_timeout(struct libwebsocket *wsi,
1613 enum pending_timeout reason, int secs)
1614{
1615 struct timeval tv;
1616
1617 gettimeofday(&tv, NULL);
1618
1619 wsi->pending_timeout_limit = tv.tv_sec + secs;
1620 wsi->pending_timeout = reason;
1621}
1622
Andy Greena6cbece2011-01-27 20:06:03 +00001623
1624/**
1625 * libwebsocket_get_socket_fd() - returns the socket file descriptor
1626 *
1627 * You will not need this unless you are doing something special
1628 *
1629 * @wsi: Websocket connection instance
1630 */
1631
1632int
1633libwebsocket_get_socket_fd(struct libwebsocket *wsi)
1634{
1635 return wsi->sock;
1636}
1637
Andy Green90c7cbc2011-01-27 06:26:52 +00001638/**
1639 * libwebsocket_rx_flow_control() - Enable and disable socket servicing for
1640 * receieved packets.
1641 *
1642 * If the output side of a server process becomes choked, this allows flow
1643 * control for the input side.
1644 *
1645 * @wsi: Websocket connection instance to get callback for
1646 * @enable: 0 = disable read servicing for this connection, 1 = enable
1647 */
1648
1649int
1650libwebsocket_rx_flow_control(struct libwebsocket *wsi, int enable)
1651{
Peter Hinz56885f32011-03-02 22:03:47 +00001652 struct libwebsocket_context *context = wsi->protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001653 int n;
1654
Peter Hinz56885f32011-03-02 22:03:47 +00001655 for (n = 0; n < context->fds_count; n++)
1656 if (context->fds[n].fd == wsi->sock) {
Andy Green90c7cbc2011-01-27 06:26:52 +00001657 if (enable)
Peter Hinz56885f32011-03-02 22:03:47 +00001658 context->fds[n].events |= POLLIN;
Andy Green90c7cbc2011-01-27 06:26:52 +00001659 else
Peter Hinz56885f32011-03-02 22:03:47 +00001660 context->fds[n].events &= ~POLLIN;
Andy Green90c7cbc2011-01-27 06:26:52 +00001661
1662 return 0;
1663 }
1664
Andy Green3221f922011-02-12 13:14:11 +00001665 if (enable)
1666 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001667 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001668 LWS_CALLBACK_SET_MODE_POLL_FD,
1669 (void *)(long)wsi->sock, NULL, POLLIN);
1670 else
1671 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001672 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001673 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
1674 (void *)(long)wsi->sock, NULL, POLLIN);
1675
1676
Andy Green90c7cbc2011-01-27 06:26:52 +00001677 fprintf(stderr, "libwebsocket_callback_on_writable "
1678 "unable to find socket\n");
1679 return 1;
1680}
1681
Andy Green2ac5a6f2011-01-28 10:00:18 +00001682/**
1683 * libwebsocket_canonical_hostname() - returns this host's hostname
1684 *
1685 * This is typically used by client code to fill in the host parameter
1686 * when making a client connection. You can only call it after the context
1687 * has been created.
1688 *
Peter Hinz56885f32011-03-02 22:03:47 +00001689 * @context: Websocket context
Andy Green2ac5a6f2011-01-28 10:00:18 +00001690 */
1691
1692
1693extern const char *
Peter Hinz56885f32011-03-02 22:03:47 +00001694libwebsocket_canonical_hostname(struct libwebsocket_context *context)
Andy Green2ac5a6f2011-01-28 10:00:18 +00001695{
Peter Hinz56885f32011-03-02 22:03:47 +00001696 return (const char *)context->canonical_hostname;
Andy Green2ac5a6f2011-01-28 10:00:18 +00001697}
1698
1699
Andy Green90c7cbc2011-01-27 06:26:52 +00001700static void sigpipe_handler(int x)
1701{
1702}
1703
Andy Green6901cb32011-02-21 08:06:47 +00001704#ifdef LWS_OPENSSL_SUPPORT
1705static int
1706OpenSSL_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx)
1707{
1708
1709 SSL *ssl;
1710 int n;
Andy Green2e24da02011-03-05 16:12:04 +00001711 struct libwebsocket_context *context;
Andy Green6901cb32011-02-21 08:06:47 +00001712
1713 ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
1714 SSL_get_ex_data_X509_STORE_CTX_idx());
1715
1716 /*
Andy Green2e24da02011-03-05 16:12:04 +00001717 * !!! nasty openssl requires the index to come as a library-scope
1718 * static
Andy Green6901cb32011-02-21 08:06:47 +00001719 */
Andy Green2e24da02011-03-05 16:12:04 +00001720 context = SSL_get_ex_data(ssl, openssl_websocket_private_data_index);
Andy Green6901cb32011-02-21 08:06:47 +00001721
Peter Hinz56885f32011-03-02 22:03:47 +00001722 n = context->protocols[0].callback(NULL, NULL,
Andy Green6901cb32011-02-21 08:06:47 +00001723 LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION,
1724 x509_ctx, ssl, preverify_ok);
1725
1726 /* convert return code from 0 = OK to 1 = OK */
1727
1728 if (!n)
1729 n = 1;
1730 else
1731 n = 0;
1732
1733 return n;
1734}
1735#endif
1736
Andy Greenb45993c2010-12-18 15:13:50 +00001737
Andy Greenab990e42010-10-31 12:42:52 +00001738/**
Andy Green4739e5c2011-01-22 12:51:57 +00001739 * libwebsocket_create_context() - Create the websocket handler
1740 * @port: Port to listen on... you can use 0 to suppress listening on
Andy Green6964bb52011-01-23 16:50:33 +00001741 * any port, that's what you want if you are not running a
1742 * websocket server at all but just using it as a client
Peter Hinz56885f32011-03-02 22:03:47 +00001743 * @interf: NULL to bind the listen socket to all interfaces, or the
Andy Green32375b72011-02-19 08:32:53 +00001744 * interface name, eg, "eth2"
Andy Green4f3943a2010-11-12 10:44:16 +00001745 * @protocols: Array of structures listing supported protocols and a protocol-
Andy Green8f037e42010-12-19 22:13:26 +00001746 * specific callback for each one. The list is ended with an
1747 * entry that has a NULL callback pointer.
Andy Green6964bb52011-01-23 16:50:33 +00001748 * It's not const because we write the owning_server member
Andy Greenc5114822011-03-06 10:29:35 +00001749 * @extensions: NULL or array of libwebsocket_extension structs listing the
1750 * extensions this context supports
Andy Green3faa9c72010-11-08 17:03:03 +00001751 * @ssl_cert_filepath: If libwebsockets was compiled to use ssl, and you want
Andy Green8f037e42010-12-19 22:13:26 +00001752 * to listen using SSL, set to the filepath to fetch the
1753 * server cert from, otherwise NULL for unencrypted
Andy Green3faa9c72010-11-08 17:03:03 +00001754 * @ssl_private_key_filepath: filepath to private key if wanting SSL mode,
Andy Green8f037e42010-12-19 22:13:26 +00001755 * else ignored
Andy Green3faa9c72010-11-08 17:03:03 +00001756 * @gid: group id to change to after setting listen socket, or -1.
1757 * @uid: user id to change to after setting listen socket, or -1.
Andy Greenbfb051f2011-02-09 08:49:14 +00001758 * @options: 0, or LWS_SERVER_OPTION_DEFEAT_CLIENT_MASK
Andy Green05464c62010-11-12 10:44:18 +00001759 *
Andy Green8f037e42010-12-19 22:13:26 +00001760 * This function creates the listening socket and takes care
1761 * of all initialization in one step.
1762 *
Andy Greene92cd172011-01-19 13:11:55 +00001763 * After initialization, it returns a struct libwebsocket_context * that
1764 * represents this server. After calling, user code needs to take care
1765 * of calling libwebsocket_service() with the context pointer to get the
1766 * server's sockets serviced. This can be done in the same process context
1767 * or a forked process, or another thread,
Andy Green05464c62010-11-12 10:44:18 +00001768 *
Andy Green8f037e42010-12-19 22:13:26 +00001769 * The protocol callback functions are called for a handful of events
1770 * including http requests coming in, websocket connections becoming
1771 * established, and data arriving; it's also called periodically to allow
1772 * async transmission.
1773 *
1774 * HTTP requests are sent always to the FIRST protocol in @protocol, since
1775 * at that time websocket protocol has not been negotiated. Other
1776 * protocols after the first one never see any HTTP callack activity.
1777 *
1778 * The server created is a simple http server by default; part of the
1779 * websocket standard is upgrading this http connection to a websocket one.
1780 *
1781 * This allows the same server to provide files like scripts and favicon /
1782 * images or whatever over http and dynamic data over websockets all in
1783 * one place; they're all handled in the user callback.
Andy Greenab990e42010-10-31 12:42:52 +00001784 */
Andy Green4ea60062010-10-30 12:15:07 +01001785
Andy Greene92cd172011-01-19 13:11:55 +00001786struct libwebsocket_context *
Peter Hinz56885f32011-03-02 22:03:47 +00001787libwebsocket_create_context(int port, const char *interf,
Andy Greenb45993c2010-12-18 15:13:50 +00001788 struct libwebsocket_protocols *protocols,
Andy Greend6e09112011-03-05 16:12:15 +00001789 struct libwebsocket_extension *extensions,
Andy Green8f037e42010-12-19 22:13:26 +00001790 const char *ssl_cert_filepath,
1791 const char *ssl_private_key_filepath,
Andy Green8014b292011-01-30 20:57:25 +00001792 int gid, int uid, unsigned int options)
Andy Greenff95d7a2010-10-28 22:36:01 +01001793{
1794 int n;
Andy Green4739e5c2011-01-22 12:51:57 +00001795 int sockfd = 0;
Andy Green251f6fa2010-11-03 11:13:06 +00001796 int fd;
Andy Greenff95d7a2010-10-28 22:36:01 +01001797 struct sockaddr_in serv_addr, cli_addr;
Andy Green251f6fa2010-11-03 11:13:06 +00001798 int opt = 1;
Peter Hinz56885f32011-03-02 22:03:47 +00001799 struct libwebsocket_context *context = NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00001800 unsigned int slen;
Andy Green9659f372011-01-27 22:01:43 +00001801 char *p;
Andy Green2ac5a6f2011-01-28 10:00:18 +00001802 char hostname[1024];
Andy Green42f69142011-01-30 08:10:02 +00001803 struct hostent *he;
Andy Green0d338332011-02-12 11:57:43 +00001804 struct libwebsocket *wsi;
Andy Greenff95d7a2010-10-28 22:36:01 +01001805
Andy Green3faa9c72010-11-08 17:03:03 +00001806#ifdef LWS_OPENSSL_SUPPORT
Andy Greenf2f54d52010-11-15 22:08:00 +00001807 SSL_METHOD *method;
Andy Green3faa9c72010-11-08 17:03:03 +00001808 char ssl_err_buf[512];
Andy Green3faa9c72010-11-08 17:03:03 +00001809#endif
1810
Peter Hinz56885f32011-03-02 22:03:47 +00001811#ifdef _WIN32
1812 {
1813 WORD wVersionRequested;
1814 WSADATA wsaData;
1815 int err;
1816
1817 /* Use the MAKEWORD(lowbyte, highbyte) macro from Windef.h */
1818 wVersionRequested = MAKEWORD(2, 2);
1819
1820 err = WSAStartup(wVersionRequested, &wsaData);
1821 if (err != 0) {
1822 /* Tell the user that we could not find a usable */
1823 /* Winsock DLL. */
1824 fprintf(stderr, "WSAStartup failed with error: %d\n",
1825 err);
1826 return NULL;
1827 }
1828 }
1829#endif
1830
1831
1832 context = malloc(sizeof(struct libwebsocket_context));
1833 if (!context) {
Andy Green90c7cbc2011-01-27 06:26:52 +00001834 fprintf(stderr, "No memory for websocket context\n");
1835 return NULL;
1836 }
Peter Hinz56885f32011-03-02 22:03:47 +00001837 context->protocols = protocols;
1838 context->listen_port = port;
1839 context->http_proxy_port = 0;
1840 context->http_proxy_address[0] = '\0';
1841 context->options = options;
1842 context->fds_count = 0;
Andy Greend6e09112011-03-05 16:12:15 +00001843 context->extensions = extensions;
Andy Green9659f372011-01-27 22:01:43 +00001844
Peter Hinz56885f32011-03-02 22:03:47 +00001845#ifdef WIN32
1846 context->fd_random = 0;
1847#else
1848 context->fd_random = open(SYSTEM_RANDOM_FILEPATH, O_RDONLY);
1849 if (context->fd_random < 0) {
Andy Green44eee682011-02-10 09:32:24 +00001850 fprintf(stderr, "Unable to open random device %s %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001851 SYSTEM_RANDOM_FILEPATH, context->fd_random);
Andy Green44eee682011-02-10 09:32:24 +00001852 return NULL;
1853 }
Peter Hinz56885f32011-03-02 22:03:47 +00001854#endif
Andy Green44eee682011-02-10 09:32:24 +00001855
Peter Hinz56885f32011-03-02 22:03:47 +00001856#ifdef LWS_OPENSSL_SUPPORT
1857 context->use_ssl = 0;
1858 context->ssl_ctx = NULL;
1859 context->ssl_client_ctx = NULL;
Andy Green2e24da02011-03-05 16:12:04 +00001860 openssl_websocket_private_data_index = 0;
Peter Hinz56885f32011-03-02 22:03:47 +00001861#endif
Andy Green2ac5a6f2011-01-28 10:00:18 +00001862 /* find canonical hostname */
1863
1864 hostname[(sizeof hostname) - 1] = '\0';
1865 gethostname(hostname, (sizeof hostname) - 1);
1866 he = gethostbyname(hostname);
Darin Willitsc19456f2011-02-14 17:52:39 +00001867 if (he) {
Peter Hinz56885f32011-03-02 22:03:47 +00001868 strncpy(context->canonical_hostname, he->h_name,
1869 sizeof context->canonical_hostname - 1);
1870 context->canonical_hostname[
1871 sizeof context->canonical_hostname - 1] = '\0';
Darin Willitsc19456f2011-02-14 17:52:39 +00001872 } else
Peter Hinz56885f32011-03-02 22:03:47 +00001873 strncpy(context->canonical_hostname, hostname,
1874 sizeof context->canonical_hostname - 1);
Andy Green2ac5a6f2011-01-28 10:00:18 +00001875
Andy Green9659f372011-01-27 22:01:43 +00001876 /* split the proxy ads:port if given */
1877
1878 p = getenv("http_proxy");
1879 if (p) {
Peter Hinz56885f32011-03-02 22:03:47 +00001880 strncpy(context->http_proxy_address, p,
1881 sizeof context->http_proxy_address - 1);
1882 context->http_proxy_address[
1883 sizeof context->http_proxy_address - 1] = '\0';
Andy Green9659f372011-01-27 22:01:43 +00001884
Peter Hinz56885f32011-03-02 22:03:47 +00001885 p = strchr(context->http_proxy_address, ':');
Andy Green9659f372011-01-27 22:01:43 +00001886 if (p == NULL) {
1887 fprintf(stderr, "http_proxy needs to be ads:port\n");
1888 return NULL;
1889 }
1890 *p = '\0';
Peter Hinz56885f32011-03-02 22:03:47 +00001891 context->http_proxy_port = atoi(p + 1);
Andy Green9659f372011-01-27 22:01:43 +00001892
1893 fprintf(stderr, "Using proxy %s:%u\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001894 context->http_proxy_address,
1895 context->http_proxy_port);
Andy Green9659f372011-01-27 22:01:43 +00001896 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001897
1898 if (port) {
1899
Andy Green3faa9c72010-11-08 17:03:03 +00001900#ifdef LWS_OPENSSL_SUPPORT
Peter Hinz56885f32011-03-02 22:03:47 +00001901 context->use_ssl = ssl_cert_filepath != NULL &&
Andy Green90c7cbc2011-01-27 06:26:52 +00001902 ssl_private_key_filepath != NULL;
Peter Hinz56885f32011-03-02 22:03:47 +00001903 if (context->use_ssl)
Andy Green90c7cbc2011-01-27 06:26:52 +00001904 fprintf(stderr, " Compiled with SSL support, "
1905 "using it\n");
1906 else
1907 fprintf(stderr, " Compiled with SSL support, "
1908 "not using it\n");
Andy Green3faa9c72010-11-08 17:03:03 +00001909
Andy Green90c7cbc2011-01-27 06:26:52 +00001910#else
1911 if (ssl_cert_filepath != NULL &&
1912 ssl_private_key_filepath != NULL) {
1913 fprintf(stderr, " Not compiled for OpenSSl support!\n");
Andy Greene92cd172011-01-19 13:11:55 +00001914 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001915 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001916 fprintf(stderr, " Compiled without SSL support, "
1917 "serving unencrypted\n");
1918#endif
1919 }
1920
1921 /* ignore SIGPIPE */
Peter Hinz56885f32011-03-02 22:03:47 +00001922#ifdef WIN32
1923#else
Andy Green90c7cbc2011-01-27 06:26:52 +00001924 signal(SIGPIPE, sigpipe_handler);
Peter Hinz56885f32011-03-02 22:03:47 +00001925#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00001926
1927
1928#ifdef LWS_OPENSSL_SUPPORT
1929
1930 /* basic openssl init */
1931
1932 SSL_library_init();
1933
1934 OpenSSL_add_all_algorithms();
1935 SSL_load_error_strings();
1936
Andy Green2e24da02011-03-05 16:12:04 +00001937 openssl_websocket_private_data_index =
Andy Green6901cb32011-02-21 08:06:47 +00001938 SSL_get_ex_new_index(0, "libwebsockets", NULL, NULL, NULL);
1939
Andy Green90c7cbc2011-01-27 06:26:52 +00001940 /*
1941 * Firefox insists on SSLv23 not SSLv3
1942 * Konq disables SSLv2 by default now, SSLv23 works
1943 */
1944
1945 method = (SSL_METHOD *)SSLv23_server_method();
1946 if (!method) {
1947 fprintf(stderr, "problem creating ssl method: %s\n",
1948 ERR_error_string(ERR_get_error(), ssl_err_buf));
1949 return NULL;
1950 }
Peter Hinz56885f32011-03-02 22:03:47 +00001951 context->ssl_ctx = SSL_CTX_new(method); /* create context */
1952 if (!context->ssl_ctx) {
Andy Green90c7cbc2011-01-27 06:26:52 +00001953 fprintf(stderr, "problem creating ssl context: %s\n",
1954 ERR_error_string(ERR_get_error(), ssl_err_buf));
1955 return NULL;
1956 }
1957
1958 /* client context */
Peter Hinz56885f32011-03-02 22:03:47 +00001959 if (port == CONTEXT_PORT_NO_LISTEN)
1960 {
1961 method = (SSL_METHOD *)SSLv23_client_method();
1962 if (!method) {
1963 fprintf(stderr, "problem creating ssl method: %s\n",
1964 ERR_error_string(ERR_get_error(), ssl_err_buf));
1965 return NULL;
1966 }
1967 /* create context */
1968 context->ssl_client_ctx = SSL_CTX_new(method);
1969 if (!context->ssl_client_ctx) {
1970 fprintf(stderr, "problem creating ssl context: %s\n",
1971 ERR_error_string(ERR_get_error(), ssl_err_buf));
1972 return NULL;
1973 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001974
Peter Hinz56885f32011-03-02 22:03:47 +00001975 /* openssl init for cert verification (for client sockets) */
Andy Green90c7cbc2011-01-27 06:26:52 +00001976
Peter Hinz56885f32011-03-02 22:03:47 +00001977 if (!SSL_CTX_load_verify_locations(
1978 context->ssl_client_ctx, NULL,
1979 LWS_OPENSSL_CLIENT_CERTS))
1980 fprintf(stderr,
1981 "Unable to load SSL Client certs from %s "
1982 "(set by --with-client-cert-dir= in configure) -- "
1983 " client ssl isn't going to work",
Andy Green90c7cbc2011-01-27 06:26:52 +00001984 LWS_OPENSSL_CLIENT_CERTS);
Peter Hinz56885f32011-03-02 22:03:47 +00001985
1986 /*
1987 * callback allowing user code to load extra verification certs
1988 * helping the client to verify server identity
1989 */
1990
1991 context->protocols[0].callback(context, NULL,
1992 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS,
1993 context->ssl_client_ctx, NULL, 0);
Andy Green90c7cbc2011-01-27 06:26:52 +00001994 }
Andy Greenc6bf2c22011-02-20 11:10:47 +00001995 /* as a server, are we requiring clients to identify themselves? */
1996
1997 if (options & LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT) {
1998
1999 /* absolutely require the client cert */
2000
Peter Hinz56885f32011-03-02 22:03:47 +00002001 SSL_CTX_set_verify(context->ssl_ctx,
Andy Green6901cb32011-02-21 08:06:47 +00002002 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
2003 OpenSSL_verify_callback);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002004
2005 /*
2006 * give user code a chance to load certs into the server
2007 * allowing it to verify incoming client certs
2008 */
2009
Peter Hinz56885f32011-03-02 22:03:47 +00002010 context->protocols[0].callback(context, NULL,
Andy Greenc6bf2c22011-02-20 11:10:47 +00002011 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS,
Peter Hinz56885f32011-03-02 22:03:47 +00002012 context->ssl_ctx, NULL, 0);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002013 }
2014
Peter Hinz56885f32011-03-02 22:03:47 +00002015 if (context->use_ssl) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002016
2017 /* openssl init for server sockets */
2018
Andy Green3faa9c72010-11-08 17:03:03 +00002019 /* set the local certificate from CertFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002020 n = SSL_CTX_use_certificate_file(context->ssl_ctx,
Andy Green3faa9c72010-11-08 17:03:03 +00002021 ssl_cert_filepath, SSL_FILETYPE_PEM);
2022 if (n != 1) {
2023 fprintf(stderr, "problem getting cert '%s': %s\n",
2024 ssl_cert_filepath,
2025 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00002026 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002027 }
2028 /* set the private key from KeyFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002029 if (SSL_CTX_use_PrivateKey_file(context->ssl_ctx,
2030 ssl_private_key_filepath, SSL_FILETYPE_PEM) != 1) {
Andy Green018d8eb2010-11-08 21:04:23 +00002031 fprintf(stderr, "ssl problem getting key '%s': %s\n",
2032 ssl_private_key_filepath,
2033 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00002034 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002035 }
2036 /* verify private key */
Peter Hinz56885f32011-03-02 22:03:47 +00002037 if (!SSL_CTX_check_private_key(context->ssl_ctx)) {
Andy Green018d8eb2010-11-08 21:04:23 +00002038 fprintf(stderr, "Private SSL key doesn't match cert\n");
Andy Greene92cd172011-01-19 13:11:55 +00002039 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002040 }
2041
2042 /* SSL is happy and has a cert it's content with */
2043 }
2044#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002045
Andy Greendf736162011-01-18 15:39:02 +00002046 /* selftest */
2047
2048 if (lws_b64_selftest())
Andy Greene92cd172011-01-19 13:11:55 +00002049 return NULL;
Andy Greendf736162011-01-18 15:39:02 +00002050
Andy Green0d338332011-02-12 11:57:43 +00002051 /* fd hashtable init */
2052
2053 for (n = 0; n < FD_HASHTABLE_MODULUS; n++)
Peter Hinz56885f32011-03-02 22:03:47 +00002054 context->fd_hashtable[n].length = 0;
Andy Green0d338332011-02-12 11:57:43 +00002055
Andy Greenb45993c2010-12-18 15:13:50 +00002056 /* set up our external listening socket we serve on */
Andy Green8f037e42010-12-19 22:13:26 +00002057
Andy Green4739e5c2011-01-22 12:51:57 +00002058 if (port) {
Andy Green8f037e42010-12-19 22:13:26 +00002059
Andy Green4739e5c2011-01-22 12:51:57 +00002060 sockfd = socket(AF_INET, SOCK_STREAM, 0);
2061 if (sockfd < 0) {
2062 fprintf(stderr, "ERROR opening socket");
2063 return NULL;
2064 }
Andy Green775c0dd2010-10-29 14:15:22 +01002065
Andy Green4739e5c2011-01-22 12:51:57 +00002066 /* allow us to restart even if old sockets in TIME_WAIT */
2067 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
Andy Greene77ddd82010-11-13 10:03:47 +00002068
Andy Green4739e5c2011-01-22 12:51:57 +00002069 bzero((char *) &serv_addr, sizeof(serv_addr));
2070 serv_addr.sin_family = AF_INET;
Peter Hinz56885f32011-03-02 22:03:47 +00002071 if (interf == NULL)
Andy Green32375b72011-02-19 08:32:53 +00002072 serv_addr.sin_addr.s_addr = INADDR_ANY;
2073 else
Peter Hinz56885f32011-03-02 22:03:47 +00002074 interface_to_sa(interf, &serv_addr,
Andy Green32375b72011-02-19 08:32:53 +00002075 sizeof(serv_addr));
Andy Green4739e5c2011-01-22 12:51:57 +00002076 serv_addr.sin_port = htons(port);
2077
2078 n = bind(sockfd, (struct sockaddr *) &serv_addr,
2079 sizeof(serv_addr));
2080 if (n < 0) {
2081 fprintf(stderr, "ERROR on binding to port %d (%d %d)\n",
Andy Green8f037e42010-12-19 22:13:26 +00002082 port, n, errno);
Andy Green4739e5c2011-01-22 12:51:57 +00002083 return NULL;
2084 }
Andy Green0d338332011-02-12 11:57:43 +00002085
2086 wsi = malloc(sizeof(struct libwebsocket));
2087 memset(wsi, 0, sizeof (struct libwebsocket));
2088 wsi->sock = sockfd;
Andy Greend6e09112011-03-05 16:12:15 +00002089 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00002090 wsi->mode = LWS_CONNMODE_SERVER_LISTENER;
Peter Hinz56885f32011-03-02 22:03:47 +00002091 insert_wsi(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002092
2093 listen(sockfd, 5);
2094 fprintf(stderr, " Listening on port %d\n", port);
2095
2096 /* list in the internal poll array */
2097
Peter Hinz56885f32011-03-02 22:03:47 +00002098 context->fds[context->fds_count].fd = sockfd;
2099 context->fds[context->fds_count++].events = POLLIN;
Andy Green3221f922011-02-12 13:14:11 +00002100
2101 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002102 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002103 LWS_CALLBACK_ADD_POLL_FD,
2104 (void *)(long)sockfd, NULL, POLLIN);
2105
Andy Green8f037e42010-12-19 22:13:26 +00002106 }
Andy Greenb45993c2010-12-18 15:13:50 +00002107
Andy Greene77ddd82010-11-13 10:03:47 +00002108 /* drop any root privs for this process */
Peter Hinz56885f32011-03-02 22:03:47 +00002109#ifdef WIN32
2110#else
Andy Green3faa9c72010-11-08 17:03:03 +00002111 if (gid != -1)
2112 if (setgid(gid))
2113 fprintf(stderr, "setgid: %s\n", strerror(errno));
2114 if (uid != -1)
2115 if (setuid(uid))
2116 fprintf(stderr, "setuid: %s\n", strerror(errno));
Peter Hinz56885f32011-03-02 22:03:47 +00002117#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002118
2119 /* set up our internal broadcast trigger sockets per-protocol */
2120
Peter Hinz56885f32011-03-02 22:03:47 +00002121 for (context->count_protocols = 0;
2122 protocols[context->count_protocols].callback;
2123 context->count_protocols++) {
2124 protocols[context->count_protocols].owning_server = context;
2125 protocols[context->count_protocols].protocol_index =
2126 context->count_protocols;
Andy Greenb45993c2010-12-18 15:13:50 +00002127
2128 fd = socket(AF_INET, SOCK_STREAM, 0);
2129 if (fd < 0) {
2130 fprintf(stderr, "ERROR opening socket");
Andy Greene92cd172011-01-19 13:11:55 +00002131 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002132 }
Andy Green8f037e42010-12-19 22:13:26 +00002133
Andy Greenb45993c2010-12-18 15:13:50 +00002134 /* allow us to restart even if old sockets in TIME_WAIT */
2135 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
2136
2137 bzero((char *) &serv_addr, sizeof(serv_addr));
2138 serv_addr.sin_family = AF_INET;
2139 serv_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
2140 serv_addr.sin_port = 0; /* pick the port for us */
2141
2142 n = bind(fd, (struct sockaddr *) &serv_addr, sizeof(serv_addr));
2143 if (n < 0) {
Andy Green8f037e42010-12-19 22:13:26 +00002144 fprintf(stderr, "ERROR on binding to port %d (%d %d)\n",
Andy Greenb45993c2010-12-18 15:13:50 +00002145 port, n, errno);
Andy Greene92cd172011-01-19 13:11:55 +00002146 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002147 }
2148
2149 slen = sizeof cli_addr;
2150 n = getsockname(fd, (struct sockaddr *)&cli_addr, &slen);
2151 if (n < 0) {
2152 fprintf(stderr, "getsockname failed\n");
Andy Greene92cd172011-01-19 13:11:55 +00002153 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002154 }
Peter Hinz56885f32011-03-02 22:03:47 +00002155 protocols[context->count_protocols].broadcast_socket_port =
Andy Greenb45993c2010-12-18 15:13:50 +00002156 ntohs(cli_addr.sin_port);
2157 listen(fd, 5);
2158
2159 debug(" Protocol %s broadcast socket %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002160 protocols[context->count_protocols].name,
Andy Greenb45993c2010-12-18 15:13:50 +00002161 ntohs(cli_addr.sin_port));
2162
Andy Green0d338332011-02-12 11:57:43 +00002163 /* dummy wsi per broadcast proxy socket */
2164
2165 wsi = malloc(sizeof(struct libwebsocket));
2166 memset(wsi, 0, sizeof (struct libwebsocket));
2167 wsi->sock = fd;
2168 wsi->mode = LWS_CONNMODE_BROADCAST_PROXY_LISTENER;
Andy Greend6e09112011-03-05 16:12:15 +00002169 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00002170 /* note which protocol we are proxying */
Peter Hinz56885f32011-03-02 22:03:47 +00002171 wsi->protocol_index_for_broadcast_proxy =
2172 context->count_protocols;
2173 insert_wsi(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002174
2175 /* list in internal poll array */
2176
Peter Hinz56885f32011-03-02 22:03:47 +00002177 context->fds[context->fds_count].fd = fd;
2178 context->fds[context->fds_count].events = POLLIN;
2179 context->fds[context->fds_count].revents = 0;
2180 context->fds_count++;
Andy Green3221f922011-02-12 13:14:11 +00002181
2182 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002183 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002184 LWS_CALLBACK_ADD_POLL_FD,
2185 (void *)(long)fd, NULL, POLLIN);
Andy Greenb45993c2010-12-18 15:13:50 +00002186 }
2187
Peter Hinz56885f32011-03-02 22:03:47 +00002188 return context;
Andy Greene92cd172011-01-19 13:11:55 +00002189}
Andy Greenb45993c2010-12-18 15:13:50 +00002190
Andy Green4739e5c2011-01-22 12:51:57 +00002191
Andy Greened11a022011-01-20 10:23:50 +00002192#ifndef LWS_NO_FORK
2193
Andy Greene92cd172011-01-19 13:11:55 +00002194/**
2195 * libwebsockets_fork_service_loop() - Optional helper function forks off
2196 * a process for the websocket server loop.
Andy Green6964bb52011-01-23 16:50:33 +00002197 * You don't have to use this but if not, you
2198 * have to make sure you are calling
2199 * libwebsocket_service periodically to service
2200 * the websocket traffic
Peter Hinz56885f32011-03-02 22:03:47 +00002201 * @context: server context returned by creation function
Andy Greene92cd172011-01-19 13:11:55 +00002202 */
Andy Greenb45993c2010-12-18 15:13:50 +00002203
Andy Greene92cd172011-01-19 13:11:55 +00002204int
Peter Hinz56885f32011-03-02 22:03:47 +00002205libwebsockets_fork_service_loop(struct libwebsocket_context *context)
Andy Greene92cd172011-01-19 13:11:55 +00002206{
Andy Greene92cd172011-01-19 13:11:55 +00002207 int fd;
2208 struct sockaddr_in cli_addr;
2209 int n;
Andy Green3221f922011-02-12 13:14:11 +00002210 int p;
Andy Greenb45993c2010-12-18 15:13:50 +00002211
Andy Greened11a022011-01-20 10:23:50 +00002212 n = fork();
2213 if (n < 0)
2214 return n;
2215
2216 if (!n) {
2217
2218 /* main process context */
2219
Andy Green3221f922011-02-12 13:14:11 +00002220 /*
2221 * set up the proxy sockets to allow broadcast from
2222 * service process context
2223 */
2224
Peter Hinz56885f32011-03-02 22:03:47 +00002225 for (p = 0; p < context->count_protocols; p++) {
Andy Greened11a022011-01-20 10:23:50 +00002226 fd = socket(AF_INET, SOCK_STREAM, 0);
2227 if (fd < 0) {
2228 fprintf(stderr, "Unable to create socket\n");
2229 return -1;
2230 }
2231 cli_addr.sin_family = AF_INET;
2232 cli_addr.sin_port = htons(
Peter Hinz56885f32011-03-02 22:03:47 +00002233 context->protocols[p].broadcast_socket_port);
Andy Greened11a022011-01-20 10:23:50 +00002234 cli_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
2235 n = connect(fd, (struct sockaddr *)&cli_addr,
2236 sizeof cli_addr);
2237 if (n < 0) {
2238 fprintf(stderr, "Unable to connect to "
2239 "broadcast socket %d, %s\n",
Andy Green3221f922011-02-12 13:14:11 +00002240 n, strerror(errno));
Andy Greened11a022011-01-20 10:23:50 +00002241 return -1;
2242 }
2243
Peter Hinz56885f32011-03-02 22:03:47 +00002244 context->protocols[p].broadcast_socket_user_fd = fd;
Andy Greened11a022011-01-20 10:23:50 +00002245 }
2246
Andy Greene92cd172011-01-19 13:11:55 +00002247 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +00002248 }
2249
2250 /* we want a SIGHUP when our parent goes down */
2251 prctl(PR_SET_PDEATHSIG, SIGHUP);
2252
2253 /* in this forked process, sit and service websocket connections */
Andy Green8f037e42010-12-19 22:13:26 +00002254
Andy Greene92cd172011-01-19 13:11:55 +00002255 while (1)
Peter Hinz56885f32011-03-02 22:03:47 +00002256 if (libwebsocket_service(context, 1000))
Andy Greene92cd172011-01-19 13:11:55 +00002257 return -1;
Andy Green8f037e42010-12-19 22:13:26 +00002258
Andy Green251f6fa2010-11-03 11:13:06 +00002259 return 0;
Andy Greenff95d7a2010-10-28 22:36:01 +01002260}
2261
Andy Greened11a022011-01-20 10:23:50 +00002262#endif
2263
Andy Greenb45993c2010-12-18 15:13:50 +00002264/**
2265 * libwebsockets_get_protocol() - Returns a protocol pointer from a websocket
Andy Green8f037e42010-12-19 22:13:26 +00002266 * connection.
Andy Greenb45993c2010-12-18 15:13:50 +00002267 * @wsi: pointer to struct websocket you want to know the protocol of
2268 *
Andy Green8f037e42010-12-19 22:13:26 +00002269 *
2270 * This is useful to get the protocol to broadcast back to from inside
Andy Greenb45993c2010-12-18 15:13:50 +00002271 * the callback.
2272 */
Andy Greenab990e42010-10-31 12:42:52 +00002273
Andy Greenb45993c2010-12-18 15:13:50 +00002274const struct libwebsocket_protocols *
2275libwebsockets_get_protocol(struct libwebsocket *wsi)
2276{
2277 return wsi->protocol;
2278}
2279
2280/**
Andy Greene92cd172011-01-19 13:11:55 +00002281 * libwebsockets_broadcast() - Sends a buffer to the callback for all active
Andy Green8f037e42010-12-19 22:13:26 +00002282 * connections of the given protocol.
Andy Greenb45993c2010-12-18 15:13:50 +00002283 * @protocol: pointer to the protocol you will broadcast to all members of
2284 * @buf: buffer containing the data to be broadcase. NOTE: this has to be
Andy Green8f037e42010-12-19 22:13:26 +00002285 * allocated with LWS_SEND_BUFFER_PRE_PADDING valid bytes before
2286 * the pointer and LWS_SEND_BUFFER_POST_PADDING afterwards in the
2287 * case you are calling this function from callback context.
Andy Greenb45993c2010-12-18 15:13:50 +00002288 * @len: length of payload data in buf, starting from buf.
Andy Green8f037e42010-12-19 22:13:26 +00002289 *
2290 * This function allows bulk sending of a packet to every connection using
Andy Greenb45993c2010-12-18 15:13:50 +00002291 * the given protocol. It does not send the data directly; instead it calls
2292 * the callback with a reason type of LWS_CALLBACK_BROADCAST. If the callback
2293 * wants to actually send the data for that connection, the callback itself
2294 * should call libwebsocket_write().
2295 *
2296 * libwebsockets_broadcast() can be called from another fork context without
2297 * having to take any care about data visibility between the processes, it'll
2298 * "just work".
2299 */
2300
2301
2302int
Andy Green8f037e42010-12-19 22:13:26 +00002303libwebsockets_broadcast(const struct libwebsocket_protocols *protocol,
Andy Greenb45993c2010-12-18 15:13:50 +00002304 unsigned char *buf, size_t len)
2305{
Peter Hinz56885f32011-03-02 22:03:47 +00002306 struct libwebsocket_context *context = protocol->owning_server;
Andy Greenb45993c2010-12-18 15:13:50 +00002307 int n;
Andy Green0d338332011-02-12 11:57:43 +00002308 int m;
2309 struct libwebsocket * wsi;
Andy Greenb45993c2010-12-18 15:13:50 +00002310
2311 if (!protocol->broadcast_socket_user_fd) {
2312 /*
Andy Greene92cd172011-01-19 13:11:55 +00002313 * We are either running unforked / flat, or we are being
2314 * called from poll thread context
Andy Greenb45993c2010-12-18 15:13:50 +00002315 * eg, from a callback. In that case don't use sockets for
2316 * broadcast IPC (since we can't open a socket connection to
2317 * a socket listening on our own thread) but directly do the
2318 * send action.
2319 *
2320 * Locking is not needed because we are by definition being
2321 * called in the poll thread context and are serialized.
2322 */
2323
Andy Green0d338332011-02-12 11:57:43 +00002324 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
Andy Greenb45993c2010-12-18 15:13:50 +00002325
Peter Hinz56885f32011-03-02 22:03:47 +00002326 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Greenb45993c2010-12-18 15:13:50 +00002327
Peter Hinz56885f32011-03-02 22:03:47 +00002328 wsi = context->fd_hashtable[n].wsi[m];
Andy Greenb45993c2010-12-18 15:13:50 +00002329
Andy Green0d338332011-02-12 11:57:43 +00002330 if (wsi->mode != LWS_CONNMODE_WS_SERVING)
2331 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00002332
Andy Green0d338332011-02-12 11:57:43 +00002333 /*
2334 * never broadcast to
2335 * non-established connections
2336 */
2337 if (wsi->state != WSI_STATE_ESTABLISHED)
2338 continue;
2339
2340 /* only broadcast to guys using
2341 * requested protocol
2342 */
2343 if (wsi->protocol != protocol)
2344 continue;
2345
Peter Hinz56885f32011-03-02 22:03:47 +00002346 wsi->protocol->callback(context, wsi,
Andy Green8f037e42010-12-19 22:13:26 +00002347 LWS_CALLBACK_BROADCAST,
Andy Green0d338332011-02-12 11:57:43 +00002348 wsi->user_space,
Andy Greenb45993c2010-12-18 15:13:50 +00002349 buf, len);
Andy Green0d338332011-02-12 11:57:43 +00002350 }
Andy Greenb45993c2010-12-18 15:13:50 +00002351 }
2352
2353 return 0;
2354 }
2355
Andy Green0ca6a172010-12-19 20:50:01 +00002356 /*
2357 * We're being called from a different process context than the server
2358 * loop. Instead of broadcasting directly, we send our
2359 * payload on a socket to do the IPC; the server process will serialize
2360 * the broadcast action in its main poll() loop.
2361 *
2362 * There's one broadcast socket listening for each protocol supported
2363 * set up when the websocket server initializes
2364 */
2365
Andy Green6964bb52011-01-23 16:50:33 +00002366 n = send(protocol->broadcast_socket_user_fd, buf, len, MSG_NOSIGNAL);
Andy Greenb45993c2010-12-18 15:13:50 +00002367
2368 return n;
2369}