libuv.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  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. #include "private-libwebsockets.h"
  22. void
  23. lws_feature_status_libuv(struct lws_context_creation_info *info)
  24. {
  25. if (lws_check_opt(info->options, LWS_SERVER_OPTION_LIBUV))
  26. lwsl_notice("libuv support compiled in and enabled\n");
  27. else
  28. lwsl_notice("libuv support compiled in but disabled\n");
  29. }
  30. static void
  31. lws_uv_idle(uv_idle_t *handle
  32. #if UV_VERSION_MAJOR == 0
  33. , int status
  34. #endif
  35. )
  36. {
  37. struct lws_context_per_thread *pt = lws_container_of(handle,
  38. struct lws_context_per_thread, uv_idle);
  39. lwsl_debug("%s\n", __func__);
  40. /*
  41. * is there anybody with pending stuff that needs service forcing?
  42. */
  43. if (!lws_service_adjust_timeout(pt->context, 1, pt->tid)) {
  44. /* -1 timeout means just do forced service */
  45. lws_plat_service_tsi(pt->context, -1, pt->tid);
  46. /* still somebody left who wants forced service? */
  47. if (!lws_service_adjust_timeout(pt->context, 1, pt->tid))
  48. /* yes... come back again later */
  49. lwsl_debug("%s: done again\n", __func__);
  50. return;
  51. }
  52. /* there is nobody who needs service forcing, shut down idle */
  53. uv_idle_stop(handle);
  54. lwsl_debug("%s: done stop\n", __func__);
  55. }
  56. static void
  57. lws_io_cb(uv_poll_t *watcher, int status, int revents)
  58. {
  59. struct lws_io_watcher *lws_io = lws_container_of(watcher,
  60. struct lws_io_watcher, uv_watcher);
  61. struct lws *wsi = lws_container_of(lws_io, struct lws, w_read);
  62. struct lws_context *context = lws_io->context;
  63. struct lws_pollfd eventfd;
  64. #if defined(WIN32) || defined(_WIN32)
  65. eventfd.fd = watcher->socket;
  66. #else
  67. eventfd.fd = watcher->io_watcher.fd;
  68. #endif
  69. eventfd.events = 0;
  70. eventfd.revents = 0;
  71. if (status < 0) {
  72. /* at this point status will be an UV error, like UV_EBADF,
  73. we treat all errors as LWS_POLLHUP */
  74. /* you might want to return; instead of servicing the fd in some cases */
  75. if (status == UV_EAGAIN)
  76. return;
  77. eventfd.events |= LWS_POLLHUP;
  78. eventfd.revents |= LWS_POLLHUP;
  79. } else {
  80. if (revents & UV_READABLE) {
  81. eventfd.events |= LWS_POLLIN;
  82. eventfd.revents |= LWS_POLLIN;
  83. }
  84. if (revents & UV_WRITABLE) {
  85. eventfd.events |= LWS_POLLOUT;
  86. eventfd.revents |= LWS_POLLOUT;
  87. }
  88. }
  89. lws_service_fd(context, &eventfd);
  90. uv_idle_start(&context->pt[(int)wsi->tsi].uv_idle, lws_uv_idle);
  91. }
  92. LWS_VISIBLE void
  93. lws_uv_sigint_cb(uv_signal_t *watcher, int signum)
  94. {
  95. lwsl_err("internal signal handler caught signal %d\n", signum);
  96. lws_libuv_stop(watcher->data);
  97. }
  98. LWS_VISIBLE int
  99. lws_uv_sigint_cfg(struct lws_context *context, int use_uv_sigint,
  100. uv_signal_cb cb)
  101. {
  102. context->use_ev_sigint = use_uv_sigint;
  103. if (cb)
  104. context->lws_uv_sigint_cb = cb;
  105. else
  106. context->lws_uv_sigint_cb = &lws_uv_sigint_cb;
  107. return 0;
  108. }
  109. static void
  110. lws_uv_timeout_cb(uv_timer_t *timer
  111. #if UV_VERSION_MAJOR == 0
  112. , int status
  113. #endif
  114. )
  115. {
  116. struct lws_context_per_thread *pt = lws_container_of(timer,
  117. struct lws_context_per_thread, uv_timeout_watcher);
  118. if (pt->context->requested_kill)
  119. return;
  120. lwsl_debug("%s\n", __func__);
  121. lws_service_fd_tsi(pt->context, NULL, pt->tid);
  122. }
  123. static const int sigs[] = { SIGINT, SIGTERM, SIGSEGV, SIGFPE };
  124. LWS_VISIBLE int
  125. lws_uv_initloop(struct lws_context *context, uv_loop_t *loop, int tsi)
  126. {
  127. struct lws_context_per_thread *pt = &context->pt[tsi];
  128. struct lws_vhost *vh = context->vhost_list;
  129. int status = 0, n, ns;
  130. if (!loop) {
  131. loop = lws_malloc(sizeof(*loop));
  132. if (!loop) {
  133. lwsl_err("OOM\n");
  134. return -1;
  135. }
  136. #if UV_VERSION_MAJOR > 0
  137. uv_loop_init(loop);
  138. #else
  139. lwsl_err("This libuv is too old to work...\n");
  140. return 1;
  141. #endif
  142. pt->ev_loop_foreign = 0;
  143. } else {
  144. lwsl_notice(" Using foreign event loop...\n");
  145. pt->ev_loop_foreign = 1;
  146. }
  147. pt->io_loop_uv = loop;
  148. uv_idle_init(loop, &pt->uv_idle);
  149. ns = ARRAY_SIZE(sigs);
  150. if (lws_check_opt(context->options, LWS_SERVER_OPTION_UV_NO_SIGSEGV_SIGFPE_SPIN))
  151. ns = 2;
  152. if (pt->context->use_ev_sigint) {
  153. assert(ns <= ARRAY_SIZE(pt->signals));
  154. for (n = 0; n < ns; n++) {
  155. uv_signal_init(loop, &pt->signals[n]);
  156. pt->signals[n].data = pt->context;
  157. uv_signal_start(&pt->signals[n],
  158. context->lws_uv_sigint_cb, sigs[n]);
  159. }
  160. }
  161. /*
  162. * Initialize the accept wsi read watcher with all the listening sockets
  163. * and register a callback for read operations
  164. *
  165. * We have to do it here because the uv loop(s) are not
  166. * initialized until after context creation.
  167. */
  168. while (vh) {
  169. if (vh->lserv_wsi) {
  170. vh->lserv_wsi->w_read.context = context;
  171. n = uv_poll_init_socket(pt->io_loop_uv,
  172. &vh->lserv_wsi->w_read.uv_watcher,
  173. vh->lserv_wsi->sock);
  174. if (n) {
  175. lwsl_err("uv_poll_init failed %d, sockfd=%p\n",
  176. n, (void *)(long)vh->lserv_wsi->sock);
  177. return -1;
  178. }
  179. lws_libuv_io(vh->lserv_wsi, LWS_EV_START | LWS_EV_READ);
  180. }
  181. vh = vh->vhost_next;
  182. }
  183. uv_timer_init(pt->io_loop_uv, &pt->uv_timeout_watcher);
  184. uv_timer_start(&pt->uv_timeout_watcher, lws_uv_timeout_cb, 10, 1000);
  185. return status;
  186. }
  187. static void lws_uv_close_cb(uv_handle_t *handle)
  188. {
  189. //lwsl_err("%s: handle %p\n", __func__, handle);
  190. }
  191. static void lws_uv_walk_cb(uv_handle_t *handle, void *arg)
  192. {
  193. uv_close(handle, lws_uv_close_cb);
  194. }
  195. void
  196. lws_libuv_destroyloop(struct lws_context *context, int tsi)
  197. {
  198. struct lws_context_per_thread *pt = &context->pt[tsi];
  199. int m, budget = 100, ns;
  200. if (!lws_check_opt(context->options, LWS_SERVER_OPTION_LIBUV))
  201. return;
  202. if (!pt->io_loop_uv)
  203. return;
  204. if (context->use_ev_sigint) {
  205. uv_signal_stop(&pt->w_sigint.uv_watcher);
  206. ns = ARRAY_SIZE(sigs);
  207. if (lws_check_opt(context->options, LWS_SERVER_OPTION_UV_NO_SIGSEGV_SIGFPE_SPIN))
  208. ns = 2;
  209. for (m = 0; m < ns; m++) {
  210. uv_signal_stop(&pt->signals[m]);
  211. uv_close((uv_handle_t *)&pt->signals[m], lws_uv_close_cb);
  212. }
  213. }
  214. uv_timer_stop(&pt->uv_timeout_watcher);
  215. uv_close((uv_handle_t *)&pt->uv_timeout_watcher, lws_uv_close_cb);
  216. uv_idle_stop(&pt->uv_idle);
  217. uv_close((uv_handle_t *)&pt->uv_idle, lws_uv_close_cb);
  218. while (budget-- && uv_run(pt->io_loop_uv, UV_RUN_NOWAIT))
  219. ;
  220. if (pt->ev_loop_foreign)
  221. return;
  222. uv_stop(pt->io_loop_uv);
  223. uv_walk(pt->io_loop_uv, lws_uv_walk_cb, NULL);
  224. while (uv_run(pt->io_loop_uv, UV_RUN_NOWAIT))
  225. ;
  226. #if UV_VERSION_MAJOR > 0
  227. m = uv_loop_close(pt->io_loop_uv);
  228. if (m == UV_EBUSY)
  229. lwsl_err("%s: uv_loop_close: UV_EBUSY\n", __func__);
  230. #endif
  231. lws_free(pt->io_loop_uv);
  232. }
  233. void
  234. lws_libuv_accept(struct lws *wsi, lws_sockfd_type accept_fd)
  235. {
  236. struct lws_context *context = lws_get_context(wsi);
  237. struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
  238. if (!LWS_LIBUV_ENABLED(context))
  239. return;
  240. lwsl_debug("%s: new wsi %p\n", __func__, wsi);
  241. wsi->w_read.context = context;
  242. uv_poll_init_socket(pt->io_loop_uv, &wsi->w_read.uv_watcher, accept_fd);
  243. }
  244. void
  245. lws_libuv_io(struct lws *wsi, int flags)
  246. {
  247. struct lws_context *context = lws_get_context(wsi);
  248. struct lws_context_per_thread *pt = &wsi->context->pt[(int)wsi->tsi];
  249. #if defined(WIN32) || defined(_WIN32)
  250. int current_events = wsi->w_read.uv_watcher.events &
  251. (UV_READABLE | UV_WRITABLE);
  252. #else
  253. int current_events = wsi->w_read.uv_watcher.io_watcher.pevents &
  254. (UV_READABLE | UV_WRITABLE);
  255. #endif
  256. struct lws_io_watcher *w = &wsi->w_read;
  257. if (!LWS_LIBUV_ENABLED(context))
  258. return;
  259. // lwsl_notice("%s: wsi: %p, flags:0x%x\n", __func__, wsi, flags);
  260. if (!pt->io_loop_uv) {
  261. lwsl_info("%s: no io loop yet\n", __func__);
  262. return;
  263. }
  264. if (!((flags & (LWS_EV_START | LWS_EV_STOP)) &&
  265. (flags & (LWS_EV_READ | LWS_EV_WRITE)))) {
  266. lwsl_err("%s: assert: flags %d", __func__, flags);
  267. assert(0);
  268. }
  269. if (flags & LWS_EV_START) {
  270. if (flags & LWS_EV_WRITE)
  271. current_events |= UV_WRITABLE;
  272. if (flags & LWS_EV_READ)
  273. current_events |= UV_READABLE;
  274. uv_poll_start(&w->uv_watcher, current_events, lws_io_cb);
  275. } else {
  276. if (flags & LWS_EV_WRITE)
  277. current_events &= ~UV_WRITABLE;
  278. if (flags & LWS_EV_READ)
  279. current_events &= ~UV_READABLE;
  280. if (!(current_events & (UV_READABLE | UV_WRITABLE)))
  281. uv_poll_stop(&w->uv_watcher);
  282. else
  283. uv_poll_start(&w->uv_watcher, current_events,
  284. lws_io_cb);
  285. }
  286. }
  287. int
  288. lws_libuv_init_fd_table(struct lws_context *context)
  289. {
  290. int n;
  291. if (!LWS_LIBUV_ENABLED(context))
  292. return 0;
  293. for (n = 0; n < context->count_threads; n++)
  294. context->pt[n].w_sigint.context = context;
  295. return 1;
  296. }
  297. LWS_VISIBLE void
  298. lws_libuv_run(const struct lws_context *context, int tsi)
  299. {
  300. if (context->pt[tsi].io_loop_uv && LWS_LIBUV_ENABLED(context))
  301. uv_run(context->pt[tsi].io_loop_uv, 0);
  302. }
  303. static void
  304. lws_libuv_kill(const struct lws_context *context)
  305. {
  306. int n;
  307. for (n = 0; n < context->count_threads; n++)
  308. if (context->pt[n].io_loop_uv &&
  309. LWS_LIBUV_ENABLED(context) &&
  310. !context->pt[n].ev_loop_foreign)
  311. uv_stop(context->pt[n].io_loop_uv);
  312. }
  313. /*
  314. * This does not actually stop the event loop. The reason is we have to pass
  315. * libuv handle closures through its event loop. So this tries to close all
  316. * wsi, and set a flag; when all the wsi closures are finalized then we
  317. * actually stop the libuv event loops.
  318. */
  319. LWS_VISIBLE void
  320. lws_libuv_stop(struct lws_context *context)
  321. {
  322. struct lws_context_per_thread *pt;
  323. int n, m;
  324. if (context->requested_kill)
  325. return;
  326. context->requested_kill = 1;
  327. m = context->count_threads;
  328. context->being_destroyed = 1;
  329. while (m--) {
  330. pt = &context->pt[m];
  331. for (n = 0; (unsigned int)n < context->pt[m].fds_count; n++) {
  332. struct lws *wsi = wsi_from_fd(context, pt->fds[n].fd);
  333. if (!wsi)
  334. continue;
  335. lws_close_free_wsi(wsi,
  336. LWS_CLOSE_STATUS_NOSTATUS_CONTEXT_DESTROY
  337. /* no protocol close */);
  338. n--;
  339. }
  340. }
  341. lwsl_info("%s: feels everything closed\n", __func__);
  342. if (context->count_wsi_allocated == 0)
  343. lws_libuv_kill(context);
  344. }
  345. LWS_VISIBLE uv_loop_t *
  346. lws_uv_getloop(struct lws_context *context, int tsi)
  347. {
  348. if (context->pt[tsi].io_loop_uv && LWS_LIBUV_ENABLED(context))
  349. return context->pt[tsi].io_loop_uv;
  350. return NULL;
  351. }
  352. static void
  353. lws_libuv_closewsi(uv_handle_t* handle)
  354. {
  355. struct lws *n = NULL, *wsi = (struct lws *)(((char *)handle) -
  356. (char *)(&n->w_read.uv_watcher));
  357. struct lws_context *context = lws_get_context(wsi);
  358. lws_close_free_wsi_final(wsi);
  359. if (context->requested_kill && context->count_wsi_allocated == 0)
  360. lws_libuv_kill(context);
  361. }
  362. void
  363. lws_libuv_closehandle(struct lws *wsi)
  364. {
  365. struct lws_context *context = lws_get_context(wsi);
  366. /* required to defer actual deletion until libuv has processed it */
  367. uv_close((uv_handle_t*)&wsi->w_read.uv_watcher, lws_libuv_closewsi);
  368. if (context->requested_kill && context->count_wsi_allocated == 0)
  369. lws_libuv_kill(context);
  370. }
  371. #if defined(LWS_WITH_PLUGINS) && (UV_VERSION_MAJOR > 0)
  372. LWS_VISIBLE int
  373. lws_plat_plugins_init(struct lws_context * context, const char * const *d)
  374. {
  375. struct lws_plugin_capability lcaps;
  376. struct lws_plugin *plugin;
  377. lws_plugin_init_func initfunc;
  378. int m, ret = 0;
  379. void *v;
  380. uv_dirent_t dent;
  381. uv_fs_t req;
  382. char path[256];
  383. uv_loop_t loop;
  384. uv_lib_t lib;
  385. lib.errmsg = NULL;
  386. lib.handle = NULL;
  387. uv_loop_init(&loop);
  388. lwsl_notice(" Plugins:\n");
  389. while (d && *d) {
  390. lwsl_notice(" Scanning %s\n", *d);
  391. m =uv_fs_scandir(&loop, &req, *d, 0, NULL);
  392. if (m < 1) {
  393. lwsl_err("Scandir on %s failed\n", *d);
  394. return 1;
  395. }
  396. while (uv_fs_scandir_next(&req, &dent) != UV_EOF) {
  397. if (strlen(dent.name) < 7)
  398. continue;
  399. lwsl_notice(" %s\n", dent.name);
  400. lws_snprintf(path, sizeof(path) - 1, "%s/%s", *d, dent.name);
  401. if (uv_dlopen(path, &lib)) {
  402. uv_dlerror(&lib);
  403. lwsl_err("Error loading DSO: %s\n", lib.errmsg);
  404. goto bail;
  405. }
  406. /* we could open it, can we get his init function? */
  407. #if !defined(WIN32)
  408. m = lws_snprintf(path, sizeof(path) - 1, "init_%s",
  409. dent.name + 3 /* snip lib... */);
  410. path[m - 3] = '\0'; /* snip the .so */
  411. #else
  412. m = lws_snprintf(path, sizeof(path) - 1, "init_%s",
  413. dent.name);
  414. path[m - 4] = '\0'; /* snip the .dll */
  415. #endif
  416. if (uv_dlsym(&lib, path, &v)) {
  417. uv_dlerror(&lib);
  418. lwsl_err("Failed to get init on %s: %s",
  419. dent.name, lib.errmsg);
  420. goto bail;
  421. }
  422. initfunc = (lws_plugin_init_func)v;
  423. lcaps.api_magic = LWS_PLUGIN_API_MAGIC;
  424. m = initfunc(context, &lcaps);
  425. if (m) {
  426. lwsl_err("Initializing %s failed %d\n", dent.name, m);
  427. goto skip;
  428. }
  429. plugin = lws_malloc(sizeof(*plugin));
  430. if (!plugin) {
  431. lwsl_err("OOM\n");
  432. goto bail;
  433. }
  434. plugin->list = context->plugin_list;
  435. context->plugin_list = plugin;
  436. strncpy(plugin->name, dent.name, sizeof(plugin->name) - 1);
  437. plugin->name[sizeof(plugin->name) - 1] = '\0';
  438. plugin->lib = lib;
  439. plugin->caps = lcaps;
  440. context->plugin_protocol_count += lcaps.count_protocols;
  441. context->plugin_extension_count += lcaps.count_extensions;
  442. continue;
  443. skip:
  444. uv_dlclose(&lib);
  445. }
  446. bail:
  447. uv_fs_req_cleanup(&req);
  448. d++;
  449. }
  450. uv_loop_close(&loop);
  451. return ret;
  452. }
  453. LWS_VISIBLE int
  454. lws_plat_plugins_destroy(struct lws_context * context)
  455. {
  456. struct lws_plugin *plugin = context->plugin_list, *p;
  457. lws_plugin_destroy_func func;
  458. char path[256];
  459. void *v;
  460. int m;
  461. if (!plugin)
  462. return 0;
  463. // lwsl_notice("%s\n", __func__);
  464. while (plugin) {
  465. p = plugin;
  466. #if !defined(WIN32)
  467. m = lws_snprintf(path, sizeof(path) - 1, "destroy_%s", plugin->name + 3);
  468. path[m - 3] = '\0';
  469. #else
  470. m = lws_snprintf(path, sizeof(path) - 1, "destroy_%s", plugin->name);
  471. path[m - 4] = '\0';
  472. #endif
  473. if (uv_dlsym(&plugin->lib, path, &v)) {
  474. uv_dlerror(&plugin->lib);
  475. lwsl_err("Failed to get init on %s: %s",
  476. plugin->name, plugin->lib.errmsg);
  477. } else {
  478. func = (lws_plugin_destroy_func)v;
  479. m = func(context);
  480. if (m)
  481. lwsl_err("Destroying %s failed %d\n",
  482. plugin->name, m);
  483. }
  484. uv_dlclose(&p->lib);
  485. plugin = p->list;
  486. p->list = NULL;
  487. free(p);
  488. }
  489. context->plugin_list = NULL;
  490. return 0;
  491. }
  492. #endif