2004-11-19 03:52:33 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2015-03-17 08:05:01 -04:00
|
|
|
* Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2004-11-19 03:52:33 -05:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-11-19 03:52:33 -05: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 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2004-11-19 03:52:33 -05:00
|
|
|
|
2004-12-21 05:11:07 -05:00
|
|
|
#ifdef HAVE_SYS_SELECT_H
|
|
|
|
#include <sys/select.h>
|
|
|
|
#endif
|
2004-11-19 03:52:33 -05:00
|
|
|
|
2007-03-27 14: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 05:11:29 -04:00
|
|
|
#endif
|
2004-11-19 03:52:33 -05:00
|
|
|
|
2008-05-26 11:09:28 -04:00
|
|
|
#if defined(__BEOS__) && !defined(__HAIKU__)
|
2004-12-22 17:28:10 -05:00
|
|
|
/* BeOS has FD_SET defined in socket.h */
|
|
|
|
#include <socket.h>
|
|
|
|
#endif
|
|
|
|
|
2007-04-03 11:35:19 -04:00
|
|
|
#ifdef MSDOS
|
2007-01-05 10:56:28 -05:00
|
|
|
#include <dos.h> /* delay() */
|
|
|
|
#endif
|
|
|
|
|
2014-11-25 02:55:17 -05:00
|
|
|
#ifdef __VXWORKS__
|
|
|
|
#include <strings.h> /* bzero() in FD_SET */
|
|
|
|
#endif
|
|
|
|
|
2005-01-15 04:26:07 -05:00
|
|
|
#include <curl/curl.h>
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "urldata.h"
|
|
|
|
#include "connect.h"
|
|
|
|
#include "select.h"
|
|
|
|
#include "warnless.h"
|
2005-01-15 04:26:07 -05:00
|
|
|
|
2007-03-22 11:32:28 -04:00
|
|
|
/* Convenience local macros */
|
|
|
|
|
|
|
|
#define elapsed_ms (int)curlx_tvdiff(curlx_tvnow(), initial_tv)
|
|
|
|
|
2013-03-11 09:57:07 -04:00
|
|
|
int Curl_ack_eintr = 0;
|
|
|
|
#define error_not_EINTR (Curl_ack_eintr || error != EINTR)
|
2007-03-22 11:32:28 -04:00
|
|
|
|
2007-03-18 00:51:40 -04:00
|
|
|
/*
|
|
|
|
* Internal function used for waiting a specific amount of ms
|
2007-03-26 19:23:46 -04:00
|
|
|
* in Curl_socket_ready() and Curl_poll() when no file descriptor
|
|
|
|
* is provided to wait on, just being used to delay execution.
|
2007-03-18 00:51:40 -04: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 11:32:28 -04:00
|
|
|
* Timeout resolution, accuracy, as well as maximum supported
|
2009-10-27 12:56:20 -04:00
|
|
|
* value is system dependent, neither factor is a citical issue
|
2007-03-22 11:32:28 -04: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 00:51:40 -04:00
|
|
|
*/
|
2011-07-28 15:27:55 -04:00
|
|
|
int Curl_wait_ms(int timeout_ms)
|
2007-03-18 00:51:40 -04:00
|
|
|
{
|
2007-04-03 11:35:19 -04:00
|
|
|
#if !defined(MSDOS) && !defined(USE_WINSOCK)
|
2007-03-22 11:32:28 -04:00
|
|
|
#ifndef HAVE_POLL_FINE
|
|
|
|
struct timeval pending_tv;
|
|
|
|
#endif
|
|
|
|
struct timeval initial_tv;
|
|
|
|
int pending_ms;
|
2007-03-27 11:22:49 -04:00
|
|
|
int error;
|
2007-03-18 13:29:24 -04:00
|
|
|
#endif
|
2007-03-22 11:32:28 -04:00
|
|
|
int r = 0;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!timeout_ms)
|
2007-03-22 11:32:28 -04:00
|
|
|
return 0;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(timeout_ms < 0) {
|
2007-03-22 11:32:28 -04:00
|
|
|
SET_SOCKERRNO(EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
2007-04-03 11:35:19 -04:00
|
|
|
#if defined(MSDOS)
|
2007-03-18 00:51:40 -04:00
|
|
|
delay(timeout_ms);
|
|
|
|
#elif defined(USE_WINSOCK)
|
|
|
|
Sleep(timeout_ms);
|
|
|
|
#else
|
2007-03-22 11:32:28 -04:00
|
|
|
pending_ms = timeout_ms;
|
|
|
|
initial_tv = curlx_tvnow();
|
|
|
|
do {
|
|
|
|
#if defined(HAVE_POLL_FINE)
|
|
|
|
r = poll(NULL, 0, pending_ms);
|
|
|
|
#else
|
|
|
|
pending_tv.tv_sec = pending_ms / 1000;
|
|
|
|
pending_tv.tv_usec = (pending_ms % 1000) * 1000;
|
|
|
|
r = select(0, NULL, NULL, NULL, &pending_tv);
|
|
|
|
#endif /* HAVE_POLL_FINE */
|
2007-11-05 04:45:09 -05:00
|
|
|
if(r != -1)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
|
|
|
error = SOCKERRNO;
|
2008-03-05 22:48:33 -05:00
|
|
|
if(error && error_not_EINTR)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
|
|
|
pending_ms = timeout_ms - elapsed_ms;
|
2014-07-29 00:33:07 -04:00
|
|
|
if(pending_ms <= 0) {
|
|
|
|
r = 0; /* Simulate a "call timed out" case */
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
2014-07-29 00:33:07 -04:00
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
} while(r == -1);
|
2007-03-22 11:32:28 -04:00
|
|
|
#endif /* USE_WINSOCK */
|
2007-11-05 04:45:09 -05:00
|
|
|
if(r)
|
2007-03-22 11:32:28 -04:00
|
|
|
r = -1;
|
|
|
|
return r;
|
2007-03-18 00:51:40 -04:00
|
|
|
}
|
|
|
|
|
2004-11-19 03:52:33 -05:00
|
|
|
/*
|
2011-12-08 10:14:30 -05: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 16:00:40 -04:00
|
|
|
* A negative timeout value makes this function wait indefinitely,
|
|
|
|
* unles no valid file descriptor is given, when this happens the
|
|
|
|
* negative timeout is ignored and the function times out immediately.
|
2007-03-10 07:11:21 -05:00
|
|
|
*
|
2007-03-11 05:11:29 -04:00
|
|
|
* Return values:
|
2007-03-20 16:00:40 -04:00
|
|
|
* -1 = system call error or fd >= FD_SETSIZE
|
2007-03-11 05:11:29 -04:00
|
|
|
* 0 = timeout
|
2011-12-08 10:14:30 -05: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 03:52:33 -05:00
|
|
|
*/
|
2011-12-08 10:14:30 -05: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 */
|
|
|
|
long timeout_ms) /* milliseconds to wait */
|
2004-11-19 03:52:33 -05:00
|
|
|
{
|
2007-03-18 00:51:40 -04:00
|
|
|
#ifdef HAVE_POLL_FINE
|
2011-12-20 17:33:54 -05:00
|
|
|
struct pollfd pfd[3];
|
2004-11-19 03:52:33 -05:00
|
|
|
int num;
|
2007-03-18 00:51:40 -04:00
|
|
|
#else
|
2007-03-20 16:00:40 -04:00
|
|
|
struct timeval pending_tv;
|
|
|
|
struct timeval *ptimeout;
|
2007-03-18 00:51:40 -04:00
|
|
|
fd_set fds_read;
|
|
|
|
fd_set fds_write;
|
|
|
|
fd_set fds_err;
|
|
|
|
curl_socket_t maxfd;
|
|
|
|
#endif
|
2015-03-17 08:41:49 -04:00
|
|
|
struct timeval initial_tv = {0, 0};
|
2007-04-19 21:58:15 -04:00
|
|
|
int pending_ms = 0;
|
2007-03-27 11:22:49 -04:00
|
|
|
int error;
|
2004-11-19 03:52:33 -05:00
|
|
|
int r;
|
|
|
|
int ret;
|
|
|
|
|
2011-12-08 10:14:30 -05:00
|
|
|
if((readfd0 == CURL_SOCKET_BAD) && (readfd1 == CURL_SOCKET_BAD) &&
|
|
|
|
(writefd == CURL_SOCKET_BAD)) {
|
|
|
|
/* no sockets, just wait */
|
2011-07-28 15:27:55 -04:00
|
|
|
r = Curl_wait_ms((int)timeout_ms);
|
2007-03-22 11:32:28 -04:00
|
|
|
return r;
|
2007-03-18 00:51:40 -04:00
|
|
|
}
|
|
|
|
|
2008-05-09 12:31:51 -04:00
|
|
|
/* Avoid initial timestamp, avoid curlx_tvnow() call, when elapsed
|
2007-04-19 20: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-11-05 04:45:09 -05:00
|
|
|
if(timeout_ms > 0) {
|
2011-06-11 16:56:45 -04:00
|
|
|
pending_ms = (int)timeout_ms;
|
2007-04-19 20:07:19 -04:00
|
|
|
initial_tv = curlx_tvnow();
|
|
|
|
}
|
2007-03-20 16:00:40 -04:00
|
|
|
|
2007-03-18 00:51:40 -04:00
|
|
|
#ifdef HAVE_POLL_FINE
|
|
|
|
|
2004-11-19 03:52:33 -05:00
|
|
|
num = 0;
|
2011-12-08 10:14:30 -05: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 14:59:42 -04:00
|
|
|
pfd[num].events = POLLRDNORM|POLLIN|POLLRDBAND|POLLPRI;
|
2007-03-20 16:00:40 -04:00
|
|
|
pfd[num].revents = 0;
|
2004-11-19 03:52:33 -05:00
|
|
|
num++;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(writefd != CURL_SOCKET_BAD) {
|
2004-11-19 03:52:33 -05:00
|
|
|
pfd[num].fd = writefd;
|
2007-03-28 14:59:42 -04:00
|
|
|
pfd[num].events = POLLWRNORM|POLLOUT;
|
2007-03-20 16:00:40 -04:00
|
|
|
pfd[num].revents = 0;
|
2004-11-19 03:52:33 -05:00
|
|
|
num++;
|
|
|
|
}
|
|
|
|
|
2007-03-11 05:11:29 -04:00
|
|
|
do {
|
2007-11-05 04:45:09 -05:00
|
|
|
if(timeout_ms < 0)
|
2007-03-20 16:00:40 -04:00
|
|
|
pending_ms = -1;
|
2007-11-05 04:45:09 -05:00
|
|
|
else if(!timeout_ms)
|
2007-04-19 20:07:19 -04:00
|
|
|
pending_ms = 0;
|
2007-03-20 16:00:40 -04:00
|
|
|
r = poll(pfd, num, pending_ms);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(r != -1)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
|
|
|
error = SOCKERRNO;
|
2008-03-05 22:48:33 -05:00
|
|
|
if(error && error_not_EINTR)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(timeout_ms > 0) {
|
2011-06-11 16:56:45 -04:00
|
|
|
pending_ms = (int)(timeout_ms - elapsed_ms);
|
Curl_socket_check: fix return code for timeout
We found a problem with ftp transfer using libcurl (7.23 and 7.25)
inside an application which is receiving unix signals (SIGUSR1,
SIGUSR2...) almost continuously. (Linux 2.4, PowerPC, HAVE_POLL_FINE
defined).
Curl_socket_check() uses poll() to wait for the socket, and retries it
when a signal is received (EINTR). However, if a signal is received and
it also happens that the timeout has been reached, Curl_socket_check()
returns -1 instead of 0 (indicating an error instead of a timeout).
In our case, the result is an aborted connection even before the ftp
banner is received from the server, and a return value of
CURLE_OUT_OF_MEMORY from curl_easy_perform() (Curl_pp_multi_statemach(),
in pingpong.c, actually returns OOM if Curl_socket_check() fails :-)
Funny to debug on a system on which OOM is a possible cause).
Bug: http://curl.haxx.se/mail/lib-2012-07/0122.html
2012-08-07 17:24:13 -04:00
|
|
|
if(pending_ms <= 0) {
|
|
|
|
r = 0; /* Simulate a "call timed out" case */
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
Curl_socket_check: fix return code for timeout
We found a problem with ftp transfer using libcurl (7.23 and 7.25)
inside an application which is receiving unix signals (SIGUSR1,
SIGUSR2...) almost continuously. (Linux 2.4, PowerPC, HAVE_POLL_FINE
defined).
Curl_socket_check() uses poll() to wait for the socket, and retries it
when a signal is received (EINTR). However, if a signal is received and
it also happens that the timeout has been reached, Curl_socket_check()
returns -1 instead of 0 (indicating an error instead of a timeout).
In our case, the result is an aborted connection even before the ftp
banner is received from the server, and a return value of
CURLE_OUT_OF_MEMORY from curl_easy_perform() (Curl_pp_multi_statemach(),
in pingpong.c, actually returns OOM if Curl_socket_check() fails :-)
Funny to debug on a system on which OOM is a possible cause).
Bug: http://curl.haxx.se/mail/lib-2012-07/0122.html
2012-08-07 17:24:13 -04:00
|
|
|
}
|
2007-04-19 20:07:19 -04:00
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
} while(r == -1);
|
2004-11-19 03:52:33 -05:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(r < 0)
|
2004-11-19 03:52:33 -05:00
|
|
|
return -1;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(r == 0)
|
2004-11-19 03:52:33 -05:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
num = 0;
|
2011-12-08 10:14:30 -05:00
|
|
|
if(readfd0 != CURL_SOCKET_BAD) {
|
2007-11-05 04:45:09 -05:00
|
|
|
if(pfd[num].revents & (POLLRDNORM|POLLIN|POLLERR|POLLHUP))
|
2007-04-16 12:34:08 -04:00
|
|
|
ret |= CURL_CSELECT_IN;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(pfd[num].revents & (POLLRDBAND|POLLPRI|POLLNVAL))
|
2007-04-16 12:34:08 -04:00
|
|
|
ret |= CURL_CSELECT_ERR;
|
2007-03-28 20:11:55 -04:00
|
|
|
num++;
|
2004-11-19 03:52:33 -05:00
|
|
|
}
|
2011-12-08 10:14:30 -05:00
|
|
|
if(readfd1 != CURL_SOCKET_BAD) {
|
|
|
|
if(pfd[num].revents & (POLLRDNORM|POLLIN|POLLERR|POLLHUP))
|
|
|
|
ret |= CURL_CSELECT_IN2;
|
|
|
|
if(pfd[num].revents & (POLLRDBAND|POLLPRI|POLLNVAL))
|
|
|
|
ret |= CURL_CSELECT_ERR;
|
|
|
|
num++;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(writefd != CURL_SOCKET_BAD) {
|
|
|
|
if(pfd[num].revents & (POLLWRNORM|POLLOUT))
|
2007-04-16 12:34:08 -04:00
|
|
|
ret |= CURL_CSELECT_OUT;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(pfd[num].revents & (POLLERR|POLLHUP|POLLNVAL))
|
2007-04-16 12:34:08 -04:00
|
|
|
ret |= CURL_CSELECT_ERR;
|
2004-11-19 03:52:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2007-03-18 00:51:40 -04:00
|
|
|
|
|
|
|
#else /* HAVE_POLL_FINE */
|
2004-11-19 03:52:33 -05:00
|
|
|
|
|
|
|
FD_ZERO(&fds_err);
|
2006-04-26 13:26:22 -04:00
|
|
|
maxfd = (curl_socket_t)-1;
|
2004-11-19 03:52:33 -05:00
|
|
|
|
|
|
|
FD_ZERO(&fds_read);
|
2011-12-08 10:14:30 -05:00
|
|
|
if(readfd0 != CURL_SOCKET_BAD) {
|
|
|
|
VERIFY_SOCK(readfd0);
|
|
|
|
FD_SET(readfd0, &fds_read);
|
|
|
|
FD_SET(readfd0, &fds_err);
|
|
|
|
maxfd = readfd0;
|
|
|
|
}
|
|
|
|
if(readfd1 != CURL_SOCKET_BAD) {
|
|
|
|
VERIFY_SOCK(readfd1);
|
|
|
|
FD_SET(readfd1, &fds_read);
|
|
|
|
FD_SET(readfd1, &fds_err);
|
|
|
|
if(readfd1 > maxfd)
|
|
|
|
maxfd = readfd1;
|
2004-11-19 03:52:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
FD_ZERO(&fds_write);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(writefd != CURL_SOCKET_BAD) {
|
2005-03-21 17:34:07 -05:00
|
|
|
VERIFY_SOCK(writefd);
|
2004-11-19 03:52:33 -05:00
|
|
|
FD_SET(writefd, &fds_write);
|
|
|
|
FD_SET(writefd, &fds_err);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(writefd > maxfd)
|
2004-11-19 03:52:33 -05:00
|
|
|
maxfd = writefd;
|
|
|
|
}
|
|
|
|
|
2007-03-20 16:00:40 -04:00
|
|
|
ptimeout = (timeout_ms < 0) ? NULL : &pending_tv;
|
|
|
|
|
2007-03-11 05:11:29 -04:00
|
|
|
do {
|
2007-11-05 04:45:09 -05:00
|
|
|
if(timeout_ms > 0) {
|
2007-03-20 16:00:40 -04:00
|
|
|
pending_tv.tv_sec = pending_ms / 1000;
|
|
|
|
pending_tv.tv_usec = (pending_ms % 1000) * 1000;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
else if(!timeout_ms) {
|
2007-04-19 20:07:19 -04:00
|
|
|
pending_tv.tv_sec = 0;
|
|
|
|
pending_tv.tv_usec = 0;
|
|
|
|
}
|
2014-05-27 17:58:28 -04:00
|
|
|
|
|
|
|
/* 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.
|
|
|
|
|
|
|
|
We know that we have at least one bit set in at least two fd_sets in
|
|
|
|
this case, but we may have no bits set in either fds_read or fd_write,
|
|
|
|
so check for that and handle it. Luckily, with WinSock, we can _also_
|
|
|
|
ask how many bits are set on an fd_set.
|
|
|
|
|
|
|
|
It is unclear why WinSock doesn't just handle this for us instead of
|
|
|
|
calling this an error.
|
|
|
|
|
|
|
|
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).
|
|
|
|
*/
|
2015-12-07 14:27:29 -05:00
|
|
|
#ifdef USE_WINSOCK
|
2014-05-27 17:58:28 -04:00
|
|
|
r = select((int)maxfd + 1,
|
|
|
|
fds_read.fd_count ? &fds_read : NULL,
|
|
|
|
fds_write.fd_count ? &fds_write : NULL,
|
|
|
|
&fds_err, ptimeout);
|
2015-12-07 14:27:29 -05:00
|
|
|
#else
|
|
|
|
r = select((int)maxfd + 1, &fds_read, &fds_write, &fds_err, ptimeout);
|
|
|
|
#endif
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(r != -1)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
|
|
|
error = SOCKERRNO;
|
2008-03-05 22:48:33 -05:00
|
|
|
if(error && error_not_EINTR)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(timeout_ms > 0) {
|
2007-04-19 20:07:19 -04:00
|
|
|
pending_ms = timeout_ms - elapsed_ms;
|
2012-08-07 17:30:05 -04:00
|
|
|
if(pending_ms <= 0) {
|
|
|
|
r = 0; /* Simulate a "call timed out" case */
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
2012-08-07 17:30:05 -04:00
|
|
|
}
|
2007-04-19 20:07:19 -04:00
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
} while(r == -1);
|
2004-11-19 03:52:33 -05:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(r < 0)
|
2004-11-19 03:52:33 -05:00
|
|
|
return -1;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(r == 0)
|
2004-11-19 03:52:33 -05:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = 0;
|
2011-12-08 10:14:30 -05:00
|
|
|
if(readfd0 != CURL_SOCKET_BAD) {
|
|
|
|
if(FD_ISSET(readfd0, &fds_read))
|
2007-04-16 12:34:08 -04:00
|
|
|
ret |= CURL_CSELECT_IN;
|
2011-12-08 10:14:30 -05:00
|
|
|
if(FD_ISSET(readfd0, &fds_err))
|
|
|
|
ret |= CURL_CSELECT_ERR;
|
|
|
|
}
|
|
|
|
if(readfd1 != CURL_SOCKET_BAD) {
|
|
|
|
if(FD_ISSET(readfd1, &fds_read))
|
|
|
|
ret |= CURL_CSELECT_IN2;
|
|
|
|
if(FD_ISSET(readfd1, &fds_err))
|
2007-04-16 12:34:08 -04:00
|
|
|
ret |= CURL_CSELECT_ERR;
|
2004-11-19 03:52:33 -05:00
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(writefd != CURL_SOCKET_BAD) {
|
|
|
|
if(FD_ISSET(writefd, &fds_write))
|
2007-04-16 12:34:08 -04:00
|
|
|
ret |= CURL_CSELECT_OUT;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(FD_ISSET(writefd, &fds_err))
|
2007-04-16 12:34:08 -04:00
|
|
|
ret |= CURL_CSELECT_ERR;
|
2004-11-19 03:52:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2007-03-18 00:51:40 -04:00
|
|
|
|
|
|
|
#endif /* HAVE_POLL_FINE */
|
|
|
|
|
2004-11-19 03:52:33 -05: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 16:00:40 -04:00
|
|
|
* being used and a file descriptor is too large for FD_SETSIZE.
|
|
|
|
* A negative timeout value makes this function wait indefinitely,
|
|
|
|
* unles no valid file descriptor is given, when this happens the
|
|
|
|
* negative timeout is ignored and the function times out immediately.
|
2004-11-19 03:52:33 -05:00
|
|
|
*
|
|
|
|
* Return values:
|
|
|
|
* -1 = system call error or fd >= FD_SETSIZE
|
|
|
|
* 0 = timeout
|
2007-03-20 16:00:40 -04:00
|
|
|
* N = number of structures with non zero revent fields
|
2004-11-19 03:52:33 -05:00
|
|
|
*/
|
|
|
|
int Curl_poll(struct pollfd ufds[], unsigned int nfds, int timeout_ms)
|
|
|
|
{
|
2007-03-18 00:51:40 -04:00
|
|
|
#ifndef HAVE_POLL_FINE
|
2007-03-20 16:00:40 -04:00
|
|
|
struct timeval pending_tv;
|
2004-11-19 03:52:33 -05:00
|
|
|
struct timeval *ptimeout;
|
|
|
|
fd_set fds_read;
|
|
|
|
fd_set fds_write;
|
|
|
|
fd_set fds_err;
|
2004-11-19 09:38:02 -05:00
|
|
|
curl_socket_t maxfd;
|
2007-03-18 00:51:40 -04:00
|
|
|
#endif
|
2015-03-17 08:41:49 -04:00
|
|
|
struct timeval initial_tv = {0, 0};
|
2007-03-18 00:51:40 -04:00
|
|
|
bool fds_none = TRUE;
|
2004-11-19 03:52:33 -05:00
|
|
|
unsigned int i;
|
2007-04-19 21:58:15 -04:00
|
|
|
int pending_ms = 0;
|
2007-03-27 11:22:49 -04:00
|
|
|
int error;
|
2007-03-18 00:51:40 -04:00
|
|
|
int r;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ufds) {
|
2011-04-20 09:17:42 -04:00
|
|
|
for(i = 0; i < nfds; i++) {
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ufds[i].fd != CURL_SOCKET_BAD) {
|
2007-03-18 00:51:40 -04:00
|
|
|
fds_none = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(fds_none) {
|
2011-07-28 15:27:55 -04:00
|
|
|
r = Curl_wait_ms(timeout_ms);
|
2007-03-22 11:32:28 -04:00
|
|
|
return r;
|
2007-03-18 00:51:40 -04:00
|
|
|
}
|
|
|
|
|
2008-05-09 12:31:51 -04:00
|
|
|
/* Avoid initial timestamp, avoid curlx_tvnow() call, when elapsed
|
2007-04-19 20: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-11-05 04:45:09 -05:00
|
|
|
if(timeout_ms > 0) {
|
2007-04-19 20:07:19 -04:00
|
|
|
pending_ms = timeout_ms;
|
|
|
|
initial_tv = curlx_tvnow();
|
|
|
|
}
|
2007-03-20 16:00:40 -04:00
|
|
|
|
2007-03-18 00:51:40 -04:00
|
|
|
#ifdef HAVE_POLL_FINE
|
|
|
|
|
|
|
|
do {
|
2007-11-05 04:45:09 -05:00
|
|
|
if(timeout_ms < 0)
|
2007-03-20 16:00:40 -04:00
|
|
|
pending_ms = -1;
|
2007-11-05 04:45:09 -05:00
|
|
|
else if(!timeout_ms)
|
2007-04-19 20:07:19 -04:00
|
|
|
pending_ms = 0;
|
2007-03-20 16:00:40 -04:00
|
|
|
r = poll(ufds, nfds, pending_ms);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(r != -1)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
|
|
|
error = SOCKERRNO;
|
2008-03-05 22:48:33 -05:00
|
|
|
if(error && error_not_EINTR)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(timeout_ms > 0) {
|
2007-04-19 20:07:19 -04:00
|
|
|
pending_ms = timeout_ms - elapsed_ms;
|
2014-07-29 00:33:07 -04:00
|
|
|
if(pending_ms <= 0) {
|
|
|
|
r = 0; /* Simulate a "call timed out" case */
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
2014-07-29 00:33:07 -04:00
|
|
|
}
|
2007-04-19 20:07:19 -04:00
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
} while(r == -1);
|
2007-03-18 00:51:40 -04:00
|
|
|
|
2009-09-14 20:07:56 -04:00
|
|
|
if(r < 0)
|
|
|
|
return -1;
|
|
|
|
if(r == 0)
|
|
|
|
return 0;
|
|
|
|
|
2011-04-20 09:17:42 -04:00
|
|
|
for(i = 0; i < nfds; i++) {
|
2009-09-14 20: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)
|
|
|
|
ufds[i].revents |= (POLLIN|POLLOUT);
|
|
|
|
}
|
|
|
|
|
2007-03-18 00:51:40 -04:00
|
|
|
#else /* HAVE_POLL_FINE */
|
2004-11-19 03:52:33 -05:00
|
|
|
|
|
|
|
FD_ZERO(&fds_read);
|
|
|
|
FD_ZERO(&fds_write);
|
|
|
|
FD_ZERO(&fds_err);
|
2006-04-26 13:26:22 -04:00
|
|
|
maxfd = (curl_socket_t)-1;
|
2004-11-19 03:52:33 -05:00
|
|
|
|
2011-04-20 09:17:42 -04:00
|
|
|
for(i = 0; i < nfds; i++) {
|
2007-03-20 16:00:40 -04:00
|
|
|
ufds[i].revents = 0;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ufds[i].fd == CURL_SOCKET_BAD)
|
2004-11-19 03:52:33 -05:00
|
|
|
continue;
|
2007-03-18 00:51:40 -04:00
|
|
|
VERIFY_SOCK(ufds[i].fd);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ufds[i].events & (POLLIN|POLLOUT|POLLPRI|
|
2007-03-28 14:59:42 -04:00
|
|
|
POLLRDNORM|POLLWRNORM|POLLRDBAND)) {
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ufds[i].fd > maxfd)
|
2007-03-20 16:00:40 -04:00
|
|
|
maxfd = ufds[i].fd;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ufds[i].events & (POLLRDNORM|POLLIN))
|
2007-03-20 16:00:40 -04:00
|
|
|
FD_SET(ufds[i].fd, &fds_read);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ufds[i].events & (POLLWRNORM|POLLOUT))
|
2007-03-20 16:00:40 -04:00
|
|
|
FD_SET(ufds[i].fd, &fds_write);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ufds[i].events & (POLLRDBAND|POLLPRI))
|
2007-03-20 16:00:40 -04:00
|
|
|
FD_SET(ufds[i].fd, &fds_err);
|
|
|
|
}
|
2004-11-19 03:52:33 -05:00
|
|
|
}
|
|
|
|
|
2014-05-27 17:58:28 -04:00
|
|
|
#ifdef USE_WINSOCK
|
|
|
|
/* WinSock select() can't handle zero events. See the comment about this in
|
|
|
|
Curl_check_socket(). */
|
|
|
|
if(fds_read.fd_count == 0 && fds_write.fd_count == 0
|
|
|
|
&& fds_err.fd_count == 0) {
|
|
|
|
r = Curl_wait_ms(timeout_ms);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-03-20 16:00:40 -04:00
|
|
|
ptimeout = (timeout_ms < 0) ? NULL : &pending_tv;
|
2004-11-19 03:52:33 -05:00
|
|
|
|
2005-01-13 16:51:48 -05:00
|
|
|
do {
|
2007-11-05 04:45:09 -05:00
|
|
|
if(timeout_ms > 0) {
|
2007-03-20 16:00:40 -04:00
|
|
|
pending_tv.tv_sec = pending_ms / 1000;
|
|
|
|
pending_tv.tv_usec = (pending_ms % 1000) * 1000;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
else if(!timeout_ms) {
|
2007-04-19 20:07:19 -04:00
|
|
|
pending_tv.tv_sec = 0;
|
|
|
|
pending_tv.tv_usec = 0;
|
|
|
|
}
|
2015-12-07 14:27:29 -05:00
|
|
|
|
|
|
|
#ifdef USE_WINSOCK
|
2014-05-27 17:58:28 -04:00
|
|
|
r = select((int)maxfd + 1,
|
|
|
|
/* WinSock select() can't handle fd_sets with zero bits set, so
|
|
|
|
don't give it such arguments. See the comment about this in
|
|
|
|
Curl_check_socket().
|
|
|
|
*/
|
|
|
|
fds_read.fd_count ? &fds_read : NULL,
|
|
|
|
fds_write.fd_count ? &fds_write : NULL,
|
2015-12-07 14:27:29 -05:00
|
|
|
fds_err.fd_count ? &fds_err : NULL, ptimeout);
|
|
|
|
#else
|
|
|
|
r = select((int)maxfd + 1, &fds_read, &fds_write, &fds_err, ptimeout);
|
2014-05-27 17:58:28 -04:00
|
|
|
#endif
|
2007-11-05 04:45:09 -05:00
|
|
|
if(r != -1)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
|
|
|
error = SOCKERRNO;
|
2008-03-05 22:48:33 -05:00
|
|
|
if(error && error_not_EINTR)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(timeout_ms > 0) {
|
2007-04-19 20:07:19 -04:00
|
|
|
pending_ms = timeout_ms - elapsed_ms;
|
2014-07-29 00:33:07 -04:00
|
|
|
if(pending_ms <= 0) {
|
|
|
|
r = 0; /* Simulate a "call timed out" case */
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
2014-07-29 00:33:07 -04:00
|
|
|
}
|
2007-04-19 20:07:19 -04:00
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
} while(r == -1);
|
2004-11-19 03:52:33 -05:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(r < 0)
|
2004-11-19 03:52:33 -05:00
|
|
|
return -1;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(r == 0)
|
2004-11-19 03:52:33 -05:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
r = 0;
|
2011-04-20 09:17:42 -04:00
|
|
|
for(i = 0; i < nfds; i++) {
|
2004-11-19 03:52:33 -05:00
|
|
|
ufds[i].revents = 0;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ufds[i].fd == CURL_SOCKET_BAD)
|
2004-11-19 03:52:33 -05:00
|
|
|
continue;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(FD_ISSET(ufds[i].fd, &fds_read))
|
2004-11-19 03:52:33 -05:00
|
|
|
ufds[i].revents |= POLLIN;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(FD_ISSET(ufds[i].fd, &fds_write))
|
2004-11-19 03:52:33 -05:00
|
|
|
ufds[i].revents |= POLLOUT;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(FD_ISSET(ufds[i].fd, &fds_err))
|
2007-03-28 14:59:42 -04:00
|
|
|
ufds[i].revents |= POLLPRI;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ufds[i].revents != 0)
|
2004-11-19 03:52:33 -05:00
|
|
|
r++;
|
|
|
|
}
|
2007-03-18 00:51:40 -04:00
|
|
|
|
2007-02-16 13:19:35 -05:00
|
|
|
#endif /* HAVE_POLL_FINE */
|
2007-03-18 00:51:40 -04:00
|
|
|
|
2005-01-13 16:51:48 -05:00
|
|
|
return r;
|
2004-11-19 03:52:33 -05:00
|
|
|
}
|
2006-04-07 17:50:47 -04:00
|
|
|
|
|
|
|
#ifdef TPF
|
|
|
|
/*
|
|
|
|
* This is a replacement for select() on the TPF platform.
|
|
|
|
* It is used whenever libcurl calls select().
|
|
|
|
* The call below to tpf_process_signals() is required because
|
|
|
|
* TPF's select calls are not signal interruptible.
|
|
|
|
*
|
|
|
|
* Return values are the same as select's.
|
|
|
|
*/
|
|
|
|
int tpf_select_libcurl(int maxfds, fd_set* reads, fd_set* writes,
|
|
|
|
fd_set* excepts, struct timeval* tv)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = tpf_select_bsd(maxfds, reads, writes, excepts, tv);
|
|
|
|
tpf_process_signals();
|
2015-03-17 08:05:01 -04:00
|
|
|
return rc;
|
2006-04-07 17:50:47 -04:00
|
|
|
}
|
|
|
|
#endif /* TPF */
|