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