]> sjero.net Git - wget/blob - src/http.c
Don't download content just to ignore it.
[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       || (hs->restval > 0 && statcode == HTTP_STATUS_OK
2153           && contrange == 0 && hs->restval >= contlen)
2154      )
2155     {
2156       /* If `-c' is in use and the file has been fully downloaded (or
2157          the remote file has shrunk), Wget effectively requests bytes
2158          after the end of file and the server response with 416
2159          (or 200 with a <= Content-Length.  */
2160       logputs (LOG_VERBOSE, _("\
2161 \n    The file is already fully retrieved; nothing to do.\n\n"));
2162       /* In case the caller inspects. */
2163       hs->len = contlen;
2164       hs->res = 0;
2165       /* Mark as successfully retrieved. */
2166       *dt |= RETROKF;
2167       xfree_null (type);
2168       CLOSE_INVALIDATE (sock);        /* would be CLOSE_FINISH, but there
2169                                    might be more bytes in the body. */
2170       return RETRUNNEEDED;
2171     }
2172   if ((contrange != 0 && contrange != hs->restval)
2173       || (H_PARTIAL (statcode) && !contrange))
2174     {
2175       /* The Range request was somehow misunderstood by the server.
2176          Bail out.  */
2177       xfree_null (type);
2178       CLOSE_INVALIDATE (sock);
2179       return RANGEERR;
2180     }
2181   if (contlen == -1)
2182     hs->contlen = -1;
2183   else
2184     hs->contlen = contlen + contrange;
2185
2186   if (opt.verbose)
2187     {
2188       if (*dt & RETROKF)
2189         {
2190           /* No need to print this output if the body won't be
2191              downloaded at all, or if the original server response is
2192              printed.  */
2193           logputs (LOG_VERBOSE, _("Length: "));
2194           if (contlen != -1)
2195             {
2196               logputs (LOG_VERBOSE, number_to_static_string (contlen + contrange));
2197               if (contlen + contrange >= 1024)
2198                 logprintf (LOG_VERBOSE, " (%s)",
2199                            human_readable (contlen + contrange));
2200               if (contrange)
2201                 {
2202                   if (contlen >= 1024)
2203                     logprintf (LOG_VERBOSE, _(", %s (%s) remaining"),
2204                                number_to_static_string (contlen),
2205                                human_readable (contlen));
2206                   else
2207                     logprintf (LOG_VERBOSE, _(", %s remaining"),
2208                                number_to_static_string (contlen));
2209                 }
2210             }
2211           else
2212             logputs (LOG_VERBOSE,
2213                      opt.ignore_length ? _("ignored") : _("unspecified"));
2214           if (type)
2215             logprintf (LOG_VERBOSE, " [%s]\n", quotearg_style (escape_quoting_style, type));
2216           else
2217             logputs (LOG_VERBOSE, "\n");
2218         }
2219     }
2220   xfree_null (type);
2221   type = NULL;                        /* We don't need it any more.  */
2222
2223   /* Return if we have no intention of further downloading.  */
2224   if (!(*dt & RETROKF) || head_only)
2225     {
2226       /* In case the caller cares to look...  */
2227       hs->len = 0;
2228       hs->res = 0;
2229       xfree_null (type);
2230       if (head_only)
2231         /* Pre-1.10 Wget used CLOSE_INVALIDATE here.  Now we trust the
2232            servers not to send body in response to a HEAD request, and
2233            those that do will likely be caught by test_socket_open.
2234            If not, they can be worked around using
2235            `--no-http-keep-alive'.  */
2236         CLOSE_FINISH (sock);
2237       else if (keep_alive && skip_short_body (sock, contlen))
2238         /* Successfully skipped the body; also keep using the socket. */
2239         CLOSE_FINISH (sock);
2240       else
2241         CLOSE_INVALIDATE (sock);
2242       return RETRFINISHED;
2243     }
2244
2245   /* Open the local file.  */
2246   if (!output_stream)
2247     {
2248       mkalldirs (hs->local_file);
2249       if (opt.backups)
2250         rotate_backups (hs->local_file);
2251       if (hs->restval)
2252         fp = fopen (hs->local_file, "ab");
2253       else if (ALLOW_CLOBBER)
2254         fp = fopen (hs->local_file, "wb");
2255       else
2256         {
2257           fp = fopen_excl (hs->local_file, true);
2258           if (!fp && errno == EEXIST)
2259             {
2260               /* We cannot just invent a new name and use it (which is
2261                  what functions like unique_create typically do)
2262                  because we told the user we'd use this name.
2263                  Instead, return and retry the download.  */
2264               logprintf (LOG_NOTQUIET,
2265                          _("%s has sprung into existence.\n"),
2266                          hs->local_file);
2267               CLOSE_INVALIDATE (sock);
2268               return FOPEN_EXCL_ERR;
2269             }
2270         }
2271       if (!fp)
2272         {
2273           logprintf (LOG_NOTQUIET, "%s: %s\n", hs->local_file, strerror (errno));
2274           CLOSE_INVALIDATE (sock);
2275           return FOPENERR;
2276         }
2277     }
2278   else
2279     fp = output_stream;
2280
2281   /* Print fetch message, if opt.verbose.  */
2282   if (opt.verbose)
2283     {
2284       logprintf (LOG_NOTQUIET, _("Saving to: %s\n"), 
2285                  HYPHENP (hs->local_file) ? quote ("STDOUT") : quote (hs->local_file));
2286     }
2287     
2288   /* This confuses the timestamping code that checks for file size.
2289      #### The timestamping code should be smarter about file size.  */
2290   if (opt.save_headers && hs->restval == 0)
2291     fwrite (head, 1, strlen (head), fp);
2292
2293   /* Now we no longer need to store the response header. */
2294   xfree (head);
2295
2296   /* Download the request body.  */
2297   flags = 0;
2298   if (contlen != -1)
2299     /* If content-length is present, read that much; otherwise, read
2300        until EOF.  The HTTP spec doesn't require the server to
2301        actually close the connection when it's done sending data. */
2302     flags |= rb_read_exactly;
2303   if (hs->restval > 0 && contrange == 0)
2304     /* If the server ignored our range request, instruct fd_read_body
2305        to skip the first RESTVAL bytes of body.  */
2306     flags |= rb_skip_startpos;
2307   hs->len = hs->restval;
2308   hs->rd_size = 0;
2309   hs->res = fd_read_body (sock, fp, contlen != -1 ? contlen : 0,
2310                           hs->restval, &hs->rd_size, &hs->len, &hs->dltime,
2311                           flags);
2312
2313   if (hs->res >= 0)
2314     CLOSE_FINISH (sock);
2315   else
2316     {
2317       if (hs->res < 0)
2318         hs->rderrmsg = xstrdup (fd_errstr (sock));
2319       CLOSE_INVALIDATE (sock);
2320     }
2321
2322   if (!output_stream)
2323     fclose (fp);
2324   if (hs->res == -2)
2325     return FWRITEERR;
2326   return RETRFINISHED;
2327 }
2328
2329 /* The genuine HTTP loop!  This is the part where the retrieval is
2330    retried, and retried, and retried, and...  */
2331 uerr_t
2332 http_loop (struct url *u, char **newloc, char **local_file, const char *referer,
2333            int *dt, struct url *proxy)
2334 {
2335   int count;
2336   bool got_head = false;         /* used for time-stamping and filename detection */
2337   bool time_came_from_head = false;
2338   bool got_name = false;
2339   char *tms;
2340   const char *tmrate;
2341   uerr_t err, ret = TRYLIMEXC;
2342   time_t tmr = -1;               /* remote time-stamp */
2343   struct http_stat hstat;        /* HTTP status */
2344   struct_stat st;  
2345   bool send_head_first = true;
2346
2347   /* Assert that no value for *LOCAL_FILE was passed. */
2348   assert (local_file == NULL || *local_file == NULL);
2349   
2350   /* Set LOCAL_FILE parameter. */
2351   if (local_file && opt.output_document)
2352     *local_file = HYPHENP (opt.output_document) ? NULL : xstrdup (opt.output_document);
2353   
2354   /* Reset NEWLOC parameter. */
2355   *newloc = NULL;
2356
2357   /* This used to be done in main(), but it's a better idea to do it
2358      here so that we don't go through the hoops if we're just using
2359      FTP or whatever. */
2360   if (opt.cookies)
2361     load_cookies();
2362
2363   /* Warn on (likely bogus) wildcard usage in HTTP. */
2364   if (opt.ftp_glob && has_wildcards_p (u->path))
2365     logputs (LOG_VERBOSE, _("Warning: wildcards not supported in HTTP.\n"));
2366
2367   /* Setup hstat struct. */
2368   xzero (hstat);
2369   hstat.referer = referer;
2370
2371   if (opt.output_document)
2372     {
2373       hstat.local_file = xstrdup (opt.output_document);
2374       got_name = true;
2375     }
2376   else if (!opt.content_disposition)
2377     {
2378       hstat.local_file = url_file_name (u);
2379       got_name = true;
2380     }
2381
2382   /* TODO: Ick! This code is now in both gethttp and http_loop, and is
2383    * screaming for some refactoring. */
2384   if (got_name && file_exists_p (hstat.local_file) && opt.noclobber && !opt.output_document)
2385     {
2386       /* If opt.noclobber is turned on and file already exists, do not
2387          retrieve the file. But if the output_document was given, then this
2388          test was already done and the file didn't exist. Hence the !opt.output_document */
2389       logprintf (LOG_VERBOSE, _("\
2390 File %s already there; not retrieving.\n\n"), 
2391                  quote (hstat.local_file));
2392       /* If the file is there, we suppose it's retrieved OK.  */
2393       *dt |= RETROKF;
2394
2395       /* #### Bogusness alert.  */
2396       /* If its suffix is "html" or "htm" or similar, assume text/html.  */
2397       if (has_html_suffix_p (hstat.local_file))
2398         *dt |= TEXTHTML;
2399
2400       ret = RETROK;
2401       goto exit;
2402     }
2403
2404   /* Reset the counter. */
2405   count = 0;
2406   
2407   /* Reset the document type. */
2408   *dt = 0;
2409   
2410   /* Skip preliminary HEAD request if we're not in spider mode AND
2411    * if -O was given or HTTP Content-Disposition support is disabled. */
2412   if (!opt.spider
2413       && (got_name || !opt.content_disposition))
2414     send_head_first = false;
2415
2416   /* Send preliminary HEAD request if -N is given and we have an existing 
2417    * destination file. */
2418   if (opt.timestamping 
2419       && !opt.content_disposition
2420       && file_exists_p (url_file_name (u)))
2421     send_head_first = true;
2422   
2423   /* THE loop */
2424   do
2425     {
2426       /* Increment the pass counter.  */
2427       ++count;
2428       sleep_between_retrievals (count);
2429       
2430       /* Get the current time string.  */
2431       tms = datetime_str (time (NULL));
2432       
2433       if (opt.spider && !got_head)
2434         logprintf (LOG_VERBOSE, _("\
2435 Spider mode enabled. Check if remote file exists.\n"));
2436
2437       /* Print fetch message, if opt.verbose.  */
2438       if (opt.verbose)
2439         {
2440           char *hurl = url_string (u, URL_AUTH_HIDE_PASSWD);
2441           
2442           if (count > 1) 
2443             {
2444               char tmp[256];
2445               sprintf (tmp, _("(try:%2d)"), count);
2446               logprintf (LOG_NOTQUIET, "--%s--  %s  %s\n",
2447                          tms, tmp, hurl);
2448             }
2449           else 
2450             {
2451               logprintf (LOG_NOTQUIET, "--%s--  %s\n",
2452                          tms, hurl);
2453             }
2454           
2455 #ifdef WINDOWS
2456           ws_changetitle (hurl);
2457 #endif
2458           xfree (hurl);
2459         }
2460
2461       /* Default document type is empty.  However, if spider mode is
2462          on or time-stamping is employed, HEAD_ONLY commands is
2463          encoded within *dt.  */
2464       if (send_head_first && !got_head) 
2465         *dt |= HEAD_ONLY;
2466       else
2467         *dt &= ~HEAD_ONLY;
2468
2469       /* Decide whether or not to restart.  */
2470       if (opt.always_rest
2471           && got_name
2472           && stat (hstat.local_file, &st) == 0
2473           && S_ISREG (st.st_mode))
2474         /* When -c is used, continue from on-disk size.  (Can't use
2475            hstat.len even if count>1 because we don't want a failed
2476            first attempt to clobber existing data.)  */
2477         hstat.restval = st.st_size;
2478       else if (count > 1)
2479         /* otherwise, continue where the previous try left off */
2480         hstat.restval = hstat.len;
2481       else
2482         hstat.restval = 0;
2483
2484       /* Decide whether to send the no-cache directive.  We send it in
2485          two cases:
2486            a) we're using a proxy, and we're past our first retrieval.
2487               Some proxies are notorious for caching incomplete data, so
2488               we require a fresh get.
2489            b) caching is explicitly inhibited. */
2490       if ((proxy && count > 1)        /* a */
2491           || !opt.allow_cache)        /* b */
2492         *dt |= SEND_NOCACHE;
2493       else
2494         *dt &= ~SEND_NOCACHE;
2495
2496       /* Try fetching the document, or at least its head.  */
2497       err = gethttp (u, &hstat, dt, proxy);
2498
2499       /* Time?  */
2500       tms = datetime_str (time (NULL));
2501       
2502       /* Get the new location (with or without the redirection).  */
2503       if (hstat.newloc)
2504         *newloc = xstrdup (hstat.newloc);
2505
2506       switch (err)
2507         {
2508         case HERR: case HEOF: case CONSOCKERR: case CONCLOSED:
2509         case CONERROR: case READERR: case WRITEFAILED:
2510         case RANGEERR: case FOPEN_EXCL_ERR:
2511           /* Non-fatal errors continue executing the loop, which will
2512              bring them to "while" statement at the end, to judge
2513              whether the number of tries was exceeded.  */
2514           printwhat (count, opt.ntry);
2515           continue;
2516         case FWRITEERR: case FOPENERR:
2517           /* Another fatal error.  */
2518           logputs (LOG_VERBOSE, "\n");
2519           logprintf (LOG_NOTQUIET, _("Cannot write to %s (%s).\n"),
2520                      quote (hstat.local_file), strerror (errno));
2521         case HOSTERR: case CONIMPOSSIBLE: case PROXERR: case AUTHFAILED: 
2522         case SSLINITFAILED: case CONTNOTSUPPORTED:
2523           /* Fatal errors just return from the function.  */
2524           ret = err;
2525           goto exit;
2526         case CONSSLERR:
2527           /* Another fatal error.  */
2528           logprintf (LOG_NOTQUIET, _("Unable to establish SSL connection.\n"));
2529           ret = err;
2530           goto exit;
2531         case NEWLOCATION:
2532           /* Return the new location to the caller.  */
2533           if (!*newloc)
2534             {
2535               logprintf (LOG_NOTQUIET,
2536                          _("ERROR: Redirection (%d) without location.\n"),
2537                          hstat.statcode);
2538               ret = WRONGCODE;
2539             }
2540           else 
2541             {
2542               ret = NEWLOCATION;
2543             }
2544           goto exit;
2545         case RETRUNNEEDED:
2546           /* The file was already fully retrieved. */
2547           ret = RETROK;
2548           goto exit;
2549         case RETRFINISHED:
2550           /* Deal with you later.  */
2551           break;
2552         default:
2553           /* All possibilities should have been exhausted.  */
2554           abort ();
2555         }
2556       
2557       if (!(*dt & RETROKF))
2558         {
2559           char *hurl = NULL;
2560           if (!opt.verbose)
2561             {
2562               /* #### Ugly ugly ugly! */
2563               hurl = url_string (u, URL_AUTH_HIDE_PASSWD);
2564               logprintf (LOG_NONVERBOSE, "%s:\n", hurl);
2565             }
2566
2567           /* Fall back to GET if HEAD fails with a 500 or 501 error code. */
2568           if (*dt & HEAD_ONLY
2569               && (hstat.statcode == 500 || hstat.statcode == 501))
2570             {
2571               got_head = true;
2572               continue;
2573             }
2574           /* Maybe we should always keep track of broken links, not just in
2575            * spider mode.  */
2576           else if (opt.spider)
2577             {
2578               /* #### Again: ugly ugly ugly! */
2579               if (!hurl) 
2580                 hurl = url_string (u, URL_AUTH_HIDE_PASSWD);
2581               nonexisting_url (hurl);
2582               logprintf (LOG_NOTQUIET, _("\
2583 Remote file does not exist -- broken link!!!\n"));
2584             }
2585           else
2586             {
2587               logprintf (LOG_NOTQUIET, _("%s ERROR %d: %s.\n"),
2588                          tms, hstat.statcode, 
2589                          quotearg_style (escape_quoting_style, hstat.error));
2590             }
2591           logputs (LOG_VERBOSE, "\n");
2592           ret = WRONGCODE;
2593           xfree_null (hurl);
2594           goto exit;
2595         }
2596
2597       /* Did we get the time-stamp? */
2598       if (!got_head)
2599         {
2600           got_head = true;    /* no more time-stamping */
2601
2602           if (opt.timestamping && !hstat.remote_time)
2603             {
2604               logputs (LOG_NOTQUIET, _("\
2605 Last-modified header missing -- time-stamps turned off.\n"));
2606             }
2607           else if (hstat.remote_time)
2608             {
2609               /* Convert the date-string into struct tm.  */
2610               tmr = http_atotm (hstat.remote_time);
2611               if (tmr == (time_t) (-1))
2612                 logputs (LOG_VERBOSE, _("\
2613 Last-modified header invalid -- time-stamp ignored.\n"));
2614               if (*dt & HEAD_ONLY)
2615                 time_came_from_head = true;
2616             }
2617       
2618           if (send_head_first)
2619             {
2620               /* The time-stamping section.  */
2621               if (opt.timestamping)
2622                 {
2623                   if (hstat.orig_file_name) /* Perform the following
2624                                                checks only if the file
2625                                                we're supposed to
2626                                                download already exists.  */
2627                     {
2628                       if (hstat.remote_time && 
2629                           tmr != (time_t) (-1))
2630                         {
2631                           /* Now time-stamping can be used validly.
2632                              Time-stamping means that if the sizes of
2633                              the local and remote file match, and local
2634                              file is newer than the remote file, it will
2635                              not be retrieved.  Otherwise, the normal
2636                              download procedure is resumed.  */
2637                           if (hstat.orig_file_tstamp >= tmr)
2638                             {
2639                               if (hstat.contlen == -1 
2640                                   || hstat.orig_file_size == hstat.contlen)
2641                                 {
2642                                   logprintf (LOG_VERBOSE, _("\
2643 Server file no newer than local file %s -- not retrieving.\n\n"),
2644                                              quote (hstat.orig_file_name));
2645                                   ret = RETROK;
2646                                   goto exit;
2647                                 }
2648                               else
2649                                 {
2650                                   logprintf (LOG_VERBOSE, _("\
2651 The sizes do not match (local %s) -- retrieving.\n"),
2652                                              number_to_static_string (hstat.orig_file_size));
2653                                 }
2654                             }
2655                           else
2656                             logputs (LOG_VERBOSE,
2657                                      _("Remote file is newer, retrieving.\n"));
2658
2659                           logputs (LOG_VERBOSE, "\n");
2660                         }
2661                     }
2662                   
2663                   /* free_hstat (&hstat); */
2664                   hstat.timestamp_checked = true;
2665                 }
2666               
2667               if (opt.spider)
2668                 {
2669                   bool finished = true;
2670                   if (opt.recursive)
2671                     {
2672                       if (*dt & TEXTHTML)
2673                         {
2674                           logputs (LOG_VERBOSE, _("\
2675 Remote file exists and could contain links to other resources -- retrieving.\n\n"));
2676                           finished = false;
2677                         }
2678                       else 
2679                         {
2680                           logprintf (LOG_VERBOSE, _("\
2681 Remote file exists but does not contain any link -- not retrieving.\n\n"));
2682                           ret = RETROK; /* RETRUNNEEDED is not for caller. */
2683                         }
2684                     }
2685                   else
2686                     {
2687                       if (*dt & TEXTHTML)
2688                         {
2689                           logprintf (LOG_VERBOSE, _("\
2690 Remote file exists and could contain further links,\n\
2691 but recursion is disabled -- not retrieving.\n\n"));
2692                         }
2693                       else 
2694                         {
2695                           logprintf (LOG_VERBOSE, _("\
2696 Remote file exists.\n\n"));
2697                         }
2698                       ret = RETROK; /* RETRUNNEEDED is not for caller. */
2699                     }
2700                   
2701                   if (finished)
2702                     {
2703                       logprintf (LOG_NONVERBOSE, 
2704                                  _("%s URL:%s %2d %s\n"), 
2705                                  tms, u->url, hstat.statcode,
2706                                  hstat.message ? quotearg_style (escape_quoting_style, hstat.message) : "");
2707                       goto exit;
2708                     }
2709                 }
2710
2711               got_name = true;
2712               *dt &= ~HEAD_ONLY;
2713               count = 0;          /* the retrieve count for HEAD is reset */
2714               continue;
2715             } /* send_head_first */
2716         } /* !got_head */
2717           
2718       if ((tmr != (time_t) (-1))
2719           && ((hstat.len == hstat.contlen) ||
2720               ((hstat.res == 0) && (hstat.contlen == -1))))
2721         {
2722           /* #### This code repeats in http.c and ftp.c.  Move it to a
2723              function!  */
2724           const char *fl = NULL;
2725           if (opt.output_document)
2726             {
2727               if (output_stream_regular)
2728                 fl = opt.output_document;
2729             }
2730           else
2731             fl = hstat.local_file;
2732           if (fl)
2733             {
2734               time_t newtmr = -1;
2735               /* Reparse time header, in case it's changed. */
2736               if (time_came_from_head
2737                   && hstat.remote_time && hstat.remote_time[0])
2738                 {
2739                   newtmr = http_atotm (hstat.remote_time);
2740                   if (newtmr != -1)
2741                     tmr = newtmr;
2742                 }
2743               touch (fl, tmr);
2744             }
2745         }
2746       /* End of time-stamping section. */
2747
2748       tmrate = retr_rate (hstat.rd_size, hstat.dltime);
2749       total_download_time += hstat.dltime;
2750
2751       if (hstat.len == hstat.contlen)
2752         {
2753           if (*dt & RETROKF)
2754             {
2755               logprintf (LOG_VERBOSE,
2756                          _("%s (%s) - %s saved [%s/%s]\n\n"),
2757                          tms, tmrate, quote (hstat.local_file),
2758                          number_to_static_string (hstat.len),
2759                          number_to_static_string (hstat.contlen));
2760               logprintf (LOG_NONVERBOSE,
2761                          "%s URL:%s [%s/%s] -> \"%s\" [%d]\n",
2762                          tms, u->url,
2763                          number_to_static_string (hstat.len),
2764                          number_to_static_string (hstat.contlen),
2765                          hstat.local_file, count);
2766             }
2767           ++opt.numurls;
2768           total_downloaded_bytes += hstat.len;
2769
2770           /* Remember that we downloaded the file for later ".orig" code. */
2771           if (*dt & ADDED_HTML_EXTENSION)
2772             downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, hstat.local_file);
2773           else
2774             downloaded_file(FILE_DOWNLOADED_NORMALLY, hstat.local_file);
2775
2776           ret = RETROK;
2777           goto exit;
2778         }
2779       else if (hstat.res == 0) /* No read error */
2780         {
2781           if (hstat.contlen == -1)  /* We don't know how much we were supposed
2782                                        to get, so assume we succeeded. */ 
2783             {
2784               if (*dt & RETROKF)
2785                 {
2786                   logprintf (LOG_VERBOSE,
2787                              _("%s (%s) - %s saved [%s]\n\n"),
2788                              tms, tmrate, quote (hstat.local_file),
2789                              number_to_static_string (hstat.len));
2790                   logprintf (LOG_NONVERBOSE,
2791                              "%s URL:%s [%s] -> \"%s\" [%d]\n",
2792                              tms, u->url, number_to_static_string (hstat.len),
2793                              hstat.local_file, count);
2794                 }
2795               ++opt.numurls;
2796               total_downloaded_bytes += hstat.len;
2797
2798               /* Remember that we downloaded the file for later ".orig" code. */
2799               if (*dt & ADDED_HTML_EXTENSION)
2800                 downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, hstat.local_file);
2801               else
2802                 downloaded_file(FILE_DOWNLOADED_NORMALLY, hstat.local_file);
2803               
2804               ret = RETROK;
2805               goto exit;
2806             }
2807           else if (hstat.len < hstat.contlen) /* meaning we lost the
2808                                                  connection too soon */
2809             {
2810               logprintf (LOG_VERBOSE,
2811                          _("%s (%s) - Connection closed at byte %s. "),
2812                          tms, tmrate, number_to_static_string (hstat.len));
2813               printwhat (count, opt.ntry);
2814               continue;
2815             }
2816           else if (hstat.len != hstat.restval)
2817             /* Getting here would mean reading more data than
2818                requested with content-length, which we never do.  */
2819             abort ();
2820           else
2821             {
2822               /* Getting here probably means that the content-length was
2823                * _less_ than the original, local size. We should probably
2824                * truncate or re-read, or something. FIXME */
2825               ret = RETROK;
2826               goto exit;
2827             }
2828         }
2829       else /* from now on hstat.res can only be -1 */
2830         {
2831           if (hstat.contlen == -1)
2832             {
2833               logprintf (LOG_VERBOSE,
2834                          _("%s (%s) - Read error at byte %s (%s)."),
2835                          tms, tmrate, number_to_static_string (hstat.len),
2836                          hstat.rderrmsg);
2837               printwhat (count, opt.ntry);
2838               continue;
2839             }
2840           else /* hstat.res == -1 and contlen is given */
2841             {
2842               logprintf (LOG_VERBOSE,
2843                          _("%s (%s) - Read error at byte %s/%s (%s). "),
2844                          tms, tmrate,
2845                          number_to_static_string (hstat.len),
2846                          number_to_static_string (hstat.contlen),
2847                          hstat.rderrmsg);
2848               printwhat (count, opt.ntry);
2849               continue;
2850             }
2851         }
2852       /* not reached */
2853     }
2854   while (!opt.ntry || (count < opt.ntry));
2855
2856 exit:
2857   if (ret == RETROK) 
2858     *local_file = xstrdup (hstat.local_file);
2859   free_hstat (&hstat);
2860   
2861   return ret;
2862 }
2863 \f
2864 /* Check whether the result of strptime() indicates success.
2865    strptime() returns the pointer to how far it got to in the string.
2866    The processing has been successful if the string is at `GMT' or
2867    `+X', or at the end of the string.
2868
2869    In extended regexp parlance, the function returns 1 if P matches
2870    "^ *(GMT|[+-][0-9]|$)", 0 otherwise.  P being NULL (which strptime
2871    can return) is considered a failure and 0 is returned.  */
2872 static bool
2873 check_end (const char *p)
2874 {
2875   if (!p)
2876     return false;
2877   while (c_isspace (*p))
2878     ++p;
2879   if (!*p
2880       || (p[0] == 'G' && p[1] == 'M' && p[2] == 'T')
2881       || ((p[0] == '+' || p[0] == '-') && c_isdigit (p[1])))
2882     return true;
2883   else
2884     return false;
2885 }
2886
2887 /* Convert the textual specification of time in TIME_STRING to the
2888    number of seconds since the Epoch.
2889
2890    TIME_STRING can be in any of the three formats RFC2616 allows the
2891    HTTP servers to emit -- RFC1123-date, RFC850-date or asctime-date,
2892    as well as the time format used in the Set-Cookie header.
2893    Timezones are ignored, and should be GMT.
2894
2895    Return the computed time_t representation, or -1 if the conversion
2896    fails.
2897
2898    This function uses strptime with various string formats for parsing
2899    TIME_STRING.  This results in a parser that is not as lenient in
2900    interpreting TIME_STRING as I would like it to be.  Being based on
2901    strptime, it always allows shortened months, one-digit days, etc.,
2902    but due to the multitude of formats in which time can be
2903    represented, an ideal HTTP time parser would be even more
2904    forgiving.  It should completely ignore things like week days and
2905    concentrate only on the various forms of representing years,
2906    months, days, hours, minutes, and seconds.  For example, it would
2907    be nice if it accepted ISO 8601 out of the box.
2908
2909    I've investigated free and PD code for this purpose, but none was
2910    usable.  getdate was big and unwieldy, and had potential copyright
2911    issues, or so I was informed.  Dr. Marcus Hennecke's atotm(),
2912    distributed with phttpd, is excellent, but we cannot use it because
2913    it is not assigned to the FSF.  So I stuck it with strptime.  */
2914
2915 time_t
2916 http_atotm (const char *time_string)
2917 {
2918   /* NOTE: Solaris strptime man page claims that %n and %t match white
2919      space, but that's not universally available.  Instead, we simply
2920      use ` ' to mean "skip all WS", which works under all strptime
2921      implementations I've tested.  */
2922
2923   static const char *time_formats[] = {
2924     "%a, %d %b %Y %T",          /* rfc1123: Thu, 29 Jan 1998 22:12:57 */
2925     "%A, %d-%b-%y %T",          /* rfc850:  Thursday, 29-Jan-98 22:12:57 */
2926     "%a %b %d %T %Y",           /* asctime: Thu Jan 29 22:12:57 1998 */
2927     "%a, %d-%b-%Y %T"           /* cookies: Thu, 29-Jan-1998 22:12:57
2928                                    (used in Set-Cookie, defined in the
2929                                    Netscape cookie specification.) */
2930   };
2931   const char *oldlocale;
2932   size_t i;
2933   time_t ret = (time_t) -1;
2934
2935   /* Solaris strptime fails to recognize English month names in
2936      non-English locales, which we work around by temporarily setting
2937      locale to C before invoking strptime.  */
2938   oldlocale = setlocale (LC_TIME, NULL);
2939   setlocale (LC_TIME, "C");
2940
2941   for (i = 0; i < countof (time_formats); i++)
2942     {
2943       struct tm t;
2944
2945       /* Some versions of strptime use the existing contents of struct
2946          tm to recalculate the date according to format.  Zero it out
2947          to prevent stack garbage from influencing strptime.  */
2948       xzero (t);
2949
2950       if (check_end (strptime (time_string, time_formats[i], &t)))
2951         {
2952           ret = timegm (&t);
2953           break;
2954         }
2955     }
2956
2957   /* Restore the previous locale. */
2958   setlocale (LC_TIME, oldlocale);
2959
2960   return ret;
2961 }
2962 \f
2963 /* Authorization support: We support three authorization schemes:
2964
2965    * `Basic' scheme, consisting of base64-ing USER:PASSWORD string;
2966
2967    * `Digest' scheme, added by Junio Hamano <junio@twinsun.com>,
2968    consisting of answering to the server's challenge with the proper
2969    MD5 digests.
2970
2971    * `NTLM' ("NT Lan Manager") scheme, based on code written by Daniel
2972    Stenberg for libcurl.  Like digest, NTLM is based on a
2973    challenge-response mechanism, but unlike digest, it is non-standard
2974    (authenticates TCP connections rather than requests), undocumented
2975    and Microsoft-specific.  */
2976
2977 /* Create the authentication header contents for the `Basic' scheme.
2978    This is done by encoding the string "USER:PASS" to base64 and
2979    prepending the string "Basic " in front of it.  */
2980
2981 static char *
2982 basic_authentication_encode (const char *user, const char *passwd)
2983 {
2984   char *t1, *t2;
2985   int len1 = strlen (user) + 1 + strlen (passwd);
2986
2987   t1 = (char *)alloca (len1 + 1);
2988   sprintf (t1, "%s:%s", user, passwd);
2989
2990   t2 = (char *)alloca (BASE64_LENGTH (len1) + 1);
2991   base64_encode (t1, len1, t2);
2992
2993   return concat_strings ("Basic ", t2, (char *) 0);
2994 }
2995
2996 #define SKIP_WS(x) do {                         \
2997   while (c_isspace (*(x)))                        \
2998     ++(x);                                      \
2999 } while (0)
3000
3001 #ifdef ENABLE_DIGEST
3002 /* Dump the hexadecimal representation of HASH to BUF.  HASH should be
3003    an array of 16 bytes containing the hash keys, and BUF should be a
3004    buffer of 33 writable characters (32 for hex digits plus one for
3005    zero termination).  */
3006 static void
3007 dump_hash (char *buf, const unsigned char *hash)
3008 {
3009   int i;
3010
3011   for (i = 0; i < MD5_HASHLEN; i++, hash++)
3012     {
3013       *buf++ = XNUM_TO_digit (*hash >> 4);
3014       *buf++ = XNUM_TO_digit (*hash & 0xf);
3015     }
3016   *buf = '\0';
3017 }
3018
3019 /* Take the line apart to find the challenge, and compose a digest
3020    authorization header.  See RFC2069 section 2.1.2.  */
3021 static char *
3022 digest_authentication_encode (const char *au, const char *user,
3023                               const char *passwd, const char *method,
3024                               const char *path)
3025 {
3026   static char *realm, *opaque, *nonce;
3027   static struct {
3028     const char *name;
3029     char **variable;
3030   } options[] = {
3031     { "realm", &realm },
3032     { "opaque", &opaque },
3033     { "nonce", &nonce }
3034   };
3035   char *res;
3036   param_token name, value;
3037
3038   realm = opaque = nonce = NULL;
3039
3040   au += 6;                      /* skip over `Digest' */
3041   while (extract_param (&au, &name, &value, ','))
3042     {
3043       size_t i;
3044       size_t namelen = name.e - name.b;
3045       for (i = 0; i < countof (options); i++)
3046         if (namelen == strlen (options[i].name)
3047             && 0 == strncmp (name.b, options[i].name,
3048                              namelen))
3049           {
3050             *options[i].variable = strdupdelim (value.b, value.e);
3051             break;
3052           }
3053     }
3054   if (!realm || !nonce || !user || !passwd || !path || !method)
3055     {
3056       xfree_null (realm);
3057       xfree_null (opaque);
3058       xfree_null (nonce);
3059       return NULL;
3060     }
3061
3062   /* Calculate the digest value.  */
3063   {
3064     ALLOCA_MD5_CONTEXT (ctx);
3065     unsigned char hash[MD5_HASHLEN];
3066     char a1buf[MD5_HASHLEN * 2 + 1], a2buf[MD5_HASHLEN * 2 + 1];
3067     char response_digest[MD5_HASHLEN * 2 + 1];
3068
3069     /* A1BUF = H(user ":" realm ":" password) */
3070     gen_md5_init (ctx);
3071     gen_md5_update ((unsigned char *)user, strlen (user), ctx);
3072     gen_md5_update ((unsigned char *)":", 1, ctx);
3073     gen_md5_update ((unsigned char *)realm, strlen (realm), ctx);
3074     gen_md5_update ((unsigned char *)":", 1, ctx);
3075     gen_md5_update ((unsigned char *)passwd, strlen (passwd), ctx);
3076     gen_md5_finish (ctx, hash);
3077     dump_hash (a1buf, hash);
3078
3079     /* A2BUF = H(method ":" path) */
3080     gen_md5_init (ctx);
3081     gen_md5_update ((unsigned char *)method, strlen (method), ctx);
3082     gen_md5_update ((unsigned char *)":", 1, ctx);
3083     gen_md5_update ((unsigned char *)path, strlen (path), ctx);
3084     gen_md5_finish (ctx, hash);
3085     dump_hash (a2buf, hash);
3086
3087     /* RESPONSE_DIGEST = H(A1BUF ":" nonce ":" A2BUF) */
3088     gen_md5_init (ctx);
3089     gen_md5_update ((unsigned char *)a1buf, MD5_HASHLEN * 2, ctx);
3090     gen_md5_update ((unsigned char *)":", 1, ctx);
3091     gen_md5_update ((unsigned char *)nonce, strlen (nonce), ctx);
3092     gen_md5_update ((unsigned char *)":", 1, ctx);
3093     gen_md5_update ((unsigned char *)a2buf, MD5_HASHLEN * 2, ctx);
3094     gen_md5_finish (ctx, hash);
3095     dump_hash (response_digest, hash);
3096
3097     res = xmalloc (strlen (user)
3098                    + strlen (user)
3099                    + strlen (realm)
3100                    + strlen (nonce)
3101                    + strlen (path)
3102                    + 2 * MD5_HASHLEN /*strlen (response_digest)*/
3103                    + (opaque ? strlen (opaque) : 0)
3104                    + 128);
3105     sprintf (res, "Digest \
3106 username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", response=\"%s\"",
3107              user, realm, nonce, path, response_digest);
3108     if (opaque)
3109       {
3110         char *p = res + strlen (res);
3111         strcat (p, ", opaque=\"");
3112         strcat (p, opaque);
3113         strcat (p, "\"");
3114       }
3115   }
3116   return res;
3117 }
3118 #endif /* ENABLE_DIGEST */
3119
3120 /* Computing the size of a string literal must take into account that
3121    value returned by sizeof includes the terminating \0.  */
3122 #define STRSIZE(literal) (sizeof (literal) - 1)
3123
3124 /* Whether chars in [b, e) begin with the literal string provided as
3125    first argument and are followed by whitespace or terminating \0.
3126    The comparison is case-insensitive.  */
3127 #define STARTS(literal, b, e)                           \
3128   ((e > b) \
3129    && ((size_t) ((e) - (b))) >= STRSIZE (literal)   \
3130    && 0 == strncasecmp (b, literal, STRSIZE (literal))  \
3131    && ((size_t) ((e) - (b)) == STRSIZE (literal)          \
3132        || c_isspace (b[STRSIZE (literal)])))
3133
3134 static bool
3135 known_authentication_scheme_p (const char *hdrbeg, const char *hdrend)
3136 {
3137   return STARTS ("Basic", hdrbeg, hdrend)
3138 #ifdef ENABLE_DIGEST
3139     || STARTS ("Digest", hdrbeg, hdrend)
3140 #endif
3141 #ifdef ENABLE_NTLM
3142     || STARTS ("NTLM", hdrbeg, hdrend)
3143 #endif
3144     ;
3145 }
3146
3147 #undef STARTS
3148
3149 /* Create the HTTP authorization request header.  When the
3150    `WWW-Authenticate' response header is seen, according to the
3151    authorization scheme specified in that header (`Basic' and `Digest'
3152    are supported by the current implementation), produce an
3153    appropriate HTTP authorization request header.  */
3154 static char *
3155 create_authorization_line (const char *au, const char *user,
3156                            const char *passwd, const char *method,
3157                            const char *path, bool *finished)
3158 {
3159   /* We are called only with known schemes, so we can dispatch on the
3160      first letter. */
3161   switch (c_toupper (*au))
3162     {
3163     case 'B':                   /* Basic */
3164       *finished = true;
3165       return basic_authentication_encode (user, passwd);
3166 #ifdef ENABLE_DIGEST
3167     case 'D':                   /* Digest */
3168       *finished = true;
3169       return digest_authentication_encode (au, user, passwd, method, path);
3170 #endif
3171 #ifdef ENABLE_NTLM
3172     case 'N':                   /* NTLM */
3173       if (!ntlm_input (&pconn.ntlm, au))
3174         {
3175           *finished = true;
3176           return NULL;
3177         }
3178       return ntlm_output (&pconn.ntlm, user, passwd, finished);
3179 #endif
3180     default:
3181       /* We shouldn't get here -- this function should be only called
3182          with values approved by known_authentication_scheme_p.  */
3183       abort ();
3184     }
3185 }
3186 \f
3187 static void
3188 load_cookies (void)
3189 {
3190   if (!wget_cookie_jar)
3191     wget_cookie_jar = cookie_jar_new ();
3192   if (opt.cookies_input && !cookies_loaded_p)
3193     {
3194       cookie_jar_load (wget_cookie_jar, opt.cookies_input);
3195       cookies_loaded_p = true;
3196     }
3197 }
3198
3199 void
3200 save_cookies (void)
3201 {
3202   if (wget_cookie_jar)
3203     cookie_jar_save (wget_cookie_jar, opt.cookies_output);
3204 }
3205
3206 void
3207 http_cleanup (void)
3208 {
3209   xfree_null (pconn.host);
3210   if (wget_cookie_jar)
3211     cookie_jar_delete (wget_cookie_jar);
3212 }
3213
3214 void
3215 ensure_extension (struct http_stat *hs, const char *ext, int *dt)
3216 {
3217   char *last_period_in_local_filename = strrchr (hs->local_file, '.');
3218   char shortext[8];
3219   int len = strlen (ext);
3220   if (len == 5)
3221     {
3222       strncpy (shortext, ext, len - 1);
3223       shortext[len - 2] = '\0';
3224     }
3225
3226   if (last_period_in_local_filename == NULL
3227       || !(0 == strcasecmp (last_period_in_local_filename, shortext)
3228            || 0 == strcasecmp (last_period_in_local_filename, ext)))
3229     {
3230       int local_filename_len = strlen (hs->local_file);
3231       /* Resize the local file, allowing for ".html" preceded by
3232          optional ".NUMBER".  */
3233       hs->local_file = xrealloc (hs->local_file,
3234                                  local_filename_len + 24 + len);
3235       strcpy (hs->local_file + local_filename_len, ext);
3236       /* If clobbering is not allowed and the file, as named,
3237          exists, tack on ".NUMBER.html" instead. */
3238       if (!ALLOW_CLOBBER && file_exists_p (hs->local_file))
3239         {
3240           int ext_num = 1;
3241           do
3242             sprintf (hs->local_file + local_filename_len,
3243                      ".%d%s", ext_num++, ext);
3244           while (file_exists_p (hs->local_file));
3245         }
3246       *dt |= ADDED_HTML_EXTENSION;
3247     }
3248 }
3249
3250
3251 #ifdef TESTING
3252
3253 const char *
3254 test_parse_content_disposition()
3255 {
3256   int i;
3257   struct {
3258     char *hdrval;    
3259     char *opt_dir_prefix;
3260     char *filename;
3261     bool result;
3262   } test_array[] = {
3263     { "filename=\"file.ext\"", NULL, "file.ext", true },
3264     { "filename=\"file.ext\"", "somedir", "somedir/file.ext", true },
3265     { "attachment; filename=\"file.ext\"", NULL, "file.ext", true },
3266     { "attachment; filename=\"file.ext\"", "somedir", "somedir/file.ext", true },
3267     { "attachment; filename=\"file.ext\"; dummy", NULL, "file.ext", true },
3268     { "attachment; filename=\"file.ext\"; dummy", "somedir", "somedir/file.ext", true },
3269     { "attachment", NULL, NULL, false },
3270     { "attachment", "somedir", NULL, false },
3271   };
3272   
3273   for (i = 0; i < sizeof(test_array)/sizeof(test_array[0]); ++i) 
3274     {
3275       char *filename;
3276       bool res;
3277
3278       opt.dir_prefix = test_array[i].opt_dir_prefix;
3279       res = parse_content_disposition (test_array[i].hdrval, &filename);
3280
3281       mu_assert ("test_parse_content_disposition: wrong result", 
3282                  res == test_array[i].result
3283                  && (res == false 
3284                      || 0 == strcmp (test_array[i].filename, filename)));
3285     }
3286
3287   return NULL;
3288 }
3289
3290 #endif /* TESTING */
3291
3292 /*
3293  * vim: et sts=2 sw=2 cino+={s
3294  */
3295