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