libuv integration
[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 (context->use_ev_sigint)
128                 uv_signal_stop(&pt->w_sigint.uv_watcher);
129         for (m = 0; m < ARRAY_SIZE(sigs); m++)
130                 uv_signal_stop(&pt->signals[m]);
131         if (!pt->ev_loop_foreign) {
132                 m = uv_loop_close(pt->io_loop_uv);
133                 lwsl_debug("%s: uv_loop_close: %d\n", __func__, m);
134                 lws_free(pt->io_loop_uv);
135         }
136 }
137
138 void
139 lws_libuv_accept(struct lws *wsi, int accept_fd)
140 {
141         struct lws_context *context = lws_get_context(wsi);
142         struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
143
144         if (!LWS_LIBUV_ENABLED(context))
145                 return;
146
147         lwsl_debug("%s: new wsi %p\n", __func__, wsi);
148
149         wsi->w_read.context = context;
150
151         uv_poll_init(pt->io_loop_uv, &wsi->w_read.uv_watcher, accept_fd);
152 }
153
154 void
155 lws_libuv_io(struct lws *wsi, int flags)
156 {
157         struct lws_context *context = lws_get_context(wsi);
158         struct lws_context_per_thread *pt = &wsi->context->pt[(int)wsi->tsi];
159         int current_events = wsi->w_read.uv_watcher.io_watcher.pevents &
160                              (UV_READABLE | UV_WRITABLE);
161         struct lws_io_watcher *w = &wsi->w_read;
162
163         if (!LWS_LIBUV_ENABLED(context))
164                 return;
165
166         lwsl_debug("%s: wsi: %p, flags:%d\n", __func__, wsi, flags);
167
168         if (!pt->io_loop_uv) {
169                 lwsl_info("%s: no io loop yet\n", __func__);
170                 return;
171         }
172
173         assert((flags & (LWS_EV_START | LWS_EV_STOP)) &&
174                (flags & (LWS_EV_READ | LWS_EV_WRITE)));
175
176         if (flags & LWS_EV_START) {
177                 if (flags & LWS_EV_WRITE)
178                         current_events |= UV_WRITABLE;
179
180                 if (flags & LWS_EV_READ)
181                         current_events |= UV_READABLE;
182
183                 uv_poll_start(&w->uv_watcher, current_events, lws_accept_cb);
184         } else {
185                 if (flags & LWS_EV_WRITE)
186                         current_events &= ~UV_WRITABLE;
187
188                 if (flags & LWS_EV_READ)
189                         current_events &= ~UV_READABLE;
190
191                 if (!(current_events & (UV_READABLE | UV_WRITABLE)))
192                         uv_poll_stop(&w->uv_watcher);
193                 else
194                         uv_poll_start(&w->uv_watcher, current_events,
195                                       lws_accept_cb);
196         }
197 }
198
199 int
200 lws_libuv_init_fd_table(struct lws_context *context)
201 {
202         int n;
203
204         if (!LWS_LIBUV_ENABLED(context))
205                 return 0;
206
207         for (n = 0; n < context->count_threads; n++) {
208                 context->pt[n].w_sigint.context = context;
209         }
210
211         return 1;
212 }
213
214 LWS_VISIBLE void
215 lws_libuv_run(const struct lws_context *context, int tsi)
216 {
217         if (context->pt[tsi].io_loop_uv && LWS_LIBUV_ENABLED(context))
218                 uv_run(context->pt[tsi].io_loop_uv, 0);
219 }
220
221 static void
222 lws_libuv_kill(const struct lws_context *context)
223 {
224         int n;
225
226         for (n = 0; n < context->count_threads; n++)
227                 if (context->pt[n].io_loop_uv && LWS_LIBUV_ENABLED(context))
228                         uv_stop(context->pt[n].io_loop_uv);
229 }
230
231 /*
232  * This does not actually stop the event loop.  The reason is we have to pass
233  * libuv handle closures through its event loop.  So this tries to close all
234  * wsi, and set a flag; when all the wsi closures are finalized then we
235  * actually stop the libuv event loops.
236  */
237
238 LWS_VISIBLE void
239 lws_libuv_stop(struct lws_context *context)
240 {
241         struct lws_context_per_thread *pt;
242         int n, m;
243
244         context->requested_kill = 1;
245
246         m = context->count_threads;
247         context->being_destroyed = 1;
248
249         while (m--) {
250                 pt = &context->pt[m];
251
252                 for (n = 0; (unsigned int)n < context->pt[m].fds_count; n++) {
253                         struct lws *wsi = wsi_from_fd(context, pt->fds[n].fd);
254                         if (!wsi)
255                                 continue;
256
257                         lws_close_free_wsi(wsi,
258                                 LWS_CLOSE_STATUS_NOSTATUS_CONTEXT_DESTROY
259                                 /* no protocol close */);
260                         n--;
261                 }
262         }
263
264         if (context->count_wsi_allocated == 0)
265                 lws_libuv_kill(context);
266 }
267
268 LWS_VISIBLE uv_loop_t *
269 lws_uv_getloop(struct lws_context *context, int tsi)
270 {
271         if (context->pt[tsi].io_loop_uv && LWS_LIBUV_ENABLED(context))
272                 return context->pt[tsi].io_loop_uv;
273
274         return NULL;
275 }
276
277 static void
278 lws_libuv_closewsi(uv_handle_t* handle)
279 {
280         struct lws *n = NULL, *wsi = (struct lws *)(((void *)handle) -
281                           (void *)(&n->w_read.uv_watcher));
282         struct lws_context *context = lws_get_context(wsi);
283
284         lws_close_free_wsi_final(wsi);
285
286         if (context->requested_kill && context->count_wsi_allocated == 0)
287                 lws_libuv_kill(context);
288 }
289
290 void
291 lws_libuv_closehandle(struct lws *wsi)
292 {
293         struct lws_context *context = lws_get_context(wsi);
294
295         /* required to defer actual deletion until libuv has processed it */
296
297         uv_close((uv_handle_t*)&wsi->w_read.uv_watcher, lws_libuv_closewsi);
298
299         if (context->requested_kill && context->count_wsi_allocated == 0)
300                 lws_libuv_kill(context);
301 }