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