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