select.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at http://curl.haxx.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. ***************************************************************************/
  22. #include "curl_setup.h"
  23. #ifdef HAVE_SYS_SELECT_H
  24. #include <sys/select.h>
  25. #endif
  26. #if !defined(HAVE_SELECT) && !defined(HAVE_POLL_FINE)
  27. #error "We can't compile without select() or poll() support."
  28. #endif
  29. #if defined(__BEOS__) && !defined(__HAIKU__)
  30. /* BeOS has FD_SET defined in socket.h */
  31. #include <socket.h>
  32. #endif
  33. #ifdef MSDOS
  34. #include <dos.h> /* delay() */
  35. #endif
  36. #include <curl/curl.h>
  37. #include "urldata.h"
  38. #include "connect.h"
  39. #include "select.h"
  40. #include "warnless.h"
  41. /* Convenience local macros */
  42. #define elapsed_ms (int)curlx_tvdiff(curlx_tvnow(), initial_tv)
  43. int Curl_ack_eintr = 0;
  44. #define error_not_EINTR (Curl_ack_eintr || error != EINTR)
  45. /*
  46. * Internal function used for waiting a specific amount of ms
  47. * in Curl_socket_ready() and Curl_poll() when no file descriptor
  48. * is provided to wait on, just being used to delay execution.
  49. * WinSock select() and poll() timeout mechanisms need a valid
  50. * socket descriptor in a not null file descriptor set to work.
  51. * Waiting indefinitely with this function is not allowed, a
  52. * zero or negative timeout value will return immediately.
  53. * Timeout resolution, accuracy, as well as maximum supported
  54. * value is system dependent, neither factor is a citical issue
  55. * for the intended use of this function in the library.
  56. *
  57. * Return values:
  58. * -1 = system call error, invalid timeout value, or interrupted
  59. * 0 = specified timeout has elapsed
  60. */
  61. int Curl_wait_ms(int timeout_ms)
  62. {
  63. #if !defined(MSDOS) && !defined(USE_WINSOCK)
  64. #ifndef HAVE_POLL_FINE
  65. struct timeval pending_tv;
  66. #endif
  67. struct timeval initial_tv;
  68. int pending_ms;
  69. int error;
  70. #endif
  71. int r = 0;
  72. if(!timeout_ms)
  73. return 0;
  74. if(timeout_ms < 0) {
  75. SET_SOCKERRNO(EINVAL);
  76. return -1;
  77. }
  78. #if defined(MSDOS)
  79. delay(timeout_ms);
  80. #elif defined(USE_WINSOCK)
  81. Sleep(timeout_ms);
  82. #else
  83. pending_ms = timeout_ms;
  84. initial_tv = curlx_tvnow();
  85. do {
  86. #if defined(HAVE_POLL_FINE)
  87. r = poll(NULL, 0, pending_ms);
  88. #else
  89. pending_tv.tv_sec = pending_ms / 1000;
  90. pending_tv.tv_usec = (pending_ms % 1000) * 1000;
  91. r = select(0, NULL, NULL, NULL, &pending_tv);
  92. #endif /* HAVE_POLL_FINE */
  93. if(r != -1)
  94. break;
  95. error = SOCKERRNO;
  96. if(error && error_not_EINTR)
  97. break;
  98. pending_ms = timeout_ms - elapsed_ms;
  99. if(pending_ms <= 0)
  100. break;
  101. } while(r == -1);
  102. #endif /* USE_WINSOCK */
  103. if(r)
  104. r = -1;
  105. return r;
  106. }
  107. /*
  108. * Wait for read or write events on a set of file descriptors. It uses poll()
  109. * when a fine poll() is available, in order to avoid limits with FD_SETSIZE,
  110. * otherwise select() is used. An error is returned if select() is being used
  111. * and a file descriptor is too large for FD_SETSIZE.
  112. *
  113. * A negative timeout value makes this function wait indefinitely,
  114. * unles no valid file descriptor is given, when this happens the
  115. * negative timeout is ignored and the function times out immediately.
  116. *
  117. * Return values:
  118. * -1 = system call error or fd >= FD_SETSIZE
  119. * 0 = timeout
  120. * [bitmask] = action as described below
  121. *
  122. * CURL_CSELECT_IN - first socket is readable
  123. * CURL_CSELECT_IN2 - second socket is readable
  124. * CURL_CSELECT_OUT - write socket is writable
  125. * CURL_CSELECT_ERR - an error condition occurred
  126. */
  127. int Curl_socket_check(curl_socket_t readfd0, /* two sockets to read from */
  128. curl_socket_t readfd1,
  129. curl_socket_t writefd, /* socket to write to */
  130. long timeout_ms) /* milliseconds to wait */
  131. {
  132. #ifdef HAVE_POLL_FINE
  133. struct pollfd pfd[3];
  134. int num;
  135. #else
  136. struct timeval pending_tv;
  137. struct timeval *ptimeout;
  138. fd_set fds_read;
  139. fd_set fds_write;
  140. fd_set fds_err;
  141. curl_socket_t maxfd;
  142. #endif
  143. struct timeval initial_tv = {0,0};
  144. int pending_ms = 0;
  145. int error;
  146. int r;
  147. int ret;
  148. if((readfd0 == CURL_SOCKET_BAD) && (readfd1 == CURL_SOCKET_BAD) &&
  149. (writefd == CURL_SOCKET_BAD)) {
  150. /* no sockets, just wait */
  151. r = Curl_wait_ms((int)timeout_ms);
  152. return r;
  153. }
  154. /* Avoid initial timestamp, avoid curlx_tvnow() call, when elapsed
  155. time in this function does not need to be measured. This happens
  156. when function is called with a zero timeout or a negative timeout
  157. value indicating a blocking call should be performed. */
  158. if(timeout_ms > 0) {
  159. pending_ms = (int)timeout_ms;
  160. initial_tv = curlx_tvnow();
  161. }
  162. #ifdef HAVE_POLL_FINE
  163. num = 0;
  164. if(readfd0 != CURL_SOCKET_BAD) {
  165. pfd[num].fd = readfd0;
  166. pfd[num].events = POLLRDNORM|POLLIN|POLLRDBAND|POLLPRI;
  167. pfd[num].revents = 0;
  168. num++;
  169. }
  170. if(readfd1 != CURL_SOCKET_BAD) {
  171. pfd[num].fd = readfd1;
  172. pfd[num].events = POLLRDNORM|POLLIN|POLLRDBAND|POLLPRI;
  173. pfd[num].revents = 0;
  174. num++;
  175. }
  176. if(writefd != CURL_SOCKET_BAD) {
  177. pfd[num].fd = writefd;
  178. pfd[num].events = POLLWRNORM|POLLOUT;
  179. pfd[num].revents = 0;
  180. num++;
  181. }
  182. do {
  183. if(timeout_ms < 0)
  184. pending_ms = -1;
  185. else if(!timeout_ms)
  186. pending_ms = 0;
  187. r = poll(pfd, num, pending_ms);
  188. if(r != -1)
  189. break;
  190. error = SOCKERRNO;
  191. if(error && error_not_EINTR)
  192. break;
  193. if(timeout_ms > 0) {
  194. pending_ms = (int)(timeout_ms - elapsed_ms);
  195. if(pending_ms <= 0) {
  196. r = 0; /* Simulate a "call timed out" case */
  197. break;
  198. }
  199. }
  200. } while(r == -1);
  201. if(r < 0)
  202. return -1;
  203. if(r == 0)
  204. return 0;
  205. ret = 0;
  206. num = 0;
  207. if(readfd0 != CURL_SOCKET_BAD) {
  208. if(pfd[num].revents & (POLLRDNORM|POLLIN|POLLERR|POLLHUP))
  209. ret |= CURL_CSELECT_IN;
  210. if(pfd[num].revents & (POLLRDBAND|POLLPRI|POLLNVAL))
  211. ret |= CURL_CSELECT_ERR;
  212. num++;
  213. }
  214. if(readfd1 != CURL_SOCKET_BAD) {
  215. if(pfd[num].revents & (POLLRDNORM|POLLIN|POLLERR|POLLHUP))
  216. ret |= CURL_CSELECT_IN2;
  217. if(pfd[num].revents & (POLLRDBAND|POLLPRI|POLLNVAL))
  218. ret |= CURL_CSELECT_ERR;
  219. num++;
  220. }
  221. if(writefd != CURL_SOCKET_BAD) {
  222. if(pfd[num].revents & (POLLWRNORM|POLLOUT))
  223. ret |= CURL_CSELECT_OUT;
  224. if(pfd[num].revents & (POLLERR|POLLHUP|POLLNVAL))
  225. ret |= CURL_CSELECT_ERR;
  226. }
  227. return ret;
  228. #else /* HAVE_POLL_FINE */
  229. FD_ZERO(&fds_err);
  230. maxfd = (curl_socket_t)-1;
  231. FD_ZERO(&fds_read);
  232. if(readfd0 != CURL_SOCKET_BAD) {
  233. VERIFY_SOCK(readfd0);
  234. FD_SET(readfd0, &fds_read);
  235. FD_SET(readfd0, &fds_err);
  236. maxfd = readfd0;
  237. }
  238. if(readfd1 != CURL_SOCKET_BAD) {
  239. VERIFY_SOCK(readfd1);
  240. FD_SET(readfd1, &fds_read);
  241. FD_SET(readfd1, &fds_err);
  242. if(readfd1 > maxfd)
  243. maxfd = readfd1;
  244. }
  245. FD_ZERO(&fds_write);
  246. if(writefd != CURL_SOCKET_BAD) {
  247. VERIFY_SOCK(writefd);
  248. FD_SET(writefd, &fds_write);
  249. FD_SET(writefd, &fds_err);
  250. if(writefd > maxfd)
  251. maxfd = writefd;
  252. }
  253. ptimeout = (timeout_ms < 0) ? NULL : &pending_tv;
  254. do {
  255. if(timeout_ms > 0) {
  256. pending_tv.tv_sec = pending_ms / 1000;
  257. pending_tv.tv_usec = (pending_ms % 1000) * 1000;
  258. }
  259. else if(!timeout_ms) {
  260. pending_tv.tv_sec = 0;
  261. pending_tv.tv_usec = 0;
  262. }
  263. /* WinSock select() must not be called with an fd_set that contains zero
  264. fd flags, or it will return WSAEINVAL. But, it also can't be called
  265. with no fd_sets at all! From the documentation:
  266. Any two of the parameters, readfds, writefds, or exceptfds, can be
  267. given as null. At least one must be non-null, and any non-null
  268. descriptor set must contain at least one handle to a socket.
  269. We know that we have at least one bit set in at least two fd_sets in
  270. this case, but we may have no bits set in either fds_read or fd_write,
  271. so check for that and handle it. Luckily, with WinSock, we can _also_
  272. ask how many bits are set on an fd_set.
  273. It is unclear why WinSock doesn't just handle this for us instead of
  274. calling this an error.
  275. Note also that WinSock ignores the first argument, so we don't worry
  276. about the fact that maxfd is computed incorrectly with WinSock (since
  277. curl_socket_t is unsigned in such cases and thus -1 is the largest
  278. value).
  279. */
  280. r = select((int)maxfd + 1,
  281. #ifndef USE_WINSOCK
  282. &fds_read,
  283. &fds_write,
  284. #else
  285. fds_read.fd_count ? &fds_read : NULL,
  286. fds_write.fd_count ? &fds_write : NULL,
  287. #endif
  288. &fds_err, ptimeout);
  289. if(r != -1)
  290. break;
  291. error = SOCKERRNO;
  292. if(error && error_not_EINTR)
  293. break;
  294. if(timeout_ms > 0) {
  295. pending_ms = timeout_ms - elapsed_ms;
  296. if(pending_ms <= 0) {
  297. r = 0; /* Simulate a "call timed out" case */
  298. break;
  299. }
  300. }
  301. } while(r == -1);
  302. if(r < 0)
  303. return -1;
  304. if(r == 0)
  305. return 0;
  306. ret = 0;
  307. if(readfd0 != CURL_SOCKET_BAD) {
  308. if(FD_ISSET(readfd0, &fds_read))
  309. ret |= CURL_CSELECT_IN;
  310. if(FD_ISSET(readfd0, &fds_err))
  311. ret |= CURL_CSELECT_ERR;
  312. }
  313. if(readfd1 != CURL_SOCKET_BAD) {
  314. if(FD_ISSET(readfd1, &fds_read))
  315. ret |= CURL_CSELECT_IN2;
  316. if(FD_ISSET(readfd1, &fds_err))
  317. ret |= CURL_CSELECT_ERR;
  318. }
  319. if(writefd != CURL_SOCKET_BAD) {
  320. if(FD_ISSET(writefd, &fds_write))
  321. ret |= CURL_CSELECT_OUT;
  322. if(FD_ISSET(writefd, &fds_err))
  323. ret |= CURL_CSELECT_ERR;
  324. }
  325. return ret;
  326. #endif /* HAVE_POLL_FINE */
  327. }
  328. /*
  329. * This is a wrapper around poll(). If poll() does not exist, then
  330. * select() is used instead. An error is returned if select() is
  331. * being used and a file descriptor is too large for FD_SETSIZE.
  332. * A negative timeout value makes this function wait indefinitely,
  333. * unles no valid file descriptor is given, when this happens the
  334. * negative timeout is ignored and the function times out immediately.
  335. *
  336. * Return values:
  337. * -1 = system call error or fd >= FD_SETSIZE
  338. * 0 = timeout
  339. * N = number of structures with non zero revent fields
  340. */
  341. int Curl_poll(struct pollfd ufds[], unsigned int nfds, int timeout_ms)
  342. {
  343. #ifndef HAVE_POLL_FINE
  344. struct timeval pending_tv;
  345. struct timeval *ptimeout;
  346. fd_set fds_read;
  347. fd_set fds_write;
  348. fd_set fds_err;
  349. curl_socket_t maxfd;
  350. #endif
  351. struct timeval initial_tv = {0,0};
  352. bool fds_none = TRUE;
  353. unsigned int i;
  354. int pending_ms = 0;
  355. int error;
  356. int r;
  357. if(ufds) {
  358. for(i = 0; i < nfds; i++) {
  359. if(ufds[i].fd != CURL_SOCKET_BAD) {
  360. fds_none = FALSE;
  361. break;
  362. }
  363. }
  364. }
  365. if(fds_none) {
  366. r = Curl_wait_ms(timeout_ms);
  367. return r;
  368. }
  369. /* Avoid initial timestamp, avoid curlx_tvnow() call, when elapsed
  370. time in this function does not need to be measured. This happens
  371. when function is called with a zero timeout or a negative timeout
  372. value indicating a blocking call should be performed. */
  373. if(timeout_ms > 0) {
  374. pending_ms = timeout_ms;
  375. initial_tv = curlx_tvnow();
  376. }
  377. #ifdef HAVE_POLL_FINE
  378. do {
  379. if(timeout_ms < 0)
  380. pending_ms = -1;
  381. else if(!timeout_ms)
  382. pending_ms = 0;
  383. r = poll(ufds, nfds, pending_ms);
  384. if(r != -1)
  385. break;
  386. error = SOCKERRNO;
  387. if(error && error_not_EINTR)
  388. break;
  389. if(timeout_ms > 0) {
  390. pending_ms = timeout_ms - elapsed_ms;
  391. if(pending_ms <= 0)
  392. break;
  393. }
  394. } while(r == -1);
  395. if(r < 0)
  396. return -1;
  397. if(r == 0)
  398. return 0;
  399. for(i = 0; i < nfds; i++) {
  400. if(ufds[i].fd == CURL_SOCKET_BAD)
  401. continue;
  402. if(ufds[i].revents & POLLHUP)
  403. ufds[i].revents |= POLLIN;
  404. if(ufds[i].revents & POLLERR)
  405. ufds[i].revents |= (POLLIN|POLLOUT);
  406. }
  407. #else /* HAVE_POLL_FINE */
  408. FD_ZERO(&fds_read);
  409. FD_ZERO(&fds_write);
  410. FD_ZERO(&fds_err);
  411. maxfd = (curl_socket_t)-1;
  412. for(i = 0; i < nfds; i++) {
  413. ufds[i].revents = 0;
  414. if(ufds[i].fd == CURL_SOCKET_BAD)
  415. continue;
  416. VERIFY_SOCK(ufds[i].fd);
  417. if(ufds[i].events & (POLLIN|POLLOUT|POLLPRI|
  418. POLLRDNORM|POLLWRNORM|POLLRDBAND)) {
  419. if(ufds[i].fd > maxfd)
  420. maxfd = ufds[i].fd;
  421. if(ufds[i].events & (POLLRDNORM|POLLIN))
  422. FD_SET(ufds[i].fd, &fds_read);
  423. if(ufds[i].events & (POLLWRNORM|POLLOUT))
  424. FD_SET(ufds[i].fd, &fds_write);
  425. if(ufds[i].events & (POLLRDBAND|POLLPRI))
  426. FD_SET(ufds[i].fd, &fds_err);
  427. }
  428. }
  429. #ifdef USE_WINSOCK
  430. /* WinSock select() can't handle zero events. See the comment about this in
  431. Curl_check_socket(). */
  432. if(fds_read.fd_count == 0 && fds_write.fd_count == 0
  433. && fds_err.fd_count == 0) {
  434. r = Curl_wait_ms(timeout_ms);
  435. return r;
  436. }
  437. #endif
  438. ptimeout = (timeout_ms < 0) ? NULL : &pending_tv;
  439. do {
  440. if(timeout_ms > 0) {
  441. pending_tv.tv_sec = pending_ms / 1000;
  442. pending_tv.tv_usec = (pending_ms % 1000) * 1000;
  443. }
  444. else if(!timeout_ms) {
  445. pending_tv.tv_sec = 0;
  446. pending_tv.tv_usec = 0;
  447. }
  448. r = select((int)maxfd + 1,
  449. #ifndef USE_WINSOCK
  450. &fds_read, &fds_write, &fds_err,
  451. #else
  452. /* WinSock select() can't handle fd_sets with zero bits set, so
  453. don't give it such arguments. See the comment about this in
  454. Curl_check_socket().
  455. */
  456. fds_read.fd_count ? &fds_read : NULL,
  457. fds_write.fd_count ? &fds_write : NULL,
  458. fds_err.fd_count ? &fds_err : NULL,
  459. #endif
  460. ptimeout);
  461. if(r != -1)
  462. break;
  463. error = SOCKERRNO;
  464. if(error && error_not_EINTR)
  465. break;
  466. if(timeout_ms > 0) {
  467. pending_ms = timeout_ms - elapsed_ms;
  468. if(pending_ms <= 0)
  469. break;
  470. }
  471. } while(r == -1);
  472. if(r < 0)
  473. return -1;
  474. if(r == 0)
  475. return 0;
  476. r = 0;
  477. for(i = 0; i < nfds; i++) {
  478. ufds[i].revents = 0;
  479. if(ufds[i].fd == CURL_SOCKET_BAD)
  480. continue;
  481. if(FD_ISSET(ufds[i].fd, &fds_read))
  482. ufds[i].revents |= POLLIN;
  483. if(FD_ISSET(ufds[i].fd, &fds_write))
  484. ufds[i].revents |= POLLOUT;
  485. if(FD_ISSET(ufds[i].fd, &fds_err))
  486. ufds[i].revents |= POLLPRI;
  487. if(ufds[i].revents != 0)
  488. r++;
  489. }
  490. #endif /* HAVE_POLL_FINE */
  491. return r;
  492. }
  493. #ifdef TPF
  494. /*
  495. * This is a replacement for select() on the TPF platform.
  496. * It is used whenever libcurl calls select().
  497. * The call below to tpf_process_signals() is required because
  498. * TPF's select calls are not signal interruptible.
  499. *
  500. * Return values are the same as select's.
  501. */
  502. int tpf_select_libcurl(int maxfds, fd_set* reads, fd_set* writes,
  503. fd_set* excepts, struct timeval* tv)
  504. {
  505. int rc;
  506. rc = tpf_select_bsd(maxfds, reads, writes, excepts, tv);
  507. tpf_process_signals();
  508. return(rc);
  509. }
  510. #endif /* TPF */