If privoxy_strlcpy() is called with a "buffer" size
[privoxy.git] / jbsockets.c
1 const char jbsockets_rcs[] = "$Id: jbsockets.c,v 1.43 2007/06/01 18:16:36 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-2007 the SourceForge
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.43  2007/06/01 18:16:36  fabiankeil
39  *    Use the same mutex for gethostbyname() and gethostbyaddr() to prevent
40  *    deadlocks and crashes on OpenBSD and possibly other OS with neither
41  *    gethostbyname_r() nor gethostaddr_r(). Closes BR#1729174.
42  *    Thanks to Ralf Horstmann for report and solution.
43  *
44  *    Revision 1.42  2007/04/01 17:37:07  fabiankeil
45  *    - Add DNS retries for Solaris and other systems
46  *      whose gethostbyname_r version takes five arguments.
47  *    - Move maximum number of DNS retries into a macro.
48  *
49  *    Revision 1.41  2006/11/13 19:05:51  fabiankeil
50  *    Make pthread mutex locking more generic. Instead of
51  *    checking for OSX and OpenBSD, check for FEATURE_PTHREAD
52  *    and use mutex locking unless there is an _r function
53  *    available. Better safe than sorry.
54  *
55  *    Fixes "./configure --disable-pthread" and should result
56  *    in less threading-related problems on pthread-using platforms,
57  *    but it still doesn't fix BR#1122404.
58  *
59  *    Revision 1.40  2006/09/02 15:36:42  fabiankeil
60  *    Follow the OpenBSD port's lead and protect the resolve
61  *    functions on OpenBSD as well.
62  *
63  *    Revision 1.39  2006/08/03 02:46:41  david__schmidt
64  *    Incorporate Fabian Keil's patch work:\rhttp://www.fabiankeil.de/sourcecode/privoxy/
65  *
66  *    Revision 1.38  2006/07/18 14:48:46  david__schmidt
67  *    Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
68  *    with what was really the latest development (the v_3_0_branch branch)
69  *
70  *    Revision 1.35.2.8  2006/01/21 16:16:08  david__schmidt
71  *    Thanks to  Edward Carrel for his patch to modernize OSX's\rpthreads support.  See bug #1409623.
72  *
73  *    Revision 1.35.2.7  2005/05/07 21:50:55  david__schmidt
74  *    A few memory leaks plugged (mostly on error paths)
75  *
76  *    Revision 1.35.2.6  2003/12/17 16:34:40  oes
77  *    Cosmetics
78  *
79  *    Revision 1.35.2.5  2003/04/29 11:32:54  oes
80  *    Don't rely on h_addr being non-NULL after gethostbyname.
81  *    Works around an oddness in Max OSX and closes bug #724796
82  *
83  *    Revision 1.35.2.4  2003/04/04 12:40:20  oes
84  *    Made sure the errno set by bind, not close[socket] is used in
85  *    bind_port. Probably fixes bugs #713777, #705562.
86  *
87  *    Revision 1.35.2.3  2003/03/07 03:41:04  david__schmidt
88  *    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.
89  *
90  *    Revision 1.35.2.2  2002/11/20 14:37:24  oes
91  *    Fixed Win32 error logging in bind_port.
92  *    Thanks to Oliver Stoeneberg for the hint.
93  *
94  *    Revision 1.35.2.1  2002/05/26 23:41:27  joergs
95  *    AmigaOS: Fixed wrong type of len in write_socket()
96  *
97  *    Revision 1.35  2002/04/26 15:50:04  joergs
98  *    AmigaOS: No socklen_t, added AMIGA to the systems using int instead.
99  *
100  *    Revision 1.34  2002/04/08 20:31:41  swa
101  *    fixed JB spelling
102  *
103  *    Revision 1.33  2002/04/03 16:02:18  gliptak
104  *    Correcting compile warning with older gcc
105  *
106  *    Revision 1.32  2002/03/31 17:18:59  jongfoster
107  *    Win32 only: Enabling STRICT to fix a VC++ compile warning.
108  *
109  *    Revision 1.31  2002/03/29 03:33:13  david__schmidt
110  *    Fix Mac OSX compiler warnings
111  *
112  *    Revision 1.30  2002/03/27 14:32:43  david__schmidt
113  *    More compiler warning message maintenance
114  *
115  *    Revision 1.29  2002/03/26 22:29:54  swa
116  *    we have a new homepage!
117  *
118  *    Revision 1.28  2002/03/24 13:25:43  swa
119  *    name change related issues
120  *
121  *    Revision 1.27  2002/03/13 00:27:05  jongfoster
122  *    Killing warnings
123  *
124  *    Revision 1.26  2002/03/11 22:07:02  david__schmidt
125  *    OS/2 port maintenance:
126  *    - Fixed EMX build - it had decayed a little
127  *    - Fixed inexplicable crash during FD_ZERO - must be due to a bad macro.
128  *      substituted a memset for now.
129  *
130  *    Revision 1.25  2002/03/09 20:03:52  jongfoster
131  *    - Making various functions return int rather than size_t.
132  *      (Undoing a recent change).  Since size_t is unsigned on
133  *      Windows, functions like read_socket that return -1 on
134  *      error cannot return a size_t.
135  *
136  *      THIS WAS A MAJOR BUG - it caused frequent, unpredictable
137  *      crashes, and also frequently caused JB to jump to 100%
138  *      CPU and stay there.  (Because it thought it had just
139  *      read ((unsigned)-1) == 4Gb of data...)
140  *
141  *    - The signature of write_socket has changed, it now simply
142  *      returns success=0/failure=nonzero.
143  *
144  *    - Trying to get rid of a few warnings --with-debug on
145  *      Windows, I've introduced a new type "jb_socket".  This is
146  *      used for the socket file descriptors.  On Windows, this
147  *      is SOCKET (a typedef for unsigned).  Everywhere else, it's
148  *      an int.  The error value can't be -1 any more, so it's
149  *      now JB_INVALID_SOCKET (which is -1 on UNIX, and in
150  *      Windows it maps to the #define INVALID_SOCKET.)
151  *
152  *    - The signature of bind_port has changed.
153  *
154  *    Revision 1.24  2002/03/07 03:51:36  oes
155  *     - Improved handling of failed DNS lookups
156  *     - Fixed compiler warnings etc
157  *
158  *    Revision 1.23  2002/03/05 00:36:01  jongfoster
159  *    Fixing bug 514988 - unable to restart Junkbuster
160  *
161  *    Revision 1.22  2002/03/04 02:08:02  david__schmidt
162  *    Enable web editing of actions file on OS/2 (it had been broken all this time!)
163  *
164  *    Revision 1.21  2002/01/09 14:32:33  oes
165  *    Added support for gethostbyname_r and gethostbyaddr_r.
166  *
167  *    Revision 1.20  2001/11/16 00:48:48  jongfoster
168  *    Enabling duplicate-socket detection for all platforms, not
169  *    just Win32.
170  *
171  *    Revision 1.19  2001/10/25 03:40:47  david__schmidt
172  *    Change in porting tactics: OS/2's EMX porting layer doesn't allow multiple
173  *    threads to call select() simultaneously.  So, it's time to do a real, live,
174  *    native OS/2 port.  See defines for __EMX__ (the porting layer) vs. __OS2__
175  *    (native). Both versions will work, but using __OS2__ offers multi-threading.
176  *
177  *    Revision 1.18  2001/09/21 23:02:02  david__schmidt
178  *    Cleaning up 2 compiler warnings on OS/2.
179  *
180  *    Revision 1.17  2001/09/13 20:11:46  jongfoster
181  *    Fixing 2 compiler warnings under Win32
182  *
183  *    Revision 1.16  2001/07/30 22:08:36  jongfoster
184  *    Tidying up #defines:
185  *    - All feature #defines are now of the form FEATURE_xxx
186  *    - Permanently turned off WIN_GUI_EDIT
187  *    - Permanently turned on WEBDAV and SPLIT_PROXY_ARGS
188  *
189  *    Revision 1.15  2001/07/29 17:40:43  jongfoster
190  *    Fixed compiler warning by adding a cast
191  *
192  *    Revision 1.14  2001/07/18 13:47:59  oes
193  *    Eliminated dirty hack for getsockbyname()
194  *
195  *    Revision 1.13  2001/07/15 13:56:57  jongfoster
196  *    Removing unused local variable.
197  *
198  *    Revision 1.12  2001/07/01 17:04:11  oes
199  *    Bugfix: accept_connection no longer uses the obsolete hstrerror() function
200  *
201  *    Revision 1.11  2001/06/29 21:45:41  oes
202  *    Indentation, CRLF->LF, Tab-> Space
203  *
204  *    Revision 1.10  2001/06/29 13:29:15  oes
205  *    - Added remote (server) host IP to csp->http->host_ip_addr_str
206  *    - Added detection of local socket IP and fqdn
207  *    - Removed logentry from cancelled commit
208  *
209  *    Revision 1.9  2001/06/07 23:06:09  jongfoster
210  *    The host parameter to connect_to() is now const.
211  *
212  *    Revision 1.8  2001/06/03 19:12:07  oes
213  *    filled comment
214  *
215  *    Revision 1.7  2001/05/28 16:14:00  jongfoster
216  *    Fixing bug in LOG_LEVEL_LOG
217  *
218  *    Revision 1.6  2001/05/26 17:28:32  jongfoster
219  *    Fixed LOG_LEVEL_LOG
220  *
221  *    Revision 1.5  2001/05/26 15:26:15  jongfoster
222  *    ACL feature now provides more security by immediately dropping
223  *    connections from untrusted hosts.
224  *
225  *    Revision 1.4  2001/05/26 00:37:42  jongfoster
226  *    Cosmetic indentation correction.
227  *
228  *    Revision 1.3  2001/05/25 21:57:54  jongfoster
229  *    Now gives a warning under Windows if you try to bind
230  *    it to a port that's already in use.
231  *
232  *    Revision 1.2  2001/05/17 23:01:01  oes
233  *     - Cleaned CRLF's from the sources and related files
234  *
235  *    Revision 1.1.1.1  2001/05/15 13:58:54  oes
236  *    Initial import of version 2.9.3 source tree
237  *
238  *
239  *********************************************************************/
240 \f
241
242 #include "config.h"
243
244 #include <stdlib.h>
245 #include <stdio.h>
246 #include <string.h>
247 #include <errno.h>
248 #include <fcntl.h>
249 #include <sys/types.h>
250
251 #ifdef _WIN32
252
253 #ifndef STRICT
254 #define STRICT
255 #endif
256 #include <windows.h>
257 #include <sys/timeb.h>
258 #include <io.h>
259
260 #else
261
262 #ifndef __OS2__
263 #include <unistd.h>
264 #endif
265 #include <sys/time.h>
266 #include <netinet/in.h>
267 #include <sys/ioctl.h>
268 #include <netdb.h>
269 #include <sys/socket.h>
270
271 #ifndef __BEOS__
272 #include <netinet/tcp.h>
273 #ifndef __OS2__
274 #include <arpa/inet.h>
275 #endif
276 #else
277 #include <socket.h>
278 #endif
279
280 #if defined(__EMX__) || defined (__OS2__)
281 #include <sys/select.h>  /* OS/2/EMX needs a little help with select */
282 #ifdef __OS2__
283 #include <nerrno.h>
284 #endif
285 #endif
286
287 #endif
288
289 #include "project.h"
290
291 #ifdef FEATURE_PTHREAD
292 #include "jcc.h"
293 /* jcc.h is for mutex semaphores only */
294 #endif /* def FEATURE_PTHREAD */
295
296 #include "jbsockets.h"
297 #include "filters.h"
298 #include "errlog.h"
299
300 const char jbsockets_h_rcs[] = JBSOCKETS_H_VERSION;
301
302 /*
303  * Maximum number of gethostbyname(_r) retries in case of
304  * soft errors (TRY_AGAIN).
305  * XXX: Does it make sense to make this a config option?
306  */
307 #define MAX_DNS_RETRIES 10
308
309 #ifndef SOMAXCONN
310 /* XXX: Might not be necessary. */
311 #define SOMAXCONN 128
312 #endif
313
314 /*********************************************************************
315  *
316  * Function    :  connect_to
317  *
318  * Description :  Open a socket and connect to it.  Will check
319  *                that this is allowed according to ACL.
320  *
321  * Parameters  :
322  *          1  :  host = hostname to connect to
323  *          2  :  portnum = port to connent on
324  *          3  :  csp = Current client state (buffers, headers, etc...)
325  *                      Not modified, only used for source IP and ACL.
326  *
327  * Returns     :  JB_INVALID_SOCKET => failure, else it is the socket
328  *                file descriptor.
329  *
330  *********************************************************************/
331 jb_socket connect_to(const char *host, int portnum, struct client_state *csp)
332 {
333    struct sockaddr_in inaddr;
334    jb_socket fd;
335    int addr;
336    fd_set wfds;
337    struct timeval tv[1];
338 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA)
339    int   flags;
340 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) */
341
342 #ifdef FEATURE_ACL
343    struct access_control_addr dst[1];
344 #endif /* def FEATURE_ACL */
345
346    memset((char *)&inaddr, 0, sizeof inaddr);
347
348    if ((addr = resolve_hostname_to_ip(host)) == INADDR_NONE)
349    {
350       csp->http->host_ip_addr_str = strdup("unknown");
351       return(JB_INVALID_SOCKET);
352    }
353
354 #ifdef FEATURE_ACL
355    dst->addr = ntohl((unsigned long) addr);
356    dst->port = portnum;
357
358    if (block_acl(dst, csp))
359    {
360 #ifdef __OS2__
361       errno = SOCEPERM;
362 #else
363       errno = EPERM;
364 #endif
365       return(JB_INVALID_SOCKET);
366    }
367 #endif /* def FEATURE_ACL */
368
369    inaddr.sin_addr.s_addr = addr;
370    inaddr.sin_family      = AF_INET;
371    csp->http->host_ip_addr_str = strdup(inet_ntoa(inaddr.sin_addr));
372
373 #ifndef _WIN32
374    if (sizeof(inaddr.sin_port) == sizeof(short))
375 #endif /* ndef _WIN32 */
376    {
377       inaddr.sin_port = htons((unsigned short) portnum);
378    }
379 #ifndef _WIN32
380    else
381    {
382       inaddr.sin_port = htonl((unsigned long)portnum);
383    }
384 #endif /* ndef _WIN32 */
385
386 #ifdef _WIN32
387    if ((fd = socket(inaddr.sin_family, SOCK_STREAM, 0)) == JB_INVALID_SOCKET)
388 #else
389    if ((fd = socket(inaddr.sin_family, SOCK_STREAM, 0)) < 0)
390 #endif
391    {
392       return(JB_INVALID_SOCKET);
393    }
394
395 #ifdef TCP_NODELAY
396    {  /* turn off TCP coalescence */
397       int mi = 1;
398       setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *) &mi, sizeof (int));
399    }
400 #endif /* def TCP_NODELAY */
401
402 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
403    if ((flags = fcntl(fd, F_GETFL, 0)) != -1)
404    {
405       flags |= O_NDELAY;
406       fcntl(fd, F_SETFL, flags);
407    }
408 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__) */
409
410    while (connect(fd, (struct sockaddr *) & inaddr, sizeof inaddr) == JB_INVALID_SOCKET)
411    {
412 #ifdef _WIN32
413       if (errno == WSAEINPROGRESS)
414 #elif __OS2__ 
415       if (sock_errno() == EINPROGRESS)
416 #else /* ifndef _WIN32 */
417       if (errno == EINPROGRESS)
418 #endif /* ndef _WIN32 || __OS2__ */
419       {
420          break;
421       }
422
423 #ifdef __OS2__ 
424       if (sock_errno() != EINTR)
425 #else
426       if (errno != EINTR)
427 #endif /* __OS2__ */
428       {
429          close_socket(fd);
430          return(JB_INVALID_SOCKET);
431       }
432    }
433
434 #if !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__)
435    if (flags != -1)
436    {
437       flags &= ~O_NDELAY;
438       fcntl(fd, F_SETFL, flags);
439    }
440 #endif /* !defined(_WIN32) && !defined(__BEOS__) && !defined(AMIGA) && !defined(__OS2__) */
441
442    /* wait for connection to complete */
443    FD_ZERO(&wfds);
444    FD_SET(fd, &wfds);
445
446    tv->tv_sec  = 30;
447    tv->tv_usec = 0;
448
449    /* MS Windows uses int, not SOCKET, for the 1st arg of select(). Wierd! */
450    if (select((int)fd + 1, NULL, &wfds, NULL, tv) <= 0)
451    {
452       close_socket(fd);
453       return(JB_INVALID_SOCKET);
454    }
455    return(fd);
456
457 }
458
459
460 /*********************************************************************
461  *
462  * Function    :  write_socket
463  *
464  * Description :  Write the contents of buf (for n bytes) to socket fd.
465  *
466  * Parameters  :
467  *          1  :  fd = file descriptor (aka. handle) of socket to write to.
468  *          2  :  buf = pointer to data to be written.
469  *          3  :  len = length of data to be written to the socket "fd".
470  *
471  * Returns     :  0 on success (entire buffer sent).
472  *                nonzero on error.
473  *
474  *********************************************************************/
475 #ifdef AMIGA
476 int write_socket(jb_socket fd, const char *buf, ssize_t len)
477 #else
478 int write_socket(jb_socket fd, const char *buf, size_t len)
479 #endif
480 {
481    if (len == 0)
482    {
483       return 0;
484    }
485
486    if (len < 0) /* constant condition - size_t isn't ever negative */ 
487    {
488       return 1;
489    }
490
491    log_error(LOG_LEVEL_LOG, "%N", len, buf);
492
493 #if defined(_WIN32)
494    return (send(fd, buf, (int)len, 0) != (int)len);
495 #elif defined(__BEOS__) || defined(AMIGA)
496    return (send(fd, buf, len, 0) != len);
497 #elif defined(__OS2__)
498    /*
499     * Break the data up into SOCKET_SEND_MAX chunks for sending...
500     * OS/2 seemed to complain when the chunks were too large.
501     */
502 #define SOCKET_SEND_MAX 65000
503    {
504       int write_len = 0, send_len, send_rc = 0, i = 0;
505       while ((i < len) && (send_rc != -1))
506       {
507          if ((i + SOCKET_SEND_MAX) > len)
508             send_len = len - i;
509          else
510             send_len = SOCKET_SEND_MAX;
511          send_rc = send(fd,(char*)buf + i, send_len, 0);
512          if (send_rc == -1)
513             return 1;
514          i = i + send_len;
515       }
516       return 0;
517    }
518 #else
519    return (write(fd, buf, len) != len);
520 #endif
521
522 }
523
524
525 /*********************************************************************
526  *
527  * Function    :  read_socket
528  *
529  * Description :  Read from a TCP/IP socket in a platform independent way.
530  *
531  * Parameters  :
532  *          1  :  fd = file descriptor of the socket to read
533  *          2  :  buf = pointer to buffer where data will be written
534  *                Must be >= len bytes long.
535  *          3  :  len = maximum number of bytes to read
536  *
537  * Returns     :  On success, the number of bytes read is returned (zero
538  *                indicates end of file), and the file position is advanced
539  *                by this number.  It is not an error if this number is
540  *                smaller than the number of bytes requested; this may hap-
541  *                pen for example because fewer bytes are actually available
542  *                right now (maybe because we were close to end-of-file, or
543  *                because we are reading from a pipe, or from a terminal,
544  *                or because read() was interrupted by a signal).  On error,
545  *                -1 is returned, and errno is set appropriately.  In this
546  *                case it is left unspecified whether the file position (if
547  *                any) changes.
548  *
549  *********************************************************************/
550 int read_socket(jb_socket fd, char *buf, int len)
551 {
552    if (len <= 0)
553    {
554       return(0);
555    }
556
557 #if defined(_WIN32)
558    return(recv(fd, buf, len, 0));
559 #elif defined(__BEOS__) || defined(AMIGA) || defined(__OS2__)
560    return(recv(fd, buf, (size_t)len, 0));
561 #else
562    return(read(fd, buf, (size_t)len));
563 #endif
564 }
565
566
567 /*********************************************************************
568  *
569  * Function    :  close_socket
570  *
571  * Description :  Closes a TCP/IP socket
572  *
573  * Parameters  :
574  *          1  :  fd = file descriptor of socket to be closed
575  *
576  * Returns     :  void
577  *
578  *********************************************************************/
579 void close_socket(jb_socket fd)
580 {
581 #if defined(_WIN32) || defined(__BEOS__)
582    closesocket(fd);
583 #elif defined(AMIGA)
584    CloseSocket(fd); 
585 #elif defined(__OS2__)
586    soclose(fd);
587 #else
588    close(fd);
589 #endif
590
591 }
592
593
594 /*********************************************************************
595  *
596  * Function    :  bind_port
597  *
598  * Description :  Call socket, set socket options, and listen.
599  *                Called by listen_loop to "boot up" our proxy address.
600  *
601  * Parameters  :
602  *          1  :  hostnam = TCP/IP address to bind/listen to
603  *          2  :  portnum = port to listen on
604  *          3  :  pfd = pointer used to return file descriptor.
605  *
606  * Returns     :  if success, returns 0 and sets *pfd.
607  *                if failure, returns -3 if address is in use,
608  *                                    -2 if address unresolvable,
609  *                                    -1 otherwise
610  *********************************************************************/
611 int bind_port(const char *hostnam, int portnum, jb_socket *pfd)
612 {
613    struct sockaddr_in inaddr;
614    jb_socket fd;
615 #ifndef _WIN32
616    int one = 1;
617 #endif /* ndef _WIN32 */
618
619    *pfd = JB_INVALID_SOCKET;
620
621    memset((char *)&inaddr, '\0', sizeof inaddr);
622
623    inaddr.sin_family      = AF_INET;
624    inaddr.sin_addr.s_addr = resolve_hostname_to_ip(hostnam);
625
626    if (inaddr.sin_addr.s_addr == INADDR_NONE)
627    {
628       return(-2);
629    }
630
631 #ifndef _WIN32
632    if (sizeof(inaddr.sin_port) == sizeof(short))
633 #endif /* ndef _WIN32 */
634    {
635       inaddr.sin_port = htons((unsigned short) portnum);
636    }
637 #ifndef _WIN32
638    else
639    {
640       inaddr.sin_port = htonl((unsigned long) portnum);
641    }
642 #endif /* ndef _WIN32 */
643
644    fd = socket(AF_INET, SOCK_STREAM, 0);
645
646 #ifdef _WIN32
647    if (fd == JB_INVALID_SOCKET)
648 #else
649    if (fd < 0)
650 #endif
651    {
652       return(-1);
653    }
654
655 #ifndef _WIN32
656    /*
657     * This is not needed for Win32 - in fact, it stops
658     * duplicate instances of Privoxy from being caught.
659     *
660     * On UNIX, we assume the user is sensible enough not
661     * to start Privoxy multiple times on the same IP.
662     * Without this, stopping and restarting Privoxy
663     * from a script fails.
664     * Note: SO_REUSEADDR is meant to only take over
665     * sockets which are *not* in listen state in Linux,
666     * e.g. sockets in TIME_WAIT. YMMV.
667     */
668    setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char *)&one, sizeof(one));
669 #endif /* ndef _WIN32 */
670
671    if (bind(fd, (struct sockaddr *)&inaddr, sizeof(inaddr)) < 0)
672    {
673 #ifdef _WIN32
674       errno = WSAGetLastError();
675       if (errno == WSAEADDRINUSE)
676 #else
677       if (errno == EADDRINUSE)
678 #endif
679       {
680          close_socket(fd);
681          return(-3);
682       }
683       else
684       {
685          close_socket(fd);
686          return(-1);
687       }
688    }
689
690    while (listen(fd, SOMAXCONN) == -1)
691    {
692       if (errno != EINTR)
693       {
694          return(-1);
695       }
696    }
697
698    *pfd = fd;
699    return 0;
700
701 }
702
703
704 /*********************************************************************
705  *
706  * Function    :  accept_connection
707  *
708  * Description :  Accepts a connection on a socket.  Socket must have
709  *                been created using bind_port().
710  *
711  * Parameters  :
712  *          1  :  csp = Client state, cfd, ip_addr_str, and 
713  *                ip_addr_long will be set by this routine.
714  *          2  :  fd  = file descriptor returned from bind_port
715  *
716  * Returns     :  when a connection is accepted, it returns 1 (TRUE).
717  *                On an error it returns 0 (FALSE).
718  *
719  *********************************************************************/
720 int accept_connection(struct client_state * csp, jb_socket fd)
721 {
722    struct sockaddr_in client, server;
723    struct hostent *host = NULL;
724    jb_socket afd;
725 #if defined(_WIN32) || defined(__OS2__) || defined(__APPLE_CC__) || defined(AMIGA)
726    /* Wierdness - fix a warning. */
727    int c_length, s_length;
728 #else
729    socklen_t c_length, s_length;
730 #endif
731 #if defined(HAVE_GETHOSTBYADDR_R_8_ARGS) ||  defined(HAVE_GETHOSTBYADDR_R_7_ARGS) || defined(HAVE_GETHOSTBYADDR_R_5_ARGS)
732    struct hostent result;
733 #if defined(HAVE_GETHOSTBYADDR_R_5_ARGS)
734    struct hostent_data hdata;
735 #else
736    char hbuf[HOSTENT_BUFFER_SIZE];
737    int thd_err;
738 #endif /* def HAVE_GETHOSTBYADDR_R_5_ARGS */
739 #endif /* def HAVE_GETHOSTBYADDR_R_(8|7|5)_ARGS */
740
741    c_length = s_length = sizeof(client);
742
743 #ifdef _WIN32
744    afd = accept (fd, (struct sockaddr *) &client, &c_length);
745    if (afd == JB_INVALID_SOCKET)
746    {
747       return 0;
748    }
749 #else
750    do
751    {
752       afd = accept (fd, (struct sockaddr *) &client, &c_length);
753    } while (afd < 1 && errno == EINTR);
754    if (afd < 0)
755    {
756       return 0;
757    }
758 #endif
759
760    /* 
761     * Determine the IP-Adress that the client used to reach us
762     * and the hostname associated with that address
763     */
764    if (!getsockname(afd, (struct sockaddr *) &server, &s_length))
765    {
766       csp->my_ip_addr_str = strdup(inet_ntoa(server.sin_addr));
767 #if defined(HAVE_GETHOSTBYADDR_R_8_ARGS)
768       gethostbyaddr_r((const char *)&server.sin_addr,
769                       sizeof(server.sin_addr), AF_INET,
770                       &result, hbuf, HOSTENT_BUFFER_SIZE,
771                       &host, &thd_err);
772 #elif defined(HAVE_GETHOSTBYADDR_R_7_ARGS)
773       host = gethostbyaddr_r((const char *)&server.sin_addr,
774                       sizeof(server.sin_addr), AF_INET,
775                       &result, hbuf, HOSTENT_BUFFER_SIZE, &thd_err);
776 #elif defined(HAVE_GETHOSTBYADDR_R_5_ARGS)
777       if (0 == gethostbyaddr_r((const char *)&server.sin_addr,
778                                sizeof(server.sin_addr), AF_INET,
779                                &result, &hdata))
780       {
781          host = &result;
782       }
783       else
784       {
785          host = NULL;
786       }
787 #elif FEATURE_PTHREAD
788       pthread_mutex_lock(&resolver_mutex);
789       host = gethostbyaddr((const char *)&server.sin_addr, 
790                            sizeof(server.sin_addr), AF_INET);
791       pthread_mutex_unlock(&resolver_mutex);
792 #else
793       host = gethostbyaddr((const char *)&server.sin_addr, 
794                            sizeof(server.sin_addr), AF_INET);
795 #endif
796       if (host == NULL)
797       {
798          log_error(LOG_LEVEL_ERROR, "Unable to get my own hostname: %E\n");
799       }
800       else
801       {
802          csp->my_hostname = strdup(host->h_name);
803       }
804    }
805
806    csp->cfd    = afd;
807    csp->ip_addr_str  = strdup(inet_ntoa(client.sin_addr));
808    csp->ip_addr_long = ntohl(client.sin_addr.s_addr);
809
810    return 1;
811
812 }
813
814
815 /*********************************************************************
816  *
817  * Function    :  resolve_hostname_to_ip
818  *
819  * Description :  Resolve a hostname to an internet tcp/ip address.
820  *                NULL or an empty string resolve to INADDR_ANY.
821  *
822  * Parameters  :
823  *          1  :  host = hostname to resolve
824  *
825  * Returns     :  INADDR_NONE => failure, INADDR_ANY or tcp/ip address if succesful.
826  *
827  *********************************************************************/
828 unsigned long resolve_hostname_to_ip(const char *host)
829 {
830    struct sockaddr_in inaddr;
831    struct hostent *hostp;
832    unsigned int dns_retries = 0;
833 #if defined(HAVE_GETHOSTBYNAME_R_6_ARGS) || defined(HAVE_GETHOSTBYNAME_R_5_ARGS) || defined(HAVE_GETHOSTBYNAME_R_3_ARGS)
834    struct hostent result;
835 #if defined(HAVE_GETHOSTBYNAME_R_6_ARGS) || defined(HAVE_GETHOSTBYNAME_R_5_ARGS)
836    char hbuf[HOSTENT_BUFFER_SIZE];
837    int thd_err;
838 #else /* defined(HAVE_GETHOSTBYNAME_R_3_ARGS) */
839    struct hostent_data hdata;
840 #endif /* def HAVE_GETHOSTBYNAME_R_(6|5)_ARGS */
841 #endif /* def HAVE_GETHOSTBYNAME_R_(6|5|3)_ARGS */
842
843    if ((host == NULL) || (*host == '\0'))
844    {
845       return(INADDR_ANY);
846    }
847
848    memset((char *) &inaddr, 0, sizeof inaddr);
849
850    if ((inaddr.sin_addr.s_addr = inet_addr(host)) == -1)
851    {
852 #if defined(HAVE_GETHOSTBYNAME_R_6_ARGS)
853       while (gethostbyname_r(host, &result, hbuf,
854                 HOSTENT_BUFFER_SIZE, &hostp, &thd_err)
855              && (thd_err == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
856       {   
857          log_error(LOG_LEVEL_ERROR,
858             "Timeout #%u while trying to resolve %s. Trying again.",
859             dns_retries, host);
860       }
861 #elif defined(HAVE_GETHOSTBYNAME_R_5_ARGS)
862       while (NULL == (hostp = gethostbyname_r(host, &result,
863                                  hbuf, HOSTENT_BUFFER_SIZE, &thd_err))
864              && (thd_err == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
865       {   
866          log_error(LOG_LEVEL_ERROR,
867             "Timeout #%u while trying to resolve %s. Trying again.",
868             dns_retries, host);
869       }
870 #elif defined(HAVE_GETHOSTBYNAME_R_3_ARGS)
871       /*
872        * XXX: Doesn't retry in case of soft errors.
873        * Does this gethostbyname_r version set h_errno?
874        */
875       if (0 == gethostbyname_r(host, &result, &hdata))
876       {
877          hostp = &result;
878       }
879       else
880       {
881          hostp = NULL;
882       }
883 #elif FEATURE_PTHREAD
884       pthread_mutex_lock(&resolver_mutex);
885       while (NULL == (hostp = gethostbyname(host))
886              && (h_errno == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
887       {   
888          log_error(LOG_LEVEL_ERROR,
889             "Timeout #%u while trying to resolve %s. Trying again.",
890             dns_retries, host);
891       }
892       pthread_mutex_unlock(&resolver_mutex);
893 #else
894       while (NULL == (hostp = gethostbyname(host))
895              && (h_errno == TRY_AGAIN) && (dns_retries++ < MAX_DNS_RETRIES))
896       {
897          log_error(LOG_LEVEL_ERROR,
898             "Timeout #%u while trying to resolve %s. Trying again.",
899             dns_retries, host);
900       }
901 #endif /* def HAVE_GETHOSTBYNAME_R_(6|5|3)_ARGS */
902       /*
903        * On Mac OSX, if a domain exists but doesn't have a type A
904        * record associated with it, the h_addr member of the struct
905        * hostent returned by gethostbyname is NULL, even if h_length
906        * is 4. Therefore the second test below.
907        */
908       if (hostp == NULL || hostp->h_addr == NULL)
909       {
910          errno = EINVAL;
911          log_error(LOG_LEVEL_ERROR, "could not resolve hostname %s", host);
912          return(INADDR_NONE);
913       }
914       if (hostp->h_addrtype != AF_INET)
915       {
916 #ifdef _WIN32
917          errno = WSAEPROTOTYPE;
918 #else
919          errno = EPROTOTYPE;
920 #endif 
921          log_error(LOG_LEVEL_ERROR, "hostname %s resolves to unknown address type.", host);
922          return(INADDR_NONE);
923       }
924       memcpy(
925          (char *) &inaddr.sin_addr,
926          (char *) hostp->h_addr,
927          sizeof(inaddr.sin_addr)
928       );
929    }
930    return(inaddr.sin_addr.s_addr);
931
932 }
933
934
935 /*
936   Local Variables:
937   tab-width: 3
938   end:
939 */