blob: d4e5435e1927a7c7c31056398f484b943dfac0ed [file] [log] [blame]
Andy Green58eaa742011-03-07 17:54:06 +00001/*
Andy Greena0da8a82010-11-08 17:12:19 +00002 * libwebsockets - small server side websockets and web server implementation
Andy Green8f037e42010-12-19 22:13:26 +00003 *
Andy Greena0da8a82010-11-08 17:12:19 +00004 * Copyright (C) 2010 Andy Green <andy@warmcat.com>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation:
9 * version 2.1 of the License.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 * MA 02110-1301 USA
Andy Green05a0a7b2010-10-31 17:51:39 +000020 */
21
Andy Green7c212cc2010-11-08 20:20:42 +000022#include "private-libwebsockets.h"
Andy Greenff95d7a2010-10-28 22:36:01 +010023
Peter Hinz56885f32011-03-02 22:03:47 +000024#ifdef WIN32
25
26#else
27#include <ifaddrs.h>
Andy Green7627af52011-03-09 15:13:52 +000028#include <sys/un.h>
Peter Hinz56885f32011-03-02 22:03:47 +000029#endif
Andy Green2e24da02011-03-05 16:12:04 +000030
31#ifdef LWS_OPENSSL_SUPPORT
32int openssl_websocket_private_data_index;
33#endif
34
Andy Greenbe93fef2011-02-14 20:25:43 +000035/*
36 * In-place str to lower case
37 */
38
39static void
40strtolower(char *s)
41{
42 while (*s) {
43 *s = tolower(*s);
44 s++;
45 }
46}
47
Andy Green0d338332011-02-12 11:57:43 +000048/* file descriptor hash management */
49
50struct libwebsocket *
Peter Hinz56885f32011-03-02 22:03:47 +000051wsi_from_fd(struct libwebsocket_context *context, int fd)
Andy Green0d338332011-02-12 11:57:43 +000052{
53 int h = LWS_FD_HASH(fd);
54 int n = 0;
55
Peter Hinz56885f32011-03-02 22:03:47 +000056 for (n = 0; n < context->fd_hashtable[h].length; n++)
57 if (context->fd_hashtable[h].wsi[n]->sock == fd)
58 return context->fd_hashtable[h].wsi[n];
Andy Green0d338332011-02-12 11:57:43 +000059
60 return NULL;
61}
62
63int
Peter Hinz56885f32011-03-02 22:03:47 +000064insert_wsi(struct libwebsocket_context *context, struct libwebsocket *wsi)
Andy Green0d338332011-02-12 11:57:43 +000065{
66 int h = LWS_FD_HASH(wsi->sock);
67
Peter Hinz56885f32011-03-02 22:03:47 +000068 if (context->fd_hashtable[h].length == MAX_CLIENTS - 1) {
Andy Green0d338332011-02-12 11:57:43 +000069 fprintf(stderr, "hash table overflow\n");
70 return 1;
71 }
72
Peter Hinz56885f32011-03-02 22:03:47 +000073 context->fd_hashtable[h].wsi[context->fd_hashtable[h].length++] = wsi;
Andy Green0d338332011-02-12 11:57:43 +000074
75 return 0;
76}
77
78int
Peter Hinz56885f32011-03-02 22:03:47 +000079delete_from_fd(struct libwebsocket_context *context, int fd)
Andy Green0d338332011-02-12 11:57:43 +000080{
81 int h = LWS_FD_HASH(fd);
82 int n = 0;
83
Peter Hinz56885f32011-03-02 22:03:47 +000084 for (n = 0; n < context->fd_hashtable[h].length; n++)
85 if (context->fd_hashtable[h].wsi[n]->sock == fd) {
86 while (n < context->fd_hashtable[h].length) {
87 context->fd_hashtable[h].wsi[n] =
88 context->fd_hashtable[h].wsi[n + 1];
Andy Green0d338332011-02-12 11:57:43 +000089 n++;
90 }
Peter Hinz56885f32011-03-02 22:03:47 +000091 context->fd_hashtable[h].length--;
Andy Green0d338332011-02-12 11:57:43 +000092
93 return 0;
94 }
95
96 fprintf(stderr, "Failed to find fd %d requested for "
97 "delete in hashtable\n", fd);
98 return 1;
99}
100
Andy Green1f9bf522011-02-14 21:14:37 +0000101#ifdef LWS_OPENSSL_SUPPORT
102static void
103libwebsockets_decode_ssl_error(void)
104{
105 char buf[256];
106 u_long err;
107
108 while ((err = ERR_get_error()) != 0) {
109 ERR_error_string_n(err, buf, sizeof(buf));
110 fprintf(stderr, "*** %s\n", buf);
111 }
112}
113#endif
Andy Green0d338332011-02-12 11:57:43 +0000114
Andy Green32375b72011-02-19 08:32:53 +0000115
116static int
117interface_to_sa(const char* ifname, struct sockaddr_in *addr, size_t addrlen)
118{
119 int rc = -1;
Peter Hinz56885f32011-03-02 22:03:47 +0000120#ifdef WIN32
121 // TODO
122#else
Andy Green32375b72011-02-19 08:32:53 +0000123 struct ifaddrs *ifr;
124 struct ifaddrs *ifc;
125 struct sockaddr_in *sin;
126
127 getifaddrs(&ifr);
128 for (ifc = ifr; ifc != NULL; ifc = ifc->ifa_next) {
129 if (strcmp(ifc->ifa_name, ifname))
130 continue;
131 if (ifc->ifa_addr == NULL)
132 continue;
133 sin = (struct sockaddr_in *)ifc->ifa_addr;
134 if (sin->sin_family != AF_INET)
135 continue;
136 memcpy(addr, sin, addrlen);
137 rc = 0;
138 }
139
140 freeifaddrs(ifr);
Peter Hinz56885f32011-03-02 22:03:47 +0000141#endif
Andy Green32375b72011-02-19 08:32:53 +0000142 return rc;
143}
144
Andy Green8f037e42010-12-19 22:13:26 +0000145void
Peter Hinz56885f32011-03-02 22:03:47 +0000146libwebsocket_close_and_free_session(struct libwebsocket_context *context,
Andy Green687b0182011-02-26 11:04:01 +0000147 struct libwebsocket *wsi, enum lws_close_status reason)
Andy Green251f6fa2010-11-03 11:13:06 +0000148{
Andy Greenb45993c2010-12-18 15:13:50 +0000149 int n;
Andy Green62c54d22011-02-14 09:14:25 +0000150 int old_state;
Andy Green5e1fa172011-02-10 09:07:05 +0000151 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 2 +
152 LWS_SEND_BUFFER_POST_PADDING];
Andy Greenc44159f2011-03-07 07:08:18 +0000153 int ret;
154 int m;
155 struct lws_tokens eff_buf;
Andy Greenb45993c2010-12-18 15:13:50 +0000156
Andy Green4b6fbe12011-02-14 08:03:48 +0000157 if (!wsi)
Andy Greenb45993c2010-12-18 15:13:50 +0000158 return;
159
Andy Green62c54d22011-02-14 09:14:25 +0000160 old_state = wsi->state;
Andy Green251f6fa2010-11-03 11:13:06 +0000161
Andy Green62c54d22011-02-14 09:14:25 +0000162 if (old_state == WSI_STATE_DEAD_SOCKET)
Andy Green5e1fa172011-02-10 09:07:05 +0000163 return;
164
Andy Greenda527df2011-03-07 07:08:12 +0000165 wsi->close_reason = reason;
166
167 /*
Andy Greenc44159f2011-03-07 07:08:18 +0000168 * flush any tx pending from extensions, since we may send close packet
169 * if there are problems with send, just nuke the connection
170 */
171
172 ret = 1;
173 while (ret == 1) {
174
175 /* default to nobody has more to spill */
176
177 ret = 0;
178 eff_buf.token = NULL;
179 eff_buf.token_len = 0;
180
181 /* show every extension the new incoming data */
182
183 for (n = 0; n < wsi->count_active_extensions; n++) {
184 m = wsi->active_extensions[n]->callback(
185 wsi->protocol->owning_server, wsi,
186 LWS_EXT_CALLBACK_FLUSH_PENDING_TX,
187 wsi->active_extensions_user[n], &eff_buf, 0);
188 if (m < 0) {
189 fprintf(stderr, "Extension reports "
190 "fatal error\n");
191 goto just_kill_connection;
192 }
193 if (m)
194 /*
195 * at least one extension told us he has more
196 * to spill, so we will go around again after
197 */
198 ret = 1;
199 }
200
201 /* assuming they left us something to send, send it */
202
203 if (eff_buf.token_len)
204 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
205 eff_buf.token_len))
206 goto just_kill_connection;
207 }
208
209 /*
Andy Greenda527df2011-03-07 07:08:12 +0000210 * signal we are closing, libsocket_write will
211 * add any necessary version-specific stuff. If the write fails,
212 * no worries we are closing anyway. If we didn't initiate this
213 * close, then our state has been changed to
214 * WSI_STATE_RETURNED_CLOSE_ALREADY and we will skip this.
215 *
216 * Likewise if it's a second call to close this connection after we
217 * sent the close indication to the peer already, we are in state
218 * WSI_STATE_AWAITING_CLOSE_ACK and will skip doing this a second time.
219 */
220
221 if (old_state == WSI_STATE_ESTABLISHED &&
222 reason != LWS_CLOSE_STATUS_NOSTATUS) {
223 n = libwebsocket_write(wsi, &buf[LWS_SEND_BUFFER_PRE_PADDING],
224 0, LWS_WRITE_CLOSE);
225 if (!n) {
226 /*
227 * we have sent a nice protocol level indication we
228 * now wish to close, we should not send anything more
229 */
230
231 wsi->state = WSI_STATE_AWAITING_CLOSE_ACK;
232
233 /* and we should wait for a reply for a bit */
234
235 libwebsocket_set_timeout(wsi,
236 PENDING_TIMEOUT_CLOSE_ACK, 5);
237
238 fprintf(stderr, "sent close indication, awaiting ack\n");
239
240 return;
241 }
242
243 /* else, the send failed and we should just hang up */
244 }
245
Andy Greenc44159f2011-03-07 07:08:18 +0000246just_kill_connection:
Andy Greenda527df2011-03-07 07:08:12 +0000247 /*
248 * we won't be servicing or receiving anything further from this guy
249 * remove this fd from wsi mapping hashtable
250 */
Andy Green4b6fbe12011-02-14 08:03:48 +0000251
Peter Hinz56885f32011-03-02 22:03:47 +0000252 delete_from_fd(context, wsi->sock);
Andy Green4b6fbe12011-02-14 08:03:48 +0000253
254 /* delete it from the internal poll list if still present */
255
Peter Hinz56885f32011-03-02 22:03:47 +0000256 for (n = 0; n < context->fds_count; n++) {
257 if (context->fds[n].fd != wsi->sock)
Andy Green4b6fbe12011-02-14 08:03:48 +0000258 continue;
Peter Hinz56885f32011-03-02 22:03:47 +0000259 while (n < context->fds_count - 1) {
260 context->fds[n] = context->fds[n + 1];
Andy Green4b6fbe12011-02-14 08:03:48 +0000261 n++;
262 }
Peter Hinz56885f32011-03-02 22:03:47 +0000263 context->fds_count--;
Andy Green4b6fbe12011-02-14 08:03:48 +0000264 /* we only have to deal with one */
Peter Hinz56885f32011-03-02 22:03:47 +0000265 n = context->fds_count;
Andy Green4b6fbe12011-02-14 08:03:48 +0000266 }
267
268 /* remove also from external POLL support via protocol 0 */
269
Peter Hinz56885f32011-03-02 22:03:47 +0000270 context->protocols[0].callback(context, wsi,
Andy Green4b6fbe12011-02-14 08:03:48 +0000271 LWS_CALLBACK_DEL_POLL_FD, (void *)(long)wsi->sock, NULL, 0);
272
Andy Green251f6fa2010-11-03 11:13:06 +0000273 wsi->state = WSI_STATE_DEAD_SOCKET;
274
Andy Green4b6fbe12011-02-14 08:03:48 +0000275 /* tell the user it's all over for this guy */
276
Andy Greend4302732011-02-28 07:45:29 +0000277 if (wsi->protocol && wsi->protocol->callback &&
278 old_state == WSI_STATE_ESTABLISHED)
Peter Hinz56885f32011-03-02 22:03:47 +0000279 wsi->protocol->callback(context, wsi, LWS_CALLBACK_CLOSED,
Andy Greene77ddd82010-11-13 10:03:47 +0000280 wsi->user_space, NULL, 0);
Andy Green251f6fa2010-11-03 11:13:06 +0000281
Andy Greenef660a92011-03-06 10:29:38 +0000282 /* deallocate any active extension contexts */
283
284 for (n = 0; n < wsi->count_active_extensions; n++) {
285 if (!wsi->active_extensions[n]->callback)
286 continue;
287
288 wsi->active_extensions[n]->callback(context, wsi,
289 LWS_EXT_CALLBACK_DESTROY,
290 wsi->active_extensions_user[n], NULL, 0);
291
292 free(wsi->active_extensions_user[n]);
293 }
294
295 /* free up his parsing allocations */
Andy Green4b6fbe12011-02-14 08:03:48 +0000296
Andy Green251f6fa2010-11-03 11:13:06 +0000297 for (n = 0; n < WSI_TOKEN_COUNT; n++)
298 if (wsi->utf8_token[n].token)
299 free(wsi->utf8_token[n].token);
300
Andy Green0ca6a172010-12-19 20:50:01 +0000301/* fprintf(stderr, "closing fd=%d\n", wsi->sock); */
Andy Green251f6fa2010-11-03 11:13:06 +0000302
Andy Green3faa9c72010-11-08 17:03:03 +0000303#ifdef LWS_OPENSSL_SUPPORT
Andy Green90c7cbc2011-01-27 06:26:52 +0000304 if (wsi->ssl) {
Andy Green3faa9c72010-11-08 17:03:03 +0000305 n = SSL_get_fd(wsi->ssl);
306 SSL_shutdown(wsi->ssl);
Peter Hinz56885f32011-03-02 22:03:47 +0000307#ifdef WIN32
308 closesocket(n);
309#else
Andy Green3faa9c72010-11-08 17:03:03 +0000310 close(n);
Peter Hinz56885f32011-03-02 22:03:47 +0000311#endif
Andy Green3faa9c72010-11-08 17:03:03 +0000312 SSL_free(wsi->ssl);
313 } else {
314#endif
315 shutdown(wsi->sock, SHUT_RDWR);
Peter Hinz56885f32011-03-02 22:03:47 +0000316#ifdef WIN32
317 closesocket(wsi->sock);
318#else
Andy Green3faa9c72010-11-08 17:03:03 +0000319 close(wsi->sock);
Peter Hinz56885f32011-03-02 22:03:47 +0000320#endif
Andy Green3faa9c72010-11-08 17:03:03 +0000321#ifdef LWS_OPENSSL_SUPPORT
322 }
323#endif
Andy Green4f3943a2010-11-12 10:44:16 +0000324 if (wsi->user_space)
325 free(wsi->user_space);
326
Andy Green251f6fa2010-11-03 11:13:06 +0000327 free(wsi);
328}
329
Andy Green07034092011-02-13 08:37:12 +0000330/**
Andy Greenf7ee5492011-02-13 09:04:21 +0000331 * libwebsockets_hangup_on_client() - Server calls to terminate client
332 * connection
Peter Hinz56885f32011-03-02 22:03:47 +0000333 * @context: libwebsockets context
Andy Greenf7ee5492011-02-13 09:04:21 +0000334 * @fd: Connection socket descriptor
335 */
336
337void
Peter Hinz56885f32011-03-02 22:03:47 +0000338libwebsockets_hangup_on_client(struct libwebsocket_context *context, int fd)
Andy Greenf7ee5492011-02-13 09:04:21 +0000339{
Peter Hinz56885f32011-03-02 22:03:47 +0000340 struct libwebsocket *wsi = wsi_from_fd(context, fd);
Andy Greenf7ee5492011-02-13 09:04:21 +0000341
342 if (wsi == NULL)
343 return;
344
Peter Hinz56885f32011-03-02 22:03:47 +0000345 libwebsocket_close_and_free_session(context, wsi,
Andy Green6da560c2011-02-26 11:06:27 +0000346 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenf7ee5492011-02-13 09:04:21 +0000347}
348
349
350/**
Andy Green07034092011-02-13 08:37:12 +0000351 * libwebsockets_get_peer_addresses() - Get client address information
352 * @fd: Connection socket descriptor
353 * @name: Buffer to take client address name
354 * @name_len: Length of client address name buffer
355 * @rip: Buffer to take client address IP qotted quad
356 * @rip_len: Length of client address IP buffer
357 *
358 * This function fills in @name and @rip with the name and IP of
359 * the client connected with socket descriptor @fd. Names may be
360 * truncated if there is not enough room. If either cannot be
361 * determined, they will be returned as valid zero-length strings.
362 */
363
364void
365libwebsockets_get_peer_addresses(int fd, char *name, int name_len,
366 char *rip, int rip_len)
367{
368 unsigned int len;
369 struct sockaddr_in sin;
370 struct hostent *host;
371 struct hostent *host1;
372 char ip[128];
Andy Greenf92def72011-03-09 15:02:20 +0000373 unsigned char *p;
Andy Green07034092011-02-13 08:37:12 +0000374 int n;
Andy Green7627af52011-03-09 15:13:52 +0000375 struct sockaddr_un *un;
Andy Green07034092011-02-13 08:37:12 +0000376
377 rip[0] = '\0';
378 name[0] = '\0';
379
380 len = sizeof sin;
381 if (getpeername(fd, (struct sockaddr *) &sin, &len) < 0) {
382 perror("getpeername");
383 return;
384 }
385
386 host = gethostbyaddr((char *) &sin.sin_addr, sizeof sin.sin_addr,
387 AF_INET);
388 if (host == NULL) {
389 perror("gethostbyaddr");
390 return;
391 }
392
393 strncpy(name, host->h_name, name_len);
394 name[name_len - 1] = '\0';
395
396 host1 = gethostbyname(host->h_name);
397 if (host1 == NULL)
398 return;
Andy Greenf92def72011-03-09 15:02:20 +0000399 p = (unsigned char *)host1;
Andy Green07034092011-02-13 08:37:12 +0000400 n = 0;
401 while (p != NULL) {
Andy Greenf92def72011-03-09 15:02:20 +0000402 p = (unsigned char *)host1->h_addr_list[n++];
Andy Green07034092011-02-13 08:37:12 +0000403 if (p == NULL)
404 continue;
Andy Green7627af52011-03-09 15:13:52 +0000405 if ((host1->h_addrtype != AF_INET) &&
406 (host1->h_addrtype != AF_LOCAL))
Andy Green07034092011-02-13 08:37:12 +0000407 continue;
408
Andy Green7627af52011-03-09 15:13:52 +0000409 if (host1->h_addrtype == AF_INET)
410 sprintf(ip, "%u.%u.%u.%u", p[0], p[1], p[2], p[3]);
411 else {
412 un = (struct sockaddr_un *)p;
413 strncpy(ip, un->sun_path, sizeof(ip) -1);
414 ip[sizeof(ip) - 1] = '\0';
415 }
Andy Green07034092011-02-13 08:37:12 +0000416 p = NULL;
417 strncpy(rip, ip, rip_len);
418 rip[rip_len - 1] = '\0';
419 }
420}
Andy Green9f990342011-02-12 11:57:45 +0000421
Peter Hinz56885f32011-03-02 22:03:47 +0000422int libwebsockets_get_random(struct libwebsocket_context *context,
423 void *buf, int len)
424{
425 int n;
426 char *p = buf;
427
428#ifdef WIN32
429 for (n = 0; n < len; n++)
430 p[n] = (unsigned char)rand();
431#else
432 n = read(context->fd_random, p, len);
433#endif
434
435 return n;
436}
437
Andy Green2836c642011-03-07 20:47:41 +0000438unsigned char *
439libwebsockets_SHA1(const unsigned char *d, size_t n, unsigned char *md)
440{
441 return SHA1(d, n, md);
442}
443
Andy Greeneeaacb32011-03-01 20:44:24 +0000444void libwebsockets_00_spaceout(char *key, int spaces, int seed)
445{
446 char *p;
Peter Hinz56885f32011-03-02 22:03:47 +0000447
Andy Greeneeaacb32011-03-01 20:44:24 +0000448 key++;
449 while (spaces--) {
450 if (*key && (seed & 1))
451 key++;
452 seed >>= 1;
Peter Hinz56885f32011-03-02 22:03:47 +0000453
Andy Greeneeaacb32011-03-01 20:44:24 +0000454 p = key + strlen(key);
455 while (p >= key) {
456 p[1] = p[0];
457 p--;
458 }
459 *key++ = ' ';
460 }
461}
462
463void libwebsockets_00_spam(char *key, int count, int seed)
464{
465 char *p;
466
467 key++;
468 while (count--) {
469
470 if (*key && (seed & 1))
471 key++;
472 seed >>= 1;
473
474 p = key + strlen(key);
475 while (p >= key) {
476 p[1] = p[0];
477 p--;
478 }
479 *key++ = 0x21 + ((seed & 0xffff) % 15);
480 /* 4 would use it up too fast.. not like it matters */
481 seed >>= 1;
482 }
483}
484
Andy Green95a7b5d2011-03-06 10:29:39 +0000485int lws_send_pipe_choked(struct libwebsocket *wsi)
486{
487 struct pollfd fds;
488
489 fds.fd = wsi->sock;
490 fds.events = POLLOUT;
491 fds.revents = 0;
492
493 if (poll(&fds, 1, 0) != 1)
494 return 1;
495
496 if ((fds.revents & POLLOUT) == 0)
497 return 1;
498
499 /* okay to send another packet without blocking */
500
501 return 0;
502}
503
Andy Green3b84c002011-03-06 13:14:42 +0000504static int
505lws_handle_POLLOUT_event(struct libwebsocket_context *context,
506 struct libwebsocket *wsi, struct pollfd *pollfd)
507{
508 struct lws_tokens eff_buf;
509 int n;
510 int ret;
511 int m;
512
513 if (!wsi->extension_data_pending)
514 goto user_service;
515
516 /*
517 * check in on the active extensions, see if they
518 * had pending stuff to spill... they need to get the
519 * first look-in otherwise sequence will be disordered
520 *
521 * NULL, zero-length eff_buf means just spill pending
522 */
523
524 ret = 1;
525 while (ret == 1) {
526
527 /* default to nobody has more to spill */
528
529 ret = 0;
530 eff_buf.token = NULL;
531 eff_buf.token_len = 0;
532
533 /* give every extension a chance to spill */
534
535 for (n = 0; n < wsi->count_active_extensions; n++) {
536 m = wsi->active_extensions[n]->callback(
537 wsi->protocol->owning_server, wsi,
538 LWS_EXT_CALLBACK_PACKET_TX_PRESEND,
539 wsi->active_extensions_user[n], &eff_buf, 0);
540 if (m < 0) {
541 fprintf(stderr, "extension reports fatal error\n");
542 return -1;
543 }
544 if (m)
545 /*
546 * at least one extension told us he has more
547 * to spill, so we will go around again after
548 */
549 ret = 1;
550 }
551
552 /* assuming they gave us something to send, send it */
553
554 if (eff_buf.token_len) {
555 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
556 eff_buf.token_len))
557 return -1;
558 } else
559 continue;
560
561 /* no extension has more to spill */
562
563 if (!ret)
564 continue;
565
566 /*
567 * There's more to spill from an extension, but we just sent
568 * something... did that leave the pipe choked?
569 */
570
571 if (!lws_send_pipe_choked(wsi))
572 /* no we could add more */
573 continue;
574
575 fprintf(stderr, "choked in POLLOUT service\n");
576
577 /*
578 * Yes, he's choked. Leave the POLLOUT masked on so we will
579 * come back here when he is unchoked. Don't call the user
580 * callback to enforce ordering of spilling, he'll get called
581 * when we come back here and there's nothing more to spill.
582 */
583
584 return 0;
585 }
586
587 wsi->extension_data_pending = 0;
588
589user_service:
590 /* one shot */
591
592 pollfd->events &= ~POLLOUT;
593
594 /* external POLL support via protocol 0 */
595 context->protocols[0].callback(context, wsi,
596 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
597 (void *)(long)wsi->sock, NULL, POLLOUT);
598
Andy Green9e4c2b62011-03-07 20:47:39 +0000599 if (wsi->mode == LWS_CONNMODE_WS_CLIENT)
600 n = LWS_CALLBACK_CLIENT_WRITEABLE;
601 else
602 n = LWS_CALLBACK_SERVER_WRITEABLE;
603
604 wsi->protocol->callback(context, wsi, n, wsi->user_space, NULL, 0);
Andy Green3b84c002011-03-06 13:14:42 +0000605
606 return 0;
607}
608
609
610
Andy Green9f990342011-02-12 11:57:45 +0000611/**
612 * libwebsocket_service_fd() - Service polled socket with something waiting
Peter Hinz56885f32011-03-02 22:03:47 +0000613 * @context: Websocket context
Andy Green9f990342011-02-12 11:57:45 +0000614 * @pollfd: The pollfd entry describing the socket fd and which events
615 * happened.
616 *
617 * This function closes any active connections and then frees the
618 * context. After calling this, any further use of the context is
619 * undefined.
620 */
621
622int
Peter Hinz56885f32011-03-02 22:03:47 +0000623libwebsocket_service_fd(struct libwebsocket_context *context,
Andy Green0d338332011-02-12 11:57:43 +0000624 struct pollfd *pollfd)
Andy Greenb45993c2010-12-18 15:13:50 +0000625{
Andy Green3b84c002011-03-06 13:14:42 +0000626 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 1 + MAX_BROADCAST_PAYLOAD +
Andy Greenb45993c2010-12-18 15:13:50 +0000627 LWS_SEND_BUFFER_POST_PADDING];
Andy Greena71eafc2011-02-14 17:59:43 +0000628 struct libwebsocket *wsi;
Andy Green0d338332011-02-12 11:57:43 +0000629 struct libwebsocket *new_wsi;
Andy Greenb45993c2010-12-18 15:13:50 +0000630 int n;
Andy Green0d338332011-02-12 11:57:43 +0000631 int m;
Andy Greenb45993c2010-12-18 15:13:50 +0000632 size_t len;
Andy Green0d338332011-02-12 11:57:43 +0000633 int accept_fd;
634 unsigned int clilen;
635 struct sockaddr_in cli_addr;
Andy Greena71eafc2011-02-14 17:59:43 +0000636 struct timeval tv;
Andy Greenbe93fef2011-02-14 20:25:43 +0000637 static const char magic_websocket_guid[] =
638 "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
639 static const char magic_websocket_04_masking_guid[] =
640 "61AC5F19-FBBA-4540-B96F-6561F1AB40A8";
641 char hash[20];
642 char pkt[1024];
643 char *p = &pkt[0];
644 const char *pc;
Andy Green2366b1c2011-03-06 13:15:31 +0000645 const char *c;
646 int more = 1;
Andy Greenbe93fef2011-02-14 20:25:43 +0000647 int okay = 0;
Andy Green2366b1c2011-03-06 13:15:31 +0000648 char ext_name[128];
Andy Green98a717c2011-03-06 13:14:15 +0000649 struct lws_tokens eff_buf;
Andy Greenc6517fa2011-03-06 13:15:29 +0000650 int ext_count = 0;
651 struct libwebsocket_extension *ext;
Andy Green6c939552011-03-08 08:56:57 +0000652 int opt = 1;
Andy Greenc6517fa2011-03-06 13:15:29 +0000653
Andy Greenbe93fef2011-02-14 20:25:43 +0000654#ifdef LWS_OPENSSL_SUPPORT
655 char ssl_err_buf[512];
656#endif
Andy Greena71eafc2011-02-14 17:59:43 +0000657 /*
658 * you can call us with pollfd = NULL to just allow the once-per-second
659 * global timeout checks; if less than a second since the last check
660 * it returns immediately then.
661 */
662
663 gettimeofday(&tv, NULL);
664
Peter Hinz56885f32011-03-02 22:03:47 +0000665 if (context->last_timeout_check_s != tv.tv_sec) {
666 context->last_timeout_check_s = tv.tv_sec;
Andy Greena71eafc2011-02-14 17:59:43 +0000667
668 /* global timeout check once per second */
669
Peter Hinz56885f32011-03-02 22:03:47 +0000670 for (n = 0; n < context->fds_count; n++) {
671 wsi = wsi_from_fd(context, context->fds[n].fd);
Andy Greena71eafc2011-02-14 17:59:43 +0000672 if (!wsi->pending_timeout)
673 continue;
674
675 /*
676 * if we went beyond the allowed time, kill the
677 * connection
678 */
679
Andy Greenda527df2011-03-07 07:08:12 +0000680 if (tv.tv_sec > wsi->pending_timeout_limit) {
681 fprintf(stderr, "TIMEDOUT WAITING\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000682 libwebsocket_close_and_free_session(context,
683 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenda527df2011-03-07 07:08:12 +0000684 }
Andy Greena71eafc2011-02-14 17:59:43 +0000685 }
686 }
687
688 /* just here for timeout management? */
689
690 if (pollfd == NULL)
691 return 0;
692
693 /* no, here to service a socket descriptor */
694
Peter Hinz56885f32011-03-02 22:03:47 +0000695 wsi = wsi_from_fd(context, pollfd->fd);
Andy Greenb45993c2010-12-18 15:13:50 +0000696
Andy Green0d338332011-02-12 11:57:43 +0000697 if (wsi == NULL)
698 return 1;
Andy Green8f037e42010-12-19 22:13:26 +0000699
Andy Green0d338332011-02-12 11:57:43 +0000700 switch (wsi->mode) {
701 case LWS_CONNMODE_SERVER_LISTENER:
702
703 /* pollin means a client has connected to us then */
704
705 if (!pollfd->revents & POLLIN)
706 break;
707
708 /* listen socket got an unencrypted connection... */
709
710 clilen = sizeof(cli_addr);
711 accept_fd = accept(pollfd->fd, (struct sockaddr *)&cli_addr,
712 &clilen);
713 if (accept_fd < 0) {
714 fprintf(stderr, "ERROR on accept");
715 break;
716 }
717
Andy Green6c939552011-03-08 08:56:57 +0000718 /* Disable Nagle */
719 opt = 1;
720 setsockopt(accept_fd, SOL_TCP, TCP_NODELAY, &opt, sizeof(opt));
721
Peter Hinz56885f32011-03-02 22:03:47 +0000722 if (context->fds_count >= MAX_CLIENTS) {
Andy Green3221f922011-02-12 13:14:11 +0000723 fprintf(stderr, "too busy to accept new client\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000724#ifdef WIN32
725 closesocket(accept_fd);
726#else
Andy Green0d338332011-02-12 11:57:43 +0000727 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +0000728#endif
Andy Green0d338332011-02-12 11:57:43 +0000729 break;
730 }
731
Andy Green07034092011-02-13 08:37:12 +0000732 /*
733 * look at who we connected to and give user code a chance
734 * to reject based on client IP. There's no protocol selected
735 * yet so we issue this to protocols[0]
736 */
737
Peter Hinz56885f32011-03-02 22:03:47 +0000738 if ((context->protocols[0].callback)(context, wsi,
Andy Green07034092011-02-13 08:37:12 +0000739 LWS_CALLBACK_FILTER_NETWORK_CONNECTION,
740 (void*)(long)accept_fd, NULL, 0)) {
741 fprintf(stderr, "Callback denied network connection\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000742#ifdef WIN32
743 closesocket(accept_fd);
744#else
Andy Green07034092011-02-13 08:37:12 +0000745 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +0000746#endif
Andy Green07034092011-02-13 08:37:12 +0000747 break;
748 }
749
Andy Green0d338332011-02-12 11:57:43 +0000750 /* accepting connection to main listener */
751
752 new_wsi = malloc(sizeof(struct libwebsocket));
753 if (new_wsi == NULL) {
754 fprintf(stderr, "Out of memory for new connection\n");
755 break;
756 }
757
758 memset(new_wsi, 0, sizeof (struct libwebsocket));
759 new_wsi->sock = accept_fd;
Andy Greend6e09112011-03-05 16:12:15 +0000760 new_wsi->count_active_extensions = 0;
Andy Greena71eafc2011-02-14 17:59:43 +0000761 new_wsi->pending_timeout = NO_PENDING_TIMEOUT;
Andy Green0d338332011-02-12 11:57:43 +0000762
763#ifdef LWS_OPENSSL_SUPPORT
764 new_wsi->ssl = NULL;
Andy Green0d338332011-02-12 11:57:43 +0000765
Peter Hinz56885f32011-03-02 22:03:47 +0000766 if (context->use_ssl) {
Andy Green0d338332011-02-12 11:57:43 +0000767
Peter Hinz56885f32011-03-02 22:03:47 +0000768 new_wsi->ssl = SSL_new(context->ssl_ctx);
Andy Green0d338332011-02-12 11:57:43 +0000769 if (new_wsi->ssl == NULL) {
770 fprintf(stderr, "SSL_new failed: %s\n",
771 ERR_error_string(SSL_get_error(
772 new_wsi->ssl, 0), NULL));
Andy Green1f9bf522011-02-14 21:14:37 +0000773 libwebsockets_decode_ssl_error();
Andy Green0d338332011-02-12 11:57:43 +0000774 free(new_wsi);
775 break;
776 }
777
778 SSL_set_fd(new_wsi->ssl, accept_fd);
779
780 n = SSL_accept(new_wsi->ssl);
781 if (n != 1) {
782 /*
783 * browsers seem to probe with various
784 * ssl params which fail then retry
785 * and succeed
786 */
787 debug("SSL_accept failed skt %u: %s\n",
788 pollfd->fd,
789 ERR_error_string(SSL_get_error(
790 new_wsi->ssl, n), NULL));
791 SSL_free(
792 new_wsi->ssl);
793 free(new_wsi);
794 break;
795 }
Andy Greenc6bf2c22011-02-20 11:10:47 +0000796
Andy Green0d338332011-02-12 11:57:43 +0000797 debug("accepted new SSL conn "
798 "port %u on fd=%d SSL ver %s\n",
799 ntohs(cli_addr.sin_port), accept_fd,
800 SSL_get_version(new_wsi->ssl));
801
802 } else
803#endif
804 debug("accepted new conn port %u on fd=%d\n",
805 ntohs(cli_addr.sin_port), accept_fd);
806
807 /* intialize the instance struct */
808
809 new_wsi->state = WSI_STATE_HTTP;
810 new_wsi->name_buffer_pos = 0;
811 new_wsi->mode = LWS_CONNMODE_WS_SERVING;
812
813 for (n = 0; n < WSI_TOKEN_COUNT; n++) {
814 new_wsi->utf8_token[n].token = NULL;
815 new_wsi->utf8_token[n].token_len = 0;
816 }
817
818 /*
819 * these can only be set once the protocol is known
820 * we set an unestablished connection's protocol pointer
821 * to the start of the supported list, so it can look
822 * for matching ones during the handshake
823 */
Peter Hinz56885f32011-03-02 22:03:47 +0000824 new_wsi->protocol = context->protocols;
Andy Green0d338332011-02-12 11:57:43 +0000825 new_wsi->user_space = NULL;
826
827 /*
828 * Default protocol is 76 / 00
829 * After 76, there's a header specified to inform which
830 * draft the client wants, when that's seen we modify
831 * the individual connection's spec revision accordingly
832 */
833 new_wsi->ietf_spec_revision = 0;
834
Peter Hinz56885f32011-03-02 22:03:47 +0000835 insert_wsi(context, new_wsi);
Andy Green0d338332011-02-12 11:57:43 +0000836
Andy Green0d338332011-02-12 11:57:43 +0000837 /*
838 * make sure NO events are seen yet on this new socket
839 * (otherwise we inherit old fds[client].revents from
840 * previous socket there and die mysteriously! )
841 */
Peter Hinz56885f32011-03-02 22:03:47 +0000842 context->fds[context->fds_count].revents = 0;
Andy Green0d338332011-02-12 11:57:43 +0000843
Peter Hinz56885f32011-03-02 22:03:47 +0000844 context->fds[context->fds_count].events = POLLIN;
845 context->fds[context->fds_count++].fd = accept_fd;
Andy Green0d338332011-02-12 11:57:43 +0000846
Andy Green3221f922011-02-12 13:14:11 +0000847 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +0000848 context->protocols[0].callback(context, new_wsi,
Andy Green3221f922011-02-12 13:14:11 +0000849 LWS_CALLBACK_ADD_POLL_FD,
850 (void *)(long)accept_fd, NULL, POLLIN);
851
Andy Green0d338332011-02-12 11:57:43 +0000852 break;
853
854 case LWS_CONNMODE_BROADCAST_PROXY_LISTENER:
855
856 /* as we are listening, POLLIN means accept() is needed */
857
858 if (!pollfd->revents & POLLIN)
859 break;
860
861 /* listen socket got an unencrypted connection... */
862
863 clilen = sizeof(cli_addr);
864 accept_fd = accept(pollfd->fd, (struct sockaddr *)&cli_addr,
865 &clilen);
866 if (accept_fd < 0) {
867 fprintf(stderr, "ERROR on accept");
868 break;
869 }
870
Peter Hinz56885f32011-03-02 22:03:47 +0000871 if (context->fds_count >= MAX_CLIENTS) {
Andy Green3221f922011-02-12 13:14:11 +0000872 fprintf(stderr, "too busy to accept new broadcast "
873 "proxy client\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000874#ifdef WIN32
875 closesocket(accept_fd);
876#else
Andy Green0d338332011-02-12 11:57:43 +0000877 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +0000878#endif
Andy Green0d338332011-02-12 11:57:43 +0000879 break;
880 }
881
882 /* create a dummy wsi for the connection and add it */
883
884 new_wsi = malloc(sizeof(struct libwebsocket));
885 memset(new_wsi, 0, sizeof (struct libwebsocket));
886 new_wsi->sock = accept_fd;
887 new_wsi->mode = LWS_CONNMODE_BROADCAST_PROXY;
888 new_wsi->state = WSI_STATE_ESTABLISHED;
Andy Greend6e09112011-03-05 16:12:15 +0000889 new_wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +0000890 /* note which protocol we are proxying */
891 new_wsi->protocol_index_for_broadcast_proxy =
892 wsi->protocol_index_for_broadcast_proxy;
Peter Hinz56885f32011-03-02 22:03:47 +0000893 insert_wsi(context, new_wsi);
Andy Green0d338332011-02-12 11:57:43 +0000894
895 /* add connected socket to internal poll array */
896
Peter Hinz56885f32011-03-02 22:03:47 +0000897 context->fds[context->fds_count].revents = 0;
898 context->fds[context->fds_count].events = POLLIN;
899 context->fds[context->fds_count++].fd = accept_fd;
Andy Green0d338332011-02-12 11:57:43 +0000900
Andy Green3221f922011-02-12 13:14:11 +0000901 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +0000902 context->protocols[0].callback(context, new_wsi,
Andy Green3221f922011-02-12 13:14:11 +0000903 LWS_CALLBACK_ADD_POLL_FD,
904 (void *)(long)accept_fd, NULL, POLLIN);
905
Andy Green0d338332011-02-12 11:57:43 +0000906 break;
907
908 case LWS_CONNMODE_BROADCAST_PROXY:
Andy Green8f037e42010-12-19 22:13:26 +0000909
Andy Greenb45993c2010-12-18 15:13:50 +0000910 /* handle session socket closed */
Andy Green8f037e42010-12-19 22:13:26 +0000911
Andy Green0d338332011-02-12 11:57:43 +0000912 if (pollfd->revents & (POLLERR | POLLHUP)) {
Andy Green8f037e42010-12-19 22:13:26 +0000913
Andy Green0d338332011-02-12 11:57:43 +0000914 debug("Session Socket %p (fd=%d) dead\n",
Timothy J Fontaineb86d64e2011-02-14 17:55:27 +0000915 (void *)wsi, pollfd->fd);
Andy Greenb45993c2010-12-18 15:13:50 +0000916
Peter Hinz56885f32011-03-02 22:03:47 +0000917 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000918 LWS_CLOSE_STATUS_NORMAL);
Andy Green4b6fbe12011-02-14 08:03:48 +0000919 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +0000920 }
Andy Green8f037e42010-12-19 22:13:26 +0000921
Andy Green3b84c002011-03-06 13:14:42 +0000922 /*
923 * either extension code with stuff to spill, or the user code,
924 * requested a callback when it was OK to write
925 */
Andy Green90c7cbc2011-01-27 06:26:52 +0000926
Andy Green3b84c002011-03-06 13:14:42 +0000927 if (pollfd->revents & POLLOUT)
928 if (lws_handle_POLLOUT_event(context, wsi, pollfd) < 0) {
929 libwebsocket_close_and_free_session(context, wsi,
930 LWS_CLOSE_STATUS_NORMAL);
931 return 1;
932 }
Andy Green90c7cbc2011-01-27 06:26:52 +0000933
Andy Greenb45993c2010-12-18 15:13:50 +0000934 /* any incoming data ready? */
935
Andy Green0d338332011-02-12 11:57:43 +0000936 if (!(pollfd->revents & POLLIN))
937 break;
Andy Greenb45993c2010-12-18 15:13:50 +0000938
Andy Green0d338332011-02-12 11:57:43 +0000939 /* get the issued broadcast payload from the socket */
Andy Greenb45993c2010-12-18 15:13:50 +0000940
Andy Green0d338332011-02-12 11:57:43 +0000941 len = read(pollfd->fd, buf + LWS_SEND_BUFFER_PRE_PADDING,
942 MAX_BROADCAST_PAYLOAD);
943 if (len < 0) {
944 fprintf(stderr, "Error reading broadcast payload\n");
Andy Green4b6fbe12011-02-14 08:03:48 +0000945 break;
Andy Green0d338332011-02-12 11:57:43 +0000946 }
Andy Greenb45993c2010-12-18 15:13:50 +0000947
Andy Green0d338332011-02-12 11:57:43 +0000948 /* broadcast it to all guys with this protocol index */
Andy Green8f037e42010-12-19 22:13:26 +0000949
Andy Green0d338332011-02-12 11:57:43 +0000950 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
Andy Green8f037e42010-12-19 22:13:26 +0000951
Peter Hinz56885f32011-03-02 22:03:47 +0000952 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Greenb45993c2010-12-18 15:13:50 +0000953
Peter Hinz56885f32011-03-02 22:03:47 +0000954 new_wsi = context->fd_hashtable[n].wsi[m];
Andy Greenb45993c2010-12-18 15:13:50 +0000955
Andy Green0d338332011-02-12 11:57:43 +0000956 /* only to clients we are serving to */
Andy Greenb45993c2010-12-18 15:13:50 +0000957
Andy Green0d338332011-02-12 11:57:43 +0000958 if (new_wsi->mode != LWS_CONNMODE_WS_SERVING)
Andy Greenb45993c2010-12-18 15:13:50 +0000959 continue;
960
961 /*
962 * never broadcast to non-established
963 * connection
964 */
965
Andy Green0d338332011-02-12 11:57:43 +0000966 if (new_wsi->state != WSI_STATE_ESTABLISHED)
Andy Green4739e5c2011-01-22 12:51:57 +0000967 continue;
968
Andy Greenb45993c2010-12-18 15:13:50 +0000969 /*
970 * only broadcast to connections using
971 * the requested protocol
972 */
973
Andy Green0d338332011-02-12 11:57:43 +0000974 if (new_wsi->protocol->protocol_index !=
975 wsi->protocol_index_for_broadcast_proxy)
Andy Greenb45993c2010-12-18 15:13:50 +0000976 continue;
977
Andy Green8f037e42010-12-19 22:13:26 +0000978 /* broadcast it to this connection */
979
Peter Hinz56885f32011-03-02 22:03:47 +0000980 new_wsi->protocol->callback(context, new_wsi,
Andy Green8f037e42010-12-19 22:13:26 +0000981 LWS_CALLBACK_BROADCAST,
Andy Green0d338332011-02-12 11:57:43 +0000982 new_wsi->user_space,
Andy Green0ca6a172010-12-19 20:50:01 +0000983 buf + LWS_SEND_BUFFER_PRE_PADDING, len);
Andy Greenb45993c2010-12-18 15:13:50 +0000984 }
Andy Green0d338332011-02-12 11:57:43 +0000985 }
986 break;
Andy Greenb45993c2010-12-18 15:13:50 +0000987
Andy Greenbe93fef2011-02-14 20:25:43 +0000988 case LWS_CONNMODE_WS_CLIENT_WAITING_PROXY_REPLY:
989
990 /* handle proxy hung up on us */
991
992 if (pollfd->revents & (POLLERR | POLLHUP)) {
993
994 fprintf(stderr, "Proxy connection %p (fd=%d) dead\n",
995 (void *)wsi, pollfd->fd);
996
Peter Hinz56885f32011-03-02 22:03:47 +0000997 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000998 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +0000999 return 1;
1000 }
1001
1002 n = recv(wsi->sock, pkt, sizeof pkt, 0);
1003 if (n < 0) {
Peter Hinz56885f32011-03-02 22:03:47 +00001004 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001005 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001006 fprintf(stderr, "ERROR reading from proxy socket\n");
1007 return 1;
1008 }
1009
1010 pkt[13] = '\0';
1011 if (strcmp(pkt, "HTTP/1.0 200 ") != 0) {
Peter Hinz56885f32011-03-02 22:03:47 +00001012 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001013 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001014 fprintf(stderr, "ERROR from proxy: %s\n", pkt);
1015 return 1;
1016 }
1017
1018 /* clear his proxy connection timeout */
1019
1020 libwebsocket_set_timeout(wsi, NO_PENDING_TIMEOUT, 0);
1021
1022 /* fallthru */
1023
1024 case LWS_CONNMODE_WS_CLIENT_ISSUE_HANDSHAKE:
1025
1026 #ifdef LWS_OPENSSL_SUPPORT
1027 if (wsi->use_ssl) {
1028
Peter Hinz56885f32011-03-02 22:03:47 +00001029 wsi->ssl = SSL_new(context->ssl_client_ctx);
1030 wsi->client_bio = BIO_new_socket(wsi->sock,
1031 BIO_NOCLOSE);
Andy Greenbe93fef2011-02-14 20:25:43 +00001032 SSL_set_bio(wsi->ssl, wsi->client_bio, wsi->client_bio);
1033
Andy Green6901cb32011-02-21 08:06:47 +00001034 SSL_set_ex_data(wsi->ssl,
Andy Green2e24da02011-03-05 16:12:04 +00001035 openssl_websocket_private_data_index,
Peter Hinz56885f32011-03-02 22:03:47 +00001036 context);
Andy Green6901cb32011-02-21 08:06:47 +00001037
Andy Greenbe93fef2011-02-14 20:25:43 +00001038 if (SSL_connect(wsi->ssl) <= 0) {
1039 fprintf(stderr, "SSL connect error %s\n",
Andy Green687b0182011-02-26 11:04:01 +00001040 ERR_error_string(ERR_get_error(),
1041 ssl_err_buf));
Peter Hinz56885f32011-03-02 22:03:47 +00001042 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001043 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001044 return 1;
1045 }
1046
1047 n = SSL_get_verify_result(wsi->ssl);
Andy Green2e24da02011-03-05 16:12:04 +00001048 if ((n != X509_V_OK) && (
Andy Green687b0182011-02-26 11:04:01 +00001049 n != X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT ||
1050 wsi->use_ssl != 2)) {
Andy Greenbe93fef2011-02-14 20:25:43 +00001051
Andy Green687b0182011-02-26 11:04:01 +00001052 fprintf(stderr, "server's cert didn't "
1053 "look good %d\n", n);
Peter Hinz56885f32011-03-02 22:03:47 +00001054 libwebsocket_close_and_free_session(context,
1055 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Green687b0182011-02-26 11:04:01 +00001056 return 1;
Andy Greenbe93fef2011-02-14 20:25:43 +00001057 }
1058 } else {
1059 wsi->ssl = NULL;
1060 #endif
1061
1062
1063 #ifdef LWS_OPENSSL_SUPPORT
1064 }
1065 #endif
1066
1067 /*
1068 * create the random key
1069 */
1070
Peter Hinz56885f32011-03-02 22:03:47 +00001071 n = libwebsockets_get_random(context, hash, 16);
Andy Greenbe93fef2011-02-14 20:25:43 +00001072 if (n != 16) {
1073 fprintf(stderr, "Unable to read from random dev %s\n",
1074 SYSTEM_RANDOM_FILEPATH);
1075 free(wsi->c_path);
1076 free(wsi->c_host);
Andy Green08d33922011-02-26 10:22:49 +00001077 if (wsi->c_origin)
1078 free(wsi->c_origin);
Andy Greenbe93fef2011-02-14 20:25:43 +00001079 if (wsi->c_protocol)
1080 free(wsi->c_protocol);
Peter Hinz56885f32011-03-02 22:03:47 +00001081 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001082 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001083 return 1;
1084 }
1085
1086 lws_b64_encode_string(hash, 16, wsi->key_b64,
1087 sizeof wsi->key_b64);
1088
1089 /*
Andy Greeneeaacb32011-03-01 20:44:24 +00001090 * 00 example client handshake
1091 *
1092 * GET /socket.io/websocket HTTP/1.1
1093 * Upgrade: WebSocket
1094 * Connection: Upgrade
1095 * Host: 127.0.0.1:9999
1096 * Origin: http://127.0.0.1
1097 * Sec-WebSocket-Key1: 1 0 2#0W 9 89 7 92 ^
1098 * Sec-WebSocket-Key2: 7 7Y 4328 B2v[8(z1
1099 * Cookie: socketio=websocket
1100 *
1101 * (Á®Ä0¶†≥
1102 *
Andy Greenbe93fef2011-02-14 20:25:43 +00001103 * 04 example client handshake
1104 *
1105 * GET /chat HTTP/1.1
1106 * Host: server.example.com
1107 * Upgrade: websocket
1108 * Connection: Upgrade
1109 * Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
1110 * Sec-WebSocket-Origin: http://example.com
1111 * Sec-WebSocket-Protocol: chat, superchat
1112 * Sec-WebSocket-Version: 4
1113 */
1114
Andy Green08d33922011-02-26 10:22:49 +00001115 p += sprintf(p, "GET %s HTTP/1.1\x0d\x0a", wsi->c_path);
Andy Greeneeaacb32011-03-01 20:44:24 +00001116
1117 if (wsi->ietf_spec_revision == 0) {
1118 unsigned char spaces_1, spaces_2;
1119 unsigned int max_1, max_2;
1120 unsigned int num_1, num_2;
1121 unsigned long product_1, product_2;
1122 char key_1[40];
1123 char key_2[40];
1124 unsigned int seed;
1125 unsigned int count;
1126 char challenge[16];
1127
Peter Hinz56885f32011-03-02 22:03:47 +00001128 libwebsockets_get_random(context, &spaces_1,
1129 sizeof(char));
1130 libwebsockets_get_random(context, &spaces_2,
1131 sizeof(char));
1132
Andy Greeneeaacb32011-03-01 20:44:24 +00001133 spaces_1 = (spaces_1 % 12) + 1;
1134 spaces_2 = (spaces_2 % 12) + 1;
Peter Hinz56885f32011-03-02 22:03:47 +00001135
Andy Greeneeaacb32011-03-01 20:44:24 +00001136 max_1 = 4294967295 / spaces_1;
1137 max_2 = 4294967295 / spaces_2;
1138
Peter Hinz56885f32011-03-02 22:03:47 +00001139 libwebsockets_get_random(context, &num_1, sizeof(int));
1140 libwebsockets_get_random(context, &num_2, sizeof(int));
1141
Andy Greeneeaacb32011-03-01 20:44:24 +00001142 num_1 = (num_1 % max_1);
1143 num_2 = (num_2 % max_2);
Peter Hinz56885f32011-03-02 22:03:47 +00001144
Andy Greeneeaacb32011-03-01 20:44:24 +00001145 challenge[0] = num_1 >> 24;
1146 challenge[1] = num_1 >> 16;
1147 challenge[2] = num_1 >> 8;
1148 challenge[3] = num_1;
1149 challenge[4] = num_2 >> 24;
1150 challenge[5] = num_2 >> 16;
1151 challenge[6] = num_2 >> 8;
1152 challenge[7] = num_2;
Peter Hinz56885f32011-03-02 22:03:47 +00001153
Andy Greeneeaacb32011-03-01 20:44:24 +00001154 product_1 = num_1 * spaces_1;
1155 product_2 = num_2 * spaces_2;
Peter Hinz56885f32011-03-02 22:03:47 +00001156
Andy Greeneeaacb32011-03-01 20:44:24 +00001157 sprintf(key_1, "%lu", product_1);
1158 sprintf(key_2, "%lu", product_2);
1159
Peter Hinz56885f32011-03-02 22:03:47 +00001160 libwebsockets_get_random(context, &seed, sizeof(int));
1161 libwebsockets_get_random(context, &count, sizeof(int));
1162
Andy Greeneeaacb32011-03-01 20:44:24 +00001163 libwebsockets_00_spam(key_1, (count % 12) + 1, seed);
Peter Hinz56885f32011-03-02 22:03:47 +00001164
1165 libwebsockets_get_random(context, &seed, sizeof(int));
1166 libwebsockets_get_random(context, &count, sizeof(int));
1167
Andy Greeneeaacb32011-03-01 20:44:24 +00001168 libwebsockets_00_spam(key_2, (count % 12) + 1, seed);
Peter Hinz56885f32011-03-02 22:03:47 +00001169
1170 libwebsockets_get_random(context, &seed, sizeof(int));
1171
Andy Greeneeaacb32011-03-01 20:44:24 +00001172 libwebsockets_00_spaceout(key_1, spaces_1, seed);
1173 libwebsockets_00_spaceout(key_2, spaces_2, seed >> 16);
Peter Hinz56885f32011-03-02 22:03:47 +00001174
Andy Greeneeaacb32011-03-01 20:44:24 +00001175 p += sprintf(p, "Upgrade: websocket\x0d\x0a"
1176 "Connection: Upgrade\x0d\x0aHost: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +00001177 wsi->c_host);
Andy Greeneeaacb32011-03-01 20:44:24 +00001178 if (wsi->c_origin)
1179 p += sprintf(p, "Origin: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +00001180 wsi->c_origin);
1181
Andy Greeneeaacb32011-03-01 20:44:24 +00001182 if (wsi->c_protocol)
Peter Hinz56885f32011-03-02 22:03:47 +00001183 p += sprintf(p, "Sec-WebSocket-Protocol: %s"
1184 "\x0d\x0a", wsi->c_protocol);
1185
Andy Greeneeaacb32011-03-01 20:44:24 +00001186 p += sprintf(p, "Sec-WebSocket-Key1: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +00001187 key_1);
Andy Greeneeaacb32011-03-01 20:44:24 +00001188 p += sprintf(p, "Sec-WebSocket-Key2: %s\x0d\x0a",
Peter Hinz56885f32011-03-02 22:03:47 +00001189 key_2);
Andy Greeneeaacb32011-03-01 20:44:24 +00001190
Andy Green385e7ad2011-03-01 21:06:02 +00001191 /* give userland a chance to append, eg, cookies */
Peter Hinz56885f32011-03-02 22:03:47 +00001192
1193 context->protocols[0].callback(context, wsi,
1194 LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER,
Andy Green385e7ad2011-03-01 21:06:02 +00001195 NULL, &p, (pkt + sizeof(pkt)) - p - 12);
1196
Andy Greeneeaacb32011-03-01 20:44:24 +00001197 p += sprintf(p, "\x0d\x0a");
Patrick McManus4bf91d72011-03-09 07:18:28 +00001198
1199 if (libwebsockets_get_random(context, p, 8) != 8)
1200 return -1;
Andy Greeneeaacb32011-03-01 20:44:24 +00001201 memcpy(&challenge[8], p, 8);
1202 p += 8;
Peter Hinz56885f32011-03-02 22:03:47 +00001203
Andy Greeneeaacb32011-03-01 20:44:24 +00001204 /* precompute what we want to see from the server */
Peter Hinz56885f32011-03-02 22:03:47 +00001205
Andy Greeneeaacb32011-03-01 20:44:24 +00001206 MD5((unsigned char *)challenge, 16,
1207 (unsigned char *)wsi->initial_handshake_hash_base64);
Peter Hinz56885f32011-03-02 22:03:47 +00001208
Andy Greeneeaacb32011-03-01 20:44:24 +00001209 goto issue_hdr;
1210 }
1211
Andy Green08d33922011-02-26 10:22:49 +00001212 p += sprintf(p, "Host: %s\x0d\x0a", wsi->c_host);
1213 p += sprintf(p, "Upgrade: websocket\x0d\x0a");
1214 p += sprintf(p, "Connection: Upgrade\x0d\x0a"
Andy Greenbe93fef2011-02-14 20:25:43 +00001215 "Sec-WebSocket-Key: ");
Andy Green08d33922011-02-26 10:22:49 +00001216 strcpy(p, wsi->key_b64);
1217 p += strlen(wsi->key_b64);
1218 p += sprintf(p, "\x0d\x0a");
1219 if (wsi->c_origin)
1220 p += sprintf(p, "Sec-WebSocket-Origin: %s\x0d\x0a",
Andy Greenbe93fef2011-02-14 20:25:43 +00001221 wsi->c_origin);
Andy Green08d33922011-02-26 10:22:49 +00001222 if (wsi->c_protocol)
Andy Greenbe93fef2011-02-14 20:25:43 +00001223 p += sprintf(p, "Sec-WebSocket-Protocol: %s\x0d\x0a",
1224 wsi->c_protocol);
Andy Greenc6517fa2011-03-06 13:15:29 +00001225
1226 /* tell the server what extensions we could support */
1227
1228 p += sprintf(p, "Sec-WebSocket-Extensions: ");
1229
1230 ext =context->extensions;
1231 while (ext && ext->callback) {
1232
1233 n = 0;
1234 n = context->protocols[0].callback(context, wsi,
1235 LWS_CALLBACK_CLIENT_CONFIRM_EXTENSION_SUPPORTED,
1236 wsi->user_space, (char *)ext->name, 0);
1237
1238 /*
1239 * zero return from callback means
1240 * go ahead and allow the extension,
1241 * it's what we get if the callback is
1242 * unhandled
1243 */
1244
1245 if (n) {
1246 ext++;
1247 continue;
1248 }
1249
1250 /* apply it */
1251
1252 if (ext_count)
1253 *p++ = ',';
Patrick McManus4bf91d72011-03-09 07:18:28 +00001254 p += sprintf(p, "%s", ext->name);
Andy Greenc6517fa2011-03-06 13:15:29 +00001255 ext_count++;
1256
1257 ext++;
1258 }
1259
1260 p += sprintf(p, "\x0d\x0a");
1261
1262 if (wsi->ietf_spec_revision)
1263 p += sprintf(p, "Sec-WebSocket-Version: %d\x0d\x0a",
1264 wsi->ietf_spec_revision);
1265
Andy Green385e7ad2011-03-01 21:06:02 +00001266 /* give userland a chance to append, eg, cookies */
Peter Hinz56885f32011-03-02 22:03:47 +00001267
1268 context->protocols[0].callback(context, wsi,
1269 LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER,
1270 NULL, &p, (pkt + sizeof(pkt)) - p - 12);
1271
Andy Green385e7ad2011-03-01 21:06:02 +00001272 p += sprintf(p, "\x0d\x0a");
1273
Andy Greenbe93fef2011-02-14 20:25:43 +00001274 /* prepare the expected server accept response */
1275
1276 strcpy((char *)buf, wsi->key_b64);
1277 strcpy((char *)&buf[strlen((char *)buf)], magic_websocket_guid);
1278
1279 SHA1(buf, strlen((char *)buf), (unsigned char *)hash);
1280
1281 lws_b64_encode_string(hash, 20,
1282 wsi->initial_handshake_hash_base64,
1283 sizeof wsi->initial_handshake_hash_base64);
Peter Hinz56885f32011-03-02 22:03:47 +00001284
Andy Greeneeaacb32011-03-01 20:44:24 +00001285issue_hdr:
Peter Hinz56885f32011-03-02 22:03:47 +00001286
Andy Greeneeaacb32011-03-01 20:44:24 +00001287 /* done with these now */
Peter Hinz56885f32011-03-02 22:03:47 +00001288
Andy Greeneeaacb32011-03-01 20:44:24 +00001289 free(wsi->c_path);
1290 free(wsi->c_host);
1291 if (wsi->c_origin)
1292 free(wsi->c_origin);
1293
Andy Greenbe93fef2011-02-14 20:25:43 +00001294 /* send our request to the server */
1295
1296 #ifdef LWS_OPENSSL_SUPPORT
1297 if (wsi->use_ssl)
1298 n = SSL_write(wsi->ssl, pkt, p - pkt);
1299 else
1300 #endif
1301 n = send(wsi->sock, pkt, p - pkt, 0);
1302
1303 if (n < 0) {
1304 fprintf(stderr, "ERROR writing to client socket\n");
Peter Hinz56885f32011-03-02 22:03:47 +00001305 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001306 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001307 return 1;
1308 }
1309
1310 wsi->parser_state = WSI_TOKEN_NAME_PART;
1311 wsi->mode = LWS_CONNMODE_WS_CLIENT_WAITING_SERVER_REPLY;
1312 libwebsocket_set_timeout(wsi,
1313 PENDING_TIMEOUT_AWAITING_SERVER_RESPONSE, 5);
1314
1315 break;
1316
1317 case LWS_CONNMODE_WS_CLIENT_WAITING_SERVER_REPLY:
1318
1319 /* handle server hung up on us */
1320
1321 if (pollfd->revents & (POLLERR | POLLHUP)) {
1322
1323 fprintf(stderr, "Server connection %p (fd=%d) dead\n",
1324 (void *)wsi, pollfd->fd);
1325
1326 goto bail3;
1327 }
1328
1329
1330 /* interpret the server response */
1331
1332 /*
1333 * HTTP/1.1 101 Switching Protocols
1334 * Upgrade: websocket
1335 * Connection: Upgrade
1336 * Sec-WebSocket-Accept: me89jWimTRKTWwrS3aRrL53YZSo=
1337 * Sec-WebSocket-Nonce: AQIDBAUGBwgJCgsMDQ4PEC==
1338 * Sec-WebSocket-Protocol: chat
1339 */
1340
1341 #ifdef LWS_OPENSSL_SUPPORT
1342 if (wsi->use_ssl)
1343 len = SSL_read(wsi->ssl, pkt, sizeof pkt);
1344 else
1345 #endif
1346 len = recv(wsi->sock, pkt, sizeof pkt, 0);
1347
1348 if (len < 0) {
1349 fprintf(stderr,
1350 "libwebsocket_client_handshake read error\n");
1351 goto bail3;
1352 }
1353
1354 p = pkt;
1355 for (n = 0; n < len; n++)
1356 libwebsocket_parse(wsi, *p++);
1357
1358 if (wsi->parser_state != WSI_PARSING_COMPLETE) {
1359 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001360 "server response failed parsing\n");
Andy Greenbe93fef2011-02-14 20:25:43 +00001361 goto bail3;
1362 }
1363
1364 /*
Andy Greeneeaacb32011-03-01 20:44:24 +00001365 * 00 / 76 -->
1366 *
1367 * HTTP/1.1 101 WebSocket Protocol Handshake
1368 * Upgrade: WebSocket
1369 * Connection: Upgrade
1370 * Sec-WebSocket-Origin: http://127.0.0.1
1371 * Sec-WebSocket-Location: ws://127.0.0.1:9999/socket.io/websocket
1372 *
1373 * xxxxxxxxxxxxxxxx
1374 */
Peter Hinz56885f32011-03-02 22:03:47 +00001375
Andy Greeneeaacb32011-03-01 20:44:24 +00001376 if (wsi->ietf_spec_revision == 0) {
1377 if (!wsi->utf8_token[WSI_TOKEN_HTTP].token_len ||
Peter Hinz56885f32011-03-02 22:03:47 +00001378 !wsi->utf8_token[WSI_TOKEN_UPGRADE].token_len ||
1379 !wsi->utf8_token[WSI_TOKEN_CHALLENGE].token_len ||
1380 !wsi->utf8_token[WSI_TOKEN_CONNECTION].token_len ||
1381 (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len &&
1382 wsi->c_protocol != NULL)) {
Andy Greeneeaacb32011-03-01 20:44:24 +00001383 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001384 "missing required header(s)\n");
Andy Greeneeaacb32011-03-01 20:44:24 +00001385 pkt[len] = '\0';
1386 fprintf(stderr, "%s", pkt);
1387 goto bail3;
1388 }
Andy Greeneeaacb32011-03-01 20:44:24 +00001389
Peter Hinz56885f32011-03-02 22:03:47 +00001390 strtolower(wsi->utf8_token[WSI_TOKEN_HTTP].token);
1391 if (strcmp(wsi->utf8_token[WSI_TOKEN_HTTP].token,
1392 "101 websocket protocol handshake")) {
Andy Greeneeaacb32011-03-01 20:44:24 +00001393 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001394 "server sent bad HTTP response '%s'\n",
1395 wsi->utf8_token[WSI_TOKEN_HTTP].token);
1396 goto bail3;
1397 }
1398
1399 if (wsi->utf8_token[WSI_TOKEN_CHALLENGE].token_len <
1400 16) {
1401 fprintf(stderr, "libwebsocket_client_handshake "
1402 "challenge reply too short %d\n",
1403 wsi->utf8_token[
1404 WSI_TOKEN_CHALLENGE].token_len);
Andy Greeneeaacb32011-03-01 20:44:24 +00001405 pkt[len] = '\0';
1406 fprintf(stderr, "%s", pkt);
1407 goto bail3;
Peter Hinz56885f32011-03-02 22:03:47 +00001408
Andy Greeneeaacb32011-03-01 20:44:24 +00001409 }
Peter Hinz56885f32011-03-02 22:03:47 +00001410
Andy Greeneeaacb32011-03-01 20:44:24 +00001411 goto select_protocol;
1412 }
Peter Hinz56885f32011-03-02 22:03:47 +00001413
Andy Greeneeaacb32011-03-01 20:44:24 +00001414 /*
Andy Greenbe93fef2011-02-14 20:25:43 +00001415 * well, what the server sent looked reasonable for syntax.
1416 * Now let's confirm it sent all the necessary headers
1417 */
1418
1419 if (!wsi->utf8_token[WSI_TOKEN_HTTP].token_len ||
1420 !wsi->utf8_token[WSI_TOKEN_UPGRADE].token_len ||
1421 !wsi->utf8_token[WSI_TOKEN_CONNECTION].token_len ||
1422 !wsi->utf8_token[WSI_TOKEN_ACCEPT].token_len ||
Andy Green4eaa86b2011-02-26 11:17:48 +00001423 (!wsi->utf8_token[WSI_TOKEN_NONCE].token_len &&
1424 wsi->ietf_spec_revision == 4) ||
Andy Greenbe93fef2011-02-14 20:25:43 +00001425 (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len &&
1426 wsi->c_protocol != NULL)) {
1427 fprintf(stderr, "libwebsocket_client_handshake "
Andy Green687b0182011-02-26 11:04:01 +00001428 "missing required header(s)\n");
Andy Greenbe93fef2011-02-14 20:25:43 +00001429 pkt[len] = '\0';
1430 fprintf(stderr, "%s", pkt);
1431 goto bail3;
1432 }
1433
1434 /*
1435 * Everything seems to be there, now take a closer look at what
1436 * is in each header
1437 */
1438
1439 strtolower(wsi->utf8_token[WSI_TOKEN_HTTP].token);
1440 if (strcmp(wsi->utf8_token[WSI_TOKEN_HTTP].token,
1441 "101 switching protocols")) {
1442 fprintf(stderr, "libwebsocket_client_handshake "
1443 "server sent bad HTTP response '%s'\n",
1444 wsi->utf8_token[WSI_TOKEN_HTTP].token);
1445 goto bail3;
1446 }
1447
1448 strtolower(wsi->utf8_token[WSI_TOKEN_UPGRADE].token);
1449 if (strcmp(wsi->utf8_token[WSI_TOKEN_UPGRADE].token,
1450 "websocket")) {
1451 fprintf(stderr, "libwebsocket_client_handshake server "
1452 "sent bad Upgrade header '%s'\n",
1453 wsi->utf8_token[WSI_TOKEN_UPGRADE].token);
1454 goto bail3;
1455 }
1456
1457 strtolower(wsi->utf8_token[WSI_TOKEN_CONNECTION].token);
1458 if (strcmp(wsi->utf8_token[WSI_TOKEN_CONNECTION].token,
1459 "upgrade")) {
1460 fprintf(stderr, "libwebsocket_client_handshake server "
1461 "sent bad Connection hdr '%s'\n",
1462 wsi->utf8_token[WSI_TOKEN_CONNECTION].token);
1463 goto bail3;
1464 }
1465
Andy Greeneeaacb32011-03-01 20:44:24 +00001466select_protocol:
Andy Greenbe93fef2011-02-14 20:25:43 +00001467 pc = wsi->c_protocol;
1468
1469 /*
1470 * confirm the protocol the server wants to talk was in the list
1471 * of protocols we offered
1472 */
1473
1474 if (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len) {
1475
1476 /*
1477 * no protocol name to work from,
1478 * default to first protocol
1479 */
Peter Hinz56885f32011-03-02 22:03:47 +00001480 wsi->protocol = &context->protocols[0];
Andy Greenbe93fef2011-02-14 20:25:43 +00001481
1482 free(wsi->c_protocol);
1483
1484 goto check_accept;
1485 }
1486
1487 while (*pc && !okay) {
1488 if ((!strncmp(pc,
1489 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token,
1490 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len)) &&
1491 (pc[wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len] == ',' ||
1492 pc[wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len] == '\0')) {
1493 okay = 1;
1494 continue;
1495 }
1496 while (*pc && *pc != ',')
1497 pc++;
1498 while (*pc && *pc != ' ')
1499 pc++;
1500 }
1501
1502 /* done with him now */
1503
1504 if (wsi->c_protocol)
1505 free(wsi->c_protocol);
1506
1507
1508 if (!okay) {
1509 fprintf(stderr, "libwebsocket_client_handshake server "
1510 "sent bad protocol '%s'\n",
1511 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token);
1512 goto bail2;
1513 }
1514
1515 /*
1516 * identify the selected protocol struct and set it
1517 */
1518 n = 0;
1519 wsi->protocol = NULL;
Peter Hinz56885f32011-03-02 22:03:47 +00001520 while (context->protocols[n].callback) {
Andy Greenbe93fef2011-02-14 20:25:43 +00001521 if (strcmp(wsi->utf8_token[WSI_TOKEN_PROTOCOL].token,
Peter Hinz56885f32011-03-02 22:03:47 +00001522 context->protocols[n].name) == 0)
1523 wsi->protocol = &context->protocols[n];
Andy Greenbe93fef2011-02-14 20:25:43 +00001524 n++;
1525 }
1526
1527 if (wsi->protocol == NULL) {
1528 fprintf(stderr, "libwebsocket_client_handshake server "
1529 "requested protocol '%s', which we "
1530 "said we supported but we don't!\n",
1531 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token);
1532 goto bail2;
1533 }
1534
Andy Green2366b1c2011-03-06 13:15:31 +00001535
1536 /* instantiate the accepted extensions */
1537
1538 if (!wsi->utf8_token[WSI_TOKEN_EXTENSIONS].token_len)
1539 goto check_accept;
1540
1541 /*
1542 * break down the list of server accepted extensions
1543 * and go through matching them or identifying bogons
1544 */
1545
1546 c = wsi->utf8_token[WSI_TOKEN_EXTENSIONS].token;
1547 n = 0;
1548 while (more) {
1549
1550 if (*c && *c != ',') {
1551 ext_name[n] = *c++;
1552 if (n < sizeof(ext_name) - 1)
1553 n++;
1554 continue;
1555 }
1556 ext_name[n] = '\0';
1557 if (!*c)
1558 more = 0;
1559
1560 /* check we actually support it */
1561
1562 n = 0;
1563 ext = wsi->protocol->owning_server->extensions;
1564 while (ext && ext->callback) {
1565
1566 if (strcmp(ext_name, ext->name)) {
1567 ext++;
1568 continue;
1569 }
1570
1571 n = 1;
1572
1573 /* instantiate the extension on this conn */
1574
1575 wsi->active_extensions_user[
1576 wsi->count_active_extensions] =
1577 malloc(ext->per_session_data_size);
1578 wsi->active_extensions[
1579 wsi->count_active_extensions] = ext;
1580
1581 /* allow him to construct his context */
1582
1583 ext->callback(wsi->protocol->owning_server,
1584 wsi, LWS_EXT_CALLBACK_CLIENT_CONSTRUCT,
1585 wsi->active_extensions_user[
1586 wsi->count_active_extensions], NULL, 0);
1587
1588 wsi->count_active_extensions++;
1589
1590 ext++;
1591 }
1592
1593 if (n == 0) {
1594 fprintf(stderr, "Server said we should use"
1595 "an unknown extension '%s'!\n", ext_name);
1596 goto bail2;
1597 }
1598
1599 n = 0;
1600 }
1601
1602
Andy Greenbe93fef2011-02-14 20:25:43 +00001603 check_accept:
Andy Greeneeaacb32011-03-01 20:44:24 +00001604
1605 if (wsi->ietf_spec_revision == 0) {
Peter Hinz56885f32011-03-02 22:03:47 +00001606
Andy Greeneeaacb32011-03-01 20:44:24 +00001607 if (memcmp(wsi->initial_handshake_hash_base64,
Peter Hinz56885f32011-03-02 22:03:47 +00001608 wsi->utf8_token[WSI_TOKEN_CHALLENGE].token, 16)) {
Andy Greeneeaacb32011-03-01 20:44:24 +00001609 fprintf(stderr, "libwebsocket_client_handshake "
Peter Hinz56885f32011-03-02 22:03:47 +00001610 "failed 00 challenge compare\n");
1611 pkt[len] = '\0';
1612 fprintf(stderr, "%s", pkt);
1613 goto bail2;
Andy Greeneeaacb32011-03-01 20:44:24 +00001614 }
Peter Hinz56885f32011-03-02 22:03:47 +00001615
Andy Greeneeaacb32011-03-01 20:44:24 +00001616 goto accept_ok;
1617 }
Peter Hinz56885f32011-03-02 22:03:47 +00001618
Andy Greenbe93fef2011-02-14 20:25:43 +00001619 /*
1620 * Confirm his accept token is the one we precomputed
1621 */
1622
1623 if (strcmp(wsi->utf8_token[WSI_TOKEN_ACCEPT].token,
1624 wsi->initial_handshake_hash_base64)) {
1625 fprintf(stderr, "libwebsocket_client_handshake server "
1626 "sent bad ACCEPT '%s' vs computed '%s'\n",
1627 wsi->utf8_token[WSI_TOKEN_ACCEPT].token,
1628 wsi->initial_handshake_hash_base64);
1629 goto bail2;
1630 }
1631
Andy Green4eaa86b2011-02-26 11:17:48 +00001632 if (wsi->ietf_spec_revision == 4) {
1633 /*
1634 * Calculate the 04 masking key to use when
1635 * sending data to server
1636 */
Andy Greenbe93fef2011-02-14 20:25:43 +00001637
Andy Green4eaa86b2011-02-26 11:17:48 +00001638 strcpy((char *)buf, wsi->key_b64);
1639 p = (char *)buf + strlen(wsi->key_b64);
1640 strcpy(p, wsi->utf8_token[WSI_TOKEN_NONCE].token);
1641 p += wsi->utf8_token[WSI_TOKEN_NONCE].token_len;
1642 strcpy(p, magic_websocket_04_masking_guid);
1643 SHA1(buf, strlen((char *)buf), wsi->masking_key_04);
1644 }
Andy Greeneeaacb32011-03-01 20:44:24 +00001645accept_ok:
1646
Andy Greenbe93fef2011-02-14 20:25:43 +00001647 /* allocate the per-connection user memory (if any) */
1648
1649 if (wsi->protocol->per_session_data_size) {
1650 wsi->user_space = malloc(
1651 wsi->protocol->per_session_data_size);
1652 if (wsi->user_space == NULL) {
1653 fprintf(stderr, "Out of memory for "
1654 "conn user space\n");
1655 goto bail2;
1656 }
1657 } else
1658 wsi->user_space = NULL;
1659
1660 /* clear his proxy connection timeout */
1661
1662 libwebsocket_set_timeout(wsi, NO_PENDING_TIMEOUT, 0);
1663
1664 /* mark him as being alive */
1665
1666 wsi->state = WSI_STATE_ESTABLISHED;
1667 wsi->mode = LWS_CONNMODE_WS_CLIENT;
1668
1669 fprintf(stderr, "handshake OK for protocol %s\n",
1670 wsi->protocol->name);
1671
1672 /* call him back to inform him he is up */
1673
Peter Hinz56885f32011-03-02 22:03:47 +00001674 wsi->protocol->callback(context, wsi,
Andy Greenbe93fef2011-02-14 20:25:43 +00001675 LWS_CALLBACK_CLIENT_ESTABLISHED,
1676 wsi->user_space,
1677 NULL, 0);
1678
1679 break;
1680
1681bail3:
1682 if (wsi->c_protocol)
1683 free(wsi->c_protocol);
1684
1685bail2:
Peter Hinz56885f32011-03-02 22:03:47 +00001686 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001687 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001688 return 1;
1689
1690
Andy Green0d338332011-02-12 11:57:43 +00001691 case LWS_CONNMODE_WS_SERVING:
1692 case LWS_CONNMODE_WS_CLIENT:
1693
1694 /* handle session socket closed */
1695
1696 if (pollfd->revents & (POLLERR | POLLHUP)) {
1697
Andy Green62c54d22011-02-14 09:14:25 +00001698 fprintf(stderr, "Session Socket %p (fd=%d) dead\n",
Andy Green0d338332011-02-12 11:57:43 +00001699 (void *)wsi, pollfd->fd);
1700
Peter Hinz56885f32011-03-02 22:03:47 +00001701 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001702 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green4b6fbe12011-02-14 08:03:48 +00001703 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +00001704 }
1705
Andy Green0d338332011-02-12 11:57:43 +00001706 /* the guy requested a callback when it was OK to write */
1707
Andy Greenda527df2011-03-07 07:08:12 +00001708 if ((pollfd->revents & POLLOUT) &&
1709 wsi->state == WSI_STATE_ESTABLISHED)
1710 if (lws_handle_POLLOUT_event(context, wsi,
1711 pollfd) < 0) {
1712 libwebsocket_close_and_free_session(
1713 context, wsi, LWS_CLOSE_STATUS_NORMAL);
Andy Green3b84c002011-03-06 13:14:42 +00001714 return 1;
1715 }
Andy Green0d338332011-02-12 11:57:43 +00001716
Andy Green0d338332011-02-12 11:57:43 +00001717
1718 /* any incoming data ready? */
1719
1720 if (!(pollfd->revents & POLLIN))
1721 break;
1722
Andy Greenb45993c2010-12-18 15:13:50 +00001723#ifdef LWS_OPENSSL_SUPPORT
Andy Green0d338332011-02-12 11:57:43 +00001724 if (wsi->ssl)
Andy Green98a717c2011-03-06 13:14:15 +00001725 eff_buf.token_len = SSL_read(wsi->ssl, buf, sizeof buf);
Andy Greenb45993c2010-12-18 15:13:50 +00001726 else
1727#endif
Andy Green98a717c2011-03-06 13:14:15 +00001728 eff_buf.token_len =
1729 recv(pollfd->fd, buf, sizeof buf, 0);
Andy Greenb45993c2010-12-18 15:13:50 +00001730
Andy Green98a717c2011-03-06 13:14:15 +00001731 if (eff_buf.token_len < 0) {
1732 fprintf(stderr, "Socket read returned %d\n",
1733 eff_buf.token_len);
Andy Green4b6fbe12011-02-14 08:03:48 +00001734 break;
Andy Greenb45993c2010-12-18 15:13:50 +00001735 }
Andy Green98a717c2011-03-06 13:14:15 +00001736 if (!eff_buf.token_len) {
Peter Hinz56885f32011-03-02 22:03:47 +00001737 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001738 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green4b6fbe12011-02-14 08:03:48 +00001739 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +00001740 }
1741
Andy Green98a717c2011-03-06 13:14:15 +00001742 /*
1743 * give any active extensions a chance to munge the buffer
1744 * before parse. We pass in a pointer to an lws_tokens struct
1745 * prepared with the default buffer and content length that's in
1746 * there. Rather than rewrite the default buffer, extensions
1747 * that expect to grow the buffer can adapt .token to
1748 * point to their own per-connection buffer in the extension
1749 * user allocation. By default with no extensions or no
1750 * extension callback handling, just the normal input buffer is
1751 * used then so it is efficient.
1752 */
Andy Greenb45993c2010-12-18 15:13:50 +00001753
Andy Green98a717c2011-03-06 13:14:15 +00001754 eff_buf.token = (char *)buf;
Andy Greenb45993c2010-12-18 15:13:50 +00001755
Andy Green98a717c2011-03-06 13:14:15 +00001756 more = 1;
1757 while (more) {
Andy Green0d338332011-02-12 11:57:43 +00001758
Andy Green98a717c2011-03-06 13:14:15 +00001759 more = 0;
1760
1761 for (n = 0; n < wsi->count_active_extensions; n++) {
1762 m = wsi->active_extensions[n]->callback(context, wsi,
1763 LWS_EXT_CALLBACK_PACKET_RX_PREPARSE,
1764 wsi->active_extensions_user[n], &eff_buf, 0);
1765 if (m < 0) {
1766 fprintf(stderr, "Extension reports fatal error\n");
1767 libwebsocket_close_and_free_session(context, wsi,
1768 LWS_CLOSE_STATUS_NOSTATUS);
1769 return 1;
1770 }
1771 if (m)
1772 more = 1;
1773 }
1774
1775 /* service incoming data */
1776
1777 if (eff_buf.token_len) {
1778 n = libwebsocket_read(context, wsi,
1779 (unsigned char *)eff_buf.token, eff_buf.token_len);
1780 if (n < 0)
1781 /* we closed wsi */
1782 return 1;
1783 }
1784
1785 eff_buf.token = NULL;
1786 eff_buf.token_len = 0;
1787 }
1788 break;
Andy Greenb45993c2010-12-18 15:13:50 +00001789 }
1790
1791 return 0;
1792}
1793
Andy Green0d338332011-02-12 11:57:43 +00001794
Andy Green6964bb52011-01-23 16:50:33 +00001795/**
1796 * libwebsocket_context_destroy() - Destroy the websocket context
Peter Hinz56885f32011-03-02 22:03:47 +00001797 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001798 *
1799 * This function closes any active connections and then frees the
1800 * context. After calling this, any further use of the context is
1801 * undefined.
1802 */
1803void
Peter Hinz56885f32011-03-02 22:03:47 +00001804libwebsocket_context_destroy(struct libwebsocket_context *context)
Andy Green6964bb52011-01-23 16:50:33 +00001805{
Andy Green0d338332011-02-12 11:57:43 +00001806 int n;
1807 int m;
1808 struct libwebsocket *wsi;
Andy Green6964bb52011-01-23 16:50:33 +00001809
Andy Green4b6fbe12011-02-14 08:03:48 +00001810 for (n = 0; n < FD_HASHTABLE_MODULUS; n++)
Peter Hinz56885f32011-03-02 22:03:47 +00001811 for (m = 0; m < context->fd_hashtable[n].length; m++) {
1812 wsi = context->fd_hashtable[n].wsi[m];
1813 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001814 LWS_CLOSE_STATUS_GOINGAWAY);
Andy Greenf3d3b402011-02-09 07:16:34 +00001815 }
Andy Green6964bb52011-01-23 16:50:33 +00001816
Peter Hinz56885f32011-03-02 22:03:47 +00001817#ifdef WIN32
1818#else
1819 close(context->fd_random);
Andy Green6964bb52011-01-23 16:50:33 +00001820#endif
1821
Peter Hinz56885f32011-03-02 22:03:47 +00001822#ifdef LWS_OPENSSL_SUPPORT
1823 if (context->ssl_ctx)
1824 SSL_CTX_free(context->ssl_ctx);
1825 if (context->ssl_client_ctx)
1826 SSL_CTX_free(context->ssl_client_ctx);
1827#endif
1828
1829 free(context);
1830
1831#ifdef WIN32
1832 WSACleanup();
1833#endif
Andy Green6964bb52011-01-23 16:50:33 +00001834}
1835
1836/**
1837 * libwebsocket_service() - Service any pending websocket activity
Peter Hinz56885f32011-03-02 22:03:47 +00001838 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001839 * @timeout_ms: Timeout for poll; 0 means return immediately if nothing needed
1840 * service otherwise block and service immediately, returning
1841 * after the timeout if nothing needed service.
1842 *
1843 * This function deals with any pending websocket traffic, for three
1844 * kinds of event. It handles these events on both server and client
1845 * types of connection the same.
1846 *
1847 * 1) Accept new connections to our context's server
1848 *
1849 * 2) Perform pending broadcast writes initiated from other forked
1850 * processes (effectively serializing asynchronous broadcasts)
1851 *
1852 * 3) Call the receive callback for incoming frame data received by
1853 * server or client connections.
1854 *
1855 * You need to call this service function periodically to all the above
1856 * functions to happen; if your application is single-threaded you can
1857 * just call it in your main event loop.
1858 *
1859 * Alternatively you can fork a new process that asynchronously handles
1860 * calling this service in a loop. In that case you are happy if this
1861 * call blocks your thread until it needs to take care of something and
1862 * would call it with a large nonzero timeout. Your loop then takes no
1863 * CPU while there is nothing happening.
1864 *
1865 * If you are calling it in a single-threaded app, you don't want it to
1866 * wait around blocking other things in your loop from happening, so you
1867 * would call it with a timeout_ms of 0, so it returns immediately if
1868 * nothing is pending, or as soon as it services whatever was pending.
1869 */
1870
Andy Greenb45993c2010-12-18 15:13:50 +00001871
Andy Greene92cd172011-01-19 13:11:55 +00001872int
Peter Hinz56885f32011-03-02 22:03:47 +00001873libwebsocket_service(struct libwebsocket_context *context, int timeout_ms)
Andy Greene92cd172011-01-19 13:11:55 +00001874{
1875 int n;
Andy Greene92cd172011-01-19 13:11:55 +00001876
1877 /* stay dead once we are dead */
1878
Peter Hinz56885f32011-03-02 22:03:47 +00001879 if (context == NULL)
Andy Greene92cd172011-01-19 13:11:55 +00001880 return 1;
1881
Andy Green0d338332011-02-12 11:57:43 +00001882 /* wait for something to need service */
Andy Green4739e5c2011-01-22 12:51:57 +00001883
Peter Hinz56885f32011-03-02 22:03:47 +00001884 n = poll(context->fds, context->fds_count, timeout_ms);
Andy Green3221f922011-02-12 13:14:11 +00001885 if (n == 0) /* poll timeout */
1886 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001887
Andy Green62c54d22011-02-14 09:14:25 +00001888 if (n < 0) {
Andy Green5e1fa172011-02-10 09:07:05 +00001889 /*
Andy Greene92cd172011-01-19 13:11:55 +00001890 fprintf(stderr, "Listen Socket dead\n");
Andy Green5e1fa172011-02-10 09:07:05 +00001891 */
Andy Green0d338332011-02-12 11:57:43 +00001892 return 1;
Andy Greene92cd172011-01-19 13:11:55 +00001893 }
Andy Greene92cd172011-01-19 13:11:55 +00001894
1895 /* handle accept on listening socket? */
1896
Peter Hinz56885f32011-03-02 22:03:47 +00001897 for (n = 0; n < context->fds_count; n++)
1898 if (context->fds[n].revents)
1899 libwebsocket_service_fd(context, &context->fds[n]);
Andy Greene92cd172011-01-19 13:11:55 +00001900
1901 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001902}
1903
Andy Green90c7cbc2011-01-27 06:26:52 +00001904/**
1905 * libwebsocket_callback_on_writable() - Request a callback when this socket
1906 * becomes able to be written to without
1907 * blocking
Andy Green32375b72011-02-19 08:32:53 +00001908 *
Peter Hinz56885f32011-03-02 22:03:47 +00001909 * @context: libwebsockets context
Andy Green90c7cbc2011-01-27 06:26:52 +00001910 * @wsi: Websocket connection instance to get callback for
1911 */
1912
1913int
Peter Hinz56885f32011-03-02 22:03:47 +00001914libwebsocket_callback_on_writable(struct libwebsocket_context *context,
Andy Green62c54d22011-02-14 09:14:25 +00001915 struct libwebsocket *wsi)
Andy Green90c7cbc2011-01-27 06:26:52 +00001916{
Andy Green90c7cbc2011-01-27 06:26:52 +00001917 int n;
1918
Peter Hinz56885f32011-03-02 22:03:47 +00001919 for (n = 0; n < context->fds_count; n++)
1920 if (context->fds[n].fd == wsi->sock) {
1921 context->fds[n].events |= POLLOUT;
1922 n = context->fds_count;
Andy Green90c7cbc2011-01-27 06:26:52 +00001923 }
1924
Andy Green3221f922011-02-12 13:14:11 +00001925 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001926 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001927 LWS_CALLBACK_SET_MODE_POLL_FD,
1928 (void *)(long)wsi->sock, NULL, POLLOUT);
1929
Andy Green90c7cbc2011-01-27 06:26:52 +00001930 return 1;
1931}
1932
1933/**
1934 * libwebsocket_callback_on_writable_all_protocol() - Request a callback for
1935 * all connections using the given protocol when it
1936 * becomes possible to write to each socket without
1937 * blocking in turn.
1938 *
1939 * @protocol: Protocol whose connections will get callbacks
1940 */
1941
1942int
1943libwebsocket_callback_on_writable_all_protocol(
1944 const struct libwebsocket_protocols *protocol)
1945{
Peter Hinz56885f32011-03-02 22:03:47 +00001946 struct libwebsocket_context *context = protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001947 int n;
Andy Green0d338332011-02-12 11:57:43 +00001948 int m;
1949 struct libwebsocket *wsi;
Andy Green90c7cbc2011-01-27 06:26:52 +00001950
Andy Green0d338332011-02-12 11:57:43 +00001951 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
1952
Peter Hinz56885f32011-03-02 22:03:47 +00001953 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Green0d338332011-02-12 11:57:43 +00001954
Peter Hinz56885f32011-03-02 22:03:47 +00001955 wsi = context->fd_hashtable[n].wsi[m];
Andy Green0d338332011-02-12 11:57:43 +00001956
1957 if (wsi->protocol == protocol)
Peter Hinz56885f32011-03-02 22:03:47 +00001958 libwebsocket_callback_on_writable(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001959 }
1960 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001961
1962 return 0;
1963}
1964
Andy Greenbe93fef2011-02-14 20:25:43 +00001965/**
1966 * libwebsocket_set_timeout() - marks the wsi as subject to a timeout
1967 *
1968 * You will not need this unless you are doing something special
1969 *
1970 * @wsi: Websocket connection instance
1971 * @reason: timeout reason
1972 * @secs: how many seconds
1973 */
1974
1975void
1976libwebsocket_set_timeout(struct libwebsocket *wsi,
1977 enum pending_timeout reason, int secs)
1978{
1979 struct timeval tv;
1980
1981 gettimeofday(&tv, NULL);
1982
1983 wsi->pending_timeout_limit = tv.tv_sec + secs;
1984 wsi->pending_timeout = reason;
1985}
1986
Andy Greena6cbece2011-01-27 20:06:03 +00001987
1988/**
1989 * libwebsocket_get_socket_fd() - returns the socket file descriptor
1990 *
1991 * You will not need this unless you are doing something special
1992 *
1993 * @wsi: Websocket connection instance
1994 */
1995
1996int
1997libwebsocket_get_socket_fd(struct libwebsocket *wsi)
1998{
1999 return wsi->sock;
2000}
2001
Andy Green90c7cbc2011-01-27 06:26:52 +00002002/**
2003 * libwebsocket_rx_flow_control() - Enable and disable socket servicing for
2004 * receieved packets.
2005 *
2006 * If the output side of a server process becomes choked, this allows flow
2007 * control for the input side.
2008 *
2009 * @wsi: Websocket connection instance to get callback for
2010 * @enable: 0 = disable read servicing for this connection, 1 = enable
2011 */
2012
2013int
2014libwebsocket_rx_flow_control(struct libwebsocket *wsi, int enable)
2015{
Peter Hinz56885f32011-03-02 22:03:47 +00002016 struct libwebsocket_context *context = wsi->protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00002017 int n;
2018
Peter Hinz56885f32011-03-02 22:03:47 +00002019 for (n = 0; n < context->fds_count; n++)
2020 if (context->fds[n].fd == wsi->sock) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002021 if (enable)
Peter Hinz56885f32011-03-02 22:03:47 +00002022 context->fds[n].events |= POLLIN;
Andy Green90c7cbc2011-01-27 06:26:52 +00002023 else
Peter Hinz56885f32011-03-02 22:03:47 +00002024 context->fds[n].events &= ~POLLIN;
Andy Green90c7cbc2011-01-27 06:26:52 +00002025
2026 return 0;
2027 }
2028
Andy Green3221f922011-02-12 13:14:11 +00002029 if (enable)
2030 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002031 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002032 LWS_CALLBACK_SET_MODE_POLL_FD,
2033 (void *)(long)wsi->sock, NULL, POLLIN);
2034 else
2035 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002036 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002037 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
2038 (void *)(long)wsi->sock, NULL, POLLIN);
2039
2040
Andy Green90c7cbc2011-01-27 06:26:52 +00002041 fprintf(stderr, "libwebsocket_callback_on_writable "
2042 "unable to find socket\n");
2043 return 1;
2044}
2045
Andy Green2ac5a6f2011-01-28 10:00:18 +00002046/**
2047 * libwebsocket_canonical_hostname() - returns this host's hostname
2048 *
2049 * This is typically used by client code to fill in the host parameter
2050 * when making a client connection. You can only call it after the context
2051 * has been created.
2052 *
Peter Hinz56885f32011-03-02 22:03:47 +00002053 * @context: Websocket context
Andy Green2ac5a6f2011-01-28 10:00:18 +00002054 */
2055
2056
2057extern const char *
Peter Hinz56885f32011-03-02 22:03:47 +00002058libwebsocket_canonical_hostname(struct libwebsocket_context *context)
Andy Green2ac5a6f2011-01-28 10:00:18 +00002059{
Peter Hinz56885f32011-03-02 22:03:47 +00002060 return (const char *)context->canonical_hostname;
Andy Green2ac5a6f2011-01-28 10:00:18 +00002061}
2062
2063
Andy Green90c7cbc2011-01-27 06:26:52 +00002064static void sigpipe_handler(int x)
2065{
2066}
2067
Andy Green6901cb32011-02-21 08:06:47 +00002068#ifdef LWS_OPENSSL_SUPPORT
2069static int
2070OpenSSL_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx)
2071{
2072
2073 SSL *ssl;
2074 int n;
Andy Green2e24da02011-03-05 16:12:04 +00002075 struct libwebsocket_context *context;
Andy Green6901cb32011-02-21 08:06:47 +00002076
2077 ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
2078 SSL_get_ex_data_X509_STORE_CTX_idx());
2079
2080 /*
Andy Green2e24da02011-03-05 16:12:04 +00002081 * !!! nasty openssl requires the index to come as a library-scope
2082 * static
Andy Green6901cb32011-02-21 08:06:47 +00002083 */
Andy Green2e24da02011-03-05 16:12:04 +00002084 context = SSL_get_ex_data(ssl, openssl_websocket_private_data_index);
Andy Green6901cb32011-02-21 08:06:47 +00002085
Peter Hinz56885f32011-03-02 22:03:47 +00002086 n = context->protocols[0].callback(NULL, NULL,
Andy Green6901cb32011-02-21 08:06:47 +00002087 LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION,
2088 x509_ctx, ssl, preverify_ok);
2089
2090 /* convert return code from 0 = OK to 1 = OK */
2091
2092 if (!n)
2093 n = 1;
2094 else
2095 n = 0;
2096
2097 return n;
2098}
2099#endif
2100
Andy Greenb45993c2010-12-18 15:13:50 +00002101
Andy Greenab990e42010-10-31 12:42:52 +00002102/**
Andy Green4739e5c2011-01-22 12:51:57 +00002103 * libwebsocket_create_context() - Create the websocket handler
2104 * @port: Port to listen on... you can use 0 to suppress listening on
Andy Green6964bb52011-01-23 16:50:33 +00002105 * any port, that's what you want if you are not running a
2106 * websocket server at all but just using it as a client
Peter Hinz56885f32011-03-02 22:03:47 +00002107 * @interf: NULL to bind the listen socket to all interfaces, or the
Andy Green32375b72011-02-19 08:32:53 +00002108 * interface name, eg, "eth2"
Andy Green4f3943a2010-11-12 10:44:16 +00002109 * @protocols: Array of structures listing supported protocols and a protocol-
Andy Green8f037e42010-12-19 22:13:26 +00002110 * specific callback for each one. The list is ended with an
2111 * entry that has a NULL callback pointer.
Andy Green6964bb52011-01-23 16:50:33 +00002112 * It's not const because we write the owning_server member
Andy Greenc5114822011-03-06 10:29:35 +00002113 * @extensions: NULL or array of libwebsocket_extension structs listing the
2114 * extensions this context supports
Andy Green3faa9c72010-11-08 17:03:03 +00002115 * @ssl_cert_filepath: If libwebsockets was compiled to use ssl, and you want
Andy Green8f037e42010-12-19 22:13:26 +00002116 * to listen using SSL, set to the filepath to fetch the
2117 * server cert from, otherwise NULL for unencrypted
Andy Green3faa9c72010-11-08 17:03:03 +00002118 * @ssl_private_key_filepath: filepath to private key if wanting SSL mode,
Andy Green8f037e42010-12-19 22:13:26 +00002119 * else ignored
Andy Green3faa9c72010-11-08 17:03:03 +00002120 * @gid: group id to change to after setting listen socket, or -1.
2121 * @uid: user id to change to after setting listen socket, or -1.
Andy Greenbfb051f2011-02-09 08:49:14 +00002122 * @options: 0, or LWS_SERVER_OPTION_DEFEAT_CLIENT_MASK
Andy Green05464c62010-11-12 10:44:18 +00002123 *
Andy Green8f037e42010-12-19 22:13:26 +00002124 * This function creates the listening socket and takes care
2125 * of all initialization in one step.
2126 *
Andy Greene92cd172011-01-19 13:11:55 +00002127 * After initialization, it returns a struct libwebsocket_context * that
2128 * represents this server. After calling, user code needs to take care
2129 * of calling libwebsocket_service() with the context pointer to get the
2130 * server's sockets serviced. This can be done in the same process context
2131 * or a forked process, or another thread,
Andy Green05464c62010-11-12 10:44:18 +00002132 *
Andy Green8f037e42010-12-19 22:13:26 +00002133 * The protocol callback functions are called for a handful of events
2134 * including http requests coming in, websocket connections becoming
2135 * established, and data arriving; it's also called periodically to allow
2136 * async transmission.
2137 *
2138 * HTTP requests are sent always to the FIRST protocol in @protocol, since
2139 * at that time websocket protocol has not been negotiated. Other
2140 * protocols after the first one never see any HTTP callack activity.
2141 *
2142 * The server created is a simple http server by default; part of the
2143 * websocket standard is upgrading this http connection to a websocket one.
2144 *
2145 * This allows the same server to provide files like scripts and favicon /
2146 * images or whatever over http and dynamic data over websockets all in
2147 * one place; they're all handled in the user callback.
Andy Greenab990e42010-10-31 12:42:52 +00002148 */
Andy Green4ea60062010-10-30 12:15:07 +01002149
Andy Greene92cd172011-01-19 13:11:55 +00002150struct libwebsocket_context *
Peter Hinz56885f32011-03-02 22:03:47 +00002151libwebsocket_create_context(int port, const char *interf,
Andy Greenb45993c2010-12-18 15:13:50 +00002152 struct libwebsocket_protocols *protocols,
Andy Greend6e09112011-03-05 16:12:15 +00002153 struct libwebsocket_extension *extensions,
Andy Green8f037e42010-12-19 22:13:26 +00002154 const char *ssl_cert_filepath,
2155 const char *ssl_private_key_filepath,
Andy Green8014b292011-01-30 20:57:25 +00002156 int gid, int uid, unsigned int options)
Andy Greenff95d7a2010-10-28 22:36:01 +01002157{
2158 int n;
Andy Green4739e5c2011-01-22 12:51:57 +00002159 int sockfd = 0;
Andy Green251f6fa2010-11-03 11:13:06 +00002160 int fd;
Andy Greenff95d7a2010-10-28 22:36:01 +01002161 struct sockaddr_in serv_addr, cli_addr;
Andy Green251f6fa2010-11-03 11:13:06 +00002162 int opt = 1;
Peter Hinz56885f32011-03-02 22:03:47 +00002163 struct libwebsocket_context *context = NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002164 unsigned int slen;
Andy Green9659f372011-01-27 22:01:43 +00002165 char *p;
Andy Green2ac5a6f2011-01-28 10:00:18 +00002166 char hostname[1024];
Andy Green42f69142011-01-30 08:10:02 +00002167 struct hostent *he;
Andy Green0d338332011-02-12 11:57:43 +00002168 struct libwebsocket *wsi;
Andy Greenff95d7a2010-10-28 22:36:01 +01002169
Andy Green3faa9c72010-11-08 17:03:03 +00002170#ifdef LWS_OPENSSL_SUPPORT
Andy Greenf2f54d52010-11-15 22:08:00 +00002171 SSL_METHOD *method;
Andy Green3faa9c72010-11-08 17:03:03 +00002172 char ssl_err_buf[512];
Andy Green3faa9c72010-11-08 17:03:03 +00002173#endif
2174
Peter Hinz56885f32011-03-02 22:03:47 +00002175#ifdef _WIN32
2176 {
2177 WORD wVersionRequested;
2178 WSADATA wsaData;
2179 int err;
2180
2181 /* Use the MAKEWORD(lowbyte, highbyte) macro from Windef.h */
2182 wVersionRequested = MAKEWORD(2, 2);
2183
2184 err = WSAStartup(wVersionRequested, &wsaData);
2185 if (err != 0) {
2186 /* Tell the user that we could not find a usable */
2187 /* Winsock DLL. */
2188 fprintf(stderr, "WSAStartup failed with error: %d\n",
2189 err);
2190 return NULL;
2191 }
2192 }
2193#endif
2194
2195
2196 context = malloc(sizeof(struct libwebsocket_context));
2197 if (!context) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002198 fprintf(stderr, "No memory for websocket context\n");
2199 return NULL;
2200 }
Peter Hinz56885f32011-03-02 22:03:47 +00002201 context->protocols = protocols;
2202 context->listen_port = port;
2203 context->http_proxy_port = 0;
2204 context->http_proxy_address[0] = '\0';
2205 context->options = options;
2206 context->fds_count = 0;
Andy Greend6e09112011-03-05 16:12:15 +00002207 context->extensions = extensions;
Andy Green9659f372011-01-27 22:01:43 +00002208
Peter Hinz56885f32011-03-02 22:03:47 +00002209#ifdef WIN32
2210 context->fd_random = 0;
2211#else
2212 context->fd_random = open(SYSTEM_RANDOM_FILEPATH, O_RDONLY);
2213 if (context->fd_random < 0) {
Andy Green44eee682011-02-10 09:32:24 +00002214 fprintf(stderr, "Unable to open random device %s %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002215 SYSTEM_RANDOM_FILEPATH, context->fd_random);
Andy Green44eee682011-02-10 09:32:24 +00002216 return NULL;
2217 }
Peter Hinz56885f32011-03-02 22:03:47 +00002218#endif
Andy Green44eee682011-02-10 09:32:24 +00002219
Peter Hinz56885f32011-03-02 22:03:47 +00002220#ifdef LWS_OPENSSL_SUPPORT
2221 context->use_ssl = 0;
2222 context->ssl_ctx = NULL;
2223 context->ssl_client_ctx = NULL;
Andy Green2e24da02011-03-05 16:12:04 +00002224 openssl_websocket_private_data_index = 0;
Peter Hinz56885f32011-03-02 22:03:47 +00002225#endif
Andy Green2ac5a6f2011-01-28 10:00:18 +00002226 /* find canonical hostname */
2227
2228 hostname[(sizeof hostname) - 1] = '\0';
2229 gethostname(hostname, (sizeof hostname) - 1);
2230 he = gethostbyname(hostname);
Darin Willitsc19456f2011-02-14 17:52:39 +00002231 if (he) {
Peter Hinz56885f32011-03-02 22:03:47 +00002232 strncpy(context->canonical_hostname, he->h_name,
2233 sizeof context->canonical_hostname - 1);
2234 context->canonical_hostname[
2235 sizeof context->canonical_hostname - 1] = '\0';
Darin Willitsc19456f2011-02-14 17:52:39 +00002236 } else
Peter Hinz56885f32011-03-02 22:03:47 +00002237 strncpy(context->canonical_hostname, hostname,
2238 sizeof context->canonical_hostname - 1);
Andy Green2ac5a6f2011-01-28 10:00:18 +00002239
Andy Green9659f372011-01-27 22:01:43 +00002240 /* split the proxy ads:port if given */
2241
2242 p = getenv("http_proxy");
2243 if (p) {
Peter Hinz56885f32011-03-02 22:03:47 +00002244 strncpy(context->http_proxy_address, p,
2245 sizeof context->http_proxy_address - 1);
2246 context->http_proxy_address[
2247 sizeof context->http_proxy_address - 1] = '\0';
Andy Green9659f372011-01-27 22:01:43 +00002248
Peter Hinz56885f32011-03-02 22:03:47 +00002249 p = strchr(context->http_proxy_address, ':');
Andy Green9659f372011-01-27 22:01:43 +00002250 if (p == NULL) {
2251 fprintf(stderr, "http_proxy needs to be ads:port\n");
2252 return NULL;
2253 }
2254 *p = '\0';
Peter Hinz56885f32011-03-02 22:03:47 +00002255 context->http_proxy_port = atoi(p + 1);
Andy Green9659f372011-01-27 22:01:43 +00002256
2257 fprintf(stderr, "Using proxy %s:%u\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002258 context->http_proxy_address,
2259 context->http_proxy_port);
Andy Green9659f372011-01-27 22:01:43 +00002260 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002261
2262 if (port) {
2263
Andy Green3faa9c72010-11-08 17:03:03 +00002264#ifdef LWS_OPENSSL_SUPPORT
Peter Hinz56885f32011-03-02 22:03:47 +00002265 context->use_ssl = ssl_cert_filepath != NULL &&
Andy Green90c7cbc2011-01-27 06:26:52 +00002266 ssl_private_key_filepath != NULL;
Peter Hinz56885f32011-03-02 22:03:47 +00002267 if (context->use_ssl)
Andy Green90c7cbc2011-01-27 06:26:52 +00002268 fprintf(stderr, " Compiled with SSL support, "
2269 "using it\n");
2270 else
2271 fprintf(stderr, " Compiled with SSL support, "
2272 "not using it\n");
Andy Green3faa9c72010-11-08 17:03:03 +00002273
Andy Green90c7cbc2011-01-27 06:26:52 +00002274#else
2275 if (ssl_cert_filepath != NULL &&
2276 ssl_private_key_filepath != NULL) {
2277 fprintf(stderr, " Not compiled for OpenSSl support!\n");
Andy Greene92cd172011-01-19 13:11:55 +00002278 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002279 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002280 fprintf(stderr, " Compiled without SSL support, "
2281 "serving unencrypted\n");
2282#endif
2283 }
2284
2285 /* ignore SIGPIPE */
Peter Hinz56885f32011-03-02 22:03:47 +00002286#ifdef WIN32
2287#else
Andy Green90c7cbc2011-01-27 06:26:52 +00002288 signal(SIGPIPE, sigpipe_handler);
Peter Hinz56885f32011-03-02 22:03:47 +00002289#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00002290
2291
2292#ifdef LWS_OPENSSL_SUPPORT
2293
2294 /* basic openssl init */
2295
2296 SSL_library_init();
2297
2298 OpenSSL_add_all_algorithms();
2299 SSL_load_error_strings();
2300
Andy Green2e24da02011-03-05 16:12:04 +00002301 openssl_websocket_private_data_index =
Andy Green6901cb32011-02-21 08:06:47 +00002302 SSL_get_ex_new_index(0, "libwebsockets", NULL, NULL, NULL);
2303
Andy Green90c7cbc2011-01-27 06:26:52 +00002304 /*
2305 * Firefox insists on SSLv23 not SSLv3
2306 * Konq disables SSLv2 by default now, SSLv23 works
2307 */
2308
2309 method = (SSL_METHOD *)SSLv23_server_method();
2310 if (!method) {
2311 fprintf(stderr, "problem creating ssl method: %s\n",
2312 ERR_error_string(ERR_get_error(), ssl_err_buf));
2313 return NULL;
2314 }
Peter Hinz56885f32011-03-02 22:03:47 +00002315 context->ssl_ctx = SSL_CTX_new(method); /* create context */
2316 if (!context->ssl_ctx) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002317 fprintf(stderr, "problem creating ssl context: %s\n",
2318 ERR_error_string(ERR_get_error(), ssl_err_buf));
2319 return NULL;
2320 }
2321
2322 /* client context */
Peter Hinz56885f32011-03-02 22:03:47 +00002323 if (port == CONTEXT_PORT_NO_LISTEN)
2324 {
2325 method = (SSL_METHOD *)SSLv23_client_method();
2326 if (!method) {
2327 fprintf(stderr, "problem creating ssl method: %s\n",
2328 ERR_error_string(ERR_get_error(), ssl_err_buf));
2329 return NULL;
2330 }
2331 /* create context */
2332 context->ssl_client_ctx = SSL_CTX_new(method);
2333 if (!context->ssl_client_ctx) {
2334 fprintf(stderr, "problem creating ssl context: %s\n",
2335 ERR_error_string(ERR_get_error(), ssl_err_buf));
2336 return NULL;
2337 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002338
Peter Hinz56885f32011-03-02 22:03:47 +00002339 /* openssl init for cert verification (for client sockets) */
Andy Green90c7cbc2011-01-27 06:26:52 +00002340
Peter Hinz56885f32011-03-02 22:03:47 +00002341 if (!SSL_CTX_load_verify_locations(
2342 context->ssl_client_ctx, NULL,
2343 LWS_OPENSSL_CLIENT_CERTS))
2344 fprintf(stderr,
2345 "Unable to load SSL Client certs from %s "
2346 "(set by --with-client-cert-dir= in configure) -- "
2347 " client ssl isn't going to work",
Andy Green90c7cbc2011-01-27 06:26:52 +00002348 LWS_OPENSSL_CLIENT_CERTS);
Peter Hinz56885f32011-03-02 22:03:47 +00002349
2350 /*
2351 * callback allowing user code to load extra verification certs
2352 * helping the client to verify server identity
2353 */
2354
2355 context->protocols[0].callback(context, NULL,
2356 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS,
2357 context->ssl_client_ctx, NULL, 0);
Andy Green90c7cbc2011-01-27 06:26:52 +00002358 }
Andy Greenc6bf2c22011-02-20 11:10:47 +00002359 /* as a server, are we requiring clients to identify themselves? */
2360
2361 if (options & LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT) {
2362
2363 /* absolutely require the client cert */
2364
Peter Hinz56885f32011-03-02 22:03:47 +00002365 SSL_CTX_set_verify(context->ssl_ctx,
Andy Green6901cb32011-02-21 08:06:47 +00002366 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
2367 OpenSSL_verify_callback);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002368
2369 /*
2370 * give user code a chance to load certs into the server
2371 * allowing it to verify incoming client certs
2372 */
2373
Peter Hinz56885f32011-03-02 22:03:47 +00002374 context->protocols[0].callback(context, NULL,
Andy Greenc6bf2c22011-02-20 11:10:47 +00002375 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS,
Peter Hinz56885f32011-03-02 22:03:47 +00002376 context->ssl_ctx, NULL, 0);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002377 }
2378
Peter Hinz56885f32011-03-02 22:03:47 +00002379 if (context->use_ssl) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002380
2381 /* openssl init for server sockets */
2382
Andy Green3faa9c72010-11-08 17:03:03 +00002383 /* set the local certificate from CertFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002384 n = SSL_CTX_use_certificate_file(context->ssl_ctx,
Andy Green3faa9c72010-11-08 17:03:03 +00002385 ssl_cert_filepath, SSL_FILETYPE_PEM);
2386 if (n != 1) {
2387 fprintf(stderr, "problem getting cert '%s': %s\n",
2388 ssl_cert_filepath,
2389 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00002390 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002391 }
2392 /* set the private key from KeyFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002393 if (SSL_CTX_use_PrivateKey_file(context->ssl_ctx,
2394 ssl_private_key_filepath, SSL_FILETYPE_PEM) != 1) {
Andy Green018d8eb2010-11-08 21:04:23 +00002395 fprintf(stderr, "ssl problem getting key '%s': %s\n",
2396 ssl_private_key_filepath,
2397 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00002398 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002399 }
2400 /* verify private key */
Peter Hinz56885f32011-03-02 22:03:47 +00002401 if (!SSL_CTX_check_private_key(context->ssl_ctx)) {
Andy Green018d8eb2010-11-08 21:04:23 +00002402 fprintf(stderr, "Private SSL key doesn't match cert\n");
Andy Greene92cd172011-01-19 13:11:55 +00002403 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002404 }
2405
2406 /* SSL is happy and has a cert it's content with */
2407 }
2408#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002409
Andy Greendf736162011-01-18 15:39:02 +00002410 /* selftest */
2411
2412 if (lws_b64_selftest())
Andy Greene92cd172011-01-19 13:11:55 +00002413 return NULL;
Andy Greendf736162011-01-18 15:39:02 +00002414
Andy Green0d338332011-02-12 11:57:43 +00002415 /* fd hashtable init */
2416
2417 for (n = 0; n < FD_HASHTABLE_MODULUS; n++)
Peter Hinz56885f32011-03-02 22:03:47 +00002418 context->fd_hashtable[n].length = 0;
Andy Green0d338332011-02-12 11:57:43 +00002419
Andy Greenb45993c2010-12-18 15:13:50 +00002420 /* set up our external listening socket we serve on */
Andy Green8f037e42010-12-19 22:13:26 +00002421
Andy Green4739e5c2011-01-22 12:51:57 +00002422 if (port) {
Andy Green8f037e42010-12-19 22:13:26 +00002423
Andy Green4739e5c2011-01-22 12:51:57 +00002424 sockfd = socket(AF_INET, SOCK_STREAM, 0);
2425 if (sockfd < 0) {
2426 fprintf(stderr, "ERROR opening socket");
2427 return NULL;
2428 }
Andy Green775c0dd2010-10-29 14:15:22 +01002429
Andy Green4739e5c2011-01-22 12:51:57 +00002430 /* allow us to restart even if old sockets in TIME_WAIT */
2431 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
Andy Greene77ddd82010-11-13 10:03:47 +00002432
Andy Green6c939552011-03-08 08:56:57 +00002433
2434 /* Disable Nagle */
2435 opt = 1;
2436 setsockopt(sockfd, SOL_TCP, TCP_NODELAY, &opt, sizeof(opt));
2437
Andy Green4739e5c2011-01-22 12:51:57 +00002438 bzero((char *) &serv_addr, sizeof(serv_addr));
2439 serv_addr.sin_family = AF_INET;
Peter Hinz56885f32011-03-02 22:03:47 +00002440 if (interf == NULL)
Andy Green32375b72011-02-19 08:32:53 +00002441 serv_addr.sin_addr.s_addr = INADDR_ANY;
2442 else
Peter Hinz56885f32011-03-02 22:03:47 +00002443 interface_to_sa(interf, &serv_addr,
Andy Green32375b72011-02-19 08:32:53 +00002444 sizeof(serv_addr));
Andy Green4739e5c2011-01-22 12:51:57 +00002445 serv_addr.sin_port = htons(port);
2446
2447 n = bind(sockfd, (struct sockaddr *) &serv_addr,
2448 sizeof(serv_addr));
2449 if (n < 0) {
2450 fprintf(stderr, "ERROR on binding to port %d (%d %d)\n",
Andy Green8f037e42010-12-19 22:13:26 +00002451 port, n, errno);
Andy Green4739e5c2011-01-22 12:51:57 +00002452 return NULL;
2453 }
Andy Green0d338332011-02-12 11:57:43 +00002454
2455 wsi = malloc(sizeof(struct libwebsocket));
2456 memset(wsi, 0, sizeof (struct libwebsocket));
2457 wsi->sock = sockfd;
Andy Greend6e09112011-03-05 16:12:15 +00002458 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00002459 wsi->mode = LWS_CONNMODE_SERVER_LISTENER;
Peter Hinz56885f32011-03-02 22:03:47 +00002460 insert_wsi(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002461
2462 listen(sockfd, 5);
2463 fprintf(stderr, " Listening on port %d\n", port);
2464
2465 /* list in the internal poll array */
2466
Peter Hinz56885f32011-03-02 22:03:47 +00002467 context->fds[context->fds_count].fd = sockfd;
2468 context->fds[context->fds_count++].events = POLLIN;
Andy Green3221f922011-02-12 13:14:11 +00002469
2470 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002471 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002472 LWS_CALLBACK_ADD_POLL_FD,
2473 (void *)(long)sockfd, NULL, POLLIN);
2474
Andy Green8f037e42010-12-19 22:13:26 +00002475 }
Andy Greenb45993c2010-12-18 15:13:50 +00002476
Andy Greene77ddd82010-11-13 10:03:47 +00002477 /* drop any root privs for this process */
Peter Hinz56885f32011-03-02 22:03:47 +00002478#ifdef WIN32
2479#else
Andy Green3faa9c72010-11-08 17:03:03 +00002480 if (gid != -1)
2481 if (setgid(gid))
2482 fprintf(stderr, "setgid: %s\n", strerror(errno));
2483 if (uid != -1)
2484 if (setuid(uid))
2485 fprintf(stderr, "setuid: %s\n", strerror(errno));
Peter Hinz56885f32011-03-02 22:03:47 +00002486#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002487
2488 /* set up our internal broadcast trigger sockets per-protocol */
2489
Peter Hinz56885f32011-03-02 22:03:47 +00002490 for (context->count_protocols = 0;
2491 protocols[context->count_protocols].callback;
2492 context->count_protocols++) {
2493 protocols[context->count_protocols].owning_server = context;
2494 protocols[context->count_protocols].protocol_index =
2495 context->count_protocols;
Andy Greenb45993c2010-12-18 15:13:50 +00002496
2497 fd = socket(AF_INET, SOCK_STREAM, 0);
2498 if (fd < 0) {
2499 fprintf(stderr, "ERROR opening socket");
Andy Greene92cd172011-01-19 13:11:55 +00002500 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002501 }
Andy Green8f037e42010-12-19 22:13:26 +00002502
Andy Greenb45993c2010-12-18 15:13:50 +00002503 /* allow us to restart even if old sockets in TIME_WAIT */
2504 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt));
2505
2506 bzero((char *) &serv_addr, sizeof(serv_addr));
2507 serv_addr.sin_family = AF_INET;
2508 serv_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
2509 serv_addr.sin_port = 0; /* pick the port for us */
2510
2511 n = bind(fd, (struct sockaddr *) &serv_addr, sizeof(serv_addr));
2512 if (n < 0) {
Andy Green8f037e42010-12-19 22:13:26 +00002513 fprintf(stderr, "ERROR on binding to port %d (%d %d)\n",
Andy Greenb45993c2010-12-18 15:13:50 +00002514 port, n, errno);
Andy Greene92cd172011-01-19 13:11:55 +00002515 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002516 }
2517
2518 slen = sizeof cli_addr;
2519 n = getsockname(fd, (struct sockaddr *)&cli_addr, &slen);
2520 if (n < 0) {
2521 fprintf(stderr, "getsockname failed\n");
Andy Greene92cd172011-01-19 13:11:55 +00002522 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002523 }
Peter Hinz56885f32011-03-02 22:03:47 +00002524 protocols[context->count_protocols].broadcast_socket_port =
Andy Greenb45993c2010-12-18 15:13:50 +00002525 ntohs(cli_addr.sin_port);
2526 listen(fd, 5);
2527
2528 debug(" Protocol %s broadcast socket %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002529 protocols[context->count_protocols].name,
Andy Greenb45993c2010-12-18 15:13:50 +00002530 ntohs(cli_addr.sin_port));
2531
Andy Green0d338332011-02-12 11:57:43 +00002532 /* dummy wsi per broadcast proxy socket */
2533
2534 wsi = malloc(sizeof(struct libwebsocket));
2535 memset(wsi, 0, sizeof (struct libwebsocket));
2536 wsi->sock = fd;
2537 wsi->mode = LWS_CONNMODE_BROADCAST_PROXY_LISTENER;
Andy Greend6e09112011-03-05 16:12:15 +00002538 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00002539 /* note which protocol we are proxying */
Peter Hinz56885f32011-03-02 22:03:47 +00002540 wsi->protocol_index_for_broadcast_proxy =
2541 context->count_protocols;
2542 insert_wsi(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002543
2544 /* list in internal poll array */
2545
Peter Hinz56885f32011-03-02 22:03:47 +00002546 context->fds[context->fds_count].fd = fd;
2547 context->fds[context->fds_count].events = POLLIN;
2548 context->fds[context->fds_count].revents = 0;
2549 context->fds_count++;
Andy Green3221f922011-02-12 13:14:11 +00002550
2551 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002552 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002553 LWS_CALLBACK_ADD_POLL_FD,
2554 (void *)(long)fd, NULL, POLLIN);
Andy Greenb45993c2010-12-18 15:13:50 +00002555 }
2556
Peter Hinz56885f32011-03-02 22:03:47 +00002557 return context;
Andy Greene92cd172011-01-19 13:11:55 +00002558}
Andy Greenb45993c2010-12-18 15:13:50 +00002559
Andy Green4739e5c2011-01-22 12:51:57 +00002560
Andy Greened11a022011-01-20 10:23:50 +00002561#ifndef LWS_NO_FORK
2562
Andy Greene92cd172011-01-19 13:11:55 +00002563/**
2564 * libwebsockets_fork_service_loop() - Optional helper function forks off
2565 * a process for the websocket server loop.
Andy Green6964bb52011-01-23 16:50:33 +00002566 * You don't have to use this but if not, you
2567 * have to make sure you are calling
2568 * libwebsocket_service periodically to service
2569 * the websocket traffic
Peter Hinz56885f32011-03-02 22:03:47 +00002570 * @context: server context returned by creation function
Andy Greene92cd172011-01-19 13:11:55 +00002571 */
Andy Greenb45993c2010-12-18 15:13:50 +00002572
Andy Greene92cd172011-01-19 13:11:55 +00002573int
Peter Hinz56885f32011-03-02 22:03:47 +00002574libwebsockets_fork_service_loop(struct libwebsocket_context *context)
Andy Greene92cd172011-01-19 13:11:55 +00002575{
Andy Greene92cd172011-01-19 13:11:55 +00002576 int fd;
2577 struct sockaddr_in cli_addr;
2578 int n;
Andy Green3221f922011-02-12 13:14:11 +00002579 int p;
Andy Greenb45993c2010-12-18 15:13:50 +00002580
Andy Greened11a022011-01-20 10:23:50 +00002581 n = fork();
2582 if (n < 0)
2583 return n;
2584
2585 if (!n) {
2586
2587 /* main process context */
2588
Andy Green3221f922011-02-12 13:14:11 +00002589 /*
2590 * set up the proxy sockets to allow broadcast from
2591 * service process context
2592 */
2593
Peter Hinz56885f32011-03-02 22:03:47 +00002594 for (p = 0; p < context->count_protocols; p++) {
Andy Greened11a022011-01-20 10:23:50 +00002595 fd = socket(AF_INET, SOCK_STREAM, 0);
2596 if (fd < 0) {
2597 fprintf(stderr, "Unable to create socket\n");
2598 return -1;
2599 }
2600 cli_addr.sin_family = AF_INET;
2601 cli_addr.sin_port = htons(
Peter Hinz56885f32011-03-02 22:03:47 +00002602 context->protocols[p].broadcast_socket_port);
Andy Greened11a022011-01-20 10:23:50 +00002603 cli_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
2604 n = connect(fd, (struct sockaddr *)&cli_addr,
2605 sizeof cli_addr);
2606 if (n < 0) {
2607 fprintf(stderr, "Unable to connect to "
2608 "broadcast socket %d, %s\n",
Andy Green3221f922011-02-12 13:14:11 +00002609 n, strerror(errno));
Andy Greened11a022011-01-20 10:23:50 +00002610 return -1;
2611 }
2612
Peter Hinz56885f32011-03-02 22:03:47 +00002613 context->protocols[p].broadcast_socket_user_fd = fd;
Andy Greened11a022011-01-20 10:23:50 +00002614 }
2615
Andy Greene92cd172011-01-19 13:11:55 +00002616 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +00002617 }
2618
2619 /* we want a SIGHUP when our parent goes down */
2620 prctl(PR_SET_PDEATHSIG, SIGHUP);
2621
2622 /* in this forked process, sit and service websocket connections */
Andy Green8f037e42010-12-19 22:13:26 +00002623
Andy Greene92cd172011-01-19 13:11:55 +00002624 while (1)
Peter Hinz56885f32011-03-02 22:03:47 +00002625 if (libwebsocket_service(context, 1000))
Andy Greene92cd172011-01-19 13:11:55 +00002626 return -1;
Andy Green8f037e42010-12-19 22:13:26 +00002627
Andy Green251f6fa2010-11-03 11:13:06 +00002628 return 0;
Andy Greenff95d7a2010-10-28 22:36:01 +01002629}
2630
Andy Greened11a022011-01-20 10:23:50 +00002631#endif
2632
Andy Greenb45993c2010-12-18 15:13:50 +00002633/**
2634 * libwebsockets_get_protocol() - Returns a protocol pointer from a websocket
Andy Green8f037e42010-12-19 22:13:26 +00002635 * connection.
Andy Greenb45993c2010-12-18 15:13:50 +00002636 * @wsi: pointer to struct websocket you want to know the protocol of
2637 *
Andy Green8f037e42010-12-19 22:13:26 +00002638 *
2639 * This is useful to get the protocol to broadcast back to from inside
Andy Greenb45993c2010-12-18 15:13:50 +00002640 * the callback.
2641 */
Andy Greenab990e42010-10-31 12:42:52 +00002642
Andy Greenb45993c2010-12-18 15:13:50 +00002643const struct libwebsocket_protocols *
2644libwebsockets_get_protocol(struct libwebsocket *wsi)
2645{
2646 return wsi->protocol;
2647}
2648
2649/**
Andy Greene92cd172011-01-19 13:11:55 +00002650 * libwebsockets_broadcast() - Sends a buffer to the callback for all active
Andy Green8f037e42010-12-19 22:13:26 +00002651 * connections of the given protocol.
Andy Greenb45993c2010-12-18 15:13:50 +00002652 * @protocol: pointer to the protocol you will broadcast to all members of
2653 * @buf: buffer containing the data to be broadcase. NOTE: this has to be
Andy Green8f037e42010-12-19 22:13:26 +00002654 * allocated with LWS_SEND_BUFFER_PRE_PADDING valid bytes before
2655 * the pointer and LWS_SEND_BUFFER_POST_PADDING afterwards in the
2656 * case you are calling this function from callback context.
Andy Greenb45993c2010-12-18 15:13:50 +00002657 * @len: length of payload data in buf, starting from buf.
Andy Green8f037e42010-12-19 22:13:26 +00002658 *
2659 * This function allows bulk sending of a packet to every connection using
Andy Greenb45993c2010-12-18 15:13:50 +00002660 * the given protocol. It does not send the data directly; instead it calls
2661 * the callback with a reason type of LWS_CALLBACK_BROADCAST. If the callback
2662 * wants to actually send the data for that connection, the callback itself
2663 * should call libwebsocket_write().
2664 *
2665 * libwebsockets_broadcast() can be called from another fork context without
2666 * having to take any care about data visibility between the processes, it'll
2667 * "just work".
2668 */
2669
2670
2671int
Andy Green8f037e42010-12-19 22:13:26 +00002672libwebsockets_broadcast(const struct libwebsocket_protocols *protocol,
Andy Greenb45993c2010-12-18 15:13:50 +00002673 unsigned char *buf, size_t len)
2674{
Peter Hinz56885f32011-03-02 22:03:47 +00002675 struct libwebsocket_context *context = protocol->owning_server;
Andy Greenb45993c2010-12-18 15:13:50 +00002676 int n;
Andy Green0d338332011-02-12 11:57:43 +00002677 int m;
2678 struct libwebsocket * wsi;
Andy Greenb45993c2010-12-18 15:13:50 +00002679
2680 if (!protocol->broadcast_socket_user_fd) {
2681 /*
Andy Greene92cd172011-01-19 13:11:55 +00002682 * We are either running unforked / flat, or we are being
2683 * called from poll thread context
Andy Greenb45993c2010-12-18 15:13:50 +00002684 * eg, from a callback. In that case don't use sockets for
2685 * broadcast IPC (since we can't open a socket connection to
2686 * a socket listening on our own thread) but directly do the
2687 * send action.
2688 *
2689 * Locking is not needed because we are by definition being
2690 * called in the poll thread context and are serialized.
2691 */
2692
Andy Green0d338332011-02-12 11:57:43 +00002693 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
Andy Greenb45993c2010-12-18 15:13:50 +00002694
Peter Hinz56885f32011-03-02 22:03:47 +00002695 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Greenb45993c2010-12-18 15:13:50 +00002696
Peter Hinz56885f32011-03-02 22:03:47 +00002697 wsi = context->fd_hashtable[n].wsi[m];
Andy Greenb45993c2010-12-18 15:13:50 +00002698
Andy Green0d338332011-02-12 11:57:43 +00002699 if (wsi->mode != LWS_CONNMODE_WS_SERVING)
2700 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00002701
Andy Green0d338332011-02-12 11:57:43 +00002702 /*
2703 * never broadcast to
2704 * non-established connections
2705 */
2706 if (wsi->state != WSI_STATE_ESTABLISHED)
2707 continue;
2708
2709 /* only broadcast to guys using
2710 * requested protocol
2711 */
2712 if (wsi->protocol != protocol)
2713 continue;
2714
Peter Hinz56885f32011-03-02 22:03:47 +00002715 wsi->protocol->callback(context, wsi,
Andy Green8f037e42010-12-19 22:13:26 +00002716 LWS_CALLBACK_BROADCAST,
Andy Green0d338332011-02-12 11:57:43 +00002717 wsi->user_space,
Andy Greenb45993c2010-12-18 15:13:50 +00002718 buf, len);
Andy Green0d338332011-02-12 11:57:43 +00002719 }
Andy Greenb45993c2010-12-18 15:13:50 +00002720 }
2721
2722 return 0;
2723 }
2724
Andy Green0ca6a172010-12-19 20:50:01 +00002725 /*
2726 * We're being called from a different process context than the server
2727 * loop. Instead of broadcasting directly, we send our
2728 * payload on a socket to do the IPC; the server process will serialize
2729 * the broadcast action in its main poll() loop.
2730 *
2731 * There's one broadcast socket listening for each protocol supported
2732 * set up when the websocket server initializes
2733 */
2734
Andy Green6964bb52011-01-23 16:50:33 +00002735 n = send(protocol->broadcast_socket_user_fd, buf, len, MSG_NOSIGNAL);
Andy Greenb45993c2010-12-18 15:13:50 +00002736
2737 return n;
2738}
Andy Green82c3d542011-03-07 21:16:31 +00002739
2740int
2741libwebsocket_is_final_fragment(struct libwebsocket *wsi)
2742{
2743 return wsi->final;
2744}