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