service.c 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147
  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. static int
  23. lws_calllback_as_writeable(struct lws *wsi)
  24. {
  25. int n;
  26. switch (wsi->mode) {
  27. case LWSCM_WS_CLIENT:
  28. n = LWS_CALLBACK_CLIENT_WRITEABLE;
  29. break;
  30. case LWSCM_WSCL_ISSUE_HTTP_BODY:
  31. n = LWS_CALLBACK_CLIENT_HTTP_WRITEABLE;
  32. break;
  33. case LWSCM_WS_SERVING:
  34. n = LWS_CALLBACK_SERVER_WRITEABLE;
  35. break;
  36. default:
  37. n = LWS_CALLBACK_HTTP_WRITEABLE;
  38. break;
  39. }
  40. lwsl_debug("%s: %p (user=%p)\n", __func__, wsi, wsi->user_space);
  41. return user_callback_handle_rxflow(wsi->protocol->callback,
  42. wsi, (enum lws_callback_reasons) n,
  43. wsi->user_space, NULL, 0);
  44. }
  45. int
  46. lws_handle_POLLOUT_event(struct lws *wsi, struct lws_pollfd *pollfd)
  47. {
  48. int write_type = LWS_WRITE_PONG;
  49. struct lws_tokens eff_buf;
  50. #ifdef LWS_USE_HTTP2
  51. struct lws *wsi2;
  52. #endif
  53. int ret, m, n;
  54. //lwsl_err("%s: %p\n", __func__, wsi);
  55. /*
  56. * user callback is lowest priority to get these notifications
  57. * actually, since other pending things cannot be disordered
  58. */
  59. /* Priority 1: pending truncated sends are incomplete ws fragments
  60. * If anything else sent first the protocol would be
  61. * corrupted.
  62. */
  63. if (wsi->trunc_len) {
  64. if (lws_issue_raw(wsi, wsi->trunc_alloc + wsi->trunc_offset,
  65. wsi->trunc_len) < 0) {
  66. lwsl_info("%s signalling to close\n", __func__);
  67. return -1;
  68. }
  69. /* leave POLLOUT active either way */
  70. return 0;
  71. } else
  72. if (wsi->state == LWSS_FLUSHING_STORED_SEND_BEFORE_CLOSE)
  73. return -1; /* retry closing now */
  74. if (wsi->mode == LWSCM_WSCL_ISSUE_HTTP_BODY)
  75. goto user_service;
  76. #ifdef LWS_USE_HTTP2
  77. /* Priority 2: protocol packets
  78. */
  79. if (wsi->pps) {
  80. lwsl_info("servicing pps %d\n", wsi->pps);
  81. switch (wsi->pps) {
  82. case LWS_PPS_HTTP2_MY_SETTINGS:
  83. case LWS_PPS_HTTP2_ACK_SETTINGS:
  84. lws_http2_do_pps_send(lws_get_context(wsi), wsi);
  85. break;
  86. default:
  87. break;
  88. }
  89. wsi->pps = LWS_PPS_NONE;
  90. lws_rx_flow_control(wsi, 1);
  91. return 0; /* leave POLLOUT active */
  92. }
  93. #endif
  94. #ifdef LWS_WITH_CGI
  95. if (wsi->cgi)
  96. goto user_service_go_again;
  97. #endif
  98. /* Priority 3: pending control packets (pong or close)
  99. */
  100. if ((wsi->state == LWSS_ESTABLISHED &&
  101. wsi->u.ws.ping_pending_flag) ||
  102. (wsi->state == LWSS_RETURNED_CLOSE_ALREADY &&
  103. wsi->u.ws.payload_is_close)) {
  104. if (wsi->u.ws.payload_is_close)
  105. write_type = LWS_WRITE_CLOSE;
  106. n = lws_write(wsi, &wsi->u.ws.ping_payload_buf[LWS_PRE],
  107. wsi->u.ws.ping_payload_len, write_type);
  108. if (n < 0)
  109. return -1;
  110. /* well he is sent, mark him done */
  111. wsi->u.ws.ping_pending_flag = 0;
  112. if (wsi->u.ws.payload_is_close)
  113. /* oh... a close frame was it... then we are done */
  114. return -1;
  115. /* otherwise for PING, leave POLLOUT active either way */
  116. return 0;
  117. }
  118. if (wsi->state == LWSS_ESTABLISHED &&
  119. !wsi->socket_is_permanently_unusable &&
  120. wsi->u.ws.send_check_ping) {
  121. lwsl_info("issuing ping on wsi %p\n", wsi);
  122. wsi->u.ws.send_check_ping = 0;
  123. n = lws_write(wsi, &wsi->u.ws.ping_payload_buf[LWS_PRE],
  124. 0, LWS_WRITE_PING);
  125. if (n < 0)
  126. return -1;
  127. /*
  128. * we apparently were able to send the PING in a reasonable time
  129. * now reset the clock on our peer to be able to send the
  130. * PONG in a reasonable time.
  131. */
  132. lws_set_timeout(wsi, PENDING_TIMEOUT_WS_PONG_CHECK_GET_PONG,
  133. wsi->context->timeout_secs);
  134. return 0;
  135. }
  136. /* Priority 4: if we are closing, not allowed to send more data frags
  137. * which means user callback or tx ext flush banned now
  138. */
  139. if (wsi->state == LWSS_RETURNED_CLOSE_ALREADY)
  140. goto user_service;
  141. /* Priority 5: Tx path extension with more to send
  142. *
  143. * These are handled as new fragments each time around
  144. * So while we must block new writeable callback to enforce
  145. * payload ordering, but since they are always complete
  146. * fragments control packets can interleave OK.
  147. */
  148. if (wsi->state == LWSS_ESTABLISHED && wsi->u.ws.tx_draining_ext) {
  149. lwsl_ext("SERVICING TX EXT DRAINING\n");
  150. if (lws_write(wsi, NULL, 0, LWS_WRITE_CONTINUATION) < 0)
  151. return -1;
  152. /* leave POLLOUT active */
  153. return 0;
  154. }
  155. /* Priority 6: user can get the callback
  156. */
  157. m = lws_ext_cb_active(wsi, LWS_EXT_CB_IS_WRITEABLE, NULL, 0);
  158. if (m)
  159. return -1;
  160. #ifndef LWS_NO_EXTENSIONS
  161. if (!wsi->extension_data_pending)
  162. goto user_service;
  163. #endif
  164. /*
  165. * check in on the active extensions, see if they
  166. * had pending stuff to spill... they need to get the
  167. * first look-in otherwise sequence will be disordered
  168. *
  169. * NULL, zero-length eff_buf means just spill pending
  170. */
  171. ret = 1;
  172. while (ret == 1) {
  173. /* default to nobody has more to spill */
  174. ret = 0;
  175. eff_buf.token = NULL;
  176. eff_buf.token_len = 0;
  177. /* give every extension a chance to spill */
  178. m = lws_ext_cb_active(wsi,
  179. LWS_EXT_CB_PACKET_TX_PRESEND,
  180. &eff_buf, 0);
  181. if (m < 0) {
  182. lwsl_err("ext reports fatal error\n");
  183. return -1;
  184. }
  185. if (m)
  186. /*
  187. * at least one extension told us he has more
  188. * to spill, so we will go around again after
  189. */
  190. ret = 1;
  191. /* assuming they gave us something to send, send it */
  192. if (eff_buf.token_len) {
  193. n = lws_issue_raw(wsi, (unsigned char *)eff_buf.token,
  194. eff_buf.token_len);
  195. if (n < 0) {
  196. lwsl_info("closing from POLLOUT spill\n");
  197. return -1;
  198. }
  199. /*
  200. * Keep amount spilled small to minimize chance of this
  201. */
  202. if (n != eff_buf.token_len) {
  203. lwsl_err("Unable to spill ext %d vs %s\n",
  204. eff_buf.token_len, n);
  205. return -1;
  206. }
  207. } else
  208. continue;
  209. /* no extension has more to spill */
  210. if (!ret)
  211. continue;
  212. /*
  213. * There's more to spill from an extension, but we just sent
  214. * something... did that leave the pipe choked?
  215. */
  216. if (!lws_send_pipe_choked(wsi))
  217. /* no we could add more */
  218. continue;
  219. lwsl_info("choked in POLLOUT service\n");
  220. /*
  221. * Yes, he's choked. Leave the POLLOUT masked on so we will
  222. * come back here when he is unchoked. Don't call the user
  223. * callback to enforce ordering of spilling, he'll get called
  224. * when we come back here and there's nothing more to spill.
  225. */
  226. return 0;
  227. }
  228. #ifndef LWS_NO_EXTENSIONS
  229. wsi->extension_data_pending = 0;
  230. #endif
  231. user_service:
  232. /* one shot */
  233. if (pollfd)
  234. if (lws_change_pollfd(wsi, LWS_POLLOUT, 0)) {
  235. lwsl_info("failed at set pollfd\n");
  236. return 1;
  237. }
  238. if (wsi->mode != LWSCM_WSCL_ISSUE_HTTP_BODY &&
  239. !wsi->hdr_parsing_completed)
  240. return 0;
  241. #ifdef LWS_WITH_CGI
  242. user_service_go_again:
  243. #endif
  244. #ifdef LWS_USE_HTTP2
  245. /*
  246. * we are the 'network wsi' for potentially many muxed child wsi with
  247. * no network connection of their own, who have to use us for all their
  248. * network actions. So we use a round-robin scheme to share out the
  249. * POLLOUT notifications to our children.
  250. *
  251. * But because any child could exhaust the socket's ability to take
  252. * writes, we can only let one child get notified each time.
  253. *
  254. * In addition children may be closed / deleted / added between POLLOUT
  255. * notifications, so we can't hold pointers
  256. */
  257. if (wsi->mode != LWSCM_HTTP2_SERVING) {
  258. lwsl_info("%s: non http2\n", __func__);
  259. goto notify;
  260. }
  261. wsi->u.http2.requested_POLLOUT = 0;
  262. if (!wsi->u.http2.initialized) {
  263. lwsl_info("pollout on uninitialized http2 conn\n");
  264. return 0;
  265. }
  266. lwsl_info("%s: doing children\n", __func__);
  267. wsi2 = wsi;
  268. do {
  269. wsi2 = wsi2->u.http2.next_child_wsi;
  270. lwsl_info("%s: child %p\n", __func__, wsi2);
  271. if (!wsi2)
  272. continue;
  273. if (!wsi2->u.http2.requested_POLLOUT)
  274. continue;
  275. wsi2->u.http2.requested_POLLOUT = 0;
  276. if (lws_calllback_as_writeable(wsi2)) {
  277. lwsl_debug("Closing POLLOUT child\n");
  278. lws_close_free_wsi(wsi2, LWS_CLOSE_STATUS_NOSTATUS);
  279. }
  280. wsi2 = wsi;
  281. } while (wsi2 != NULL && !lws_send_pipe_choked(wsi));
  282. lwsl_info("%s: completed\n", __func__);
  283. return 0;
  284. notify:
  285. #endif
  286. return lws_calllback_as_writeable(wsi);
  287. }
  288. int
  289. lws_service_timeout_check(struct lws *wsi, unsigned int sec)
  290. {
  291. //#if LWS_POSIX
  292. struct lws_context_per_thread *pt = &wsi->context->pt[(int)wsi->tsi];
  293. int n = 0;
  294. //#endif
  295. (void)n;
  296. /*
  297. * if extensions want in on it (eg, we are a mux parent)
  298. * give them a chance to service child timeouts
  299. */
  300. if (lws_ext_cb_active(wsi, LWS_EXT_CB_1HZ, NULL, sec) < 0)
  301. return 0;
  302. if (!wsi->pending_timeout)
  303. return 0;
  304. /*
  305. * if we went beyond the allowed time, kill the
  306. * connection
  307. */
  308. if ((time_t)sec > wsi->pending_timeout_limit) {
  309. //#if LWS_POSIX
  310. if (wsi->sock != LWS_SOCK_INVALID && wsi->position_in_fds_table >= 0)
  311. n = pt->fds[wsi->position_in_fds_table].events;
  312. /* no need to log normal idle keepalive timeout */
  313. if (wsi->pending_timeout != PENDING_TIMEOUT_HTTP_KEEPALIVE_IDLE)
  314. lwsl_notice("wsi %p: TIMEDOUT WAITING on %d (did hdr %d, ah %p, wl %d, pfd events %d)\n",
  315. (void *)wsi, wsi->pending_timeout,
  316. wsi->hdr_parsing_completed, wsi->u.hdr.ah,
  317. pt->ah_wait_list_length, n);
  318. //#endif
  319. /*
  320. * Since he failed a timeout, he already had a chance to do
  321. * something and was unable to... that includes situations like
  322. * half closed connections. So process this "failed timeout"
  323. * close as a violent death and don't try to do protocol
  324. * cleanup like flush partials.
  325. */
  326. wsi->socket_is_permanently_unusable = 1;
  327. if (wsi->mode == LWSCM_WSCL_WAITING_SSL)
  328. wsi->vhost->protocols[0].callback(wsi,
  329. LWS_CALLBACK_CLIENT_CONNECTION_ERROR,
  330. wsi->user_space, (void *)"Timed out waiting SSL", 21);
  331. lws_close_free_wsi(wsi, LWS_CLOSE_STATUS_NOSTATUS);
  332. return 1;
  333. }
  334. return 0;
  335. }
  336. int lws_rxflow_cache(struct lws *wsi, unsigned char *buf, int n, int len)
  337. {
  338. /* his RX is flowcontrolled, don't send remaining now */
  339. if (wsi->rxflow_buffer) {
  340. /* rxflow while we were spilling prev rxflow */
  341. lwsl_info("stalling in existing rxflow buf\n");
  342. return 1;
  343. }
  344. /* a new rxflow, buffer it and warn caller */
  345. lwsl_info("new rxflow input buffer len %d\n", len - n);
  346. wsi->rxflow_buffer = lws_malloc(len - n);
  347. if (!wsi->rxflow_buffer)
  348. return -1;
  349. wsi->rxflow_len = len - n;
  350. wsi->rxflow_pos = 0;
  351. memcpy(wsi->rxflow_buffer, buf + n, len - n);
  352. return 0;
  353. }
  354. /* this is used by the platform service code to stop us waiting for network
  355. * activity in poll() when we have something that already needs service
  356. */
  357. LWS_VISIBLE LWS_EXTERN int
  358. lws_service_adjust_timeout(struct lws_context *context, int timeout_ms, int tsi)
  359. {
  360. struct lws_context_per_thread *pt = &context->pt[tsi];
  361. int n;
  362. /* Figure out if we really want to wait in poll()
  363. * We only need to wait if really nothing already to do and we have
  364. * to wait for something from network
  365. */
  366. /* 1) if we know we are draining rx ext, do not wait in poll */
  367. if (pt->rx_draining_ext_list)
  368. return 0;
  369. #ifdef LWS_OPENSSL_SUPPORT
  370. /* 2) if we know we have non-network pending data, do not wait in poll */
  371. if (lws_ssl_anybody_has_buffered_read_tsi(context, tsi)) {
  372. lwsl_info("ssl buffered read\n");
  373. return 0;
  374. }
  375. #endif
  376. /* 3) if any ah has pending rx, do not wait in poll */
  377. for (n = 0; n < context->max_http_header_pool; n++)
  378. if (pt->ah_pool[n].rxpos != pt->ah_pool[n].rxlen) {
  379. /* any ah with pending rx must be attached to someone */
  380. if (!pt->ah_pool[n].wsi) {
  381. lwsl_err("%s: assert: no wsi attached to ah\n", __func__);
  382. assert(0);
  383. }
  384. return 0;
  385. }
  386. return timeout_ms;
  387. }
  388. /*
  389. * guys that need POLLIN service again without waiting for network action
  390. * can force POLLIN here if not flowcontrolled, so they will get service.
  391. *
  392. * Return nonzero if anybody got their POLLIN faked
  393. */
  394. int
  395. lws_service_flag_pending(struct lws_context *context, int tsi)
  396. {
  397. struct lws_context_per_thread *pt = &context->pt[tsi];
  398. #ifdef LWS_OPENSSL_SUPPORT
  399. struct lws *wsi_next;
  400. #endif
  401. struct lws *wsi;
  402. int forced = 0;
  403. int n;
  404. /* POLLIN faking */
  405. /*
  406. * 1) For all guys with already-available ext data to drain, if they are
  407. * not flowcontrolled, fake their POLLIN status
  408. */
  409. wsi = pt->rx_draining_ext_list;
  410. while (wsi) {
  411. pt->fds[wsi->position_in_fds_table].revents |=
  412. pt->fds[wsi->position_in_fds_table].events & LWS_POLLIN;
  413. if (pt->fds[wsi->position_in_fds_table].revents &
  414. LWS_POLLIN)
  415. forced = 1;
  416. wsi = wsi->u.ws.rx_draining_ext_list;
  417. }
  418. #ifdef LWS_OPENSSL_SUPPORT
  419. /*
  420. * 2) For all guys with buffered SSL read data already saved up, if they
  421. * are not flowcontrolled, fake their POLLIN status so they'll get
  422. * service to use up the buffered incoming data, even though their
  423. * network socket may have nothing
  424. */
  425. wsi = pt->pending_read_list;
  426. while (wsi) {
  427. wsi_next = wsi->pending_read_list_next;
  428. pt->fds[wsi->position_in_fds_table].revents |=
  429. pt->fds[wsi->position_in_fds_table].events & LWS_POLLIN;
  430. if (pt->fds[wsi->position_in_fds_table].revents & LWS_POLLIN) {
  431. forced = 1;
  432. /*
  433. * he's going to get serviced now, take him off the
  434. * list of guys with buffered SSL. If he still has some
  435. * at the end of the service, he'll get put back on the
  436. * list then.
  437. */
  438. lws_ssl_remove_wsi_from_buffered_list(wsi);
  439. }
  440. wsi = wsi_next;
  441. }
  442. #endif
  443. /*
  444. * 3) For any wsi who have an ah with pending RX who did not
  445. * complete their current headers, and are not flowcontrolled,
  446. * fake their POLLIN status so they will be able to drain the
  447. * rx buffered in the ah
  448. */
  449. for (n = 0; n < context->max_http_header_pool; n++)
  450. if (pt->ah_pool[n].rxpos != pt->ah_pool[n].rxlen &&
  451. !pt->ah_pool[n].wsi->hdr_parsing_completed) {
  452. pt->fds[pt->ah_pool[n].wsi->position_in_fds_table].revents |=
  453. pt->fds[pt->ah_pool[n].wsi->position_in_fds_table].events &
  454. LWS_POLLIN;
  455. if (pt->fds[pt->ah_pool[n].wsi->position_in_fds_table].revents &
  456. LWS_POLLIN)
  457. forced = 1;
  458. }
  459. return forced;
  460. }
  461. #ifndef LWS_NO_CLIENT
  462. LWS_VISIBLE int
  463. lws_http_client_read(struct lws *wsi, char **buf, int *len)
  464. {
  465. int rlen, n;
  466. rlen = lws_ssl_capable_read(wsi, (unsigned char *)*buf, *len);
  467. if (rlen < 0)
  468. return -1;
  469. *len = rlen;
  470. if (rlen == 0)
  471. return 0;
  472. // lwsl_err("%s: read %d\n", __func__, rlen);
  473. /* allow the source to signal he has data again next time */
  474. wsi->client_rx_avail = 0;
  475. lws_change_pollfd(wsi, 0, LWS_POLLIN);
  476. /*
  477. * server may insist on transfer-encoding: chunked,
  478. * so http client must deal with it
  479. */
  480. spin_chunks:
  481. while (wsi->chunked && (wsi->chunk_parser != ELCP_CONTENT) && *len) {
  482. switch (wsi->chunk_parser) {
  483. case ELCP_HEX:
  484. if ((*buf)[0] == '\x0d') {
  485. wsi->chunk_parser = ELCP_CR;
  486. break;
  487. }
  488. n = char_to_hex((*buf)[0]);
  489. if (n < 0)
  490. return -1;
  491. wsi->chunk_remaining <<= 4;
  492. wsi->chunk_remaining |= n;
  493. break;
  494. case ELCP_CR:
  495. if ((*buf)[0] != '\x0a')
  496. return -1;
  497. wsi->chunk_parser = ELCP_CONTENT;
  498. lwsl_info("chunk %d\n", wsi->chunk_remaining);
  499. if (wsi->chunk_remaining)
  500. break;
  501. lwsl_info("final chunk\n");
  502. goto completed;
  503. case ELCP_CONTENT:
  504. break;
  505. case ELCP_POST_CR:
  506. if ((*buf)[0] != '\x0d')
  507. return -1;
  508. wsi->chunk_parser = ELCP_POST_LF;
  509. break;
  510. case ELCP_POST_LF:
  511. if ((*buf)[0] != '\x0a')
  512. return -1;
  513. wsi->chunk_parser = ELCP_HEX;
  514. wsi->chunk_remaining = 0;
  515. break;
  516. }
  517. (*buf)++;
  518. (*len)--;
  519. }
  520. if (wsi->chunked && !wsi->chunk_remaining)
  521. return 0;
  522. if (wsi->u.http.content_remain &&
  523. (int)wsi->u.http.content_remain < *len)
  524. n = wsi->u.http.content_remain;
  525. else
  526. n = *len;
  527. if (wsi->chunked && wsi->chunk_remaining &&
  528. wsi->chunk_remaining < n)
  529. n = wsi->chunk_remaining;
  530. #ifdef LWS_WITH_HTTP_PROXY
  531. /* hubbub */
  532. if (wsi->perform_rewrite)
  533. lws_rewrite_parse(wsi->rw, (unsigned char *)*buf, n);
  534. else
  535. #endif
  536. if (user_callback_handle_rxflow(wsi->protocol->callback,
  537. wsi, LWS_CALLBACK_RECEIVE_CLIENT_HTTP_READ,
  538. wsi->user_space, *buf, n))
  539. return -1;
  540. if (wsi->chunked && wsi->chunk_remaining) {
  541. (*buf) += n;
  542. wsi->chunk_remaining -= n;
  543. *len -= n;
  544. }
  545. if (wsi->chunked && !wsi->chunk_remaining)
  546. wsi->chunk_parser = ELCP_POST_CR;
  547. if (wsi->chunked && *len) {
  548. goto spin_chunks;
  549. }
  550. if (wsi->chunked)
  551. return 0;
  552. wsi->u.http.content_remain -= n;
  553. if (wsi->u.http.content_remain || !wsi->u.http.content_length)
  554. return 0;
  555. completed:
  556. if (user_callback_handle_rxflow(wsi->protocol->callback,
  557. wsi, LWS_CALLBACK_COMPLETED_CLIENT_HTTP,
  558. wsi->user_space, NULL, 0))
  559. return -1;
  560. if (lws_http_transaction_completed_client(wsi))
  561. return -1;
  562. return 0;
  563. }
  564. #endif
  565. LWS_VISIBLE int
  566. lws_service_fd_tsi(struct lws_context *context, struct lws_pollfd *pollfd, int tsi)
  567. {
  568. struct lws_context_per_thread *pt = &context->pt[tsi];
  569. lws_sockfd_type our_fd = 0, tmp_fd;
  570. struct lws_tokens eff_buf;
  571. unsigned int pending = 0;
  572. struct lws *wsi, *wsi1;
  573. char draining_flow = 0;
  574. int timed_out = 0;
  575. time_t now;
  576. int n = 0, m;
  577. int more;
  578. if (!context->protocol_init_done)
  579. lws_protocol_init(context);
  580. time(&now);
  581. /*
  582. * handle case that system time was uninitialized when lws started
  583. * at boot, and got initialized a little later
  584. */
  585. if (context->time_up < 1464083026 && now > 1464083026)
  586. context->time_up = now;
  587. /* TODO: if using libev, we should probably use timeout watchers... */
  588. if (context->last_timeout_check_s != now) {
  589. context->last_timeout_check_s = now;
  590. lws_plat_service_periodic(context);
  591. /* global timeout check once per second */
  592. if (pollfd)
  593. our_fd = pollfd->fd;
  594. wsi = context->pt[tsi].timeout_list;
  595. while (wsi) {
  596. /* we have to take copies, because he may be deleted */
  597. wsi1 = wsi->timeout_list;
  598. tmp_fd = wsi->sock;
  599. if (lws_service_timeout_check(wsi, (unsigned int)now)) {
  600. /* he did time out... */
  601. if (tmp_fd == our_fd)
  602. /* it was the guy we came to service! */
  603. timed_out = 1;
  604. /* he's gone, no need to mark as handled */
  605. }
  606. wsi = wsi1;
  607. }
  608. #ifdef LWS_WITH_CGI
  609. lws_cgi_kill_terminated(pt);
  610. #endif
  611. #if 0
  612. {
  613. char s[300], *p = s;
  614. for (n = 0; n < context->count_threads; n++)
  615. p += sprintf(p, " %7lu (%5d), ",
  616. context->pt[n].count_conns,
  617. context->pt[n].fds_count);
  618. lwsl_notice("load: %s\n", s);
  619. }
  620. #endif
  621. }
  622. /*
  623. * at intervals, check for ws connections needing ping-pong checks
  624. */
  625. if (context->ws_ping_pong_interval &&
  626. context->last_ws_ping_pong_check_s < now + 10) {
  627. context->last_ws_ping_pong_check_s = now;
  628. struct lws_vhost *vh = context->vhost_list;
  629. while (vh) {
  630. for (n = 0; n < vh->count_protocols; n++) {
  631. wsi = vh->same_vh_protocol_list[n];
  632. while (wsi) {
  633. if (wsi->state == LWSS_ESTABLISHED &&
  634. !wsi->socket_is_permanently_unusable &&
  635. !wsi->u.ws.send_check_ping &&
  636. wsi->u.ws.time_next_ping_check &&
  637. wsi->u.ws.time_next_ping_check < now) {
  638. lwsl_info("requesting ping-pong on wsi %p\n", wsi);
  639. wsi->u.ws.send_check_ping = 1;
  640. lws_set_timeout(wsi, PENDING_TIMEOUT_WS_PONG_CHECK_SEND_PING,
  641. context->timeout_secs);
  642. lws_callback_on_writable(wsi);
  643. wsi->u.ws.time_next_ping_check = now +
  644. wsi->context->ws_ping_pong_interval;
  645. }
  646. wsi = wsi->same_vh_protocol_next;
  647. }
  648. }
  649. vh = vh->vhost_next;
  650. }
  651. }
  652. /* the socket we came to service timed out, nothing to do */
  653. if (timed_out)
  654. return 0;
  655. /* just here for timeout management? */
  656. if (!pollfd)
  657. return 0;
  658. /* no, here to service a socket descriptor */
  659. wsi = wsi_from_fd(context, pollfd->fd);
  660. if (!wsi)
  661. /* not lws connection ... leave revents alone and return */
  662. return 0;
  663. /*
  664. * so that caller can tell we handled, past here we need to
  665. * zero down pollfd->revents after handling
  666. */
  667. #if LWS_POSIX
  668. /* handle session socket closed */
  669. if ((!(pollfd->revents & pollfd->events & LWS_POLLIN)) &&
  670. (pollfd->revents & LWS_POLLHUP)) {
  671. wsi->socket_is_permanently_unusable = 1;
  672. lwsl_debug("Session Socket %p (fd=%d) dead\n",
  673. (void *)wsi, pollfd->fd);
  674. goto close_and_handled;
  675. }
  676. #ifdef _WIN32
  677. if (pollfd->revents & LWS_POLLOUT)
  678. wsi->sock_send_blocking = FALSE;
  679. #endif
  680. #endif
  681. lwsl_debug("fd=%d, revents=%d\n", pollfd->fd, pollfd->revents);
  682. /* okay, what we came here to do... */
  683. switch (wsi->mode) {
  684. case LWSCM_HTTP_SERVING:
  685. case LWSCM_HTTP_CLIENT:
  686. case LWSCM_HTTP_SERVING_ACCEPTED:
  687. case LWSCM_SERVER_LISTENER:
  688. case LWSCM_SSL_ACK_PENDING:
  689. if (wsi->state == LWSS_CLIENT_HTTP_ESTABLISHED)
  690. goto handled;
  691. #ifdef LWS_WITH_CGI
  692. if (wsi->cgi && (pollfd->revents & LWS_POLLOUT)) {
  693. n = lws_handle_POLLOUT_event(wsi, pollfd);
  694. if (n)
  695. goto close_and_handled;
  696. goto handled;
  697. }
  698. #endif
  699. n = lws_server_socket_service(context, wsi, pollfd);
  700. if (n) /* closed by above */
  701. return 1;
  702. goto handled;
  703. case LWSCM_WS_SERVING:
  704. case LWSCM_WS_CLIENT:
  705. case LWSCM_HTTP2_SERVING:
  706. case LWSCM_HTTP_CLIENT_ACCEPTED:
  707. /* 1: something requested a callback when it was OK to write */
  708. if ((pollfd->revents & LWS_POLLOUT) &&
  709. (wsi->state == LWSS_ESTABLISHED ||
  710. wsi->state == LWSS_HTTP2_ESTABLISHED ||
  711. wsi->state == LWSS_HTTP2_ESTABLISHED_PRE_SETTINGS ||
  712. wsi->state == LWSS_RETURNED_CLOSE_ALREADY ||
  713. wsi->state == LWSS_FLUSHING_STORED_SEND_BEFORE_CLOSE) &&
  714. lws_handle_POLLOUT_event(wsi, pollfd)) {
  715. if (wsi->state == LWSS_RETURNED_CLOSE_ALREADY)
  716. wsi->state = LWSS_FLUSHING_STORED_SEND_BEFORE_CLOSE;
  717. lwsl_info("lws_service_fd: closing\n");
  718. goto close_and_handled;
  719. }
  720. if (wsi->state == LWSS_RETURNED_CLOSE_ALREADY ||
  721. wsi->state == LWSS_AWAITING_CLOSE_ACK) {
  722. /*
  723. * we stopped caring about anything except control
  724. * packets. Force flow control off, defeat tx
  725. * draining.
  726. */
  727. lws_rx_flow_control(wsi, 1);
  728. wsi->u.ws.tx_draining_ext = 0;
  729. }
  730. if (wsi->u.ws.tx_draining_ext)
  731. /* we cannot deal with new RX until the TX ext
  732. * path has been drained. It's because new
  733. * rx will, eg, crap on the wsi rx buf that
  734. * may be needed to retain state.
  735. *
  736. * TX ext drain path MUST go through event loop
  737. * to avoid blocking.
  738. */
  739. break;
  740. if (!(wsi->rxflow_change_to & LWS_RXFLOW_ALLOW))
  741. /* We cannot deal with any kind of new RX
  742. * because we are RX-flowcontrolled.
  743. */
  744. break;
  745. /* 2: RX Extension needs to be drained
  746. */
  747. if (wsi->state == LWSS_ESTABLISHED &&
  748. wsi->u.ws.rx_draining_ext) {
  749. lwsl_ext("%s: RX EXT DRAINING: Service\n", __func__);
  750. #ifndef LWS_NO_CLIENT
  751. if (wsi->mode == LWSCM_WS_CLIENT) {
  752. n = lws_client_rx_sm(wsi, 0);
  753. if (n < 0)
  754. /* we closed wsi */
  755. n = 0;
  756. } else
  757. #endif
  758. n = lws_rx_sm(wsi, 0);
  759. goto handled;
  760. }
  761. if (wsi->u.ws.rx_draining_ext)
  762. /*
  763. * We have RX EXT content to drain, but can't do it
  764. * right now. That means we cannot do anything lower
  765. * priority either.
  766. */
  767. break;
  768. /* 3: RX Flowcontrol buffer needs to be drained
  769. */
  770. if (wsi->rxflow_buffer) {
  771. lwsl_info("draining rxflow (len %d)\n",
  772. wsi->rxflow_len - wsi->rxflow_pos
  773. );
  774. /* well, drain it */
  775. eff_buf.token = (char *)wsi->rxflow_buffer +
  776. wsi->rxflow_pos;
  777. eff_buf.token_len = wsi->rxflow_len - wsi->rxflow_pos;
  778. draining_flow = 1;
  779. goto drain;
  780. }
  781. /* 4: any incoming (or ah-stashed incoming rx) data ready?
  782. * notice if rx flow going off raced poll(), rx flow wins
  783. */
  784. if (!(pollfd->revents & pollfd->events & LWS_POLLIN))
  785. break;
  786. read:
  787. /* all the union members start with hdr, so even in ws mode
  788. * we can deal with the ah via u.hdr
  789. */
  790. if (wsi->u.hdr.ah) {
  791. lwsl_info("%s: %p: inherited ah rx\n", __func__, wsi);
  792. eff_buf.token_len = wsi->u.hdr.ah->rxlen -
  793. wsi->u.hdr.ah->rxpos;
  794. eff_buf.token = (char *)wsi->u.hdr.ah->rx +
  795. wsi->u.hdr.ah->rxpos;
  796. } else {
  797. if (wsi->mode != LWSCM_HTTP_CLIENT_ACCEPTED) {
  798. eff_buf.token_len = lws_ssl_capable_read(wsi,
  799. pt->serv_buf, pending ? pending :
  800. context->pt_serv_buf_size);
  801. switch (eff_buf.token_len) {
  802. case 0:
  803. lwsl_info("%s: zero length read\n", __func__);
  804. goto close_and_handled;
  805. case LWS_SSL_CAPABLE_MORE_SERVICE:
  806. lwsl_info("SSL Capable more service\n");
  807. n = 0;
  808. goto handled;
  809. case LWS_SSL_CAPABLE_ERROR:
  810. lwsl_info("Closing when error\n");
  811. goto close_and_handled;
  812. }
  813. eff_buf.token = (char *)pt->serv_buf;
  814. }
  815. }
  816. drain:
  817. #ifndef LWS_NO_CLIENT
  818. if (wsi->mode == LWSCM_HTTP_CLIENT_ACCEPTED &&
  819. !wsi->told_user_closed) {
  820. /*
  821. * simply mark ourselves as having readable data
  822. * and turn off our POLLIN
  823. */
  824. wsi->client_rx_avail = 1;
  825. lws_change_pollfd(wsi, LWS_POLLIN, 0);
  826. /* let user code know, he'll usually ask for writeable
  827. * callback and drain / re-enable it there
  828. */
  829. if (user_callback_handle_rxflow(
  830. wsi->protocol->callback,
  831. wsi, LWS_CALLBACK_RECEIVE_CLIENT_HTTP,
  832. wsi->user_space, NULL, 0))
  833. goto close_and_handled;
  834. }
  835. #endif
  836. /*
  837. * give any active extensions a chance to munge the buffer
  838. * before parse. We pass in a pointer to an lws_tokens struct
  839. * prepared with the default buffer and content length that's in
  840. * there. Rather than rewrite the default buffer, extensions
  841. * that expect to grow the buffer can adapt .token to
  842. * point to their own per-connection buffer in the extension
  843. * user allocation. By default with no extensions or no
  844. * extension callback handling, just the normal input buffer is
  845. * used then so it is efficient.
  846. */
  847. do {
  848. more = 0;
  849. m = lws_ext_cb_active(wsi, LWS_EXT_CB_PACKET_RX_PREPARSE,
  850. &eff_buf, 0);
  851. if (m < 0)
  852. goto close_and_handled;
  853. if (m)
  854. more = 1;
  855. /* service incoming data */
  856. if (eff_buf.token_len) {
  857. /*
  858. * if draining from rxflow buffer, not
  859. * critical to track what was used since at the
  860. * use it bumps wsi->rxflow_pos. If we come
  861. * around again it will pick up from where it
  862. * left off.
  863. */
  864. n = lws_read(wsi, (unsigned char *)eff_buf.token,
  865. eff_buf.token_len);
  866. if (n < 0) {
  867. /* we closed wsi */
  868. n = 0;
  869. goto handled;
  870. }
  871. }
  872. eff_buf.token = NULL;
  873. eff_buf.token_len = 0;
  874. } while (more);
  875. if (wsi->u.hdr.ah) {
  876. lwsl_notice("%s: %p: detaching\n",
  877. __func__, wsi);
  878. /* show we used all the pending rx up */
  879. wsi->u.hdr.ah->rxpos = wsi->u.hdr.ah->rxlen;
  880. /* we can run the normal ah detach flow despite
  881. * being in ws union mode, since all union members
  882. * start with hdr */
  883. lws_header_table_detach(wsi, 0);
  884. }
  885. pending = lws_ssl_pending(wsi);
  886. if (pending) {
  887. pending = pending > context->pt_serv_buf_size ?
  888. context->pt_serv_buf_size : pending;
  889. goto read;
  890. }
  891. if (draining_flow && wsi->rxflow_buffer &&
  892. wsi->rxflow_pos == wsi->rxflow_len) {
  893. lwsl_info("flow buffer: drained\n");
  894. lws_free_set_NULL(wsi->rxflow_buffer);
  895. /* having drained the rxflow buffer, can rearm POLLIN */
  896. #ifdef LWS_NO_SERVER
  897. n =
  898. #endif
  899. _lws_rx_flow_control(wsi);
  900. /* n ignored, needed for NO_SERVER case */
  901. }
  902. break;
  903. #ifdef LWS_WITH_CGI
  904. case LWSCM_CGI: /* we exist to handle a cgi's stdin/out/err data...
  905. * do the callback on our master wsi
  906. */
  907. {
  908. struct lws_cgi_args args;
  909. if (wsi->cgi_channel >= LWS_STDOUT &&
  910. !(pollfd->revents & pollfd->events & LWS_POLLIN))
  911. break;
  912. if (wsi->cgi_channel == LWS_STDIN &&
  913. !(pollfd->revents & pollfd->events & LWS_POLLOUT))
  914. break;
  915. if (wsi->cgi_channel == LWS_STDIN)
  916. if (lws_change_pollfd(wsi, LWS_POLLOUT, 0)) {
  917. lwsl_info("failed at set pollfd\n");
  918. return 1;
  919. }
  920. args.ch = wsi->cgi_channel;
  921. args.stdwsi = &wsi->parent->cgi->stdwsi[0];
  922. args.hdr_state = wsi->hdr_state;
  923. //lwsl_err("CGI LWS_STDOUT waiting wsi %p mode %d state %d\n",
  924. // wsi->parent, wsi->parent->mode, wsi->parent->state);
  925. if (user_callback_handle_rxflow(
  926. wsi->parent->protocol->callback,
  927. wsi->parent, LWS_CALLBACK_CGI,
  928. wsi->parent->user_space,
  929. (void *)&args, 0))
  930. return 1;
  931. break;
  932. }
  933. #endif
  934. default:
  935. #ifdef LWS_NO_CLIENT
  936. break;
  937. #else
  938. if ((pollfd->revents & LWS_POLLOUT) &&
  939. lws_handle_POLLOUT_event(wsi, pollfd))
  940. goto close_and_handled;
  941. n = lws_client_socket_service(context, wsi, pollfd);
  942. if (n)
  943. return 1;
  944. goto handled;
  945. #endif
  946. }
  947. n = 0;
  948. goto handled;
  949. close_and_handled:
  950. lwsl_debug("Close and handled\n");
  951. lws_close_free_wsi(wsi, LWS_CLOSE_STATUS_NOSTATUS);
  952. /*
  953. * pollfd may point to something else after the close
  954. * due to pollfd swapping scheme on delete on some platforms
  955. * we can't clear revents now because it'd be the wrong guy's revents
  956. */
  957. return 1;
  958. handled:
  959. pollfd->revents = 0;
  960. return n;
  961. }
  962. LWS_VISIBLE int
  963. lws_service_fd(struct lws_context *context, struct lws_pollfd *pollfd)
  964. {
  965. return lws_service_fd_tsi(context, pollfd, 0);
  966. }
  967. LWS_VISIBLE int
  968. lws_service(struct lws_context *context, int timeout_ms)
  969. {
  970. return lws_plat_service(context, timeout_ms);
  971. }
  972. LWS_VISIBLE int
  973. lws_service_tsi(struct lws_context *context, int timeout_ms, int tsi)
  974. {
  975. return lws_plat_service_tsi(context, timeout_ms, tsi);
  976. }