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