1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
|
/*
* Copyright (C) 1990-2003 by CERN/IT/PDP/DM
* All rights reserved
*/
#ifndef lint
static char sccsid[] = "@(#)$RCSfile: socket_timeout.c,v $ $Revision: 1.1 $ $Date: 2005/03/29 09:27:19 $ CERN IT-PDP/DM Jean-Damien Durand";
#endif /* not lint */
#if defined(linux)
#define USE_POLL_INSTEAD_OF_SELECT
/* #define __FD_SETSIZE 65536 */
#endif
#include <stdlib.h>
#include <errno.h>
#include <signal.h>
#include <time.h>
#ifndef _WIN32
#include <sys/time.h>
#endif
#ifdef _AIX
/* Otherwise cc will not know about fd_set on */
/* old aix versions. */
#include <sys/select.h>
#endif
#include <sys/types.h>
#ifndef _WIN32
#include <unistd.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#endif
#if defined(SOLARIS)
#include <sys/filio.h>
#endif /* SOLARIS */
#ifdef USE_POLL_INSTEAD_OF_SELECT
#include <poll.h>
#endif
#include "net.h"
#include "serrno.h"
#include "socket_timeout.h"
#ifndef _WIN32
/* Signal handler - Simplify the POSIX sigaction calls */
#if defined(__STDC__)
typedef void Sigfunc(int);
#else
typedef void Sigfunc();
#endif
#endif
#if defined(__STDC__)
int _net_readable(int, int);
int _net_writable(int, int);
int _net_connectable(SOCKET, int);
#ifndef _WIN32
Sigfunc *_netsignal(int, Sigfunc *);
#endif
#else
int _net_readable();
int _net_writable();
int _net_connectable();
#ifndef _WIN32
Sigfunc *_netsignal();
#endif
#endif
int DLL_DECL netconnect_timeout(fd, addr, addr_size, timeout)
SOCKET fd;
struct sockaddr *addr;
size_t addr_size;
int timeout;
{
int rc, nonblocking;
#ifndef _WIN32
Sigfunc *sigpipe; /* Old SIGPIPE handler */
#endif
#ifndef _WIN32
/* In any case we catch and trap SIGPIPE */
if ((sigpipe = _netsignal(SIGPIPE, SIG_IGN)) == SIG_ERR) {
return(-1);
}
#endif
rc = 0;
if ( timeout >= 0 ) {
nonblocking = 1;
#ifndef _WIN32
rc = ioctl(fd,FIONBIO,&nonblocking);
#else /* _WIN32 */
rc = ioctlsocket(fd,FIONBIO,&nonblocking);
#endif /* _WIN32 */
if ( rc == SOCKET_ERROR ) {
serrno = 0;
}
} else {
nonblocking = 0;
}
if ( rc != -1 ) {
rc = connect(fd,addr,addr_size);
if ( timeout >= 0 ) {
#ifndef _WIN32
if ( rc == -1 && errno != EINPROGRESS ) {
serrno = 0;
} else rc = 0;
#else /* _WIN32 */
if ( rc == SOCKET_ERROR && WSAGetLastError() != WSAEWOULDBLOCK ) {
serrno = 0;
} else rc = 0;
#endif /* _WIN32 */
} /* timeout >= 0 */
}
if ( timeout >= 0 && rc != -1 ) {
time_t time_start = time(NULL);
int time_elapsed = 0;
for (;;) {
rc = _net_connectable(fd, timeout - time_elapsed);
if ( (rc == -1) && (errno == EINTR) ) {
time_elapsed = (int) (time(NULL) - time_start);
if (time_elapsed >= timeout) {
rc = -1;
serrno = SETIMEDOUT;
break;
}
continue;
} else {
break;
}
}
}
#ifndef _WIN32
/* Restore previous handlers */
_netsignal(SIGPIPE, sigpipe);
#endif
/* Restore blocking socket if connect was successful */
if ( timeout >= 0 && rc == 0 ) {
nonblocking = 0;
#ifndef _WIN32
rc = ioctl(fd,FIONBIO,&nonblocking);
#else /* _WIN32 */
rc = ioctlsocket(fd,FIONBIO,&nonblocking);
#endif /* _WIN32 */
if ( rc == SOCKET_ERROR ) serrno = 0;
}
return(rc);
}
ssize_t DLL_DECL netread_timeout(fd, vptr, n, timeout)
SOCKET fd;
void *vptr;
ssize_t n;
int timeout;
{
size_t nleft; /* Bytes to read */
ssize_t nread = 0; /* Bytes yet read */
ssize_t flag = 0; /* != 0 means error */
char *ptr = NULL; /* Temp. pointer */
int select_status = 0;
#ifndef _WIN32
Sigfunc *sigpipe; /* Old SIGPIPE handler */
#endif
time_t time_start;
int time_elapsed;
/* If n < 0 it is an app. error */
if (n < 0) {
serrno = EINVAL;
return(-1);
}
/* If not timeout, we go to normal function */
if (timeout <= 0) {
return(netread(fd,vptr,(int) n));
}
#ifndef _WIN32
/* In any case we catch and trap SIGPIPE */
if ((sigpipe = _netsignal(SIGPIPE, SIG_IGN)) == SIG_ERR) {
return(-1);
}
#endif
ptr = vptr;
nleft = n;
nread = 0;
time_start = time(NULL);
time_elapsed = 0;
while (nleft > 0) {
if ((select_status = _net_readable(fd, timeout - time_elapsed)) <= 0) {
if (select_status == 0) {
/* Timeout */
serrno = SETIMEDOUT;
flag = -1;
break;
} else if (errno == EINTR) {
/* Interupted */
continue;
} else {
flag = -1;
break;
}
}
if ((nread = recv(fd, ptr, nleft, 0)) < 0) {
if (errno != EINTR) {
/* Error */
flag = -1;
break;
}
/* We continue the loop (recv was just interrupted) */
nread = 0;
} else if (nread == 0) {
/* Should not happen */
/* In such a case netread() returns 0, so do we */
serrno = SECONNDROP;
/* Makes sure we will return zero */
nleft = n;
/* EOF */
break;
} else {
nleft -= nread;
ptr += nread;
}
if (nleft > 0) {
time_elapsed = (int) (time(NULL) - time_start);
if (time_elapsed >= timeout) {
/* Timeout */
serrno = SETIMEDOUT;
flag = -1;
break;
}
}
}
#ifndef _WIN32
/* Restore previous handlers */
_netsignal(SIGPIPE, sigpipe);
#endif
if (flag != 0) {
/* Return -1 if error */
return(-1);
}
/* Return the number of bytes read ( >= 0) */
return(n - nleft);
}
ssize_t DLL_DECL netwrite_timeout(fd, vptr, n, timeout)
SOCKET fd;
void *vptr;
ssize_t n;
int timeout;
{
size_t nleft; /* Bytes to read */
ssize_t nwritten = 0; /* Bytes yet read */
ssize_t flag = 0; /* != 0 means error */
char *ptr = NULL; /* Temp. pointer */
#ifndef _WIN32
Sigfunc *sigpipe; /* Old SIGPIPE handler */
#endif
int select_status = 0;
time_t time_start;
int time_elapsed;
/* If n < 0 it is an app. error */
if (n < 0) {
serrno = EINVAL;
return(-1);
}
/* If not timeout, we go to normal function */
if (timeout <= 0) {
return(netwrite(fd,vptr,(int) n));
}
#ifndef _WIN32
/* In any case we catch and trap SIGPIPE */
if ((sigpipe = _netsignal(SIGPIPE, SIG_IGN)) == SIG_ERR) {
return(-1);
}
#endif
ptr = vptr;
nleft = n;
time_start = time(NULL);
time_elapsed = 0;
while (nleft > 0) {
if ((select_status = _net_writable(fd, timeout - time_elapsed)) <= 0) {
if (select_status == 0) {
/* Timeout */
serrno = SETIMEDOUT;
flag = -1;
break;
} else if (errno == EINTR) {
/* Interrupted */
continue;
} else {
flag = -1;
break;
}
}
if ((nwritten = send(fd, ptr, nleft, 0)) <= 0) {
if (errno != EINTR) {
/* Error */
flag = -1;
break;
}
/* We continue the loop (send was just interrupted) */
nwritten = 0;
} else {
nleft -= nwritten;
ptr += nwritten;
}
if (nleft > 0) {
time_elapsed = (int) (time(NULL) - time_start);
if (time_elapsed >= timeout) {
/* Timeout */
serrno = SETIMEDOUT;
flag = -1;
break;
}
}
}
#ifndef _WIN32
/* Restore previous handlers */
_netsignal(SIGPIPE, sigpipe);
#endif
if (flag != 0) {
/* Return -1 if error */
return(-1);
}
/* Return the number of bytes writen ( >= 0) */
return(n - nleft);
}
#ifndef _WIN32
Sigfunc *_netsignal(signo, func)
int signo;
Sigfunc *func;
{
struct sigaction act, oact;
int n = 0;
act.sa_handler = func;
sigemptyset(&act.sa_mask);
act.sa_flags = 0;
if (signo == SIGALRM) {
#ifdef SA_INTERRUPT
act.sa_flags |= SA_INTERRUPT; /* SunOS 4.x */
#endif
} else {
#ifdef SA_RESTART
act.sa_flags |= SA_RESTART; /* SVR4, 44BSD */
#endif
}
n = sigaction(signo, &act, &oact);
if (n < 0) {
return(SIG_ERR);
}
return(oact.sa_handler);
}
#endif
#ifdef USE_POLL_INSTEAD_OF_SELECT
int _net_writable(fd, timeout)
int fd;
int timeout;
{
struct pollfd pollit;
pollit.fd = fd;
pollit.events = POLLOUT;
pollit.revents = 0;
/* Will return > 0 if the descriptor is writable */
return(poll(&pollit,1,timeout*1000));
}
#else
int _net_writable(fd, timeout)
int fd;
int timeout;
{
fd_set rset;
struct timeval tv;
FD_ZERO(&rset);
FD_SET(fd,&rset);
tv.tv_sec = timeout;
tv.tv_usec = 0;
/* Will return > 0 if the descriptor is writable */
return(select(fd + 1, NULL, &rset, NULL, &tv));
}
#endif
#ifdef USE_POLL_INSTEAD_OF_SELECT
int _net_readable(fd, timeout)
int fd;
int timeout;
{
struct pollfd pollit;
pollit.fd = fd;
pollit.events = POLLIN;
pollit.revents = 0;
/* Will return > 0 if the descriptor is readable */
return(poll(&pollit,1,timeout*1000));
}
#else
int _net_readable(fd, timeout)
int fd;
int timeout;
{
fd_set rset;
struct timeval tv;
FD_ZERO(&rset);
FD_SET(fd,&rset);
tv.tv_sec = timeout;
tv.tv_usec = 0;
/* Will return > 0 if the descriptor is readable */
return(select(fd + 1, &rset, NULL, NULL, &tv));
}
#endif
int _net_connectable(fd, timeout)
SOCKET fd;
int timeout;
{
#ifdef USE_POLL_INSTEAD_OF_SELECT
struct pollfd pollit;
#else
fd_set wset, eset;
struct timeval tv;
#endif
int rc, errval, errval_len;
#ifdef USE_POLL_INSTEAD_OF_SELECT
pollit.fd = fd;
pollit.events = POLLOUT;
pollit.revents = 0;
#else
FD_ZERO(&wset);
FD_SET(fd,&wset);
FD_ZERO(&eset);
FD_SET(fd,&eset);
tv.tv_sec = timeout;
tv.tv_usec = 0;
#endif
/* Will return > 0 if the descriptor is connected */
#ifdef USE_POLL_INSTEAD_OF_SELECT
rc = poll(&pollit, 1, timeout * 1000);
#else
rc = select(fd + 1, NULL, &wset, &eset, &tv);
#endif
/*
* Timeout ?
*/
if ( rc == 0 ) {
serrno = SETIMEDOUT;
#if defined(_WIN32)
/*
* Make sure an error value is set
*/
WSASetLastError(WSAETIMEDOUT);
#endif /* _WIN32 */
return(-1);
}
/*
* Other error ?
*/
if ( rc < 0 ) {
serrno = 0;
return(-1);
}
/*
* Check if a socket error was reported. Connection errors
* are reported through socket layer errors since the connect is
* non-blocking. In this case, select() has returned a positive
* value indicating that a socket was ready for writing. Note that
* most systems seem to require that one always checks the socket
* error for the connect() completion. Some systems (Windows) sets
* the exception set to indicate that there was an error.
*/
errval_len = sizeof(errval);
if ( getsockopt(fd, SOL_SOCKET, SO_ERROR, (char *)&errval, (int *)&errval_len) == -1 ) {
serrno = 0;
return(-1);
}
#ifdef USE_POLL_INSTEAD_OF_SELECT
if (errval == 0) return(0);
#else
if ( (FD_ISSET(fd,&wset)) && (errval == 0) ) return(0);
/*
* For Windows it may happen that the getsockopt returns zero
* error value despite that the write set has not been set.
* Flag that an error occurred with SECOMERR. On windows we must
* set a valid socket error since WSAGetLastError() might be called.
* A good guess value is connection refused.
*/
if ( errval == 0 ) {
errval = SECOMERR;
#if defined(_WIN32)
/*
* Make sure an error value is set
*/
WSASetLastError(WSAECONNREFUSED);
#endif /* _WIN32 */
}
#endif
serrno = errval;
return(-1);
}
|