]> sjero.net Git - wget/blob - src/http.c
Eschew config-post.h.
[wget] / src / http.c
1 /* HTTP support.
2    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3    2004, 2005, 2006, 2007 Free Software Foundation, Inc.
4
5 This file is part of GNU Wget.
6
7 GNU Wget is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10  (at your option) any later version.
11
12 GNU Wget is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Wget.  If not, see <http://www.gnu.org/licenses/>.
19
20 In addition, as a special exception, the Free Software Foundation
21 gives permission to link the code of its release of Wget with the
22 OpenSSL project's "OpenSSL" library (or with modified versions of it
23 that use the same license as the "OpenSSL" library), and distribute
24 the linked executables.  You must obey the GNU General Public License
25 in all respects for all of the code used other than "OpenSSL".  If you
26 modify this file, you may extend this exception to your version of the
27 file, but you are not obligated to do so.  If you do not wish to do
28 so, delete this exception statement from your version.  */
29
30 #include "wget.h"
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #ifdef HAVE_UNISTD_H
36 # include <unistd.h>
37 #endif
38 #include <assert.h>
39 #include <errno.h>
40 #include <time.h>
41 #include <locale.h>
42
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 (c_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 && c_isspace (*b))
656             ++b;
657           while (b < e && c_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 && c_isdigit (*p))
757         ++p;
758       if (p < end && *p == '.')
759         ++p; 
760       while (p < end && c_isdigit (*p))
761         ++p;
762     }
763
764   while (p < end && c_isspace (*p))
765     ++p;
766   if (end - p < 3 || !c_isdigit (p[0]) || !c_isdigit (p[1]) || !c_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 && c_isspace (*p))
775         ++p;
776       while (p < end && c_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 (c_isspace (*hdr))
848         ++hdr;
849       if (!*hdr)
850         return false;
851     }
852   if (!c_isdigit (*hdr))
853     return false;
854   for (num = 0; c_isdigit (*hdr); hdr++)
855     num = 10 * num + (*hdr - '0');
856   if (*hdr != '-' || !c_isdigit (*(hdr + 1)))
857     return false;
858   *first_byte_ptr = num;
859   ++hdr;
860   for (num = 0; c_isdigit (*hdr); hdr++)
861     num = 10 * num + (*hdr - '0');
862   if (*hdr != '/' || !c_isdigit (*(hdr + 1)))
863     return false;
864   *last_byte_ptr = num;
865   ++hdr;
866   for (num = 0; c_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 (c_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 && !c_isspace (*p) && *p != '=' && *p != separator) ++p;
951   name->e = p;
952   if (name->b == name->e)
953     return false;               /* empty name: error */
954   while (c_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 (c_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 (c_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 && c_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    && (c_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       else if (host_lookup_failed)
1625         {
1626           request_free (req);
1627           logprintf(LOG_NOTQUIET,
1628                     _("%s: unable to resolve host address `%s'\n"),
1629                     exec_name, relevant->host);
1630           return HOSTERR;
1631         }
1632     }
1633
1634   if (sock < 0)
1635     {
1636       sock = connect_to_host (conn->host, conn->port);
1637       if (sock == E_HOST)
1638         {
1639           request_free (req);
1640           return HOSTERR;
1641         }
1642       else if (sock < 0)
1643         {
1644           request_free (req);
1645           return (retryable_socket_connect_error (errno)
1646                   ? CONERROR : CONIMPOSSIBLE);
1647         }
1648
1649 #ifdef HAVE_SSL
1650       if (proxy && u->scheme == SCHEME_HTTPS)
1651         {
1652           /* When requesting SSL URLs through proxies, use the
1653              CONNECT method to request passthrough.  */
1654           struct request *connreq = request_new ();
1655           request_set_method (connreq, "CONNECT",
1656                               aprintf ("%s:%d", u->host, u->port));
1657           SET_USER_AGENT (connreq);
1658           if (proxyauth)
1659             {
1660               request_set_header (connreq, "Proxy-Authorization",
1661                                   proxyauth, rel_value);
1662               /* Now that PROXYAUTH is part of the CONNECT request,
1663                  zero it out so we don't send proxy authorization with
1664                  the regular request below.  */
1665               proxyauth = NULL;
1666             }
1667           /* Examples in rfc2817 use the Host header in CONNECT
1668              requests.  I don't see how that gains anything, given
1669              that the contents of Host would be exactly the same as
1670              the contents of CONNECT.  */
1671
1672           write_error = request_send (connreq, sock);
1673           request_free (connreq);
1674           if (write_error < 0)
1675             {
1676               CLOSE_INVALIDATE (sock);
1677               return WRITEFAILED;
1678             }
1679
1680           head = read_http_response_head (sock);
1681           if (!head)
1682             {
1683               logprintf (LOG_VERBOSE, _("Failed reading proxy response: %s\n"),
1684                          fd_errstr (sock));
1685               CLOSE_INVALIDATE (sock);
1686               return HERR;
1687             }
1688           message = NULL;
1689           if (!*head)
1690             {
1691               xfree (head);
1692               goto failed_tunnel;
1693             }
1694           DEBUGP (("proxy responded with: [%s]\n", head));
1695
1696           resp = resp_new (head);
1697           statcode = resp_status (resp, &message);
1698           resp_free (resp);
1699           xfree (head);
1700           if (statcode != 200)
1701             {
1702             failed_tunnel:
1703               logprintf (LOG_NOTQUIET, _("Proxy tunneling failed: %s"),
1704                          message ? escnonprint (message) : "?");
1705               xfree_null (message);
1706               return CONSSLERR;
1707             }
1708           xfree_null (message);
1709
1710           /* SOCK is now *really* connected to u->host, so update CONN
1711              to reflect this.  That way register_persistent will
1712              register SOCK as being connected to u->host:u->port.  */
1713           conn = u;
1714         }
1715
1716       if (conn->scheme == SCHEME_HTTPS)
1717         {
1718           if (!ssl_connect (sock) || !ssl_check_certificate (sock, u->host))
1719             {
1720               fd_close (sock);
1721               return CONSSLERR;
1722             }
1723           using_ssl = true;
1724         }
1725 #endif /* HAVE_SSL */
1726     }
1727
1728   /* Send the request to server.  */
1729   write_error = request_send (req, sock);
1730
1731   if (write_error >= 0)
1732     {
1733       if (opt.post_data)
1734         {
1735           DEBUGP (("[POST data: %s]\n", opt.post_data));
1736           write_error = fd_write (sock, opt.post_data, post_data_size, -1);
1737         }
1738       else if (opt.post_file_name && post_data_size != 0)
1739         write_error = post_file (sock, opt.post_file_name, post_data_size);
1740     }
1741
1742   if (write_error < 0)
1743     {
1744       CLOSE_INVALIDATE (sock);
1745       request_free (req);
1746       return WRITEFAILED;
1747     }
1748   logprintf (LOG_VERBOSE, _("%s request sent, awaiting response... "),
1749              proxy ? "Proxy" : "HTTP");
1750   contlen = -1;
1751   contrange = 0;
1752   *dt &= ~RETROKF;
1753
1754   head = read_http_response_head (sock);
1755   if (!head)
1756     {
1757       if (errno == 0)
1758         {
1759           logputs (LOG_NOTQUIET, _("No data received.\n"));
1760           CLOSE_INVALIDATE (sock);
1761           request_free (req);
1762           return HEOF;
1763         }
1764       else
1765         {
1766           logprintf (LOG_NOTQUIET, _("Read error (%s) in headers.\n"),
1767                      fd_errstr (sock));
1768           CLOSE_INVALIDATE (sock);
1769           request_free (req);
1770           return HERR;
1771         }
1772     }
1773   DEBUGP (("\n---response begin---\n%s---response end---\n", head));
1774
1775   resp = resp_new (head);
1776
1777   /* Check for status line.  */
1778   message = NULL;
1779   statcode = resp_status (resp, &message);
1780   if (!opt.server_response)
1781     logprintf (LOG_VERBOSE, "%2d %s\n", statcode,
1782                message ? escnonprint (message) : "");
1783   else
1784     {
1785       logprintf (LOG_VERBOSE, "\n");
1786       print_server_response (resp, "  ");
1787     }
1788
1789   /* Determine the local filename if needed. Notice that if -O is used 
1790    * hstat.local_file is set by http_loop to the argument of -O. */
1791   if (!hs->local_file)
1792     {
1793       /* Honor Content-Disposition whether possible. */
1794       if (!opt.content_disposition
1795           || !resp_header_copy (resp, "Content-Disposition", 
1796                                 hdrval, sizeof (hdrval))
1797           || !parse_content_disposition (hdrval, &hs->local_file))
1798         {
1799           /* The Content-Disposition header is missing or broken. 
1800            * Choose unique file name according to given URL. */
1801           hs->local_file = url_file_name (u);
1802         }
1803     }
1804   
1805   /* TODO: perform this check only once. */
1806   if (file_exists_p (hs->local_file))
1807     {
1808       if (opt.noclobber)
1809         {
1810           /* If opt.noclobber is turned on and file already exists, do not
1811              retrieve the file */
1812           logprintf (LOG_VERBOSE, _("\
1813 File `%s' already there; not retrieving.\n\n"), hs->local_file);
1814           /* If the file is there, we suppose it's retrieved OK.  */
1815           *dt |= RETROKF;
1816
1817           /* #### Bogusness alert.  */
1818           /* If its suffix is "html" or "htm" or similar, assume text/html.  */
1819           if (has_html_suffix_p (hs->local_file))
1820             *dt |= TEXTHTML;
1821
1822           return RETRUNNEEDED;
1823         }
1824       else if (!ALLOW_CLOBBER)
1825         {
1826           char *unique = unique_name (hs->local_file, true);
1827           if (unique != hs->local_file)
1828             xfree (hs->local_file);
1829           hs->local_file = unique;
1830         }
1831     }
1832
1833   /* Support timestamping */
1834   /* TODO: move this code out of gethttp. */
1835   if (opt.timestamping && !hs->timestamp_checked)
1836     {
1837       size_t filename_len = strlen (hs->local_file);
1838       char *filename_plus_orig_suffix = alloca (filename_len + sizeof (".orig"));
1839       bool local_dot_orig_file_exists = false;
1840       char *local_filename = NULL;
1841       struct_stat st;
1842
1843       if (opt.backup_converted)
1844         /* If -K is specified, we'll act on the assumption that it was specified
1845            last time these files were downloaded as well, and instead of just
1846            comparing local file X against server file X, we'll compare local
1847            file X.orig (if extant, else X) against server file X.  If -K
1848            _wasn't_ specified last time, or the server contains files called
1849            *.orig, -N will be back to not operating correctly with -k. */
1850         {
1851           /* Would a single s[n]printf() call be faster?  --dan
1852
1853              Definitely not.  sprintf() is horribly slow.  It's a
1854              different question whether the difference between the two
1855              affects a program.  Usually I'd say "no", but at one
1856              point I profiled Wget, and found that a measurable and
1857              non-negligible amount of time was lost calling sprintf()
1858              in url.c.  Replacing sprintf with inline calls to
1859              strcpy() and number_to_string() made a difference.
1860              --hniksic */
1861           memcpy (filename_plus_orig_suffix, hs->local_file, filename_len);
1862           memcpy (filename_plus_orig_suffix + filename_len,
1863                   ".orig", sizeof (".orig"));
1864
1865           /* Try to stat() the .orig file. */
1866           if (stat (filename_plus_orig_suffix, &st) == 0)
1867             {
1868               local_dot_orig_file_exists = true;
1869               local_filename = filename_plus_orig_suffix;
1870             }
1871         }      
1872
1873       if (!local_dot_orig_file_exists)
1874         /* Couldn't stat() <file>.orig, so try to stat() <file>. */
1875         if (stat (hs->local_file, &st) == 0)
1876           local_filename = hs->local_file;
1877
1878       if (local_filename != NULL)
1879         /* There was a local file, so we'll check later to see if the version
1880            the server has is the same version we already have, allowing us to
1881            skip a download. */
1882         {
1883           hs->orig_file_name = xstrdup (local_filename);
1884           hs->orig_file_size = st.st_size;
1885           hs->orig_file_tstamp = st.st_mtime;
1886 #ifdef WINDOWS
1887           /* Modification time granularity is 2 seconds for Windows, so
1888              increase local time by 1 second for later comparison. */
1889           ++hs->orig_file_tstamp;
1890 #endif
1891         }
1892     }
1893
1894   if (!opt.ignore_length
1895       && resp_header_copy (resp, "Content-Length", hdrval, sizeof (hdrval)))
1896     {
1897       wgint parsed;
1898       errno = 0;
1899       parsed = str_to_wgint (hdrval, NULL, 10);
1900       if (parsed == WGINT_MAX && errno == ERANGE)
1901         {
1902           /* Out of range.
1903              #### If Content-Length is out of range, it most likely
1904              means that the file is larger than 2G and that we're
1905              compiled without LFS.  In that case we should probably
1906              refuse to even attempt to download the file.  */
1907           contlen = -1;
1908         }
1909       else if (parsed < 0)
1910         {
1911           /* Negative Content-Length; nonsensical, so we can't
1912              assume any information about the content to receive. */
1913           contlen = -1;
1914         }
1915       else
1916         contlen = parsed;
1917     }
1918
1919   /* Check for keep-alive related responses. */
1920   if (!inhibit_keep_alive && contlen != -1)
1921     {
1922       if (resp_header_copy (resp, "Keep-Alive", NULL, 0))
1923         keep_alive = true;
1924       else if (resp_header_copy (resp, "Connection", hdrval, sizeof (hdrval)))
1925         {
1926           if (0 == strcasecmp (hdrval, "Keep-Alive"))
1927             keep_alive = true;
1928         }
1929     }
1930   if (keep_alive)
1931     /* The server has promised that it will not close the connection
1932        when we're done.  This means that we can register it.  */
1933     register_persistent (conn->host, conn->port, sock, using_ssl);
1934
1935   if (statcode == HTTP_STATUS_UNAUTHORIZED)
1936     {
1937       /* Authorization is required.  */
1938       if (keep_alive && !head_only && skip_short_body (sock, contlen))
1939         CLOSE_FINISH (sock);
1940       else
1941         CLOSE_INVALIDATE (sock);
1942       pconn.authorized = false;
1943       if (!auth_finished && (user && passwd))
1944         {
1945           /* IIS sends multiple copies of WWW-Authenticate, one with
1946              the value "negotiate", and other(s) with data.  Loop over
1947              all the occurrences and pick the one we recognize.  */
1948           int wapos;
1949           const char *wabeg, *waend;
1950           char *www_authenticate = NULL;
1951           for (wapos = 0;
1952                (wapos = resp_header_locate (resp, "WWW-Authenticate", wapos,
1953                                             &wabeg, &waend)) != -1;
1954                ++wapos)
1955             if (known_authentication_scheme_p (wabeg, waend))
1956               {
1957                 BOUNDED_TO_ALLOCA (wabeg, waend, www_authenticate);
1958                 break;
1959               }
1960
1961           if (!www_authenticate)
1962             {
1963               /* If the authentication header is missing or
1964                  unrecognized, there's no sense in retrying.  */
1965               logputs (LOG_NOTQUIET, _("Unknown authentication scheme.\n"));
1966             }
1967           else if (!basic_auth_finished
1968                    || !BEGINS_WITH (www_authenticate, "Basic"))
1969             {
1970               char *pth;
1971               pth = url_full_path (u);
1972               request_set_header (req, "Authorization",
1973                                   create_authorization_line (www_authenticate,
1974                                                              user, passwd,
1975                                                              request_method (req),
1976                                                              pth,
1977                                                              &auth_finished),
1978                                   rel_value);
1979               if (BEGINS_WITH (www_authenticate, "NTLM"))
1980                 ntlm_seen = true;
1981               else if (!u->user && BEGINS_WITH (www_authenticate, "Basic"))
1982                 {
1983                   /* Need to register this host as using basic auth,
1984                    * so we automatically send creds next time. */
1985                   register_basic_auth_host (u->host);
1986                 }
1987               xfree (pth);
1988               goto retry_with_auth;
1989             }
1990           else
1991             {
1992               /* We already did Basic auth, and it failed. Gotta
1993                * give up. */
1994             }
1995         }
1996       logputs (LOG_NOTQUIET, _("Authorization failed.\n"));
1997       request_free (req);
1998       return AUTHFAILED;
1999     }
2000   else /* statcode != HTTP_STATUS_UNAUTHORIZED */
2001     {
2002       /* Kludge: if NTLM is used, mark the TCP connection as authorized. */
2003       if (ntlm_seen)
2004         pconn.authorized = true;
2005     }
2006   request_free (req);
2007
2008   hs->statcode = statcode;
2009   if (statcode == -1)
2010     hs->error = xstrdup (_("Malformed status line"));
2011   else if (!*message)
2012     hs->error = xstrdup (_("(no description)"));
2013   else
2014     hs->error = xstrdup (message);
2015   xfree_null (message);
2016
2017   type = resp_header_strdup (resp, "Content-Type");
2018   if (type)
2019     {
2020       char *tmp = strchr (type, ';');
2021       if (tmp)
2022         {
2023           while (tmp > type && c_isspace (tmp[-1]))
2024             --tmp;
2025           *tmp = '\0';
2026         }
2027     }
2028   hs->newloc = resp_header_strdup (resp, "Location");
2029   hs->remote_time = resp_header_strdup (resp, "Last-Modified");
2030
2031   /* Handle (possibly multiple instances of) the Set-Cookie header. */
2032   if (opt.cookies)
2033     {
2034       int scpos;
2035       const char *scbeg, *scend;
2036       /* The jar should have been created by now. */
2037       assert (wget_cookie_jar != NULL);
2038       for (scpos = 0;
2039            (scpos = resp_header_locate (resp, "Set-Cookie", scpos,
2040                                         &scbeg, &scend)) != -1;
2041            ++scpos)
2042         {
2043           char *set_cookie; BOUNDED_TO_ALLOCA (scbeg, scend, set_cookie);
2044           cookie_handle_set_cookie (wget_cookie_jar, u->host, u->port,
2045                                     u->path, set_cookie);
2046         }
2047     }
2048
2049   if (resp_header_copy (resp, "Content-Range", hdrval, sizeof (hdrval)))
2050     {
2051       wgint first_byte_pos, last_byte_pos, entity_length;
2052       if (parse_content_range (hdrval, &first_byte_pos, &last_byte_pos,
2053                                &entity_length))
2054         contrange = first_byte_pos;
2055     }
2056   resp_free (resp);
2057
2058   /* 20x responses are counted among successful by default.  */
2059   if (H_20X (statcode))
2060     *dt |= RETROKF;
2061
2062   /* Return if redirected.  */
2063   if (H_REDIRECTED (statcode) || statcode == HTTP_STATUS_MULTIPLE_CHOICES)
2064     {
2065       /* RFC2068 says that in case of the 300 (multiple choices)
2066          response, the server can output a preferred URL through
2067          `Location' header; otherwise, the request should be treated
2068          like GET.  So, if the location is set, it will be a
2069          redirection; otherwise, just proceed normally.  */
2070       if (statcode == HTTP_STATUS_MULTIPLE_CHOICES && !hs->newloc)
2071         *dt |= RETROKF;
2072       else
2073         {
2074           logprintf (LOG_VERBOSE,
2075                      _("Location: %s%s\n"),
2076                      hs->newloc ? escnonprint_uri (hs->newloc) : _("unspecified"),
2077                      hs->newloc ? _(" [following]") : "");
2078           if (keep_alive && !head_only && skip_short_body (sock, contlen))
2079             CLOSE_FINISH (sock);
2080           else
2081             CLOSE_INVALIDATE (sock);
2082           xfree_null (type);
2083           return NEWLOCATION;
2084         }
2085     }
2086
2087   /* If content-type is not given, assume text/html.  This is because
2088      of the multitude of broken CGI's that "forget" to generate the
2089      content-type.  */
2090   if (!type ||
2091         0 == strncasecmp (type, TEXTHTML_S, strlen (TEXTHTML_S)) ||
2092         0 == strncasecmp (type, TEXTXHTML_S, strlen (TEXTXHTML_S)))    
2093     *dt |= TEXTHTML;
2094   else
2095     *dt &= ~TEXTHTML;
2096
2097   if (opt.html_extension && (*dt & TEXTHTML))
2098     /* -E / --html-extension / html_extension = on was specified, and this is a
2099        text/html file.  If some case-insensitive variation on ".htm[l]" isn't
2100        already the file's suffix, tack on ".html". */
2101     {
2102       char *last_period_in_local_filename = strrchr (hs->local_file, '.');
2103
2104       if (last_period_in_local_filename == NULL
2105           || !(0 == strcasecmp (last_period_in_local_filename, ".htm")
2106                || 0 == strcasecmp (last_period_in_local_filename, ".html")))
2107         {
2108           int local_filename_len = strlen (hs->local_file);
2109           /* Resize the local file, allowing for ".html" preceded by
2110              optional ".NUMBER".  */
2111           hs->local_file = xrealloc (hs->local_file,
2112                                      local_filename_len + 24 + sizeof (".html"));
2113           strcpy(hs->local_file + local_filename_len, ".html");
2114           /* If clobbering is not allowed and the file, as named,
2115              exists, tack on ".NUMBER.html" instead. */
2116           if (!ALLOW_CLOBBER && file_exists_p (hs->local_file))
2117             {
2118               int ext_num = 1;
2119               do
2120                 sprintf (hs->local_file + local_filename_len,
2121                          ".%d.html", ext_num++);
2122               while (file_exists_p (hs->local_file));
2123             }
2124           *dt |= ADDED_HTML_EXTENSION;
2125         }
2126     }
2127
2128   if (statcode == HTTP_STATUS_RANGE_NOT_SATISFIABLE)
2129     {
2130       /* If `-c' is in use and the file has been fully downloaded (or
2131          the remote file has shrunk), Wget effectively requests bytes
2132          after the end of file and the server response with 416.  */
2133       logputs (LOG_VERBOSE, _("\
2134 \n    The file is already fully retrieved; nothing to do.\n\n"));
2135       /* In case the caller inspects. */
2136       hs->len = contlen;
2137       hs->res = 0;
2138       /* Mark as successfully retrieved. */
2139       *dt |= RETROKF;
2140       xfree_null (type);
2141       CLOSE_INVALIDATE (sock);        /* would be CLOSE_FINISH, but there
2142                                    might be more bytes in the body. */
2143       return RETRUNNEEDED;
2144     }
2145   if ((contrange != 0 && contrange != hs->restval)
2146       || (H_PARTIAL (statcode) && !contrange))
2147     {
2148       /* The Range request was somehow misunderstood by the server.
2149          Bail out.  */
2150       xfree_null (type);
2151       CLOSE_INVALIDATE (sock);
2152       return RANGEERR;
2153     }
2154   hs->contlen = contlen + contrange;
2155
2156   if (opt.verbose)
2157     {
2158       if (*dt & RETROKF)
2159         {
2160           /* No need to print this output if the body won't be
2161              downloaded at all, or if the original server response is
2162              printed.  */
2163           logputs (LOG_VERBOSE, _("Length: "));
2164           if (contlen != -1)
2165             {
2166               logputs (LOG_VERBOSE, number_to_static_string (contlen + contrange));
2167               if (contlen + contrange >= 1024)
2168                 logprintf (LOG_VERBOSE, " (%s)",
2169                            human_readable (contlen + contrange));
2170               if (contrange)
2171                 {
2172                   if (contlen >= 1024)
2173                     logprintf (LOG_VERBOSE, _(", %s (%s) remaining"),
2174                                number_to_static_string (contlen),
2175                                human_readable (contlen));
2176                   else
2177                     logprintf (LOG_VERBOSE, _(", %s remaining"),
2178                                number_to_static_string (contlen));
2179                 }
2180             }
2181           else
2182             logputs (LOG_VERBOSE,
2183                      opt.ignore_length ? _("ignored") : _("unspecified"));
2184           if (type)
2185             logprintf (LOG_VERBOSE, " [%s]\n", escnonprint (type));
2186           else
2187             logputs (LOG_VERBOSE, "\n");
2188         }
2189     }
2190   xfree_null (type);
2191   type = NULL;                        /* We don't need it any more.  */
2192
2193   /* Return if we have no intention of further downloading.  */
2194   if (!(*dt & RETROKF) || head_only)
2195     {
2196       /* In case the caller cares to look...  */
2197       hs->len = 0;
2198       hs->res = 0;
2199       xfree_null (type);
2200       if (head_only)
2201         /* Pre-1.10 Wget used CLOSE_INVALIDATE here.  Now we trust the
2202            servers not to send body in response to a HEAD request, and
2203            those that do will likely be caught by test_socket_open.
2204            If not, they can be worked around using
2205            `--no-http-keep-alive'.  */
2206         CLOSE_FINISH (sock);
2207       else if (keep_alive && skip_short_body (sock, contlen))
2208         /* Successfully skipped the body; also keep using the socket. */
2209         CLOSE_FINISH (sock);
2210       else
2211         CLOSE_INVALIDATE (sock);
2212       return RETRFINISHED;
2213     }
2214
2215   /* Open the local file.  */
2216   if (!output_stream)
2217     {
2218       mkalldirs (hs->local_file);
2219       if (opt.backups)
2220         rotate_backups (hs->local_file);
2221       if (hs->restval)
2222         fp = fopen (hs->local_file, "ab");
2223       else if (ALLOW_CLOBBER)
2224         fp = fopen (hs->local_file, "wb");
2225       else
2226         {
2227           fp = fopen_excl (hs->local_file, true);
2228           if (!fp && errno == EEXIST)
2229             {
2230               /* We cannot just invent a new name and use it (which is
2231                  what functions like unique_create typically do)
2232                  because we told the user we'd use this name.
2233                  Instead, return and retry the download.  */
2234               logprintf (LOG_NOTQUIET,
2235                          _("%s has sprung into existence.\n"),
2236                          hs->local_file);
2237               CLOSE_INVALIDATE (sock);
2238               return FOPEN_EXCL_ERR;
2239             }
2240         }
2241       if (!fp)
2242         {
2243           logprintf (LOG_NOTQUIET, "%s: %s\n", hs->local_file, strerror (errno));
2244           CLOSE_INVALIDATE (sock);
2245           return FOPENERR;
2246         }
2247     }
2248   else
2249     fp = output_stream;
2250
2251   /* Print fetch message, if opt.verbose.  */
2252   if (opt.verbose)
2253     {
2254       logprintf (LOG_NOTQUIET, _("Saving to: `%s'\n"), 
2255                  HYPHENP (hs->local_file) ? "STDOUT" : hs->local_file);
2256     }
2257     
2258   /* This confuses the timestamping code that checks for file size.
2259      #### The timestamping code should be smarter about file size.  */
2260   if (opt.save_headers && hs->restval == 0)
2261     fwrite (head, 1, strlen (head), fp);
2262
2263   /* Now we no longer need to store the response header. */
2264   xfree (head);
2265
2266   /* Download the request body.  */
2267   flags = 0;
2268   if (contlen != -1)
2269     /* If content-length is present, read that much; otherwise, read
2270        until EOF.  The HTTP spec doesn't require the server to
2271        actually close the connection when it's done sending data. */
2272     flags |= rb_read_exactly;
2273   if (hs->restval > 0 && contrange == 0)
2274     /* If the server ignored our range request, instruct fd_read_body
2275        to skip the first RESTVAL bytes of body.  */
2276     flags |= rb_skip_startpos;
2277   hs->len = hs->restval;
2278   hs->rd_size = 0;
2279   hs->res = fd_read_body (sock, fp, contlen != -1 ? contlen : 0,
2280                           hs->restval, &hs->rd_size, &hs->len, &hs->dltime,
2281                           flags);
2282
2283   if (hs->res >= 0)
2284     CLOSE_FINISH (sock);
2285   else
2286     {
2287       if (hs->res < 0)
2288         hs->rderrmsg = xstrdup (fd_errstr (sock));
2289       CLOSE_INVALIDATE (sock);
2290     }
2291
2292   if (!output_stream)
2293     fclose (fp);
2294   if (hs->res == -2)
2295     return FWRITEERR;
2296   return RETRFINISHED;
2297 }
2298
2299 /* The genuine HTTP loop!  This is the part where the retrieval is
2300    retried, and retried, and retried, and...  */
2301 uerr_t
2302 http_loop (struct url *u, char **newloc, char **local_file, const char *referer,
2303            int *dt, struct url *proxy)
2304 {
2305   int count;
2306   bool got_head = false;         /* used for time-stamping and filename detection */
2307   bool time_came_from_head = false;
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   struct http_stat hstat;        /* HTTP status */
2314   struct_stat st;  
2315   bool send_head_first = true;
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   else if (!opt.content_disposition)
2347     {
2348       hstat.local_file = url_file_name (u);
2349       got_name = true;
2350     }
2351
2352   /* Reset the counter. */
2353   count = 0;
2354   
2355   /* Reset the document type. */
2356   *dt = 0;
2357   
2358   /* Skip preliminary HEAD request if we're not in spider mode AND
2359    * if -O was given or HTTP Content-Disposition support is disabled. */
2360   if (!opt.spider
2361       && (got_name || !opt.content_disposition))
2362     send_head_first = false;
2363
2364   /* Send preliminary HEAD request if -N is given and we have an existing 
2365    * destination file. */
2366   if (opt.timestamping 
2367       && !opt.content_disposition
2368       && file_exists_p (url_file_name (u)))
2369     send_head_first = true;
2370   
2371   /* THE loop */
2372   do
2373     {
2374       /* Increment the pass counter.  */
2375       ++count;
2376       sleep_between_retrievals (count);
2377       
2378       /* Get the current time string.  */
2379       tms = datetime_str (time (NULL));
2380       
2381       if (opt.spider && !got_head)
2382         logprintf (LOG_VERBOSE, _("\
2383 Spider mode enabled. Check if remote file exists.\n"));
2384
2385       /* Print fetch message, if opt.verbose.  */
2386       if (opt.verbose)
2387         {
2388           char *hurl = url_string (u, URL_AUTH_HIDE_PASSWD);
2389           
2390           if (count > 1) 
2391             {
2392               char tmp[256];
2393               sprintf (tmp, _("(try:%2d)"), count);
2394               logprintf (LOG_NOTQUIET, "--%s--  %s  %s\n",
2395                          tms, tmp, hurl);
2396             }
2397           else 
2398             {
2399               logprintf (LOG_NOTQUIET, "--%s--  %s\n",
2400                          tms, hurl);
2401             }
2402           
2403 #ifdef WINDOWS
2404           ws_changetitle (hurl);
2405 #endif
2406           xfree (hurl);
2407         }
2408
2409       /* Default document type is empty.  However, if spider mode is
2410          on or time-stamping is employed, HEAD_ONLY commands is
2411          encoded within *dt.  */
2412       if (send_head_first && !got_head) 
2413         *dt |= HEAD_ONLY;
2414       else
2415         *dt &= ~HEAD_ONLY;
2416
2417       /* Decide whether or not to restart.  */
2418       if (opt.always_rest
2419           && got_name
2420           && stat (hstat.local_file, &st) == 0
2421           && S_ISREG (st.st_mode))
2422         /* When -c is used, continue from on-disk size.  (Can't use
2423            hstat.len even if count>1 because we don't want a failed
2424            first attempt to clobber existing data.)  */
2425         hstat.restval = st.st_size;
2426       else if (count > 1)
2427         /* otherwise, continue where the previous try left off */
2428         hstat.restval = hstat.len;
2429       else
2430         hstat.restval = 0;
2431
2432       /* Decide whether to send the no-cache directive.  We send it in
2433          two cases:
2434            a) we're using a proxy, and we're past our first retrieval.
2435               Some proxies are notorious for caching incomplete data, so
2436               we require a fresh get.
2437            b) caching is explicitly inhibited. */
2438       if ((proxy && count > 1)        /* a */
2439           || !opt.allow_cache)        /* b */
2440         *dt |= SEND_NOCACHE;
2441       else
2442         *dt &= ~SEND_NOCACHE;
2443
2444       /* Try fetching the document, or at least its head.  */
2445       err = gethttp (u, &hstat, dt, proxy);
2446
2447       /* Time?  */
2448       tms = datetime_str (time (NULL));
2449       
2450       /* Get the new location (with or without the redirection).  */
2451       if (hstat.newloc)
2452         *newloc = xstrdup (hstat.newloc);
2453
2454       switch (err)
2455         {
2456         case HERR: case HEOF: case CONSOCKERR: case CONCLOSED:
2457         case CONERROR: case READERR: case WRITEFAILED:
2458         case RANGEERR: case FOPEN_EXCL_ERR:
2459           /* Non-fatal errors continue executing the loop, which will
2460              bring them to "while" statement at the end, to judge
2461              whether the number of tries was exceeded.  */
2462           printwhat (count, opt.ntry);
2463           continue;
2464         case FWRITEERR: case FOPENERR:
2465           /* Another fatal error.  */
2466           logputs (LOG_VERBOSE, "\n");
2467           logprintf (LOG_NOTQUIET, _("Cannot write to `%s' (%s).\n"),
2468                      hstat.local_file, strerror (errno));
2469         case HOSTERR: case CONIMPOSSIBLE: case PROXERR: case AUTHFAILED: 
2470         case SSLINITFAILED: case CONTNOTSUPPORTED:
2471           /* Fatal errors just return from the function.  */
2472           ret = err;
2473           goto exit;
2474         case CONSSLERR:
2475           /* Another fatal error.  */
2476           logprintf (LOG_NOTQUIET, _("Unable to establish SSL connection.\n"));
2477           ret = err;
2478           goto exit;
2479         case NEWLOCATION:
2480           /* Return the new location to the caller.  */
2481           if (!*newloc)
2482             {
2483               logprintf (LOG_NOTQUIET,
2484                          _("ERROR: Redirection (%d) without location.\n"),
2485                          hstat.statcode);
2486               ret = WRONGCODE;
2487             }
2488           else 
2489             {
2490               ret = NEWLOCATION;
2491             }
2492           goto exit;
2493         case RETRUNNEEDED:
2494           /* The file was already fully retrieved. */
2495           ret = RETROK;
2496           goto exit;
2497         case RETRFINISHED:
2498           /* Deal with you later.  */
2499           break;
2500         default:
2501           /* All possibilities should have been exhausted.  */
2502           abort ();
2503         }
2504       
2505       if (!(*dt & RETROKF))
2506         {
2507           char *hurl = NULL;
2508           if (!opt.verbose)
2509             {
2510               /* #### Ugly ugly ugly! */
2511               hurl = url_string (u, URL_AUTH_HIDE_PASSWD);
2512               logprintf (LOG_NONVERBOSE, "%s:\n", hurl);
2513             }
2514
2515           /* Fall back to GET if HEAD fails with a 500 or 501 error code. */
2516           if (*dt & HEAD_ONLY
2517               && (hstat.statcode == 500 || hstat.statcode == 501))
2518             {
2519               got_head = true;
2520               continue;
2521             }
2522           /* Maybe we should always keep track of broken links, not just in
2523            * spider mode.  */
2524           else if (opt.spider)
2525             {
2526               /* #### Again: ugly ugly ugly! */
2527               if (!hurl) 
2528                 hurl = url_string (u, URL_AUTH_HIDE_PASSWD);
2529               nonexisting_url (hurl);
2530               logprintf (LOG_NOTQUIET, _("\
2531 Remote file does not exist -- broken link!!!\n"));
2532             }
2533           else
2534             {
2535               logprintf (LOG_NOTQUIET, _("%s ERROR %d: %s.\n"),
2536                          tms, hstat.statcode, escnonprint (hstat.error));
2537             }
2538           logputs (LOG_VERBOSE, "\n");
2539           ret = WRONGCODE;
2540           xfree_null (hurl);
2541           goto exit;
2542         }
2543
2544       /* Did we get the time-stamp? */
2545       if (!got_head)
2546         {
2547           got_head = true;    /* no more time-stamping */
2548
2549           if (opt.timestamping && !hstat.remote_time)
2550             {
2551               logputs (LOG_NOTQUIET, _("\
2552 Last-modified header missing -- time-stamps turned off.\n"));
2553             }
2554           else if (hstat.remote_time)
2555             {
2556               /* Convert the date-string into struct tm.  */
2557               tmr = http_atotm (hstat.remote_time);
2558               if (tmr == (time_t) (-1))
2559                 logputs (LOG_VERBOSE, _("\
2560 Last-modified header invalid -- time-stamp ignored.\n"));
2561               if (*dt & HEAD_ONLY)
2562                 time_came_from_head = true;
2563             }
2564       
2565           if (send_head_first)
2566             {
2567               /* The time-stamping section.  */
2568               if (opt.timestamping)
2569                 {
2570                   if (hstat.orig_file_name) /* Perform the following
2571                                                checks only if the file
2572                                                we're supposed to
2573                                                download already exists.  */
2574                     {
2575                       if (hstat.remote_time && 
2576                           tmr != (time_t) (-1))
2577                         {
2578                           /* Now time-stamping can be used validly.
2579                              Time-stamping means that if the sizes of
2580                              the local and remote file match, and local
2581                              file is newer than the remote file, it will
2582                              not be retrieved.  Otherwise, the normal
2583                              download procedure is resumed.  */
2584                           if (hstat.orig_file_tstamp >= tmr)
2585                             {
2586                               if (hstat.contlen == -1 
2587                                   || hstat.orig_file_size == hstat.contlen)
2588                                 {
2589                                   logprintf (LOG_VERBOSE, _("\
2590 Server file no newer than local file `%s' -- not retrieving.\n\n"),
2591                                              hstat.orig_file_name);
2592                                   ret = RETROK;
2593                                   goto exit;
2594                                 }
2595                               else
2596                                 {
2597                                   logprintf (LOG_VERBOSE, _("\
2598 The sizes do not match (local %s) -- retrieving.\n"),
2599                                              number_to_static_string (hstat.orig_file_size));
2600                                 }
2601                             }
2602                           else
2603                             logputs (LOG_VERBOSE,
2604                                      _("Remote file is newer, retrieving.\n"));
2605
2606                           logputs (LOG_VERBOSE, "\n");
2607                         }
2608                     }
2609                   
2610                   /* free_hstat (&hstat); */
2611                   hstat.timestamp_checked = true;
2612                 }
2613               
2614               if (opt.spider)
2615                 {
2616                   if (opt.recursive)
2617                     {
2618                       if (*dt & TEXTHTML)
2619                         {
2620                           logputs (LOG_VERBOSE, _("\
2621 Remote file exists and could contain links to other resources -- retrieving.\n\n"));
2622                         }
2623                       else 
2624                         {
2625                           logprintf (LOG_VERBOSE, _("\
2626 Remote file exists but does not contain any link -- not retrieving.\n\n"));
2627                           ret = RETROK; /* RETRUNNEEDED is not for caller. */
2628                           goto exit;
2629                         }
2630                     }
2631                   else
2632                     {
2633                       logprintf (LOG_VERBOSE, _("\
2634 Remote file exists but recursion is disabled -- not retrieving.\n\n"));
2635                       ret = RETROK; /* RETRUNNEEDED is not for caller. */
2636                       goto exit;
2637                     }
2638                 }
2639
2640               got_name = true;
2641               *dt &= ~HEAD_ONLY;
2642               count = 0;          /* the retrieve count for HEAD is reset */
2643               continue;
2644             } /* send_head_first */
2645         } /* !got_head */
2646           
2647       if ((tmr != (time_t) (-1))
2648           && ((hstat.len == hstat.contlen) ||
2649               ((hstat.res == 0) && (hstat.contlen == -1))))
2650         {
2651           /* #### This code repeats in http.c and ftp.c.  Move it to a
2652              function!  */
2653           const char *fl = NULL;
2654           if (opt.output_document)
2655             {
2656               if (output_stream_regular)
2657                 fl = opt.output_document;
2658             }
2659           else
2660             fl = hstat.local_file;
2661           if (fl)
2662             {
2663               time_t newtmr = -1;
2664               /* Reparse time header, in case it's changed. */
2665               if (time_came_from_head
2666                   && hstat.remote_time && hstat.remote_time[0])
2667                 {
2668                   newtmr = http_atotm (hstat.remote_time);
2669                   if (newtmr != -1)
2670                     tmr = newtmr;
2671                 }
2672               touch (fl, tmr);
2673             }
2674         }
2675       /* End of time-stamping section. */
2676
2677       tmrate = retr_rate (hstat.rd_size, hstat.dltime);
2678       total_download_time += hstat.dltime;
2679
2680       if (hstat.len == hstat.contlen)
2681         {
2682           if (*dt & RETROKF)
2683             {
2684               logprintf (LOG_VERBOSE,
2685                          _("%s (%s) - `%s' saved [%s/%s]\n\n"),
2686                          tms, tmrate, hstat.local_file,
2687                          number_to_static_string (hstat.len),
2688                          number_to_static_string (hstat.contlen));
2689               logprintf (LOG_NONVERBOSE,
2690                          "%s URL:%s [%s/%s] -> \"%s\" [%d]\n",
2691                          tms, u->url,
2692                          number_to_static_string (hstat.len),
2693                          number_to_static_string (hstat.contlen),
2694                          hstat.local_file, count);
2695             }
2696           ++opt.numurls;
2697           total_downloaded_bytes += hstat.len;
2698
2699           /* Remember that we downloaded the file for later ".orig" code. */
2700           if (*dt & ADDED_HTML_EXTENSION)
2701             downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, hstat.local_file);
2702           else
2703             downloaded_file(FILE_DOWNLOADED_NORMALLY, hstat.local_file);
2704
2705           ret = RETROK;
2706           goto exit;
2707         }
2708       else if (hstat.res == 0) /* No read error */
2709         {
2710           if (hstat.contlen == -1)  /* We don't know how much we were supposed
2711                                        to get, so assume we succeeded. */ 
2712             {
2713               if (*dt & RETROKF)
2714                 {
2715                   logprintf (LOG_VERBOSE,
2716                              _("%s (%s) - `%s' saved [%s]\n\n"),
2717                              tms, tmrate, hstat.local_file,
2718                              number_to_static_string (hstat.len));
2719                   logprintf (LOG_NONVERBOSE,
2720                              "%s URL:%s [%s] -> \"%s\" [%d]\n",
2721                              tms, u->url, number_to_static_string (hstat.len),
2722                              hstat.local_file, count);
2723                 }
2724               ++opt.numurls;
2725               total_downloaded_bytes += hstat.len;
2726
2727               /* Remember that we downloaded the file for later ".orig" code. */
2728               if (*dt & ADDED_HTML_EXTENSION)
2729                 downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, hstat.local_file);
2730               else
2731                 downloaded_file(FILE_DOWNLOADED_NORMALLY, hstat.local_file);
2732               
2733               ret = RETROK;
2734               goto exit;
2735             }
2736           else if (hstat.len < hstat.contlen) /* meaning we lost the
2737                                                  connection too soon */
2738             {
2739               logprintf (LOG_VERBOSE,
2740                          _("%s (%s) - Connection closed at byte %s. "),
2741                          tms, tmrate, number_to_static_string (hstat.len));
2742               printwhat (count, opt.ntry);
2743               continue;
2744             }
2745           else
2746             /* Getting here would mean reading more data than
2747                requested with content-length, which we never do.  */
2748             abort ();
2749         }
2750       else /* from now on hstat.res can only be -1 */
2751         {
2752           if (hstat.contlen == -1)
2753             {
2754               logprintf (LOG_VERBOSE,
2755                          _("%s (%s) - Read error at byte %s (%s)."),
2756                          tms, tmrate, number_to_static_string (hstat.len),
2757                          hstat.rderrmsg);
2758               printwhat (count, opt.ntry);
2759               continue;
2760             }
2761           else /* hstat.res == -1 and contlen is given */
2762             {
2763               logprintf (LOG_VERBOSE,
2764                          _("%s (%s) - Read error at byte %s/%s (%s). "),
2765                          tms, tmrate,
2766                          number_to_static_string (hstat.len),
2767                          number_to_static_string (hstat.contlen),
2768                          hstat.rderrmsg);
2769               printwhat (count, opt.ntry);
2770               continue;
2771             }
2772         }
2773       /* not reached */
2774     }
2775   while (!opt.ntry || (count < opt.ntry));
2776
2777 exit:
2778   if (ret == RETROK) 
2779     *local_file = xstrdup (hstat.local_file);
2780   free_hstat (&hstat);
2781   
2782   return ret;
2783 }
2784 \f
2785 /* Check whether the result of strptime() indicates success.
2786    strptime() returns the pointer to how far it got to in the string.
2787    The processing has been successful if the string is at `GMT' or
2788    `+X', or at the end of the string.
2789
2790    In extended regexp parlance, the function returns 1 if P matches
2791    "^ *(GMT|[+-][0-9]|$)", 0 otherwise.  P being NULL (which strptime
2792    can return) is considered a failure and 0 is returned.  */
2793 static bool
2794 check_end (const char *p)
2795 {
2796   if (!p)
2797     return false;
2798   while (c_isspace (*p))
2799     ++p;
2800   if (!*p
2801       || (p[0] == 'G' && p[1] == 'M' && p[2] == 'T')
2802       || ((p[0] == '+' || p[0] == '-') && c_isdigit (p[1])))
2803     return true;
2804   else
2805     return false;
2806 }
2807
2808 /* Convert the textual specification of time in TIME_STRING to the
2809    number of seconds since the Epoch.
2810
2811    TIME_STRING can be in any of the three formats RFC2616 allows the
2812    HTTP servers to emit -- RFC1123-date, RFC850-date or asctime-date,
2813    as well as the time format used in the Set-Cookie header.
2814    Timezones are ignored, and should be GMT.
2815
2816    Return the computed time_t representation, or -1 if the conversion
2817    fails.
2818
2819    This function uses strptime with various string formats for parsing
2820    TIME_STRING.  This results in a parser that is not as lenient in
2821    interpreting TIME_STRING as I would like it to be.  Being based on
2822    strptime, it always allows shortened months, one-digit days, etc.,
2823    but due to the multitude of formats in which time can be
2824    represented, an ideal HTTP time parser would be even more
2825    forgiving.  It should completely ignore things like week days and
2826    concentrate only on the various forms of representing years,
2827    months, days, hours, minutes, and seconds.  For example, it would
2828    be nice if it accepted ISO 8601 out of the box.
2829
2830    I've investigated free and PD code for this purpose, but none was
2831    usable.  getdate was big and unwieldy, and had potential copyright
2832    issues, or so I was informed.  Dr. Marcus Hennecke's atotm(),
2833    distributed with phttpd, is excellent, but we cannot use it because
2834    it is not assigned to the FSF.  So I stuck it with strptime.  */
2835
2836 time_t
2837 http_atotm (const char *time_string)
2838 {
2839   /* NOTE: Solaris strptime man page claims that %n and %t match white
2840      space, but that's not universally available.  Instead, we simply
2841      use ` ' to mean "skip all WS", which works under all strptime
2842      implementations I've tested.  */
2843
2844   static const char *time_formats[] = {
2845     "%a, %d %b %Y %T",          /* rfc1123: Thu, 29 Jan 1998 22:12:57 */
2846     "%A, %d-%b-%y %T",          /* rfc850:  Thursday, 29-Jan-98 22:12:57 */
2847     "%a %b %d %T %Y",           /* asctime: Thu Jan 29 22:12:57 1998 */
2848     "%a, %d-%b-%Y %T"           /* cookies: Thu, 29-Jan-1998 22:12:57
2849                                    (used in Set-Cookie, defined in the
2850                                    Netscape cookie specification.) */
2851   };
2852   const char *oldlocale;
2853   int i;
2854   time_t ret = (time_t) -1;
2855
2856   /* Solaris strptime fails to recognize English month names in
2857      non-English locales, which we work around by temporarily setting
2858      locale to C before invoking strptime.  */
2859   oldlocale = setlocale (LC_TIME, NULL);
2860   setlocale (LC_TIME, "C");
2861
2862   for (i = 0; i < countof (time_formats); i++)
2863     {
2864       struct tm t;
2865
2866       /* Some versions of strptime use the existing contents of struct
2867          tm to recalculate the date according to format.  Zero it out
2868          to prevent stack garbage from influencing strptime.  */
2869       xzero (t);
2870
2871       if (check_end (strptime (time_string, time_formats[i], &t)))
2872         {
2873           ret = timegm (&t);
2874           break;
2875         }
2876     }
2877
2878   /* Restore the previous locale. */
2879   setlocale (LC_TIME, oldlocale);
2880
2881   return ret;
2882 }
2883 \f
2884 /* Authorization support: We support three authorization schemes:
2885
2886    * `Basic' scheme, consisting of base64-ing USER:PASSWORD string;
2887
2888    * `Digest' scheme, added by Junio Hamano <junio@twinsun.com>,
2889    consisting of answering to the server's challenge with the proper
2890    MD5 digests.
2891
2892    * `NTLM' ("NT Lan Manager") scheme, based on code written by Daniel
2893    Stenberg for libcurl.  Like digest, NTLM is based on a
2894    challenge-response mechanism, but unlike digest, it is non-standard
2895    (authenticates TCP connections rather than requests), undocumented
2896    and Microsoft-specific.  */
2897
2898 /* Create the authentication header contents for the `Basic' scheme.
2899    This is done by encoding the string "USER:PASS" to base64 and
2900    prepending the string "Basic " in front of it.  */
2901
2902 static char *
2903 basic_authentication_encode (const char *user, const char *passwd)
2904 {
2905   char *t1, *t2;
2906   int len1 = strlen (user) + 1 + strlen (passwd);
2907
2908   t1 = (char *)alloca (len1 + 1);
2909   sprintf (t1, "%s:%s", user, passwd);
2910
2911   t2 = (char *)alloca (BASE64_LENGTH (len1) + 1);
2912   base64_encode (t1, len1, t2);
2913
2914   return concat_strings ("Basic ", t2, (char *) 0);
2915 }
2916
2917 #define SKIP_WS(x) do {                         \
2918   while (c_isspace (*(x)))                        \
2919     ++(x);                                      \
2920 } while (0)
2921
2922 #ifdef ENABLE_DIGEST
2923 /* Dump the hexadecimal representation of HASH to BUF.  HASH should be
2924    an array of 16 bytes containing the hash keys, and BUF should be a
2925    buffer of 33 writable characters (32 for hex digits plus one for
2926    zero termination).  */
2927 static void
2928 dump_hash (char *buf, const unsigned char *hash)
2929 {
2930   int i;
2931
2932   for (i = 0; i < MD5_HASHLEN; i++, hash++)
2933     {
2934       *buf++ = XNUM_TO_digit (*hash >> 4);
2935       *buf++ = XNUM_TO_digit (*hash & 0xf);
2936     }
2937   *buf = '\0';
2938 }
2939
2940 /* Take the line apart to find the challenge, and compose a digest
2941    authorization header.  See RFC2069 section 2.1.2.  */
2942 static char *
2943 digest_authentication_encode (const char *au, const char *user,
2944                               const char *passwd, const char *method,
2945                               const char *path)
2946 {
2947   static char *realm, *opaque, *nonce;
2948   static struct {
2949     const char *name;
2950     char **variable;
2951   } options[] = {
2952     { "realm", &realm },
2953     { "opaque", &opaque },
2954     { "nonce", &nonce }
2955   };
2956   char *res;
2957   param_token name, value;
2958
2959   realm = opaque = nonce = NULL;
2960
2961   au += 6;                      /* skip over `Digest' */
2962   while (extract_param (&au, &name, &value, ','))
2963     {
2964       int i;
2965       for (i = 0; i < countof (options); i++)
2966         if (name.e - name.b == strlen (options[i].name)
2967             && 0 == strncmp (name.b, options[i].name, name.e - name.b))
2968           {
2969             *options[i].variable = strdupdelim (value.b, value.e);
2970             break;
2971           }
2972     }
2973   if (!realm || !nonce || !user || !passwd || !path || !method)
2974     {
2975       xfree_null (realm);
2976       xfree_null (opaque);
2977       xfree_null (nonce);
2978       return NULL;
2979     }
2980
2981   /* Calculate the digest value.  */
2982   {
2983     ALLOCA_MD5_CONTEXT (ctx);
2984     unsigned char hash[MD5_HASHLEN];
2985     char a1buf[MD5_HASHLEN * 2 + 1], a2buf[MD5_HASHLEN * 2 + 1];
2986     char response_digest[MD5_HASHLEN * 2 + 1];
2987
2988     /* A1BUF = H(user ":" realm ":" password) */
2989     gen_md5_init (ctx);
2990     gen_md5_update ((unsigned char *)user, strlen (user), ctx);
2991     gen_md5_update ((unsigned char *)":", 1, ctx);
2992     gen_md5_update ((unsigned char *)realm, strlen (realm), ctx);
2993     gen_md5_update ((unsigned char *)":", 1, ctx);
2994     gen_md5_update ((unsigned char *)passwd, strlen (passwd), ctx);
2995     gen_md5_finish (ctx, hash);
2996     dump_hash (a1buf, hash);
2997
2998     /* A2BUF = H(method ":" path) */
2999     gen_md5_init (ctx);
3000     gen_md5_update ((unsigned char *)method, strlen (method), ctx);
3001     gen_md5_update ((unsigned char *)":", 1, ctx);
3002     gen_md5_update ((unsigned char *)path, strlen (path), ctx);
3003     gen_md5_finish (ctx, hash);
3004     dump_hash (a2buf, hash);
3005
3006     /* RESPONSE_DIGEST = H(A1BUF ":" nonce ":" A2BUF) */
3007     gen_md5_init (ctx);
3008     gen_md5_update ((unsigned char *)a1buf, MD5_HASHLEN * 2, ctx);
3009     gen_md5_update ((unsigned char *)":", 1, ctx);
3010     gen_md5_update ((unsigned char *)nonce, strlen (nonce), ctx);
3011     gen_md5_update ((unsigned char *)":", 1, ctx);
3012     gen_md5_update ((unsigned char *)a2buf, MD5_HASHLEN * 2, ctx);
3013     gen_md5_finish (ctx, hash);
3014     dump_hash (response_digest, hash);
3015
3016     res = xmalloc (strlen (user)
3017                    + strlen (user)
3018                    + strlen (realm)
3019                    + strlen (nonce)
3020                    + strlen (path)
3021                    + 2 * MD5_HASHLEN /*strlen (response_digest)*/
3022                    + (opaque ? strlen (opaque) : 0)
3023                    + 128);
3024     sprintf (res, "Digest \
3025 username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", response=\"%s\"",
3026              user, realm, nonce, path, response_digest);
3027     if (opaque)
3028       {
3029         char *p = res + strlen (res);
3030         strcat (p, ", opaque=\"");
3031         strcat (p, opaque);
3032         strcat (p, "\"");
3033       }
3034   }
3035   return res;
3036 }
3037 #endif /* ENABLE_DIGEST */
3038
3039 /* Computing the size of a string literal must take into account that
3040    value returned by sizeof includes the terminating \0.  */
3041 #define STRSIZE(literal) (sizeof (literal) - 1)
3042
3043 /* Whether chars in [b, e) begin with the literal string provided as
3044    first argument and are followed by whitespace or terminating \0.
3045    The comparison is case-insensitive.  */
3046 #define STARTS(literal, b, e)                           \
3047   ((e) - (b) >= STRSIZE (literal)                       \
3048    && 0 == strncasecmp (b, literal, STRSIZE (literal))  \
3049    && ((e) - (b) == STRSIZE (literal)                   \
3050        || c_isspace (b[STRSIZE (literal)])))
3051
3052 static bool
3053 known_authentication_scheme_p (const char *hdrbeg, const char *hdrend)
3054 {
3055   return STARTS ("Basic", hdrbeg, hdrend)
3056 #ifdef ENABLE_DIGEST
3057     || STARTS ("Digest", hdrbeg, hdrend)
3058 #endif
3059 #ifdef ENABLE_NTLM
3060     || STARTS ("NTLM", hdrbeg, hdrend)
3061 #endif
3062     ;
3063 }
3064
3065 #undef STARTS
3066
3067 /* Create the HTTP authorization request header.  When the
3068    `WWW-Authenticate' response header is seen, according to the
3069    authorization scheme specified in that header (`Basic' and `Digest'
3070    are supported by the current implementation), produce an
3071    appropriate HTTP authorization request header.  */
3072 static char *
3073 create_authorization_line (const char *au, const char *user,
3074                            const char *passwd, const char *method,
3075                            const char *path, bool *finished)
3076 {
3077   /* We are called only with known schemes, so we can dispatch on the
3078      first letter. */
3079   switch (c_toupper (*au))
3080     {
3081     case 'B':                   /* Basic */
3082       *finished = true;
3083       return basic_authentication_encode (user, passwd);
3084 #ifdef ENABLE_DIGEST
3085     case 'D':                   /* Digest */
3086       *finished = true;
3087       return digest_authentication_encode (au, user, passwd, method, path);
3088 #endif
3089 #ifdef ENABLE_NTLM
3090     case 'N':                   /* NTLM */
3091       if (!ntlm_input (&pconn.ntlm, au))
3092         {
3093           *finished = true;
3094           return NULL;
3095         }
3096       return ntlm_output (&pconn.ntlm, user, passwd, finished);
3097 #endif
3098     default:
3099       /* We shouldn't get here -- this function should be only called
3100          with values approved by known_authentication_scheme_p.  */
3101       abort ();
3102     }
3103 }
3104 \f
3105 static void
3106 load_cookies (void)
3107 {
3108   if (!wget_cookie_jar)
3109     wget_cookie_jar = cookie_jar_new ();
3110   if (opt.cookies_input && !cookies_loaded_p)
3111     {
3112       cookie_jar_load (wget_cookie_jar, opt.cookies_input);
3113       cookies_loaded_p = true;
3114     }
3115 }
3116
3117 void
3118 save_cookies (void)
3119 {
3120   if (wget_cookie_jar)
3121     cookie_jar_save (wget_cookie_jar, opt.cookies_output);
3122 }
3123
3124 void
3125 http_cleanup (void)
3126 {
3127   xfree_null (pconn.host);
3128   if (wget_cookie_jar)
3129     cookie_jar_delete (wget_cookie_jar);
3130 }
3131
3132
3133 #ifdef TESTING
3134
3135 const char *
3136 test_parse_content_disposition()
3137 {
3138   int i;
3139   struct {
3140     char *hdrval;    
3141     char *opt_dir_prefix;
3142     char *filename;
3143     bool result;
3144   } test_array[] = {
3145     { "filename=\"file.ext\"", NULL, "file.ext", true },
3146     { "filename=\"file.ext\"", "somedir", "somedir/file.ext", true },
3147     { "attachment; filename=\"file.ext\"", NULL, "file.ext", true },
3148     { "attachment; filename=\"file.ext\"", "somedir", "somedir/file.ext", true },
3149     { "attachment; filename=\"file.ext\"; dummy", NULL, "file.ext", true },
3150     { "attachment; filename=\"file.ext\"; dummy", "somedir", "somedir/file.ext", true },
3151     { "attachment", NULL, NULL, false },
3152     { "attachment", "somedir", NULL, false },
3153   };
3154   
3155   for (i = 0; i < sizeof(test_array)/sizeof(test_array[0]); ++i) 
3156     {
3157       char *filename;
3158       bool res;
3159
3160       opt.dir_prefix = test_array[i].opt_dir_prefix;
3161       res = parse_content_disposition (test_array[i].hdrval, &filename);
3162
3163       mu_assert ("test_parse_content_disposition: wrong result", 
3164                  res == test_array[i].result
3165                  && (res == false 
3166                      || 0 == strcmp (test_array[i].filename, filename)));
3167     }
3168
3169   return NULL;
3170 }
3171
3172 #endif /* TESTING */
3173
3174 /*
3175  * vim: et sts=2 sw=2 cino+={s
3176  */
3177