]> sjero.net Git - wget/blob - src/http.c
70f6aa00e7373e43679503b82fa273c7a86fb7d1
[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 /* Extract a parameter from the string (typically an HTTP header) at
859    **SOURCE and advance SOURCE to the next parameter.  Return false
860    when there are no more parameters to extract.  The name of the
861    parameter is returned in NAME, and the value in VALUE.  If the
862    parameter has no value, the token's value is zeroed out.
863
864    For example, if *SOURCE points to the string "attachment;
865    filename=\"foo bar\"", the first call to this function will return
866    the token named "attachment" and no value, and the second call will
867    return the token named "filename" and value "foo bar".  The third
868    call will return false, indicating no more valid tokens.  */
869
870 bool
871 extract_param (const char **source, param_token *name, param_token *value,
872                char separator)
873 {
874   const char *p = *source;
875
876   while (ISSPACE (*p)) ++p;
877   if (!*p)
878     {
879       *source = p;
880       return false;             /* no error; nothing more to extract */
881     }
882
883   /* Extract name. */
884   name->b = p;
885   while (*p && !ISSPACE (*p) && *p != '=' && *p != separator) ++p;
886   name->e = p;
887   if (name->b == name->e)
888     return false;               /* empty name: error */
889   while (ISSPACE (*p)) ++p;
890   if (*p == separator || !*p)           /* no value */
891     {
892       xzero (*value);
893       if (*p == separator) ++p;
894       *source = p;
895       return true;
896     }
897   if (*p != '=')
898     return false;               /* error */
899
900   /* *p is '=', extract value */
901   ++p;
902   while (ISSPACE (*p)) ++p;
903   if (*p == '"')                /* quoted */
904     {
905       value->b = ++p;
906       while (*p && *p != '"') ++p;
907       if (!*p)
908         return false;
909       value->e = p++;
910       /* Currently at closing quote; find the end of param. */
911       while (ISSPACE (*p)) ++p;
912       while (*p && *p != separator) ++p;
913       if (*p == separator)
914         ++p;
915       else if (*p)
916         /* garbage after closed quote, e.g. foo="bar"baz */
917         return false;
918     }
919   else                          /* unquoted */
920     {
921       value->b = p;
922       while (*p && *p != separator) ++p;
923       value->e = p;
924       while (value->e != value->b && ISSPACE (value->e[-1]))
925         --value->e;
926       if (*p == separator) ++p;
927     }
928   *source = p;
929   return true;
930 }
931
932 #undef MAX
933 #define MAX(p, q) ((p) > (q) ? (p) : (q))
934
935 /* Parse the contents of the `Content-Disposition' header, extracting
936    the information useful to Wget.  Content-Disposition is a header
937    borrowed from MIME; when used in HTTP, it typically serves for
938    specifying the desired file name of the resource.  For example:
939
940        Content-Disposition: attachment; filename="flora.jpg"
941
942    Wget will skip the tokens it doesn't care about, such as
943    "attachment" in the previous example; it will also skip other
944    unrecognized params.  If the header is syntactically correct and
945    contains a file name, a copy of the file name is stored in
946    *filename and true is returned.  Otherwise, the function returns
947    false.
948
949    The file name is stripped of directory components and must not be
950    empty.  */
951
952 static bool
953 parse_content_disposition (const char *hdr, char **filename)
954 {
955   param_token name, value;
956   while (extract_param (&hdr, &name, &value, ';'))
957     if (BOUNDED_EQUAL_NO_CASE (name.b, name.e, "filename") && value.b != NULL)
958       {
959         /* Make the file name begin at the last slash or backslash. */
960         const char *last_slash = memrchr (value.b, '/', value.e - value.b);
961         const char *last_bs = memrchr (value.b, '\\', value.e - value.b);
962         if (last_slash && last_bs)
963           value.b = 1 + MAX (last_slash, last_bs);
964         else if (last_slash || last_bs)
965           value.b = 1 + (last_slash ? last_slash : last_bs);
966         if (value.b == value.e)
967           continue;
968         *filename = strdupdelim (value.b, value.e);
969         return true;
970       }
971   return false;
972 }
973 \f
974 /* Persistent connections.  Currently, we cache the most recently used
975    connection as persistent, provided that the HTTP server agrees to
976    make it such.  The persistence data is stored in the variables
977    below.  Ideally, it should be possible to cache an arbitrary fixed
978    number of these connections.  */
979
980 /* Whether a persistent connection is active. */
981 static bool pconn_active;
982
983 static struct {
984   /* The socket of the connection.  */
985   int socket;
986
987   /* Host and port of the currently active persistent connection. */
988   char *host;
989   int port;
990
991   /* Whether a ssl handshake has occoured on this connection.  */
992   bool ssl;
993
994   /* Whether the connection was authorized.  This is only done by
995      NTLM, which authorizes *connections* rather than individual
996      requests.  (That practice is peculiar for HTTP, but it is a
997      useful optimization.)  */
998   bool authorized;
999
1000 #ifdef ENABLE_NTLM
1001   /* NTLM data of the current connection.  */
1002   struct ntlmdata ntlm;
1003 #endif
1004 } pconn;
1005
1006 /* Mark the persistent connection as invalid and free the resources it
1007    uses.  This is used by the CLOSE_* macros after they forcefully
1008    close a registered persistent connection.  */
1009
1010 static void
1011 invalidate_persistent (void)
1012 {
1013   DEBUGP (("Disabling further reuse of socket %d.\n", pconn.socket));
1014   pconn_active = false;
1015   fd_close (pconn.socket);
1016   xfree (pconn.host);
1017   xzero (pconn);
1018 }
1019
1020 /* Register FD, which should be a TCP/IP connection to HOST:PORT, as
1021    persistent.  This will enable someone to use the same connection
1022    later.  In the context of HTTP, this must be called only AFTER the
1023    response has been received and the server has promised that the
1024    connection will remain alive.
1025
1026    If a previous connection was persistent, it is closed. */
1027
1028 static void
1029 register_persistent (const char *host, int port, int fd, bool ssl)
1030 {
1031   if (pconn_active)
1032     {
1033       if (pconn.socket == fd)
1034         {
1035           /* The connection FD is already registered. */
1036           return;
1037         }
1038       else
1039         {
1040           /* The old persistent connection is still active; close it
1041              first.  This situation arises whenever a persistent
1042              connection exists, but we then connect to a different
1043              host, and try to register a persistent connection to that
1044              one.  */
1045           invalidate_persistent ();
1046         }
1047     }
1048
1049   pconn_active = true;
1050   pconn.socket = fd;
1051   pconn.host = xstrdup (host);
1052   pconn.port = port;
1053   pconn.ssl = ssl;
1054   pconn.authorized = false;
1055
1056   DEBUGP (("Registered socket %d for persistent reuse.\n", fd));
1057 }
1058
1059 /* Return true if a persistent connection is available for connecting
1060    to HOST:PORT.  */
1061
1062 static bool
1063 persistent_available_p (const char *host, int port, bool ssl,
1064                         bool *host_lookup_failed)
1065 {
1066   /* First, check whether a persistent connection is active at all.  */
1067   if (!pconn_active)
1068     return false;
1069
1070   /* If we want SSL and the last connection wasn't or vice versa,
1071      don't use it.  Checking for host and port is not enough because
1072      HTTP and HTTPS can apparently coexist on the same port.  */
1073   if (ssl != pconn.ssl)
1074     return false;
1075
1076   /* If we're not connecting to the same port, we're not interested. */
1077   if (port != pconn.port)
1078     return false;
1079
1080   /* If the host is the same, we're in business.  If not, there is
1081      still hope -- read below.  */
1082   if (0 != strcasecmp (host, pconn.host))
1083     {
1084       /* Check if pconn.socket is talking to HOST under another name.
1085          This happens often when both sites are virtual hosts
1086          distinguished only by name and served by the same network
1087          interface, and hence the same web server (possibly set up by
1088          the ISP and serving many different web sites).  This
1089          admittedly unconventional optimization does not contradict
1090          HTTP and works well with popular server software.  */
1091
1092       bool found;
1093       ip_address ip;
1094       struct address_list *al;
1095
1096       if (ssl)
1097         /* Don't try to talk to two different SSL sites over the same
1098            secure connection!  (Besides, it's not clear that
1099            name-based virtual hosting is even possible with SSL.)  */
1100         return false;
1101
1102       /* If pconn.socket's peer is one of the IP addresses HOST
1103          resolves to, pconn.socket is for all intents and purposes
1104          already talking to HOST.  */
1105
1106       if (!socket_ip_address (pconn.socket, &ip, ENDPOINT_PEER))
1107         {
1108           /* Can't get the peer's address -- something must be very
1109              wrong with the connection.  */
1110           invalidate_persistent ();
1111           return false;
1112         }
1113       al = lookup_host (host, 0);
1114       if (!al)
1115         {
1116           *host_lookup_failed = true;
1117           return false;
1118         }
1119
1120       found = address_list_contains (al, &ip);
1121       address_list_release (al);
1122
1123       if (!found)
1124         return false;
1125
1126       /* The persistent connection's peer address was found among the
1127          addresses HOST resolved to; therefore, pconn.sock is in fact
1128          already talking to HOST -- no need to reconnect.  */
1129     }
1130
1131   /* Finally, check whether the connection is still open.  This is
1132      important because most servers implement liberal (short) timeout
1133      on persistent connections.  Wget can of course always reconnect
1134      if the connection doesn't work out, but it's nicer to know in
1135      advance.  This test is a logical followup of the first test, but
1136      is "expensive" and therefore placed at the end of the list.
1137
1138      (Current implementation of test_socket_open has a nice side
1139      effect that it treats sockets with pending data as "closed".
1140      This is exactly what we want: if a broken server sends message
1141      body in response to HEAD, or if it sends more than conent-length
1142      data, we won't reuse the corrupted connection.)  */
1143
1144   if (!test_socket_open (pconn.socket))
1145     {
1146       /* Oops, the socket is no longer open.  Now that we know that,
1147          let's invalidate the persistent connection before returning
1148          0.  */
1149       invalidate_persistent ();
1150       return false;
1151     }
1152
1153   return true;
1154 }
1155
1156 /* The idea behind these two CLOSE macros is to distinguish between
1157    two cases: one when the job we've been doing is finished, and we
1158    want to close the connection and leave, and two when something is
1159    seriously wrong and we're closing the connection as part of
1160    cleanup.
1161
1162    In case of keep_alive, CLOSE_FINISH should leave the connection
1163    open, while CLOSE_INVALIDATE should still close it.
1164
1165    Note that the semantics of the flag `keep_alive' is "this
1166    connection *will* be reused (the server has promised not to close
1167    the connection once we're done)", while the semantics of
1168    `pc_active_p && (fd) == pc_last_fd' is "we're *now* using an
1169    active, registered connection".  */
1170
1171 #define CLOSE_FINISH(fd) do {                   \
1172   if (!keep_alive)                              \
1173     {                                           \
1174       if (pconn_active && (fd) == pconn.socket) \
1175         invalidate_persistent ();               \
1176       else                                      \
1177         {                                       \
1178           fd_close (fd);                        \
1179           fd = -1;                              \
1180         }                                       \
1181     }                                           \
1182 } while (0)
1183
1184 #define CLOSE_INVALIDATE(fd) do {               \
1185   if (pconn_active && (fd) == pconn.socket)     \
1186     invalidate_persistent ();                   \
1187   else                                          \
1188     fd_close (fd);                              \
1189   fd = -1;                                      \
1190 } while (0)
1191 \f
1192 struct http_stat
1193 {
1194   wgint len;                    /* received length */
1195   wgint contlen;                /* expected length */
1196   wgint restval;                /* the restart value */
1197   int res;                      /* the result of last read */
1198   char *rderrmsg;               /* error message from read error */
1199   char *newloc;                 /* new location (redirection) */
1200   char *remote_time;            /* remote time-stamp string */
1201   char *error;                  /* textual HTTP error */
1202   int statcode;                 /* status code */
1203   wgint rd_size;                /* amount of data read from socket */
1204   double dltime;                /* time it took to download the data */
1205   const char *referer;          /* value of the referer header. */
1206   char *local_file;             /* local file name. */
1207   bool timestamp_checked;       /* true if pre-download time-stamping checks 
1208                                  * have already been performed */
1209   char *orig_file_name;         /* name of file to compare for time-stamping
1210                                  * (might be != local_file if -K is set) */
1211   wgint orig_file_size;         /* size of file to compare for time-stamping */
1212   time_t orig_file_tstamp;      /* time-stamp of file to compare for 
1213                                  * time-stamping */
1214 };
1215
1216 static void
1217 free_hstat (struct http_stat *hs)
1218 {
1219   xfree_null (hs->newloc);
1220   xfree_null (hs->remote_time);
1221   xfree_null (hs->error);
1222   xfree_null (hs->rderrmsg);
1223   xfree_null (hs->local_file);
1224   xfree_null (hs->orig_file_name);
1225
1226   /* Guard against being called twice. */
1227   hs->newloc = NULL;
1228   hs->remote_time = NULL;
1229   hs->error = NULL;
1230 }
1231
1232 static char *create_authorization_line (const char *, const char *,
1233                                         const char *, const char *,
1234                                         const char *, bool *);
1235 static char *basic_authentication_encode (const char *, const char *);
1236 static bool known_authentication_scheme_p (const char *, const char *);
1237 static void load_cookies (void);
1238
1239 #define BEGINS_WITH(line, string_constant)                               \
1240   (!strncasecmp (line, string_constant, sizeof (string_constant) - 1)    \
1241    && (ISSPACE (line[sizeof (string_constant) - 1])                      \
1242        || !line[sizeof (string_constant) - 1]))
1243
1244 #define SET_USER_AGENT(req) do {                                         \
1245   if (!opt.useragent)                                                    \
1246     request_set_header (req, "User-Agent",                               \
1247                         aprintf ("Wget/%s", version_string), rel_value); \
1248   else if (*opt.useragent)                                               \
1249     request_set_header (req, "User-Agent", opt.useragent, rel_none);     \
1250 } while (0)
1251
1252 /* The flags that allow clobbering the file (opening with "wb").
1253    Defined here to avoid repetition later.  #### This will require
1254    rework.  */
1255 #define ALLOW_CLOBBER (opt.noclobber || opt.always_rest || opt.timestamping \
1256                        || opt.dirstruct || opt.output_document)
1257
1258 /* Retrieve a document through HTTP protocol.  It recognizes status
1259    code, and correctly handles redirections.  It closes the network
1260    socket.  If it receives an error from the functions below it, it
1261    will print it if there is enough information to do so (almost
1262    always), returning the error to the caller (i.e. http_loop).
1263
1264    Various HTTP parameters are stored to hs.
1265
1266    If PROXY is non-NULL, the connection will be made to the proxy
1267    server, and u->url will be requested.  */
1268 static uerr_t
1269 gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy)
1270 {
1271   struct request *req;
1272
1273   char *type;
1274   char *user, *passwd;
1275   char *proxyauth;
1276   int statcode;
1277   int write_error;
1278   wgint contlen, contrange;
1279   struct url *conn;
1280   FILE *fp;
1281
1282   int sock = -1;
1283   int flags;
1284
1285   /* Set to 1 when the authorization has failed permanently and should
1286      not be tried again. */
1287   bool auth_finished = false;
1288
1289   /* Whether NTLM authentication is used for this request. */
1290   bool ntlm_seen = false;
1291
1292   /* Whether our connection to the remote host is through SSL.  */
1293   bool using_ssl = false;
1294
1295   /* Whether a HEAD request will be issued (as opposed to GET or
1296      POST). */
1297   bool head_only = !!(*dt & HEAD_ONLY);
1298
1299   char *head;
1300   struct response *resp;
1301   char hdrval[256];
1302   char *message;
1303
1304   /* Whether this connection will be kept alive after the HTTP request
1305      is done. */
1306   bool keep_alive;
1307
1308   /* Whether keep-alive should be inhibited.
1309
1310      RFC 2068 requests that 1.0 clients not send keep-alive requests
1311      to proxies.  This is because many 1.0 proxies do not interpret
1312      the Connection header and transfer it to the remote server,
1313      causing it to not close the connection and leave both the proxy
1314      and the client hanging.  */
1315   bool inhibit_keep_alive =
1316     !opt.http_keep_alive || opt.ignore_length || proxy != NULL;
1317
1318   /* Headers sent when using POST. */
1319   wgint post_data_size = 0;
1320
1321   bool host_lookup_failed = false;
1322
1323 #ifdef HAVE_SSL
1324   if (u->scheme == SCHEME_HTTPS)
1325     {
1326       /* Initialize the SSL context.  After this has once been done,
1327          it becomes a no-op.  */
1328       if (!ssl_init ())
1329         {
1330           scheme_disable (SCHEME_HTTPS);
1331           logprintf (LOG_NOTQUIET,
1332                      _("Disabling SSL due to encountered errors.\n"));
1333           return SSLINITFAILED;
1334         }
1335     }
1336 #endif /* HAVE_SSL */
1337
1338   /* Initialize certain elements of struct http_stat.  */
1339   hs->len = 0;
1340   hs->contlen = -1;
1341   hs->res = -1;
1342   hs->rderrmsg = NULL;
1343   hs->newloc = NULL;
1344   hs->remote_time = NULL;
1345   hs->error = NULL;
1346
1347   conn = u;
1348
1349   /* Prepare the request to send. */
1350
1351   req = request_new ();
1352   {
1353     char *meth_arg;
1354     const char *meth = "GET";
1355     if (head_only)
1356       meth = "HEAD";
1357     else if (opt.post_file_name || opt.post_data)
1358       meth = "POST";
1359     /* Use the full path, i.e. one that includes the leading slash and
1360        the query string.  E.g. if u->path is "foo/bar" and u->query is
1361        "param=value", full_path will be "/foo/bar?param=value".  */
1362     if (proxy
1363 #ifdef HAVE_SSL
1364         /* When using SSL over proxy, CONNECT establishes a direct
1365            connection to the HTTPS server.  Therefore use the same
1366            argument as when talking to the server directly. */
1367         && u->scheme != SCHEME_HTTPS
1368 #endif
1369         )
1370       meth_arg = xstrdup (u->url);
1371     else
1372       meth_arg = url_full_path (u);
1373     request_set_method (req, meth, meth_arg);
1374   }
1375
1376   request_set_header (req, "Referer", (char *) hs->referer, rel_none);
1377   if (*dt & SEND_NOCACHE)
1378     request_set_header (req, "Pragma", "no-cache", rel_none);
1379   if (hs->restval)
1380     request_set_header (req, "Range",
1381                         aprintf ("bytes=%s-",
1382                                  number_to_static_string (hs->restval)),
1383                         rel_value);
1384   SET_USER_AGENT (req);
1385   request_set_header (req, "Accept", "*/*", rel_none);
1386
1387   /* Find the username and password for authentication. */
1388   user = u->user;
1389   passwd = u->passwd;
1390   search_netrc (u->host, (const char **)&user, (const char **)&passwd, 0);
1391   user = user ? user : (opt.http_user ? opt.http_user : opt.user);
1392   passwd = passwd ? passwd : (opt.http_passwd ? opt.http_passwd : opt.passwd);
1393
1394   if (user && passwd)
1395     {
1396       /* We have the username and the password, but haven't tried
1397          any authorization yet.  Let's see if the "Basic" method
1398          works.  If not, we'll come back here and construct a
1399          proper authorization method with the right challenges.
1400
1401          If we didn't employ this kind of logic, every URL that
1402          requires authorization would have to be processed twice,
1403          which is very suboptimal and generates a bunch of false
1404          "unauthorized" errors in the server log.
1405
1406          #### But this logic also has a serious problem when used
1407          with stronger authentications: we *first* transmit the
1408          username and the password in clear text, and *then* attempt a
1409          stronger authentication scheme.  That cannot be right!  We
1410          are only fortunate that almost everyone still uses the
1411          `Basic' scheme anyway.
1412
1413          There should be an option to prevent this from happening, for
1414          those who use strong authentication schemes and value their
1415          passwords.  */
1416       request_set_header (req, "Authorization",
1417                           basic_authentication_encode (user, passwd),
1418                           rel_value);
1419     }
1420
1421   proxyauth = NULL;
1422   if (proxy)
1423     {
1424       char *proxy_user, *proxy_passwd;
1425       /* For normal username and password, URL components override
1426          command-line/wgetrc parameters.  With proxy
1427          authentication, it's the reverse, because proxy URLs are
1428          normally the "permanent" ones, so command-line args
1429          should take precedence.  */
1430       if (opt.proxy_user && opt.proxy_passwd)
1431         {
1432           proxy_user = opt.proxy_user;
1433           proxy_passwd = opt.proxy_passwd;
1434         }
1435       else
1436         {
1437           proxy_user = proxy->user;
1438           proxy_passwd = proxy->passwd;
1439         }
1440       /* #### This does not appear right.  Can't the proxy request,
1441          say, `Digest' authentication?  */
1442       if (proxy_user && proxy_passwd)
1443         proxyauth = basic_authentication_encode (proxy_user, proxy_passwd);
1444
1445       /* If we're using a proxy, we will be connecting to the proxy
1446          server.  */
1447       conn = proxy;
1448
1449       /* Proxy authorization over SSL is handled below. */
1450 #ifdef HAVE_SSL
1451       if (u->scheme != SCHEME_HTTPS)
1452 #endif
1453         request_set_header (req, "Proxy-Authorization", proxyauth, rel_value);
1454     }
1455
1456   /* Generate the Host header, HOST:PORT.  Take into account that:
1457
1458      - Broken server-side software often doesn't recognize the PORT
1459        argument, so we must generate "Host: www.server.com" instead of
1460        "Host: www.server.com:80" (and likewise for https port).
1461
1462      - IPv6 addresses contain ":", so "Host: 3ffe:8100:200:2::2:1234"
1463        becomes ambiguous and needs to be rewritten as "Host:
1464        [3ffe:8100:200:2::2]:1234".  */
1465   {
1466     /* Formats arranged for hfmt[add_port][add_squares].  */
1467     static const char *hfmt[][2] = {
1468       { "%s", "[%s]" }, { "%s:%d", "[%s]:%d" }
1469     };
1470     int add_port = u->port != scheme_default_port (u->scheme);
1471     int add_squares = strchr (u->host, ':') != NULL;
1472     request_set_header (req, "Host",
1473                         aprintf (hfmt[add_port][add_squares], u->host, u->port),
1474                         rel_value);
1475   }
1476
1477   if (!inhibit_keep_alive)
1478     request_set_header (req, "Connection", "Keep-Alive", rel_none);
1479
1480   if (opt.cookies)
1481     request_set_header (req, "Cookie",
1482                         cookie_header (wget_cookie_jar,
1483                                        u->host, u->port, u->path,
1484 #ifdef HAVE_SSL
1485                                        u->scheme == SCHEME_HTTPS
1486 #else
1487                                        0
1488 #endif
1489                                        ),
1490                         rel_value);
1491
1492   if (opt.post_data || opt.post_file_name)
1493     {
1494       request_set_header (req, "Content-Type",
1495                           "application/x-www-form-urlencoded", rel_none);
1496       if (opt.post_data)
1497         post_data_size = strlen (opt.post_data);
1498       else
1499         {
1500           post_data_size = file_size (opt.post_file_name);
1501           if (post_data_size == -1)
1502             {
1503               logprintf (LOG_NOTQUIET, _("POST data file `%s' missing: %s\n"),
1504                          opt.post_file_name, strerror (errno));
1505               post_data_size = 0;
1506             }
1507         }
1508       request_set_header (req, "Content-Length",
1509                           xstrdup (number_to_static_string (post_data_size)),
1510                           rel_value);
1511     }
1512
1513   /* Add the user headers. */
1514   if (opt.user_headers)
1515     {
1516       int i;
1517       for (i = 0; opt.user_headers[i]; i++)
1518         request_set_user_header (req, opt.user_headers[i]);
1519     }
1520
1521  retry_with_auth:
1522   /* We need to come back here when the initial attempt to retrieve
1523      without authorization header fails.  (Expected to happen at least
1524      for the Digest authorization scheme.)  */
1525
1526   keep_alive = false;
1527
1528   /* Establish the connection.  */
1529
1530   if (!inhibit_keep_alive)
1531     {
1532       /* Look for a persistent connection to target host, unless a
1533          proxy is used.  The exception is when SSL is in use, in which
1534          case the proxy is nothing but a passthrough to the target
1535          host, registered as a connection to the latter.  */
1536       struct url *relevant = conn;
1537 #ifdef HAVE_SSL
1538       if (u->scheme == SCHEME_HTTPS)
1539         relevant = u;
1540 #endif
1541
1542       if (persistent_available_p (relevant->host, relevant->port,
1543 #ifdef HAVE_SSL
1544                                   relevant->scheme == SCHEME_HTTPS,
1545 #else
1546                                   0,
1547 #endif
1548                                   &host_lookup_failed))
1549         {
1550           sock = pconn.socket;
1551           using_ssl = pconn.ssl;
1552           logprintf (LOG_VERBOSE, _("Reusing existing connection to %s:%d.\n"),
1553                      escnonprint (pconn.host), pconn.port);
1554           DEBUGP (("Reusing fd %d.\n", sock));
1555           if (pconn.authorized)
1556             /* If the connection is already authorized, the "Basic"
1557                authorization added by code above is unnecessary and
1558                only hurts us.  */
1559             request_remove_header (req, "Authorization");
1560         }
1561     }
1562
1563   if (sock < 0)
1564     {
1565       /* In its current implementation, persistent_available_p will
1566          look up conn->host in some cases.  If that lookup failed, we
1567          don't need to bother with connect_to_host.  */
1568       if (host_lookup_failed)
1569         {
1570           request_free (req);
1571           return HOSTERR;
1572         }
1573
1574       sock = connect_to_host (conn->host, conn->port);
1575       if (sock == E_HOST)
1576         {
1577           request_free (req);
1578           return HOSTERR;
1579         }
1580       else if (sock < 0)
1581         {
1582           request_free (req);
1583           return (retryable_socket_connect_error (errno)
1584                   ? CONERROR : CONIMPOSSIBLE);
1585         }
1586
1587 #ifdef HAVE_SSL
1588       if (proxy && u->scheme == SCHEME_HTTPS)
1589         {
1590           /* When requesting SSL URLs through proxies, use the
1591              CONNECT method to request passthrough.  */
1592           struct request *connreq = request_new ();
1593           request_set_method (connreq, "CONNECT",
1594                               aprintf ("%s:%d", u->host, u->port));
1595           SET_USER_AGENT (connreq);
1596           if (proxyauth)
1597             {
1598               request_set_header (connreq, "Proxy-Authorization",
1599                                   proxyauth, rel_value);
1600               /* Now that PROXYAUTH is part of the CONNECT request,
1601                  zero it out so we don't send proxy authorization with
1602                  the regular request below.  */
1603               proxyauth = NULL;
1604             }
1605           /* Examples in rfc2817 use the Host header in CONNECT
1606              requests.  I don't see how that gains anything, given
1607              that the contents of Host would be exactly the same as
1608              the contents of CONNECT.  */
1609
1610           write_error = request_send (connreq, sock);
1611           request_free (connreq);
1612           if (write_error < 0)
1613             {
1614               CLOSE_INVALIDATE (sock);
1615               return WRITEFAILED;
1616             }
1617
1618           head = read_http_response_head (sock);
1619           if (!head)
1620             {
1621               logprintf (LOG_VERBOSE, _("Failed reading proxy response: %s\n"),
1622                          fd_errstr (sock));
1623               CLOSE_INVALIDATE (sock);
1624               return HERR;
1625             }
1626           message = NULL;
1627           if (!*head)
1628             {
1629               xfree (head);
1630               goto failed_tunnel;
1631             }
1632           DEBUGP (("proxy responded with: [%s]\n", head));
1633
1634           resp = resp_new (head);
1635           statcode = resp_status (resp, &message);
1636           resp_free (resp);
1637           xfree (head);
1638           if (statcode != 200)
1639             {
1640             failed_tunnel:
1641               logprintf (LOG_NOTQUIET, _("Proxy tunneling failed: %s"),
1642                          message ? escnonprint (message) : "?");
1643               xfree_null (message);
1644               return CONSSLERR;
1645             }
1646           xfree_null (message);
1647
1648           /* SOCK is now *really* connected to u->host, so update CONN
1649              to reflect this.  That way register_persistent will
1650              register SOCK as being connected to u->host:u->port.  */
1651           conn = u;
1652         }
1653
1654       if (conn->scheme == SCHEME_HTTPS)
1655         {
1656           if (!ssl_connect (sock) || !ssl_check_certificate (sock, u->host))
1657             {
1658               fd_close (sock);
1659               return CONSSLERR;
1660             }
1661           using_ssl = true;
1662         }
1663 #endif /* HAVE_SSL */
1664     }
1665
1666   /* Send the request to server.  */
1667   write_error = request_send (req, sock);
1668
1669   if (write_error >= 0)
1670     {
1671       if (opt.post_data)
1672         {
1673           DEBUGP (("[POST data: %s]\n", opt.post_data));
1674           write_error = fd_write (sock, opt.post_data, post_data_size, -1);
1675         }
1676       else if (opt.post_file_name && post_data_size != 0)
1677         write_error = post_file (sock, opt.post_file_name, post_data_size);
1678     }
1679
1680   if (write_error < 0)
1681     {
1682       CLOSE_INVALIDATE (sock);
1683       request_free (req);
1684       return WRITEFAILED;
1685     }
1686   logprintf (LOG_VERBOSE, _("%s request sent, awaiting response... "),
1687              proxy ? "Proxy" : "HTTP");
1688   contlen = -1;
1689   contrange = 0;
1690   *dt &= ~RETROKF;
1691
1692   head = read_http_response_head (sock);
1693   if (!head)
1694     {
1695       if (errno == 0)
1696         {
1697           logputs (LOG_NOTQUIET, _("No data received.\n"));
1698           CLOSE_INVALIDATE (sock);
1699           request_free (req);
1700           return HEOF;
1701         }
1702       else
1703         {
1704           logprintf (LOG_NOTQUIET, _("Read error (%s) in headers.\n"),
1705                      fd_errstr (sock));
1706           CLOSE_INVALIDATE (sock);
1707           request_free (req);
1708           return HERR;
1709         }
1710     }
1711   DEBUGP (("\n---response begin---\n%s---response end---\n", head));
1712
1713   resp = resp_new (head);
1714
1715   /* Check for status line.  */
1716   message = NULL;
1717   statcode = resp_status (resp, &message);
1718   if (!opt.server_response)
1719     logprintf (LOG_VERBOSE, "%2d %s\n", statcode,
1720                message ? escnonprint (message) : "");
1721   else
1722     {
1723       logprintf (LOG_VERBOSE, "\n");
1724       print_server_response (resp, "  ");
1725     }
1726
1727   /* Determine the local filename if needed. Notice that if -O is used 
1728    * hstat.local_file is set by http_loop to the argument of -O. */
1729   if (!hs->local_file)     
1730     {
1731       /* Honor Content-Disposition whether possible. */
1732       if (!resp_header_copy (resp, "Content-Disposition", hdrval, sizeof (hdrval))
1733           || !parse_content_disposition (hdrval, &hs->local_file))
1734         {
1735           /* Choose filename according to URL name. */
1736           hs->local_file = url_file_name (u);
1737         }
1738     }
1739   
1740   /* TODO: perform this check only once. */
1741   if (opt.noclobber && file_exists_p (hs->local_file))
1742     {
1743       /* If opt.noclobber is turned on and file already exists, do not
1744          retrieve the file */
1745       logprintf (LOG_VERBOSE, _("\
1746 File `%s' already there; not retrieving.\n\n"), hs->local_file);
1747       /* If the file is there, we suppose it's retrieved OK.  */
1748       *dt |= RETROKF;
1749
1750       /* #### Bogusness alert.  */
1751       /* If its suffix is "html" or "htm" or similar, assume text/html.  */
1752       if (has_html_suffix_p (hs->local_file))
1753         *dt |= TEXTHTML;
1754
1755       return RETROK;
1756     }
1757
1758   /* Support timestamping */
1759   /* TODO: move this code out of gethttp. */
1760   if (opt.timestamping && !hs->timestamp_checked)
1761     {
1762       size_t filename_len = strlen (hs->local_file);
1763       char *filename_plus_orig_suffix = alloca (filename_len + sizeof (".orig"));
1764       bool local_dot_orig_file_exists = false;
1765       char *local_filename = NULL;
1766       struct_stat st;
1767
1768       if (opt.backup_converted)
1769         /* If -K is specified, we'll act on the assumption that it was specified
1770            last time these files were downloaded as well, and instead of just
1771            comparing local file X against server file X, we'll compare local
1772            file X.orig (if extant, else X) against server file X.  If -K
1773            _wasn't_ specified last time, or the server contains files called
1774            *.orig, -N will be back to not operating correctly with -k. */
1775         {
1776           /* Would a single s[n]printf() call be faster?  --dan
1777
1778              Definitely not.  sprintf() is horribly slow.  It's a
1779              different question whether the difference between the two
1780              affects a program.  Usually I'd say "no", but at one
1781              point I profiled Wget, and found that a measurable and
1782              non-negligible amount of time was lost calling sprintf()
1783              in url.c.  Replacing sprintf with inline calls to
1784              strcpy() and number_to_string() made a difference.
1785              --hniksic */
1786           memcpy (filename_plus_orig_suffix, hs->local_file, filename_len);
1787           memcpy (filename_plus_orig_suffix + filename_len,
1788                   ".orig", sizeof (".orig"));
1789
1790           /* Try to stat() the .orig file. */
1791           if (stat (filename_plus_orig_suffix, &st) == 0)
1792             {
1793               local_dot_orig_file_exists = 1;
1794               local_filename = filename_plus_orig_suffix;
1795             }
1796         }      
1797
1798       if (!local_dot_orig_file_exists)
1799         /* Couldn't stat() <file>.orig, so try to stat() <file>. */
1800         if (stat (hs->local_file, &st) == 0)
1801           local_filename = hs->local_file;
1802
1803       if (local_filename != NULL)
1804         /* There was a local file, so we'll check later to see if the version
1805            the server has is the same version we already have, allowing us to
1806            skip a download. */
1807         {
1808           hs->orig_file_name = xstrdup (local_filename);
1809           hs->orig_file_size = st.st_size;
1810           hs->orig_file_tstamp = st.st_mtime;
1811 #ifdef WINDOWS
1812           /* Modification time granularity is 2 seconds for Windows, so
1813              increase local time by 1 second for later comparison. */
1814           ++hs->orig_file_tstamp;
1815 #endif
1816         }
1817     }
1818
1819   if (!opt.ignore_length
1820       && resp_header_copy (resp, "Content-Length", hdrval, sizeof (hdrval)))
1821     {
1822       wgint parsed;
1823       errno = 0;
1824       parsed = str_to_wgint (hdrval, NULL, 10);
1825       if (parsed == WGINT_MAX && errno == ERANGE)
1826         /* Out of range.
1827            #### If Content-Length is out of range, it most likely
1828            means that the file is larger than 2G and that we're
1829            compiled without LFS.  In that case we should probably
1830            refuse to even attempt to download the file.  */
1831         contlen = -1;
1832       else
1833         contlen = parsed;
1834     }
1835
1836   /* Check for keep-alive related responses. */
1837   if (!inhibit_keep_alive && contlen != -1)
1838     {
1839       if (resp_header_copy (resp, "Keep-Alive", NULL, 0))
1840         keep_alive = true;
1841       else if (resp_header_copy (resp, "Connection", hdrval, sizeof (hdrval)))
1842         {
1843           if (0 == strcasecmp (hdrval, "Keep-Alive"))
1844             keep_alive = true;
1845         }
1846     }
1847   if (keep_alive)
1848     /* The server has promised that it will not close the connection
1849        when we're done.  This means that we can register it.  */
1850     register_persistent (conn->host, conn->port, sock, using_ssl);
1851
1852   if (statcode == HTTP_STATUS_UNAUTHORIZED)
1853     {
1854       /* Authorization is required.  */
1855       if (keep_alive && !head_only && skip_short_body (sock, contlen))
1856         CLOSE_FINISH (sock);
1857       else
1858         CLOSE_INVALIDATE (sock);
1859       pconn.authorized = false;
1860       if (!auth_finished && (user && passwd))
1861         {
1862           /* IIS sends multiple copies of WWW-Authenticate, one with
1863              the value "negotiate", and other(s) with data.  Loop over
1864              all the occurrences and pick the one we recognize.  */
1865           int wapos;
1866           const char *wabeg, *waend;
1867           char *www_authenticate = NULL;
1868           for (wapos = 0;
1869                (wapos = resp_header_locate (resp, "WWW-Authenticate", wapos,
1870                                             &wabeg, &waend)) != -1;
1871                ++wapos)
1872             if (known_authentication_scheme_p (wabeg, waend))
1873               {
1874                 BOUNDED_TO_ALLOCA (wabeg, waend, www_authenticate);
1875                 break;
1876               }
1877
1878           if (!www_authenticate)
1879             /* If the authentication header is missing or
1880                unrecognized, there's no sense in retrying.  */
1881             logputs (LOG_NOTQUIET, _("Unknown authentication scheme.\n"));
1882           else if (BEGINS_WITH (www_authenticate, "Basic"))
1883             /* If the authentication scheme is "Basic", which we send
1884                by default, there's no sense in retrying either.  (This
1885                should be changed when we stop sending "Basic" data by
1886                default.)  */
1887             ;
1888           else
1889             {
1890               char *pth;
1891               pth = url_full_path (u);
1892               request_set_header (req, "Authorization",
1893                                   create_authorization_line (www_authenticate,
1894                                                              user, passwd,
1895                                                              request_method (req),
1896                                                              pth,
1897                                                              &auth_finished),
1898                                   rel_value);
1899               if (BEGINS_WITH (www_authenticate, "NTLM"))
1900                 ntlm_seen = true;
1901               xfree (pth);
1902               goto retry_with_auth;
1903             }
1904         }
1905       logputs (LOG_NOTQUIET, _("Authorization failed.\n"));
1906       request_free (req);
1907       return AUTHFAILED;
1908     }
1909   else /* statcode != HTTP_STATUS_UNAUTHORIZED */
1910     {
1911       /* Kludge: if NTLM is used, mark the TCP connection as authorized. */
1912       if (ntlm_seen)
1913         pconn.authorized = true;
1914     }
1915   request_free (req);
1916
1917   hs->statcode = statcode;
1918   if (statcode == -1)
1919     hs->error = xstrdup (_("Malformed status line"));
1920   else if (!*message)
1921     hs->error = xstrdup (_("(no description)"));
1922   else
1923     hs->error = xstrdup (message);
1924   xfree_null (message);
1925
1926   type = resp_header_strdup (resp, "Content-Type");
1927   if (type)
1928     {
1929       char *tmp = strchr (type, ';');
1930       if (tmp)
1931         {
1932           while (tmp > type && ISSPACE (tmp[-1]))
1933             --tmp;
1934           *tmp = '\0';
1935         }
1936     }
1937   hs->newloc = resp_header_strdup (resp, "Location");
1938   hs->remote_time = resp_header_strdup (resp, "Last-Modified");
1939
1940   /* Handle (possibly multiple instances of) the Set-Cookie header. */
1941   if (opt.cookies)
1942     {
1943       int scpos;
1944       const char *scbeg, *scend;
1945       /* The jar should have been created by now. */
1946       assert (wget_cookie_jar != NULL);
1947       for (scpos = 0;
1948            (scpos = resp_header_locate (resp, "Set-Cookie", scpos,
1949                                         &scbeg, &scend)) != -1;
1950            ++scpos)
1951         {
1952           char *set_cookie; BOUNDED_TO_ALLOCA (scbeg, scend, set_cookie);
1953           cookie_handle_set_cookie (wget_cookie_jar, u->host, u->port,
1954                                     u->path, set_cookie);
1955         }
1956     }
1957
1958   if (resp_header_copy (resp, "Content-Range", hdrval, sizeof (hdrval)))
1959     {
1960       wgint first_byte_pos, last_byte_pos, entity_length;
1961       if (parse_content_range (hdrval, &first_byte_pos, &last_byte_pos,
1962                                &entity_length))
1963         contrange = first_byte_pos;
1964     }
1965   resp_free (resp);
1966
1967   /* 20x responses are counted among successful by default.  */
1968   if (H_20X (statcode))
1969     *dt |= RETROKF;
1970
1971   /* Return if redirected.  */
1972   if (H_REDIRECTED (statcode) || statcode == HTTP_STATUS_MULTIPLE_CHOICES)
1973     {
1974       /* RFC2068 says that in case of the 300 (multiple choices)
1975          response, the server can output a preferred URL through
1976          `Location' header; otherwise, the request should be treated
1977          like GET.  So, if the location is set, it will be a
1978          redirection; otherwise, just proceed normally.  */
1979       if (statcode == HTTP_STATUS_MULTIPLE_CHOICES && !hs->newloc)
1980         *dt |= RETROKF;
1981       else
1982         {
1983           logprintf (LOG_VERBOSE,
1984                      _("Location: %s%s\n"),
1985                      hs->newloc ? escnonprint_uri (hs->newloc) : _("unspecified"),
1986                      hs->newloc ? _(" [following]") : "");
1987           if (keep_alive && !head_only && skip_short_body (sock, contlen))
1988             CLOSE_FINISH (sock);
1989           else
1990             CLOSE_INVALIDATE (sock);
1991           xfree_null (type);
1992           return NEWLOCATION;
1993         }
1994     }
1995
1996   /* If content-type is not given, assume text/html.  This is because
1997      of the multitude of broken CGI's that "forget" to generate the
1998      content-type.  */
1999   if (!type ||
2000         0 == strncasecmp (type, TEXTHTML_S, strlen (TEXTHTML_S)) ||
2001         0 == strncasecmp (type, TEXTXHTML_S, strlen (TEXTXHTML_S)))
2002     *dt |= TEXTHTML;
2003   else
2004     *dt &= ~TEXTHTML;
2005
2006   if (opt.html_extension && (*dt & TEXTHTML))
2007     /* -E / --html-extension / html_extension = on was specified, and this is a
2008        text/html file.  If some case-insensitive variation on ".htm[l]" isn't
2009        already the file's suffix, tack on ".html". */
2010     {
2011       char *last_period_in_local_filename = strrchr (hs->local_file, '.');
2012
2013       if (last_period_in_local_filename == NULL
2014           || !(0 == strcasecmp (last_period_in_local_filename, ".htm")
2015                || 0 == strcasecmp (last_period_in_local_filename, ".html")))
2016         {
2017           int local_filename_len = strlen (hs->local_file);
2018           /* Resize the local file, allowing for ".html" preceded by
2019              optional ".NUMBER".  */
2020           hs->local_file = xrealloc (hs->local_file,
2021                                      local_filename_len + 24 + sizeof (".html"));
2022           strcpy(hs->local_file + local_filename_len, ".html");
2023           /* If clobbering is not allowed and the file, as named,
2024              exists, tack on ".NUMBER.html" instead. */
2025           if (!ALLOW_CLOBBER && file_exists_p (hs->local_file))
2026             {
2027               int ext_num = 1;
2028               do
2029                 sprintf (hs->local_file + local_filename_len,
2030                          ".%d.html", ext_num++);
2031               while (file_exists_p (hs->local_file));
2032             }
2033           *dt |= ADDED_HTML_EXTENSION;
2034         }
2035     }
2036
2037   if (statcode == HTTP_STATUS_RANGE_NOT_SATISFIABLE)
2038     {
2039       /* If `-c' is in use and the file has been fully downloaded (or
2040          the remote file has shrunk), Wget effectively requests bytes
2041          after the end of file and the server response with 416.  */
2042       logputs (LOG_VERBOSE, _("\
2043 \n    The file is already fully retrieved; nothing to do.\n\n"));
2044       /* In case the caller inspects. */
2045       hs->len = contlen;
2046       hs->res = 0;
2047       /* Mark as successfully retrieved. */
2048       *dt |= RETROKF;
2049       xfree_null (type);
2050       CLOSE_INVALIDATE (sock);        /* would be CLOSE_FINISH, but there
2051                                    might be more bytes in the body. */
2052       return RETRUNNEEDED;
2053     }
2054   if ((contrange != 0 && contrange != hs->restval)
2055       || (H_PARTIAL (statcode) && !contrange))
2056     {
2057       /* The Range request was somehow misunderstood by the server.
2058          Bail out.  */
2059       xfree_null (type);
2060       CLOSE_INVALIDATE (sock);
2061       return RANGEERR;
2062     }
2063   hs->contlen = contlen + contrange;
2064
2065   if (opt.verbose)
2066     {
2067       if (*dt & RETROKF)
2068         {
2069           /* No need to print this output if the body won't be
2070              downloaded at all, or if the original server response is
2071              printed.  */
2072           logputs (LOG_VERBOSE, _("Length: "));
2073           if (contlen != -1)
2074             {
2075               logputs (LOG_VERBOSE, number_to_static_string (contlen + contrange));
2076               if (contlen + contrange >= 1024)
2077                 logprintf (LOG_VERBOSE, " (%s)",
2078                            human_readable (contlen + contrange));
2079               if (contrange)
2080                 {
2081                   if (contlen >= 1024)
2082                     logprintf (LOG_VERBOSE, _(", %s (%s) remaining"),
2083                                number_to_static_string (contlen),
2084                                human_readable (contlen));
2085                   else
2086                     logprintf (LOG_VERBOSE, _(", %s remaining"),
2087                                number_to_static_string (contlen));
2088                 }
2089             }
2090           else
2091             logputs (LOG_VERBOSE,
2092                      opt.ignore_length ? _("ignored") : _("unspecified"));
2093           if (type)
2094             logprintf (LOG_VERBOSE, " [%s]\n", escnonprint (type));
2095           else
2096             logputs (LOG_VERBOSE, "\n");
2097         }
2098     }
2099   xfree_null (type);
2100   type = NULL;                        /* We don't need it any more.  */
2101
2102   /* Return if we have no intention of further downloading.  */
2103   if (!(*dt & RETROKF) || head_only)
2104     {
2105       /* In case the caller cares to look...  */
2106       hs->len = 0;
2107       hs->res = 0;
2108       xfree_null (type);
2109       if (head_only)
2110         /* Pre-1.10 Wget used CLOSE_INVALIDATE here.  Now we trust the
2111            servers not to send body in response to a HEAD request, and
2112            those that do will likely be caught by test_socket_open.
2113            If not, they can be worked around using
2114            `--no-http-keep-alive'.  */
2115         CLOSE_FINISH (sock);
2116       else if (keep_alive && skip_short_body (sock, contlen))
2117         /* Successfully skipped the body; also keep using the socket. */
2118         CLOSE_FINISH (sock);
2119       else
2120         CLOSE_INVALIDATE (sock);
2121       return RETRFINISHED;
2122     }
2123
2124   /* Print fetch message, if opt.verbose.  */
2125   if (opt.verbose)
2126     {
2127       logprintf (LOG_NOTQUIET, _("Saving to: `%s'\n"), 
2128                  HYPHENP (hs->local_file) ? "STDOUT" : hs->local_file);
2129     }
2130     
2131   /* Open the local file.  */
2132   if (!output_stream)
2133     {
2134       mkalldirs (hs->local_file);
2135       if (opt.backups)
2136         rotate_backups (hs->local_file);
2137       if (hs->restval)
2138         fp = fopen (hs->local_file, "ab");
2139       else if (ALLOW_CLOBBER)
2140         fp = fopen (hs->local_file, "wb");
2141       else
2142         {
2143           fp = fopen_excl (hs->local_file, true);
2144           if (!fp && errno == EEXIST)
2145             {
2146               /* We cannot just invent a new name and use it (which is
2147                  what functions like unique_create typically do)
2148                  because we told the user we'd use this name.
2149                  Instead, return and retry the download.  */
2150               logprintf (LOG_NOTQUIET,
2151                          _("%s has sprung into existence.\n"),
2152                          hs->local_file);
2153               CLOSE_INVALIDATE (sock);
2154               return FOPEN_EXCL_ERR;
2155             }
2156         }
2157       if (!fp)
2158         {
2159           logprintf (LOG_NOTQUIET, "%s: %s\n", hs->local_file, strerror (errno));
2160           CLOSE_INVALIDATE (sock);
2161           return FOPENERR;
2162         }
2163     }
2164   else
2165     fp = output_stream;
2166
2167   /* This confuses the timestamping code that checks for file size.
2168      #### The timestamping code should be smarter about file size.  */
2169   if (opt.save_headers && hs->restval == 0)
2170     fwrite (head, 1, strlen (head), fp);
2171
2172   /* Now we no longer need to store the response header. */
2173   xfree (head);
2174
2175   /* Download the request body.  */
2176   flags = 0;
2177   if (contlen != -1)
2178     /* If content-length is present, read that much; otherwise, read
2179        until EOF.  The HTTP spec doesn't require the server to
2180        actually close the connection when it's done sending data. */
2181     flags |= rb_read_exactly;
2182   if (hs->restval > 0 && contrange == 0)
2183     /* If the server ignored our range request, instruct fd_read_body
2184        to skip the first RESTVAL bytes of body.  */
2185     flags |= rb_skip_startpos;
2186   hs->len = hs->restval;
2187   hs->rd_size = 0;
2188   hs->res = fd_read_body (sock, fp, contlen != -1 ? contlen : 0,
2189                           hs->restval, &hs->rd_size, &hs->len, &hs->dltime,
2190                           flags);
2191
2192   if (hs->res >= 0)
2193     CLOSE_FINISH (sock);
2194   else
2195     {
2196       if (hs->res < 0)
2197         hs->rderrmsg = xstrdup (fd_errstr (sock));
2198       CLOSE_INVALIDATE (sock);
2199     }
2200
2201   if (!output_stream)
2202     fclose (fp);
2203   if (hs->res == -2)
2204     return FWRITEERR;
2205   return RETRFINISHED;
2206 }
2207
2208 /* The genuine HTTP loop!  This is the part where the retrieval is
2209    retried, and retried, and retried, and...  */
2210 uerr_t
2211 http_loop (struct url *u, char **newloc, char **local_file, const char *referer,
2212            int *dt, struct url *proxy)
2213 {
2214   int count;
2215   bool got_head = false;         /* used for time-stamping */
2216   char *tms;
2217   const char *tmrate;
2218   uerr_t err, ret = TRYLIMEXC;
2219   time_t tmr = -1;               /* remote time-stamp */
2220   wgint local_size = 0;          /* the size of the local file */
2221   struct http_stat hstat;        /* HTTP status */
2222   struct_stat st;  
2223
2224   /* Assert that no value for *LOCAL_FILE was passed. */
2225   assert (local_file == NULL || *local_file == NULL);
2226   
2227   /* Set LOCAL_FILE parameter. */
2228   if (local_file && opt.output_document)
2229     *local_file = HYPHENP (opt.output_document) ? NULL : xstrdup (opt.output_document);
2230   
2231   /* Reset NEWLOC parameter. */
2232   *newloc = NULL;
2233
2234   /* This used to be done in main(), but it's a better idea to do it
2235      here so that we don't go through the hoops if we're just using
2236      FTP or whatever. */
2237   if (opt.cookies)
2238     load_cookies();
2239
2240   /* Warn on (likely bogus) wildcard usage in HTTP. */
2241   if (opt.ftp_glob && has_wildcards_p (u->path))
2242     logputs (LOG_VERBOSE, _("Warning: wildcards not supported in HTTP.\n"));
2243
2244   /* Setup hstat struct. */
2245   xzero (hstat);
2246   hstat.referer = referer;
2247
2248   if (opt.output_document)
2249     hstat.local_file = xstrdup (opt.output_document);
2250
2251   /* Reset the counter. */
2252   count = 0;
2253   
2254   /* Reset the document type. */
2255   *dt = 0;
2256   
2257   /* THE loop */
2258   do
2259     {
2260       /* Increment the pass counter.  */
2261       ++count;
2262       sleep_between_retrievals (count);
2263       
2264       /* Get the current time string.  */
2265       tms = time_str (NULL);
2266       
2267       /* Print fetch message, if opt.verbose.  */
2268       if (opt.verbose)
2269         {
2270           char *hurl = url_string (u, true);
2271           
2272           if (count > 1) 
2273             {
2274               char tmp[256];
2275               sprintf (tmp, _("(try:%2d)"), count);
2276               logprintf (LOG_NOTQUIET, "--%s--  %s  %s\n",
2277                          tms, tmp, hurl);
2278             }
2279           else 
2280             {
2281               logprintf (LOG_NOTQUIET, "--%s--  %s\n",
2282                          tms, hurl);
2283             }
2284           
2285 #ifdef WINDOWS
2286           ws_changetitle (hurl);
2287 #endif
2288           xfree (hurl);
2289         }
2290
2291       /* Default document type is empty.  However, if spider mode is
2292          on or time-stamping is employed, HEAD_ONLY commands is
2293          encoded within *dt.  */
2294       if (opt.spider || (opt.timestamping && !got_head))
2295         *dt |= HEAD_ONLY;
2296       else
2297         *dt &= ~HEAD_ONLY;
2298
2299       /* Decide whether or not to restart.  */
2300       if (opt.always_rest
2301           && stat (hstat.local_file, &st) == 0
2302           && S_ISREG (st.st_mode))
2303         /* When -c is used, continue from on-disk size.  (Can't use
2304            hstat.len even if count>1 because we don't want a failed
2305            first attempt to clobber existing data.)  */
2306         hstat.restval = st.st_size;
2307       else if (count > 1)
2308         /* otherwise, continue where the previous try left off */
2309         hstat.restval = hstat.len;
2310       else
2311         hstat.restval = 0;
2312
2313       /* Decide whether to send the no-cache directive.  We send it in
2314          two cases:
2315            a) we're using a proxy, and we're past our first retrieval.
2316               Some proxies are notorious for caching incomplete data, so
2317               we require a fresh get.
2318            b) caching is explicitly inhibited. */
2319       if ((proxy && count > 1)        /* a */
2320           || !opt.allow_cache)        /* b */
2321         *dt |= SEND_NOCACHE;
2322       else
2323         *dt &= ~SEND_NOCACHE;
2324
2325       /* Try fetching the document, or at least its head.  */
2326       err = gethttp (u, &hstat, dt, proxy);
2327
2328       /* Time?  */
2329       tms = time_str (NULL);
2330       
2331       /* Get the new location (with or without the redirection).  */
2332       if (hstat.newloc)
2333         *newloc = xstrdup (hstat.newloc);
2334       
2335       switch (err)
2336         {
2337         case HERR: case HEOF: case CONSOCKERR: case CONCLOSED:
2338         case CONERROR: case READERR: case WRITEFAILED:
2339         case RANGEERR: case FOPEN_EXCL_ERR:
2340           /* Non-fatal errors continue executing the loop, which will
2341              bring them to "while" statement at the end, to judge
2342              whether the number of tries was exceeded.  */
2343           printwhat (count, opt.ntry);
2344           continue;
2345         case FWRITEERR: case FOPENERR:
2346           /* Another fatal error.  */
2347           logputs (LOG_VERBOSE, "\n");
2348           logprintf (LOG_NOTQUIET, _("Cannot write to `%s' (%s).\n"),
2349                      hstat.local_file, strerror (errno));
2350         case HOSTERR: case CONIMPOSSIBLE: case PROXERR: case AUTHFAILED: 
2351         case SSLINITFAILED: case CONTNOTSUPPORTED:
2352           /* Fatal errors just return from the function.  */
2353           ret = err;
2354           goto exit;
2355         case CONSSLERR:
2356           /* Another fatal error.  */
2357           logprintf (LOG_NOTQUIET, _("Unable to establish SSL connection.\n"));
2358           ret = err;
2359           goto exit;
2360         case NEWLOCATION:
2361           /* Return the new location to the caller.  */
2362           if (!*newloc)
2363             {
2364               logprintf (LOG_NOTQUIET,
2365                          _("ERROR: Redirection (%d) without location.\n"),
2366                          hstat.statcode);
2367               ret = WRONGCODE;
2368             }
2369           else 
2370             {
2371               ret = NEWLOCATION;
2372             }
2373           goto exit;
2374         case RETRUNNEEDED:
2375           /* The file was already fully retrieved. */
2376           ret = RETROK;
2377           goto exit;
2378         case RETRFINISHED:
2379           /* Deal with you later.  */
2380           break;
2381         default:
2382           /* All possibilities should have been exhausted.  */
2383           abort ();
2384         }
2385       
2386       if (!(*dt & RETROKF))
2387         {
2388           if (!opt.verbose)
2389             {
2390               /* #### Ugly ugly ugly! */
2391               char *hurl = url_string (u, true);
2392               logprintf (LOG_NONVERBOSE, "%s:\n", hurl);
2393               xfree (hurl);
2394             }
2395           logprintf (LOG_NOTQUIET, _("%s ERROR %d: %s.\n"),
2396                      tms, hstat.statcode, escnonprint (hstat.error));
2397           logputs (LOG_VERBOSE, "\n");
2398           ret = WRONGCODE;
2399           goto exit;
2400         }
2401
2402       /* Did we get the time-stamp? */
2403       if (!got_head)
2404         {
2405           if (opt.timestamping && !hstat.remote_time)
2406             {
2407               logputs (LOG_NOTQUIET, _("\
2408 Last-modified header missing -- time-stamps turned off.\n"));
2409             }
2410           else if (hstat.remote_time)
2411             {
2412               /* Convert the date-string into struct tm.  */
2413               tmr = http_atotm (hstat.remote_time);
2414               if (tmr == (time_t) (-1))
2415                 logputs (LOG_VERBOSE, _("\
2416 Last-modified header invalid -- time-stamp ignored.\n"));
2417             }
2418         }
2419
2420       /* The time-stamping section.  */
2421       if (opt.timestamping && !got_head)
2422         {
2423           got_head = true;    /* no more time-stamping */
2424           *dt &= ~HEAD_ONLY;
2425           count = 0;          /* the retrieve count for HEAD is reset */
2426           
2427           if (hstat.remote_time && tmr != (time_t) (-1))
2428             {
2429               /* Now time-stamping can be used validly.  Time-stamping
2430                  means that if the sizes of the local and remote file
2431                  match, and local file is newer than the remote file,
2432                  it will not be retrieved.  Otherwise, the normal
2433                  download procedure is resumed.  */
2434               if (hstat.orig_file_tstamp >= tmr)
2435                 {
2436                   if (hstat.contlen == -1 || hstat.orig_file_size == hstat.contlen)
2437                     {
2438                       logprintf (LOG_VERBOSE, _("\
2439 Server file no newer than local file `%s' -- not retrieving.\n\n"),
2440                                  hstat.orig_file_name);
2441                       ret = RETROK;
2442                       goto exit;
2443                     }
2444                   else
2445                     {
2446                       logprintf (LOG_VERBOSE, _("\
2447 The sizes do not match (local %s) -- retrieving.\n"),
2448                                  number_to_static_string (local_size));
2449                     }
2450                 }
2451               else
2452                 logputs (LOG_VERBOSE,
2453                          _("Remote file is newer, retrieving.\n"));
2454
2455               logputs (LOG_VERBOSE, "\n");
2456             }
2457           
2458           /* free_hstat (&hstat); */
2459           hstat.timestamp_checked = true;
2460           continue;
2461         }
2462       
2463       if ((tmr != (time_t) (-1))
2464           && !opt.spider
2465           && ((hstat.len == hstat.contlen) ||
2466               ((hstat.res == 0) && (hstat.contlen == -1))))
2467         {
2468           /* #### This code repeats in http.c and ftp.c.  Move it to a
2469              function!  */
2470           const char *fl = NULL;
2471           if (opt.output_document)
2472             {
2473               if (output_stream_regular)
2474                 fl = opt.output_document;
2475             }
2476           else
2477             fl = hstat.local_file;
2478           if (fl)
2479             touch (fl, tmr);
2480         }
2481       /* End of time-stamping section. */
2482
2483       if (opt.spider)
2484         {
2485           logprintf (LOG_NOTQUIET, "%d %s\n\n", hstat.statcode,
2486                      escnonprint (hstat.error));
2487           ret = RETROK;
2488           goto exit;
2489         }
2490
2491       tmrate = retr_rate (hstat.rd_size, hstat.dltime);
2492       total_download_time += hstat.dltime;
2493
2494       if (hstat.len == hstat.contlen)
2495         {
2496           if (*dt & RETROKF)
2497             {
2498               logprintf (LOG_VERBOSE,
2499                          _("%s (%s) - `%s' saved [%s/%s]\n\n"),
2500                          tms, tmrate, hstat.local_file,
2501                          number_to_static_string (hstat.len),
2502                          number_to_static_string (hstat.contlen));
2503               logprintf (LOG_NONVERBOSE,
2504                          "%s URL:%s [%s/%s] -> \"%s\" [%d]\n",
2505                          tms, u->url,
2506                          number_to_static_string (hstat.len),
2507                          number_to_static_string (hstat.contlen),
2508                          hstat.local_file, count);
2509             }
2510           ++opt.numurls;
2511           total_downloaded_bytes += hstat.len;
2512
2513           /* Remember that we downloaded the file for later ".orig" code. */
2514           if (*dt & ADDED_HTML_EXTENSION)
2515             downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, hstat.local_file);
2516           else
2517             downloaded_file(FILE_DOWNLOADED_NORMALLY, hstat.local_file);
2518
2519           ret = RETROK;
2520           goto exit;
2521         }
2522       else if (hstat.res == 0) /* No read error */
2523         {
2524           if (hstat.contlen == -1)  /* We don't know how much we were supposed
2525                                        to get, so assume we succeeded. */ 
2526             {
2527               if (*dt & RETROKF)
2528                 {
2529                   logprintf (LOG_VERBOSE,
2530                              _("%s (%s) - `%s' saved [%s]\n\n"),
2531                              tms, tmrate, hstat.local_file,
2532                              number_to_static_string (hstat.len));
2533                   logprintf (LOG_NONVERBOSE,
2534                              "%s URL:%s [%s] -> \"%s\" [%d]\n",
2535                              tms, u->url, number_to_static_string (hstat.len),
2536                              hstat.local_file, count);
2537                 }
2538               ++opt.numurls;
2539               total_downloaded_bytes += hstat.len;
2540
2541               /* Remember that we downloaded the file for later ".orig" code. */
2542               if (*dt & ADDED_HTML_EXTENSION)
2543                 downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, hstat.local_file);
2544               else
2545                 downloaded_file(FILE_DOWNLOADED_NORMALLY, hstat.local_file);
2546               
2547               ret = RETROK;
2548               goto exit;
2549             }
2550           else if (hstat.len < hstat.contlen) /* meaning we lost the
2551                                                  connection too soon */
2552             {
2553               logprintf (LOG_VERBOSE,
2554                          _("%s (%s) - Connection closed at byte %s. "),
2555                          tms, tmrate, number_to_static_string (hstat.len));
2556               printwhat (count, opt.ntry);
2557               continue;
2558             }
2559           else
2560             /* Getting here would mean reading more data than
2561                requested with content-length, which we never do.  */
2562             abort ();
2563         }
2564       else /* from now on hstat.res can only be -1 */
2565         {
2566           if (hstat.contlen == -1)
2567             {
2568               logprintf (LOG_VERBOSE,
2569                          _("%s (%s) - Read error at byte %s (%s)."),
2570                          tms, tmrate, number_to_static_string (hstat.len),
2571                          hstat.rderrmsg);
2572               printwhat (count, opt.ntry);
2573               continue;
2574             }
2575           else /* hstat.res == -1 and contlen is given */
2576             {
2577               logprintf (LOG_VERBOSE,
2578                          _("%s (%s) - Read error at byte %s/%s (%s). "),
2579                          tms, tmrate,
2580                          number_to_static_string (hstat.len),
2581                          number_to_static_string (hstat.contlen),
2582                          hstat.rderrmsg);
2583               printwhat (count, opt.ntry);
2584               continue;
2585             }
2586         }
2587       /* not reached */
2588     }
2589   while (!opt.ntry || (count < opt.ntry));
2590
2591 exit:
2592   if (ret == RETROK) 
2593     *local_file = xstrdup (hstat.local_file);
2594   free_hstat (&hstat);
2595   
2596   return ret;
2597 }
2598 \f
2599 /* Check whether the result of strptime() indicates success.
2600    strptime() returns the pointer to how far it got to in the string.
2601    The processing has been successful if the string is at `GMT' or
2602    `+X', or at the end of the string.
2603
2604    In extended regexp parlance, the function returns 1 if P matches
2605    "^ *(GMT|[+-][0-9]|$)", 0 otherwise.  P being NULL (which strptime
2606    can return) is considered a failure and 0 is returned.  */
2607 static bool
2608 check_end (const char *p)
2609 {
2610   if (!p)
2611     return false;
2612   while (ISSPACE (*p))
2613     ++p;
2614   if (!*p
2615       || (p[0] == 'G' && p[1] == 'M' && p[2] == 'T')
2616       || ((p[0] == '+' || p[0] == '-') && ISDIGIT (p[1])))
2617     return true;
2618   else
2619     return false;
2620 }
2621
2622 /* Convert the textual specification of time in TIME_STRING to the
2623    number of seconds since the Epoch.
2624
2625    TIME_STRING can be in any of the three formats RFC2616 allows the
2626    HTTP servers to emit -- RFC1123-date, RFC850-date or asctime-date,
2627    as well as the time format used in the Set-Cookie header.
2628    Timezones are ignored, and should be GMT.
2629
2630    Return the computed time_t representation, or -1 if the conversion
2631    fails.
2632
2633    This function uses strptime with various string formats for parsing
2634    TIME_STRING.  This results in a parser that is not as lenient in
2635    interpreting TIME_STRING as I would like it to be.  Being based on
2636    strptime, it always allows shortened months, one-digit days, etc.,
2637    but due to the multitude of formats in which time can be
2638    represented, an ideal HTTP time parser would be even more
2639    forgiving.  It should completely ignore things like week days and
2640    concentrate only on the various forms of representing years,
2641    months, days, hours, minutes, and seconds.  For example, it would
2642    be nice if it accepted ISO 8601 out of the box.
2643
2644    I've investigated free and PD code for this purpose, but none was
2645    usable.  getdate was big and unwieldy, and had potential copyright
2646    issues, or so I was informed.  Dr. Marcus Hennecke's atotm(),
2647    distributed with phttpd, is excellent, but we cannot use it because
2648    it is not assigned to the FSF.  So I stuck it with strptime.  */
2649
2650 time_t
2651 http_atotm (const char *time_string)
2652 {
2653   /* NOTE: Solaris strptime man page claims that %n and %t match white
2654      space, but that's not universally available.  Instead, we simply
2655      use ` ' to mean "skip all WS", which works under all strptime
2656      implementations I've tested.  */
2657
2658   static const char *time_formats[] = {
2659     "%a, %d %b %Y %T",          /* rfc1123: Thu, 29 Jan 1998 22:12:57 */
2660     "%A, %d-%b-%y %T",          /* rfc850:  Thursday, 29-Jan-98 22:12:57 */
2661     "%a %b %d %T %Y",           /* asctime: Thu Jan 29 22:12:57 1998 */
2662     "%a, %d-%b-%Y %T"           /* cookies: Thu, 29-Jan-1998 22:12:57
2663                                    (used in Set-Cookie, defined in the
2664                                    Netscape cookie specification.) */
2665   };
2666   const char *oldlocale;
2667   int i;
2668   time_t ret = (time_t) -1;
2669
2670   /* Solaris strptime fails to recognize English month names in
2671      non-English locales, which we work around by temporarily setting
2672      locale to C before invoking strptime.  */
2673   oldlocale = setlocale (LC_TIME, NULL);
2674   setlocale (LC_TIME, "C");
2675
2676   for (i = 0; i < countof (time_formats); i++)
2677     {
2678       struct tm t;
2679
2680       /* Some versions of strptime use the existing contents of struct
2681          tm to recalculate the date according to format.  Zero it out
2682          to prevent stack garbage from influencing strptime.  */
2683       xzero (t);
2684
2685       if (check_end (strptime (time_string, time_formats[i], &t)))
2686         {
2687           ret = timegm (&t);
2688           break;
2689         }
2690     }
2691
2692   /* Restore the previous locale. */
2693   setlocale (LC_TIME, oldlocale);
2694
2695   return ret;
2696 }
2697 \f
2698 /* Authorization support: We support three authorization schemes:
2699
2700    * `Basic' scheme, consisting of base64-ing USER:PASSWORD string;
2701
2702    * `Digest' scheme, added by Junio Hamano <junio@twinsun.com>,
2703    consisting of answering to the server's challenge with the proper
2704    MD5 digests.
2705
2706    * `NTLM' ("NT Lan Manager") scheme, based on code written by Daniel
2707    Stenberg for libcurl.  Like digest, NTLM is based on a
2708    challenge-response mechanism, but unlike digest, it is non-standard
2709    (authenticates TCP connections rather than requests), undocumented
2710    and Microsoft-specific.  */
2711
2712 /* Create the authentication header contents for the `Basic' scheme.
2713    This is done by encoding the string "USER:PASS" to base64 and
2714    prepending the string "Basic " in front of it.  */
2715
2716 static char *
2717 basic_authentication_encode (const char *user, const char *passwd)
2718 {
2719   char *t1, *t2;
2720   int len1 = strlen (user) + 1 + strlen (passwd);
2721
2722   t1 = (char *)alloca (len1 + 1);
2723   sprintf (t1, "%s:%s", user, passwd);
2724
2725   t2 = (char *)alloca (BASE64_LENGTH (len1) + 1);
2726   base64_encode (t1, len1, t2);
2727
2728   return concat_strings ("Basic ", t2, (char *) 0);
2729 }
2730
2731 #define SKIP_WS(x) do {                         \
2732   while (ISSPACE (*(x)))                        \
2733     ++(x);                                      \
2734 } while (0)
2735
2736 #ifdef ENABLE_DIGEST
2737 /* Dump the hexadecimal representation of HASH to BUF.  HASH should be
2738    an array of 16 bytes containing the hash keys, and BUF should be a
2739    buffer of 33 writable characters (32 for hex digits plus one for
2740    zero termination).  */
2741 static void
2742 dump_hash (char *buf, const unsigned char *hash)
2743 {
2744   int i;
2745
2746   for (i = 0; i < MD5_HASHLEN; i++, hash++)
2747     {
2748       *buf++ = XNUM_TO_digit (*hash >> 4);
2749       *buf++ = XNUM_TO_digit (*hash & 0xf);
2750     }
2751   *buf = '\0';
2752 }
2753
2754 /* Take the line apart to find the challenge, and compose a digest
2755    authorization header.  See RFC2069 section 2.1.2.  */
2756 static char *
2757 digest_authentication_encode (const char *au, const char *user,
2758                               const char *passwd, const char *method,
2759                               const char *path)
2760 {
2761   static char *realm, *opaque, *nonce;
2762   static struct {
2763     const char *name;
2764     char **variable;
2765   } options[] = {
2766     { "realm", &realm },
2767     { "opaque", &opaque },
2768     { "nonce", &nonce }
2769   };
2770   char *res;
2771   param_token name, value;
2772
2773   realm = opaque = nonce = NULL;
2774
2775   au += 6;                      /* skip over `Digest' */
2776   while (extract_param (&au, &name, &value, ','))
2777     {
2778       int i;
2779       for (i = 0; i < countof (options); i++)
2780         if (name.e - name.b == strlen (options[i].name)
2781             && 0 == strncmp (name.b, options[i].name, name.e - name.b))
2782           {
2783             *options[i].variable = strdupdelim (value.b, value.e);
2784             break;
2785           }
2786     }
2787   if (!realm || !nonce || !user || !passwd || !path || !method)
2788     {
2789       xfree_null (realm);
2790       xfree_null (opaque);
2791       xfree_null (nonce);
2792       return NULL;
2793     }
2794
2795   /* Calculate the digest value.  */
2796   {
2797     ALLOCA_MD5_CONTEXT (ctx);
2798     unsigned char hash[MD5_HASHLEN];
2799     char a1buf[MD5_HASHLEN * 2 + 1], a2buf[MD5_HASHLEN * 2 + 1];
2800     char response_digest[MD5_HASHLEN * 2 + 1];
2801
2802     /* A1BUF = H(user ":" realm ":" password) */
2803     gen_md5_init (ctx);
2804     gen_md5_update ((unsigned char *)user, strlen (user), ctx);
2805     gen_md5_update ((unsigned char *)":", 1, ctx);
2806     gen_md5_update ((unsigned char *)realm, strlen (realm), ctx);
2807     gen_md5_update ((unsigned char *)":", 1, ctx);
2808     gen_md5_update ((unsigned char *)passwd, strlen (passwd), ctx);
2809     gen_md5_finish (ctx, hash);
2810     dump_hash (a1buf, hash);
2811
2812     /* A2BUF = H(method ":" path) */
2813     gen_md5_init (ctx);
2814     gen_md5_update ((unsigned char *)method, strlen (method), ctx);
2815     gen_md5_update ((unsigned char *)":", 1, ctx);
2816     gen_md5_update ((unsigned char *)path, strlen (path), ctx);
2817     gen_md5_finish (ctx, hash);
2818     dump_hash (a2buf, hash);
2819
2820     /* RESPONSE_DIGEST = H(A1BUF ":" nonce ":" A2BUF) */
2821     gen_md5_init (ctx);
2822     gen_md5_update ((unsigned char *)a1buf, MD5_HASHLEN * 2, ctx);
2823     gen_md5_update ((unsigned char *)":", 1, ctx);
2824     gen_md5_update ((unsigned char *)nonce, strlen (nonce), ctx);
2825     gen_md5_update ((unsigned char *)":", 1, ctx);
2826     gen_md5_update ((unsigned char *)a2buf, MD5_HASHLEN * 2, ctx);
2827     gen_md5_finish (ctx, hash);
2828     dump_hash (response_digest, hash);
2829
2830     res = xmalloc (strlen (user)
2831                    + strlen (user)
2832                    + strlen (realm)
2833                    + strlen (nonce)
2834                    + strlen (path)
2835                    + 2 * MD5_HASHLEN /*strlen (response_digest)*/
2836                    + (opaque ? strlen (opaque) : 0)
2837                    + 128);
2838     sprintf (res, "Digest \
2839 username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", response=\"%s\"",
2840              user, realm, nonce, path, response_digest);
2841     if (opaque)
2842       {
2843         char *p = res + strlen (res);
2844         strcat (p, ", opaque=\"");
2845         strcat (p, opaque);
2846         strcat (p, "\"");
2847       }
2848   }
2849   return res;
2850 }
2851 #endif /* ENABLE_DIGEST */
2852
2853 /* Computing the size of a string literal must take into account that
2854    value returned by sizeof includes the terminating \0.  */
2855 #define STRSIZE(literal) (sizeof (literal) - 1)
2856
2857 /* Whether chars in [b, e) begin with the literal string provided as
2858    first argument and are followed by whitespace or terminating \0.
2859    The comparison is case-insensitive.  */
2860 #define STARTS(literal, b, e)                           \
2861   ((e) - (b) >= STRSIZE (literal)                       \
2862    && 0 == strncasecmp (b, literal, STRSIZE (literal))  \
2863    && ((e) - (b) == STRSIZE (literal)                   \
2864        || ISSPACE (b[STRSIZE (literal)])))
2865
2866 static bool
2867 known_authentication_scheme_p (const char *hdrbeg, const char *hdrend)
2868 {
2869   return STARTS ("Basic", hdrbeg, hdrend)
2870 #ifdef ENABLE_DIGEST
2871     || STARTS ("Digest", hdrbeg, hdrend)
2872 #endif
2873 #ifdef ENABLE_NTLM
2874     || STARTS ("NTLM", hdrbeg, hdrend)
2875 #endif
2876     ;
2877 }
2878
2879 #undef STARTS
2880
2881 /* Create the HTTP authorization request header.  When the
2882    `WWW-Authenticate' response header is seen, according to the
2883    authorization scheme specified in that header (`Basic' and `Digest'
2884    are supported by the current implementation), produce an
2885    appropriate HTTP authorization request header.  */
2886 static char *
2887 create_authorization_line (const char *au, const char *user,
2888                            const char *passwd, const char *method,
2889                            const char *path, bool *finished)
2890 {
2891   /* We are called only with known schemes, so we can dispatch on the
2892      first letter. */
2893   switch (TOUPPER (*au))
2894     {
2895     case 'B':                   /* Basic */
2896       *finished = true;
2897       return basic_authentication_encode (user, passwd);
2898 #ifdef ENABLE_DIGEST
2899     case 'D':                   /* Digest */
2900       *finished = true;
2901       return digest_authentication_encode (au, user, passwd, method, path);
2902 #endif
2903 #ifdef ENABLE_NTLM
2904     case 'N':                   /* NTLM */
2905       if (!ntlm_input (&pconn.ntlm, au))
2906         {
2907           *finished = true;
2908           return NULL;
2909         }
2910       return ntlm_output (&pconn.ntlm, user, passwd, finished);
2911 #endif
2912     default:
2913       /* We shouldn't get here -- this function should be only called
2914          with values approved by known_authentication_scheme_p.  */
2915       abort ();
2916     }
2917 }
2918 \f
2919 static void
2920 load_cookies (void)
2921 {
2922   if (!wget_cookie_jar)
2923     wget_cookie_jar = cookie_jar_new ();
2924   if (opt.cookies_input && !cookies_loaded_p)
2925     {
2926       cookie_jar_load (wget_cookie_jar, opt.cookies_input);
2927       cookies_loaded_p = true;
2928     }
2929 }
2930
2931 void
2932 save_cookies (void)
2933 {
2934   if (wget_cookie_jar)
2935     cookie_jar_save (wget_cookie_jar, opt.cookies_output);
2936 }
2937
2938 void
2939 http_cleanup (void)
2940 {
2941   xfree_null (pconn.host);
2942   if (wget_cookie_jar)
2943     cookie_jar_delete (wget_cookie_jar);
2944 }
2945
2946
2947 #ifdef TESTING
2948
2949 const char *
2950 test_parse_content_disposition()
2951 {
2952   int i;
2953   struct {
2954     char *hdrval;    
2955     char *filename;
2956     bool result;
2957   } test_array[] = {
2958     { "filename=\"file.ext\"", "file.ext", true },
2959     { "attachment; filename=\"file.ext\"", "file.ext", true },
2960     { "attachment; filename=\"file.ext\"; dummy", "file.ext", true },
2961     { "attachment", NULL, false },    
2962   };
2963   
2964   for (i = 0; i < sizeof(test_array)/sizeof(test_array[0]); ++i) 
2965     {
2966       char *filename;
2967       bool res = parse_content_disposition (test_array[i].hdrval, &filename);
2968
2969       mu_assert ("test_parse_content_disposition: wrong result", 
2970                  res == test_array[i].result
2971                  && (res == false 
2972                      || 0 == strcmp (test_array[i].filename, filename)));
2973     }
2974
2975   return NULL;
2976 }
2977
2978 #endif /* TESTING */
2979
2980 /*
2981  * vim: et ts=2 sw=2
2982  */
2983