Fix a comment typo.
[privoxy.git] / jbsockets.c
1 const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.115 2012/10/12 11:17:48 fabiankeil Exp $";
2 /*********************************************************************
3  *
4  * File        :  $Source: /cvsroot/ijbswa/current/jbsockets.c,v $
5  *
6  * Purpose     :  Contains wrappers for system-specific sockets code,
7  *                so that the rest of Junkbuster can be more
8  *                OS-independent.  Contains #ifdefs to make this work
9  *                on many platforms.
10  *
11  * Copyright   :  Written by and Copyright (C) 2001-2011 the
12  *                Privoxy team. http://www.privoxy.org/
13  *
14  *                Based on the Internet Junkbuster originally written
15  *                by and Copyright (C) 1997 Anonymous Coders and
16  *                Junkbusters Corporation.  http://www.junkbusters.com
17  *
18  *                This program is free software; you can redistribute it
19  *                and/or modify it under the terms of the GNU General
20  *                Public License as published by the Free Software
21  *                Foundation; either version 2 of the License, or (at
22  *                your option) any later version.
23  *
24  *                This program is distributed in the hope that it will
25  *                be useful, but WITHOUT ANY WARRANTY; without even the
26  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
27  *                PARTICULAR PURPOSE.  See the GNU General Public
28  *                License for more details.
29  *
30  *                The GNU General Public License should be included with
31  *                this file.  If not, you can view it at
32  *                http://www.gnu.org/copyleft/gpl.html
33  *                or write to the Free Software Foundation, Inc., 59
34  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
35  *
36  *********************************************************************/
37
38
39 #include "config.h"
40
41 #include <stdlib.h>
42 #include <stdio.h>
43 #include <string.h>
44 #include <errno.h>
45 #include <fcntl.h>
46 #include <sys/types.h>
47
48 #ifdef _WIN32
49
50 #ifndef STRICT
51 #define STRICT
52 #endif
53 #include <windows.h>
54 #include <sys/timeb.h>
55 #include <io.h>
56
57 #else
58
59 #ifndef __OS2__
60 #include <unistd.h>
61 #endif
62 #include <sys/time.h>
63 #include <netinet/in.h>
64 #include <sys/ioctl.h>
65 #include <netdb.h>
66 #include <sys/socket.h>
67
68 #ifndef __BEOS__
69 #include <netinet/tcp.h>
70 #ifndef __OS2__
71 #include <arpa/inet.h>
72 #endif
73 #else
74 #include <socket.h>
75 #endif
76
77 #if defined(__EMX__) || defined (__OS2__)
78 #include <sys/select.h>  /* OS/2/EMX needs a little help with select */
79 #ifdef __OS2__
80 #include <nerrno.h>
81 #endif
82 #endif
83
84 #endif
85
86 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
87 #ifdef HAVE_POLL
88 #ifdef __GLIBC__
89 #include <sys/poll.h>
90 #else
91 #include <poll.h>
92 #endif /* def __GLIBC__ */
93 #endif /* HAVE_POLL */
94 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
95
96 #include "project.h"
97
98 /* For mutex semaphores only */
99 #include "jcc.h"
100
101 #include "jbsockets.h"
102 #include "filters.h"
103 #include "errlog.h"
104
105 /* Mac OSX doesn't define AI_NUMERICSESRV */
106 #ifndef AI_NUMERICSERV
107 #define AI_NUMERICSERV 0
108 #endif
109
110 const char jbsockets_h_rcs[] = JBSOCKETS_H_VERSION;
111
112 /*
113  * Maximum number of gethostbyname(_r) retries in case of
114  * soft errors (TRY_AGAIN).
115  * XXX: Does it make sense to make this a config option?
116  */
117 #define MAX_DNS_RETRIES 10
118
119 #define MAX_LISTEN_BACKLOG 128
120
121 #ifdef HAVE_RFC2553
122 static jb_socket rfc2553_connect_to(const char *host, int portnum, struct client_state *csp);
123 #else
124 static jb_socket no_rfc2553_connect_to(const char *host, int portnum, struct client_state *csp);
125 #endif
126
127 /*********************************************************************
128  *
129  * Function    :  connect_to
130  *
131  * Description :  Open a socket and connect to it.  Will check
132  *                that this is allowed according to ACL.
133  *
134  * Parameters  :
135  *          1  :  host = hostname to connect to
136  *          2  :  portnum = port to connent on (XXX: should be unsigned)
137  *          3  :  csp = Current client state (buffers, headers, etc...)
138  *
139  * Returns     :  JB_INVALID_SOCKET => failure, else it is the socket
140  *                file descriptor.
141  *
142  *********************************************************************/
143 jb_socket connect_to(const char *host, int portnum, struct client_state *csp)
144 {
145    jb_socket fd;
146    int forwarded_connect_retries = 0;
147
148    do
149    {
150       /*
151        * XXX: The whole errno overloading is ridiculous and should
152        *      be replaced with something sane and thread safe
153        */
154       /* errno = 0;*/
155 #ifdef HAVE_RFC2553
156       fd = rfc2553_connect_to(host, portnum, csp);
157 #else
158       fd = no_rfc2553_connect_to(host, portnum, csp);
159 #endif
160       if ((fd != JB_INVALID_SOCKET) || (errno == EINVAL)
161          || (csp->fwd == NULL)
162          || ((csp->fwd->forward_host == NULL) && (csp->fwd->type == SOCKS_NONE)))
163       {
164          break;
165       }
166       forwarded_connect_retries++;
167       if (csp->config->forwarded_connect_retries != 0)
168       {
169          log_error(LOG_LEVEL_ERROR,
170             "Attempt %d of %d to connect to %s failed. Trying again.",
171             forwarded_connect_retries, csp->config->forwarded_connect_retries + 1, host);
172       }
173
174    } while (forwarded_connect_retries < csp->config->forwarded_connect_retries);
175
176    return fd;
177 }
178
179 #ifdef HAVE_RFC2553
180 /* Getaddrinfo implementation */
181 static jb_socket rfc2553_connect_to(const char *host, int portnum, struct client_state *csp)
182 {
183    struct addrinfo hints, *result, *rp;
184    char service[6];
185    int retval;
186    jb_socket fd;
187    fd_set wfds;
188    struct timeval timeout;
189 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
190    int   flags;
191 #endif
192    int connect_failed;
193    /*
194     * XXX: Initializeing it here is only necessary
195     *      because not all situations are properly
196     *      covered yet.
197     */
198    int socket_error = 0;
199
200 #ifdef FEATURE_ACL
201    struct access_control_addr dst[1];
202 #endif /* def FEATURE_ACL */
203
204    /* Don't leak memory when retrying. */
205    freez(csp->error_message);
206    freez(csp->http->host_ip_addr_str);
207
208    retval = snprintf(service, sizeof(service), "%d", portnum);
209    if ((-1 == retval) || (sizeof(service) <= retval))
210    {
211       log_error(LOG_LEVEL_ERROR,
212          "Port number (%d) ASCII decimal representation doesn't fit into 6 bytes",
213          portnum);
214       csp->error_message = strdup("Invalid port number");
215       csp->http->host_ip_addr_str = strdup("unknown");
216       return(JB_INVALID_SOCKET);
217    }
218
219    memset((char *)&hints, 0, sizeof(hints));
220    hints.ai_family = AF_UNSPEC;
221    hints.ai_socktype = SOCK_STREAM;
222    hints.ai_flags = AI_NUMERICSERV; /* avoid service look-up */
223 #ifdef AI_ADDRCONFIG
224    hints.ai_flags |= AI_ADDRCONFIG;
225 #endif
226    if ((retval = getaddrinfo(host, service, &hints, &result)))
227    {
228       log_error(LOG_LEVEL_INFO,
229          "Can not resolve %s: %s", host, gai_strerror(retval));
230       /* XXX: Should find a better way to propagate this error. */
231       errno = EINVAL;
232       csp->error_message = strdup(gai_strerror(retval));
233       csp->http->host_ip_addr_str = strdup("unknown");
234       return(JB_INVALID_SOCKET);
235    }
236
237    csp->http->host_ip_addr_str = malloc(NI_MAXHOST);
238    if (NULL == csp->http->host_ip_addr_str)
239    {
240       freeaddrinfo(result);
241       log_error(LOG_LEVEL_ERROR,
242          "Out of memory while getting the server IP address.");
243       return JB_INVALID_SOCKET;
244    }
245
246    for (rp = result; rp != NULL; rp = rp->ai_next)
247    {
248
249 #ifdef FEATURE_ACL
250       memcpy(&dst->addr, rp->ai_addr, rp->ai_addrlen);
251
252       if (block_acl(dst, csp))
253       {
254 #ifdef __OS2__
255          socket_error = errno = SOCEPERM;
256 #else
257          socket_error = errno = EPERM;
258 #endif
259          continue;
260       }
261 #endif /* def FEATURE_ACL */
262
263       retval = getnameinfo(rp->ai_addr, rp->ai_addrlen,
264          csp->http->host_ip_addr_str, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
265       if (retval)
266       {
267          log_error(LOG_LEVEL_ERROR,
268             "Failed to get the host name from the socket structure: %s",
269             gai_strerror(retval));
270          continue;
271       }
272
273       fd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
274 #ifdef _WIN32
275       if (fd == JB_INVALID_SOCKET)
276 #else
277       if (fd < 0)
278 #endif
279       {
280          continue;
281       }
282
283 #ifdef TCP_NODELAY
284       {  /* turn off TCP coalescence */
285          int mi = 1;
286          setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *) &mi, sizeof (int));
287       }
288 #endif /* def TCP_NODELAY */
289
290 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
291       if ((flags = fcntl(fd, F_GETFL, 0)) != -1)
292       {
293          flags |= O_NDELAY;
294          fcntl(fd, F_SETFL, flags);
295       }
296 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__) */
297
298       connect_failed = 0;
299       while (connect(fd, rp->ai_addr, rp->ai_addrlen) == JB_INVALID_SOCKET)
300       {
301 #ifdef __OS2__
302          errno = sock_errno();
303 #endif /* __OS2__ */
304
305 #ifdef _WIN32
306          if (errno == WSAEINPROGRESS)
307 #else /* ifndef _WIN32 */
308          if (errno == EINPROGRESS)
309 #endif /* ndef _WIN32 || __OS2__ */
310          {
311             break;
312          }
313
314          if (errno != EINTR)
315          {
316             socket_error = errno;
317             close_socket(fd);
318             connect_failed = 1;
319             break;
320          }
321       }
322       if (connect_failed)
323       {
324          continue;
325       }
326
327 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
328       if (flags != -1)
329       {
330          flags &= ~O_NDELAY;
331          fcntl(fd, F_SETFL, flags);
332       }
333 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__) */
334
335       /* wait for connection to complete */
336       FD_ZERO(&wfds);
337       FD_SET(fd, &wfds);
338
339       memset(&timeout, 0, sizeof(timeout));
340       timeout.tv_sec  = 30;
341
342       /* MS Windows uses int, not SOCKET, for the 1st arg of select(). Weird! */
343       if ((select((int)fd + 1, NULL, &wfds, NULL, &timeout) > 0)
344          && FD_ISSET(fd, &wfds))
345       {
346          socklen_t optlen = sizeof(socket_error);
347          if (!getsockopt(fd, SOL_SOCKET, SO_ERROR, &socket_error, &optlen))
348          {
349             if (!socket_error)
350             {
351                /* Connection established, no need to try other addresses. */
352                break;
353             }
354             if (rp->ai_next != NULL)
355             {
356                /*
357                 * There's another address we can try, so log that this
358                 * one didn't work out. If the last one fails, too,
359                 * it will get logged outside the loop body so we don't
360                 * have to mention it here.
361                 */
362                log_error(LOG_LEVEL_CONNECT, "Could not connect to [%s]:%s: %s.",
363                   csp->http->host_ip_addr_str, service, strerror(socket_error));
364             }
365          }
366          else
367          {
368             socket_error = errno;
369             log_error(LOG_LEVEL_ERROR, "Could not get the state of "
370                "the connection to [%s]:%s: %s; dropping connection.",
371                csp->http->host_ip_addr_str, service, strerror(errno));
372          }
373       }
374
375       /* Connection failed, try next address */
376       close_socket(fd);
377    }
378
379    freeaddrinfo(result);
380    if (!rp)
381    {
382       log_error(LOG_LEVEL_CONNECT, "Could not connect to [%s]:%s: %s.",
383          host, service, strerror(socket_error));
384       csp->error_message = strdup(strerror(socket_error));
385       return(JB_INVALID_SOCKET);
386    }
387    log_error(LOG_LEVEL_CONNECT, "Connected to %s[%s]:%s.",
388       host, csp->http->host_ip_addr_str, service);
389
390    return(fd);
391
392 }
393
394 #else /* ndef HAVE_RFC2553 */
395 /* Pre-getaddrinfo implementation */
396
397 static jb_socket no_rfc2553_connect_to(const char *host, int portnum, struct client_state *csp)
398 {
399    struct sockaddr_in inaddr;
400    jb_socket fd;
401    unsigned int addr;
402    fd_set wfds;
403    struct timeval tv[1];
404 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
405    int   flags;
406 #endif
407
408 #ifdef FEATURE_ACL
409    struct access_control_addr dst[1];
410 #endif /* def FEATURE_ACL */
411
412    /* Don't leak memory when retrying. */
413    freez(csp->http->host_ip_addr_str);
414
415    memset((char *)&inaddr, 0, sizeof inaddr);
416
417    if ((addr = resolve_hostname_to_ip(host)) == INADDR_NONE)
418    {
419       csp->http->host_ip_addr_str = strdup("unknown");
420       return(JB_INVALID_SOCKET);
421    }
422
423 #ifdef FEATURE_ACL
424    dst->addr = ntohl(addr);
425    dst->port = portnum;
426
427    if (block_acl(dst, csp))
428    {
429 #ifdef __OS2__
430       errno = SOCEPERM;
431 #else
432       errno = EPERM;
433 #endif
434       return(JB_INVALID_SOCKET);
435    }
436 #endif /* def FEATURE_ACL */
437
438    inaddr.sin_addr.s_addr = addr;
439    inaddr.sin_family      = AF_INET;
440    csp->http->host_ip_addr_str = strdup(inet_ntoa(inaddr.sin_addr));
441
442 #ifndef _WIN32
443    if (sizeof(inaddr.sin_port) == sizeof(short))
444 #endif /* ndef _WIN32 */
445    {
446       inaddr.sin_port = htons((unsigned short) portnum);
447    }
448 #ifndef _WIN32
449    else
450    {
451       inaddr.sin_port = htonl((unsigned long)portnum);
452    }
453 #endif /* ndef _WIN32 */
454
455    fd = socket(inaddr.sin_family, SOCK_STREAM, 0);
456 #ifdef _WIN32
457    if (fd == JB_INVALID_SOCKET)
458 #else
459    if (fd < 0)
460 #endif
461    {
462       return(JB_INVALID_SOCKET);
463    }
464
465 #ifdef TCP_NODELAY
466    {  /* turn off TCP coalescence */
467       int mi = 1;
468       setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *) &mi, sizeof (int));
469    }
470 #endif /* def TCP_NODELAY */
471
472 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
473    if ((flags = fcntl(fd, F_GETFL, 0)) != -1)
474    {
475       flags |= O_NDELAY;
476       fcntl(fd, F_SETFL, flags);
477    }
478 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__) */
479
480    while (connect(fd, (struct sockaddr *) & inaddr, sizeof inaddr) == JB_INVALID_SOCKET)
481    {
482 #ifdef _WIN32
483       if (errno == WSAEINPROGRESS)
484 #elif __OS2__
485       if (sock_errno() == EINPROGRESS)
486 #else /* ifndef _WIN32 */
487       if (errno == EINPROGRESS)
488 #endif /* ndef _WIN32 || __OS2__ */
489       {
490          break;
491       }
492
493 #ifdef __OS2__
494       if (sock_errno() != EINTR)
495 #else
496       if (errno != EINTR)
497 #endif /* __OS2__ */
498       {
499          close_socket(fd);
500          return(JB_INVALID_SOCKET);
501       }
502    }
503
504 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
505    if (flags != -1)
506    {
507       flags &= ~O_NDELAY;
508       fcntl(fd, F_SETFL, flags);
509    }
510 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__) */
511
512    /* wait for connection to complete */
513    FD_ZERO(&wfds);
514    FD_SET(fd, &wfds);
515
516    tv->tv_sec  = 30;
517    tv->tv_usec = 0;
518
519    /* MS Windows uses int, not SOCKET, for the 1st arg of select(). Weird! */
520    if (select((int)fd + 1, NULL, &wfds, NULL, tv) <= 0)
521    {
522       close_socket(fd);
523       return(JB_INVALID_SOCKET);
524    }
525    return(fd);
526
527 }
528 #endif /* ndef HAVE_RFC2553 */
529
530
531 /*********************************************************************
532  *
533  * Function    :  write_socket
534  *
535  * Description :  Write the contents of buf (for n bytes) to socket fd.
536  *
537  * Parameters  :
538  *          1  :  fd = file descriptor (aka. handle) of socket to write to.
539  *          2  :  buf = pointer to data to be written.
540  *          3  :  len = length of data to be written to the socket "fd".
541  *
542  * Returns     :  0 on success (entire buffer sent).
543  *                nonzero on error.
544  *
545  *********************************************************************/
546 #ifdef AMIGA
547 int write_socket(jb_socket fd, const char *buf, ssize_t len)
548 #else
549 int write_socket(jb_socket fd, const char *buf, size_t len)
550 #endif
551 {
552    if (len == 0)
553    {
554       return 0;
555    }
556
557    log_error(LOG_LEVEL_WRITING, "to socket %d: %N", fd, len, buf);
558
559 #if defined(_WIN32)
560    return (send(fd, buf, (int)len, 0) != (int)len);
561 #elif defined(__BEOS__) || defined(AMIGA)
562    return (send(fd, buf, len, 0) != len);
563 #elif defined(__OS2__)
564    /*
565     * Break the data up into SOCKET_SEND_MAX chunks for sending...
566     * OS/2 seemed to complain when the chunks were too large.
567     */
568 #define SOCKET_SEND_MAX 65000
569    {
570       int send_len, send_rc = 0, i = 0;
571       while ((i < len) && (send_rc != -1))
572       {
573          if ((i + SOCKET_SEND_MAX) > len)
574             send_len = len - i;
575          else
576             send_len = SOCKET_SEND_MAX;
577          send_rc = send(fd,(char*)buf + i, send_len, 0);
578          if (send_rc == -1)
579             return 1;
580          i = i + send_len;
581       }
582       return 0;
583    }
584 #else
585    return (write(fd, buf, len) != len);
586 #endif
587
588 }
589
590
591 /*********************************************************************
592  *
593  * Function    :  read_socket
594  *
595  * Description :  Read from a TCP/IP socket in a platform independent way.
596  *
597  * Parameters  :
598  *          1  :  fd = file descriptor of the socket to read
599  *          2  :  buf = pointer to buffer where data will be written
600  *                Must be >= len bytes long.
601  *          3  :  len = maximum number of bytes to read
602  *
603  * Returns     :  On success, the number of bytes read is returned (zero
604  *                indicates end of file), and the file position is advanced
605  *                by this number.  It is not an error if this number is
606  *                smaller than the number of bytes requested; this may hap-
607  *                pen for example because fewer bytes are actually available
608  *                right now (maybe because we were close to end-of-file, or
609  *                because we are reading from a pipe, or from a terminal,
610  *                or because read() was interrupted by a signal).  On error,
611  *                -1 is returned, and errno is set appropriately.  In this
612  *                case it is left unspecified whether the file position (if
613  *                any) changes.
614  *
615  *********************************************************************/
616 int read_socket(jb_socket fd, char *buf, int len)
617 {
618    int ret;
619
620    if (len <= 0)
621    {
622       return(0);
623    }
624
625 #if defined(_WIN32)
626    ret = recv(fd, buf, len, 0);
627 #elif defined(__BEOS__) || defined(AMIGA) || defined(__OS2__)
628    ret = recv(fd, buf, (size_t)len, 0);
629 #else
630    ret = (int)read(fd, buf, (size_t)len);
631 #endif
632
633    if (ret > 0)
634    {
635       log_error(LOG_LEVEL_RECEIVED, "from socket %d: %N", fd, ret, buf);
636    }
637
638    return ret;
639 }
640
641
642 /*********************************************************************
643  *
644  * Function    :  data_is_available
645  *
646  * Description :  Waits for data to arrive on a socket.
647  *
648  * Parameters  :
649  *          1  :  fd = file descriptor of the socket to read
650  *          2  :  seconds_to_wait = number of seconds after which we give up.
651  *
652  * Returns     :  TRUE if data arrived in time,
653  *                FALSE otherwise.
654  *
655  *********************************************************************/
656 int data_is_available(jb_socket fd, int seconds_to_wait)
657 {
658    char buf[10];
659    fd_set rfds;
660    struct timeval timeout;
661    int n;
662
663    memset(&timeout, 0, sizeof(timeout));
664    timeout.tv_sec = seconds_to_wait;
665
666 #ifdef __OS2__
667    /* Copy and pasted from jcc.c ... */
668    memset(&rfds, 0, sizeof(fd_set));
669 #else
670    FD_ZERO(&rfds);
671 #endif
672    FD_SET(fd, &rfds);
673
674    n = select(fd+1, &rfds, NULL, NULL, &timeout);
675
676    /*
677     * XXX: Do we care about the different error conditions?
678     */
679    return ((n == 1) && (1 == recv(fd, buf, 1, MSG_PEEK)));
680 }
681
682
683 /*********************************************************************
684  *
685  * Function    :  close_socket
686  *
687  * Description :  Closes a TCP/IP socket
688  *
689  * Parameters  :
690  *          1  :  fd = file descriptor of socket to be closed
691  *
692  * Returns     :  void
693  *
694  *********************************************************************/
695 void close_socket(jb_socket fd)
696 {
697 #if defined(_WIN32) || defined(__BEOS__)
698    closesocket(fd);
699 #elif defined(AMIGA)
700    CloseSocket(fd);
701 #elif defined(__OS2__)
702    soclose(fd);
703 #else
704    close(fd);
705 #endif
706 }
707
708
709 /*********************************************************************
710  *
711  * Function    :  drain_and_close_socket
712  *
713  * Description :  Closes a TCP/IP socket after draining unread data
714  *
715  * Parameters  :
716  *          1  :  fd = file descriptor of the socket to be closed
717  *
718  * Returns     :  void
719  *
720  *********************************************************************/
721 void drain_and_close_socket(jb_socket fd)
722 {
723 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
724    if (socket_is_still_alive(fd))
725 #endif
726    {
727       int bytes_drained_total = 0;
728       int bytes_drained;
729
730 #ifdef HAVE_SHUTDOWN
731 /* Apparently Windows has shutdown() but not SHUT_WR. */
732 #ifndef SHUT_WR
733 #define SHUT_WR 1
734 #endif
735       if (0 != shutdown(fd, SHUT_WR))
736       {
737          log_error(LOG_LEVEL_ERROR, "Failed to shutdown socket %d %E", fd);
738       }
739 #endif
740 #define ARBITRARY_DRAIN_LIMIT 10000
741       do
742       {
743          char drainage[500];
744
745          bytes_drained = read_socket(fd, drainage, sizeof(drainage));
746          if (bytes_drained < 0)
747          {
748             log_error(LOG_LEVEL_ERROR, "Failed to drain socket %d %E", fd);
749          }
750          else if (bytes_drained > 0)
751          {
752             bytes_drained_total += bytes_drained;
753             if (bytes_drained_total > ARBITRARY_DRAIN_LIMIT)
754             {
755                log_error(LOG_LEVEL_CONNECT, "Giving up draining socket %d", fd);
756                break;
757             }
758          }
759       } while (bytes_drained > 0);
760       if (bytes_drained_total != 0)
761       {
762          log_error(LOG_LEVEL_CONNECT,
763             "Drained %d bytes before closing socket %d", bytes_drained_total, fd);
764       }
765    }
766
767    close_socket(fd);
768
769 }
770
771
772 /*********************************************************************
773  *
774  * Function    :  bind_port
775  *
776  * Description :  Call socket, set socket options, and listen.
777  *                Called by listen_loop to "boot up" our proxy address.
778  *
779  * Parameters  :
780  *          1  :  hostnam = TCP/IP address to bind/listen to
781  *          2  :  portnum = port to listen on
782  *          3  :  pfd = pointer used to return file descriptor.
783  *
784  * Returns     :  if success, returns 0 and sets *pfd.
785  *                if failure, returns -3 if address is in use,
786  *                                    -2 if address unresolvable,
787  *                                    -1 otherwise
788  *********************************************************************/
789 int bind_port(const char *hostnam, int portnum, jb_socket *pfd)
790 {
791 #ifdef HAVE_RFC2553
792    struct addrinfo hints;
793    struct addrinfo *result, *rp;
794    /*
795     * XXX: portnum should be a string to allow symbolic service
796     * names in the configuration file and to avoid the following
797     * int2string.
798     */
799    char servnam[6];
800    int retval;
801 #else
802    struct sockaddr_in inaddr;
803 #endif /* def HAVE_RFC2553 */
804    jb_socket fd;
805 #ifndef _WIN32
806    int one = 1;
807 #endif /* ndef _WIN32 */
808
809    *pfd = JB_INVALID_SOCKET;
810
811 #ifdef HAVE_RFC2553
812    retval = snprintf(servnam, sizeof(servnam), "%d", portnum);
813    if ((-1 == retval) || (sizeof(servnam) <= retval))
814    {
815       log_error(LOG_LEVEL_ERROR,
816          "Port number (%d) ASCII decimal representation doesn't fit into 6 bytes",
817          portnum);
818       return -1;
819    }
820
821    memset(&hints, 0, sizeof(struct addrinfo));
822    if (hostnam == NULL)
823    {
824       /*
825        * XXX: This is a hack. The right thing to do
826        * would be to bind to both AF_INET and AF_INET6.
827        * This will also fail if there is no AF_INET
828        * version available.
829        */
830       hints.ai_family = AF_INET;
831    }
832    else
833    {
834       hints.ai_family = AF_UNSPEC;
835    }
836    hints.ai_socktype = SOCK_STREAM;
837    hints.ai_flags = AI_PASSIVE;
838    hints.ai_protocol = 0; /* Really any stream protocol or TCP only */
839    hints.ai_canonname = NULL;
840    hints.ai_addr = NULL;
841    hints.ai_next = NULL;
842
843    if ((retval = getaddrinfo(hostnam, servnam, &hints, &result)))
844    {
845       log_error(LOG_LEVEL_ERROR,
846          "Can not resolve %s: %s", hostnam, gai_strerror(retval));
847       return -2;
848    }
849 #else
850    memset((char *)&inaddr, '\0', sizeof inaddr);
851
852    inaddr.sin_family      = AF_INET;
853    inaddr.sin_addr.s_addr = resolve_hostname_to_ip(hostnam);
854
855    if (inaddr.sin_addr.s_addr == INADDR_NONE)
856    {
857       return(-2);
858    }
859
860 #ifndef _WIN32
861    if (sizeof(inaddr.sin_port) == sizeof(short))
862 #endif /* ndef _WIN32 */
863    {
864       inaddr.sin_port = htons((unsigned short) portnum);
865    }
866 #ifndef _WIN32
867    else
868    {
869       inaddr.sin_port = htonl((unsigned long) portnum);
870    }
871 #endif /* ndef _WIN32 */
872 #endif /* def HAVE_RFC2553 */
873
874 #ifdef HAVE_RFC2553
875    for (rp = result; rp != NULL; rp = rp->ai_next)
876    {
877       fd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
878 #else
879    fd = socket(AF_INET, SOCK_STREAM, 0);
880 #endif /* def HAVE_RFC2553 */
881
882 #ifdef _WIN32
883    if (fd == JB_INVALID_SOCKET)
884 #else
885    if (fd < 0)
886 #endif
887    {
888 #ifdef HAVE_RFC2553
889       continue;
890 #else
891       return(-1);
892 #endif
893    }
894
895 #ifndef _WIN32
896    /*
897     * This is not needed for Win32 - in fact, it stops
898     * duplicate instances of Privoxy from being caught.
899     *
900     * On UNIX, we assume the user is sensible enough not
901     * to start Privoxy multiple times on the same IP.
902     * Without this, stopping and restarting Privoxy
903     * from a script fails.
904     * Note: SO_REUSEADDR is meant to only take over
905     * sockets which are *not* in listen state in Linux,
906     * e.g. sockets in TIME_WAIT. YMMV.
907     */
908    setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *)&one, sizeof(one));
909 #endif /* ndef _WIN32 */
910
911 #ifdef HAVE_RFC2553
912    if (bind(fd, rp->ai_addr, rp->ai_addrlen) < 0)
913 #else
914    if (bind(fd, (struct sockaddr *)&inaddr, sizeof(inaddr)) < 0)
915 #endif
916    {
917 #ifdef _WIN32
918       errno = WSAGetLastError();
919       if (errno == WSAEADDRINUSE)
920 #else
921       if (errno == EADDRINUSE)
922 #endif
923       {
924 #ifdef HAVE_RFC2553
925          freeaddrinfo(result);
926 #endif
927          close_socket(fd);
928          return(-3);
929       }
930       else
931       {
932          close_socket(fd);
933 #ifndef HAVE_RFC2553
934          return(-1);
935       }
936    }
937 #else
938       }
939    }
940    else
941    {
942       /* bind() succeeded, escape from for-loop */
943       /*
944        * XXX: Support multiple listening sockets (e.g. localhost
945        * resolves to AF_INET and AF_INET6, but only the first address
946        * is used
947        */
948       break;
949    }
950    }
951
952    freeaddrinfo(result);
953    if (rp == NULL)
954    {
955       /* All bind()s failed */
956       return(-1);
957    }
958 #endif /* ndef HAVE_RFC2553 */
959
960    while (listen(fd, MAX_LISTEN_BACKLOG) == -1)
961    {
962       if (errno != EINTR)
963       {
964          return(-1);
965       }
966    }
967
968    *pfd = fd;
969    return 0;
970
971 }
972
973
974 /*********************************************************************
975  *
976  * Function    :  get_host_information
977  *
978  * Description :  Determines the IP address the client used to
979  *                reach us and the hostname associated with it.
980  *
981  *                XXX: Most of the code has been copy and pasted
982  *                from accept_connection() and not all of the
983  *                ifdefs paths have been tested afterwards.
984  *
985  * Parameters  :
986  *          1  :  afd = File descriptor returned from accept().
987  *          2  :  ip_address = Pointer to return the pointer to
988  *                             the ip address string.
989  *          3  :  port =       Pointer to return the pointer to
990  *                             the TCP port string.
991  *          4  :  hostname =   Pointer to return the pointer to
992  *                             the hostname or NULL if the caller
993  *                             isn't interested in it.
994  *
995  * Returns     :  void.
996  *
997  *********************************************************************/
998 void get_host_information(jb_socket afd, char **ip_address, char **port,
999                           char **hostname)
1000 {
1001 #ifdef HAVE_RFC2553
1002    struct sockaddr_storage server;
1003    int retval;
1004 #else
1005    struct sockaddr_in server;
1006    struct hostent *host = NULL;
1007 #endif /* HAVE_RFC2553 */
1008 #if defined(_WIN32) || defined(__OS2__) || defined(__APPLE_CC__) || defined(AMIGA)
1009    /* according to accept_connection() this fixes a warning. */
1010    int s_length, s_length_provided;
1011 #else
1012    socklen_t s_length, s_length_provided;
1013 #endif
1014 #ifndef HAVE_RFC2553
1015 #if defined(HAVE_GETHOSTBYADDR_R_8_ARGS) ||  defined(HAVE_GETHOSTBYADDR_R_7_ARGS) || defined(HAVE_GETHOSTBYADDR_R_5_ARGS)
1016    struct hostent result;
1017 #if defined(HAVE_GETHOSTBYADDR_R_5_ARGS)
1018    struct hostent_data hdata;
1019 #else
1020    char hbuf[HOSTENT_BUFFER_SIZE];
1021    int thd_err;
1022 #endif /* def HAVE_GETHOSTBYADDR_R_5_ARGS */
1023 #endif /* def HAVE_GETHOSTBYADDR_R_(8|7|5)_ARGS */
1024 #endif /* ifndef HAVE_RFC2553 */
1025    s_length = s_length_provided = sizeof(server);
1026
1027    if (NULL != hostname)
1028    {
1029       *hostname = NULL;
1030    }
1031    *ip_address = NULL;
1032    *port = NULL;
1033
1034    if (!getsockname(afd, (struct sockaddr *) &server, &s_length))
1035    {
1036       if (s_length > s_length_provided)
1037       {
1038          log_error(LOG_LEVEL_ERROR, "getsockname() truncated server address");
1039          return;
1040       }
1041 /*
1042  * XXX: Workaround for missing header on Windows when
1043  *      configured with --disable-ipv6-support.
1044  *      The proper fix is to not use NI_MAXSERV in
1045  *      that case. It works by accident on other platforms
1046  *      as <netdb.h> in included unconditionally there.
1047  */
1048 #ifndef NI_MAXSERV
1049 #define NI_MAXSERV 32
1050 #endif
1051       *port = malloc(NI_MAXSERV);
1052       if (NULL == *port)
1053       {
1054          log_error(LOG_LEVEL_ERROR,
1055             "Out of memory while getting the client's port.");
1056          return;
1057       }
1058 #ifdef HAVE_RFC2553
1059       *ip_address = malloc(NI_MAXHOST);
1060       if (NULL == *ip_address)
1061       {
1062          log_error(LOG_LEVEL_ERROR,
1063             "Out of memory while getting the client's IP address.");
1064          freez(*port);
1065          return;
1066       }
1067       retval = getnameinfo((struct sockaddr *) &server, s_length,
1068          *ip_address, NI_MAXHOST, *port, NI_MAXSERV,
1069          NI_NUMERICHOST|NI_NUMERICSERV);
1070       if (retval)
1071       {
1072          log_error(LOG_LEVEL_ERROR,
1073             "Unable to print my own IP address: %s", gai_strerror(retval));
1074          freez(*ip_address);
1075          freez(*port);
1076          return;
1077       }
1078 #else
1079       *ip_address = strdup(inet_ntoa(server.sin_addr));
1080       snprintf(*port, NI_MAXSERV, "%hu", ntohs(server.sin_port));
1081 #endif /* HAVE_RFC2553 */
1082       if (NULL == hostname)
1083       {
1084          /*
1085           * We're done here, the caller isn't
1086           * interested in knowing the hostname.
1087           */
1088          return;
1089       }
1090
1091 #ifdef HAVE_RFC2553
1092       *hostname = malloc(NI_MAXHOST);
1093       if (NULL == *hostname)
1094       {
1095          log_error(LOG_LEVEL_ERROR,
1096             "Out of memory while getting the client's hostname.");
1097          return;
1098       }
1099       retval = getnameinfo((struct sockaddr *) &server, s_length,
1100          *hostname, NI_MAXHOST, NULL, 0, NI_NAMEREQD);
1101       if (retval)
1102       {
1103          log_error(LOG_LEVEL_ERROR,
1104             "Unable to resolve my own IP address: %s", gai_strerror(retval));
1105          freez(*hostname);
1106       }
1107 #else
1108 #if defined(HAVE_GETHOSTBYADDR_R_8_ARGS)
1109       gethostbyaddr_r((const char *)&server.sin_addr,
1110                       sizeof(server.sin_addr), AF_INET,
1111                       &result, hbuf, HOSTENT_BUFFER_SIZE,
1112                       &host, &thd_err);
1113 #elif defined(HAVE_GETHOSTBYADDR_R_7_ARGS)
1114       host = gethostbyaddr_r((const char *)&server.sin_addr,
1115                       sizeof(server.sin_addr), AF_INET,
1116                       &result, hbuf, HOSTENT_BUFFER_SIZE, &thd_err);
1117 #elif defined(HAVE_GETHOSTBYADDR_R_5_ARGS)
1118       if (0 == gethostbyaddr_r((const char *)&server.sin_addr,
1119                                sizeof(server.sin_addr), AF_INET,
1120                                &result, &hdata))
1121       {
1122          host = &result;
1123       }
1124       else
1125       {
1126          host = NULL;
1127       }
1128 #elif defined(MUTEX_LOCKS_AVAILABLE)
1129       privoxy_mutex_lock(&resolver_mutex);
1130       host = gethostbyaddr((const char *)&server.sin_addr,
1131                            sizeof(server.sin_addr), AF_INET);
1132       privoxy_mutex_unlock(&resolver_mutex);
1133 #else
1134       host = gethostbyaddr((const char *)&server.sin_addr,
1135                            sizeof(server.sin_addr), AF_INET);
1136 #endif
1137       if (host == NULL)
1138       {
1139          log_error(LOG_LEVEL_ERROR, "Unable to get my own hostname: %E\n");
1140       }
1141       else
1142       {
1143          *hostname = strdup(host->h_name);
1144       }
1145 #endif /* else def HAVE_RFC2553 */
1146    }
1147
1148    return;
1149 }
1150
1151
1152 /*********************************************************************
1153  *
1154  * Function    :  accept_connection
1155  *
1156  * Description :  Accepts a connection on one of possibly multiple
1157  *                sockets. The socket(s) to check must have been
1158  *                created using bind_port().
1159  *
1160  * Parameters  :
1161  *          1  :  csp = Client state, cfd, ip_addr_str, and
1162  *                      ip_addr_long will be set by this routine.
1163  *          2  :  fds = File descriptors returned from bind_port
1164  *
1165  * Returns     :  when a connection is accepted, it returns 1 (TRUE).
1166  *                On an error it returns 0 (FALSE).
1167  *
1168  *********************************************************************/
1169 int accept_connection(struct client_state * csp, jb_socket fds[])
1170 {
1171 #ifdef HAVE_RFC2553
1172    /* XXX: client is stored directly into csp->tcp_addr */
1173 #define client (csp->tcp_addr)
1174 #else
1175    struct sockaddr_in client;
1176 #endif
1177    jb_socket afd;
1178 #if defined(_WIN32) || defined(__OS2__) || defined(__APPLE_CC__) || defined(AMIGA)
1179    /* Wierdness - fix a warning. */
1180    int c_length;
1181 #else
1182    socklen_t c_length;
1183 #endif
1184    int retval;
1185    int i;
1186    int max_selected_socket;
1187    fd_set selected_fds;
1188    jb_socket fd;
1189
1190    c_length = sizeof(client);
1191
1192    /*
1193     * Wait for a connection on any socket.
1194     * Return immediately if no socket is listening.
1195     * XXX: Why not treat this as fatal error?
1196     */
1197    FD_ZERO(&selected_fds);
1198    max_selected_socket = 0;
1199    for (i = 0; i < MAX_LISTENING_SOCKETS; i++)
1200    {
1201       if (JB_INVALID_SOCKET != fds[i])
1202       {
1203          FD_SET(fds[i], &selected_fds);
1204          if (max_selected_socket < fds[i] + 1)
1205          {
1206             max_selected_socket = fds[i] + 1;
1207          }
1208       }
1209    }
1210    if (0 == max_selected_socket)
1211    {
1212       return 0;
1213    }
1214    do
1215    {
1216       retval = select(max_selected_socket, &selected_fds, NULL, NULL, NULL);
1217    } while (retval < 0 && errno == EINTR);
1218    if (retval <= 0)
1219    {
1220       if (0 == retval)
1221       {
1222          log_error(LOG_LEVEL_ERROR,
1223             "Waiting on new client failed because select(2) returned 0."
1224             " This should not happen.");
1225       }
1226       else
1227       {
1228          log_error(LOG_LEVEL_ERROR,
1229             "Waiting on new client failed because of problems in select(2): "
1230             "%s.", strerror(errno));
1231       }
1232       return 0;
1233    }
1234    for (i = 0; i < MAX_LISTENING_SOCKETS && !FD_ISSET(fds[i], &selected_fds);
1235          i++);
1236    if (i >= MAX_LISTENING_SOCKETS)
1237    {
1238       log_error(LOG_LEVEL_ERROR,
1239          "select(2) reported connected clients (number = %u, "
1240          "descriptor boundary = %u), but none found.",
1241          retval, max_selected_socket);
1242       return 0;
1243    }
1244    fd = fds[i];
1245
1246    /* Accept selected connection */
1247 #ifdef _WIN32
1248    afd = accept (fd, (struct sockaddr *) &client, &c_length);
1249    if (afd == JB_INVALID_SOCKET)
1250    {
1251       return 0;
1252    }
1253 #else
1254    do
1255    {
1256 #if defined(FEATURE_ACCEPT_FILTER) && defined(SO_ACCEPTFILTER)
1257       struct accept_filter_arg af_options;
1258       bzero(&af_options, sizeof(af_options));
1259       strlcpy(af_options.af_name, "httpready", sizeof(af_options.af_name));
1260       setsockopt(fd, SOL_SOCKET, SO_ACCEPTFILTER, &af_options, sizeof(af_options));
1261 #endif
1262       afd = accept (fd, (struct sockaddr *) &client, &c_length);
1263    } while (afd < 1 && errno == EINTR);
1264    if (afd < 0)
1265    {
1266       return 0;
1267    }
1268 #endif
1269
1270    csp->cfd = afd;
1271 #ifdef HAVE_RFC2553
1272    csp->ip_addr_str = malloc(NI_MAXHOST);
1273    if (NULL == csp->ip_addr_str)
1274    {
1275       log_error(LOG_LEVEL_ERROR,
1276          "Out of memory while getting the client's IP address.");
1277       return 0;
1278    }
1279    retval = getnameinfo((struct sockaddr *) &client, c_length,
1280          csp->ip_addr_str, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
1281    if (!csp->ip_addr_str || retval)
1282    {
1283       log_error(LOG_LEVEL_ERROR, "Can not save csp->ip_addr_str: %s",
1284          (csp->ip_addr_str) ? gai_strerror(retval) : "Insuffcient memory");
1285       freez(csp->ip_addr_str);
1286    }
1287 #undef client
1288 #else
1289    csp->ip_addr_str  = strdup(inet_ntoa(client.sin_addr));
1290    csp->ip_addr_long = ntohl(client.sin_addr.s_addr);
1291 #endif /* def HAVE_RFC2553 */
1292
1293    return 1;
1294
1295 }
1296
1297
1298 /*********************************************************************
1299  *
1300  * Function    :  resolve_hostname_to_ip
1301  *
1302  * Description :  Resolve a hostname to an internet tcp/ip address.
1303  *                NULL or an empty string resolve to INADDR_ANY.
1304  *
1305  * Parameters  :
1306  *          1  :  host = hostname to resolve
1307  *
1308  * Returns     :  INADDR_NONE => failure, INADDR_ANY or tcp/ip address if successful.
1309  *
1310  *********************************************************************/
1311 unsigned long resolve_hostname_to_ip(const char *host)
1312 {
1313    struct sockaddr_in inaddr;
1314    struct hostent *hostp;
1315 #if defined(HAVE_GETHOSTBYNAME_R_6_ARGS) || defined(HAVE_GETHOSTBYNAME_R_5_ARGS) || defined(HAVE_GETHOSTBYNAME_R_3_ARGS)
1316    struct hostent result;
1317 #if defined(HAVE_GETHOSTBYNAME_R_6_ARGS) || defined(HAVE_GETHOSTBYNAME_R_5_ARGS)
1318    char hbuf[HOSTENT_BUFFER_SIZE];
1319    int thd_err;
1320 #else /* defined(HAVE_GETHOSTBYNAME_R_3_ARGS) */
1321    struct hostent_data hdata;
1322 #endif /* def HAVE_GETHOSTBYNAME_R_(6|5)_ARGS */
1323 #endif /* def HAVE_GETHOSTBYNAME_R_(6|5|3)_ARGS */
1324
1325    if ((host == NULL) || (*host == '\0'))
1326    {
1327       return(INADDR_ANY);
1328    }
1329
1330    memset((char *) &inaddr, 0, sizeof inaddr);
1331
1332    if ((inaddr.sin_addr.s_addr = inet_addr(host)) == -1)
1333    {
1334       unsigned int dns_retries = 0;
1335 #if defined(HAVE_GETHOSTBYNAME_R_6_ARGS)
1336       while (gethostbyname_r(host, &result, hbuf,
1337                 HOSTENT_BUFFER_SIZE, &hostp, &thd_err)
1338              && (thd_err == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
1339       {
1340          log_error(LOG_LEVEL_ERROR,
1341             "Timeout #%u while trying to resolve %s. Trying again.",
1342             dns_retries, host);
1343       }
1344 #elif defined(HAVE_GETHOSTBYNAME_R_5_ARGS)
1345       while (NULL == (hostp = gethostbyname_r(host, &result,
1346                                  hbuf, HOSTENT_BUFFER_SIZE, &thd_err))
1347              && (thd_err == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
1348       {
1349          log_error(LOG_LEVEL_ERROR,
1350             "Timeout #%u while trying to resolve %s. Trying again.",
1351             dns_retries, host);
1352       }
1353 #elif defined(HAVE_GETHOSTBYNAME_R_3_ARGS)
1354       /*
1355        * XXX: Doesn't retry in case of soft errors.
1356        * Does this gethostbyname_r version set h_errno?
1357        */
1358       if (0 == gethostbyname_r(host, &result, &hdata))
1359       {
1360          hostp = &result;
1361       }
1362       else
1363       {
1364          hostp = NULL;
1365       }
1366 #elif defined(MUTEX_LOCKS_AVAILABLE)
1367       privoxy_mutex_lock(&resolver_mutex);
1368       while (NULL == (hostp = gethostbyname(host))
1369              && (h_errno == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
1370       {
1371          log_error(LOG_LEVEL_ERROR,
1372             "Timeout #%u while trying to resolve %s. Trying again.",
1373             dns_retries, host);
1374       }
1375       privoxy_mutex_unlock(&resolver_mutex);
1376 #else
1377       while (NULL == (hostp = gethostbyname(host))
1378              && (h_errno == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
1379       {
1380          log_error(LOG_LEVEL_ERROR,
1381             "Timeout #%u while trying to resolve %s. Trying again.",
1382             dns_retries, host);
1383       }
1384 #endif /* def HAVE_GETHOSTBYNAME_R_(6|5|3)_ARGS */
1385       /*
1386        * On Mac OSX, if a domain exists but doesn't have a type A
1387        * record associated with it, the h_addr member of the struct
1388        * hostent returned by gethostbyname is NULL, even if h_length
1389        * is 4. Therefore the second test below.
1390        */
1391       if (hostp == NULL || hostp->h_addr == NULL)
1392       {
1393          errno = EINVAL;
1394          log_error(LOG_LEVEL_ERROR, "could not resolve hostname %s", host);
1395          return(INADDR_NONE);
1396       }
1397       if (hostp->h_addrtype != AF_INET)
1398       {
1399 #ifdef _WIN32
1400          errno = WSAEPROTOTYPE;
1401 #else
1402          errno = EPROTOTYPE;
1403 #endif
1404          log_error(LOG_LEVEL_ERROR, "hostname %s resolves to unknown address type.", host);
1405          return(INADDR_NONE);
1406       }
1407       memcpy((char *)&inaddr.sin_addr, (char *)hostp->h_addr, sizeof(inaddr.sin_addr));
1408    }
1409    return(inaddr.sin_addr.s_addr);
1410
1411 }
1412
1413
1414 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1415 /*********************************************************************
1416  *
1417  * Function    :  socket_is_still_alive
1418  *
1419  * Description :  Figures out whether or not a socket is still alive.
1420  *
1421  * Parameters  :
1422  *          1  :  sfd = The socket to check.
1423  *
1424  * Returns     :  TRUE for yes, otherwise FALSE.
1425  *
1426  *********************************************************************/
1427 int socket_is_still_alive(jb_socket sfd)
1428 {
1429    char buf[10];
1430    int no_data_waiting;
1431
1432 #ifdef HAVE_POLL
1433    int poll_result;
1434    struct pollfd poll_fd[1];
1435
1436    memset(poll_fd, 0, sizeof(poll_fd));
1437    poll_fd[0].fd = sfd;
1438    poll_fd[0].events = POLLIN;
1439
1440    poll_result = poll(poll_fd, 1, 0);
1441
1442    if (-1 == poll_result)
1443    {
1444       log_error(LOG_LEVEL_CONNECT, "Polling socket %d failed.", sfd);
1445       return FALSE;
1446    }
1447    no_data_waiting = !(poll_fd[0].revents & POLLIN);
1448 #else
1449    fd_set readable_fds;
1450    struct timeval timeout;
1451    int ret;
1452
1453    memset(&timeout, '\0', sizeof(timeout));
1454    FD_ZERO(&readable_fds);
1455    FD_SET(sfd, &readable_fds);
1456
1457    ret = select((int)sfd+1, &readable_fds, NULL, NULL, &timeout);
1458    if (ret < 0)
1459    {
1460       log_error(LOG_LEVEL_CONNECT, "select() on socket %d failed: %E", sfd);
1461       return FALSE;
1462    }
1463    no_data_waiting = !FD_ISSET(sfd, &readable_fds);
1464 #endif /* def HAVE_POLL */
1465
1466    return (no_data_waiting || (1 == recv(sfd, buf, 1, MSG_PEEK)));
1467 }
1468 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
1469
1470
1471 /*
1472   Local Variables:
1473   tab-width: 3
1474   end:
1475 */