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