]> sjero.net Git - wget/blob - src/http.c
[svn] Document reasoning behind CLOSE_INVALIDATED more accurately.
[wget] / src / http.c
1 /* HTTP support.
2    Copyright (C) 1996-2005 Free Software Foundation, Inc.
3
4 This file is part of GNU Wget.
5
6 GNU Wget is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10
11 GNU Wget is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Wget; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 In addition, as a special exception, the Free Software Foundation
21 gives permission to link the code of its release of Wget with the
22 OpenSSL project's "OpenSSL" library (or with modified versions of it
23 that use the same license as the "OpenSSL" library), and distribute
24 the linked executables.  You must obey the GNU General Public License
25 in all respects for all of the code used other than "OpenSSL".  If you
26 modify this file, you may extend this exception to your version of the
27 file, but you are not obligated to do so.  If you do not wish to do
28 so, delete this exception statement from your version.  */
29
30 #include <config.h>
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #ifdef HAVE_UNISTD_H
36 # include <unistd.h>
37 #endif
38 #include <assert.h>
39 #include <errno.h>
40 #include <time.h>
41 #include <locale.h>
42
43 #include "wget.h"
44 #include "http.h"
45 #include "utils.h"
46 #include "url.h"
47 #include "host.h"
48 #include "retr.h"
49 #include "connect.h"
50 #include "netrc.h"
51 #ifdef HAVE_SSL
52 # include "ssl.h"
53 #endif
54 #ifdef ENABLE_NTLM
55 # include "http-ntlm.h"
56 #endif
57 #include "cookies.h"
58 #ifdef ENABLE_DIGEST
59 # include "gen-md5.h"
60 #endif
61 #include "convert.h"
62
63 extern char *version_string;
64
65 #ifndef MIN
66 # define MIN(x, y) ((x) > (y) ? (y) : (x))
67 #endif
68
69 \f
70 static bool cookies_loaded_p;
71 static struct cookie_jar *wget_cookie_jar;
72
73 #define TEXTHTML_S "text/html"
74 #define TEXTXHTML_S "application/xhtml+xml"
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                          || (x) == HTTP_STATUS_SEE_OTHER                \
82                          || (x) == HTTP_STATUS_TEMPORARY_REDIRECT)
83
84 /* HTTP/1.0 status codes from RFC1945, provided for reference.  */
85 /* Successful 2xx.  */
86 #define HTTP_STATUS_OK                  200
87 #define HTTP_STATUS_CREATED             201
88 #define HTTP_STATUS_ACCEPTED            202
89 #define HTTP_STATUS_NO_CONTENT          204
90 #define HTTP_STATUS_PARTIAL_CONTENTS    206
91
92 /* Redirection 3xx.  */
93 #define HTTP_STATUS_MULTIPLE_CHOICES    300
94 #define HTTP_STATUS_MOVED_PERMANENTLY   301
95 #define HTTP_STATUS_MOVED_TEMPORARILY   302
96 #define HTTP_STATUS_SEE_OTHER           303 /* from HTTP/1.1 */
97 #define HTTP_STATUS_NOT_MODIFIED        304
98 #define HTTP_STATUS_TEMPORARY_REDIRECT  307 /* from HTTP/1.1 */
99
100 /* Client error 4xx.  */
101 #define HTTP_STATUS_BAD_REQUEST         400
102 #define HTTP_STATUS_UNAUTHORIZED        401
103 #define HTTP_STATUS_FORBIDDEN           403
104 #define HTTP_STATUS_NOT_FOUND           404
105 #define HTTP_STATUS_RANGE_NOT_SATISFIABLE 416
106
107 /* Server errors 5xx.  */
108 #define HTTP_STATUS_INTERNAL            500
109 #define HTTP_STATUS_NOT_IMPLEMENTED     501
110 #define HTTP_STATUS_BAD_GATEWAY         502
111 #define HTTP_STATUS_UNAVAILABLE         503
112 \f
113 enum rp {
114   rel_none, rel_name, rel_value, rel_both
115 };
116
117 struct request {
118   const char *method;
119   char *arg;
120
121   struct request_header {
122     char *name, *value;
123     enum rp release_policy;
124   } *headers;
125   int hcount, hcapacity;
126 };
127
128 /* Create a new, empty request.  At least request_set_method must be
129    called before the request can be used.  */
130
131 static struct request *
132 request_new (void)
133 {
134   struct request *req = xnew0 (struct request);
135   req->hcapacity = 8;
136   req->headers = xnew_array (struct request_header, req->hcapacity);
137   return req;
138 }
139
140 /* Set the request's method and its arguments.  METH should be a
141    literal string (or it should outlive the request) because it will
142    not be freed.  ARG will be freed by request_free.  */
143
144 static void
145 request_set_method (struct request *req, const char *meth, char *arg)
146 {
147   req->method = meth;
148   req->arg = arg;
149 }
150
151 /* Return the method string passed with the last call to
152    request_set_method.  */
153
154 static const char *
155 request_method (const struct request *req)
156 {
157   return req->method;
158 }
159
160 /* Free one header according to the release policy specified with
161    request_set_header.  */
162
163 static void
164 release_header (struct request_header *hdr)
165 {
166   switch (hdr->release_policy)
167     {
168     case rel_none:
169       break;
170     case rel_name:
171       xfree (hdr->name);
172       break;
173     case rel_value:
174       xfree (hdr->value);
175       break;
176     case rel_both:
177       xfree (hdr->name);
178       xfree (hdr->value);
179       break;
180     }
181 }
182
183 /* Set the request named NAME to VALUE.  Specifically, this means that
184    a "NAME: VALUE\r\n" header line will be used in the request.  If a
185    header with the same name previously existed in the request, its
186    value will be replaced by this one.  A NULL value means do nothing.
187
188    RELEASE_POLICY determines whether NAME and VALUE should be released
189    (freed) with request_free.  Allowed values are:
190
191     - rel_none     - don't free NAME or VALUE
192     - rel_name     - free NAME when done
193     - rel_value    - free VALUE when done
194     - rel_both     - free both NAME and VALUE when done
195
196    Setting release policy is useful when arguments come from different
197    sources.  For example:
198
199      // Don't free literal strings!
200      request_set_header (req, "Pragma", "no-cache", rel_none);
201
202      // Don't free a global variable, we'll need it later.
203      request_set_header (req, "Referer", opt.referer, rel_none);
204
205      // Value freshly allocated, free it when done.
206      request_set_header (req, "Range",
207                          aprintf ("bytes=%s-", number_to_static_string (hs->restval)),
208                          rel_value);
209    */
210
211 static void
212 request_set_header (struct request *req, char *name, char *value,
213                     enum rp release_policy)
214 {
215   struct request_header *hdr;
216   int i;
217
218   if (!value)
219     {
220       /* A NULL value is a no-op; if freeing the name is requested,
221          free it now to avoid leaks.  */
222       if (release_policy == rel_name || release_policy == rel_both)
223         xfree (name);
224       return;
225     }
226
227   for (i = 0; i < req->hcount; i++)
228     {
229       hdr = &req->headers[i];
230       if (0 == strcasecmp (name, hdr->name))
231         {
232           /* Replace existing header. */
233           release_header (hdr);
234           hdr->name = name;
235           hdr->value = value;
236           hdr->release_policy = release_policy;
237           return;
238         }
239     }
240
241   /* Install new header. */
242
243   if (req->hcount >= req->hcapacity)
244     {
245       req->hcapacity <<= 1;
246       req->headers = xrealloc (req->headers, req->hcapacity * sizeof (*hdr));
247     }
248   hdr = &req->headers[req->hcount++];
249   hdr->name = name;
250   hdr->value = value;
251   hdr->release_policy = release_policy;
252 }
253
254 /* Like request_set_header, but sets the whole header line, as
255    provided by the user using the `--header' option.  For example,
256    request_set_user_header (req, "Foo: bar") works just like
257    request_set_header (req, "Foo", "bar").  */
258
259 static void
260 request_set_user_header (struct request *req, const char *header)
261 {
262   char *name;
263   const char *p = strchr (header, ':');
264   if (!p)
265     return;
266   BOUNDED_TO_ALLOCA (header, p, name);
267   ++p;
268   while (ISSPACE (*p))
269     ++p;
270   request_set_header (req, xstrdup (name), (char *) p, rel_name);
271 }
272
273 /* Remove the header with specified name from REQ.  Returns true if
274    the header was actually removed, false otherwise.  */
275
276 static bool
277 request_remove_header (struct request *req, char *name)
278 {
279   int i;
280   for (i = 0; i < req->hcount; i++)
281     {
282       struct request_header *hdr = &req->headers[i];
283       if (0 == strcasecmp (name, hdr->name))
284         {
285           release_header (hdr);
286           /* Move the remaining headers by one. */
287           if (i < req->hcount - 1)
288             memmove (hdr, hdr + 1, (req->hcount - i - 1) * sizeof (*hdr));
289           --req->hcount;
290           return true;
291         }
292     }
293   return false;
294 }
295
296 #define APPEND(p, str) do {                     \
297   int A_len = strlen (str);                     \
298   memcpy (p, str, A_len);                       \
299   p += A_len;                                   \
300 } while (0)
301
302 /* Construct the request and write it to FD using fd_write.  */
303
304 static int
305 request_send (const struct request *req, int fd)
306 {
307   char *request_string, *p;
308   int i, size, write_error;
309
310   /* Count the request size. */
311   size = 0;
312
313   /* METHOD " " ARG " " "HTTP/1.0" "\r\n" */
314   size += strlen (req->method) + 1 + strlen (req->arg) + 1 + 8 + 2;
315
316   for (i = 0; i < req->hcount; i++)
317     {
318       struct request_header *hdr = &req->headers[i];
319       /* NAME ": " VALUE "\r\n" */
320       size += strlen (hdr->name) + 2 + strlen (hdr->value) + 2;
321     }
322
323   /* "\r\n\0" */
324   size += 3;
325
326   p = request_string = alloca_array (char, size);
327
328   /* Generate the request. */
329
330   APPEND (p, req->method); *p++ = ' ';
331   APPEND (p, req->arg);    *p++ = ' ';
332   memcpy (p, "HTTP/1.0\r\n", 10); p += 10;
333
334   for (i = 0; i < req->hcount; i++)
335     {
336       struct request_header *hdr = &req->headers[i];
337       APPEND (p, hdr->name);
338       *p++ = ':', *p++ = ' ';
339       APPEND (p, hdr->value);
340       *p++ = '\r', *p++ = '\n';
341     }
342
343   *p++ = '\r', *p++ = '\n', *p++ = '\0';
344   assert (p - request_string == size);
345
346 #undef APPEND
347
348   DEBUGP (("\n---request begin---\n%s---request end---\n", request_string));
349
350   /* Send the request to the server. */
351
352   write_error = fd_write (fd, request_string, size - 1, -1);
353   if (write_error < 0)
354     logprintf (LOG_VERBOSE, _("Failed writing HTTP request: %s.\n"),
355                strerror (errno));
356   return write_error;
357 }
358
359 /* Release the resources used by REQ. */
360
361 static void
362 request_free (struct request *req)
363 {
364   int i;
365   xfree_null (req->arg);
366   for (i = 0; i < req->hcount; i++)
367     release_header (&req->headers[i]);
368   xfree_null (req->headers);
369   xfree (req);
370 }
371
372 /* Send the contents of FILE_NAME to SOCK.  Make sure that exactly
373    PROMISED_SIZE bytes are sent over the wire -- if the file is
374    longer, read only that much; if the file is shorter, report an error.  */
375
376 static int
377 post_file (int sock, const char *file_name, wgint promised_size)
378 {
379   static char chunk[8192];
380   wgint written = 0;
381   int write_error;
382   FILE *fp;
383
384   DEBUGP (("[writing POST file %s ... ", file_name));
385
386   fp = fopen (file_name, "rb");
387   if (!fp)
388     return -1;
389   while (!feof (fp) && written < promised_size)
390     {
391       int towrite;
392       int length = fread (chunk, 1, sizeof (chunk), fp);
393       if (length == 0)
394         break;
395       towrite = MIN (promised_size - written, length);
396       write_error = fd_write (sock, chunk, towrite, -1);
397       if (write_error < 0)
398         {
399           fclose (fp);
400           return -1;
401         }
402       written += towrite;
403     }
404   fclose (fp);
405
406   /* If we've written less than was promised, report a (probably
407      nonsensical) error rather than break the promise.  */
408   if (written < promised_size)
409     {
410       errno = EINVAL;
411       return -1;
412     }
413
414   assert (written == promised_size);
415   DEBUGP (("done]\n"));
416   return 0;
417 }
418 \f
419 /* Determine whether [START, PEEKED + PEEKLEN) contains an empty line.
420    If so, return the pointer to the position after the line, otherwise
421    return NULL.  This is used as callback to fd_read_hunk.  The data
422    between START and PEEKED has been read and cannot be "unread"; the
423    data after PEEKED has only been peeked.  */
424
425 static const char *
426 response_head_terminator (const char *start, const char *peeked, int peeklen)
427 {
428   const char *p, *end;
429
430   /* If at first peek, verify whether HUNK starts with "HTTP".  If
431      not, this is a HTTP/0.9 request and we must bail out without
432      reading anything.  */
433   if (start == peeked && 0 != memcmp (start, "HTTP", MIN (peeklen, 4)))
434     return start;
435
436   /* Look for "\n[\r]\n", and return the following position if found.
437      Start two chars before the current to cover the possibility that
438      part of the terminator (e.g. "\n\r") arrived in the previous
439      batch.  */
440   p = peeked - start < 2 ? start : peeked - 2;
441   end = peeked + peeklen;
442
443   /* Check for \n\r\n or \n\n anywhere in [p, end-2). */
444   for (; p < end - 2; p++)
445     if (*p == '\n')
446       {
447         if (p[1] == '\r' && p[2] == '\n')
448           return p + 3;
449         else if (p[1] == '\n')
450           return p + 2;
451       }
452   /* p==end-2: check for \n\n directly preceding END. */
453   if (p[0] == '\n' && p[1] == '\n')
454     return p + 2;
455
456   return NULL;
457 }
458
459 /* The maximum size of a single HTTP response we care to read.  Rather
460    than being a limit of the reader implementation, this limit
461    prevents Wget from slurping all available memory upon encountering
462    malicious or buggy server output, thus protecting the user.  Define
463    it to 0 to remove the limit.  */
464
465 #define HTTP_RESPONSE_MAX_SIZE 65536
466
467 /* Read the HTTP request head from FD and return it.  The error
468    conditions are the same as with fd_read_hunk.
469
470    To support HTTP/0.9 responses, this function tries to make sure
471    that the data begins with "HTTP".  If this is not the case, no data
472    is read and an empty request is returned, so that the remaining
473    data can be treated as body.  */
474
475 static char *
476 read_http_response_head (int fd)
477 {
478   return fd_read_hunk (fd, response_head_terminator, 512,
479                        HTTP_RESPONSE_MAX_SIZE);
480 }
481
482 struct response {
483   /* The response data. */
484   const char *data;
485
486   /* The array of pointers that indicate where each header starts.
487      For example, given this HTTP response:
488
489        HTTP/1.0 200 Ok
490        Description: some
491         text
492        Etag: x
493
494      The headers are located like this:
495
496      "HTTP/1.0 200 Ok\r\nDescription: some\r\n text\r\nEtag: x\r\n\r\n"
497      ^                   ^                             ^          ^
498      headers[0]          headers[1]                    headers[2] headers[3]
499
500      I.e. headers[0] points to the beginning of the request,
501      headers[1] points to the end of the first header and the
502      beginning of the second one, etc.  */
503
504   const char **headers;
505 };
506
507 /* Create a new response object from the text of the HTTP response,
508    available in HEAD.  That text is automatically split into
509    constituent header lines for fast retrieval using
510    resp_header_*.  */
511
512 static struct response *
513 resp_new (const char *head)
514 {
515   const char *hdr;
516   int count, size;
517
518   struct response *resp = xnew0 (struct response);
519   resp->data = head;
520
521   if (*head == '\0')
522     {
523       /* Empty head means that we're dealing with a headerless
524          (HTTP/0.9) response.  In that case, don't set HEADERS at
525          all.  */
526       return resp;
527     }
528
529   /* Split HEAD into header lines, so that resp_header_* functions
530      don't need to do this over and over again.  */
531
532   size = count = 0;
533   hdr = head;
534   while (1)
535     {
536       DO_REALLOC (resp->headers, size, count + 1, const char *);
537       resp->headers[count++] = hdr;
538
539       /* Break upon encountering an empty line. */
540       if (!hdr[0] || (hdr[0] == '\r' && hdr[1] == '\n') || hdr[0] == '\n')
541         break;
542
543       /* Find the end of HDR, including continuations. */
544       do
545         {
546           const char *end = strchr (hdr, '\n');
547           if (end)
548             hdr = end + 1;
549           else
550             hdr += strlen (hdr);
551         }
552       while (*hdr == ' ' || *hdr == '\t');
553     }
554   DO_REALLOC (resp->headers, size, count + 1, const char *);
555   resp->headers[count] = NULL;
556
557   return resp;
558 }
559
560 /* Locate the header named NAME in the request data, starting with
561    position START.  This allows the code to loop through the request
562    data, filtering for all requests of a given name.  Returns the
563    found position, or -1 for failure.  The code that uses this
564    function typically looks like this:
565
566      for (pos = 0; (pos = resp_header_locate (...)) != -1; pos++)
567        ... do something with header ...
568
569    If you only care about one header, use resp_header_get instead of
570    this function.  */
571
572 static int
573 resp_header_locate (const struct response *resp, const char *name, int start,
574                     const char **begptr, const char **endptr)
575 {
576   int i;
577   const char **headers = resp->headers;
578   int name_len;
579
580   if (!headers || !headers[1])
581     return -1;
582
583   name_len = strlen (name);
584   if (start > 0)
585     i = start;
586   else
587     i = 1;
588
589   for (; headers[i + 1]; i++)
590     {
591       const char *b = headers[i];
592       const char *e = headers[i + 1];
593       if (e - b > name_len
594           && b[name_len] == ':'
595           && 0 == strncasecmp (b, name, name_len))
596         {
597           b += name_len + 1;
598           while (b < e && ISSPACE (*b))
599             ++b;
600           while (b < e && ISSPACE (e[-1]))
601             --e;
602           *begptr = b;
603           *endptr = e;
604           return i;
605         }
606     }
607   return -1;
608 }
609
610 /* Find and retrieve the header named NAME in the request data.  If
611    found, set *BEGPTR to its starting, and *ENDPTR to its ending
612    position, and return true.  Otherwise return false.
613
614    This function is used as a building block for resp_header_copy
615    and resp_header_strdup.  */
616
617 static bool
618 resp_header_get (const struct response *resp, const char *name,
619                  const char **begptr, const char **endptr)
620 {
621   int pos = resp_header_locate (resp, name, 0, begptr, endptr);
622   return pos != -1;
623 }
624
625 /* Copy the response header named NAME to buffer BUF, no longer than
626    BUFSIZE (BUFSIZE includes the terminating 0).  If the header
627    exists, true is returned, false otherwise.  If there should be no
628    limit on the size of the header, use resp_header_strdup instead.
629
630    If BUFSIZE is 0, no data is copied, but the boolean indication of
631    whether the header is present is still returned.  */
632
633 static bool
634 resp_header_copy (const struct response *resp, const char *name,
635                   char *buf, int bufsize)
636 {
637   const char *b, *e;
638   if (!resp_header_get (resp, name, &b, &e))
639     return false;
640   if (bufsize)
641     {
642       int len = MIN (e - b, bufsize - 1);
643       memcpy (buf, b, len);
644       buf[len] = '\0';
645     }
646   return true;
647 }
648
649 /* Return the value of header named NAME in RESP, allocated with
650    malloc.  If such a header does not exist in RESP, return NULL.  */
651
652 static char *
653 resp_header_strdup (const struct response *resp, const char *name)
654 {
655   const char *b, *e;
656   if (!resp_header_get (resp, name, &b, &e))
657     return NULL;
658   return strdupdelim (b, e);
659 }
660
661 /* Parse the HTTP status line, which is of format:
662
663    HTTP-Version SP Status-Code SP Reason-Phrase
664
665    The function returns the status-code, or -1 if the status line
666    appears malformed.  The pointer to "reason-phrase" message is
667    returned in *MESSAGE.  */
668
669 static int
670 resp_status (const struct response *resp, char **message)
671 {
672   int status;
673   const char *p, *end;
674
675   if (!resp->headers)
676     {
677       /* For a HTTP/0.9 response, assume status 200. */
678       if (message)
679         *message = xstrdup (_("No headers, assuming HTTP/0.9"));
680       return 200;
681     }
682
683   p = resp->headers[0];
684   end = resp->headers[1];
685
686   if (!end)
687     return -1;
688
689   /* "HTTP" */
690   if (end - p < 4 || 0 != strncmp (p, "HTTP", 4))
691     return -1;
692   p += 4;
693
694   /* Match the HTTP version.  This is optional because Gnutella
695      servers have been reported to not specify HTTP version.  */
696   if (p < end && *p == '/')
697     {
698       ++p;
699       while (p < end && ISDIGIT (*p))
700         ++p;
701       if (p < end && *p == '.')
702         ++p; 
703       while (p < end && ISDIGIT (*p))
704         ++p;
705     }
706
707   while (p < end && ISSPACE (*p))
708     ++p;
709   if (end - p < 3 || !ISDIGIT (p[0]) || !ISDIGIT (p[1]) || !ISDIGIT (p[2]))
710     return -1;
711
712   status = 100 * (p[0] - '0') + 10 * (p[1] - '0') + (p[2] - '0');
713   p += 3;
714
715   if (message)
716     {
717       while (p < end && ISSPACE (*p))
718         ++p;
719       while (p < end && ISSPACE (end[-1]))
720         --end;
721       *message = strdupdelim (p, end);
722     }
723
724   return status;
725 }
726
727 /* Release the resources used by RESP.  */
728
729 static void
730 resp_free (struct response *resp)
731 {
732   xfree_null (resp->headers);
733   xfree (resp);
734 }
735
736 /* Print the server response, line by line, omitting the trailing CRLF
737    from individual header lines, and prefixed with PREFIX.  */
738
739 static void
740 print_server_response (const struct response *resp, const char *prefix)
741 {
742   int i;
743   if (!resp->headers)
744     return;
745   for (i = 0; resp->headers[i + 1]; i++)
746     {
747       const char *b = resp->headers[i];
748       const char *e = resp->headers[i + 1];
749       /* Skip CRLF */
750       if (b < e && e[-1] == '\n')
751         --e;
752       if (b < e && e[-1] == '\r')
753         --e;
754       /* This is safe even on printfs with broken handling of "%.<n>s"
755          because resp->headers ends with \0.  */
756       logprintf (LOG_VERBOSE, "%s%.*s\n", prefix, e - b, b);
757     }
758 }
759
760 /* Parse the `Content-Range' header and extract the information it
761    contains.  Returns true if successful, false otherwise.  */
762 static bool
763 parse_content_range (const char *hdr, wgint *first_byte_ptr,
764                      wgint *last_byte_ptr, wgint *entity_length_ptr)
765 {
766   wgint num;
767
768   /* Ancient versions of Netscape proxy server, presumably predating
769      rfc2068, sent out `Content-Range' without the "bytes"
770      specifier.  */
771   if (0 == strncasecmp (hdr, "bytes", 5))
772     {
773       hdr += 5;
774       /* "JavaWebServer/1.1.1" sends "bytes: x-y/z", contrary to the
775          HTTP spec. */
776       if (*hdr == ':')
777         ++hdr;
778       while (ISSPACE (*hdr))
779         ++hdr;
780       if (!*hdr)
781         return false;
782     }
783   if (!ISDIGIT (*hdr))
784     return false;
785   for (num = 0; ISDIGIT (*hdr); hdr++)
786     num = 10 * num + (*hdr - '0');
787   if (*hdr != '-' || !ISDIGIT (*(hdr + 1)))
788     return false;
789   *first_byte_ptr = num;
790   ++hdr;
791   for (num = 0; ISDIGIT (*hdr); hdr++)
792     num = 10 * num + (*hdr - '0');
793   if (*hdr != '/' || !ISDIGIT (*(hdr + 1)))
794     return false;
795   *last_byte_ptr = num;
796   ++hdr;
797   for (num = 0; ISDIGIT (*hdr); hdr++)
798     num = 10 * num + (*hdr - '0');
799   *entity_length_ptr = num;
800   return true;
801 }
802
803 /* Read the body of the request, but don't store it anywhere and don't
804    display a progress gauge.  This is useful for reading the bodies of
805    administrative responses to which we will soon issue another
806    request.  The response is not useful to the user, but reading it
807    allows us to continue using the same connection to the server.
808
809    If reading fails, false is returned, true otherwise.  In debug
810    mode, the body is displayed for debugging purposes.  */
811
812 static bool
813 skip_short_body (int fd, wgint contlen)
814 {
815   enum {
816     SKIP_SIZE = 512,            /* size of the download buffer */
817     SKIP_THRESHOLD = 4096       /* the largest size we read */
818   };
819   char dlbuf[SKIP_SIZE + 1];
820   dlbuf[SKIP_SIZE] = '\0';      /* so DEBUGP can safely print it */
821
822   /* We shouldn't get here with unknown contlen.  (This will change
823      with HTTP/1.1, which supports "chunked" transfer.)  */
824   assert (contlen != -1);
825
826   /* If the body is too large, it makes more sense to simply close the
827      connection than to try to read the body.  */
828   if (contlen > SKIP_THRESHOLD)
829     return false;
830
831   DEBUGP (("Skipping %s bytes of body: [", number_to_static_string (contlen)));
832
833   while (contlen > 0)
834     {
835       int ret = fd_read (fd, dlbuf, MIN (contlen, SKIP_SIZE), -1);
836       if (ret <= 0)
837         {
838           /* Don't normally report the error since this is an
839              optimization that should be invisible to the user.  */
840           DEBUGP (("] aborting (%s).\n",
841                    ret < 0 ? strerror (errno) : "EOF received"));
842           return false;
843         }
844       contlen -= ret;
845       /* Safe even if %.*s bogusly expects terminating \0 because
846          we've zero-terminated dlbuf above.  */
847       DEBUGP (("%.*s", ret, dlbuf));
848     }
849
850   DEBUGP (("] done.\n"));
851   return true;
852 }
853 \f
854 /* Persistent connections.  Currently, we cache the most recently used
855    connection as persistent, provided that the HTTP server agrees to
856    make it such.  The persistence data is stored in the variables
857    below.  Ideally, it should be possible to cache an arbitrary fixed
858    number of these connections.  */
859
860 /* Whether a persistent connection is active. */
861 static bool pconn_active;
862
863 static struct {
864   /* The socket of the connection.  */
865   int socket;
866
867   /* Host and port of the currently active persistent connection. */
868   char *host;
869   int port;
870
871   /* Whether a ssl handshake has occoured on this connection.  */
872   bool ssl;
873
874   /* Whether the connection was authorized.  This is only done by
875      NTLM, which authorizes *connections* rather than individual
876      requests.  (That practice is peculiar for HTTP, but it is a
877      useful optimization.)  */
878   bool authorized;
879
880 #ifdef ENABLE_NTLM
881   /* NTLM data of the current connection.  */
882   struct ntlmdata ntlm;
883 #endif
884 } pconn;
885
886 /* Mark the persistent connection as invalid and free the resources it
887    uses.  This is used by the CLOSE_* macros after they forcefully
888    close a registered persistent connection.  */
889
890 static void
891 invalidate_persistent (void)
892 {
893   DEBUGP (("Disabling further reuse of socket %d.\n", pconn.socket));
894   pconn_active = false;
895   fd_close (pconn.socket);
896   xfree (pconn.host);
897   xzero (pconn);
898 }
899
900 /* Register FD, which should be a TCP/IP connection to HOST:PORT, as
901    persistent.  This will enable someone to use the same connection
902    later.  In the context of HTTP, this must be called only AFTER the
903    response has been received and the server has promised that the
904    connection will remain alive.
905
906    If a previous connection was persistent, it is closed. */
907
908 static void
909 register_persistent (const char *host, int port, int fd, bool ssl)
910 {
911   if (pconn_active)
912     {
913       if (pconn.socket == fd)
914         {
915           /* The connection FD is already registered. */
916           return;
917         }
918       else
919         {
920           /* The old persistent connection is still active; close it
921              first.  This situation arises whenever a persistent
922              connection exists, but we then connect to a different
923              host, and try to register a persistent connection to that
924              one.  */
925           invalidate_persistent ();
926         }
927     }
928
929   pconn_active = true;
930   pconn.socket = fd;
931   pconn.host = xstrdup (host);
932   pconn.port = port;
933   pconn.ssl = ssl;
934   pconn.authorized = false;
935
936   DEBUGP (("Registered socket %d for persistent reuse.\n", fd));
937 }
938
939 /* Return true if a persistent connection is available for connecting
940    to HOST:PORT.  */
941
942 static bool
943 persistent_available_p (const char *host, int port, bool ssl,
944                         bool *host_lookup_failed)
945 {
946   /* First, check whether a persistent connection is active at all.  */
947   if (!pconn_active)
948     return false;
949
950   /* If we want SSL and the last connection wasn't or vice versa,
951      don't use it.  Checking for host and port is not enough because
952      HTTP and HTTPS can apparently coexist on the same port.  */
953   if (ssl != pconn.ssl)
954     return false;
955
956   /* If we're not connecting to the same port, we're not interested. */
957   if (port != pconn.port)
958     return false;
959
960   /* If the host is the same, we're in business.  If not, there is
961      still hope -- read below.  */
962   if (0 != strcasecmp (host, pconn.host))
963     {
964       /* Check if pconn.socket is talking to HOST under another name.
965          This happens often when both sites are virtual hosts
966          distinguished only by name and served by the same network
967          interface, and hence the same web server (possibly set up by
968          the ISP and serving many different web sites).  This
969          admittedly unconventional optimization does not contradict
970          HTTP and works well with popular server software.  */
971
972       bool found;
973       ip_address ip;
974       struct address_list *al;
975
976       if (ssl)
977         /* Don't try to talk to two different SSL sites over the same
978            secure connection!  (Besides, it's not clear that
979            name-based virtual hosting is even possible with SSL.)  */
980         return false;
981
982       /* If pconn.socket's peer is one of the IP addresses HOST
983          resolves to, pconn.socket is for all intents and purposes
984          already talking to HOST.  */
985
986       if (!socket_ip_address (pconn.socket, &ip, ENDPOINT_PEER))
987         {
988           /* Can't get the peer's address -- something must be very
989              wrong with the connection.  */
990           invalidate_persistent ();
991           return false;
992         }
993       al = lookup_host (host, 0);
994       if (!al)
995         {
996           *host_lookup_failed = true;
997           return false;
998         }
999
1000       found = address_list_contains (al, &ip);
1001       address_list_release (al);
1002
1003       if (!found)
1004         return false;
1005
1006       /* The persistent connection's peer address was found among the
1007          addresses HOST resolved to; therefore, pconn.sock is in fact
1008          already talking to HOST -- no need to reconnect.  */
1009     }
1010
1011   /* Finally, check whether the connection is still open.  This is
1012      important because most servers implement liberal (short) timeout
1013      on persistent connections.  Wget can of course always reconnect
1014      if the connection doesn't work out, but it's nicer to know in
1015      advance.  This test is a logical followup of the first test, but
1016      is "expensive" and therefore placed at the end of the list.
1017
1018      (Current implementation of test_socket_open has a nice side
1019      effect that it treats sockets with pending data as "closed".
1020      This is exactly what we want: if a broken server sends message
1021      body in response to HEAD, or if it sends more than conent-length
1022      data, we won't reuse the corrupted connection.)  */
1023
1024   if (!test_socket_open (pconn.socket))
1025     {
1026       /* Oops, the socket is no longer open.  Now that we know that,
1027          let's invalidate the persistent connection before returning
1028          0.  */
1029       invalidate_persistent ();
1030       return false;
1031     }
1032
1033   return true;
1034 }
1035
1036 /* The idea behind these two CLOSE macros is to distinguish between
1037    two cases: one when the job we've been doing is finished, and we
1038    want to close the connection and leave, and two when something is
1039    seriously wrong and we're closing the connection as part of
1040    cleanup.
1041
1042    In case of keep_alive, CLOSE_FINISH should leave the connection
1043    open, while CLOSE_INVALIDATE should still close it.
1044
1045    Note that the semantics of the flag `keep_alive' is "this
1046    connection *will* be reused (the server has promised not to close
1047    the connection once we're done)", while the semantics of
1048    `pc_active_p && (fd) == pc_last_fd' is "we're *now* using an
1049    active, registered connection".  */
1050
1051 #define CLOSE_FINISH(fd) do {                   \
1052   if (!keep_alive)                              \
1053     {                                           \
1054       if (pconn_active && (fd) == pconn.socket) \
1055         invalidate_persistent ();               \
1056       else                                      \
1057         {                                       \
1058           fd_close (fd);                        \
1059           fd = -1;                              \
1060         }                                       \
1061     }                                           \
1062 } while (0)
1063
1064 #define CLOSE_INVALIDATE(fd) do {               \
1065   if (pconn_active && (fd) == pconn.socket)     \
1066     invalidate_persistent ();                   \
1067   else                                          \
1068     fd_close (fd);                              \
1069   fd = -1;                                      \
1070 } while (0)
1071 \f
1072 struct http_stat
1073 {
1074   wgint len;                    /* received length */
1075   wgint contlen;                /* expected length */
1076   wgint restval;                /* the restart value */
1077   int res;                      /* the result of last read */
1078   char *newloc;                 /* new location (redirection) */
1079   char *remote_time;            /* remote time-stamp string */
1080   char *error;                  /* textual HTTP error */
1081   int statcode;                 /* status code */
1082   wgint rd_size;                /* amount of data read from socket */
1083   double dltime;                /* time it took to download the data */
1084   const char *referer;          /* value of the referer header. */
1085   char **local_file;            /* local file. */
1086 };
1087
1088 static void
1089 free_hstat (struct http_stat *hs)
1090 {
1091   xfree_null (hs->newloc);
1092   xfree_null (hs->remote_time);
1093   xfree_null (hs->error);
1094
1095   /* Guard against being called twice. */
1096   hs->newloc = NULL;
1097   hs->remote_time = NULL;
1098   hs->error = NULL;
1099 }
1100
1101 static char *create_authorization_line (const char *, const char *,
1102                                         const char *, const char *,
1103                                         const char *, bool *);
1104 static char *basic_authentication_encode (const char *, const char *);
1105 static bool known_authentication_scheme_p (const char *, const char *);
1106
1107 #define BEGINS_WITH(line, string_constant)                              \
1108   (!strncasecmp (line, string_constant, sizeof (string_constant) - 1)   \
1109    && (ISSPACE (line[sizeof (string_constant) - 1])                     \
1110        || !line[sizeof (string_constant) - 1]))
1111
1112 #define SET_USER_AGENT(req) do {                                        \
1113   if (!opt.useragent)                                                   \
1114     request_set_header (req, "User-Agent",                              \
1115                         aprintf ("Wget/%s", version_string), rel_value); \
1116   else if (*opt.useragent)                                              \
1117     request_set_header (req, "User-Agent", opt.useragent, rel_none);    \
1118 } while (0)
1119
1120 /* The flags that allow clobbering the file (opening with "wb").
1121    Defined here to avoid repetition later.  #### This will require
1122    rework.  */
1123 #define ALLOW_CLOBBER (opt.noclobber || opt.always_rest || opt.timestamping \
1124                        || opt.dirstruct || opt.output_document)
1125
1126 /* Retrieve a document through HTTP protocol.  It recognizes status
1127    code, and correctly handles redirections.  It closes the network
1128    socket.  If it receives an error from the functions below it, it
1129    will print it if there is enough information to do so (almost
1130    always), returning the error to the caller (i.e. http_loop).
1131
1132    Various HTTP parameters are stored to hs.
1133
1134    If PROXY is non-NULL, the connection will be made to the proxy
1135    server, and u->url will be requested.  */
1136 static uerr_t
1137 gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy)
1138 {
1139   struct request *req;
1140
1141   char *type;
1142   char *user, *passwd;
1143   char *proxyauth;
1144   int statcode;
1145   int write_error;
1146   wgint contlen, contrange;
1147   struct url *conn;
1148   FILE *fp;
1149
1150   int sock = -1;
1151   int flags;
1152
1153   /* Set to 1 when the authorization has failed permanently and should
1154      not be tried again. */
1155   bool auth_finished = false;
1156
1157   /* Whether NTLM authentication is used for this request. */
1158   bool ntlm_seen = false;
1159
1160   /* Whether our connection to the remote host is through SSL.  */
1161   bool using_ssl = false;
1162
1163   /* Whether a HEAD request will be issued (as opposed to GET or
1164      POST). */
1165   bool head_only = !!(*dt & HEAD_ONLY);
1166
1167   char *head;
1168   struct response *resp;
1169   char hdrval[256];
1170   char *message;
1171
1172   /* Whether this connection will be kept alive after the HTTP request
1173      is done. */
1174   bool keep_alive;
1175
1176   /* Whether keep-alive should be inhibited.
1177
1178      RFC 2068 requests that 1.0 clients not send keep-alive requests
1179      to proxies.  This is because many 1.0 proxies do not interpret
1180      the Connection header and transfer it to the remote server,
1181      causing it to not close the connection and leave both the proxy
1182      and the client hanging.  */
1183   bool inhibit_keep_alive =
1184     !opt.http_keep_alive || opt.ignore_length || proxy != NULL;
1185
1186   /* Headers sent when using POST. */
1187   wgint post_data_size = 0;
1188
1189   bool host_lookup_failed = false;
1190
1191 #ifdef HAVE_SSL
1192   if (u->scheme == SCHEME_HTTPS)
1193     {
1194       /* Initialize the SSL context.  After this has once been done,
1195          it becomes a no-op.  */
1196       if (!ssl_init ())
1197         {
1198           scheme_disable (SCHEME_HTTPS);
1199           logprintf (LOG_NOTQUIET,
1200                      _("Disabling SSL due to encountered errors.\n"));
1201           return SSLINITFAILED;
1202         }
1203     }
1204 #endif /* HAVE_SSL */
1205
1206   if (!head_only)
1207     /* If we're doing a GET on the URL, as opposed to just a HEAD, we need to
1208        know the local filename so we can save to it. */
1209     assert (*hs->local_file != NULL);
1210
1211   /* Initialize certain elements of struct http_stat.  */
1212   hs->len = 0;
1213   hs->contlen = -1;
1214   hs->res = -1;
1215   hs->newloc = NULL;
1216   hs->remote_time = NULL;
1217   hs->error = NULL;
1218
1219   conn = u;
1220
1221   /* Prepare the request to send. */
1222
1223   req = request_new ();
1224   {
1225     char *meth_arg;
1226     const char *meth = "GET";
1227     if (head_only)
1228       meth = "HEAD";
1229     else if (opt.post_file_name || opt.post_data)
1230       meth = "POST";
1231     /* Use the full path, i.e. one that includes the leading slash and
1232        the query string.  E.g. if u->path is "foo/bar" and u->query is
1233        "param=value", full_path will be "/foo/bar?param=value".  */
1234     if (proxy
1235 #ifdef HAVE_SSL
1236         /* When using SSL over proxy, CONNECT establishes a direct
1237            connection to the HTTPS server.  Therefore use the same
1238            argument as when talking to the server directly. */
1239         && u->scheme != SCHEME_HTTPS
1240 #endif
1241         )
1242       meth_arg = xstrdup (u->url);
1243     else
1244       meth_arg = url_full_path (u);
1245     request_set_method (req, meth, meth_arg);
1246   }
1247
1248   request_set_header (req, "Referer", (char *) hs->referer, rel_none);
1249   if (*dt & SEND_NOCACHE)
1250     request_set_header (req, "Pragma", "no-cache", rel_none);
1251   if (hs->restval)
1252     request_set_header (req, "Range",
1253                         aprintf ("bytes=%s-",
1254                                  number_to_static_string (hs->restval)),
1255                         rel_value);
1256   SET_USER_AGENT (req);
1257   request_set_header (req, "Accept", "*/*", rel_none);
1258
1259   /* Find the username and password for authentication. */
1260   user = u->user;
1261   passwd = u->passwd;
1262   search_netrc (u->host, (const char **)&user, (const char **)&passwd, 0);
1263   user = user ? user : (opt.http_user ? opt.http_user : opt.user);
1264   passwd = passwd ? passwd : (opt.http_passwd ? opt.http_passwd : opt.passwd);
1265
1266   if (user && passwd)
1267     {
1268       /* We have the username and the password, but haven't tried
1269          any authorization yet.  Let's see if the "Basic" method
1270          works.  If not, we'll come back here and construct a
1271          proper authorization method with the right challenges.
1272
1273          If we didn't employ this kind of logic, every URL that
1274          requires authorization would have to be processed twice,
1275          which is very suboptimal and generates a bunch of false
1276          "unauthorized" errors in the server log.
1277
1278          #### But this logic also has a serious problem when used
1279          with stronger authentications: we *first* transmit the
1280          username and the password in clear text, and *then* attempt a
1281          stronger authentication scheme.  That cannot be right!  We
1282          are only fortunate that almost everyone still uses the
1283          `Basic' scheme anyway.
1284
1285          There should be an option to prevent this from happening, for
1286          those who use strong authentication schemes and value their
1287          passwords.  */
1288       request_set_header (req, "Authorization",
1289                           basic_authentication_encode (user, passwd),
1290                           rel_value);
1291     }
1292
1293   proxyauth = NULL;
1294   if (proxy)
1295     {
1296       char *proxy_user, *proxy_passwd;
1297       /* For normal username and password, URL components override
1298          command-line/wgetrc parameters.  With proxy
1299          authentication, it's the reverse, because proxy URLs are
1300          normally the "permanent" ones, so command-line args
1301          should take precedence.  */
1302       if (opt.proxy_user && opt.proxy_passwd)
1303         {
1304           proxy_user = opt.proxy_user;
1305           proxy_passwd = opt.proxy_passwd;
1306         }
1307       else
1308         {
1309           proxy_user = proxy->user;
1310           proxy_passwd = proxy->passwd;
1311         }
1312       /* #### This does not appear right.  Can't the proxy request,
1313          say, `Digest' authentication?  */
1314       if (proxy_user && proxy_passwd)
1315         proxyauth = basic_authentication_encode (proxy_user, proxy_passwd);
1316
1317       /* If we're using a proxy, we will be connecting to the proxy
1318          server.  */
1319       conn = proxy;
1320
1321       /* Proxy authorization over SSL is handled below. */
1322 #ifdef HAVE_SSL
1323       if (u->scheme != SCHEME_HTTPS)
1324 #endif
1325         request_set_header (req, "Proxy-Authorization", proxyauth, rel_value);
1326     }
1327
1328   /* Generate the Host header, HOST:PORT.  Take into account that:
1329
1330      - Broken server-side software often doesn't recognize the PORT
1331        argument, so we must generate "Host: www.server.com" instead of
1332        "Host: www.server.com:80" (and likewise for https port).
1333
1334      - IPv6 addresses contain ":", so "Host: 3ffe:8100:200:2::2:1234"
1335        becomes ambiguous and needs to be rewritten as "Host:
1336        [3ffe:8100:200:2::2]:1234".  */
1337   {
1338     /* Formats arranged for hfmt[add_port][add_squares].  */
1339     static const char *hfmt[][2] = {
1340       { "%s", "[%s]" }, { "%s:%d", "[%s]:%d" }
1341     };
1342     int add_port = u->port != scheme_default_port (u->scheme);
1343     int add_squares = strchr (u->host, ':') != NULL;
1344     request_set_header (req, "Host",
1345                         aprintf (hfmt[add_port][add_squares], u->host, u->port),
1346                         rel_value);
1347   }
1348
1349   if (!inhibit_keep_alive)
1350     request_set_header (req, "Connection", "Keep-Alive", rel_none);
1351
1352   if (opt.cookies)
1353     request_set_header (req, "Cookie",
1354                         cookie_header (wget_cookie_jar,
1355                                        u->host, u->port, u->path,
1356 #ifdef HAVE_SSL
1357                                        u->scheme == SCHEME_HTTPS
1358 #else
1359                                        0
1360 #endif
1361                                        ),
1362                         rel_value);
1363
1364   if (opt.post_data || opt.post_file_name)
1365     {
1366       request_set_header (req, "Content-Type",
1367                           "application/x-www-form-urlencoded", rel_none);
1368       if (opt.post_data)
1369         post_data_size = strlen (opt.post_data);
1370       else
1371         {
1372           post_data_size = file_size (opt.post_file_name);
1373           if (post_data_size == -1)
1374             {
1375               logprintf (LOG_NOTQUIET, _("POST data file `%s' missing: %s\n"),
1376                          opt.post_file_name, strerror (errno));
1377               post_data_size = 0;
1378             }
1379         }
1380       request_set_header (req, "Content-Length",
1381                           xstrdup (number_to_static_string (post_data_size)),
1382                           rel_value);
1383     }
1384
1385   /* Add the user headers. */
1386   if (opt.user_headers)
1387     {
1388       int i;
1389       for (i = 0; opt.user_headers[i]; i++)
1390         request_set_user_header (req, opt.user_headers[i]);
1391     }
1392
1393  retry_with_auth:
1394   /* We need to come back here when the initial attempt to retrieve
1395      without authorization header fails.  (Expected to happen at least
1396      for the Digest authorization scheme.)  */
1397
1398   keep_alive = false;
1399
1400   /* Establish the connection.  */
1401
1402   if (!inhibit_keep_alive)
1403     {
1404       /* Look for a persistent connection to target host, unless a
1405          proxy is used.  The exception is when SSL is in use, in which
1406          case the proxy is nothing but a passthrough to the target
1407          host, registered as a connection to the latter.  */
1408       struct url *relevant = conn;
1409 #ifdef HAVE_SSL
1410       if (u->scheme == SCHEME_HTTPS)
1411         relevant = u;
1412 #endif
1413
1414       if (persistent_available_p (relevant->host, relevant->port,
1415 #ifdef HAVE_SSL
1416                                   relevant->scheme == SCHEME_HTTPS,
1417 #else
1418                                   0,
1419 #endif
1420                                   &host_lookup_failed))
1421         {
1422           sock = pconn.socket;
1423           using_ssl = pconn.ssl;
1424           logprintf (LOG_VERBOSE, _("Reusing existing connection to %s:%d.\n"),
1425                      escnonprint (pconn.host), pconn.port);
1426           DEBUGP (("Reusing fd %d.\n", sock));
1427           if (pconn.authorized)
1428             /* If the connection is already authorized, the "Basic"
1429                authorization added by code above is unnecessary and
1430                only hurts us.  */
1431             request_remove_header (req, "Authorization");
1432         }
1433     }
1434
1435   if (sock < 0)
1436     {
1437       /* In its current implementation, persistent_available_p will
1438          look up conn->host in some cases.  If that lookup failed, we
1439          don't need to bother with connect_to_host.  */
1440       if (host_lookup_failed)
1441         {
1442           request_free (req);
1443           return HOSTERR;
1444         }
1445
1446       sock = connect_to_host (conn->host, conn->port);
1447       if (sock == E_HOST)
1448         {
1449           request_free (req);
1450           return HOSTERR;
1451         }
1452       else if (sock < 0)
1453         {
1454           request_free (req);
1455           return (retryable_socket_connect_error (errno)
1456                   ? CONERROR : CONIMPOSSIBLE);
1457         }
1458
1459 #ifdef HAVE_SSL
1460       if (proxy && u->scheme == SCHEME_HTTPS)
1461         {
1462           /* When requesting SSL URLs through proxies, use the
1463              CONNECT method to request passthrough.  */
1464           struct request *connreq = request_new ();
1465           request_set_method (connreq, "CONNECT",
1466                               aprintf ("%s:%d", u->host, u->port));
1467           SET_USER_AGENT (connreq);
1468           if (proxyauth)
1469             {
1470               request_set_header (connreq, "Proxy-Authorization",
1471                                   proxyauth, rel_value);
1472               /* Now that PROXYAUTH is part of the CONNECT request,
1473                  zero it out so we don't send proxy authorization with
1474                  the regular request below.  */
1475               proxyauth = NULL;
1476             }
1477           /* Examples in rfc2817 use the Host header in CONNECT
1478              requests.  I don't see how that gains anything, given
1479              that the contents of Host would be exactly the same as
1480              the contents of CONNECT.  */
1481
1482           write_error = request_send (connreq, sock);
1483           request_free (connreq);
1484           if (write_error < 0)
1485             {
1486               logprintf (LOG_VERBOSE, _("Failed writing to proxy: %s.\n"),
1487                          strerror (errno));
1488               CLOSE_INVALIDATE (sock);
1489               return WRITEFAILED;
1490             }
1491
1492           head = read_http_response_head (sock);
1493           if (!head)
1494             {
1495               logprintf (LOG_VERBOSE, _("Failed reading proxy response: %s\n"),
1496                          strerror (errno));
1497               CLOSE_INVALIDATE (sock);
1498               return HERR;
1499             }
1500           message = NULL;
1501           if (!*head)
1502             {
1503               xfree (head);
1504               goto failed_tunnel;
1505             }
1506           DEBUGP (("proxy responded with: [%s]\n", head));
1507
1508           resp = resp_new (head);
1509           statcode = resp_status (resp, &message);
1510           resp_free (resp);
1511           xfree (head);
1512           if (statcode != 200)
1513             {
1514             failed_tunnel:
1515               logprintf (LOG_NOTQUIET, _("Proxy tunneling failed: %s"),
1516                          message ? escnonprint (message) : "?");
1517               xfree_null (message);
1518               return CONSSLERR;
1519             }
1520           xfree_null (message);
1521
1522           /* SOCK is now *really* connected to u->host, so update CONN
1523              to reflect this.  That way register_persistent will
1524              register SOCK as being connected to u->host:u->port.  */
1525           conn = u;
1526         }
1527
1528       if (conn->scheme == SCHEME_HTTPS)
1529         {
1530           if (!ssl_connect (sock) || !ssl_check_certificate (sock, u->host))
1531             {
1532               fd_close (sock);
1533               return CONSSLERR;
1534             }
1535           using_ssl = true;
1536         }
1537 #endif /* HAVE_SSL */
1538     }
1539
1540   /* Send the request to server.  */
1541   write_error = request_send (req, sock);
1542
1543   if (write_error >= 0)
1544     {
1545       if (opt.post_data)
1546         {
1547           DEBUGP (("[POST data: %s]\n", opt.post_data));
1548           write_error = fd_write (sock, opt.post_data, post_data_size, -1);
1549         }
1550       else if (opt.post_file_name && post_data_size != 0)
1551         write_error = post_file (sock, opt.post_file_name, post_data_size);
1552     }
1553
1554   if (write_error < 0)
1555     {
1556       logprintf (LOG_VERBOSE, _("Failed writing HTTP request: %s.\n"),
1557                  strerror (errno));
1558       CLOSE_INVALIDATE (sock);
1559       request_free (req);
1560       return WRITEFAILED;
1561     }
1562   logprintf (LOG_VERBOSE, _("%s request sent, awaiting response... "),
1563              proxy ? "Proxy" : "HTTP");
1564   contlen = -1;
1565   contrange = 0;
1566   *dt &= ~RETROKF;
1567
1568   head = read_http_response_head (sock);
1569   if (!head)
1570     {
1571       if (errno == 0)
1572         {
1573           logputs (LOG_NOTQUIET, _("No data received.\n"));
1574           CLOSE_INVALIDATE (sock);
1575           request_free (req);
1576           return HEOF;
1577         }
1578       else
1579         {
1580           logprintf (LOG_NOTQUIET, _("Read error (%s) in headers.\n"),
1581                      strerror (errno));
1582           CLOSE_INVALIDATE (sock);
1583           request_free (req);
1584           return HERR;
1585         }
1586     }
1587   DEBUGP (("\n---response begin---\n%s---response end---\n", head));
1588
1589   resp = resp_new (head);
1590
1591   /* Check for status line.  */
1592   message = NULL;
1593   statcode = resp_status (resp, &message);
1594   if (!opt.server_response)
1595     logprintf (LOG_VERBOSE, "%2d %s\n", statcode,
1596                message ? escnonprint (message) : "");
1597   else
1598     {
1599       logprintf (LOG_VERBOSE, "\n");
1600       print_server_response (resp, "  ");
1601     }
1602
1603   if (!opt.ignore_length
1604       && resp_header_copy (resp, "Content-Length", hdrval, sizeof (hdrval)))
1605     {
1606       wgint parsed;
1607       errno = 0;
1608       parsed = str_to_wgint (hdrval, NULL, 10);
1609       if (parsed == WGINT_MAX && errno == ERANGE)
1610         /* Out of range.
1611            #### If Content-Length is out of range, it most likely
1612            means that the file is larger than 2G and that we're
1613            compiled without LFS.  In that case we should probably
1614            refuse to even attempt to download the file.  */
1615         contlen = -1;
1616       else
1617         contlen = parsed;
1618     }
1619
1620   /* Check for keep-alive related responses. */
1621   if (!inhibit_keep_alive && contlen != -1)
1622     {
1623       if (resp_header_copy (resp, "Keep-Alive", NULL, 0))
1624         keep_alive = true;
1625       else if (resp_header_copy (resp, "Connection", hdrval, sizeof (hdrval)))
1626         {
1627           if (0 == strcasecmp (hdrval, "Keep-Alive"))
1628             keep_alive = true;
1629         }
1630     }
1631   if (keep_alive)
1632     /* The server has promised that it will not close the connection
1633        when we're done.  This means that we can register it.  */
1634     register_persistent (conn->host, conn->port, sock, using_ssl);
1635
1636   if (statcode == HTTP_STATUS_UNAUTHORIZED)
1637     {
1638       /* Authorization is required.  */
1639       if (keep_alive && !head_only && skip_short_body (sock, contlen))
1640         CLOSE_FINISH (sock);
1641       else
1642         CLOSE_INVALIDATE (sock);
1643       pconn.authorized = false;
1644       if (!auth_finished && (user && passwd))
1645         {
1646           /* IIS sends multiple copies of WWW-Authenticate, one with
1647              the value "negotiate", and other(s) with data.  Loop over
1648              all the occurrences and pick the one we recognize.  */
1649           int wapos;
1650           const char *wabeg, *waend;
1651           char *www_authenticate = NULL;
1652           for (wapos = 0;
1653                (wapos = resp_header_locate (resp, "WWW-Authenticate", wapos,
1654                                             &wabeg, &waend)) != -1;
1655                ++wapos)
1656             if (known_authentication_scheme_p (wabeg, waend))
1657               {
1658                 BOUNDED_TO_ALLOCA (wabeg, waend, www_authenticate);
1659                 break;
1660               }
1661
1662           if (!www_authenticate)
1663             /* If the authentication header is missing or
1664                unrecognized, there's no sense in retrying.  */
1665             logputs (LOG_NOTQUIET, _("Unknown authentication scheme.\n"));
1666           else if (BEGINS_WITH (www_authenticate, "Basic"))
1667             /* If the authentication scheme is "Basic", which we send
1668                by default, there's no sense in retrying either.  (This
1669                should be changed when we stop sending "Basic" data by
1670                default.)  */
1671             ;
1672           else
1673             {
1674               char *pth;
1675               pth = url_full_path (u);
1676               request_set_header (req, "Authorization",
1677                                   create_authorization_line (www_authenticate,
1678                                                              user, passwd,
1679                                                              request_method (req),
1680                                                              pth,
1681                                                              &auth_finished),
1682                                   rel_value);
1683               if (BEGINS_WITH (www_authenticate, "NTLM"))
1684                 ntlm_seen = true;
1685               xfree (pth);
1686               goto retry_with_auth;
1687             }
1688         }
1689       logputs (LOG_NOTQUIET, _("Authorization failed.\n"));
1690       request_free (req);
1691       return AUTHFAILED;
1692     }
1693   else /* statcode != HTTP_STATUS_UNAUTHORIZED */
1694     {
1695       /* Kludge: if NTLM is used, mark the TCP connection as authorized. */
1696       if (ntlm_seen)
1697         pconn.authorized = true;
1698     }
1699   request_free (req);
1700
1701   hs->statcode = statcode;
1702   if (statcode == -1)
1703     hs->error = xstrdup (_("Malformed status line"));
1704   else if (!*message)
1705     hs->error = xstrdup (_("(no description)"));
1706   else
1707     hs->error = xstrdup (message);
1708   xfree (message);
1709
1710   type = resp_header_strdup (resp, "Content-Type");
1711   if (type)
1712     {
1713       char *tmp = strchr (type, ';');
1714       if (tmp)
1715         {
1716           while (tmp > type && ISSPACE (tmp[-1]))
1717             --tmp;
1718           *tmp = '\0';
1719         }
1720     }
1721   hs->newloc = resp_header_strdup (resp, "Location");
1722   hs->remote_time = resp_header_strdup (resp, "Last-Modified");
1723
1724   /* Handle (possibly multiple instances of) the Set-Cookie header. */
1725   if (opt.cookies)
1726     {
1727       int scpos;
1728       const char *scbeg, *scend;
1729       /* The jar should have been created by now. */
1730       assert (wget_cookie_jar != NULL);
1731       for (scpos = 0;
1732            (scpos = resp_header_locate (resp, "Set-Cookie", scpos,
1733                                         &scbeg, &scend)) != -1;
1734            ++scpos)
1735         {
1736           char *set_cookie; BOUNDED_TO_ALLOCA (scbeg, scend, set_cookie);
1737           cookie_handle_set_cookie (wget_cookie_jar, u->host, u->port,
1738                                     u->path, set_cookie);
1739         }
1740     }
1741
1742   if (resp_header_copy (resp, "Content-Range", hdrval, sizeof (hdrval)))
1743     {
1744       wgint first_byte_pos, last_byte_pos, entity_length;
1745       if (parse_content_range (hdrval, &first_byte_pos, &last_byte_pos,
1746                                &entity_length))
1747         contrange = first_byte_pos;
1748     }
1749   resp_free (resp);
1750
1751   /* 20x responses are counted among successful by default.  */
1752   if (H_20X (statcode))
1753     *dt |= RETROKF;
1754
1755   /* Return if redirected.  */
1756   if (H_REDIRECTED (statcode) || statcode == HTTP_STATUS_MULTIPLE_CHOICES)
1757     {
1758       /* RFC2068 says that in case of the 300 (multiple choices)
1759          response, the server can output a preferred URL through
1760          `Location' header; otherwise, the request should be treated
1761          like GET.  So, if the location is set, it will be a
1762          redirection; otherwise, just proceed normally.  */
1763       if (statcode == HTTP_STATUS_MULTIPLE_CHOICES && !hs->newloc)
1764         *dt |= RETROKF;
1765       else
1766         {
1767           logprintf (LOG_VERBOSE,
1768                      _("Location: %s%s\n"),
1769                      hs->newloc ? escnonprint_uri (hs->newloc) : _("unspecified"),
1770                      hs->newloc ? _(" [following]") : "");
1771           if (keep_alive && !head_only && skip_short_body (sock, contlen))
1772             CLOSE_FINISH (sock);
1773           else
1774             CLOSE_INVALIDATE (sock);
1775           xfree_null (type);
1776           return NEWLOCATION;
1777         }
1778     }
1779
1780   /* If content-type is not given, assume text/html.  This is because
1781      of the multitude of broken CGI's that "forget" to generate the
1782      content-type.  */
1783   if (!type ||
1784         0 == strncasecmp (type, TEXTHTML_S, strlen (TEXTHTML_S)) ||
1785         0 == strncasecmp (type, TEXTXHTML_S, strlen (TEXTXHTML_S)))
1786     *dt |= TEXTHTML;
1787   else
1788     *dt &= ~TEXTHTML;
1789
1790   if (opt.html_extension && (*dt & TEXTHTML))
1791     /* -E / --html-extension / html_extension = on was specified, and this is a
1792        text/html file.  If some case-insensitive variation on ".htm[l]" isn't
1793        already the file's suffix, tack on ".html". */
1794     {
1795       char *last_period_in_local_filename = strrchr (*hs->local_file, '.');
1796
1797       if (last_period_in_local_filename == NULL
1798           || !(0 == strcasecmp (last_period_in_local_filename, ".htm")
1799                || 0 == strcasecmp (last_period_in_local_filename, ".html")))
1800         {
1801           int local_filename_len = strlen (*hs->local_file);
1802           /* Resize the local file, allowing for ".html" preceded by
1803              optional ".NUMBER".  */
1804           *hs->local_file = xrealloc (*hs->local_file,
1805                                       local_filename_len + 24 + sizeof (".html"));
1806           strcpy(*hs->local_file + local_filename_len, ".html");
1807           /* If clobbering is not allowed and the file, as named,
1808              exists, tack on ".NUMBER.html" instead. */
1809           if (!ALLOW_CLOBBER)
1810             {
1811               int ext_num = 1;
1812               do
1813                 sprintf (*hs->local_file + local_filename_len,
1814                          ".%d.html", ext_num++);
1815               while (file_exists_p (*hs->local_file));
1816             }
1817           *dt |= ADDED_HTML_EXTENSION;
1818         }
1819     }
1820
1821   if (statcode == HTTP_STATUS_RANGE_NOT_SATISFIABLE)
1822     {
1823       /* If `-c' is in use and the file has been fully downloaded (or
1824          the remote file has shrunk), Wget effectively requests bytes
1825          after the end of file and the server response with 416.  */
1826       logputs (LOG_VERBOSE, _("\
1827 \n    The file is already fully retrieved; nothing to do.\n\n"));
1828       /* In case the caller inspects. */
1829       hs->len = contlen;
1830       hs->res = 0;
1831       /* Mark as successfully retrieved. */
1832       *dt |= RETROKF;
1833       xfree_null (type);
1834       CLOSE_INVALIDATE (sock);  /* would be CLOSE_FINISH, but there
1835                                    might be more bytes in the body. */
1836       return RETRUNNEEDED;
1837     }
1838   if ((contrange != 0 && contrange != hs->restval)
1839       || (H_PARTIAL (statcode) && !contrange))
1840     {
1841       /* The Range request was somehow misunderstood by the server.
1842          Bail out.  */
1843       xfree_null (type);
1844       CLOSE_INVALIDATE (sock);
1845       return RANGEERR;
1846     }
1847   hs->contlen = contlen + contrange;
1848
1849   if (opt.verbose)
1850     {
1851       if (*dt & RETROKF)
1852         {
1853           /* No need to print this output if the body won't be
1854              downloaded at all, or if the original server response is
1855              printed.  */
1856           logputs (LOG_VERBOSE, _("Length: "));
1857           if (contlen != -1)
1858             {
1859               logputs (LOG_VERBOSE, number_to_static_string (contlen + contrange));
1860               if (contlen + contrange >= 1024)
1861                 logprintf (LOG_VERBOSE, " (%s)",
1862                            human_readable (contlen + contrange));
1863               if (contrange)
1864                 {
1865                   if (contlen >= 1024)
1866                     logprintf (LOG_VERBOSE, _(", %s (%s) remaining"),
1867                                number_to_static_string (contlen),
1868                                human_readable (contlen));
1869                   else
1870                     logprintf (LOG_VERBOSE, _(", %s remaining"),
1871                                number_to_static_string (contlen));
1872                 }
1873             }
1874           else
1875             logputs (LOG_VERBOSE,
1876                      opt.ignore_length ? _("ignored") : _("unspecified"));
1877           if (type)
1878             logprintf (LOG_VERBOSE, " [%s]\n", escnonprint (type));
1879           else
1880             logputs (LOG_VERBOSE, "\n");
1881         }
1882     }
1883   xfree_null (type);
1884   type = NULL;                  /* We don't need it any more.  */
1885
1886   /* Return if we have no intention of further downloading.  */
1887   if (!(*dt & RETROKF) || head_only)
1888     {
1889       /* In case the caller cares to look...  */
1890       hs->len = 0;
1891       hs->res = 0;
1892       xfree_null (type);
1893       if (head_only)
1894         /* Pre-1.10 Wget used CLOSE_INVALIDATE here.  Now we trust the
1895            servers not to send body in response to a HEAD request, and
1896            those that do will likely be caught by test_socket_open.
1897            If not, they can be worked around using
1898            `--no-http-keep-alive'.  */
1899         CLOSE_FINISH (sock);
1900       else if (keep_alive && skip_short_body (sock, contlen))
1901         /* Successfully skipped the body; also keep using the socket. */
1902         CLOSE_FINISH (sock);
1903       else
1904         CLOSE_INVALIDATE (sock);
1905       return RETRFINISHED;
1906     }
1907
1908   /* Open the local file.  */
1909   if (!output_stream)
1910     {
1911       mkalldirs (*hs->local_file);
1912       if (opt.backups)
1913         rotate_backups (*hs->local_file);
1914       if (hs->restval)
1915         fp = fopen (*hs->local_file, "ab");
1916       else if (ALLOW_CLOBBER)
1917         fp = fopen (*hs->local_file, "wb");
1918       else
1919         {
1920           fp = fopen_excl (*hs->local_file, true);
1921           if (!fp && errno == EEXIST)
1922             {
1923               /* We cannot just invent a new name and use it (which is
1924                  what functions like unique_create typically do)
1925                  because we told the user we'd use this name.
1926                  Instead, return and retry the download.  */
1927               logprintf (LOG_NOTQUIET,
1928                          _("%s has sprung into existence.\n"),
1929                          *hs->local_file);
1930               CLOSE_INVALIDATE (sock);
1931               return FOPEN_EXCL_ERR;
1932             }
1933         }
1934       if (!fp)
1935         {
1936           logprintf (LOG_NOTQUIET, "%s: %s\n", *hs->local_file, strerror (errno));
1937           CLOSE_INVALIDATE (sock);
1938           return FOPENERR;
1939         }
1940     }
1941   else
1942     fp = output_stream;
1943
1944   /* #### This confuses the timestamping code that checks for file
1945      size.  Maybe we should save some additional information?  */
1946   if (opt.save_headers)
1947     fwrite (head, 1, strlen (head), fp);
1948
1949   /* Now we no longer need to store the response header. */
1950   xfree (head);
1951
1952   /* Download the request body.  */
1953   flags = 0;
1954   if (keep_alive)
1955     flags |= rb_read_exactly;
1956   if (hs->restval > 0 && contrange == 0)
1957     /* If the server ignored our range request, instruct fd_read_body
1958        to skip the first RESTVAL bytes of body.  */
1959     flags |= rb_skip_startpos;
1960   hs->len = hs->restval;
1961   hs->rd_size = 0;
1962   hs->res = fd_read_body (sock, fp, contlen != -1 ? contlen : 0,
1963                           hs->restval, &hs->rd_size, &hs->len, &hs->dltime,
1964                           flags);
1965
1966   if (hs->res >= 0)
1967     CLOSE_FINISH (sock);
1968   else
1969     CLOSE_INVALIDATE (sock);
1970
1971   {
1972     /* Close or flush the file.  We have to be careful to check for
1973        error here.  Checking the result of fwrite() is not enough --
1974        errors could go unnoticed!  */
1975     int flush_res;
1976     if (!output_stream)
1977       flush_res = fclose (fp);
1978     else
1979       flush_res = fflush (fp);
1980     if (flush_res == EOF)
1981       hs->res = -2;
1982   }
1983   if (hs->res == -2)
1984     return FWRITEERR;
1985   return RETRFINISHED;
1986 }
1987
1988 /* The genuine HTTP loop!  This is the part where the retrieval is
1989    retried, and retried, and retried, and...  */
1990 uerr_t
1991 http_loop (struct url *u, char **newloc, char **local_file, const char *referer,
1992            int *dt, struct url *proxy)
1993 {
1994   int count;
1995   bool use_ts, got_head = false;/* time-stamping info */
1996   char *filename_plus_orig_suffix;
1997   char *local_filename = NULL;
1998   char *tms, *locf;
1999   const char *tmrate;
2000   uerr_t err;
2001   time_t tml = -1, tmr = -1;    /* local and remote time-stamps */
2002   wgint local_size = 0;         /* the size of the local file */
2003   size_t filename_len;
2004   struct http_stat hstat;       /* HTTP status */
2005   struct_stat st;
2006   char *dummy = NULL;
2007
2008   /* This used to be done in main(), but it's a better idea to do it
2009      here so that we don't go through the hoops if we're just using
2010      FTP or whatever. */
2011   if (opt.cookies)
2012     {
2013       if (!wget_cookie_jar)
2014         wget_cookie_jar = cookie_jar_new ();
2015       if (opt.cookies_input && !cookies_loaded_p)
2016         {
2017           cookie_jar_load (wget_cookie_jar, opt.cookies_input);
2018           cookies_loaded_p = true;
2019         }
2020     }
2021
2022   *newloc = NULL;
2023
2024   /* Warn on (likely bogus) wildcard usage in HTTP.  */
2025   if (opt.ftp_glob && has_wildcards_p (u->path))
2026     logputs (LOG_VERBOSE, _("Warning: wildcards not supported in HTTP.\n"));
2027
2028   xzero (hstat);
2029
2030   /* Determine the local filename.  */
2031   if (local_file && *local_file)
2032     hstat.local_file = local_file;
2033   else if (local_file && !opt.output_document)
2034     {
2035       *local_file = url_file_name (u);
2036       hstat.local_file = local_file;
2037     }
2038   else
2039     {
2040       dummy = url_file_name (u);
2041       hstat.local_file = &dummy;
2042       /* be honest about where we will save the file */
2043       if (local_file && opt.output_document)
2044         *local_file = HYPHENP (opt.output_document) ? NULL : xstrdup (opt.output_document);
2045     }
2046
2047   if (!opt.output_document)
2048     locf = *hstat.local_file;
2049   else
2050     locf = opt.output_document;
2051
2052   hstat.referer = referer;
2053
2054   filename_len = strlen (*hstat.local_file);
2055   filename_plus_orig_suffix = alloca (filename_len + sizeof (".orig"));
2056
2057   if (opt.noclobber && file_exists_p (*hstat.local_file))
2058     {
2059       /* If opt.noclobber is turned on and file already exists, do not
2060          retrieve the file */
2061       logprintf (LOG_VERBOSE, _("\
2062 File `%s' already there; not retrieving.\n\n"), *hstat.local_file);
2063       /* If the file is there, we suppose it's retrieved OK.  */
2064       *dt |= RETROKF;
2065
2066       /* #### Bogusness alert.  */
2067       /* If its suffix is "html" or "htm" or similar, assume text/html.  */
2068       if (has_html_suffix_p (*hstat.local_file))
2069         *dt |= TEXTHTML;
2070
2071       xfree_null (dummy);
2072       return RETROK;
2073     }
2074
2075   use_ts = false;
2076   if (opt.timestamping)
2077     {
2078       bool local_dot_orig_file_exists = false;
2079
2080       if (opt.backup_converted)
2081         /* If -K is specified, we'll act on the assumption that it was specified
2082            last time these files were downloaded as well, and instead of just
2083            comparing local file X against server file X, we'll compare local
2084            file X.orig (if extant, else X) against server file X.  If -K
2085            _wasn't_ specified last time, or the server contains files called
2086            *.orig, -N will be back to not operating correctly with -k. */
2087         {
2088           /* Would a single s[n]printf() call be faster?  --dan
2089
2090              Definitely not.  sprintf() is horribly slow.  It's a
2091              different question whether the difference between the two
2092              affects a program.  Usually I'd say "no", but at one
2093              point I profiled Wget, and found that a measurable and
2094              non-negligible amount of time was lost calling sprintf()
2095              in url.c.  Replacing sprintf with inline calls to
2096              strcpy() and number_to_string() made a difference.
2097              --hniksic */
2098           memcpy (filename_plus_orig_suffix, *hstat.local_file, filename_len);
2099           memcpy (filename_plus_orig_suffix + filename_len,
2100                   ".orig", sizeof (".orig"));
2101
2102           /* Try to stat() the .orig file. */
2103           if (stat (filename_plus_orig_suffix, &st) == 0)
2104             {
2105               local_dot_orig_file_exists = 1;
2106               local_filename = filename_plus_orig_suffix;
2107             }
2108         }      
2109
2110       if (!local_dot_orig_file_exists)
2111         /* Couldn't stat() <file>.orig, so try to stat() <file>. */
2112         if (stat (*hstat.local_file, &st) == 0)
2113           local_filename = *hstat.local_file;
2114
2115       if (local_filename != NULL)
2116         /* There was a local file, so we'll check later to see if the version
2117            the server has is the same version we already have, allowing us to
2118            skip a download. */
2119         {
2120           use_ts = true;
2121           tml = st.st_mtime;
2122 #ifdef WINDOWS
2123           /* Modification time granularity is 2 seconds for Windows, so
2124              increase local time by 1 second for later comparison. */
2125           tml++;
2126 #endif
2127           local_size = st.st_size;
2128           got_head = false;
2129         }
2130     }
2131   /* Reset the counter.  */
2132   count = 0;
2133   *dt = 0;
2134   /* THE loop */
2135   do
2136     {
2137       /* Increment the pass counter.  */
2138       ++count;
2139       sleep_between_retrievals (count);
2140       /* Get the current time string.  */
2141       tms = time_str (NULL);
2142       /* Print fetch message, if opt.verbose.  */
2143       if (opt.verbose)
2144         {
2145           char *hurl = url_string (u, true);
2146           char tmp[256];
2147           strcpy (tmp, "        ");
2148           if (count > 1)
2149             sprintf (tmp, _("(try:%2d)"), count);
2150           logprintf (LOG_VERBOSE, "--%s--  %s\n  %s => `%s'\n",
2151                      tms, hurl, tmp, locf);
2152 #ifdef WINDOWS
2153           ws_changetitle (hurl);
2154 #endif
2155           xfree (hurl);
2156         }
2157
2158       /* Default document type is empty.  However, if spider mode is
2159          on or time-stamping is employed, HEAD_ONLY commands is
2160          encoded within *dt.  */
2161       if (opt.spider || (use_ts && !got_head))
2162         *dt |= HEAD_ONLY;
2163       else
2164         *dt &= ~HEAD_ONLY;
2165
2166       /* Decide whether or not to restart.  */
2167       if (opt.always_rest
2168           && stat (locf, &st) == 0
2169           && S_ISREG (st.st_mode))
2170         /* When -c is used, continue from on-disk size.  (Can't use
2171            hstat.len even if count>1 because we don't want a failed
2172            first attempt to clobber existing data.)  */
2173         hstat.restval = st.st_size;
2174       else if (count > 1)
2175         /* otherwise, continue where the previous try left off */
2176         hstat.restval = hstat.len;
2177       else
2178         hstat.restval = 0;
2179
2180       /* Decide whether to send the no-cache directive.  We send it in
2181          two cases:
2182            a) we're using a proxy, and we're past our first retrieval.
2183               Some proxies are notorious for caching incomplete data, so
2184               we require a fresh get.
2185            b) caching is explicitly inhibited. */
2186       if ((proxy && count > 1)  /* a */
2187           || !opt.allow_cache   /* b */
2188           )
2189         *dt |= SEND_NOCACHE;
2190       else
2191         *dt &= ~SEND_NOCACHE;
2192
2193       /* Try fetching the document, or at least its head.  */
2194       err = gethttp (u, &hstat, dt, proxy);
2195
2196       /* It's unfortunate that wget determines the local filename before finding
2197          out the Content-Type of the file.  Barring a major restructuring of the
2198          code, we need to re-set locf here, since gethttp() may have xrealloc()d
2199          *hstat.local_file to tack on ".html". */
2200       if (!opt.output_document)
2201         locf = *hstat.local_file;
2202
2203       /* Time?  */
2204       tms = time_str (NULL);
2205       /* Get the new location (with or without the redirection).  */
2206       if (hstat.newloc)
2207         *newloc = xstrdup (hstat.newloc);
2208       switch (err)
2209         {
2210         case HERR: case HEOF: case CONSOCKERR: case CONCLOSED:
2211         case CONERROR: case READERR: case WRITEFAILED:
2212         case RANGEERR: case FOPEN_EXCL_ERR:
2213           /* Non-fatal errors continue executing the loop, which will
2214              bring them to "while" statement at the end, to judge
2215              whether the number of tries was exceeded.  */
2216           free_hstat (&hstat);
2217           printwhat (count, opt.ntry);
2218           if (err == FOPEN_EXCL_ERR)
2219             {
2220               /* Re-determine the file name. */
2221               if (local_file && *local_file)
2222                 {
2223                   xfree (*local_file);
2224                   *local_file = url_file_name (u);
2225                   hstat.local_file = local_file;
2226                 }
2227               else
2228                 {
2229                   xfree (dummy);
2230                   dummy = url_file_name (u);
2231                   hstat.local_file = &dummy;
2232                 }
2233               /* be honest about where we will save the file */
2234               if (local_file && opt.output_document)
2235                 *local_file = HYPHENP (opt.output_document) ? NULL : xstrdup (opt.output_document);
2236               if (!opt.output_document)
2237                 locf = *hstat.local_file;
2238               else
2239                 locf = opt.output_document;
2240             }
2241           continue;
2242         case HOSTERR: case CONIMPOSSIBLE: case PROXERR: case AUTHFAILED: 
2243         case SSLINITFAILED: case CONTNOTSUPPORTED:
2244           /* Fatal errors just return from the function.  */
2245           free_hstat (&hstat);
2246           xfree_null (dummy);
2247           return err;
2248         case FWRITEERR: case FOPENERR:
2249           /* Another fatal error.  */
2250           logputs (LOG_VERBOSE, "\n");
2251           logprintf (LOG_NOTQUIET, _("Cannot write to `%s' (%s).\n"),
2252                      *hstat.local_file, strerror (errno));
2253           free_hstat (&hstat);
2254           xfree_null (dummy);
2255           return err;
2256         case CONSSLERR:
2257           /* Another fatal error.  */
2258           logprintf (LOG_NOTQUIET, _("Unable to establish SSL connection.\n"));
2259           free_hstat (&hstat);
2260           xfree_null (dummy);
2261           return err;
2262         case NEWLOCATION:
2263           /* Return the new location to the caller.  */
2264           if (!hstat.newloc)
2265             {
2266               logprintf (LOG_NOTQUIET,
2267                          _("ERROR: Redirection (%d) without location.\n"),
2268                          hstat.statcode);
2269               free_hstat (&hstat);
2270               xfree_null (dummy);
2271               return WRONGCODE;
2272             }
2273           free_hstat (&hstat);
2274           xfree_null (dummy);
2275           return NEWLOCATION;
2276         case RETRUNNEEDED:
2277           /* The file was already fully retrieved. */
2278           free_hstat (&hstat);
2279           xfree_null (dummy);
2280           return RETROK;
2281         case RETRFINISHED:
2282           /* Deal with you later.  */
2283           break;
2284         default:
2285           /* All possibilities should have been exhausted.  */
2286           abort ();
2287         }
2288       if (!(*dt & RETROKF))
2289         {
2290           if (!opt.verbose)
2291             {
2292               /* #### Ugly ugly ugly! */
2293               char *hurl = url_string (u, true);
2294               logprintf (LOG_NONVERBOSE, "%s:\n", hurl);
2295               xfree (hurl);
2296             }
2297           logprintf (LOG_NOTQUIET, _("%s ERROR %d: %s.\n"),
2298                      tms, hstat.statcode, escnonprint (hstat.error));
2299           logputs (LOG_VERBOSE, "\n");
2300           free_hstat (&hstat);
2301           xfree_null (dummy);
2302           return WRONGCODE;
2303         }
2304
2305       /* Did we get the time-stamp?  */
2306       if (!got_head)
2307         {
2308           if (opt.timestamping && !hstat.remote_time)
2309             {
2310               logputs (LOG_NOTQUIET, _("\
2311 Last-modified header missing -- time-stamps turned off.\n"));
2312             }
2313           else if (hstat.remote_time)
2314             {
2315               /* Convert the date-string into struct tm.  */
2316               tmr = http_atotm (hstat.remote_time);
2317               if (tmr == (time_t) (-1))
2318                 logputs (LOG_VERBOSE, _("\
2319 Last-modified header invalid -- time-stamp ignored.\n"));
2320             }
2321         }
2322
2323       /* The time-stamping section.  */
2324       if (use_ts)
2325         {
2326           got_head = true;
2327           *dt &= ~HEAD_ONLY;
2328           use_ts = false;               /* no more time-stamping */
2329           count = 0;            /* the retrieve count for HEAD is
2330                                    reset */
2331           if (hstat.remote_time && tmr != (time_t) (-1))
2332             {
2333               /* Now time-stamping can be used validly.  Time-stamping
2334                  means that if the sizes of the local and remote file
2335                  match, and local file is newer than the remote file,
2336                  it will not be retrieved.  Otherwise, the normal
2337                  download procedure is resumed.  */
2338               if (tml >= tmr &&
2339                   (hstat.contlen == -1 || local_size == hstat.contlen))
2340                 {
2341                   logprintf (LOG_VERBOSE, _("\
2342 Server file no newer than local file `%s' -- not retrieving.\n\n"),
2343                              local_filename);
2344                   free_hstat (&hstat);
2345                   xfree_null (dummy);
2346                   return RETROK;
2347                 }
2348               else if (tml >= tmr)
2349                 logprintf (LOG_VERBOSE, _("\
2350 The sizes do not match (local %s) -- retrieving.\n"),
2351                            number_to_static_string (local_size));
2352               else
2353                 logputs (LOG_VERBOSE,
2354                          _("Remote file is newer, retrieving.\n"));
2355             }
2356           free_hstat (&hstat);
2357           continue;
2358         }
2359       if ((tmr != (time_t) (-1))
2360           && !opt.spider
2361           && ((hstat.len == hstat.contlen) ||
2362               ((hstat.res == 0) &&
2363                ((hstat.contlen == -1) ||
2364                 (hstat.len >= hstat.contlen && !opt.kill_longer)))))
2365         {
2366           /* #### This code repeats in http.c and ftp.c.  Move it to a
2367              function!  */
2368           const char *fl = NULL;
2369           if (opt.output_document)
2370             {
2371               if (output_stream_regular)
2372                 fl = opt.output_document;
2373             }
2374           else
2375             fl = *hstat.local_file;
2376           if (fl)
2377             touch (fl, tmr);
2378         }
2379       /* End of time-stamping section.  */
2380
2381       if (opt.spider)
2382         {
2383           logprintf (LOG_NOTQUIET, "%d %s\n\n", hstat.statcode,
2384                      escnonprint (hstat.error));
2385           xfree_null (dummy);
2386           return RETROK;
2387         }
2388
2389       tmrate = retr_rate (hstat.rd_size, hstat.dltime);
2390       total_download_time += hstat.dltime;
2391
2392       if (hstat.len == hstat.contlen)
2393         {
2394           if (*dt & RETROKF)
2395             {
2396               logprintf (LOG_VERBOSE,
2397                          _("%s (%s) - `%s' saved [%s/%s]\n\n"),
2398                          tms, tmrate, locf,
2399                          number_to_static_string (hstat.len),
2400                          number_to_static_string (hstat.contlen));
2401               logprintf (LOG_NONVERBOSE,
2402                          "%s URL:%s [%s/%s] -> \"%s\" [%d]\n",
2403                          tms, u->url,
2404                          number_to_static_string (hstat.len),
2405                          number_to_static_string (hstat.contlen),
2406                          locf, count);
2407             }
2408           ++opt.numurls;
2409           total_downloaded_bytes += hstat.len;
2410
2411           /* Remember that we downloaded the file for later ".orig" code. */
2412           if (*dt & ADDED_HTML_EXTENSION)
2413             downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, locf);
2414           else
2415             downloaded_file(FILE_DOWNLOADED_NORMALLY, locf);
2416
2417           free_hstat (&hstat);
2418           xfree_null (dummy);
2419           return RETROK;
2420         }
2421       else if (hstat.res == 0) /* No read error */
2422         {
2423           if (hstat.contlen == -1)  /* We don't know how much we were supposed
2424                                        to get, so assume we succeeded. */ 
2425             {
2426               if (*dt & RETROKF)
2427                 {
2428                   logprintf (LOG_VERBOSE,
2429                              _("%s (%s) - `%s' saved [%s]\n\n"),
2430                              tms, tmrate, locf,
2431                              number_to_static_string (hstat.len));
2432                   logprintf (LOG_NONVERBOSE,
2433                              "%s URL:%s [%s] -> \"%s\" [%d]\n",
2434                              tms, u->url, number_to_static_string (hstat.len),
2435                              locf, count);
2436                 }
2437               ++opt.numurls;
2438               total_downloaded_bytes += hstat.len;
2439
2440               /* Remember that we downloaded the file for later ".orig" code. */
2441               if (*dt & ADDED_HTML_EXTENSION)
2442                 downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, locf);
2443               else
2444                 downloaded_file(FILE_DOWNLOADED_NORMALLY, locf);
2445               
2446               free_hstat (&hstat);
2447               xfree_null (dummy);
2448               return RETROK;
2449             }
2450           else if (hstat.len < hstat.contlen) /* meaning we lost the
2451                                                  connection too soon */
2452             {
2453               logprintf (LOG_VERBOSE,
2454                          _("%s (%s) - Connection closed at byte %s. "),
2455                          tms, tmrate, number_to_static_string (hstat.len));
2456               printwhat (count, opt.ntry);
2457               free_hstat (&hstat);
2458               continue;
2459             }
2460           else if (!opt.kill_longer) /* meaning we got more than expected */
2461             {
2462               logprintf (LOG_VERBOSE,
2463                          _("%s (%s) - `%s' saved [%s/%s]\n\n"),
2464                          tms, tmrate, locf,
2465                          number_to_static_string (hstat.len),
2466                          number_to_static_string (hstat.contlen));
2467               logprintf (LOG_NONVERBOSE,
2468                          "%s URL:%s [%s/%s] -> \"%s\" [%d]\n",
2469                          tms, u->url,
2470                          number_to_static_string (hstat.len),
2471                          number_to_static_string (hstat.contlen),
2472                          locf, count);
2473               ++opt.numurls;
2474               total_downloaded_bytes += hstat.len;
2475
2476               /* Remember that we downloaded the file for later ".orig" code. */
2477               if (*dt & ADDED_HTML_EXTENSION)
2478                 downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, locf);
2479               else
2480                 downloaded_file(FILE_DOWNLOADED_NORMALLY, locf);
2481               
2482               free_hstat (&hstat);
2483               xfree_null (dummy);
2484               return RETROK;
2485             }
2486           else                  /* the same, but not accepted */
2487             {
2488               logprintf (LOG_VERBOSE,
2489                          _("%s (%s) - Connection closed at byte %s/%s. "),
2490                          tms, tmrate,
2491                          number_to_static_string (hstat.len),
2492                          number_to_static_string (hstat.contlen));
2493               printwhat (count, opt.ntry);
2494               free_hstat (&hstat);
2495               continue;
2496             }
2497         }
2498       else                      /* now hstat.res can only be -1 */
2499         {
2500           if (hstat.contlen == -1)
2501             {
2502               logprintf (LOG_VERBOSE,
2503                          _("%s (%s) - Read error at byte %s (%s)."),
2504                          tms, tmrate, number_to_static_string (hstat.len),
2505                          strerror (errno));
2506               printwhat (count, opt.ntry);
2507               free_hstat (&hstat);
2508               continue;
2509             }
2510           else                  /* hstat.res == -1 and contlen is given */
2511             {
2512               logprintf (LOG_VERBOSE,
2513                          _("%s (%s) - Read error at byte %s/%s (%s). "),
2514                          tms, tmrate,
2515                          number_to_static_string (hstat.len),
2516                          number_to_static_string (hstat.contlen),
2517                          strerror (errno));
2518               printwhat (count, opt.ntry);
2519               free_hstat (&hstat);
2520               continue;
2521             }
2522         }
2523       /* not reached */
2524     }
2525   while (!opt.ntry || (count < opt.ntry));
2526   return TRYLIMEXC;
2527 }
2528 \f
2529 /* Check whether the result of strptime() indicates success.
2530    strptime() returns the pointer to how far it got to in the string.
2531    The processing has been successful if the string is at `GMT' or
2532    `+X', or at the end of the string.
2533
2534    In extended regexp parlance, the function returns 1 if P matches
2535    "^ *(GMT|[+-][0-9]|$)", 0 otherwise.  P being NULL (which strptime
2536    can return) is considered a failure and 0 is returned.  */
2537 static bool
2538 check_end (const char *p)
2539 {
2540   if (!p)
2541     return false;
2542   while (ISSPACE (*p))
2543     ++p;
2544   if (!*p
2545       || (p[0] == 'G' && p[1] == 'M' && p[2] == 'T')
2546       || ((p[0] == '+' || p[0] == '-') && ISDIGIT (p[1])))
2547     return true;
2548   else
2549     return false;
2550 }
2551
2552 /* Convert the textual specification of time in TIME_STRING to the
2553    number of seconds since the Epoch.
2554
2555    TIME_STRING can be in any of the three formats RFC2616 allows the
2556    HTTP servers to emit -- RFC1123-date, RFC850-date or asctime-date,
2557    as well as the time format used in the Set-Cookie header.
2558    Timezones are ignored, and should be GMT.
2559
2560    Return the computed time_t representation, or -1 if the conversion
2561    fails.
2562
2563    This function uses strptime with various string formats for parsing
2564    TIME_STRING.  This results in a parser that is not as lenient in
2565    interpreting TIME_STRING as I would like it to be.  Being based on
2566    strptime, it always allows shortened months, one-digit days, etc.,
2567    but due to the multitude of formats in which time can be
2568    represented, an ideal HTTP time parser would be even more
2569    forgiving.  It should completely ignore things like week days and
2570    concentrate only on the various forms of representing years,
2571    months, days, hours, minutes, and seconds.  For example, it would
2572    be nice if it accepted ISO 8601 out of the box.
2573
2574    I've investigated free and PD code for this purpose, but none was
2575    usable.  getdate was big and unwieldy, and had potential copyright
2576    issues, or so I was informed.  Dr. Marcus Hennecke's atotm(),
2577    distributed with phttpd, is excellent, but we cannot use it because
2578    it is not assigned to the FSF.  So I stuck it with strptime.  */
2579
2580 time_t
2581 http_atotm (const char *time_string)
2582 {
2583   /* NOTE: Solaris strptime man page claims that %n and %t match white
2584      space, but that's not universally available.  Instead, we simply
2585      use ` ' to mean "skip all WS", which works under all strptime
2586      implementations I've tested.  */
2587
2588   static const char *time_formats[] = {
2589     "%a, %d %b %Y %T",          /* rfc1123: Thu, 29 Jan 1998 22:12:57 */
2590     "%A, %d-%b-%y %T",          /* rfc850:  Thursday, 29-Jan-98 22:12:57 */
2591     "%a %b %d %T %Y",           /* asctime: Thu Jan 29 22:12:57 1998 */
2592     "%a, %d-%b-%Y %T"           /* cookies: Thu, 29-Jan-1998 22:12:57
2593                                    (used in Set-Cookie, defined in the
2594                                    Netscape cookie specification.) */
2595   };
2596   const char *oldlocale;
2597   int i;
2598   time_t ret = (time_t) -1;
2599
2600   /* Solaris strptime fails to recognize English month names in
2601      non-English locales, which we work around by temporarily setting
2602      locale to C before invoking strptime.  */
2603   oldlocale = setlocale (LC_TIME, NULL);
2604   setlocale (LC_TIME, "C");
2605
2606   for (i = 0; i < countof (time_formats); i++)
2607     {
2608       struct tm t;
2609
2610       /* Some versions of strptime use the existing contents of struct
2611          tm to recalculate the date according to format.  Zero it out
2612          to prevent stack garbage from influencing strptime.  */
2613       xzero (t);
2614
2615       if (check_end (strptime (time_string, time_formats[i], &t)))
2616         {
2617           ret = timegm (&t);
2618           break;
2619         }
2620     }
2621
2622   /* Restore the previous locale. */
2623   setlocale (LC_TIME, oldlocale);
2624
2625   return ret;
2626 }
2627 \f
2628 /* Authorization support: We support three authorization schemes:
2629
2630    * `Basic' scheme, consisting of base64-ing USER:PASSWORD string;
2631
2632    * `Digest' scheme, added by Junio Hamano <junio@twinsun.com>,
2633    consisting of answering to the server's challenge with the proper
2634    MD5 digests.
2635
2636    * `NTLM' ("NT Lan Manager") scheme, based on code written by Daniel
2637    Stenberg for libcurl.  Like digest, NTLM is based on a
2638    challenge-response mechanism, but unlike digest, it is non-standard
2639    (authenticates TCP connections rather than requests), undocumented
2640    and Microsoft-specific.  */
2641
2642 /* Create the authentication header contents for the `Basic' scheme.
2643    This is done by encoding the string "USER:PASS" to base64 and
2644    prepending the string "Basic " in front of it.  */
2645
2646 static char *
2647 basic_authentication_encode (const char *user, const char *passwd)
2648 {
2649   char *t1, *t2;
2650   int len1 = strlen (user) + 1 + strlen (passwd);
2651
2652   t1 = (char *)alloca (len1 + 1);
2653   sprintf (t1, "%s:%s", user, passwd);
2654
2655   t2 = (char *)alloca (BASE64_LENGTH (len1) + 1);
2656   base64_encode (t1, len1, t2);
2657
2658   return concat_strings ("Basic ", t2, (char *) 0);
2659 }
2660
2661 #define SKIP_WS(x) do {                         \
2662   while (ISSPACE (*(x)))                        \
2663     ++(x);                                      \
2664 } while (0)
2665
2666 #ifdef ENABLE_DIGEST
2667 /* Parse HTTP `WWW-Authenticate:' header.  AU points to the beginning
2668    of a field in such a header.  If the field is the one specified by
2669    ATTR_NAME ("realm", "opaque", and "nonce" are used by the current
2670    digest authorization code), extract its value in the (char*)
2671    variable pointed by RET.  Returns negative on a malformed header,
2672    or number of bytes that have been parsed by this call.  */
2673 static int
2674 extract_header_attr (const char *au, const char *attr_name, char **ret)
2675 {
2676   const char *ep;
2677   const char *cp = au;
2678
2679   if (strncmp (cp, attr_name, strlen (attr_name)) == 0)
2680     {
2681       cp += strlen (attr_name);
2682       if (!*cp)
2683         return -1;
2684       SKIP_WS (cp);
2685       if (*cp != '=')
2686         return -1;
2687       if (!*++cp)
2688         return -1;
2689       SKIP_WS (cp);
2690       if (*cp != '\"')
2691         return -1;
2692       if (!*++cp)
2693         return -1;
2694       for (ep = cp; *ep && *ep != '\"'; ep++)
2695         ;
2696       if (!*ep)
2697         return -1;
2698       xfree_null (*ret);
2699       *ret = strdupdelim (cp, ep);
2700       return ep - au + 1;
2701     }
2702   else
2703     return 0;
2704 }
2705
2706 /* Dump the hexadecimal representation of HASH to BUF.  HASH should be
2707    an array of 16 bytes containing the hash keys, and BUF should be a
2708    buffer of 33 writable characters (32 for hex digits plus one for
2709    zero termination).  */
2710 static void
2711 dump_hash (char *buf, const unsigned char *hash)
2712 {
2713   int i;
2714
2715   for (i = 0; i < MD5_HASHLEN; i++, hash++)
2716     {
2717       *buf++ = XNUM_TO_digit (*hash >> 4);
2718       *buf++ = XNUM_TO_digit (*hash & 0xf);
2719     }
2720   *buf = '\0';
2721 }
2722
2723 /* Take the line apart to find the challenge, and compose a digest
2724    authorization header.  See RFC2069 section 2.1.2.  */
2725 static char *
2726 digest_authentication_encode (const char *au, const char *user,
2727                               const char *passwd, const char *method,
2728                               const char *path)
2729 {
2730   static char *realm, *opaque, *nonce;
2731   static struct {
2732     const char *name;
2733     char **variable;
2734   } options[] = {
2735     { "realm", &realm },
2736     { "opaque", &opaque },
2737     { "nonce", &nonce }
2738   };
2739   char *res;
2740
2741   realm = opaque = nonce = NULL;
2742
2743   au += 6;                      /* skip over `Digest' */
2744   while (*au)
2745     {
2746       int i;
2747
2748       SKIP_WS (au);
2749       for (i = 0; i < countof (options); i++)
2750         {
2751           int skip = extract_header_attr (au, options[i].name,
2752                                           options[i].variable);
2753           if (skip < 0)
2754             {
2755               xfree_null (realm);
2756               xfree_null (opaque);
2757               xfree_null (nonce);
2758               return NULL;
2759             }
2760           else if (skip)
2761             {
2762               au += skip;
2763               break;
2764             }
2765         }
2766       if (i == countof (options))
2767         {
2768           while (*au && *au != '=')
2769             au++;
2770           if (*au && *++au)
2771             {
2772               SKIP_WS (au);
2773               if (*au == '\"')
2774                 {
2775                   au++;
2776                   while (*au && *au != '\"')
2777                     au++;
2778                   if (*au)
2779                     au++;
2780                 }
2781             }
2782         }
2783       while (*au && *au != ',')
2784         au++;
2785       if (*au)
2786         au++;
2787     }
2788   if (!realm || !nonce || !user || !passwd || !path || !method)
2789     {
2790       xfree_null (realm);
2791       xfree_null (opaque);
2792       xfree_null (nonce);
2793       return NULL;
2794     }
2795
2796   /* Calculate the digest value.  */
2797   {
2798     ALLOCA_MD5_CONTEXT (ctx);
2799     unsigned char hash[MD5_HASHLEN];
2800     char a1buf[MD5_HASHLEN * 2 + 1], a2buf[MD5_HASHLEN * 2 + 1];
2801     char response_digest[MD5_HASHLEN * 2 + 1];
2802
2803     /* A1BUF = H(user ":" realm ":" password) */
2804     gen_md5_init (ctx);
2805     gen_md5_update ((unsigned char *)user, strlen (user), ctx);
2806     gen_md5_update ((unsigned char *)":", 1, ctx);
2807     gen_md5_update ((unsigned char *)realm, strlen (realm), ctx);
2808     gen_md5_update ((unsigned char *)":", 1, ctx);
2809     gen_md5_update ((unsigned char *)passwd, strlen (passwd), ctx);
2810     gen_md5_finish (ctx, hash);
2811     dump_hash (a1buf, hash);
2812
2813     /* A2BUF = H(method ":" path) */
2814     gen_md5_init (ctx);
2815     gen_md5_update ((unsigned char *)method, strlen (method), ctx);
2816     gen_md5_update ((unsigned char *)":", 1, ctx);
2817     gen_md5_update ((unsigned char *)path, strlen (path), ctx);
2818     gen_md5_finish (ctx, hash);
2819     dump_hash (a2buf, hash);
2820
2821     /* RESPONSE_DIGEST = H(A1BUF ":" nonce ":" A2BUF) */
2822     gen_md5_init (ctx);
2823     gen_md5_update ((unsigned char *)a1buf, MD5_HASHLEN * 2, ctx);
2824     gen_md5_update ((unsigned char *)":", 1, ctx);
2825     gen_md5_update ((unsigned char *)nonce, strlen (nonce), ctx);
2826     gen_md5_update ((unsigned char *)":", 1, ctx);
2827     gen_md5_update ((unsigned char *)a2buf, MD5_HASHLEN * 2, ctx);
2828     gen_md5_finish (ctx, hash);
2829     dump_hash (response_digest, hash);
2830
2831     res = xmalloc (strlen (user)
2832                    + strlen (user)
2833                    + strlen (realm)
2834                    + strlen (nonce)
2835                    + strlen (path)
2836                    + 2 * MD5_HASHLEN /*strlen (response_digest)*/
2837                    + (opaque ? strlen (opaque) : 0)
2838                    + 128);
2839     sprintf (res, "Digest \
2840 username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", response=\"%s\"",
2841              user, realm, nonce, path, response_digest);
2842     if (opaque)
2843       {
2844         char *p = res + strlen (res);
2845         strcat (p, ", opaque=\"");
2846         strcat (p, opaque);
2847         strcat (p, "\"");
2848       }
2849   }
2850   return res;
2851 }
2852 #endif /* ENABLE_DIGEST */
2853
2854 /* Computing the size of a string literal must take into account that
2855    value returned by sizeof includes the terminating \0.  */
2856 #define STRSIZE(literal) (sizeof (literal) - 1)
2857
2858 /* Whether chars in [b, e) begin with the literal string provided as
2859    first argument and are followed by whitespace or terminating \0.
2860    The comparison is case-insensitive.  */
2861 #define STARTS(literal, b, e)                           \
2862   ((e) - (b) >= STRSIZE (literal)                       \
2863    && 0 == strncasecmp (b, literal, STRSIZE (literal))  \
2864    && ((e) - (b) == STRSIZE (literal)                   \
2865        || ISSPACE (b[STRSIZE (literal)])))
2866
2867 static bool
2868 known_authentication_scheme_p (const char *hdrbeg, const char *hdrend)
2869 {
2870   return STARTS ("Basic", hdrbeg, hdrend)
2871 #ifdef ENABLE_DIGEST
2872     || STARTS ("Digest", hdrbeg, hdrend)
2873 #endif
2874 #ifdef ENABLE_NTLM
2875     || STARTS ("NTLM", hdrbeg, hdrend)
2876 #endif
2877     ;
2878 }
2879
2880 #undef STARTS
2881
2882 /* Create the HTTP authorization request header.  When the
2883    `WWW-Authenticate' response header is seen, according to the
2884    authorization scheme specified in that header (`Basic' and `Digest'
2885    are supported by the current implementation), produce an
2886    appropriate HTTP authorization request header.  */
2887 static char *
2888 create_authorization_line (const char *au, const char *user,
2889                            const char *passwd, const char *method,
2890                            const char *path, bool *finished)
2891 {
2892   /* We are called only with known schemes, so we can dispatch on the
2893      first letter. */
2894   switch (TOUPPER (*au))
2895     {
2896     case 'B':                   /* Basic */
2897       *finished = true;
2898       return basic_authentication_encode (user, passwd);
2899 #ifdef ENABLE_DIGEST
2900     case 'D':                   /* Digest */
2901       *finished = true;
2902       return digest_authentication_encode (au, user, passwd, method, path);
2903 #endif
2904 #ifdef ENABLE_NTLM
2905     case 'N':                   /* NTLM */
2906       if (!ntlm_input (&pconn.ntlm, au))
2907         {
2908           *finished = true;
2909           return NULL;
2910         }
2911       return ntlm_output (&pconn.ntlm, user, passwd, finished);
2912 #endif
2913     default:
2914       /* We shouldn't get here -- this function should be only called
2915          with values approved by known_authentication_scheme_p.  */
2916       abort ();
2917     }
2918 }
2919 \f
2920 void
2921 save_cookies (void)
2922 {
2923   if (wget_cookie_jar)
2924     cookie_jar_save (wget_cookie_jar, opt.cookies_output);
2925 }
2926
2927 void
2928 http_cleanup (void)
2929 {
2930   xfree_null (pconn.host);
2931   if (wget_cookie_jar)
2932     cookie_jar_delete (wget_cookie_jar);
2933 }