2004-11-19 11:52:33 +03:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2022-01-17 01:35:00 +03:00
|
|
|
* Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-11-19 11:52:33 +03:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2020-11-04 16:02:01 +03:00
|
|
|
* are also available at https://curl.se/docs/copyright.html.
|
2004-11-19 11:52:33 +03:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2013-01-06 22:06:49 +04:00
|
|
|
#include "curl_setup.h"
|
2004-11-19 11:52:33 +03:00
|
|
|
|
2020-04-23 22:08:56 +03:00
|
|
|
#include <limits.h>
|
|
|
|
|
2004-12-21 13:11:07 +03:00
|
|
|
#ifdef HAVE_SYS_SELECT_H
|
|
|
|
#include <sys/select.h>
|
2020-03-30 16:52:43 +03:00
|
|
|
#elif defined(HAVE_UNISTD_H)
|
|
|
|
#include <unistd.h>
|
2004-12-21 13:11:07 +03:00
|
|
|
#endif
|
2004-11-19 11:52:33 +03:00
|
|
|
|
2007-03-27 22:15:26 +04:00
|
|
|
#if !defined(HAVE_SELECT) && !defined(HAVE_POLL_FINE)
|
|
|
|
#error "We can't compile without select() or poll() support."
|
2007-03-11 12:11:29 +03:00
|
|
|
#endif
|
2004-11-19 11:52:33 +03:00
|
|
|
|
2007-04-03 19:35:19 +04:00
|
|
|
#ifdef MSDOS
|
2007-01-05 18:56:28 +03:00
|
|
|
#include <dos.h> /* delay() */
|
|
|
|
#endif
|
|
|
|
|
2005-01-15 12:26:07 +03:00
|
|
|
#include <curl/curl.h>
|
|
|
|
|
2013-01-04 05:50:28 +04:00
|
|
|
#include "urldata.h"
|
|
|
|
#include "connect.h"
|
|
|
|
#include "select.h"
|
2020-04-23 22:08:56 +03:00
|
|
|
#include "timeval.h"
|
2013-01-04 05:50:28 +04:00
|
|
|
#include "warnless.h"
|
2005-01-15 12:26:07 +03:00
|
|
|
|
2007-03-18 07:51:40 +03:00
|
|
|
/*
|
|
|
|
* Internal function used for waiting a specific amount of ms
|
2016-10-18 11:58:58 +03:00
|
|
|
* in Curl_socket_check() and Curl_poll() when no file descriptor
|
2007-03-27 03:23:46 +04:00
|
|
|
* is provided to wait on, just being used to delay execution.
|
2007-03-18 07:51:40 +03:00
|
|
|
* WinSock select() and poll() timeout mechanisms need a valid
|
|
|
|
* socket descriptor in a not null file descriptor set to work.
|
|
|
|
* Waiting indefinitely with this function is not allowed, a
|
|
|
|
* zero or negative timeout value will return immediately.
|
2007-03-22 18:32:28 +03:00
|
|
|
* Timeout resolution, accuracy, as well as maximum supported
|
2021-10-22 21:59:11 +03:00
|
|
|
* value is system dependent, neither factor is a critical issue
|
2007-03-22 18:32:28 +03:00
|
|
|
* for the intended use of this function in the library.
|
|
|
|
*
|
|
|
|
* Return values:
|
|
|
|
* -1 = system call error, invalid timeout value, or interrupted
|
|
|
|
* 0 = specified timeout has elapsed
|
2007-03-18 07:51:40 +03:00
|
|
|
*/
|
2020-05-05 22:39:39 +03:00
|
|
|
int Curl_wait_ms(timediff_t timeout_ms)
|
2007-03-18 07:51:40 +03:00
|
|
|
{
|
2007-03-22 18:32:28 +03:00
|
|
|
int r = 0;
|
|
|
|
|
2007-11-05 12:45:09 +03:00
|
|
|
if(!timeout_ms)
|
2007-03-22 18:32:28 +03:00
|
|
|
return 0;
|
2007-11-05 12:45:09 +03:00
|
|
|
if(timeout_ms < 0) {
|
2007-03-22 18:32:28 +03:00
|
|
|
SET_SOCKERRNO(EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
2007-04-03 19:35:19 +04:00
|
|
|
#if defined(MSDOS)
|
2007-03-18 07:51:40 +03:00
|
|
|
delay(timeout_ms);
|
2020-06-01 09:32:21 +03:00
|
|
|
#elif defined(WIN32)
|
2020-05-05 22:39:39 +03:00
|
|
|
/* prevent overflow, timeout_ms is typecast to ULONG/DWORD. */
|
2020-06-01 09:32:21 +03:00
|
|
|
#if TIMEDIFF_T_MAX >= ULONG_MAX
|
|
|
|
if(timeout_ms >= ULONG_MAX)
|
2020-05-27 18:24:21 +03:00
|
|
|
timeout_ms = ULONG_MAX-1;
|
2020-06-01 09:32:21 +03:00
|
|
|
/* don't use ULONG_MAX, because that is equal to INFINITE */
|
2020-05-05 22:39:39 +03:00
|
|
|
#endif
|
|
|
|
Sleep((ULONG)timeout_ms);
|
2007-03-18 07:51:40 +03:00
|
|
|
#else
|
2007-03-22 18:32:28 +03:00
|
|
|
#if defined(HAVE_POLL_FINE)
|
2020-05-05 22:39:39 +03:00
|
|
|
/* prevent overflow, timeout_ms is typecast to int. */
|
|
|
|
#if TIMEDIFF_T_MAX > INT_MAX
|
|
|
|
if(timeout_ms > INT_MAX)
|
|
|
|
timeout_ms = INT_MAX;
|
|
|
|
#endif
|
|
|
|
r = poll(NULL, 0, (int)timeout_ms);
|
2007-03-22 18:32:28 +03:00
|
|
|
#else
|
2020-01-23 15:39:27 +03:00
|
|
|
{
|
|
|
|
struct timeval pending_tv;
|
2020-05-27 18:24:21 +03:00
|
|
|
timediff_t tv_sec = timeout_ms / 1000;
|
|
|
|
timediff_t tv_usec = (timeout_ms % 1000) * 1000; /* max=999999 */
|
|
|
|
#ifdef HAVE_SUSECONDS_T
|
|
|
|
#if TIMEDIFF_T_MAX > TIME_T_MAX
|
|
|
|
/* tv_sec overflow check in case time_t is signed */
|
|
|
|
if(tv_sec > TIME_T_MAX)
|
|
|
|
tv_sec = TIME_T_MAX;
|
|
|
|
#endif
|
|
|
|
pending_tv.tv_sec = (time_t)tv_sec;
|
|
|
|
pending_tv.tv_usec = (suseconds_t)tv_usec;
|
|
|
|
#else
|
|
|
|
#if TIMEDIFF_T_MAX > INT_MAX
|
|
|
|
/* tv_sec overflow check in case time_t is signed */
|
|
|
|
if(tv_sec > INT_MAX)
|
|
|
|
tv_sec = INT_MAX;
|
|
|
|
#endif
|
|
|
|
pending_tv.tv_sec = (int)tv_sec;
|
|
|
|
pending_tv.tv_usec = (int)tv_usec;
|
|
|
|
#endif
|
2007-03-22 18:32:28 +03:00
|
|
|
r = select(0, NULL, NULL, NULL, &pending_tv);
|
2020-01-23 15:39:27 +03:00
|
|
|
}
|
2007-03-22 18:32:28 +03:00
|
|
|
#endif /* HAVE_POLL_FINE */
|
|
|
|
#endif /* USE_WINSOCK */
|
2007-11-05 12:45:09 +03:00
|
|
|
if(r)
|
2007-03-22 18:32:28 +03:00
|
|
|
r = -1;
|
|
|
|
return r;
|
2007-03-18 07:51:40 +03:00
|
|
|
}
|
|
|
|
|
2021-01-26 11:32:49 +03:00
|
|
|
#ifndef HAVE_POLL_FINE
|
2020-03-15 13:07:08 +03:00
|
|
|
/*
|
|
|
|
* This is a wrapper around select() to aid in Windows compatibility.
|
|
|
|
* A negative timeout value makes this function wait indefinitely,
|
|
|
|
* unless no valid file descriptor is given, when this happens the
|
|
|
|
* negative timeout is ignored and the function times out immediately.
|
|
|
|
*
|
|
|
|
* Return values:
|
|
|
|
* -1 = system call error or fd >= FD_SETSIZE
|
|
|
|
* 0 = timeout
|
|
|
|
* N = number of signalled file descriptors
|
|
|
|
*/
|
2021-01-26 11:32:49 +03:00
|
|
|
static int our_select(curl_socket_t maxfd, /* highest socket number */
|
|
|
|
fd_set *fds_read, /* sockets ready for reading */
|
|
|
|
fd_set *fds_write, /* sockets ready for writing */
|
|
|
|
fd_set *fds_err, /* sockets with errors */
|
|
|
|
timediff_t timeout_ms) /* milliseconds to wait */
|
2020-03-15 13:07:08 +03:00
|
|
|
{
|
|
|
|
struct timeval pending_tv;
|
|
|
|
struct timeval *ptimeout;
|
|
|
|
|
|
|
|
#ifdef USE_WINSOCK
|
|
|
|
/* WinSock select() can't handle zero events. See the comment below. */
|
|
|
|
if((!fds_read || fds_read->fd_count == 0) &&
|
|
|
|
(!fds_write || fds_write->fd_count == 0) &&
|
|
|
|
(!fds_err || fds_err->fd_count == 0)) {
|
2020-08-28 19:21:47 +03:00
|
|
|
/* no sockets, just wait */
|
|
|
|
return Curl_wait_ms(timeout_ms);
|
2020-03-15 13:07:08 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ptimeout = &pending_tv;
|
|
|
|
if(timeout_ms < 0) {
|
|
|
|
ptimeout = NULL;
|
|
|
|
}
|
|
|
|
else if(timeout_ms > 0) {
|
2020-05-27 18:24:21 +03:00
|
|
|
timediff_t tv_sec = timeout_ms / 1000;
|
|
|
|
timediff_t tv_usec = (timeout_ms % 1000) * 1000; /* max=999999 */
|
|
|
|
#ifdef HAVE_SUSECONDS_T
|
|
|
|
#if TIMEDIFF_T_MAX > TIME_T_MAX
|
|
|
|
/* tv_sec overflow check in case time_t is signed */
|
|
|
|
if(tv_sec > TIME_T_MAX)
|
|
|
|
tv_sec = TIME_T_MAX;
|
|
|
|
#endif
|
|
|
|
pending_tv.tv_sec = (time_t)tv_sec;
|
|
|
|
pending_tv.tv_usec = (suseconds_t)tv_usec;
|
|
|
|
#elif defined(WIN32) /* maybe also others in the future */
|
|
|
|
#if TIMEDIFF_T_MAX > LONG_MAX
|
|
|
|
/* tv_sec overflow check on Windows there we know it is long */
|
|
|
|
if(tv_sec > LONG_MAX)
|
|
|
|
tv_sec = LONG_MAX;
|
|
|
|
#endif
|
|
|
|
pending_tv.tv_sec = (long)tv_sec;
|
|
|
|
pending_tv.tv_usec = (long)tv_usec;
|
|
|
|
#else
|
|
|
|
#if TIMEDIFF_T_MAX > INT_MAX
|
|
|
|
/* tv_sec overflow check in case time_t is signed */
|
|
|
|
if(tv_sec > INT_MAX)
|
|
|
|
tv_sec = INT_MAX;
|
|
|
|
#endif
|
|
|
|
pending_tv.tv_sec = (int)tv_sec;
|
|
|
|
pending_tv.tv_usec = (int)tv_usec;
|
|
|
|
#endif
|
2020-03-15 13:07:08 +03:00
|
|
|
}
|
2020-05-05 22:39:39 +03:00
|
|
|
else {
|
2020-03-15 13:07:08 +03:00
|
|
|
pending_tv.tv_sec = 0;
|
|
|
|
pending_tv.tv_usec = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef USE_WINSOCK
|
|
|
|
/* WinSock select() must not be called with an fd_set that contains zero
|
|
|
|
fd flags, or it will return WSAEINVAL. But, it also can't be called
|
|
|
|
with no fd_sets at all! From the documentation:
|
|
|
|
|
|
|
|
Any two of the parameters, readfds, writefds, or exceptfds, can be
|
|
|
|
given as null. At least one must be non-null, and any non-null
|
|
|
|
descriptor set must contain at least one handle to a socket.
|
|
|
|
|
|
|
|
It is unclear why WinSock doesn't just handle this for us instead of
|
2020-04-19 21:27:38 +03:00
|
|
|
calling this an error. Luckily, with WinSock, we can _also_ ask how
|
|
|
|
many bits are set on an fd_set. So, let's just check it beforehand.
|
2020-03-15 13:07:08 +03:00
|
|
|
*/
|
2020-08-28 19:21:47 +03:00
|
|
|
return select((int)maxfd + 1,
|
|
|
|
fds_read && fds_read->fd_count ? fds_read : NULL,
|
|
|
|
fds_write && fds_write->fd_count ? fds_write : NULL,
|
|
|
|
fds_err && fds_err->fd_count ? fds_err : NULL, ptimeout);
|
2020-03-15 13:07:08 +03:00
|
|
|
#else
|
2020-08-28 19:21:47 +03:00
|
|
|
return select((int)maxfd + 1, fds_read, fds_write, fds_err, ptimeout);
|
2020-03-15 13:07:08 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-01-26 11:32:49 +03:00
|
|
|
#endif
|
|
|
|
|
2004-11-19 11:52:33 +03:00
|
|
|
/*
|
2011-12-08 19:14:30 +04:00
|
|
|
* Wait for read or write events on a set of file descriptors. It uses poll()
|
|
|
|
* when a fine poll() is available, in order to avoid limits with FD_SETSIZE,
|
|
|
|
* otherwise select() is used. An error is returned if select() is being used
|
|
|
|
* and a file descriptor is too large for FD_SETSIZE.
|
|
|
|
*
|
2007-03-20 23:00:40 +03:00
|
|
|
* A negative timeout value makes this function wait indefinitely,
|
2017-03-26 18:02:22 +03:00
|
|
|
* unless no valid file descriptor is given, when this happens the
|
2007-03-20 23:00:40 +03:00
|
|
|
* negative timeout is ignored and the function times out immediately.
|
2007-03-10 15:11:21 +03:00
|
|
|
*
|
2007-03-11 12:11:29 +03:00
|
|
|
* Return values:
|
2007-03-20 23:00:40 +03:00
|
|
|
* -1 = system call error or fd >= FD_SETSIZE
|
2007-03-11 12:11:29 +03:00
|
|
|
* 0 = timeout
|
2011-12-08 19:14:30 +04:00
|
|
|
* [bitmask] = action as described below
|
|
|
|
*
|
|
|
|
* CURL_CSELECT_IN - first socket is readable
|
|
|
|
* CURL_CSELECT_IN2 - second socket is readable
|
|
|
|
* CURL_CSELECT_OUT - write socket is writable
|
|
|
|
* CURL_CSELECT_ERR - an error condition occurred
|
2004-11-19 11:52:33 +03:00
|
|
|
*/
|
2011-12-08 19:14:30 +04:00
|
|
|
int Curl_socket_check(curl_socket_t readfd0, /* two sockets to read from */
|
|
|
|
curl_socket_t readfd1,
|
|
|
|
curl_socket_t writefd, /* socket to write to */
|
2020-05-05 22:39:39 +03:00
|
|
|
timediff_t timeout_ms) /* milliseconds to wait */
|
2004-11-19 11:52:33 +03:00
|
|
|
{
|
2011-12-21 02:33:54 +04:00
|
|
|
struct pollfd pfd[3];
|
2004-11-19 11:52:33 +03:00
|
|
|
int num;
|
|
|
|
int r;
|
|
|
|
|
2011-12-08 19:14:30 +04:00
|
|
|
if((readfd0 == CURL_SOCKET_BAD) && (readfd1 == CURL_SOCKET_BAD) &&
|
|
|
|
(writefd == CURL_SOCKET_BAD)) {
|
|
|
|
/* no sockets, just wait */
|
2020-08-28 19:21:47 +03:00
|
|
|
return Curl_wait_ms(timeout_ms);
|
2007-03-18 07:51:40 +03:00
|
|
|
}
|
|
|
|
|
2017-10-30 18:40:28 +03:00
|
|
|
/* Avoid initial timestamp, avoid Curl_now() call, when elapsed
|
2007-04-20 04:07:19 +04:00
|
|
|
time in this function does not need to be measured. This happens
|
|
|
|
when function is called with a zero timeout or a negative timeout
|
|
|
|
value indicating a blocking call should be performed. */
|
|
|
|
|
2004-11-19 11:52:33 +03:00
|
|
|
num = 0;
|
2011-12-08 19:14:30 +04:00
|
|
|
if(readfd0 != CURL_SOCKET_BAD) {
|
|
|
|
pfd[num].fd = readfd0;
|
|
|
|
pfd[num].events = POLLRDNORM|POLLIN|POLLRDBAND|POLLPRI;
|
|
|
|
pfd[num].revents = 0;
|
|
|
|
num++;
|
|
|
|
}
|
|
|
|
if(readfd1 != CURL_SOCKET_BAD) {
|
|
|
|
pfd[num].fd = readfd1;
|
2007-03-28 22:59:42 +04:00
|
|
|
pfd[num].events = POLLRDNORM|POLLIN|POLLRDBAND|POLLPRI;
|
2007-03-20 23:00:40 +03:00
|
|
|
pfd[num].revents = 0;
|
2004-11-19 11:52:33 +03:00
|
|
|
num++;
|
|
|
|
}
|
2007-11-05 12:45:09 +03:00
|
|
|
if(writefd != CURL_SOCKET_BAD) {
|
2004-11-19 11:52:33 +03:00
|
|
|
pfd[num].fd = writefd;
|
2020-07-21 21:17:01 +03:00
|
|
|
pfd[num].events = POLLWRNORM|POLLOUT|POLLPRI;
|
2007-03-20 23:00:40 +03:00
|
|
|
pfd[num].revents = 0;
|
2004-11-19 11:52:33 +03:00
|
|
|
num++;
|
|
|
|
}
|
|
|
|
|
2020-05-05 22:39:39 +03:00
|
|
|
r = Curl_poll(pfd, num, timeout_ms);
|
|
|
|
if(r <= 0)
|
|
|
|
return r;
|
2004-11-19 11:52:33 +03:00
|
|
|
|
2020-04-19 21:27:38 +03:00
|
|
|
r = 0;
|
2004-11-19 11:52:33 +03:00
|
|
|
num = 0;
|
2011-12-08 19:14:30 +04:00
|
|
|
if(readfd0 != CURL_SOCKET_BAD) {
|
2007-11-05 12:45:09 +03:00
|
|
|
if(pfd[num].revents & (POLLRDNORM|POLLIN|POLLERR|POLLHUP))
|
2020-04-19 21:27:38 +03:00
|
|
|
r |= CURL_CSELECT_IN;
|
2007-11-05 12:45:09 +03:00
|
|
|
if(pfd[num].revents & (POLLRDBAND|POLLPRI|POLLNVAL))
|
2020-04-19 21:27:38 +03:00
|
|
|
r |= CURL_CSELECT_ERR;
|
2007-03-29 04:11:55 +04:00
|
|
|
num++;
|
2004-11-19 11:52:33 +03:00
|
|
|
}
|
2011-12-08 19:14:30 +04:00
|
|
|
if(readfd1 != CURL_SOCKET_BAD) {
|
|
|
|
if(pfd[num].revents & (POLLRDNORM|POLLIN|POLLERR|POLLHUP))
|
2020-04-19 21:27:38 +03:00
|
|
|
r |= CURL_CSELECT_IN2;
|
2011-12-08 19:14:30 +04:00
|
|
|
if(pfd[num].revents & (POLLRDBAND|POLLPRI|POLLNVAL))
|
2020-04-19 21:27:38 +03:00
|
|
|
r |= CURL_CSELECT_ERR;
|
2011-12-08 19:14:30 +04:00
|
|
|
num++;
|
|
|
|
}
|
2007-11-05 12:45:09 +03:00
|
|
|
if(writefd != CURL_SOCKET_BAD) {
|
|
|
|
if(pfd[num].revents & (POLLWRNORM|POLLOUT))
|
2020-04-19 21:27:38 +03:00
|
|
|
r |= CURL_CSELECT_OUT;
|
2020-07-21 21:17:01 +03:00
|
|
|
if(pfd[num].revents & (POLLERR|POLLHUP|POLLPRI|POLLNVAL))
|
2020-04-19 21:27:38 +03:00
|
|
|
r |= CURL_CSELECT_ERR;
|
2004-11-19 11:52:33 +03:00
|
|
|
}
|
|
|
|
|
2020-04-19 21:27:38 +03:00
|
|
|
return r;
|
2004-11-19 11:52:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a wrapper around poll(). If poll() does not exist, then
|
|
|
|
* select() is used instead. An error is returned if select() is
|
2007-03-20 23:00:40 +03:00
|
|
|
* being used and a file descriptor is too large for FD_SETSIZE.
|
|
|
|
* A negative timeout value makes this function wait indefinitely,
|
2017-03-26 18:02:22 +03:00
|
|
|
* unless no valid file descriptor is given, when this happens the
|
2007-03-20 23:00:40 +03:00
|
|
|
* negative timeout is ignored and the function times out immediately.
|
2004-11-19 11:52:33 +03:00
|
|
|
*
|
|
|
|
* Return values:
|
|
|
|
* -1 = system call error or fd >= FD_SETSIZE
|
|
|
|
* 0 = timeout
|
2007-03-20 23:00:40 +03:00
|
|
|
* N = number of structures with non zero revent fields
|
2004-11-19 11:52:33 +03:00
|
|
|
*/
|
2020-05-05 22:39:39 +03:00
|
|
|
int Curl_poll(struct pollfd ufds[], unsigned int nfds, timediff_t timeout_ms)
|
2004-11-19 11:52:33 +03:00
|
|
|
{
|
2020-03-15 13:07:08 +03:00
|
|
|
#ifdef HAVE_POLL_FINE
|
2020-03-12 11:32:50 +03:00
|
|
|
int pending_ms;
|
2020-03-15 13:07:08 +03:00
|
|
|
#else
|
2004-11-19 11:52:33 +03:00
|
|
|
fd_set fds_read;
|
|
|
|
fd_set fds_write;
|
|
|
|
fd_set fds_err;
|
2004-11-19 17:38:02 +03:00
|
|
|
curl_socket_t maxfd;
|
2007-03-18 07:51:40 +03:00
|
|
|
#endif
|
|
|
|
bool fds_none = TRUE;
|
2004-11-19 11:52:33 +03:00
|
|
|
unsigned int i;
|
2007-03-18 07:51:40 +03:00
|
|
|
int r;
|
|
|
|
|
2007-11-05 12:45:09 +03:00
|
|
|
if(ufds) {
|
2011-04-20 17:17:42 +04:00
|
|
|
for(i = 0; i < nfds; i++) {
|
2007-11-05 12:45:09 +03:00
|
|
|
if(ufds[i].fd != CURL_SOCKET_BAD) {
|
2007-03-18 07:51:40 +03:00
|
|
|
fds_none = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-11-05 12:45:09 +03:00
|
|
|
if(fds_none) {
|
2020-05-05 22:39:39 +03:00
|
|
|
/* no sockets, just wait */
|
2020-08-28 19:21:47 +03:00
|
|
|
return Curl_wait_ms(timeout_ms);
|
2007-03-18 07:51:40 +03:00
|
|
|
}
|
|
|
|
|
2017-10-30 18:40:28 +03:00
|
|
|
/* Avoid initial timestamp, avoid Curl_now() call, when elapsed
|
2007-04-20 04:07:19 +04:00
|
|
|
time in this function does not need to be measured. This happens
|
|
|
|
when function is called with a zero timeout or a negative timeout
|
|
|
|
value indicating a blocking call should be performed. */
|
|
|
|
|
2007-03-18 07:51:40 +03:00
|
|
|
#ifdef HAVE_POLL_FINE
|
|
|
|
|
2020-05-05 22:39:39 +03:00
|
|
|
/* prevent overflow, timeout_ms is typecast to int. */
|
|
|
|
#if TIMEDIFF_T_MAX > INT_MAX
|
|
|
|
if(timeout_ms > INT_MAX)
|
|
|
|
timeout_ms = INT_MAX;
|
|
|
|
#endif
|
2020-03-15 13:07:08 +03:00
|
|
|
if(timeout_ms > 0)
|
2020-05-05 22:39:39 +03:00
|
|
|
pending_ms = (int)timeout_ms;
|
2020-03-15 13:07:08 +03:00
|
|
|
else if(timeout_ms < 0)
|
2020-01-23 15:39:27 +03:00
|
|
|
pending_ms = -1;
|
2020-03-12 11:32:50 +03:00
|
|
|
else
|
2020-01-23 15:39:27 +03:00
|
|
|
pending_ms = 0;
|
|
|
|
r = poll(ufds, nfds, pending_ms);
|
2020-08-28 19:21:47 +03:00
|
|
|
if(r <= 0)
|
|
|
|
return r;
|
2009-09-15 04:07:56 +04:00
|
|
|
|
2011-04-20 17:17:42 +04:00
|
|
|
for(i = 0; i < nfds; i++) {
|
2009-09-15 04:07:56 +04:00
|
|
|
if(ufds[i].fd == CURL_SOCKET_BAD)
|
|
|
|
continue;
|
|
|
|
if(ufds[i].revents & POLLHUP)
|
|
|
|
ufds[i].revents |= POLLIN;
|
|
|
|
if(ufds[i].revents & POLLERR)
|
2020-08-31 11:49:20 +03:00
|
|
|
ufds[i].revents |= POLLIN|POLLOUT;
|
2009-09-15 04:07:56 +04:00
|
|
|
}
|
|
|
|
|
2007-03-18 07:51:40 +03:00
|
|
|
#else /* HAVE_POLL_FINE */
|
2004-11-19 11:52:33 +03:00
|
|
|
|
|
|
|
FD_ZERO(&fds_read);
|
|
|
|
FD_ZERO(&fds_write);
|
|
|
|
FD_ZERO(&fds_err);
|
2006-04-26 21:26:22 +04:00
|
|
|
maxfd = (curl_socket_t)-1;
|
2004-11-19 11:52:33 +03:00
|
|
|
|
2011-04-20 17:17:42 +04:00
|
|
|
for(i = 0; i < nfds; i++) {
|
2007-03-20 23:00:40 +03:00
|
|
|
ufds[i].revents = 0;
|
2007-11-05 12:45:09 +03:00
|
|
|
if(ufds[i].fd == CURL_SOCKET_BAD)
|
2004-11-19 11:52:33 +03:00
|
|
|
continue;
|
2007-03-18 07:51:40 +03:00
|
|
|
VERIFY_SOCK(ufds[i].fd);
|
2007-11-05 12:45:09 +03:00
|
|
|
if(ufds[i].events & (POLLIN|POLLOUT|POLLPRI|
|
2020-08-31 11:49:20 +03:00
|
|
|
POLLRDNORM|POLLWRNORM|POLLRDBAND)) {
|
2007-11-05 12:45:09 +03:00
|
|
|
if(ufds[i].fd > maxfd)
|
2007-03-20 23:00:40 +03:00
|
|
|
maxfd = ufds[i].fd;
|
2007-11-05 12:45:09 +03:00
|
|
|
if(ufds[i].events & (POLLRDNORM|POLLIN))
|
2007-03-20 23:00:40 +03:00
|
|
|
FD_SET(ufds[i].fd, &fds_read);
|
2007-11-05 12:45:09 +03:00
|
|
|
if(ufds[i].events & (POLLWRNORM|POLLOUT))
|
2007-03-20 23:00:40 +03:00
|
|
|
FD_SET(ufds[i].fd, &fds_write);
|
2007-11-05 12:45:09 +03:00
|
|
|
if(ufds[i].events & (POLLRDBAND|POLLPRI))
|
2007-03-20 23:00:40 +03:00
|
|
|
FD_SET(ufds[i].fd, &fds_err);
|
|
|
|
}
|
2004-11-19 11:52:33 +03:00
|
|
|
}
|
|
|
|
|
2020-04-19 21:27:38 +03:00
|
|
|
/*
|
|
|
|
Note also that WinSock ignores the first argument, so we don't worry
|
|
|
|
about the fact that maxfd is computed incorrectly with WinSock (since
|
|
|
|
curl_socket_t is unsigned in such cases and thus -1 is the largest
|
|
|
|
value).
|
|
|
|
*/
|
2021-01-26 11:32:49 +03:00
|
|
|
r = our_select(maxfd, &fds_read, &fds_write, &fds_err, timeout_ms);
|
2020-08-28 19:21:47 +03:00
|
|
|
if(r <= 0)
|
|
|
|
return r;
|
2004-11-19 11:52:33 +03:00
|
|
|
|
|
|
|
r = 0;
|
2011-04-20 17:17:42 +04:00
|
|
|
for(i = 0; i < nfds; i++) {
|
2004-11-19 11:52:33 +03:00
|
|
|
ufds[i].revents = 0;
|
2007-11-05 12:45:09 +03:00
|
|
|
if(ufds[i].fd == CURL_SOCKET_BAD)
|
2004-11-19 11:52:33 +03:00
|
|
|
continue;
|
2020-08-31 11:49:20 +03:00
|
|
|
if(FD_ISSET(ufds[i].fd, &fds_read)) {
|
|
|
|
if(ufds[i].events & POLLRDNORM)
|
|
|
|
ufds[i].revents |= POLLRDNORM;
|
|
|
|
if(ufds[i].events & POLLIN)
|
|
|
|
ufds[i].revents |= POLLIN;
|
|
|
|
}
|
|
|
|
if(FD_ISSET(ufds[i].fd, &fds_write)) {
|
|
|
|
if(ufds[i].events & POLLWRNORM)
|
|
|
|
ufds[i].revents |= POLLWRNORM;
|
|
|
|
if(ufds[i].events & POLLOUT)
|
|
|
|
ufds[i].revents |= POLLOUT;
|
|
|
|
}
|
|
|
|
if(FD_ISSET(ufds[i].fd, &fds_err)) {
|
|
|
|
if(ufds[i].events & POLLRDBAND)
|
|
|
|
ufds[i].revents |= POLLRDBAND;
|
|
|
|
if(ufds[i].events & POLLPRI)
|
|
|
|
ufds[i].revents |= POLLPRI;
|
|
|
|
}
|
2021-04-19 11:46:11 +03:00
|
|
|
if(ufds[i].revents)
|
2004-11-19 11:52:33 +03:00
|
|
|
r++;
|
|
|
|
}
|
2007-03-18 07:51:40 +03:00
|
|
|
|
2007-02-16 21:19:35 +03:00
|
|
|
#endif /* HAVE_POLL_FINE */
|
2007-03-18 07:51:40 +03:00
|
|
|
|
2005-01-14 00:51:48 +03:00
|
|
|
return r;
|
2004-11-19 11:52:33 +03:00
|
|
|
}
|