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