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