raw: take care about same vh protocol linked list
[platform/upstream/libwebsockets.git] / lib / pollfd.c
1 /*
2  * libwebsockets - small server side websockets and web server implementation
3  *
4  * Copyright (C) 2010-2015 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
24 int
25 _lws_change_pollfd(struct lws *wsi, int _and, int _or, struct lws_pollargs *pa)
26 {
27         struct lws_context_per_thread *pt;
28         struct lws_context *context;
29         int ret = 0, pa_events = 1;
30         struct lws_pollfd *pfd;
31         int sampled_tid, tid;
32
33         if (!wsi || wsi->position_in_fds_table < 0)
34                 return 0;
35
36         if (wsi->handling_pollout && !_and && _or == LWS_POLLOUT) {
37                 /*
38                  * Happening alongside service thread handling POLLOUT.
39                  * The danger is when he is finished, he will disable POLLOUT,
40                  * countermanding what we changed here.
41                  *
42                  * Instead of changing the fds, inform the service thread
43                  * what happened, and ask it to leave POLLOUT active on exit
44                  */
45                 wsi->leave_pollout_active = 1;
46                 /*
47                  * by definition service thread is not in poll wait, so no need
48                  * to cancel service
49                  */
50
51                 lwsl_debug("%s: using leave_pollout_active\n", __func__);
52
53                 return 0;
54         }
55
56         context = wsi->context;
57         pt = &context->pt[(int)wsi->tsi];
58         assert(wsi->position_in_fds_table >= 0 &&
59                wsi->position_in_fds_table < pt->fds_count);
60
61         pfd = &pt->fds[wsi->position_in_fds_table];
62         pa->fd = wsi->desc.sockfd;
63         pa->prev_events = pfd->events;
64         pa->events = pfd->events = (pfd->events & ~_and) | _or;
65
66         //lwsl_notice("%s: wsi %p, posin %d. from %d -> %d\n", __func__, wsi, wsi->position_in_fds_table, pa->prev_events, pa->events);
67
68
69         if (wsi->http2_substream)
70                 return 0;
71
72         if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_CHANGE_MODE_POLL_FD,
73                                            wsi->user_space, (void *)pa, 0)) {
74                 ret = -1;
75                 goto bail;
76         }
77
78         if (_and & LWS_POLLIN) {
79                 lws_libev_io(wsi, LWS_EV_STOP | LWS_EV_READ);
80                 lws_libuv_io(wsi, LWS_EV_STOP | LWS_EV_READ);
81                 lws_libevent_io(wsi, LWS_EV_STOP | LWS_EV_READ);
82         }
83         if (_or & LWS_POLLIN) {
84                 lws_libev_io(wsi, LWS_EV_START | LWS_EV_READ);
85                 lws_libuv_io(wsi, LWS_EV_START | LWS_EV_READ);
86                 lws_libevent_io(wsi, LWS_EV_START | LWS_EV_READ);
87         }
88         if (_and & LWS_POLLOUT) {
89                 lws_libev_io(wsi, LWS_EV_STOP | LWS_EV_WRITE);
90                 lws_libuv_io(wsi, LWS_EV_STOP | LWS_EV_WRITE);
91                 lws_libevent_io(wsi, LWS_EV_STOP | LWS_EV_WRITE);
92         }
93         if (_or & LWS_POLLOUT) {
94                 lws_libev_io(wsi, LWS_EV_START | LWS_EV_WRITE);
95                 lws_libuv_io(wsi, LWS_EV_START | LWS_EV_WRITE);
96                 lws_libevent_io(wsi, LWS_EV_START | LWS_EV_WRITE);
97         }
98
99         /*
100          * if we changed something in this pollfd...
101          *   ... and we're running in a different thread context
102          *     than the service thread...
103          *       ... and the service thread is waiting ...
104          *         then cancel it to force a restart with our changed events
105          */
106 #if LWS_POSIX
107         pa_events = pa->prev_events != pa->events;
108 #endif
109
110         if (pa_events) {
111
112                 if (lws_plat_change_pollfd(context, wsi, pfd)) {
113                         lwsl_info("%s failed\n", __func__);
114                         ret = -1;
115                         goto bail;
116                 }
117
118                 sampled_tid = context->service_tid;
119                 if (sampled_tid) {
120                         tid = wsi->vhost->protocols[0].callback(wsi,
121                                      LWS_CALLBACK_GET_THREAD_ID, NULL, NULL, 0);
122                         if (tid == -1) {
123                                 ret = -1;
124                                 goto bail;
125                         }
126                         if (tid != sampled_tid)
127                                 lws_cancel_service_pt(wsi);
128                 }
129         }
130 bail:
131         return ret;
132 }
133
134 #ifndef LWS_NO_SERVER
135 static void
136 lws_accept_modulation(struct lws_context_per_thread *pt, int allow)
137 {
138 // multithread listen seems broken
139 #if 0
140         struct lws_vhost *vh = context->vhost_list;
141         struct lws_pollargs pa1;
142
143         while (vh) {
144                 if (allow)
145                         _lws_change_pollfd(pt->wsi_listening,
146                                            0, LWS_POLLIN, &pa1);
147                 else
148                         _lws_change_pollfd(pt->wsi_listening,
149                                            LWS_POLLIN, 0, &pa1);
150                 vh = vh->vhost_next;
151         }
152 #endif
153 }
154 #endif
155
156 int
157 insert_wsi_socket_into_fds(struct lws_context *context, struct lws *wsi)
158 {
159         struct lws_pollargs pa = { wsi->desc.sockfd, LWS_POLLIN, 0 };
160         struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
161         int ret = 0;
162
163
164         lwsl_debug("%s: %p: tsi=%d, sock=%d, pos-in-fds=%d\n",
165                   __func__, wsi, wsi->tsi, wsi->desc.sockfd, pt->fds_count);
166
167         if ((unsigned int)pt->fds_count >= context->fd_limit_per_thread) {
168                 lwsl_err("Too many fds (%d vs %d)\n", context->max_fds,
169                                 context->fd_limit_per_thread    );
170                 return 1;
171         }
172
173 #if !defined(_WIN32) && !defined(LWS_WITH_ESP8266)
174         if (wsi->desc.sockfd >= context->max_fds) {
175                 lwsl_err("Socket fd %d is too high (%d)\n",
176                          wsi->desc.sockfd, context->max_fds);
177                 return 1;
178         }
179 #endif
180
181         assert(wsi);
182         assert(wsi->vhost);
183         assert(lws_socket_is_valid(wsi->desc.sockfd));
184
185         if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_LOCK_POLL,
186                                            wsi->user_space, (void *) &pa, 1))
187                 return -1;
188
189         lws_pt_lock(pt);
190         pt->count_conns++;
191         insert_wsi(context, wsi);
192 #if defined(LWS_WITH_ESP8266)
193         if (wsi->position_in_fds_table == -1)
194 #endif
195                 wsi->position_in_fds_table = pt->fds_count;
196
197         // lwsl_notice("%s: %p: setting posinfds %d\n", __func__, wsi, wsi->position_in_fds_table);
198
199         pt->fds[wsi->position_in_fds_table].fd = wsi->desc.sockfd;
200 #if LWS_POSIX
201         pt->fds[wsi->position_in_fds_table].events = LWS_POLLIN;
202 #else
203         pt->fds[wsi->position_in_fds_table].events = 0; // LWS_POLLIN;
204 #endif
205         pa.events = pt->fds[pt->fds_count].events;
206
207         lws_plat_insert_socket_into_fds(context, wsi);
208
209         /* external POLL support via protocol 0 */
210         if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_ADD_POLL_FD,
211                                            wsi->user_space, (void *) &pa, 0))
212                 ret =  -1;
213 #ifndef LWS_NO_SERVER
214         /* if no more room, defeat accepts on this thread */
215         if ((unsigned int)pt->fds_count == context->fd_limit_per_thread - 1)
216                 lws_accept_modulation(pt, 0);
217 #endif
218         lws_pt_unlock(pt);
219
220         if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_UNLOCK_POLL,
221                                            wsi->user_space, (void *)&pa, 1))
222                 ret = -1;
223
224         return ret;
225 }
226
227 int
228 remove_wsi_socket_from_fds(struct lws *wsi)
229 {
230         struct lws_context *context = wsi->context;
231         struct lws_pollargs pa = { wsi->desc.sockfd, 0, 0 };
232 #if !defined(LWS_WITH_ESP8266)
233         struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
234         struct lws *end_wsi;
235         int v;
236 #endif
237         int m, ret = 0;
238
239 #if !defined(_WIN32) && !defined(LWS_WITH_ESP8266)
240         if (wsi->desc.sockfd > context->max_fds) {
241                 lwsl_err("fd %d too high (%d)\n", wsi->desc.sockfd, context->max_fds);
242                 return 1;
243         }
244 #endif
245
246         if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_LOCK_POLL,
247                                            wsi->user_space, (void *)&pa, 1))
248                 return -1;
249
250         lws_same_vh_protocol_remove(wsi);
251
252         /* the guy who is to be deleted's slot index in pt->fds */
253         m = wsi->position_in_fds_table;
254         
255 #if !defined(LWS_WITH_ESP8266)
256         lws_libev_io(wsi, LWS_EV_STOP | LWS_EV_READ | LWS_EV_WRITE | LWS_EV_PREPARE_DELETION);
257         lws_libuv_io(wsi, LWS_EV_STOP | LWS_EV_READ | LWS_EV_WRITE | LWS_EV_PREPARE_DELETION);
258
259         lws_pt_lock(pt);
260
261         lwsl_debug("%s: wsi=%p, sock=%d, fds pos=%d, end guy pos=%d, endfd=%d\n",
262                   __func__, wsi, wsi->desc.sockfd, wsi->position_in_fds_table,
263                   pt->fds_count, pt->fds[pt->fds_count].fd);
264
265         /* have the last guy take up the now vacant slot */
266         pt->fds[m] = pt->fds[pt->fds_count - 1];
267 #endif
268         /* this decrements pt->fds_count */
269         lws_plat_delete_socket_from_fds(context, wsi, m);
270 #if !defined(LWS_WITH_ESP8266)
271         v = (int) pt->fds[m].fd;
272         /* end guy's "position in fds table" is now the deletion guy's old one */
273         end_wsi = wsi_from_fd(context, v);
274         if (!end_wsi) {
275                 lwsl_err("no wsi found for sock fd %d at pos %d, pt->fds_count=%d\n", (int)pt->fds[m].fd, m, pt->fds_count);
276                 assert(0);
277         } else
278                 end_wsi->position_in_fds_table = m;
279
280         /* deletion guy's lws_lookup entry needs nuking */
281         delete_from_fd(context, wsi->desc.sockfd);
282         /* removed wsi has no position any more */
283         wsi->position_in_fds_table = -1;
284
285         /* remove also from external POLL support via protocol 0 */
286         if (lws_socket_is_valid(wsi->desc.sockfd))
287                 if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_DEL_POLL_FD,
288                                                    wsi->user_space, (void *) &pa, 0))
289                         ret = -1;
290 #ifndef LWS_NO_SERVER
291         if (!context->being_destroyed)
292                 /* if this made some room, accept connects on this thread */
293                 if ((unsigned int)pt->fds_count < context->fd_limit_per_thread - 1)
294                         lws_accept_modulation(pt, 1);
295 #endif
296         lws_pt_unlock(pt);
297
298         if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_UNLOCK_POLL,
299                                            wsi->user_space, (void *) &pa, 1))
300                 ret = -1;
301 #endif
302         return ret;
303 }
304
305 int
306 lws_change_pollfd(struct lws *wsi, int _and, int _or)
307 {
308         struct lws_context_per_thread *pt;
309         struct lws_context *context;
310         struct lws_pollargs pa;
311         int ret = 0;
312
313         if (!wsi || !wsi->protocol || wsi->position_in_fds_table < 0)
314                 return 1;
315
316         context = lws_get_context(wsi);
317         if (!context)
318                 return 1;
319
320         if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_LOCK_POLL,
321                                            wsi->user_space,  (void *) &pa, 0))
322                 return -1;
323
324         pt = &context->pt[(int)wsi->tsi];
325
326         lws_pt_lock(pt);
327         ret = _lws_change_pollfd(wsi, _and, _or, &pa);
328         lws_pt_unlock(pt);
329         if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_UNLOCK_POLL,
330                                            wsi->user_space, (void *) &pa, 0))
331                 ret = -1;
332
333         return ret;
334 }
335
336 LWS_VISIBLE int
337 lws_callback_on_writable(struct lws *wsi)
338 {
339 #ifdef LWS_USE_HTTP2
340         struct lws *network_wsi, *wsi2;
341         int already;
342 #endif
343
344         if (wsi->state == LWSS_SHUTDOWN)
345                 return 0;
346
347         if (wsi->socket_is_permanently_unusable)
348                 return 0;
349
350 #ifdef LWS_USE_HTTP2
351         lwsl_info("%s: %p\n", __func__, wsi);
352
353         if (wsi->mode != LWSCM_HTTP2_SERVING)
354                 goto network_sock;
355
356         if (wsi->u.http2.requested_POLLOUT) {
357                 lwsl_info("already pending writable\n");
358                 return 1;
359         }
360
361         if (wsi->u.http2.tx_credit <= 0) {
362                 /*
363                  * other side is not able to cope with us sending
364                  * anything so no matter if we have POLLOUT on our side.
365                  *
366                  * Delay waiting for our POLLOUT until peer indicates he has
367                  * space for more using tx window command in http2 layer
368                  */
369                 lwsl_info("%s: %p: waiting_tx_credit (%d)\n", __func__, wsi,
370                           wsi->u.http2.tx_credit);
371                 wsi->u.http2.waiting_tx_credit = 1;
372                 return 0;
373         }
374
375         network_wsi = lws_http2_get_network_wsi(wsi);
376         already = network_wsi->u.http2.requested_POLLOUT;
377
378         /* mark everybody above him as requesting pollout */
379
380         wsi2 = wsi;
381         while (wsi2) {
382                 wsi2->u.http2.requested_POLLOUT = 1;
383                 lwsl_info("mark %p pending writable\n", wsi2);
384                 wsi2 = wsi2->u.http2.parent_wsi;
385         }
386
387         /* for network action, act only on the network wsi */
388
389         wsi = network_wsi;
390         if (already)
391                 return 1;
392 network_sock:
393 #endif
394
395         if (lws_ext_cb_active(wsi, LWS_EXT_CB_REQUEST_ON_WRITEABLE, NULL, 0))
396                 return 1;
397
398         if (wsi->position_in_fds_table < 0) {
399                 lwsl_err("%s: failed to find socket %d\n", __func__, wsi->desc.sockfd);
400                 return -1;
401         }
402
403         if (lws_change_pollfd(wsi, 0, LWS_POLLOUT))
404                 return -1;
405
406         return 1;
407 }
408
409 /*
410  * stitch protocol choice into the vh protocol linked list
411  * We always insert ourselves at the start of the list
412  *
413  * X <-> B
414  * X <-> pAn <-> pB
415  *
416  * Illegal to attach more than once without detach inbetween
417  */
418 void
419 lws_same_vh_protocol_insert(struct lws *wsi, int n)
420 {
421         //lwsl_err("%s: pre insert vhost start wsi %p, that wsi prev == %p\n",
422         //              __func__,
423         //              wsi->vhost->same_vh_protocol_list[n],
424         //              wsi->same_vh_protocol_prev);
425
426         if (wsi->same_vh_protocol_prev || wsi->same_vh_protocol_next) {
427                 lwsl_err("Attempted to attach wsi twice to same vh prot\n");
428                 assert(0);
429         }
430
431         wsi->same_vh_protocol_prev = /* guy who points to us */
432                 &wsi->vhost->same_vh_protocol_list[n];
433         wsi->same_vh_protocol_next = /* old first guy is our next */
434                         wsi->vhost->same_vh_protocol_list[n];
435         /* we become the new first guy */
436         wsi->vhost->same_vh_protocol_list[n] = wsi;
437
438         if (wsi->same_vh_protocol_next)
439                 /* old first guy points back to us now */
440                 wsi->same_vh_protocol_next->same_vh_protocol_prev =
441                                 &wsi->same_vh_protocol_next;
442 }
443
444 void
445 lws_same_vh_protocol_remove(struct lws *wsi)
446 {
447         /*
448          * detach ourselves from vh protocol list if we're on one
449          * A -> B -> C
450          * A -> C , or, B -> C, or A -> B
451          *
452          * OK to call on already-detached wsi
453          */
454         lwsl_info("%s: removing same prot wsi %p\n", __func__, wsi);
455
456         if (wsi->same_vh_protocol_prev) {
457                 assert (*(wsi->same_vh_protocol_prev) == wsi);
458                 lwsl_info("have prev %p, setting him to our next %p\n",
459                          wsi->same_vh_protocol_prev,
460                          wsi->same_vh_protocol_next);
461
462                 /* guy who pointed to us should point to our next */
463                 *(wsi->same_vh_protocol_prev) = wsi->same_vh_protocol_next;
464         }
465
466         /* our next should point back to our prev */
467         if (wsi->same_vh_protocol_next) {
468                 wsi->same_vh_protocol_next->same_vh_protocol_prev =
469                                 wsi->same_vh_protocol_prev;
470         }
471
472         wsi->same_vh_protocol_prev = NULL;
473         wsi->same_vh_protocol_next = NULL;
474 }
475
476
477 LWS_VISIBLE int
478 lws_callback_on_writable_all_protocol_vhost(const struct lws_vhost *vhost,
479                                       const struct lws_protocols *protocol)
480 {
481         struct lws *wsi;
482
483         if (protocol < vhost->protocols ||
484             protocol >= (vhost->protocols + vhost->count_protocols)) {
485
486                 lwsl_err("%s: protocol %p is not from vhost %p (%p - %p)\n",
487                         __func__, protocol, vhost->protocols, vhost,
488                         (vhost->protocols + vhost->count_protocols));
489
490                 return -1;
491         }
492
493         wsi = vhost->same_vh_protocol_list[protocol - vhost->protocols];
494         //lwsl_notice("%s: protocol %p, start wsi %p\n", __func__, protocol, wsi);
495         while (wsi) {
496                 //lwsl_notice("%s: protocol %p, this wsi %p (wsi->protocol=%p)\n",
497                 //              __func__, protocol, wsi, wsi->protocol);
498                 assert(wsi->protocol == protocol);
499                 assert(*wsi->same_vh_protocol_prev == wsi);
500                 if (wsi->same_vh_protocol_next) {
501                 //      lwsl_err("my next says %p\n", wsi->same_vh_protocol_next);
502                 //      lwsl_err("my next's prev says %p\n",
503                 //              wsi->same_vh_protocol_next->same_vh_protocol_prev);
504                         assert(wsi->same_vh_protocol_next->same_vh_protocol_prev == &wsi->same_vh_protocol_next);
505                 }
506                 //lwsl_notice("  apv: %p\n", wsi);
507                 lws_callback_on_writable(wsi);
508                 wsi = wsi->same_vh_protocol_next;
509         }
510
511         return 0;
512 }
513
514 LWS_VISIBLE int
515 lws_callback_on_writable_all_protocol(const struct lws_context *context,
516                                       const struct lws_protocols *protocol)
517 {
518         struct lws_vhost *vhost = context->vhost_list;
519         int n;
520
521         while (vhost) {
522                 for (n = 0; n < vhost->count_protocols; n++)
523                         if (protocol->callback ==
524                             vhost->protocols[n].callback &&
525                             !strcmp(protocol->name, vhost->protocols[n].name))
526                                 break;
527                 if (n != vhost->count_protocols)
528                         lws_callback_on_writable_all_protocol_vhost(
529                                 vhost, &vhost->protocols[n]);
530
531                 vhost = vhost->vhost_next;
532         }
533
534         return 0;
535 }