]> sjero.net Git - wget/blob - src/http.c
[svn] Allow Wget to be compiled with a K&R compiler.
[wget] / src / http.c
1 /* HTTP support.
2    Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001
3    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 2 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, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
20
21 #include <config.h>
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <sys/types.h>
26 #ifdef HAVE_STRING_H
27 # include <string.h>
28 #else
29 # include <strings.h>
30 #endif
31 #ifdef HAVE_UNISTD_H
32 # include <unistd.h>
33 #endif
34 #include <assert.h>
35 #include <errno.h>
36 #if TIME_WITH_SYS_TIME
37 # include <sys/time.h>
38 # include <time.h>
39 #else
40 # if HAVE_SYS_TIME_H
41 #  include <sys/time.h>
42 # else
43 #  include <time.h>
44 # endif
45 #endif
46
47 #include "wget.h"
48 #include "utils.h"
49 #include "url.h"
50 #include "host.h"
51 #include "rbuf.h"
52 #include "retr.h"
53 #include "headers.h"
54 #include "connect.h"
55 #include "fnmatch.h"
56 #include "netrc.h"
57 #ifdef HAVE_SSL
58 # include "gen_sslfunc.h"
59 #endif /* HAVE_SSL */
60 #include "cookies.h"
61 #ifdef USE_DIGEST
62 # include "gen-md5.h"
63 #endif
64
65 extern char *version_string;
66
67 #ifndef errno
68 extern int errno;
69 #endif
70 \f
71 static int cookies_loaded_p;
72
73 #define TEXTHTML_S "text/html"
74 #define HTTP_ACCEPT "*/*"
75
76 /* Some status code validation macros: */
77 #define H_20X(x)        (((x) >= 200) && ((x) < 300))
78 #define H_PARTIAL(x)    ((x) == HTTP_STATUS_PARTIAL_CONTENTS)
79 #define H_REDIRECTED(x) (((x) == HTTP_STATUS_MOVED_PERMANENTLY) \
80                          || ((x) == HTTP_STATUS_MOVED_TEMPORARILY))
81
82 /* HTTP/1.0 status codes from RFC1945, provided for reference.  */
83 /* Successful 2xx.  */
84 #define HTTP_STATUS_OK                  200
85 #define HTTP_STATUS_CREATED             201
86 #define HTTP_STATUS_ACCEPTED            202
87 #define HTTP_STATUS_NO_CONTENT          204
88 #define HTTP_STATUS_PARTIAL_CONTENTS    206
89
90 /* Redirection 3xx.  */
91 #define HTTP_STATUS_MULTIPLE_CHOICES    300
92 #define HTTP_STATUS_MOVED_PERMANENTLY   301
93 #define HTTP_STATUS_MOVED_TEMPORARILY   302
94 #define HTTP_STATUS_NOT_MODIFIED        304
95
96 /* Client error 4xx.  */
97 #define HTTP_STATUS_BAD_REQUEST         400
98 #define HTTP_STATUS_UNAUTHORIZED        401
99 #define HTTP_STATUS_FORBIDDEN           403
100 #define HTTP_STATUS_NOT_FOUND           404
101
102 /* Server errors 5xx.  */
103 #define HTTP_STATUS_INTERNAL            500
104 #define HTTP_STATUS_NOT_IMPLEMENTED     501
105 #define HTTP_STATUS_BAD_GATEWAY         502
106 #define HTTP_STATUS_UNAVAILABLE         503
107
108 \f
109 /* Parse the HTTP status line, which is of format:
110
111    HTTP-Version SP Status-Code SP Reason-Phrase
112
113    The function returns the status-code, or -1 if the status line is
114    malformed.  The pointer to reason-phrase is returned in RP.  */
115 static int
116 parse_http_status_line (const char *line, const char **reason_phrase_ptr)
117 {
118   /* (the variables must not be named `major' and `minor', because
119      that breaks compilation with SunOS4 cc.)  */
120   int mjr, mnr, statcode;
121   const char *p;
122
123   *reason_phrase_ptr = NULL;
124
125   /* The standard format of HTTP-Version is: `HTTP/X.Y', where X is
126      major version, and Y is minor version.  */
127   if (strncmp (line, "HTTP/", 5) != 0)
128     return -1;
129   line += 5;
130
131   /* Calculate major HTTP version.  */
132   p = line;
133   for (mjr = 0; ISDIGIT (*line); line++)
134     mjr = 10 * mjr + (*line - '0');
135   if (*line != '.' || p == line)
136     return -1;
137   ++line;
138
139   /* Calculate minor HTTP version.  */
140   p = line;
141   for (mnr = 0; ISDIGIT (*line); line++)
142     mnr = 10 * mnr + (*line - '0');
143   if (*line != ' ' || p == line)
144     return -1;
145   /* Wget will accept only 1.0 and higher HTTP-versions.  The value of
146      minor version can be safely ignored.  */
147   if (mjr < 1)
148     return -1;
149   ++line;
150
151   /* Calculate status code.  */
152   if (!(ISDIGIT (*line) && ISDIGIT (line[1]) && ISDIGIT (line[2])))
153     return -1;
154   statcode = 100 * (*line - '0') + 10 * (line[1] - '0') + (line[2] - '0');
155
156   /* Set up the reason phrase pointer.  */
157   line += 3;
158   /* RFC2068 requires SPC here, but we allow the string to finish
159      here, in case no reason-phrase is present.  */
160   if (*line != ' ')
161     {
162       if (!*line)
163         *reason_phrase_ptr = line;
164       else
165         return -1;
166     }
167   else
168     *reason_phrase_ptr = line + 1;
169
170   return statcode;
171 }
172 \f
173 /* Functions to be used as arguments to header_process(): */
174
175 struct http_process_range_closure {
176   long first_byte_pos;
177   long last_byte_pos;
178   long entity_length;
179 };
180
181 /* Parse the `Content-Range' header and extract the information it
182    contains.  Returns 1 if successful, -1 otherwise.  */
183 static int
184 http_process_range (const char *hdr, void *arg)
185 {
186   struct http_process_range_closure *closure
187     = (struct http_process_range_closure *)arg;
188   long num;
189
190   /* Certain versions of Nutscape proxy server send out
191      `Content-Length' without "bytes" specifier, which is a breach of
192      RFC2068 (as well as the HTTP/1.1 draft which was current at the
193      time).  But hell, I must support it...  */
194   if (!strncasecmp (hdr, "bytes", 5))
195     {
196       hdr += 5;
197       /* "JavaWebServer/1.1.1" sends "bytes: x-y/z", contrary to the
198          HTTP spec. */
199       if (*hdr == ':')
200         ++hdr;
201       hdr += skip_lws (hdr);
202       if (!*hdr)
203         return 0;
204     }
205   if (!ISDIGIT (*hdr))
206     return 0;
207   for (num = 0; ISDIGIT (*hdr); hdr++)
208     num = 10 * num + (*hdr - '0');
209   if (*hdr != '-' || !ISDIGIT (*(hdr + 1)))
210     return 0;
211   closure->first_byte_pos = num;
212   ++hdr;
213   for (num = 0; ISDIGIT (*hdr); hdr++)
214     num = 10 * num + (*hdr - '0');
215   if (*hdr != '/' || !ISDIGIT (*(hdr + 1)))
216     return 0;
217   closure->last_byte_pos = num;
218   ++hdr;
219   for (num = 0; ISDIGIT (*hdr); hdr++)
220     num = 10 * num + (*hdr - '0');
221   closure->entity_length = num;
222   return 1;
223 }
224
225 /* Place 1 to ARG if the HDR contains the word "none", 0 otherwise.
226    Used for `Accept-Ranges'.  */
227 static int
228 http_process_none (const char *hdr, void *arg)
229 {
230   int *where = (int *)arg;
231
232   if (strstr (hdr, "none"))
233     *where = 1;
234   else
235     *where = 0;
236   return 1;
237 }
238
239 /* Place the malloc-ed copy of HDR hdr, to the first `;' to ARG.  */
240 static int
241 http_process_type (const char *hdr, void *arg)
242 {
243   char **result = (char **)arg;
244   /* Locate P on `;' or the terminating zero, whichever comes first. */
245   const char *p = strchr (hdr, ';');
246   if (!p)
247     p = hdr + strlen (hdr);
248   while (p > hdr && ISSPACE (*(p - 1)))
249     --p;
250   *result = strdupdelim (hdr, p);
251   return 1;
252 }
253
254 /* Check whether the `Connection' header is set to "keep-alive". */
255 static int
256 http_process_connection (const char *hdr, void *arg)
257 {
258   int *flag = (int *)arg;
259   if (!strcasecmp (hdr, "Keep-Alive"))
260     *flag = 1;
261   return 1;
262 }
263 \f
264 /* Persistent connections.  Currently, we cache the most recently used
265    connection as persistent, provided that the HTTP server agrees to
266    make it such.  The persistence data is stored in the variables
267    below.  Ideally, it would be in a structure, and it should be
268    possible to cache an arbitrary fixed number of these connections.
269
270    I think the code is quite easy to extend in that direction.  */
271
272 /* Whether a persistent connection is active. */
273 static int pc_active_p;
274 /* Host and port of currently active persistent connection. */
275 static struct address_list *pc_last_host_ip;
276 static unsigned short pc_last_port;
277
278 /* File descriptor of the currently active persistent connection. */
279 static int pc_last_fd;
280
281 #ifdef HAVE_SSL
282 /* Whether a ssl handshake has occoured on this connection */
283 static int pc_active_ssl;
284 /* SSL connection of the currently active persistent connection. */
285 static SSL *pc_last_ssl;
286 #endif /* HAVE_SSL */
287
288 /* Mark the persistent connection as invalid.  This is used by the
289    CLOSE_* macros after they forcefully close a registered persistent
290    connection.  This does not close the file descriptor -- it is left
291    to the caller to do that.  (Maybe it should, though.)  */
292
293 static void
294 invalidate_persistent (void)
295 {
296   pc_active_p = 0;
297 #ifdef HAVE_SSL
298   pc_active_ssl = 0;
299 #endif /* HAVE_SSL */
300   if (pc_last_host_ip != NULL)
301     {
302       address_list_release (pc_last_host_ip);
303       pc_last_host_ip = NULL;
304     }
305   DEBUGP (("Invalidating fd %d from further reuse.\n", pc_last_fd));
306 }
307
308 /* Register FD, which should be a TCP/IP connection to HOST:PORT, as
309    persistent.  This will enable someone to use the same connection
310    later.  In the context of HTTP, this must be called only AFTER the
311    response has been received and the server has promised that the
312    connection will remain alive.
313
314    If a previous connection was persistent, it is closed. */
315
316 #ifdef HAVE_SSL
317 static void
318 register_persistent (const char *host, unsigned short port, int fd, SSL *ssl)
319 {
320 #else
321 static void
322 register_persistent (const char *host, unsigned short port, int fd)
323 {
324 #endif
325   if (pc_active_p)
326     {
327       if (pc_last_fd == fd)
328         {
329           /* The connection FD is already registered.  Nothing to
330              do. */
331           return;
332         }
333       else
334         {
335           /* The old persistent connection is still active; let's
336              close it first.  This situation arises whenever a
337              persistent connection exists, but we then connect to a
338              different host, and try to register a persistent
339              connection to that one.  */
340 #ifdef HAVE_SSL
341           /* The ssl disconnect has to take place before the closing
342              of pc_last_fd.  */
343           if (pc_last_ssl)
344             shutdown_ssl(pc_last_ssl);
345 #endif
346           CLOSE (pc_last_fd);
347           invalidate_persistent ();
348         }
349     }
350
351   assert (pc_last_host_ip == NULL);
352
353   /* This lookup_host cannot fail, because it has the results in the
354      cache.  */
355   pc_last_host_ip = lookup_host (host, 1);
356   assert (pc_last_host_ip != NULL);
357
358   pc_last_port = port;
359   pc_last_fd = fd;
360   pc_active_p = 1;
361 #ifdef HAVE_SSL
362   pc_last_ssl = ssl;
363   pc_active_ssl = ssl ? 1 : 0;
364 #endif
365   DEBUGP (("Registered fd %d for persistent reuse.\n", fd));
366 }
367
368 #ifdef HAVE_SSL
369 # define SHUTDOWN_SSL(ssl) do {         \
370   if (ssl)                              \
371     shutdown_ssl (ssl);                 \
372 } while (0)
373 #else
374 # define SHUTDOWN_SSL(ssl) 
375 #endif
376
377 /* Return non-zero if a persistent connection is available for
378    connecting to HOST:PORT.  */
379
380 #ifdef HAVE_SSL
381 static int
382 persistent_available_p (const char *host, unsigned short port, int ssl)
383 {
384 #else
385 static int
386 persistent_available_p (const char *host, unsigned short port)
387 {
388 #endif
389   int success;
390   struct address_list *this_host_ip;
391
392   /* First, check whether a persistent connection is active at all.  */
393   if (!pc_active_p)
394     return 0;
395   /* Second, check if the active connection pertains to the correct
396      (HOST, PORT) ordered pair.  */
397   if (port != pc_last_port)
398     return 0;
399
400 #ifdef HAVE_SSL
401   /* Second, a): check if current connection is (not) ssl, too.  This
402      test is unlikely to fail because HTTP and HTTPS typicaly use
403      different ports.  Yet it is possible, or so I [Christian
404      Fraenkel] have been told, to run HTTPS and HTTP simultaneus on
405      the same port.  */
406   if (ssl != pc_active_ssl)
407     return 0;
408 #endif /* HAVE_SSL */
409
410   this_host_ip = lookup_host (host, 1);
411   if (!this_host_ip)
412     return 0;
413
414   /* To equate the two host names for the purposes of persistent
415      connections, they need to share all the IP addresses in the
416      list.  */
417   success = address_list_match_all (pc_last_host_ip, this_host_ip);
418   address_list_release (this_host_ip);
419   if (!success)
420     return 0;
421
422   /* Third: check whether the connection is still open.  This is
423      important because most server implement a liberal (short) timeout
424      on persistent connections.  Wget can of course always reconnect
425      if the connection doesn't work out, but it's nicer to know in
426      advance.  This test is a logical followup of the first test, but
427      is "expensive" and therefore placed at the end of the list.  */
428   if (!test_socket_open (pc_last_fd))
429     {
430       /* Oops, the socket is no longer open.  Now that we know that,
431          let's invalidate the persistent connection before returning
432          0.  */
433       CLOSE (pc_last_fd);
434 #ifdef HAVE_SSL
435       SHUTDOWN_SSL (pc_last_ssl);
436       pc_last_ssl = NULL;
437 #endif
438       invalidate_persistent ();
439       return 0;
440     }
441   return 1;
442 }
443
444 /* The idea behind these two CLOSE macros is to distinguish between
445    two cases: one when the job we've been doing is finished, and we
446    want to close the connection and leave, and two when something is
447    seriously wrong and we're closing the connection as part of
448    cleanup.
449
450    In case of keep_alive, CLOSE_FINISH should leave the connection
451    open, while CLOSE_INVALIDATE should still close it.
452
453    Note that the semantics of the flag `keep_alive' is "this
454    connection *will* be reused (the server has promised not to close
455    the connection once we're done)", while the semantics of
456    `pc_active_p && (fd) == pc_last_fd' is "we're *now* using an
457    active, registered connection".  */
458
459 #define CLOSE_FINISH(fd) do {                   \
460   if (!keep_alive)                              \
461     {                                           \
462       SHUTDOWN_SSL (ssl);                       \
463       CLOSE (fd);                               \
464       if (pc_active_p && (fd) == pc_last_fd)    \
465         invalidate_persistent ();               \
466     }                                           \
467 } while (0)
468
469 #define CLOSE_INVALIDATE(fd) do {               \
470   SHUTDOWN_SSL (ssl);                           \
471   CLOSE (fd);                                   \
472   if (pc_active_p && (fd) == pc_last_fd)        \
473     invalidate_persistent ();                   \
474 } while (0)
475 \f
476 struct http_stat
477 {
478   long len;                     /* received length */
479   long contlen;                 /* expected length */
480   long restval;                 /* the restart value */
481   int res;                      /* the result of last read */
482   char *newloc;                 /* new location (redirection) */
483   char *remote_time;            /* remote time-stamp string */
484   char *error;                  /* textual HTTP error */
485   int statcode;                 /* status code */
486   long dltime;                  /* time of the download */
487   int no_truncate;              /* whether truncating the file is
488                                    forbidden. */
489   const char *referer;          /* value of the referer header. */
490   char **local_file;            /* local file. */
491 };
492
493 static void
494 free_hstat (struct http_stat *hs)
495 {
496   FREE_MAYBE (hs->newloc);
497   FREE_MAYBE (hs->remote_time);
498   FREE_MAYBE (hs->error);
499
500   /* Guard against being called twice. */
501   hs->newloc = NULL;
502   hs->remote_time = NULL;
503   hs->error = NULL;
504 }
505
506 static char *create_authorization_line PARAMS ((const char *, const char *,
507                                                 const char *, const char *,
508                                                 const char *));
509 static char *basic_authentication_encode PARAMS ((const char *, const char *,
510                                                   const char *));
511 static int known_authentication_scheme_p PARAMS ((const char *));
512
513 time_t http_atotm PARAMS ((char *));
514
515 #define BEGINS_WITH(line, string_constant)                              \
516   (!strncasecmp (line, string_constant, sizeof (string_constant) - 1)   \
517    && (ISSPACE (line[sizeof (string_constant) - 1])                     \
518        || !line[sizeof (string_constant) - 1]))
519
520 /* Retrieve a document through HTTP protocol.  It recognizes status
521    code, and correctly handles redirections.  It closes the network
522    socket.  If it receives an error from the functions below it, it
523    will print it if there is enough information to do so (almost
524    always), returning the error to the caller (i.e. http_loop).
525
526    Various HTTP parameters are stored to hs.  Although it parses the
527    response code correctly, it is not used in a sane way.  The caller
528    can do that, though.
529
530    If PROXY is non-NULL, the connection will be made to the proxy
531    server, and u->url will be requested.  */
532 static uerr_t
533 gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy)
534 {
535   char *request, *type, *command, *full_path;
536   char *user, *passwd;
537   char *pragma_h, *referer, *useragent, *range, *wwwauth;
538   char *authenticate_h;
539   char *proxyauth;
540   char *all_headers;
541   char *port_maybe;
542   char *request_keep_alive;
543   int sock, hcount, num_written, all_length, statcode;
544   long contlen, contrange;
545   struct url *conn;
546   FILE *fp;
547   int auth_tried_already;
548   struct rbuf rbuf;
549 #ifdef HAVE_SSL
550   static SSL_CTX *ssl_ctx = NULL;
551   SSL *ssl = NULL;
552 #endif /* HAVE_SSL */
553   char *cookies = NULL;
554
555   /* Whether this connection will be kept alive after the HTTP request
556      is done. */
557   int keep_alive;
558
559   /* Flags that detect the two ways of specifying HTTP keep-alive
560      response.  */
561   int http_keep_alive_1, http_keep_alive_2;
562
563   /* Whether keep-alive should be inhibited. */
564   int inhibit_keep_alive;
565
566   /* Whether we need to print the host header with braces around host,
567      e.g. "Host: [3ffe:8100:200:2::2]:1234" instead of the usual
568      "Host: symbolic-name:1234". */
569   int squares_around_host = 0;
570
571 #ifdef HAVE_SSL
572   /* initialize ssl_ctx on first run */
573   if (!ssl_ctx)
574     {
575       uerr_t err = init_ssl (&ssl_ctx);
576       if (err != 0)
577         {
578           switch (err)
579             {
580             case SSLERRCTXCREATE:
581               /* this is fatal */
582               logprintf (LOG_NOTQUIET, _("Failed to set up an SSL context\n"));
583               ssl_printerrors ();
584               return err;
585             case SSLERRCERTFILE:
586               /* try without certfile */
587               logprintf (LOG_NOTQUIET,
588                          _("Failed to load certificates from %s\n"),
589                          opt.sslcertfile);
590               ssl_printerrors ();
591               logprintf (LOG_NOTQUIET,
592                          _("Trying without the specified certificate\n"));
593               break;
594             case SSLERRCERTKEY:
595               logprintf (LOG_NOTQUIET,
596                          _("Failed to get certificate key from %s\n"),
597                          opt.sslcertkey);
598               ssl_printerrors ();
599               logprintf (LOG_NOTQUIET,
600                          _("Trying without the specified certificate\n"));
601               break;
602             default:
603               break;
604             }
605         }
606     }
607 #endif /* HAVE_SSL */
608
609   if (!(*dt & HEAD_ONLY))
610     /* If we're doing a GET on the URL, as opposed to just a HEAD, we need to
611        know the local filename so we can save to it. */
612     assert (*hs->local_file != NULL);
613
614   authenticate_h = 0;
615   auth_tried_already = 0;
616
617   inhibit_keep_alive = !opt.http_keep_alive || proxy != NULL;
618
619  again:
620   /* We need to come back here when the initial attempt to retrieve
621      without authorization header fails.  (Expected to happen at least
622      for the Digest authorization scheme.)  */
623
624   keep_alive = 0;
625   http_keep_alive_1 = http_keep_alive_2 = 0;
626
627   /* Initialize certain elements of struct http_stat.  */
628   hs->len = 0L;
629   hs->contlen = -1;
630   hs->res = -1;
631   hs->newloc = NULL;
632   hs->remote_time = NULL;
633   hs->error = NULL;
634
635   /* If we're using a proxy, we will be connecting to the proxy
636      server. */
637   conn = proxy ? proxy : u;
638
639   /* First: establish the connection.  */
640   if (inhibit_keep_alive
641       ||
642 #ifndef HAVE_SSL
643       !persistent_available_p (conn->host, conn->port)
644 #else
645       !persistent_available_p (conn->host, conn->port,
646                                u->scheme == SCHEME_HTTPS)
647 #endif /* HAVE_SSL */
648       )
649     {
650       struct address_list *al = lookup_host (conn->host, 0);
651       if (!al)
652         return HOSTERR;
653       set_connection_host_name (conn->host);
654       sock = connect_to_many (al, conn->port, 0);
655       set_connection_host_name (NULL);
656       address_list_release (al);
657
658       if (sock < 0)
659         return errno == ECONNREFUSED ? CONREFUSED : CONERROR;
660
661 #ifdef HAVE_SSL
662      if (conn->scheme == SCHEME_HTTPS)
663        if (connect_ssl (&ssl, ssl_ctx,sock) != 0)
664          {
665            logputs (LOG_VERBOSE, "\n");
666            logprintf (LOG_NOTQUIET, _("Unable to establish SSL connection.\n"));
667            ssl_printerrors ();
668            CLOSE (sock);
669            return CONSSLERR;
670          }
671 #endif /* HAVE_SSL */
672     }
673   else
674     {
675       logprintf (LOG_VERBOSE, _("Reusing connection to %s:%hu.\n"),
676                  conn->host, conn->port);
677       /* #### pc_last_fd should be accessed through an accessor
678          function.  */
679       sock = pc_last_fd;
680 #ifdef HAVE_SSL
681       ssl = pc_last_ssl;
682 #endif /* HAVE_SSL */
683       DEBUGP (("Reusing fd %d.\n", sock));
684     }
685
686   command = (*dt & HEAD_ONLY) ? "HEAD" : "GET";
687
688   referer = NULL;
689   if (hs->referer)
690     {
691       referer = (char *)alloca (9 + strlen (hs->referer) + 3);
692       sprintf (referer, "Referer: %s\r\n", hs->referer);
693     }
694
695   if (*dt & SEND_NOCACHE)
696     pragma_h = "Pragma: no-cache\r\n";
697   else
698     pragma_h = "";
699
700   if (hs->restval)
701     {
702       range = (char *)alloca (13 + numdigit (hs->restval) + 4);
703       /* Gag me!  Some servers (e.g. WebSitePro) have been known to
704          respond to the following `Range' format by generating a
705          multipart/x-byte-ranges MIME document!  This MIME type was
706          present in an old draft of the byteranges specification.
707          HTTP/1.1 specifies a multipart/byte-ranges MIME type, but
708          only if multiple non-overlapping ranges are requested --
709          which Wget never does.  */
710       sprintf (range, "Range: bytes=%ld-\r\n", hs->restval);
711     }
712   else
713     range = NULL;
714   if (opt.useragent)
715     STRDUP_ALLOCA (useragent, opt.useragent);
716   else
717     {
718       useragent = (char *)alloca (10 + strlen (version_string));
719       sprintf (useragent, "Wget/%s", version_string);
720     }
721   /* Construct the authentication, if userid is present.  */
722   user = u->user;
723   passwd = u->passwd;
724   search_netrc (u->host, (const char **)&user, (const char **)&passwd, 0);
725   user = user ? user : opt.http_user;
726   passwd = passwd ? passwd : opt.http_passwd;
727
728   wwwauth = NULL;
729   if (user && passwd)
730     {
731       if (!authenticate_h)
732         {
733           /* We have the username and the password, but haven't tried
734              any authorization yet.  Let's see if the "Basic" method
735              works.  If not, we'll come back here and construct a
736              proper authorization method with the right challenges.
737
738              If we didn't employ this kind of logic, every URL that
739              requires authorization would have to be processed twice,
740              which is very suboptimal and generates a bunch of false
741              "unauthorized" errors in the server log.
742
743              #### But this logic also has a serious problem when used
744              with stronger authentications: we *first* transmit the
745              username and the password in clear text, and *then*
746              attempt a stronger authentication scheme.  That cannot be
747              right!  We are only fortunate that almost everyone still
748              uses the `Basic' scheme anyway.
749
750              There should be an option to prevent this from happening,
751              for those who use strong authentication schemes and value
752              their passwords.  */
753           wwwauth = basic_authentication_encode (user, passwd, "Authorization");
754         }
755       else
756         {
757           /* Use the full path, i.e. one that includes the leading
758              slash and the query string, but is independent of proxy
759              setting.  */
760           char *pth = url_full_path (u);
761           wwwauth = create_authorization_line (authenticate_h, user, passwd,
762                                                command, pth);
763           xfree (pth);
764         }
765     }
766
767   proxyauth = NULL;
768   if (proxy)
769     {
770       char *proxy_user, *proxy_passwd;
771       /* For normal username and password, URL components override
772          command-line/wgetrc parameters.  With proxy authentication,
773          it's the reverse, because proxy URLs are normally the
774          "permanent" ones, so command-line args should take
775          precedence.  */
776       if (opt.proxy_user && opt.proxy_passwd)
777         {
778           proxy_user = opt.proxy_user;
779           proxy_passwd = opt.proxy_passwd;
780         }
781       else
782         {
783           proxy_user = proxy->user;
784           proxy_passwd = proxy->passwd;
785         }
786       /* #### This does not appear right.  Can't the proxy request,
787          say, `Digest' authentication?  */
788       if (proxy_user && proxy_passwd)
789         proxyauth = basic_authentication_encode (proxy_user, proxy_passwd,
790                                                  "Proxy-Authorization");
791     }
792
793   /* String of the form :PORT.  Used only for non-standard ports. */
794   port_maybe = NULL;
795   if (u->port != scheme_default_port (u->scheme))
796     {
797       port_maybe = (char *)alloca (numdigit (u->port) + 2);
798       sprintf (port_maybe, ":%d", u->port);
799     }
800
801   if (!inhibit_keep_alive)
802     request_keep_alive = "Connection: Keep-Alive\r\n";
803   else
804     request_keep_alive = NULL;
805
806   if (opt.cookies)
807     cookies = build_cookies_request (u->host, u->port, u->path,
808 #ifdef HAVE_SSL
809                                      u->scheme == SCHEME_HTTPS
810 #else
811                                      0
812 #endif
813                                      );
814
815   if (proxy)
816     full_path = xstrdup (u->url);
817   else
818     /* Use the full path, i.e. one that includes the leading slash and
819        the query string.  E.g. if u->path is "foo/bar" and u->query is
820        "param=value", full_path will be "/foo/bar?param=value".  */
821     full_path = url_full_path (u);
822
823   if (strchr (u->host, ':'))
824     squares_around_host = 1;
825
826   /* Allocate the memory for the request.  */
827   request = (char *)alloca (strlen (command)
828                             + strlen (full_path)
829                             + strlen (useragent)
830                             + strlen (u->host)
831                             + (port_maybe ? strlen (port_maybe) : 0)
832                             + strlen (HTTP_ACCEPT)
833                             + (request_keep_alive
834                                ? strlen (request_keep_alive) : 0)
835                             + (referer ? strlen (referer) : 0)
836                             + (cookies ? strlen (cookies) : 0)
837                             + (wwwauth ? strlen (wwwauth) : 0)
838                             + (proxyauth ? strlen (proxyauth) : 0)
839                             + (range ? strlen (range) : 0)
840                             + strlen (pragma_h)
841                             + (opt.user_header ? strlen (opt.user_header) : 0)
842                             + 64);
843   /* Construct the request.  */
844   sprintf (request, "\
845 %s %s HTTP/1.0\r\n\
846 User-Agent: %s\r\n\
847 Host: %s%s%s%s\r\n\
848 Accept: %s\r\n\
849 %s%s%s%s%s%s%s%s\r\n",
850            command, full_path,
851            useragent,
852            squares_around_host ? "[" : "", u->host, squares_around_host ? "]" : "",
853            port_maybe ? port_maybe : "",
854            HTTP_ACCEPT,
855            request_keep_alive ? request_keep_alive : "",
856            referer ? referer : "",
857            cookies ? cookies : "", 
858            wwwauth ? wwwauth : "", 
859            proxyauth ? proxyauth : "", 
860            range ? range : "",
861            pragma_h, 
862            opt.user_header ? opt.user_header : "");
863   DEBUGP (("---request begin---\n%s---request end---\n", request));
864
865   /* Free the temporary memory.  */
866   FREE_MAYBE (wwwauth);
867   FREE_MAYBE (proxyauth);
868   FREE_MAYBE (cookies);
869   xfree (full_path);
870
871   /* Send the request to server.  */
872 #ifdef HAVE_SSL
873   if (conn->scheme == SCHEME_HTTPS)
874     num_written = ssl_iwrite (ssl, request, strlen (request));
875   else
876 #endif /* HAVE_SSL */
877     num_written = iwrite (sock, request, strlen (request));
878
879   if (num_written < 0)
880     {
881       logprintf (LOG_VERBOSE, _("Failed writing HTTP request: %s.\n"),
882                  strerror (errno));
883       CLOSE_INVALIDATE (sock);
884       return WRITEFAILED;
885     }
886   logprintf (LOG_VERBOSE, _("%s request sent, awaiting response... "),
887              proxy ? "Proxy" : "HTTP");
888   contlen = contrange = -1;
889   type = NULL;
890   statcode = -1;
891   *dt &= ~RETROKF;
892
893   /* Before reading anything, initialize the rbuf.  */
894   rbuf_initialize (&rbuf, sock);
895 #ifdef HAVE_SSL
896   if (conn->scheme == SCHEME_HTTPS)
897     rbuf.ssl = ssl;
898   else
899     rbuf.ssl = NULL;
900 #endif /* HAVE_SSL */
901   all_headers = NULL;
902   all_length = 0;
903   /* Header-fetching loop.  */
904   hcount = 0;
905   while (1)
906     {
907       char *hdr;
908       int status;
909
910       ++hcount;
911       /* Get the header.  */
912       status = header_get (&rbuf, &hdr,
913                            /* Disallow continuations for status line.  */
914                            (hcount == 1 ? HG_NO_CONTINUATIONS : HG_NONE));
915
916       /* Check for errors.  */
917       if (status == HG_EOF && *hdr)
918         {
919           /* This used to be an unconditional error, but that was
920              somewhat controversial, because of a large number of
921              broken CGI's that happily "forget" to send the second EOL
922              before closing the connection of a HEAD request.
923
924              So, the deal is to check whether the header is empty
925              (*hdr is zero if it is); if yes, it means that the
926              previous header was fully retrieved, and that -- most
927              probably -- the request is complete.  "...be liberal in
928              what you accept."  Oh boy.  */
929           logputs (LOG_VERBOSE, "\n");
930           logputs (LOG_NOTQUIET, _("End of file while parsing headers.\n"));
931           xfree (hdr);
932           FREE_MAYBE (type);
933           FREE_MAYBE (all_headers);
934           CLOSE_INVALIDATE (sock);
935           return HEOF;
936         }
937       else if (status == HG_ERROR)
938         {
939           logputs (LOG_VERBOSE, "\n");
940           logprintf (LOG_NOTQUIET, _("Read error (%s) in headers.\n"),
941                      strerror (errno));
942           xfree (hdr);
943           FREE_MAYBE (type);
944           FREE_MAYBE (all_headers);
945           CLOSE_INVALIDATE (sock);
946           return HERR;
947         }
948
949       /* If the headers are to be saved to a file later, save them to
950          memory now.  */
951       if (opt.save_headers)
952         {
953           int lh = strlen (hdr);
954           all_headers = (char *)xrealloc (all_headers, all_length + lh + 2);
955           memcpy (all_headers + all_length, hdr, lh);
956           all_length += lh;
957           all_headers[all_length++] = '\n';
958           all_headers[all_length] = '\0';
959         }
960
961       /* Check for status line.  */
962       if (hcount == 1)
963         {
964           const char *error;
965           /* Parse the first line of server response.  */
966           statcode = parse_http_status_line (hdr, &error);
967           hs->statcode = statcode;
968           /* Store the descriptive response.  */
969           if (statcode == -1) /* malformed response */
970             {
971               /* A common reason for "malformed response" error is the
972                  case when no data was actually received.  Handle this
973                  special case.  */
974               if (!*hdr)
975                 hs->error = xstrdup (_("No data received"));
976               else
977                 hs->error = xstrdup (_("Malformed status line"));
978               xfree (hdr);
979               break;
980             }
981           else if (!*error)
982             hs->error = xstrdup (_("(no description)"));
983           else
984             hs->error = xstrdup (error);
985
986           if ((statcode != -1)
987 #ifdef DEBUG
988               && !opt.debug
989 #endif
990               )
991             {
992              if (opt.server_response)
993                logprintf (LOG_VERBOSE, "\n%2d %s", hcount, hdr);
994              else
995                logprintf (LOG_VERBOSE, "%2d %s", statcode, error);
996             }
997
998           goto done_header;
999         }
1000
1001       /* Exit on empty header.  */
1002       if (!*hdr)
1003         {
1004           xfree (hdr);
1005           break;
1006         }
1007
1008       /* Print the header if requested.  */
1009       if (opt.server_response && hcount != 1)
1010         logprintf (LOG_VERBOSE, "\n%2d %s", hcount, hdr);
1011
1012       /* Try getting content-length.  */
1013       if (contlen == -1 && !opt.ignore_length)
1014         if (header_process (hdr, "Content-Length", header_extract_number,
1015                             &contlen))
1016           goto done_header;
1017       /* Try getting content-type.  */
1018       if (!type)
1019         if (header_process (hdr, "Content-Type", http_process_type, &type))
1020           goto done_header;
1021       /* Try getting location.  */
1022       if (!hs->newloc)
1023         if (header_process (hdr, "Location", header_strdup, &hs->newloc))
1024           goto done_header;
1025       /* Try getting last-modified.  */
1026       if (!hs->remote_time)
1027         if (header_process (hdr, "Last-Modified", header_strdup,
1028                             &hs->remote_time))
1029           goto done_header;
1030       /* Try getting cookies. */
1031       if (opt.cookies)
1032         if (header_process (hdr, "Set-Cookie", set_cookie_header_cb, u))
1033           goto done_header;
1034       /* Try getting www-authentication.  */
1035       if (!authenticate_h)
1036         if (header_process (hdr, "WWW-Authenticate", header_strdup,
1037                             &authenticate_h))
1038           goto done_header;
1039       /* Check for accept-ranges header.  If it contains the word
1040          `none', disable the ranges.  */
1041       if (*dt & ACCEPTRANGES)
1042         {
1043           int nonep;
1044           if (header_process (hdr, "Accept-Ranges", http_process_none, &nonep))
1045             {
1046               if (nonep)
1047                 *dt &= ~ACCEPTRANGES;
1048               goto done_header;
1049             }
1050         }
1051       /* Try getting content-range.  */
1052       if (contrange == -1)
1053         {
1054           struct http_process_range_closure closure;
1055           if (header_process (hdr, "Content-Range", http_process_range, &closure))
1056             {
1057               contrange = closure.first_byte_pos;
1058               goto done_header;
1059             }
1060         }
1061       /* Check for keep-alive related responses. */
1062       if (!inhibit_keep_alive)
1063         {
1064           /* Check for the `Keep-Alive' header. */
1065           if (!http_keep_alive_1)
1066             {
1067               if (header_process (hdr, "Keep-Alive", header_exists,
1068                                   &http_keep_alive_1))
1069                 goto done_header;
1070             }
1071           /* Check for `Connection: Keep-Alive'. */
1072           if (!http_keep_alive_2)
1073             {
1074               if (header_process (hdr, "Connection", http_process_connection,
1075                                   &http_keep_alive_2))
1076                 goto done_header;
1077             }
1078         }
1079     done_header:
1080       xfree (hdr);
1081     }
1082
1083   logputs (LOG_VERBOSE, "\n");
1084
1085   if (contlen != -1
1086       && (http_keep_alive_1 || http_keep_alive_2))
1087     {
1088       assert (inhibit_keep_alive == 0);
1089       keep_alive = 1;
1090     }
1091   if (keep_alive)
1092     /* The server has promised that it will not close the connection
1093        when we're done.  This means that we can register it.  */
1094 #ifndef HAVE_SSL
1095     register_persistent (conn->host, conn->port, sock);
1096 #else
1097     register_persistent (conn->host, conn->port, sock, ssl);
1098 #endif /* HAVE_SSL */
1099
1100   if ((statcode == HTTP_STATUS_UNAUTHORIZED)
1101       && authenticate_h)
1102     {
1103       /* Authorization is required.  */
1104       FREE_MAYBE (type);
1105       type = NULL;
1106       free_hstat (hs);
1107       CLOSE_INVALIDATE (sock);  /* would be CLOSE_FINISH, but there
1108                                    might be more bytes in the body. */
1109       if (auth_tried_already)
1110         {
1111           /* If we have tried it already, then there is not point
1112              retrying it.  */
1113         failed:
1114           logputs (LOG_NOTQUIET, _("Authorization failed.\n"));
1115           xfree (authenticate_h);
1116           return AUTHFAILED;
1117         }
1118       else if (!known_authentication_scheme_p (authenticate_h))
1119         {
1120           xfree (authenticate_h);
1121           logputs (LOG_NOTQUIET, _("Unknown authentication scheme.\n"));
1122           return AUTHFAILED;
1123         }
1124       else if (BEGINS_WITH (authenticate_h, "Basic"))
1125         {
1126           /* The authentication scheme is basic, the one we try by
1127              default, and it failed.  There's no sense in trying
1128              again.  */
1129           goto failed;
1130         }
1131       else
1132         {
1133           auth_tried_already = 1;
1134           goto again;
1135         }
1136     }
1137   /* We do not need this anymore.  */
1138   if (authenticate_h)
1139     {
1140       xfree (authenticate_h);
1141       authenticate_h = NULL;
1142     }
1143
1144   /* 20x responses are counted among successful by default.  */
1145   if (H_20X (statcode))
1146     *dt |= RETROKF;
1147
1148   /* Return if redirected.  */
1149   if (H_REDIRECTED (statcode) || statcode == HTTP_STATUS_MULTIPLE_CHOICES)
1150     {
1151       /* RFC2068 says that in case of the 300 (multiple choices)
1152          response, the server can output a preferred URL through
1153          `Location' header; otherwise, the request should be treated
1154          like GET.  So, if the location is set, it will be a
1155          redirection; otherwise, just proceed normally.  */
1156       if (statcode == HTTP_STATUS_MULTIPLE_CHOICES && !hs->newloc)
1157         *dt |= RETROKF;
1158       else
1159         {
1160           logprintf (LOG_VERBOSE,
1161                      _("Location: %s%s\n"),
1162                      hs->newloc ? hs->newloc : _("unspecified"),
1163                      hs->newloc ? _(" [following]") : "");
1164           CLOSE_INVALIDATE (sock);      /* would be CLOSE_FINISH, but there
1165                                            might be more bytes in the body. */
1166           FREE_MAYBE (type);
1167           FREE_MAYBE (all_headers);
1168           return NEWLOCATION;
1169         }
1170     }
1171
1172   if (type && !strncasecmp (type, TEXTHTML_S, strlen (TEXTHTML_S)))
1173     *dt |= TEXTHTML;
1174   else
1175     /* We don't assume text/html by default.  */
1176     *dt &= ~TEXTHTML;
1177
1178   if (opt.html_extension && (*dt & TEXTHTML))
1179     /* -E / --html-extension / html_extension = on was specified, and this is a
1180        text/html file.  If some case-insensitive variation on ".htm[l]" isn't
1181        already the file's suffix, tack on ".html". */
1182     {
1183       char*  last_period_in_local_filename = strrchr(*hs->local_file, '.');
1184
1185       if (last_period_in_local_filename == NULL ||
1186           !(strcasecmp(last_period_in_local_filename, ".htm") == EQ ||
1187             strcasecmp(last_period_in_local_filename, ".html") == EQ))
1188         {
1189           size_t  local_filename_len = strlen(*hs->local_file);
1190           
1191           *hs->local_file = xrealloc(*hs->local_file,
1192                                      local_filename_len + sizeof(".html"));
1193           strcpy(*hs->local_file + local_filename_len, ".html");
1194
1195           *dt |= ADDED_HTML_EXTENSION;
1196         }
1197     }
1198
1199   if (contrange == -1)
1200     {
1201       /* We did not get a content-range header.  This means that the
1202          server did not honor our `Range' request.  Normally, this
1203          means we should reset hs->restval and continue normally.  */
1204
1205       /* However, if `-c' is used, we need to be a bit more careful:
1206
1207          1. If `-c' is specified and the file already existed when
1208          Wget was started, it would be a bad idea for us to start
1209          downloading it from scratch, effectively truncating it.  I
1210          believe this cannot happen unless `-c' was specified.
1211
1212          2. If `-c' is used on a file that is already fully
1213          downloaded, we're requesting bytes after the end of file,
1214          which can result in server not honoring `Range'.  If this is
1215          the case, `Content-Length' will be equal to the length of the
1216          file.  */
1217       if (opt.always_rest)
1218         {
1219           /* Check for condition #2. */
1220           if (hs->restval > 0               /* restart was requested. */
1221               && contlen != -1              /* we got content-length. */
1222               && hs->restval >= contlen     /* file fully downloaded
1223                                                or has shrunk.  */
1224               )
1225             {
1226               logputs (LOG_VERBOSE, _("\
1227 \n    The file is already fully retrieved; nothing to do.\n\n"));
1228               /* In case the caller inspects. */
1229               hs->len = contlen;
1230               hs->res = 0;
1231               /* Mark as successfully retrieved. */
1232               *dt |= RETROKF;
1233               FREE_MAYBE (type);
1234               FREE_MAYBE (all_headers);
1235               CLOSE_INVALIDATE (sock);  /* would be CLOSE_FINISH, but there
1236                                            might be more bytes in the body. */
1237               return RETRUNNEEDED;
1238             }
1239
1240           /* Check for condition #1. */
1241           if (hs->no_truncate)
1242             {
1243               logprintf (LOG_NOTQUIET,
1244                          _("\
1245 \n\
1246 Continued download failed on this file, which conflicts with `-c'.\n\
1247 Refusing to truncate existing file `%s'.\n\n"), *hs->local_file);
1248               FREE_MAYBE (type);
1249               FREE_MAYBE (all_headers);
1250               CLOSE_INVALIDATE (sock);
1251               return CONTNOTSUPPORTED;
1252             }
1253
1254           /* Fallthrough */
1255         }
1256
1257       hs->restval = 0;
1258     }
1259   else if (contrange != hs->restval ||
1260            (H_PARTIAL (statcode) && contrange == -1))
1261     {
1262       /* This means the whole request was somehow misunderstood by the
1263          server.  Bail out.  */
1264       FREE_MAYBE (type);
1265       FREE_MAYBE (all_headers);
1266       CLOSE_INVALIDATE (sock);
1267       return RANGEERR;
1268     }
1269
1270   if (hs->restval)
1271     {
1272       if (contlen != -1)
1273         contlen += contrange;
1274       else
1275         contrange = -1;        /* If conent-length was not sent,
1276                                   content-range will be ignored.  */
1277     }
1278   hs->contlen = contlen;
1279
1280   if (opt.verbose)
1281     {
1282       if ((*dt & RETROKF) && !opt.server_response)
1283         {
1284           /* No need to print this output if the body won't be
1285              downloaded at all, or if the original server response is
1286              printed.  */
1287           logputs (LOG_VERBOSE, _("Length: "));
1288           if (contlen != -1)
1289             {
1290               logputs (LOG_VERBOSE, legible (contlen));
1291               if (contrange != -1)
1292                 logprintf (LOG_VERBOSE, _(" (%s to go)"),
1293                            legible (contlen - contrange));
1294             }
1295           else
1296             logputs (LOG_VERBOSE,
1297                      opt.ignore_length ? _("ignored") : _("unspecified"));
1298           if (type)
1299             logprintf (LOG_VERBOSE, " [%s]\n", type);
1300           else
1301             logputs (LOG_VERBOSE, "\n");
1302         }
1303     }
1304   FREE_MAYBE (type);
1305   type = NULL;                  /* We don't need it any more.  */
1306
1307   /* Return if we have no intention of further downloading.  */
1308   if (!(*dt & RETROKF) || (*dt & HEAD_ONLY))
1309     {
1310       /* In case the caller cares to look...  */
1311       hs->len = 0L;
1312       hs->res = 0;
1313       FREE_MAYBE (type);
1314       FREE_MAYBE (all_headers);
1315       CLOSE_INVALIDATE (sock);  /* would be CLOSE_FINISH, but there
1316                                    might be more bytes in the body. */
1317       return RETRFINISHED;
1318     }
1319
1320   /* Open the local file.  */
1321   if (!opt.dfp)
1322     {
1323       mkalldirs (*hs->local_file);
1324       if (opt.backups)
1325         rotate_backups (*hs->local_file);
1326       fp = fopen (*hs->local_file, hs->restval ? "ab" : "wb");
1327       if (!fp)
1328         {
1329           logprintf (LOG_NOTQUIET, "%s: %s\n", *hs->local_file, strerror (errno));
1330           CLOSE_INVALIDATE (sock); /* would be CLOSE_FINISH, but there
1331                                       might be more bytes in the body. */
1332           FREE_MAYBE (all_headers);
1333           return FOPENERR;
1334         }
1335     }
1336   else                          /* opt.dfp */
1337     {
1338       extern int global_download_count;
1339       fp = opt.dfp;
1340       /* To ensure that repeated "from scratch" downloads work for -O
1341          files, we rewind the file pointer, unless restval is
1342          non-zero.  (This works only when -O is used on regular files,
1343          but it's still a valuable feature.)
1344
1345          However, this loses when more than one URL is specified on
1346          the command line the second rewinds eradicates the contents
1347          of the first download.  Thus we disable the above trick for
1348          all the downloads except the very first one.
1349
1350          #### A possible solution to this would be to remember the
1351          file position in the output document and to seek to that
1352          position, instead of rewinding.  */
1353       if (!hs->restval && global_download_count == 0)
1354         {
1355           /* This will silently fail for streams that don't correspond
1356              to regular files, but that's OK.  */
1357           rewind (fp);
1358           /* ftruncate is needed because opt.dfp is opened in append
1359              mode if opt.always_rest is set.  */
1360           ftruncate (fileno (fp), 0);
1361           clearerr (fp);
1362         }
1363     }
1364
1365   /* #### This confuses the code that checks for file size.  There
1366      should be some overhead information.  */
1367   if (opt.save_headers)
1368     fwrite (all_headers, 1, all_length, fp);
1369
1370   /* Get the contents of the document.  */
1371   hs->res = get_contents (sock, fp, &hs->len, hs->restval,
1372                           (contlen != -1 ? contlen : 0),
1373                           &rbuf, keep_alive, &hs->dltime);
1374
1375   if (hs->res >= 0)
1376     CLOSE_FINISH (sock);
1377   else
1378     CLOSE_INVALIDATE (sock);
1379
1380   {
1381     /* Close or flush the file.  We have to be careful to check for
1382        error here.  Checking the result of fwrite() is not enough --
1383        errors could go unnoticed!  */
1384     int flush_res;
1385     if (!opt.dfp)
1386       flush_res = fclose (fp);
1387     else
1388       flush_res = fflush (fp);
1389     if (flush_res == EOF)
1390       hs->res = -2;
1391   }
1392   FREE_MAYBE (all_headers);
1393   if (hs->res == -2)
1394     return FWRITEERR;
1395   return RETRFINISHED;
1396 }
1397
1398 /* The genuine HTTP loop!  This is the part where the retrieval is
1399    retried, and retried, and retried, and...  */
1400 uerr_t
1401 http_loop (struct url *u, char **newloc, char **local_file, const char *referer,
1402            int *dt, struct url *proxy)
1403 {
1404   int count;
1405   int use_ts, got_head = 0;     /* time-stamping info */
1406   char *filename_plus_orig_suffix;
1407   char *local_filename = NULL;
1408   char *tms, *suf, *locf, *tmrate;
1409   uerr_t err;
1410   time_t tml = -1, tmr = -1;    /* local and remote time-stamps */
1411   long local_size = 0;          /* the size of the local file */
1412   size_t filename_len;
1413   struct http_stat hstat;       /* HTTP status */
1414   struct stat st;
1415   char *dummy = NULL;
1416
1417   /* This used to be done in main(), but it's a better idea to do it
1418      here so that we don't go through the hoops if we're just using
1419      FTP or whatever. */
1420   if (opt.cookies && opt.cookies_input && !cookies_loaded_p)
1421     {
1422       load_cookies (opt.cookies_input);
1423       cookies_loaded_p = 1;
1424     }
1425
1426   *newloc = NULL;
1427
1428   /* Warn on (likely bogus) wildcard usage in HTTP.  Don't use
1429      has_wildcards_p because it would also warn on `?', and we know that
1430      shows up in CGI paths a *lot*.  */
1431   if (strchr (u->url, '*'))
1432     logputs (LOG_VERBOSE, _("Warning: wildcards not supported in HTTP.\n"));
1433
1434   /* Determine the local filename.  */
1435   if (local_file && *local_file)
1436     hstat.local_file = local_file;
1437   else if (local_file)
1438     {
1439       *local_file = url_filename (u);
1440       hstat.local_file = local_file;
1441     }
1442   else
1443     {
1444       dummy = url_filename (u);
1445       hstat.local_file = &dummy;
1446     }
1447
1448   if (!opt.output_document)
1449     locf = *hstat.local_file;
1450   else
1451     locf = opt.output_document;
1452
1453   hstat.referer = referer;
1454
1455   filename_len = strlen (*hstat.local_file);
1456   filename_plus_orig_suffix = alloca (filename_len + sizeof (".orig"));
1457
1458   if (opt.noclobber && file_exists_p (*hstat.local_file))
1459     {
1460       /* If opt.noclobber is turned on and file already exists, do not
1461          retrieve the file */
1462       logprintf (LOG_VERBOSE, _("\
1463 File `%s' already there, will not retrieve.\n"), *hstat.local_file);
1464       /* If the file is there, we suppose it's retrieved OK.  */
1465       *dt |= RETROKF;
1466
1467       /* #### Bogusness alert.  */
1468       /* If its suffix is "html" or "htm", assume text/html.  */
1469       if (((suf = suffix (*hstat.local_file)) != NULL)
1470           && (!strcmp (suf, "html") || !strcmp (suf, "htm")))
1471         *dt |= TEXTHTML;
1472
1473       FREE_MAYBE (dummy);
1474       return RETROK;
1475     }
1476
1477   use_ts = 0;
1478   if (opt.timestamping)
1479     {
1480       boolean  local_dot_orig_file_exists = FALSE;
1481
1482       if (opt.backup_converted)
1483         /* If -K is specified, we'll act on the assumption that it was specified
1484            last time these files were downloaded as well, and instead of just
1485            comparing local file X against server file X, we'll compare local
1486            file X.orig (if extant, else X) against server file X.  If -K
1487            _wasn't_ specified last time, or the server contains files called
1488            *.orig, -N will be back to not operating correctly with -k. */
1489         {
1490           /* Would a single s[n]printf() call be faster?  --dan
1491
1492              Definitely not.  sprintf() is horribly slow.  It's a
1493              different question whether the difference between the two
1494              affects a program.  Usually I'd say "no", but at one
1495              point I profiled Wget, and found that a measurable and
1496              non-negligible amount of time was lost calling sprintf()
1497              in url.c.  Replacing sprintf with inline calls to
1498              strcpy() and long_to_string() made a difference.
1499              --hniksic */
1500           memcpy (filename_plus_orig_suffix, *hstat.local_file, filename_len);
1501           memcpy (filename_plus_orig_suffix + filename_len,
1502                   ".orig", sizeof (".orig"));
1503
1504           /* Try to stat() the .orig file. */
1505           if (stat (filename_plus_orig_suffix, &st) == 0)
1506             {
1507               local_dot_orig_file_exists = TRUE;
1508               local_filename = filename_plus_orig_suffix;
1509             }
1510         }      
1511
1512       if (!local_dot_orig_file_exists)
1513         /* Couldn't stat() <file>.orig, so try to stat() <file>. */
1514         if (stat (*hstat.local_file, &st) == 0)
1515           local_filename = *hstat.local_file;
1516
1517       if (local_filename != NULL)
1518         /* There was a local file, so we'll check later to see if the version
1519            the server has is the same version we already have, allowing us to
1520            skip a download. */
1521         {
1522           use_ts = 1;
1523           tml = st.st_mtime;
1524           local_size = st.st_size;
1525           got_head = 0;
1526         }
1527     }
1528   /* Reset the counter.  */
1529   count = 0;
1530   *dt = 0 | ACCEPTRANGES;
1531   /* THE loop */
1532   do
1533     {
1534       /* Increment the pass counter.  */
1535       ++count;
1536       sleep_between_retrievals (count);
1537       /* Get the current time string.  */
1538       tms = time_str (NULL);
1539       /* Print fetch message, if opt.verbose.  */
1540       if (opt.verbose)
1541         {
1542           char *hurl = url_string (u, 1);
1543           char tmp[15];
1544           strcpy (tmp, "        ");
1545           if (count > 1)
1546             sprintf (tmp, _("(try:%2d)"), count);
1547           logprintf (LOG_VERBOSE, "--%s--  %s\n  %s => `%s'\n",
1548                      tms, hurl, tmp, locf);
1549 #ifdef WINDOWS
1550           ws_changetitle (hurl, 1);
1551 #endif
1552           xfree (hurl);
1553         }
1554
1555       /* Default document type is empty.  However, if spider mode is
1556          on or time-stamping is employed, HEAD_ONLY commands is
1557          encoded within *dt.  */
1558       if (opt.spider || (use_ts && !got_head))
1559         *dt |= HEAD_ONLY;
1560       else
1561         *dt &= ~HEAD_ONLY;
1562       /* Assume no restarting.  */
1563       hstat.restval = 0L;
1564       /* Decide whether or not to restart.  */
1565       if (((count > 1 && (*dt & ACCEPTRANGES)) || opt.always_rest)
1566           /* #### this calls access() and then stat(); could be optimized. */
1567           && file_exists_p (locf))
1568         if (stat (locf, &st) == 0 && S_ISREG (st.st_mode))
1569           hstat.restval = st.st_size;
1570
1571       /* In `-c' is used and the file is existing and non-empty,
1572          refuse to truncate it if the server doesn't support continued
1573          downloads.  */
1574       hstat.no_truncate = 0;
1575       if (opt.always_rest && hstat.restval)
1576         hstat.no_truncate = 1;
1577
1578       /* Decide whether to send the no-cache directive.  We send it in
1579          two cases:
1580            a) we're using a proxy, and we're past our first retrieval.
1581               Some proxies are notorious for caching incomplete data, so
1582               we require a fresh get.
1583            b) caching is explicitly inhibited. */
1584       if ((proxy && count > 1)  /* a */
1585           || !opt.allow_cache   /* b */
1586           )
1587         *dt |= SEND_NOCACHE;
1588       else
1589         *dt &= ~SEND_NOCACHE;
1590
1591       /* Try fetching the document, or at least its head.  */
1592       err = gethttp (u, &hstat, dt, proxy);
1593
1594       /* It's unfortunate that wget determines the local filename before finding
1595          out the Content-Type of the file.  Barring a major restructuring of the
1596          code, we need to re-set locf here, since gethttp() may have xrealloc()d
1597          *hstat.local_file to tack on ".html". */
1598       if (!opt.output_document)
1599         locf = *hstat.local_file;
1600       else
1601         locf = opt.output_document;
1602
1603       /* Time?  */
1604       tms = time_str (NULL);
1605       /* Get the new location (with or without the redirection).  */
1606       if (hstat.newloc)
1607         *newloc = xstrdup (hstat.newloc);
1608       switch (err)
1609         {
1610         case HERR: case HEOF: case CONSOCKERR: case CONCLOSED:
1611         case CONERROR: case READERR: case WRITEFAILED:
1612         case RANGEERR:
1613           /* Non-fatal errors continue executing the loop, which will
1614              bring them to "while" statement at the end, to judge
1615              whether the number of tries was exceeded.  */
1616           free_hstat (&hstat);
1617           printwhat (count, opt.ntry);
1618           continue;
1619           break;
1620         case HOSTERR: case CONREFUSED: case PROXERR: case AUTHFAILED: 
1621         case SSLERRCTXCREATE: case CONTNOTSUPPORTED:
1622           /* Fatal errors just return from the function.  */
1623           free_hstat (&hstat);
1624           FREE_MAYBE (dummy);
1625           return err;
1626           break;
1627         case FWRITEERR: case FOPENERR:
1628           /* Another fatal error.  */
1629           logputs (LOG_VERBOSE, "\n");
1630           logprintf (LOG_NOTQUIET, _("Cannot write to `%s' (%s).\n"),
1631                      *hstat.local_file, strerror (errno));
1632           free_hstat (&hstat);
1633           FREE_MAYBE (dummy);
1634           return err;
1635           break;
1636         case CONSSLERR:
1637           /* Another fatal error.  */
1638           logputs (LOG_VERBOSE, "\n");
1639           logprintf (LOG_NOTQUIET, _("Unable to establish SSL connection.\n"));
1640           free_hstat (&hstat);
1641           FREE_MAYBE (dummy);
1642           return err;
1643           break;
1644         case NEWLOCATION:
1645           /* Return the new location to the caller.  */
1646           if (!hstat.newloc)
1647             {
1648               logprintf (LOG_NOTQUIET,
1649                          _("ERROR: Redirection (%d) without location.\n"),
1650                          hstat.statcode);
1651               free_hstat (&hstat);
1652               FREE_MAYBE (dummy);
1653               return WRONGCODE;
1654             }
1655           free_hstat (&hstat);
1656           FREE_MAYBE (dummy);
1657           return NEWLOCATION;
1658           break;
1659         case RETRUNNEEDED:
1660           /* The file was already fully retrieved. */
1661           free_hstat (&hstat);
1662           FREE_MAYBE (dummy);
1663           return RETROK;
1664           break;
1665         case RETRFINISHED:
1666           /* Deal with you later.  */
1667           break;
1668         default:
1669           /* All possibilities should have been exhausted.  */
1670           abort ();
1671         }
1672       if (!(*dt & RETROKF))
1673         {
1674           if (!opt.verbose)
1675             {
1676               /* #### Ugly ugly ugly! */
1677               char *hurl = url_string (u, 1);
1678               logprintf (LOG_NONVERBOSE, "%s:\n", hurl);
1679               xfree (hurl);
1680             }
1681           logprintf (LOG_NOTQUIET, _("%s ERROR %d: %s.\n"),
1682                      tms, hstat.statcode, hstat.error);
1683           logputs (LOG_VERBOSE, "\n");
1684           free_hstat (&hstat);
1685           FREE_MAYBE (dummy);
1686           return WRONGCODE;
1687         }
1688
1689       /* Did we get the time-stamp?  */
1690       if (!got_head)
1691         {
1692           if (opt.timestamping && !hstat.remote_time)
1693             {
1694               logputs (LOG_NOTQUIET, _("\
1695 Last-modified header missing -- time-stamps turned off.\n"));
1696             }
1697           else if (hstat.remote_time)
1698             {
1699               /* Convert the date-string into struct tm.  */
1700               tmr = http_atotm (hstat.remote_time);
1701               if (tmr == (time_t) (-1))
1702                 logputs (LOG_VERBOSE, _("\
1703 Last-modified header invalid -- time-stamp ignored.\n"));
1704             }
1705         }
1706
1707       /* The time-stamping section.  */
1708       if (use_ts)
1709         {
1710           got_head = 1;
1711           *dt &= ~HEAD_ONLY;
1712           use_ts = 0;           /* no more time-stamping */
1713           count = 0;            /* the retrieve count for HEAD is
1714                                    reset */
1715           if (hstat.remote_time && tmr != (time_t) (-1))
1716             {
1717               /* Now time-stamping can be used validly.  Time-stamping
1718                  means that if the sizes of the local and remote file
1719                  match, and local file is newer than the remote file,
1720                  it will not be retrieved.  Otherwise, the normal
1721                  download procedure is resumed.  */
1722               if (tml >= tmr &&
1723                   (hstat.contlen == -1 || local_size == hstat.contlen))
1724                 {
1725                   logprintf (LOG_VERBOSE, _("\
1726 Server file no newer than local file `%s' -- not retrieving.\n\n"),
1727                              local_filename);
1728                   free_hstat (&hstat);
1729                   FREE_MAYBE (dummy);
1730                   return RETROK;
1731                 }
1732               else if (tml >= tmr)
1733                 logprintf (LOG_VERBOSE, _("\
1734 The sizes do not match (local %ld) -- retrieving.\n"), local_size);
1735               else
1736                 logputs (LOG_VERBOSE,
1737                          _("Remote file is newer, retrieving.\n"));
1738             }
1739           free_hstat (&hstat);
1740           continue;
1741         }
1742       if ((tmr != (time_t) (-1))
1743           && !opt.spider
1744           && ((hstat.len == hstat.contlen) ||
1745               ((hstat.res == 0) &&
1746                ((hstat.contlen == -1) ||
1747                 (hstat.len >= hstat.contlen && !opt.kill_longer)))))
1748         {
1749           /* #### This code repeats in http.c and ftp.c.  Move it to a
1750              function!  */
1751           const char *fl = NULL;
1752           if (opt.output_document)
1753             {
1754               if (opt.od_known_regular)
1755                 fl = opt.output_document;
1756             }
1757           else
1758             fl = *hstat.local_file;
1759           if (fl)
1760             touch (fl, tmr);
1761         }
1762       /* End of time-stamping section.  */
1763
1764       if (opt.spider)
1765         {
1766           logprintf (LOG_NOTQUIET, "%d %s\n\n", hstat.statcode, hstat.error);
1767           FREE_MAYBE (dummy);
1768           return RETROK;
1769         }
1770
1771       tmrate = retr_rate (hstat.len - hstat.restval, hstat.dltime, 0);
1772
1773       if (hstat.len == hstat.contlen)
1774         {
1775           if (*dt & RETROKF)
1776             {
1777               logprintf (LOG_VERBOSE,
1778                          _("%s (%s) - `%s' saved [%ld/%ld]\n\n"),
1779                          tms, tmrate, locf, hstat.len, hstat.contlen);
1780               logprintf (LOG_NONVERBOSE,
1781                          "%s URL:%s [%ld/%ld] -> \"%s\" [%d]\n",
1782                          tms, u->url, hstat.len, hstat.contlen, locf, count);
1783             }
1784           ++opt.numurls;
1785           downloaded_increase (hstat.len);
1786
1787           /* Remember that we downloaded the file for later ".orig" code. */
1788           if (*dt & ADDED_HTML_EXTENSION)
1789             downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, locf);
1790           else
1791             downloaded_file(FILE_DOWNLOADED_NORMALLY, locf);
1792
1793           free_hstat (&hstat);
1794           FREE_MAYBE (dummy);
1795           return RETROK;
1796         }
1797       else if (hstat.res == 0) /* No read error */
1798         {
1799           if (hstat.contlen == -1)  /* We don't know how much we were supposed
1800                                        to get, so assume we succeeded. */ 
1801             {
1802               if (*dt & RETROKF)
1803                 {
1804                   logprintf (LOG_VERBOSE,
1805                              _("%s (%s) - `%s' saved [%ld]\n\n"),
1806                              tms, tmrate, locf, hstat.len);
1807                   logprintf (LOG_NONVERBOSE,
1808                              "%s URL:%s [%ld] -> \"%s\" [%d]\n",
1809                              tms, u->url, hstat.len, locf, count);
1810                 }
1811               ++opt.numurls;
1812               downloaded_increase (hstat.len);
1813
1814               /* Remember that we downloaded the file for later ".orig" code. */
1815               if (*dt & ADDED_HTML_EXTENSION)
1816                 downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, locf);
1817               else
1818                 downloaded_file(FILE_DOWNLOADED_NORMALLY, locf);
1819               
1820               free_hstat (&hstat);
1821               FREE_MAYBE (dummy);
1822               return RETROK;
1823             }
1824           else if (hstat.len < hstat.contlen) /* meaning we lost the
1825                                                  connection too soon */
1826             {
1827               logprintf (LOG_VERBOSE,
1828                          _("%s (%s) - Connection closed at byte %ld. "),
1829                          tms, tmrate, hstat.len);
1830               printwhat (count, opt.ntry);
1831               free_hstat (&hstat);
1832               continue;
1833             }
1834           else if (!opt.kill_longer) /* meaning we got more than expected */
1835             {
1836               logprintf (LOG_VERBOSE,
1837                          _("%s (%s) - `%s' saved [%ld/%ld])\n\n"),
1838                          tms, tmrate, locf, hstat.len, hstat.contlen);
1839               logprintf (LOG_NONVERBOSE,
1840                          "%s URL:%s [%ld/%ld] -> \"%s\" [%d]\n",
1841                          tms, u->url, hstat.len, hstat.contlen, locf, count);
1842               ++opt.numurls;
1843               downloaded_increase (hstat.len);
1844
1845               /* Remember that we downloaded the file for later ".orig" code. */
1846               if (*dt & ADDED_HTML_EXTENSION)
1847                 downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, locf);
1848               else
1849                 downloaded_file(FILE_DOWNLOADED_NORMALLY, locf);
1850               
1851               free_hstat (&hstat);
1852               FREE_MAYBE (dummy);
1853               return RETROK;
1854             }
1855           else                  /* the same, but not accepted */
1856             {
1857               logprintf (LOG_VERBOSE,
1858                          _("%s (%s) - Connection closed at byte %ld/%ld. "),
1859                          tms, tmrate, hstat.len, hstat.contlen);
1860               printwhat (count, opt.ntry);
1861               free_hstat (&hstat);
1862               continue;
1863             }
1864         }
1865       else                      /* now hstat.res can only be -1 */
1866         {
1867           if (hstat.contlen == -1)
1868             {
1869               logprintf (LOG_VERBOSE,
1870                          _("%s (%s) - Read error at byte %ld (%s)."),
1871                          tms, tmrate, hstat.len, strerror (errno));
1872               printwhat (count, opt.ntry);
1873               free_hstat (&hstat);
1874               continue;
1875             }
1876           else                  /* hstat.res == -1 and contlen is given */
1877             {
1878               logprintf (LOG_VERBOSE,
1879                          _("%s (%s) - Read error at byte %ld/%ld (%s). "),
1880                          tms, tmrate, hstat.len, hstat.contlen,
1881                          strerror (errno));
1882               printwhat (count, opt.ntry);
1883               free_hstat (&hstat);
1884               continue;
1885             }
1886         }
1887       /* not reached */
1888       break;
1889     }
1890   while (!opt.ntry || (count < opt.ntry));
1891   return TRYLIMEXC;
1892 }
1893 \f
1894 /* Converts struct tm to time_t, assuming the data in tm is UTC rather
1895    than local timezone.
1896
1897    mktime is similar but assumes struct tm, also known as the
1898    "broken-down" form of time, is in local time zone.  mktime_from_utc
1899    uses mktime to make the conversion understanding that an offset
1900    will be introduced by the local time assumption.
1901
1902    mktime_from_utc then measures the introduced offset by applying
1903    gmtime to the initial result and applying mktime to the resulting
1904    "broken-down" form.  The difference between the two mktime results
1905    is the measured offset which is then subtracted from the initial
1906    mktime result to yield a calendar time which is the value returned.
1907
1908    tm_isdst in struct tm is set to 0 to force mktime to introduce a
1909    consistent offset (the non DST offset) since tm and tm+o might be
1910    on opposite sides of a DST change.
1911
1912    Some implementations of mktime return -1 for the nonexistent
1913    localtime hour at the beginning of DST.  In this event, use
1914    mktime(tm - 1hr) + 3600.
1915
1916    Schematically
1917      mktime(tm)   --> t+o
1918      gmtime(t+o)  --> tm+o
1919      mktime(tm+o) --> t+2o
1920      t+o - (t+2o - t+o) = t
1921
1922    Note that glibc contains a function of the same purpose named
1923    `timegm' (reverse of gmtime).  But obviously, it is not universally
1924    available, and unfortunately it is not straightforwardly
1925    extractable for use here.  Perhaps configure should detect timegm
1926    and use it where available.
1927
1928    Contributed by Roger Beeman <beeman@cisco.com>, with the help of
1929    Mark Baushke <mdb@cisco.com> and the rest of the Gurus at CISCO.
1930    Further improved by Roger with assistance from Edward J. Sabol
1931    based on input by Jamie Zawinski.  */
1932
1933 static time_t
1934 mktime_from_utc (struct tm *t)
1935 {
1936   time_t tl, tb;
1937   struct tm *tg;
1938
1939   tl = mktime (t);
1940   if (tl == -1)
1941     {
1942       t->tm_hour--;
1943       tl = mktime (t);
1944       if (tl == -1)
1945         return -1; /* can't deal with output from strptime */
1946       tl += 3600;
1947     }
1948   tg = gmtime (&tl);
1949   tg->tm_isdst = 0;
1950   tb = mktime (tg);
1951   if (tb == -1)
1952     {
1953       tg->tm_hour--;
1954       tb = mktime (tg);
1955       if (tb == -1)
1956         return -1; /* can't deal with output from gmtime */
1957       tb += 3600;
1958     }
1959   return (tl - (tb - tl));
1960 }
1961
1962 /* Check whether the result of strptime() indicates success.
1963    strptime() returns the pointer to how far it got to in the string.
1964    The processing has been successful if the string is at `GMT' or
1965    `+X', or at the end of the string.
1966
1967    In extended regexp parlance, the function returns 1 if P matches
1968    "^ *(GMT|[+-][0-9]|$)", 0 otherwise.  P being NULL (which strptime
1969    can return) is considered a failure and 0 is returned.  */
1970 static int
1971 check_end (const char *p)
1972 {
1973   if (!p)
1974     return 0;
1975   while (ISSPACE (*p))
1976     ++p;
1977   if (!*p
1978       || (p[0] == 'G' && p[1] == 'M' && p[2] == 'T')
1979       || ((p[0] == '+' || p[0] == '-') && ISDIGIT (p[1])))
1980     return 1;
1981   else
1982     return 0;
1983 }
1984
1985 /* Convert the textual specification of time in TIME_STRING to the
1986    number of seconds since the Epoch.
1987
1988    TIME_STRING can be in any of the three formats RFC2068 allows the
1989    HTTP servers to emit -- RFC1123-date, RFC850-date or asctime-date.
1990    Timezones are ignored, and should be GMT.
1991
1992    Return the computed time_t representation, or -1 if the conversion
1993    fails.
1994
1995    This function uses strptime with various string formats for parsing
1996    TIME_STRING.  This results in a parser that is not as lenient in
1997    interpreting TIME_STRING as I would like it to be.  Being based on
1998    strptime, it always allows shortened months, one-digit days, etc.,
1999    but due to the multitude of formats in which time can be
2000    represented, an ideal HTTP time parser would be even more
2001    forgiving.  It should completely ignore things like week days and
2002    concentrate only on the various forms of representing years,
2003    months, days, hours, minutes, and seconds.  For example, it would
2004    be nice if it accepted ISO 8601 out of the box.
2005
2006    I've investigated free and PD code for this purpose, but none was
2007    usable.  getdate was big and unwieldy, and had potential copyright
2008    issues, or so I was informed.  Dr. Marcus Hennecke's atotm(),
2009    distributed with phttpd, is excellent, but we cannot use it because
2010    it is not assigned to the FSF.  So I stuck it with strptime.  */
2011
2012 time_t
2013 http_atotm (char *time_string)
2014 {
2015   /* NOTE: Solaris strptime man page claims that %n and %t match white
2016      space, but that's not universally available.  Instead, we simply
2017      use ` ' to mean "skip all WS", which works under all strptime
2018      implementations I've tested.  */
2019
2020   static const char *time_formats[] = {
2021     "%a, %d %b %Y %T",          /* RFC1123: Thu, 29 Jan 1998 22:12:57 */
2022     "%A, %d-%b-%y %T",          /* RFC850:  Thursday, 29-Jan-98 22:12:57 */
2023     "%a, %d-%b-%Y %T",          /* pseudo-RFC850:  Thu, 29-Jan-1998 22:12:57
2024                                    (google.com uses this for their cookies.) */
2025     "%a %b %d %T %Y"            /* asctime: Thu Jan 29 22:12:57 1998 */
2026   };
2027
2028   int i;
2029   struct tm t;
2030
2031   /* According to Roger Beeman, we need to initialize tm_isdst, since
2032      strptime won't do it.  */
2033   t.tm_isdst = 0;
2034
2035   /* Note that under foreign locales Solaris strptime() fails to
2036      recognize English dates, which renders this function useless.  We
2037      solve this by being careful not to affect LC_TIME when
2038      initializing locale.
2039
2040      Another solution would be to temporarily set locale to C, invoke
2041      strptime(), and restore it back.  This is slow and dirty,
2042      however, and locale support other than LC_MESSAGES can mess other
2043      things, so I rather chose to stick with just setting LC_MESSAGES.
2044
2045      GNU strptime does not have this problem because it recognizes
2046      both international and local dates.  */
2047
2048   for (i = 0; i < ARRAY_SIZE (time_formats); i++)
2049     if (check_end (strptime (time_string, time_formats[i], &t)))
2050       return mktime_from_utc (&t);
2051
2052   /* All formats have failed.  */
2053   return -1;
2054 }
2055 \f
2056 /* Authorization support: We support two authorization schemes:
2057
2058    * `Basic' scheme, consisting of base64-ing USER:PASSWORD string;
2059
2060    * `Digest' scheme, added by Junio Hamano <junio@twinsun.com>,
2061    consisting of answering to the server's challenge with the proper
2062    MD5 digests.  */
2063
2064 /* How many bytes it will take to store LEN bytes in base64.  */
2065 #define BASE64_LENGTH(len) (4 * (((len) + 2) / 3))
2066
2067 /* Encode the string S of length LENGTH to base64 format and place it
2068    to STORE.  STORE will be 0-terminated, and must point to a writable
2069    buffer of at least 1+BASE64_LENGTH(length) bytes.  */
2070 static void
2071 base64_encode (const char *s, char *store, int length)
2072 {
2073   /* Conversion table.  */
2074   static char tbl[64] = {
2075     'A','B','C','D','E','F','G','H',
2076     'I','J','K','L','M','N','O','P',
2077     'Q','R','S','T','U','V','W','X',
2078     'Y','Z','a','b','c','d','e','f',
2079     'g','h','i','j','k','l','m','n',
2080     'o','p','q','r','s','t','u','v',
2081     'w','x','y','z','0','1','2','3',
2082     '4','5','6','7','8','9','+','/'
2083   };
2084   int i;
2085   unsigned char *p = (unsigned char *)store;
2086
2087   /* Transform the 3x8 bits to 4x6 bits, as required by base64.  */
2088   for (i = 0; i < length; i += 3)
2089     {
2090       *p++ = tbl[s[0] >> 2];
2091       *p++ = tbl[((s[0] & 3) << 4) + (s[1] >> 4)];
2092       *p++ = tbl[((s[1] & 0xf) << 2) + (s[2] >> 6)];
2093       *p++ = tbl[s[2] & 0x3f];
2094       s += 3;
2095     }
2096   /* Pad the result if necessary...  */
2097   if (i == length + 1)
2098     *(p - 1) = '=';
2099   else if (i == length + 2)
2100     *(p - 1) = *(p - 2) = '=';
2101   /* ...and zero-terminate it.  */
2102   *p = '\0';
2103 }
2104
2105 /* Create the authentication header contents for the `Basic' scheme.
2106    This is done by encoding the string `USER:PASS' in base64 and
2107    prepending `HEADER: Basic ' to it.  */
2108 static char *
2109 basic_authentication_encode (const char *user, const char *passwd,
2110                              const char *header)
2111 {
2112   char *t1, *t2, *res;
2113   int len1 = strlen (user) + 1 + strlen (passwd);
2114   int len2 = BASE64_LENGTH (len1);
2115
2116   t1 = (char *)alloca (len1 + 1);
2117   sprintf (t1, "%s:%s", user, passwd);
2118   t2 = (char *)alloca (1 + len2);
2119   base64_encode (t1, t2, len1);
2120   res = (char *)xmalloc (len2 + 11 + strlen (header));
2121   sprintf (res, "%s: Basic %s\r\n", header, t2);
2122
2123   return res;
2124 }
2125
2126 #ifdef USE_DIGEST
2127 /* Parse HTTP `WWW-Authenticate:' header.  AU points to the beginning
2128    of a field in such a header.  If the field is the one specified by
2129    ATTR_NAME ("realm", "opaque", and "nonce" are used by the current
2130    digest authorization code), extract its value in the (char*)
2131    variable pointed by RET.  Returns negative on a malformed header,
2132    or number of bytes that have been parsed by this call.  */
2133 static int
2134 extract_header_attr (const char *au, const char *attr_name, char **ret)
2135 {
2136   const char *cp, *ep;
2137
2138   ep = cp = au;
2139
2140   if (strncmp (cp, attr_name, strlen (attr_name)) == 0)
2141     {
2142       cp += strlen (attr_name);
2143       if (!*cp)
2144         return -1;
2145       cp += skip_lws (cp);
2146       if (*cp != '=')
2147         return -1;
2148       if (!*++cp)
2149         return -1;
2150       cp += skip_lws (cp);
2151       if (*cp != '\"')
2152         return -1;
2153       if (!*++cp)
2154         return -1;
2155       for (ep = cp; *ep && *ep != '\"'; ep++)
2156         ;
2157       if (!*ep)
2158         return -1;
2159       FREE_MAYBE (*ret);
2160       *ret = strdupdelim (cp, ep);
2161       return ep - au + 1;
2162     }
2163   else
2164     return 0;
2165 }
2166
2167 /* Dump the hexadecimal representation of HASH to BUF.  HASH should be
2168    an array of 16 bytes containing the hash keys, and BUF should be a
2169    buffer of 33 writable characters (32 for hex digits plus one for
2170    zero termination).  */
2171 static void
2172 dump_hash (unsigned char *buf, const unsigned char *hash)
2173 {
2174   int i;
2175
2176   for (i = 0; i < MD5_HASHLEN; i++, hash++)
2177     {
2178       *buf++ = XDIGIT_TO_xchar (*hash >> 4);
2179       *buf++ = XDIGIT_TO_xchar (*hash & 0xf);
2180     }
2181   *buf = '\0';
2182 }
2183
2184 /* Take the line apart to find the challenge, and compose a digest
2185    authorization header.  See RFC2069 section 2.1.2.  */
2186 static char *
2187 digest_authentication_encode (const char *au, const char *user,
2188                               const char *passwd, const char *method,
2189                               const char *path)
2190 {
2191   static char *realm, *opaque, *nonce;
2192   static struct {
2193     const char *name;
2194     char **variable;
2195   } options[] = {
2196     { "realm", &realm },
2197     { "opaque", &opaque },
2198     { "nonce", &nonce }
2199   };
2200   char *res;
2201
2202   realm = opaque = nonce = NULL;
2203
2204   au += 6;                      /* skip over `Digest' */
2205   while (*au)
2206     {
2207       int i;
2208
2209       au += skip_lws (au);
2210       for (i = 0; i < ARRAY_SIZE (options); i++)
2211         {
2212           int skip = extract_header_attr (au, options[i].name,
2213                                           options[i].variable);
2214           if (skip < 0)
2215             {
2216               FREE_MAYBE (realm);
2217               FREE_MAYBE (opaque);
2218               FREE_MAYBE (nonce);
2219               return NULL;
2220             }
2221           else if (skip)
2222             {
2223               au += skip;
2224               break;
2225             }
2226         }
2227       if (i == ARRAY_SIZE (options))
2228         {
2229           while (*au && *au != '=')
2230             au++;
2231           if (*au && *++au)
2232             {
2233               au += skip_lws (au);
2234               if (*au == '\"')
2235                 {
2236                   au++;
2237                   while (*au && *au != '\"')
2238                     au++;
2239                   if (*au)
2240                     au++;
2241                 }
2242             }
2243         }
2244       while (*au && *au != ',')
2245         au++;
2246       if (*au)
2247         au++;
2248     }
2249   if (!realm || !nonce || !user || !passwd || !path || !method)
2250     {
2251       FREE_MAYBE (realm);
2252       FREE_MAYBE (opaque);
2253       FREE_MAYBE (nonce);
2254       return NULL;
2255     }
2256
2257   /* Calculate the digest value.  */
2258   {
2259     ALLOCA_MD5_CONTEXT (ctx);
2260     unsigned char hash[MD5_HASHLEN];
2261     unsigned char a1buf[MD5_HASHLEN * 2 + 1], a2buf[MD5_HASHLEN * 2 + 1];
2262     unsigned char response_digest[MD5_HASHLEN * 2 + 1];
2263
2264     /* A1BUF = H(user ":" realm ":" password) */
2265     gen_md5_init (ctx);
2266     gen_md5_update ((unsigned char *)user, strlen (user), ctx);
2267     gen_md5_update ((unsigned char *)":", 1, ctx);
2268     gen_md5_update ((unsigned char *)realm, strlen (realm), ctx);
2269     gen_md5_update ((unsigned char *)":", 1, ctx);
2270     gen_md5_update ((unsigned char *)passwd, strlen (passwd), ctx);
2271     gen_md5_finish (ctx, hash);
2272     dump_hash (a1buf, hash);
2273
2274     /* A2BUF = H(method ":" path) */
2275     gen_md5_init (ctx);
2276     gen_md5_update ((unsigned char *)method, strlen (method), ctx);
2277     gen_md5_update ((unsigned char *)":", 1, ctx);
2278     gen_md5_update ((unsigned char *)path, strlen (path), ctx);
2279     gen_md5_finish (ctx, hash);
2280     dump_hash (a2buf, hash);
2281
2282     /* RESPONSE_DIGEST = H(A1BUF ":" nonce ":" A2BUF) */
2283     gen_md5_init (ctx);
2284     gen_md5_update (a1buf, MD5_HASHLEN * 2, ctx);
2285     gen_md5_update ((unsigned char *)":", 1, ctx);
2286     gen_md5_update ((unsigned char *)nonce, strlen (nonce), ctx);
2287     gen_md5_update ((unsigned char *)":", 1, ctx);
2288     gen_md5_update (a2buf, MD5_HASHLEN * 2, ctx);
2289     gen_md5_finish (ctx, hash);
2290     dump_hash (response_digest, hash);
2291
2292     res = (char*) xmalloc (strlen (user)
2293                            + strlen (user)
2294                            + strlen (realm)
2295                            + strlen (nonce)
2296                            + strlen (path)
2297                            + 2 * MD5_HASHLEN /*strlen (response_digest)*/
2298                            + (opaque ? strlen (opaque) : 0)
2299                            + 128);
2300     sprintf (res, "Authorization: Digest \
2301 username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", response=\"%s\"",
2302              user, realm, nonce, path, response_digest);
2303     if (opaque)
2304       {
2305         char *p = res + strlen (res);
2306         strcat (p, ", opaque=\"");
2307         strcat (p, opaque);
2308         strcat (p, "\"");
2309       }
2310     strcat (res, "\r\n");
2311   }
2312   return res;
2313 }
2314 #endif /* USE_DIGEST */
2315
2316
2317 #define BEGINS_WITH(line, string_constant)                              \
2318   (!strncasecmp (line, string_constant, sizeof (string_constant) - 1)   \
2319    && (ISSPACE (line[sizeof (string_constant) - 1])                     \
2320        || !line[sizeof (string_constant) - 1]))
2321
2322 static int
2323 known_authentication_scheme_p (const char *au)
2324 {
2325   return BEGINS_WITH (au, "Basic")
2326     || BEGINS_WITH (au, "Digest")
2327     || BEGINS_WITH (au, "NTLM");
2328 }
2329
2330 #undef BEGINS_WITH
2331
2332 /* Create the HTTP authorization request header.  When the
2333    `WWW-Authenticate' response header is seen, according to the
2334    authorization scheme specified in that header (`Basic' and `Digest'
2335    are supported by the current implementation), produce an
2336    appropriate HTTP authorization request header.  */
2337 static char *
2338 create_authorization_line (const char *au, const char *user,
2339                            const char *passwd, const char *method,
2340                            const char *path)
2341 {
2342   char *wwwauth = NULL;
2343
2344   if (!strncasecmp (au, "Basic", 5))
2345     wwwauth = basic_authentication_encode (user, passwd, "Authorization");
2346   if (!strncasecmp (au, "NTLM", 4))
2347     wwwauth = basic_authentication_encode (user, passwd, "Authorization");
2348 #ifdef USE_DIGEST
2349   else if (!strncasecmp (au, "Digest", 6))
2350     wwwauth = digest_authentication_encode (au, user, passwd, method, path);
2351 #endif /* USE_DIGEST */
2352   return wwwauth;
2353 }
2354 \f
2355 void
2356 http_cleanup (void)
2357 {
2358   if (pc_last_host_ip)
2359     address_list_release (pc_last_host_ip);
2360 }