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