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