2004-11-19 03:52:33 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2009-10-27 12:56:20 -04:00
|
|
|
* Copyright (C) 1998 - 2009, 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
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#include "setup.h"
|
|
|
|
|
2004-12-21 05:11:07 -05:00
|
|
|
#ifdef HAVE_SYS_SELECT_H
|
|
|
|
#include <sys/select.h>
|
|
|
|
#endif
|
2004-11-20 03:57:56 -05:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.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
|
|
|
|
|
2005-01-15 04:26:07 -05:00
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
#include "urldata.h"
|
|
|
|
#include "connect.h"
|
|
|
|
#include "select.h"
|
|
|
|
|
2007-02-16 13:19:35 -05:00
|
|
|
/* Winsock and TPF sockets are not in range [0..FD_SETSIZE-1] */
|
|
|
|
|
2006-10-18 17:05:40 -04:00
|
|
|
#if defined(USE_WINSOCK) || defined(TPF)
|
2007-11-05 04:45:09 -05:00
|
|
|
#define VERIFY_SOCK(x) do { } while(0)
|
2004-11-19 08:46:58 -05:00
|
|
|
#else
|
2004-11-19 09:03:19 -05:00
|
|
|
#define VALID_SOCK(s) (((s) >= 0) && ((s) < FD_SETSIZE))
|
2005-03-21 17:34:07 -05:00
|
|
|
#define VERIFY_SOCK(x) do { \
|
|
|
|
if(!VALID_SOCK(x)) { \
|
2007-02-16 13:19:35 -05:00
|
|
|
SET_SOCKERRNO(EINVAL); \
|
2005-03-21 17:34:07 -05:00
|
|
|
return -1; \
|
|
|
|
} \
|
|
|
|
} while(0)
|
2004-11-19 08:46:58 -05:00
|
|
|
#endif
|
|
|
|
|
2007-03-22 11:32:28 -04:00
|
|
|
/* Convenience local macros */
|
|
|
|
|
|
|
|
#define elapsed_ms (int)curlx_tvdiff(curlx_tvnow(), initial_tv)
|
|
|
|
|
|
|
|
#ifdef CURL_ACKNOWLEDGE_EINTR
|
2008-03-05 22:48:33 -05:00
|
|
|
#define error_not_EINTR (1)
|
2007-03-22 11:32:28 -04:00
|
|
|
#else
|
2008-03-05 22:48:33 -05:00
|
|
|
#define error_not_EINTR (error != EINTR)
|
2007-03-22 11:32:28 -04:00
|
|
|
#endif
|
|
|
|
|
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.
|
|
|
|
* On non-DOS and non-Winsock platforms, when compiled with
|
|
|
|
* CURL_ACKNOWLEDGE_EINTR defined, EINTR condition is honored
|
|
|
|
* and function might exit early without awaiting full timeout,
|
|
|
|
* otherwise EINTR will be ignored and full timeout will elapse.
|
|
|
|
*
|
|
|
|
* Return values:
|
|
|
|
* -1 = system call error, invalid timeout value, or interrupted
|
|
|
|
* 0 = specified timeout has elapsed
|
2007-03-18 00:51:40 -04:00
|
|
|
*/
|
2007-03-22 11:32:28 -04:00
|
|
|
static int 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;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(pending_ms <= 0)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
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
|
|
|
/*
|
2007-03-11 05:11:29 -04:00
|
|
|
* This is an internal function used for waiting for read or write
|
2007-03-20 16:00:40 -04:00
|
|
|
* events on a pair 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.
|
|
|
|
* 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.
|
|
|
|
* When compiled with CURL_ACKNOWLEDGE_EINTR defined, EINTR condition
|
2007-03-22 11:32:28 -04:00
|
|
|
* is honored and function might exit early without awaiting timeout,
|
2007-03-20 16:00:40 -04:00
|
|
|
* otherwise EINTR will be ignored.
|
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
|
2007-04-16 12:34:08 -04:00
|
|
|
* CURL_CSELECT_IN | CURL_CSELECT_OUT | CURL_CSELECT_ERR
|
2004-11-19 03:52:33 -05:00
|
|
|
*/
|
2007-04-19 16:20:48 -04:00
|
|
|
int Curl_socket_ready(curl_socket_t readfd, curl_socket_t writefd,
|
|
|
|
int timeout_ms)
|
2004-11-19 03:52:33 -05:00
|
|
|
{
|
2007-03-18 00:51:40 -04:00
|
|
|
#ifdef HAVE_POLL_FINE
|
2004-11-19 03:52:33 -05:00
|
|
|
struct pollfd pfd[2];
|
|
|
|
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
|
2007-10-03 12:26:56 -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;
|
|
|
|
|
2007-03-18 00:51:40 -04:00
|
|
|
if((readfd == CURL_SOCKET_BAD) && (writefd == CURL_SOCKET_BAD)) {
|
2007-03-22 11:32:28 -04:00
|
|
|
r = wait_ms(timeout_ms);
|
|
|
|
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
|
|
|
|
|
2004-11-19 03:52:33 -05:00
|
|
|
num = 0;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(readfd != CURL_SOCKET_BAD) {
|
2004-11-19 03:52:33 -05:00
|
|
|
pfd[num].fd = readfd;
|
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) {
|
2007-04-19 20:07:19 -04:00
|
|
|
pending_ms = timeout_ms - elapsed_ms;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(pending_ms <= 0)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
|
|
|
}
|
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;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(readfd != CURL_SOCKET_BAD) {
|
|
|
|
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
|
|
|
}
|
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);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(readfd != CURL_SOCKET_BAD) {
|
2005-03-21 17:34:07 -05:00
|
|
|
VERIFY_SOCK(readfd);
|
2004-11-19 03:52:33 -05:00
|
|
|
FD_SET(readfd, &fds_read);
|
|
|
|
FD_SET(readfd, &fds_err);
|
|
|
|
maxfd = readfd;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2007-03-20 16:00:40 -04:00
|
|
|
r = select((int)maxfd + 1, &fds_read, &fds_write, &fds_err, ptimeout);
|
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;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(pending_ms <= 0)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
|
|
|
}
|
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;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(readfd != CURL_SOCKET_BAD) {
|
|
|
|
if(FD_ISSET(readfd, &fds_read))
|
2007-04-16 12:34:08 -04:00
|
|
|
ret |= CURL_CSELECT_IN;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(FD_ISSET(readfd, &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.
|
|
|
|
* When compiled with CURL_ACKNOWLEDGE_EINTR defined, EINTR condition
|
2007-03-22 11:32:28 -04:00
|
|
|
* is honored and function might exit early without awaiting timeout,
|
2007-03-20 16:00:40 -04:00
|
|
|
* otherwise EINTR will be ignored.
|
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
|
2007-10-03 12:26:56 -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) {
|
2007-03-18 00:51:40 -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) {
|
2007-03-22 11:32:28 -04:00
|
|
|
r = wait_ms(timeout_ms);
|
|
|
|
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;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(pending_ms <= 0)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
|
|
|
}
|
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;
|
|
|
|
|
|
|
|
for (i = 0; i < nfds; i++) {
|
|
|
|
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
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
2005-04-26 09:08:49 -04:00
|
|
|
r = select((int)maxfd + 1, &fds_read, &fds_write, &fds_err, ptimeout);
|
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;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(pending_ms <= 0)
|
2007-04-19 20:07:19 -04:00
|
|
|
break;
|
|
|
|
}
|
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;
|
|
|
|
for (i = 0; i < nfds; i++) {
|
|
|
|
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();
|
|
|
|
return(rc);
|
|
|
|
}
|
|
|
|
#endif /* TPF */
|