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