blob: cfe6b446d40b225aa3d7a5ff51df28b3400464f5 [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 Greenc11db202013-01-19 11:12:16 +080023#include <syslog.h>
Andy Greenff95d7a2010-10-28 22:36:01 +010024
Peter Hinz56885f32011-03-02 22:03:47 +000025#ifdef WIN32
David Galeanocb193682013-01-09 15:29:00 +080026#include <tchar.h>
27#include <io.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
Andy Green7627af52011-03-09 15:13:52 +000034#include <sys/un.h>
Andy Greena69f0512012-05-03 12:32:38 +080035#include <sys/socket.h>
36#include <netdb.h>
Peter Hinz56885f32011-03-02 22:03:47 +000037#endif
Andy Green2e24da02011-03-05 16:12:04 +000038
39#ifdef LWS_OPENSSL_SUPPORT
40int openssl_websocket_private_data_index;
41#endif
42
Andy Greenaa6fc442012-04-12 13:26:49 +080043#ifdef __MINGW32__
44#include "../win32port/win32helpers/websock-w32.c"
45#else
46#ifdef __MINGW64__
47#include "../win32port/win32helpers/websock-w32.c"
48#endif
49#endif
50
Andy Green3182ece2013-01-20 17:08:31 +080051
Andy Green7c19c342013-01-19 12:18:07 +080052static int log_level = LLL_ERR | LLL_WARN | LLL_NOTICE;
Andy Green058ba812013-01-19 11:32:18 +080053static void lwsl_emit_stderr(int level, const char *line);
54static void (*lwsl_emit)(int level, const char *line) = lwsl_emit_stderr;
55
Andy Green43db0452013-01-10 19:50:35 +080056static const char *log_level_names[] = {
57 "ERR",
58 "WARN",
Andy Green7c19c342013-01-19 12:18:07 +080059 "NOTICE",
Andy Green43db0452013-01-10 19:50:35 +080060 "INFO",
61 "DEBUG",
62 "PARSER",
63 "HEADER",
64 "EXTENSION",
65 "CLIENT",
Andy Greend636e352013-01-29 12:36:17 +080066 "LATENCY",
Andy Green43db0452013-01-10 19:50:35 +080067};
68
Andy Green0d338332011-02-12 11:57:43 +000069int
Andy Greendfb23042013-01-17 12:26:48 +080070insert_wsi_socket_into_fds(struct libwebsocket_context *context, struct libwebsocket *wsi)
Andy Green0d338332011-02-12 11:57:43 +000071{
Andy Greendfb23042013-01-17 12:26:48 +080072 if (context->fds_count >= context->max_fds) {
73 lwsl_err("Reached limit of fds tracking (%d)\n", context->max_fds);
Andy Green0d338332011-02-12 11:57:43 +000074 return 1;
75 }
76
Andy Greendfb23042013-01-17 12:26:48 +080077 if (wsi->sock > context->max_fds) {
78 lwsl_err("Socket fd %d is beyond what we can index (%d)\n", wsi->sock, context->max_fds);
79 return 1;
80 }
81
82 assert(wsi);
83 assert(wsi->sock);
84
85 lwsl_info("insert_wsi_socket_into_fds: wsi=%p, sock=%d, fds pos=%d\n", wsi, wsi->sock, context->fds_count);
86
87 context->lws_lookup[wsi->sock] = wsi;
88 wsi->position_in_fds_table = context->fds_count;
89 context->fds[context->fds_count].fd = wsi->sock;
90 context->fds[context->fds_count].events = POLLIN;
91 context->fds[context->fds_count++].revents = 0;
92
93 /* external POLL support via protocol 0 */
94 context->protocols[0].callback(context, wsi,
95 LWS_CALLBACK_ADD_POLL_FD,
96 (void *)(long)wsi->sock, NULL, POLLIN);
Andy Green0d338332011-02-12 11:57:43 +000097
98 return 0;
99}
100
Andy Greendfb23042013-01-17 12:26:48 +0800101static int
102remove_wsi_socket_from_fds(struct libwebsocket_context *context, struct libwebsocket *wsi)
Andy Green0d338332011-02-12 11:57:43 +0000103{
Andy Greendfb23042013-01-17 12:26:48 +0800104 int m;
Andy Green0d338332011-02-12 11:57:43 +0000105
Andy Greendfb23042013-01-17 12:26:48 +0800106 if (!--context->fds_count)
107 goto do_ext;
Andy Green0d338332011-02-12 11:57:43 +0000108
Andy Greendfb23042013-01-17 12:26:48 +0800109 if (wsi->sock > context->max_fds) {
110 lwsl_err("Socket fd %d is beyond what we can index (%d)\n", wsi->sock, context->max_fds);
111 return 1;
112 }
Andy Green0d338332011-02-12 11:57:43 +0000113
Andy Greendfb23042013-01-17 12:26:48 +0800114 lwsl_info("remove_wsi_socket_from_fds: wsi=%p, sock=%d, fds pos=%d\n", wsi, wsi->sock, wsi->position_in_fds_table);
115
116 m = wsi->position_in_fds_table; /* replace the contents for this */
117
118 /* have the last guy take up the vacant slot */
119 context->fds[m] = context->fds[context->fds_count]; /* vacant fds slot filled with end one */
120 /* end guy's fds_lookup entry remains unchanged (still same fd pointing to same wsi) */
121 /* end guy's "position in fds table" changed */
122 context->lws_lookup[context->fds[context->fds_count].fd]->position_in_fds_table = m;
123 /* deletion guy's lws_lookup entry needs nuking */
124 context->lws_lookup[wsi->sock] = NULL; /* no WSI for the socket of the wsi being removed*/
125 wsi->position_in_fds_table = -1; /* removed wsi has no position any more */
126
127do_ext:
128 /* remove also from external POLL support via protocol 0 */
129 if (wsi->sock)
130 context->protocols[0].callback(context, wsi,
131 LWS_CALLBACK_DEL_POLL_FD, (void *)(long)wsi->sock, NULL, 0);
132
133 return 0;
Andy Green0d338332011-02-12 11:57:43 +0000134}
135
Andy Green32375b72011-02-19 08:32:53 +0000136
Andy Green8f037e42010-12-19 22:13:26 +0000137void
Peter Hinz56885f32011-03-02 22:03:47 +0000138libwebsocket_close_and_free_session(struct libwebsocket_context *context,
Andy Green687b0182011-02-26 11:04:01 +0000139 struct libwebsocket *wsi, enum lws_close_status reason)
Andy Green251f6fa2010-11-03 11:13:06 +0000140{
Andy Greenb45993c2010-12-18 15:13:50 +0000141 int n;
Andy Green62c54d22011-02-14 09:14:25 +0000142 int old_state;
Andy Green5e1fa172011-02-10 09:07:05 +0000143 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 2 +
144 LWS_SEND_BUFFER_POST_PADDING];
Andy Green3182ece2013-01-20 17:08:31 +0800145#ifndef LWS_NO_EXTENSIONS
Andy Greenc44159f2011-03-07 07:08:18 +0000146 int ret;
147 int m;
148 struct lws_tokens eff_buf;
Andy Greena41314f2011-05-23 10:00:03 +0100149 struct libwebsocket_extension *ext;
Andy Green3182ece2013-01-20 17:08:31 +0800150#endif
Andy Greenb45993c2010-12-18 15:13:50 +0000151
Andy Green4b6fbe12011-02-14 08:03:48 +0000152 if (!wsi)
Andy Greenb45993c2010-12-18 15:13:50 +0000153 return;
154
Andy Green62c54d22011-02-14 09:14:25 +0000155 old_state = wsi->state;
Andy Green251f6fa2010-11-03 11:13:06 +0000156
Andy Green62c54d22011-02-14 09:14:25 +0000157 if (old_state == WSI_STATE_DEAD_SOCKET)
Andy Green5e1fa172011-02-10 09:07:05 +0000158 return;
159
Andy Green623a98d2013-01-21 11:04:23 +0800160 wsi->u.ws.close_reason = reason;
Andy Greenda527df2011-03-07 07:08:12 +0000161
Andy Green3182ece2013-01-20 17:08:31 +0800162#ifndef LWS_NO_EXTENSIONS
Andy Greenda527df2011-03-07 07:08:12 +0000163 /*
Andy Green68b45042011-05-25 21:41:57 +0100164 * are his extensions okay with him closing? Eg he might be a mux
165 * parent and just his ch1 aspect is closing?
166 */
167
Andy Green68b45042011-05-25 21:41:57 +0100168 for (n = 0; n < wsi->count_active_extensions; n++) {
169 if (!wsi->active_extensions[n]->callback)
170 continue;
171
172 m = wsi->active_extensions[n]->callback(context,
173 wsi->active_extensions[n], wsi,
174 LWS_EXT_CALLBACK_CHECK_OK_TO_REALLY_CLOSE,
175 wsi->active_extensions_user[n], NULL, 0);
176
177 /*
178 * if somebody vetoed actually closing him at this time....
179 * up to the extension to track the attempted close, let's
180 * just bail
181 */
182
183 if (m) {
Andy Green43db0452013-01-10 19:50:35 +0800184 lwsl_ext("extension vetoed close\n");
Andy Green68b45042011-05-25 21:41:57 +0100185 return;
186 }
187 }
188
Andy Green68b45042011-05-25 21:41:57 +0100189 /*
Andy Greenc44159f2011-03-07 07:08:18 +0000190 * flush any tx pending from extensions, since we may send close packet
191 * if there are problems with send, just nuke the connection
192 */
193
194 ret = 1;
195 while (ret == 1) {
196
197 /* default to nobody has more to spill */
198
199 ret = 0;
200 eff_buf.token = NULL;
201 eff_buf.token_len = 0;
202
203 /* show every extension the new incoming data */
204
205 for (n = 0; n < wsi->count_active_extensions; n++) {
206 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000207 wsi->protocol->owning_server,
208 wsi->active_extensions[n], wsi,
Andy Greenc44159f2011-03-07 07:08:18 +0000209 LWS_EXT_CALLBACK_FLUSH_PENDING_TX,
210 wsi->active_extensions_user[n], &eff_buf, 0);
211 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800212 lwsl_ext("Extension reports fatal error\n");
Andy Greenc44159f2011-03-07 07:08:18 +0000213 goto just_kill_connection;
214 }
215 if (m)
216 /*
217 * at least one extension told us he has more
218 * to spill, so we will go around again after
219 */
220 ret = 1;
221 }
222
223 /* assuming they left us something to send, send it */
224
225 if (eff_buf.token_len)
226 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
Andy Green0303db42013-01-17 14:46:43 +0800227 eff_buf.token_len)) {
228 lwsl_debug("close: sending final extension spill had problems\n");
Andy Greenc44159f2011-03-07 07:08:18 +0000229 goto just_kill_connection;
Andy Green0303db42013-01-17 14:46:43 +0800230 }
Andy Greenc44159f2011-03-07 07:08:18 +0000231 }
Andy Green3182ece2013-01-20 17:08:31 +0800232#endif
Andy Greenc44159f2011-03-07 07:08:18 +0000233
234 /*
Andy Greenda527df2011-03-07 07:08:12 +0000235 * signal we are closing, libsocket_write will
236 * add any necessary version-specific stuff. If the write fails,
237 * no worries we are closing anyway. If we didn't initiate this
238 * close, then our state has been changed to
239 * WSI_STATE_RETURNED_CLOSE_ALREADY and we will skip this.
240 *
241 * Likewise if it's a second call to close this connection after we
242 * sent the close indication to the peer already, we are in state
243 * WSI_STATE_AWAITING_CLOSE_ACK and will skip doing this a second time.
244 */
245
246 if (old_state == WSI_STATE_ESTABLISHED &&
247 reason != LWS_CLOSE_STATUS_NOSTATUS) {
Andy Green66a16f32011-05-24 22:07:45 +0100248
Andy Green43db0452013-01-10 19:50:35 +0800249 lwsl_debug("sending close indication...\n");
Andy Green66a16f32011-05-24 22:07:45 +0100250
Andy Greenda527df2011-03-07 07:08:12 +0000251 n = libwebsocket_write(wsi, &buf[LWS_SEND_BUFFER_PRE_PADDING],
252 0, LWS_WRITE_CLOSE);
253 if (!n) {
254 /*
255 * we have sent a nice protocol level indication we
256 * now wish to close, we should not send anything more
257 */
258
259 wsi->state = WSI_STATE_AWAITING_CLOSE_ACK;
260
Andy Green0303db42013-01-17 14:46:43 +0800261 /* and we should wait for a reply for a bit out of politeness */
Andy Greenda527df2011-03-07 07:08:12 +0000262
263 libwebsocket_set_timeout(wsi,
Andy Green0303db42013-01-17 14:46:43 +0800264 PENDING_TIMEOUT_CLOSE_ACK, 1);
Andy Greenda527df2011-03-07 07:08:12 +0000265
Andy Green43db0452013-01-10 19:50:35 +0800266 lwsl_debug("sent close indication, awaiting ack\n");
Andy Greenda527df2011-03-07 07:08:12 +0000267
268 return;
269 }
270
Andy Green0303db42013-01-17 14:46:43 +0800271 lwsl_info("close: sending the close packet failed, hanging up\n");
272
Andy Greenda527df2011-03-07 07:08:12 +0000273 /* else, the send failed and we should just hang up */
274 }
275
Andy Green3182ece2013-01-20 17:08:31 +0800276#ifndef LWS_NO_EXTENSIONS
Andy Greenc44159f2011-03-07 07:08:18 +0000277just_kill_connection:
Andy Green3182ece2013-01-20 17:08:31 +0800278#endif
Andy Green66a16f32011-05-24 22:07:45 +0100279
Andy Green43db0452013-01-10 19:50:35 +0800280 lwsl_debug("libwebsocket_close_and_free_session: just_kill_connection\n");
Andy Green66a16f32011-05-24 22:07:45 +0100281
Andy Greenda527df2011-03-07 07:08:12 +0000282 /*
283 * we won't be servicing or receiving anything further from this guy
Andy Greendfb23042013-01-17 12:26:48 +0800284 * delete socket from the internal poll list if still present
Andy Greenda527df2011-03-07 07:08:12 +0000285 */
Andy Green4b6fbe12011-02-14 08:03:48 +0000286
Andy Greendfb23042013-01-17 12:26:48 +0800287 remove_wsi_socket_from_fds(context, wsi);
Andy Green4b6fbe12011-02-14 08:03:48 +0000288
Andy Green251f6fa2010-11-03 11:13:06 +0000289 wsi->state = WSI_STATE_DEAD_SOCKET;
290
Andy Green4b6fbe12011-02-14 08:03:48 +0000291 /* tell the user it's all over for this guy */
292
Andy Greend4302732011-02-28 07:45:29 +0000293 if (wsi->protocol && wsi->protocol->callback &&
Andy Green6ee372f2012-04-09 15:09:01 +0800294 ((old_state == WSI_STATE_ESTABLISHED) ||
295 (old_state == WSI_STATE_RETURNED_CLOSE_ALREADY) ||
296 (old_state == WSI_STATE_AWAITING_CLOSE_ACK))) {
Andy Green43db0452013-01-10 19:50:35 +0800297 lwsl_debug("calling back CLOSED\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000298 wsi->protocol->callback(context, wsi, LWS_CALLBACK_CLOSED,
Andy Greene77ddd82010-11-13 10:03:47 +0000299 wsi->user_space, NULL, 0);
Andy Greencc012472011-11-07 19:53:23 +0800300 } else
Andy Green43db0452013-01-10 19:50:35 +0800301 lwsl_debug("not calling back closed, old_state=%d\n", old_state);
Andy Green251f6fa2010-11-03 11:13:06 +0000302
Andy Green3182ece2013-01-20 17:08:31 +0800303#ifndef LWS_NO_EXTENSIONS
Andy Greenef660a92011-03-06 10:29:38 +0000304 /* deallocate any active extension contexts */
305
306 for (n = 0; n < wsi->count_active_extensions; n++) {
307 if (!wsi->active_extensions[n]->callback)
308 continue;
309
Andy Green46c2ea02011-03-22 09:04:01 +0000310 wsi->active_extensions[n]->callback(context,
311 wsi->active_extensions[n], wsi,
312 LWS_EXT_CALLBACK_DESTROY,
313 wsi->active_extensions_user[n], NULL, 0);
Andy Greenef660a92011-03-06 10:29:38 +0000314
315 free(wsi->active_extensions_user[n]);
316 }
317
Andy Greena41314f2011-05-23 10:00:03 +0100318 /*
319 * inform all extensions in case they tracked this guy out of band
320 * even though not active on him specifically
321 */
322
323 ext = context->extensions;
324 while (ext && ext->callback) {
325 ext->callback(context, ext, wsi,
326 LWS_EXT_CALLBACK_DESTROY_ANY_WSI_CLOSING,
327 NULL, NULL, 0);
328 ext++;
329 }
Andy Green3182ece2013-01-20 17:08:31 +0800330#endif
Andy Greena41314f2011-05-23 10:00:03 +0100331
Andy Greenef660a92011-03-06 10:29:38 +0000332 /* free up his parsing allocations */
Andy Green4b6fbe12011-02-14 08:03:48 +0000333
Andy Green251f6fa2010-11-03 11:13:06 +0000334 for (n = 0; n < WSI_TOKEN_COUNT; n++)
335 if (wsi->utf8_token[n].token)
336 free(wsi->utf8_token[n].token);
Andy Greena1ce6be2013-01-18 11:43:21 +0800337#ifndef LWS_NO_CLIENT
Andy Greena41314f2011-05-23 10:00:03 +0100338 if (wsi->c_address)
339 free(wsi->c_address);
Andy Greena1ce6be2013-01-18 11:43:21 +0800340#endif
Andy Green623a98d2013-01-21 11:04:23 +0800341 if (wsi->u.ws.rxflow_buffer)
342 free(wsi->u.ws.rxflow_buffer);
Andy Green706961d2013-01-17 16:50:35 +0800343
Andy Green43db0452013-01-10 19:50:35 +0800344/* lwsl_info("closing fd=%d\n", wsi->sock); */
Andy Green251f6fa2010-11-03 11:13:06 +0000345
Andy Green3faa9c72010-11-08 17:03:03 +0000346#ifdef LWS_OPENSSL_SUPPORT
Andy Green90c7cbc2011-01-27 06:26:52 +0000347 if (wsi->ssl) {
Andy Green3faa9c72010-11-08 17:03:03 +0000348 n = SSL_get_fd(wsi->ssl);
349 SSL_shutdown(wsi->ssl);
Andy Green3fc2c652013-01-14 15:35:02 +0800350 compatible_close(n);
Andy Green3faa9c72010-11-08 17:03:03 +0000351 SSL_free(wsi->ssl);
352 } else {
353#endif
Andy Green0303db42013-01-17 14:46:43 +0800354 if (wsi->sock) {
355 n = shutdown(wsi->sock, SHUT_RDWR);
356 if (n)
357 lwsl_debug("closing: shutdown returned %d\n", errno);
Andy Green3fc2c652013-01-14 15:35:02 +0800358
Andy Green0303db42013-01-17 14:46:43 +0800359 n = compatible_close(wsi->sock);
360 if (n)
361 lwsl_debug("closing: close returned %d\n", errno);
362 }
Andy Green3faa9c72010-11-08 17:03:03 +0000363#ifdef LWS_OPENSSL_SUPPORT
364 }
365#endif
David Brooks2c60d952012-04-20 12:19:01 +0800366 if (wsi->protocol && wsi->protocol->per_session_data_size && wsi->user_space) /* user code may own */
Andy Green4f3943a2010-11-12 10:44:16 +0000367 free(wsi->user_space);
368
Andy Green251f6fa2010-11-03 11:13:06 +0000369 free(wsi);
370}
371
Andy Green07034092011-02-13 08:37:12 +0000372/**
Andy Greenf7ee5492011-02-13 09:04:21 +0000373 * libwebsockets_hangup_on_client() - Server calls to terminate client
Andy Green6ee372f2012-04-09 15:09:01 +0800374 * connection
Peter Hinz56885f32011-03-02 22:03:47 +0000375 * @context: libwebsockets context
Andy Greenf7ee5492011-02-13 09:04:21 +0000376 * @fd: Connection socket descriptor
377 */
378
379void
Peter Hinz56885f32011-03-02 22:03:47 +0000380libwebsockets_hangup_on_client(struct libwebsocket_context *context, int fd)
Andy Greenf7ee5492011-02-13 09:04:21 +0000381{
Andy Greendfb23042013-01-17 12:26:48 +0800382 struct libwebsocket *wsi = context->lws_lookup[fd];
Andy Greenf7ee5492011-02-13 09:04:21 +0000383
Andy Greendfb23042013-01-17 12:26:48 +0800384 if (wsi) {
Andy Green467c7ef2013-01-30 12:28:34 +0800385 lwsl_info("closing connection at libwebsockets_hangup_on_client:\n");
Andy Greendfb23042013-01-17 12:26:48 +0800386 libwebsocket_close_and_free_session(context,
387 wsi, LWS_CLOSE_STATUS_NOSTATUS);
388 } else
389 close(fd);
Andy Greenf7ee5492011-02-13 09:04:21 +0000390}
391
392
393/**
Andy Green07034092011-02-13 08:37:12 +0000394 * libwebsockets_get_peer_addresses() - Get client address information
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800395 * @context: Libwebsockets context
396 * @wsi: Local struct libwebsocket associated with
Andy Green07034092011-02-13 08:37:12 +0000397 * @fd: Connection socket descriptor
398 * @name: Buffer to take client address name
399 * @name_len: Length of client address name buffer
400 * @rip: Buffer to take client address IP qotted quad
401 * @rip_len: Length of client address IP buffer
402 *
403 * This function fills in @name and @rip with the name and IP of
Andy Green6ee372f2012-04-09 15:09:01 +0800404 * the client connected with socket descriptor @fd. Names may be
405 * truncated if there is not enough room. If either cannot be
406 * determined, they will be returned as valid zero-length strings.
Andy Green07034092011-02-13 08:37:12 +0000407 */
408
409void
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800410libwebsockets_get_peer_addresses(struct libwebsocket_context *context,
411 struct libwebsocket *wsi, int fd, char *name, int name_len,
Andy Green07034092011-02-13 08:37:12 +0000412 char *rip, int rip_len)
413{
414 unsigned int len;
415 struct sockaddr_in sin;
416 struct hostent *host;
417 struct hostent *host1;
418 char ip[128];
Andy Greenf92def72011-03-09 15:02:20 +0000419 unsigned char *p;
Andy Green07034092011-02-13 08:37:12 +0000420 int n;
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800421 int ret = -1;
David Galeanocb193682013-01-09 15:29:00 +0800422#ifdef AF_LOCAL
423 struct sockaddr_un *un;
424#endif
Andy Green07034092011-02-13 08:37:12 +0000425
426 rip[0] = '\0';
427 name[0] = '\0';
428
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800429 lws_latency_pre(context, wsi);
430
Andy Green07034092011-02-13 08:37:12 +0000431 len = sizeof sin;
432 if (getpeername(fd, (struct sockaddr *) &sin, &len) < 0) {
433 perror("getpeername");
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800434 goto bail;
Andy Green07034092011-02-13 08:37:12 +0000435 }
Andy Green6ee372f2012-04-09 15:09:01 +0800436
Andy Green07034092011-02-13 08:37:12 +0000437 host = gethostbyaddr((char *) &sin.sin_addr, sizeof sin.sin_addr,
438 AF_INET);
439 if (host == NULL) {
440 perror("gethostbyaddr");
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800441 goto bail;
Andy Green07034092011-02-13 08:37:12 +0000442 }
443
444 strncpy(name, host->h_name, name_len);
445 name[name_len - 1] = '\0';
446
447 host1 = gethostbyname(host->h_name);
448 if (host1 == NULL)
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800449 goto bail;
Andy Greenf92def72011-03-09 15:02:20 +0000450 p = (unsigned char *)host1;
Andy Green07034092011-02-13 08:37:12 +0000451 n = 0;
452 while (p != NULL) {
Andy Greenf92def72011-03-09 15:02:20 +0000453 p = (unsigned char *)host1->h_addr_list[n++];
Andy Green07034092011-02-13 08:37:12 +0000454 if (p == NULL)
455 continue;
Peter Hinzbb45a902011-03-10 18:14:01 +0000456 if ((host1->h_addrtype != AF_INET)
457#ifdef AF_LOCAL
458 && (host1->h_addrtype != AF_LOCAL)
459#endif
460 )
Andy Green07034092011-02-13 08:37:12 +0000461 continue;
462
Andy Green7627af52011-03-09 15:13:52 +0000463 if (host1->h_addrtype == AF_INET)
464 sprintf(ip, "%u.%u.%u.%u", p[0], p[1], p[2], p[3]);
Peter Hinzbb45a902011-03-10 18:14:01 +0000465#ifdef AF_LOCAL
Andy Green7627af52011-03-09 15:13:52 +0000466 else {
467 un = (struct sockaddr_un *)p;
Andy Green6ee372f2012-04-09 15:09:01 +0800468 strncpy(ip, un->sun_path, sizeof(ip) - 1);
Andy Green7627af52011-03-09 15:13:52 +0000469 ip[sizeof(ip) - 1] = '\0';
470 }
Peter Hinzbb45a902011-03-10 18:14:01 +0000471#endif
Andy Green07034092011-02-13 08:37:12 +0000472 p = NULL;
473 strncpy(rip, ip, rip_len);
474 rip[rip_len - 1] = '\0';
475 }
Andy Greenaaf0b9f2013-01-30 08:12:20 +0800476
477 ret = 0;
478bail:
479 lws_latency(context, wsi, "libwebsockets_get_peer_addresses", ret, 1);
Andy Green07034092011-02-13 08:37:12 +0000480}
Andy Green9f990342011-02-12 11:57:45 +0000481
Peter Hinz56885f32011-03-02 22:03:47 +0000482int libwebsockets_get_random(struct libwebsocket_context *context,
483 void *buf, int len)
484{
485 int n;
Aaron Zinman4550f1d2013-01-10 12:35:18 +0800486 char *p = (char *)buf;
Peter Hinz56885f32011-03-02 22:03:47 +0000487
488#ifdef WIN32
489 for (n = 0; n < len; n++)
490 p[n] = (unsigned char)rand();
491#else
492 n = read(context->fd_random, p, len);
493#endif
494
495 return n;
496}
497
Andy Green95a7b5d2011-03-06 10:29:39 +0000498int lws_send_pipe_choked(struct libwebsocket *wsi)
499{
500 struct pollfd fds;
501
502 fds.fd = wsi->sock;
503 fds.events = POLLOUT;
504 fds.revents = 0;
505
506 if (poll(&fds, 1, 0) != 1)
507 return 1;
508
509 if ((fds.revents & POLLOUT) == 0)
510 return 1;
511
512 /* okay to send another packet without blocking */
513
514 return 0;
515}
516
Andy Greena41314f2011-05-23 10:00:03 +0100517int
Andy Green3b84c002011-03-06 13:14:42 +0000518lws_handle_POLLOUT_event(struct libwebsocket_context *context,
519 struct libwebsocket *wsi, struct pollfd *pollfd)
520{
Andy Green3b84c002011-03-06 13:14:42 +0000521 int n;
Andy Green6f520a52013-01-29 17:57:39 +0800522
Andy Green3182ece2013-01-20 17:08:31 +0800523#ifndef LWS_NO_EXTENSIONS
524 struct lws_tokens eff_buf;
Andy Green3b84c002011-03-06 13:14:42 +0000525 int ret;
526 int m;
Andy Greena41314f2011-05-23 10:00:03 +0100527 int handled = 0;
Andy Green3b84c002011-03-06 13:14:42 +0000528
Andy Greena41314f2011-05-23 10:00:03 +0100529 for (n = 0; n < wsi->count_active_extensions; n++) {
530 if (!wsi->active_extensions[n]->callback)
531 continue;
532
533 m = wsi->active_extensions[n]->callback(context,
534 wsi->active_extensions[n], wsi,
535 LWS_EXT_CALLBACK_IS_WRITEABLE,
536 wsi->active_extensions_user[n], NULL, 0);
537 if (m > handled)
538 handled = m;
539 }
540
541 if (handled == 1)
542 goto notify_action;
543
544 if (!wsi->extension_data_pending || handled == 2)
Andy Green3b84c002011-03-06 13:14:42 +0000545 goto user_service;
546
547 /*
548 * check in on the active extensions, see if they
549 * had pending stuff to spill... they need to get the
550 * first look-in otherwise sequence will be disordered
551 *
552 * NULL, zero-length eff_buf means just spill pending
553 */
554
555 ret = 1;
556 while (ret == 1) {
557
558 /* default to nobody has more to spill */
559
560 ret = 0;
561 eff_buf.token = NULL;
562 eff_buf.token_len = 0;
563
564 /* give every extension a chance to spill */
565
566 for (n = 0; n < wsi->count_active_extensions; n++) {
567 m = wsi->active_extensions[n]->callback(
Andy Green46c2ea02011-03-22 09:04:01 +0000568 wsi->protocol->owning_server,
569 wsi->active_extensions[n], wsi,
Andy Green3b84c002011-03-06 13:14:42 +0000570 LWS_EXT_CALLBACK_PACKET_TX_PRESEND,
571 wsi->active_extensions_user[n], &eff_buf, 0);
572 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800573 lwsl_err("ext reports fatal error\n");
Andy Green3b84c002011-03-06 13:14:42 +0000574 return -1;
575 }
576 if (m)
577 /*
578 * at least one extension told us he has more
579 * to spill, so we will go around again after
580 */
581 ret = 1;
582 }
583
584 /* assuming they gave us something to send, send it */
585
586 if (eff_buf.token_len) {
587 if (lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
588 eff_buf.token_len))
589 return -1;
590 } else
591 continue;
592
593 /* no extension has more to spill */
594
595 if (!ret)
596 continue;
597
598 /*
599 * There's more to spill from an extension, but we just sent
600 * something... did that leave the pipe choked?
601 */
602
603 if (!lws_send_pipe_choked(wsi))
604 /* no we could add more */
605 continue;
606
Andy Green43db0452013-01-10 19:50:35 +0800607 lwsl_info("choked in POLLOUT service\n");
Andy Green3b84c002011-03-06 13:14:42 +0000608
609 /*
610 * Yes, he's choked. Leave the POLLOUT masked on so we will
611 * come back here when he is unchoked. Don't call the user
612 * callback to enforce ordering of spilling, he'll get called
613 * when we come back here and there's nothing more to spill.
614 */
615
616 return 0;
617 }
618
619 wsi->extension_data_pending = 0;
620
621user_service:
Andy Green3182ece2013-01-20 17:08:31 +0800622#endif
Andy Green3b84c002011-03-06 13:14:42 +0000623 /* one shot */
624
Andy Greena41314f2011-05-23 10:00:03 +0100625 if (pollfd) {
626 pollfd->events &= ~POLLOUT;
Andy Green3b84c002011-03-06 13:14:42 +0000627
Andy Greena41314f2011-05-23 10:00:03 +0100628 /* external POLL support via protocol 0 */
629 context->protocols[0].callback(context, wsi,
630 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
631 (void *)(long)wsi->sock, NULL, POLLOUT);
632 }
Andy Green3182ece2013-01-20 17:08:31 +0800633#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +0100634notify_action:
Andy Green3182ece2013-01-20 17:08:31 +0800635#endif
Andy Green3b84c002011-03-06 13:14:42 +0000636
Andy Green9e4c2b62011-03-07 20:47:39 +0000637 if (wsi->mode == LWS_CONNMODE_WS_CLIENT)
638 n = LWS_CALLBACK_CLIENT_WRITEABLE;
639 else
640 n = LWS_CALLBACK_SERVER_WRITEABLE;
641
Andy Green706961d2013-01-17 16:50:35 +0800642 user_callback_handle_rxflow(wsi->protocol->callback, context,
643 wsi, (enum libwebsocket_callback_reasons) n, wsi->user_space, NULL, 0);
Andy Green3b84c002011-03-06 13:14:42 +0000644
645 return 0;
646}
647
648
649
Andy Greena41314f2011-05-23 10:00:03 +0100650void
651libwebsocket_service_timeout_check(struct libwebsocket_context *context,
652 struct libwebsocket *wsi, unsigned int sec)
653{
Andy Green3182ece2013-01-20 17:08:31 +0800654#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +0100655 int n;
656
657 /*
658 * if extensions want in on it (eg, we are a mux parent)
659 * give them a chance to service child timeouts
660 */
661
662 for (n = 0; n < wsi->count_active_extensions; n++)
663 wsi->active_extensions[n]->callback(
664 context, wsi->active_extensions[n],
665 wsi, LWS_EXT_CALLBACK_1HZ,
666 wsi->active_extensions_user[n], NULL, sec);
667
Andy Green3182ece2013-01-20 17:08:31 +0800668#endif
Andy Greena41314f2011-05-23 10:00:03 +0100669 if (!wsi->pending_timeout)
670 return;
Andy Green6ee372f2012-04-09 15:09:01 +0800671
Andy Greena41314f2011-05-23 10:00:03 +0100672 /*
673 * if we went beyond the allowed time, kill the
674 * connection
675 */
676
677 if (sec > wsi->pending_timeout_limit) {
Andy Green43db0452013-01-10 19:50:35 +0800678 lwsl_info("TIMEDOUT WAITING\n");
Andy Greena41314f2011-05-23 10:00:03 +0100679 libwebsocket_close_and_free_session(context,
680 wsi, LWS_CLOSE_STATUS_NOSTATUS);
681 }
682}
683
Andy Green9f990342011-02-12 11:57:45 +0000684/**
685 * libwebsocket_service_fd() - Service polled socket with something waiting
Peter Hinz56885f32011-03-02 22:03:47 +0000686 * @context: Websocket context
Andy Green9f990342011-02-12 11:57:45 +0000687 * @pollfd: The pollfd entry describing the socket fd and which events
Andy Green6ee372f2012-04-09 15:09:01 +0800688 * happened.
Andy Green9f990342011-02-12 11:57:45 +0000689 *
Andy Green75006172013-01-22 12:32:11 +0800690 * This function takes a pollfd that has POLLIN or POLLOUT activity and
691 * services it according to the state of the associated struct libwebsocket.
692 *
693 * The one call deals with all "service" that might happen on a socket
694 * including listen accepts, http files as well as websocket protocol.
Andy Green9f990342011-02-12 11:57:45 +0000695 */
696
697int
Peter Hinz56885f32011-03-02 22:03:47 +0000698libwebsocket_service_fd(struct libwebsocket_context *context,
Andy Green0d338332011-02-12 11:57:43 +0000699 struct pollfd *pollfd)
Andy Greenb45993c2010-12-18 15:13:50 +0000700{
Andy Greena1ce6be2013-01-18 11:43:21 +0800701 struct libwebsocket *wsi;
Andy Greenb45993c2010-12-18 15:13:50 +0000702 int n;
Andy Green0d338332011-02-12 11:57:43 +0000703 int m;
Andy Greena71eafc2011-02-14 17:59:43 +0000704 struct timeval tv;
Andy Green6f520a52013-01-29 17:57:39 +0800705 unsigned char buf[LWS_SEND_BUFFER_PRE_PADDING + 1 +
706 MAX_USER_RX_BUFFER + LWS_SEND_BUFFER_POST_PADDING];
Jack Mitchelldaed4fb2013-01-30 18:53:36 +0800707#ifdef LWS_OPENSSL_SUPPORT
Andy Green467c7ef2013-01-30 12:28:34 +0800708 char ssl_err_buf[512];
Jack Mitchelldaed4fb2013-01-30 18:53:36 +0800709#endif
Andy Green6f520a52013-01-29 17:57:39 +0800710
Andy Green3182ece2013-01-20 17:08:31 +0800711#ifndef LWS_NO_EXTENSIONS
Andy Green2366b1c2011-03-06 13:15:31 +0000712 int more = 1;
Andy Green3182ece2013-01-20 17:08:31 +0800713#endif
Andy Green98a717c2011-03-06 13:14:15 +0000714 struct lws_tokens eff_buf;
Andy Green03674a62013-01-16 11:47:40 +0800715#ifndef LWS_NO_CLIENT
Andy Green76f61e72013-01-16 11:53:05 +0800716 extern int lws_client_socket_service(struct libwebsocket_context *context, struct libwebsocket *wsi, struct pollfd *pollfd);
Andy Green03674a62013-01-16 11:47:40 +0800717#endif
Andy Greena1ce6be2013-01-18 11:43:21 +0800718#ifndef LWS_NO_SERVER
719 extern int lws_server_socket_service(struct libwebsocket_context *context, struct libwebsocket *wsi, struct pollfd *pollfd);
720#endif
Andy Greena71eafc2011-02-14 17:59:43 +0000721 /*
722 * you can call us with pollfd = NULL to just allow the once-per-second
723 * global timeout checks; if less than a second since the last check
724 * it returns immediately then.
725 */
726
727 gettimeofday(&tv, NULL);
728
Peter Hinz56885f32011-03-02 22:03:47 +0000729 if (context->last_timeout_check_s != tv.tv_sec) {
730 context->last_timeout_check_s = tv.tv_sec;
Andy Greena71eafc2011-02-14 17:59:43 +0000731
Andy Green24cba922013-01-19 13:56:10 +0800732 /* if our parent went down, don't linger around */
733 if (context->started_with_parent && kill(context->started_with_parent, 0) < 0)
734 kill(getpid(), SIGTERM);
735
Andy Greena71eafc2011-02-14 17:59:43 +0000736 /* global timeout check once per second */
737
Peter Hinz56885f32011-03-02 22:03:47 +0000738 for (n = 0; n < context->fds_count; n++) {
Andy Greendfb23042013-01-17 12:26:48 +0800739 struct libwebsocket *new_wsi = context->lws_lookup[context->fds[n].fd];
740 if (!new_wsi)
741 continue;
742 libwebsocket_service_timeout_check(context,
743 new_wsi, tv.tv_sec);
Andy Greena71eafc2011-02-14 17:59:43 +0000744 }
745 }
746
747 /* just here for timeout management? */
748
749 if (pollfd == NULL)
750 return 0;
751
752 /* no, here to service a socket descriptor */
753
Andy Green65b0e912013-01-16 07:59:47 +0800754 /*
755 * deal with listen service piggybacking
756 * every listen_service_modulo services of other fds, we
757 * sneak one in to service the listen socket if there's anything waiting
758 *
759 * To handle connection storms, as found in ab, if we previously saw a
760 * pending connection here, it causes us to check again next time.
761 */
762
763 if (context->listen_service_fd && pollfd->fd != context->listen_service_fd) {
764 context->listen_service_count++;
765 if (context->listen_service_extraseen ||
766 context->listen_service_count == context->listen_service_modulo) {
767 context->listen_service_count = 0;
768 m = 1;
769 if (context->listen_service_extraseen > 5)
770 m = 2;
771 while (m--) {
772 /* even with extpoll, we prepared this internal fds for listen */
773 n = poll(&context->fds[0], 1, 0);
774 if (n > 0) { /* there's a connection waiting for us */
775 libwebsocket_service_fd(context, &context->fds[0]);
776 context->listen_service_extraseen++;
777 } else {
778 if (context->listen_service_extraseen)
779 context->listen_service_extraseen--;
780 break;
781 }
782 }
783 }
784
785 }
786
787 /* okay, what we came here to do... */
788
Andy Greendfb23042013-01-17 12:26:48 +0800789 wsi = context->lws_lookup[pollfd->fd];
Andy Greend280b6e2013-01-15 13:40:23 +0800790 if (wsi == NULL) {
Andy Greendfb23042013-01-17 12:26:48 +0800791 if (pollfd->fd > 11)
792 lwsl_err("unexpected NULL wsi fd=%d fds_count=%d\n", pollfd->fd, context->fds_count);
Andy Greenfa3f4052012-10-07 20:40:35 +0800793 return 0;
Andy Greend280b6e2013-01-15 13:40:23 +0800794 }
Andy Green8f037e42010-12-19 22:13:26 +0000795
Andy Green0d338332011-02-12 11:57:43 +0000796 switch (wsi->mode) {
Andy Greend280b6e2013-01-15 13:40:23 +0800797
Andy Greena1ce6be2013-01-18 11:43:21 +0800798#ifndef LWS_NO_SERVER
Andy Greend280b6e2013-01-15 13:40:23 +0800799 case LWS_CONNMODE_HTTP_SERVING:
Andy Green0d338332011-02-12 11:57:43 +0000800 case LWS_CONNMODE_SERVER_LISTENER:
Andy Greene2160712013-01-28 12:19:10 +0800801 case LWS_CONNMODE_SSL_ACK_PENDING:
Andy Greena1ce6be2013-01-18 11:43:21 +0800802 return lws_server_socket_service(context, wsi, pollfd);
803#endif
Andy Greenbe93fef2011-02-14 20:25:43 +0000804
Andy Green0d338332011-02-12 11:57:43 +0000805 case LWS_CONNMODE_WS_SERVING:
806 case LWS_CONNMODE_WS_CLIENT:
807
808 /* handle session socket closed */
809
810 if (pollfd->revents & (POLLERR | POLLHUP)) {
811
Andy Green43db0452013-01-10 19:50:35 +0800812 lwsl_debug("Session Socket %p (fd=%d) dead\n",
Andy Green0d338332011-02-12 11:57:43 +0000813 (void *)wsi, pollfd->fd);
814
Peter Hinz56885f32011-03-02 22:03:47 +0000815 libwebsocket_close_and_free_session(context, wsi,
Andy Green687b0182011-02-26 11:04:01 +0000816 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green040d2ef2013-01-16 13:40:43 +0800817 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +0000818 }
819
Andy Green0d338332011-02-12 11:57:43 +0000820 /* the guy requested a callback when it was OK to write */
821
Andy Greenda527df2011-03-07 07:08:12 +0000822 if ((pollfd->revents & POLLOUT) &&
823 wsi->state == WSI_STATE_ESTABLISHED)
824 if (lws_handle_POLLOUT_event(context, wsi,
825 pollfd) < 0) {
826 libwebsocket_close_and_free_session(
827 context, wsi, LWS_CLOSE_STATUS_NORMAL);
Andy Green040d2ef2013-01-16 13:40:43 +0800828 return 0;
Andy Green3b84c002011-03-06 13:14:42 +0000829 }
Andy Green0d338332011-02-12 11:57:43 +0000830
Andy Green0d338332011-02-12 11:57:43 +0000831
832 /* any incoming data ready? */
833
834 if (!(pollfd->revents & POLLIN))
835 break;
836
Andy Greenb45993c2010-12-18 15:13:50 +0000837#ifdef LWS_OPENSSL_SUPPORT
David Galeano7ffbe1b2013-01-10 10:35:32 +0800838read_pending:
Andy Green467c7ef2013-01-30 12:28:34 +0800839 if (wsi->ssl) {
Andy Green98a717c2011-03-06 13:14:15 +0000840 eff_buf.token_len = SSL_read(wsi->ssl, buf, sizeof buf);
Andy Green467c7ef2013-01-30 12:28:34 +0800841 if (!eff_buf.token_len) {
842 n = SSL_get_error(wsi->ssl, eff_buf.token_len);
843 lwsl_err("SSL_read returned 0 with reason %s\n", ERR_error_string(n, ssl_err_buf));
844 }
845 } else
Andy Greenb45993c2010-12-18 15:13:50 +0000846#endif
Andy Green98a717c2011-03-06 13:14:15 +0000847 eff_buf.token_len =
Andy Green72c34322011-04-16 10:46:21 +0100848 recv(pollfd->fd, buf, sizeof buf, 0);
Andy Greenb45993c2010-12-18 15:13:50 +0000849
Andy Green98a717c2011-03-06 13:14:15 +0000850 if (eff_buf.token_len < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800851 lwsl_debug("Socket read returned %d\n",
Andy Green98a717c2011-03-06 13:14:15 +0000852 eff_buf.token_len);
Alon Levydc93b7f2012-10-19 11:21:57 +0200853 if (errno != EINTR && errno != EAGAIN)
Andy Green6ee372f2012-04-09 15:09:01 +0800854 libwebsocket_close_and_free_session(context,
855 wsi, LWS_CLOSE_STATUS_NOSTATUS);
Andy Green040d2ef2013-01-16 13:40:43 +0800856 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +0000857 }
Andy Green98a717c2011-03-06 13:14:15 +0000858 if (!eff_buf.token_len) {
Andy Green467c7ef2013-01-30 12:28:34 +0800859 lwsl_info("closing connection due to zero length read\n");
Peter Hinz56885f32011-03-02 22:03:47 +0000860 libwebsocket_close_and_free_session(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +0800861 LWS_CLOSE_STATUS_NOSTATUS);
Andy Greenfa3f4052012-10-07 20:40:35 +0800862 return 0;
Andy Greenb45993c2010-12-18 15:13:50 +0000863 }
864
Andy Green98a717c2011-03-06 13:14:15 +0000865 /*
866 * give any active extensions a chance to munge the buffer
867 * before parse. We pass in a pointer to an lws_tokens struct
868 * prepared with the default buffer and content length that's in
869 * there. Rather than rewrite the default buffer, extensions
870 * that expect to grow the buffer can adapt .token to
871 * point to their own per-connection buffer in the extension
872 * user allocation. By default with no extensions or no
873 * extension callback handling, just the normal input buffer is
874 * used then so it is efficient.
875 */
Andy Greenb45993c2010-12-18 15:13:50 +0000876
Andy Green98a717c2011-03-06 13:14:15 +0000877 eff_buf.token = (char *)buf;
Andy Green3182ece2013-01-20 17:08:31 +0800878#ifndef LWS_NO_EXTENSIONS
Andy Green98a717c2011-03-06 13:14:15 +0000879 more = 1;
880 while (more) {
Andy Green0d338332011-02-12 11:57:43 +0000881
Andy Green98a717c2011-03-06 13:14:15 +0000882 more = 0;
883
884 for (n = 0; n < wsi->count_active_extensions; n++) {
Andy Green46c2ea02011-03-22 09:04:01 +0000885 m = wsi->active_extensions[n]->callback(context,
886 wsi->active_extensions[n], wsi,
Andy Green98a717c2011-03-06 13:14:15 +0000887 LWS_EXT_CALLBACK_PACKET_RX_PREPARSE,
Andy Green46c2ea02011-03-22 09:04:01 +0000888 wsi->active_extensions_user[n],
889 &eff_buf, 0);
Andy Green98a717c2011-03-06 13:14:15 +0000890 if (m < 0) {
Andy Green43db0452013-01-10 19:50:35 +0800891 lwsl_ext(
Andy Green6ee372f2012-04-09 15:09:01 +0800892 "Extension reports fatal error\n");
893 libwebsocket_close_and_free_session(
894 context, wsi,
895 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green040d2ef2013-01-16 13:40:43 +0800896 return 0;
Andy Green98a717c2011-03-06 13:14:15 +0000897 }
898 if (m)
899 more = 1;
900 }
Andy Green3182ece2013-01-20 17:08:31 +0800901#endif
Andy Green98a717c2011-03-06 13:14:15 +0000902 /* service incoming data */
903
904 if (eff_buf.token_len) {
905 n = libwebsocket_read(context, wsi,
Andy Green6ee372f2012-04-09 15:09:01 +0800906 (unsigned char *)eff_buf.token,
907 eff_buf.token_len);
Andy Green98a717c2011-03-06 13:14:15 +0000908 if (n < 0)
909 /* we closed wsi */
Andy Green040d2ef2013-01-16 13:40:43 +0800910 return 0;
Andy Green98a717c2011-03-06 13:14:15 +0000911 }
Andy Green3182ece2013-01-20 17:08:31 +0800912#ifndef LWS_NO_EXTENSIONS
Andy Green98a717c2011-03-06 13:14:15 +0000913 eff_buf.token = NULL;
914 eff_buf.token_len = 0;
915 }
Andy Green3182ece2013-01-20 17:08:31 +0800916#endif
David Galeano7ffbe1b2013-01-10 10:35:32 +0800917
918#ifdef LWS_OPENSSL_SUPPORT
919 if (wsi->ssl && SSL_pending(wsi->ssl))
920 goto read_pending;
921#endif
Andy Green98a717c2011-03-06 13:14:15 +0000922 break;
Andy Green76f61e72013-01-16 11:53:05 +0800923
924 default:
Andy Green03674a62013-01-16 11:47:40 +0800925#ifdef LWS_NO_CLIENT
926 break;
927#else
Andy Green76f61e72013-01-16 11:53:05 +0800928 return lws_client_socket_service(context, wsi, pollfd);
Andy Green03674a62013-01-16 11:47:40 +0800929#endif
Andy Greenb45993c2010-12-18 15:13:50 +0000930 }
931
932 return 0;
933}
934
Andy Green0d338332011-02-12 11:57:43 +0000935
Andy Green6964bb52011-01-23 16:50:33 +0000936/**
937 * libwebsocket_context_destroy() - Destroy the websocket context
Peter Hinz56885f32011-03-02 22:03:47 +0000938 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +0000939 *
940 * This function closes any active connections and then frees the
941 * context. After calling this, any further use of the context is
942 * undefined.
943 */
944void
Peter Hinz56885f32011-03-02 22:03:47 +0000945libwebsocket_context_destroy(struct libwebsocket_context *context)
Andy Green6964bb52011-01-23 16:50:33 +0000946{
Andy Green3182ece2013-01-20 17:08:31 +0800947#ifndef LWS_NO_EXTENSIONS
Andy Green0d338332011-02-12 11:57:43 +0000948 int n;
949 int m;
Andy Greena41314f2011-05-23 10:00:03 +0100950 struct libwebsocket_extension *ext;
Andy Green6964bb52011-01-23 16:50:33 +0000951
Andy Greend636e352013-01-29 12:36:17 +0800952#ifdef LWS_LATENCY
953 if (context->worst_latency_info[0])
954 lwsl_notice("Worst latency: %s\n", context->worst_latency_info);
955#endif
956
Andy Greendfb23042013-01-17 12:26:48 +0800957 for (n = 0; n < context->fds_count; n++) {
958 struct libwebsocket *wsi = context->lws_lookup[context->fds[n].fd];
959 libwebsocket_close_and_free_session(context,
960 wsi, LWS_CLOSE_STATUS_GOINGAWAY);
961 }
Andy Green6964bb52011-01-23 16:50:33 +0000962
Andy Greena41314f2011-05-23 10:00:03 +0100963 /*
964 * give all extensions a chance to clean up any per-context
965 * allocations they might have made
966 */
967
968 ext = context->extensions;
969 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_DESTRUCT;
970 if (context->listen_port)
971 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_DESTRUCT;
Paulo Roberto Urio1f680ab2012-06-04 08:40:28 +0800972 while (ext && ext->callback) {
Aaron Zinman4550f1d2013-01-10 12:35:18 +0800973 ext->callback(context, ext, NULL, (enum libwebsocket_extension_callback_reasons)m, NULL, NULL, 0);
Andy Greena41314f2011-05-23 10:00:03 +0100974 ext++;
975 }
Andy Green3182ece2013-01-20 17:08:31 +0800976#endif
Andy Greena41314f2011-05-23 10:00:03 +0100977
Peter Hinz56885f32011-03-02 22:03:47 +0000978#ifdef WIN32
979#else
980 close(context->fd_random);
Andy Green6964bb52011-01-23 16:50:33 +0000981#endif
982
Peter Hinz56885f32011-03-02 22:03:47 +0000983#ifdef LWS_OPENSSL_SUPPORT
984 if (context->ssl_ctx)
985 SSL_CTX_free(context->ssl_ctx);
986 if (context->ssl_client_ctx)
987 SSL_CTX_free(context->ssl_client_ctx);
988#endif
989
990 free(context);
991
992#ifdef WIN32
993 WSACleanup();
994#endif
Andy Green6964bb52011-01-23 16:50:33 +0000995}
996
Andy Greend88146d2013-01-22 12:40:35 +0800997/**
998 * libwebsocket_context_user() - get the user data associated with the whole context
999 * @context: Websocket context
1000 *
1001 * This returns the optional user allocation that can be attached to
1002 * the context the sockets live in at context_create time. It's a way
1003 * to let all sockets serviced in the same context share data without
1004 * using globals statics in the user code.
1005 */
1006
1007
Alon Levy0291eb32012-10-19 11:21:56 +02001008LWS_EXTERN void *
1009libwebsocket_context_user(struct libwebsocket_context *context)
1010{
1011 return context->user_space;
1012}
1013
Andy Green6964bb52011-01-23 16:50:33 +00001014/**
1015 * libwebsocket_service() - Service any pending websocket activity
Peter Hinz56885f32011-03-02 22:03:47 +00001016 * @context: Websocket context
Andy Green6964bb52011-01-23 16:50:33 +00001017 * @timeout_ms: Timeout for poll; 0 means return immediately if nothing needed
1018 * service otherwise block and service immediately, returning
1019 * after the timeout if nothing needed service.
1020 *
1021 * This function deals with any pending websocket traffic, for three
1022 * kinds of event. It handles these events on both server and client
1023 * types of connection the same.
1024 *
1025 * 1) Accept new connections to our context's server
1026 *
Andy Green6f520a52013-01-29 17:57:39 +08001027 * 2) Call the receive callback for incoming frame data received by
Andy Green6964bb52011-01-23 16:50:33 +00001028 * server or client connections.
1029 *
1030 * You need to call this service function periodically to all the above
1031 * functions to happen; if your application is single-threaded you can
1032 * just call it in your main event loop.
1033 *
1034 * Alternatively you can fork a new process that asynchronously handles
1035 * calling this service in a loop. In that case you are happy if this
1036 * call blocks your thread until it needs to take care of something and
1037 * would call it with a large nonzero timeout. Your loop then takes no
1038 * CPU while there is nothing happening.
1039 *
1040 * If you are calling it in a single-threaded app, you don't want it to
1041 * wait around blocking other things in your loop from happening, so you
1042 * would call it with a timeout_ms of 0, so it returns immediately if
1043 * nothing is pending, or as soon as it services whatever was pending.
1044 */
1045
Andy Greenb45993c2010-12-18 15:13:50 +00001046
Andy Greene92cd172011-01-19 13:11:55 +00001047int
Peter Hinz56885f32011-03-02 22:03:47 +00001048libwebsocket_service(struct libwebsocket_context *context, int timeout_ms)
Andy Greene92cd172011-01-19 13:11:55 +00001049{
1050 int n;
Andy Greene92cd172011-01-19 13:11:55 +00001051
1052 /* stay dead once we are dead */
1053
Peter Hinz56885f32011-03-02 22:03:47 +00001054 if (context == NULL)
Andy Greene92cd172011-01-19 13:11:55 +00001055 return 1;
1056
Andy Green0d338332011-02-12 11:57:43 +00001057 /* wait for something to need service */
Andy Green4739e5c2011-01-22 12:51:57 +00001058
Peter Hinz56885f32011-03-02 22:03:47 +00001059 n = poll(context->fds, context->fds_count, timeout_ms);
Andy Green3221f922011-02-12 13:14:11 +00001060 if (n == 0) /* poll timeout */
1061 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001062
Andy Greendfb23042013-01-17 12:26:48 +08001063 if (n < 0)
Andy Green3928f612012-07-20 12:58:38 +08001064 return -1;
Andy Greene92cd172011-01-19 13:11:55 +00001065
Andy Greendfb23042013-01-17 12:26:48 +08001066 /* any socket with events to service? */
Andy Greene92cd172011-01-19 13:11:55 +00001067
Peter Hinz56885f32011-03-02 22:03:47 +00001068 for (n = 0; n < context->fds_count; n++)
1069 if (context->fds[n].revents)
Andy Green3928f612012-07-20 12:58:38 +08001070 if (libwebsocket_service_fd(context,
1071 &context->fds[n]) < 0)
1072 return -1;
Andy Greene92cd172011-01-19 13:11:55 +00001073 return 0;
Andy Greene92cd172011-01-19 13:11:55 +00001074}
1075
Andy Green3182ece2013-01-20 17:08:31 +08001076#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +01001077int
1078lws_any_extension_handled(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001079 struct libwebsocket *wsi,
1080 enum libwebsocket_extension_callback_reasons r,
Andy Greena41314f2011-05-23 10:00:03 +01001081 void *v, size_t len)
1082{
1083 int n;
1084 int handled = 0;
1085
1086 /* maybe an extension will take care of it for us */
1087
1088 for (n = 0; n < wsi->count_active_extensions && !handled; n++) {
1089 if (!wsi->active_extensions[n]->callback)
1090 continue;
1091
1092 handled |= wsi->active_extensions[n]->callback(context,
1093 wsi->active_extensions[n], wsi,
1094 r, wsi->active_extensions_user[n], v, len);
1095 }
1096
1097 return handled;
1098}
1099
1100
1101void *
1102lws_get_extension_user_matching_ext(struct libwebsocket *wsi,
Andy Green6ee372f2012-04-09 15:09:01 +08001103 struct libwebsocket_extension *ext)
Andy Greena41314f2011-05-23 10:00:03 +01001104{
1105 int n = 0;
1106
Andy Green68b45042011-05-25 21:41:57 +01001107 if (wsi == NULL)
1108 return NULL;
1109
Andy Greena41314f2011-05-23 10:00:03 +01001110 while (n < wsi->count_active_extensions) {
1111 if (wsi->active_extensions[n] != ext) {
1112 n++;
1113 continue;
1114 }
1115 return wsi->active_extensions_user[n];
1116 }
1117
1118 return NULL;
1119}
Andy Green3182ece2013-01-20 17:08:31 +08001120#endif
Andy Greena41314f2011-05-23 10:00:03 +01001121
Andy Green90c7cbc2011-01-27 06:26:52 +00001122/**
1123 * libwebsocket_callback_on_writable() - Request a callback when this socket
1124 * becomes able to be written to without
1125 * blocking
Andy Green32375b72011-02-19 08:32:53 +00001126 *
Peter Hinz56885f32011-03-02 22:03:47 +00001127 * @context: libwebsockets context
Andy Green90c7cbc2011-01-27 06:26:52 +00001128 * @wsi: Websocket connection instance to get callback for
1129 */
1130
1131int
Peter Hinz56885f32011-03-02 22:03:47 +00001132libwebsocket_callback_on_writable(struct libwebsocket_context *context,
Andy Green6ee372f2012-04-09 15:09:01 +08001133 struct libwebsocket *wsi)
Andy Green90c7cbc2011-01-27 06:26:52 +00001134{
Andy Green3182ece2013-01-20 17:08:31 +08001135#ifndef LWS_NO_EXTENSIONS
Andy Green90c7cbc2011-01-27 06:26:52 +00001136 int n;
Andy Greena41314f2011-05-23 10:00:03 +01001137 int handled = 0;
1138
1139 /* maybe an extension will take care of it for us */
1140
1141 for (n = 0; n < wsi->count_active_extensions; n++) {
1142 if (!wsi->active_extensions[n]->callback)
1143 continue;
1144
1145 handled |= wsi->active_extensions[n]->callback(context,
1146 wsi->active_extensions[n], wsi,
1147 LWS_EXT_CALLBACK_REQUEST_ON_WRITEABLE,
1148 wsi->active_extensions_user[n], NULL, 0);
1149 }
1150
1151 if (handled)
1152 return 1;
Andy Green3182ece2013-01-20 17:08:31 +08001153#endif
Andy Greendfb23042013-01-17 12:26:48 +08001154 if (wsi->position_in_fds_table < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001155 lwsl_err("libwebsocket_callback_on_writable: "
Andy Green6ee372f2012-04-09 15:09:01 +08001156 "failed to find socket %d\n", wsi->sock);
Andy Greendfb23042013-01-17 12:26:48 +08001157 return -1;
1158 }
1159
1160 context->fds[wsi->position_in_fds_table].events |= POLLOUT;
Andy Greena41314f2011-05-23 10:00:03 +01001161
Andy Green3221f922011-02-12 13:14:11 +00001162 /* external POLL support via protocol 0 */
Peter Hinz56885f32011-03-02 22:03:47 +00001163 context->protocols[0].callback(context, wsi,
Andy Green3221f922011-02-12 13:14:11 +00001164 LWS_CALLBACK_SET_MODE_POLL_FD,
1165 (void *)(long)wsi->sock, NULL, POLLOUT);
1166
Andy Green90c7cbc2011-01-27 06:26:52 +00001167 return 1;
1168}
1169
1170/**
1171 * libwebsocket_callback_on_writable_all_protocol() - Request a callback for
1172 * all connections using the given protocol when it
1173 * becomes possible to write to each socket without
1174 * blocking in turn.
1175 *
1176 * @protocol: Protocol whose connections will get callbacks
1177 */
1178
1179int
1180libwebsocket_callback_on_writable_all_protocol(
1181 const struct libwebsocket_protocols *protocol)
1182{
Peter Hinz56885f32011-03-02 22:03:47 +00001183 struct libwebsocket_context *context = protocol->owning_server;
Andy Green90c7cbc2011-01-27 06:26:52 +00001184 int n;
Andy Green0d338332011-02-12 11:57:43 +00001185 struct libwebsocket *wsi;
Andy Green90c7cbc2011-01-27 06:26:52 +00001186
Andy Greendfb23042013-01-17 12:26:48 +08001187 for (n = 0; n < context->fds_count; n++) {
1188 wsi = context->lws_lookup[context->fds[n].fd];
1189 if (!wsi)
1190 continue;
1191 if (wsi->protocol == protocol)
1192 libwebsocket_callback_on_writable(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001193 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001194
1195 return 0;
1196}
1197
Andy Greenbe93fef2011-02-14 20:25:43 +00001198/**
1199 * libwebsocket_set_timeout() - marks the wsi as subject to a timeout
1200 *
1201 * You will not need this unless you are doing something special
1202 *
1203 * @wsi: Websocket connection instance
1204 * @reason: timeout reason
1205 * @secs: how many seconds
1206 */
1207
1208void
1209libwebsocket_set_timeout(struct libwebsocket *wsi,
1210 enum pending_timeout reason, int secs)
1211{
1212 struct timeval tv;
1213
1214 gettimeofday(&tv, NULL);
1215
1216 wsi->pending_timeout_limit = tv.tv_sec + secs;
1217 wsi->pending_timeout = reason;
1218}
1219
Andy Greena6cbece2011-01-27 20:06:03 +00001220
1221/**
1222 * libwebsocket_get_socket_fd() - returns the socket file descriptor
1223 *
1224 * You will not need this unless you are doing something special
1225 *
1226 * @wsi: Websocket connection instance
1227 */
1228
1229int
1230libwebsocket_get_socket_fd(struct libwebsocket *wsi)
1231{
1232 return wsi->sock;
1233}
1234
Andy Greend636e352013-01-29 12:36:17 +08001235#ifdef LWS_LATENCY
1236void
1237lws_latency(struct libwebsocket_context *context, struct libwebsocket *wsi, const char *action, int ret, int completed)
1238{
1239 struct timeval tv;
1240 unsigned long u;
1241 char buf[256];
1242
1243 gettimeofday(&tv, NULL);
1244
1245 u = (tv.tv_sec * 1000000) + tv.tv_usec;
1246
1247 if (action) {
1248 if (completed) {
1249 if (wsi->action_start == wsi->latency_start)
1250 sprintf(buf, "Completion first try lat %luus: %p: ret %d: %s\n", u - wsi->latency_start, (void *)wsi, ret, action);
1251 else
1252 sprintf(buf, "Completion %luus: lat %luus: %p: ret %d: %s\n", u - wsi->action_start, u - wsi->latency_start, (void *)wsi, ret, action);
1253 wsi->action_start = 0;
1254 } else
1255 sprintf(buf, "lat %luus: %p: ret %d: %s\n", u - wsi->latency_start, (void *)wsi, ret, action);
1256 if (u - wsi->latency_start > context->worst_latency) {
1257 context->worst_latency = u - wsi->latency_start;
1258 strcpy(context->worst_latency_info, buf);
1259 }
1260 lwsl_latency("%s", buf);
1261 } else {
1262 wsi->latency_start = u;
1263 if (!wsi->action_start)
1264 wsi->action_start = u;
1265 }
1266}
1267#endif
1268
Andy Greena1ce6be2013-01-18 11:43:21 +08001269#ifdef LWS_NO_SERVER
1270int
1271_libwebsocket_rx_flow_control(struct libwebsocket *wsi)
1272{
1273 return 0;
1274}
1275#else
Andy Green706961d2013-01-17 16:50:35 +08001276int
1277_libwebsocket_rx_flow_control(struct libwebsocket *wsi)
1278{
1279 struct libwebsocket_context *context = wsi->protocol->owning_server;
1280 int n;
1281
Andy Green623a98d2013-01-21 11:04:23 +08001282 if (!(wsi->u.ws.rxflow_change_to & 2))
Andy Green706961d2013-01-17 16:50:35 +08001283 return 0;
1284
Andy Green623a98d2013-01-21 11:04:23 +08001285 wsi->u.ws.rxflow_change_to &= ~2;
Andy Green706961d2013-01-17 16:50:35 +08001286
Andy Green623a98d2013-01-21 11:04:23 +08001287 lwsl_info("rxflow: wsi %p change_to %d\n", wsi, wsi->u.ws.rxflow_change_to);
Andy Green706961d2013-01-17 16:50:35 +08001288
1289 /* if we're letting it come again, did we interrupt anything? */
Andy Green623a98d2013-01-21 11:04:23 +08001290 if ((wsi->u.ws.rxflow_change_to & 1) && wsi->u.ws.rxflow_buffer) {
Andy Green706961d2013-01-17 16:50:35 +08001291 n = libwebsocket_interpret_incoming_packet(wsi, NULL, 0);
1292 if (n < 0) {
Andy Green467c7ef2013-01-30 12:28:34 +08001293 lwsl_info("closing connection at libwebsocket_rx_flow_control:\n");
Andy Green706961d2013-01-17 16:50:35 +08001294 libwebsocket_close_and_free_session(context, wsi, LWS_CLOSE_STATUS_NOSTATUS);
1295 return -1;
1296 }
1297 if (n)
1298 /* oh he stuck again, do nothing */
1299 return 0;
1300 }
1301
Andy Green623a98d2013-01-21 11:04:23 +08001302 if (wsi->u.ws.rxflow_change_to & 1)
Andy Green706961d2013-01-17 16:50:35 +08001303 context->fds[wsi->position_in_fds_table].events |= POLLIN;
1304 else
1305 context->fds[wsi->position_in_fds_table].events &= ~POLLIN;
1306
Andy Green623a98d2013-01-21 11:04:23 +08001307 if (wsi->u.ws.rxflow_change_to & 1)
Andy Green706961d2013-01-17 16:50:35 +08001308 /* external POLL support via protocol 0 */
1309 context->protocols[0].callback(context, wsi,
1310 LWS_CALLBACK_SET_MODE_POLL_FD,
1311 (void *)(long)wsi->sock, NULL, POLLIN);
1312 else
1313 /* external POLL support via protocol 0 */
1314 context->protocols[0].callback(context, wsi,
1315 LWS_CALLBACK_CLEAR_MODE_POLL_FD,
1316 (void *)(long)wsi->sock, NULL, POLLIN);
1317
1318 return 1;
1319}
Andy Greena1ce6be2013-01-18 11:43:21 +08001320#endif
Andy Green706961d2013-01-17 16:50:35 +08001321
Andy Green90c7cbc2011-01-27 06:26:52 +00001322/**
1323 * libwebsocket_rx_flow_control() - Enable and disable socket servicing for
1324 * receieved packets.
1325 *
1326 * If the output side of a server process becomes choked, this allows flow
1327 * control for the input side.
1328 *
1329 * @wsi: Websocket connection instance to get callback for
1330 * @enable: 0 = disable read servicing for this connection, 1 = enable
1331 */
1332
1333int
1334libwebsocket_rx_flow_control(struct libwebsocket *wsi, int enable)
1335{
Andy Green623a98d2013-01-21 11:04:23 +08001336 wsi->u.ws.rxflow_change_to = 2 | !!enable;
Andy Green90c7cbc2011-01-27 06:26:52 +00001337
Andy Green706961d2013-01-17 16:50:35 +08001338 return 0;
Andy Green90c7cbc2011-01-27 06:26:52 +00001339}
1340
Andy Green706961d2013-01-17 16:50:35 +08001341
Andy Green2ac5a6f2011-01-28 10:00:18 +00001342/**
1343 * libwebsocket_canonical_hostname() - returns this host's hostname
1344 *
1345 * This is typically used by client code to fill in the host parameter
1346 * when making a client connection. You can only call it after the context
1347 * has been created.
1348 *
Peter Hinz56885f32011-03-02 22:03:47 +00001349 * @context: Websocket context
Andy Green2ac5a6f2011-01-28 10:00:18 +00001350 */
1351
1352
1353extern const char *
Peter Hinz56885f32011-03-02 22:03:47 +00001354libwebsocket_canonical_hostname(struct libwebsocket_context *context)
Andy Green2ac5a6f2011-01-28 10:00:18 +00001355{
Peter Hinz56885f32011-03-02 22:03:47 +00001356 return (const char *)context->canonical_hostname;
Andy Green2ac5a6f2011-01-28 10:00:18 +00001357}
1358
1359
Andy Green90c7cbc2011-01-27 06:26:52 +00001360static void sigpipe_handler(int x)
1361{
1362}
1363
Andy Green6901cb32011-02-21 08:06:47 +00001364#ifdef LWS_OPENSSL_SUPPORT
1365static int
1366OpenSSL_verify_callback(int preverify_ok, X509_STORE_CTX *x509_ctx)
1367{
1368
1369 SSL *ssl;
1370 int n;
Andy Green2e24da02011-03-05 16:12:04 +00001371 struct libwebsocket_context *context;
Andy Green6901cb32011-02-21 08:06:47 +00001372
1373 ssl = X509_STORE_CTX_get_ex_data(x509_ctx,
1374 SSL_get_ex_data_X509_STORE_CTX_idx());
1375
1376 /*
Andy Green2e24da02011-03-05 16:12:04 +00001377 * !!! nasty openssl requires the index to come as a library-scope
1378 * static
Andy Green6901cb32011-02-21 08:06:47 +00001379 */
Andy Green2e24da02011-03-05 16:12:04 +00001380 context = SSL_get_ex_data(ssl, openssl_websocket_private_data_index);
Andy Green6ee372f2012-04-09 15:09:01 +08001381
Peter Hinz56885f32011-03-02 22:03:47 +00001382 n = context->protocols[0].callback(NULL, NULL,
Andy Green6901cb32011-02-21 08:06:47 +00001383 LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION,
1384 x509_ctx, ssl, preverify_ok);
1385
1386 /* convert return code from 0 = OK to 1 = OK */
1387
1388 if (!n)
1389 n = 1;
1390 else
1391 n = 0;
1392
1393 return n;
1394}
1395#endif
1396
Andy Green706961d2013-01-17 16:50:35 +08001397int user_callback_handle_rxflow(callback_function callback_function,
1398 struct libwebsocket_context * context,
1399 struct libwebsocket *wsi,
1400 enum libwebsocket_callback_reasons reason, void *user,
1401 void *in, size_t len)
1402{
1403 int n;
1404
1405 n = callback_function(context, wsi, reason, user, in, len);
1406 if (n < 0)
1407 return n;
1408
1409 _libwebsocket_rx_flow_control(wsi);
1410
1411 return 0;
1412}
1413
Andy Greenb45993c2010-12-18 15:13:50 +00001414
Andy Greenab990e42010-10-31 12:42:52 +00001415/**
Andy Green4739e5c2011-01-22 12:51:57 +00001416 * libwebsocket_create_context() - Create the websocket handler
1417 * @port: Port to listen on... you can use 0 to suppress listening on
Andy Green6964bb52011-01-23 16:50:33 +00001418 * any port, that's what you want if you are not running a
1419 * websocket server at all but just using it as a client
Peter Hinz56885f32011-03-02 22:03:47 +00001420 * @interf: NULL to bind the listen socket to all interfaces, or the
Andy Green32375b72011-02-19 08:32:53 +00001421 * interface name, eg, "eth2"
Andy Green4f3943a2010-11-12 10:44:16 +00001422 * @protocols: Array of structures listing supported protocols and a protocol-
Andy Green8f037e42010-12-19 22:13:26 +00001423 * specific callback for each one. The list is ended with an
1424 * entry that has a NULL callback pointer.
Andy Green6964bb52011-01-23 16:50:33 +00001425 * It's not const because we write the owning_server member
Andy Greenc5114822011-03-06 10:29:35 +00001426 * @extensions: NULL or array of libwebsocket_extension structs listing the
Andy Green3182ece2013-01-20 17:08:31 +08001427 * extensions this context supports. If you configured with
1428 * --without-extensions, you should give NULL here.
Andy Green3faa9c72010-11-08 17:03:03 +00001429 * @ssl_cert_filepath: If libwebsockets was compiled to use ssl, and you want
Andy Green8f037e42010-12-19 22:13:26 +00001430 * to listen using SSL, set to the filepath to fetch the
1431 * server cert from, otherwise NULL for unencrypted
Andy Green3faa9c72010-11-08 17:03:03 +00001432 * @ssl_private_key_filepath: filepath to private key if wanting SSL mode,
Andy Green8f037e42010-12-19 22:13:26 +00001433 * else ignored
David Galeano2f82be82013-01-09 16:25:54 +08001434 * @ssl_ca_filepath: CA certificate filepath or NULL
Andy Green3faa9c72010-11-08 17:03:03 +00001435 * @gid: group id to change to after setting listen socket, or -1.
1436 * @uid: user id to change to after setting listen socket, or -1.
Andy Greenbfb051f2011-02-09 08:49:14 +00001437 * @options: 0, or LWS_SERVER_OPTION_DEFEAT_CLIENT_MASK
Andy Green15e31f32012-10-19 18:36:28 +08001438 * @user: optional user pointer that can be recovered via the context
1439 * pointer using libwebsocket_context_user
Andy Green05464c62010-11-12 10:44:18 +00001440 *
Andy Green8f037e42010-12-19 22:13:26 +00001441 * This function creates the listening socket and takes care
1442 * of all initialization in one step.
1443 *
Andy Greene92cd172011-01-19 13:11:55 +00001444 * After initialization, it returns a struct libwebsocket_context * that
1445 * represents this server. After calling, user code needs to take care
1446 * of calling libwebsocket_service() with the context pointer to get the
1447 * server's sockets serviced. This can be done in the same process context
1448 * or a forked process, or another thread,
Andy Green05464c62010-11-12 10:44:18 +00001449 *
Andy Green8f037e42010-12-19 22:13:26 +00001450 * The protocol callback functions are called for a handful of events
1451 * including http requests coming in, websocket connections becoming
1452 * established, and data arriving; it's also called periodically to allow
1453 * async transmission.
1454 *
1455 * HTTP requests are sent always to the FIRST protocol in @protocol, since
1456 * at that time websocket protocol has not been negotiated. Other
1457 * protocols after the first one never see any HTTP callack activity.
1458 *
1459 * The server created is a simple http server by default; part of the
1460 * websocket standard is upgrading this http connection to a websocket one.
1461 *
1462 * This allows the same server to provide files like scripts and favicon /
1463 * images or whatever over http and dynamic data over websockets all in
1464 * one place; they're all handled in the user callback.
Andy Greenab990e42010-10-31 12:42:52 +00001465 */
Andy Green4ea60062010-10-30 12:15:07 +01001466
Andy Greene92cd172011-01-19 13:11:55 +00001467struct libwebsocket_context *
Peter Hinz56885f32011-03-02 22:03:47 +00001468libwebsocket_create_context(int port, const char *interf,
Andy Greenb45993c2010-12-18 15:13:50 +00001469 struct libwebsocket_protocols *protocols,
Andy Greend6e09112011-03-05 16:12:15 +00001470 struct libwebsocket_extension *extensions,
Andy Green8f037e42010-12-19 22:13:26 +00001471 const char *ssl_cert_filepath,
1472 const char *ssl_private_key_filepath,
David Galeano2f82be82013-01-09 16:25:54 +08001473 const char *ssl_ca_filepath,
Alon Levy0291eb32012-10-19 11:21:56 +02001474 int gid, int uid, unsigned int options,
David Galeano2f82be82013-01-09 16:25:54 +08001475 void *user)
Andy Greenff95d7a2010-10-28 22:36:01 +01001476{
1477 int n;
Peter Hinz56885f32011-03-02 22:03:47 +00001478 struct libwebsocket_context *context = NULL;
Andy Green9659f372011-01-27 22:01:43 +00001479 char *p;
Andy Greencbb31222013-01-31 09:57:05 +08001480#ifndef LWS_NO_SERVER
1481 int opt = 1;
Andy Green0d338332011-02-12 11:57:43 +00001482 struct libwebsocket *wsi;
Andy Greencbb31222013-01-31 09:57:05 +08001483 struct sockaddr_in serv_addr;
1484#endif
Andy Green3182ece2013-01-20 17:08:31 +08001485#ifndef LWS_NO_EXTENSIONS
1486 int m;
1487#endif
Andy Greenff95d7a2010-10-28 22:36:01 +01001488
Andy Green3faa9c72010-11-08 17:03:03 +00001489#ifdef LWS_OPENSSL_SUPPORT
Andy Greenf2f54d52010-11-15 22:08:00 +00001490 SSL_METHOD *method;
Andy Green3faa9c72010-11-08 17:03:03 +00001491 char ssl_err_buf[512];
Andy Green3faa9c72010-11-08 17:03:03 +00001492#endif
1493
Andy Greenb3a614a2013-01-19 13:08:17 +08001494 lwsl_notice("Initial logging level %d\n", log_level);
Andy Greenc0d6b632013-01-12 23:42:17 +08001495 lwsl_info(" LWS_MAX_HEADER_NAME_LENGTH: %u\n", LWS_MAX_HEADER_NAME_LENGTH);
1496 lwsl_info(" LWS_MAX_HEADER_LEN: %u\n", LWS_MAX_HEADER_LEN);
1497 lwsl_info(" LWS_INITIAL_HDR_ALLOC: %u\n", LWS_INITIAL_HDR_ALLOC);
1498 lwsl_info(" LWS_ADDITIONAL_HDR_ALLOC: %u\n", LWS_ADDITIONAL_HDR_ALLOC);
1499 lwsl_info(" MAX_USER_RX_BUFFER: %u\n", MAX_USER_RX_BUFFER);
Andy Greenc0d6b632013-01-12 23:42:17 +08001500 lwsl_info(" LWS_MAX_PROTOCOLS: %u\n", LWS_MAX_PROTOCOLS);
Andy Green3182ece2013-01-20 17:08:31 +08001501#ifndef LWS_NO_EXTENSIONS
Andy Greenc0d6b632013-01-12 23:42:17 +08001502 lwsl_info(" LWS_MAX_EXTENSIONS_ACTIVE: %u\n", LWS_MAX_EXTENSIONS_ACTIVE);
Andy Green3182ece2013-01-20 17:08:31 +08001503#else
1504 lwsl_notice(" Configured without extension support\n");
1505#endif
Andy Greenc0d6b632013-01-12 23:42:17 +08001506 lwsl_info(" SPEC_LATEST_SUPPORTED: %u\n", SPEC_LATEST_SUPPORTED);
1507 lwsl_info(" AWAITING_TIMEOUT: %u\n", AWAITING_TIMEOUT);
1508 lwsl_info(" CIPHERS_LIST_STRING: '%s'\n", CIPHERS_LIST_STRING);
1509 lwsl_info(" SYSTEM_RANDOM_FILEPATH: '%s'\n", SYSTEM_RANDOM_FILEPATH);
1510 lwsl_info(" LWS_MAX_ZLIB_CONN_BUFFER: %u\n", LWS_MAX_ZLIB_CONN_BUFFER);
Andy Green43db0452013-01-10 19:50:35 +08001511
Peter Hinz56885f32011-03-02 22:03:47 +00001512#ifdef _WIN32
1513 {
1514 WORD wVersionRequested;
1515 WSADATA wsaData;
1516 int err;
Andy Green6ee372f2012-04-09 15:09:01 +08001517 HMODULE wsdll;
Peter Hinz56885f32011-03-02 22:03:47 +00001518
1519 /* Use the MAKEWORD(lowbyte, highbyte) macro from Windef.h */
1520 wVersionRequested = MAKEWORD(2, 2);
1521
1522 err = WSAStartup(wVersionRequested, &wsaData);
1523 if (err != 0) {
1524 /* Tell the user that we could not find a usable */
1525 /* Winsock DLL. */
Andy Green43db0452013-01-10 19:50:35 +08001526 lwsl_err("WSAStartup failed with error: %d\n", err);
Peter Hinz56885f32011-03-02 22:03:47 +00001527 return NULL;
1528 }
David Galeano7b11fec2011-10-04 19:55:18 +08001529
Andy Green6ee372f2012-04-09 15:09:01 +08001530 /* default to a poll() made out of select() */
1531 poll = emulated_poll;
David Galeano7b11fec2011-10-04 19:55:18 +08001532
Andy Green6ee372f2012-04-09 15:09:01 +08001533 /* if windows socket lib available, use his WSAPoll */
David Galeanocb193682013-01-09 15:29:00 +08001534 wsdll = GetModuleHandle(_T("Ws2_32.dll"));
Andy Green6ee372f2012-04-09 15:09:01 +08001535 if (wsdll)
1536 poll = (PFNWSAPOLL)GetProcAddress(wsdll, "WSAPoll");
Peter Hinz56885f32011-03-02 22:03:47 +00001537 }
1538#endif
1539
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001540 context = (struct libwebsocket_context *) malloc(sizeof(struct libwebsocket_context));
Peter Hinz56885f32011-03-02 22:03:47 +00001541 if (!context) {
Andy Green43db0452013-01-10 19:50:35 +08001542 lwsl_err("No memory for websocket context\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001543 return NULL;
1544 }
Andy Green35f332b2013-01-21 13:06:38 +08001545#ifndef LWS_NO_DAEMONIZE
Andy Green24cba922013-01-19 13:56:10 +08001546 extern int pid_daemon;
1547 context->started_with_parent = pid_daemon;
1548 lwsl_notice(" Started with daemon pid %d\n", pid_daemon);
1549#endif
1550
Peter Hinz56885f32011-03-02 22:03:47 +00001551 context->protocols = protocols;
1552 context->listen_port = port;
1553 context->http_proxy_port = 0;
1554 context->http_proxy_address[0] = '\0';
1555 context->options = options;
Andy Greendfb23042013-01-17 12:26:48 +08001556 /* to reduce this allocation, */
1557 context->max_fds = getdtablesize();
Andy Greenb3a614a2013-01-19 13:08:17 +08001558 lwsl_notice(" max fd tracked: %u\n", context->max_fds);
Andy Greena17c6922013-01-20 20:21:54 +08001559 lwsl_notice(" static allocation: %u bytes\n",
1560 (sizeof(struct pollfd) * context->max_fds) +
1561 (sizeof(struct libwebsocket *) * context->max_fds));
Andy Greendfb23042013-01-17 12:26:48 +08001562
1563 context->fds = (struct pollfd *)malloc(sizeof(struct pollfd) * context->max_fds);
1564 if (context->fds == NULL) {
1565 lwsl_err("Unable to allocate fds array for %d connections\n", context->max_fds);
1566 free(context);
1567 return NULL;
1568 }
Edwin van den Oetelaarf6eeabc2013-01-19 20:01:01 +08001569 context->lws_lookup = (struct libwebsocket **)malloc(sizeof(struct libwebsocket *) * context->max_fds);
Andy Greendfb23042013-01-17 12:26:48 +08001570 if (context->lws_lookup == NULL) {
1571 lwsl_err("Unable to allocate lws_lookup array for %d connections\n", context->max_fds);
1572 free(context->fds);
1573 free(context);
1574 return NULL;
1575 }
Andy Greena17c6922013-01-20 20:21:54 +08001576
Peter Hinz56885f32011-03-02 22:03:47 +00001577 context->fds_count = 0;
Andy Green3182ece2013-01-20 17:08:31 +08001578#ifndef LWS_NO_EXTENSIONS
Andy Greend6e09112011-03-05 16:12:15 +00001579 context->extensions = extensions;
Andy Green3182ece2013-01-20 17:08:31 +08001580#endif
Paulo Roberto Urio1e326632012-06-04 10:52:19 +08001581 context->last_timeout_check_s = 0;
Andy Greendfb23042013-01-17 12:26:48 +08001582 context->user_space = user;
Andy Green9659f372011-01-27 22:01:43 +00001583
Peter Hinz56885f32011-03-02 22:03:47 +00001584#ifdef WIN32
1585 context->fd_random = 0;
1586#else
1587 context->fd_random = open(SYSTEM_RANDOM_FILEPATH, O_RDONLY);
1588 if (context->fd_random < 0) {
Andy Greendfb23042013-01-17 12:26:48 +08001589 free(context);
Andy Green43db0452013-01-10 19:50:35 +08001590 lwsl_err("Unable to open random device %s %d\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001591 SYSTEM_RANDOM_FILEPATH, context->fd_random);
Andy Green44eee682011-02-10 09:32:24 +00001592 return NULL;
1593 }
Peter Hinz56885f32011-03-02 22:03:47 +00001594#endif
Andy Green44eee682011-02-10 09:32:24 +00001595
Peter Hinz56885f32011-03-02 22:03:47 +00001596#ifdef LWS_OPENSSL_SUPPORT
1597 context->use_ssl = 0;
1598 context->ssl_ctx = NULL;
1599 context->ssl_client_ctx = NULL;
Andy Green2e24da02011-03-05 16:12:04 +00001600 openssl_websocket_private_data_index = 0;
Peter Hinz56885f32011-03-02 22:03:47 +00001601#endif
Andy Green2ac5a6f2011-01-28 10:00:18 +00001602
Andy Greena1ce6be2013-01-18 11:43:21 +08001603 strcpy(context->canonical_hostname, "unknown");
Andy Greena69f0512012-05-03 12:32:38 +08001604
Andy Greena1ce6be2013-01-18 11:43:21 +08001605#ifndef LWS_NO_SERVER
1606 if (!(options & LWS_SERVER_OPTION_SKIP_SERVER_CANONICAL_NAME)) {
1607 struct sockaddr sa;
1608 char hostname[1024] = "";
Andy Green788c4a82012-10-22 12:29:57 +01001609
1610 /* find canonical hostname */
1611
1612 hostname[(sizeof hostname) - 1] = '\0';
1613 memset(&sa, 0, sizeof(sa));
1614 sa.sa_family = AF_INET;
1615 sa.sa_data[(sizeof sa.sa_data) - 1] = '\0';
1616 gethostname(hostname, (sizeof hostname) - 1);
1617
1618 n = 0;
1619
David Galeanoed3c8402013-01-10 10:45:24 +08001620 if (strlen(hostname) < sizeof(sa.sa_data) - 1) {
Andy Green788c4a82012-10-22 12:29:57 +01001621 strcpy(sa.sa_data, hostname);
Andy Green43db0452013-01-10 19:50:35 +08001622 // lwsl_debug("my host name is %s\n", sa.sa_data);
Andy Green788c4a82012-10-22 12:29:57 +01001623 n = getnameinfo(&sa, sizeof(sa), hostname,
1624 (sizeof hostname) - 1, NULL, 0, 0);
1625 }
1626
1627 if (!n) {
1628 strncpy(context->canonical_hostname, hostname,
1629 sizeof context->canonical_hostname - 1);
1630 context->canonical_hostname[
1631 sizeof context->canonical_hostname - 1] = '\0';
1632 } else
1633 strncpy(context->canonical_hostname, hostname,
1634 sizeof context->canonical_hostname - 1);
1635
Andy Greenb3a614a2013-01-19 13:08:17 +08001636 lwsl_notice(" canonical_hostname = %s\n", context->canonical_hostname);
Andy Greena69f0512012-05-03 12:32:38 +08001637 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001638#endif
Andy Greena69f0512012-05-03 12:32:38 +08001639
Andy Green9659f372011-01-27 22:01:43 +00001640 /* split the proxy ads:port if given */
1641
1642 p = getenv("http_proxy");
1643 if (p) {
Peter Hinz56885f32011-03-02 22:03:47 +00001644 strncpy(context->http_proxy_address, p,
Andy Green6ee372f2012-04-09 15:09:01 +08001645 sizeof context->http_proxy_address - 1);
Peter Hinz56885f32011-03-02 22:03:47 +00001646 context->http_proxy_address[
1647 sizeof context->http_proxy_address - 1] = '\0';
Andy Green9659f372011-01-27 22:01:43 +00001648
Peter Hinz56885f32011-03-02 22:03:47 +00001649 p = strchr(context->http_proxy_address, ':');
Andy Green9659f372011-01-27 22:01:43 +00001650 if (p == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08001651 lwsl_err("http_proxy needs to be ads:port\n");
Andy Green9659f372011-01-27 22:01:43 +00001652 return NULL;
1653 }
1654 *p = '\0';
Peter Hinz56885f32011-03-02 22:03:47 +00001655 context->http_proxy_port = atoi(p + 1);
Andy Green9659f372011-01-27 22:01:43 +00001656
Andy Greenb3a614a2013-01-19 13:08:17 +08001657 lwsl_notice(" Proxy %s:%u\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001658 context->http_proxy_address,
1659 context->http_proxy_port);
Andy Green9659f372011-01-27 22:01:43 +00001660 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001661
Andy Greena1ce6be2013-01-18 11:43:21 +08001662#ifndef LWS_NO_SERVER
Andy Green90c7cbc2011-01-27 06:26:52 +00001663 if (port) {
1664
Andy Green3faa9c72010-11-08 17:03:03 +00001665#ifdef LWS_OPENSSL_SUPPORT
Peter Hinz56885f32011-03-02 22:03:47 +00001666 context->use_ssl = ssl_cert_filepath != NULL &&
Andy Green90c7cbc2011-01-27 06:26:52 +00001667 ssl_private_key_filepath != NULL;
Peter Hinz56885f32011-03-02 22:03:47 +00001668 if (context->use_ssl)
Andy Greenb3a614a2013-01-19 13:08:17 +08001669 lwsl_notice(" Compiled with SSL support, using it\n");
Andy Green90c7cbc2011-01-27 06:26:52 +00001670 else
Andy Greenb3a614a2013-01-19 13:08:17 +08001671 lwsl_notice(" Compiled with SSL support, not using it\n");
Andy Green3faa9c72010-11-08 17:03:03 +00001672
Andy Green90c7cbc2011-01-27 06:26:52 +00001673#else
1674 if (ssl_cert_filepath != NULL &&
1675 ssl_private_key_filepath != NULL) {
Andy Greenb3a614a2013-01-19 13:08:17 +08001676 lwsl_notice(" Not compiled for OpenSSl support!\n");
Andy Greene92cd172011-01-19 13:11:55 +00001677 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001678 }
Andy Greenb3a614a2013-01-19 13:08:17 +08001679 lwsl_notice(" Compiled without SSL support, "
Andy Green90c7cbc2011-01-27 06:26:52 +00001680 "serving unencrypted\n");
1681#endif
Andy Greena17c6922013-01-20 20:21:54 +08001682
1683 lwsl_notice(" per-connection allocation: %u + headers\n", sizeof(struct libwebsocket));
Andy Green90c7cbc2011-01-27 06:26:52 +00001684 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001685#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00001686
1687 /* ignore SIGPIPE */
Peter Hinz56885f32011-03-02 22:03:47 +00001688#ifdef WIN32
1689#else
Andy Green90c7cbc2011-01-27 06:26:52 +00001690 signal(SIGPIPE, sigpipe_handler);
Peter Hinz56885f32011-03-02 22:03:47 +00001691#endif
Andy Green90c7cbc2011-01-27 06:26:52 +00001692
1693
1694#ifdef LWS_OPENSSL_SUPPORT
1695
1696 /* basic openssl init */
1697
1698 SSL_library_init();
1699
1700 OpenSSL_add_all_algorithms();
1701 SSL_load_error_strings();
1702
Andy Green2e24da02011-03-05 16:12:04 +00001703 openssl_websocket_private_data_index =
Andy Green6901cb32011-02-21 08:06:47 +00001704 SSL_get_ex_new_index(0, "libwebsockets", NULL, NULL, NULL);
1705
Andy Green90c7cbc2011-01-27 06:26:52 +00001706 /*
1707 * Firefox insists on SSLv23 not SSLv3
1708 * Konq disables SSLv2 by default now, SSLv23 works
1709 */
1710
1711 method = (SSL_METHOD *)SSLv23_server_method();
1712 if (!method) {
Andy Green43db0452013-01-10 19:50:35 +08001713 lwsl_err("problem creating ssl method: %s\n",
Andy Green90c7cbc2011-01-27 06:26:52 +00001714 ERR_error_string(ERR_get_error(), ssl_err_buf));
1715 return NULL;
1716 }
Peter Hinz56885f32011-03-02 22:03:47 +00001717 context->ssl_ctx = SSL_CTX_new(method); /* create context */
1718 if (!context->ssl_ctx) {
Andy Green43db0452013-01-10 19:50:35 +08001719 lwsl_err("problem creating ssl context: %s\n",
Andy Green90c7cbc2011-01-27 06:26:52 +00001720 ERR_error_string(ERR_get_error(), ssl_err_buf));
1721 return NULL;
1722 }
1723
David Galeanocc148e42013-01-10 10:18:59 +08001724#ifdef SSL_OP_NO_COMPRESSION
David Galeanoc72f6f92013-01-10 10:11:57 +08001725 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08001726#endif
David Galeano77a677c2013-01-10 10:14:12 +08001727 SSL_CTX_set_options(context->ssl_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
David Galeanof177f2a2013-01-10 10:15:19 +08001728 SSL_CTX_set_cipher_list(context->ssl_ctx, CIPHERS_LIST_STRING);
David Galeanoc72f6f92013-01-10 10:11:57 +08001729
Andy Greena1ce6be2013-01-18 11:43:21 +08001730#ifndef LWS_NO_CLIENT
1731
Andy Green90c7cbc2011-01-27 06:26:52 +00001732 /* client context */
Andy Green6ee372f2012-04-09 15:09:01 +08001733
1734 if (port == CONTEXT_PORT_NO_LISTEN) {
Peter Hinz56885f32011-03-02 22:03:47 +00001735 method = (SSL_METHOD *)SSLv23_client_method();
1736 if (!method) {
Andy Green43db0452013-01-10 19:50:35 +08001737 lwsl_err("problem creating ssl method: %s\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001738 ERR_error_string(ERR_get_error(), ssl_err_buf));
1739 return NULL;
1740 }
1741 /* create context */
1742 context->ssl_client_ctx = SSL_CTX_new(method);
1743 if (!context->ssl_client_ctx) {
Andy Green43db0452013-01-10 19:50:35 +08001744 lwsl_err("problem creating ssl context: %s\n",
Peter Hinz56885f32011-03-02 22:03:47 +00001745 ERR_error_string(ERR_get_error(), ssl_err_buf));
1746 return NULL;
1747 }
Andy Green90c7cbc2011-01-27 06:26:52 +00001748
David Galeanocc148e42013-01-10 10:18:59 +08001749#ifdef SSL_OP_NO_COMPRESSION
David Galeanoc72f6f92013-01-10 10:11:57 +08001750 SSL_CTX_set_options(context->ssl_client_ctx, SSL_OP_NO_COMPRESSION);
David Galeanocc148e42013-01-10 10:18:59 +08001751#endif
David Galeano77a677c2013-01-10 10:14:12 +08001752 SSL_CTX_set_options(context->ssl_client_ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
David Galeanof177f2a2013-01-10 10:15:19 +08001753 SSL_CTX_set_cipher_list(context->ssl_client_ctx, CIPHERS_LIST_STRING);
David Galeanoc72f6f92013-01-10 10:11:57 +08001754
Peter Hinz56885f32011-03-02 22:03:47 +00001755 /* openssl init for cert verification (for client sockets) */
David Galeano2f82be82013-01-09 16:25:54 +08001756 if (!ssl_ca_filepath) {
1757 if (!SSL_CTX_load_verify_locations(
1758 context->ssl_client_ctx, NULL,
1759 LWS_OPENSSL_CLIENT_CERTS))
Andy Green43db0452013-01-10 19:50:35 +08001760 lwsl_err(
David Galeano2f82be82013-01-09 16:25:54 +08001761 "Unable to load SSL Client certs from %s "
1762 "(set by --with-client-cert-dir= in configure) -- "
1763 " client ssl isn't going to work",
1764 LWS_OPENSSL_CLIENT_CERTS);
1765 } else
1766 if (!SSL_CTX_load_verify_locations(
1767 context->ssl_client_ctx, ssl_ca_filepath,
1768 NULL))
Andy Green43db0452013-01-10 19:50:35 +08001769 lwsl_err(
David Galeano2f82be82013-01-09 16:25:54 +08001770 "Unable to load SSL Client certs "
1771 "file from %s -- client ssl isn't "
1772 "going to work", ssl_ca_filepath);
Peter Hinz56885f32011-03-02 22:03:47 +00001773
1774 /*
1775 * callback allowing user code to load extra verification certs
1776 * helping the client to verify server identity
1777 */
1778
1779 context->protocols[0].callback(context, NULL,
1780 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS,
1781 context->ssl_client_ctx, NULL, 0);
Andy Green90c7cbc2011-01-27 06:26:52 +00001782 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001783#endif
Andy Green6ee372f2012-04-09 15:09:01 +08001784
Andy Greenc6bf2c22011-02-20 11:10:47 +00001785 /* as a server, are we requiring clients to identify themselves? */
1786
1787 if (options & LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT) {
1788
1789 /* absolutely require the client cert */
Andy Green6ee372f2012-04-09 15:09:01 +08001790
Peter Hinz56885f32011-03-02 22:03:47 +00001791 SSL_CTX_set_verify(context->ssl_ctx,
Andy Green6901cb32011-02-21 08:06:47 +00001792 SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT,
1793 OpenSSL_verify_callback);
Andy Greenc6bf2c22011-02-20 11:10:47 +00001794
1795 /*
1796 * give user code a chance to load certs into the server
1797 * allowing it to verify incoming client certs
1798 */
1799
Peter Hinz56885f32011-03-02 22:03:47 +00001800 context->protocols[0].callback(context, NULL,
Andy Greenc6bf2c22011-02-20 11:10:47 +00001801 LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS,
Peter Hinz56885f32011-03-02 22:03:47 +00001802 context->ssl_ctx, NULL, 0);
Andy Greenc6bf2c22011-02-20 11:10:47 +00001803 }
1804
Peter Hinz56885f32011-03-02 22:03:47 +00001805 if (context->use_ssl) {
Andy Green90c7cbc2011-01-27 06:26:52 +00001806
1807 /* openssl init for server sockets */
1808
Andy Green3faa9c72010-11-08 17:03:03 +00001809 /* set the local certificate from CertFile */
David Galeano9b3d4b22013-01-10 10:11:21 +08001810 n = SSL_CTX_use_certificate_chain_file(context->ssl_ctx,
1811 ssl_cert_filepath);
Andy Green3faa9c72010-11-08 17:03:03 +00001812 if (n != 1) {
Andy Green43db0452013-01-10 19:50:35 +08001813 lwsl_err("problem getting cert '%s': %s\n",
Andy Green3faa9c72010-11-08 17:03:03 +00001814 ssl_cert_filepath,
1815 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00001816 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001817 }
1818 /* set the private key from KeyFile */
Peter Hinz56885f32011-03-02 22:03:47 +00001819 if (SSL_CTX_use_PrivateKey_file(context->ssl_ctx,
1820 ssl_private_key_filepath, SSL_FILETYPE_PEM) != 1) {
Andy Green43db0452013-01-10 19:50:35 +08001821 lwsl_err("ssl problem getting key '%s': %s\n",
Andy Green018d8eb2010-11-08 21:04:23 +00001822 ssl_private_key_filepath,
1823 ERR_error_string(ERR_get_error(), ssl_err_buf));
Andy Greene92cd172011-01-19 13:11:55 +00001824 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001825 }
1826 /* verify private key */
Peter Hinz56885f32011-03-02 22:03:47 +00001827 if (!SSL_CTX_check_private_key(context->ssl_ctx)) {
Andy Green43db0452013-01-10 19:50:35 +08001828 lwsl_err("Private SSL key doesn't match cert\n");
Andy Greene92cd172011-01-19 13:11:55 +00001829 return NULL;
Andy Green3faa9c72010-11-08 17:03:03 +00001830 }
1831
1832 /* SSL is happy and has a cert it's content with */
1833 }
1834#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001835
Andy Greendf736162011-01-18 15:39:02 +00001836 /* selftest */
1837
1838 if (lws_b64_selftest())
Andy Greene92cd172011-01-19 13:11:55 +00001839 return NULL;
Andy Greendf736162011-01-18 15:39:02 +00001840
Andy Greena1ce6be2013-01-18 11:43:21 +08001841#ifndef LWS_NO_SERVER
Andy Greenb45993c2010-12-18 15:13:50 +00001842 /* set up our external listening socket we serve on */
Andy Green8f037e42010-12-19 22:13:26 +00001843
Andy Green4739e5c2011-01-22 12:51:57 +00001844 if (port) {
Andy Greena1ce6be2013-01-18 11:43:21 +08001845 extern int interface_to_sa(const char *ifname, struct sockaddr_in *addr, size_t addrlen);
1846 int sockfd;
Andy Green8f037e42010-12-19 22:13:26 +00001847
Andy Green4739e5c2011-01-22 12:51:57 +00001848 sockfd = socket(AF_INET, SOCK_STREAM, 0);
1849 if (sockfd < 0) {
Andy Greenf7609e92013-01-14 13:10:55 +08001850 lwsl_err("ERROR opening socket\n");
Andy Green4739e5c2011-01-22 12:51:57 +00001851 return NULL;
1852 }
Andy Green775c0dd2010-10-29 14:15:22 +01001853
Andy Green4739e5c2011-01-22 12:51:57 +00001854 /* allow us to restart even if old sockets in TIME_WAIT */
Andy Green6ee372f2012-04-09 15:09:01 +08001855 setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR,
1856 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00001857
1858 /* Disable Nagle */
1859 opt = 1;
Andy Green6ee372f2012-04-09 15:09:01 +08001860 setsockopt(sockfd, IPPROTO_TCP, TCP_NODELAY,
1861 (const void *)&opt, sizeof(opt));
Andy Green6c939552011-03-08 08:56:57 +00001862
Andy Greene2160712013-01-28 12:19:10 +08001863 fcntl(sockfd, F_SETFL, O_NONBLOCK);
1864
Andy Green4739e5c2011-01-22 12:51:57 +00001865 bzero((char *) &serv_addr, sizeof(serv_addr));
1866 serv_addr.sin_family = AF_INET;
Peter Hinz56885f32011-03-02 22:03:47 +00001867 if (interf == NULL)
Andy Green32375b72011-02-19 08:32:53 +00001868 serv_addr.sin_addr.s_addr = INADDR_ANY;
1869 else
Peter Hinz56885f32011-03-02 22:03:47 +00001870 interface_to_sa(interf, &serv_addr,
Andy Green32375b72011-02-19 08:32:53 +00001871 sizeof(serv_addr));
Andy Green4739e5c2011-01-22 12:51:57 +00001872 serv_addr.sin_port = htons(port);
1873
1874 n = bind(sockfd, (struct sockaddr *) &serv_addr,
1875 sizeof(serv_addr));
1876 if (n < 0) {
Andy Green43db0452013-01-10 19:50:35 +08001877 lwsl_err("ERROR on binding to port %d (%d %d)\n",
Andy Green8f037e42010-12-19 22:13:26 +00001878 port, n, errno);
Andy Green41c58032013-01-12 13:21:08 +08001879 close(sockfd);
Andy Green4739e5c2011-01-22 12:51:57 +00001880 return NULL;
1881 }
Andy Green0d338332011-02-12 11:57:43 +00001882
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001883 wsi = (struct libwebsocket *)malloc(sizeof(struct libwebsocket));
Andy Green41c58032013-01-12 13:21:08 +08001884 if (wsi == NULL) {
1885 lwsl_err("Out of mem\n");
1886 close(sockfd);
1887 return NULL;
1888 }
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001889 memset(wsi, 0, sizeof (struct libwebsocket));
Andy Green0d338332011-02-12 11:57:43 +00001890 wsi->sock = sockfd;
Andy Green3182ece2013-01-20 17:08:31 +08001891#ifndef LWS_NO_EXTENSIONS
Andy Greend6e09112011-03-05 16:12:15 +00001892 wsi->count_active_extensions = 0;
Andy Green3182ece2013-01-20 17:08:31 +08001893#endif
Andy Green0d338332011-02-12 11:57:43 +00001894 wsi->mode = LWS_CONNMODE_SERVER_LISTENER;
Andy Greendfb23042013-01-17 12:26:48 +08001895
1896 insert_wsi_socket_into_fds(context, wsi);
Andy Green0d338332011-02-12 11:57:43 +00001897
Andy Green65b0e912013-01-16 07:59:47 +08001898 context->listen_service_modulo = LWS_LISTEN_SERVICE_MODULO;
1899 context->listen_service_count = 0;
1900 context->listen_service_fd = sockfd;
1901
Andy Greena824d182013-01-15 20:52:29 +08001902 listen(sockfd, LWS_SOMAXCONN);
Andy Greenb3a614a2013-01-19 13:08:17 +08001903 lwsl_notice(" Listening on port %d\n", port);
Andy Green8f037e42010-12-19 22:13:26 +00001904 }
Andy Greena1ce6be2013-01-18 11:43:21 +08001905#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001906
Andy Green6ee372f2012-04-09 15:09:01 +08001907 /*
1908 * drop any root privs for this process
1909 * to listen on port < 1023 we would have needed root, but now we are
1910 * listening, we don't want the power for anything else
1911 */
Peter Hinz56885f32011-03-02 22:03:47 +00001912#ifdef WIN32
1913#else
Andy Green3faa9c72010-11-08 17:03:03 +00001914 if (gid != -1)
1915 if (setgid(gid))
Andy Green43db0452013-01-10 19:50:35 +08001916 lwsl_warn("setgid: %s\n", strerror(errno));
Andy Green3faa9c72010-11-08 17:03:03 +00001917 if (uid != -1)
1918 if (setuid(uid))
Andy Green43db0452013-01-10 19:50:35 +08001919 lwsl_warn("setuid: %s\n", strerror(errno));
Peter Hinz56885f32011-03-02 22:03:47 +00001920#endif
Andy Greenb45993c2010-12-18 15:13:50 +00001921
Andy Green6f520a52013-01-29 17:57:39 +08001922 /* initialize supported protocols */
Andy Greenb45993c2010-12-18 15:13:50 +00001923
Peter Hinz56885f32011-03-02 22:03:47 +00001924 for (context->count_protocols = 0;
1925 protocols[context->count_protocols].callback;
1926 context->count_protocols++) {
Andy Green2d1301e2011-05-24 10:14:41 +01001927
Andy Green43db0452013-01-10 19:50:35 +08001928 lwsl_parser(" Protocol: %s\n",
1929 protocols[context->count_protocols].name);
Andy Green2d1301e2011-05-24 10:14:41 +01001930
Peter Hinz56885f32011-03-02 22:03:47 +00001931 protocols[context->count_protocols].owning_server = context;
1932 protocols[context->count_protocols].protocol_index =
1933 context->count_protocols;
Andy Greenb45993c2010-12-18 15:13:50 +00001934 }
Andy Greenf5bc1302013-01-21 09:09:52 +08001935
Andy Green3182ece2013-01-20 17:08:31 +08001936#ifndef LWS_NO_EXTENSIONS
Andy Greena41314f2011-05-23 10:00:03 +01001937 /*
1938 * give all extensions a chance to create any per-context
1939 * allocations they need
1940 */
1941
1942 m = LWS_EXT_CALLBACK_CLIENT_CONTEXT_CONSTRUCT;
1943 if (port)
1944 m = LWS_EXT_CALLBACK_SERVER_CONTEXT_CONSTRUCT;
Andrew Chambersd5512172012-05-20 08:17:09 +08001945
1946 if (extensions) {
1947 while (extensions->callback) {
Andy Green43db0452013-01-10 19:50:35 +08001948 lwsl_ext(" Extension: %s\n", extensions->name);
Aaron Zinman4550f1d2013-01-10 12:35:18 +08001949 extensions->callback(context, extensions, NULL,
1950 (enum libwebsocket_extension_callback_reasons)m,
1951 NULL, NULL, 0);
Andrew Chambersd5512172012-05-20 08:17:09 +08001952 extensions++;
1953 }
Andy Greena41314f2011-05-23 10:00:03 +01001954 }
Andy Green3182ece2013-01-20 17:08:31 +08001955#endif
Peter Hinz56885f32011-03-02 22:03:47 +00001956 return context;
Andy Greene92cd172011-01-19 13:11:55 +00001957}
Andy Greenb45993c2010-12-18 15:13:50 +00001958
Andy Greenb45993c2010-12-18 15:13:50 +00001959/**
1960 * libwebsockets_get_protocol() - Returns a protocol pointer from a websocket
Andy Green8f037e42010-12-19 22:13:26 +00001961 * connection.
Andy Greenb45993c2010-12-18 15:13:50 +00001962 * @wsi: pointer to struct websocket you want to know the protocol of
1963 *
Andy Green8f037e42010-12-19 22:13:26 +00001964 *
Andy Green6f520a52013-01-29 17:57:39 +08001965 * Some apis can act on all live connections of a given protocol,
1966 * this is how you can get a pointer to the active protocol if needed.
Andy Greenb45993c2010-12-18 15:13:50 +00001967 */
Andy Greenab990e42010-10-31 12:42:52 +00001968
Andy Greenb45993c2010-12-18 15:13:50 +00001969const struct libwebsocket_protocols *
1970libwebsockets_get_protocol(struct libwebsocket *wsi)
1971{
1972 return wsi->protocol;
1973}
1974
Andy Green82c3d542011-03-07 21:16:31 +00001975int
1976libwebsocket_is_final_fragment(struct libwebsocket *wsi)
1977{
Andy Green623a98d2013-01-21 11:04:23 +08001978 return wsi->u.ws.final;
Andy Green82c3d542011-03-07 21:16:31 +00001979}
Alex Bligh49146db2011-11-07 17:19:25 +08001980
David Galeanoe2cf9922013-01-09 18:06:55 +08001981unsigned char
1982libwebsocket_get_reserved_bits(struct libwebsocket *wsi)
1983{
Andy Green623a98d2013-01-21 11:04:23 +08001984 return wsi->u.ws.rsv;
David Galeanoe2cf9922013-01-09 18:06:55 +08001985}
1986
Alex Bligh49146db2011-11-07 17:19:25 +08001987void *
1988libwebsocket_ensure_user_space(struct libwebsocket *wsi)
1989{
1990 /* allocate the per-connection user memory (if any) */
1991
1992 if (wsi->protocol->per_session_data_size && !wsi->user_space) {
1993 wsi->user_space = malloc(
1994 wsi->protocol->per_session_data_size);
1995 if (wsi->user_space == NULL) {
Andy Green43db0452013-01-10 19:50:35 +08001996 lwsl_err("Out of memory for conn user space\n");
Alex Bligh49146db2011-11-07 17:19:25 +08001997 return NULL;
1998 }
Andy Green6ee372f2012-04-09 15:09:01 +08001999 memset(wsi->user_space, 0,
2000 wsi->protocol->per_session_data_size);
Alex Bligh49146db2011-11-07 17:19:25 +08002001 }
2002 return wsi->user_space;
2003}
Andy Green43db0452013-01-10 19:50:35 +08002004
Andy Green0b319092013-01-19 11:17:56 +08002005static void lwsl_emit_stderr(int level, const char *line)
Andy Greende8f27a2013-01-12 09:17:42 +08002006{
Andy Green0b319092013-01-19 11:17:56 +08002007 char buf[300];
2008 struct timeval tv;
Andy Green0b319092013-01-19 11:17:56 +08002009 int n;
2010
2011 gettimeofday(&tv, NULL);
2012
2013 buf[0] = '\0';
2014 for (n = 0; n < LLL_COUNT; n++)
2015 if (level == (1 << n)) {
Andy Green058ba812013-01-19 11:32:18 +08002016 sprintf(buf, "[%ld:%04d] %s: ", tv.tv_sec,
Andy Green0b319092013-01-19 11:17:56 +08002017 (int)(tv.tv_usec / 100), log_level_names[n]);
2018 break;
2019 }
2020
2021 fprintf(stderr, "%s%s", buf, line);
Andy Greende8f27a2013-01-12 09:17:42 +08002022}
2023
Andy Greenc11db202013-01-19 11:12:16 +08002024void lwsl_emit_syslog(int level, const char *line)
2025{
2026 int syslog_level = LOG_DEBUG;
2027
2028 switch (level) {
2029 case LLL_ERR:
2030 syslog_level = LOG_ERR;
2031 break;
2032 case LLL_WARN:
2033 syslog_level = LOG_WARNING;
2034 break;
2035 case LLL_NOTICE:
2036 syslog_level = LOG_NOTICE;
2037 break;
2038 case LLL_INFO:
2039 syslog_level = LOG_INFO;
2040 break;
2041 }
Edwin van den Oetelaarf6eeabc2013-01-19 20:01:01 +08002042 syslog(syslog_level, "%s", line);
Andy Greenc11db202013-01-19 11:12:16 +08002043}
2044
Andy Green43db0452013-01-10 19:50:35 +08002045void _lws_log(int filter, const char *format, ...)
2046{
Andy Greende8f27a2013-01-12 09:17:42 +08002047 char buf[256];
Andy Green43db0452013-01-10 19:50:35 +08002048 va_list ap;
Andy Green43db0452013-01-10 19:50:35 +08002049
2050 if (!(log_level & filter))
2051 return;
2052
Andy Green43db0452013-01-10 19:50:35 +08002053 va_start(ap, format);
Andy Green0b319092013-01-19 11:17:56 +08002054 vsnprintf(buf, (sizeof buf), format, ap);
Andy Greende8f27a2013-01-12 09:17:42 +08002055 buf[(sizeof buf) - 1] = '\0';
2056 va_end(ap);
2057
Andy Green0b319092013-01-19 11:17:56 +08002058 lwsl_emit(filter, buf);
Andy Green43db0452013-01-10 19:50:35 +08002059}
2060
2061/**
2062 * lws_set_log_level() - Set the logging bitfield
2063 * @level: OR together the LLL_ debug contexts you want output from
Andy Greende8f27a2013-01-12 09:17:42 +08002064 * @log_emit_function: NULL to leave it as it is, or a user-supplied
2065 * function to perform log string emission instead of
2066 * the default stderr one.
Andy Green43db0452013-01-10 19:50:35 +08002067 *
Andy Greende8f27a2013-01-12 09:17:42 +08002068 * log level defaults to "err" and "warn" contexts enabled only and
2069 * emission on stderr.
Andy Green43db0452013-01-10 19:50:35 +08002070 */
2071
Andy Green058ba812013-01-19 11:32:18 +08002072void lws_set_log_level(int level, void (*log_emit_function)(int level, const char *line))
Andy Green43db0452013-01-10 19:50:35 +08002073{
2074 log_level = level;
Andy Greende8f27a2013-01-12 09:17:42 +08002075 if (log_emit_function)
2076 lwsl_emit = log_emit_function;
Andy Green43db0452013-01-10 19:50:35 +08002077}