blob: 06f5c0663c7c2ab126db1e78ad2d998a30ef0613 [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>
Andy Greena69f0512012-05-03 12:32:38 +080029#include <sys/socket.h>
30#include <netdb.h>
Peter Hinz56885f32011-03-02 22:03:47 +000031#endif
Andy Green2e24da02011-03-05 16:12:04 +000032
33#ifdef LWS_OPENSSL_SUPPORT
34int openssl_websocket_private_data_index;
35#endif
36
Andy Greenaa6fc442012-04-12 13:26:49 +080037#ifdef __MINGW32__
38#include "../win32port/win32helpers/websock-w32.c"
39#else
40#ifdef __MINGW64__
41#include "../win32port/win32helpers/websock-w32.c"
42#endif
43#endif
44
Andy Greenbe93fef2011-02-14 20:25:43 +000045/*
46 * In-place str to lower case
47 */
48
49static void
50strtolower(char *s)
51{
52 while (*s) {
53 *s = tolower(*s);
54 s++;
55 }
56}
57
Andy Green0d338332011-02-12 11:57:43 +000058/* file descriptor hash management */
59
60struct libwebsocket *
Peter Hinz56885f32011-03-02 22:03:47 +000061wsi_from_fd(struct libwebsocket_context *context, int fd)
Andy Green0d338332011-02-12 11:57:43 +000062{
63 int h = LWS_FD_HASH(fd);
64 int n = 0;
65
Peter Hinz56885f32011-03-02 22:03:47 +000066 for (n = 0; n < context->fd_hashtable[h].length; n++)
67 if (context->fd_hashtable[h].wsi[n]->sock == fd)
68 return context->fd_hashtable[h].wsi[n];
Andy Green0d338332011-02-12 11:57:43 +000069
70 return NULL;
71}
72
73int
Peter Hinz56885f32011-03-02 22:03:47 +000074insert_wsi(struct libwebsocket_context *context, struct libwebsocket *wsi)
Andy Green0d338332011-02-12 11:57:43 +000075{
76 int h = LWS_FD_HASH(wsi->sock);
77
Peter Hinz56885f32011-03-02 22:03:47 +000078 if (context->fd_hashtable[h].length == MAX_CLIENTS - 1) {
Andy Green0d338332011-02-12 11:57:43 +000079 fprintf(stderr, "hash table overflow\n");
80 return 1;
81 }
82
Peter Hinz56885f32011-03-02 22:03:47 +000083 context->fd_hashtable[h].wsi[context->fd_hashtable[h].length++] = wsi;
Andy Green0d338332011-02-12 11:57:43 +000084
85 return 0;
86}
87
88int
Peter Hinz56885f32011-03-02 22:03:47 +000089delete_from_fd(struct libwebsocket_context *context, int fd)
Andy Green0d338332011-02-12 11:57:43 +000090{
91 int h = LWS_FD_HASH(fd);
92 int n = 0;
93
Peter Hinz56885f32011-03-02 22:03:47 +000094 for (n = 0; n < context->fd_hashtable[h].length; n++)
95 if (context->fd_hashtable[h].wsi[n]->sock == fd) {
96 while (n < context->fd_hashtable[h].length) {
97 context->fd_hashtable[h].wsi[n] =
98 context->fd_hashtable[h].wsi[n + 1];
Andy Green0d338332011-02-12 11:57:43 +000099 n++;
100 }
Peter Hinz56885f32011-03-02 22:03:47 +0000101 context->fd_hashtable[h].length--;
Andy Green0d338332011-02-12 11:57:43 +0000102
103 return 0;
104 }
105
106 fprintf(stderr, "Failed to find fd %d requested for "
107 "delete in hashtable\n", fd);
108 return 1;
109}
110
Andy Green1f9bf522011-02-14 21:14:37 +0000111#ifdef LWS_OPENSSL_SUPPORT
112static void
113libwebsockets_decode_ssl_error(void)
114{
115 char buf[256];
116 u_long err;
117
118 while ((err = ERR_get_error()) != 0) {
119 ERR_error_string_n(err, buf, sizeof(buf));
120 fprintf(stderr, "*** %s\n", buf);
121 }
122}
123#endif
Andy Green0d338332011-02-12 11:57:43 +0000124
Andy Green32375b72011-02-19 08:32:53 +0000125
126static int
Andy Green6ee372f2012-04-09 15:09:01 +0800127interface_to_sa(const char *ifname, struct sockaddr_in *addr, size_t addrlen)
Andy Green32375b72011-02-19 08:32:53 +0000128{
129 int rc = -1;
Peter Hinz56885f32011-03-02 22:03:47 +0000130#ifdef WIN32
Andy Green6ee372f2012-04-09 15:09:01 +0800131 /* TODO */
Peter Hinz56885f32011-03-02 22:03:47 +0000132#else
Andy Green32375b72011-02-19 08:32:53 +0000133 struct ifaddrs *ifr;
134 struct ifaddrs *ifc;
135 struct sockaddr_in *sin;
136
137 getifaddrs(&ifr);
138 for (ifc = ifr; ifc != NULL; ifc = ifc->ifa_next) {
139 if (strcmp(ifc->ifa_name, ifname))
140 continue;
141 if (ifc->ifa_addr == NULL)
142 continue;
143 sin = (struct sockaddr_in *)ifc->ifa_addr;
144 if (sin->sin_family != AF_INET)
145 continue;
146 memcpy(addr, sin, addrlen);
Andy Green6ee372f2012-04-09 15:09:01 +0800147 rc = 0;
Andy Green32375b72011-02-19 08:32:53 +0000148 }
149
150 freeifaddrs(ifr);
Peter Hinz56885f32011-03-02 22:03:47 +0000151#endif
Andy Green32375b72011-02-19 08:32:53 +0000152 return rc;
153}
154
Andy Green8f037e42010-12-19 22:13:26 +0000155void
Peter Hinz56885f32011-03-02 22:03:47 +0000156libwebsocket_close_and_free_session(struct libwebsocket_context *context,
Andy Green687b0182011-02-26 11:04:01 +0000157 struct libwebsocket *wsi, enum lws_close_status reason)
Andy Green251f6fa2010-11-03 11:13:06 +0000158{
Andy Greenb45993c2010-12-18 15:13:50 +0000159 int n;
Andy Green62c54d22011-02-14 09:14:25 +0000160 int old_state;
Andy Green5e1fa172011-02-10 09:07:05 +0000161 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 2 +
162 LWS_SEND_BUFFER_POST_PADDING];
Andy Greenc44159f2011-03-07 07:08:18 +0000163 int ret;
164 int m;
165 struct lws_tokens eff_buf;
Andy Greena41314f2011-05-23 10:00:03 +0100166 struct libwebsocket_extension *ext;
Andy Greenb45993c2010-12-18 15:13:50 +0000167
Andy Green4b6fbe12011-02-14 08:03:48 +0000168 if (!wsi)
Andy Greenb45993c2010-12-18 15:13:50 +0000169 return;
170
Andy Green62c54d22011-02-14 09:14:25 +0000171 old_state = wsi->state;
Andy Green251f6fa2010-11-03 11:13:06 +0000172
Andy Green62c54d22011-02-14 09:14:25 +0000173 if (old_state == WSI_STATE_DEAD_SOCKET)
Andy Green5e1fa172011-02-10 09:07:05 +0000174 return;
175
Andy Greenda527df2011-03-07 07:08:12 +0000176 wsi->close_reason = reason;
177
178 /*
Andy Green68b45042011-05-25 21:41:57 +0100179 * are his extensions okay with him closing? Eg he might be a mux
180 * parent and just his ch1 aspect is closing?
181 */
182
183
184 for (n = 0; n < wsi->count_active_extensions; n++) {
185 if (!wsi->active_extensions[n]->callback)
186 continue;
187
188 m = wsi->active_extensions[n]->callback(context,
189 wsi->active_extensions[n], wsi,
190 LWS_EXT_CALLBACK_CHECK_OK_TO_REALLY_CLOSE,
191 wsi->active_extensions_user[n], NULL, 0);
192
193 /*
194 * if somebody vetoed actually closing him at this time....
195 * up to the extension to track the attempted close, let's
196 * just bail
197 */
198
199 if (m) {
Andy Greencc012472011-11-07 19:53:23 +0800200 debug("extension vetoed close\n");
Andy Green68b45042011-05-25 21:41:57 +0100201 return;
202 }
203 }
204
205
206
207 /*
Andy Greenc44159f2011-03-07 07:08:18 +0000208 * flush any tx pending from extensions, since we may send close packet
209 * if there are problems with send, just nuke the connection
210 */
211
212 ret = 1;
213 while (ret == 1) {
214
215 /* default to nobody has more to spill */
216
217 ret = 0;
218 eff_buf.token = NULL;
219 eff_buf.token_len = 0;
220
221 /* show every extension the new incoming data */
222
223 for (n = 0; n < wsi->count_active_extensions; n++) {
224 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000225 wsi->protocol->owning_server,
226 wsi->active_extensions[n], wsi,
Andy Greenc44159f2011-03-07 07:08:18 +0000227 LWS_EXT_CALLBACK_FLUSH_PENDING_TX,
228 wsi->active_extensions_user[n], &eff_buf, 0);
229 if (m < 0) {
230 fprintf(stderr, "Extension reports "
231 "fatal error\n");
232 goto just_kill_connection;
233 }
234 if (m)
235 /*
236 * at least one extension told us he has more
237 * to spill, so we will go around again after
238 */
239 ret = 1;
240 }
241
242 /* assuming they left us something to send, send it */
243
244 if (eff_buf.token_len)
245 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
246 eff_buf.token_len))
247 goto just_kill_connection;
248 }
249
250 /*
Andy Greenda527df2011-03-07 07:08:12 +0000251 * signal we are closing, libsocket_write will
252 * add any necessary version-specific stuff. If the write fails,
253 * no worries we are closing anyway. If we didn't initiate this
254 * close, then our state has been changed to
255 * WSI_STATE_RETURNED_CLOSE_ALREADY and we will skip this.
256 *
257 * Likewise if it's a second call to close this connection after we
258 * sent the close indication to the peer already, we are in state
259 * WSI_STATE_AWAITING_CLOSE_ACK and will skip doing this a second time.
260 */
261
262 if (old_state == WSI_STATE_ESTABLISHED &&
263 reason != LWS_CLOSE_STATUS_NOSTATUS) {
Andy Green66a16f32011-05-24 22:07:45 +0100264
Andy Greencc012472011-11-07 19:53:23 +0800265 debug("sending close indication...\n");
Andy Green66a16f32011-05-24 22:07:45 +0100266
Andy Greenda527df2011-03-07 07:08:12 +0000267 n = libwebsocket_write(wsi, &buf[LWS_SEND_BUFFER_PRE_PADDING],
268 0, LWS_WRITE_CLOSE);
269 if (!n) {
270 /*
271 * we have sent a nice protocol level indication we
272 * now wish to close, we should not send anything more
273 */
274
275 wsi->state = WSI_STATE_AWAITING_CLOSE_ACK;
276
277 /* and we should wait for a reply for a bit */
278
279 libwebsocket_set_timeout(wsi,
280 PENDING_TIMEOUT_CLOSE_ACK, 5);
281
Andy Greencc012472011-11-07 19:53:23 +0800282 debug("sent close indication, awaiting ack\n");
Andy Greenda527df2011-03-07 07:08:12 +0000283
284 return;
285 }
286
287 /* else, the send failed and we should just hang up */
288 }
289
Andy Greenc44159f2011-03-07 07:08:18 +0000290just_kill_connection:
Andy Green66a16f32011-05-24 22:07:45 +0100291
Andy Greencc012472011-11-07 19:53:23 +0800292 debug("libwebsocket_close_and_free_session: just_kill_connection\n");
Andy Green66a16f32011-05-24 22:07:45 +0100293
Andy Greenda527df2011-03-07 07:08:12 +0000294 /*
295 * we won't be servicing or receiving anything further from this guy
296 * remove this fd from wsi mapping hashtable
297 */
Andy Green4b6fbe12011-02-14 08:03:48 +0000298
Andy Greena41314f2011-05-23 10:00:03 +0100299 if (wsi->sock)
300 delete_from_fd(context, wsi->sock);
Andy Green4b6fbe12011-02-14 08:03:48 +0000301
302 /* delete it from the internal poll list if still present */
303
Peter Hinz56885f32011-03-02 22:03:47 +0000304 for (n = 0; n < context->fds_count; n++) {
305 if (context->fds[n].fd != wsi->sock)
Andy Green4b6fbe12011-02-14 08:03:48 +0000306 continue;
Peter Hinz56885f32011-03-02 22:03:47 +0000307 while (n < context->fds_count - 1) {
308 context->fds[n] = context->fds[n + 1];
Andy Green4b6fbe12011-02-14 08:03:48 +0000309 n++;
310 }
Peter Hinz56885f32011-03-02 22:03:47 +0000311 context->fds_count--;
Andy Green4b6fbe12011-02-14 08:03:48 +0000312 /* we only have to deal with one */
Peter Hinz56885f32011-03-02 22:03:47 +0000313 n = context->fds_count;
Andy Green4b6fbe12011-02-14 08:03:48 +0000314 }
315
316 /* remove also from external POLL support via protocol 0 */
Andy Greena41314f2011-05-23 10:00:03 +0100317 if (wsi->sock)
318 context->protocols[0].callback(context, wsi,
Andy Green4b6fbe12011-02-14 08:03:48 +0000319 LWS_CALLBACK_DEL_POLL_FD, (void *)(long)wsi->sock, NULL, 0);
320
Andy Green251f6fa2010-11-03 11:13:06 +0000321 wsi->state = WSI_STATE_DEAD_SOCKET;
322
Andy Green4b6fbe12011-02-14 08:03:48 +0000323 /* tell the user it's all over for this guy */
324
Andy Greend4302732011-02-28 07:45:29 +0000325 if (wsi->protocol && wsi->protocol->callback &&
Andy Green6ee372f2012-04-09 15:09:01 +0800326 ((old_state == WSI_STATE_ESTABLISHED) ||
327 (old_state == WSI_STATE_RETURNED_CLOSE_ALREADY) ||
328 (old_state == WSI_STATE_AWAITING_CLOSE_ACK))) {
Andy Greencc012472011-11-07 19:53:23 +0800329 debug("calling back CLOSED\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000330 wsi->protocol->callback(context, wsi, LWS_CALLBACK_CLOSED,
Andy Greene77ddd82010-11-13 10:03:47 +0000331 wsi->user_space, NULL, 0);
Andy Greencc012472011-11-07 19:53:23 +0800332 } else
Andy Green6ee372f2012-04-09 15:09:01 +0800333 debug("not calling back closed, old_state=%d\n", old_state);
Andy Green251f6fa2010-11-03 11:13:06 +0000334
Andy Greenef660a92011-03-06 10:29:38 +0000335 /* deallocate any active extension contexts */
336
337 for (n = 0; n < wsi->count_active_extensions; n++) {
338 if (!wsi->active_extensions[n]->callback)
339 continue;
340
Andy Green46c2ea02011-03-22 09:04:01 +0000341 wsi->active_extensions[n]->callback(context,
342 wsi->active_extensions[n], wsi,
343 LWS_EXT_CALLBACK_DESTROY,
344 wsi->active_extensions_user[n], NULL, 0);
Andy Greenef660a92011-03-06 10:29:38 +0000345
346 free(wsi->active_extensions_user[n]);
347 }
348
Andy Greena41314f2011-05-23 10:00:03 +0100349 /*
350 * inform all extensions in case they tracked this guy out of band
351 * even though not active on him specifically
352 */
353
354 ext = context->extensions;
355 while (ext && ext->callback) {
356 ext->callback(context, ext, wsi,
357 LWS_EXT_CALLBACK_DESTROY_ANY_WSI_CLOSING,
358 NULL, NULL, 0);
359 ext++;
360 }
361
Andy Greenef660a92011-03-06 10:29:38 +0000362 /* free up his parsing allocations */
Andy Green4b6fbe12011-02-14 08:03:48 +0000363
Andy Green251f6fa2010-11-03 11:13:06 +0000364 for (n = 0; n < WSI_TOKEN_COUNT; n++)
365 if (wsi->utf8_token[n].token)
366 free(wsi->utf8_token[n].token);
367
Andy Greena41314f2011-05-23 10:00:03 +0100368 if (wsi->c_address)
369 free(wsi->c_address);
370
Andy Green0ca6a172010-12-19 20:50:01 +0000371/* fprintf(stderr, "closing fd=%d\n", wsi->sock); */
Andy Green251f6fa2010-11-03 11:13:06 +0000372
Andy Green3faa9c72010-11-08 17:03:03 +0000373#ifdef LWS_OPENSSL_SUPPORT
Andy Green90c7cbc2011-01-27 06:26:52 +0000374 if (wsi->ssl) {
Andy Green3faa9c72010-11-08 17:03:03 +0000375 n = SSL_get_fd(wsi->ssl);
376 SSL_shutdown(wsi->ssl);
Peter Hinz56885f32011-03-02 22:03:47 +0000377#ifdef WIN32
378 closesocket(n);
379#else
Andy Green3faa9c72010-11-08 17:03:03 +0000380 close(n);
Peter Hinz56885f32011-03-02 22:03:47 +0000381#endif
Andy Green3faa9c72010-11-08 17:03:03 +0000382 SSL_free(wsi->ssl);
383 } else {
384#endif
385 shutdown(wsi->sock, SHUT_RDWR);
Peter Hinz56885f32011-03-02 22:03:47 +0000386#ifdef WIN32
Andy Green66a16f32011-05-24 22:07:45 +0100387 if (wsi->sock)
388 closesocket(wsi->sock);
Peter Hinz56885f32011-03-02 22:03:47 +0000389#else
Andy Green66a16f32011-05-24 22:07:45 +0100390 if (wsi->sock)
391 close(wsi->sock);
Peter Hinz56885f32011-03-02 22:03:47 +0000392#endif
Andy Green3faa9c72010-11-08 17:03:03 +0000393#ifdef LWS_OPENSSL_SUPPORT
394 }
395#endif
David Brooks2c60d952012-04-20 12:19:01 +0800396 if (wsi->protocol && wsi->protocol->per_session_data_size && wsi->user_space) /* user code may own */
Andy Green4f3943a2010-11-12 10:44:16 +0000397 free(wsi->user_space);
398
Andy Green251f6fa2010-11-03 11:13:06 +0000399 free(wsi);
400}
401
Andy Green07034092011-02-13 08:37:12 +0000402/**
Andy Greenf7ee5492011-02-13 09:04:21 +0000403 * libwebsockets_hangup_on_client() - Server calls to terminate client
Andy Green6ee372f2012-04-09 15:09:01 +0800404 * connection
Peter Hinz56885f32011-03-02 22:03:47 +0000405 * @context: libwebsockets context
Andy Greenf7ee5492011-02-13 09:04:21 +0000406 * @fd: Connection socket descriptor
407 */
408
409void
Peter Hinz56885f32011-03-02 22:03:47 +0000410libwebsockets_hangup_on_client(struct libwebsocket_context *context, int fd)
Andy Greenf7ee5492011-02-13 09:04:21 +0000411{
Peter Hinz56885f32011-03-02 22:03:47 +0000412 struct libwebsocket *wsi = wsi_from_fd(context, fd);
Andy Greenf7ee5492011-02-13 09:04:21 +0000413
414 if (wsi == NULL)
415 return;
416
Peter Hinz56885f32011-03-02 22:03:47 +0000417 libwebsocket_close_and_free_session(context, wsi,
Andy Green6da560c2011-02-26 11:06:27 +0000418 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenf7ee5492011-02-13 09:04:21 +0000419}
420
421
422/**
Andy Green07034092011-02-13 08:37:12 +0000423 * libwebsockets_get_peer_addresses() - Get client address information
424 * @fd: Connection socket descriptor
425 * @name: Buffer to take client address name
426 * @name_len: Length of client address name buffer
427 * @rip: Buffer to take client address IP qotted quad
428 * @rip_len: Length of client address IP buffer
429 *
430 * This function fills in @name and @rip with the name and IP of
Andy Green6ee372f2012-04-09 15:09:01 +0800431 * the client connected with socket descriptor @fd. Names may be
432 * truncated if there is not enough room. If either cannot be
433 * determined, they will be returned as valid zero-length strings.
Andy Green07034092011-02-13 08:37:12 +0000434 */
435
436void
437libwebsockets_get_peer_addresses(int fd, char *name, int name_len,
438 char *rip, int rip_len)
439{
440 unsigned int len;
441 struct sockaddr_in sin;
442 struct hostent *host;
443 struct hostent *host1;
444 char ip[128];
Andy Greenf92def72011-03-09 15:02:20 +0000445 unsigned char *p;
Andy Green07034092011-02-13 08:37:12 +0000446 int n;
Andy Green7627af52011-03-09 15:13:52 +0000447 struct sockaddr_un *un;
Andy Green07034092011-02-13 08:37:12 +0000448
449 rip[0] = '\0';
450 name[0] = '\0';
451
452 len = sizeof sin;
453 if (getpeername(fd, (struct sockaddr *) &sin, &len) < 0) {
454 perror("getpeername");
455 return;
456 }
Andy Green6ee372f2012-04-09 15:09:01 +0800457
Andy Green07034092011-02-13 08:37:12 +0000458 host = gethostbyaddr((char *) &sin.sin_addr, sizeof sin.sin_addr,
459 AF_INET);
460 if (host == NULL) {
461 perror("gethostbyaddr");
462 return;
463 }
464
465 strncpy(name, host->h_name, name_len);
466 name[name_len - 1] = '\0';
467
468 host1 = gethostbyname(host->h_name);
469 if (host1 == NULL)
470 return;
Andy Greenf92def72011-03-09 15:02:20 +0000471 p = (unsigned char *)host1;
Andy Green07034092011-02-13 08:37:12 +0000472 n = 0;
473 while (p != NULL) {
Andy Greenf92def72011-03-09 15:02:20 +0000474 p = (unsigned char *)host1->h_addr_list[n++];
Andy Green07034092011-02-13 08:37:12 +0000475 if (p == NULL)
476 continue;
Peter Hinzbb45a902011-03-10 18:14:01 +0000477 if ((host1->h_addrtype != AF_INET)
478#ifdef AF_LOCAL
479 && (host1->h_addrtype != AF_LOCAL)
480#endif
481 )
Andy Green07034092011-02-13 08:37:12 +0000482 continue;
483
Andy Green7627af52011-03-09 15:13:52 +0000484 if (host1->h_addrtype == AF_INET)
485 sprintf(ip, "%u.%u.%u.%u", p[0], p[1], p[2], p[3]);
Peter Hinzbb45a902011-03-10 18:14:01 +0000486#ifdef AF_LOCAL
Andy Green7627af52011-03-09 15:13:52 +0000487 else {
488 un = (struct sockaddr_un *)p;
Andy Green6ee372f2012-04-09 15:09:01 +0800489 strncpy(ip, un->sun_path, sizeof(ip) - 1);
Andy Green7627af52011-03-09 15:13:52 +0000490 ip[sizeof(ip) - 1] = '\0';
491 }
Peter Hinzbb45a902011-03-10 18:14:01 +0000492#endif
Andy Green07034092011-02-13 08:37:12 +0000493 p = NULL;
494 strncpy(rip, ip, rip_len);
495 rip[rip_len - 1] = '\0';
496 }
497}
Andy Green9f990342011-02-12 11:57:45 +0000498
Peter Hinz56885f32011-03-02 22:03:47 +0000499int libwebsockets_get_random(struct libwebsocket_context *context,
500 void *buf, int len)
501{
502 int n;
503 char *p = buf;
504
505#ifdef WIN32
506 for (n = 0; n < len; n++)
507 p[n] = (unsigned char)rand();
508#else
509 n = read(context->fd_random, p, len);
510#endif
511
512 return n;
513}
514
Andy Green2836c642011-03-07 20:47:41 +0000515unsigned char *
516libwebsockets_SHA1(const unsigned char *d, size_t n, unsigned char *md)
517{
518 return SHA1(d, n, md);
519}
520
Andy Greeneeaacb32011-03-01 20:44:24 +0000521void libwebsockets_00_spaceout(char *key, int spaces, int seed)
522{
523 char *p;
Andy Green6ee372f2012-04-09 15:09:01 +0800524
Andy Greeneeaacb32011-03-01 20:44:24 +0000525 key++;
526 while (spaces--) {
527 if (*key && (seed & 1))
528 key++;
529 seed >>= 1;
Andy Green6ee372f2012-04-09 15:09:01 +0800530
Andy Greeneeaacb32011-03-01 20:44:24 +0000531 p = key + strlen(key);
532 while (p >= key) {
533 p[1] = p[0];
534 p--;
535 }
536 *key++ = ' ';
537 }
538}
539
540void libwebsockets_00_spam(char *key, int count, int seed)
541{
542 char *p;
543
544 key++;
545 while (count--) {
Andy Green6ee372f2012-04-09 15:09:01 +0800546
Andy Greeneeaacb32011-03-01 20:44:24 +0000547 if (*key && (seed & 1))
548 key++;
549 seed >>= 1;
550
551 p = key + strlen(key);
552 while (p >= key) {
553 p[1] = p[0];
554 p--;
555 }
556 *key++ = 0x21 + ((seed & 0xffff) % 15);
557 /* 4 would use it up too fast.. not like it matters */
558 seed >>= 1;
559 }
560}
561
Andy Green95a7b5d2011-03-06 10:29:39 +0000562int lws_send_pipe_choked(struct libwebsocket *wsi)
563{
564 struct pollfd fds;
565
566 fds.fd = wsi->sock;
567 fds.events = POLLOUT;
568 fds.revents = 0;
569
570 if (poll(&fds, 1, 0) != 1)
571 return 1;
572
573 if ((fds.revents & POLLOUT) == 0)
574 return 1;
575
576 /* okay to send another packet without blocking */
577
578 return 0;
579}
580
Andy Greena41314f2011-05-23 10:00:03 +0100581int
Andy Green3b84c002011-03-06 13:14:42 +0000582lws_handle_POLLOUT_event(struct libwebsocket_context *context,
583 struct libwebsocket *wsi, struct pollfd *pollfd)
584{
585 struct lws_tokens eff_buf;
586 int n;
587 int ret;
588 int m;
Andy Greena41314f2011-05-23 10:00:03 +0100589 int handled = 0;
Andy Green3b84c002011-03-06 13:14:42 +0000590
Andy Greena41314f2011-05-23 10:00:03 +0100591 for (n = 0; n < wsi->count_active_extensions; n++) {
592 if (!wsi->active_extensions[n]->callback)
593 continue;
594
595 m = wsi->active_extensions[n]->callback(context,
596 wsi->active_extensions[n], wsi,
597 LWS_EXT_CALLBACK_IS_WRITEABLE,
598 wsi->active_extensions_user[n], NULL, 0);
599 if (m > handled)
600 handled = m;
601 }
602
603 if (handled == 1)
604 goto notify_action;
605
606 if (!wsi->extension_data_pending || handled == 2)
Andy Green3b84c002011-03-06 13:14:42 +0000607 goto user_service;
608
609 /*
610 * check in on the active extensions, see if they
611 * had pending stuff to spill... they need to get the
612 * first look-in otherwise sequence will be disordered
613 *
614 * NULL, zero-length eff_buf means just spill pending
615 */
616
617 ret = 1;
618 while (ret == 1) {
619
620 /* default to nobody has more to spill */
621
622 ret = 0;
623 eff_buf.token = NULL;
624 eff_buf.token_len = 0;
625
626 /* give every extension a chance to spill */
627
628 for (n = 0; n < wsi->count_active_extensions; n++) {
629 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000630 wsi->protocol->owning_server,
631 wsi->active_extensions[n], wsi,
Andy Green3b84c002011-03-06 13:14:42 +0000632 LWS_EXT_CALLBACK_PACKET_TX_PRESEND,
633 wsi->active_extensions_user[n], &eff_buf, 0);
634 if (m < 0) {
Andy Green6ee372f2012-04-09 15:09:01 +0800635 fprintf(stderr, "ext reports fatal error\n");
Andy Green3b84c002011-03-06 13:14:42 +0000636 return -1;
637 }
638 if (m)
639 /*
640 * at least one extension told us he has more
641 * to spill, so we will go around again after
642 */
643 ret = 1;
644 }
645
646 /* assuming they gave us something to send, send it */
647
648 if (eff_buf.token_len) {
649 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
650 eff_buf.token_len))
651 return -1;
652 } else
653 continue;
654
655 /* no extension has more to spill */
656
657 if (!ret)
658 continue;
659
660 /*
661 * There's more to spill from an extension, but we just sent
662 * something... did that leave the pipe choked?
663 */
664
665 if (!lws_send_pipe_choked(wsi))
666 /* no we could add more */
667 continue;
668
Andy Greencc012472011-11-07 19:53:23 +0800669 debug("choked in POLLOUT service\n");
Andy Green3b84c002011-03-06 13:14:42 +0000670
671 /*
672 * Yes, he's choked. Leave the POLLOUT masked on so we will
673 * come back here when he is unchoked. Don't call the user
674 * callback to enforce ordering of spilling, he'll get called
675 * when we come back here and there's nothing more to spill.
676 */
677
678 return 0;
679 }
680
681 wsi->extension_data_pending = 0;
682
683user_service:
684 /* one shot */
685
Andy Greena41314f2011-05-23 10:00:03 +0100686 if (pollfd) {
687 pollfd->events &= ~POLLOUT;
Andy Green3b84c002011-03-06 13:14:42 +0000688
Andy Greena41314f2011-05-23 10:00:03 +0100689 /* external POLL support via protocol 0 */
690 context->protocols[0].callback(context, wsi,
691 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
692 (void *)(long)wsi->sock, NULL, POLLOUT);
693 }
694
695notify_action:
Andy Green3b84c002011-03-06 13:14:42 +0000696
Andy Green9e4c2b62011-03-07 20:47:39 +0000697 if (wsi->mode == LWS_CONNMODE_WS_CLIENT)
698 n = LWS_CALLBACK_CLIENT_WRITEABLE;
699 else
700 n = LWS_CALLBACK_SERVER_WRITEABLE;
701
702 wsi->protocol->callback(context, wsi, n, wsi->user_space, NULL, 0);
Andy Green3b84c002011-03-06 13:14:42 +0000703
704 return 0;
705}
706
707
708
Andy Greena41314f2011-05-23 10:00:03 +0100709void
710libwebsocket_service_timeout_check(struct libwebsocket_context *context,
711 struct libwebsocket *wsi, unsigned int sec)
712{
713 int n;
714
715 /*
716 * if extensions want in on it (eg, we are a mux parent)
717 * give them a chance to service child timeouts
718 */
719
720 for (n = 0; n < wsi->count_active_extensions; n++)
721 wsi->active_extensions[n]->callback(
722 context, wsi->active_extensions[n],
723 wsi, LWS_EXT_CALLBACK_1HZ,
724 wsi->active_extensions_user[n], NULL, sec);
725
726 if (!wsi->pending_timeout)
727 return;
Andy Green6ee372f2012-04-09 15:09:01 +0800728
Andy Greena41314f2011-05-23 10:00:03 +0100729 /*
730 * if we went beyond the allowed time, kill the
731 * connection
732 */
733
734 if (sec > wsi->pending_timeout_limit) {
Andy Greencc012472011-11-07 19:53:23 +0800735 debug("TIMEDOUT WAITING\n");
Andy Greena41314f2011-05-23 10:00:03 +0100736 libwebsocket_close_and_free_session(context,
737 wsi, LWS_CLOSE_STATUS_NOSTATUS);
738 }
739}
740
741struct libwebsocket *
742libwebsocket_create_new_server_wsi(struct libwebsocket_context *context)
743{
744 struct libwebsocket *new_wsi;
745 int n;
746
747 new_wsi = malloc(sizeof(struct libwebsocket));
748 if (new_wsi == NULL) {
749 fprintf(stderr, "Out of memory for new connection\n");
750 return NULL;
751 }
752
Andy Green6ee372f2012-04-09 15:09:01 +0800753 memset(new_wsi, 0, sizeof(struct libwebsocket));
Andy Greena41314f2011-05-23 10:00:03 +0100754 new_wsi->count_active_extensions = 0;
755 new_wsi->pending_timeout = NO_PENDING_TIMEOUT;
756
757 /* intialize the instance struct */
758
759 new_wsi->state = WSI_STATE_HTTP;
760 new_wsi->name_buffer_pos = 0;
761 new_wsi->mode = LWS_CONNMODE_WS_SERVING;
762
763 for (n = 0; n < WSI_TOKEN_COUNT; n++) {
764 new_wsi->utf8_token[n].token = NULL;
765 new_wsi->utf8_token[n].token_len = 0;
766 }
767
768 /*
769 * these can only be set once the protocol is known
770 * we set an unestablished connection's protocol pointer
771 * to the start of the supported list, so it can look
772 * for matching ones during the handshake
773 */
774 new_wsi->protocol = context->protocols;
775 new_wsi->user_space = NULL;
776
777 /*
778 * Default protocol is 76 / 00
779 * After 76, there's a header specified to inform which
780 * draft the client wants, when that's seen we modify
781 * the individual connection's spec revision accordingly
782 */
783 new_wsi->ietf_spec_revision = 0;
784
785 return new_wsi;
786}
787
788char *
789libwebsockets_generate_client_handshake(struct libwebsocket_context *context,
790 struct libwebsocket *wsi, char *pkt)
791{
792 char hash[20];
793 char *p = pkt;
794 int n;
795 struct libwebsocket_extension *ext;
Andy Green09226502011-05-28 10:19:19 +0100796 struct libwebsocket_extension *ext1;
Andy Greena41314f2011-05-23 10:00:03 +0100797 int ext_count = 0;
Andy Green6ee372f2012-04-09 15:09:01 +0800798 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 1 +
799 MAX_BROADCAST_PAYLOAD + LWS_SEND_BUFFER_POST_PADDING];
Andy Greena41314f2011-05-23 10:00:03 +0100800 static const char magic_websocket_guid[] =
801 "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
802
803 /*
804 * create the random key
805 */
806
807 n = libwebsockets_get_random(context, hash, 16);
808 if (n != 16) {
809 fprintf(stderr, "Unable to read from random dev %s\n",
810 SYSTEM_RANDOM_FILEPATH);
811 free(wsi->c_path);
812 free(wsi->c_host);
813 if (wsi->c_origin)
814 free(wsi->c_origin);
815 if (wsi->c_protocol)
816 free(wsi->c_protocol);
817 libwebsocket_close_and_free_session(context, wsi,
818 LWS_CLOSE_STATUS_NOSTATUS);
819 return NULL;
820 }
821
822 lws_b64_encode_string(hash, 16, wsi->key_b64,
823 sizeof wsi->key_b64);
824
825 /*
826 * 00 example client handshake
827 *
828 * GET /socket.io/websocket HTTP/1.1
829 * Upgrade: WebSocket
830 * Connection: Upgrade
831 * Host: 127.0.0.1:9999
832 * Origin: http://127.0.0.1
833 * Sec-WebSocket-Key1: 1 0 2#0W 9 89 7 92 ^
834 * Sec-WebSocket-Key2: 7 7Y 4328 B2v[8(z1
835 * Cookie: socketio=websocket
836 *
837 * (Á®Ä0¶†≥
838 *
839 * 04 example client handshake
840 *
841 * GET /chat HTTP/1.1
842 * Host: server.example.com
843 * Upgrade: websocket
844 * Connection: Upgrade
845 * Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
846 * Sec-WebSocket-Origin: http://example.com
847 * Sec-WebSocket-Protocol: chat, superchat
848 * Sec-WebSocket-Version: 4
849 */
850
851 p += sprintf(p, "GET %s HTTP/1.1\x0d\x0a", wsi->c_path);
852
853 if (wsi->ietf_spec_revision == 0) {
854 unsigned char spaces_1, spaces_2;
855 unsigned int max_1, max_2;
856 unsigned int num_1, num_2;
857 unsigned long product_1, product_2;
858 char key_1[40];
859 char key_2[40];
860 unsigned int seed;
861 unsigned int count;
862 char challenge[16];
863
Andy Green6ee372f2012-04-09 15:09:01 +0800864 libwebsockets_get_random(context, &spaces_1, sizeof(char));
865 libwebsockets_get_random(context, &spaces_2, sizeof(char));
Andy Greena41314f2011-05-23 10:00:03 +0100866
867 spaces_1 = (spaces_1 % 12) + 1;
868 spaces_2 = (spaces_2 % 12) + 1;
869
870 max_1 = 4294967295 / spaces_1;
871 max_2 = 4294967295 / spaces_2;
872
873 libwebsockets_get_random(context, &num_1, sizeof(int));
874 libwebsockets_get_random(context, &num_2, sizeof(int));
875
876 num_1 = (num_1 % max_1);
877 num_2 = (num_2 % max_2);
878
879 challenge[0] = num_1 >> 24;
880 challenge[1] = num_1 >> 16;
881 challenge[2] = num_1 >> 8;
882 challenge[3] = num_1;
883 challenge[4] = num_2 >> 24;
884 challenge[5] = num_2 >> 16;
885 challenge[6] = num_2 >> 8;
886 challenge[7] = num_2;
887
888 product_1 = num_1 * spaces_1;
889 product_2 = num_2 * spaces_2;
890
891 sprintf(key_1, "%lu", product_1);
892 sprintf(key_2, "%lu", product_2);
893
894 libwebsockets_get_random(context, &seed, sizeof(int));
895 libwebsockets_get_random(context, &count, sizeof(int));
896
897 libwebsockets_00_spam(key_1, (count % 12) + 1, seed);
898
899 libwebsockets_get_random(context, &seed, sizeof(int));
900 libwebsockets_get_random(context, &count, sizeof(int));
901
902 libwebsockets_00_spam(key_2, (count % 12) + 1, seed);
903
904 libwebsockets_get_random(context, &seed, sizeof(int));
905
906 libwebsockets_00_spaceout(key_1, spaces_1, seed);
907 libwebsockets_00_spaceout(key_2, spaces_2, seed >> 16);
908
909 p += sprintf(p, "Upgrade: WebSocket\x0d\x0a"
910 "Connection: Upgrade\x0d\x0aHost: %s\x0d\x0a",
911 wsi->c_host);
912 if (wsi->c_origin)
Andy Green6ee372f2012-04-09 15:09:01 +0800913 p += sprintf(p, "Origin: %s\x0d\x0a", wsi->c_origin);
Andy Greena41314f2011-05-23 10:00:03 +0100914
915 if (wsi->c_protocol)
916 p += sprintf(p, "Sec-WebSocket-Protocol: %s"
917 "\x0d\x0a", wsi->c_protocol);
918
Andy Green6ee372f2012-04-09 15:09:01 +0800919 p += sprintf(p, "Sec-WebSocket-Key1: %s\x0d\x0a", key_1);
920 p += sprintf(p, "Sec-WebSocket-Key2: %s\x0d\x0a", key_2);
Andy Greena41314f2011-05-23 10:00:03 +0100921
922 /* give userland a chance to append, eg, cookies */
923
924 context->protocols[0].callback(context, wsi,
925 LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER,
926 NULL, &p, (pkt + sizeof(pkt)) - p - 12);
927
928 p += sprintf(p, "\x0d\x0a");
929
930 if (libwebsockets_get_random(context, p, 8) != 8)
931 return NULL;
932 memcpy(&challenge[8], p, 8);
933 p += 8;
934
935 /* precompute what we want to see from the server */
936
937 MD5((unsigned char *)challenge, 16,
938 (unsigned char *)wsi->initial_handshake_hash_base64);
939
940 goto issue_hdr;
941 }
942
943 p += sprintf(p, "Host: %s\x0d\x0a", wsi->c_host);
944 p += sprintf(p, "Upgrade: websocket\x0d\x0a");
945 p += sprintf(p, "Connection: Upgrade\x0d\x0a"
946 "Sec-WebSocket-Key: ");
947 strcpy(p, wsi->key_b64);
948 p += strlen(wsi->key_b64);
949 p += sprintf(p, "\x0d\x0a");
950 if (wsi->c_origin)
951 p += sprintf(p, "Sec-WebSocket-Origin: %s\x0d\x0a",
952 wsi->c_origin);
953 if (wsi->c_protocol)
954 p += sprintf(p, "Sec-WebSocket-Protocol: %s\x0d\x0a",
955 wsi->c_protocol);
956
957 /* tell the server what extensions we could support */
958
959 p += sprintf(p, "Sec-WebSocket-Extensions: ");
960
Andy Green6ee372f2012-04-09 15:09:01 +0800961 ext = context->extensions;
Andy Greena41314f2011-05-23 10:00:03 +0100962 while (ext && ext->callback) {
963
964 n = 0;
Andy Green09226502011-05-28 10:19:19 +0100965 ext1 = context->extensions;
Andy Green09226502011-05-28 10:19:19 +0100966
Andy Green6ee372f2012-04-09 15:09:01 +0800967 while (ext1 && ext1->callback) {
Andy Green09226502011-05-28 10:19:19 +0100968 n |= ext1->callback(context, ext1, wsi,
969 LWS_EXT_CALLBACK_CHECK_OK_TO_PROPOSE_EXTENSION,
970 NULL, (char *)ext->name, 0);
971
972 ext1++;
973 }
974
Andy Green6ee372f2012-04-09 15:09:01 +0800975 if (n) { /* an extension vetos us */
Andy Greencc012472011-11-07 19:53:23 +0800976 debug("ext %s vetoed\n", (char *)ext->name);
Andy Green09226502011-05-28 10:19:19 +0100977 ext++;
978 continue;
979 }
980
Andy Greena41314f2011-05-23 10:00:03 +0100981 n = context->protocols[0].callback(context, wsi,
982 LWS_CALLBACK_CLIENT_CONFIRM_EXTENSION_SUPPORTED,
983 wsi->user_space, (char *)ext->name, 0);
984
985 /*
986 * zero return from callback means
987 * go ahead and allow the extension,
988 * it's what we get if the callback is
989 * unhandled
990 */
991
992 if (n) {
993 ext++;
994 continue;
995 }
996
997 /* apply it */
998
999 if (ext_count)
1000 *p++ = ',';
1001 p += sprintf(p, "%s", ext->name);
1002 ext_count++;
1003
1004 ext++;
1005 }
1006
1007 p += sprintf(p, "\x0d\x0a");
1008
1009 if (wsi->ietf_spec_revision)
1010 p += sprintf(p, "Sec-WebSocket-Version: %d\x0d\x0a",
1011 wsi->ietf_spec_revision);
1012
1013 /* give userland a chance to append, eg, cookies */
1014
1015 context->protocols[0].callback(context, wsi,
1016 LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER,
1017 NULL, &p, (pkt + sizeof(pkt)) - p - 12);
1018
1019 p += sprintf(p, "\x0d\x0a");
1020
1021 /* prepare the expected server accept response */
1022
1023 strcpy((char *)buf, wsi->key_b64);
1024 strcpy((char *)&buf[strlen((char *)buf)], magic_websocket_guid);
1025
1026 SHA1(buf, strlen((char *)buf), (unsigned char *)hash);
1027
1028 lws_b64_encode_string(hash, 20,
1029 wsi->initial_handshake_hash_base64,
1030 sizeof wsi->initial_handshake_hash_base64);
1031
1032issue_hdr:
1033
Andy Green6ee372f2012-04-09 15:09:01 +08001034#if 0
1035 puts(pkt);
1036#endif
Andy Green09226502011-05-28 10:19:19 +01001037
Andy Greena41314f2011-05-23 10:00:03 +01001038 /* done with these now */
1039
1040 free(wsi->c_path);
1041 free(wsi->c_host);
1042 if (wsi->c_origin)
1043 free(wsi->c_origin);
1044
1045 return p;
1046}
1047
1048int
1049lws_client_interpret_server_handshake(struct libwebsocket_context *context,
1050 struct libwebsocket *wsi)
1051{
Andy Green6ee372f2012-04-09 15:09:01 +08001052 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 1 +
1053 MAX_BROADCAST_PAYLOAD + LWS_SEND_BUFFER_POST_PADDING];
Andy Greena41314f2011-05-23 10:00:03 +01001054 char pkt[1024];
1055 char *p = &pkt[0];
1056 const char *pc;
1057 const char *c;
1058 int more = 1;
1059 int okay = 0;
1060 char ext_name[128];
1061 struct libwebsocket_extension *ext;
1062 void *v;
Andy Greenc15cb382011-06-26 10:27:28 +01001063 int len = 0;
Andy Greena41314f2011-05-23 10:00:03 +01001064 int n;
1065 static const char magic_websocket_04_masking_guid[] =
1066 "61AC5F19-FBBA-4540-B96F-6561F1AB40A8";
1067
1068 /*
1069 * 00 / 76 -->
1070 *
1071 * HTTP/1.1 101 WebSocket Protocol Handshake
1072 * Upgrade: WebSocket
1073 * Connection: Upgrade
1074 * Sec-WebSocket-Origin: http://127.0.0.1
1075 * Sec-WebSocket-Location: ws://127.0.0.1:9999/socket.io/websocket
1076 *
1077 * xxxxxxxxxxxxxxxx
1078 */
1079
1080 if (wsi->ietf_spec_revision == 0) {
1081 if (!wsi->utf8_token[WSI_TOKEN_HTTP].token_len ||
1082 !wsi->utf8_token[WSI_TOKEN_UPGRADE].token_len ||
1083 !wsi->utf8_token[WSI_TOKEN_CHALLENGE].token_len ||
1084 !wsi->utf8_token[WSI_TOKEN_CONNECTION].token_len ||
1085 (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len &&
1086 wsi->c_protocol != NULL)) {
Andy Greencc012472011-11-07 19:53:23 +08001087 debug("libwebsocket_client_handshake "
Andy Greena41314f2011-05-23 10:00:03 +01001088 "missing required header(s)\n");
1089 pkt[len] = '\0';
Andy Greencc012472011-11-07 19:53:23 +08001090 debug("%s", pkt);
Andy Greena41314f2011-05-23 10:00:03 +01001091 goto bail3;
1092 }
1093
1094 strtolower(wsi->utf8_token[WSI_TOKEN_HTTP].token);
Andy Green6ee372f2012-04-09 15:09:01 +08001095 if (strncmp(wsi->utf8_token[WSI_TOKEN_HTTP].token, "101", 3)) {
Andy Greena41314f2011-05-23 10:00:03 +01001096 fprintf(stderr, "libwebsocket_client_handshake "
1097 "server sent bad HTTP response '%s'\n",
1098 wsi->utf8_token[WSI_TOKEN_HTTP].token);
1099 goto bail3;
1100 }
1101
Andy Green6ee372f2012-04-09 15:09:01 +08001102 if (wsi->utf8_token[WSI_TOKEN_CHALLENGE].token_len < 16) {
Andy Greena41314f2011-05-23 10:00:03 +01001103 fprintf(stderr, "libwebsocket_client_handshake "
1104 "challenge reply too short %d\n",
1105 wsi->utf8_token[
1106 WSI_TOKEN_CHALLENGE].token_len);
1107 pkt[len] = '\0';
Andy Greencc012472011-11-07 19:53:23 +08001108 debug("%s", pkt);
Andy Greena41314f2011-05-23 10:00:03 +01001109 goto bail3;
1110
1111 }
1112
1113 goto select_protocol;
1114 }
1115
1116 /*
1117 * well, what the server sent looked reasonable for syntax.
1118 * Now let's confirm it sent all the necessary headers
1119 */
1120#if 0
Andy Green6ee372f2012-04-09 15:09:01 +08001121 fprintf(stderr, "WSI_TOKEN_HTTP: %d\n",
1122 wsi->utf8_token[WSI_TOKEN_HTTP].token_len);
1123 fprintf(stderr, "WSI_TOKEN_UPGRADE: %d\n",
1124 wsi->utf8_token[WSI_TOKEN_UPGRADE].token_len);
1125 fprintf(stderr, "WSI_TOKEN_CONNECTION: %d\n",
1126 wsi->utf8_token[WSI_TOKEN_CONNECTION].token_len);
1127 fprintf(stderr, "WSI_TOKEN_ACCEPT: %d\n",
1128 wsi->utf8_token[WSI_TOKEN_ACCEPT].token_len);
1129 fprintf(stderr, "WSI_TOKEN_NONCE: %d\n",
1130 wsi->utf8_token[WSI_TOKEN_NONCE].token_len);
1131 fprintf(stderr, "WSI_TOKEN_PROTOCOL: %d\n",
1132 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len);
Andy Greena41314f2011-05-23 10:00:03 +01001133#endif
Andy Green6ee372f2012-04-09 15:09:01 +08001134 if (!wsi->utf8_token[WSI_TOKEN_HTTP].token_len ||
1135 !wsi->utf8_token[WSI_TOKEN_UPGRADE].token_len ||
1136 !wsi->utf8_token[WSI_TOKEN_CONNECTION].token_len ||
1137 !wsi->utf8_token[WSI_TOKEN_ACCEPT].token_len ||
1138 (!wsi->utf8_token[WSI_TOKEN_NONCE].token_len &&
Andy Greena41314f2011-05-23 10:00:03 +01001139 wsi->ietf_spec_revision == 4) ||
Andy Green6ee372f2012-04-09 15:09:01 +08001140 (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len &&
1141 wsi->c_protocol != NULL)) {
1142 debug("libwebsocket_client_handshake "
Andy Greena41314f2011-05-23 10:00:03 +01001143 "missing required header(s)\n");
1144 pkt[len] = '\0';
Andy Greencc012472011-11-07 19:53:23 +08001145 debug("%s", pkt);
Andy Greena41314f2011-05-23 10:00:03 +01001146 goto bail3;
1147 }
1148
1149 /*
1150 * Everything seems to be there, now take a closer look at what
1151 * is in each header
1152 */
1153
1154 strtolower(wsi->utf8_token[WSI_TOKEN_HTTP].token);
Artem Egorkined515ddd2011-11-23 10:46:24 +02001155 if (strncmp(wsi->utf8_token[WSI_TOKEN_HTTP].token, "101", 3)) {
Andy Greena41314f2011-05-23 10:00:03 +01001156 fprintf(stderr, "libwebsocket_client_handshake "
1157 "server sent bad HTTP response '%s'\n",
1158 wsi->utf8_token[WSI_TOKEN_HTTP].token);
1159 goto bail3;
1160 }
1161
1162 strtolower(wsi->utf8_token[WSI_TOKEN_UPGRADE].token);
1163 if (strcmp(wsi->utf8_token[WSI_TOKEN_UPGRADE].token,
1164 "websocket")) {
1165 fprintf(stderr, "libwebsocket_client_handshake server "
1166 "sent bad Upgrade header '%s'\n",
1167 wsi->utf8_token[WSI_TOKEN_UPGRADE].token);
1168 goto bail3;
1169 }
1170
1171 strtolower(wsi->utf8_token[WSI_TOKEN_CONNECTION].token);
1172 if (strcmp(wsi->utf8_token[WSI_TOKEN_CONNECTION].token,
1173 "upgrade")) {
1174 fprintf(stderr, "libwebsocket_client_handshake server "
1175 "sent bad Connection hdr '%s'\n",
1176 wsi->utf8_token[WSI_TOKEN_CONNECTION].token);
1177 goto bail3;
1178 }
1179
1180select_protocol:
1181 pc = wsi->c_protocol;
1182 if (pc == NULL)
Andy Green6ee372f2012-04-09 15:09:01 +08001183 fprintf(stderr, "lws_client_interpret_server_handshake: "
1184 "NULL c_protocol\n");
Andy Greena41314f2011-05-23 10:00:03 +01001185 else
Andy Green6ee372f2012-04-09 15:09:01 +08001186 debug("lws_client_interpret_server_handshake: "
1187 "cPprotocol='%s'\n", pc);
Andy Greena41314f2011-05-23 10:00:03 +01001188
1189 /*
1190 * confirm the protocol the server wants to talk was in the list
1191 * of protocols we offered
1192 */
1193
1194 if (!wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len) {
1195
Andy Green6ee372f2012-04-09 15:09:01 +08001196 fprintf(stderr, "lws_client_interpret_server_handshake "
1197 "WSI_TOKEN_PROTOCOL is null\n");
Andy Greena41314f2011-05-23 10:00:03 +01001198 /*
1199 * no protocol name to work from,
1200 * default to first protocol
1201 */
1202 wsi->protocol = &context->protocols[0];
David Brooks2c60d952012-04-20 12:19:01 +08001203 wsi->c_callback = wsi->protocol->callback;
Andy Greena41314f2011-05-23 10:00:03 +01001204 free(wsi->c_protocol);
1205
1206 goto check_accept;
1207 }
1208
1209 while (*pc && !okay) {
Andy Green6ee372f2012-04-09 15:09:01 +08001210 if ((!strncmp(pc, wsi->utf8_token[WSI_TOKEN_PROTOCOL].token,
1211 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len)) &&
1212 (pc[wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len] == ',' ||
1213 pc[wsi->utf8_token[WSI_TOKEN_PROTOCOL].token_len] == '\0')) {
Andy Greena41314f2011-05-23 10:00:03 +01001214 okay = 1;
1215 continue;
1216 }
1217 while (*pc && *pc != ',')
1218 pc++;
1219 while (*pc && *pc != ' ')
1220 pc++;
1221 }
1222
1223 /* done with him now */
1224
1225 if (wsi->c_protocol)
1226 free(wsi->c_protocol);
1227
Andy Greena41314f2011-05-23 10:00:03 +01001228 if (!okay) {
1229 fprintf(stderr, "libwebsocket_client_handshake server "
1230 "sent bad protocol '%s'\n",
1231 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token);
1232 goto bail2;
1233 }
1234
1235 /*
1236 * identify the selected protocol struct and set it
1237 */
1238 n = 0;
1239 wsi->protocol = NULL;
David Brooks2c60d952012-04-20 12:19:01 +08001240 while (context->protocols[n].callback && !wsi->protocol) { /* Stop after finding first one?? */
Andy Greena41314f2011-05-23 10:00:03 +01001241 if (strcmp(wsi->utf8_token[WSI_TOKEN_PROTOCOL].token,
David Brooks2c60d952012-04-20 12:19:01 +08001242 context->protocols[n].name) == 0) {
Andy Greena41314f2011-05-23 10:00:03 +01001243 wsi->protocol = &context->protocols[n];
David Brooks2c60d952012-04-20 12:19:01 +08001244 wsi->c_callback = wsi->protocol->callback;
1245 }
Andy Greena41314f2011-05-23 10:00:03 +01001246 n++;
1247 }
1248
1249 if (wsi->protocol == NULL) {
1250 fprintf(stderr, "libwebsocket_client_handshake server "
1251 "requested protocol '%s', which we "
1252 "said we supported but we don't!\n",
1253 wsi->utf8_token[WSI_TOKEN_PROTOCOL].token);
1254 goto bail2;
1255 }
1256
1257
1258 /* instantiate the accepted extensions */
1259
1260 if (!wsi->utf8_token[WSI_TOKEN_EXTENSIONS].token_len) {
Andy Green6ee372f2012-04-09 15:09:01 +08001261 debug("no client extenstions allowed by server\n");
Andy Greena41314f2011-05-23 10:00:03 +01001262 goto check_accept;
1263 }
1264
1265 /*
1266 * break down the list of server accepted extensions
1267 * and go through matching them or identifying bogons
1268 */
1269
1270 c = wsi->utf8_token[WSI_TOKEN_EXTENSIONS].token;
1271 n = 0;
1272 while (more) {
1273
1274 if (*c && (*c != ',' && *c != ' ' && *c != '\t')) {
1275 ext_name[n] = *c++;
1276 if (n < sizeof(ext_name) - 1)
1277 n++;
1278 continue;
1279 }
1280 ext_name[n] = '\0';
1281 if (!*c)
1282 more = 0;
1283 else {
1284 c++;
1285 if (!n)
1286 continue;
1287 }
1288
1289 /* check we actually support it */
1290
Andy Greencc012472011-11-07 19:53:23 +08001291 debug("checking client ext %s\n", ext_name);
Andy Greena41314f2011-05-23 10:00:03 +01001292
1293 n = 0;
1294 ext = wsi->protocol->owning_server->extensions;
1295 while (ext && ext->callback) {
1296
1297 if (strcmp(ext_name, ext->name)) {
1298 ext++;
1299 continue;
1300 }
1301
1302 n = 1;
1303
Andy Greencc012472011-11-07 19:53:23 +08001304 debug("instantiating client ext %s\n", ext_name);
Andy Greena41314f2011-05-23 10:00:03 +01001305
1306 /* instantiate the extension on this conn */
1307
1308 wsi->active_extensions_user[
1309 wsi->count_active_extensions] =
1310 malloc(ext->per_session_data_size);
Andy Greenf6652412011-05-25 20:46:18 +01001311 memset(wsi->active_extensions_user[
1312 wsi->count_active_extensions], 0,
1313 ext->per_session_data_size);
Andy Greena41314f2011-05-23 10:00:03 +01001314 wsi->active_extensions[
1315 wsi->count_active_extensions] = ext;
1316
1317 /* allow him to construct his context */
1318
1319 ext->callback(wsi->protocol->owning_server,
1320 ext, wsi,
1321 LWS_EXT_CALLBACK_CLIENT_CONSTRUCT,
1322 wsi->active_extensions_user[
1323 wsi->count_active_extensions],
1324 NULL, 0);
1325
1326 wsi->count_active_extensions++;
1327
1328 ext++;
1329 }
1330
1331 if (n == 0) {
1332 fprintf(stderr, "Server said we should use"
1333 "an unknown extension '%s'!\n", ext_name);
1334 goto bail2;
1335 }
1336
1337 n = 0;
1338 }
1339
1340
1341check_accept:
1342
1343 if (wsi->ietf_spec_revision == 0) {
1344
1345 if (memcmp(wsi->initial_handshake_hash_base64,
1346 wsi->utf8_token[WSI_TOKEN_CHALLENGE].token, 16)) {
1347 fprintf(stderr, "libwebsocket_client_handshake "
1348 "failed 00 challenge compare\n");
1349 pkt[len] = '\0';
1350 fprintf(stderr, "%s", pkt);
1351 goto bail2;
1352 }
1353
1354 goto accept_ok;
1355 }
1356
1357 /*
1358 * Confirm his accept token is the one we precomputed
1359 */
1360
1361 if (strcmp(wsi->utf8_token[WSI_TOKEN_ACCEPT].token,
1362 wsi->initial_handshake_hash_base64)) {
1363 fprintf(stderr, "libwebsocket_client_handshake server "
1364 "sent bad ACCEPT '%s' vs computed '%s'\n",
1365 wsi->utf8_token[WSI_TOKEN_ACCEPT].token,
1366 wsi->initial_handshake_hash_base64);
1367 goto bail2;
1368 }
1369
1370 if (wsi->ietf_spec_revision == 4) {
1371 /*
1372 * Calculate the 04 masking key to use when
1373 * sending data to server
1374 */
1375
1376 strcpy((char *)buf, wsi->key_b64);
1377 p = (char *)buf + strlen(wsi->key_b64);
1378 strcpy(p, wsi->utf8_token[WSI_TOKEN_NONCE].token);
1379 p += wsi->utf8_token[WSI_TOKEN_NONCE].token_len;
1380 strcpy(p, magic_websocket_04_masking_guid);
1381 SHA1(buf, strlen((char *)buf), wsi->masking_key_04);
1382 }
Andy Green6ee372f2012-04-09 15:09:01 +08001383accept_ok:
Andy Greena41314f2011-05-23 10:00:03 +01001384
1385 /* allocate the per-connection user memory (if any) */
Andy Green6ee372f2012-04-09 15:09:01 +08001386 if (wsi->protocol->per_session_data_size &&
1387 !libwebsocket_ensure_user_space(wsi))
1388 goto bail2;
Andy Greena41314f2011-05-23 10:00:03 +01001389
1390 /* clear his proxy connection timeout */
1391
1392 libwebsocket_set_timeout(wsi, NO_PENDING_TIMEOUT, 0);
1393
1394 /* mark him as being alive */
1395
1396 wsi->state = WSI_STATE_ESTABLISHED;
1397 wsi->mode = LWS_CONNMODE_WS_CLIENT;
1398
David Brooksee2213d2012-04-20 12:13:37 +08001399 debug("handshake OK for protocol %s\n", wsi->protocol->name);
Andy Greena41314f2011-05-23 10:00:03 +01001400
1401 /* call him back to inform him he is up */
1402
1403 wsi->protocol->callback(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001404 LWS_CALLBACK_CLIENT_ESTABLISHED,
1405 wsi->user_space, NULL, 0);
Andy Greena41314f2011-05-23 10:00:03 +01001406
1407 /*
1408 * inform all extensions, not just active ones since they
1409 * already know
1410 */
1411
1412 ext = context->extensions;
1413
1414 while (ext && ext->callback) {
1415 v = NULL;
1416 for (n = 0; n < wsi->count_active_extensions; n++)
1417 if (wsi->active_extensions[n] == ext)
1418 v = wsi->active_extensions_user[n];
1419
1420 ext->callback(context, ext, wsi,
1421 LWS_EXT_CALLBACK_ANY_WSI_ESTABLISHED, v, NULL, 0);
1422 ext++;
1423 }
1424
1425 return 0;
1426
1427bail3:
1428 if (wsi->c_protocol)
1429 free(wsi->c_protocol);
1430
1431bail2:
David Brooks80a44972012-04-20 12:18:47 +08001432 if (wsi->c_callback) wsi->c_callback(context, wsi,
1433 LWS_CALLBACK_CLIENT_CONNECTION_ERROR,
1434 wsi->user_space,
1435 NULL, 0);
Andy Greena41314f2011-05-23 10:00:03 +01001436 libwebsocket_close_and_free_session(context, wsi,
David Brooks80a44972012-04-20 12:18:47 +08001437 LWS_CLOSE_STATUS_NOSTATUS); // But this should be LWS_CLOSE_STATUS_PROTOCOL_ERR
1438
Andy Greena41314f2011-05-23 10:00:03 +01001439 return 1;
1440}
1441
1442
1443
Andy Green9f990342011-02-12 11:57:45 +00001444/**
1445 * libwebsocket_service_fd() - Service polled socket with something waiting
Peter Hinz56885f32011-03-02 22:03:47 +00001446 * @context: Websocket context
Andy Green9f990342011-02-12 11:57:45 +00001447 * @pollfd: The pollfd entry describing the socket fd and which events
Andy Green6ee372f2012-04-09 15:09:01 +08001448 * happened.
Andy Green9f990342011-02-12 11:57:45 +00001449 *
1450 * This function closes any active connections and then frees the
1451 * context. After calling this, any further use of the context is
1452 * undefined.
1453 */
1454
1455int
Peter Hinz56885f32011-03-02 22:03:47 +00001456libwebsocket_service_fd(struct libwebsocket_context *context,
Andy Green0d338332011-02-12 11:57:43 +00001457 struct pollfd *pollfd)
Andy Greenb45993c2010-12-18 15:13:50 +00001458{
Andy Green6ee372f2012-04-09 15:09:01 +08001459 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 1 +
1460 MAX_BROADCAST_PAYLOAD + LWS_SEND_BUFFER_POST_PADDING];
Andy Greena71eafc2011-02-14 17:59:43 +00001461 struct libwebsocket *wsi;
Andy Green0d338332011-02-12 11:57:43 +00001462 struct libwebsocket *new_wsi;
Andy Greenb45993c2010-12-18 15:13:50 +00001463 int n;
Andy Green0d338332011-02-12 11:57:43 +00001464 int m;
Tobias Maiere8c9b562012-04-05 11:57:12 +02001465 ssize_t len;
Andy Green0d338332011-02-12 11:57:43 +00001466 int accept_fd;
1467 unsigned int clilen;
1468 struct sockaddr_in cli_addr;
Andy Greena71eafc2011-02-14 17:59:43 +00001469 struct timeval tv;
Andy Greenbe93fef2011-02-14 20:25:43 +00001470 char pkt[1024];
1471 char *p = &pkt[0];
Andy Green2366b1c2011-03-06 13:15:31 +00001472 int more = 1;
Andy Green98a717c2011-03-06 13:14:15 +00001473 struct lws_tokens eff_buf;
Andy Green6c939552011-03-08 08:56:57 +00001474 int opt = 1;
Yonathan Yusim3ae39ff2012-04-09 06:42:39 +08001475 char c;
Andy Greenc6517fa2011-03-06 13:15:29 +00001476
Andy Greenbe93fef2011-02-14 20:25:43 +00001477#ifdef LWS_OPENSSL_SUPPORT
1478 char ssl_err_buf[512];
1479#endif
Andy Greena71eafc2011-02-14 17:59:43 +00001480 /*
1481 * you can call us with pollfd = NULL to just allow the once-per-second
1482 * global timeout checks; if less than a second since the last check
1483 * it returns immediately then.
1484 */
1485
1486 gettimeofday(&tv, NULL);
1487
Peter Hinz56885f32011-03-02 22:03:47 +00001488 if (context->last_timeout_check_s != tv.tv_sec) {
1489 context->last_timeout_check_s = tv.tv_sec;
Andy Greena71eafc2011-02-14 17:59:43 +00001490
1491 /* global timeout check once per second */
1492
Peter Hinz56885f32011-03-02 22:03:47 +00001493 for (n = 0; n < context->fds_count; n++) {
1494 wsi = wsi_from_fd(context, context->fds[n].fd);
Andy Greena71eafc2011-02-14 17:59:43 +00001495
Andy Greena41314f2011-05-23 10:00:03 +01001496 libwebsocket_service_timeout_check(context, wsi,
1497 tv.tv_sec);
Andy Greena71eafc2011-02-14 17:59:43 +00001498 }
1499 }
1500
1501 /* just here for timeout management? */
1502
1503 if (pollfd == NULL)
1504 return 0;
1505
1506 /* no, here to service a socket descriptor */
1507
Peter Hinz56885f32011-03-02 22:03:47 +00001508 wsi = wsi_from_fd(context, pollfd->fd);
Andy Greenb45993c2010-12-18 15:13:50 +00001509
Andy Green0d338332011-02-12 11:57:43 +00001510 if (wsi == NULL)
1511 return 1;
Andy Green8f037e42010-12-19 22:13:26 +00001512
Andy Green0d338332011-02-12 11:57:43 +00001513 switch (wsi->mode) {
1514 case LWS_CONNMODE_SERVER_LISTENER:
1515
1516 /* pollin means a client has connected to us then */
1517
1518 if (!pollfd->revents & POLLIN)
1519 break;
1520
David Galeanof7009352011-09-26 12:09:54 +01001521 if (context->fds_count >= MAX_CLIENTS) {
1522 fprintf(stderr, "too busy to accept new client\n");
1523 break;
1524 }
1525
Andy Green0d338332011-02-12 11:57:43 +00001526 /* listen socket got an unencrypted connection... */
1527
1528 clilen = sizeof(cli_addr);
1529 accept_fd = accept(pollfd->fd, (struct sockaddr *)&cli_addr,
1530 &clilen);
1531 if (accept_fd < 0) {
1532 fprintf(stderr, "ERROR on accept");
1533 break;
1534 }
1535
Andy Green6c939552011-03-08 08:56:57 +00001536 /* Disable Nagle */
1537 opt = 1;
Andy Green6ee372f2012-04-09 15:09:01 +08001538 setsockopt(accept_fd, IPPROTO_TCP, TCP_NODELAY,
1539 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00001540
Andy Green07034092011-02-13 08:37:12 +00001541 /*
1542 * look at who we connected to and give user code a chance
1543 * to reject based on client IP. There's no protocol selected
1544 * yet so we issue this to protocols[0]
1545 */
1546
Peter Hinz56885f32011-03-02 22:03:47 +00001547 if ((context->protocols[0].callback)(context, wsi,
Andy Green07034092011-02-13 08:37:12 +00001548 LWS_CALLBACK_FILTER_NETWORK_CONNECTION,
Andy Green6ee372f2012-04-09 15:09:01 +08001549 (void *)(long)accept_fd, NULL, 0)) {
Andy Greencc012472011-11-07 19:53:23 +08001550 debug("Callback denied network connection\n");
Peter Hinz56885f32011-03-02 22:03:47 +00001551#ifdef WIN32
1552 closesocket(accept_fd);
1553#else
Andy Green07034092011-02-13 08:37:12 +00001554 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +00001555#endif
Andy Green07034092011-02-13 08:37:12 +00001556 break;
1557 }
1558
Andy Green0d338332011-02-12 11:57:43 +00001559 /* accepting connection to main listener */
1560
Andy Greena41314f2011-05-23 10:00:03 +01001561 new_wsi = libwebsocket_create_new_server_wsi(context);
1562 if (new_wsi == NULL)
Andy Green0d338332011-02-12 11:57:43 +00001563 break;
Andy Green0d338332011-02-12 11:57:43 +00001564
Andy Green0d338332011-02-12 11:57:43 +00001565 new_wsi->sock = accept_fd;
Andy Greena41314f2011-05-23 10:00:03 +01001566
Andy Green0d338332011-02-12 11:57:43 +00001567
1568#ifdef LWS_OPENSSL_SUPPORT
1569 new_wsi->ssl = NULL;
Andy Green0d338332011-02-12 11:57:43 +00001570
Peter Hinz56885f32011-03-02 22:03:47 +00001571 if (context->use_ssl) {
Andy Green0d338332011-02-12 11:57:43 +00001572
Peter Hinz56885f32011-03-02 22:03:47 +00001573 new_wsi->ssl = SSL_new(context->ssl_ctx);
Andy Green0d338332011-02-12 11:57:43 +00001574 if (new_wsi->ssl == NULL) {
1575 fprintf(stderr, "SSL_new failed: %s\n",
1576 ERR_error_string(SSL_get_error(
1577 new_wsi->ssl, 0), NULL));
Andy Green1f9bf522011-02-14 21:14:37 +00001578 libwebsockets_decode_ssl_error();
Andy Green0d338332011-02-12 11:57:43 +00001579 free(new_wsi);
1580 break;
1581 }
1582
1583 SSL_set_fd(new_wsi->ssl, accept_fd);
1584
1585 n = SSL_accept(new_wsi->ssl);
1586 if (n != 1) {
1587 /*
1588 * browsers seem to probe with various
1589 * ssl params which fail then retry
1590 * and succeed
1591 */
1592 debug("SSL_accept failed skt %u: %s\n",
1593 pollfd->fd,
1594 ERR_error_string(SSL_get_error(
1595 new_wsi->ssl, n), NULL));
1596 SSL_free(
1597 new_wsi->ssl);
1598 free(new_wsi);
1599 break;
1600 }
Andy Green6ee372f2012-04-09 15:09:01 +08001601
Andy Green0d338332011-02-12 11:57:43 +00001602 debug("accepted new SSL conn "
1603 "port %u on fd=%d SSL ver %s\n",
1604 ntohs(cli_addr.sin_port), accept_fd,
1605 SSL_get_version(new_wsi->ssl));
1606
1607 } else
1608#endif
1609 debug("accepted new conn port %u on fd=%d\n",
1610 ntohs(cli_addr.sin_port), accept_fd);
1611
Peter Hinz56885f32011-03-02 22:03:47 +00001612 insert_wsi(context, new_wsi);
Andy Green0d338332011-02-12 11:57:43 +00001613
Andy Green0d338332011-02-12 11:57:43 +00001614 /*
1615 * make sure NO events are seen yet on this new socket
1616 * (otherwise we inherit old fds[client].revents from
1617 * previous socket there and die mysteriously! )
1618 */
Peter Hinz56885f32011-03-02 22:03:47 +00001619 context->fds[context->fds_count].revents = 0;
Andy Green0d338332011-02-12 11:57:43 +00001620
Peter Hinz56885f32011-03-02 22:03:47 +00001621 context->fds[context->fds_count].events = POLLIN;
1622 context->fds[context->fds_count++].fd = accept_fd;
Andy Green0d338332011-02-12 11:57:43 +00001623
Andy Green3221f922011-02-12 13:14:11 +00001624 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001625 context->protocols[0].callback(context, new_wsi,
Andy Green3221f922011-02-12 13:14:11 +00001626 LWS_CALLBACK_ADD_POLL_FD,
1627 (void *)(long)accept_fd, NULL, POLLIN);
1628
Andy Green0d338332011-02-12 11:57:43 +00001629 break;
1630
1631 case LWS_CONNMODE_BROADCAST_PROXY_LISTENER:
1632
1633 /* as we are listening, POLLIN means accept() is needed */
Andy Green6ee372f2012-04-09 15:09:01 +08001634
Andy Green0d338332011-02-12 11:57:43 +00001635 if (!pollfd->revents & POLLIN)
1636 break;
1637
1638 /* listen socket got an unencrypted connection... */
1639
1640 clilen = sizeof(cli_addr);
1641 accept_fd = accept(pollfd->fd, (struct sockaddr *)&cli_addr,
1642 &clilen);
1643 if (accept_fd < 0) {
1644 fprintf(stderr, "ERROR on accept");
1645 break;
1646 }
1647
Peter Hinz56885f32011-03-02 22:03:47 +00001648 if (context->fds_count >= MAX_CLIENTS) {
Andy Green3221f922011-02-12 13:14:11 +00001649 fprintf(stderr, "too busy to accept new broadcast "
1650 "proxy client\n");
Peter Hinz56885f32011-03-02 22:03:47 +00001651#ifdef WIN32
1652 closesocket(accept_fd);
1653#else
Andy Green0d338332011-02-12 11:57:43 +00001654 close(accept_fd);
Peter Hinz56885f32011-03-02 22:03:47 +00001655#endif
Andy Green0d338332011-02-12 11:57:43 +00001656 break;
1657 }
1658
1659 /* create a dummy wsi for the connection and add it */
1660
1661 new_wsi = malloc(sizeof(struct libwebsocket));
Andy Green6ee372f2012-04-09 15:09:01 +08001662 memset(new_wsi, 0, sizeof(struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00001663 new_wsi->sock = accept_fd;
1664 new_wsi->mode = LWS_CONNMODE_BROADCAST_PROXY;
1665 new_wsi->state = WSI_STATE_ESTABLISHED;
Andy Greend6e09112011-03-05 16:12:15 +00001666 new_wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00001667 /* note which protocol we are proxying */
1668 new_wsi->protocol_index_for_broadcast_proxy =
1669 wsi->protocol_index_for_broadcast_proxy;
Peter Hinz56885f32011-03-02 22:03:47 +00001670 insert_wsi(context, new_wsi);
Andy Green0d338332011-02-12 11:57:43 +00001671
1672 /* add connected socket to internal poll array */
1673
Peter Hinz56885f32011-03-02 22:03:47 +00001674 context->fds[context->fds_count].revents = 0;
1675 context->fds[context->fds_count].events = POLLIN;
1676 context->fds[context->fds_count++].fd = accept_fd;
Andy Green0d338332011-02-12 11:57:43 +00001677
Andy Green3221f922011-02-12 13:14:11 +00001678 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001679 context->protocols[0].callback(context, new_wsi,
Andy Green3221f922011-02-12 13:14:11 +00001680 LWS_CALLBACK_ADD_POLL_FD,
1681 (void *)(long)accept_fd, NULL, POLLIN);
1682
Andy Green0d338332011-02-12 11:57:43 +00001683 break;
1684
1685 case LWS_CONNMODE_BROADCAST_PROXY:
Andy Green8f037e42010-12-19 22:13:26 +00001686
Andy Greenb45993c2010-12-18 15:13:50 +00001687 /* handle session socket closed */
Andy Green8f037e42010-12-19 22:13:26 +00001688
Andy Green0d338332011-02-12 11:57:43 +00001689 if (pollfd->revents & (POLLERR | POLLHUP)) {
Andy Green8f037e42010-12-19 22:13:26 +00001690
Andy Green0d338332011-02-12 11:57:43 +00001691 debug("Session Socket %p (fd=%d) dead\n",
Timothy J Fontaineb86d64e2011-02-14 17:55:27 +00001692 (void *)wsi, pollfd->fd);
Andy Greenb45993c2010-12-18 15:13:50 +00001693
Peter Hinz56885f32011-03-02 22:03:47 +00001694 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001695 LWS_CLOSE_STATUS_NORMAL);
Andy Green4b6fbe12011-02-14 08:03:48 +00001696 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +00001697 }
Andy Green8f037e42010-12-19 22:13:26 +00001698
Andy Green3b84c002011-03-06 13:14:42 +00001699 /*
1700 * either extension code with stuff to spill, or the user code,
1701 * requested a callback when it was OK to write
1702 */
Andy Green90c7cbc2011-01-27 06:26:52 +00001703
Andy Green3b84c002011-03-06 13:14:42 +00001704 if (pollfd->revents & POLLOUT)
Andy Green6ee372f2012-04-09 15:09:01 +08001705 if (lws_handle_POLLOUT_event(context, wsi,
1706 pollfd) < 0) {
1707 libwebsocket_close_and_free_session(
1708 context, wsi, LWS_CLOSE_STATUS_NORMAL);
Andy Green3b84c002011-03-06 13:14:42 +00001709 return 1;
1710 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001711
Andy Greenb45993c2010-12-18 15:13:50 +00001712 /* any incoming data ready? */
1713
Andy Green0d338332011-02-12 11:57:43 +00001714 if (!(pollfd->revents & POLLIN))
1715 break;
Andy Greenb45993c2010-12-18 15:13:50 +00001716
Andy Green0d338332011-02-12 11:57:43 +00001717 /* get the issued broadcast payload from the socket */
Andy Greenb45993c2010-12-18 15:13:50 +00001718
Andy Green0d338332011-02-12 11:57:43 +00001719 len = read(pollfd->fd, buf + LWS_SEND_BUFFER_PRE_PADDING,
1720 MAX_BROADCAST_PAYLOAD);
1721 if (len < 0) {
1722 fprintf(stderr, "Error reading broadcast payload\n");
Andy Green4b6fbe12011-02-14 08:03:48 +00001723 break;
Andy Green0d338332011-02-12 11:57:43 +00001724 }
Andy Greenb45993c2010-12-18 15:13:50 +00001725
Andy Green0d338332011-02-12 11:57:43 +00001726 /* broadcast it to all guys with this protocol index */
Andy Green8f037e42010-12-19 22:13:26 +00001727
Andy Green0d338332011-02-12 11:57:43 +00001728 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
Andy Green8f037e42010-12-19 22:13:26 +00001729
Peter Hinz56885f32011-03-02 22:03:47 +00001730 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Greenb45993c2010-12-18 15:13:50 +00001731
Peter Hinz56885f32011-03-02 22:03:47 +00001732 new_wsi = context->fd_hashtable[n].wsi[m];
Andy Greenb45993c2010-12-18 15:13:50 +00001733
Andy Green0d338332011-02-12 11:57:43 +00001734 /* only to clients we are serving to */
Andy Greenb45993c2010-12-18 15:13:50 +00001735
Andy Green0d338332011-02-12 11:57:43 +00001736 if (new_wsi->mode != LWS_CONNMODE_WS_SERVING)
Andy Greenb45993c2010-12-18 15:13:50 +00001737 continue;
1738
1739 /*
1740 * never broadcast to non-established
1741 * connection
1742 */
1743
Andy Green0d338332011-02-12 11:57:43 +00001744 if (new_wsi->state != WSI_STATE_ESTABLISHED)
Andy Green4739e5c2011-01-22 12:51:57 +00001745 continue;
1746
Andy Greenb45993c2010-12-18 15:13:50 +00001747 /*
1748 * only broadcast to connections using
1749 * the requested protocol
1750 */
1751
Andy Green0d338332011-02-12 11:57:43 +00001752 if (new_wsi->protocol->protocol_index !=
1753 wsi->protocol_index_for_broadcast_proxy)
Andy Greenb45993c2010-12-18 15:13:50 +00001754 continue;
1755
Andy Green8f037e42010-12-19 22:13:26 +00001756 /* broadcast it to this connection */
1757
Peter Hinz56885f32011-03-02 22:03:47 +00001758 new_wsi->protocol->callback(context, new_wsi,
Andy Green8f037e42010-12-19 22:13:26 +00001759 LWS_CALLBACK_BROADCAST,
Andy Green0d338332011-02-12 11:57:43 +00001760 new_wsi->user_space,
Andy Green0ca6a172010-12-19 20:50:01 +00001761 buf + LWS_SEND_BUFFER_PRE_PADDING, len);
Andy Greenb45993c2010-12-18 15:13:50 +00001762 }
Andy Green0d338332011-02-12 11:57:43 +00001763 }
1764 break;
Andy Greenb45993c2010-12-18 15:13:50 +00001765
Andy Greenbe93fef2011-02-14 20:25:43 +00001766 case LWS_CONNMODE_WS_CLIENT_WAITING_PROXY_REPLY:
1767
1768 /* handle proxy hung up on us */
1769
1770 if (pollfd->revents & (POLLERR | POLLHUP)) {
1771
1772 fprintf(stderr, "Proxy connection %p (fd=%d) dead\n",
1773 (void *)wsi, pollfd->fd);
1774
Peter Hinz56885f32011-03-02 22:03:47 +00001775 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001776 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001777 return 1;
1778 }
1779
Andy Green72c34322011-04-16 10:46:21 +01001780 n = recv(wsi->sock, pkt, sizeof pkt, 0);
Andy Greenbe93fef2011-02-14 20:25:43 +00001781 if (n < 0) {
Peter Hinz56885f32011-03-02 22:03:47 +00001782 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001783 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001784 fprintf(stderr, "ERROR reading from proxy socket\n");
1785 return 1;
1786 }
1787
1788 pkt[13] = '\0';
1789 if (strcmp(pkt, "HTTP/1.0 200 ") != 0) {
Peter Hinz56885f32011-03-02 22:03:47 +00001790 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001791 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001792 fprintf(stderr, "ERROR from proxy: %s\n", pkt);
1793 return 1;
1794 }
1795
1796 /* clear his proxy connection timeout */
1797
1798 libwebsocket_set_timeout(wsi, NO_PENDING_TIMEOUT, 0);
1799
1800 /* fallthru */
1801
1802 case LWS_CONNMODE_WS_CLIENT_ISSUE_HANDSHAKE:
1803
1804 #ifdef LWS_OPENSSL_SUPPORT
Ken Atherton8360a472012-05-03 11:45:04 +08001805 if (wsi->use_ssl && !wsi->ssl) {
Andy Greenbe93fef2011-02-14 20:25:43 +00001806
Peter Hinz56885f32011-03-02 22:03:47 +00001807 wsi->ssl = SSL_new(context->ssl_client_ctx);
1808 wsi->client_bio = BIO_new_socket(wsi->sock,
1809 BIO_NOCLOSE);
Andy Greenbe93fef2011-02-14 20:25:43 +00001810 SSL_set_bio(wsi->ssl, wsi->client_bio, wsi->client_bio);
1811
Andy Green6901cb32011-02-21 08:06:47 +00001812 SSL_set_ex_data(wsi->ssl,
Andy Green2e24da02011-03-05 16:12:04 +00001813 openssl_websocket_private_data_index,
Peter Hinz56885f32011-03-02 22:03:47 +00001814 context);
Ken Atherton8360a472012-05-03 11:45:04 +08001815 }
Andy Green6901cb32011-02-21 08:06:47 +00001816
Ken Atherton8360a472012-05-03 11:45:04 +08001817 if (wsi->use_ssl) {
Andy Greenbe93fef2011-02-14 20:25:43 +00001818 if (SSL_connect(wsi->ssl) <= 0) {
Ken Atherton8360a472012-05-03 11:45:04 +08001819
1820 /*
1821 * retry if new data comes until we
1822 * run into the connection timeout or win
1823 */
1824
Andy Greenbe93fef2011-02-14 20:25:43 +00001825 fprintf(stderr, "SSL connect error %s\n",
Andy Green687b0182011-02-26 11:04:01 +00001826 ERR_error_string(ERR_get_error(),
1827 ssl_err_buf));
Ken Atherton8360a472012-05-03 11:45:04 +08001828 return 0;
Andy Greenbe93fef2011-02-14 20:25:43 +00001829 }
1830
1831 n = SSL_get_verify_result(wsi->ssl);
Andy Green2e24da02011-03-05 16:12:04 +00001832 if ((n != X509_V_OK) && (
Andy Green687b0182011-02-26 11:04:01 +00001833 n != X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT ||
1834 wsi->use_ssl != 2)) {
Andy Greenbe93fef2011-02-14 20:25:43 +00001835
Andy Green687b0182011-02-26 11:04:01 +00001836 fprintf(stderr, "server's cert didn't "
1837 "look good %d\n", n);
Peter Hinz56885f32011-03-02 22:03:47 +00001838 libwebsocket_close_and_free_session(context,
1839 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Green687b0182011-02-26 11:04:01 +00001840 return 1;
Andy Greenbe93fef2011-02-14 20:25:43 +00001841 }
Ken Atherton8360a472012-05-03 11:45:04 +08001842 } else
Andy Greenbe93fef2011-02-14 20:25:43 +00001843 wsi->ssl = NULL;
1844 #endif
1845
Andy Greena41314f2011-05-23 10:00:03 +01001846 p = libwebsockets_generate_client_handshake(context, wsi, p);
Andy Green6ee372f2012-04-09 15:09:01 +08001847 if (p == NULL)
Andy Greenbe93fef2011-02-14 20:25:43 +00001848 return 1;
Andy Greeneeaacb32011-03-01 20:44:24 +00001849
Andy Greenbe93fef2011-02-14 20:25:43 +00001850 /* send our request to the server */
1851
1852 #ifdef LWS_OPENSSL_SUPPORT
1853 if (wsi->use_ssl)
1854 n = SSL_write(wsi->ssl, pkt, p - pkt);
1855 else
1856 #endif
1857 n = send(wsi->sock, pkt, p - pkt, 0);
1858
1859 if (n < 0) {
1860 fprintf(stderr, "ERROR writing to client socket\n");
Peter Hinz56885f32011-03-02 22:03:47 +00001861 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001862 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001863 return 1;
1864 }
1865
1866 wsi->parser_state = WSI_TOKEN_NAME_PART;
1867 wsi->mode = LWS_CONNMODE_WS_CLIENT_WAITING_SERVER_REPLY;
1868 libwebsocket_set_timeout(wsi,
1869 PENDING_TIMEOUT_AWAITING_SERVER_RESPONSE, 5);
1870
1871 break;
1872
1873 case LWS_CONNMODE_WS_CLIENT_WAITING_SERVER_REPLY:
1874
1875 /* handle server hung up on us */
1876
1877 if (pollfd->revents & (POLLERR | POLLHUP)) {
1878
1879 fprintf(stderr, "Server connection %p (fd=%d) dead\n",
1880 (void *)wsi, pollfd->fd);
1881
1882 goto bail3;
1883 }
1884
1885
1886 /* interpret the server response */
1887
1888 /*
1889 * HTTP/1.1 101 Switching Protocols
1890 * Upgrade: websocket
1891 * Connection: Upgrade
1892 * Sec-WebSocket-Accept: me89jWimTRKTWwrS3aRrL53YZSo=
1893 * Sec-WebSocket-Nonce: AQIDBAUGBwgJCgsMDQ4PEC==
1894 * Sec-WebSocket-Protocol: chat
1895 */
1896
Yonathan Yusim3ae39ff2012-04-09 06:42:39 +08001897 /*
1898 * we have to take some care here to only take from the
1899 * socket bytewise. The browser may (and has been seen to
1900 * in the case that onopen() performs websocket traffic)
1901 * coalesce both handshake response and websocket traffic
1902 * in one packet, since at that point the connection is
1903 * definitively ready from browser pov.
1904 */
Andy Greenbe93fef2011-02-14 20:25:43 +00001905
Andy Green7b5af9a2012-04-09 15:23:47 +08001906 len = 1;
Yonathan Yusim3ae39ff2012-04-09 06:42:39 +08001907 while (wsi->parser_state != WSI_PARSING_COMPLETE && len > 0) {
1908#ifdef LWS_OPENSSL_SUPPORT
1909 if (wsi->use_ssl)
1910 len = SSL_read(wsi->ssl, &c, 1);
1911 else
1912#endif
1913 len = recv(wsi->sock, &c, 1, 0);
1914
1915 libwebsocket_parse(wsi, c);
Andy Greenbe93fef2011-02-14 20:25:43 +00001916 }
1917
Andy Green27a0b912011-04-16 10:54:28 +01001918 /*
Andy Green6ee372f2012-04-09 15:09:01 +08001919 * hs may also be coming in multiple packets, there is a 5-sec
Andy Green27a0b912011-04-16 10:54:28 +01001920 * libwebsocket timeout still active here too, so if parsing did
1921 * not complete just wait for next packet coming in this state
1922 */
1923
1924 if (wsi->parser_state != WSI_PARSING_COMPLETE)
1925 break;
Andy Greenbe93fef2011-02-14 20:25:43 +00001926
Yonathan Yusim3ae39ff2012-04-09 06:42:39 +08001927 /*
1928 * otherwise deal with the handshake. If there's any
1929 * packet traffic already arrived we'll trigger poll() again
1930 * right away and deal with it that way
1931 */
1932
Andy Greena41314f2011-05-23 10:00:03 +01001933 return lws_client_interpret_server_handshake(context, wsi);
Andy Greenbe93fef2011-02-14 20:25:43 +00001934
1935bail3:
1936 if (wsi->c_protocol)
1937 free(wsi->c_protocol);
Peter Hinz56885f32011-03-02 22:03:47 +00001938 libwebsocket_close_and_free_session(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001939 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenbe93fef2011-02-14 20:25:43 +00001940 return 1;
Andy Greena41314f2011-05-23 10:00:03 +01001941
1942 case LWS_CONNMODE_WS_CLIENT_WAITING_EXTENSION_CONNECT:
Andy Green6ee372f2012-04-09 15:09:01 +08001943 fprintf(stderr,
1944 "LWS_CONNMODE_WS_CLIENT_WAITING_EXTENSION_CONNECT\n");
Andy Greena41314f2011-05-23 10:00:03 +01001945 break;
1946
1947 case LWS_CONNMODE_WS_CLIENT_PENDING_CANDIDATE_CHILD:
Andy Green6ee372f2012-04-09 15:09:01 +08001948 fprintf(stderr,
1949 "LWS_CONNMODE_WS_CLIENT_PENDING_CANDIDATE_CHILD\n");
Andy Greena41314f2011-05-23 10:00:03 +01001950 break;
1951
Andy Greenbe93fef2011-02-14 20:25:43 +00001952
Andy Green0d338332011-02-12 11:57:43 +00001953 case LWS_CONNMODE_WS_SERVING:
1954 case LWS_CONNMODE_WS_CLIENT:
1955
1956 /* handle session socket closed */
1957
1958 if (pollfd->revents & (POLLERR | POLLHUP)) {
1959
Andy Green62c54d22011-02-14 09:14:25 +00001960 fprintf(stderr, "Session Socket %p (fd=%d) dead\n",
Andy Green0d338332011-02-12 11:57:43 +00001961 (void *)wsi, pollfd->fd);
1962
Peter Hinz56885f32011-03-02 22:03:47 +00001963 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00001964 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green4b6fbe12011-02-14 08:03:48 +00001965 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +00001966 }
1967
Andy Green0d338332011-02-12 11:57:43 +00001968 /* the guy requested a callback when it was OK to write */
1969
Andy Greenda527df2011-03-07 07:08:12 +00001970 if ((pollfd->revents & POLLOUT) &&
1971 wsi->state == WSI_STATE_ESTABLISHED)
1972 if (lws_handle_POLLOUT_event(context, wsi,
1973 pollfd) < 0) {
1974 libwebsocket_close_and_free_session(
1975 context, wsi, LWS_CLOSE_STATUS_NORMAL);
Andy Green3b84c002011-03-06 13:14:42 +00001976 return 1;
1977 }
Andy Green0d338332011-02-12 11:57:43 +00001978
Andy Green0d338332011-02-12 11:57:43 +00001979
1980 /* any incoming data ready? */
1981
1982 if (!(pollfd->revents & POLLIN))
1983 break;
1984
Andy Greenb45993c2010-12-18 15:13:50 +00001985#ifdef LWS_OPENSSL_SUPPORT
Andy Green0d338332011-02-12 11:57:43 +00001986 if (wsi->ssl)
Andy Green98a717c2011-03-06 13:14:15 +00001987 eff_buf.token_len = SSL_read(wsi->ssl, buf, sizeof buf);
Andy Greenb45993c2010-12-18 15:13:50 +00001988 else
1989#endif
Andy Green98a717c2011-03-06 13:14:15 +00001990 eff_buf.token_len =
Andy Green72c34322011-04-16 10:46:21 +01001991 recv(pollfd->fd, buf, sizeof buf, 0);
Andy Greenb45993c2010-12-18 15:13:50 +00001992
Andy Green98a717c2011-03-06 13:14:15 +00001993 if (eff_buf.token_len < 0) {
1994 fprintf(stderr, "Socket read returned %d\n",
1995 eff_buf.token_len);
Nick Dowellc04c1932012-04-05 10:29:39 +08001996 if (errno != EINTR)
Andy Green6ee372f2012-04-09 15:09:01 +08001997 libwebsocket_close_and_free_session(context,
1998 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Nick Dowellc04c1932012-04-05 10:29:39 +08001999 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +00002000 }
Andy Green98a717c2011-03-06 13:14:15 +00002001 if (!eff_buf.token_len) {
Peter Hinz56885f32011-03-02 22:03:47 +00002002 libwebsocket_close_and_free_session(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08002003 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green4b6fbe12011-02-14 08:03:48 +00002004 return 1;
Andy Greenb45993c2010-12-18 15:13:50 +00002005 }
2006
Andy Green98a717c2011-03-06 13:14:15 +00002007 /*
2008 * give any active extensions a chance to munge the buffer
2009 * before parse. We pass in a pointer to an lws_tokens struct
2010 * prepared with the default buffer and content length that's in
2011 * there. Rather than rewrite the default buffer, extensions
2012 * that expect to grow the buffer can adapt .token to
2013 * point to their own per-connection buffer in the extension
2014 * user allocation. By default with no extensions or no
2015 * extension callback handling, just the normal input buffer is
2016 * used then so it is efficient.
2017 */
Andy Greenb45993c2010-12-18 15:13:50 +00002018
Andy Green98a717c2011-03-06 13:14:15 +00002019 eff_buf.token = (char *)buf;
Andy Greenb45993c2010-12-18 15:13:50 +00002020
Andy Green98a717c2011-03-06 13:14:15 +00002021 more = 1;
2022 while (more) {
Andy Green0d338332011-02-12 11:57:43 +00002023
Andy Green98a717c2011-03-06 13:14:15 +00002024 more = 0;
2025
2026 for (n = 0; n < wsi->count_active_extensions; n++) {
Andy Green46c2ea02011-03-22 09:04:01 +00002027 m = wsi->active_extensions[n]->callback(context,
2028 wsi->active_extensions[n], wsi,
Andy Green98a717c2011-03-06 13:14:15 +00002029 LWS_EXT_CALLBACK_PACKET_RX_PREPARSE,
Andy Green46c2ea02011-03-22 09:04:01 +00002030 wsi->active_extensions_user[n],
2031 &eff_buf, 0);
Andy Green98a717c2011-03-06 13:14:15 +00002032 if (m < 0) {
Andy Green6ee372f2012-04-09 15:09:01 +08002033 fprintf(stderr,
2034 "Extension reports fatal error\n");
2035 libwebsocket_close_and_free_session(
2036 context, wsi,
2037 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green98a717c2011-03-06 13:14:15 +00002038 return 1;
2039 }
2040 if (m)
2041 more = 1;
2042 }
2043
2044 /* service incoming data */
2045
2046 if (eff_buf.token_len) {
2047 n = libwebsocket_read(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08002048 (unsigned char *)eff_buf.token,
2049 eff_buf.token_len);
Andy Green98a717c2011-03-06 13:14:15 +00002050 if (n < 0)
2051 /* we closed wsi */
2052 return 1;
2053 }
2054
2055 eff_buf.token = NULL;
2056 eff_buf.token_len = 0;
2057 }
2058 break;
Andy Greenb45993c2010-12-18 15:13:50 +00002059 }
2060
2061 return 0;
2062}
2063
Andy Green0d338332011-02-12 11:57:43 +00002064
Andy Green6964bb52011-01-23 16:50:33 +00002065/**
2066 * libwebsocket_context_destroy() - Destroy the websocket context
Peter Hinz56885f32011-03-02 22:03:47 +00002067 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00002068 *
2069 * This function closes any active connections and then frees the
2070 * context. After calling this, any further use of the context is
2071 * undefined.
2072 */
2073void
Peter Hinz56885f32011-03-02 22:03:47 +00002074libwebsocket_context_destroy(struct libwebsocket_context *context)
Andy Green6964bb52011-01-23 16:50:33 +00002075{
Andy Green0d338332011-02-12 11:57:43 +00002076 int n;
2077 int m;
2078 struct libwebsocket *wsi;
Andy Greena41314f2011-05-23 10:00:03 +01002079 struct libwebsocket_extension *ext;
Andy Green6964bb52011-01-23 16:50:33 +00002080
Andy Green4b6fbe12011-02-14 08:03:48 +00002081 for (n = 0; n < FD_HASHTABLE_MODULUS; n++)
Peter Hinz56885f32011-03-02 22:03:47 +00002082 for (m = 0; m < context->fd_hashtable[n].length; m++) {
2083 wsi = context->fd_hashtable[n].wsi[m];
2084 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +00002085 LWS_CLOSE_STATUS_GOINGAWAY);
Andy Greenf3d3b402011-02-09 07:16:34 +00002086 }
Andy Green6964bb52011-01-23 16:50:33 +00002087
Andy Greena41314f2011-05-23 10:00:03 +01002088 /*
2089 * give all extensions a chance to clean up any per-context
2090 * allocations they might have made
2091 */
2092
2093 ext = context->extensions;
2094 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_DESTRUCT;
2095 if (context->listen_port)
2096 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_DESTRUCT;
Paulo Roberto Urio1f680ab2012-06-04 08:40:28 +08002097 while (ext && ext->callback) {
Andy Greena41314f2011-05-23 10:00:03 +01002098 ext->callback(context, ext, NULL, m, NULL, NULL, 0);
2099 ext++;
2100 }
2101
Peter Hinz56885f32011-03-02 22:03:47 +00002102#ifdef WIN32
2103#else
2104 close(context->fd_random);
Andy Green6964bb52011-01-23 16:50:33 +00002105#endif
2106
Peter Hinz56885f32011-03-02 22:03:47 +00002107#ifdef LWS_OPENSSL_SUPPORT
2108 if (context->ssl_ctx)
2109 SSL_CTX_free(context->ssl_ctx);
2110 if (context->ssl_client_ctx)
2111 SSL_CTX_free(context->ssl_client_ctx);
2112#endif
2113
2114 free(context);
2115
2116#ifdef WIN32
2117 WSACleanup();
2118#endif
Andy Green6964bb52011-01-23 16:50:33 +00002119}
2120
2121/**
2122 * libwebsocket_service() - Service any pending websocket activity
Peter Hinz56885f32011-03-02 22:03:47 +00002123 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00002124 * @timeout_ms: Timeout for poll; 0 means return immediately if nothing needed
2125 * service otherwise block and service immediately, returning
2126 * after the timeout if nothing needed service.
2127 *
2128 * This function deals with any pending websocket traffic, for three
2129 * kinds of event. It handles these events on both server and client
2130 * types of connection the same.
2131 *
2132 * 1) Accept new connections to our context's server
2133 *
2134 * 2) Perform pending broadcast writes initiated from other forked
2135 * processes (effectively serializing asynchronous broadcasts)
2136 *
2137 * 3) Call the receive callback for incoming frame data received by
2138 * server or client connections.
2139 *
2140 * You need to call this service function periodically to all the above
2141 * functions to happen; if your application is single-threaded you can
2142 * just call it in your main event loop.
2143 *
2144 * Alternatively you can fork a new process that asynchronously handles
2145 * calling this service in a loop. In that case you are happy if this
2146 * call blocks your thread until it needs to take care of something and
2147 * would call it with a large nonzero timeout. Your loop then takes no
2148 * CPU while there is nothing happening.
2149 *
2150 * If you are calling it in a single-threaded app, you don't want it to
2151 * wait around blocking other things in your loop from happening, so you
2152 * would call it with a timeout_ms of 0, so it returns immediately if
2153 * nothing is pending, or as soon as it services whatever was pending.
2154 */
2155
Andy Greenb45993c2010-12-18 15:13:50 +00002156
Andy Greene92cd172011-01-19 13:11:55 +00002157int
Peter Hinz56885f32011-03-02 22:03:47 +00002158libwebsocket_service(struct libwebsocket_context *context, int timeout_ms)
Andy Greene92cd172011-01-19 13:11:55 +00002159{
2160 int n;
Andy Greene92cd172011-01-19 13:11:55 +00002161
2162 /* stay dead once we are dead */
2163
Peter Hinz56885f32011-03-02 22:03:47 +00002164 if (context == NULL)
Andy Greene92cd172011-01-19 13:11:55 +00002165 return 1;
2166
Andy Green0d338332011-02-12 11:57:43 +00002167 /* wait for something to need service */
Andy Green4739e5c2011-01-22 12:51:57 +00002168
Peter Hinz56885f32011-03-02 22:03:47 +00002169 n = poll(context->fds, context->fds_count, timeout_ms);
Andy Green3221f922011-02-12 13:14:11 +00002170 if (n == 0) /* poll timeout */
2171 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00002172
Andy Green62c54d22011-02-14 09:14:25 +00002173 if (n < 0) {
Andy Green5e1fa172011-02-10 09:07:05 +00002174 /*
Andy Greene92cd172011-01-19 13:11:55 +00002175 fprintf(stderr, "Listen Socket dead\n");
Andy Green5e1fa172011-02-10 09:07:05 +00002176 */
Andy Green0d338332011-02-12 11:57:43 +00002177 return 1;
Andy Greene92cd172011-01-19 13:11:55 +00002178 }
Andy Greene92cd172011-01-19 13:11:55 +00002179
2180 /* handle accept on listening socket? */
2181
Peter Hinz56885f32011-03-02 22:03:47 +00002182 for (n = 0; n < context->fds_count; n++)
2183 if (context->fds[n].revents)
2184 libwebsocket_service_fd(context, &context->fds[n]);
Andy Greene92cd172011-01-19 13:11:55 +00002185
2186 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00002187}
2188
Andy Greena41314f2011-05-23 10:00:03 +01002189int
2190lws_any_extension_handled(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08002191 struct libwebsocket *wsi,
2192 enum libwebsocket_extension_callback_reasons r,
Andy Greena41314f2011-05-23 10:00:03 +01002193 void *v, size_t len)
2194{
2195 int n;
2196 int handled = 0;
2197
2198 /* maybe an extension will take care of it for us */
2199
2200 for (n = 0; n < wsi->count_active_extensions && !handled; n++) {
2201 if (!wsi->active_extensions[n]->callback)
2202 continue;
2203
2204 handled |= wsi->active_extensions[n]->callback(context,
2205 wsi->active_extensions[n], wsi,
2206 r, wsi->active_extensions_user[n], v, len);
2207 }
2208
2209 return handled;
2210}
2211
2212
2213void *
2214lws_get_extension_user_matching_ext(struct libwebsocket *wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08002215 struct libwebsocket_extension *ext)
Andy Greena41314f2011-05-23 10:00:03 +01002216{
2217 int n = 0;
2218
Andy Green68b45042011-05-25 21:41:57 +01002219 if (wsi == NULL)
2220 return NULL;
2221
Andy Greena41314f2011-05-23 10:00:03 +01002222 while (n < wsi->count_active_extensions) {
2223 if (wsi->active_extensions[n] != ext) {
2224 n++;
2225 continue;
2226 }
2227 return wsi->active_extensions_user[n];
2228 }
2229
2230 return NULL;
2231}
2232
Andy Green90c7cbc2011-01-27 06:26:52 +00002233/**
2234 * libwebsocket_callback_on_writable() - Request a callback when this socket
2235 * becomes able to be written to without
2236 * blocking
Andy Green32375b72011-02-19 08:32:53 +00002237 *
Peter Hinz56885f32011-03-02 22:03:47 +00002238 * @context: libwebsockets context
Andy Green90c7cbc2011-01-27 06:26:52 +00002239 * @wsi: Websocket connection instance to get callback for
2240 */
2241
2242int
Peter Hinz56885f32011-03-02 22:03:47 +00002243libwebsocket_callback_on_writable(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08002244 struct libwebsocket *wsi)
Andy Green90c7cbc2011-01-27 06:26:52 +00002245{
Andy Green90c7cbc2011-01-27 06:26:52 +00002246 int n;
Andy Greena41314f2011-05-23 10:00:03 +01002247 int handled = 0;
2248
2249 /* maybe an extension will take care of it for us */
2250
2251 for (n = 0; n < wsi->count_active_extensions; n++) {
2252 if (!wsi->active_extensions[n]->callback)
2253 continue;
2254
2255 handled |= wsi->active_extensions[n]->callback(context,
2256 wsi->active_extensions[n], wsi,
2257 LWS_EXT_CALLBACK_REQUEST_ON_WRITEABLE,
2258 wsi->active_extensions_user[n], NULL, 0);
2259 }
2260
2261 if (handled)
2262 return 1;
Andy Green90c7cbc2011-01-27 06:26:52 +00002263
Peter Hinz56885f32011-03-02 22:03:47 +00002264 for (n = 0; n < context->fds_count; n++)
2265 if (context->fds[n].fd == wsi->sock) {
2266 context->fds[n].events |= POLLOUT;
Andy Greena41314f2011-05-23 10:00:03 +01002267 n = context->fds_count + 1;
Andy Green90c7cbc2011-01-27 06:26:52 +00002268 }
2269
Andy Greena41314f2011-05-23 10:00:03 +01002270 if (n == context->fds_count)
Andy Green6ee372f2012-04-09 15:09:01 +08002271 fprintf(stderr, "libwebsocket_callback_on_writable: "
2272 "failed to find socket %d\n", wsi->sock);
Andy Greena41314f2011-05-23 10:00:03 +01002273
Andy Green3221f922011-02-12 13:14:11 +00002274 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002275 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002276 LWS_CALLBACK_SET_MODE_POLL_FD,
2277 (void *)(long)wsi->sock, NULL, POLLOUT);
2278
Andy Green90c7cbc2011-01-27 06:26:52 +00002279 return 1;
2280}
2281
2282/**
2283 * libwebsocket_callback_on_writable_all_protocol() - Request a callback for
2284 * all connections using the given protocol when it
2285 * becomes possible to write to each socket without
2286 * blocking in turn.
2287 *
2288 * @protocol: Protocol whose connections will get callbacks
2289 */
2290
2291int
2292libwebsocket_callback_on_writable_all_protocol(
2293 const struct libwebsocket_protocols *protocol)
2294{
Peter Hinz56885f32011-03-02 22:03:47 +00002295 struct libwebsocket_context *context = protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00002296 int n;
Andy Green0d338332011-02-12 11:57:43 +00002297 int m;
2298 struct libwebsocket *wsi;
Andy Green90c7cbc2011-01-27 06:26:52 +00002299
Andy Green0d338332011-02-12 11:57:43 +00002300 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
2301
Peter Hinz56885f32011-03-02 22:03:47 +00002302 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Green0d338332011-02-12 11:57:43 +00002303
Peter Hinz56885f32011-03-02 22:03:47 +00002304 wsi = context->fd_hashtable[n].wsi[m];
Andy Green0d338332011-02-12 11:57:43 +00002305
2306 if (wsi->protocol == protocol)
Peter Hinz56885f32011-03-02 22:03:47 +00002307 libwebsocket_callback_on_writable(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002308 }
2309 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002310
2311 return 0;
2312}
2313
Andy Greenbe93fef2011-02-14 20:25:43 +00002314/**
2315 * libwebsocket_set_timeout() - marks the wsi as subject to a timeout
2316 *
2317 * You will not need this unless you are doing something special
2318 *
2319 * @wsi: Websocket connection instance
2320 * @reason: timeout reason
2321 * @secs: how many seconds
2322 */
2323
2324void
2325libwebsocket_set_timeout(struct libwebsocket *wsi,
2326 enum pending_timeout reason, int secs)
2327{
2328 struct timeval tv;
2329
2330 gettimeofday(&tv, NULL);
2331
2332 wsi->pending_timeout_limit = tv.tv_sec + secs;
2333 wsi->pending_timeout = reason;
2334}
2335
Andy Greena6cbece2011-01-27 20:06:03 +00002336
2337/**
2338 * libwebsocket_get_socket_fd() - returns the socket file descriptor
2339 *
2340 * You will not need this unless you are doing something special
2341 *
2342 * @wsi: Websocket connection instance
2343 */
2344
2345int
2346libwebsocket_get_socket_fd(struct libwebsocket *wsi)
2347{
2348 return wsi->sock;
2349}
2350
Andy Green90c7cbc2011-01-27 06:26:52 +00002351/**
2352 * libwebsocket_rx_flow_control() - Enable and disable socket servicing for
2353 * receieved packets.
2354 *
2355 * If the output side of a server process becomes choked, this allows flow
2356 * control for the input side.
2357 *
2358 * @wsi: Websocket connection instance to get callback for
2359 * @enable: 0 = disable read servicing for this connection, 1 = enable
2360 */
2361
2362int
2363libwebsocket_rx_flow_control(struct libwebsocket *wsi, int enable)
2364{
Peter Hinz56885f32011-03-02 22:03:47 +00002365 struct libwebsocket_context *context = wsi->protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00002366 int n;
2367
Peter Hinz56885f32011-03-02 22:03:47 +00002368 for (n = 0; n < context->fds_count; n++)
2369 if (context->fds[n].fd == wsi->sock) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002370 if (enable)
Peter Hinz56885f32011-03-02 22:03:47 +00002371 context->fds[n].events |= POLLIN;
Andy Green90c7cbc2011-01-27 06:26:52 +00002372 else
Peter Hinz56885f32011-03-02 22:03:47 +00002373 context->fds[n].events &= ~POLLIN;
Andy Green90c7cbc2011-01-27 06:26:52 +00002374
2375 return 0;
2376 }
2377
Andy Green3221f922011-02-12 13:14:11 +00002378 if (enable)
2379 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002380 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002381 LWS_CALLBACK_SET_MODE_POLL_FD,
2382 (void *)(long)wsi->sock, NULL, POLLIN);
2383 else
2384 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002385 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002386 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
2387 (void *)(long)wsi->sock, NULL, POLLIN);
2388
Andy Greena41314f2011-05-23 10:00:03 +01002389#if 0
2390 fprintf(stderr, "libwebsocket_rx_flow_control "
Andy Green90c7cbc2011-01-27 06:26:52 +00002391 "unable to find socket\n");
Andy Greena41314f2011-05-23 10:00:03 +01002392#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00002393 return 1;
2394}
2395
Andy Green2ac5a6f2011-01-28 10:00:18 +00002396/**
2397 * libwebsocket_canonical_hostname() - returns this host's hostname
2398 *
2399 * This is typically used by client code to fill in the host parameter
2400 * when making a client connection. You can only call it after the context
2401 * has been created.
2402 *
Peter Hinz56885f32011-03-02 22:03:47 +00002403 * @context: Websocket context
Andy Green2ac5a6f2011-01-28 10:00:18 +00002404 */
2405
2406
2407extern const char *
Peter Hinz56885f32011-03-02 22:03:47 +00002408libwebsocket_canonical_hostname(struct libwebsocket_context *context)
Andy Green2ac5a6f2011-01-28 10:00:18 +00002409{
Peter Hinz56885f32011-03-02 22:03:47 +00002410 return (const char *)context->canonical_hostname;
Andy Green2ac5a6f2011-01-28 10:00:18 +00002411}
2412
2413
Andy Green90c7cbc2011-01-27 06:26:52 +00002414static void sigpipe_handler(int x)
2415{
2416}
2417
Andy Green6901cb32011-02-21 08:06:47 +00002418#ifdef LWS_OPENSSL_SUPPORT
2419static int
2420OpenSSL_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx)
2421{
2422
2423 SSL *ssl;
2424 int n;
Andy Green2e24da02011-03-05 16:12:04 +00002425 struct libwebsocket_context *context;
Andy Green6901cb32011-02-21 08:06:47 +00002426
2427 ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
2428 SSL_get_ex_data_X509_STORE_CTX_idx());
2429
2430 /*
Andy Green2e24da02011-03-05 16:12:04 +00002431 * !!! nasty openssl requires the index to come as a library-scope
2432 * static
Andy Green6901cb32011-02-21 08:06:47 +00002433 */
Andy Green2e24da02011-03-05 16:12:04 +00002434 context = SSL_get_ex_data(ssl, openssl_websocket_private_data_index);
Andy Green6ee372f2012-04-09 15:09:01 +08002435
Peter Hinz56885f32011-03-02 22:03:47 +00002436 n = context->protocols[0].callback(NULL, NULL,
Andy Green6901cb32011-02-21 08:06:47 +00002437 LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION,
2438 x509_ctx, ssl, preverify_ok);
2439
2440 /* convert return code from 0 = OK to 1 = OK */
2441
2442 if (!n)
2443 n = 1;
2444 else
2445 n = 0;
2446
2447 return n;
2448}
2449#endif
2450
Andy Greenb45993c2010-12-18 15:13:50 +00002451
Andy Greenab990e42010-10-31 12:42:52 +00002452/**
Andy Green4739e5c2011-01-22 12:51:57 +00002453 * libwebsocket_create_context() - Create the websocket handler
2454 * @port: Port to listen on... you can use 0 to suppress listening on
Andy Green6964bb52011-01-23 16:50:33 +00002455 * any port, that's what you want if you are not running a
2456 * websocket server at all but just using it as a client
Peter Hinz56885f32011-03-02 22:03:47 +00002457 * @interf: NULL to bind the listen socket to all interfaces, or the
Andy Green32375b72011-02-19 08:32:53 +00002458 * interface name, eg, "eth2"
Andy Green4f3943a2010-11-12 10:44:16 +00002459 * @protocols: Array of structures listing supported protocols and a protocol-
Andy Green8f037e42010-12-19 22:13:26 +00002460 * specific callback for each one. The list is ended with an
2461 * entry that has a NULL callback pointer.
Andy Green6964bb52011-01-23 16:50:33 +00002462 * It's not const because we write the owning_server member
Andy Greenc5114822011-03-06 10:29:35 +00002463 * @extensions: NULL or array of libwebsocket_extension structs listing the
Andy Green6ee372f2012-04-09 15:09:01 +08002464 * extensions this context supports
Andy Green3faa9c72010-11-08 17:03:03 +00002465 * @ssl_cert_filepath: If libwebsockets was compiled to use ssl, and you want
Andy Green8f037e42010-12-19 22:13:26 +00002466 * to listen using SSL, set to the filepath to fetch the
2467 * server cert from, otherwise NULL for unencrypted
Andy Green3faa9c72010-11-08 17:03:03 +00002468 * @ssl_private_key_filepath: filepath to private key if wanting SSL mode,
Andy Green8f037e42010-12-19 22:13:26 +00002469 * else ignored
Andy Green3faa9c72010-11-08 17:03:03 +00002470 * @gid: group id to change to after setting listen socket, or -1.
2471 * @uid: user id to change to after setting listen socket, or -1.
Andy Greenbfb051f2011-02-09 08:49:14 +00002472 * @options: 0, or LWS_SERVER_OPTION_DEFEAT_CLIENT_MASK
Andy Green05464c62010-11-12 10:44:18 +00002473 *
Andy Green8f037e42010-12-19 22:13:26 +00002474 * This function creates the listening socket and takes care
2475 * of all initialization in one step.
2476 *
Andy Greene92cd172011-01-19 13:11:55 +00002477 * After initialization, it returns a struct libwebsocket_context * that
2478 * represents this server. After calling, user code needs to take care
2479 * of calling libwebsocket_service() with the context pointer to get the
2480 * server's sockets serviced. This can be done in the same process context
2481 * or a forked process, or another thread,
Andy Green05464c62010-11-12 10:44:18 +00002482 *
Andy Green8f037e42010-12-19 22:13:26 +00002483 * The protocol callback functions are called for a handful of events
2484 * including http requests coming in, websocket connections becoming
2485 * established, and data arriving; it's also called periodically to allow
2486 * async transmission.
2487 *
2488 * HTTP requests are sent always to the FIRST protocol in @protocol, since
2489 * at that time websocket protocol has not been negotiated. Other
2490 * protocols after the first one never see any HTTP callack activity.
2491 *
2492 * The server created is a simple http server by default; part of the
2493 * websocket standard is upgrading this http connection to a websocket one.
2494 *
2495 * This allows the same server to provide files like scripts and favicon /
2496 * images or whatever over http and dynamic data over websockets all in
2497 * one place; they're all handled in the user callback.
Andy Greenab990e42010-10-31 12:42:52 +00002498 */
Andy Green4ea60062010-10-30 12:15:07 +01002499
Andy Greene92cd172011-01-19 13:11:55 +00002500struct libwebsocket_context *
Peter Hinz56885f32011-03-02 22:03:47 +00002501libwebsocket_create_context(int port, const char *interf,
Andy Greenb45993c2010-12-18 15:13:50 +00002502 struct libwebsocket_protocols *protocols,
Andy Greend6e09112011-03-05 16:12:15 +00002503 struct libwebsocket_extension *extensions,
Andy Green8f037e42010-12-19 22:13:26 +00002504 const char *ssl_cert_filepath,
2505 const char *ssl_private_key_filepath,
Andy Green8014b292011-01-30 20:57:25 +00002506 int gid, int uid, unsigned int options)
Andy Greenff95d7a2010-10-28 22:36:01 +01002507{
2508 int n;
Andy Greena41314f2011-05-23 10:00:03 +01002509 int m;
Andy Green4739e5c2011-01-22 12:51:57 +00002510 int sockfd = 0;
Andy Green251f6fa2010-11-03 11:13:06 +00002511 int fd;
Andy Greenff95d7a2010-10-28 22:36:01 +01002512 struct sockaddr_in serv_addr, cli_addr;
Andy Green251f6fa2010-11-03 11:13:06 +00002513 int opt = 1;
Peter Hinz56885f32011-03-02 22:03:47 +00002514 struct libwebsocket_context *context = NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002515 unsigned int slen;
Andy Green9659f372011-01-27 22:01:43 +00002516 char *p;
Paulo Roberto Urio1e326632012-06-04 10:52:19 +08002517 char hostname[1024] = "";
Andy Greena69f0512012-05-03 12:32:38 +08002518// struct hostent *he;
Andy Green0d338332011-02-12 11:57:43 +00002519 struct libwebsocket *wsi;
Andy Greena69f0512012-05-03 12:32:38 +08002520 struct sockaddr sa;
Andy Greenff95d7a2010-10-28 22:36:01 +01002521
Andy Green3faa9c72010-11-08 17:03:03 +00002522#ifdef LWS_OPENSSL_SUPPORT
Andy Greenf2f54d52010-11-15 22:08:00 +00002523 SSL_METHOD *method;
Andy Green3faa9c72010-11-08 17:03:03 +00002524 char ssl_err_buf[512];
Andy Green3faa9c72010-11-08 17:03:03 +00002525#endif
2526
Peter Hinz56885f32011-03-02 22:03:47 +00002527#ifdef _WIN32
2528 {
2529 WORD wVersionRequested;
2530 WSADATA wsaData;
2531 int err;
Andy Green6ee372f2012-04-09 15:09:01 +08002532 HMODULE wsdll;
Peter Hinz56885f32011-03-02 22:03:47 +00002533
2534 /* Use the MAKEWORD(lowbyte, highbyte) macro from Windef.h */
2535 wVersionRequested = MAKEWORD(2, 2);
2536
2537 err = WSAStartup(wVersionRequested, &wsaData);
2538 if (err != 0) {
2539 /* Tell the user that we could not find a usable */
2540 /* Winsock DLL. */
2541 fprintf(stderr, "WSAStartup failed with error: %d\n",
2542 err);
2543 return NULL;
2544 }
David Galeano7b11fec2011-10-04 19:55:18 +08002545
Andy Green6ee372f2012-04-09 15:09:01 +08002546 /* default to a poll() made out of select() */
2547 poll = emulated_poll;
David Galeano7b11fec2011-10-04 19:55:18 +08002548
Andy Green6ee372f2012-04-09 15:09:01 +08002549 /* if windows socket lib available, use his WSAPoll */
2550 wsdll = GetModuleHandle("Ws2_32.dll");
2551 if (wsdll)
2552 poll = (PFNWSAPOLL)GetProcAddress(wsdll, "WSAPoll");
Peter Hinz56885f32011-03-02 22:03:47 +00002553 }
2554#endif
2555
2556
2557 context = malloc(sizeof(struct libwebsocket_context));
2558 if (!context) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002559 fprintf(stderr, "No memory for websocket context\n");
2560 return NULL;
2561 }
Peter Hinz56885f32011-03-02 22:03:47 +00002562 context->protocols = protocols;
2563 context->listen_port = port;
2564 context->http_proxy_port = 0;
2565 context->http_proxy_address[0] = '\0';
2566 context->options = options;
2567 context->fds_count = 0;
Andy Greend6e09112011-03-05 16:12:15 +00002568 context->extensions = extensions;
Paulo Roberto Urio1e326632012-06-04 10:52:19 +08002569 context->last_timeout_check_s = 0;
Andy Green9659f372011-01-27 22:01:43 +00002570
Peter Hinz56885f32011-03-02 22:03:47 +00002571#ifdef WIN32
2572 context->fd_random = 0;
2573#else
2574 context->fd_random = open(SYSTEM_RANDOM_FILEPATH, O_RDONLY);
2575 if (context->fd_random < 0) {
Andy Green44eee682011-02-10 09:32:24 +00002576 fprintf(stderr, "Unable to open random device %s %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002577 SYSTEM_RANDOM_FILEPATH, context->fd_random);
Andy Green44eee682011-02-10 09:32:24 +00002578 return NULL;
2579 }
Peter Hinz56885f32011-03-02 22:03:47 +00002580#endif
Andy Green44eee682011-02-10 09:32:24 +00002581
Peter Hinz56885f32011-03-02 22:03:47 +00002582#ifdef LWS_OPENSSL_SUPPORT
2583 context->use_ssl = 0;
2584 context->ssl_ctx = NULL;
2585 context->ssl_client_ctx = NULL;
Andy Green2e24da02011-03-05 16:12:04 +00002586 openssl_websocket_private_data_index = 0;
Peter Hinz56885f32011-03-02 22:03:47 +00002587#endif
Andy Green2ac5a6f2011-01-28 10:00:18 +00002588 /* find canonical hostname */
2589
2590 hostname[(sizeof hostname) - 1] = '\0';
Paulo Roberto Urio1e326632012-06-04 10:52:19 +08002591 memset(&sa, 0, sizeof(sa));
Andy Greena69f0512012-05-03 12:32:38 +08002592 sa.sa_family = AF_INET;
2593 sa.sa_data[(sizeof sa.sa_data) - 1] = '\0';
Andy Green2ac5a6f2011-01-28 10:00:18 +00002594 gethostname(hostname, (sizeof hostname) - 1);
Andy Greena69f0512012-05-03 12:32:38 +08002595
2596 n = 0;
2597
2598 if (strlen(hostname) < sizeof(sa.sa_data) - 1) {
Andy Green5513fe02012-06-04 08:53:26 +08002599 strcpy(sa.sa_data, hostname);
Andy Greena69f0512012-05-03 12:32:38 +08002600// fprintf(stderr, "my host name is %s\n", sa.sa_data);
Andy Green5513fe02012-06-04 08:53:26 +08002601 n = getnameinfo(&sa, sizeof(sa), hostname,
2602 (sizeof hostname) - 1, NULL, 0, 0);
Andy Greena69f0512012-05-03 12:32:38 +08002603 }
2604
2605 if (!n) {
2606 strncpy(context->canonical_hostname, hostname,
Peter Hinz56885f32011-03-02 22:03:47 +00002607 sizeof context->canonical_hostname - 1);
2608 context->canonical_hostname[
2609 sizeof context->canonical_hostname - 1] = '\0';
Darin Willitsc19456f2011-02-14 17:52:39 +00002610 } else
Peter Hinz56885f32011-03-02 22:03:47 +00002611 strncpy(context->canonical_hostname, hostname,
2612 sizeof context->canonical_hostname - 1);
Andy Green2ac5a6f2011-01-28 10:00:18 +00002613
Andy Greena69f0512012-05-03 12:32:38 +08002614// fprintf(stderr, "context->canonical_hostname = %s\n",
2615// context->canonical_hostname);
2616
Andy Green9659f372011-01-27 22:01:43 +00002617 /* split the proxy ads:port if given */
2618
2619 p = getenv("http_proxy");
2620 if (p) {
Peter Hinz56885f32011-03-02 22:03:47 +00002621 strncpy(context->http_proxy_address, p,
Andy Green6ee372f2012-04-09 15:09:01 +08002622 sizeof context->http_proxy_address - 1);
Peter Hinz56885f32011-03-02 22:03:47 +00002623 context->http_proxy_address[
2624 sizeof context->http_proxy_address - 1] = '\0';
Andy Green9659f372011-01-27 22:01:43 +00002625
Peter Hinz56885f32011-03-02 22:03:47 +00002626 p = strchr(context->http_proxy_address, ':');
Andy Green9659f372011-01-27 22:01:43 +00002627 if (p == NULL) {
2628 fprintf(stderr, "http_proxy needs to be ads:port\n");
2629 return NULL;
2630 }
2631 *p = '\0';
Peter Hinz56885f32011-03-02 22:03:47 +00002632 context->http_proxy_port = atoi(p + 1);
Andy Green9659f372011-01-27 22:01:43 +00002633
2634 fprintf(stderr, "Using proxy %s:%u\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002635 context->http_proxy_address,
2636 context->http_proxy_port);
Andy Green9659f372011-01-27 22:01:43 +00002637 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002638
2639 if (port) {
2640
Andy Green3faa9c72010-11-08 17:03:03 +00002641#ifdef LWS_OPENSSL_SUPPORT
Peter Hinz56885f32011-03-02 22:03:47 +00002642 context->use_ssl = ssl_cert_filepath != NULL &&
Andy Green90c7cbc2011-01-27 06:26:52 +00002643 ssl_private_key_filepath != NULL;
Peter Hinz56885f32011-03-02 22:03:47 +00002644 if (context->use_ssl)
Andy Green90c7cbc2011-01-27 06:26:52 +00002645 fprintf(stderr, " Compiled with SSL support, "
2646 "using it\n");
2647 else
2648 fprintf(stderr, " Compiled with SSL support, "
2649 "not using it\n");
Andy Green3faa9c72010-11-08 17:03:03 +00002650
Andy Green90c7cbc2011-01-27 06:26:52 +00002651#else
2652 if (ssl_cert_filepath != NULL &&
2653 ssl_private_key_filepath != NULL) {
2654 fprintf(stderr, " Not compiled for OpenSSl support!\n");
Andy Greene92cd172011-01-19 13:11:55 +00002655 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002656 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002657 fprintf(stderr, " Compiled without SSL support, "
2658 "serving unencrypted\n");
2659#endif
2660 }
2661
2662 /* ignore SIGPIPE */
Peter Hinz56885f32011-03-02 22:03:47 +00002663#ifdef WIN32
2664#else
Andy Green90c7cbc2011-01-27 06:26:52 +00002665 signal(SIGPIPE, sigpipe_handler);
Peter Hinz56885f32011-03-02 22:03:47 +00002666#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00002667
2668
2669#ifdef LWS_OPENSSL_SUPPORT
2670
2671 /* basic openssl init */
2672
2673 SSL_library_init();
2674
2675 OpenSSL_add_all_algorithms();
2676 SSL_load_error_strings();
2677
Andy Green2e24da02011-03-05 16:12:04 +00002678 openssl_websocket_private_data_index =
Andy Green6901cb32011-02-21 08:06:47 +00002679 SSL_get_ex_new_index(0, "libwebsockets", NULL, NULL, NULL);
2680
Andy Green90c7cbc2011-01-27 06:26:52 +00002681 /*
2682 * Firefox insists on SSLv23 not SSLv3
2683 * Konq disables SSLv2 by default now, SSLv23 works
2684 */
2685
2686 method = (SSL_METHOD *)SSLv23_server_method();
2687 if (!method) {
2688 fprintf(stderr, "problem creating ssl method: %s\n",
2689 ERR_error_string(ERR_get_error(), ssl_err_buf));
2690 return NULL;
2691 }
Peter Hinz56885f32011-03-02 22:03:47 +00002692 context->ssl_ctx = SSL_CTX_new(method); /* create context */
2693 if (!context->ssl_ctx) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002694 fprintf(stderr, "problem creating ssl context: %s\n",
2695 ERR_error_string(ERR_get_error(), ssl_err_buf));
2696 return NULL;
2697 }
2698
2699 /* client context */
Andy Green6ee372f2012-04-09 15:09:01 +08002700
2701 if (port == CONTEXT_PORT_NO_LISTEN) {
Peter Hinz56885f32011-03-02 22:03:47 +00002702 method = (SSL_METHOD *)SSLv23_client_method();
2703 if (!method) {
2704 fprintf(stderr, "problem creating ssl method: %s\n",
2705 ERR_error_string(ERR_get_error(), ssl_err_buf));
2706 return NULL;
2707 }
2708 /* create context */
2709 context->ssl_client_ctx = SSL_CTX_new(method);
2710 if (!context->ssl_client_ctx) {
2711 fprintf(stderr, "problem creating ssl context: %s\n",
2712 ERR_error_string(ERR_get_error(), ssl_err_buf));
2713 return NULL;
2714 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002715
Peter Hinz56885f32011-03-02 22:03:47 +00002716 /* openssl init for cert verification (for client sockets) */
Andy Green90c7cbc2011-01-27 06:26:52 +00002717
Peter Hinz56885f32011-03-02 22:03:47 +00002718 if (!SSL_CTX_load_verify_locations(
2719 context->ssl_client_ctx, NULL,
2720 LWS_OPENSSL_CLIENT_CERTS))
2721 fprintf(stderr,
2722 "Unable to load SSL Client certs from %s "
2723 "(set by --with-client-cert-dir= in configure) -- "
2724 " client ssl isn't going to work",
Andy Green90c7cbc2011-01-27 06:26:52 +00002725 LWS_OPENSSL_CLIENT_CERTS);
Peter Hinz56885f32011-03-02 22:03:47 +00002726
2727 /*
2728 * callback allowing user code to load extra verification certs
2729 * helping the client to verify server identity
2730 */
2731
2732 context->protocols[0].callback(context, NULL,
2733 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS,
2734 context->ssl_client_ctx, NULL, 0);
Andy Green90c7cbc2011-01-27 06:26:52 +00002735 }
Andy Green6ee372f2012-04-09 15:09:01 +08002736
Andy Greenc6bf2c22011-02-20 11:10:47 +00002737 /* as a server, are we requiring clients to identify themselves? */
2738
2739 if (options & LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT) {
2740
2741 /* absolutely require the client cert */
Andy Green6ee372f2012-04-09 15:09:01 +08002742
Peter Hinz56885f32011-03-02 22:03:47 +00002743 SSL_CTX_set_verify(context->ssl_ctx,
Andy Green6901cb32011-02-21 08:06:47 +00002744 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
2745 OpenSSL_verify_callback);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002746
2747 /*
2748 * give user code a chance to load certs into the server
2749 * allowing it to verify incoming client certs
2750 */
2751
Peter Hinz56885f32011-03-02 22:03:47 +00002752 context->protocols[0].callback(context, NULL,
Andy Greenc6bf2c22011-02-20 11:10:47 +00002753 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS,
Peter Hinz56885f32011-03-02 22:03:47 +00002754 context->ssl_ctx, NULL, 0);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002755 }
2756
Peter Hinz56885f32011-03-02 22:03:47 +00002757 if (context->use_ssl) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002758
2759 /* openssl init for server sockets */
2760
Andy Green3faa9c72010-11-08 17:03:03 +00002761 /* set the local certificate from CertFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002762 n = SSL_CTX_use_certificate_file(context->ssl_ctx,
Andy Green3faa9c72010-11-08 17:03:03 +00002763 ssl_cert_filepath, SSL_FILETYPE_PEM);
2764 if (n != 1) {
2765 fprintf(stderr, "problem getting cert '%s': %s\n",
2766 ssl_cert_filepath,
2767 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00002768 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002769 }
2770 /* set the private key from KeyFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002771 if (SSL_CTX_use_PrivateKey_file(context->ssl_ctx,
2772 ssl_private_key_filepath, SSL_FILETYPE_PEM) != 1) {
Andy Green018d8eb2010-11-08 21:04:23 +00002773 fprintf(stderr, "ssl problem getting key '%s': %s\n",
2774 ssl_private_key_filepath,
2775 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00002776 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002777 }
2778 /* verify private key */
Peter Hinz56885f32011-03-02 22:03:47 +00002779 if (!SSL_CTX_check_private_key(context->ssl_ctx)) {
Andy Green018d8eb2010-11-08 21:04:23 +00002780 fprintf(stderr, "Private SSL key doesn't match cert\n");
Andy Greene92cd172011-01-19 13:11:55 +00002781 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00002782 }
2783
2784 /* SSL is happy and has a cert it's content with */
2785 }
2786#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002787
Andy Greendf736162011-01-18 15:39:02 +00002788 /* selftest */
2789
2790 if (lws_b64_selftest())
Andy Greene92cd172011-01-19 13:11:55 +00002791 return NULL;
Andy Greendf736162011-01-18 15:39:02 +00002792
Andy Green0d338332011-02-12 11:57:43 +00002793 /* fd hashtable init */
2794
2795 for (n = 0; n < FD_HASHTABLE_MODULUS; n++)
Peter Hinz56885f32011-03-02 22:03:47 +00002796 context->fd_hashtable[n].length = 0;
Andy Green0d338332011-02-12 11:57:43 +00002797
Andy Greenb45993c2010-12-18 15:13:50 +00002798 /* set up our external listening socket we serve on */
Andy Green8f037e42010-12-19 22:13:26 +00002799
Andy Green4739e5c2011-01-22 12:51:57 +00002800 if (port) {
Andy Green8f037e42010-12-19 22:13:26 +00002801
Andy Green4739e5c2011-01-22 12:51:57 +00002802 sockfd = socket(AF_INET, SOCK_STREAM, 0);
2803 if (sockfd < 0) {
2804 fprintf(stderr, "ERROR opening socket");
2805 return NULL;
2806 }
Andy Green775c0dd2010-10-29 14:15:22 +01002807
Andy Green4739e5c2011-01-22 12:51:57 +00002808 /* allow us to restart even if old sockets in TIME_WAIT */
Andy Green6ee372f2012-04-09 15:09:01 +08002809 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR,
2810 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00002811
2812 /* Disable Nagle */
2813 opt = 1;
Andy Green6ee372f2012-04-09 15:09:01 +08002814 setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY,
2815 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00002816
Andy Green4739e5c2011-01-22 12:51:57 +00002817 bzero((char *) &serv_addr, sizeof(serv_addr));
2818 serv_addr.sin_family = AF_INET;
Peter Hinz56885f32011-03-02 22:03:47 +00002819 if (interf == NULL)
Andy Green32375b72011-02-19 08:32:53 +00002820 serv_addr.sin_addr.s_addr = INADDR_ANY;
2821 else
Peter Hinz56885f32011-03-02 22:03:47 +00002822 interface_to_sa(interf, &serv_addr,
Andy Green32375b72011-02-19 08:32:53 +00002823 sizeof(serv_addr));
Andy Green4739e5c2011-01-22 12:51:57 +00002824 serv_addr.sin_port = htons(port);
2825
2826 n = bind(sockfd, (struct sockaddr *) &serv_addr,
2827 sizeof(serv_addr));
2828 if (n < 0) {
2829 fprintf(stderr, "ERROR on binding to port %d (%d %d)\n",
Andy Green8f037e42010-12-19 22:13:26 +00002830 port, n, errno);
Andy Green4739e5c2011-01-22 12:51:57 +00002831 return NULL;
2832 }
Andy Green0d338332011-02-12 11:57:43 +00002833
2834 wsi = malloc(sizeof(struct libwebsocket));
Andy Green6ee372f2012-04-09 15:09:01 +08002835 memset(wsi, 0, sizeof(struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00002836 wsi->sock = sockfd;
Andy Greend6e09112011-03-05 16:12:15 +00002837 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00002838 wsi->mode = LWS_CONNMODE_SERVER_LISTENER;
Peter Hinz56885f32011-03-02 22:03:47 +00002839 insert_wsi(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002840
2841 listen(sockfd, 5);
2842 fprintf(stderr, " Listening on port %d\n", port);
2843
2844 /* list in the internal poll array */
Andy Green6ee372f2012-04-09 15:09:01 +08002845
Peter Hinz56885f32011-03-02 22:03:47 +00002846 context->fds[context->fds_count].fd = sockfd;
2847 context->fds[context->fds_count++].events = POLLIN;
Andy Green3221f922011-02-12 13:14:11 +00002848
2849 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002850 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002851 LWS_CALLBACK_ADD_POLL_FD,
2852 (void *)(long)sockfd, NULL, POLLIN);
2853
Andy Green8f037e42010-12-19 22:13:26 +00002854 }
Andy Greenb45993c2010-12-18 15:13:50 +00002855
Andy Green6ee372f2012-04-09 15:09:01 +08002856 /*
2857 * drop any root privs for this process
2858 * to listen on port < 1023 we would have needed root, but now we are
2859 * listening, we don't want the power for anything else
2860 */
Peter Hinz56885f32011-03-02 22:03:47 +00002861#ifdef WIN32
2862#else
Andy Green3faa9c72010-11-08 17:03:03 +00002863 if (gid != -1)
2864 if (setgid(gid))
2865 fprintf(stderr, "setgid: %s\n", strerror(errno));
2866 if (uid != -1)
2867 if (setuid(uid))
2868 fprintf(stderr, "setuid: %s\n", strerror(errno));
Peter Hinz56885f32011-03-02 22:03:47 +00002869#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002870
2871 /* set up our internal broadcast trigger sockets per-protocol */
2872
Peter Hinz56885f32011-03-02 22:03:47 +00002873 for (context->count_protocols = 0;
2874 protocols[context->count_protocols].callback;
2875 context->count_protocols++) {
Andy Green2d1301e2011-05-24 10:14:41 +01002876
David Brooksee2213d2012-04-20 12:13:37 +08002877 debug(" Protocol: %s\n", protocols[context->count_protocols].name);
Andy Green2d1301e2011-05-24 10:14:41 +01002878
Peter Hinz56885f32011-03-02 22:03:47 +00002879 protocols[context->count_protocols].owning_server = context;
2880 protocols[context->count_protocols].protocol_index =
2881 context->count_protocols;
Andy Greenb45993c2010-12-18 15:13:50 +00002882
2883 fd = socket(AF_INET, SOCK_STREAM, 0);
2884 if (fd < 0) {
2885 fprintf(stderr, "ERROR opening socket");
Andy Greene92cd172011-01-19 13:11:55 +00002886 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002887 }
Andy Green8f037e42010-12-19 22:13:26 +00002888
Andy Greenb45993c2010-12-18 15:13:50 +00002889 /* allow us to restart even if old sockets in TIME_WAIT */
Andy Green6ee372f2012-04-09 15:09:01 +08002890 setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (const void *)&opt,
2891 sizeof(opt));
Andy Greenb45993c2010-12-18 15:13:50 +00002892
2893 bzero((char *) &serv_addr, sizeof(serv_addr));
2894 serv_addr.sin_family = AF_INET;
2895 serv_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
2896 serv_addr.sin_port = 0; /* pick the port for us */
2897
2898 n = bind(fd, (struct sockaddr *) &serv_addr, sizeof(serv_addr));
2899 if (n < 0) {
Andy Green8f037e42010-12-19 22:13:26 +00002900 fprintf(stderr, "ERROR on binding to port %d (%d %d)\n",
Andy Greenb45993c2010-12-18 15:13:50 +00002901 port, n, errno);
Andy Greene92cd172011-01-19 13:11:55 +00002902 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002903 }
2904
2905 slen = sizeof cli_addr;
2906 n = getsockname(fd, (struct sockaddr *)&cli_addr, &slen);
2907 if (n < 0) {
2908 fprintf(stderr, "getsockname failed\n");
Andy Greene92cd172011-01-19 13:11:55 +00002909 return NULL;
Andy Greenb45993c2010-12-18 15:13:50 +00002910 }
Peter Hinz56885f32011-03-02 22:03:47 +00002911 protocols[context->count_protocols].broadcast_socket_port =
Andy Greenb45993c2010-12-18 15:13:50 +00002912 ntohs(cli_addr.sin_port);
2913 listen(fd, 5);
2914
2915 debug(" Protocol %s broadcast socket %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002916 protocols[context->count_protocols].name,
Andy Greenb45993c2010-12-18 15:13:50 +00002917 ntohs(cli_addr.sin_port));
2918
Andy Green0d338332011-02-12 11:57:43 +00002919 /* dummy wsi per broadcast proxy socket */
2920
2921 wsi = malloc(sizeof(struct libwebsocket));
Andy Green6ee372f2012-04-09 15:09:01 +08002922 memset(wsi, 0, sizeof(struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00002923 wsi->sock = fd;
2924 wsi->mode = LWS_CONNMODE_BROADCAST_PROXY_LISTENER;
Andy Greend6e09112011-03-05 16:12:15 +00002925 wsi->count_active_extensions = 0;
Andy Green0d338332011-02-12 11:57:43 +00002926 /* note which protocol we are proxying */
Peter Hinz56885f32011-03-02 22:03:47 +00002927 wsi->protocol_index_for_broadcast_proxy =
2928 context->count_protocols;
2929 insert_wsi(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002930
2931 /* list in internal poll array */
2932
Peter Hinz56885f32011-03-02 22:03:47 +00002933 context->fds[context->fds_count].fd = fd;
2934 context->fds[context->fds_count].events = POLLIN;
2935 context->fds[context->fds_count].revents = 0;
2936 context->fds_count++;
Andy Green3221f922011-02-12 13:14:11 +00002937
2938 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00002939 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00002940 LWS_CALLBACK_ADD_POLL_FD,
2941 (void *)(long)fd, NULL, POLLIN);
Andy Greenb45993c2010-12-18 15:13:50 +00002942 }
2943
Andy Greena41314f2011-05-23 10:00:03 +01002944 /*
2945 * give all extensions a chance to create any per-context
2946 * allocations they need
2947 */
2948
2949 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_CONSTRUCT;
2950 if (port)
2951 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_CONSTRUCT;
Andrew Chambersd5512172012-05-20 08:17:09 +08002952
2953 if (extensions) {
2954 while (extensions->callback) {
2955 debug(" Extension: %s\n", extensions->name);
2956 extensions->callback(context, extensions,
2957 NULL, m, NULL, NULL, 0);
2958 extensions++;
2959 }
Andy Greena41314f2011-05-23 10:00:03 +01002960 }
2961
Peter Hinz56885f32011-03-02 22:03:47 +00002962 return context;
Andy Greene92cd172011-01-19 13:11:55 +00002963}
Andy Greenb45993c2010-12-18 15:13:50 +00002964
Andy Green4739e5c2011-01-22 12:51:57 +00002965
Andy Greened11a022011-01-20 10:23:50 +00002966#ifndef LWS_NO_FORK
2967
Andy Greene92cd172011-01-19 13:11:55 +00002968/**
2969 * libwebsockets_fork_service_loop() - Optional helper function forks off
2970 * a process for the websocket server loop.
Andy Green6964bb52011-01-23 16:50:33 +00002971 * You don't have to use this but if not, you
2972 * have to make sure you are calling
2973 * libwebsocket_service periodically to service
2974 * the websocket traffic
Peter Hinz56885f32011-03-02 22:03:47 +00002975 * @context: server context returned by creation function
Andy Greene92cd172011-01-19 13:11:55 +00002976 */
Andy Greenb45993c2010-12-18 15:13:50 +00002977
Andy Greene92cd172011-01-19 13:11:55 +00002978int
Peter Hinz56885f32011-03-02 22:03:47 +00002979libwebsockets_fork_service_loop(struct libwebsocket_context *context)
Andy Greene92cd172011-01-19 13:11:55 +00002980{
Andy Greene92cd172011-01-19 13:11:55 +00002981 int fd;
2982 struct sockaddr_in cli_addr;
2983 int n;
Andy Green3221f922011-02-12 13:14:11 +00002984 int p;
Andy Greenb45993c2010-12-18 15:13:50 +00002985
Andy Greened11a022011-01-20 10:23:50 +00002986 n = fork();
2987 if (n < 0)
2988 return n;
2989
2990 if (!n) {
2991
2992 /* main process context */
2993
Andy Green3221f922011-02-12 13:14:11 +00002994 /*
2995 * set up the proxy sockets to allow broadcast from
2996 * service process context
2997 */
2998
Peter Hinz56885f32011-03-02 22:03:47 +00002999 for (p = 0; p < context->count_protocols; p++) {
Andy Greened11a022011-01-20 10:23:50 +00003000 fd = socket(AF_INET, SOCK_STREAM, 0);
3001 if (fd < 0) {
3002 fprintf(stderr, "Unable to create socket\n");
3003 return -1;
3004 }
3005 cli_addr.sin_family = AF_INET;
3006 cli_addr.sin_port = htons(
Peter Hinz56885f32011-03-02 22:03:47 +00003007 context->protocols[p].broadcast_socket_port);
Andy Greened11a022011-01-20 10:23:50 +00003008 cli_addr.sin_addr.s_addr = inet_addr("127.0.0.1");
3009 n = connect(fd, (struct sockaddr *)&cli_addr,
3010 sizeof cli_addr);
3011 if (n < 0) {
3012 fprintf(stderr, "Unable to connect to "
3013 "broadcast socket %d, %s\n",
Andy Green3221f922011-02-12 13:14:11 +00003014 n, strerror(errno));
Andy Greened11a022011-01-20 10:23:50 +00003015 return -1;
3016 }
3017
Peter Hinz56885f32011-03-02 22:03:47 +00003018 context->protocols[p].broadcast_socket_user_fd = fd;
Andy Greened11a022011-01-20 10:23:50 +00003019 }
3020
Andy Greene92cd172011-01-19 13:11:55 +00003021 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +00003022 }
3023
3024 /* we want a SIGHUP when our parent goes down */
3025 prctl(PR_SET_PDEATHSIG, SIGHUP);
3026
3027 /* in this forked process, sit and service websocket connections */
Andy Green8f037e42010-12-19 22:13:26 +00003028
Andy Greene92cd172011-01-19 13:11:55 +00003029 while (1)
Peter Hinz56885f32011-03-02 22:03:47 +00003030 if (libwebsocket_service(context, 1000))
Andy Greene92cd172011-01-19 13:11:55 +00003031 return -1;
Andy Green8f037e42010-12-19 22:13:26 +00003032
Andy Green251f6fa2010-11-03 11:13:06 +00003033 return 0;
Andy Greenff95d7a2010-10-28 22:36:01 +01003034}
3035
Andy Greened11a022011-01-20 10:23:50 +00003036#endif
3037
Andy Greenb45993c2010-12-18 15:13:50 +00003038/**
3039 * libwebsockets_get_protocol() - Returns a protocol pointer from a websocket
Andy Green8f037e42010-12-19 22:13:26 +00003040 * connection.
Andy Greenb45993c2010-12-18 15:13:50 +00003041 * @wsi: pointer to struct websocket you want to know the protocol of
3042 *
Andy Green8f037e42010-12-19 22:13:26 +00003043 *
3044 * This is useful to get the protocol to broadcast back to from inside
Andy Greenb45993c2010-12-18 15:13:50 +00003045 * the callback.
3046 */
Andy Greenab990e42010-10-31 12:42:52 +00003047
Andy Greenb45993c2010-12-18 15:13:50 +00003048const struct libwebsocket_protocols *
3049libwebsockets_get_protocol(struct libwebsocket *wsi)
3050{
3051 return wsi->protocol;
3052}
3053
3054/**
Andy Greene92cd172011-01-19 13:11:55 +00003055 * libwebsockets_broadcast() - Sends a buffer to the callback for all active
Andy Green8f037e42010-12-19 22:13:26 +00003056 * connections of the given protocol.
Andy Greenb45993c2010-12-18 15:13:50 +00003057 * @protocol: pointer to the protocol you will broadcast to all members of
3058 * @buf: buffer containing the data to be broadcase. NOTE: this has to be
Andy Green8f037e42010-12-19 22:13:26 +00003059 * allocated with LWS_SEND_BUFFER_PRE_PADDING valid bytes before
3060 * the pointer and LWS_SEND_BUFFER_POST_PADDING afterwards in the
3061 * case you are calling this function from callback context.
Andy Greenb45993c2010-12-18 15:13:50 +00003062 * @len: length of payload data in buf, starting from buf.
Andy Green8f037e42010-12-19 22:13:26 +00003063 *
3064 * This function allows bulk sending of a packet to every connection using
Andy Greenb45993c2010-12-18 15:13:50 +00003065 * the given protocol. It does not send the data directly; instead it calls
3066 * the callback with a reason type of LWS_CALLBACK_BROADCAST. If the callback
3067 * wants to actually send the data for that connection, the callback itself
3068 * should call libwebsocket_write().
3069 *
3070 * libwebsockets_broadcast() can be called from another fork context without
3071 * having to take any care about data visibility between the processes, it'll
3072 * "just work".
3073 */
3074
3075
3076int
Andy Green8f037e42010-12-19 22:13:26 +00003077libwebsockets_broadcast(const struct libwebsocket_protocols *protocol,
Andy Greenb45993c2010-12-18 15:13:50 +00003078 unsigned char *buf, size_t len)
3079{
Peter Hinz56885f32011-03-02 22:03:47 +00003080 struct libwebsocket_context *context = protocol->owning_server;
Andy Greenb45993c2010-12-18 15:13:50 +00003081 int n;
Andy Green0d338332011-02-12 11:57:43 +00003082 int m;
Andy Green6ee372f2012-04-09 15:09:01 +08003083 struct libwebsocket *wsi;
Andy Greenb45993c2010-12-18 15:13:50 +00003084
3085 if (!protocol->broadcast_socket_user_fd) {
3086 /*
Andy Greene92cd172011-01-19 13:11:55 +00003087 * We are either running unforked / flat, or we are being
3088 * called from poll thread context
Andy Greenb45993c2010-12-18 15:13:50 +00003089 * eg, from a callback. In that case don't use sockets for
3090 * broadcast IPC (since we can't open a socket connection to
3091 * a socket listening on our own thread) but directly do the
3092 * send action.
3093 *
3094 * Locking is not needed because we are by definition being
3095 * called in the poll thread context and are serialized.
3096 */
3097
Andy Green0d338332011-02-12 11:57:43 +00003098 for (n = 0; n < FD_HASHTABLE_MODULUS; n++) {
Andy Greenb45993c2010-12-18 15:13:50 +00003099
Peter Hinz56885f32011-03-02 22:03:47 +00003100 for (m = 0; m < context->fd_hashtable[n].length; m++) {
Andy Greenb45993c2010-12-18 15:13:50 +00003101
Peter Hinz56885f32011-03-02 22:03:47 +00003102 wsi = context->fd_hashtable[n].wsi[m];
Andy Greenb45993c2010-12-18 15:13:50 +00003103
Andy Green0d338332011-02-12 11:57:43 +00003104 if (wsi->mode != LWS_CONNMODE_WS_SERVING)
3105 continue;
Andy Greenb45993c2010-12-18 15:13:50 +00003106
Andy Green0d338332011-02-12 11:57:43 +00003107 /*
3108 * never broadcast to
3109 * non-established connections
3110 */
3111 if (wsi->state != WSI_STATE_ESTABLISHED)
3112 continue;
3113
3114 /* only broadcast to guys using
3115 * requested protocol
3116 */
3117 if (wsi->protocol != protocol)
3118 continue;
3119
Peter Hinz56885f32011-03-02 22:03:47 +00003120 wsi->protocol->callback(context, wsi,
Andy Green8f037e42010-12-19 22:13:26 +00003121 LWS_CALLBACK_BROADCAST,
Andy Green0d338332011-02-12 11:57:43 +00003122 wsi->user_space,
Andy Greenb45993c2010-12-18 15:13:50 +00003123 buf, len);
Andy Green0d338332011-02-12 11:57:43 +00003124 }
Andy Greenb45993c2010-12-18 15:13:50 +00003125 }
3126
3127 return 0;
3128 }
3129
Andy Green0ca6a172010-12-19 20:50:01 +00003130 /*
3131 * We're being called from a different process context than the server
3132 * loop. Instead of broadcasting directly, we send our
3133 * payload on a socket to do the IPC; the server process will serialize
3134 * the broadcast action in its main poll() loop.
3135 *
3136 * There's one broadcast socket listening for each protocol supported
3137 * set up when the websocket server initializes
3138 */
3139
Andy Green6964bb52011-01-23 16:50:33 +00003140 n = send(protocol->broadcast_socket_user_fd, buf, len, MSG_NOSIGNAL);
Andy Greenb45993c2010-12-18 15:13:50 +00003141
3142 return n;
3143}
Andy Green82c3d542011-03-07 21:16:31 +00003144
3145int
3146libwebsocket_is_final_fragment(struct libwebsocket *wsi)
3147{
3148 return wsi->final;
3149}
Alex Bligh49146db2011-11-07 17:19:25 +08003150
3151void *
3152libwebsocket_ensure_user_space(struct libwebsocket *wsi)
3153{
3154 /* allocate the per-connection user memory (if any) */
3155
3156 if (wsi->protocol->per_session_data_size && !wsi->user_space) {
3157 wsi->user_space = malloc(
3158 wsi->protocol->per_session_data_size);
3159 if (wsi->user_space == NULL) {
3160 fprintf(stderr, "Out of memory for "
3161 "conn user space\n");
3162 return NULL;
3163 }
Andy Green6ee372f2012-04-09 15:09:01 +08003164 memset(wsi->user_space, 0,
3165 wsi->protocol->per_session_data_size);
Alex Bligh49146db2011-11-07 17:19:25 +08003166 }
3167 return wsi->user_space;
3168}