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