2 * libwebsockets - small server side websockets and web server implementation
4 * Copyright (C) 2010-2016 Andy Green <andy@warmcat.com>
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.
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.
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,
22 #include "private-libwebsockets.h"
25 lws_feature_status_libuv(struct lws_context_creation_info *info)
27 if (lws_check_opt(info->options, LWS_SERVER_OPTION_LIBUV))
28 lwsl_notice("libuv support compiled in and enabled\n");
30 lwsl_notice("libuv support compiled in but disabled\n");
34 lws_uv_idle(uv_idle_t *handle
35 #if UV_VERSION_MAJOR == 0
40 struct lws_context_per_thread *pt = lws_container_of(handle,
41 struct lws_context_per_thread, uv_idle);
43 lwsl_debug("%s\n", __func__);
46 * is there anybody with pending stuff that needs service forcing?
48 if (!lws_service_adjust_timeout(pt->context, 1, pt->tid)) {
49 /* -1 timeout means just do forced service */
50 lws_plat_service_tsi(pt->context, -1, pt->tid);
51 /* still somebody left who wants forced service? */
52 if (!lws_service_adjust_timeout(pt->context, 1, pt->tid))
53 /* yes... come back again later */
54 lwsl_debug("%s: done again\n", __func__);
58 /* there is nobody who needs service forcing, shut down idle */
61 lwsl_debug("%s: done stop\n", __func__);
65 lws_io_cb(uv_poll_t *watcher, int status, int revents)
67 struct lws_io_watcher *lws_io = lws_container_of(watcher,
68 struct lws_io_watcher, uv_watcher);
69 struct lws *wsi = lws_container_of(lws_io, struct lws, w_read);
70 struct lws_context *context = lws_io->context;
71 struct lws_pollfd eventfd;
73 #if defined(WIN32) || defined(_WIN32)
74 eventfd.fd = watcher->socket;
76 eventfd.fd = watcher->io_watcher.fd;
82 /* at this point status will be an UV error, like UV_EBADF,
83 we treat all errors as LWS_POLLHUP */
85 /* you might want to return; instead of servicing the fd in some cases */
86 if (status == UV_EAGAIN)
89 eventfd.events |= LWS_POLLHUP;
90 eventfd.revents |= LWS_POLLHUP;
92 if (revents & UV_READABLE) {
93 eventfd.events |= LWS_POLLIN;
94 eventfd.revents |= LWS_POLLIN;
96 if (revents & UV_WRITABLE) {
97 eventfd.events |= LWS_POLLOUT;
98 eventfd.revents |= LWS_POLLOUT;
101 lws_service_fd(context, &eventfd);
103 uv_idle_start(&context->pt[(int)wsi->tsi].uv_idle, lws_uv_idle);
107 lws_uv_sigint_cb(uv_signal_t *watcher, int signum)
109 lwsl_err("internal signal handler caught signal %d\n", signum);
110 lws_libuv_stop(watcher->data);
114 lws_uv_sigint_cfg(struct lws_context *context, int use_uv_sigint,
117 context->use_ev_sigint = use_uv_sigint;
119 context->lws_uv_sigint_cb = cb;
121 context->lws_uv_sigint_cb = &lws_uv_sigint_cb;
127 lws_uv_timeout_cb(uv_timer_t *timer
128 #if UV_VERSION_MAJOR == 0
133 struct lws_context_per_thread *pt = lws_container_of(timer,
134 struct lws_context_per_thread, uv_timeout_watcher);
136 if (pt->context->requested_kill)
139 lwsl_debug("%s\n", __func__);
141 lws_service_fd_tsi(pt->context, NULL, pt->tid);
144 static const int sigs[] = { SIGINT, SIGTERM, SIGSEGV, SIGFPE };
147 lws_uv_initloop(struct lws_context *context, uv_loop_t *loop, int tsi)
149 struct lws_context_per_thread *pt = &context->pt[tsi];
150 struct lws_vhost *vh = context->vhost_list;
154 loop = lws_malloc(sizeof(*loop));
155 #if UV_VERSION_MAJOR > 0
158 lwsl_err("This libuv is too old to work...\n");
161 pt->ev_loop_foreign = 0;
163 lwsl_notice(" Using foreign event loop...\n");
164 pt->ev_loop_foreign = 1;
167 pt->io_loop_uv = loop;
168 uv_idle_init(loop, &pt->uv_idle);
170 if (pt->context->use_ev_sigint) {
171 assert(ARRAY_SIZE(sigs) <= ARRAY_SIZE(pt->signals));
172 for (n = 0; n < ARRAY_SIZE(sigs); n++) {
173 uv_signal_init(loop, &pt->signals[n]);
174 pt->signals[n].data = pt->context;
175 uv_signal_start(&pt->signals[n],
176 context->lws_uv_sigint_cb, sigs[n]);
181 * Initialize the accept wsi read watcher with all the listening sockets
182 * and register a callback for read operations
184 * We have to do it here because the uv loop(s) are not
185 * initialized until after context creation.
189 vh->lserv_wsi->w_read.context = context;
190 n = uv_poll_init_socket(pt->io_loop_uv,
191 &vh->lserv_wsi->w_read.uv_watcher,
192 vh->lserv_wsi->sock);
194 lwsl_err("uv_poll_init failed %d, sockfd=%p\n",
195 n, (void *)(long)vh->lserv_wsi->sock);
199 lws_libuv_io(vh->lserv_wsi, LWS_EV_START | LWS_EV_READ);
204 uv_timer_init(pt->io_loop_uv, &pt->uv_timeout_watcher);
205 uv_timer_start(&pt->uv_timeout_watcher, lws_uv_timeout_cb, 10, 1000);
210 static void lws_uv_close_cb(uv_handle_t *handle)
212 //lwsl_err("%s: handle %p\n", __func__, handle);
215 static void lws_uv_walk_cb(uv_handle_t *handle, void *arg)
217 uv_close(handle, lws_uv_close_cb);
221 lws_libuv_destroyloop(struct lws_context *context, int tsi)
223 struct lws_context_per_thread *pt = &context->pt[tsi];
226 if (!lws_check_opt(context->options, LWS_SERVER_OPTION_LIBUV))
232 if (context->use_ev_sigint) {
233 uv_signal_stop(&pt->w_sigint.uv_watcher);
235 for (m = 0; m < ARRAY_SIZE(sigs); m++) {
236 uv_signal_stop(&pt->signals[m]);
237 uv_close((uv_handle_t *)&pt->signals[m], lws_uv_close_cb);
241 uv_timer_stop(&pt->uv_timeout_watcher);
242 uv_close((uv_handle_t *)&pt->uv_timeout_watcher, lws_uv_close_cb);
244 uv_idle_stop(&pt->uv_idle);
245 uv_close((uv_handle_t *)&pt->uv_idle, lws_uv_close_cb);
247 while (budget-- && uv_run(pt->io_loop_uv, UV_RUN_NOWAIT))
250 if (pt->ev_loop_foreign)
253 uv_stop(pt->io_loop_uv);
255 uv_walk(pt->io_loop_uv, lws_uv_walk_cb, NULL);
257 while (uv_run(pt->io_loop_uv, UV_RUN_NOWAIT))
259 #if UV_VERSION_MAJOR > 0
260 m = uv_loop_close(pt->io_loop_uv);
262 lwsl_err("%s: uv_loop_close: UV_EBUSY\n", __func__);
264 lws_free(pt->io_loop_uv);
268 lws_libuv_accept(struct lws *wsi, int accept_fd)
270 struct lws_context *context = lws_get_context(wsi);
271 struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
273 if (!LWS_LIBUV_ENABLED(context))
276 lwsl_debug("%s: new wsi %p\n", __func__, wsi);
278 wsi->w_read.context = context;
280 uv_poll_init_socket(pt->io_loop_uv, &wsi->w_read.uv_watcher, accept_fd);
284 lws_libuv_io(struct lws *wsi, int flags)
286 struct lws_context *context = lws_get_context(wsi);
287 struct lws_context_per_thread *pt = &wsi->context->pt[(int)wsi->tsi];
288 #if defined(WIN32) || defined(_WIN32)
289 int current_events = wsi->w_read.uv_watcher.events &
290 (UV_READABLE | UV_WRITABLE);
292 int current_events = wsi->w_read.uv_watcher.io_watcher.pevents &
293 (UV_READABLE | UV_WRITABLE);
295 struct lws_io_watcher *w = &wsi->w_read;
297 if (!LWS_LIBUV_ENABLED(context))
300 // lwsl_notice("%s: wsi: %p, flags:0x%x\n", __func__, wsi, flags);
302 if (!pt->io_loop_uv) {
303 lwsl_info("%s: no io loop yet\n", __func__);
307 assert((flags & (LWS_EV_START | LWS_EV_STOP)) &&
308 (flags & (LWS_EV_READ | LWS_EV_WRITE)));
310 if (flags & LWS_EV_START) {
311 if (flags & LWS_EV_WRITE)
312 current_events |= UV_WRITABLE;
314 if (flags & LWS_EV_READ)
315 current_events |= UV_READABLE;
317 uv_poll_start(&w->uv_watcher, current_events, lws_io_cb);
319 if (flags & LWS_EV_WRITE)
320 current_events &= ~UV_WRITABLE;
322 if (flags & LWS_EV_READ)
323 current_events &= ~UV_READABLE;
325 if (!(current_events & (UV_READABLE | UV_WRITABLE)))
326 uv_poll_stop(&w->uv_watcher);
328 uv_poll_start(&w->uv_watcher, current_events,
334 lws_libuv_init_fd_table(struct lws_context *context)
338 if (!LWS_LIBUV_ENABLED(context))
341 for (n = 0; n < context->count_threads; n++)
342 context->pt[n].w_sigint.context = context;
348 lws_libuv_run(const struct lws_context *context, int tsi)
350 if (context->pt[tsi].io_loop_uv && LWS_LIBUV_ENABLED(context))
351 uv_run(context->pt[tsi].io_loop_uv, 0);
355 lws_libuv_kill(const struct lws_context *context)
359 for (n = 0; n < context->count_threads; n++)
360 if (context->pt[n].io_loop_uv &&
361 LWS_LIBUV_ENABLED(context) &&
362 !context->pt[n].ev_loop_foreign)
363 uv_stop(context->pt[n].io_loop_uv);
367 * This does not actually stop the event loop. The reason is we have to pass
368 * libuv handle closures through its event loop. So this tries to close all
369 * wsi, and set a flag; when all the wsi closures are finalized then we
370 * actually stop the libuv event loops.
374 lws_libuv_stop(struct lws_context *context)
376 struct lws_context_per_thread *pt;
379 if (context->requested_kill)
382 context->requested_kill = 1;
384 m = context->count_threads;
385 context->being_destroyed = 1;
388 pt = &context->pt[m];
390 for (n = 0; (unsigned int)n < context->pt[m].fds_count; n++) {
391 struct lws *wsi = wsi_from_fd(context, pt->fds[n].fd);
395 lws_close_free_wsi(wsi,
396 LWS_CLOSE_STATUS_NOSTATUS_CONTEXT_DESTROY
397 /* no protocol close */);
402 lwsl_info("%s: feels everything closed\n", __func__);
403 if (context->count_wsi_allocated == 0)
404 lws_libuv_kill(context);
407 LWS_VISIBLE uv_loop_t *
408 lws_uv_getloop(struct lws_context *context, int tsi)
410 if (context->pt[tsi].io_loop_uv && LWS_LIBUV_ENABLED(context))
411 return context->pt[tsi].io_loop_uv;
417 lws_libuv_closewsi(uv_handle_t* handle)
419 struct lws *n = NULL, *wsi = (struct lws *)(((char *)handle) -
420 (char *)(&n->w_read.uv_watcher));
421 struct lws_context *context = lws_get_context(wsi);
423 lws_close_free_wsi_final(wsi);
425 if (context->requested_kill && context->count_wsi_allocated == 0)
426 lws_libuv_kill(context);
430 lws_libuv_closehandle(struct lws *wsi)
432 struct lws_context *context = lws_get_context(wsi);
434 /* required to defer actual deletion until libuv has processed it */
436 uv_close((uv_handle_t*)&wsi->w_read.uv_watcher, lws_libuv_closewsi);
438 if (context->requested_kill && context->count_wsi_allocated == 0)
439 lws_libuv_kill(context);
442 #if defined(LWS_WITH_PLUGINS) && (UV_VERSION_MAJOR > 0)
445 lws_plat_plugins_init(struct lws_context * context, const char * const *d)
447 struct lws_plugin_capability lcaps;
448 struct lws_plugin *plugin;
449 lws_plugin_init_func initfunc;
463 lwsl_notice(" Plugins:\n");
467 lwsl_notice(" Scanning %s\n", *d);
468 m =uv_fs_scandir(&loop, &req, *d, 0, NULL);
470 lwsl_err("Scandir on %s failed\n", *d);
474 while (uv_fs_scandir_next(&req, &dent) != UV_EOF) {
475 if (strlen(dent.name) < 7)
478 lwsl_notice(" %s\n", dent.name);
480 snprintf(path, sizeof(path) - 1, "%s/%s", *d, dent.name);
481 if (uv_dlopen(path, &lib)) {
483 lwsl_err("Error loading DSO: %s\n", lib.errmsg);
486 /* we could open it, can we get his init function? */
487 m = snprintf(path, sizeof(path) - 1, "init_%s",
488 dent.name + 3 /* snip lib... */);
489 path[m - 3] = '\0'; /* snip the .so */
490 if (uv_dlsym(&lib, path, &v)) {
492 lwsl_err("Failed to get init on %s: %s",
493 dent.name, lib.errmsg);
496 initfunc = (lws_plugin_init_func)v;
497 lcaps.api_magic = LWS_PLUGIN_API_MAGIC;
498 m = initfunc(context, &lcaps);
500 lwsl_err("Initializing %s failed %d\n", dent.name, m);
504 plugin = lws_malloc(sizeof(*plugin));
509 plugin->list = context->plugin_list;
510 context->plugin_list = plugin;
511 strncpy(plugin->name, dent.name, sizeof(plugin->name) - 1);
512 plugin->name[sizeof(plugin->name) - 1] = '\0';
514 plugin->caps = lcaps;
515 context->plugin_protocol_count += lcaps.count_protocols;
516 context->plugin_extension_count += lcaps.count_extensions;
524 uv_fs_req_cleanup(&req);
528 uv_loop_close(&loop);
535 lws_plat_plugins_destroy(struct lws_context * context)
537 struct lws_plugin *plugin = context->plugin_list, *p;
538 lws_plugin_destroy_func func;
546 // lwsl_notice("%s\n", __func__);
550 m = snprintf(path, sizeof(path) - 1, "destroy_%s", plugin->name + 3);
553 if (uv_dlsym(&plugin->lib, path, &v)) {
554 uv_dlerror(&plugin->lib);
555 lwsl_err("Failed to get init on %s: %s",
556 plugin->name, plugin->lib.errmsg);
558 func = (lws_plugin_destroy_func)v;
561 lwsl_err("Destroying %s failed %d\n",
571 context->plugin_list = NULL;