blob: 03c37c2655f180b2a60d8c8fb0ce1f302d24601a [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
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +010024#if defined(WIN32) || defined(_WIN32)
David Galeanocb193682013-01-09 15:29:00 +080025#include <tchar.h>
26#include <io.h>
Joakim Soderberg63ff1202013-02-11 17:52:23 +010027#include <mstcpip.h>
Peter Hinz56885f32011-03-02 22:03:47 +000028#else
Davidc4ef7b12013-01-12 20:39:47 +080029#ifdef LWS_BUILTIN_GETIFADDRS
30#include <getifaddrs.h>
31#else
Peter Hinz56885f32011-03-02 22:03:47 +000032#include <ifaddrs.h>
Davidc4ef7b12013-01-12 20:39:47 +080033#endif
Joakim Soderberg4c531232013-02-06 15:26:58 +090034#include <syslog.h>
Andy Green7627af52011-03-09 15:13:52 +000035#include <sys/un.h>
Andy Greena69f0512012-05-03 12:32:38 +080036#include <sys/socket.h>
37#include <netdb.h>
Peter Hinz56885f32011-03-02 22:03:47 +000038#endif
Andy Green2e24da02011-03-05 16:12:04 +000039
Andy Green3b3fa9e2013-12-25 16:34:37 +080040#include <sys/types.h>
41
Andy Green2e24da02011-03-05 16:12:04 +000042#ifdef LWS_OPENSSL_SUPPORT
43int openssl_websocket_private_data_index;
44#endif
45
Andy Greenaa6fc442012-04-12 13:26:49 +080046#ifdef __MINGW32__
47#include "../win32port/win32helpers/websock-w32.c"
48#else
49#ifdef __MINGW64__
50#include "../win32port/win32helpers/websock-w32.c"
51#endif
52#endif
53
Andy Green7b405452013-02-01 10:50:15 +080054#ifndef LWS_BUILD_HASH
55#define LWS_BUILD_HASH "unknown-build-hash"
56#endif
Andy Green3182ece2013-01-20 17:08:31 +080057
Andy Green7c19c342013-01-19 12:18:07 +080058static int log_level = LLL_ERR | LLL_WARN | LLL_NOTICE;
Andy Green058ba812013-01-19 11:32:18 +080059static void lwsl_emit_stderr(int level, const char *line);
60static void (*lwsl_emit)(int level, const char *line) = lwsl_emit_stderr;
61
Andy Green7b405452013-02-01 10:50:15 +080062static const char *library_version = LWS_LIBRARY_VERSION " " LWS_BUILD_HASH;
63
Andy Greenb5b23192013-02-11 17:13:32 +080064static const char * const log_level_names[] = {
Andy Green43db0452013-01-10 19:50:35 +080065 "ERR",
66 "WARN",
Andy Green7c19c342013-01-19 12:18:07 +080067 "NOTICE",
Andy Green43db0452013-01-10 19:50:35 +080068 "INFO",
69 "DEBUG",
70 "PARSER",
71 "HEADER",
72 "EXTENSION",
73 "CLIENT",
Andy Greend636e352013-01-29 12:36:17 +080074 "LATENCY",
Andy Green43db0452013-01-10 19:50:35 +080075};
76
Andy Greenb5b23192013-02-11 17:13:32 +080077#ifndef LWS_NO_CLIENT
78 extern int lws_client_socket_service(
79 struct libwebsocket_context *context,
80 struct libwebsocket *wsi, struct pollfd *pollfd);
81#endif
82#ifndef LWS_NO_SERVER
83 extern int lws_server_socket_service(
84 struct libwebsocket_context *context,
85 struct libwebsocket *wsi, struct pollfd *pollfd);
86#endif
87
Andy Green3b3fa9e2013-12-25 16:34:37 +080088
89#ifdef LWS_HAS_PPOLL
90/*
91 * set to the Thread ID that's doing the service loop just before entry to ppoll
92 * indicates service thread likely idling in ppoll()
93 * volatile because other threads may check it as part of processing for pollfd
94 * event change.
95 */
96static volatile int lws_idling_ppoll_tid;
97#endif
98
Andy Green7b405452013-02-01 10:50:15 +080099/**
100 * lws_get_library_version: get version and git hash library built from
101 *
102 * returns a const char * to a string like "1.1 178d78c"
103 * representing the library version followed by the git head hash it
104 * was built from
105 */
106
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800107LWS_VISIBLE const char *
Andy Green7b405452013-02-01 10:50:15 +0800108lws_get_library_version(void)
109{
110 return library_version;
111}
112
Andy Green0d338332011-02-12 11:57:43 +0000113int
Andy Greenb5b23192013-02-11 17:13:32 +0800114insert_wsi_socket_into_fds(struct libwebsocket_context *context,
115 struct libwebsocket *wsi)
Andy Green0d338332011-02-12 11:57:43 +0000116{
Andy Greendfb23042013-01-17 12:26:48 +0800117 if (context->fds_count >= context->max_fds) {
Andy Greenb5b23192013-02-11 17:13:32 +0800118 lwsl_err("Too many fds (%d)\n", context->max_fds);
Andy Green0d338332011-02-12 11:57:43 +0000119 return 1;
120 }
121
nononamef1624922014-01-11 13:12:34 +0800122 if (wsi->sock >= context->max_fds) {
Andy Greenb5b23192013-02-11 17:13:32 +0800123 lwsl_err("Socket fd %d is too high (%d)\n",
124 wsi->sock, context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +0800125 return 1;
126 }
127
128 assert(wsi);
Andy Green512c2462013-09-18 12:59:33 +0800129 assert(wsi->sock >= 0);
Andy Greendfb23042013-01-17 12:26:48 +0800130
Andy Greenb5b23192013-02-11 17:13:32 +0800131 lwsl_info("insert_wsi_socket_into_fds: wsi=%p, sock=%d, fds pos=%d\n",
132 wsi, wsi->sock, context->fds_count);
Andy Greendfb23042013-01-17 12:26:48 +0800133
Andy Green7a132792013-12-18 09:48:26 +0800134 context->protocols[0].callback(context, wsi,
135 LWS_CALLBACK_LOCK_POLL,
136 wsi->user_space, (void *)(long)wsi->sock, 0);
137
Andy Greendfb23042013-01-17 12:26:48 +0800138 context->lws_lookup[wsi->sock] = wsi;
139 wsi->position_in_fds_table = context->fds_count;
140 context->fds[context->fds_count].fd = wsi->sock;
141 context->fds[context->fds_count].events = POLLIN;
142 context->fds[context->fds_count++].revents = 0;
143
144 /* external POLL support via protocol 0 */
145 context->protocols[0].callback(context, wsi,
146 LWS_CALLBACK_ADD_POLL_FD,
Andy Green50097dd2013-02-15 22:36:30 +0800147 wsi->user_space, (void *)(long)wsi->sock, POLLIN);
Andy Green0d338332011-02-12 11:57:43 +0000148
Andy Green7a132792013-12-18 09:48:26 +0800149 context->protocols[0].callback(context, wsi,
150 LWS_CALLBACK_UNLOCK_POLL,
151 wsi->user_space, (void *)(long)wsi->sock, 0);
152
Andy Green0d338332011-02-12 11:57:43 +0000153 return 0;
154}
155
Andy Greendfb23042013-01-17 12:26:48 +0800156static int
Andy Greenb5b23192013-02-11 17:13:32 +0800157remove_wsi_socket_from_fds(struct libwebsocket_context *context,
158 struct libwebsocket *wsi)
Andy Green0d338332011-02-12 11:57:43 +0000159{
Andy Greendfb23042013-01-17 12:26:48 +0800160 int m;
Andy Green0d338332011-02-12 11:57:43 +0000161
Andy Green7a132792013-12-18 09:48:26 +0800162 if (!--context->fds_count) {
163 context->protocols[0].callback(context, wsi,
164 LWS_CALLBACK_LOCK_POLL,
165 wsi->user_space, (void *)(long)wsi->sock, 0);
Andy Greendfb23042013-01-17 12:26:48 +0800166 goto do_ext;
Andy Green7a132792013-12-18 09:48:26 +0800167 }
Andy Green0d338332011-02-12 11:57:43 +0000168
Andy Greendfb23042013-01-17 12:26:48 +0800169 if (wsi->sock > context->max_fds) {
Andy Greenb5b23192013-02-11 17:13:32 +0800170 lwsl_err("Socket fd %d too high (%d)\n",
171 wsi->sock, context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +0800172 return 1;
173 }
Andy Green0d338332011-02-12 11:57:43 +0000174
Andy Greenb5b23192013-02-11 17:13:32 +0800175 lwsl_info("remove_wsi_socket_from_fds: wsi=%p, sock=%d, fds pos=%d\n",
176 wsi, wsi->sock, wsi->position_in_fds_table);
Andy Greendfb23042013-01-17 12:26:48 +0800177
Andy Green7a132792013-12-18 09:48:26 +0800178 context->protocols[0].callback(context, wsi,
179 LWS_CALLBACK_LOCK_POLL,
180 wsi->user_space, (void *)(long)wsi->sock, 0);
181
Andy Greendfb23042013-01-17 12:26:48 +0800182 m = wsi->position_in_fds_table; /* replace the contents for this */
183
184 /* have the last guy take up the vacant slot */
Andy Greenb5b23192013-02-11 17:13:32 +0800185 context->fds[m] = context->fds[context->fds_count];
186 /*
187 * end guy's fds_lookup entry remains unchanged
188 * (still same fd pointing to same wsi)
189 */
Andy Greendfb23042013-01-17 12:26:48 +0800190 /* end guy's "position in fds table" changed */
Andy Greenb5b23192013-02-11 17:13:32 +0800191 context->lws_lookup[context->fds[context->fds_count].fd]->
192 position_in_fds_table = m;
Andy Greendfb23042013-01-17 12:26:48 +0800193 /* deletion guy's lws_lookup entry needs nuking */
Andy Greenb5b23192013-02-11 17:13:32 +0800194 context->lws_lookup[wsi->sock] = NULL;
195 /* removed wsi has no position any more */
196 wsi->position_in_fds_table = -1;
Andy Greendfb23042013-01-17 12:26:48 +0800197
198do_ext:
199 /* remove also from external POLL support via protocol 0 */
200 if (wsi->sock)
201 context->protocols[0].callback(context, wsi,
Andy Green50097dd2013-02-15 22:36:30 +0800202 LWS_CALLBACK_DEL_POLL_FD, wsi->user_space,
203 (void *)(long)wsi->sock, 0);
Andy Greendfb23042013-01-17 12:26:48 +0800204
Andy Green7a132792013-12-18 09:48:26 +0800205 context->protocols[0].callback(context, wsi,
206 LWS_CALLBACK_UNLOCK_POLL,
207 wsi->user_space, (void *)(long)wsi->sock, 0);
208
Andy Greendfb23042013-01-17 12:26:48 +0800209 return 0;
Andy Green0d338332011-02-12 11:57:43 +0000210}
211
Andy Green32375b72011-02-19 08:32:53 +0000212
Andy Green8f037e42010-12-19 22:13:26 +0000213void
Peter Hinz56885f32011-03-02 22:03:47 +0000214libwebsocket_close_and_free_session(struct libwebsocket_context *context,
Andy Green687b0182011-02-26 11:04:01 +0000215 struct libwebsocket *wsi, enum lws_close_status reason)
Andy Green251f6fa2010-11-03 11:13:06 +0000216{
Andy Greenb45993c2010-12-18 15:13:50 +0000217 int n;
Andy Green62c54d22011-02-14 09:14:25 +0000218 int old_state;
Andy Green5e1fa172011-02-10 09:07:05 +0000219 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 2 +
220 LWS_SEND_BUFFER_POST_PADDING];
Andy Green3182ece2013-01-20 17:08:31 +0800221#ifndef LWS_NO_EXTENSIONS
Andy Greenc44159f2011-03-07 07:08:18 +0000222 int ret;
223 int m;
224 struct lws_tokens eff_buf;
Andy Greena41314f2011-05-23 10:00:03 +0100225 struct libwebsocket_extension *ext;
Andy Green3182ece2013-01-20 17:08:31 +0800226#endif
Andy Greenb45993c2010-12-18 15:13:50 +0000227
Andy Green4b6fbe12011-02-14 08:03:48 +0000228 if (!wsi)
Andy Greenb45993c2010-12-18 15:13:50 +0000229 return;
230
Andy Green62c54d22011-02-14 09:14:25 +0000231 old_state = wsi->state;
Andy Green251f6fa2010-11-03 11:13:06 +0000232
Andy Green62c54d22011-02-14 09:14:25 +0000233 if (old_state == WSI_STATE_DEAD_SOCKET)
Andy Green5e1fa172011-02-10 09:07:05 +0000234 return;
235
Andy Green22524a62013-02-15 22:48:58 +0800236 /* we tried the polite way... */
237 if (old_state == WSI_STATE_AWAITING_CLOSE_ACK)
238 goto just_kill_connection;
239
Andy Green623a98d2013-01-21 11:04:23 +0800240 wsi->u.ws.close_reason = reason;
Andy Greenda527df2011-03-07 07:08:12 +0000241
Andy Green5dc62ea2013-09-20 20:26:12 +0800242 if (wsi->mode == LWS_CONNMODE_WS_CLIENT_WAITING_CONNECT ||
243 wsi->mode == LWS_CONNMODE_WS_CLIENT_ISSUE_HANDSHAKE) {
244
245 context->protocols[0].callback(context, wsi,
246 LWS_CALLBACK_CLIENT_CONNECTION_ERROR, NULL, NULL, 0);
247
248 free(wsi->u.hdr.ah);
249 goto just_kill_connection;
250 }
251
252
kapejodce64fb02013-11-19 13:38:16 +0100253 if (wsi->mode == LWS_CONNMODE_HTTP_SERVING_ACCEPTED) {
254 if (wsi->u.http.post_buffer) {
255 free(wsi->u.http.post_buffer);
256 wsi->u.http.post_buffer = NULL;
257 }
258 if (wsi->u.http.fd >= 0) {
259 lwsl_debug("closing http fd %d\n", wsi->u.http.fd);
260 close(wsi->u.http.fd);
261 wsi->u.http.fd = -1;
262 context->protocols[0].callback(context, wsi,
263 LWS_CALLBACK_CLOSED_HTTP, wsi->user_space, NULL, 0);
264 }
Andy Greenb8b247d2013-01-22 07:20:08 +0800265 }
266
Andy Green3182ece2013-01-20 17:08:31 +0800267#ifndef LWS_NO_EXTENSIONS
Andy Greenda527df2011-03-07 07:08:12 +0000268 /*
Andy Green68b45042011-05-25 21:41:57 +0100269 * are his extensions okay with him closing? Eg he might be a mux
270 * parent and just his ch1 aspect is closing?
271 */
272
Andy Green68b45042011-05-25 21:41:57 +0100273 for (n = 0; n < wsi->count_active_extensions; n++) {
274 if (!wsi->active_extensions[n]->callback)
275 continue;
276
277 m = wsi->active_extensions[n]->callback(context,
278 wsi->active_extensions[n], wsi,
279 LWS_EXT_CALLBACK_CHECK_OK_TO_REALLY_CLOSE,
280 wsi->active_extensions_user[n], NULL, 0);
281
282 /*
283 * if somebody vetoed actually closing him at this time....
284 * up to the extension to track the attempted close, let's
285 * just bail
286 */
287
288 if (m) {
Andy Green43db0452013-01-10 19:50:35 +0800289 lwsl_ext("extension vetoed close\n");
Andy Green68b45042011-05-25 21:41:57 +0100290 return;
291 }
292 }
293
Andy Green68b45042011-05-25 21:41:57 +0100294 /*
Andy Greenc44159f2011-03-07 07:08:18 +0000295 * flush any tx pending from extensions, since we may send close packet
296 * if there are problems with send, just nuke the connection
297 */
298
299 ret = 1;
300 while (ret == 1) {
301
302 /* default to nobody has more to spill */
303
304 ret = 0;
305 eff_buf.token = NULL;
306 eff_buf.token_len = 0;
307
308 /* show every extension the new incoming data */
309
310 for (n = 0; n < wsi->count_active_extensions; n++) {
311 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000312 wsi->protocol->owning_server,
313 wsi->active_extensions[n], wsi,
Andy Greenc44159f2011-03-07 07:08:18 +0000314 LWS_EXT_CALLBACK_FLUSH_PENDING_TX,
315 wsi->active_extensions_user[n], &eff_buf, 0);
316 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800317 lwsl_ext("Extension reports fatal error\n");
Andy Greenc44159f2011-03-07 07:08:18 +0000318 goto just_kill_connection;
319 }
320 if (m)
321 /*
322 * at least one extension told us he has more
323 * to spill, so we will go around again after
324 */
325 ret = 1;
326 }
327
328 /* assuming they left us something to send, send it */
329
330 if (eff_buf.token_len)
331 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
Andy Greenfc7c5e42013-02-23 10:50:10 +0800332 eff_buf.token_len) != eff_buf.token_len) {
Andy Greenb5b23192013-02-11 17:13:32 +0800333 lwsl_debug("close: ext spill failed\n");
Andy Greenc44159f2011-03-07 07:08:18 +0000334 goto just_kill_connection;
Andy Green0303db42013-01-17 14:46:43 +0800335 }
Andy Greenc44159f2011-03-07 07:08:18 +0000336 }
Andy Green3182ece2013-01-20 17:08:31 +0800337#endif
Andy Greenc44159f2011-03-07 07:08:18 +0000338
339 /*
Andy Greenda527df2011-03-07 07:08:12 +0000340 * signal we are closing, libsocket_write will
341 * add any necessary version-specific stuff. If the write fails,
342 * no worries we are closing anyway. If we didn't initiate this
343 * close, then our state has been changed to
344 * WSI_STATE_RETURNED_CLOSE_ALREADY and we will skip this.
345 *
346 * Likewise if it's a second call to close this connection after we
347 * sent the close indication to the peer already, we are in state
348 * WSI_STATE_AWAITING_CLOSE_ACK and will skip doing this a second time.
349 */
350
351 if (old_state == WSI_STATE_ESTABLISHED &&
352 reason != LWS_CLOSE_STATUS_NOSTATUS) {
Andy Green66a16f32011-05-24 22:07:45 +0100353
Andy Green43db0452013-01-10 19:50:35 +0800354 lwsl_debug("sending close indication...\n");
Andy Green66a16f32011-05-24 22:07:45 +0100355
Andy Greenfdd305a2013-02-11 14:32:48 +0800356 /* make valgrind happy */
Andy Greenb5b23192013-02-11 17:13:32 +0800357 memset(buf, 0, sizeof(buf));
358 n = libwebsocket_write(wsi,
359 &buf[LWS_SEND_BUFFER_PRE_PADDING + 2],
Andy Greenda527df2011-03-07 07:08:12 +0000360 0, LWS_WRITE_CLOSE);
Andy Greenfc7c5e42013-02-23 10:50:10 +0800361 if (n >= 0) {
Andy Greenda527df2011-03-07 07:08:12 +0000362 /*
363 * we have sent a nice protocol level indication we
364 * now wish to close, we should not send anything more
365 */
366
367 wsi->state = WSI_STATE_AWAITING_CLOSE_ACK;
368
Andy Greenb5b23192013-02-11 17:13:32 +0800369 /*
370 * ...and we should wait for a reply for a bit
371 * out of politeness
372 */
Andy Greenda527df2011-03-07 07:08:12 +0000373
374 libwebsocket_set_timeout(wsi,
Andy Green0303db42013-01-17 14:46:43 +0800375 PENDING_TIMEOUT_CLOSE_ACK, 1);
Andy Greenda527df2011-03-07 07:08:12 +0000376
Andy Green43db0452013-01-10 19:50:35 +0800377 lwsl_debug("sent close indication, awaiting ack\n");
Andy Greenda527df2011-03-07 07:08:12 +0000378
379 return;
380 }
381
Andy Greenb5b23192013-02-11 17:13:32 +0800382 lwsl_info("close: sending close packet failed, hanging up\n");
Andy Green0303db42013-01-17 14:46:43 +0800383
Andy Greenda527df2011-03-07 07:08:12 +0000384 /* else, the send failed and we should just hang up */
385 }
386
Andy Greenc44159f2011-03-07 07:08:18 +0000387just_kill_connection:
Andy Green66a16f32011-05-24 22:07:45 +0100388
Andy Greenb5b23192013-02-11 17:13:32 +0800389 lwsl_debug("close: just_kill_connection\n");
Andy Green66a16f32011-05-24 22:07:45 +0100390
Andy Greenda527df2011-03-07 07:08:12 +0000391 /*
392 * we won't be servicing or receiving anything further from this guy
Andy Greendfb23042013-01-17 12:26:48 +0800393 * delete socket from the internal poll list if still present
Andy Greenda527df2011-03-07 07:08:12 +0000394 */
Andy Green4b6fbe12011-02-14 08:03:48 +0000395
Andy Greendfb23042013-01-17 12:26:48 +0800396 remove_wsi_socket_from_fds(context, wsi);
Andy Green4b6fbe12011-02-14 08:03:48 +0000397
Andy Green251f6fa2010-11-03 11:13:06 +0000398 wsi->state = WSI_STATE_DEAD_SOCKET;
399
Andy Greenb5b23192013-02-11 17:13:32 +0800400 if ((old_state == WSI_STATE_ESTABLISHED ||
401 wsi->mode == LWS_CONNMODE_WS_SERVING ||
Andy Green3ee9b312013-02-12 12:52:39 +0800402 wsi->mode == LWS_CONNMODE_WS_CLIENT)) {
403
404 if (wsi->u.ws.rx_user_buffer) {
405 free(wsi->u.ws.rx_user_buffer);
406 wsi->u.ws.rx_user_buffer = NULL;
407 }
408 if (wsi->u.ws.rxflow_buffer) {
409 free(wsi->u.ws.rxflow_buffer);
410 wsi->u.ws.rxflow_buffer = NULL;
411 }
Andy Green2764eba2013-12-09 14:16:17 +0800412 if (wsi->truncated_send_malloc) {
Andy Green1f4267b2013-10-17 08:09:19 +0800413 /* not going to be completed... nuke it */
Andy Green2764eba2013-12-09 14:16:17 +0800414 free(wsi->truncated_send_malloc);
415 wsi->truncated_send_malloc = NULL;
Andy Green1f4267b2013-10-17 08:09:19 +0800416 }
Andy Green54495112013-02-06 21:10:16 +0900417 }
418
Andy Green4b6fbe12011-02-14 08:03:48 +0000419 /* tell the user it's all over for this guy */
420
Andy Greend4302732011-02-28 07:45:29 +0000421 if (wsi->protocol && wsi->protocol->callback &&
Andy Green6ee372f2012-04-09 15:09:01 +0800422 ((old_state == WSI_STATE_ESTABLISHED) ||
423 (old_state == WSI_STATE_RETURNED_CLOSE_ALREADY) ||
424 (old_state == WSI_STATE_AWAITING_CLOSE_ACK))) {
Andy Green43db0452013-01-10 19:50:35 +0800425 lwsl_debug("calling back CLOSED\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000426 wsi->protocol->callback(context, wsi, LWS_CALLBACK_CLOSED,
Andy Greene77ddd82010-11-13 10:03:47 +0000427 wsi->user_space, NULL, 0);
Niall T. Davidsondb761be2013-06-29 10:16:18 +0800428 } else if ( wsi->mode == LWS_CONNMODE_HTTP_SERVING_ACCEPTED ) {
429 lwsl_debug("calling back CLOSED_HTTP\n");
430 context->protocols[0].callback(context, wsi,
431 LWS_CALLBACK_CLOSED_HTTP, wsi->user_space, NULL, 0 );
Andy Greencc012472011-11-07 19:53:23 +0800432 } else
Andy Greenb5b23192013-02-11 17:13:32 +0800433 lwsl_debug("not calling back closed\n");
Andy Green251f6fa2010-11-03 11:13:06 +0000434
Andy Green3182ece2013-01-20 17:08:31 +0800435#ifndef LWS_NO_EXTENSIONS
Andy Greenef660a92011-03-06 10:29:38 +0000436 /* deallocate any active extension contexts */
437
438 for (n = 0; n < wsi->count_active_extensions; n++) {
439 if (!wsi->active_extensions[n]->callback)
440 continue;
441
Andy Green46c2ea02011-03-22 09:04:01 +0000442 wsi->active_extensions[n]->callback(context,
443 wsi->active_extensions[n], wsi,
444 LWS_EXT_CALLBACK_DESTROY,
445 wsi->active_extensions_user[n], NULL, 0);
Andy Greenef660a92011-03-06 10:29:38 +0000446
447 free(wsi->active_extensions_user[n]);
448 }
449
Andy Greena41314f2011-05-23 10:00:03 +0100450 /*
451 * inform all extensions in case they tracked this guy out of band
452 * even though not active on him specifically
453 */
454
455 ext = context->extensions;
456 while (ext && ext->callback) {
457 ext->callback(context, ext, wsi,
458 LWS_EXT_CALLBACK_DESTROY_ANY_WSI_CLOSING,
459 NULL, NULL, 0);
460 ext++;
461 }
Andy Green3182ece2013-01-20 17:08:31 +0800462#endif
Andy Greena41314f2011-05-23 10:00:03 +0100463
Andy Green43db0452013-01-10 19:50:35 +0800464/* lwsl_info("closing fd=%d\n", wsi->sock); */
Andy Green251f6fa2010-11-03 11:13:06 +0000465
Andy Green3faa9c72010-11-08 17:03:03 +0000466#ifdef LWS_OPENSSL_SUPPORT
Andy Green90c7cbc2011-01-27 06:26:52 +0000467 if (wsi->ssl) {
Andy Green3faa9c72010-11-08 17:03:03 +0000468 n = SSL_get_fd(wsi->ssl);
469 SSL_shutdown(wsi->ssl);
Andy Green3fc2c652013-01-14 15:35:02 +0800470 compatible_close(n);
Andy Green3faa9c72010-11-08 17:03:03 +0000471 SSL_free(wsi->ssl);
472 } else {
473#endif
Andy Green0303db42013-01-17 14:46:43 +0800474 if (wsi->sock) {
475 n = shutdown(wsi->sock, SHUT_RDWR);
476 if (n)
Andy Greenb5b23192013-02-11 17:13:32 +0800477 lwsl_debug("closing: shutdown returned %d\n",
478 errno);
Andy Green3fc2c652013-01-14 15:35:02 +0800479
Andy Green0303db42013-01-17 14:46:43 +0800480 n = compatible_close(wsi->sock);
481 if (n)
Andy Greenb5b23192013-02-11 17:13:32 +0800482 lwsl_debug("closing: close returned %d\n",
483 errno);
Andy Green0303db42013-01-17 14:46:43 +0800484 }
Andy Green3faa9c72010-11-08 17:03:03 +0000485#ifdef LWS_OPENSSL_SUPPORT
486 }
487#endif
Andy Green76b6ea12014-02-15 19:25:50 +0800488
489 /* outermost destroy notification for wsi (user_space still intact) */
490 context->protocols[0].callback(context, wsi,
491 LWS_CALLBACK_WSI_DESTROY, wsi->user_space, NULL, 0);
492
Andy Greenb5b23192013-02-11 17:13:32 +0800493 if (wsi->protocol && wsi->protocol->per_session_data_size &&
494 wsi->user_space) /* user code may own */
Andy Green4f3943a2010-11-12 10:44:16 +0000495 free(wsi->user_space);
496
Andy Green251f6fa2010-11-03 11:13:06 +0000497 free(wsi);
498}
499
Andy Green07034092011-02-13 08:37:12 +0000500/**
501 * libwebsockets_get_peer_addresses() - Get client address information
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800502 * @context: Libwebsockets context
503 * @wsi: Local struct libwebsocket associated with
Andy Green07034092011-02-13 08:37:12 +0000504 * @fd: Connection socket descriptor
505 * @name: Buffer to take client address name
506 * @name_len: Length of client address name buffer
507 * @rip: Buffer to take client address IP qotted quad
508 * @rip_len: Length of client address IP buffer
509 *
510 * This function fills in @name and @rip with the name and IP of
Andy Green6ee372f2012-04-09 15:09:01 +0800511 * the client connected with socket descriptor @fd. Names may be
512 * truncated if there is not enough room. If either cannot be
513 * determined, they will be returned as valid zero-length strings.
Andy Green07034092011-02-13 08:37:12 +0000514 */
515
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800516LWS_VISIBLE void
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800517libwebsockets_get_peer_addresses(struct libwebsocket_context *context,
518 struct libwebsocket *wsi, int fd, char *name, int name_len,
Andy Green07034092011-02-13 08:37:12 +0000519 char *rip, int rip_len)
520{
Bob Robertsac049112013-04-25 09:16:30 +0800521 socklen_t len;
Andy Green07034092011-02-13 08:37:12 +0000522 struct sockaddr_in sin;
523 struct hostent *host;
524 struct hostent *host1;
525 char ip[128];
Andy Greenf92def72011-03-09 15:02:20 +0000526 unsigned char *p;
Andy Green07034092011-02-13 08:37:12 +0000527 int n;
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800528 int ret = -1;
David Galeanocb193682013-01-09 15:29:00 +0800529#ifdef AF_LOCAL
Andy Greenb5b23192013-02-11 17:13:32 +0800530 struct sockaddr_un *un;
David Galeanocb193682013-01-09 15:29:00 +0800531#endif
Andy Green07034092011-02-13 08:37:12 +0000532
533 rip[0] = '\0';
534 name[0] = '\0';
535
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800536 lws_latency_pre(context, wsi);
537
Andy Greenb5b23192013-02-11 17:13:32 +0800538 len = sizeof(sin);
Andy Green07034092011-02-13 08:37:12 +0000539 if (getpeername(fd, (struct sockaddr *) &sin, &len) < 0) {
540 perror("getpeername");
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800541 goto bail;
Andy Green07034092011-02-13 08:37:12 +0000542 }
Andy Green6ee372f2012-04-09 15:09:01 +0800543
Andy Greenb5b23192013-02-11 17:13:32 +0800544 host = gethostbyaddr((char *) &sin.sin_addr, sizeof(sin.sin_addr),
Andy Green07034092011-02-13 08:37:12 +0000545 AF_INET);
546 if (host == NULL) {
547 perror("gethostbyaddr");
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800548 goto bail;
Andy Green07034092011-02-13 08:37:12 +0000549 }
550
551 strncpy(name, host->h_name, name_len);
552 name[name_len - 1] = '\0';
553
554 host1 = gethostbyname(host->h_name);
555 if (host1 == NULL)
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800556 goto bail;
Andy Greenf92def72011-03-09 15:02:20 +0000557 p = (unsigned char *)host1;
Andy Green07034092011-02-13 08:37:12 +0000558 n = 0;
559 while (p != NULL) {
Andy Greenf92def72011-03-09 15:02:20 +0000560 p = (unsigned char *)host1->h_addr_list[n++];
Andy Green07034092011-02-13 08:37:12 +0000561 if (p == NULL)
562 continue;
Peter Hinzbb45a902011-03-10 18:14:01 +0000563 if ((host1->h_addrtype != AF_INET)
564#ifdef AF_LOCAL
565 && (host1->h_addrtype != AF_LOCAL)
566#endif
567 )
Andy Green07034092011-02-13 08:37:12 +0000568 continue;
569
Andy Green7627af52011-03-09 15:13:52 +0000570 if (host1->h_addrtype == AF_INET)
571 sprintf(ip, "%u.%u.%u.%u", p[0], p[1], p[2], p[3]);
Peter Hinzbb45a902011-03-10 18:14:01 +0000572#ifdef AF_LOCAL
Andy Green7627af52011-03-09 15:13:52 +0000573 else {
574 un = (struct sockaddr_un *)p;
Andy Green6ee372f2012-04-09 15:09:01 +0800575 strncpy(ip, un->sun_path, sizeof(ip) - 1);
Andy Green7627af52011-03-09 15:13:52 +0000576 ip[sizeof(ip) - 1] = '\0';
577 }
Peter Hinzbb45a902011-03-10 18:14:01 +0000578#endif
Andy Green07034092011-02-13 08:37:12 +0000579 p = NULL;
580 strncpy(rip, ip, rip_len);
581 rip[rip_len - 1] = '\0';
582 }
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800583
584 ret = 0;
585bail:
586 lws_latency(context, wsi, "libwebsockets_get_peer_addresses", ret, 1);
Andy Green07034092011-02-13 08:37:12 +0000587}
Andy Green9f990342011-02-12 11:57:45 +0000588
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800589LWS_VISIBLE int libwebsockets_get_random(struct libwebsocket_context *context,
Peter Hinz56885f32011-03-02 22:03:47 +0000590 void *buf, int len)
591{
592 int n;
Aaron Zinman4550f1d2013-01-10 12:35:18 +0800593 char *p = (char *)buf;
Peter Hinz56885f32011-03-02 22:03:47 +0000594
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +0100595#if defined(WIN32) || defined(_WIN32)
Peter Hinz56885f32011-03-02 22:03:47 +0000596 for (n = 0; n < len; n++)
597 p[n] = (unsigned char)rand();
598#else
599 n = read(context->fd_random, p, len);
600#endif
601
602 return n;
603}
604
Andy Greena690cd02013-02-09 12:25:31 +0800605int lws_set_socket_options(struct libwebsocket_context *context, int fd)
606{
607 int optval = 1;
608 socklen_t optlen = sizeof(optval);
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +0100609#if defined(WIN32) || defined(_WIN32)
Andy Greena690cd02013-02-09 12:25:31 +0800610 unsigned long optl = 0;
611#endif
612#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__)
613 struct protoent *tcp_proto;
614#endif
615
616 if (context->ka_time) {
617 /* enable keepalive on this socket */
618 optval = 1;
619 if (setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE,
620 (const void *)&optval, optlen) < 0)
621 return 1;
622
Bob Robertsac049112013-04-25 09:16:30 +0800623#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__CYGWIN__)
Andy Greena47865f2013-02-10 09:39:47 +0800624
625 /*
626 * didn't find a way to set these per-socket, need to
627 * tune kernel systemwide values
628 */
Joakim Soderberg63ff1202013-02-11 17:52:23 +0100629#elif WIN32
630 {
631 DWORD dwBytesRet;
632 struct tcp_keepalive alive;
633 alive.onoff = TRUE;
634 alive.keepalivetime = context->ka_time;
635 alive.keepaliveinterval = context->ka_interval;
Andy Greena47865f2013-02-10 09:39:47 +0800636
Joakim Soderberg63ff1202013-02-11 17:52:23 +0100637 if (WSAIoctl(fd, SIO_KEEPALIVE_VALS, &alive, sizeof(alive),
638 NULL, 0, &dwBytesRet, NULL, NULL))
639 return 1;
640 }
Andy Greena47865f2013-02-10 09:39:47 +0800641#else
Andy Greena690cd02013-02-09 12:25:31 +0800642 /* set the keepalive conditions we want on it too */
643 optval = context->ka_time;
644 if (setsockopt(fd, IPPROTO_IP, TCP_KEEPIDLE,
645 (const void *)&optval, optlen) < 0)
646 return 1;
647
Larry Hayesbb66ac62013-02-22 09:16:20 +0800648 optval = context->ka_interval;
Andy Greena690cd02013-02-09 12:25:31 +0800649 if (setsockopt(fd, IPPROTO_IP, TCP_KEEPINTVL,
650 (const void *)&optval, optlen) < 0)
651 return 1;
652
Larry Hayesbb66ac62013-02-22 09:16:20 +0800653 optval = context->ka_probes;
Andy Greena690cd02013-02-09 12:25:31 +0800654 if (setsockopt(fd, IPPROTO_IP, TCP_KEEPCNT,
655 (const void *)&optval, optlen) < 0)
656 return 1;
Andy Greena47865f2013-02-10 09:39:47 +0800657#endif
Andy Greena690cd02013-02-09 12:25:31 +0800658 }
659
660 /* Disable Nagle */
661 optval = 1;
662#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__NetBSD__)
663 setsockopt(fd, SOL_TCP, TCP_NODELAY, (const void *)&optval, optlen);
664#else
665 tcp_proto = getprotobyname("TCP");
666 setsockopt(fd, tcp_proto->p_proto, TCP_NODELAY, &optval, optlen);
667#endif
668
669 /* We are nonblocking... */
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +0100670#if defined(WIN32) || defined(_WIN32)
Andy Greena690cd02013-02-09 12:25:31 +0800671 ioctlsocket(fd, FIONBIO, &optl);
672#else
673 fcntl(fd, F_SETFL, O_NONBLOCK);
674#endif
675
676 return 0;
677}
678
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800679LWS_VISIBLE int lws_send_pipe_choked(struct libwebsocket *wsi)
Andy Green95a7b5d2011-03-06 10:29:39 +0000680{
681 struct pollfd fds;
682
Andy Green2764eba2013-12-09 14:16:17 +0800683 /* treat the fact we got a truncated send pending as if we're choked */
684 if (wsi->truncated_send_malloc)
685 return 1;
686
Andy Green95a7b5d2011-03-06 10:29:39 +0000687 fds.fd = wsi->sock;
688 fds.events = POLLOUT;
689 fds.revents = 0;
690
691 if (poll(&fds, 1, 0) != 1)
692 return 1;
693
694 if ((fds.revents & POLLOUT) == 0)
695 return 1;
696
697 /* okay to send another packet without blocking */
698
699 return 0;
700}
701
Andy Greena41314f2011-05-23 10:00:03 +0100702int
Andy Green3b84c002011-03-06 13:14:42 +0000703lws_handle_POLLOUT_event(struct libwebsocket_context *context,
704 struct libwebsocket *wsi, struct pollfd *pollfd)
705{
Andy Green3b84c002011-03-06 13:14:42 +0000706 int n;
Andy Green6f520a52013-01-29 17:57:39 +0800707
Andy Green3182ece2013-01-20 17:08:31 +0800708#ifndef LWS_NO_EXTENSIONS
709 struct lws_tokens eff_buf;
Andy Green3b84c002011-03-06 13:14:42 +0000710 int ret;
711 int m;
Andy Greena41314f2011-05-23 10:00:03 +0100712 int handled = 0;
Andy Green3b84c002011-03-06 13:14:42 +0000713
Andy Green1f4267b2013-10-17 08:09:19 +0800714 /* pending truncated sends have uber priority */
715
Andy Green2764eba2013-12-09 14:16:17 +0800716 if (wsi->truncated_send_malloc) {
717 lws_issue_raw(wsi, wsi->truncated_send_malloc +
718 wsi->truncated_send_offset,
719 wsi->truncated_send_len);
Andy Green1f4267b2013-10-17 08:09:19 +0800720 /* leave POLLOUT active either way */
721 return 0;
722 }
723
Andy Greena41314f2011-05-23 10:00:03 +0100724 for (n = 0; n < wsi->count_active_extensions; n++) {
725 if (!wsi->active_extensions[n]->callback)
726 continue;
727
728 m = wsi->active_extensions[n]->callback(context,
729 wsi->active_extensions[n], wsi,
730 LWS_EXT_CALLBACK_IS_WRITEABLE,
731 wsi->active_extensions_user[n], NULL, 0);
732 if (m > handled)
733 handled = m;
734 }
735
736 if (handled == 1)
737 goto notify_action;
738
739 if (!wsi->extension_data_pending || handled == 2)
Andy Green3b84c002011-03-06 13:14:42 +0000740 goto user_service;
741
742 /*
743 * check in on the active extensions, see if they
744 * had pending stuff to spill... they need to get the
745 * first look-in otherwise sequence will be disordered
746 *
747 * NULL, zero-length eff_buf means just spill pending
748 */
749
750 ret = 1;
751 while (ret == 1) {
752
753 /* default to nobody has more to spill */
754
755 ret = 0;
756 eff_buf.token = NULL;
757 eff_buf.token_len = 0;
758
759 /* give every extension a chance to spill */
760
761 for (n = 0; n < wsi->count_active_extensions; n++) {
762 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000763 wsi->protocol->owning_server,
764 wsi->active_extensions[n], wsi,
Andy Green3b84c002011-03-06 13:14:42 +0000765 LWS_EXT_CALLBACK_PACKET_TX_PRESEND,
766 wsi->active_extensions_user[n], &eff_buf, 0);
767 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800768 lwsl_err("ext reports fatal error\n");
Andy Green3b84c002011-03-06 13:14:42 +0000769 return -1;
770 }
771 if (m)
772 /*
773 * at least one extension told us he has more
774 * to spill, so we will go around again after
775 */
776 ret = 1;
777 }
778
779 /* assuming they gave us something to send, send it */
780
781 if (eff_buf.token_len) {
Andy Greenfc7c5e42013-02-23 10:50:10 +0800782 n = lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
783 eff_buf.token_len);
784 if (n < 0)
Andy Green3b84c002011-03-06 13:14:42 +0000785 return -1;
Andy Greenfc7c5e42013-02-23 10:50:10 +0800786 /*
787 * Keep amount spilled small to minimize chance of this
788 */
789 if (n != eff_buf.token_len) {
790 lwsl_err("Unable to spill ext %d vs %s\n",
791 eff_buf.token_len, n);
792 return -1;
793 }
Andy Green3b84c002011-03-06 13:14:42 +0000794 } else
795 continue;
796
797 /* no extension has more to spill */
798
799 if (!ret)
800 continue;
801
802 /*
803 * There's more to spill from an extension, but we just sent
804 * something... did that leave the pipe choked?
805 */
806
807 if (!lws_send_pipe_choked(wsi))
808 /* no we could add more */
809 continue;
810
Andy Green43db0452013-01-10 19:50:35 +0800811 lwsl_info("choked in POLLOUT service\n");
Andy Green3b84c002011-03-06 13:14:42 +0000812
813 /*
814 * Yes, he's choked. Leave the POLLOUT masked on so we will
815 * come back here when he is unchoked. Don't call the user
816 * callback to enforce ordering of spilling, he'll get called
817 * when we come back here and there's nothing more to spill.
818 */
819
820 return 0;
821 }
822
823 wsi->extension_data_pending = 0;
824
825user_service:
Andy Green3182ece2013-01-20 17:08:31 +0800826#endif
Andy Green3b84c002011-03-06 13:14:42 +0000827 /* one shot */
828
Andy Green91f19d82013-12-21 11:18:34 +0800829 if (pollfd)
830 lws_change_pollfd(wsi, POLLOUT, 0);
Andy Green7a132792013-12-18 09:48:26 +0800831
Andy Green3182ece2013-01-20 17:08:31 +0800832#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +0100833notify_action:
Andy Green3182ece2013-01-20 17:08:31 +0800834#endif
Andy Green3b84c002011-03-06 13:14:42 +0000835
Andy Green9e4c2b62011-03-07 20:47:39 +0000836 if (wsi->mode == LWS_CONNMODE_WS_CLIENT)
837 n = LWS_CALLBACK_CLIENT_WRITEABLE;
838 else
839 n = LWS_CALLBACK_SERVER_WRITEABLE;
840
Andy Greenb8b247d2013-01-22 07:20:08 +0800841 return user_callback_handle_rxflow(wsi->protocol->callback, context,
Andy Greenb5b23192013-02-11 17:13:32 +0800842 wsi, (enum libwebsocket_callback_reasons) n,
843 wsi->user_space, NULL, 0);
Andy Green3b84c002011-03-06 13:14:42 +0000844}
845
846
847
Andy Green1c6e1422013-02-20 19:11:31 +0800848int
Andy Greena41314f2011-05-23 10:00:03 +0100849libwebsocket_service_timeout_check(struct libwebsocket_context *context,
850 struct libwebsocket *wsi, unsigned int sec)
851{
Andy Green3182ece2013-01-20 17:08:31 +0800852#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +0100853 int n;
854
855 /*
856 * if extensions want in on it (eg, we are a mux parent)
857 * give them a chance to service child timeouts
858 */
859
860 for (n = 0; n < wsi->count_active_extensions; n++)
861 wsi->active_extensions[n]->callback(
862 context, wsi->active_extensions[n],
863 wsi, LWS_EXT_CALLBACK_1HZ,
864 wsi->active_extensions_user[n], NULL, sec);
865
Andy Green3182ece2013-01-20 17:08:31 +0800866#endif
Andy Greena41314f2011-05-23 10:00:03 +0100867 if (!wsi->pending_timeout)
Andy Green1c6e1422013-02-20 19:11:31 +0800868 return 0;
Andy Green6ee372f2012-04-09 15:09:01 +0800869
Andy Greena41314f2011-05-23 10:00:03 +0100870 /*
871 * if we went beyond the allowed time, kill the
872 * connection
873 */
874
875 if (sec > wsi->pending_timeout_limit) {
Andy Green43db0452013-01-10 19:50:35 +0800876 lwsl_info("TIMEDOUT WAITING\n");
Andy Greena41314f2011-05-23 10:00:03 +0100877 libwebsocket_close_and_free_session(context,
878 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Green1c6e1422013-02-20 19:11:31 +0800879 return 1;
Andy Greena41314f2011-05-23 10:00:03 +0100880 }
Andy Green1c6e1422013-02-20 19:11:31 +0800881
882 return 0;
Andy Greena41314f2011-05-23 10:00:03 +0100883}
884
Andy Green9f990342011-02-12 11:57:45 +0000885/**
886 * libwebsocket_service_fd() - Service polled socket with something waiting
Peter Hinz56885f32011-03-02 22:03:47 +0000887 * @context: Websocket context
Andy Green9f990342011-02-12 11:57:45 +0000888 * @pollfd: The pollfd entry describing the socket fd and which events
Andy Green6ee372f2012-04-09 15:09:01 +0800889 * happened.
Andy Green9f990342011-02-12 11:57:45 +0000890 *
Andy Green75006172013-01-22 12:32:11 +0800891 * This function takes a pollfd that has POLLIN or POLLOUT activity and
Andy Greenb5b23192013-02-11 17:13:32 +0800892 * services it according to the state of the associated
893 * struct libwebsocket.
Andy Green75006172013-01-22 12:32:11 +0800894 *
895 * The one call deals with all "service" that might happen on a socket
896 * including listen accepts, http files as well as websocket protocol.
Andy Green2577c832013-03-11 20:37:03 +0800897 *
898 * If a pollfd says it has something, you can just pass it to
899 * libwebsocket_serice_fd() whether it is a socket handled by lws or not.
900 * If it sees it is a lws socket, the traffic will be handled and
901 * pollfd->revents will be zeroed now.
902 *
903 * If the socket is foreign to lws, it leaves revents alone. So you can
904 * see if you should service yourself by checking the pollfd revents
905 * after letting lws try to service it.
Andy Green9f990342011-02-12 11:57:45 +0000906 */
907
Peter Pentchev9a4fef72013-03-30 09:52:21 +0800908LWS_VISIBLE int
Peter Hinz56885f32011-03-02 22:03:47 +0000909libwebsocket_service_fd(struct libwebsocket_context *context,
Andy Green0d338332011-02-12 11:57:43 +0000910 struct pollfd *pollfd)
Andy Greenb45993c2010-12-18 15:13:50 +0000911{
Andy Greena1ce6be2013-01-18 11:43:21 +0800912 struct libwebsocket *wsi;
Andy Greenb45993c2010-12-18 15:13:50 +0000913 int n;
Andy Green0d338332011-02-12 11:57:43 +0000914 int m;
Andy Greenf0b79e22013-02-10 10:46:45 +0800915 int listen_socket_fds_index = 0;
Andy Greena71eafc2011-02-14 17:59:43 +0000916 struct timeval tv;
Andy Green1c6e1422013-02-20 19:11:31 +0800917 int timed_out = 0;
918 int our_fd = 0;
Andy Greenca0a1292013-03-16 11:24:23 +0800919 char draining_flow = 0;
Andy Green6f520a52013-01-29 17:57:39 +0800920
Andy Green3182ece2013-01-20 17:08:31 +0800921#ifndef LWS_NO_EXTENSIONS
Andy Green2366b1c2011-03-06 13:15:31 +0000922 int more = 1;
Andy Green3182ece2013-01-20 17:08:31 +0800923#endif
Andy Green98a717c2011-03-06 13:14:15 +0000924 struct lws_tokens eff_buf;
Andy Greenf0b79e22013-02-10 10:46:45 +0800925
926 if (context->listen_service_fd)
927 listen_socket_fds_index = context->lws_lookup[
928 context->listen_service_fd]->position_in_fds_table;
929
Andy Greena71eafc2011-02-14 17:59:43 +0000930 /*
931 * you can call us with pollfd = NULL to just allow the once-per-second
932 * global timeout checks; if less than a second since the last check
933 * it returns immediately then.
934 */
935
936 gettimeofday(&tv, NULL);
937
Peter Hinz56885f32011-03-02 22:03:47 +0000938 if (context->last_timeout_check_s != tv.tv_sec) {
939 context->last_timeout_check_s = tv.tv_sec;
Andy Greena71eafc2011-02-14 17:59:43 +0000940
Joakim Soderberg4c531232013-02-06 15:26:58 +0900941 #ifndef WIN32
Andy Green24cba922013-01-19 13:56:10 +0800942 /* if our parent went down, don't linger around */
Andy Greenb5b23192013-02-11 17:13:32 +0800943 if (context->started_with_parent &&
944 kill(context->started_with_parent, 0) < 0)
Andy Green24cba922013-01-19 13:56:10 +0800945 kill(getpid(), SIGTERM);
Joakim Soderberg4c531232013-02-06 15:26:58 +0900946 #endif
Andy Green24cba922013-01-19 13:56:10 +0800947
Andy Greena71eafc2011-02-14 17:59:43 +0000948 /* global timeout check once per second */
949
Andy Green1c6e1422013-02-20 19:11:31 +0800950 if (pollfd)
951 our_fd = pollfd->fd;
952
Peter Hinz56885f32011-03-02 22:03:47 +0000953 for (n = 0; n < context->fds_count; n++) {
Andy Green1c6e1422013-02-20 19:11:31 +0800954 m = context->fds[n].fd;
955 wsi = context->lws_lookup[m];
956 if (!wsi)
Andy Greendfb23042013-01-17 12:26:48 +0800957 continue;
Andy Green1c6e1422013-02-20 19:11:31 +0800958
959 if (libwebsocket_service_timeout_check(context, wsi,
960 tv.tv_sec))
961 /* he did time out... */
Andy Greenb1a5e6c2013-03-09 12:34:30 +0800962 if (m == our_fd) {
Andy Green1c6e1422013-02-20 19:11:31 +0800963 /* it was the guy we came to service! */
964 timed_out = 1;
Andy Greenb1a5e6c2013-03-09 12:34:30 +0800965 /* mark as handled */
966 pollfd->revents = 0;
967 }
Andy Greena71eafc2011-02-14 17:59:43 +0000968 }
969 }
970
Andy Green1c6e1422013-02-20 19:11:31 +0800971 /* the socket we came to service timed out, nothing to do */
972 if (timed_out)
973 return 0;
974
Andy Greena71eafc2011-02-14 17:59:43 +0000975 /* just here for timeout management? */
Andy Greena71eafc2011-02-14 17:59:43 +0000976 if (pollfd == NULL)
977 return 0;
978
979 /* no, here to service a socket descriptor */
Andy Greenb1a5e6c2013-03-09 12:34:30 +0800980 wsi = context->lws_lookup[pollfd->fd];
981 if (wsi == NULL)
982 /* not lws connection ... leave revents alone and return */
983 return 0;
984
985 /*
986 * so that caller can tell we handled, past here we need to
987 * zero down pollfd->revents after handling
988 */
989
Andy Green65b0e912013-01-16 07:59:47 +0800990 /*
991 * deal with listen service piggybacking
992 * every listen_service_modulo services of other fds, we
993 * sneak one in to service the listen socket if there's anything waiting
994 *
995 * To handle connection storms, as found in ab, if we previously saw a
996 * pending connection here, it causes us to check again next time.
997 */
998
Andy Greenb5b23192013-02-11 17:13:32 +0800999 if (context->listen_service_fd && pollfd !=
1000 &context->fds[listen_socket_fds_index]) {
Andy Green65b0e912013-01-16 07:59:47 +08001001 context->listen_service_count++;
1002 if (context->listen_service_extraseen ||
Andy Greenb5b23192013-02-11 17:13:32 +08001003 context->listen_service_count ==
1004 context->listen_service_modulo) {
Andy Green65b0e912013-01-16 07:59:47 +08001005 context->listen_service_count = 0;
1006 m = 1;
1007 if (context->listen_service_extraseen > 5)
1008 m = 2;
1009 while (m--) {
Andy Greenb5b23192013-02-11 17:13:32 +08001010 /*
1011 * even with extpoll, we prepared this
1012 * internal fds for listen
1013 */
1014 n = poll(&context->fds[listen_socket_fds_index],
1015 1, 0);
1016 if (n > 0) { /* there's a conn waiting for us */
1017 libwebsocket_service_fd(context,
1018 &context->
1019 fds[listen_socket_fds_index]);
Andy Green65b0e912013-01-16 07:59:47 +08001020 context->listen_service_extraseen++;
1021 } else {
1022 if (context->listen_service_extraseen)
Andy Greenb5b23192013-02-11 17:13:32 +08001023 context->
1024 listen_service_extraseen--;
Andy Green65b0e912013-01-16 07:59:47 +08001025 break;
1026 }
1027 }
1028 }
1029
1030 }
1031
Graham Newtonb1aa1d32013-11-04 09:47:06 +08001032 /* handle session socket closed */
1033
1034 if ((!(pollfd->revents & POLLIN)) &&
1035 (pollfd->revents & (POLLERR | POLLHUP))) {
1036
1037 lwsl_debug("Session Socket %p (fd=%d) dead\n",
1038 (void *)wsi, pollfd->fd);
1039
1040 goto close_and_handled;
1041 }
1042
Andy Green65b0e912013-01-16 07:59:47 +08001043 /* okay, what we came here to do... */
1044
Andy Green0d338332011-02-12 11:57:43 +00001045 switch (wsi->mode) {
Andy Greend280b6e2013-01-15 13:40:23 +08001046
Andy Greena1ce6be2013-01-18 11:43:21 +08001047#ifndef LWS_NO_SERVER
Andy Greend280b6e2013-01-15 13:40:23 +08001048 case LWS_CONNMODE_HTTP_SERVING:
Andy Green7cf6cb02013-05-19 14:04:10 +08001049 case LWS_CONNMODE_HTTP_SERVING_ACCEPTED:
Andy Green0d338332011-02-12 11:57:43 +00001050 case LWS_CONNMODE_SERVER_LISTENER:
Andy Greene2160712013-01-28 12:19:10 +08001051 case LWS_CONNMODE_SSL_ACK_PENDING:
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001052 n = lws_server_socket_service(context, wsi, pollfd);
1053 goto handled;
Andy Greena1ce6be2013-01-18 11:43:21 +08001054#endif
Andy Greenbe93fef2011-02-14 20:25:43 +00001055
Andy Green0d338332011-02-12 11:57:43 +00001056 case LWS_CONNMODE_WS_SERVING:
1057 case LWS_CONNMODE_WS_CLIENT:
1058
Andy Green0d338332011-02-12 11:57:43 +00001059 /* the guy requested a callback when it was OK to write */
1060
Andy Greenda527df2011-03-07 07:08:12 +00001061 if ((pollfd->revents & POLLOUT) &&
Andy Greenca0a1292013-03-16 11:24:23 +08001062 wsi->state == WSI_STATE_ESTABLISHED &&
1063 lws_handle_POLLOUT_event(context, wsi, pollfd) < 0) {
Andy Green91f19d82013-12-21 11:18:34 +08001064 lwsl_info("libwebsocket_service_fd: closing\n");
1065 goto close_and_handled;
Graham Newtonb1aa1d32013-11-04 09:47:06 +08001066 }
Andy Green0d338332011-02-12 11:57:43 +00001067
Andy Greenca0a1292013-03-16 11:24:23 +08001068 if (wsi->u.ws.rxflow_buffer &&
1069 (wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW)) {
1070 lwsl_info("draining rxflow\n");
1071 /* well, drain it */
1072 eff_buf.token = (char *)wsi->u.ws.rxflow_buffer +
1073 wsi->u.ws.rxflow_pos;
1074 eff_buf.token_len = wsi->u.ws.rxflow_len -
1075 wsi->u.ws.rxflow_pos;
1076 draining_flow = 1;
1077 goto drain;
1078 }
1079
Andy Green0d338332011-02-12 11:57:43 +00001080 /* any incoming data ready? */
1081
1082 if (!(pollfd->revents & POLLIN))
1083 break;
1084
Andy Greenb45993c2010-12-18 15:13:50 +00001085#ifdef LWS_OPENSSL_SUPPORT
David Galeano7ffbe1b2013-01-10 10:35:32 +08001086read_pending:
Andy Green467c7ef2013-01-30 12:28:34 +08001087 if (wsi->ssl) {
Andy Greene84652c2013-02-08 13:01:02 +08001088 eff_buf.token_len = SSL_read(wsi->ssl,
1089 context->service_buffer,
Andy Greenb5b23192013-02-11 17:13:32 +08001090 sizeof(context->service_buffer));
Andy Green467c7ef2013-01-30 12:28:34 +08001091 if (!eff_buf.token_len) {
1092 n = SSL_get_error(wsi->ssl, eff_buf.token_len);
Andy Greene84652c2013-02-08 13:01:02 +08001093 lwsl_err("SSL_read returned 0 with reason %s\n",
Andy Greenb5b23192013-02-11 17:13:32 +08001094 ERR_error_string(n,
1095 (char *)context->service_buffer));
Andy Green467c7ef2013-01-30 12:28:34 +08001096 }
1097 } else
Andy Greenb45993c2010-12-18 15:13:50 +00001098#endif
Andy Greene84652c2013-02-08 13:01:02 +08001099 eff_buf.token_len = recv(pollfd->fd,
Andy Greenb5b23192013-02-11 17:13:32 +08001100 context->service_buffer,
1101 sizeof(context->service_buffer), 0);
Andy Greenb45993c2010-12-18 15:13:50 +00001102
Andy Green98a717c2011-03-06 13:14:15 +00001103 if (eff_buf.token_len < 0) {
Andy Green98ba9e02013-03-23 09:44:47 +08001104 lwsl_debug("service_fd read ret = %d, errno = %d\n",
1105 eff_buf.token_len, errno);
Alon Levydc93b7f2012-10-19 11:21:57 +02001106 if (errno != EINTR && errno != EAGAIN)
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001107 goto close_and_handled;
1108 n = 0;
1109 goto handled;
Andy Greenb45993c2010-12-18 15:13:50 +00001110 }
Andy Green98a717c2011-03-06 13:14:15 +00001111 if (!eff_buf.token_len) {
Andy Green98ba9e02013-03-23 09:44:47 +08001112 lwsl_info("service_fd: closing due to 0 length read\n");
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001113 goto close_and_handled;
Andy Greenb45993c2010-12-18 15:13:50 +00001114 }
1115
Andy Green98a717c2011-03-06 13:14:15 +00001116 /*
1117 * give any active extensions a chance to munge the buffer
1118 * before parse. We pass in a pointer to an lws_tokens struct
1119 * prepared with the default buffer and content length that's in
1120 * there. Rather than rewrite the default buffer, extensions
1121 * that expect to grow the buffer can adapt .token to
1122 * point to their own per-connection buffer in the extension
1123 * user allocation. By default with no extensions or no
1124 * extension callback handling, just the normal input buffer is
1125 * used then so it is efficient.
1126 */
Andy Greenb45993c2010-12-18 15:13:50 +00001127
Andy Greene84652c2013-02-08 13:01:02 +08001128 eff_buf.token = (char *)context->service_buffer;
Andy Greenca0a1292013-03-16 11:24:23 +08001129drain:
Andy Green3182ece2013-01-20 17:08:31 +08001130#ifndef LWS_NO_EXTENSIONS
Andy Green98a717c2011-03-06 13:14:15 +00001131 more = 1;
1132 while (more) {
Andy Green0d338332011-02-12 11:57:43 +00001133
Andy Green98a717c2011-03-06 13:14:15 +00001134 more = 0;
1135
1136 for (n = 0; n < wsi->count_active_extensions; n++) {
Andy Green46c2ea02011-03-22 09:04:01 +00001137 m = wsi->active_extensions[n]->callback(context,
1138 wsi->active_extensions[n], wsi,
Andy Green98a717c2011-03-06 13:14:15 +00001139 LWS_EXT_CALLBACK_PACKET_RX_PREPARSE,
Andy Green46c2ea02011-03-22 09:04:01 +00001140 wsi->active_extensions_user[n],
1141 &eff_buf, 0);
Andy Green98a717c2011-03-06 13:14:15 +00001142 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001143 lwsl_ext(
Andy Green6ee372f2012-04-09 15:09:01 +08001144 "Extension reports fatal error\n");
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001145 goto close_and_handled;
Andy Green98a717c2011-03-06 13:14:15 +00001146 }
1147 if (m)
1148 more = 1;
1149 }
Andy Green3182ece2013-01-20 17:08:31 +08001150#endif
Andy Green98a717c2011-03-06 13:14:15 +00001151 /* service incoming data */
1152
1153 if (eff_buf.token_len) {
1154 n = libwebsocket_read(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001155 (unsigned char *)eff_buf.token,
1156 eff_buf.token_len);
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001157 if (n < 0) {
Andy Green98a717c2011-03-06 13:14:15 +00001158 /* we closed wsi */
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001159 n = 0;
1160 goto handled;
1161 }
Andy Green98a717c2011-03-06 13:14:15 +00001162 }
Andy Green3182ece2013-01-20 17:08:31 +08001163#ifndef LWS_NO_EXTENSIONS
Andy Green98a717c2011-03-06 13:14:15 +00001164 eff_buf.token = NULL;
1165 eff_buf.token_len = 0;
1166 }
Andy Green3182ece2013-01-20 17:08:31 +08001167#endif
Andy Greenca0a1292013-03-16 11:24:23 +08001168 if (draining_flow && wsi->u.ws.rxflow_buffer &&
1169 wsi->u.ws.rxflow_pos == wsi->u.ws.rxflow_len) {
1170 lwsl_info("flow buffer: drained\n");
1171 free(wsi->u.ws.rxflow_buffer);
1172 wsi->u.ws.rxflow_buffer = NULL;
1173 /* having drained the rxflow buffer, can rearm POLLIN */
1174 _libwebsocket_rx_flow_control(wsi);
1175 }
David Galeano7ffbe1b2013-01-10 10:35:32 +08001176
1177#ifdef LWS_OPENSSL_SUPPORT
1178 if (wsi->ssl && SSL_pending(wsi->ssl))
1179 goto read_pending;
1180#endif
Andy Green98a717c2011-03-06 13:14:15 +00001181 break;
Andy Green76f61e72013-01-16 11:53:05 +08001182
1183 default:
Andy Green03674a62013-01-16 11:47:40 +08001184#ifdef LWS_NO_CLIENT
1185 break;
1186#else
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001187 n = lws_client_socket_service(context, wsi, pollfd);
1188 goto handled;
Andy Green03674a62013-01-16 11:47:40 +08001189#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001190 }
1191
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001192 n = 0;
1193 goto handled;
1194
1195close_and_handled:
Andy Greenca0a1292013-03-16 11:24:23 +08001196 libwebsocket_close_and_free_session(context, wsi,
1197 LWS_CLOSE_STATUS_NOSTATUS);
1198 n = 1;
Andy Greenb1a5e6c2013-03-09 12:34:30 +08001199
1200handled:
1201 pollfd->revents = 0;
1202 return n;
Andy Greenb45993c2010-12-18 15:13:50 +00001203}
1204
Andy Green0d338332011-02-12 11:57:43 +00001205
Andy Green6964bb52011-01-23 16:50:33 +00001206/**
1207 * libwebsocket_context_destroy() - Destroy the websocket context
Peter Hinz56885f32011-03-02 22:03:47 +00001208 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001209 *
1210 * This function closes any active connections and then frees the
1211 * context. After calling this, any further use of the context is
1212 * undefined.
1213 */
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001214LWS_VISIBLE void
Peter Hinz56885f32011-03-02 22:03:47 +00001215libwebsocket_context_destroy(struct libwebsocket_context *context)
Andy Green6964bb52011-01-23 16:50:33 +00001216{
Andy Green0d338332011-02-12 11:57:43 +00001217 int n;
arnaudviala7c6f26c2014-02-15 14:39:40 +08001218#ifndef LWS_NO_EXTENSIONS
Andy Green0d338332011-02-12 11:57:43 +00001219 int m;
Andy Greena41314f2011-05-23 10:00:03 +01001220 struct libwebsocket_extension *ext;
arnaudviala7c6f26c2014-02-15 14:39:40 +08001221#endif /* ndef LWS_NO_EXTENSIONS */
Andy Greena7109e62013-02-11 12:05:54 +08001222 struct libwebsocket_protocols *protocol = context->protocols;
Andy Green6964bb52011-01-23 16:50:33 +00001223
Andy Greend636e352013-01-29 12:36:17 +08001224#ifdef LWS_LATENCY
1225 if (context->worst_latency_info[0])
1226 lwsl_notice("Worst latency: %s\n", context->worst_latency_info);
1227#endif
1228
Andy Greendfb23042013-01-17 12:26:48 +08001229 for (n = 0; n < context->fds_count; n++) {
Andy Greenb5b23192013-02-11 17:13:32 +08001230 struct libwebsocket *wsi =
1231 context->lws_lookup[context->fds[n].fd];
Andy Greendfb23042013-01-17 12:26:48 +08001232 libwebsocket_close_and_free_session(context,
Andy Green7b922052013-02-11 11:43:05 +08001233 wsi, LWS_CLOSE_STATUS_NOSTATUS /* no protocol close */);
1234 n--;
Andy Greendfb23042013-01-17 12:26:48 +08001235 }
Andy Green6964bb52011-01-23 16:50:33 +00001236
arnaudviala7c6f26c2014-02-15 14:39:40 +08001237#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +01001238 /*
1239 * give all extensions a chance to clean up any per-context
1240 * allocations they might have made
1241 */
1242
1243 ext = context->extensions;
1244 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_DESTRUCT;
1245 if (context->listen_port)
1246 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_DESTRUCT;
Paulo Roberto Urio1f680ab2012-06-04 08:40:28 +08001247 while (ext && ext->callback) {
Andy Greenb5b23192013-02-11 17:13:32 +08001248 ext->callback(context, ext, NULL,
1249 (enum libwebsocket_extension_callback_reasons)m,
1250 NULL, NULL, 0);
Andy Greena41314f2011-05-23 10:00:03 +01001251 ext++;
1252 }
arnaudviala7c6f26c2014-02-15 14:39:40 +08001253#endif /* ndef LWS_NO_EXTENSIONS */
Andy Greena7109e62013-02-11 12:05:54 +08001254
1255 /*
1256 * inform all the protocols that they are done and will have no more
1257 * callbacks
1258 */
1259
1260 while (protocol->callback) {
1261 protocol->callback(context, NULL, LWS_CALLBACK_PROTOCOL_DESTROY,
1262 NULL, NULL, 0);
1263 protocol++;
1264 }
1265
Andy Greena41314f2011-05-23 10:00:03 +01001266
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +01001267#if defined(WIN32) || defined(_WIN32)
Peter Hinz56885f32011-03-02 22:03:47 +00001268#else
1269 close(context->fd_random);
Andy Green6964bb52011-01-23 16:50:33 +00001270#endif
1271
Peter Hinz56885f32011-03-02 22:03:47 +00001272#ifdef LWS_OPENSSL_SUPPORT
1273 if (context->ssl_ctx)
1274 SSL_CTX_free(context->ssl_ctx);
1275 if (context->ssl_client_ctx)
1276 SSL_CTX_free(context->ssl_client_ctx);
Andy Greenad686392013-02-11 14:50:45 +08001277
1278 ERR_remove_state(0);
1279 ERR_free_strings();
1280 EVP_cleanup();
1281 CRYPTO_cleanup_all_ex_data();
Peter Hinz56885f32011-03-02 22:03:47 +00001282#endif
1283
Andy Green46596482013-02-11 11:04:01 +08001284 if (context->fds)
1285 free(context->fds);
1286 if (context->lws_lookup)
1287 free(context->lws_lookup);
1288
Peter Hinz56885f32011-03-02 22:03:47 +00001289 free(context);
1290
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +01001291#if defined(WIN32) || defined(_WIN32)
Peter Hinz56885f32011-03-02 22:03:47 +00001292 WSACleanup();
1293#endif
Andy Green6964bb52011-01-23 16:50:33 +00001294}
1295
Andy Greend88146d2013-01-22 12:40:35 +08001296/**
Andy Greenb5b23192013-02-11 17:13:32 +08001297 * libwebsocket_context_user() - get the user data associated with the context
Andy Greend88146d2013-01-22 12:40:35 +08001298 * @context: Websocket context
1299 *
1300 * This returns the optional user allocation that can be attached to
1301 * the context the sockets live in at context_create time. It's a way
1302 * to let all sockets serviced in the same context share data without
1303 * using globals statics in the user code.
1304 */
Alon Levy0291eb32012-10-19 11:21:56 +02001305LWS_EXTERN void *
1306libwebsocket_context_user(struct libwebsocket_context *context)
1307{
Andy Greenb5b23192013-02-11 17:13:32 +08001308 return context->user_space;
Alon Levy0291eb32012-10-19 11:21:56 +02001309}
1310
Andy Green6964bb52011-01-23 16:50:33 +00001311/**
1312 * libwebsocket_service() - Service any pending websocket activity
Peter Hinz56885f32011-03-02 22:03:47 +00001313 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001314 * @timeout_ms: Timeout for poll; 0 means return immediately if nothing needed
1315 * service otherwise block and service immediately, returning
1316 * after the timeout if nothing needed service.
1317 *
1318 * This function deals with any pending websocket traffic, for three
1319 * kinds of event. It handles these events on both server and client
1320 * types of connection the same.
1321 *
1322 * 1) Accept new connections to our context's server
1323 *
Andy Green6f520a52013-01-29 17:57:39 +08001324 * 2) Call the receive callback for incoming frame data received by
Andy Green6964bb52011-01-23 16:50:33 +00001325 * server or client connections.
1326 *
1327 * You need to call this service function periodically to all the above
1328 * functions to happen; if your application is single-threaded you can
1329 * just call it in your main event loop.
1330 *
1331 * Alternatively you can fork a new process that asynchronously handles
1332 * calling this service in a loop. In that case you are happy if this
1333 * call blocks your thread until it needs to take care of something and
1334 * would call it with a large nonzero timeout. Your loop then takes no
1335 * CPU while there is nothing happening.
1336 *
1337 * If you are calling it in a single-threaded app, you don't want it to
1338 * wait around blocking other things in your loop from happening, so you
1339 * would call it with a timeout_ms of 0, so it returns immediately if
1340 * nothing is pending, or as soon as it services whatever was pending.
1341 */
1342
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001343LWS_VISIBLE int
Peter Hinz56885f32011-03-02 22:03:47 +00001344libwebsocket_service(struct libwebsocket_context *context, int timeout_ms)
Andy Greene92cd172011-01-19 13:11:55 +00001345{
1346 int n;
Andy Greenca0a1292013-03-16 11:24:23 +08001347 int m;
Andy Green3b3fa9e2013-12-25 16:34:37 +08001348#ifdef LWS_HAS_PPOLL
1349 struct timespec timeout_ts;
1350 sigset_t sigmask;
1351#endif
Andy Greene92cd172011-01-19 13:11:55 +00001352
1353 /* stay dead once we are dead */
1354
Peter Hinz56885f32011-03-02 22:03:47 +00001355 if (context == NULL)
Andy Greene92cd172011-01-19 13:11:55 +00001356 return 1;
1357
Andy Green3b3fa9e2013-12-25 16:34:37 +08001358#ifdef LWS_HAS_PPOLL
1359 lws_idling_ppoll_tid = context->protocols[0].callback(context, NULL,
1360 LWS_CALLBACK_GET_THREAD_ID, NULL, NULL, 0);
1361
1362 timeout_ts.tv_sec = timeout_ms / 1000;
1363 timeout_ts.tv_nsec = timeout_ms % 1000;
Andy Greened451d52014-01-11 12:37:07 +08001364
1365 sigprocmask(SIG_BLOCK, NULL, &sigmask);
1366 sigdelset(&sigmask, SIGUSR2);
Andy Green3b3fa9e2013-12-25 16:34:37 +08001367
Andy Green0d338332011-02-12 11:57:43 +00001368 /* wait for something to need service */
Andy Green4739e5c2011-01-22 12:51:57 +00001369
Andy Green3b3fa9e2013-12-25 16:34:37 +08001370 n = ppoll(context->fds, context->fds_count, &timeout_ts, &sigmask);
1371 lws_idling_ppoll_tid = 0;
1372#else
Peter Hinz56885f32011-03-02 22:03:47 +00001373 n = poll(context->fds, context->fds_count, timeout_ms);
Andy Green3b3fa9e2013-12-25 16:34:37 +08001374#endif
Andy Green5dc62ea2013-09-20 20:26:12 +08001375 if (n == 0) /* poll timeout */ {
1376 libwebsocket_service_fd(context, NULL);
Andy Green3221f922011-02-12 13:14:11 +00001377 return 0;
Andy Green5dc62ea2013-09-20 20:26:12 +08001378 }
Andy Greene92cd172011-01-19 13:11:55 +00001379
Andy Greened451d52014-01-11 12:37:07 +08001380 if (n < 0) {
1381 if (errno != EINTR)
1382 return -1;
1383 else
1384 return 0;
1385 }
Andy Greene92cd172011-01-19 13:11:55 +00001386
Andy Greendfb23042013-01-17 12:26:48 +08001387 /* any socket with events to service? */
Andy Greene92cd172011-01-19 13:11:55 +00001388
Andy Greenca0a1292013-03-16 11:24:23 +08001389 for (n = 0; n < context->fds_count; n++) {
1390 if (!context->fds[n].revents)
1391 continue;
1392 m = libwebsocket_service_fd(context, &context->fds[n]);
1393 if (m < 0)
1394 return -1;
1395 /* if something closed, retry this slot */
1396 if (m)
1397 n--;
1398 }
1399
Andy Greene92cd172011-01-19 13:11:55 +00001400 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001401}
1402
Andy Green3182ece2013-01-20 17:08:31 +08001403#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +01001404int
1405lws_any_extension_handled(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001406 struct libwebsocket *wsi,
1407 enum libwebsocket_extension_callback_reasons r,
Andy Greena41314f2011-05-23 10:00:03 +01001408 void *v, size_t len)
1409{
1410 int n;
1411 int handled = 0;
1412
1413 /* maybe an extension will take care of it for us */
1414
1415 for (n = 0; n < wsi->count_active_extensions && !handled; n++) {
1416 if (!wsi->active_extensions[n]->callback)
1417 continue;
1418
1419 handled |= wsi->active_extensions[n]->callback(context,
1420 wsi->active_extensions[n], wsi,
1421 r, wsi->active_extensions_user[n], v, len);
1422 }
1423
1424 return handled;
1425}
1426
1427
1428void *
1429lws_get_extension_user_matching_ext(struct libwebsocket *wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001430 struct libwebsocket_extension *ext)
Andy Greena41314f2011-05-23 10:00:03 +01001431{
1432 int n = 0;
1433
Andy Green68b45042011-05-25 21:41:57 +01001434 if (wsi == NULL)
1435 return NULL;
1436
Andy Greena41314f2011-05-23 10:00:03 +01001437 while (n < wsi->count_active_extensions) {
1438 if (wsi->active_extensions[n] != ext) {
1439 n++;
1440 continue;
1441 }
1442 return wsi->active_extensions_user[n];
1443 }
1444
1445 return NULL;
1446}
Andy Green3182ece2013-01-20 17:08:31 +08001447#endif
Andy Greena41314f2011-05-23 10:00:03 +01001448
Andy Green91f19d82013-12-21 11:18:34 +08001449void
1450lws_change_pollfd(struct libwebsocket *wsi, int _and, int _or)
1451{
1452 struct libwebsocket_context *context = wsi->protocol->owning_server;
Andy Green3b3fa9e2013-12-25 16:34:37 +08001453 int events;
1454#ifdef LWS_HAS_PPOLL
1455 int tid;
1456 int sampled_ppoll_tid;
1457#endif
Andy Green91f19d82013-12-21 11:18:34 +08001458
1459 context->protocols[0].callback(context, wsi,
1460 LWS_CALLBACK_LOCK_POLL,
1461 wsi->user_space, (void *)(long)wsi->sock, 0);
1462
Andy Green3b3fa9e2013-12-25 16:34:37 +08001463 events = context->fds[wsi->position_in_fds_table].events;
1464
1465 context->fds[wsi->position_in_fds_table].events = (events & ~_and) | _or;
Andy Green91f19d82013-12-21 11:18:34 +08001466
1467 /* external POLL support via protocol 0 */
1468 if (_and)
1469 context->protocols[0].callback(context, wsi,
1470 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
1471 wsi->user_space, (void *)(long)wsi->sock, _and);
1472
1473 if (_or)
1474 context->protocols[0].callback(context, wsi,
1475 LWS_CALLBACK_SET_MODE_POLL_FD,
1476 wsi->user_space, (void *)(long)wsi->sock, _or);
1477
Andy Green3b3fa9e2013-12-25 16:34:37 +08001478#ifdef LWS_HAS_PPOLL
1479 /*
1480 * if we changed something in this pollfd...
1481 * ... and we're running in a different thread context
1482 * than the service thread...
1483 * ... and the service thread is waiting in ppoll()...
1484 * then fire a SIGUSR2 at the service thread to force it to
1485 * restart the ppoll() with our changed events
1486 */
1487 if (events != context->fds[wsi->position_in_fds_table].events) {
1488 sampled_ppoll_tid = lws_idling_ppoll_tid;
1489 if (sampled_ppoll_tid) {
1490 tid = context->protocols[0].callback(context, NULL,
1491 LWS_CALLBACK_GET_THREAD_ID, NULL, NULL, 0);
1492 if (tid != sampled_ppoll_tid)
1493 kill(sampled_ppoll_tid, SIGUSR2);
1494 }
1495 }
1496#endif
1497
Andy Green91f19d82013-12-21 11:18:34 +08001498 context->protocols[0].callback(context, wsi,
1499 LWS_CALLBACK_UNLOCK_POLL,
1500 wsi->user_space, (void *)(long)wsi->sock, 0);
1501}
1502
1503
Andy Green90c7cbc2011-01-27 06:26:52 +00001504/**
1505 * libwebsocket_callback_on_writable() - Request a callback when this socket
1506 * becomes able to be written to without
1507 * blocking
Andy Green32375b72011-02-19 08:32:53 +00001508 *
Peter Hinz56885f32011-03-02 22:03:47 +00001509 * @context: libwebsockets context
Andy Green90c7cbc2011-01-27 06:26:52 +00001510 * @wsi: Websocket connection instance to get callback for
1511 */
1512
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001513LWS_VISIBLE int
Peter Hinz56885f32011-03-02 22:03:47 +00001514libwebsocket_callback_on_writable(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001515 struct libwebsocket *wsi)
Andy Green90c7cbc2011-01-27 06:26:52 +00001516{
Andy Green3182ece2013-01-20 17:08:31 +08001517#ifndef LWS_NO_EXTENSIONS
Andy Green90c7cbc2011-01-27 06:26:52 +00001518 int n;
Andy Greena41314f2011-05-23 10:00:03 +01001519 int handled = 0;
1520
1521 /* maybe an extension will take care of it for us */
1522
1523 for (n = 0; n < wsi->count_active_extensions; n++) {
1524 if (!wsi->active_extensions[n]->callback)
1525 continue;
1526
1527 handled |= wsi->active_extensions[n]->callback(context,
1528 wsi->active_extensions[n], wsi,
1529 LWS_EXT_CALLBACK_REQUEST_ON_WRITEABLE,
1530 wsi->active_extensions_user[n], NULL, 0);
1531 }
1532
1533 if (handled)
1534 return 1;
Andy Green3182ece2013-01-20 17:08:31 +08001535#endif
Andy Greendfb23042013-01-17 12:26:48 +08001536 if (wsi->position_in_fds_table < 0) {
Andy Greenb5b23192013-02-11 17:13:32 +08001537 lwsl_err("libwebsocket_callback_on_writable: failed to find socket %d\n",
1538 wsi->sock);
Andy Greendfb23042013-01-17 12:26:48 +08001539 return -1;
1540 }
1541
Andy Green91f19d82013-12-21 11:18:34 +08001542 lws_change_pollfd(wsi, 0, POLLOUT);
Andy Green7a132792013-12-18 09:48:26 +08001543
Andy Green90c7cbc2011-01-27 06:26:52 +00001544 return 1;
1545}
1546
1547/**
1548 * libwebsocket_callback_on_writable_all_protocol() - Request a callback for
1549 * all connections using the given protocol when it
1550 * becomes possible to write to each socket without
1551 * blocking in turn.
1552 *
1553 * @protocol: Protocol whose connections will get callbacks
1554 */
1555
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001556LWS_VISIBLE int
Andy Green90c7cbc2011-01-27 06:26:52 +00001557libwebsocket_callback_on_writable_all_protocol(
1558 const struct libwebsocket_protocols *protocol)
1559{
Peter Hinz56885f32011-03-02 22:03:47 +00001560 struct libwebsocket_context *context = protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001561 int n;
Andy Green0d338332011-02-12 11:57:43 +00001562 struct libwebsocket *wsi;
Andy Green90c7cbc2011-01-27 06:26:52 +00001563
Andy Greendfb23042013-01-17 12:26:48 +08001564 for (n = 0; n < context->fds_count; n++) {
1565 wsi = context->lws_lookup[context->fds[n].fd];
1566 if (!wsi)
1567 continue;
1568 if (wsi->protocol == protocol)
1569 libwebsocket_callback_on_writable(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001570 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001571
1572 return 0;
1573}
1574
Andy Greenbe93fef2011-02-14 20:25:43 +00001575/**
Andy Greene39e6ef2014-02-15 16:36:38 +08001576 * libwebsocket_callback_all_protocol() - Callback all connections using
1577 * the given protocol with the given reason
1578 *
1579 * @protocol: Protocol whose connections will get callbacks
1580 * @reason: Callback reason index
1581 */
1582
1583LWS_VISIBLE int
1584libwebsocket_callback_all_protocol(
1585 const struct libwebsocket_protocols *protocol, int reason)
1586{
1587 struct libwebsocket_context *context = protocol->owning_server;
1588 int n;
1589 struct libwebsocket *wsi;
1590
1591 for (n = 0; n < context->fds_count; n++) {
1592 wsi = context->lws_lookup[context->fds[n].fd];
1593 if (!wsi)
1594 continue;
1595 if (wsi->protocol == protocol)
1596 protocol->callback(context, wsi,
1597 reason, wsi->user_space, NULL, 0);
1598 }
1599
1600 return 0;
1601}
1602
1603/**
Andy Greenbe93fef2011-02-14 20:25:43 +00001604 * libwebsocket_set_timeout() - marks the wsi as subject to a timeout
1605 *
1606 * You will not need this unless you are doing something special
1607 *
1608 * @wsi: Websocket connection instance
1609 * @reason: timeout reason
1610 * @secs: how many seconds
1611 */
1612
1613void
1614libwebsocket_set_timeout(struct libwebsocket *wsi,
1615 enum pending_timeout reason, int secs)
1616{
1617 struct timeval tv;
1618
1619 gettimeofday(&tv, NULL);
1620
1621 wsi->pending_timeout_limit = tv.tv_sec + secs;
1622 wsi->pending_timeout = reason;
1623}
1624
Andy Greena6cbece2011-01-27 20:06:03 +00001625
1626/**
1627 * libwebsocket_get_socket_fd() - returns the socket file descriptor
1628 *
1629 * You will not need this unless you are doing something special
1630 *
1631 * @wsi: Websocket connection instance
1632 */
1633
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001634LWS_VISIBLE int
Andy Greena6cbece2011-01-27 20:06:03 +00001635libwebsocket_get_socket_fd(struct libwebsocket *wsi)
1636{
1637 return wsi->sock;
1638}
1639
Andy Greend636e352013-01-29 12:36:17 +08001640#ifdef LWS_LATENCY
1641void
Andy Greenb5b23192013-02-11 17:13:32 +08001642lws_latency(struct libwebsocket_context *context, struct libwebsocket *wsi,
1643 const char *action, int ret, int completed)
Andy Greend636e352013-01-29 12:36:17 +08001644{
1645 struct timeval tv;
1646 unsigned long u;
1647 char buf[256];
1648
1649 gettimeofday(&tv, NULL);
1650
1651 u = (tv.tv_sec * 1000000) + tv.tv_usec;
1652
1653 if (action) {
1654 if (completed) {
1655 if (wsi->action_start == wsi->latency_start)
Andy Greenb5b23192013-02-11 17:13:32 +08001656 sprintf(buf,
1657 "Completion first try lat %luus: %p: ret %d: %s\n",
1658 u - wsi->latency_start,
1659 (void *)wsi, ret, action);
Andy Greend636e352013-01-29 12:36:17 +08001660 else
Andy Greenb5b23192013-02-11 17:13:32 +08001661 sprintf(buf,
1662 "Completion %luus: lat %luus: %p: ret %d: %s\n",
1663 u - wsi->action_start,
1664 u - wsi->latency_start,
1665 (void *)wsi, ret, action);
Andy Greend636e352013-01-29 12:36:17 +08001666 wsi->action_start = 0;
1667 } else
Andy Greenb5b23192013-02-11 17:13:32 +08001668 sprintf(buf, "lat %luus: %p: ret %d: %s\n",
1669 u - wsi->latency_start,
1670 (void *)wsi, ret, action);
Andy Greend636e352013-01-29 12:36:17 +08001671 if (u - wsi->latency_start > context->worst_latency) {
1672 context->worst_latency = u - wsi->latency_start;
1673 strcpy(context->worst_latency_info, buf);
1674 }
1675 lwsl_latency("%s", buf);
1676 } else {
1677 wsi->latency_start = u;
1678 if (!wsi->action_start)
1679 wsi->action_start = u;
1680 }
1681}
1682#endif
1683
Andy Greena1ce6be2013-01-18 11:43:21 +08001684#ifdef LWS_NO_SERVER
1685int
Andy Green8d15cf42013-10-24 21:47:06 +08001686_libwebsocket_rx_flow_control(struct libwebsocket *wsi)
Andy Greena1ce6be2013-01-18 11:43:21 +08001687{
1688 return 0;
1689}
1690#else
Andy Green706961d2013-01-17 16:50:35 +08001691int
1692_libwebsocket_rx_flow_control(struct libwebsocket *wsi)
1693{
1694 struct libwebsocket_context *context = wsi->protocol->owning_server;
Andy Green706961d2013-01-17 16:50:35 +08001695
Andy Greenca0a1292013-03-16 11:24:23 +08001696 /* there is no pending change */
1697 if (!(wsi->u.ws.rxflow_change_to & LWS_RXFLOW_PENDING_CHANGE))
Andy Green706961d2013-01-17 16:50:35 +08001698 return 0;
1699
Andy Greenca0a1292013-03-16 11:24:23 +08001700 /* stuff is still buffered, not ready to really accept new input */
1701 if (wsi->u.ws.rxflow_buffer) {
1702 /* get ourselves called back to deal with stashed buffer */
1703 libwebsocket_callback_on_writable(context, wsi);
1704 return 0;
Andy Green706961d2013-01-17 16:50:35 +08001705 }
1706
Andy Greenca0a1292013-03-16 11:24:23 +08001707 /* pending is cleared, we can change rxflow state */
1708
1709 wsi->u.ws.rxflow_change_to &= ~LWS_RXFLOW_PENDING_CHANGE;
1710
1711 lwsl_info("rxflow: wsi %p change_to %d\n", wsi,
1712 wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW);
1713
1714 /* adjust the pollfd for this wsi */
1715
1716 if (wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW)
Andy Green91f19d82013-12-21 11:18:34 +08001717 lws_change_pollfd(wsi, 0, POLLIN);
Andy Green706961d2013-01-17 16:50:35 +08001718 else
Andy Green91f19d82013-12-21 11:18:34 +08001719 lws_change_pollfd(wsi, POLLIN, 0);
Andy Green7a132792013-12-18 09:48:26 +08001720
Andy Green706961d2013-01-17 16:50:35 +08001721 return 1;
1722}
Andy Greena1ce6be2013-01-18 11:43:21 +08001723#endif
Andy Green706961d2013-01-17 16:50:35 +08001724
Andy Green90c7cbc2011-01-27 06:26:52 +00001725/**
1726 * libwebsocket_rx_flow_control() - Enable and disable socket servicing for
1727 * receieved packets.
1728 *
1729 * If the output side of a server process becomes choked, this allows flow
1730 * control for the input side.
1731 *
1732 * @wsi: Websocket connection instance to get callback for
1733 * @enable: 0 = disable read servicing for this connection, 1 = enable
1734 */
1735
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001736LWS_VISIBLE int
Andy Green90c7cbc2011-01-27 06:26:52 +00001737libwebsocket_rx_flow_control(struct libwebsocket *wsi, int enable)
1738{
Andy Greenca0a1292013-03-16 11:24:23 +08001739 if (enable == (wsi->u.ws.rxflow_change_to & LWS_RXFLOW_ALLOW))
1740 return 0;
1741
1742 lwsl_info("libwebsocket_rx_flow_control(0x%p, %d)\n", wsi, enable);
1743 wsi->u.ws.rxflow_change_to = LWS_RXFLOW_PENDING_CHANGE | !!enable;
Andy Green90c7cbc2011-01-27 06:26:52 +00001744
Andy Green706961d2013-01-17 16:50:35 +08001745 return 0;
Andy Green90c7cbc2011-01-27 06:26:52 +00001746}
1747
Andy Greenb55451c2013-03-16 12:32:27 +08001748/**
1749 * libwebsocket_rx_flow_allow_all_protocol() - Allow all connections with this protocol to receive
1750 *
1751 * When the user server code realizes it can accept more input, it can
1752 * call this to have the RX flow restriction removed from all connections using
1753 * the given protocol.
1754 *
1755 * @protocol: all connections using this protocol will be allowed to receive
1756 */
1757
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001758LWS_VISIBLE void
Andy Greenb55451c2013-03-16 12:32:27 +08001759libwebsocket_rx_flow_allow_all_protocol(
1760 const struct libwebsocket_protocols *protocol)
1761{
1762 struct libwebsocket_context *context = protocol->owning_server;
1763 int n;
1764 struct libwebsocket *wsi;
1765
1766 for (n = 0; n < context->fds_count; n++) {
1767 wsi = context->lws_lookup[context->fds[n].fd];
1768 if (!wsi)
1769 continue;
1770 if (wsi->protocol == protocol)
1771 libwebsocket_rx_flow_control(wsi, LWS_RXFLOW_ALLOW);
1772 }
1773}
1774
Andy Green706961d2013-01-17 16:50:35 +08001775
Andy Green2ac5a6f2011-01-28 10:00:18 +00001776/**
1777 * libwebsocket_canonical_hostname() - returns this host's hostname
1778 *
1779 * This is typically used by client code to fill in the host parameter
1780 * when making a client connection. You can only call it after the context
1781 * has been created.
1782 *
Peter Hinz56885f32011-03-02 22:03:47 +00001783 * @context: Websocket context
Andy Green2ac5a6f2011-01-28 10:00:18 +00001784 */
1785
1786
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001787LWS_VISIBLE extern const char *
Peter Hinz56885f32011-03-02 22:03:47 +00001788libwebsocket_canonical_hostname(struct libwebsocket_context *context)
Andy Green2ac5a6f2011-01-28 10:00:18 +00001789{
Peter Hinz56885f32011-03-02 22:03:47 +00001790 return (const char *)context->canonical_hostname;
Andy Green2ac5a6f2011-01-28 10:00:18 +00001791}
1792
1793
Andy Green90c7cbc2011-01-27 06:26:52 +00001794static void sigpipe_handler(int x)
1795{
1796}
1797
Andy Green6901cb32011-02-21 08:06:47 +00001798#ifdef LWS_OPENSSL_SUPPORT
1799static int
1800OpenSSL_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx)
1801{
1802
1803 SSL *ssl;
1804 int n;
Andy Green2e24da02011-03-05 16:12:04 +00001805 struct libwebsocket_context *context;
Andy Green6901cb32011-02-21 08:06:47 +00001806
1807 ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
1808 SSL_get_ex_data_X509_STORE_CTX_idx());
1809
1810 /*
Andy Green2e24da02011-03-05 16:12:04 +00001811 * !!! nasty openssl requires the index to come as a library-scope
1812 * static
Andy Green6901cb32011-02-21 08:06:47 +00001813 */
Andy Green2e24da02011-03-05 16:12:04 +00001814 context = SSL_get_ex_data(ssl, openssl_websocket_private_data_index);
Andy Green6ee372f2012-04-09 15:09:01 +08001815
Peter Hinz56885f32011-03-02 22:03:47 +00001816 n = context->protocols[0].callback(NULL, NULL,
Andy Green6901cb32011-02-21 08:06:47 +00001817 LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION,
1818 x509_ctx, ssl, preverify_ok);
1819
1820 /* convert return code from 0 = OK to 1 = OK */
1821
1822 if (!n)
1823 n = 1;
1824 else
1825 n = 0;
1826
1827 return n;
1828}
1829#endif
1830
Andy Green706961d2013-01-17 16:50:35 +08001831int user_callback_handle_rxflow(callback_function callback_function,
Andy Greenb5b23192013-02-11 17:13:32 +08001832 struct libwebsocket_context *context,
Andy Green706961d2013-01-17 16:50:35 +08001833 struct libwebsocket *wsi,
1834 enum libwebsocket_callback_reasons reason, void *user,
1835 void *in, size_t len)
1836{
1837 int n;
1838
1839 n = callback_function(context, wsi, reason, user, in, len);
Andy Greenaedc9532013-02-10 21:21:24 +08001840 if (!n)
1841 n = _libwebsocket_rx_flow_control(wsi);
Andy Green706961d2013-01-17 16:50:35 +08001842
Andy Greenaedc9532013-02-10 21:21:24 +08001843 return n;
Andy Green706961d2013-01-17 16:50:35 +08001844}
1845
Andy Green3b3fa9e2013-12-25 16:34:37 +08001846/*
1847 * This is just used to interrupt poll waiting
1848 * we don't have to do anything with it.
1849 */
arnaudviala7c6f26c2014-02-15 14:39:40 +08001850#ifdef LWS_OPENSSL_SUPPORT
Andy Green3b3fa9e2013-12-25 16:34:37 +08001851static void lws_sigusr2(int sig)
1852{
1853}
arnaudviala7c6f26c2014-02-15 14:39:40 +08001854#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001855
Andy Greenab990e42010-10-31 12:42:52 +00001856/**
Andy Green4739e5c2011-01-22 12:51:57 +00001857 * libwebsocket_create_context() - Create the websocket handler
Andy Green1b265272013-02-09 14:01:09 +08001858 * @info: pointer to struct with parameters
Andy Green05464c62010-11-12 10:44:18 +00001859 *
Andy Green1b265272013-02-09 14:01:09 +08001860 * This function creates the listening socket (if serving) and takes care
Andy Green8f037e42010-12-19 22:13:26 +00001861 * of all initialization in one step.
1862 *
Andy Greene92cd172011-01-19 13:11:55 +00001863 * After initialization, it returns a struct libwebsocket_context * that
1864 * represents this server. After calling, user code needs to take care
1865 * of calling libwebsocket_service() with the context pointer to get the
1866 * server's sockets serviced. This can be done in the same process context
1867 * or a forked process, or another thread,
Andy Green05464c62010-11-12 10:44:18 +00001868 *
Andy Green8f037e42010-12-19 22:13:26 +00001869 * The protocol callback functions are called for a handful of events
1870 * including http requests coming in, websocket connections becoming
1871 * established, and data arriving; it's also called periodically to allow
1872 * async transmission.
1873 *
1874 * HTTP requests are sent always to the FIRST protocol in @protocol, since
1875 * at that time websocket protocol has not been negotiated. Other
1876 * protocols after the first one never see any HTTP callack activity.
1877 *
1878 * The server created is a simple http server by default; part of the
1879 * websocket standard is upgrading this http connection to a websocket one.
1880 *
1881 * This allows the same server to provide files like scripts and favicon /
1882 * images or whatever over http and dynamic data over websockets all in
1883 * one place; they're all handled in the user callback.
Andy Greenab990e42010-10-31 12:42:52 +00001884 */
Andy Green4ea60062010-10-30 12:15:07 +01001885
Peter Pentchev9a4fef72013-03-30 09:52:21 +08001886LWS_VISIBLE struct libwebsocket_context *
Andy Green1b265272013-02-09 14:01:09 +08001887libwebsocket_create_context(struct lws_context_creation_info *info)
Andy Greenff95d7a2010-10-28 22:36:01 +01001888{
Peter Hinz56885f32011-03-02 22:03:47 +00001889 struct libwebsocket_context *context = NULL;
Andy Green9659f372011-01-27 22:01:43 +00001890 char *p;
Andy Green14f47292013-02-11 19:36:15 +08001891 int n;
Joakim Soderberg3baa08c2013-02-22 09:27:59 +08001892#ifndef LWS_NO_SERVER
Andy Greencbb31222013-01-31 09:57:05 +08001893 int opt = 1;
Andy Green0d338332011-02-12 11:57:43 +00001894 struct libwebsocket *wsi;
Andy Greencbb31222013-01-31 09:57:05 +08001895 struct sockaddr_in serv_addr;
1896#endif
Andy Green3182ece2013-01-20 17:08:31 +08001897#ifndef LWS_NO_EXTENSIONS
1898 int m;
Andy Green1b265272013-02-09 14:01:09 +08001899 struct libwebsocket_extension *ext;
Andy Green3182ece2013-01-20 17:08:31 +08001900#endif
Andy Greenff95d7a2010-10-28 22:36:01 +01001901
Andy Green3faa9c72010-11-08 17:03:03 +00001902#ifdef LWS_OPENSSL_SUPPORT
Andy Greenf2f54d52010-11-15 22:08:00 +00001903 SSL_METHOD *method;
Andy Green3faa9c72010-11-08 17:03:03 +00001904#endif
1905
Joakim Soderberg4c531232013-02-06 15:26:58 +09001906#ifndef LWS_NO_DAEMONIZE
Joakim Söderberg68e8d732013-02-06 15:27:39 +09001907 int pid_daemon = get_daemonize_pid();
Joakim Soderberg4c531232013-02-06 15:26:58 +09001908#endif
1909
Andy Greenb3a614a2013-01-19 13:08:17 +08001910 lwsl_notice("Initial logging level %d\n", log_level);
Andy Green7b405452013-02-01 10:50:15 +08001911 lwsl_notice("Library version: %s\n", library_version);
Andy Greenc0d6b632013-01-12 23:42:17 +08001912 lwsl_info(" LWS_MAX_HEADER_LEN: %u\n", LWS_MAX_HEADER_LEN);
Andy Greenc0d6b632013-01-12 23:42:17 +08001913 lwsl_info(" LWS_MAX_PROTOCOLS: %u\n", LWS_MAX_PROTOCOLS);
Andy Green3182ece2013-01-20 17:08:31 +08001914#ifndef LWS_NO_EXTENSIONS
Andy Greenb5b23192013-02-11 17:13:32 +08001915 lwsl_info(" LWS_MAX_EXTENSIONS_ACTIVE: %u\n",
1916 LWS_MAX_EXTENSIONS_ACTIVE);
Andy Green3182ece2013-01-20 17:08:31 +08001917#else
1918 lwsl_notice(" Configured without extension support\n");
1919#endif
Andy Greenc0d6b632013-01-12 23:42:17 +08001920 lwsl_info(" SPEC_LATEST_SUPPORTED: %u\n", SPEC_LATEST_SUPPORTED);
1921 lwsl_info(" AWAITING_TIMEOUT: %u\n", AWAITING_TIMEOUT);
Andy Green2672fb22013-02-22 09:54:35 +08001922 if (info->ssl_cipher_list)
1923 lwsl_info(" SSL ciphers: '%s'\n", info->ssl_cipher_list);
Andy Greenc0d6b632013-01-12 23:42:17 +08001924 lwsl_info(" SYSTEM_RANDOM_FILEPATH: '%s'\n", SYSTEM_RANDOM_FILEPATH);
1925 lwsl_info(" LWS_MAX_ZLIB_CONN_BUFFER: %u\n", LWS_MAX_ZLIB_CONN_BUFFER);
Andy Green43db0452013-01-10 19:50:35 +08001926
Peter Hinz56885f32011-03-02 22:03:47 +00001927#ifdef _WIN32
1928 {
1929 WORD wVersionRequested;
1930 WSADATA wsaData;
1931 int err;
Andy Green6ee372f2012-04-09 15:09:01 +08001932 HMODULE wsdll;
Peter Hinz56885f32011-03-02 22:03:47 +00001933
1934 /* Use the MAKEWORD(lowbyte, highbyte) macro from Windef.h */
1935 wVersionRequested = MAKEWORD(2, 2);
1936
1937 err = WSAStartup(wVersionRequested, &wsaData);
1938 if (err != 0) {
1939 /* Tell the user that we could not find a usable */
1940 /* Winsock DLL. */
Andy Green43db0452013-01-10 19:50:35 +08001941 lwsl_err("WSAStartup failed with error: %d\n", err);
Peter Hinz56885f32011-03-02 22:03:47 +00001942 return NULL;
1943 }
David Galeano7b11fec2011-10-04 19:55:18 +08001944
Andy Green6ee372f2012-04-09 15:09:01 +08001945 /* default to a poll() made out of select() */
1946 poll = emulated_poll;
David Galeano7b11fec2011-10-04 19:55:18 +08001947
Andy Green6ee372f2012-04-09 15:09:01 +08001948 /* if windows socket lib available, use his WSAPoll */
David Galeanocb193682013-01-09 15:29:00 +08001949 wsdll = GetModuleHandle(_T("Ws2_32.dll"));
Andy Green6ee372f2012-04-09 15:09:01 +08001950 if (wsdll)
1951 poll = (PFNWSAPOLL)GetProcAddress(wsdll, "WSAPoll");
Joakim Soderberg4c531232013-02-06 15:26:58 +09001952
Joakim Söderberg68e8d732013-02-06 15:27:39 +09001953 /* Finally fall back to emulated poll if all else fails */
Joakim Soderberg4c531232013-02-06 15:26:58 +09001954 if (!poll)
1955 poll = emulated_poll;
Peter Hinz56885f32011-03-02 22:03:47 +00001956 }
1957#endif
1958
Andy Greenb5b23192013-02-11 17:13:32 +08001959 context = (struct libwebsocket_context *)
1960 malloc(sizeof(struct libwebsocket_context));
Peter Hinz56885f32011-03-02 22:03:47 +00001961 if (!context) {
Andy Green43db0452013-01-10 19:50:35 +08001962 lwsl_err("No memory for websocket context\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001963 return NULL;
1964 }
Peter Pentchev3b233cb2013-02-07 16:31:19 +02001965 memset(context, 0, sizeof(*context));
Andy Green35f332b2013-01-21 13:06:38 +08001966#ifndef LWS_NO_DAEMONIZE
Andy Green24cba922013-01-19 13:56:10 +08001967 context->started_with_parent = pid_daemon;
1968 lwsl_notice(" Started with daemon pid %d\n", pid_daemon);
1969#endif
Andy Greenb5b23192013-02-11 17:13:32 +08001970
Joakim Soderberg4c531232013-02-06 15:26:58 +09001971 context->listen_service_extraseen = 0;
Andy Green1b265272013-02-09 14:01:09 +08001972 context->protocols = info->protocols;
1973 context->listen_port = info->port;
Peter Hinz56885f32011-03-02 22:03:47 +00001974 context->http_proxy_port = 0;
1975 context->http_proxy_address[0] = '\0';
Andy Green1b265272013-02-09 14:01:09 +08001976 context->options = info->options;
Andy Greendfb23042013-01-17 12:26:48 +08001977 /* to reduce this allocation, */
1978 context->max_fds = getdtablesize();
Andy Greena86f6342013-02-11 11:04:56 +08001979 lwsl_notice(" static allocation: %u + (%u x %u fds) = %u bytes\n",
1980 sizeof(struct libwebsocket_context),
1981 sizeof(struct pollfd) + sizeof(struct libwebsocket *),
1982 context->max_fds,
Andy Greenb5b23192013-02-11 17:13:32 +08001983 sizeof(struct libwebsocket_context) +
1984 ((sizeof(struct pollfd) + sizeof(struct libwebsocket *)) *
1985 context->max_fds));
Andy Greendfb23042013-01-17 12:26:48 +08001986
Andy Greenb5b23192013-02-11 17:13:32 +08001987 context->fds = (struct pollfd *)malloc(sizeof(struct pollfd) *
1988 context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08001989 if (context->fds == NULL) {
Andy Greenb5b23192013-02-11 17:13:32 +08001990 lwsl_err("Unable to allocate fds array for %d connections\n",
1991 context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08001992 free(context);
1993 return NULL;
1994 }
Andy Greenb5b23192013-02-11 17:13:32 +08001995 context->lws_lookup = (struct libwebsocket **)
1996 malloc(sizeof(struct libwebsocket *) * context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08001997 if (context->lws_lookup == NULL) {
Andy Greenb5b23192013-02-11 17:13:32 +08001998 lwsl_err(
1999 "Unable to allocate lws_lookup array for %d connections\n",
2000 context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08002001 free(context->fds);
2002 free(context);
2003 return NULL;
2004 }
Andy Greenb1a5e6c2013-03-09 12:34:30 +08002005 memset(context->lws_lookup, 0, sizeof(struct libwebsocket *) *
2006 context->max_fds);
Andy Greena17c6922013-01-20 20:21:54 +08002007
Peter Hinz56885f32011-03-02 22:03:47 +00002008 context->fds_count = 0;
Andy Green3182ece2013-01-20 17:08:31 +08002009#ifndef LWS_NO_EXTENSIONS
Andy Green1b265272013-02-09 14:01:09 +08002010 context->extensions = info->extensions;
Andy Green3182ece2013-01-20 17:08:31 +08002011#endif
Paulo Roberto Urio1e326632012-06-04 10:52:19 +08002012 context->last_timeout_check_s = 0;
Andy Green1b265272013-02-09 14:01:09 +08002013 context->user_space = info->user;
Andy Green9659f372011-01-27 22:01:43 +00002014
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +01002015#if defined(WIN32) || defined(_WIN32)
Peter Hinz56885f32011-03-02 22:03:47 +00002016 context->fd_random = 0;
2017#else
2018 context->fd_random = open(SYSTEM_RANDOM_FILEPATH, O_RDONLY);
2019 if (context->fd_random < 0) {
Andy Green43db0452013-01-10 19:50:35 +08002020 lwsl_err("Unable to open random device %s %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002021 SYSTEM_RANDOM_FILEPATH, context->fd_random);
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002022 goto bail;
Andy Green44eee682011-02-10 09:32:24 +00002023 }
Peter Hinz56885f32011-03-02 22:03:47 +00002024#endif
Andy Green44eee682011-02-10 09:32:24 +00002025
Peter Hinz56885f32011-03-02 22:03:47 +00002026#ifdef LWS_OPENSSL_SUPPORT
2027 context->use_ssl = 0;
James Devine5b34c972013-12-14 11:41:29 +08002028 context->allow_non_ssl_on_ssl_port = 0;
Peter Hinz56885f32011-03-02 22:03:47 +00002029 context->ssl_ctx = NULL;
2030 context->ssl_client_ctx = NULL;
Andy Green2e24da02011-03-05 16:12:04 +00002031 openssl_websocket_private_data_index = 0;
Peter Hinz56885f32011-03-02 22:03:47 +00002032#endif
Andy Green2ac5a6f2011-01-28 10:00:18 +00002033
Andy Greena1ce6be2013-01-18 11:43:21 +08002034 strcpy(context->canonical_hostname, "unknown");
Andy Greena69f0512012-05-03 12:32:38 +08002035
Andy Greena1ce6be2013-01-18 11:43:21 +08002036#ifndef LWS_NO_SERVER
Andy Green1b265272013-02-09 14:01:09 +08002037 if (!(info->options & LWS_SERVER_OPTION_SKIP_SERVER_CANONICAL_NAME)) {
Andy Green788c4a82012-10-22 12:29:57 +01002038 /* find canonical hostname */
Andy Greenadc71462013-02-14 17:11:22 +08002039 gethostname((char *)context->canonical_hostname,
Andy Greenb5b23192013-02-11 17:13:32 +08002040 sizeof(context->canonical_hostname) - 1);
Andy Green788c4a82012-10-22 12:29:57 +01002041
Andy Greenb5b23192013-02-11 17:13:32 +08002042 lwsl_notice(" canonical_hostname = %s\n",
2043 context->canonical_hostname);
Andy Greena69f0512012-05-03 12:32:38 +08002044 }
Andy Greena1ce6be2013-01-18 11:43:21 +08002045#endif
Andy Greena69f0512012-05-03 12:32:38 +08002046
Andy Green9659f372011-01-27 22:01:43 +00002047 /* split the proxy ads:port if given */
2048
2049 p = getenv("http_proxy");
2050 if (p) {
Peter Hinz56885f32011-03-02 22:03:47 +00002051 strncpy(context->http_proxy_address, p,
Andy Greenb5b23192013-02-11 17:13:32 +08002052 sizeof(context->http_proxy_address) - 1);
Peter Hinz56885f32011-03-02 22:03:47 +00002053 context->http_proxy_address[
Andy Greenb5b23192013-02-11 17:13:32 +08002054 sizeof(context->http_proxy_address) - 1] = '\0';
Andy Green9659f372011-01-27 22:01:43 +00002055
Peter Hinz56885f32011-03-02 22:03:47 +00002056 p = strchr(context->http_proxy_address, ':');
Andy Green9659f372011-01-27 22:01:43 +00002057 if (p == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08002058 lwsl_err("http_proxy needs to be ads:port\n");
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002059 goto bail;
Andy Green9659f372011-01-27 22:01:43 +00002060 }
2061 *p = '\0';
Peter Hinz56885f32011-03-02 22:03:47 +00002062 context->http_proxy_port = atoi(p + 1);
Andy Green9659f372011-01-27 22:01:43 +00002063
Andy Greenb3a614a2013-01-19 13:08:17 +08002064 lwsl_notice(" Proxy %s:%u\n",
Peter Hinz56885f32011-03-02 22:03:47 +00002065 context->http_proxy_address,
2066 context->http_proxy_port);
Andy Green9659f372011-01-27 22:01:43 +00002067 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002068
Andy Greena1ce6be2013-01-18 11:43:21 +08002069#ifndef LWS_NO_SERVER
Andy Green1b265272013-02-09 14:01:09 +08002070 if (info->port) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002071
Andy Green3faa9c72010-11-08 17:03:03 +00002072#ifdef LWS_OPENSSL_SUPPORT
Andy Green1b265272013-02-09 14:01:09 +08002073 context->use_ssl = info->ssl_cert_filepath != NULL &&
2074 info->ssl_private_key_filepath != NULL;
Andy Green23c5f2e2013-02-06 15:43:00 +09002075#ifdef USE_CYASSL
2076 lwsl_notice(" Compiled with CYASSL support\n");
2077#else
2078 lwsl_notice(" Compiled with OpenSSL support\n");
2079#endif
Peter Hinz56885f32011-03-02 22:03:47 +00002080 if (context->use_ssl)
Andy Green23c5f2e2013-02-06 15:43:00 +09002081 lwsl_notice(" Using SSL mode\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00002082 else
Andy Green23c5f2e2013-02-06 15:43:00 +09002083 lwsl_notice(" Using non-SSL mode\n");
Andy Green3faa9c72010-11-08 17:03:03 +00002084
Andy Green90c7cbc2011-01-27 06:26:52 +00002085#else
Andy Green2b40b792013-02-10 22:22:01 +08002086 if (info->ssl_cert_filepath != NULL &&
2087 info->ssl_private_key_filepath != NULL) {
Andy Greenb3a614a2013-01-19 13:08:17 +08002088 lwsl_notice(" Not compiled for OpenSSl support!\n");
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002089 goto bail;
Andy Green3faa9c72010-11-08 17:03:03 +00002090 }
Andy Greenb5b23192013-02-11 17:13:32 +08002091 lwsl_notice(" Compiled without SSL support\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00002092#endif
Andy Greena17c6922013-01-20 20:21:54 +08002093
Andy Greenb5b23192013-02-11 17:13:32 +08002094 lwsl_notice(
2095 " per-conn mem: %u + %u headers + protocol rx buf\n",
2096 sizeof(struct libwebsocket),
2097 sizeof(struct allocated_headers));
Andy Green90c7cbc2011-01-27 06:26:52 +00002098 }
Andy Greena1ce6be2013-01-18 11:43:21 +08002099#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00002100
2101 /* ignore SIGPIPE */
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +01002102#if defined(WIN32) || defined(_WIN32)
Peter Hinz56885f32011-03-02 22:03:47 +00002103#else
Andy Green90c7cbc2011-01-27 06:26:52 +00002104 signal(SIGPIPE, sigpipe_handler);
Peter Hinz56885f32011-03-02 22:03:47 +00002105#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00002106
2107
2108#ifdef LWS_OPENSSL_SUPPORT
2109
2110 /* basic openssl init */
2111
2112 SSL_library_init();
2113
2114 OpenSSL_add_all_algorithms();
2115 SSL_load_error_strings();
2116
Andy Green2e24da02011-03-05 16:12:04 +00002117 openssl_websocket_private_data_index =
Andy Green6901cb32011-02-21 08:06:47 +00002118 SSL_get_ex_new_index(0, "libwebsockets", NULL, NULL, NULL);
2119
Andy Green90c7cbc2011-01-27 06:26:52 +00002120 /*
2121 * Firefox insists on SSLv23 not SSLv3
2122 * Konq disables SSLv2 by default now, SSLv23 works
2123 */
2124
2125 method = (SSL_METHOD *)SSLv23_server_method();
2126 if (!method) {
Jontie01cb9a2013-11-22 13:14:26 +02002127 int error = ERR_get_error();
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002128 lwsl_err("problem creating ssl method %lu: %s\n",
Jontie01cb9a2013-11-22 13:14:26 +02002129 error,
2130 ERR_error_string(error,
Andy Greenb5b23192013-02-11 17:13:32 +08002131 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002132 goto bail;
Andy Green90c7cbc2011-01-27 06:26:52 +00002133 }
Peter Hinz56885f32011-03-02 22:03:47 +00002134 context->ssl_ctx = SSL_CTX_new(method); /* create context */
2135 if (!context->ssl_ctx) {
Jontie01cb9a2013-11-22 13:14:26 +02002136 int error = ERR_get_error();
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002137 lwsl_err("problem creating ssl context %lu: %s\n",
Jontie01cb9a2013-11-22 13:14:26 +02002138 error,
2139 ERR_error_string(error,
2140 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002141 goto bail;
Andy Green90c7cbc2011-01-27 06:26:52 +00002142 }
2143
martell19c73f32014-01-22 18:17:03 +00002144#if defined(WIN32) || defined(_WIN32)
2145#else
Andy Green3b3fa9e2013-12-25 16:34:37 +08002146 signal(SIGUSR2, lws_sigusr2);
Andy Greened451d52014-01-11 12:37:07 +08002147 {
2148 sigset_t mask;
2149 sigemptyset (&mask);
2150 sigaddset (&mask, SIGUSR2);
2151
2152 sigprocmask(SIG_BLOCK, &mask, NULL);
2153 }
martell19c73f32014-01-22 18:17:03 +00002154#endif
Andy Green3b3fa9e2013-12-25 16:34:37 +08002155
David Galeanocc148e42013-01-10 10:18:59 +08002156#ifdef SSL_OP_NO_COMPRESSION
David Galeanoc72f6f92013-01-10 10:11:57 +08002157 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08002158#endif
David Galeano77a677c2013-01-10 10:14:12 +08002159 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
Andy Green2672fb22013-02-22 09:54:35 +08002160 if (info->ssl_cipher_list)
2161 SSL_CTX_set_cipher_list(context->ssl_ctx,
2162 info->ssl_cipher_list);
David Galeanoc72f6f92013-01-10 10:11:57 +08002163
Andy Greena1ce6be2013-01-18 11:43:21 +08002164#ifndef LWS_NO_CLIENT
2165
Andy Green90c7cbc2011-01-27 06:26:52 +00002166 /* client context */
Andy Green6ee372f2012-04-09 15:09:01 +08002167
Andy Green1b265272013-02-09 14:01:09 +08002168 if (info->port == CONTEXT_PORT_NO_LISTEN) {
Peter Hinz56885f32011-03-02 22:03:47 +00002169 method = (SSL_METHOD *)SSLv23_client_method();
2170 if (!method) {
Jontie01cb9a2013-11-22 13:14:26 +02002171 int error = ERR_get_error();
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002172 lwsl_err("problem creating ssl method %lu: %s\n",
Jontie01cb9a2013-11-22 13:14:26 +02002173 error,
2174 ERR_error_string(error,
Andy Greenb5b23192013-02-11 17:13:32 +08002175 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002176 goto bail;
Peter Hinz56885f32011-03-02 22:03:47 +00002177 }
2178 /* create context */
2179 context->ssl_client_ctx = SSL_CTX_new(method);
2180 if (!context->ssl_client_ctx) {
Jontie01cb9a2013-11-22 13:14:26 +02002181 int error = ERR_get_error();
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002182 lwsl_err("problem creating ssl context %lu: %s\n",
Jontie01cb9a2013-11-22 13:14:26 +02002183 error,
2184 ERR_error_string(error,
Andy Greenb5b23192013-02-11 17:13:32 +08002185 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002186 goto bail;
Peter Hinz56885f32011-03-02 22:03:47 +00002187 }
Andy Green90c7cbc2011-01-27 06:26:52 +00002188
David Galeanocc148e42013-01-10 10:18:59 +08002189#ifdef SSL_OP_NO_COMPRESSION
Andy Greenb5b23192013-02-11 17:13:32 +08002190 SSL_CTX_set_options(context->ssl_client_ctx,
2191 SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08002192#endif
Andy Greenb5b23192013-02-11 17:13:32 +08002193 SSL_CTX_set_options(context->ssl_client_ctx,
2194 SSL_OP_CIPHER_SERVER_PREFERENCE);
Andy Green2672fb22013-02-22 09:54:35 +08002195 if (info->ssl_cipher_list)
2196 SSL_CTX_set_cipher_list(context->ssl_client_ctx,
2197 info->ssl_cipher_list);
David Galeanoc72f6f92013-01-10 10:11:57 +08002198
Peter Hinz56885f32011-03-02 22:03:47 +00002199 /* openssl init for cert verification (for client sockets) */
Andy Green1b265272013-02-09 14:01:09 +08002200 if (!info->ssl_ca_filepath) {
David Galeano2f82be82013-01-09 16:25:54 +08002201 if (!SSL_CTX_load_verify_locations(
2202 context->ssl_client_ctx, NULL,
2203 LWS_OPENSSL_CLIENT_CERTS))
Andy Green43db0452013-01-10 19:50:35 +08002204 lwsl_err(
Andy Greenb5b23192013-02-11 17:13:32 +08002205 "Unable to load SSL Client certs from %s "
2206 "(set by --with-client-cert-dir= "
2207 "in configure) -- client ssl isn't "
2208 "going to work", LWS_OPENSSL_CLIENT_CERTS);
David Galeano2f82be82013-01-09 16:25:54 +08002209 } else
2210 if (!SSL_CTX_load_verify_locations(
Andy Green1b265272013-02-09 14:01:09 +08002211 context->ssl_client_ctx, info->ssl_ca_filepath,
David Galeano2f82be82013-01-09 16:25:54 +08002212 NULL))
Andy Green43db0452013-01-10 19:50:35 +08002213 lwsl_err(
David Galeano2f82be82013-01-09 16:25:54 +08002214 "Unable to load SSL Client certs "
2215 "file from %s -- client ssl isn't "
Andy Green1b265272013-02-09 14:01:09 +08002216 "going to work", info->ssl_ca_filepath);
Peter Hinz56885f32011-03-02 22:03:47 +00002217
2218 /*
2219 * callback allowing user code to load extra verification certs
2220 * helping the client to verify server identity
2221 */
2222
prasannateamf1b353a452013-11-12 17:21:01 -08002223 /* support for client-side certificate authentication */
2224 if (info->ssl_cert_filepath) {
2225 n = SSL_CTX_use_certificate_chain_file(
2226 context->ssl_client_ctx,
2227 info->ssl_cert_filepath);
2228 if (n != 1) {
2229 lwsl_err("problem getting cert '%s' %lu: %s\n",
2230 info->ssl_cert_filepath,
2231 ERR_get_error(),
2232 ERR_error_string(ERR_get_error(),
2233 (char *)context->service_buffer));
2234 goto bail;
2235 }
2236 }
2237 if (info->ssl_private_key_filepath) {
2238 /* set the private key from KeyFile */
2239 if (SSL_CTX_use_PrivateKey_file(context->ssl_client_ctx,
2240 info->ssl_private_key_filepath,
2241 SSL_FILETYPE_PEM) != 1) {
2242 lwsl_err("use_PrivateKey_file '%s' %lu: %s\n",
2243 info->ssl_private_key_filepath,
2244 ERR_get_error(),
2245 ERR_error_string(ERR_get_error(),
2246 (char *)context->service_buffer));
2247 goto bail;
2248 }
2249
2250 /* verify private key */
2251 if (!SSL_CTX_check_private_key(context->ssl_client_ctx)) {
2252 lwsl_err("Private SSL key doesn't match cert\n");
2253 goto bail;
2254 }
2255 }
2256
Peter Hinz56885f32011-03-02 22:03:47 +00002257 context->protocols[0].callback(context, NULL,
2258 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS,
2259 context->ssl_client_ctx, NULL, 0);
Andy Green90c7cbc2011-01-27 06:26:52 +00002260 }
Andy Greena1ce6be2013-01-18 11:43:21 +08002261#endif
Andy Green6ee372f2012-04-09 15:09:01 +08002262
Andy Greenc6bf2c22011-02-20 11:10:47 +00002263 /* as a server, are we requiring clients to identify themselves? */
2264
Andy Greenb5b23192013-02-11 17:13:32 +08002265 if (info->options &
2266 LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT) {
Andy Greenc6bf2c22011-02-20 11:10:47 +00002267
2268 /* absolutely require the client cert */
Andy Green6ee372f2012-04-09 15:09:01 +08002269
Peter Hinz56885f32011-03-02 22:03:47 +00002270 SSL_CTX_set_verify(context->ssl_ctx,
Andy Green6901cb32011-02-21 08:06:47 +00002271 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
2272 OpenSSL_verify_callback);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002273
2274 /*
2275 * give user code a chance to load certs into the server
2276 * allowing it to verify incoming client certs
2277 */
2278
Peter Hinz56885f32011-03-02 22:03:47 +00002279 context->protocols[0].callback(context, NULL,
Andy Greenc6bf2c22011-02-20 11:10:47 +00002280 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS,
Peter Hinz56885f32011-03-02 22:03:47 +00002281 context->ssl_ctx, NULL, 0);
Andy Greenc6bf2c22011-02-20 11:10:47 +00002282 }
2283
James Devine5b34c972013-12-14 11:41:29 +08002284 if(info->options & LWS_SERVER_OPTION_ALLOW_NON_SSL_ON_SSL_PORT) {
2285 /* Normally SSL listener rejects non-ssl, optionally allow */
2286 context->allow_non_ssl_on_ssl_port = 1;
2287 }
2288
Peter Hinz56885f32011-03-02 22:03:47 +00002289 if (context->use_ssl) {
Andy Green90c7cbc2011-01-27 06:26:52 +00002290
2291 /* openssl init for server sockets */
2292
Andy Green3faa9c72010-11-08 17:03:03 +00002293 /* set the local certificate from CertFile */
David Galeano9b3d4b22013-01-10 10:11:21 +08002294 n = SSL_CTX_use_certificate_chain_file(context->ssl_ctx,
Andy Green1b265272013-02-09 14:01:09 +08002295 info->ssl_cert_filepath);
Andy Green3faa9c72010-11-08 17:03:03 +00002296 if (n != 1) {
Jontie01cb9a2013-11-22 13:14:26 +02002297 int error = ERR_get_error();
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002298 lwsl_err("problem getting cert '%s' %lu: %s\n",
Andy Green1b265272013-02-09 14:01:09 +08002299 info->ssl_cert_filepath,
Jontie01cb9a2013-11-22 13:14:26 +02002300 error,
2301 ERR_error_string(error,
Andy Greenb5b23192013-02-11 17:13:32 +08002302 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002303 goto bail;
Andy Green3faa9c72010-11-08 17:03:03 +00002304 }
2305 /* set the private key from KeyFile */
Peter Hinz56885f32011-03-02 22:03:47 +00002306 if (SSL_CTX_use_PrivateKey_file(context->ssl_ctx,
Andy Green1b265272013-02-09 14:01:09 +08002307 info->ssl_private_key_filepath,
2308 SSL_FILETYPE_PEM) != 1) {
Jontie01cb9a2013-11-22 13:14:26 +02002309 int error = ERR_get_error();
Joakim Soderbergb82b0dd2013-02-22 09:28:15 +08002310 lwsl_err("ssl problem getting key '%s' %lu: %s\n",
Andy Greenb5b23192013-02-11 17:13:32 +08002311 info->ssl_private_key_filepath,
Jontie01cb9a2013-11-22 13:14:26 +02002312 error,
2313 ERR_error_string(error,
Andy Greenb5b23192013-02-11 17:13:32 +08002314 (char *)context->service_buffer));
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002315 goto bail;
Andy Green3faa9c72010-11-08 17:03:03 +00002316 }
2317 /* verify private key */
Peter Hinz56885f32011-03-02 22:03:47 +00002318 if (!SSL_CTX_check_private_key(context->ssl_ctx)) {
Andy Green43db0452013-01-10 19:50:35 +08002319 lwsl_err("Private SSL key doesn't match cert\n");
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002320 goto bail;
Andy Green3faa9c72010-11-08 17:03:03 +00002321 }
2322
2323 /* SSL is happy and has a cert it's content with */
2324 }
2325#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002326
Andy Greena1ce6be2013-01-18 11:43:21 +08002327#ifndef LWS_NO_SERVER
Andy Greenb45993c2010-12-18 15:13:50 +00002328 /* set up our external listening socket we serve on */
Andy Green8f037e42010-12-19 22:13:26 +00002329
Andy Green1b265272013-02-09 14:01:09 +08002330 if (info->port) {
Andy Greena1ce6be2013-01-18 11:43:21 +08002331 int sockfd;
Andy Green8f037e42010-12-19 22:13:26 +00002332
Andy Green4739e5c2011-01-22 12:51:57 +00002333 sockfd = socket(AF_INET, SOCK_STREAM, 0);
2334 if (sockfd < 0) {
Andy Greenf7609e92013-01-14 13:10:55 +08002335 lwsl_err("ERROR opening socket\n");
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002336 goto bail;
Andy Green4739e5c2011-01-22 12:51:57 +00002337 }
Andy Green775c0dd2010-10-29 14:15:22 +01002338
Joakim Soderberg4c531232013-02-06 15:26:58 +09002339#ifndef WIN32
Andy Greenb5b23192013-02-11 17:13:32 +08002340 /*
2341 * allow us to restart even if old sockets in TIME_WAIT
2342 * (REUSEADDR on Unix means, "don't hang on to this
2343 * address after the listener is closed." On Windows, though,
2344 * it means "don't keep other processes from binding to
2345 * this address while we're using it)
2346 */
Andy Green6ee372f2012-04-09 15:09:01 +08002347 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR,
2348 (const void *)&opt, sizeof(opt));
Joakim Soderberg4c531232013-02-06 15:26:58 +09002349#endif
Andy Green6c939552011-03-08 08:56:57 +00002350
2351 /* Disable Nagle */
2352 opt = 1;
Andy Green6ee372f2012-04-09 15:09:01 +08002353 setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY,
2354 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00002355
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +01002356 #if defined(WIN32) || defined(_WIN32)
Joakim Soderberg4c531232013-02-06 15:26:58 +09002357 opt = 0;
Andy Greenb5b23192013-02-11 17:13:32 +08002358 ioctlsocket(sockfd, FIONBIO, (unsigned long *)&opt);
Joakim Soderberg4c531232013-02-06 15:26:58 +09002359 #else
Andy Greene2160712013-01-28 12:19:10 +08002360 fcntl(sockfd, F_SETFL, O_NONBLOCK);
Joakim Soderberg4c531232013-02-06 15:26:58 +09002361 #endif
Andy Greene2160712013-01-28 12:19:10 +08002362
Andy Green4739e5c2011-01-22 12:51:57 +00002363 bzero((char *) &serv_addr, sizeof(serv_addr));
2364 serv_addr.sin_family = AF_INET;
Joakim Soderberg63ff1202013-02-11 17:52:23 +01002365 if (info->iface == NULL)
Andy Green32375b72011-02-19 08:32:53 +00002366 serv_addr.sin_addr.s_addr = INADDR_ANY;
2367 else
Andy Greend1eac602013-11-09 08:07:38 +08002368 if (interface_to_sa(info->iface, &serv_addr,
2369 sizeof(serv_addr)) < 0) {
2370 lwsl_err("Unable to find interface %s\n",
2371 info->iface);
2372 compatible_close(sockfd);
2373 goto bail;
2374 }
Andy Green1b265272013-02-09 14:01:09 +08002375 serv_addr.sin_port = htons(info->port);
Andy Green4739e5c2011-01-22 12:51:57 +00002376
2377 n = bind(sockfd, (struct sockaddr *) &serv_addr,
2378 sizeof(serv_addr));
2379 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08002380 lwsl_err("ERROR on binding to port %d (%d %d)\n",
Andy Green1b265272013-02-09 14:01:09 +08002381 info->port, n, errno);
Andy Green8b2d6f02013-10-22 06:49:30 +08002382 compatible_close(sockfd);
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002383 goto bail;
Andy Green4739e5c2011-01-22 12:51:57 +00002384 }
Andy Green0d338332011-02-12 11:57:43 +00002385
Andy Greenb5b23192013-02-11 17:13:32 +08002386 wsi = (struct libwebsocket *)malloc(
2387 sizeof(struct libwebsocket));
Andy Green41c58032013-01-12 13:21:08 +08002388 if (wsi == NULL) {
2389 lwsl_err("Out of mem\n");
Andy Green8b2d6f02013-10-22 06:49:30 +08002390 compatible_close(sockfd);
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002391 goto bail;
Andy Green41c58032013-01-12 13:21:08 +08002392 }
Andy Greenb5b23192013-02-11 17:13:32 +08002393 memset(wsi, 0, sizeof(struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00002394 wsi->sock = sockfd;
Andy Green3182ece2013-01-20 17:08:31 +08002395#ifndef LWS_NO_EXTENSIONS
Andy Greend6e09112011-03-05 16:12:15 +00002396 wsi->count_active_extensions = 0;
Andy Green3182ece2013-01-20 17:08:31 +08002397#endif
Andy Green0d338332011-02-12 11:57:43 +00002398 wsi->mode = LWS_CONNMODE_SERVER_LISTENER;
Andy Greendfb23042013-01-17 12:26:48 +08002399
2400 insert_wsi_socket_into_fds(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00002401
Andy Green65b0e912013-01-16 07:59:47 +08002402 context->listen_service_modulo = LWS_LISTEN_SERVICE_MODULO;
2403 context->listen_service_count = 0;
2404 context->listen_service_fd = sockfd;
2405
Andy Greena824d182013-01-15 20:52:29 +08002406 listen(sockfd, LWS_SOMAXCONN);
Andy Green1b265272013-02-09 14:01:09 +08002407 lwsl_notice(" Listening on port %d\n", info->port);
Andy Green8f037e42010-12-19 22:13:26 +00002408 }
Andy Greena1ce6be2013-01-18 11:43:21 +08002409#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002410
Andy Green6ee372f2012-04-09 15:09:01 +08002411 /*
2412 * drop any root privs for this process
2413 * to listen on port < 1023 we would have needed root, but now we are
2414 * listening, we don't want the power for anything else
2415 */
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +01002416#if defined(WIN32) || defined(_WIN32)
Peter Hinz56885f32011-03-02 22:03:47 +00002417#else
Andy Green1b265272013-02-09 14:01:09 +08002418 if (info->gid != -1)
2419 if (setgid(info->gid))
Andy Green43db0452013-01-10 19:50:35 +08002420 lwsl_warn("setgid: %s\n", strerror(errno));
Andy Green1b265272013-02-09 14:01:09 +08002421 if (info->uid != -1)
2422 if (setuid(info->uid))
Andy Green43db0452013-01-10 19:50:35 +08002423 lwsl_warn("setuid: %s\n", strerror(errno));
Peter Hinz56885f32011-03-02 22:03:47 +00002424#endif
Andy Greenb45993c2010-12-18 15:13:50 +00002425
Andy Green6f520a52013-01-29 17:57:39 +08002426 /* initialize supported protocols */
Andy Greenb45993c2010-12-18 15:13:50 +00002427
Peter Hinz56885f32011-03-02 22:03:47 +00002428 for (context->count_protocols = 0;
Andy Green1b265272013-02-09 14:01:09 +08002429 info->protocols[context->count_protocols].callback;
Peter Hinz56885f32011-03-02 22:03:47 +00002430 context->count_protocols++) {
Andy Green2d1301e2011-05-24 10:14:41 +01002431
Andy Green43db0452013-01-10 19:50:35 +08002432 lwsl_parser(" Protocol: %s\n",
Andy Green1b265272013-02-09 14:01:09 +08002433 info->protocols[context->count_protocols].name);
Andy Green2d1301e2011-05-24 10:14:41 +01002434
Andy Green1b265272013-02-09 14:01:09 +08002435 info->protocols[context->count_protocols].owning_server =
2436 context;
2437 info->protocols[context->count_protocols].protocol_index =
Peter Hinz56885f32011-03-02 22:03:47 +00002438 context->count_protocols;
Andy Greena7109e62013-02-11 12:05:54 +08002439
2440 /*
2441 * inform all the protocols that they are doing their one-time
2442 * initialization if they want to
2443 */
2444 info->protocols[context->count_protocols].callback(context,
2445 NULL, LWS_CALLBACK_PROTOCOL_INIT, NULL, NULL, 0);
Andy Greenb45993c2010-12-18 15:13:50 +00002446 }
Andy Greenf5bc1302013-01-21 09:09:52 +08002447
Andy Green3182ece2013-01-20 17:08:31 +08002448#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +01002449 /*
2450 * give all extensions a chance to create any per-context
2451 * allocations they need
2452 */
2453
2454 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_CONSTRUCT;
Andy Green1b265272013-02-09 14:01:09 +08002455 if (info->port)
Andy Greena41314f2011-05-23 10:00:03 +01002456 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_CONSTRUCT;
Andy Greenb5b23192013-02-11 17:13:32 +08002457
Andy Green1b265272013-02-09 14:01:09 +08002458 if (info->extensions) {
2459 ext = info->extensions;
2460 while (ext->callback) {
2461 lwsl_ext(" Extension: %s\n", ext->name);
2462 ext->callback(context, ext, NULL,
Aaron Zinman4550f1d2013-01-10 12:35:18 +08002463 (enum libwebsocket_extension_callback_reasons)m,
2464 NULL, NULL, 0);
Andy Green1b265272013-02-09 14:01:09 +08002465 ext++;
2466 }
Andy Greena41314f2011-05-23 10:00:03 +01002467 }
Andy Green3182ece2013-01-20 17:08:31 +08002468#endif
Andy Green3b3fa9e2013-12-25 16:34:37 +08002469
Peter Hinz56885f32011-03-02 22:03:47 +00002470 return context;
Peter Pentchev3b233cb2013-02-07 16:31:19 +02002471
2472bail:
2473 libwebsocket_context_destroy(context);
2474 return NULL;
Andy Greene92cd172011-01-19 13:11:55 +00002475}
Andy Greenb45993c2010-12-18 15:13:50 +00002476
Andy Greenb45993c2010-12-18 15:13:50 +00002477/**
shysb4e800e2013-10-24 22:12:03 +08002478 * libwebsocket_set_proxy() - Setups proxy to libwebsocket_context.
2479 * @context: pointer to struct libwebsocket_context you want set proxy to
2480 * @proxy: pointer to c string containing proxy in format address:port
2481 *
2482 * Returns 0 if proxy string was parsed and proxy was setup.
2483 * Returns -1 if @proxy is NULL or has incorrect format.
2484 *
2485 * This is only required if your OS does not provide the http_proxy
2486 * enviroment variable (eg, OSX)
2487 *
2488 * IMPORTANT! You should call this function right after creation of the
2489 * libwebsocket_context and before call to connect. If you call this
2490 * function after connect behavior is undefined.
2491 * This function will override proxy settings made on libwebsocket_context
2492 * creation with genenv() call.
2493 */
2494
2495LWS_VISIBLE int
2496libwebsocket_set_proxy(struct libwebsocket_context *context, const char *proxy)
2497{
2498 char *p;
2499
2500 if (!proxy)
2501 return -1;
2502
2503 strncpy(context->http_proxy_address, proxy,
2504 sizeof(context->http_proxy_address) - 1);
2505 context->http_proxy_address[
2506 sizeof(context->http_proxy_address) - 1] = '\0';
2507
2508 p = strchr(context->http_proxy_address, ':');
2509 if (!p) {
2510 lwsl_err("http_proxy needs to be ads:port\n");
2511
2512 return -1;
2513 }
2514 *p = '\0';
2515 context->http_proxy_port = atoi(p + 1);
2516
2517 lwsl_notice(" Proxy %s:%u\n", context->http_proxy_address,
2518 context->http_proxy_port);
2519
2520 return 0;
2521}
2522
2523/**
Andy Greenb45993c2010-12-18 15:13:50 +00002524 * libwebsockets_get_protocol() - Returns a protocol pointer from a websocket
Andy Green8f037e42010-12-19 22:13:26 +00002525 * connection.
Andy Greenb45993c2010-12-18 15:13:50 +00002526 * @wsi: pointer to struct websocket you want to know the protocol of
2527 *
Andy Green8f037e42010-12-19 22:13:26 +00002528 *
Andy Green6f520a52013-01-29 17:57:39 +08002529 * Some apis can act on all live connections of a given protocol,
2530 * this is how you can get a pointer to the active protocol if needed.
Andy Greenb45993c2010-12-18 15:13:50 +00002531 */
Andy Greenab990e42010-10-31 12:42:52 +00002532
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002533LWS_VISIBLE const struct libwebsocket_protocols *
Andy Greenb45993c2010-12-18 15:13:50 +00002534libwebsockets_get_protocol(struct libwebsocket *wsi)
2535{
2536 return wsi->protocol;
2537}
2538
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002539LWS_VISIBLE int
Andy Green82c3d542011-03-07 21:16:31 +00002540libwebsocket_is_final_fragment(struct libwebsocket *wsi)
2541{
Andy Green623a98d2013-01-21 11:04:23 +08002542 return wsi->u.ws.final;
Andy Green82c3d542011-03-07 21:16:31 +00002543}
Alex Bligh49146db2011-11-07 17:19:25 +08002544
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002545LWS_VISIBLE unsigned char
David Galeanoe2cf9922013-01-09 18:06:55 +08002546libwebsocket_get_reserved_bits(struct libwebsocket *wsi)
2547{
Andy Green623a98d2013-01-21 11:04:23 +08002548 return wsi->u.ws.rsv;
David Galeanoe2cf9922013-01-09 18:06:55 +08002549}
2550
Andy Green2af4d5b2013-02-18 16:30:10 +08002551int
Alex Bligh49146db2011-11-07 17:19:25 +08002552libwebsocket_ensure_user_space(struct libwebsocket *wsi)
2553{
Andy Green67d556c2013-02-15 22:31:55 +08002554 if (!wsi->protocol)
Andy Green2af4d5b2013-02-18 16:30:10 +08002555 return 1;
Andy Green67d556c2013-02-15 22:31:55 +08002556
Alex Bligh49146db2011-11-07 17:19:25 +08002557 /* allocate the per-connection user memory (if any) */
2558
2559 if (wsi->protocol->per_session_data_size && !wsi->user_space) {
2560 wsi->user_space = malloc(
2561 wsi->protocol->per_session_data_size);
2562 if (wsi->user_space == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08002563 lwsl_err("Out of memory for conn user space\n");
Andy Green2af4d5b2013-02-18 16:30:10 +08002564 return 1;
Alex Bligh49146db2011-11-07 17:19:25 +08002565 }
Andy Green6ee372f2012-04-09 15:09:01 +08002566 memset(wsi->user_space, 0,
2567 wsi->protocol->per_session_data_size);
Alex Bligh49146db2011-11-07 17:19:25 +08002568 }
Andy Green2af4d5b2013-02-18 16:30:10 +08002569 return 0;
Alex Bligh49146db2011-11-07 17:19:25 +08002570}
Andy Green43db0452013-01-10 19:50:35 +08002571
Andy Green0b319092013-01-19 11:17:56 +08002572static void lwsl_emit_stderr(int level, const char *line)
Andy Greende8f27a2013-01-12 09:17:42 +08002573{
Andy Green0b319092013-01-19 11:17:56 +08002574 char buf[300];
2575 struct timeval tv;
Andy Green0b319092013-01-19 11:17:56 +08002576 int n;
2577
2578 gettimeofday(&tv, NULL);
2579
2580 buf[0] = '\0';
2581 for (n = 0; n < LLL_COUNT; n++)
2582 if (level == (1 << n)) {
Andy Green058ba812013-01-19 11:32:18 +08002583 sprintf(buf, "[%ld:%04d] %s: ", tv.tv_sec,
Andy Greenb5b23192013-02-11 17:13:32 +08002584 (int)(tv.tv_usec / 100), log_level_names[n]);
Andy Green0b319092013-01-19 11:17:56 +08002585 break;
2586 }
Andy Greenb5b23192013-02-11 17:13:32 +08002587
Andy Green0b319092013-01-19 11:17:56 +08002588 fprintf(stderr, "%s%s", buf, line);
Andy Greende8f27a2013-01-12 09:17:42 +08002589}
2590
Andreas Pakulat68bd4bd2013-10-28 15:18:04 +01002591#if defined(WIN32) || defined(_WIN32)
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002592LWS_VISIBLE void lwsl_emit_syslog(int level, const char *line)
Joakim Soderberg4c531232013-02-06 15:26:58 +09002593{
2594 lwsl_emit_stderr(level, line);
2595}
2596#else
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002597LWS_VISIBLE void lwsl_emit_syslog(int level, const char *line)
Andy Greenc11db202013-01-19 11:12:16 +08002598{
2599 int syslog_level = LOG_DEBUG;
2600
2601 switch (level) {
2602 case LLL_ERR:
2603 syslog_level = LOG_ERR;
2604 break;
2605 case LLL_WARN:
2606 syslog_level = LOG_WARNING;
2607 break;
2608 case LLL_NOTICE:
2609 syslog_level = LOG_NOTICE;
2610 break;
2611 case LLL_INFO:
2612 syslog_level = LOG_INFO;
2613 break;
2614 }
Edwin van den Oetelaarf6eeabc2013-01-19 20:01:01 +08002615 syslog(syslog_level, "%s", line);
Andy Greenc11db202013-01-19 11:12:16 +08002616}
Joakim Soderberg4c531232013-02-06 15:26:58 +09002617#endif
Andy Greenc11db202013-01-19 11:12:16 +08002618
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002619LWS_VISIBLE void _lws_log(int filter, const char *format, ...)
Andy Green43db0452013-01-10 19:50:35 +08002620{
Andy Greende8f27a2013-01-12 09:17:42 +08002621 char buf[256];
Andy Green43db0452013-01-10 19:50:35 +08002622 va_list ap;
Andy Green43db0452013-01-10 19:50:35 +08002623
2624 if (!(log_level & filter))
2625 return;
2626
Andy Green43db0452013-01-10 19:50:35 +08002627 va_start(ap, format);
Andy Greenb5b23192013-02-11 17:13:32 +08002628 vsnprintf(buf, sizeof(buf), format, ap);
2629 buf[sizeof(buf) - 1] = '\0';
Andy Greende8f27a2013-01-12 09:17:42 +08002630 va_end(ap);
2631
Andy Green0b319092013-01-19 11:17:56 +08002632 lwsl_emit(filter, buf);
Andy Green43db0452013-01-10 19:50:35 +08002633}
2634
2635/**
2636 * lws_set_log_level() - Set the logging bitfield
2637 * @level: OR together the LLL_ debug contexts you want output from
Andy Greende8f27a2013-01-12 09:17:42 +08002638 * @log_emit_function: NULL to leave it as it is, or a user-supplied
2639 * function to perform log string emission instead of
2640 * the default stderr one.
Andy Green43db0452013-01-10 19:50:35 +08002641 *
Andy Greenc6511a02013-02-19 10:01:48 +08002642 * log level defaults to "err", "warn" and "notice" contexts enabled and
Andy Greende8f27a2013-01-12 09:17:42 +08002643 * emission on stderr.
Andy Green43db0452013-01-10 19:50:35 +08002644 */
2645
Peter Pentchev9a4fef72013-03-30 09:52:21 +08002646LWS_VISIBLE void lws_set_log_level(int level, void (*log_emit_function)(int level,
Andy Greenb5b23192013-02-11 17:13:32 +08002647 const char *line))
Andy Green43db0452013-01-10 19:50:35 +08002648{
2649 log_level = level;
Andy Greende8f27a2013-01-12 09:17:42 +08002650 if (log_emit_function)
2651 lwsl_emit = log_emit_function;
Andy Green43db0452013-01-10 19:50:35 +08002652}