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