]> sjero.net Git - wget/blob - src/http.c
[svn] Fix for bug #20512: Don't abort for negative Content-Length values.
[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 got_name = false;
2309   char *tms;
2310   const char *tmrate;
2311   uerr_t err, ret = TRYLIMEXC;
2312   time_t tmr = -1;               /* remote time-stamp */
2313   wgint local_size = 0;          /* the size of the local file */
2314   struct http_stat hstat;        /* HTTP status */
2315   struct_stat st;  
2316
2317   /* Assert that no value for *LOCAL_FILE was passed. */
2318   assert (local_file == NULL || *local_file == NULL);
2319   
2320   /* Set LOCAL_FILE parameter. */
2321   if (local_file && opt.output_document)
2322     *local_file = HYPHENP (opt.output_document) ? NULL : xstrdup (opt.output_document);
2323   
2324   /* Reset NEWLOC parameter. */
2325   *newloc = NULL;
2326
2327   /* This used to be done in main(), but it's a better idea to do it
2328      here so that we don't go through the hoops if we're just using
2329      FTP or whatever. */
2330   if (opt.cookies)
2331     load_cookies();
2332
2333   /* Warn on (likely bogus) wildcard usage in HTTP. */
2334   if (opt.ftp_glob && has_wildcards_p (u->path))
2335     logputs (LOG_VERBOSE, _("Warning: wildcards not supported in HTTP.\n"));
2336
2337   /* Setup hstat struct. */
2338   xzero (hstat);
2339   hstat.referer = referer;
2340
2341   if (opt.output_document)
2342     {
2343       hstat.local_file = xstrdup (opt.output_document);
2344       got_name = true;
2345     }
2346
2347   /* Reset the counter. */
2348   count = 0;
2349   
2350   /* Reset the document type. */
2351   *dt = 0;
2352   
2353   /* THE loop */
2354   do
2355     {
2356       /* Increment the pass counter.  */
2357       ++count;
2358       sleep_between_retrievals (count);
2359       
2360       /* Get the current time string.  */
2361       tms = time_str (time (NULL));
2362       
2363       if (opt.spider && !got_head)
2364         logprintf (LOG_VERBOSE, _("\
2365 Spider mode enabled. Check if remote file exists.\n"));
2366
2367       /* Print fetch message, if opt.verbose.  */
2368       if (opt.verbose)
2369         {
2370           char *hurl = url_string (u, URL_AUTH_HIDE_PASSWD);
2371           
2372           if (count > 1) 
2373             {
2374               char tmp[256];
2375               sprintf (tmp, _("(try:%2d)"), count);
2376               logprintf (LOG_NOTQUIET, "--%s--  %s  %s\n",
2377                          tms, tmp, hurl);
2378             }
2379           else 
2380             {
2381               logprintf (LOG_NOTQUIET, "--%s--  %s\n",
2382                          tms, hurl);
2383             }
2384           
2385 #ifdef WINDOWS
2386           ws_changetitle (hurl);
2387 #endif
2388           xfree (hurl);
2389         }
2390
2391       /* Default document type is empty.  However, if spider mode is
2392          on or time-stamping is employed, HEAD_ONLY commands is
2393          encoded within *dt.  */
2394       if (((opt.spider || opt.timestamping) && !got_head)
2395           || (opt.always_rest && !got_name))
2396         *dt |= HEAD_ONLY;
2397       else
2398         *dt &= ~HEAD_ONLY;
2399
2400       /* Decide whether or not to restart.  */
2401       if (opt.always_rest
2402           && got_name
2403           && stat (hstat.local_file, &st) == 0
2404           && S_ISREG (st.st_mode))
2405         /* When -c is used, continue from on-disk size.  (Can't use
2406            hstat.len even if count>1 because we don't want a failed
2407            first attempt to clobber existing data.)  */
2408         hstat.restval = st.st_size;
2409       else if (count > 1)
2410         /* otherwise, continue where the previous try left off */
2411         hstat.restval = hstat.len;
2412       else
2413         hstat.restval = 0;
2414
2415       /* Decide whether to send the no-cache directive.  We send it in
2416          two cases:
2417            a) we're using a proxy, and we're past our first retrieval.
2418               Some proxies are notorious for caching incomplete data, so
2419               we require a fresh get.
2420            b) caching is explicitly inhibited. */
2421       if ((proxy && count > 1)        /* a */
2422           || !opt.allow_cache)        /* b */
2423         *dt |= SEND_NOCACHE;
2424       else
2425         *dt &= ~SEND_NOCACHE;
2426
2427       /* Try fetching the document, or at least its head.  */
2428       err = gethttp (u, &hstat, dt, proxy);
2429
2430       /* Time?  */
2431       tms = time_str (time (NULL));
2432       
2433       /* Get the new location (with or without the redirection).  */
2434       if (hstat.newloc)
2435         *newloc = xstrdup (hstat.newloc);
2436       
2437       switch (err)
2438         {
2439         case HERR: case HEOF: case CONSOCKERR: case CONCLOSED:
2440         case CONERROR: case READERR: case WRITEFAILED:
2441         case RANGEERR: case FOPEN_EXCL_ERR:
2442           /* Non-fatal errors continue executing the loop, which will
2443              bring them to "while" statement at the end, to judge
2444              whether the number of tries was exceeded.  */
2445           printwhat (count, opt.ntry);
2446           continue;
2447         case FWRITEERR: case FOPENERR:
2448           /* Another fatal error.  */
2449           logputs (LOG_VERBOSE, "\n");
2450           logprintf (LOG_NOTQUIET, _("Cannot write to `%s' (%s).\n"),
2451                      hstat.local_file, strerror (errno));
2452         case HOSTERR: case CONIMPOSSIBLE: case PROXERR: case AUTHFAILED: 
2453         case SSLINITFAILED: case CONTNOTSUPPORTED:
2454           /* Fatal errors just return from the function.  */
2455           ret = err;
2456           goto exit;
2457         case CONSSLERR:
2458           /* Another fatal error.  */
2459           logprintf (LOG_NOTQUIET, _("Unable to establish SSL connection.\n"));
2460           ret = err;
2461           goto exit;
2462         case NEWLOCATION:
2463           /* Return the new location to the caller.  */
2464           if (!*newloc)
2465             {
2466               logprintf (LOG_NOTQUIET,
2467                          _("ERROR: Redirection (%d) without location.\n"),
2468                          hstat.statcode);
2469               ret = WRONGCODE;
2470             }
2471           else 
2472             {
2473               ret = NEWLOCATION;
2474             }
2475           goto exit;
2476         case RETRUNNEEDED:
2477           /* The file was already fully retrieved. */
2478           ret = RETROK;
2479           goto exit;
2480         case RETRFINISHED:
2481           /* Deal with you later.  */
2482           break;
2483         default:
2484           /* All possibilities should have been exhausted.  */
2485           abort ();
2486         }
2487      
2488       if (!(*dt & RETROKF))
2489         {
2490           char *hurl = NULL;
2491           if (!opt.verbose)
2492             {
2493               /* #### Ugly ugly ugly! */
2494               hurl = url_string (u, URL_AUTH_HIDE_PASSWD);
2495               logprintf (LOG_NONVERBOSE, "%s:\n", hurl);
2496             }
2497           /* Maybe we should always keep track of broken links, not just in
2498            * spider mode.  */
2499           if (opt.spider)
2500             {
2501               /* #### Again: ugly ugly ugly! */
2502               if (!hurl) 
2503                 hurl = url_string (u, URL_AUTH_HIDE_PASSWD);
2504               nonexisting_url (hurl);
2505               logprintf (LOG_NOTQUIET, _("\
2506 Remote file does not exist -- broken link!!!\n"));
2507             }
2508           else
2509             {
2510               logprintf (LOG_NOTQUIET, _("%s ERROR %d: %s.\n"),
2511                          tms, hstat.statcode, escnonprint (hstat.error));
2512             }
2513           logputs (LOG_VERBOSE, "\n");
2514           ret = WRONGCODE;
2515           xfree_null (hurl);
2516           goto exit;
2517         }
2518
2519       /* Did we get the time-stamp? */
2520       if (!got_head)
2521         {
2522           bool restart_loop = false;
2523
2524           if (opt.timestamping && !hstat.remote_time)
2525             {
2526               logputs (LOG_NOTQUIET, _("\
2527 Last-modified header missing -- time-stamps turned off.\n"));
2528             }
2529           else if (hstat.remote_time)
2530             {
2531               /* Convert the date-string into struct tm.  */
2532               tmr = http_atotm (hstat.remote_time);
2533               if (tmr == (time_t) (-1))
2534                 logputs (LOG_VERBOSE, _("\
2535 Last-modified header invalid -- time-stamp ignored.\n"));
2536             }
2537       
2538           /* The time-stamping section.  */
2539           if (opt.timestamping)
2540             {
2541               if (hstat.orig_file_name) /* Perform the following checks only 
2542                                            if the file we're supposed to 
2543                                            download already exists. */
2544                 {
2545                   if (hstat.remote_time && 
2546                       tmr != (time_t) (-1))
2547                     {
2548                       /* Now time-stamping can be used validly.  Time-stamping
2549                          means that if the sizes of the local and remote file
2550                          match, and local file is newer than the remote file,
2551                          it will not be retrieved.  Otherwise, the normal
2552                          download procedure is resumed.  */
2553                       if (hstat.orig_file_tstamp >= tmr)
2554                         {
2555                           if (hstat.contlen == -1 
2556                               || hstat.orig_file_size == hstat.contlen)
2557                             {
2558                               logprintf (LOG_VERBOSE, _("\
2559 Server file no newer than local file `%s' -- not retrieving.\n\n"),
2560                                          hstat.orig_file_name);
2561                               ret = RETROK;
2562                               goto exit;
2563                             }
2564                           else
2565                             {
2566                               logprintf (LOG_VERBOSE, _("\
2567 The sizes do not match (local %s) -- retrieving.\n"),
2568                                          number_to_static_string (local_size));
2569                             }
2570                         }
2571                       else
2572                         logputs (LOG_VERBOSE,
2573                                  _("Remote file is newer, retrieving.\n"));
2574
2575                       logputs (LOG_VERBOSE, "\n");
2576                     }
2577                 }
2578               
2579               /* free_hstat (&hstat); */
2580               hstat.timestamp_checked = true;
2581               restart_loop = true;
2582             }
2583           
2584           if (opt.always_rest)
2585             {
2586               got_name = true;
2587               restart_loop = true;
2588             }
2589           
2590           if (opt.spider)
2591             {
2592               if (opt.recursive)
2593                 {
2594                   if (*dt & TEXTHTML)
2595                     {
2596                       logputs (LOG_VERBOSE, _("\
2597 Remote file exists and could contain links to other resources -- retrieving.\n\n"));
2598                       restart_loop = true;
2599                     }
2600                   else 
2601                     {
2602                       logprintf (LOG_VERBOSE, _("\
2603 Remote file exists but does not contain any link -- not retrieving.\n\n"));
2604                       ret = RETRUNNEEDED;
2605                       goto exit;
2606                     }
2607                 }
2608               else
2609                 {
2610                   logprintf (LOG_VERBOSE, _("\
2611 Remote file exists but recursion is disabled -- not retrieving.\n\n"));
2612                   ret = RETRUNNEEDED;
2613                   goto exit;
2614                 }
2615             }
2616
2617           got_head = true;    /* no more time-stamping */
2618           *dt &= ~HEAD_ONLY;
2619           count = 0;          /* the retrieve count for HEAD is reset */
2620
2621           if (restart_loop) 
2622             continue;
2623         }
2624           
2625       if ((tmr != (time_t) (-1))
2626           && ((hstat.len == hstat.contlen) ||
2627               ((hstat.res == 0) && (hstat.contlen == -1))))
2628         {
2629           /* #### This code repeats in http.c and ftp.c.  Move it to a
2630              function!  */
2631           const char *fl = NULL;
2632           if (opt.output_document)
2633             {
2634               if (output_stream_regular)
2635                 fl = opt.output_document;
2636             }
2637           else
2638             fl = hstat.local_file;
2639           if (fl)
2640             touch (fl, tmr);
2641         }
2642       /* End of time-stamping section. */
2643
2644       tmrate = retr_rate (hstat.rd_size, hstat.dltime);
2645       total_download_time += hstat.dltime;
2646
2647       if (hstat.len == hstat.contlen)
2648         {
2649           if (*dt & RETROKF)
2650             {
2651               logprintf (LOG_VERBOSE,
2652                          _("%s (%s) - `%s' saved [%s/%s]\n\n"),
2653                          tms, tmrate, hstat.local_file,
2654                          number_to_static_string (hstat.len),
2655                          number_to_static_string (hstat.contlen));
2656               logprintf (LOG_NONVERBOSE,
2657                          "%s URL:%s [%s/%s] -> \"%s\" [%d]\n",
2658                          tms, u->url,
2659                          number_to_static_string (hstat.len),
2660                          number_to_static_string (hstat.contlen),
2661                          hstat.local_file, count);
2662             }
2663           ++opt.numurls;
2664           total_downloaded_bytes += hstat.len;
2665
2666           /* Remember that we downloaded the file for later ".orig" code. */
2667           if (*dt & ADDED_HTML_EXTENSION)
2668             downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, hstat.local_file);
2669           else
2670             downloaded_file(FILE_DOWNLOADED_NORMALLY, hstat.local_file);
2671
2672           ret = RETROK;
2673           goto exit;
2674         }
2675       else if (hstat.res == 0) /* No read error */
2676         {
2677           if (hstat.contlen == -1)  /* We don't know how much we were supposed
2678                                        to get, so assume we succeeded. */ 
2679             {
2680               if (*dt & RETROKF)
2681                 {
2682                   logprintf (LOG_VERBOSE,
2683                              _("%s (%s) - `%s' saved [%s]\n\n"),
2684                              tms, tmrate, hstat.local_file,
2685                              number_to_static_string (hstat.len));
2686                   logprintf (LOG_NONVERBOSE,
2687                              "%s URL:%s [%s] -> \"%s\" [%d]\n",
2688                              tms, u->url, number_to_static_string (hstat.len),
2689                              hstat.local_file, count);
2690                 }
2691               ++opt.numurls;
2692               total_downloaded_bytes += hstat.len;
2693
2694               /* Remember that we downloaded the file for later ".orig" code. */
2695               if (*dt & ADDED_HTML_EXTENSION)
2696                 downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, hstat.local_file);
2697               else
2698                 downloaded_file(FILE_DOWNLOADED_NORMALLY, hstat.local_file);
2699               
2700               ret = RETROK;
2701               goto exit;
2702             }
2703           else if (hstat.len < hstat.contlen) /* meaning we lost the
2704                                                  connection too soon */
2705             {
2706               logprintf (LOG_VERBOSE,
2707                          _("%s (%s) - Connection closed at byte %s. "),
2708                          tms, tmrate, number_to_static_string (hstat.len));
2709               printwhat (count, opt.ntry);
2710               continue;
2711             }
2712           else
2713             /* Getting here would mean reading more data than
2714                requested with content-length, which we never do.  */
2715             abort ();
2716         }
2717       else /* from now on hstat.res can only be -1 */
2718         {
2719           if (hstat.contlen == -1)
2720             {
2721               logprintf (LOG_VERBOSE,
2722                          _("%s (%s) - Read error at byte %s (%s)."),
2723                          tms, tmrate, number_to_static_string (hstat.len),
2724                          hstat.rderrmsg);
2725               printwhat (count, opt.ntry);
2726               continue;
2727             }
2728           else /* hstat.res == -1 and contlen is given */
2729             {
2730               logprintf (LOG_VERBOSE,
2731                          _("%s (%s) - Read error at byte %s/%s (%s). "),
2732                          tms, tmrate,
2733                          number_to_static_string (hstat.len),
2734                          number_to_static_string (hstat.contlen),
2735                          hstat.rderrmsg);
2736               printwhat (count, opt.ntry);
2737               continue;
2738             }
2739         }
2740       /* not reached */
2741     }
2742   while (!opt.ntry || (count < opt.ntry));
2743
2744 exit:
2745   if (ret == RETROK) 
2746     *local_file = xstrdup (hstat.local_file);
2747   free_hstat (&hstat);
2748   
2749   return ret;
2750 }
2751 \f
2752 /* Check whether the result of strptime() indicates success.
2753    strptime() returns the pointer to how far it got to in the string.
2754    The processing has been successful if the string is at `GMT' or
2755    `+X', or at the end of the string.
2756
2757    In extended regexp parlance, the function returns 1 if P matches
2758    "^ *(GMT|[+-][0-9]|$)", 0 otherwise.  P being NULL (which strptime
2759    can return) is considered a failure and 0 is returned.  */
2760 static bool
2761 check_end (const char *p)
2762 {
2763   if (!p)
2764     return false;
2765   while (ISSPACE (*p))
2766     ++p;
2767   if (!*p
2768       || (p[0] == 'G' && p[1] == 'M' && p[2] == 'T')
2769       || ((p[0] == '+' || p[0] == '-') && ISDIGIT (p[1])))
2770     return true;
2771   else
2772     return false;
2773 }
2774
2775 /* Convert the textual specification of time in TIME_STRING to the
2776    number of seconds since the Epoch.
2777
2778    TIME_STRING can be in any of the three formats RFC2616 allows the
2779    HTTP servers to emit -- RFC1123-date, RFC850-date or asctime-date,
2780    as well as the time format used in the Set-Cookie header.
2781    Timezones are ignored, and should be GMT.
2782
2783    Return the computed time_t representation, or -1 if the conversion
2784    fails.
2785
2786    This function uses strptime with various string formats for parsing
2787    TIME_STRING.  This results in a parser that is not as lenient in
2788    interpreting TIME_STRING as I would like it to be.  Being based on
2789    strptime, it always allows shortened months, one-digit days, etc.,
2790    but due to the multitude of formats in which time can be
2791    represented, an ideal HTTP time parser would be even more
2792    forgiving.  It should completely ignore things like week days and
2793    concentrate only on the various forms of representing years,
2794    months, days, hours, minutes, and seconds.  For example, it would
2795    be nice if it accepted ISO 8601 out of the box.
2796
2797    I've investigated free and PD code for this purpose, but none was
2798    usable.  getdate was big and unwieldy, and had potential copyright
2799    issues, or so I was informed.  Dr. Marcus Hennecke's atotm(),
2800    distributed with phttpd, is excellent, but we cannot use it because
2801    it is not assigned to the FSF.  So I stuck it with strptime.  */
2802
2803 time_t
2804 http_atotm (const char *time_string)
2805 {
2806   /* NOTE: Solaris strptime man page claims that %n and %t match white
2807      space, but that's not universally available.  Instead, we simply
2808      use ` ' to mean "skip all WS", which works under all strptime
2809      implementations I've tested.  */
2810
2811   static const char *time_formats[] = {
2812     "%a, %d %b %Y %T",          /* rfc1123: Thu, 29 Jan 1998 22:12:57 */
2813     "%A, %d-%b-%y %T",          /* rfc850:  Thursday, 29-Jan-98 22:12:57 */
2814     "%a %b %d %T %Y",           /* asctime: Thu Jan 29 22:12:57 1998 */
2815     "%a, %d-%b-%Y %T"           /* cookies: Thu, 29-Jan-1998 22:12:57
2816                                    (used in Set-Cookie, defined in the
2817                                    Netscape cookie specification.) */
2818   };
2819   const char *oldlocale;
2820   int i;
2821   time_t ret = (time_t) -1;
2822
2823   /* Solaris strptime fails to recognize English month names in
2824      non-English locales, which we work around by temporarily setting
2825      locale to C before invoking strptime.  */
2826   oldlocale = setlocale (LC_TIME, NULL);
2827   setlocale (LC_TIME, "C");
2828
2829   for (i = 0; i < countof (time_formats); i++)
2830     {
2831       struct tm t;
2832
2833       /* Some versions of strptime use the existing contents of struct
2834          tm to recalculate the date according to format.  Zero it out
2835          to prevent stack garbage from influencing strptime.  */
2836       xzero (t);
2837
2838       if (check_end (strptime (time_string, time_formats[i], &t)))
2839         {
2840           ret = timegm (&t);
2841           break;
2842         }
2843     }
2844
2845   /* Restore the previous locale. */
2846   setlocale (LC_TIME, oldlocale);
2847
2848   return ret;
2849 }
2850 \f
2851 /* Authorization support: We support three authorization schemes:
2852
2853    * `Basic' scheme, consisting of base64-ing USER:PASSWORD string;
2854
2855    * `Digest' scheme, added by Junio Hamano <junio@twinsun.com>,
2856    consisting of answering to the server's challenge with the proper
2857    MD5 digests.
2858
2859    * `NTLM' ("NT Lan Manager") scheme, based on code written by Daniel
2860    Stenberg for libcurl.  Like digest, NTLM is based on a
2861    challenge-response mechanism, but unlike digest, it is non-standard
2862    (authenticates TCP connections rather than requests), undocumented
2863    and Microsoft-specific.  */
2864
2865 /* Create the authentication header contents for the `Basic' scheme.
2866    This is done by encoding the string "USER:PASS" to base64 and
2867    prepending the string "Basic " in front of it.  */
2868
2869 static char *
2870 basic_authentication_encode (const char *user, const char *passwd)
2871 {
2872   char *t1, *t2;
2873   int len1 = strlen (user) + 1 + strlen (passwd);
2874
2875   t1 = (char *)alloca (len1 + 1);
2876   sprintf (t1, "%s:%s", user, passwd);
2877
2878   t2 = (char *)alloca (BASE64_LENGTH (len1) + 1);
2879   base64_encode (t1, len1, t2);
2880
2881   return concat_strings ("Basic ", t2, (char *) 0);
2882 }
2883
2884 #define SKIP_WS(x) do {                         \
2885   while (ISSPACE (*(x)))                        \
2886     ++(x);                                      \
2887 } while (0)
2888
2889 #ifdef ENABLE_DIGEST
2890 /* Dump the hexadecimal representation of HASH to BUF.  HASH should be
2891    an array of 16 bytes containing the hash keys, and BUF should be a
2892    buffer of 33 writable characters (32 for hex digits plus one for
2893    zero termination).  */
2894 static void
2895 dump_hash (char *buf, const unsigned char *hash)
2896 {
2897   int i;
2898
2899   for (i = 0; i < MD5_HASHLEN; i++, hash++)
2900     {
2901       *buf++ = XNUM_TO_digit (*hash >> 4);
2902       *buf++ = XNUM_TO_digit (*hash & 0xf);
2903     }
2904   *buf = '\0';
2905 }
2906
2907 /* Take the line apart to find the challenge, and compose a digest
2908    authorization header.  See RFC2069 section 2.1.2.  */
2909 static char *
2910 digest_authentication_encode (const char *au, const char *user,
2911                               const char *passwd, const char *method,
2912                               const char *path)
2913 {
2914   static char *realm, *opaque, *nonce;
2915   static struct {
2916     const char *name;
2917     char **variable;
2918   } options[] = {
2919     { "realm", &realm },
2920     { "opaque", &opaque },
2921     { "nonce", &nonce }
2922   };
2923   char *res;
2924   param_token name, value;
2925
2926   realm = opaque = nonce = NULL;
2927
2928   au += 6;                      /* skip over `Digest' */
2929   while (extract_param (&au, &name, &value, ','))
2930     {
2931       int i;
2932       for (i = 0; i < countof (options); i++)
2933         if (name.e - name.b == strlen (options[i].name)
2934             && 0 == strncmp (name.b, options[i].name, name.e - name.b))
2935           {
2936             *options[i].variable = strdupdelim (value.b, value.e);
2937             break;
2938           }
2939     }
2940   if (!realm || !nonce || !user || !passwd || !path || !method)
2941     {
2942       xfree_null (realm);
2943       xfree_null (opaque);
2944       xfree_null (nonce);
2945       return NULL;
2946     }
2947
2948   /* Calculate the digest value.  */
2949   {
2950     ALLOCA_MD5_CONTEXT (ctx);
2951     unsigned char hash[MD5_HASHLEN];
2952     char a1buf[MD5_HASHLEN * 2 + 1], a2buf[MD5_HASHLEN * 2 + 1];
2953     char response_digest[MD5_HASHLEN * 2 + 1];
2954
2955     /* A1BUF = H(user ":" realm ":" password) */
2956     gen_md5_init (ctx);
2957     gen_md5_update ((unsigned char *)user, strlen (user), ctx);
2958     gen_md5_update ((unsigned char *)":", 1, ctx);
2959     gen_md5_update ((unsigned char *)realm, strlen (realm), ctx);
2960     gen_md5_update ((unsigned char *)":", 1, ctx);
2961     gen_md5_update ((unsigned char *)passwd, strlen (passwd), ctx);
2962     gen_md5_finish (ctx, hash);
2963     dump_hash (a1buf, hash);
2964
2965     /* A2BUF = H(method ":" path) */
2966     gen_md5_init (ctx);
2967     gen_md5_update ((unsigned char *)method, strlen (method), ctx);
2968     gen_md5_update ((unsigned char *)":", 1, ctx);
2969     gen_md5_update ((unsigned char *)path, strlen (path), ctx);
2970     gen_md5_finish (ctx, hash);
2971     dump_hash (a2buf, hash);
2972
2973     /* RESPONSE_DIGEST = H(A1BUF ":" nonce ":" A2BUF) */
2974     gen_md5_init (ctx);
2975     gen_md5_update ((unsigned char *)a1buf, MD5_HASHLEN * 2, ctx);
2976     gen_md5_update ((unsigned char *)":", 1, ctx);
2977     gen_md5_update ((unsigned char *)nonce, strlen (nonce), ctx);
2978     gen_md5_update ((unsigned char *)":", 1, ctx);
2979     gen_md5_update ((unsigned char *)a2buf, MD5_HASHLEN * 2, ctx);
2980     gen_md5_finish (ctx, hash);
2981     dump_hash (response_digest, hash);
2982
2983     res = xmalloc (strlen (user)
2984                    + strlen (user)
2985                    + strlen (realm)
2986                    + strlen (nonce)
2987                    + strlen (path)
2988                    + 2 * MD5_HASHLEN /*strlen (response_digest)*/
2989                    + (opaque ? strlen (opaque) : 0)
2990                    + 128);
2991     sprintf (res, "Digest \
2992 username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", response=\"%s\"",
2993              user, realm, nonce, path, response_digest);
2994     if (opaque)
2995       {
2996         char *p = res + strlen (res);
2997         strcat (p, ", opaque=\"");
2998         strcat (p, opaque);
2999         strcat (p, "\"");
3000       }
3001   }
3002   return res;
3003 }
3004 #endif /* ENABLE_DIGEST */
3005
3006 /* Computing the size of a string literal must take into account that
3007    value returned by sizeof includes the terminating \0.  */
3008 #define STRSIZE(literal) (sizeof (literal) - 1)
3009
3010 /* Whether chars in [b, e) begin with the literal string provided as
3011    first argument and are followed by whitespace or terminating \0.
3012    The comparison is case-insensitive.  */
3013 #define STARTS(literal, b, e)                           \
3014   ((e) - (b) >= STRSIZE (literal)                       \
3015    && 0 == strncasecmp (b, literal, STRSIZE (literal))  \
3016    && ((e) - (b) == STRSIZE (literal)                   \
3017        || ISSPACE (b[STRSIZE (literal)])))
3018
3019 static bool
3020 known_authentication_scheme_p (const char *hdrbeg, const char *hdrend)
3021 {
3022   return STARTS ("Basic", hdrbeg, hdrend)
3023 #ifdef ENABLE_DIGEST
3024     || STARTS ("Digest", hdrbeg, hdrend)
3025 #endif
3026 #ifdef ENABLE_NTLM
3027     || STARTS ("NTLM", hdrbeg, hdrend)
3028 #endif
3029     ;
3030 }
3031
3032 #undef STARTS
3033
3034 /* Create the HTTP authorization request header.  When the
3035    `WWW-Authenticate' response header is seen, according to the
3036    authorization scheme specified in that header (`Basic' and `Digest'
3037    are supported by the current implementation), produce an
3038    appropriate HTTP authorization request header.  */
3039 static char *
3040 create_authorization_line (const char *au, const char *user,
3041                            const char *passwd, const char *method,
3042                            const char *path, bool *finished)
3043 {
3044   /* We are called only with known schemes, so we can dispatch on the
3045      first letter. */
3046   switch (TOUPPER (*au))
3047     {
3048     case 'B':                   /* Basic */
3049       *finished = true;
3050       return basic_authentication_encode (user, passwd);
3051 #ifdef ENABLE_DIGEST
3052     case 'D':                   /* Digest */
3053       *finished = true;
3054       return digest_authentication_encode (au, user, passwd, method, path);
3055 #endif
3056 #ifdef ENABLE_NTLM
3057     case 'N':                   /* NTLM */
3058       if (!ntlm_input (&pconn.ntlm, au))
3059         {
3060           *finished = true;
3061           return NULL;
3062         }
3063       return ntlm_output (&pconn.ntlm, user, passwd, finished);
3064 #endif
3065     default:
3066       /* We shouldn't get here -- this function should be only called
3067          with values approved by known_authentication_scheme_p.  */
3068       abort ();
3069     }
3070 }
3071 \f
3072 static void
3073 load_cookies (void)
3074 {
3075   if (!wget_cookie_jar)
3076     wget_cookie_jar = cookie_jar_new ();
3077   if (opt.cookies_input && !cookies_loaded_p)
3078     {
3079       cookie_jar_load (wget_cookie_jar, opt.cookies_input);
3080       cookies_loaded_p = true;
3081     }
3082 }
3083
3084 void
3085 save_cookies (void)
3086 {
3087   if (wget_cookie_jar)
3088     cookie_jar_save (wget_cookie_jar, opt.cookies_output);
3089 }
3090
3091 void
3092 http_cleanup (void)
3093 {
3094   xfree_null (pconn.host);
3095   if (wget_cookie_jar)
3096     cookie_jar_delete (wget_cookie_jar);
3097 }
3098
3099
3100 #ifdef TESTING
3101
3102 const char *
3103 test_parse_content_disposition()
3104 {
3105   int i;
3106   struct {
3107     char *hdrval;    
3108     char *opt_dir_prefix;
3109     char *filename;
3110     bool result;
3111   } test_array[] = {
3112     { "filename=\"file.ext\"", NULL, "file.ext", true },
3113     { "filename=\"file.ext\"", "somedir", "somedir/file.ext", true },
3114     { "attachment; filename=\"file.ext\"", NULL, "file.ext", true },
3115     { "attachment; filename=\"file.ext\"", "somedir", "somedir/file.ext", true },
3116     { "attachment; filename=\"file.ext\"; dummy", NULL, "file.ext", true },
3117     { "attachment; filename=\"file.ext\"; dummy", "somedir", "somedir/file.ext", true },
3118     { "attachment", NULL, NULL, false },
3119     { "attachment", "somedir", NULL, false },
3120   };
3121   
3122   for (i = 0; i < sizeof(test_array)/sizeof(test_array[0]); ++i) 
3123     {
3124       char *filename;
3125       bool res;
3126
3127       opt.dir_prefix = test_array[i].opt_dir_prefix;
3128       res = parse_content_disposition (test_array[i].hdrval, &filename);
3129
3130       mu_assert ("test_parse_content_disposition: wrong result", 
3131                  res == test_array[i].result
3132                  && (res == false 
3133                      || 0 == strcmp (test_array[i].filename, filename)));
3134     }
3135
3136   return NULL;
3137 }
3138
3139 #endif /* TESTING */
3140
3141 /*
3142  * vim: et sts=2 sw=2 cino+={s
3143  */
3144