pollfd.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  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. #include "private-libwebsockets.h"
  22. int
  23. _lws_change_pollfd(struct lws *wsi, int _and, int _or, struct lws_pollargs *pa)
  24. {
  25. struct lws_context_per_thread *pt;
  26. struct lws_context *context;
  27. int ret = 0, pa_events = 1;
  28. struct lws_pollfd *pfd;
  29. int sampled_tid, tid;
  30. if (!wsi || wsi->position_in_fds_table < 0)
  31. return 0;
  32. context = wsi->context;
  33. pt = &context->pt[(int)wsi->tsi];
  34. assert(wsi->position_in_fds_table >= 0 &&
  35. wsi->position_in_fds_table < pt->fds_count);
  36. pfd = &pt->fds[wsi->position_in_fds_table];
  37. pa->fd = wsi->sock;
  38. pa->prev_events = pfd->events;
  39. pa->events = pfd->events = (pfd->events & ~_and) | _or;
  40. //lwsl_notice("%s: wsi %p, posin %d. from %d -> %d\n", __func__, wsi, wsi->position_in_fds_table, pa->prev_events, pa->events);
  41. if (wsi->http2_substream)
  42. return 0;
  43. if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_CHANGE_MODE_POLL_FD,
  44. wsi->user_space, (void *)pa, 0)) {
  45. ret = -1;
  46. goto bail;
  47. }
  48. if (_and & LWS_POLLIN) {
  49. lws_libev_io(wsi, LWS_EV_STOP | LWS_EV_READ);
  50. lws_libuv_io(wsi, LWS_EV_STOP | LWS_EV_READ);
  51. }
  52. if (_or & LWS_POLLIN) {
  53. lws_libev_io(wsi, LWS_EV_START | LWS_EV_READ);
  54. lws_libuv_io(wsi, LWS_EV_START | LWS_EV_READ);
  55. }
  56. if (_and & LWS_POLLOUT) {
  57. lws_libev_io(wsi, LWS_EV_STOP | LWS_EV_WRITE);
  58. lws_libuv_io(wsi, LWS_EV_STOP | LWS_EV_WRITE);
  59. }
  60. if (_or & LWS_POLLOUT) {
  61. lws_libev_io(wsi, LWS_EV_START | LWS_EV_WRITE);
  62. lws_libuv_io(wsi, LWS_EV_START | LWS_EV_WRITE);
  63. }
  64. /*
  65. * if we changed something in this pollfd...
  66. * ... and we're running in a different thread context
  67. * than the service thread...
  68. * ... and the service thread is waiting ...
  69. * then cancel it to force a restart with our changed events
  70. */
  71. #if LWS_POSIX
  72. pa_events = pa->prev_events != pa->events;
  73. #endif
  74. if (pa_events) {
  75. if (lws_plat_change_pollfd(context, wsi, pfd)) {
  76. lwsl_info("%s failed\n", __func__);
  77. ret = -1;
  78. goto bail;
  79. }
  80. sampled_tid = context->service_tid;
  81. if (sampled_tid) {
  82. tid = wsi->vhost->protocols[0].callback(wsi,
  83. LWS_CALLBACK_GET_THREAD_ID, NULL, NULL, 0);
  84. if (tid == -1) {
  85. ret = -1;
  86. goto bail;
  87. }
  88. if (tid != sampled_tid)
  89. lws_cancel_service_pt(wsi);
  90. }
  91. }
  92. bail:
  93. return ret;
  94. }
  95. int
  96. insert_wsi_socket_into_fds(struct lws_context *context, struct lws *wsi)
  97. {
  98. struct lws_pollargs pa = { wsi->sock, LWS_POLLIN, 0 };
  99. struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
  100. int ret = 0;
  101. #ifndef LWS_NO_SERVER
  102. struct lws_pollargs pa1;
  103. #endif
  104. lwsl_debug("%s: %p: tsi=%d, sock=%d, pos-in-fds=%d\n",
  105. __func__, wsi, wsi->tsi, wsi->sock, pt->fds_count);
  106. if ((unsigned int)pt->fds_count >= context->fd_limit_per_thread) {
  107. lwsl_err("Too many fds (%d vs %d)\n", context->max_fds,
  108. context->fd_limit_per_thread );
  109. return 1;
  110. }
  111. #if !defined(_WIN32) && !defined(MBED_OPERATORS) && !defined(LWS_WITH_ESP8266)
  112. if (wsi->sock >= context->max_fds) {
  113. lwsl_err("Socket fd %d is too high (%d)\n",
  114. wsi->sock, context->max_fds);
  115. return 1;
  116. }
  117. #endif
  118. assert(wsi);
  119. assert(wsi->vhost);
  120. assert(lws_socket_is_valid(wsi->sock));
  121. if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_LOCK_POLL,
  122. wsi->user_space, (void *) &pa, 1))
  123. return -1;
  124. lws_pt_lock(pt);
  125. pt->count_conns++;
  126. insert_wsi(context, wsi);
  127. #if defined(LWS_WITH_ESP8266)
  128. if (wsi->position_in_fds_table == -1)
  129. #endif
  130. wsi->position_in_fds_table = pt->fds_count;
  131. // lwsl_notice("%s: %p: setting posinfds %d\n", __func__, wsi, wsi->position_in_fds_table);
  132. pt->fds[wsi->position_in_fds_table].fd = wsi->sock;
  133. #if LWS_POSIX
  134. pt->fds[wsi->position_in_fds_table].events = LWS_POLLIN;
  135. #else
  136. pt->fds[wsi->position_in_fds_table].events = 0; // LWS_POLLIN;
  137. #endif
  138. pa.events = pt->fds[pt->fds_count].events;
  139. lws_plat_insert_socket_into_fds(context, wsi);
  140. /* external POLL support via protocol 0 */
  141. if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_ADD_POLL_FD,
  142. wsi->user_space, (void *) &pa, 0))
  143. ret = -1;
  144. #ifndef LWS_NO_SERVER
  145. /* if no more room, defeat accepts on this thread */
  146. if ((unsigned int)pt->fds_count == context->fd_limit_per_thread - 1)
  147. _lws_change_pollfd(pt->wsi_listening, LWS_POLLIN, 0, &pa1);
  148. #endif
  149. lws_pt_unlock(pt);
  150. if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_UNLOCK_POLL,
  151. wsi->user_space, (void *)&pa, 1))
  152. ret = -1;
  153. return ret;
  154. }
  155. int
  156. remove_wsi_socket_from_fds(struct lws *wsi)
  157. {
  158. struct lws_context *context = wsi->context;
  159. struct lws_pollargs pa = { wsi->sock, 0, 0 };
  160. #if !defined(LWS_WITH_ESP8266)
  161. #ifndef LWS_NO_SERVER
  162. struct lws_pollargs pa1;
  163. #endif
  164. struct lws_context_per_thread *pt = &context->pt[(int)wsi->tsi];
  165. struct lws *end_wsi;
  166. int v;
  167. #endif
  168. int m, ret = 0;
  169. #if !defined(_WIN32) && !defined(MBED_OPERATORS) && !defined(LWS_WITH_ESP8266)
  170. if (wsi->sock > context->max_fds) {
  171. lwsl_err("fd %d too high (%d)\n", wsi->sock, context->max_fds);
  172. return 1;
  173. }
  174. #endif
  175. if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_LOCK_POLL,
  176. wsi->user_space, (void *)&pa, 1))
  177. return -1;
  178. /*
  179. * detach ourselves from vh protocol list if we're on one
  180. * A -> B -> C
  181. * A -> C , or, B -> C, or A -> B
  182. */
  183. lwsl_info("%s: removing same prot wsi %p\n", __func__, wsi);
  184. if (wsi->same_vh_protocol_prev) {
  185. assert (*(wsi->same_vh_protocol_prev) == wsi);
  186. lwsl_info("have prev %p, setting him to our next %p\n",
  187. wsi->same_vh_protocol_prev,
  188. wsi->same_vh_protocol_next);
  189. /* guy who pointed to us should point to our next */
  190. *(wsi->same_vh_protocol_prev) = wsi->same_vh_protocol_next;
  191. } //else
  192. //lwsl_err("null wsi->prev\n");
  193. /* our next should point back to our prev */
  194. if (wsi->same_vh_protocol_next) {
  195. lwsl_info("have next %p\n");
  196. wsi->same_vh_protocol_next->same_vh_protocol_prev =
  197. wsi->same_vh_protocol_prev;
  198. } //else
  199. //lwsl_err("null wsi->next\n");
  200. /* the guy who is to be deleted's slot index in pt->fds */
  201. m = wsi->position_in_fds_table;
  202. #if !defined(LWS_WITH_ESP8266)
  203. lws_libev_io(wsi, LWS_EV_STOP | LWS_EV_READ | LWS_EV_WRITE | LWS_EV_PREPARE_DELETION);
  204. lws_libuv_io(wsi, LWS_EV_STOP | LWS_EV_READ | LWS_EV_WRITE | LWS_EV_PREPARE_DELETION);
  205. lws_pt_lock(pt);
  206. lwsl_debug("%s: wsi=%p, sock=%d, fds pos=%d, end guy pos=%d, endfd=%d\n",
  207. __func__, wsi, wsi->sock, wsi->position_in_fds_table,
  208. pt->fds_count, pt->fds[pt->fds_count].fd);
  209. /* have the last guy take up the now vacant slot */
  210. pt->fds[m] = pt->fds[pt->fds_count - 1];
  211. #endif
  212. /* this decrements pt->fds_count */
  213. lws_plat_delete_socket_from_fds(context, wsi, m);
  214. #if !defined(LWS_WITH_ESP8266)
  215. v = (int) pt->fds[m].fd;
  216. /* end guy's "position in fds table" is now the deletion guy's old one */
  217. end_wsi = wsi_from_fd(context, v);
  218. if (!end_wsi) {
  219. 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);
  220. assert(0);
  221. } else
  222. end_wsi->position_in_fds_table = m;
  223. /* deletion guy's lws_lookup entry needs nuking */
  224. delete_from_fd(context, wsi->sock);
  225. /* removed wsi has no position any more */
  226. wsi->position_in_fds_table = -1;
  227. /* remove also from external POLL support via protocol 0 */
  228. if (lws_socket_is_valid(wsi->sock))
  229. if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_DEL_POLL_FD,
  230. wsi->user_space, (void *) &pa, 0))
  231. ret = -1;
  232. #ifndef LWS_NO_SERVER
  233. if (!context->being_destroyed)
  234. /* if this made some room, accept connects on this thread */
  235. if ((unsigned int)pt->fds_count < context->fd_limit_per_thread - 1)
  236. _lws_change_pollfd(pt->wsi_listening, 0, LWS_POLLIN, &pa1);
  237. #endif
  238. lws_pt_unlock(pt);
  239. if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_UNLOCK_POLL,
  240. wsi->user_space, (void *) &pa, 1))
  241. ret = -1;
  242. #endif
  243. return ret;
  244. }
  245. int
  246. lws_change_pollfd(struct lws *wsi, int _and, int _or)
  247. {
  248. struct lws_context_per_thread *pt;
  249. struct lws_context *context;
  250. struct lws_pollargs pa;
  251. int ret = 0;
  252. if (!wsi || !wsi->protocol || wsi->position_in_fds_table < 0)
  253. return 1;
  254. context = lws_get_context(wsi);
  255. if (!context)
  256. return 1;
  257. if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_LOCK_POLL,
  258. wsi->user_space, (void *) &pa, 0))
  259. return -1;
  260. pt = &context->pt[(int)wsi->tsi];
  261. lws_pt_lock(pt);
  262. ret = _lws_change_pollfd(wsi, _and, _or, &pa);
  263. lws_pt_unlock(pt);
  264. if (wsi->vhost->protocols[0].callback(wsi, LWS_CALLBACK_UNLOCK_POLL,
  265. wsi->user_space, (void *) &pa, 0))
  266. ret = -1;
  267. return ret;
  268. }
  269. LWS_VISIBLE int
  270. lws_callback_on_writable(struct lws *wsi)
  271. {
  272. #ifdef LWS_USE_HTTP2
  273. struct lws *network_wsi, *wsi2;
  274. int already;
  275. #endif
  276. if (wsi->state == LWSS_SHUTDOWN)
  277. return 0;
  278. if (wsi->socket_is_permanently_unusable)
  279. return 0;
  280. #ifdef LWS_USE_HTTP2
  281. lwsl_info("%s: %p\n", __func__, wsi);
  282. if (wsi->mode != LWSCM_HTTP2_SERVING)
  283. goto network_sock;
  284. if (wsi->u.http2.requested_POLLOUT) {
  285. lwsl_info("already pending writable\n");
  286. return 1;
  287. }
  288. if (wsi->u.http2.tx_credit <= 0) {
  289. /*
  290. * other side is not able to cope with us sending
  291. * anything so no matter if we have POLLOUT on our side.
  292. *
  293. * Delay waiting for our POLLOUT until peer indicates he has
  294. * space for more using tx window command in http2 layer
  295. */
  296. lwsl_info("%s: %p: waiting_tx_credit (%d)\n", __func__, wsi,
  297. wsi->u.http2.tx_credit);
  298. wsi->u.http2.waiting_tx_credit = 1;
  299. return 0;
  300. }
  301. network_wsi = lws_http2_get_network_wsi(wsi);
  302. already = network_wsi->u.http2.requested_POLLOUT;
  303. /* mark everybody above him as requesting pollout */
  304. wsi2 = wsi;
  305. while (wsi2) {
  306. wsi2->u.http2.requested_POLLOUT = 1;
  307. lwsl_info("mark %p pending writable\n", wsi2);
  308. wsi2 = wsi2->u.http2.parent_wsi;
  309. }
  310. /* for network action, act only on the network wsi */
  311. wsi = network_wsi;
  312. if (already)
  313. return 1;
  314. network_sock:
  315. #endif
  316. if (lws_ext_cb_active(wsi, LWS_EXT_CB_REQUEST_ON_WRITEABLE, NULL, 0))
  317. return 1;
  318. if (wsi->position_in_fds_table < 0) {
  319. lwsl_err("%s: failed to find socket %d\n", __func__, wsi->sock);
  320. return -1;
  321. }
  322. if (lws_change_pollfd(wsi, 0, LWS_POLLOUT))
  323. return -1;
  324. return 1;
  325. }
  326. LWS_VISIBLE int
  327. lws_callback_on_writable_all_protocol_vhost(const struct lws_vhost *vhost,
  328. const struct lws_protocols *protocol)
  329. {
  330. struct lws *wsi;
  331. if (protocol < vhost->protocols ||
  332. protocol >= (vhost->protocols + vhost->count_protocols)) {
  333. lwsl_err("%s: protocol is not from vhost\n", __func__);
  334. return -1;
  335. }
  336. wsi = vhost->same_vh_protocol_list[protocol - vhost->protocols];
  337. //lwsl_notice("%s: protocol %p, start wsi %p\n", __func__, protocol, wsi);
  338. while (wsi) {
  339. //lwsl_notice("%s: protocol %p, this wsi %p (wsi->protocol=%p)\n",
  340. // __func__, protocol, wsi, wsi->protocol);
  341. assert(wsi->protocol == protocol);
  342. assert(*wsi->same_vh_protocol_prev == wsi);
  343. if (wsi->same_vh_protocol_next) {
  344. // lwsl_err("my next says %p\n", wsi->same_vh_protocol_next);
  345. // lwsl_err("my next's prev says %p\n",
  346. // wsi->same_vh_protocol_next->same_vh_protocol_prev);
  347. assert(wsi->same_vh_protocol_next->same_vh_protocol_prev == &wsi->same_vh_protocol_next);
  348. }
  349. //lwsl_notice(" apv: %p\n", wsi);
  350. lws_callback_on_writable(wsi);
  351. wsi = wsi->same_vh_protocol_next;
  352. }
  353. return 0;
  354. }
  355. LWS_VISIBLE int
  356. lws_callback_on_writable_all_protocol(const struct lws_context *context,
  357. const struct lws_protocols *protocol)
  358. {
  359. struct lws_vhost *vhost = context->vhost_list;
  360. int n;
  361. while (vhost) {
  362. for (n = 0; n < vhost->count_protocols; n++)
  363. if (protocol->callback ==
  364. vhost->protocols[n].callback &&
  365. !strcmp(protocol->name, vhost->protocols[n].name))
  366. break;
  367. if (n != vhost->count_protocols)
  368. lws_callback_on_writable_all_protocol_vhost(
  369. vhost, &vhost->protocols[n]);
  370. vhost = vhost->vhost_next;
  371. }
  372. return 0;
  373. }