2004-11-19 03:52:33 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2005-03-31 02:02:02 -05:00
|
|
|
* Copyright (C) 1998 - 2005, 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"
|
|
|
|
|
2005-01-13 16:51:48 -05:00
|
|
|
#include <errno.h>
|
|
|
|
|
2004-11-20 03:57:56 -05:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
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
|
|
|
|
|
|
|
#ifndef HAVE_SELECT
|
|
|
|
#error "We can't compile without select() support!"
|
|
|
|
#endif
|
|
|
|
|
2004-12-22 17:28:10 -05:00
|
|
|
#ifdef __BEOS__
|
|
|
|
/* BeOS has FD_SET defined in socket.h */
|
|
|
|
#include <socket.h>
|
|
|
|
#endif
|
|
|
|
|
2005-01-15 04:26:07 -05:00
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
#include "urldata.h"
|
|
|
|
#include "connect.h"
|
|
|
|
#include "select.h"
|
|
|
|
|
2004-11-19 08:46:58 -05:00
|
|
|
#ifdef WIN32
|
2005-03-21 17:34:07 -05:00
|
|
|
#define VERIFY_SOCK(x) /* Win-sockets are not in range [0..FD_SETSIZE> */
|
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)) { \
|
|
|
|
errno = EINVAL; \
|
|
|
|
return -1; \
|
|
|
|
} \
|
|
|
|
} while(0)
|
2004-11-19 08:46:58 -05:00
|
|
|
#endif
|
|
|
|
|
2004-11-19 03:52:33 -05:00
|
|
|
/*
|
|
|
|
* This is an internal function used for waiting for read or write
|
|
|
|
* events on single file descriptors. It attempts to replace select()
|
|
|
|
* in order to avoid limits with FD_SETSIZE.
|
|
|
|
*
|
|
|
|
* Return values:
|
|
|
|
* -1 = system call error
|
|
|
|
* 0 = timeout
|
|
|
|
* CSELECT_IN | CSELECT_OUT | CSELECT_ERR
|
|
|
|
*/
|
2004-11-19 09:03:19 -05:00
|
|
|
int Curl_select(curl_socket_t readfd, curl_socket_t writefd, int timeout_ms)
|
2004-11-19 03:52:33 -05:00
|
|
|
{
|
|
|
|
#ifdef HAVE_POLL_FINE
|
|
|
|
struct pollfd pfd[2];
|
|
|
|
int num;
|
|
|
|
int r;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
num = 0;
|
|
|
|
if (readfd != CURL_SOCKET_BAD) {
|
|
|
|
pfd[num].fd = readfd;
|
|
|
|
pfd[num].events = POLLIN;
|
|
|
|
num++;
|
|
|
|
}
|
|
|
|
if (writefd != CURL_SOCKET_BAD) {
|
|
|
|
pfd[num].fd = writefd;
|
|
|
|
pfd[num].events = POLLOUT;
|
|
|
|
num++;
|
|
|
|
}
|
|
|
|
|
2005-01-13 16:51:48 -05:00
|
|
|
do {
|
|
|
|
r = poll(pfd, num, timeout_ms);
|
|
|
|
} while((r == -1) && (errno == EINTR));
|
2004-11-19 03:52:33 -05:00
|
|
|
|
|
|
|
if (r < 0)
|
|
|
|
return -1;
|
|
|
|
if (r == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
num = 0;
|
|
|
|
if (readfd != CURL_SOCKET_BAD) {
|
|
|
|
if (pfd[num].revents & POLLIN)
|
|
|
|
ret |= CSELECT_IN;
|
|
|
|
if (pfd[num].revents & POLLERR)
|
|
|
|
ret |= CSELECT_ERR;
|
|
|
|
num++;
|
|
|
|
}
|
|
|
|
if (writefd != CURL_SOCKET_BAD) {
|
|
|
|
if (pfd[num].revents & POLLOUT)
|
|
|
|
ret |= CSELECT_OUT;
|
|
|
|
if (pfd[num].revents & POLLERR)
|
|
|
|
ret |= CSELECT_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
#else
|
|
|
|
struct timeval timeout;
|
|
|
|
fd_set fds_read;
|
|
|
|
fd_set fds_write;
|
|
|
|
fd_set fds_err;
|
2004-11-19 09:38:02 -05:00
|
|
|
curl_socket_t maxfd;
|
2004-11-19 03:52:33 -05:00
|
|
|
int r;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
timeout.tv_sec = timeout_ms / 1000;
|
|
|
|
timeout.tv_usec = (timeout_ms % 1000) * 1000;
|
|
|
|
|
|
|
|
FD_ZERO(&fds_err);
|
|
|
|
maxfd = -1;
|
|
|
|
|
|
|
|
FD_ZERO(&fds_read);
|
|
|
|
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);
|
|
|
|
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);
|
2005-03-21 20:24:27 -05:00
|
|
|
if (writefd > maxfd)
|
2004-11-19 03:52:33 -05:00
|
|
|
maxfd = writefd;
|
|
|
|
}
|
|
|
|
|
2005-01-13 16:51:48 -05:00
|
|
|
do {
|
2005-04-26 09:08:49 -04:00
|
|
|
r = select((int)maxfd + 1, &fds_read, &fds_write, &fds_err, &timeout);
|
2005-01-15 04:26:07 -05:00
|
|
|
} while((r == -1) && (Curl_ourerrno() == EINTR));
|
2004-11-19 03:52:33 -05:00
|
|
|
|
|
|
|
if (r < 0)
|
|
|
|
return -1;
|
|
|
|
if (r == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
if (readfd != CURL_SOCKET_BAD) {
|
|
|
|
if (FD_ISSET(readfd, &fds_read))
|
|
|
|
ret |= CSELECT_IN;
|
|
|
|
if (FD_ISSET(readfd, &fds_err))
|
|
|
|
ret |= CSELECT_ERR;
|
|
|
|
}
|
|
|
|
if (writefd != CURL_SOCKET_BAD) {
|
|
|
|
if (FD_ISSET(writefd, &fds_write))
|
|
|
|
ret |= CSELECT_OUT;
|
|
|
|
if (FD_ISSET(writefd, &fds_err))
|
|
|
|
ret |= CSELECT_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a wrapper around poll(). If poll() does not exist, then
|
|
|
|
* select() is used instead. An error is returned if select() is
|
|
|
|
* being used and a file descriptor too large for FD_SETSIZE.
|
|
|
|
*
|
|
|
|
* Return values:
|
|
|
|
* -1 = system call error or fd >= FD_SETSIZE
|
|
|
|
* 0 = timeout
|
|
|
|
* 1 = number of structures with non zero revent fields
|
|
|
|
*/
|
|
|
|
int Curl_poll(struct pollfd ufds[], unsigned int nfds, int timeout_ms)
|
|
|
|
{
|
2005-01-13 16:51:48 -05:00
|
|
|
int r;
|
2004-11-19 03:52:33 -05:00
|
|
|
#ifdef HAVE_POLL_FINE
|
2005-01-13 16:51:48 -05:00
|
|
|
do {
|
|
|
|
r = poll(ufds, nfds, timeout_ms);
|
|
|
|
} while((r == -1) && (errno == EINTR));
|
2004-11-19 03:52:33 -05:00
|
|
|
#else
|
|
|
|
struct timeval timeout;
|
|
|
|
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;
|
2004-11-19 03:52:33 -05:00
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
FD_ZERO(&fds_read);
|
|
|
|
FD_ZERO(&fds_write);
|
|
|
|
FD_ZERO(&fds_err);
|
|
|
|
maxfd = -1;
|
|
|
|
|
|
|
|
for (i = 0; i < nfds; i++) {
|
2004-11-19 09:38:02 -05:00
|
|
|
if (ufds[i].fd == CURL_SOCKET_BAD)
|
2004-11-19 03:52:33 -05:00
|
|
|
continue;
|
2004-11-19 09:38:02 -05:00
|
|
|
#ifndef WIN32 /* This is harmless and wrong on Win32 */
|
2004-11-19 03:52:33 -05:00
|
|
|
if (ufds[i].fd >= FD_SETSIZE) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
2004-11-19 09:38:02 -05:00
|
|
|
#endif
|
2004-11-19 03:52:33 -05:00
|
|
|
if (ufds[i].fd > maxfd)
|
|
|
|
maxfd = ufds[i].fd;
|
|
|
|
if (ufds[i].events & POLLIN)
|
|
|
|
FD_SET(ufds[i].fd, &fds_read);
|
|
|
|
if (ufds[i].events & POLLOUT)
|
|
|
|
FD_SET(ufds[i].fd, &fds_write);
|
|
|
|
if (ufds[i].events & POLLERR)
|
|
|
|
FD_SET(ufds[i].fd, &fds_err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (timeout_ms < 0) {
|
|
|
|
ptimeout = NULL; /* wait forever */
|
|
|
|
} else {
|
|
|
|
timeout.tv_sec = timeout_ms / 1000;
|
|
|
|
timeout.tv_usec = (timeout_ms % 1000) * 1000;
|
|
|
|
ptimeout = &timeout;
|
|
|
|
}
|
|
|
|
|
2005-01-13 16:51:48 -05:00
|
|
|
do {
|
2005-04-26 09:08:49 -04:00
|
|
|
r = select((int)maxfd + 1, &fds_read, &fds_write, &fds_err, ptimeout);
|
2005-01-15 04:26:07 -05:00
|
|
|
} while((r == -1) && (Curl_ourerrno() == EINTR));
|
2004-11-19 03:52:33 -05:00
|
|
|
|
|
|
|
if (r < 0)
|
|
|
|
return -1;
|
|
|
|
if (r == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
r = 0;
|
|
|
|
for (i = 0; i < nfds; i++) {
|
|
|
|
ufds[i].revents = 0;
|
2004-11-19 09:38:02 -05:00
|
|
|
if (ufds[i].fd == CURL_SOCKET_BAD)
|
2004-11-19 03:52:33 -05:00
|
|
|
continue;
|
|
|
|
if (FD_ISSET(ufds[i].fd, &fds_read))
|
|
|
|
ufds[i].revents |= POLLIN;
|
|
|
|
if (FD_ISSET(ufds[i].fd, &fds_write))
|
|
|
|
ufds[i].revents |= POLLOUT;
|
|
|
|
if (FD_ISSET(ufds[i].fd, &fds_err))
|
|
|
|
ufds[i].revents |= POLLERR;
|
|
|
|
if (ufds[i].revents != 0)
|
|
|
|
r++;
|
|
|
|
}
|
|
|
|
#endif
|
2005-01-13 16:51:48 -05:00
|
|
|
return r;
|
2004-11-19 03:52:33 -05:00
|
|
|
}
|