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