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