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