Several changes from Debian package 3.0.12 to 3.0.19-1.
[privoxy.git] / jbsockets.c
1 const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.110 2011/11/18 23:53:26 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  *
712  * Function    :  bind_port
713  *
714  * Description :  Call socket, set socket options, and listen.
715  *                Called by listen_loop to "boot up" our proxy address.
716  *
717  * Parameters  :
718  *          1  :  hostnam = TCP/IP address to bind/listen to
719  *          2  :  portnum = port to listen on
720  *          3  :  pfd = pointer used to return file descriptor.
721  *
722  * Returns     :  if success, returns 0 and sets *pfd.
723  *                if failure, returns -3 if address is in use,
724  *                                    -2 if address unresolvable,
725  *                                    -1 otherwise
726  *********************************************************************/
727 int bind_port(const char *hostnam, int portnum, jb_socket *pfd)
728 {
729 #ifdef HAVE_RFC2553
730    struct addrinfo hints;
731    struct addrinfo *result, *rp;
732    /*
733     * XXX: portnum should be a string to allow symbolic service
734     * names in the configuration file and to avoid the following
735     * int2string.
736     */
737    char servnam[6];
738    int retval;
739 #else
740    struct sockaddr_in inaddr;
741 #endif /* def HAVE_RFC2553 */
742    jb_socket fd;
743 #ifndef _WIN32
744    int one = 1;
745 #endif /* ndef _WIN32 */
746
747    *pfd = JB_INVALID_SOCKET;
748
749 #ifdef HAVE_RFC2553
750    retval = snprintf(servnam, sizeof(servnam), "%d", portnum);
751    if ((-1 == retval) || (sizeof(servnam) <= retval))
752    {
753       log_error(LOG_LEVEL_ERROR,
754          "Port number (%d) ASCII decimal representation doesn't fit into 6 bytes",
755          portnum);
756       return -1;
757    }
758
759    memset(&hints, 0, sizeof(struct addrinfo));
760    if (hostnam == NULL)
761    {
762       /*
763        * XXX: This is a hack. The right thing to do
764        * would be to bind to both AF_INET and AF_INET6.
765        * This will also fail if there is no AF_INET
766        * version available.
767        */
768       hints.ai_family = AF_INET;
769    }
770    else
771    {
772       hints.ai_family = AF_UNSPEC;
773    }
774    hints.ai_socktype = SOCK_STREAM;
775    hints.ai_flags = AI_PASSIVE;
776    hints.ai_protocol = 0; /* Really any stream protocol or TCP only */
777    hints.ai_canonname = NULL;
778    hints.ai_addr = NULL;
779    hints.ai_next = NULL;
780
781    if ((retval = getaddrinfo(hostnam, servnam, &hints, &result)))
782    {
783       log_error(LOG_LEVEL_ERROR,
784          "Can not resolve %s: %s", hostnam, gai_strerror(retval));
785       return -2;
786    }
787 #else
788    memset((char *)&inaddr, '\0', sizeof inaddr);
789
790    inaddr.sin_family      = AF_INET;
791    inaddr.sin_addr.s_addr = resolve_hostname_to_ip(hostnam);
792
793    if (inaddr.sin_addr.s_addr == INADDR_NONE)
794    {
795       return(-2);
796    }
797
798 #ifndef _WIN32
799    if (sizeof(inaddr.sin_port) == sizeof(short))
800 #endif /* ndef _WIN32 */
801    {
802       inaddr.sin_port = htons((unsigned short) portnum);
803    }
804 #ifndef _WIN32
805    else
806    {
807       inaddr.sin_port = htonl((unsigned long) portnum);
808    }
809 #endif /* ndef _WIN32 */
810 #endif /* def HAVE_RFC2553 */
811
812 #ifdef HAVE_RFC2553
813    for (rp = result; rp != NULL; rp = rp->ai_next)
814    {
815       fd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
816 #else
817    fd = socket(AF_INET, SOCK_STREAM, 0);
818 #endif /* def HAVE_RFC2553 */
819
820 #ifdef _WIN32
821    if (fd == JB_INVALID_SOCKET)
822 #else
823    if (fd < 0)
824 #endif
825    {
826 #ifdef HAVE_RFC2553
827       continue;
828 #else
829       return(-1);
830 #endif
831    }
832
833 #ifndef _WIN32
834    /*
835     * This is not needed for Win32 - in fact, it stops
836     * duplicate instances of Privoxy from being caught.
837     *
838     * On UNIX, we assume the user is sensible enough not
839     * to start Privoxy multiple times on the same IP.
840     * Without this, stopping and restarting Privoxy
841     * from a script fails.
842     * Note: SO_REUSEADDR is meant to only take over
843     * sockets which are *not* in listen state in Linux,
844     * e.g. sockets in TIME_WAIT. YMMV.
845     */
846    setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *)&one, sizeof(one));
847 #endif /* ndef _WIN32 */
848
849 #ifdef HAVE_RFC2553
850    if (bind(fd, rp->ai_addr, rp->ai_addrlen) < 0)
851 #else
852    if (bind(fd, (struct sockaddr *)&inaddr, sizeof(inaddr)) < 0)
853 #endif
854    {
855 #ifdef _WIN32
856       errno = WSAGetLastError();
857       if (errno == WSAEADDRINUSE)
858 #else
859       if (errno == EADDRINUSE)
860 #endif
861       {
862 #ifdef HAVE_RFC2553
863          freeaddrinfo(result);
864 #endif
865          close_socket(fd);
866          return(-3);
867       }
868       else
869       {
870          close_socket(fd);
871 #ifndef HAVE_RFC2553
872          return(-1);
873       }
874    }
875 #else
876       }
877    }
878    else
879    {
880       /* bind() succeeded, escape from for-loop */
881       /*
882        * XXX: Support multiple listening sockets (e.g. localhost
883        * resolves to AF_INET and AF_INET6, but only the first address
884        * is used
885        */
886       break;
887    }
888    }
889
890    freeaddrinfo(result);
891    if (rp == NULL)
892    {
893       /* All bind()s failed */
894       return(-1);
895    }
896 #endif /* ndef HAVE_RFC2553 */
897
898    while (listen(fd, MAX_LISTEN_BACKLOG) == -1)
899    {
900       if (errno != EINTR)
901       {
902          return(-1);
903       }
904    }
905
906    *pfd = fd;
907    return 0;
908
909 }
910
911
912 /*********************************************************************
913  *
914  * Function    :  get_host_information
915  *
916  * Description :  Determines the IP address the client used to
917  *                reach us and the hostname associated with it.
918  *
919  *                XXX: Most of the code has been copy and pasted
920  *                from accept_connection() and not all of the
921  *                ifdefs paths have been tested afterwards.
922  *
923  * Parameters  :
924  *          1  :  afd = File descriptor returned from accept().
925  *          2  :  ip_address = Pointer to return the pointer to
926  *                             the ip address string.
927  *          3  :  port =       Pointer to return the pointer to
928  *                             the TCP port string.
929  *          4  :  hostname =   Pointer to return the pointer to
930  *                             the hostname or NULL if the caller
931  *                             isn't interested in it.
932  *
933  * Returns     :  void.
934  *
935  *********************************************************************/
936 void get_host_information(jb_socket afd, char **ip_address, char **port,
937                           char **hostname)
938 {
939 #ifdef HAVE_RFC2553
940    struct sockaddr_storage server;
941    int retval;
942 #else
943    struct sockaddr_in server;
944    struct hostent *host = NULL;
945 #endif /* HAVE_RFC2553 */
946 #if defined(_WIN32) || defined(__OS2__) || defined(__APPLE_CC__) || defined(AMIGA)
947    /* according to accept_connection() this fixes a warning. */
948    int s_length, s_length_provided;
949 #else
950    socklen_t s_length, s_length_provided;
951 #endif
952 #ifndef HAVE_RFC2553
953 #if defined(HAVE_GETHOSTBYADDR_R_8_ARGS) ||  defined(HAVE_GETHOSTBYADDR_R_7_ARGS) || defined(HAVE_GETHOSTBYADDR_R_5_ARGS)
954    struct hostent result;
955 #if defined(HAVE_GETHOSTBYADDR_R_5_ARGS)
956    struct hostent_data hdata;
957 #else
958    char hbuf[HOSTENT_BUFFER_SIZE];
959    int thd_err;
960 #endif /* def HAVE_GETHOSTBYADDR_R_5_ARGS */
961 #endif /* def HAVE_GETHOSTBYADDR_R_(8|7|5)_ARGS */
962 #endif /* ifndef HAVE_RFC2553 */
963    s_length = s_length_provided = sizeof(server);
964
965    if (NULL != hostname)
966    {
967       *hostname = NULL;
968    }
969    *ip_address = NULL;
970    *port = NULL;
971
972    if (!getsockname(afd, (struct sockaddr *) &server, &s_length))
973    {
974       if (s_length > s_length_provided)
975       {
976          log_error(LOG_LEVEL_ERROR, "getsockname() truncated server address");
977          return;
978       }
979       *port = malloc(NI_MAXSERV);
980       if (NULL == *port)
981       {
982          log_error(LOG_LEVEL_ERROR,
983             "Out of memory while getting the client's port.");
984          return;
985       }
986 #ifdef HAVE_RFC2553
987       *ip_address = malloc(NI_MAXHOST);
988       if (NULL == *ip_address)
989       {
990          log_error(LOG_LEVEL_ERROR,
991             "Out of memory while getting the client's IP address.");
992          freez(*port);
993          return;
994       }
995       retval = getnameinfo((struct sockaddr *) &server, s_length,
996          *ip_address, NI_MAXHOST, *port, NI_MAXSERV,
997          NI_NUMERICHOST|NI_NUMERICSERV);
998       if (retval)
999       {
1000          log_error(LOG_LEVEL_ERROR,
1001             "Unable to print my own IP address: %s", gai_strerror(retval));
1002          freez(*ip_address);
1003          freez(*port);
1004          return;
1005       }
1006 #else
1007       *ip_address = strdup(inet_ntoa(server.sin_addr));
1008       snprintf(*port, NI_MAXSERV, "%hu", ntohs(server.sin_port));
1009 #endif /* HAVE_RFC2553 */
1010       if (NULL == hostname)
1011       {
1012          /*
1013           * We're done here, the caller isn't
1014           * interested in knowing the hostname.
1015           */
1016          return;
1017       }
1018
1019 #ifdef HAVE_RFC2553
1020       *hostname = malloc(NI_MAXHOST);
1021       if (NULL == *hostname)
1022       {
1023          log_error(LOG_LEVEL_ERROR,
1024             "Out of memory while getting the client's hostname.");
1025          return;
1026       }
1027       retval = getnameinfo((struct sockaddr *) &server, s_length,
1028          *hostname, NI_MAXHOST, NULL, 0, NI_NAMEREQD);
1029       if (retval)
1030       {
1031          log_error(LOG_LEVEL_ERROR,
1032             "Unable to resolve my own IP address: %s", gai_strerror(retval));
1033          freez(*hostname);
1034       }
1035 #else
1036 #if defined(HAVE_GETHOSTBYADDR_R_8_ARGS)
1037       gethostbyaddr_r((const char *)&server.sin_addr,
1038                       sizeof(server.sin_addr), AF_INET,
1039                       &result, hbuf, HOSTENT_BUFFER_SIZE,
1040                       &host, &thd_err);
1041 #elif defined(HAVE_GETHOSTBYADDR_R_7_ARGS)
1042       host = gethostbyaddr_r((const char *)&server.sin_addr,
1043                       sizeof(server.sin_addr), AF_INET,
1044                       &result, hbuf, HOSTENT_BUFFER_SIZE, &thd_err);
1045 #elif defined(HAVE_GETHOSTBYADDR_R_5_ARGS)
1046       if (0 == gethostbyaddr_r((const char *)&server.sin_addr,
1047                                sizeof(server.sin_addr), AF_INET,
1048                                &result, &hdata))
1049       {
1050          host = &result;
1051       }
1052       else
1053       {
1054          host = NULL;
1055       }
1056 #elif defined(MUTEX_LOCKS_AVAILABLE)
1057       privoxy_mutex_lock(&resolver_mutex);
1058       host = gethostbyaddr((const char *)&server.sin_addr,
1059                            sizeof(server.sin_addr), AF_INET);
1060       privoxy_mutex_unlock(&resolver_mutex);
1061 #else
1062       host = gethostbyaddr((const char *)&server.sin_addr,
1063                            sizeof(server.sin_addr), AF_INET);
1064 #endif
1065       if (host == NULL)
1066       {
1067          log_error(LOG_LEVEL_ERROR, "Unable to get my own hostname: %E\n");
1068       }
1069       else
1070       {
1071          *hostname = strdup(host->h_name);
1072       }
1073 #endif /* else def HAVE_RFC2553 */
1074    }
1075
1076    return;
1077 }
1078
1079
1080 /*********************************************************************
1081  *
1082  * Function    :  accept_connection
1083  *
1084  * Description :  Accepts a connection on one of possibly multiple
1085  *                sockets. The socket(s) to check must have been
1086  *                created using bind_port().
1087  *
1088  * Parameters  :
1089  *          1  :  csp = Client state, cfd, ip_addr_str, and
1090  *                      ip_addr_long will be set by this routine.
1091  *          2  :  fds = File descriptors returned from bind_port
1092  *
1093  * Returns     :  when a connection is accepted, it returns 1 (TRUE).
1094  *                On an error it returns 0 (FALSE).
1095  *
1096  *********************************************************************/
1097 int accept_connection(struct client_state * csp, jb_socket fds[])
1098 {
1099 #ifdef HAVE_RFC2553
1100    /* XXX: client is stored directly into csp->tcp_addr */
1101 #define client (csp->tcp_addr)
1102 #else
1103    struct sockaddr_in client;
1104 #endif
1105    jb_socket afd;
1106 #if defined(_WIN32) || defined(__OS2__) || defined(__APPLE_CC__) || defined(AMIGA)
1107    /* Wierdness - fix a warning. */
1108    int c_length;
1109 #else
1110    socklen_t c_length;
1111 #endif
1112    int retval;
1113    int i;
1114    int max_selected_socket;
1115    fd_set selected_fds;
1116    jb_socket fd;
1117
1118    c_length = sizeof(client);
1119
1120    /*
1121     * Wait for a connection on any socket.
1122     * Return immediately if no socket is listening.
1123     * XXX: Why not treat this as fatal error?
1124     */
1125    FD_ZERO(&selected_fds);
1126    max_selected_socket = 0;
1127    for (i = 0; i < MAX_LISTENING_SOCKETS; i++)
1128    {
1129       if (JB_INVALID_SOCKET != fds[i])
1130       {
1131          FD_SET(fds[i], &selected_fds);
1132          if (max_selected_socket < fds[i] + 1)
1133          {
1134             max_selected_socket = fds[i] + 1;
1135          }
1136       }
1137    }
1138    if (0 == max_selected_socket)
1139    {
1140       return 0;
1141    }
1142    do
1143    {
1144       retval = select(max_selected_socket, &selected_fds, NULL, NULL, NULL);
1145    } while (retval < 0 && errno == EINTR);
1146    if (retval <= 0)
1147    {
1148       if (0 == retval)
1149       {
1150          log_error(LOG_LEVEL_ERROR,
1151             "Waiting on new client failed because select(2) returned 0."
1152             " This should not happen.");
1153       }
1154       else
1155       {
1156          log_error(LOG_LEVEL_ERROR,
1157             "Waiting on new client failed because of problems in select(2): "
1158             "%s.", strerror(errno));
1159       }
1160       return 0;
1161    }
1162    for (i = 0; i < MAX_LISTENING_SOCKETS && !FD_ISSET(fds[i], &selected_fds);
1163          i++);
1164    if (i >= MAX_LISTENING_SOCKETS)
1165    {
1166       log_error(LOG_LEVEL_ERROR,
1167          "select(2) reported connected clients (number = %u, "
1168          "descriptor boundary = %u), but none found.",
1169          retval, max_selected_socket);
1170       return 0;
1171    }
1172    fd = fds[i];
1173
1174    /* Accept selected connection */
1175 #ifdef _WIN32
1176    afd = accept (fd, (struct sockaddr *) &client, &c_length);
1177    if (afd == JB_INVALID_SOCKET)
1178    {
1179       return 0;
1180    }
1181 #else
1182    do
1183    {
1184 #if defined(FEATURE_ACCEPT_FILTER) && defined(SO_ACCEPTFILTER)
1185       struct accept_filter_arg af_options;
1186       bzero(&af_options, sizeof(af_options));
1187       strlcpy(af_options.af_name, "httpready", sizeof(af_options.af_name));
1188       setsockopt(fd, SOL_SOCKET, SO_ACCEPTFILTER, &af_options, sizeof(af_options));
1189 #endif
1190       afd = accept (fd, (struct sockaddr *) &client, &c_length);
1191    } while (afd < 1 && errno == EINTR);
1192    if (afd < 0)
1193    {
1194       return 0;
1195    }
1196 #endif
1197
1198    csp->cfd = afd;
1199 #ifdef HAVE_RFC2553
1200    csp->ip_addr_str = malloc(NI_MAXHOST);
1201    if (NULL == csp->ip_addr_str)
1202    {
1203       log_error(LOG_LEVEL_ERROR,
1204          "Out of memory while getting the client's IP address.");
1205       return 0;
1206    }
1207    retval = getnameinfo((struct sockaddr *) &client, c_length,
1208          csp->ip_addr_str, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
1209    if (!csp->ip_addr_str || retval)
1210    {
1211       log_error(LOG_LEVEL_ERROR, "Can not save csp->ip_addr_str: %s",
1212          (csp->ip_addr_str) ? gai_strerror(retval) : "Insuffcient memory");
1213       freez(csp->ip_addr_str);
1214    }
1215 #undef client
1216 #else
1217    csp->ip_addr_str  = strdup(inet_ntoa(client.sin_addr));
1218    csp->ip_addr_long = ntohl(client.sin_addr.s_addr);
1219 #endif /* def HAVE_RFC2553 */
1220
1221    return 1;
1222
1223 }
1224
1225
1226 /*********************************************************************
1227  *
1228  * Function    :  resolve_hostname_to_ip
1229  *
1230  * Description :  Resolve a hostname to an internet tcp/ip address.
1231  *                NULL or an empty string resolve to INADDR_ANY.
1232  *
1233  * Parameters  :
1234  *          1  :  host = hostname to resolve
1235  *
1236  * Returns     :  INADDR_NONE => failure, INADDR_ANY or tcp/ip address if successful.
1237  *
1238  *********************************************************************/
1239 unsigned long resolve_hostname_to_ip(const char *host)
1240 {
1241    struct sockaddr_in inaddr;
1242    struct hostent *hostp;
1243 #if defined(HAVE_GETHOSTBYNAME_R_6_ARGS) || defined(HAVE_GETHOSTBYNAME_R_5_ARGS) || defined(HAVE_GETHOSTBYNAME_R_3_ARGS)
1244    struct hostent result;
1245 #if defined(HAVE_GETHOSTBYNAME_R_6_ARGS) || defined(HAVE_GETHOSTBYNAME_R_5_ARGS)
1246    char hbuf[HOSTENT_BUFFER_SIZE];
1247    int thd_err;
1248 #else /* defined(HAVE_GETHOSTBYNAME_R_3_ARGS) */
1249    struct hostent_data hdata;
1250 #endif /* def HAVE_GETHOSTBYNAME_R_(6|5)_ARGS */
1251 #endif /* def HAVE_GETHOSTBYNAME_R_(6|5|3)_ARGS */
1252
1253    if ((host == NULL) || (*host == '\0'))
1254    {
1255       return(INADDR_ANY);
1256    }
1257
1258    memset((char *) &inaddr, 0, sizeof inaddr);
1259
1260    if ((inaddr.sin_addr.s_addr = inet_addr(host)) == -1)
1261    {
1262       unsigned int dns_retries = 0;
1263 #if defined(HAVE_GETHOSTBYNAME_R_6_ARGS)
1264       while (gethostbyname_r(host, &result, hbuf,
1265                 HOSTENT_BUFFER_SIZE, &hostp, &thd_err)
1266              && (thd_err == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
1267       {
1268          log_error(LOG_LEVEL_ERROR,
1269             "Timeout #%u while trying to resolve %s. Trying again.",
1270             dns_retries, host);
1271       }
1272 #elif defined(HAVE_GETHOSTBYNAME_R_5_ARGS)
1273       while (NULL == (hostp = gethostbyname_r(host, &result,
1274                                  hbuf, HOSTENT_BUFFER_SIZE, &thd_err))
1275              && (thd_err == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
1276       {
1277          log_error(LOG_LEVEL_ERROR,
1278             "Timeout #%u while trying to resolve %s. Trying again.",
1279             dns_retries, host);
1280       }
1281 #elif defined(HAVE_GETHOSTBYNAME_R_3_ARGS)
1282       /*
1283        * XXX: Doesn't retry in case of soft errors.
1284        * Does this gethostbyname_r version set h_errno?
1285        */
1286       if (0 == gethostbyname_r(host, &result, &hdata))
1287       {
1288          hostp = &result;
1289       }
1290       else
1291       {
1292          hostp = NULL;
1293       }
1294 #elif defined(MUTEX_LOCKS_AVAILABLE)
1295       privoxy_mutex_lock(&resolver_mutex);
1296       while (NULL == (hostp = gethostbyname(host))
1297              && (h_errno == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
1298       {
1299          log_error(LOG_LEVEL_ERROR,
1300             "Timeout #%u while trying to resolve %s. Trying again.",
1301             dns_retries, host);
1302       }
1303       privoxy_mutex_unlock(&resolver_mutex);
1304 #else
1305       while (NULL == (hostp = gethostbyname(host))
1306              && (h_errno == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
1307       {
1308          log_error(LOG_LEVEL_ERROR,
1309             "Timeout #%u while trying to resolve %s. Trying again.",
1310             dns_retries, host);
1311       }
1312 #endif /* def HAVE_GETHOSTBYNAME_R_(6|5|3)_ARGS */
1313       /*
1314        * On Mac OSX, if a domain exists but doesn't have a type A
1315        * record associated with it, the h_addr member of the struct
1316        * hostent returned by gethostbyname is NULL, even if h_length
1317        * is 4. Therefore the second test below.
1318        */
1319       if (hostp == NULL || hostp->h_addr == NULL)
1320       {
1321          errno = EINVAL;
1322          log_error(LOG_LEVEL_ERROR, "could not resolve hostname %s", host);
1323          return(INADDR_NONE);
1324       }
1325       if (hostp->h_addrtype != AF_INET)
1326       {
1327 #ifdef _WIN32
1328          errno = WSAEPROTOTYPE;
1329 #else
1330          errno = EPROTOTYPE;
1331 #endif
1332          log_error(LOG_LEVEL_ERROR, "hostname %s resolves to unknown address type.", host);
1333          return(INADDR_NONE);
1334       }
1335       memcpy(
1336          (char *) &inaddr.sin_addr,
1337          (char *) hostp->h_addr,
1338          sizeof(inaddr.sin_addr)
1339       );
1340    }
1341    return(inaddr.sin_addr.s_addr);
1342
1343 }
1344
1345
1346 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1347 /*********************************************************************
1348  *
1349  * Function    :  socket_is_still_alive
1350  *
1351  * Description :  Figures out whether or not a socket is still alive.
1352  *
1353  * Parameters  :
1354  *          1  :  sfd = The socket to check.
1355  *
1356  * Returns     :  TRUE for yes, otherwise FALSE.
1357  *
1358  *********************************************************************/
1359 int socket_is_still_alive(jb_socket sfd)
1360 {
1361    char buf[10];
1362    int no_data_waiting;
1363
1364 #ifdef HAVE_POLL
1365    int poll_result;
1366    struct pollfd poll_fd[1];
1367
1368    memset(poll_fd, 0, sizeof(poll_fd));
1369    poll_fd[0].fd = sfd;
1370    poll_fd[0].events = POLLIN;
1371
1372    poll_result = poll(poll_fd, 1, 0);
1373
1374    if (-1 == poll_result)
1375    {
1376       log_error(LOG_LEVEL_CONNECT, "Polling socket %d failed.", sfd);
1377       return FALSE;
1378    }
1379    no_data_waiting = !(poll_fd[0].revents & POLLIN);
1380 #else
1381    fd_set readable_fds;
1382    struct timeval timeout;
1383    int ret;
1384
1385    memset(&timeout, '\0', sizeof(timeout));
1386    FD_ZERO(&readable_fds);
1387    FD_SET(sfd, &readable_fds);
1388
1389    ret = select((int)sfd+1, &readable_fds, NULL, NULL, &timeout);
1390    if (ret < 0)
1391    {
1392       log_error(LOG_LEVEL_CONNECT, "select() on socket %d failed: %E", sfd);
1393       return FALSE;
1394    }
1395    no_data_waiting = !FD_ISSET(sfd, &readable_fds);
1396 #endif /* def HAVE_POLL */
1397
1398    return (no_data_waiting || (1 == recv(sfd, buf, 1, MSG_PEEK)));
1399 }
1400 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
1401
1402
1403 /*
1404   Local Variables:
1405   tab-width: 3
1406   end:
1407 */