]> sjero.net Git - wget/blob - src/connect.c
[svn] Don't auto-set opt.ipv4_only on systems without IPv6 sockets.
[wget] / src / connect.c
1 /* Establishing and handling network connections.
2    Copyright (C) 1995, 1996, 1997, 2001, 2002 Free Software Foundation, Inc.
3
4 This file is part of GNU Wget.
5
6 GNU Wget is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10
11 GNU Wget is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Wget; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 In addition, as a special exception, the Free Software Foundation
21 gives permission to link the code of its release of Wget with the
22 OpenSSL project's "OpenSSL" library (or with modified versions of it
23 that use the same license as the "OpenSSL" library), and distribute
24 the linked executables.  You must obey the GNU General Public License
25 in all respects for all of the code used other than "OpenSSL".  If you
26 modify this file, you may extend this exception to your version of the
27 file, but you are not obligated to do so.  If you do not wish to do
28 so, delete this exception statement from your version.  */
29
30 #include <config.h>
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <sys/types.h>
35 #ifdef HAVE_UNISTD_H
36 # include <unistd.h>
37 #endif
38 #include <assert.h>
39
40 #ifndef WINDOWS
41 # include <sys/socket.h>
42 # include <netdb.h>
43 # include <netinet/in.h>
44 # ifndef __BEOS__
45 #  include <arpa/inet.h>
46 # endif
47 #endif /* not WINDOWS */
48
49 #include <errno.h>
50 #ifdef HAVE_STRING_H
51 # include <string.h>
52 #else
53 # include <strings.h>
54 #endif /* HAVE_STRING_H */
55 #ifdef HAVE_SYS_SELECT_H
56 # include <sys/select.h>
57 #endif /* HAVE_SYS_SELECT_H */
58
59 #include "wget.h"
60 #include "utils.h"
61 #include "host.h"
62 #include "connect.h"
63 #include "hash.h"
64
65 #ifndef errno
66 extern int errno;
67 #endif
68
69 \f
70 /* Fill SA as per the data in IP and PORT.  SA shoult point to struct
71    sockaddr_storage if ENABLE_IPV6 is defined, to struct sockaddr_in
72    otherwise.  */
73
74 static void
75 sockaddr_set_data (struct sockaddr *sa, const ip_address *ip, int port)
76 {
77   switch (ip->type)
78     {
79     case IPV4_ADDRESS:
80       {
81         struct sockaddr_in *sin = (struct sockaddr_in *)sa;
82         sin->sin_family = AF_INET;
83         sin->sin_port = htons (port);
84         sin->sin_addr = ADDRESS_IPV4_IN_ADDR (ip);
85         break;
86       }
87 #ifdef ENABLE_IPV6
88     case IPV6_ADDRESS:
89       {
90         struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sa;
91         sin6->sin6_family = AF_INET6;
92         sin6->sin6_port = htons (port);
93         sin6->sin6_addr = ADDRESS_IPV6_IN6_ADDR (ip);
94 #ifdef HAVE_SOCKADDR_IN6_SCOPE_ID
95         sin6->sin6_scope_id = ADDRESS_IPV6_SCOPE (ip);
96 #endif
97         break;
98       }
99 #endif /* ENABLE_IPV6 */
100     default:
101       abort ();
102     }
103 }
104
105 /* Get the data of SA, specifically the IP address and the port.  If
106    you're not interested in one or the other information, pass NULL as
107    the pointer.  */
108
109 static void
110 sockaddr_get_data (const struct sockaddr *sa, ip_address *ip, int *port)
111 {
112   switch (sa->sa_family)
113     {
114     case AF_INET:
115       {
116         struct sockaddr_in *sin = (struct sockaddr_in *)sa;
117         if (ip)
118           {
119             ip->type = IPV4_ADDRESS;
120             ADDRESS_IPV4_IN_ADDR (ip) = sin->sin_addr;
121           }
122         if (port)
123           *port = ntohs (sin->sin_port);
124         break;
125       }
126 #ifdef ENABLE_IPV6
127     case AF_INET6:
128       {
129         struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sa;
130         if (ip)
131           {
132             ip->type = IPV6_ADDRESS;
133             ADDRESS_IPV6_IN6_ADDR (ip) = sin6->sin6_addr;
134 #ifdef HAVE_SOCKADDR_IN6_SCOPE_ID
135             ADDRESS_IPV6_SCOPE (ip) = sin6->sin6_scope_id;
136 #endif
137           }
138         if (port)
139           *port = ntohs (sin6->sin6_port);
140         break;
141       }
142 #endif
143     default:
144       abort ();
145     }
146 }
147
148 /* Return the size of the sockaddr structure depending on its
149    family.  */
150
151 static socklen_t
152 sockaddr_size (const struct sockaddr *sa)
153 {
154   switch (sa->sa_family)
155     {
156     case AF_INET:
157       return sizeof (struct sockaddr_in);
158 #ifdef ENABLE_IPV6
159     case AF_INET6:
160       return sizeof (struct sockaddr_in6);
161 #endif
162     default:
163       abort ();
164       return 0;                 /* so the compiler shuts up. */
165     }
166 }
167 \f
168 static int
169 resolve_bind_address (struct sockaddr *sa)
170 {
171   struct address_list *al;
172
173   /* Make sure this is called only once.  opt.bind_address doesn't
174      change during a Wget run.  */
175   static int called, should_bind;
176   static ip_address ip;
177   if (called)
178     {
179       if (should_bind)
180         sockaddr_set_data (sa, &ip, 0);
181       return should_bind;
182     }
183   called = 1;
184
185   al = lookup_host (opt.bind_address, LH_BIND | LH_SILENT);
186   if (!al)
187     {
188       /* #### We should be able to print the error message here. */
189       logprintf (LOG_NOTQUIET,
190                  _("%s: unable to resolve bind address `%s'; disabling bind.\n"),
191                  exec_name, opt.bind_address);
192       should_bind = 0;
193       return 0;
194     }
195
196   /* Pick the first address in the list and use it as bind address.
197      Perhaps we should try multiple addresses in succession, but I
198      don't think that's necessary in practice.  */
199   ip = *address_list_address_at (al, 0);
200   address_list_release (al);
201
202   sockaddr_set_data (sa, &ip, 0);
203   should_bind = 1;
204   return 1;
205 }
206 \f
207 struct cwt_context {
208   int fd;
209   const struct sockaddr *addr;
210   socklen_t addrlen;
211   int result;
212 };
213
214 static void
215 connect_with_timeout_callback (void *arg)
216 {
217   struct cwt_context *ctx = (struct cwt_context *)arg;
218   ctx->result = connect (ctx->fd, ctx->addr, ctx->addrlen);
219 }
220
221 /* Like connect, but specifies a timeout.  If connecting takes longer
222    than TIMEOUT seconds, -1 is returned and errno is set to
223    ETIMEDOUT.  */
224
225 static int
226 connect_with_timeout (int fd, const struct sockaddr *addr, socklen_t addrlen,
227                       double timeout)
228 {
229   struct cwt_context ctx;
230   ctx.fd = fd;
231   ctx.addr = addr;
232   ctx.addrlen = addrlen;
233
234   if (run_with_timeout (timeout, connect_with_timeout_callback, &ctx))
235     {
236       errno = ETIMEDOUT;
237       return -1;
238     }
239   if (ctx.result == -1 && errno == EINTR)
240     errno = ETIMEDOUT;
241   return ctx.result;
242 }
243 \f
244 /* Connect to a remote endpoint whose IP address is known.  */
245
246 int
247 connect_to_ip (const ip_address *ip, int port, const char *print)
248 {
249   struct sockaddr_storage ss;
250   struct sockaddr *sa = (struct sockaddr *)&ss;
251   int sock = -1;
252
253   /* If PRINT is non-NULL, print the "Connecting to..." line, with
254      PRINT being the host name we're connecting to.  */
255   if (print)
256     {
257       const char *txt_addr = pretty_print_address (ip);
258       if (print && 0 != strcmp (print, txt_addr))
259         logprintf (LOG_VERBOSE,
260                    _("Connecting to %s|%s|:%d... "), print, txt_addr, port);
261       else
262         logprintf (LOG_VERBOSE, _("Connecting to %s:%d... "), txt_addr, port);
263     }
264
265   /* Store the sockaddr info to SA.  */
266   sockaddr_set_data (sa, ip, port);
267
268   /* Create the socket of the family appropriate for the address.  */
269   sock = socket (sa->sa_family, SOCK_STREAM, 0);
270   if (sock < 0)
271     goto err;
272
273   /* For very small rate limits, set the buffer size (and hence,
274      hopefully, the kernel's TCP window size) to the per-second limit.
275      That way we should never have to sleep for more than 1s between
276      network reads.  */
277   if (opt.limit_rate && opt.limit_rate < 8192)
278     {
279       int bufsize = opt.limit_rate;
280       if (bufsize < 512)
281         bufsize = 512;          /* avoid pathologically small values */
282 #ifdef SO_RCVBUF
283       setsockopt (sock, SOL_SOCKET, SO_RCVBUF,
284                   (void *)&bufsize, (socklen_t)sizeof (bufsize));
285 #endif
286       /* When we add limit_rate support for writing, which is useful
287          for POST, we should also set SO_SNDBUF here.  */
288     }
289
290   if (opt.bind_address)
291     {
292       /* Bind the client side of the socket to the requested
293          address.  */
294       struct sockaddr_storage bind_ss;
295       struct sockaddr *bind_sa = (struct sockaddr *)&bind_ss;
296       if (resolve_bind_address (bind_sa))
297         {
298           if (bind (sock, bind_sa, sockaddr_size (bind_sa)) < 0)
299             goto err;
300         }
301     }
302
303   /* Connect the socket to the remote endpoint.  */
304   if (connect_with_timeout (sock, sa, sockaddr_size (sa),
305                             opt.connect_timeout) < 0)
306     goto err;
307
308   /* Success. */
309   assert (sock >= 0);
310   if (print)
311     logprintf (LOG_VERBOSE, _("connected.\n"));
312   DEBUGP (("Created socket %d.\n", sock));
313   return sock;
314
315  err:
316   {
317     /* Protect errno from possible modifications by close and
318        logprintf.  */
319     int save_errno = errno;
320     if (sock >= 0)
321       xclose (sock);
322     if (print)
323       logprintf (LOG_VERBOSE, "failed: %s.\n", strerror (errno));
324     errno = save_errno;
325     return -1;
326   }
327 }
328
329 /* Connect to a remote endpoint specified by host name.  */
330
331 int
332 connect_to_host (const char *host, int port)
333 {
334   int i, start, end;
335   struct address_list *al;
336   int lh_flags = 0;
337   int sock = -1;
338
339  again:
340   al = lookup_host (host, lh_flags);
341   if (!al)
342     return E_HOST;
343
344   address_list_get_bounds (al, &start, &end);
345   for (i = start; i < end; i++)
346     {
347       const ip_address *ip = address_list_address_at (al, i);
348       sock = connect_to_ip (ip, port, host);
349       if (sock >= 0)
350         /* Success. */
351         break;
352
353       address_list_set_faulty (al, i);
354
355       /* The attempt to connect has failed.  Continue with the loop
356          and try next address. */
357     }
358   address_list_release (al);
359
360   if (sock >= 0)
361     /* Mark a successful connection to one of the addresses. */
362     address_list_set_connected (al);
363
364   if (sock < 0 && address_list_connected_p (al))
365     {
366       /* We are unable to connect to any of HOST's addresses, although
367          we were previously able to connect to HOST.  That might
368          indicate that HOST is under dynamic DNS and the addresses
369          we're connecting to have expired.  Resolve it again.  */
370       lh_flags |= LH_REFRESH;
371       goto again;
372     }
373
374   return sock;
375 }
376
377 int
378 test_socket_open (int sock)
379 {
380 #ifdef HAVE_SELECT
381   fd_set check_set;
382   struct timeval to;
383
384   /* Check if we still have a valid (non-EOF) connection.  From Andrew
385    * Maholski's code in the Unix Socket FAQ.  */
386
387   FD_ZERO (&check_set);
388   FD_SET (sock, &check_set);
389
390   /* Wait one microsecond */
391   to.tv_sec = 0;
392   to.tv_usec = 1;
393
394   /* If we get a timeout, then that means still connected */
395   if (select (sock + 1, &check_set, NULL, NULL, &to) == 0)
396     {
397       /* Connection is valid (not EOF), so continue */
398       return 1;
399     }
400   else
401     return 0;
402 #else
403   /* Without select, it's hard to know for sure. */
404   return 1;
405 #endif
406 }
407
408 /* Create a socket, bind it to local interface BIND_ADDRESS on port
409    *PORT, set up a listen backlog, and return the resulting socket, or
410    -1 in case of error.
411
412    BIND_ADDRESS is the address of the interface to bind to.  If it is
413    NULL, the socket is bound to the default address.  PORT should
414    point to the port number that will be used for the binding.  If
415    that number is 0, the system will choose a suitable port, and the
416    chosen value will be written to *PORT.
417
418    Calling accept() on such a socket waits for and accepts incoming
419    TCP connections.  */
420
421 int
422 bind_local (const ip_address *bind_address, int *port)
423 {
424   int sock;
425   int family = AF_INET;
426   struct sockaddr_storage ss;
427   struct sockaddr *sa = (struct sockaddr *)&ss;
428
429   /* For setting options with setsockopt. */
430   int setopt_val = 1;
431   void *setopt_ptr = (void *)&setopt_val;
432   socklen_t setopt_size = sizeof (setopt_val);
433
434 #ifdef ENABLE_IPV6
435   if (bind_address->type == IPV6_ADDRESS) 
436     family = AF_INET6;
437 #endif
438
439   sock = socket (family, SOCK_STREAM, 0);
440   if (sock < 0)
441     return -1;
442
443 #ifdef SO_REUSEADDR
444   setsockopt (sock, SOL_SOCKET, SO_REUSEADDR, setopt_ptr, setopt_size);
445 #endif
446
447 #ifdef ENABLE_IPV6
448 # ifdef HAVE_IPV6_V6ONLY
449   if (family == AF_INET6)
450     setsockopt (sock, IPPROTO_IPV6, IPV6_V6ONLY, setopt_ptr, setopt_size);
451 # endif
452 #endif
453
454   xzero (ss);
455   sockaddr_set_data (sa, bind_address, *port);
456   if (bind (sock, sa, sockaddr_size (sa)) < 0)
457     {
458       xclose (sock);
459       return -1;
460     }
461   DEBUGP (("Local socket fd %d bound.\n", sock));
462
463   /* If *PORT is 0, find out which port we've bound to.  */
464   if (*port == 0)
465     {
466       socklen_t sa_len = sockaddr_size (sa);
467       if (getsockname (sock, sa, &sa_len) < 0)
468         {
469           /* If we can't find out the socket's local address ("name"),
470              something is seriously wrong with the socket, and it's
471              unusable for us anyway because we must know the chosen
472              port.  */
473           xclose (sock);
474           return -1;
475         }
476       sockaddr_get_data (sa, NULL, port);
477       DEBUGP (("binding to address %s using port %i.\n", 
478                pretty_print_address (bind_address), *port));
479     }
480   if (listen (sock, 1) < 0)
481     {
482       xclose (sock);
483       return -1;
484     }
485   return sock;
486 }
487
488 /* Like a call to accept(), but with the added check for timeout.
489
490    In other words, accept a client connection on LOCAL_SOCK, and
491    return the new socket used for communication with the client.
492    LOCAL_SOCK should have been bound, e.g. using bind_local().
493
494    The caller is blocked until a connection is established.  If no
495    connection is established for opt.connect_timeout seconds, the
496    function exits with an error status.  */
497
498 int
499 accept_connection (int local_sock)
500 {
501   int sock;
502
503   /* We don't need the values provided by accept, but accept
504      apparently requires them to be present.  */
505   struct sockaddr_storage ss;
506   struct sockaddr *sa = (struct sockaddr *)&ss;
507   socklen_t addrlen = sizeof (ss);
508
509 #ifdef HAVE_SELECT
510   if (opt.connect_timeout)
511     {
512       int test = select_fd (local_sock, opt.connect_timeout, WAIT_FOR_READ);
513       if (test == 0)
514         errno = ETIMEDOUT;
515       if (test <= 0)
516         return -1;
517     }
518 #endif
519   sock = accept (local_sock, sa, &addrlen);
520   DEBUGP (("Accepted client at socket %d.\n", sock));
521   return sock;
522 }
523
524 /* Get the IP address associated with the connection on FD and store
525    it to IP.  Return 1 on success, 0 otherwise.
526
527    If ENDPOINT is ENDPOINT_LOCAL, it returns the address of the local
528    (client) side of the socket.  Else if ENDPOINT is ENDPOINT_PEER, it
529    returns the address of the remote (peer's) side of the socket.  */
530
531 int
532 socket_ip_address (int sock, ip_address *ip, int endpoint)
533 {
534   struct sockaddr_storage storage;
535   struct sockaddr *sockaddr = (struct sockaddr *)&storage;
536   socklen_t addrlen = sizeof (storage);
537   int ret;
538
539   if (endpoint == ENDPOINT_LOCAL)
540     ret = getsockname (sock, sockaddr, &addrlen);
541   else if (endpoint == ENDPOINT_PEER)
542     ret = getpeername (sock, sockaddr, &addrlen);
543   else
544     abort ();
545   if (ret < 0)
546     return 0;
547
548   switch (sockaddr->sa_family)
549     {
550 #ifdef ENABLE_IPV6
551     case AF_INET6:
552       {
553         struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *)&storage;
554         ip->type = IPV6_ADDRESS;
555         ADDRESS_IPV6_IN6_ADDR (ip) = sa6->sin6_addr;
556 #ifdef HAVE_SOCKADDR_IN6_SCOPE_ID
557         ADDRESS_IPV6_SCOPE (ip) = sa6->sin6_scope_id;
558 #endif
559         DEBUGP (("conaddr is: %s\n", pretty_print_address (ip)));
560         return 1;
561       }
562 #endif
563     case AF_INET:
564       {
565         struct sockaddr_in *sa = (struct sockaddr_in *)&storage;
566         ip->type = IPV4_ADDRESS;
567         ADDRESS_IPV4_IN_ADDR (ip) = sa->sin_addr;
568         DEBUGP (("conaddr is: %s\n", pretty_print_address (ip)));
569         return 1;
570       }
571     default:
572       abort ();
573     }
574
575   return 0;
576 }
577
578 /* Return non-zero if the error from the connect code can be
579    considered retryable.  Wget normally retries after errors, but the
580    exception are the "unsupported protocol" type errors (possible on
581    IPv4/IPv6 dual family systems) and "connection refused".  */
582
583 int
584 retryable_socket_connect_error (int err)
585 {
586   /* Have to guard against some of these values not being defined.
587      Cannot use a switch statement because some of the values might be
588      equal.  */
589   if (0
590 #ifdef EAFNOSUPPORT
591       || err == EAFNOSUPPORT
592 #endif
593 #ifdef EPFNOSUPPORT
594       || err == EPFNOSUPPORT
595 #endif
596 #ifdef ESOCKTNOSUPPORT          /* no, "sockt" is not a typo! */
597       || err == ESOCKTNOSUPPORT
598 #endif
599 #ifdef EPROTONOSUPPORT
600       || err == EPROTONOSUPPORT
601 #endif
602 #ifdef ENOPROTOOPT
603       || err == ENOPROTOOPT
604 #endif
605       /* Apparently, older versions of Linux and BSD used EINVAL
606          instead of EAFNOSUPPORT and such.  */
607       || err == EINVAL
608       )
609     return 0;
610
611   if (err == ECONNREFUSED && !opt.retry_connrefused)
612     return 0;
613
614   return 1;
615 }
616
617 int
618 socket_has_inet6 (void)
619 {
620   static int supported = -1;
621   if (supported == -1)
622     {
623       int sock = socket (AF_INET6, SOCK_STREAM, 0);
624       if (sock < 0)
625         supported = 0;
626       else
627         {
628           xclose (sock);
629           supported = 1;
630         }
631     }
632   return supported;
633 }
634
635 #ifdef HAVE_SELECT
636
637 /* Wait for file descriptor FD to be readable or writable or both,
638    timing out after MAXTIME seconds.  Returns 1 if FD is available, 0
639    for timeout and -1 for error.  The argument WAIT_FOR can be a
640    combination of WAIT_READ and WAIT_WRITE.
641
642    This is a mere convenience wrapper around the select call, and
643    should be taken as such.  */
644
645 int
646 select_fd (int fd, double maxtime, int wait_for)
647 {
648   fd_set fdset;
649   fd_set *rd = NULL, *wr = NULL;
650   struct timeval tmout;
651   int result;
652
653   FD_ZERO (&fdset);
654   FD_SET (fd, &fdset);
655   if (wait_for & WAIT_FOR_READ)
656     rd = &fdset;
657   if (wait_for & WAIT_FOR_WRITE)
658     wr = &fdset;
659
660   tmout.tv_sec = (long) maxtime;
661   tmout.tv_usec = 1000000L * (maxtime - (long) maxtime);
662
663   do
664     result = select (fd + 1, rd, wr, NULL, &tmout);
665   while (result < 0 && errno == EINTR);
666
667   return result;
668 }
669
670 #endif /* HAVE_SELECT */
671 \f
672 /* Basic socket operations, mostly EINTR wrappers.  */
673
674 #ifdef WINDOWS
675 # define read(fd, buf, cnt) recv (fd, buf, cnt, 0)
676 # define write(fd, buf, cnt) send (fd, buf, cnt, 0)
677 # define close(fd) closesocket (fd)
678 #endif
679
680 #ifdef __BEOS__
681 # define read(fd, buf, cnt) recv (fd, buf, cnt, 0)
682 # define write(fd, buf, cnt) send (fd, buf, cnt, 0)
683 #endif
684
685 static int
686 sock_read (int fd, char *buf, int bufsize)
687 {
688   int res;
689   do
690     res = read (fd, buf, bufsize);
691   while (res == -1 && errno == EINTR);
692   return res;
693 }
694
695 static int
696 sock_write (int fd, char *buf, int bufsize)
697 {
698   int res = 0;
699   do
700     res = write (fd, buf, bufsize);
701   while (res == -1 && errno == EINTR);
702   return res;
703 }
704
705 static int
706 sock_poll (int fd, double timeout, int wait_for)
707 {
708 #ifdef HAVE_SELECT
709   return select_fd (fd, timeout, wait_for);
710 #else
711   return 1;
712 #endif
713 }
714
715 static void
716 sock_close (int fd)
717 {
718   close (fd);
719   DEBUGP (("Closed fd %d\n", fd));
720 }
721 #undef read
722 #undef write
723 #undef close
724 \f
725 /* Reading and writing from the network.  We build around the socket
726    (file descriptor) API, but support "extended" operations for things
727    that are not mere file descriptors under the hood, such as SSL
728    sockets.
729
730    That way the user code can call xread(fd, ...) and we'll run read
731    or SSL_read or whatever is necessary.  */
732
733 static struct hash_table *transport_map;
734 static int transport_map_modified_tick;
735
736 struct transport_info {
737   xreader_t reader;
738   xwriter_t writer;
739   xpoller_t poller;
740   xcloser_t closer;
741   void *ctx;
742 };
743
744 /* Register the transport layer operations that will be used when
745    reading, writing, and polling FD.
746
747    This should be used for transport layers like SSL that piggyback on
748    sockets.  FD should otherwise be a real socket, on which you can
749    call getpeername, etc.  */
750
751 void
752 register_transport (int fd, xreader_t reader, xwriter_t writer,
753                     xpoller_t poller, xcloser_t closer, void *ctx)
754 {
755   struct transport_info *info;
756
757   /* The file descriptor must be non-negative to be registered.
758      Negative values are ignored by xclose(), and -1 cannot be used as
759      hash key.  */
760   assert (fd >= 0);
761
762   info = xnew (struct transport_info);
763   info->reader = reader;
764   info->writer = writer;
765   info->poller = poller;
766   info->closer = closer;
767   info->ctx = ctx;
768   if (!transport_map)
769     transport_map = hash_table_new (0, NULL, NULL);
770   hash_table_put (transport_map, (void *) fd, info);
771   ++transport_map_modified_tick;
772 }
773
774 /* When xread/xwrite are called multiple times in a loop, they should
775    remember the INFO pointer instead of fetching it every time.  It is
776    not enough to compare FD to LAST_FD because FD might have been
777    closed and reopened.  modified_tick ensures that changes to
778    transport_map will not be unnoticed.
779
780    This is a macro because we want the static storage variables to be
781    per-function.  */
782
783 #define LAZY_RETRIEVE_INFO(info) do {                                   \
784   static struct transport_info *last_info;                              \
785   static int last_fd = -1, last_tick;                                   \
786   if (!transport_map)                                                   \
787     info = NULL;                                                        \
788   else if (last_fd == fd && last_tick == transport_map_modified_tick)   \
789     info = last_info;                                                   \
790   else                                                                  \
791     {                                                                   \
792       info = hash_table_get (transport_map, (void *) fd);               \
793       last_fd = fd;                                                     \
794       last_info = info;                                                 \
795       last_tick = transport_map_modified_tick;                          \
796     }                                                                   \
797 } while (0)
798
799 /* Read no more than BUFSIZE bytes of data from FD, storing them to
800    BUF.  If TIMEOUT is non-zero, the operation aborts if no data is
801    received after that many seconds.  If TIMEOUT is -1, the value of
802    opt.timeout is used for TIMEOUT.  */
803
804 int
805 xread (int fd, char *buf, int bufsize, double timeout)
806 {
807   struct transport_info *info;
808   LAZY_RETRIEVE_INFO (info);
809   if (timeout == -1)
810     timeout = opt.read_timeout;
811   if (timeout)
812     {
813       int test;
814       if (info && info->poller)
815         test = info->poller (fd, timeout, WAIT_FOR_READ, info->ctx);
816       else
817         test = sock_poll (fd, timeout, WAIT_FOR_READ);
818       if (test == 0)
819         errno = ETIMEDOUT;
820       if (test <= 0)
821         return -1;
822     }
823   if (info && info->reader)
824     return info->reader (fd, buf, bufsize, info->ctx);
825   else
826     return sock_read (fd, buf, bufsize);
827 }
828
829 /* Write the entire contents of BUF to FD.  If TIMEOUT is non-zero,
830    the operation aborts if no data is received after that many
831    seconds.  If TIMEOUT is -1, the value of opt.timeout is used for
832    TIMEOUT.  */
833
834 int
835 xwrite (int fd, char *buf, int bufsize, double timeout)
836 {
837   int res;
838   struct transport_info *info;
839   LAZY_RETRIEVE_INFO (info);
840   if (timeout == -1)
841     timeout = opt.read_timeout;
842
843   /* `write' may write less than LEN bytes, thus the loop keeps trying
844      it until all was written, or an error occurred.  */
845   res = 0;
846   while (bufsize > 0)
847     {
848       if (timeout)
849         {
850           int test;
851           if (info && info->poller)
852             test = info->poller (fd, timeout, WAIT_FOR_WRITE, info->ctx);
853           else
854             test = sock_poll (fd, timeout, WAIT_FOR_WRITE);
855           if (test == 0)
856             errno = ETIMEDOUT;
857           if (test <= 0)
858             return -1;
859         }
860       if (info && info->writer)
861         res = info->writer (fd, buf, bufsize, info->ctx);
862       else
863         res = sock_write (fd, buf, bufsize);
864       if (res <= 0)
865         break;
866       buf += res;
867       bufsize -= res;
868     }
869   return res;
870 }
871
872 /* Close the file descriptor FD.  */
873
874 void
875 xclose (int fd)
876 {
877   struct transport_info *info;
878   if (fd < 0)
879     return;
880
881   /* Don't use LAZY_RETRIEVE_INFO because xclose() is only called once
882      per socket, so that particular optimization wouldn't work.  */
883   info = NULL;
884   if (transport_map)
885     info = hash_table_get (transport_map, (void *) fd);
886
887   if (info && info->closer)
888     info->closer (fd, info->ctx);
889   else
890     sock_close (fd);
891
892   if (info)
893     {
894       hash_table_remove (transport_map, (void *) fd);
895       xfree (info);
896       ++transport_map_modified_tick;
897     }
898 }