Respect the server's keep-alive value if it's below ours.
[privoxy.git] / jbsockets.c
1 const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.54 2009/04/17 11:45:19 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-2009 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  * Revisions   :
37  *    $Log: jbsockets.c,v $
38  *    Revision 1.54  2009/04/17 11:45:19  fabiankeil
39  *    Replace HAVE_GETADDRINFO and HAVE_GETNAMEINFO macros
40  *    with HAVE_RFC2553 macro. Original patch by Petr Pisar.
41  *
42  *    Revision 1.53  2009/04/17 11:39:52  fabiankeil
43  *    If the hostname is 'localhost' or not specified, request an AF_INET address.
44  *
45  *    Revision 1.52  2009/04/17 11:34:34  fabiankeil
46  *    Style cosmetics for the IPv6 code.
47  *
48  *    Revision 1.51  2009/04/17 11:27:49  fabiankeil
49  *    Petr Pisar's privoxy-3.0.12-ipv6-3.diff.
50  *
51  *    Revision 1.50  2008/12/20 14:53:55  fabiankeil
52  *    Add config option socket-timeout to control the time
53  *    Privoxy waits for data to arrive on a socket. Useful
54  *    in case of stale ssh tunnels or when fuzz-testing.
55  *
56  *    Revision 1.49  2008/11/10 17:03:57  fabiankeil
57  *    Fix a gcc44 warning and remove a now-obsolete cast.
58  *
59  *    Revision 1.48  2008/09/04 08:13:58  fabiankeil
60  *    Prepare for critical sections on Windows by adding a
61  *    layer of indirection before the pthread mutex functions.
62  *
63  *    Revision 1.47  2008/03/26 18:07:07  fabiankeil
64  *    Add hostname directive. Closes PR#1918189.
65  *
66  *    Revision 1.46  2008/03/21 11:13:57  fabiankeil
67  *    Only gather host information if it's actually needed.
68  *    Also move the code out of accept_connection() so it's less likely
69  *    to delay other incoming connections if the host is misconfigured.
70  *
71  *    Revision 1.45  2007/09/30 16:59:22  fabiankeil
72  *    Set the maximum listen() backlog to 128. Apparently SOMAXCONN is
73  *    neither high enough, nor a hard limit on mingw32. Again for BR#1795281.
74  *
75  *    Revision 1.44  2007/09/15 13:01:31  fabiankeil
76  *    Increase listen() backlog to SOMAXCONN (or 128) to decrease
77  *    chances of dropped connections under load. Problem reported
78  *    and fix suggested by nobody in BR#1795281.
79  *
80  *    Revision 1.43  2007/06/01 18:16:36  fabiankeil
81  *    Use the same mutex for gethostbyname() and gethostbyaddr() to prevent
82  *    deadlocks and crashes on OpenBSD and possibly other OS with neither
83  *    gethostbyname_r() nor gethostaddr_r(). Closes BR#1729174.
84  *    Thanks to Ralf Horstmann for report and solution.
85  *
86  *    Revision 1.42  2007/04/01 17:37:07  fabiankeil
87  *    - Add DNS retries for Solaris and other systems
88  *      whose gethostbyname_r version takes five arguments.
89  *    - Move maximum number of DNS retries into a macro.
90  *
91  *    Revision 1.41  2006/11/13 19:05:51  fabiankeil
92  *    Make pthread mutex locking more generic. Instead of
93  *    checking for OSX and OpenBSD, check for FEATURE_PTHREAD
94  *    and use mutex locking unless there is an _r function
95  *    available. Better safe than sorry.
96  *
97  *    Fixes "./configure --disable-pthread" and should result
98  *    in less threading-related problems on pthread-using platforms,
99  *    but it still doesn't fix BR#1122404.
100  *
101  *    Revision 1.40  2006/09/02 15:36:42  fabiankeil
102  *    Follow the OpenBSD port's lead and protect the resolve
103  *    functions on OpenBSD as well.
104  *
105  *    Revision 1.39  2006/08/03 02:46:41  david__schmidt
106  *    Incorporate Fabian Keil's patch work:\rhttp://www.fabiankeil.de/sourcecode/privoxy/
107  *
108  *    Revision 1.38  2006/07/18 14:48:46  david__schmidt
109  *    Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
110  *    with what was really the latest development (the v_3_0_branch branch)
111  *
112  *    Revision 1.35.2.8  2006/01/21 16:16:08  david__schmidt
113  *    Thanks to  Edward Carrel for his patch to modernize OSX's\rpthreads support.  See bug #1409623.
114  *
115  *    Revision 1.35.2.7  2005/05/07 21:50:55  david__schmidt
116  *    A few memory leaks plugged (mostly on error paths)
117  *
118  *    Revision 1.35.2.6  2003/12/17 16:34:40  oes
119  *    Cosmetics
120  *
121  *    Revision 1.35.2.5  2003/04/29 11:32:54  oes
122  *    Don't rely on h_addr being non-NULL after gethostbyname.
123  *    Works around an oddness in Max OSX and closes bug #724796
124  *
125  *    Revision 1.35.2.4  2003/04/04 12:40:20  oes
126  *    Made sure the errno set by bind, not close[socket] is used in
127  *    bind_port. Probably fixes bugs #713777, #705562.
128  *
129  *    Revision 1.35.2.3  2003/03/07 03:41:04  david__schmidt
130  *    Wrapping all *_r functions (the non-_r versions of them) with mutex semaphores for OSX.  Hopefully this will take care of all of those pesky crash reports.
131  *
132  *    Revision 1.35.2.2  2002/11/20 14:37:24  oes
133  *    Fixed Win32 error logging in bind_port.
134  *    Thanks to Oliver Stoeneberg for the hint.
135  *
136  *    Revision 1.35.2.1  2002/05/26 23:41:27  joergs
137  *    AmigaOS: Fixed wrong type of len in write_socket()
138  *
139  *    Revision 1.35  2002/04/26 15:50:04  joergs
140  *    AmigaOS: No socklen_t, added AMIGA to the systems using int instead.
141  *
142  *    Revision 1.34  2002/04/08 20:31:41  swa
143  *    fixed JB spelling
144  *
145  *    Revision 1.33  2002/04/03 16:02:18  gliptak
146  *    Correcting compile warning with older gcc
147  *
148  *    Revision 1.32  2002/03/31 17:18:59  jongfoster
149  *    Win32 only: Enabling STRICT to fix a VC++ compile warning.
150  *
151  *    Revision 1.31  2002/03/29 03:33:13  david__schmidt
152  *    Fix Mac OSX compiler warnings
153  *
154  *    Revision 1.30  2002/03/27 14:32:43  david__schmidt
155  *    More compiler warning message maintenance
156  *
157  *    Revision 1.29  2002/03/26 22:29:54  swa
158  *    we have a new homepage!
159  *
160  *    Revision 1.28  2002/03/24 13:25:43  swa
161  *    name change related issues
162  *
163  *    Revision 1.27  2002/03/13 00:27:05  jongfoster
164  *    Killing warnings
165  *
166  *    Revision 1.26  2002/03/11 22:07:02  david__schmidt
167  *    OS/2 port maintenance:
168  *    - Fixed EMX build - it had decayed a little
169  *    - Fixed inexplicable crash during FD_ZERO - must be due to a bad macro.
170  *      substituted a memset for now.
171  *
172  *    Revision 1.25  2002/03/09 20:03:52  jongfoster
173  *    - Making various functions return int rather than size_t.
174  *      (Undoing a recent change).  Since size_t is unsigned on
175  *      Windows, functions like read_socket that return -1 on
176  *      error cannot return a size_t.
177  *
178  *      THIS WAS A MAJOR BUG - it caused frequent, unpredictable
179  *      crashes, and also frequently caused JB to jump to 100%
180  *      CPU and stay there.  (Because it thought it had just
181  *      read ((unsigned)-1) == 4Gb of data...)
182  *
183  *    - The signature of write_socket has changed, it now simply
184  *      returns success=0/failure=nonzero.
185  *
186  *    - Trying to get rid of a few warnings --with-debug on
187  *      Windows, I've introduced a new type "jb_socket".  This is
188  *      used for the socket file descriptors.  On Windows, this
189  *      is SOCKET (a typedef for unsigned).  Everywhere else, it's
190  *      an int.  The error value can't be -1 any more, so it's
191  *      now JB_INVALID_SOCKET (which is -1 on UNIX, and in
192  *      Windows it maps to the #define INVALID_SOCKET.)
193  *
194  *    - The signature of bind_port has changed.
195  *
196  *    Revision 1.24  2002/03/07 03:51:36  oes
197  *     - Improved handling of failed DNS lookups
198  *     - Fixed compiler warnings etc
199  *
200  *    Revision 1.23  2002/03/05 00:36:01  jongfoster
201  *    Fixing bug 514988 - unable to restart Junkbuster
202  *
203  *    Revision 1.22  2002/03/04 02:08:02  david__schmidt
204  *    Enable web editing of actions file on OS/2 (it had been broken all this time!)
205  *
206  *    Revision 1.21  2002/01/09 14:32:33  oes
207  *    Added support for gethostbyname_r and gethostbyaddr_r.
208  *
209  *    Revision 1.20  2001/11/16 00:48:48  jongfoster
210  *    Enabling duplicate-socket detection for all platforms, not
211  *    just Win32.
212  *
213  *    Revision 1.19  2001/10/25 03:40:47  david__schmidt
214  *    Change in porting tactics: OS/2's EMX porting layer doesn't allow multiple
215  *    threads to call select() simultaneously.  So, it's time to do a real, live,
216  *    native OS/2 port.  See defines for __EMX__ (the porting layer) vs. __OS2__
217  *    (native). Both versions will work, but using __OS2__ offers multi-threading.
218  *
219  *    Revision 1.18  2001/09/21 23:02:02  david__schmidt
220  *    Cleaning up 2 compiler warnings on OS/2.
221  *
222  *    Revision 1.17  2001/09/13 20:11:46  jongfoster
223  *    Fixing 2 compiler warnings under Win32
224  *
225  *    Revision 1.16  2001/07/30 22:08:36  jongfoster
226  *    Tidying up #defines:
227  *    - All feature #defines are now of the form FEATURE_xxx
228  *    - Permanently turned off WIN_GUI_EDIT
229  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
230  *
231  *    Revision 1.15  2001/07/29 17:40:43  jongfoster
232  *    Fixed compiler warning by adding a cast
233  *
234  *    Revision 1.14  2001/07/18 13:47:59  oes
235  *    Eliminated dirty hack for getsockbyname()
236  *
237  *    Revision 1.13  2001/07/15 13:56:57  jongfoster
238  *    Removing unused local variable.
239  *
240  *    Revision 1.12  2001/07/01 17:04:11  oes
241  *    Bugfix: accept_connection no longer uses the obsolete hstrerror() function
242  *
243  *    Revision 1.11  2001/06/29 21:45:41  oes
244  *    Indentation, CRLF->LF, Tab-> Space
245  *
246  *    Revision 1.10  2001/06/29 13:29:15  oes
247  *    - Added remote (server) host IP to csp->http->host_ip_addr_str
248  *    - Added detection of local socket IP and fqdn
249  *    - Removed logentry from cancelled commit
250  *
251  *    Revision 1.9  2001/06/07 23:06:09  jongfoster
252  *    The host parameter to connect_to() is now const.
253  *
254  *    Revision 1.8  2001/06/03 19:12:07  oes
255  *    filled comment
256  *
257  *    Revision 1.7  2001/05/28 16:14:00  jongfoster
258  *    Fixing bug in LOG_LEVEL_LOG
259  *
260  *    Revision 1.6  2001/05/26 17:28:32  jongfoster
261  *    Fixed LOG_LEVEL_LOG
262  *
263  *    Revision 1.5  2001/05/26 15:26:15  jongfoster
264  *    ACL feature now provides more security by immediately dropping
265  *    connections from untrusted hosts.
266  *
267  *    Revision 1.4  2001/05/26 00:37:42  jongfoster
268  *    Cosmetic indentation correction.
269  *
270  *    Revision 1.3  2001/05/25 21:57:54  jongfoster
271  *    Now gives a warning under Windows if you try to bind
272  *    it to a port that's already in use.
273  *
274  *    Revision 1.2  2001/05/17 23:01:01  oes
275  *     - Cleaned CRLF's from the sources and related files
276  *
277  *    Revision 1.1.1.1  2001/05/15 13:58:54  oes
278  *    Initial import of version 2.9.3 source tree
279  *
280  *
281  *********************************************************************/
282 \f
283
284 #include "config.h"
285
286 #include <stdlib.h>
287 #include <stdio.h>
288 #include <string.h>
289 #include <errno.h>
290 #include <fcntl.h>
291 #include <sys/types.h>
292
293 #ifdef _WIN32
294
295 #ifndef STRICT
296 #define STRICT
297 #endif
298 #include <windows.h>
299 #include <sys/timeb.h>
300 #include <io.h>
301
302 #else
303
304 #ifndef __OS2__
305 #include <unistd.h>
306 #endif
307 #include <sys/time.h>
308 #include <netinet/in.h>
309 #include <sys/ioctl.h>
310 #include <netdb.h>
311 #include <sys/socket.h>
312
313 #ifndef __BEOS__
314 #include <netinet/tcp.h>
315 #ifndef __OS2__
316 #include <arpa/inet.h>
317 #endif
318 #else
319 #include <socket.h>
320 #endif
321
322 #if defined(__EMX__) || defined (__OS2__)
323 #include <sys/select.h>  /* OS/2/EMX needs a little help with select */
324 #ifdef __OS2__
325 #include <nerrno.h>
326 #endif
327 #endif
328
329 #endif
330
331 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
332 #ifdef HAVE_POLL
333 #ifdef __GLIBC__
334 #include <sys/poll.h>
335 #else
336 #include <poll.h>
337 #endif /* def __GLIBC__ */
338 #endif /* HAVE_POLL */
339 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
340
341 #include "project.h"
342
343 #ifdef FEATURE_PTHREAD
344 #include "jcc.h"
345 /* jcc.h is for mutex semaphores only */
346 #endif /* def FEATURE_PTHREAD */
347
348 #include "jbsockets.h"
349 #include "filters.h"
350 #include "errlog.h"
351 #include "miscutil.h"
352
353 const char jbsockets_h_rcs[] = JBSOCKETS_H_VERSION;
354
355 /*
356  * Maximum number of gethostbyname(_r) retries in case of
357  * soft errors (TRY_AGAIN).
358  * XXX: Does it make sense to make this a config option?
359  */
360 #define MAX_DNS_RETRIES 10
361
362 #define MAX_LISTEN_BACKLOG 128
363
364
365 /*********************************************************************
366  *
367  * Function    :  connect_to
368  *
369  * Description :  Open a socket and connect to it.  Will check
370  *                that this is allowed according to ACL.
371  *
372  * Parameters  :
373  *          1  :  host = hostname to connect to
374  *          2  :  portnum = port to connent on (XXX: should be unsigned)
375  *          3  :  csp = Current client state (buffers, headers, etc...)
376  *                      Not modified, only used for source IP and ACL.
377  *
378  * Returns     :  JB_INVALID_SOCKET => failure, else it is the socket
379  *                file descriptor.
380  *
381  *********************************************************************/
382 #ifdef HAVE_RFC2553
383 /* Getaddrinfo implementation */
384 jb_socket connect_to(const char *host, int portnum, struct client_state *csp)
385 {
386    struct addrinfo hints, *result, *rp;
387    char service[6];
388    int retval;
389    jb_socket fd;
390    fd_set wfds;
391    struct timeval tv[1];
392 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA)
393    int   flags;
394 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) */
395    int connect_failed;
396
397 #ifdef FEATURE_ACL
398    struct access_control_addr dst[1];
399 #endif /* def FEATURE_ACL */
400
401    retval = snprintf(service, sizeof(service), "%d", portnum);
402    if ((-1 == retval) || (sizeof(service) <= retval))
403    {
404       log_error(LOG_LEVEL_ERROR,
405          "Port number (%d) ASCII decimal representation doesn't fit into 6 bytes",
406          portnum);
407       csp->http->host_ip_addr_str = strdup("unknown");
408       return(JB_INVALID_SOCKET);
409    }
410
411    memset((char *)&hints, 0, sizeof(hints));
412    hints.ai_family = AF_UNSPEC;
413    hints.ai_socktype = SOCK_STREAM;
414    hints.ai_flags = AI_ADDRCONFIG | AI_NUMERICSERV; /* avoid service look-up */
415    if ((retval = getaddrinfo(host, service, &hints, &result)))
416    {
417       log_error(LOG_LEVEL_INFO,
418          "Can not resolve %s: %s", host, gai_strerror(retval));
419       csp->http->host_ip_addr_str = strdup("unknown");
420       return(JB_INVALID_SOCKET);
421    }
422
423    for (rp = result; rp != NULL; rp = rp->ai_next)
424    {
425
426 #ifdef FEATURE_ACL
427       memcpy(&dst->addr, rp->ai_addr, rp->ai_addrlen);
428
429       if (block_acl(dst, csp))
430       {
431 #ifdef __OS2__
432          errno = SOCEPERM;
433 #else
434          errno = EPERM;
435 #endif
436          continue;
437       }
438 #endif /* def FEATURE_ACL */
439
440       csp->http->host_ip_addr_str = malloc(NI_MAXHOST);
441       retval = getnameinfo(rp->ai_addr, rp->ai_addrlen,
442          csp->http->host_ip_addr_str, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
443       if (!csp->http->host_ip_addr_str || retval)
444       {
445          log_error(LOG_LEVEL_ERROR,
446             "Can not save csp->http->host_ip_addr_str: %s",
447             (csp->http->host_ip_addr_str) ?
448             gai_strerror(retval) : "Insufficient memory");
449          freez(csp->http->host_ip_addr_str);
450          continue;
451       }
452
453 #ifdef _WIN32
454       if ((fd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol)) ==
455             JB_INVALID_SOCKET)
456 #else
457       if ((fd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol)) < 0)
458 #endif
459       {
460          continue;
461       }
462
463 #ifdef TCP_NODELAY
464       {  /* turn off TCP coalescence */
465          int mi = 1;
466          setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *) &mi, sizeof (int));
467       }
468 #endif /* def TCP_NODELAY */
469
470 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
471       if ((flags = fcntl(fd, F_GETFL, 0)) != -1)
472       {
473          flags |= O_NDELAY;
474          fcntl(fd, F_SETFL, flags);
475       }
476 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__) */
477
478       connect_failed = 0;
479       while (connect(fd, rp->ai_addr, rp->ai_addrlen) == JB_INVALID_SOCKET)
480       {
481 #ifdef _WIN32
482          if (errno == WSAEINPROGRESS)
483 #elif __OS2__
484          if (sock_errno() == EINPROGRESS)
485 #else /* ifndef _WIN32 */
486          if (errno == EINPROGRESS)
487 #endif /* ndef _WIN32 || __OS2__ */
488          {
489             break;
490          }
491
492 #ifdef __OS2__
493          if (sock_errno() != EINTR)
494 #else
495          if (errno != EINTR)
496 #endif /* __OS2__ */
497          {
498             close_socket(fd);
499             connect_failed = 1;
500             break;
501          }
502       }
503       if (connect_failed)
504       {
505          continue;
506       }
507
508 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
509       if (flags != -1)
510       {
511          flags &= ~O_NDELAY;
512          fcntl(fd, F_SETFL, flags);
513       }
514 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__) */
515
516       /* wait for connection to complete */
517       FD_ZERO(&wfds);
518       FD_SET(fd, &wfds);
519
520       tv->tv_sec  = 30;
521       tv->tv_usec = 0;
522
523       /* MS Windows uses int, not SOCKET, for the 1st arg of select(). Wierd! */
524       if (select((int)fd + 1, NULL, &wfds, NULL, tv) <= 0)
525       {
526          close_socket(fd);
527          continue;
528       }
529
530       break; /* for; Connection established; don't try other addresses */
531    }
532
533    freeaddrinfo(result);
534    if (!rp)
535    {
536       log_error(LOG_LEVEL_INFO,
537          "Could not connect to TCP/[%s]:%s", host, service);
538       return(JB_INVALID_SOCKET);
539    }
540    /*
541     * XXX: Current connection verification (EINPROGRESS && select()
542     * for writing) is not sufficient. E.g. on Linux-2.6.27 with glibc-2.6
543     * select returns socket ready for writing, however subsequential
544     * write(2) fails with ENOCONNECT. Read Linux connect(2) man page
545     * about non-blocking sockets.
546     * Thus we can't log here that the socket is connected.
547     */
548    /* log_error(LOG_LEVEL_INFO, "Connected to TCP/[%s]:%s", host, service); */
549
550    return(fd);
551
552 }
553
554 #else /* ndef HAVE_RFC2553 */
555 /* Pre-getaddrinfo implementation */
556
557 jb_socket connect_to(const char *host, int portnum, struct client_state *csp)
558 {
559    struct sockaddr_in inaddr;
560    jb_socket fd;
561    unsigned int addr;
562    fd_set wfds;
563    struct timeval tv[1];
564 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA)
565    int   flags;
566 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) */
567
568 #ifdef FEATURE_ACL
569    struct access_control_addr dst[1];
570 #endif /* def FEATURE_ACL */
571
572    memset((char *)&inaddr, 0, sizeof inaddr);
573
574    if ((addr = resolve_hostname_to_ip(host)) == INADDR_NONE)
575    {
576       csp->http->host_ip_addr_str = strdup("unknown");
577       return(JB_INVALID_SOCKET);
578    }
579
580 #ifdef FEATURE_ACL
581    dst->addr = ntohl(addr);
582    dst->port = portnum;
583
584    if (block_acl(dst, csp))
585    {
586 #ifdef __OS2__
587       errno = SOCEPERM;
588 #else
589       errno = EPERM;
590 #endif
591       return(JB_INVALID_SOCKET);
592    }
593 #endif /* def FEATURE_ACL */
594
595    inaddr.sin_addr.s_addr = addr;
596    inaddr.sin_family      = AF_INET;
597    csp->http->host_ip_addr_str = strdup(inet_ntoa(inaddr.sin_addr));
598
599 #ifndef _WIN32
600    if (sizeof(inaddr.sin_port) == sizeof(short))
601 #endif /* ndef _WIN32 */
602    {
603       inaddr.sin_port = htons((unsigned short) portnum);
604    }
605 #ifndef _WIN32
606    else
607    {
608       inaddr.sin_port = htonl((unsigned long)portnum);
609    }
610 #endif /* ndef _WIN32 */
611
612 #ifdef _WIN32
613    if ((fd = socket(inaddr.sin_family, SOCK_STREAM, 0)) == JB_INVALID_SOCKET)
614 #else
615    if ((fd = socket(inaddr.sin_family, SOCK_STREAM, 0)) < 0)
616 #endif
617    {
618       return(JB_INVALID_SOCKET);
619    }
620
621 #ifdef TCP_NODELAY
622    {  /* turn off TCP coalescence */
623       int mi = 1;
624       setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *) &mi, sizeof (int));
625    }
626 #endif /* def TCP_NODELAY */
627
628 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
629    if ((flags = fcntl(fd, F_GETFL, 0)) != -1)
630    {
631       flags |= O_NDELAY;
632       fcntl(fd, F_SETFL, flags);
633    }
634 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__) */
635
636    while (connect(fd, (struct sockaddr *) & inaddr, sizeof inaddr) == JB_INVALID_SOCKET)
637    {
638 #ifdef _WIN32
639       if (errno == WSAEINPROGRESS)
640 #elif __OS2__ 
641       if (sock_errno() == EINPROGRESS)
642 #else /* ifndef _WIN32 */
643       if (errno == EINPROGRESS)
644 #endif /* ndef _WIN32 || __OS2__ */
645       {
646          break;
647       }
648
649 #ifdef __OS2__ 
650       if (sock_errno() != EINTR)
651 #else
652       if (errno != EINTR)
653 #endif /* __OS2__ */
654       {
655          close_socket(fd);
656          return(JB_INVALID_SOCKET);
657       }
658    }
659
660 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
661    if (flags != -1)
662    {
663       flags &= ~O_NDELAY;
664       fcntl(fd, F_SETFL, flags);
665    }
666 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__) */
667
668    /* wait for connection to complete */
669    FD_ZERO(&wfds);
670    FD_SET(fd, &wfds);
671
672    tv->tv_sec  = 30;
673    tv->tv_usec = 0;
674
675    /* MS Windows uses int, not SOCKET, for the 1st arg of select(). Wierd! */
676    if (select((int)fd + 1, NULL, &wfds, NULL, tv) <= 0)
677    {
678       close_socket(fd);
679       return(JB_INVALID_SOCKET);
680    }
681    return(fd);
682
683 }
684 #endif /* ndef HAVE_RFC2553 */
685
686
687 /*********************************************************************
688  *
689  * Function    :  write_socket
690  *
691  * Description :  Write the contents of buf (for n bytes) to socket fd.
692  *
693  * Parameters  :
694  *          1  :  fd = file descriptor (aka. handle) of socket to write to.
695  *          2  :  buf = pointer to data to be written.
696  *          3  :  len = length of data to be written to the socket "fd".
697  *
698  * Returns     :  0 on success (entire buffer sent).
699  *                nonzero on error.
700  *
701  *********************************************************************/
702 #ifdef AMIGA
703 int write_socket(jb_socket fd, const char *buf, ssize_t len)
704 #else
705 int write_socket(jb_socket fd, const char *buf, size_t len)
706 #endif
707 {
708    if (len == 0)
709    {
710       return 0;
711    }
712
713    if (len < 0) /* constant condition - size_t isn't ever negative */ 
714    {
715       return 1;
716    }
717
718    log_error(LOG_LEVEL_LOG, "%N", len, buf);
719
720 #if defined(_WIN32)
721    return (send(fd, buf, (int)len, 0) != (int)len);
722 #elif defined(__BEOS__) || defined(AMIGA)
723    return (send(fd, buf, len, 0) != len);
724 #elif defined(__OS2__)
725    /*
726     * Break the data up into SOCKET_SEND_MAX chunks for sending...
727     * OS/2 seemed to complain when the chunks were too large.
728     */
729 #define SOCKET_SEND_MAX 65000
730    {
731       int write_len = 0, send_len, send_rc = 0, i = 0;
732       while ((i < len) && (send_rc != -1))
733       {
734          if ((i + SOCKET_SEND_MAX) > len)
735             send_len = len - i;
736          else
737             send_len = SOCKET_SEND_MAX;
738          send_rc = send(fd,(char*)buf + i, send_len, 0);
739          if (send_rc == -1)
740             return 1;
741          i = i + send_len;
742       }
743       return 0;
744    }
745 #else
746    return (write(fd, buf, len) != len);
747 #endif
748
749 }
750
751
752 /*********************************************************************
753  *
754  * Function    :  read_socket
755  *
756  * Description :  Read from a TCP/IP socket in a platform independent way.
757  *
758  * Parameters  :
759  *          1  :  fd = file descriptor of the socket to read
760  *          2  :  buf = pointer to buffer where data will be written
761  *                Must be >= len bytes long.
762  *          3  :  len = maximum number of bytes to read
763  *
764  * Returns     :  On success, the number of bytes read is returned (zero
765  *                indicates end of file), and the file position is advanced
766  *                by this number.  It is not an error if this number is
767  *                smaller than the number of bytes requested; this may hap-
768  *                pen for example because fewer bytes are actually available
769  *                right now (maybe because we were close to end-of-file, or
770  *                because we are reading from a pipe, or from a terminal,
771  *                or because read() was interrupted by a signal).  On error,
772  *                -1 is returned, and errno is set appropriately.  In this
773  *                case it is left unspecified whether the file position (if
774  *                any) changes.
775  *
776  *********************************************************************/
777 int read_socket(jb_socket fd, char *buf, int len)
778 {
779    if (len <= 0)
780    {
781       return(0);
782    }
783
784 #if defined(_WIN32)
785    return(recv(fd, buf, len, 0));
786 #elif defined(__BEOS__) || defined(AMIGA) || defined(__OS2__)
787    return(recv(fd, buf, (size_t)len, 0));
788 #else
789    return(read(fd, buf, (size_t)len));
790 #endif
791 }
792
793
794 /*********************************************************************
795  *
796  * Function    :  data_is_available
797  *
798  * Description :  Waits for data to arrive on a socket.
799  *
800  * Parameters  :
801  *          1  :  fd = file descriptor of the socket to read
802  *          2  :  seconds_to_wait = number of seconds after which we give up.
803  *
804  * Returns     :  TRUE if data arrived in time,
805  *                FALSE otherwise.
806  *
807  *********************************************************************/
808 int data_is_available(jb_socket fd, int seconds_to_wait)
809 {
810    fd_set rfds;
811    struct timeval timeout;
812    int n;
813
814    memset(&timeout, 0, sizeof(timeout));
815    timeout.tv_sec = seconds_to_wait;
816
817 #ifdef __OS2__
818    /* Copy and pasted from jcc.c ... */
819    memset(&rfds, 0, sizeof(fd_set));
820 #else
821    FD_ZERO(&rfds);
822 #endif
823    FD_SET(fd, &rfds);
824
825    n = select(fd+1, &rfds, NULL, NULL, &timeout);
826
827    /*
828     * XXX: Do we care about the different error conditions?
829     */
830    return (n == 1);
831 }
832
833
834 /*********************************************************************
835  *
836  * Function    :  close_socket
837  *
838  * Description :  Closes a TCP/IP socket
839  *
840  * Parameters  :
841  *          1  :  fd = file descriptor of socket to be closed
842  *
843  * Returns     :  void
844  *
845  *********************************************************************/
846 void close_socket(jb_socket fd)
847 {
848 #if defined(_WIN32) || defined(__BEOS__)
849    closesocket(fd);
850 #elif defined(AMIGA)
851    CloseSocket(fd); 
852 #elif defined(__OS2__)
853    soclose(fd);
854 #else
855    close(fd);
856 #endif
857
858 }
859
860
861 /*********************************************************************
862  *
863  * Function    :  bind_port
864  *
865  * Description :  Call socket, set socket options, and listen.
866  *                Called by listen_loop to "boot up" our proxy address.
867  *
868  * Parameters  :
869  *          1  :  hostnam = TCP/IP address to bind/listen to
870  *          2  :  portnum = port to listen on
871  *          3  :  pfd = pointer used to return file descriptor.
872  *
873  * Returns     :  if success, returns 0 and sets *pfd.
874  *                if failure, returns -3 if address is in use,
875  *                                    -2 if address unresolvable,
876  *                                    -1 otherwise
877  *********************************************************************/
878 int bind_port(const char *hostnam, int portnum, jb_socket *pfd)
879 {
880 #ifdef HAVE_RFC2553
881    struct addrinfo hints;
882    struct addrinfo *result, *rp;
883    /*
884     * XXX: portnum should be a string to allow symbolic service
885     * names in the configuration file and to avoid the following
886     * int2string.
887     */
888    char servnam[6];
889    int retval;
890 #else
891    struct sockaddr_in inaddr;
892 #endif /* def HAVE_RFC2553 */
893    jb_socket fd;
894 #ifndef _WIN32
895    int one = 1;
896 #endif /* ndef _WIN32 */
897
898    *pfd = JB_INVALID_SOCKET;
899
900 #ifdef HAVE_RFC2553
901    retval = snprintf(servnam, sizeof(servnam), "%d", portnum);
902    if ((-1 == retval) || (sizeof(servnam) <= retval))
903    {
904       log_error(LOG_LEVEL_ERROR,
905          "Port number (%d) ASCII decimal representation doesn't fit into 6 bytes",
906          portnum);
907       return -1;
908    }
909
910    memset(&hints, 0, sizeof(struct addrinfo));
911    if ((hostnam == NULL) || !strcmpic(hostnam, "localhost"))
912    {
913       /*
914        * XXX: This is a hack. The right thing to do
915        * would be to bind to both AF_INET and AF_INET6.
916        * This will also fail if there is no AF_INET
917        * version available.
918        */
919       hints.ai_family = AF_INET;
920    }
921    else
922    {
923       hints.ai_family = AF_UNSPEC;
924    }
925    hints.ai_socktype = SOCK_STREAM;
926    hints.ai_flags = AI_PASSIVE | AI_ADDRCONFIG;
927    hints.ai_protocol = 0; /* Realy any stream protocol or TCP only */
928    hints.ai_canonname = NULL;
929    hints.ai_addr = NULL;
930    hints.ai_next = NULL;
931
932    if ((retval = getaddrinfo(hostnam, servnam, &hints, &result)))
933    {
934       log_error(LOG_LEVEL_ERROR,
935          "Can not resolve %s: %s", hostnam, gai_strerror(retval));
936       return -2;
937    }
938 #else
939    memset((char *)&inaddr, '\0', sizeof inaddr);
940
941    inaddr.sin_family      = AF_INET;
942    inaddr.sin_addr.s_addr = resolve_hostname_to_ip(hostnam);
943
944    if (inaddr.sin_addr.s_addr == INADDR_NONE)
945    {
946       return(-2);
947    }
948
949 #ifndef _WIN32
950    if (sizeof(inaddr.sin_port) == sizeof(short))
951 #endif /* ndef _WIN32 */
952    {
953       inaddr.sin_port = htons((unsigned short) portnum);
954    }
955 #ifndef _WIN32
956    else
957    {
958       inaddr.sin_port = htonl((unsigned long) portnum);
959    }
960 #endif /* ndef _WIN32 */
961 #endif /* def HAVE_RFC2553 */
962
963 #ifdef HAVE_RFC2553
964    for (rp = result; rp != NULL; rp = rp->ai_next)
965    {
966       fd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
967 #else
968    fd = socket(AF_INET, SOCK_STREAM, 0);
969 #endif /* def HAVE_RFC2553 */
970
971 #ifdef _WIN32
972    if (fd == JB_INVALID_SOCKET)
973 #else
974    if (fd < 0)
975 #endif
976    {
977 #ifdef HAVE_RFC2553
978       continue;
979 #else
980       return(-1);
981 #endif
982    }
983
984 #ifndef _WIN32
985    /*
986     * This is not needed for Win32 - in fact, it stops
987     * duplicate instances of Privoxy from being caught.
988     *
989     * On UNIX, we assume the user is sensible enough not
990     * to start Privoxy multiple times on the same IP.
991     * Without this, stopping and restarting Privoxy
992     * from a script fails.
993     * Note: SO_REUSEADDR is meant to only take over
994     * sockets which are *not* in listen state in Linux,
995     * e.g. sockets in TIME_WAIT. YMMV.
996     */
997    setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *)&one, sizeof(one));
998 #endif /* ndef _WIN32 */
999
1000 #ifdef HAVE_RFC2553
1001    if (bind(fd, rp->ai_addr, rp->ai_addrlen) < 0)
1002 #else
1003    if (bind(fd, (struct sockaddr *)&inaddr, sizeof(inaddr)) < 0)
1004 #endif
1005    {
1006 #ifdef _WIN32
1007       errno = WSAGetLastError();
1008       if (errno == WSAEADDRINUSE)
1009 #else
1010       if (errno == EADDRINUSE)
1011 #endif
1012       {
1013 #ifdef HAVE_RFC2553
1014          freeaddrinfo(result);
1015 #endif
1016          close_socket(fd);
1017          return(-3);
1018       }
1019       else
1020       {
1021          close_socket(fd);
1022 #ifndef HAVE_RFC2553
1023          return(-1);
1024       }
1025    }
1026 #else
1027       }
1028    }
1029    else
1030    {
1031       /* bind() succeeded, escape from for-loop */
1032       /*
1033        * XXX: Support multiple listening sockets (e.g. localhost
1034        * resolves to AF_INET and AF_INET6, but only the first address
1035        * is used
1036        */
1037       break;
1038    }
1039    }
1040
1041    freeaddrinfo(result);
1042    if (rp == NULL)
1043    {
1044       /* All bind()s failed */
1045       return(-1);
1046    }
1047 #endif /* ndef HAVE_RFC2553 */
1048
1049    while (listen(fd, MAX_LISTEN_BACKLOG) == -1)
1050    {
1051       if (errno != EINTR)
1052       {
1053          return(-1);
1054       }
1055    }
1056
1057    *pfd = fd;
1058    return 0;
1059
1060 }
1061
1062
1063 /*********************************************************************
1064  *
1065  * Function    :  get_host_information
1066  *
1067  * Description :  Determines the IP address the client used to
1068  *                reach us and the hostname associated with it.
1069  *
1070  *                XXX: Most of the code has been copy and pasted
1071  *                from accept_connection() and not all of the
1072  *                ifdefs paths have been tested afterwards.
1073  *
1074  * Parameters  :
1075  *          1  :  afd = File descriptor returned from accept().
1076  *          2  :  ip_address = Pointer to return the pointer to
1077  *                             the ip address string.
1078  *          3  :  hostname =   Pointer to return the pointer to
1079  *                             the hostname or NULL if the caller
1080  *                             isn't interested in it.
1081  *
1082  * Returns     :  void.
1083  *
1084  *********************************************************************/
1085 void get_host_information(jb_socket afd, char **ip_address, char **hostname)
1086 {
1087 #ifdef HAVE_RFC2553
1088    struct sockaddr_storage server;
1089    int retval;
1090 #else
1091    struct sockaddr_in server;
1092    struct hostent *host = NULL;
1093 #endif /* HAVE_RFC2553 */
1094 #if defined(_WIN32) || defined(__OS2__) || defined(__APPLE_CC__) || defined(AMIGA)
1095    /* according to accept_connection() this fixes a warning. */
1096    int s_length, s_length_provided;
1097 #else
1098    socklen_t s_length, s_length_provided;
1099 #endif
1100 #ifndef HAVE_RFC2553
1101 #if defined(HAVE_GETHOSTBYADDR_R_8_ARGS) ||  defined(HAVE_GETHOSTBYADDR_R_7_ARGS) || defined(HAVE_GETHOSTBYADDR_R_5_ARGS)
1102    struct hostent result;
1103 #if defined(HAVE_GETHOSTBYADDR_R_5_ARGS)
1104    struct hostent_data hdata;
1105 #else
1106    char hbuf[HOSTENT_BUFFER_SIZE];
1107    int thd_err;
1108 #endif /* def HAVE_GETHOSTBYADDR_R_5_ARGS */
1109 #endif /* def HAVE_GETHOSTBYADDR_R_(8|7|5)_ARGS */
1110 #endif /* ifndef HAVE_RFC2553 */
1111    s_length = s_length_provided = sizeof(server);
1112
1113    if (NULL != hostname)
1114    {
1115       *hostname = NULL;
1116    }
1117    *ip_address = NULL;
1118
1119    if (!getsockname(afd, (struct sockaddr *) &server, &s_length))
1120    {
1121       if (s_length > s_length_provided)
1122       {
1123          log_error(LOG_LEVEL_ERROR, "getsockname() truncated server address");
1124          return;
1125       }
1126 #ifdef HAVE_RFC2553
1127       *ip_address = malloc(NI_MAXHOST);
1128       retval = getnameinfo((struct sockaddr *) &server, s_length,
1129          *ip_address, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
1130       if (retval)
1131       {
1132          log_error(LOG_LEVEL_ERROR,
1133             "Unable to print my own IP address: %s", gai_strerror(retval));
1134          freez(*ip_address);
1135          return;
1136       }
1137 #else
1138       *ip_address = strdup(inet_ntoa(server.sin_addr));
1139 #endif /* HAVE_RFC2553 */
1140       if (NULL == hostname)
1141       {
1142          /*
1143           * We're done here, the caller isn't
1144           * interested in knowing the hostname.
1145           */
1146          return;
1147       }
1148
1149 #ifdef HAVE_RFC2553
1150       *hostname = malloc(NI_MAXHOST);
1151       retval = getnameinfo((struct sockaddr *) &server, s_length,
1152          *hostname, NI_MAXHOST, NULL, 0, NI_NAMEREQD);
1153       if (retval)
1154       {
1155          log_error(LOG_LEVEL_ERROR,
1156             "Unable to resolve my own IP address: %s", gai_strerror(retval));
1157          freez(*hostname);
1158       }
1159 #else
1160 #if defined(HAVE_GETHOSTBYADDR_R_8_ARGS)
1161       gethostbyaddr_r((const char *)&server.sin_addr,
1162                       sizeof(server.sin_addr), AF_INET,
1163                       &result, hbuf, HOSTENT_BUFFER_SIZE,
1164                       &host, &thd_err);
1165 #elif defined(HAVE_GETHOSTBYADDR_R_7_ARGS)
1166       host = gethostbyaddr_r((const char *)&server.sin_addr,
1167                       sizeof(server.sin_addr), AF_INET,
1168                       &result, hbuf, HOSTENT_BUFFER_SIZE, &thd_err);
1169 #elif defined(HAVE_GETHOSTBYADDR_R_5_ARGS)
1170       if (0 == gethostbyaddr_r((const char *)&server.sin_addr,
1171                                sizeof(server.sin_addr), AF_INET,
1172                                &result, &hdata))
1173       {
1174          host = &result;
1175       }
1176       else
1177       {
1178          host = NULL;
1179       }
1180 #elif FEATURE_PTHREAD
1181       privoxy_mutex_lock(&resolver_mutex);
1182       host = gethostbyaddr((const char *)&server.sin_addr, 
1183                            sizeof(server.sin_addr), AF_INET);
1184       privoxy_mutex_unlock(&resolver_mutex);
1185 #else
1186       host = gethostbyaddr((const char *)&server.sin_addr, 
1187                            sizeof(server.sin_addr), AF_INET);
1188 #endif
1189       if (host == NULL)
1190       {
1191          log_error(LOG_LEVEL_ERROR, "Unable to get my own hostname: %E\n");
1192       }
1193       else
1194       {
1195          *hostname = strdup(host->h_name);
1196       }
1197 #endif /* else def HAVE_RFC2553 */
1198    }
1199
1200    return;
1201 }
1202
1203
1204 /*********************************************************************
1205  *
1206  * Function    :  accept_connection
1207  *
1208  * Description :  Accepts a connection on a socket.  Socket must have
1209  *                been created using bind_port().
1210  *
1211  * Parameters  :
1212  *          1  :  csp = Client state, cfd, ip_addr_str, and 
1213  *                ip_addr_long will be set by this routine.
1214  *          2  :  fd  = file descriptor returned from bind_port
1215  *
1216  * Returns     :  when a connection is accepted, it returns 1 (TRUE).
1217  *                On an error it returns 0 (FALSE).
1218  *
1219  *********************************************************************/
1220 int accept_connection(struct client_state * csp, jb_socket fd)
1221 {
1222 #ifdef HAVE_RFC2553
1223    /* XXX: client is stored directly into csp->tcp_addr */
1224 #define client (csp->tcp_addr)
1225    int retval;
1226 #else
1227    struct sockaddr_in client;
1228 #endif
1229    jb_socket afd;
1230 #if defined(_WIN32) || defined(__OS2__) || defined(__APPLE_CC__) || defined(AMIGA)
1231    /* Wierdness - fix a warning. */
1232    int c_length;
1233 #else
1234    socklen_t c_length;
1235 #endif
1236
1237    c_length = sizeof(client);
1238
1239 #ifdef _WIN32
1240    afd = accept (fd, (struct sockaddr *) &client, &c_length);
1241    if (afd == JB_INVALID_SOCKET)
1242    {
1243       return 0;
1244    }
1245 #else
1246    do
1247    {
1248       afd = accept (fd, (struct sockaddr *) &client, &c_length);
1249    } while (afd < 1 && errno == EINTR);
1250    if (afd < 0)
1251    {
1252       return 0;
1253    }
1254 #endif
1255
1256    csp->cfd = afd;
1257 #ifdef HAVE_RFC2553
1258    csp->ip_addr_str = malloc(NI_MAXHOST);
1259    retval = getnameinfo((struct sockaddr *) &client, c_length,
1260          csp->ip_addr_str, NI_MAXHOST, NULL, 0, NI_NUMERICHOST);
1261    if (!csp->ip_addr_str || retval)
1262    {
1263       log_error(LOG_LEVEL_ERROR, "Can not save csp->ip_addr_str: %s",
1264             (csp->ip_addr_str) ? gai_strerror(retval) : "Insuffcient memory");
1265       freez(csp->ip_addr_str);
1266    }
1267 #undef client
1268 #else
1269    csp->ip_addr_str  = strdup(inet_ntoa(client.sin_addr));
1270    csp->ip_addr_long = ntohl(client.sin_addr.s_addr);
1271 #endif /* def HAVE_RFC2553 */
1272
1273    return 1;
1274
1275 }
1276
1277
1278 /*********************************************************************
1279  *
1280  * Function    :  resolve_hostname_to_ip
1281  *
1282  * Description :  Resolve a hostname to an internet tcp/ip address.
1283  *                NULL or an empty string resolve to INADDR_ANY.
1284  *
1285  * Parameters  :
1286  *          1  :  host = hostname to resolve
1287  *
1288  * Returns     :  INADDR_NONE => failure, INADDR_ANY or tcp/ip address if succesful.
1289  *
1290  *********************************************************************/
1291 unsigned long resolve_hostname_to_ip(const char *host)
1292 {
1293    struct sockaddr_in inaddr;
1294    struct hostent *hostp;
1295    unsigned int dns_retries = 0;
1296 #if defined(HAVE_GETHOSTBYNAME_R_6_ARGS) || defined(HAVE_GETHOSTBYNAME_R_5_ARGS) || defined(HAVE_GETHOSTBYNAME_R_3_ARGS)
1297    struct hostent result;
1298 #if defined(HAVE_GETHOSTBYNAME_R_6_ARGS) || defined(HAVE_GETHOSTBYNAME_R_5_ARGS)
1299    char hbuf[HOSTENT_BUFFER_SIZE];
1300    int thd_err;
1301 #else /* defined(HAVE_GETHOSTBYNAME_R_3_ARGS) */
1302    struct hostent_data hdata;
1303 #endif /* def HAVE_GETHOSTBYNAME_R_(6|5)_ARGS */
1304 #endif /* def HAVE_GETHOSTBYNAME_R_(6|5|3)_ARGS */
1305
1306    if ((host == NULL) || (*host == '\0'))
1307    {
1308       return(INADDR_ANY);
1309    }
1310
1311    memset((char *) &inaddr, 0, sizeof inaddr);
1312
1313    if ((inaddr.sin_addr.s_addr = inet_addr(host)) == -1)
1314    {
1315 #if defined(HAVE_GETHOSTBYNAME_R_6_ARGS)
1316       while (gethostbyname_r(host, &result, hbuf,
1317                 HOSTENT_BUFFER_SIZE, &hostp, &thd_err)
1318              && (thd_err == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
1319       {   
1320          log_error(LOG_LEVEL_ERROR,
1321             "Timeout #%u while trying to resolve %s. Trying again.",
1322             dns_retries, host);
1323       }
1324 #elif defined(HAVE_GETHOSTBYNAME_R_5_ARGS)
1325       while (NULL == (hostp = gethostbyname_r(host, &result,
1326                                  hbuf, HOSTENT_BUFFER_SIZE, &thd_err))
1327              && (thd_err == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
1328       {   
1329          log_error(LOG_LEVEL_ERROR,
1330             "Timeout #%u while trying to resolve %s. Trying again.",
1331             dns_retries, host);
1332       }
1333 #elif defined(HAVE_GETHOSTBYNAME_R_3_ARGS)
1334       /*
1335        * XXX: Doesn't retry in case of soft errors.
1336        * Does this gethostbyname_r version set h_errno?
1337        */
1338       if (0 == gethostbyname_r(host, &result, &hdata))
1339       {
1340          hostp = &result;
1341       }
1342       else
1343       {
1344          hostp = NULL;
1345       }
1346 #elif FEATURE_PTHREAD
1347       privoxy_mutex_lock(&resolver_mutex);
1348       while (NULL == (hostp = gethostbyname(host))
1349              && (h_errno == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
1350       {   
1351          log_error(LOG_LEVEL_ERROR,
1352             "Timeout #%u while trying to resolve %s. Trying again.",
1353             dns_retries, host);
1354       }
1355       privoxy_mutex_unlock(&resolver_mutex);
1356 #else
1357       while (NULL == (hostp = gethostbyname(host))
1358              && (h_errno == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
1359       {
1360          log_error(LOG_LEVEL_ERROR,
1361             "Timeout #%u while trying to resolve %s. Trying again.",
1362             dns_retries, host);
1363       }
1364 #endif /* def HAVE_GETHOSTBYNAME_R_(6|5|3)_ARGS */
1365       /*
1366        * On Mac OSX, if a domain exists but doesn't have a type A
1367        * record associated with it, the h_addr member of the struct
1368        * hostent returned by gethostbyname is NULL, even if h_length
1369        * is 4. Therefore the second test below.
1370        */
1371       if (hostp == NULL || hostp->h_addr == NULL)
1372       {
1373          errno = EINVAL;
1374          log_error(LOG_LEVEL_ERROR, "could not resolve hostname %s", host);
1375          return(INADDR_NONE);
1376       }
1377       if (hostp->h_addrtype != AF_INET)
1378       {
1379 #ifdef _WIN32
1380          errno = WSAEPROTOTYPE;
1381 #else
1382          errno = EPROTOTYPE;
1383 #endif 
1384          log_error(LOG_LEVEL_ERROR, "hostname %s resolves to unknown address type.", host);
1385          return(INADDR_NONE);
1386       }
1387       memcpy(
1388          (char *) &inaddr.sin_addr,
1389          (char *) hostp->h_addr,
1390          sizeof(inaddr.sin_addr)
1391       );
1392    }
1393    return(inaddr.sin_addr.s_addr);
1394
1395 }
1396
1397
1398 #ifdef FEATURE_CONNECTION_KEEP_ALIVE
1399 /*********************************************************************
1400  *
1401  * Function    :  socket_is_still_usable
1402  *
1403  * Description :  Decides whether or not an open socket is still usable.
1404  *
1405  * Parameters  :
1406  *          1  :  sfd = The socket to check.
1407  *
1408  * Returns     :  TRUE for yes, otherwise FALSE.
1409  *
1410  *********************************************************************/
1411 int socket_is_still_usable(jb_socket sfd)
1412 {
1413 #ifdef HAVE_POLL
1414    int poll_result;
1415    struct pollfd poll_fd[1];
1416
1417    memset(poll_fd, 0, sizeof(poll_fd));
1418    poll_fd[0].fd = sfd;
1419    poll_fd[0].events = POLLIN;
1420
1421    poll_result = poll(poll_fd, 1, 0);
1422
1423    if (-1 != poll_result)
1424    {
1425       return !(poll_fd[0].revents & POLLIN);
1426    }
1427    else
1428    {
1429       log_error(LOG_LEVEL_CONNECT, "Polling socket %d failed.", sfd);
1430       return FALSE;
1431    }
1432 #else
1433    fd_set readable_fds;
1434    struct timeval timeout;
1435    int ret;
1436    int socket_is_alive = 0;
1437
1438    memset(&timeout, '\0', sizeof(timeout));
1439    FD_ZERO(&readable_fds);
1440    FD_SET(sfd, &readable_fds);
1441
1442    ret = select((int)sfd+1, &readable_fds, NULL, NULL, &timeout);
1443    if (ret < 0)
1444    {
1445       log_error(LOG_LEVEL_ERROR, "select() failed!: %E");
1446    }
1447
1448    /*
1449     * XXX: I'm not sure why !FD_ISSET() works,
1450     * but apparently it does.
1451     */
1452    socket_is_alive = !FD_ISSET(sfd, &readable_fds);
1453
1454    return socket_is_alive;
1455 #endif /* def HAVE_POLL */
1456 }
1457 #endif /* def FEATURE_CONNECTION_KEEP_ALIVE */
1458
1459
1460 /*
1461   Local Variables:
1462   tab-width: 3
1463   end:
1464 */