blob: 170d475de12b3e010f9800e216deb6fd874b2335 [file] [log] [blame]
Andy Greend4741352014-04-03 07:36:41 +08001/*
2 * libwebsockets - small server side websockets and web server implementation
3 *
Andy Green8c0d3c02015-11-02 20:34:12 +08004 * Copyright (C) 2010-2015 Andy Green <andy@warmcat.com>
Andy Greend4741352014-04-03 07:36:41 +08005 *
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
20 */
21
22#include "private-libwebsockets.h"
23
Andy Green7df53c52014-10-22 15:37:28 +080024static int
Andy Green4b85c1d2015-12-04 11:08:32 +080025lws_calllback_as_writeable(struct lws_context *context,
26 struct lws *wsi)
Andy Green7df53c52014-10-22 15:37:28 +080027{
28 int n;
29
30 switch (wsi->mode) {
31 case LWS_CONNMODE_WS_CLIENT:
32 n = LWS_CALLBACK_CLIENT_WRITEABLE;
33 break;
34 case LWS_CONNMODE_WS_SERVING:
35 n = LWS_CALLBACK_SERVER_WRITEABLE;
36 break;
37 default:
38 n = LWS_CALLBACK_HTTP_WRITEABLE;
39 break;
40 }
41 lwsl_info("%s: %p (user=%p)\n", __func__, wsi, wsi->user_space);
42 return user_callback_handle_rxflow(wsi->protocol->callback, context,
Andy Green4b85c1d2015-12-04 11:08:32 +080043 wsi, (enum lws_callback_reasons) n,
Andy Green7df53c52014-10-22 15:37:28 +080044 wsi->user_space, NULL, 0);
45}
46
Andy Greend4741352014-04-03 07:36:41 +080047int
Andy Green4b85c1d2015-12-04 11:08:32 +080048lws_handle_POLLOUT_event(struct lws_context *context,
49 struct lws *wsi, struct lws_pollfd *pollfd)
Andy Greend4741352014-04-03 07:36:41 +080050{
51 int n;
52 struct lws_tokens eff_buf;
Andy Green7df53c52014-10-22 15:37:28 +080053#ifdef LWS_USE_HTTP2
Andy Green4b85c1d2015-12-04 11:08:32 +080054 struct lws *wsi2;
Andy Green7df53c52014-10-22 15:37:28 +080055#endif
Andy Greend4741352014-04-03 07:36:41 +080056 int ret;
57 int m;
Andy Green82eccf72015-04-26 05:32:03 +080058 int write_type = LWS_WRITE_PONG;
Andy Greend4741352014-04-03 07:36:41 +080059
60 /* pending truncated sends have uber priority */
61
62 if (wsi->truncated_send_len) {
Andy Greena1a24d22014-04-10 14:25:24 +080063 if (lws_issue_raw(wsi, wsi->truncated_send_malloc +
Andy Greend4741352014-04-03 07:36:41 +080064 wsi->truncated_send_offset,
Andy Greena1a24d22014-04-10 14:25:24 +080065 wsi->truncated_send_len) < 0) {
66 lwsl_info("lws_handle_POLLOUT_event signalling to close\n");
67 return -1;
68 }
Andy Greend4741352014-04-03 07:36:41 +080069 /* leave POLLOUT active either way */
70 return 0;
Andy Greenf4ffc1e2014-04-10 17:06:59 +080071 } else
72 if (wsi->state == WSI_STATE_FLUSHING_STORED_SEND_BEFORE_CLOSE) {
73 lwsl_info("***** %x signalling to close in POLLOUT handler\n", wsi);
74 return -1; /* retry closing now */
75 }
Andy Green095d3032014-10-08 12:15:15 +080076#ifdef LWS_USE_HTTP2
Andy Green024eb6c2014-10-08 12:00:53 +080077 /* protocol packets are next */
78 if (wsi->pps) {
Andy Green095d3032014-10-08 12:15:15 +080079 lwsl_info("servicing pps %d\n", wsi->pps);
Andy Green024eb6c2014-10-08 12:00:53 +080080 switch (wsi->pps) {
81 case LWS_PPS_HTTP2_MY_SETTINGS:
82 case LWS_PPS_HTTP2_ACK_SETTINGS:
83 lws_http2_do_pps_send(context, wsi);
84 break;
85 default:
86 break;
87 }
88 wsi->pps = LWS_PPS_NONE;
Andy Green62304762015-12-04 08:43:54 +080089 lws_rx_flow_control(wsi, 1);
Andy Green024eb6c2014-10-08 12:00:53 +080090
91 return 0; /* leave POLLOUT active */
92 }
Andy Green095d3032014-10-08 12:15:15 +080093#endif
Andy Green82bac6b2014-08-24 14:39:19 +080094 /* pending control packets have next priority */
95
Andrejs Hanins140ac6e2015-11-06 18:18:32 +020096 if ((wsi->state == WSI_STATE_ESTABLISHED &&
97 wsi->u.ws.ping_pending_flag) ||
98 (wsi->state == WSI_STATE_RETURNED_CLOSE_ALREADY &&
99 wsi->u.ws.payload_is_close)) {
Andy Green82eccf72015-04-26 05:32:03 +0800100
101 if (wsi->u.ws.payload_is_close)
102 write_type = LWS_WRITE_CLOSE;
103
Andy Green62304762015-12-04 08:43:54 +0800104 n = lws_write(wsi,
Andy Green82bac6b2014-08-24 14:39:19 +0800105 &wsi->u.ws.ping_payload_buf[
106 LWS_SEND_BUFFER_PRE_PADDING],
107 wsi->u.ws.ping_payload_len,
Andy Green82eccf72015-04-26 05:32:03 +0800108 write_type);
Andy Green82bac6b2014-08-24 14:39:19 +0800109 if (n < 0)
110 return -1;
Andy Green40d5abc2015-04-17 20:29:58 +0800111
Andy Green82bac6b2014-08-24 14:39:19 +0800112 /* well he is sent, mark him done */
Andy Green2fd6e6f2015-03-24 21:07:01 +0800113 wsi->u.ws.ping_pending_flag = 0;
Andy Green40d5abc2015-04-17 20:29:58 +0800114 if (wsi->u.ws.payload_is_close)
115 /* oh... a close frame was it... then we are done */
116 return -1;
117
118 /* otherwise for PING, leave POLLOUT active either way */
Andy Green82bac6b2014-08-24 14:39:19 +0800119 return 0;
120 }
Andy Greend4741352014-04-03 07:36:41 +0800121
Andy Green2488c462015-10-16 11:07:52 +0800122 /* if we are closing, don't confuse the user with writeable cb */
123
124 if (wsi->state == WSI_STATE_RETURNED_CLOSE_ALREADY)
125 goto user_service;
126
Andy Green82bac6b2014-08-24 14:39:19 +0800127 /* if nothing critical, user can get the callback */
128
Andy Greend4741352014-04-03 07:36:41 +0800129 m = lws_ext_callback_for_each_active(wsi, LWS_EXT_CALLBACK_IS_WRITEABLE,
130 NULL, 0);
Andy Greend4741352014-04-03 07:36:41 +0800131#ifndef LWS_NO_EXTENSIONS
Andy Green66ecc252014-12-10 10:28:46 +0800132 if (!wsi->extension_data_pending)
Andy Greend4741352014-04-03 07:36:41 +0800133 goto user_service;
134#endif
135 /*
136 * check in on the active extensions, see if they
137 * had pending stuff to spill... they need to get the
138 * first look-in otherwise sequence will be disordered
139 *
140 * NULL, zero-length eff_buf means just spill pending
141 */
142
143 ret = 1;
144 while (ret == 1) {
145
146 /* default to nobody has more to spill */
147
148 ret = 0;
149 eff_buf.token = NULL;
150 eff_buf.token_len = 0;
151
152 /* give every extension a chance to spill */
153
154 m = lws_ext_callback_for_each_active(wsi,
155 LWS_EXT_CALLBACK_PACKET_TX_PRESEND,
156 &eff_buf, 0);
157 if (m < 0) {
158 lwsl_err("ext reports fatal error\n");
159 return -1;
160 }
161 if (m)
162 /*
163 * at least one extension told us he has more
164 * to spill, so we will go around again after
165 */
166 ret = 1;
167
168 /* assuming they gave us something to send, send it */
169
170 if (eff_buf.token_len) {
171 n = lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
172 eff_buf.token_len);
Andy Greena1a24d22014-04-10 14:25:24 +0800173 if (n < 0) {
174 lwsl_info("closing from POLLOUT spill\n");
Andy Greend4741352014-04-03 07:36:41 +0800175 return -1;
Andy Greena1a24d22014-04-10 14:25:24 +0800176 }
Andy Greend4741352014-04-03 07:36:41 +0800177 /*
178 * Keep amount spilled small to minimize chance of this
179 */
180 if (n != eff_buf.token_len) {
181 lwsl_err("Unable to spill ext %d vs %s\n",
182 eff_buf.token_len, n);
183 return -1;
184 }
185 } else
186 continue;
187
188 /* no extension has more to spill */
189
190 if (!ret)
191 continue;
192
193 /*
194 * There's more to spill from an extension, but we just sent
195 * something... did that leave the pipe choked?
196 */
197
198 if (!lws_send_pipe_choked(wsi))
199 /* no we could add more */
200 continue;
201
202 lwsl_info("choked in POLLOUT service\n");
203
204 /*
205 * Yes, he's choked. Leave the POLLOUT masked on so we will
206 * come back here when he is unchoked. Don't call the user
207 * callback to enforce ordering of spilling, he'll get called
208 * when we come back here and there's nothing more to spill.
209 */
210
211 return 0;
212 }
213#ifndef LWS_NO_EXTENSIONS
214 wsi->extension_data_pending = 0;
Andy Greend4741352014-04-03 07:36:41 +0800215#endif
Andy Green2488c462015-10-16 11:07:52 +0800216user_service:
Andy Greend4741352014-04-03 07:36:41 +0800217 /* one shot */
218
219 if (pollfd) {
Andy Green024eb6c2014-10-08 12:00:53 +0800220 if (lws_change_pollfd(wsi, LWS_POLLOUT, 0)) {
221 lwsl_info("failled at set pollfd\n");
Andy Greend4741352014-04-03 07:36:41 +0800222 return 1;
Andy Green024eb6c2014-10-08 12:00:53 +0800223 }
Andy Greena717df22014-04-11 13:14:37 +0800224
225 lws_libev_io(context, wsi, LWS_EV_STOP | LWS_EV_WRITE);
Andy Greend4741352014-04-03 07:36:41 +0800226 }
227
Andy Green7df53c52014-10-22 15:37:28 +0800228#ifdef LWS_USE_HTTP2
229 /*
230 * we are the 'network wsi' for potentially many muxed child wsi with
231 * no network connection of their own, who have to use us for all their
232 * network actions. So we use a round-robin scheme to share out the
233 * POLLOUT notifications to our children.
234 *
235 * But because any child could exhaust the socket's ability to take
236 * writes, we can only let one child get notified each time.
237 *
238 * In addition children may be closed / deleted / added between POLLOUT
239 * notifications, so we can't hold pointers
240 */
241
242 if (wsi->mode != LWS_CONNMODE_HTTP2_SERVING) {
243 lwsl_info("%s: non http2\n", __func__);
244 goto notify;
245 }
Andy Greend4741352014-04-03 07:36:41 +0800246
Andy Green7df53c52014-10-22 15:37:28 +0800247 wsi->u.http2.requested_POLLOUT = 0;
248 if (!wsi->u.http2.initialized) {
249 lwsl_info("pollout on uninitialized http2 conn\n");
250 return 0;
251 }
252
253 lwsl_info("%s: doing children\n", __func__);
254
255 wsi2 = wsi;
256 do {
257 wsi2 = wsi2->u.http2.next_child_wsi;
258 lwsl_info("%s: child %p\n", __func__, wsi2);
259 if (!wsi2)
260 continue;
261 if (!wsi2->u.http2.requested_POLLOUT)
262 continue;
263 wsi2->u.http2.requested_POLLOUT = 0;
264 if (lws_calllback_as_writeable(context, wsi2)) {
265 lwsl_debug("Closing POLLOUT child\n");
Andy Green3ef579b2015-12-04 09:23:56 +0800266 lws_close_and_free_session(context, wsi2,
Andy Green7df53c52014-10-22 15:37:28 +0800267 LWS_CLOSE_STATUS_NOSTATUS);
268 }
269 wsi2 = wsi;
270 } while (wsi2 != NULL && !lws_send_pipe_choked(wsi));
271
272 lwsl_info("%s: completed\n", __func__);
273
274 return 0;
275notify:
276#endif
277 return lws_calllback_as_writeable(context, wsi);
Andy Greend4741352014-04-03 07:36:41 +0800278}
279
280
281
282int
Andy Green4b85c1d2015-12-04 11:08:32 +0800283lws_service_timeout_check(struct lws_context *context,
284 struct lws *wsi, unsigned int sec)
Andy Greend4741352014-04-03 07:36:41 +0800285{
286 /*
287 * if extensions want in on it (eg, we are a mux parent)
288 * give them a chance to service child timeouts
289 */
290 if (lws_ext_callback_for_each_active(wsi, LWS_EXT_CALLBACK_1HZ, NULL, sec) < 0)
291 return 0;
292
293 if (!wsi->pending_timeout)
294 return 0;
295
296 /*
297 * if we went beyond the allowed time, kill the
298 * connection
299 */
Andy Green2cd30742015-11-02 13:10:33 +0800300 if ((time_t)sec > wsi->pending_timeout_limit) {
Andy Green11f27342015-11-08 12:10:26 +0800301 lwsl_info("wsi %p: TIMEDOUT WAITING on %d\n", (void *)wsi, wsi->pending_timeout);
Andy Green408f5372015-04-12 08:17:26 +0800302 /*
303 * Since he failed a timeout, he already had a chance to do
304 * something and was unable to... that includes situations like
305 * half closed connections. So process this "failed timeout"
306 * close as a violent death and don't try to do protocol
307 * cleanup like flush partials.
308 */
309 wsi->socket_is_permanently_unusable = 1;
Andy Green3ef579b2015-12-04 09:23:56 +0800310 lws_close_and_free_session(context,
Andy Greend4741352014-04-03 07:36:41 +0800311 wsi, LWS_CLOSE_STATUS_NOSTATUS);
312 return 1;
313 }
314
315 return 0;
316}
317
Andy Green4b85c1d2015-12-04 11:08:32 +0800318int lws_rxflow_cache(struct lws *wsi, unsigned char *buf, int n, int len)
Andy Green024eb6c2014-10-08 12:00:53 +0800319{
320 /* his RX is flowcontrolled, don't send remaining now */
321 if (wsi->rxflow_buffer) {
322 /* rxflow while we were spilling prev rxflow */
323 lwsl_info("stalling in existing rxflow buf\n");
324 return 1;
325 }
326
327 /* a new rxflow, buffer it and warn caller */
328 lwsl_info("new rxflow input buffer len %d\n", len - n);
Alejandro Mery6ff28242014-12-04 23:59:35 +0100329 wsi->rxflow_buffer = lws_malloc(len - n);
Andy Green024eb6c2014-10-08 12:00:53 +0800330 wsi->rxflow_len = len - n;
331 wsi->rxflow_pos = 0;
332 memcpy(wsi->rxflow_buffer, buf + n, len - n);
333
334 return 0;
335}
336
Andy Greend4741352014-04-03 07:36:41 +0800337/**
Andy Green62304762015-12-04 08:43:54 +0800338 * lws_service_fd() - Service polled socket with something waiting
Andy Greend4741352014-04-03 07:36:41 +0800339 * @context: Websocket context
340 * @pollfd: The pollfd entry describing the socket fd and which events
341 * happened.
342 *
343 * This function takes a pollfd that has POLLIN or POLLOUT activity and
344 * services it according to the state of the associated
Andy Green4b85c1d2015-12-04 11:08:32 +0800345 * struct lws.
Andy Greend4741352014-04-03 07:36:41 +0800346 *
347 * The one call deals with all "service" that might happen on a socket
348 * including listen accepts, http files as well as websocket protocol.
349 *
350 * If a pollfd says it has something, you can just pass it to
Andy Green4b85c1d2015-12-04 11:08:32 +0800351 * lws_service_fd() whether it is a socket handled by lws or not.
Andy Greend4741352014-04-03 07:36:41 +0800352 * If it sees it is a lws socket, the traffic will be handled and
353 * pollfd->revents will be zeroed now.
354 *
355 * If the socket is foreign to lws, it leaves revents alone. So you can
356 * see if you should service yourself by checking the pollfd revents
357 * after letting lws try to service it.
358 */
359
360LWS_VISIBLE int
Andy Green4b85c1d2015-12-04 11:08:32 +0800361lws_service_fd(struct lws_context *context,
362 struct lws_pollfd *pollfd)
Andy Greend4741352014-04-03 07:36:41 +0800363{
Andy Green4b85c1d2015-12-04 11:08:32 +0800364 struct lws *wsi;
Andy Green8c0d3c02015-11-02 20:34:12 +0800365 int n, m;
366 lws_sockfd_type mfd;
Andy Green11f27342015-11-08 12:10:26 +0800367#if LWS_POSIX
Andy Greend4741352014-04-03 07:36:41 +0800368 int listen_socket_fds_index = 0;
Andy Green11f27342015-11-08 12:10:26 +0800369#endif
Andy Greend4741352014-04-03 07:36:41 +0800370 time_t now;
371 int timed_out = 0;
Andy Green8c0d3c02015-11-02 20:34:12 +0800372 lws_sockfd_type our_fd = 0;
Andy Greend4741352014-04-03 07:36:41 +0800373 char draining_flow = 0;
374 int more;
375 struct lws_tokens eff_buf;
Andy Green2cd30742015-11-02 13:10:33 +0800376 unsigned int pending = 0;
Andy Greend4741352014-04-03 07:36:41 +0800377
Andy Green11f27342015-11-08 12:10:26 +0800378#if LWS_POSIX
Andy Greend4741352014-04-03 07:36:41 +0800379 if (context->listen_service_fd)
Bud Davis229bfec2015-01-30 10:13:01 +0800380 listen_socket_fds_index = wsi_from_fd(context,context->listen_service_fd)->position_in_fds_table;
Andy Green11f27342015-11-08 12:10:26 +0800381#endif
Bud Davis229bfec2015-01-30 10:13:01 +0800382 /*
Andy Greend4741352014-04-03 07:36:41 +0800383 * you can call us with pollfd = NULL to just allow the once-per-second
384 * global timeout checks; if less than a second since the last check
385 * it returns immediately then.
386 */
387
388 time(&now);
389
390 /* TODO: if using libev, we should probably use timeout watchers... */
391 if (context->last_timeout_check_s != now) {
392 context->last_timeout_check_s = now;
393
394 lws_plat_service_periodic(context);
395
396 /* global timeout check once per second */
397
398 if (pollfd)
399 our_fd = pollfd->fd;
400
401 for (n = 0; n < context->fds_count; n++) {
Andy Green8c0d3c02015-11-02 20:34:12 +0800402 mfd = context->fds[n].fd;
403 wsi = wsi_from_fd(context, mfd);
Andy Greend4741352014-04-03 07:36:41 +0800404 if (!wsi)
405 continue;
406
Andy Green62304762015-12-04 08:43:54 +0800407 if (lws_service_timeout_check(context, wsi, now))
Andy Greend4741352014-04-03 07:36:41 +0800408 /* he did time out... */
Andy Green8c0d3c02015-11-02 20:34:12 +0800409 if (mfd == our_fd) {
Andy Greend4741352014-04-03 07:36:41 +0800410 /* it was the guy we came to service! */
411 timed_out = 1;
Andy Green940a7552015-10-15 08:34:21 +0800412 /* he's gone, no need to mark as handled */
Andy Greend4741352014-04-03 07:36:41 +0800413 }
414 }
415 }
416
417 /* the socket we came to service timed out, nothing to do */
418 if (timed_out)
419 return 0;
420
421 /* just here for timeout management? */
422 if (pollfd == NULL)
423 return 0;
424
425 /* no, here to service a socket descriptor */
Andy Green8c0d3c02015-11-02 20:34:12 +0800426 wsi = wsi_from_fd(context, pollfd->fd);
Andy Greend4741352014-04-03 07:36:41 +0800427 if (wsi == NULL)
428 /* not lws connection ... leave revents alone and return */
429 return 0;
430
431 /*
432 * so that caller can tell we handled, past here we need to
433 * zero down pollfd->revents after handling
434 */
435
Andy Green11f27342015-11-08 12:10:26 +0800436#if LWS_POSIX
Andy Greend4741352014-04-03 07:36:41 +0800437 /*
438 * deal with listen service piggybacking
439 * every listen_service_modulo services of other fds, we
440 * sneak one in to service the listen socket if there's anything waiting
441 *
442 * To handle connection storms, as found in ab, if we previously saw a
443 * pending connection here, it causes us to check again next time.
444 */
445
446 if (context->listen_service_fd && pollfd !=
447 &context->fds[listen_socket_fds_index]) {
448 context->listen_service_count++;
449 if (context->listen_service_extraseen ||
450 context->listen_service_count ==
451 context->listen_service_modulo) {
452 context->listen_service_count = 0;
453 m = 1;
454 if (context->listen_service_extraseen > 5)
455 m = 2;
456 while (m--) {
457 /*
458 * even with extpoll, we prepared this
459 * internal fds for listen
460 */
461 n = lws_poll_listen_fd(&context->fds[listen_socket_fds_index]);
462 if (n > 0) { /* there's a conn waiting for us */
Andy Green62304762015-12-04 08:43:54 +0800463 lws_service_fd(context,
Andy Greend4741352014-04-03 07:36:41 +0800464 &context->
465 fds[listen_socket_fds_index]);
466 context->listen_service_extraseen++;
467 } else {
468 if (context->listen_service_extraseen)
469 context->
470 listen_service_extraseen--;
471 break;
472 }
473 }
474 }
475
476 }
477
478 /* handle session socket closed */
479
480 if ((!(pollfd->revents & LWS_POLLIN)) &&
481 (pollfd->revents & LWS_POLLHUP)) {
482
483 lwsl_debug("Session Socket %p (fd=%d) dead\n",
484 (void *)wsi, pollfd->fd);
485
486 goto close_and_handled;
487 }
Andy Green11f27342015-11-08 12:10:26 +0800488#endif
Andy Greend4741352014-04-03 07:36:41 +0800489
490 /* okay, what we came here to do... */
491
492 switch (wsi->mode) {
Andy Greend4741352014-04-03 07:36:41 +0800493 case LWS_CONNMODE_HTTP_SERVING:
494 case LWS_CONNMODE_HTTP_SERVING_ACCEPTED:
495 case LWS_CONNMODE_SERVER_LISTENER:
496 case LWS_CONNMODE_SSL_ACK_PENDING:
497 n = lws_server_socket_service(context, wsi, pollfd);
Andy Greena1a24d22014-04-10 14:25:24 +0800498 if (n < 0)
499 goto close_and_handled;
Andrew Canaday622d9f22015-12-02 15:13:56 -0500500 pending = lws_ssl_pending(wsi);
501 if (pending)
502 goto handle_pending;
Andy Greend4741352014-04-03 07:36:41 +0800503 goto handled;
Andy Greend4741352014-04-03 07:36:41 +0800504
505 case LWS_CONNMODE_WS_SERVING:
506 case LWS_CONNMODE_WS_CLIENT:
Andy Green024eb6c2014-10-08 12:00:53 +0800507 case LWS_CONNMODE_HTTP2_SERVING:
Andy Greend4741352014-04-03 07:36:41 +0800508
509 /* the guy requested a callback when it was OK to write */
510
511 if ((pollfd->revents & LWS_POLLOUT) &&
Andy Green408f5372015-04-12 08:17:26 +0800512 (wsi->state == WSI_STATE_ESTABLISHED ||
513 wsi->state == WSI_STATE_HTTP2_ESTABLISHED ||
514 wsi->state == WSI_STATE_HTTP2_ESTABLISHED_PRE_SETTINGS ||
Andy Green4bca6cd2015-04-26 06:09:13 +0800515 wsi->state == WSI_STATE_RETURNED_CLOSE_ALREADY ||
Andy Green408f5372015-04-12 08:17:26 +0800516 wsi->state == WSI_STATE_FLUSHING_STORED_SEND_BEFORE_CLOSE) &&
Andy Green8e18fe32014-04-06 12:40:16 +0100517 lws_handle_POLLOUT_event(context, wsi, pollfd)) {
Andy Green649f6022015-11-15 10:28:45 +0800518 if (wsi->state == WSI_STATE_RETURNED_CLOSE_ALREADY)
519 wsi->state = WSI_STATE_FLUSHING_STORED_SEND_BEFORE_CLOSE;
Andy Green62304762015-12-04 08:43:54 +0800520 lwsl_info("lws_service_fd: closing\n");
Andy Greend4741352014-04-03 07:36:41 +0800521 goto close_and_handled;
522 }
523
Andy Green024eb6c2014-10-08 12:00:53 +0800524 if (wsi->rxflow_buffer &&
525 (wsi->rxflow_change_to & LWS_RXFLOW_ALLOW)) {
Andy Greend4741352014-04-03 07:36:41 +0800526 lwsl_info("draining rxflow\n");
527 /* well, drain it */
Andy Green024eb6c2014-10-08 12:00:53 +0800528 eff_buf.token = (char *)wsi->rxflow_buffer +
529 wsi->rxflow_pos;
530 eff_buf.token_len = wsi->rxflow_len - wsi->rxflow_pos;
Andy Greend4741352014-04-03 07:36:41 +0800531 draining_flow = 1;
532 goto drain;
533 }
534
535 /* any incoming data ready? */
536
537 if (!(pollfd->revents & LWS_POLLIN))
538 break;
=?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?=4c0ba022015-08-19 16:23:33 +0200539read:
Andy Greend4741352014-04-03 07:36:41 +0800540
Andy Green609ec852014-10-09 08:29:22 +0800541 eff_buf.token_len = lws_ssl_capable_read(context, wsi,
Andy Greend4741352014-04-03 07:36:41 +0800542 context->service_buffer,
=?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?=4c0ba022015-08-19 16:23:33 +0200543 pending?pending:sizeof(context->service_buffer));
Andy Green78f266a2014-04-05 16:48:48 +0100544 switch (eff_buf.token_len) {
545 case 0:
546 lwsl_info("service_fd: closing due to 0 length read\n");
547 goto close_and_handled;
AndyMcG7ab4ede2014-07-05 11:25:11 +0800548 case LWS_SSL_CAPABLE_MORE_SERVICE:
549 lwsl_info("SSL Capable more service\n");
Andy Greend4741352014-04-03 07:36:41 +0800550 n = 0;
551 goto handled;
AndyMcG7ab4ede2014-07-05 11:25:11 +0800552 case LWS_SSL_CAPABLE_ERROR:
553 lwsl_info("Closing when error\n");
Andy Greend4741352014-04-03 07:36:41 +0800554 goto close_and_handled;
555 }
556
557 /*
558 * give any active extensions a chance to munge the buffer
559 * before parse. We pass in a pointer to an lws_tokens struct
560 * prepared with the default buffer and content length that's in
561 * there. Rather than rewrite the default buffer, extensions
562 * that expect to grow the buffer can adapt .token to
563 * point to their own per-connection buffer in the extension
564 * user allocation. By default with no extensions or no
565 * extension callback handling, just the normal input buffer is
566 * used then so it is efficient.
567 */
568
569 eff_buf.token = (char *)context->service_buffer;
570drain:
571
572 do {
573
574 more = 0;
575
576 m = lws_ext_callback_for_each_active(wsi,
577 LWS_EXT_CALLBACK_PACKET_RX_PREPARSE, &eff_buf, 0);
578 if (m < 0)
579 goto close_and_handled;
580 if (m)
581 more = 1;
582
583 /* service incoming data */
584
585 if (eff_buf.token_len) {
Andy Green62304762015-12-04 08:43:54 +0800586 n = lws_read(context, wsi,
Andy Greend4741352014-04-03 07:36:41 +0800587 (unsigned char *)eff_buf.token,
588 eff_buf.token_len);
589 if (n < 0) {
590 /* we closed wsi */
591 n = 0;
592 goto handled;
593 }
594 }
595
596 eff_buf.token = NULL;
597 eff_buf.token_len = 0;
598 } while (more);
599
=?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?=4c0ba022015-08-19 16:23:33 +0200600 pending = lws_ssl_pending(wsi);
601 if (pending) {
Andrew Canaday622d9f22015-12-02 15:13:56 -0500602handle_pending:
=?UTF-8?q?Jos=C3=A9=20Luis=20Mill=C3=A1n?=4c0ba022015-08-19 16:23:33 +0200603 pending = pending > sizeof(context->service_buffer)?
604 sizeof(context->service_buffer):pending;
605 goto read;
606 }
607
Andy Green024eb6c2014-10-08 12:00:53 +0800608 if (draining_flow && wsi->rxflow_buffer &&
609 wsi->rxflow_pos == wsi->rxflow_len) {
Andy Greend4741352014-04-03 07:36:41 +0800610 lwsl_info("flow buffer: drained\n");
Alejandro Meryac3ec392014-12-05 00:09:20 +0100611 lws_free2(wsi->rxflow_buffer);
Andy Greend4741352014-04-03 07:36:41 +0800612 /* having drained the rxflow buffer, can rearm POLLIN */
Andy Greena3493672014-12-10 10:24:33 +0800613#ifdef LWS_NO_SERVER
614 n =
615#endif
Andy Green62304762015-12-04 08:43:54 +0800616 _lws_rx_flow_control(wsi); /* n ignored, needed for NO_SERVER case */
Andy Greend4741352014-04-03 07:36:41 +0800617 }
618
Andy Greend4741352014-04-03 07:36:41 +0800619 break;
620
621 default:
622#ifdef LWS_NO_CLIENT
623 break;
624#else
625 n = lws_client_socket_service(context, wsi, pollfd);
626 goto handled;
627#endif
628 }
629
630 n = 0;
631 goto handled;
632
633close_and_handled:
AndyMcG7ab4ede2014-07-05 11:25:11 +0800634 lwsl_debug("Close and handled\n");
Andy Green3ef579b2015-12-04 09:23:56 +0800635 lws_close_and_free_session(context, wsi,
Andy Greend4741352014-04-03 07:36:41 +0800636 LWS_CLOSE_STATUS_NOSTATUS);
Andy Green940a7552015-10-15 08:34:21 +0800637 // pollfd points to something else after the close
638 return 1;
Andy Greend4741352014-04-03 07:36:41 +0800639
640handled:
641 pollfd->revents = 0;
642 return n;
643}
644
645/**
Andy Green62304762015-12-04 08:43:54 +0800646 * lws_service() - Service any pending websocket activity
Andy Greend4741352014-04-03 07:36:41 +0800647 * @context: Websocket context
648 * @timeout_ms: Timeout for poll; 0 means return immediately if nothing needed
649 * service otherwise block and service immediately, returning
650 * after the timeout if nothing needed service.
651 *
652 * This function deals with any pending websocket traffic, for three
653 * kinds of event. It handles these events on both server and client
654 * types of connection the same.
655 *
656 * 1) Accept new connections to our context's server
657 *
658 * 2) Call the receive callback for incoming frame data received by
659 * server or client connections.
660 *
661 * You need to call this service function periodically to all the above
662 * functions to happen; if your application is single-threaded you can
663 * just call it in your main event loop.
664 *
665 * Alternatively you can fork a new process that asynchronously handles
666 * calling this service in a loop. In that case you are happy if this
667 * call blocks your thread until it needs to take care of something and
668 * would call it with a large nonzero timeout. Your loop then takes no
669 * CPU while there is nothing happening.
670 *
671 * If you are calling it in a single-threaded app, you don't want it to
672 * wait around blocking other things in your loop from happening, so you
673 * would call it with a timeout_ms of 0, so it returns immediately if
674 * nothing is pending, or as soon as it services whatever was pending.
675 */
676
677LWS_VISIBLE int
Andy Green4b85c1d2015-12-04 11:08:32 +0800678lws_service(struct lws_context *context, int timeout_ms)
Andy Greend4741352014-04-03 07:36:41 +0800679{
680 return lws_plat_service(context, timeout_ms);
681}
682