Don't destroy ev/uv loops if they haven't been created yet
[platform/upstream/libwebsockets.git] / lib / libuv.c
1 /*
2  * libwebsockets - small server side websockets and web server implementation
3  *
4  * Copyright (C) 2010-2016 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 void
25 lws_feature_status_libuv(struct lws_context_creation_info *info)
26 {
27         if (info->options & LWS_SERVER_OPTION_LIBUV)
28                 lwsl_notice("libuv support compiled in and enabled\n");
29         else
30                 lwsl_notice("libuv support compiled in but disabled\n");
31 }
32
33 static void
34 lws_accept_cb(uv_poll_t *watcher, int status, int revents)
35 {
36         struct lws_io_watcher *lws_io = container_of(watcher,
37                                         struct lws_io_watcher, uv_watcher);
38         struct lws_context *context = lws_io->context;
39         struct lws_pollfd eventfd;
40
41         if (status < 0)
42                 return;
43
44         eventfd.fd = watcher->io_watcher.fd;
45         eventfd.events = 0;
46         eventfd.revents = 0;//EV_NONE;
47         if (revents & UV_READABLE) {
48                 eventfd.events |= LWS_POLLIN;
49                 eventfd.revents |= LWS_POLLIN;
50         }
51         if (revents & UV_WRITABLE) {
52                 eventfd.events |= LWS_POLLOUT;
53                 eventfd.revents |= LWS_POLLOUT;
54         }
55         lws_service_fd(context, &eventfd);
56 }
57
58 LWS_VISIBLE void
59 lws_uv_sigint_cb(uv_loop_t *loop, uv_signal_t *watcher, int revents)
60 {
61     //ev_break(loop, EVBREAK_ALL);
62 }
63
64 LWS_VISIBLE int
65 lws_uv_sigint_cfg(struct lws_context *context, int use_uv_sigint,
66                   lws_uv_signal_cb_t *cb)
67 {
68         context->use_ev_sigint = use_uv_sigint;
69         if (cb)
70                 context->lws_uv_sigint_cb = cb;
71         else
72                 context->lws_uv_sigint_cb = &lws_uv_sigint_cb;
73
74         return 0;
75 }
76
77 static const int sigs[] = { SIGINT, SIGTERM, SIGSEGV, SIGFPE };
78
79 LWS_VISIBLE int
80 lws_uv_initloop(struct lws_context *context, uv_loop_t *loop, uv_signal_cb cb,
81                 int tsi)
82 {
83         struct lws_context_per_thread *pt = &context->pt[tsi];
84         struct lws *wsi = wsi_from_fd(context, pt->lserv_fd);
85         int status = 0, n;
86
87         if (!loop) {
88                 loop = lws_malloc(sizeof(*loop));
89                 uv_loop_init(loop);
90                 pt->ev_loop_foreign = 0;
91         } else
92                 pt->ev_loop_foreign = 1;
93
94         pt->io_loop_uv = loop;
95
96         assert(ARRAY_SIZE(sigs) <= ARRAY_SIZE(pt->signals));
97         for (n = 0; n < ARRAY_SIZE(sigs); n++) {
98                 uv_signal_init(loop, &pt->signals[n]);
99                 uv_signal_start(&pt->signals[n], cb, sigs[n]);
100         }
101
102         /*
103          * Initialize the accept wsi read watcher with the listening socket
104          * and register a callback for read operations
105          *
106          * We have to do it here because the uv loop(s) are not
107          * initialized until after context creation.
108          */
109         if (wsi) {
110                 wsi->w_read.context = context;
111                 uv_poll_init(pt->io_loop_uv, &wsi->w_read.uv_watcher, pt->lserv_fd);
112                 uv_poll_start(&wsi->w_read.uv_watcher, UV_READABLE, lws_accept_cb);
113         }
114
115         return status;
116 }
117
118 void
119 lws_libuv_destroyloop(struct lws_context *context, int tsi)
120 {
121         struct lws_context_per_thread *pt = &context->pt[tsi];
122         int m;
123
124         if (!(context->options & LWS_SERVER_OPTION_LIBUV))
125                 return;
126
127         if (!pt->io_loop_uv)
128                 return;
129
130         if (context->use_ev_sigint)
131                 uv_signal_stop(&pt->w_sigint.uv_watcher);
132         for (m = 0; m < ARRAY_SIZE(sigs); m++)
133                 uv_signal_stop(&pt->signals[m]);
134         if (!pt->ev_loop_foreign) {
135                 m = uv_loop_close(pt->io_loop_uv);
136                 lwsl_debug("%s: uv_loop_close: %d\n", __func__, m);
137                 lws_free(pt->io_loop_uv);
138         }
139 }
140
141 void
142 lws_libuv_accept(struct lws *wsi, int accept_fd)
143 {
144         struct lws_context *context = lws_get_context(wsi);
145         struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
146
147         if (!LWS_LIBUV_ENABLED(context))
148                 return;
149
150         lwsl_debug("%s: new wsi %p\n", __func__, wsi);
151
152         wsi->w_read.context = context;
153
154         uv_poll_init(pt->io_loop_uv, &wsi->w_read.uv_watcher, accept_fd);
155 }
156
157 void
158 lws_libuv_io(struct lws *wsi, int flags)
159 {
160         struct lws_context *context = lws_get_context(wsi);
161         struct lws_context_per_thread *pt = &wsi->context->pt[(int)wsi->tsi];
162         int current_events = wsi->w_read.uv_watcher.io_watcher.pevents &
163                              (UV_READABLE | UV_WRITABLE);
164         struct lws_io_watcher *w = &wsi->w_read;
165
166         if (!LWS_LIBUV_ENABLED(context))
167                 return;
168
169         lwsl_debug("%s: wsi: %p, flags:%d\n", __func__, wsi, flags);
170
171         if (!pt->io_loop_uv) {
172                 lwsl_info("%s: no io loop yet\n", __func__);
173                 return;
174         }
175
176         assert((flags & (LWS_EV_START | LWS_EV_STOP)) &&
177                (flags & (LWS_EV_READ | LWS_EV_WRITE)));
178
179         if (flags & LWS_EV_START) {
180                 if (flags & LWS_EV_WRITE)
181                         current_events |= UV_WRITABLE;
182
183                 if (flags & LWS_EV_READ)
184                         current_events |= UV_READABLE;
185
186                 uv_poll_start(&w->uv_watcher, current_events, lws_accept_cb);
187         } else {
188                 if (flags & LWS_EV_WRITE)
189                         current_events &= ~UV_WRITABLE;
190
191                 if (flags & LWS_EV_READ)
192                         current_events &= ~UV_READABLE;
193
194                 if (!(current_events & (UV_READABLE | UV_WRITABLE)))
195                         uv_poll_stop(&w->uv_watcher);
196                 else
197                         uv_poll_start(&w->uv_watcher, current_events,
198                                       lws_accept_cb);
199         }
200 }
201
202 int
203 lws_libuv_init_fd_table(struct lws_context *context)
204 {
205         int n;
206
207         if (!LWS_LIBUV_ENABLED(context))
208                 return 0;
209
210         for (n = 0; n < context->count_threads; n++) {
211                 context->pt[n].w_sigint.context = context;
212         }
213
214         return 1;
215 }
216
217 LWS_VISIBLE void
218 lws_libuv_run(const struct lws_context *context, int tsi)
219 {
220         if (context->pt[tsi].io_loop_uv && LWS_LIBUV_ENABLED(context))
221                 uv_run(context->pt[tsi].io_loop_uv, 0);
222 }
223
224 static void
225 lws_libuv_kill(const struct lws_context *context)
226 {
227         int n;
228
229         for (n = 0; n < context->count_threads; n++)
230                 if (context->pt[n].io_loop_uv && LWS_LIBUV_ENABLED(context))
231                         uv_stop(context->pt[n].io_loop_uv);
232 }
233
234 /*
235  * This does not actually stop the event loop.  The reason is we have to pass
236  * libuv handle closures through its event loop.  So this tries to close all
237  * wsi, and set a flag; when all the wsi closures are finalized then we
238  * actually stop the libuv event loops.
239  */
240
241 LWS_VISIBLE void
242 lws_libuv_stop(struct lws_context *context)
243 {
244         struct lws_context_per_thread *pt;
245         int n, m;
246
247         context->requested_kill = 1;
248
249         m = context->count_threads;
250         context->being_destroyed = 1;
251
252         while (m--) {
253                 pt = &context->pt[m];
254
255                 for (n = 0; (unsigned int)n < context->pt[m].fds_count; n++) {
256                         struct lws *wsi = wsi_from_fd(context, pt->fds[n].fd);
257                         if (!wsi)
258                                 continue;
259
260                         lws_close_free_wsi(wsi,
261                                 LWS_CLOSE_STATUS_NOSTATUS_CONTEXT_DESTROY
262                                 /* no protocol close */);
263                         n--;
264                 }
265         }
266
267         if (context->count_wsi_allocated == 0)
268                 lws_libuv_kill(context);
269 }
270
271 LWS_VISIBLE uv_loop_t *
272 lws_uv_getloop(struct lws_context *context, int tsi)
273 {
274         if (context->pt[tsi].io_loop_uv && LWS_LIBUV_ENABLED(context))
275                 return context->pt[tsi].io_loop_uv;
276
277         return NULL;
278 }
279
280 static void
281 lws_libuv_closewsi(uv_handle_t* handle)
282 {
283         struct lws *n = NULL, *wsi = (struct lws *)(((void *)handle) -
284                           (void *)(&n->w_read.uv_watcher));
285         struct lws_context *context = lws_get_context(wsi);
286
287         lws_close_free_wsi_final(wsi);
288
289         if (context->requested_kill && context->count_wsi_allocated == 0)
290                 lws_libuv_kill(context);
291 }
292
293 void
294 lws_libuv_closehandle(struct lws *wsi)
295 {
296         struct lws_context *context = lws_get_context(wsi);
297
298         /* required to defer actual deletion until libuv has processed it */
299
300         uv_close((uv_handle_t*)&wsi->w_read.uv_watcher, lws_libuv_closewsi);
301
302         if (context->requested_kill && context->count_wsi_allocated == 0)
303                 lws_libuv_kill(context);
304 }