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