blob: 79a2c882747c47c5dbad16446e3332d708c97199 [file] [log] [blame]
Andy Green34f3dd22014-04-03 07:42:50 +08001/*
2 * libwebsockets - small server side websockets and web server implementation
3 *
4 * Copyright (C) 2010-2014 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
20 */
21
22#include "private-libwebsockets.h"
23
24int
Andy Green4b85c1d2015-12-04 11:08:32 +080025insert_wsi_socket_into_fds(struct lws_context *context,
26 struct lws *wsi)
Andy Green34f3dd22014-04-03 07:42:50 +080027{
Andy Green4b85c1d2015-12-04 11:08:32 +080028 struct lws_pollargs pa = { wsi->sock, LWS_POLLIN, 0 };
Andy Green34f3dd22014-04-03 07:42:50 +080029
30 if (context->fds_count >= context->max_fds) {
31 lwsl_err("Too many fds (%d)\n", context->max_fds);
32 return 1;
33 }
34
Andy Green2cd30742015-11-02 13:10:33 +080035#if !defined(_WIN32) && !defined(MBED_OPERATORS)
Andy Green34f3dd22014-04-03 07:42:50 +080036 if (wsi->sock >= context->max_fds) {
37 lwsl_err("Socket fd %d is too high (%d)\n",
38 wsi->sock, context->max_fds);
39 return 1;
40 }
Bud Davis229bfec2015-01-30 10:13:01 +080041#endif
Andy Green34f3dd22014-04-03 07:42:50 +080042
43 assert(wsi);
Andy Greenfc772cc2015-11-14 13:48:58 +080044 assert(lws_socket_is_valid(wsi->sock));
Andy Green34f3dd22014-04-03 07:42:50 +080045
Andy Green11f27342015-11-08 12:10:26 +080046// lwsl_info("insert_wsi_socket_into_fds: wsi=%p, sock=%d, fds pos=%d\n",
47// wsi, wsi->sock, context->fds_count);
Andy Green34f3dd22014-04-03 07:42:50 +080048
Andy Green1963c9a2015-10-15 07:39:33 +080049 if (context->protocols[0].callback(context, wsi,
Andy Green5a3b1d32015-11-20 09:51:18 +080050 LWS_CALLBACK_LOCK_POLL, wsi->user_space, (void *) &pa, 1))
Andy Green1963c9a2015-10-15 07:39:33 +080051 return -1;
Andy Green34f3dd22014-04-03 07:42:50 +080052
Bud Davis229bfec2015-01-30 10:13:01 +080053 insert_wsi(context, wsi);
Andy Green34f3dd22014-04-03 07:42:50 +080054 wsi->position_in_fds_table = context->fds_count;
55 context->fds[context->fds_count].fd = wsi->sock;
56 context->fds[context->fds_count].events = LWS_POLLIN;
57
58 lws_plat_insert_socket_into_fds(context, wsi);
59
60 /* external POLL support via protocol 0 */
Andy Green1963c9a2015-10-15 07:39:33 +080061 if (context->protocols[0].callback(context, wsi,
62 LWS_CALLBACK_ADD_POLL_FD, wsi->user_space, (void *) &pa, 0))
63 return -1;
Andy Green34f3dd22014-04-03 07:42:50 +080064
Andy Green1963c9a2015-10-15 07:39:33 +080065 if (context->protocols[0].callback(context, wsi,
Andy Green5a3b1d32015-11-20 09:51:18 +080066 LWS_CALLBACK_UNLOCK_POLL, wsi->user_space, (void *)&pa, 1))
Andy Green1963c9a2015-10-15 07:39:33 +080067 return -1;
Andy Green34f3dd22014-04-03 07:42:50 +080068
69 return 0;
70}
71
72int
Andy Green4b85c1d2015-12-04 11:08:32 +080073remove_wsi_socket_from_fds(struct lws_context *context,
74 struct lws *wsi)
Andy Green34f3dd22014-04-03 07:42:50 +080075{
76 int m;
Andy Green4b85c1d2015-12-04 11:08:32 +080077 struct lws_pollargs pa = { wsi->sock, 0, 0 };
Andy Green34f3dd22014-04-03 07:42:50 +080078
Andy Greena717df22014-04-11 13:14:37 +080079 lws_libev_io(context, wsi, LWS_EV_STOP | LWS_EV_READ | LWS_EV_WRITE);
Andy Green34f3dd22014-04-03 07:42:50 +080080
Joe Kilnerba8a2f02015-04-21 10:41:36 +010081 --context->fds_count;
Andy Green34f3dd22014-04-03 07:42:50 +080082
Andy Green8c0d3c02015-11-02 20:34:12 +080083#if !defined(_WIN32) && !defined(MBED_OPERATORS)
Andy Green34f3dd22014-04-03 07:42:50 +080084 if (wsi->sock > context->max_fds) {
85 lwsl_err("Socket fd %d too high (%d)\n",
86 wsi->sock, context->max_fds);
87 return 1;
88 }
bdavis353fdc32015-10-13 19:54:57 -050089#endif
Andy Green34f3dd22014-04-03 07:42:50 +080090
91 lwsl_info("%s: wsi=%p, sock=%d, fds pos=%d\n", __func__,
92 wsi, wsi->sock, wsi->position_in_fds_table);
93
Andy Green1963c9a2015-10-15 07:39:33 +080094 if (context->protocols[0].callback(context, wsi,
Andy Green5a3b1d32015-11-20 09:51:18 +080095 LWS_CALLBACK_LOCK_POLL, wsi->user_space, (void *)&pa, 1))
Andy Green1963c9a2015-10-15 07:39:33 +080096 return -1;
Andy Green34f3dd22014-04-03 07:42:50 +080097
98 m = wsi->position_in_fds_table; /* replace the contents for this */
99
100 /* have the last guy take up the vacant slot */
101 context->fds[m] = context->fds[context->fds_count];
102
103 lws_plat_delete_socket_from_fds(context, wsi, m);
104
105 /*
106 * end guy's fds_lookup entry remains unchanged
107 * (still same fd pointing to same wsi)
108 */
109 /* end guy's "position in fds table" changed */
Bud Davis229bfec2015-01-30 10:13:01 +0800110 wsi_from_fd(context,context->fds[context->fds_count].fd)->
111 position_in_fds_table = m;
Andy Green34f3dd22014-04-03 07:42:50 +0800112 /* deletion guy's lws_lookup entry needs nuking */
Bud Davis229bfec2015-01-30 10:13:01 +0800113 delete_from_fd(context,wsi->sock);
Andy Green34f3dd22014-04-03 07:42:50 +0800114 /* removed wsi has no position any more */
115 wsi->position_in_fds_table = -1;
116
Andy Green34f3dd22014-04-03 07:42:50 +0800117 /* remove also from external POLL support via protocol 0 */
Andy Greenfc772cc2015-11-14 13:48:58 +0800118 if (lws_socket_is_valid(wsi->sock)) {
Andy Green1963c9a2015-10-15 07:39:33 +0800119 if (context->protocols[0].callback(context, wsi,
Andy Green34f3dd22014-04-03 07:42:50 +0800120 LWS_CALLBACK_DEL_POLL_FD, wsi->user_space,
Andy Green1963c9a2015-10-15 07:39:33 +0800121 (void *) &pa, 0))
122 return -1;
Andy Green34f3dd22014-04-03 07:42:50 +0800123 }
Andy Green1963c9a2015-10-15 07:39:33 +0800124 if (context->protocols[0].callback(context, wsi,
Andy Green34f3dd22014-04-03 07:42:50 +0800125 LWS_CALLBACK_UNLOCK_POLL,
Andy Green5a3b1d32015-11-20 09:51:18 +0800126 wsi->user_space, (void *) &pa, 1))
Andy Green1963c9a2015-10-15 07:39:33 +0800127 return -1;
128
Andy Green34f3dd22014-04-03 07:42:50 +0800129 return 0;
130}
131
132int
Andy Green4b85c1d2015-12-04 11:08:32 +0800133lws_change_pollfd(struct lws *wsi, int _and, int _or)
Andy Green34f3dd22014-04-03 07:42:50 +0800134{
Andy Green4b85c1d2015-12-04 11:08:32 +0800135 struct lws_context *context;
Andy Green34f3dd22014-04-03 07:42:50 +0800136 int tid;
137 int sampled_tid;
Andy Green4b85c1d2015-12-04 11:08:32 +0800138 struct lws_pollfd *pfd;
139 struct lws_pollargs pa;
Andy Green34f3dd22014-04-03 07:42:50 +0800140
Andy Green4edb4522014-12-15 15:08:13 +0800141 if (!wsi || !wsi->protocol || wsi->position_in_fds_table < 0)
142 return 1;
143
144 context = wsi->protocol->owning_server;
145 if (!context)
146 return 1;
147
Andy Green34f3dd22014-04-03 07:42:50 +0800148 pfd = &context->fds[wsi->position_in_fds_table];
149 pa.fd = wsi->sock;
150
Andy Green1963c9a2015-10-15 07:39:33 +0800151 if (context->protocols[0].callback(context, wsi,
152 LWS_CALLBACK_LOCK_POLL, wsi->user_space, (void *) &pa, 0))
153 return -1;
Andy Green34f3dd22014-04-03 07:42:50 +0800154
155 pa.prev_events = pfd->events;
156 pa.events = pfd->events = (pfd->events & ~_and) | _or;
157
Andy Green1963c9a2015-10-15 07:39:33 +0800158 if (context->protocols[0].callback(context, wsi,
Andy Green34f3dd22014-04-03 07:42:50 +0800159 LWS_CALLBACK_CHANGE_MODE_POLL_FD,
Andy Green1963c9a2015-10-15 07:39:33 +0800160 wsi->user_space, (void *) &pa, 0))
161 return -1;
Andy Green34f3dd22014-04-03 07:42:50 +0800162
163 /*
164 * if we changed something in this pollfd...
165 * ... and we're running in a different thread context
166 * than the service thread...
167 * ... and the service thread is waiting ...
168 * then cancel it to force a restart with our changed events
169 */
Andy Green87eeb0a2015-11-25 08:22:08 +0800170#if LWS_POSIX
171 if (pa.prev_events != pa.events)
172#endif
173 {
Andy Green34f3dd22014-04-03 07:42:50 +0800174
Andy Greena717df22014-04-11 13:14:37 +0800175 if (lws_plat_change_pollfd(context, wsi, pfd)) {
176 lwsl_info("%s failed\n", __func__);
Andy Green34f3dd22014-04-03 07:42:50 +0800177 return 1;
Andy Greena717df22014-04-11 13:14:37 +0800178 }
Andy Green34f3dd22014-04-03 07:42:50 +0800179
180 sampled_tid = context->service_tid;
181 if (sampled_tid) {
182 tid = context->protocols[0].callback(context, NULL,
183 LWS_CALLBACK_GET_THREAD_ID, NULL, NULL, 0);
Andy Green1963c9a2015-10-15 07:39:33 +0800184 if (tid == -1)
185 return -1;
Andy Green34f3dd22014-04-03 07:42:50 +0800186 if (tid != sampled_tid)
Andy Green62304762015-12-04 08:43:54 +0800187 lws_cancel_service(context);
Andy Green34f3dd22014-04-03 07:42:50 +0800188 }
189 }
190
Andy Green1963c9a2015-10-15 07:39:33 +0800191 if (context->protocols[0].callback(context, wsi,
192 LWS_CALLBACK_UNLOCK_POLL, wsi->user_space, (void *) &pa, 0))
193 return -1;
Andy Green34f3dd22014-04-03 07:42:50 +0800194
195 return 0;
196}
197
198
199/**
Andy Green62304762015-12-04 08:43:54 +0800200 * lws_callback_on_writable() - Request a callback when this socket
Andy Green34f3dd22014-04-03 07:42:50 +0800201 * becomes able to be written to without
202 * blocking
203 *
204 * @context: libwebsockets context
205 * @wsi: Websocket connection instance to get callback for
206 */
207
208LWS_VISIBLE int
Andy Green4b85c1d2015-12-04 11:08:32 +0800209lws_callback_on_writable(struct lws_context *context,
210 struct lws *wsi)
Andy Green34f3dd22014-04-03 07:42:50 +0800211{
Andy Green7df53c52014-10-22 15:37:28 +0800212#ifdef LWS_USE_HTTP2
Andy Green4b85c1d2015-12-04 11:08:32 +0800213 struct lws *network_wsi, *wsi2;
Andy Green7df53c52014-10-22 15:37:28 +0800214 int already;
215
216 lwsl_info("%s: %p\n", __func__, wsi);
217
218 if (wsi->mode != LWS_CONNMODE_HTTP2_SERVING)
219 goto network_sock;
220
221 if (wsi->u.http2.requested_POLLOUT) {
222 lwsl_info("already pending writable\n");
223 return 1;
224 }
225
Andy Green97ee57f2014-10-29 09:39:08 +0800226 if (wsi->u.http2.tx_credit <= 0) {
227 /*
228 * other side is not able to cope with us sending
229 * anything so no matter if we have POLLOUT on our side.
230 *
231 * Delay waiting for our POLLOUT until peer indicates he has
232 * space for more using tx window command in http2 layer
233 */
234 lwsl_info("%s: %p: waiting_tx_credit (%d)\n", __func__, wsi, wsi->u.http2.tx_credit);
235 wsi->u.http2.waiting_tx_credit = 1;
236 return 0;
237 }
238
Andy Green7df53c52014-10-22 15:37:28 +0800239 network_wsi = lws_http2_get_network_wsi(wsi);
240 already = network_wsi->u.http2.requested_POLLOUT;
241
242 /* mark everybody above him as requesting pollout */
243
244 wsi2 = wsi;
245 while (wsi2) {
246 wsi2->u.http2.requested_POLLOUT = 1;
247 lwsl_info("mark %p pending writable\n", wsi2);
248 wsi2 = wsi2->u.http2.parent_wsi;
249 }
250
251 /* for network action, act only on the network wsi */
252
253 wsi = network_wsi;
254 if (already)
255 return 1;
256network_sock:
257#endif
258
Andy Green8c0d3c02015-11-02 20:34:12 +0800259 (void)context;
Andy Green34f3dd22014-04-03 07:42:50 +0800260 if (lws_ext_callback_for_each_active(wsi,
261 LWS_EXT_CALLBACK_REQUEST_ON_WRITEABLE, NULL, 0))
262 return 1;
263
264 if (wsi->position_in_fds_table < 0) {
265 lwsl_err("%s: failed to find socket %d\n", __func__, wsi->sock);
266 return -1;
267 }
268
269 if (lws_change_pollfd(wsi, 0, LWS_POLLOUT))
270 return -1;
271
Andy Greena717df22014-04-11 13:14:37 +0800272 lws_libev_io(context, wsi, LWS_EV_START | LWS_EV_WRITE);
Andy Green34f3dd22014-04-03 07:42:50 +0800273
274 return 1;
275}
276
277/**
Andy Green62304762015-12-04 08:43:54 +0800278 * lws_callback_on_writable_all_protocol() - Request a callback for
Andy Green34f3dd22014-04-03 07:42:50 +0800279 * all connections using the given protocol when it
280 * becomes possible to write to each socket without
281 * blocking in turn.
282 *
283 * @protocol: Protocol whose connections will get callbacks
284 */
285
286LWS_VISIBLE int
Andy Green62304762015-12-04 08:43:54 +0800287lws_callback_on_writable_all_protocol(
Andy Green4b85c1d2015-12-04 11:08:32 +0800288 const struct lws_protocols *protocol)
Andy Green34f3dd22014-04-03 07:42:50 +0800289{
Andy Green4b85c1d2015-12-04 11:08:32 +0800290 struct lws_context *context = protocol->owning_server;
Andy Green34f3dd22014-04-03 07:42:50 +0800291 int n;
Andy Green4b85c1d2015-12-04 11:08:32 +0800292 struct lws *wsi;
Andy Green34f3dd22014-04-03 07:42:50 +0800293
294 for (n = 0; n < context->fds_count; n++) {
Bud Davis229bfec2015-01-30 10:13:01 +0800295 wsi = wsi_from_fd(context,context->fds[n].fd);
Andy Green34f3dd22014-04-03 07:42:50 +0800296 if (!wsi)
297 continue;
298 if (wsi->protocol == protocol)
Andy Green62304762015-12-04 08:43:54 +0800299 lws_callback_on_writable(context, wsi);
Andy Green34f3dd22014-04-03 07:42:50 +0800300 }
301
302 return 0;
303}