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