]> sjero.net Git - wget/blob - src/http.c
[svn] Limit the maximum amount of memory allocated by fd_read_hunk and its
[wget] / src / http.c
1 /* HTTP support.
2    Copyright (C) 2005 Free Software Foundation, Inc.
3
4 This file is part of GNU Wget.
5
6 GNU Wget is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10
11 GNU Wget is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Wget; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 In addition, as a special exception, the Free Software Foundation
21 gives permission to link the code of its release of Wget with the
22 OpenSSL project's "OpenSSL" library (or with modified versions of it
23 that use the same license as the "OpenSSL" library), and distribute
24 the linked executables.  You must obey the GNU General Public License
25 in all respects for all of the code used other than "OpenSSL".  If you
26 modify this file, you may extend this exception to your version of the
27 file, but you are not obligated to do so.  If you do not wish to do
28 so, delete this exception statement from your version.  */
29
30 #include <config.h>
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <sys/types.h>
35 #ifdef HAVE_STRING_H
36 # include <string.h>
37 #else
38 # include <strings.h>
39 #endif
40 #ifdef HAVE_UNISTD_H
41 # include <unistd.h>
42 #endif
43 #include <assert.h>
44 #include <errno.h>
45 #if TIME_WITH_SYS_TIME
46 # include <sys/time.h>
47 # include <time.h>
48 #else
49 # if HAVE_SYS_TIME_H
50 #  include <sys/time.h>
51 # else
52 #  include <time.h>
53 # endif
54 #endif
55 #ifndef errno
56 extern int errno;
57 #endif
58
59 #include "wget.h"
60 #include "utils.h"
61 #include "url.h"
62 #include "host.h"
63 #include "retr.h"
64 #include "connect.h"
65 #include "netrc.h"
66 #ifdef HAVE_SSL
67 # include "gen_sslfunc.h"
68 #endif /* HAVE_SSL */
69 #include "cookies.h"
70 #ifdef USE_DIGEST
71 # include "gen-md5.h"
72 #endif
73 #include "convert.h"
74
75 extern char *version_string;
76 extern LARGE_INT total_downloaded_bytes;
77
78 extern FILE *output_stream;
79 extern int output_stream_regular;
80
81 #ifndef MIN
82 # define MIN(x, y) ((x) > (y) ? (y) : (x))
83 #endif
84
85 \f
86 static int cookies_loaded_p;
87 struct cookie_jar *wget_cookie_jar;
88
89 #define TEXTHTML_S "text/html"
90 #define TEXTXHTML_S "application/xhtml+xml"
91
92 /* Some status code validation macros: */
93 #define H_20X(x)        (((x) >= 200) && ((x) < 300))
94 #define H_PARTIAL(x)    ((x) == HTTP_STATUS_PARTIAL_CONTENTS)
95 #define H_REDIRECTED(x) ((x) == HTTP_STATUS_MOVED_PERMANENTLY           \
96                          || (x) == HTTP_STATUS_MOVED_TEMPORARILY        \
97                          || (x) == HTTP_STATUS_SEE_OTHER                \
98                          || (x) == HTTP_STATUS_TEMPORARY_REDIRECT)
99
100 /* HTTP/1.0 status codes from RFC1945, provided for reference.  */
101 /* Successful 2xx.  */
102 #define HTTP_STATUS_OK                  200
103 #define HTTP_STATUS_CREATED             201
104 #define HTTP_STATUS_ACCEPTED            202
105 #define HTTP_STATUS_NO_CONTENT          204
106 #define HTTP_STATUS_PARTIAL_CONTENTS    206
107
108 /* Redirection 3xx.  */
109 #define HTTP_STATUS_MULTIPLE_CHOICES    300
110 #define HTTP_STATUS_MOVED_PERMANENTLY   301
111 #define HTTP_STATUS_MOVED_TEMPORARILY   302
112 #define HTTP_STATUS_SEE_OTHER           303 /* from HTTP/1.1 */
113 #define HTTP_STATUS_NOT_MODIFIED        304
114 #define HTTP_STATUS_TEMPORARY_REDIRECT  307 /* from HTTP/1.1 */
115
116 /* Client error 4xx.  */
117 #define HTTP_STATUS_BAD_REQUEST         400
118 #define HTTP_STATUS_UNAUTHORIZED        401
119 #define HTTP_STATUS_FORBIDDEN           403
120 #define HTTP_STATUS_NOT_FOUND           404
121 #define HTTP_STATUS_RANGE_NOT_SATISFIABLE 416
122
123 /* Server errors 5xx.  */
124 #define HTTP_STATUS_INTERNAL            500
125 #define HTTP_STATUS_NOT_IMPLEMENTED     501
126 #define HTTP_STATUS_BAD_GATEWAY         502
127 #define HTTP_STATUS_UNAVAILABLE         503
128 \f
129 enum rp {
130   rel_none, rel_name, rel_value, rel_both
131 };
132
133 struct request {
134   const char *method;
135   char *arg;
136
137   struct request_header {
138     char *name, *value;
139     enum rp release_policy;
140   } *headers;
141   int hcount, hcapacity;
142 };
143
144 /* Create a new, empty request.  At least request_set_method must be
145    called before the request can be used.  */
146
147 static struct request *
148 request_new ()
149 {
150   struct request *req = xnew0 (struct request);
151   req->hcapacity = 8;
152   req->headers = xnew_array (struct request_header, req->hcapacity);
153   return req;
154 }
155
156 /* Set the request's method and its arguments.  METH should be a
157    literal string (or it should outlive the request) because it will
158    not be freed.  ARG will be freed by request_free.  */
159
160 static void
161 request_set_method (struct request *req, const char *meth, char *arg)
162 {
163   req->method = meth;
164   req->arg = arg;
165 }
166
167 /* Return the method string passed with the last call to
168    request_set_method.  */
169
170 static const char *
171 request_method (const struct request *req)
172 {
173   return req->method;
174 }
175
176 /* Free one header according to the release policy specified with
177    request_set_header.  */
178
179 static void
180 release_header (struct request_header *hdr)
181 {
182   switch (hdr->release_policy)
183     {
184     case rel_none:
185       break;
186     case rel_name:
187       xfree (hdr->name);
188       break;
189     case rel_value:
190       xfree (hdr->value);
191       break;
192     case rel_both:
193       xfree (hdr->name);
194       xfree (hdr->value);
195       break;
196     }
197 }
198
199 /* Set the request named NAME to VALUE.  Specifically, this means that
200    a "NAME: VALUE\r\n" header line will be used in the request.  If a
201    header with the same name previously existed in the request, its
202    value will be replaced by this one.
203
204    RELEASE_POLICY determines whether NAME and VALUE should be released
205    (freed) with request_free.  Allowed values are:
206
207     - rel_none     - don't free NAME or VALUE
208     - rel_name     - free NAME when done
209     - rel_value    - free VALUE when done
210     - rel_both     - free both NAME and VALUE when done
211
212    Setting release policy is useful when arguments come from different
213    sources.  For example:
214
215      // Don't free literal strings!
216      request_set_header (req, "Pragma", "no-cache", rel_none);
217
218      // Don't free a global variable, we'll need it later.
219      request_set_header (req, "Referer", opt.referer, rel_none);
220
221      // Value freshly allocated, free it when done.
222      request_set_header (req, "Range",
223                          aprintf ("bytes=%s-", number_to_static_string (hs->restval)),
224                          rel_value);
225    */
226
227 static void
228 request_set_header (struct request *req, char *name, char *value,
229                     enum rp release_policy)
230 {
231   struct request_header *hdr;
232   int i;
233   if (!value)
234     return;
235   for (i = 0; i < req->hcount; i++)
236     {
237       hdr = &req->headers[i];
238       if (0 == strcasecmp (name, hdr->name))
239         {
240           /* Replace existing header. */
241           release_header (hdr);
242           hdr->name = name;
243           hdr->value = value;
244           hdr->release_policy = release_policy;
245           return;
246         }
247     }
248
249   /* Install new header. */
250
251   if (req->hcount >= req->hcount)
252     {
253       req->hcapacity <<= 1;
254       req->headers = xrealloc (req->headers,
255                                req->hcapacity * sizeof (struct request_header));
256     }
257   hdr = &req->headers[req->hcount++];
258   hdr->name = name;
259   hdr->value = value;
260   hdr->release_policy = release_policy;
261 }
262
263 /* Like request_set_header, but sets the whole header line, as
264    provided by the user using the `--header' option.  For example,
265    request_set_user_header (req, "Foo: bar") works just like
266    request_set_header (req, "Foo", "bar").  */
267
268 static void
269 request_set_user_header (struct request *req, const char *header)
270 {
271   char *name;
272   const char *p = strchr (header, ':');
273   if (!p)
274     return;
275   BOUNDED_TO_ALLOCA (header, p, name);
276   ++p;
277   while (ISSPACE (*p))
278     ++p;
279   request_set_header (req, xstrdup (name), (char *) p, rel_name);
280 }
281
282 #define APPEND(p, str) do {                     \
283   int A_len = strlen (str);                     \
284   memcpy (p, str, A_len);                       \
285   p += A_len;                                   \
286 } while (0)
287
288 /* Construct the request and write it to FD using fd_write.  */
289
290 static int
291 request_send (const struct request *req, int fd)
292 {
293   char *request_string, *p;
294   int i, size, write_error;
295
296   /* Count the request size. */
297   size = 0;
298
299   /* METHOD " " ARG " " "HTTP/1.0" "\r\n" */
300   size += strlen (req->method) + 1 + strlen (req->arg) + 1 + 8 + 2;
301
302   for (i = 0; i < req->hcount; i++)
303     {
304       struct request_header *hdr = &req->headers[i];
305       /* NAME ": " VALUE "\r\n" */
306       size += strlen (hdr->name) + 2 + strlen (hdr->value) + 2;
307     }
308
309   /* "\r\n\0" */
310   size += 3;
311
312   p = request_string = alloca_array (char, size);
313
314   /* Generate the request. */
315
316   APPEND (p, req->method); *p++ = ' ';
317   APPEND (p, req->arg);    *p++ = ' ';
318   memcpy (p, "HTTP/1.0\r\n", 10); p += 10;
319
320   for (i = 0; i < req->hcount; i++)
321     {
322       struct request_header *hdr = &req->headers[i];
323       APPEND (p, hdr->name);
324       *p++ = ':', *p++ = ' ';
325       APPEND (p, hdr->value);
326       *p++ = '\r', *p++ = '\n';
327     }
328
329   *p++ = '\r', *p++ = '\n', *p++ = '\0';
330   assert (p - request_string == size);
331
332 #undef APPEND
333
334   DEBUGP (("\n---request begin---\n%s---request end---\n", request_string));
335
336   /* Send the request to the server. */
337
338   write_error = fd_write (fd, request_string, size - 1, -1);
339   if (write_error < 0)
340     logprintf (LOG_VERBOSE, _("Failed writing HTTP request: %s.\n"),
341                strerror (errno));
342   return write_error;
343 }
344
345 /* Release the resources used by REQ. */
346
347 static void
348 request_free (struct request *req)
349 {
350   int i;
351   xfree_null (req->arg);
352   for (i = 0; i < req->hcount; i++)
353     release_header (&req->headers[i]);
354   xfree_null (req->headers);
355   xfree (req);
356 }
357
358 /* Send the contents of FILE_NAME to SOCK/SSL.  Make sure that exactly
359    PROMISED_SIZE bytes are sent over the wire -- if the file is
360    longer, read only that much; if the file is shorter, report an error.  */
361
362 static int
363 post_file (int sock, const char *file_name, wgint promised_size)
364 {
365   static char chunk[8192];
366   wgint written = 0;
367   int write_error;
368   FILE *fp;
369
370   DEBUGP (("[writing POST file %s ... ", file_name));
371
372   fp = fopen (file_name, "rb");
373   if (!fp)
374     return -1;
375   while (!feof (fp) && written < promised_size)
376     {
377       int towrite;
378       int length = fread (chunk, 1, sizeof (chunk), fp);
379       if (length == 0)
380         break;
381       towrite = MIN (promised_size - written, length);
382       write_error = fd_write (sock, chunk, towrite, -1);
383       if (write_error < 0)
384         {
385           fclose (fp);
386           return -1;
387         }
388       written += towrite;
389     }
390   fclose (fp);
391
392   /* If we've written less than was promised, report a (probably
393      nonsensical) error rather than break the promise.  */
394   if (written < promised_size)
395     {
396       errno = EINVAL;
397       return -1;
398     }
399
400   assert (written == promised_size);
401   DEBUGP (("done]\n"));
402   return 0;
403 }
404 \f
405 static const char *
406 response_head_terminator (const char *hunk, int oldlen, int peeklen)
407 {
408   const char *start, *end;
409
410   /* If at first peek, verify whether HUNK starts with "HTTP".  If
411      not, this is a HTTP/0.9 request and we must bail out without
412      reading anything.  */
413   if (oldlen == 0 && 0 != memcmp (hunk, "HTTP", MIN (peeklen, 4)))
414     return hunk;
415
416   if (oldlen < 4)
417     start = hunk;
418   else
419     start = hunk + oldlen - 4;
420   end = hunk + oldlen + peeklen;
421
422   for (; start < end - 1; start++)
423     if (*start == '\n')
424       {
425         if (start < end - 2
426             && start[1] == '\r'
427             && start[2] == '\n')
428           return start + 3;
429         if (start[1] == '\n')
430           return start + 2;
431       }
432   return NULL;
433 }
434
435 /* The maximum size of a single HTTP response we care to read.  This
436    is not meant to impose an arbitrary limit, but to protect the user
437    from Wget slurping up available memory upon encountering malicious
438    or buggy server output.  Define it to 0 to remove the limit.  */
439
440 #define HTTP_RESPONSE_MAX_SIZE 65536
441
442 /* Read the HTTP request head from FD and return it.  The error
443    conditions are the same as with fd_read_hunk.
444
445    To support HTTP/0.9 responses, this function tries to make sure
446    that the data begins with "HTTP".  If this is not the case, no data
447    is read and an empty request is returned, so that the remaining
448    data can be treated as body.  */
449
450 static char *
451 read_http_response_head (int fd)
452 {
453   return fd_read_hunk (fd, response_head_terminator, 512,
454                        HTTP_RESPONSE_MAX_SIZE);
455 }
456
457 struct response {
458   /* The response data. */
459   const char *data;
460
461   /* The array of pointers that indicate where each header starts.
462      For example, given this HTTP response:
463
464        HTTP/1.0 200 Ok
465        Description: some
466         text
467        Etag: x
468
469      The headers are located like this:
470
471      "HTTP/1.0 200 Ok\r\nDescription: some\r\n text\r\nEtag: x\r\n\r\n"
472      ^                   ^                             ^          ^
473      headers[0]          headers[1]                    headers[2] headers[3]
474
475      I.e. headers[0] points to the beginning of the request,
476      headers[1] points to the end of the first header and the
477      beginning of the second one, etc.  */
478
479   const char **headers;
480 };
481
482 /* Create a new response object from the text of the HTTP response,
483    available in HEAD.  That text is automatically split into
484    constituent header lines for fast retrieval using
485    resp_header_*.  */
486
487 static struct response *
488 resp_new (const char *head)
489 {
490   const char *hdr;
491   int count, size;
492
493   struct response *resp = xnew0 (struct response);
494   resp->data = head;
495
496   if (*head == '\0')
497     {
498       /* Empty head means that we're dealing with a headerless
499          (HTTP/0.9) response.  In that case, don't set HEADERS at
500          all.  */
501       return resp;
502     }
503
504   /* Split HEAD into header lines, so that resp_header_* functions
505      don't need to do this over and over again.  */
506
507   size = count = 0;
508   hdr = head;
509   while (1)
510     {
511       DO_REALLOC (resp->headers, size, count + 1, const char *);
512       resp->headers[count++] = hdr;
513
514       /* Break upon encountering an empty line. */
515       if (!hdr[0] || (hdr[0] == '\r' && hdr[1] == '\n') || hdr[0] == '\n')
516         break;
517
518       /* Find the end of HDR, including continuations. */
519       do
520         {
521           const char *end = strchr (hdr, '\n');
522           if (end)
523             hdr = end + 1;
524           else
525             hdr += strlen (hdr);
526         }
527       while (*hdr == ' ' || *hdr == '\t');
528     }
529   DO_REALLOC (resp->headers, size, count + 1, const char *);
530   resp->headers[count] = NULL;
531
532   return resp;
533 }
534
535 /* Locate the header named NAME in the request data, starting with
536    position START.  This allows the code to loop through the request
537    data, filtering for all requests of a given name.  Returns the
538    found position, or -1 for failure.  The code that uses this
539    function typically looks like this:
540
541      for (pos = 0; (pos = resp_header_locate (...)) != -1; pos++)
542        ... do something with header ...
543
544    If you only care about one header, use resp_header_get instead of
545    this function.  */
546
547 static int
548 resp_header_locate (const struct response *resp, const char *name, int start,
549                     const char **begptr, const char **endptr)
550 {
551   int i;
552   const char **headers = resp->headers;
553   int name_len;
554
555   if (!headers || !headers[1])
556     return -1;
557
558   name_len = strlen (name);
559   if (start > 0)
560     i = start;
561   else
562     i = 1;
563
564   for (; headers[i + 1]; i++)
565     {
566       const char *b = headers[i];
567       const char *e = headers[i + 1];
568       if (e - b > name_len
569           && b[name_len] == ':'
570           && 0 == strncasecmp (b, name, name_len))
571         {
572           b += name_len + 1;
573           while (b < e && ISSPACE (*b))
574             ++b;
575           while (b < e && ISSPACE (e[-1]))
576             --e;
577           *begptr = b;
578           *endptr = e;
579           return i;
580         }
581     }
582   return -1;
583 }
584
585 /* Find and retrieve the header named NAME in the request data.  If
586    found, set *BEGPTR to its starting, and *ENDPTR to its ending
587    position, and return 1.  Otherwise return 0.
588
589    This function is used as a building block for resp_header_copy
590    and resp_header_strdup.  */
591
592 static int
593 resp_header_get (const struct response *resp, const char *name,
594                  const char **begptr, const char **endptr)
595 {
596   int pos = resp_header_locate (resp, name, 0, begptr, endptr);
597   return pos != -1;
598 }
599
600 /* Copy the response header named NAME to buffer BUF, no longer than
601    BUFSIZE (BUFSIZE includes the terminating 0).  If the header
602    exists, 1 is returned, otherwise 0.  If there should be no limit on
603    the size of the header, use resp_header_strdup instead.
604
605    If BUFSIZE is 0, no data is copied, but the boolean indication of
606    whether the header is present is still returned.  */
607
608 static int
609 resp_header_copy (const struct response *resp, const char *name,
610                   char *buf, int bufsize)
611 {
612   const char *b, *e;
613   if (!resp_header_get (resp, name, &b, &e))
614     return 0;
615   if (bufsize)
616     {
617       int len = MIN (e - b, bufsize - 1);
618       memcpy (buf, b, len);
619       buf[len] = '\0';
620     }
621   return 1;
622 }
623
624 /* Return the value of header named NAME in RESP, allocated with
625    malloc.  If such a header does not exist in RESP, return NULL.  */
626
627 static char *
628 resp_header_strdup (const struct response *resp, const char *name)
629 {
630   const char *b, *e;
631   if (!resp_header_get (resp, name, &b, &e))
632     return NULL;
633   return strdupdelim (b, e);
634 }
635
636 /* Parse the HTTP status line, which is of format:
637
638    HTTP-Version SP Status-Code SP Reason-Phrase
639
640    The function returns the status-code, or -1 if the status line
641    appears malformed.  The pointer to "reason-phrase" message is
642    returned in *MESSAGE.  */
643
644 static int
645 resp_status (const struct response *resp, char **message)
646 {
647   int status;
648   const char *p, *end;
649
650   if (!resp->headers)
651     {
652       /* For a HTTP/0.9 response, assume status 200. */
653       if (message)
654         *message = xstrdup (_("No headers, assuming HTTP/0.9"));
655       return 200;
656     }
657
658   p = resp->headers[0];
659   end = resp->headers[1];
660
661   if (!end)
662     return -1;
663
664   /* "HTTP" */
665   if (end - p < 4 || 0 != strncmp (p, "HTTP", 4))
666     return -1;
667   p += 4;
668
669   /* Match the HTTP version.  This is optional because Gnutella
670      servers have been reported to not specify HTTP version.  */
671   if (p < end && *p == '/')
672     {
673       ++p;
674       while (p < end && ISDIGIT (*p))
675         ++p;
676       if (p < end && *p == '.')
677         ++p; 
678       while (p < end && ISDIGIT (*p))
679         ++p;
680     }
681
682   while (p < end && ISSPACE (*p))
683     ++p;
684   if (end - p < 3 || !ISDIGIT (p[0]) || !ISDIGIT (p[1]) || !ISDIGIT (p[2]))
685     return -1;
686
687   status = 100 * (p[0] - '0') + 10 * (p[1] - '0') + (p[2] - '0');
688   p += 3;
689
690   if (message)
691     {
692       while (p < end && ISSPACE (*p))
693         ++p;
694       while (p < end && ISSPACE (end[-1]))
695         --end;
696       *message = strdupdelim (p, end);
697     }
698
699   return status;
700 }
701
702 /* Release the resources used by RESP.  */
703
704 static void
705 resp_free (struct response *resp)
706 {
707   xfree_null (resp->headers);
708   xfree (resp);
709 }
710
711 /* Print [b, e) to the log, omitting the trailing CRLF.  */
712
713 static void
714 print_server_response_1 (const char *prefix, const char *b, const char *e)
715 {
716   char *ln;
717   if (b < e && e[-1] == '\n')
718     --e;
719   if (b < e && e[-1] == '\r')
720     --e;
721   BOUNDED_TO_ALLOCA (b, e, ln);
722   logprintf (LOG_VERBOSE, "%s%s\n", prefix, escnonprint (ln));
723 }
724
725 /* Print the server response, line by line, omitting the trailing CR
726    characters, prefixed with PREFIX.  */
727
728 static void
729 print_server_response (const struct response *resp, const char *prefix)
730 {
731   int i;
732   if (!resp->headers)
733     return;
734   for (i = 0; resp->headers[i + 1]; i++)
735     print_server_response_1 (prefix, resp->headers[i], resp->headers[i + 1]);
736 }
737
738 /* Parse the `Content-Range' header and extract the information it
739    contains.  Returns 1 if successful, -1 otherwise.  */
740 static int
741 parse_content_range (const char *hdr, wgint *first_byte_ptr,
742                      wgint *last_byte_ptr, wgint *entity_length_ptr)
743 {
744   wgint num;
745
746   /* Ancient versions of Netscape proxy server, presumably predating
747      rfc2068, sent out `Content-Range' without the "bytes"
748      specifier.  */
749   if (!strncasecmp (hdr, "bytes", 5))
750     {
751       hdr += 5;
752       /* "JavaWebServer/1.1.1" sends "bytes: x-y/z", contrary to the
753          HTTP spec. */
754       if (*hdr == ':')
755         ++hdr;
756       while (ISSPACE (*hdr))
757         ++hdr;
758       if (!*hdr)
759         return 0;
760     }
761   if (!ISDIGIT (*hdr))
762     return 0;
763   for (num = 0; ISDIGIT (*hdr); hdr++)
764     num = 10 * num + (*hdr - '0');
765   if (*hdr != '-' || !ISDIGIT (*(hdr + 1)))
766     return 0;
767   *first_byte_ptr = num;
768   ++hdr;
769   for (num = 0; ISDIGIT (*hdr); hdr++)
770     num = 10 * num + (*hdr - '0');
771   if (*hdr != '/' || !ISDIGIT (*(hdr + 1)))
772     return 0;
773   *last_byte_ptr = num;
774   ++hdr;
775   for (num = 0; ISDIGIT (*hdr); hdr++)
776     num = 10 * num + (*hdr - '0');
777   *entity_length_ptr = num;
778   return 1;
779 }
780
781 /* Read the body of the request, but don't store it anywhere and don't
782    display a progress gauge.  This is useful for reading the error
783    responses whose bodies don't need to be displayed or logged, but
784    which need to be read anyway.  */
785
786 static void
787 skip_short_body (int fd, wgint contlen)
788 {
789   /* Skipping the body doesn't make sense if the content length is
790      unknown because, in that case, persistent connections cannot be
791      used.  (#### This is not the case with HTTP/1.1 where they can
792      still be used with the magic of the "chunked" transfer!)  */
793   if (contlen == -1)
794     return;
795   DEBUGP (("Skipping %s bytes of body data... ", number_to_static_string (contlen)));
796
797   while (contlen > 0)
798     {
799       char dlbuf[512];
800       int ret = fd_read (fd, dlbuf, MIN (contlen, sizeof (dlbuf)), -1);
801       if (ret <= 0)
802         return;
803       contlen -= ret;
804     }
805   DEBUGP (("done.\n"));
806 }
807 \f
808 /* Persistent connections.  Currently, we cache the most recently used
809    connection as persistent, provided that the HTTP server agrees to
810    make it such.  The persistence data is stored in the variables
811    below.  Ideally, it should be possible to cache an arbitrary fixed
812    number of these connections.  */
813
814 /* Whether a persistent connection is active. */
815 static int pconn_active;
816
817 static struct {
818   /* The socket of the connection.  */
819   int socket;
820
821   /* Host and port of the currently active persistent connection. */
822   char *host;
823   int port;
824
825   /* Whether a ssl handshake has occoured on this connection.  */
826   int ssl;
827 } pconn;
828
829 /* Mark the persistent connection as invalid and free the resources it
830    uses.  This is used by the CLOSE_* macros after they forcefully
831    close a registered persistent connection.  */
832
833 static void
834 invalidate_persistent (void)
835 {
836   DEBUGP (("Disabling further reuse of socket %d.\n", pconn.socket));
837   pconn_active = 0;
838   fd_close (pconn.socket);
839   xfree (pconn.host);
840   xzero (pconn);
841 }
842
843 /* Register FD, which should be a TCP/IP connection to HOST:PORT, as
844    persistent.  This will enable someone to use the same connection
845    later.  In the context of HTTP, this must be called only AFTER the
846    response has been received and the server has promised that the
847    connection will remain alive.
848
849    If a previous connection was persistent, it is closed. */
850
851 static void
852 register_persistent (const char *host, int port, int fd, int ssl)
853 {
854   if (pconn_active)
855     {
856       if (pconn.socket == fd)
857         {
858           /* The connection FD is already registered. */
859           return;
860         }
861       else
862         {
863           /* The old persistent connection is still active; close it
864              first.  This situation arises whenever a persistent
865              connection exists, but we then connect to a different
866              host, and try to register a persistent connection to that
867              one.  */
868           invalidate_persistent ();
869         }
870     }
871
872   pconn_active = 1;
873   pconn.socket = fd;
874   pconn.host = xstrdup (host);
875   pconn.port = port;
876   pconn.ssl = ssl;
877
878   DEBUGP (("Registered socket %d for persistent reuse.\n", fd));
879 }
880
881 /* Return non-zero if a persistent connection is available for
882    connecting to HOST:PORT.  */
883
884 static int
885 persistent_available_p (const char *host, int port, int ssl,
886                         int *host_lookup_failed)
887 {
888   /* First, check whether a persistent connection is active at all.  */
889   if (!pconn_active)
890     return 0;
891
892   /* If we want SSL and the last connection wasn't or vice versa,
893      don't use it.  Checking for host and port is not enough because
894      HTTP and HTTPS can apparently coexist on the same port.  */
895   if (ssl != pconn.ssl)
896     return 0;
897
898   /* If we're not connecting to the same port, we're not interested. */
899   if (port != pconn.port)
900     return 0;
901
902   /* If the host is the same, we're in business.  If not, there is
903      still hope -- read below.  */
904   if (0 != strcasecmp (host, pconn.host))
905     {
906       /* If pconn.socket is already talking to HOST, we needn't
907          reconnect.  This happens often when both sites are virtual
908          hosts distinguished only by name and served by the same
909          network interface, and hence the same web server (possibly
910          set up by the ISP and serving many different web sites).
911          This admittedly non-standard optimization does not contradict
912          HTTP and works well with popular server software.  */
913
914       int found;
915       ip_address ip;
916       struct address_list *al;
917
918       if (ssl)
919         /* Don't try to talk to two different SSL sites over the same
920            secure connection!  (Besides, it's not clear if name-based
921            virtual hosting is even possible with SSL.)  */
922         return 0;
923
924       /* If pconn.socket's peer is one of the IP addresses HOST
925          resolves to, pconn.socket is for all intents and purposes
926          already talking to HOST.  */
927
928       if (!socket_ip_address (pconn.socket, &ip, ENDPOINT_PEER))
929         {
930           /* Can't get the peer's address -- something must be very
931              wrong with the connection.  */
932           invalidate_persistent ();
933           return 0;
934         }
935       al = lookup_host (host, 0);
936       if (!al)
937         {
938           *host_lookup_failed = 1;
939           return 0;
940         }
941
942       found = address_list_contains (al, &ip);
943       address_list_release (al);
944
945       if (!found)
946         return 0;
947
948       /* The persistent connection's peer address was found among the
949          addresses HOST resolved to; therefore, pconn.sock is in fact
950          already talking to HOST -- no need to reconnect.  */
951     }
952
953   /* Finally, check whether the connection is still open.  This is
954      important because most server implement a liberal (short) timeout
955      on persistent connections.  Wget can of course always reconnect
956      if the connection doesn't work out, but it's nicer to know in
957      advance.  This test is a logical followup of the first test, but
958      is "expensive" and therefore placed at the end of the list.  */
959
960   if (!test_socket_open (pconn.socket))
961     {
962       /* Oops, the socket is no longer open.  Now that we know that,
963          let's invalidate the persistent connection before returning
964          0.  */
965       invalidate_persistent ();
966       return 0;
967     }
968
969   return 1;
970 }
971
972 /* The idea behind these two CLOSE macros is to distinguish between
973    two cases: one when the job we've been doing is finished, and we
974    want to close the connection and leave, and two when something is
975    seriously wrong and we're closing the connection as part of
976    cleanup.
977
978    In case of keep_alive, CLOSE_FINISH should leave the connection
979    open, while CLOSE_INVALIDATE should still close it.
980
981    Note that the semantics of the flag `keep_alive' is "this
982    connection *will* be reused (the server has promised not to close
983    the connection once we're done)", while the semantics of
984    `pc_active_p && (fd) == pc_last_fd' is "we're *now* using an
985    active, registered connection".  */
986
987 #define CLOSE_FINISH(fd) do {                   \
988   if (!keep_alive)                              \
989     {                                           \
990       if (pconn_active && (fd) == pconn.socket) \
991         invalidate_persistent ();               \
992       else                                      \
993         {                                       \
994           fd_close (fd);                        \
995           fd = -1;                              \
996         }                                       \
997     }                                           \
998 } while (0)
999
1000 #define CLOSE_INVALIDATE(fd) do {               \
1001   if (pconn_active && (fd) == pconn.socket)     \
1002     invalidate_persistent ();                   \
1003   else                                          \
1004     fd_close (fd);                              \
1005   fd = -1;                                      \
1006 } while (0)
1007 \f
1008 struct http_stat
1009 {
1010   wgint len;                    /* received length */
1011   wgint contlen;                        /* expected length */
1012   wgint restval;                        /* the restart value */
1013   int res;                      /* the result of last read */
1014   char *newloc;                 /* new location (redirection) */
1015   char *remote_time;            /* remote time-stamp string */
1016   char *error;                  /* textual HTTP error */
1017   int statcode;                 /* status code */
1018   wgint rd_size;                        /* amount of data read from socket */
1019   double dltime;                /* time it took to download the data */
1020   const char *referer;          /* value of the referer header. */
1021   char **local_file;            /* local file. */
1022 };
1023
1024 static void
1025 free_hstat (struct http_stat *hs)
1026 {
1027   xfree_null (hs->newloc);
1028   xfree_null (hs->remote_time);
1029   xfree_null (hs->error);
1030
1031   /* Guard against being called twice. */
1032   hs->newloc = NULL;
1033   hs->remote_time = NULL;
1034   hs->error = NULL;
1035 }
1036
1037 static char *create_authorization_line PARAMS ((const char *, const char *,
1038                                                 const char *, const char *,
1039                                                 const char *));
1040 static char *basic_authentication_encode PARAMS ((const char *, const char *));
1041 static int known_authentication_scheme_p PARAMS ((const char *));
1042
1043 time_t http_atotm PARAMS ((const char *));
1044
1045 #define BEGINS_WITH(line, string_constant)                              \
1046   (!strncasecmp (line, string_constant, sizeof (string_constant) - 1)   \
1047    && (ISSPACE (line[sizeof (string_constant) - 1])                     \
1048        || !line[sizeof (string_constant) - 1]))
1049
1050 /* Retrieve a document through HTTP protocol.  It recognizes status
1051    code, and correctly handles redirections.  It closes the network
1052    socket.  If it receives an error from the functions below it, it
1053    will print it if there is enough information to do so (almost
1054    always), returning the error to the caller (i.e. http_loop).
1055
1056    Various HTTP parameters are stored to hs.
1057
1058    If PROXY is non-NULL, the connection will be made to the proxy
1059    server, and u->url will be requested.  */
1060 static uerr_t
1061 gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy)
1062 {
1063   struct request *req;
1064
1065   char *type;
1066   char *user, *passwd;
1067   char *proxyauth;
1068   int statcode;
1069   int write_error;
1070   wgint contlen, contrange;
1071   struct url *conn;
1072   FILE *fp;
1073
1074   int sock = -1;
1075   int flags;
1076
1077   /* Whether authorization has been already tried. */
1078   int auth_tried_already;
1079
1080   /* Whether our connection to the remote host is through SSL.  */
1081   int using_ssl = 0;
1082
1083   char *head;
1084   struct response *resp;
1085   char hdrval[256];
1086   char *message;
1087
1088   /* Whether this connection will be kept alive after the HTTP request
1089      is done. */
1090   int keep_alive;
1091
1092   /* Whether keep-alive should be inhibited. */
1093   int inhibit_keep_alive = !opt.http_keep_alive || opt.ignore_length;
1094
1095   /* Headers sent when using POST. */
1096   wgint post_data_size = 0;
1097
1098   int host_lookup_failed = 0;
1099
1100 #ifdef HAVE_SSL
1101   if (u->scheme == SCHEME_HTTPS)
1102     {
1103       /* Initialize the SSL context.  After this has once been done,
1104          it becomes a no-op.  */
1105       switch (ssl_init ())
1106         {
1107         case SSLERRCTXCREATE:
1108           /* this is fatal */
1109           logprintf (LOG_NOTQUIET, _("Failed to set up an SSL context\n"));
1110           return SSLERRCTXCREATE;
1111         case SSLERRCERTFILE:
1112           /* try without certfile */
1113           logprintf (LOG_NOTQUIET,
1114                      _("Failed to load certificates from %s\n"),
1115                      opt.sslcertfile);
1116           logprintf (LOG_NOTQUIET,
1117                      _("Trying without the specified certificate\n"));
1118           break;
1119         case SSLERRCERTKEY:
1120           logprintf (LOG_NOTQUIET,
1121                      _("Failed to get certificate key from %s\n"),
1122                      opt.sslcertkey);
1123           logprintf (LOG_NOTQUIET,
1124                      _("Trying without the specified certificate\n"));
1125           break;
1126         default:
1127           break;
1128         }
1129     }
1130 #endif /* HAVE_SSL */
1131
1132   if (!(*dt & HEAD_ONLY))
1133     /* If we're doing a GET on the URL, as opposed to just a HEAD, we need to
1134        know the local filename so we can save to it. */
1135     assert (*hs->local_file != NULL);
1136
1137   auth_tried_already = 0;
1138
1139   /* Initialize certain elements of struct http_stat.  */
1140   hs->len = 0L;
1141   hs->contlen = -1;
1142   hs->res = -1;
1143   hs->newloc = NULL;
1144   hs->remote_time = NULL;
1145   hs->error = NULL;
1146
1147   conn = u;
1148
1149   /* Prepare the request to send. */
1150
1151   req = request_new ();
1152   {
1153     const char *meth = "GET";
1154     if (*dt & HEAD_ONLY)
1155       meth = "HEAD";
1156     else if (opt.post_file_name || opt.post_data)
1157       meth = "POST";
1158     /* Use the full path, i.e. one that includes the leading slash and
1159        the query string.  E.g. if u->path is "foo/bar" and u->query is
1160        "param=value", full_path will be "/foo/bar?param=value".  */
1161     request_set_method (req, meth,
1162                         proxy ? xstrdup (u->url) : url_full_path (u));
1163   }
1164
1165   request_set_header (req, "Referer", (char *) hs->referer, rel_none);
1166   if (*dt & SEND_NOCACHE)
1167     request_set_header (req, "Pragma", "no-cache", rel_none);
1168   if (hs->restval)
1169     request_set_header (req, "Range",
1170                         aprintf ("bytes=%s-",
1171                                  number_to_static_string (hs->restval)),
1172                         rel_value);
1173   if (opt.useragent)
1174     request_set_header (req, "User-Agent", opt.useragent, rel_none);
1175   else
1176     request_set_header (req, "User-Agent",
1177                         aprintf ("Wget/%s", version_string), rel_value);
1178   request_set_header (req, "Accept", "*/*", rel_none);
1179
1180   /* Find the username and password for authentication. */
1181   user = u->user;
1182   passwd = u->passwd;
1183   search_netrc (u->host, (const char **)&user, (const char **)&passwd, 0);
1184   user = user ? user : opt.http_user;
1185   passwd = passwd ? passwd : opt.http_passwd;
1186
1187   if (user && passwd)
1188     {
1189       /* We have the username and the password, but haven't tried
1190          any authorization yet.  Let's see if the "Basic" method
1191          works.  If not, we'll come back here and construct a
1192          proper authorization method with the right challenges.
1193
1194          If we didn't employ this kind of logic, every URL that
1195          requires authorization would have to be processed twice,
1196          which is very suboptimal and generates a bunch of false
1197          "unauthorized" errors in the server log.
1198
1199          #### But this logic also has a serious problem when used
1200          with stronger authentications: we *first* transmit the
1201          username and the password in clear text, and *then* attempt a
1202          stronger authentication scheme.  That cannot be right!  We
1203          are only fortunate that almost everyone still uses the
1204          `Basic' scheme anyway.
1205
1206          There should be an option to prevent this from happening, for
1207          those who use strong authentication schemes and value their
1208          passwords.  */
1209       request_set_header (req, "Authorization",
1210                           basic_authentication_encode (user, passwd),
1211                           rel_value);
1212     }
1213
1214   proxyauth = NULL;
1215   if (proxy)
1216     {
1217       char *proxy_user, *proxy_passwd;
1218       /* For normal username and password, URL components override
1219          command-line/wgetrc parameters.  With proxy
1220          authentication, it's the reverse, because proxy URLs are
1221          normally the "permanent" ones, so command-line args
1222          should take precedence.  */
1223       if (opt.proxy_user && opt.proxy_passwd)
1224         {
1225           proxy_user = opt.proxy_user;
1226           proxy_passwd = opt.proxy_passwd;
1227         }
1228       else
1229         {
1230           proxy_user = proxy->user;
1231           proxy_passwd = proxy->passwd;
1232         }
1233       /* #### This does not appear right.  Can't the proxy request,
1234          say, `Digest' authentication?  */
1235       if (proxy_user && proxy_passwd)
1236         proxyauth = basic_authentication_encode (proxy_user, proxy_passwd);
1237
1238       /* If we're using a proxy, we will be connecting to the proxy
1239          server.  */
1240       conn = proxy;
1241
1242       /* Proxy authorization over SSL is handled below. */
1243 #ifdef HAVE_SSL
1244       if (u->scheme != SCHEME_HTTPS)
1245 #endif
1246         request_set_header (req, "Proxy-Authorization", proxyauth, rel_value);
1247     }
1248
1249   {
1250     /* Whether we need to print the host header with braces around
1251        host, e.g. "Host: [3ffe:8100:200:2::2]:1234" instead of the
1252        usual "Host: symbolic-name:1234". */
1253     int squares = strchr (u->host, ':') != NULL;
1254     if (u->port == scheme_default_port (u->scheme))
1255       request_set_header (req, "Host",
1256                           aprintf (squares ? "[%s]" : "%s", u->host),
1257                           rel_value);
1258     else
1259       request_set_header (req, "Host",
1260                           aprintf (squares ? "[%s]:%d" : "%s:%d",
1261                                    u->host, u->port),
1262                           rel_value);
1263   }
1264
1265   if (!inhibit_keep_alive)
1266     request_set_header (req, "Connection", "Keep-Alive", rel_none);
1267
1268   if (opt.cookies)
1269     request_set_header (req, "Cookie",
1270                         cookie_header (wget_cookie_jar,
1271                                        u->host, u->port, u->path,
1272 #ifdef HAVE_SSL
1273                                        u->scheme == SCHEME_HTTPS
1274 #else
1275                                        0
1276 #endif
1277                                        ),
1278                         rel_value);
1279
1280   if (opt.post_data || opt.post_file_name)
1281     {
1282       request_set_header (req, "Content-Type",
1283                           "application/x-www-form-urlencoded", rel_none);
1284       if (opt.post_data)
1285         post_data_size = strlen (opt.post_data);
1286       else
1287         {
1288           post_data_size = file_size (opt.post_file_name);
1289           if (post_data_size == -1)
1290             {
1291               logprintf (LOG_NOTQUIET, "POST data file missing: %s\n",
1292                          opt.post_file_name);
1293               post_data_size = 0;
1294             }
1295         }
1296       request_set_header (req, "Content-Length",
1297                           xstrdup (number_to_static_string (post_data_size)),
1298                           rel_value);
1299     }
1300
1301   /* Add the user headers. */
1302   if (opt.user_headers)
1303     {
1304       int i;
1305       for (i = 0; opt.user_headers[i]; i++)
1306         request_set_user_header (req, opt.user_headers[i]);
1307     }
1308
1309  retry_with_auth:
1310   /* We need to come back here when the initial attempt to retrieve
1311      without authorization header fails.  (Expected to happen at least
1312      for the Digest authorization scheme.)  */
1313
1314   keep_alive = 0;
1315
1316   /* Establish the connection.  */
1317
1318   if (!inhibit_keep_alive)
1319     {
1320       /* Look for a persistent connection to target host, unless a
1321          proxy is used.  The exception is when SSL is in use, in which
1322          case the proxy is nothing but a passthrough to the target
1323          host, registered as a connection to the latter.  */
1324       struct url *relevant = conn;
1325 #ifdef HAVE_SSL
1326       if (u->scheme == SCHEME_HTTPS)
1327         relevant = u;
1328 #endif
1329
1330       if (persistent_available_p (relevant->host, relevant->port,
1331 #ifdef HAVE_SSL
1332                                   relevant->scheme == SCHEME_HTTPS,
1333 #else
1334                                   0,
1335 #endif
1336                                   &host_lookup_failed))
1337         {
1338           sock = pconn.socket;
1339           using_ssl = pconn.ssl;
1340           logprintf (LOG_VERBOSE, _("Reusing existing connection to %s:%d.\n"),
1341                      escnonprint (pconn.host), pconn.port);
1342           DEBUGP (("Reusing fd %d.\n", sock));
1343         }
1344     }
1345
1346   if (sock < 0)
1347     {
1348       /* In its current implementation, persistent_available_p will
1349          look up conn->host in some cases.  If that lookup failed, we
1350          don't need to bother with connect_to_host.  */
1351       if (host_lookup_failed)
1352         return HOSTERR;
1353
1354       sock = connect_to_host (conn->host, conn->port);
1355       if (sock == E_HOST)
1356         return HOSTERR;
1357       else if (sock < 0)
1358         return (retryable_socket_connect_error (errno)
1359                 ? CONERROR : CONIMPOSSIBLE);
1360
1361 #ifdef HAVE_SSL
1362       if (proxy && u->scheme == SCHEME_HTTPS)
1363         {
1364           /* When requesting SSL URLs through proxies, use the
1365              CONNECT method to request passthrough.  */
1366           struct request *connreq = request_new ();
1367           request_set_method (connreq, "CONNECT",
1368                               aprintf ("%s:%d", u->host, u->port));
1369           if (proxyauth)
1370             {
1371               request_set_header (connreq, "Proxy-Authorization",
1372                                   proxyauth, rel_value);
1373               /* Now that PROXYAUTH is part of the CONNECT request,
1374                  zero it out so we don't send proxy authorization with
1375                  the regular request below.  */
1376               proxyauth = NULL;
1377             }
1378
1379           write_error = request_send (connreq, sock);
1380           request_free (connreq);
1381           if (write_error < 0)
1382             {
1383               logprintf (LOG_VERBOSE, _("Failed writing to proxy: %s.\n"),
1384                          strerror (errno));
1385               CLOSE_INVALIDATE (sock);
1386               return WRITEFAILED;
1387             }
1388
1389           head = read_http_response_head (sock);
1390           if (!head)
1391             {
1392               logprintf (LOG_VERBOSE, _("Failed reading proxy response: %s\n"),
1393                          strerror (errno));
1394               CLOSE_INVALIDATE (sock);
1395               return HERR;
1396             }
1397           message = NULL;
1398           if (!*head)
1399             {
1400               xfree (head);
1401               goto failed_tunnel;
1402             }
1403           DEBUGP (("proxy responded with: [%s]\n", head));
1404
1405           resp = resp_new (head);
1406           statcode = resp_status (resp, &message);
1407           resp_free (resp);
1408           if (statcode != 200)
1409             {
1410             failed_tunnel:
1411               logprintf (LOG_NOTQUIET, _("Proxy tunneling failed: %s"),
1412                          message ? escnonprint (message) : "?");
1413               xfree_null (message);
1414               return CONSSLERR;
1415             }
1416           xfree_null (message);
1417
1418           /* SOCK is now *really* connected to u->host, so update CONN
1419              to reflect this.  That way register_persistent will
1420              register SOCK as being connected to u->host:u->port.  */
1421           conn = u;
1422         }
1423
1424       if (conn->scheme == SCHEME_HTTPS)
1425         {
1426           if (!ssl_connect (sock))
1427             {
1428               fd_close (sock);
1429               return CONSSLERR;
1430             }
1431           using_ssl = 1;
1432         }
1433 #endif /* HAVE_SSL */
1434     }
1435
1436   /* Send the request to server.  */
1437   write_error = request_send (req, sock);
1438
1439   if (write_error >= 0)
1440     {
1441       if (opt.post_data)
1442         {
1443           DEBUGP (("[POST data: %s]\n", opt.post_data));
1444           write_error = fd_write (sock, opt.post_data, post_data_size, -1);
1445         }
1446       else if (opt.post_file_name && post_data_size != 0)
1447         write_error = post_file (sock, opt.post_file_name, post_data_size);
1448     }
1449
1450   if (write_error < 0)
1451     {
1452       logprintf (LOG_VERBOSE, _("Failed writing HTTP request: %s.\n"),
1453                  strerror (errno));
1454       CLOSE_INVALIDATE (sock);
1455       request_free (req);
1456       return WRITEFAILED;
1457     }
1458   logprintf (LOG_VERBOSE, _("%s request sent, awaiting response... "),
1459              proxy ? "Proxy" : "HTTP");
1460   contlen = -1;
1461   contrange = 0;
1462   *dt &= ~RETROKF;
1463
1464   head = read_http_response_head (sock);
1465   if (!head)
1466     {
1467       if (errno == 0)
1468         {
1469           logputs (LOG_NOTQUIET, _("No data received.\n"));
1470           CLOSE_INVALIDATE (sock);
1471           request_free (req);
1472           return HEOF;
1473         }
1474       else
1475         {
1476           logprintf (LOG_NOTQUIET, _("Read error (%s) in headers.\n"),
1477                      strerror (errno));
1478           CLOSE_INVALIDATE (sock);
1479           request_free (req);
1480           return HERR;
1481         }
1482     }
1483   DEBUGP (("\n---response begin---\n%s---response end---\n", head));
1484
1485   resp = resp_new (head);
1486
1487   /* Check for status line.  */
1488   message = NULL;
1489   statcode = resp_status (resp, &message);
1490   if (!opt.server_response)
1491     logprintf (LOG_VERBOSE, "%2d %s\n", statcode,
1492                message ? escnonprint (message) : "");
1493   else
1494     {
1495       logprintf (LOG_VERBOSE, "\n");
1496       print_server_response (resp, "  ");
1497     }
1498
1499   if (!opt.ignore_length
1500       && resp_header_copy (resp, "Content-Length", hdrval, sizeof (hdrval)))
1501     {
1502       wgint parsed;
1503       errno = 0;
1504       parsed = str_to_wgint (hdrval, NULL, 10);
1505       if (parsed == WGINT_MAX && errno == ERANGE)
1506         /* Out of range.
1507            #### If Content-Length is out of range, it most likely
1508            means that the file is larger than 2G and that we're
1509            compiled without LFS.  In that case we should probably
1510            refuse to even attempt to download the file.  */
1511         contlen = -1;
1512       else
1513         contlen = parsed;
1514     }
1515
1516   /* Check for keep-alive related responses. */
1517   if (!inhibit_keep_alive && contlen != -1)
1518     {
1519       if (resp_header_copy (resp, "Keep-Alive", NULL, 0))
1520         keep_alive = 1;
1521       else if (resp_header_copy (resp, "Connection", hdrval, sizeof (hdrval)))
1522         {
1523           if (0 == strcasecmp (hdrval, "Keep-Alive"))
1524             keep_alive = 1;
1525         }
1526     }
1527   if (keep_alive)
1528     /* The server has promised that it will not close the connection
1529        when we're done.  This means that we can register it.  */
1530     register_persistent (conn->host, conn->port, sock, using_ssl);
1531
1532   if (statcode == HTTP_STATUS_UNAUTHORIZED)
1533     {
1534       /* Authorization is required.  */
1535       skip_short_body (sock, contlen);
1536       CLOSE_FINISH (sock);
1537       if (auth_tried_already || !(user && passwd))
1538         {
1539           /* If we have tried it already, then there is not point
1540              retrying it.  */
1541           logputs (LOG_NOTQUIET, _("Authorization failed.\n"));
1542         }
1543       else
1544         {
1545           char *www_authenticate = resp_header_strdup (resp,
1546                                                        "WWW-Authenticate");
1547           /* If the authentication scheme is unknown or if it's the
1548              "Basic" authentication (which we try by default), there's
1549              no sense in retrying.  */
1550           if (!www_authenticate
1551               || !known_authentication_scheme_p (www_authenticate)
1552               || BEGINS_WITH (www_authenticate, "Basic"))
1553             {
1554               xfree_null (www_authenticate);
1555               logputs (LOG_NOTQUIET, _("Unknown authentication scheme.\n"));
1556             }
1557           else
1558             {
1559               char *pth;
1560               auth_tried_already = 1;
1561               pth = url_full_path (u);
1562               request_set_header (req, "Authorization",
1563                                   create_authorization_line (www_authenticate,
1564                                                              user, passwd,
1565                                                              request_method (req),
1566                                                              pth),
1567                                   rel_value);
1568               xfree (pth);
1569               xfree (www_authenticate);
1570               goto retry_with_auth;
1571             }
1572         }
1573       request_free (req);
1574       return AUTHFAILED;
1575     }
1576   request_free (req);
1577
1578   hs->statcode = statcode;
1579   if (statcode == -1)
1580     hs->error = xstrdup (_("Malformed status line"));
1581   else if (!*message)
1582     hs->error = xstrdup (_("(no description)"));
1583   else
1584     hs->error = xstrdup (message);
1585
1586   type = resp_header_strdup (resp, "Content-Type");
1587   if (type)
1588     {
1589       char *tmp = strchr (type, ';');
1590       if (tmp)
1591         {
1592           while (tmp > type && ISSPACE (tmp[-1]))
1593             --tmp;
1594           *tmp = '\0';
1595         }
1596     }
1597   hs->newloc = resp_header_strdup (resp, "Location");
1598   hs->remote_time = resp_header_strdup (resp, "Last-Modified");
1599
1600   /* Handle (possibly multiple instances of) the Set-Cookie header. */
1601   {
1602     int scpos;
1603     const char *scbeg, *scend;
1604     /* The jar should have been created by now. */
1605     assert (wget_cookie_jar != NULL);
1606     for (scpos = 0;
1607          (scpos = resp_header_locate (resp, "Set-Cookie", scpos,
1608                                       &scbeg, &scend)) != -1;
1609          ++scpos)
1610       {
1611         char *set_cookie = strdupdelim (scbeg, scend);
1612         cookie_handle_set_cookie (wget_cookie_jar, u->host, u->port, u->path,
1613                                   set_cookie);
1614         xfree (set_cookie);
1615       }
1616   }
1617
1618   if (resp_header_copy (resp, "Content-Range", hdrval, sizeof (hdrval)))
1619     {
1620       wgint first_byte_pos, last_byte_pos, entity_length;
1621       if (parse_content_range (hdrval, &first_byte_pos, &last_byte_pos,
1622                                &entity_length))
1623         contrange = first_byte_pos;
1624     }
1625   resp_free (resp);
1626
1627   /* 20x responses are counted among successful by default.  */
1628   if (H_20X (statcode))
1629     *dt |= RETROKF;
1630
1631   /* Return if redirected.  */
1632   if (H_REDIRECTED (statcode) || statcode == HTTP_STATUS_MULTIPLE_CHOICES)
1633     {
1634       /* RFC2068 says that in case of the 300 (multiple choices)
1635          response, the server can output a preferred URL through
1636          `Location' header; otherwise, the request should be treated
1637          like GET.  So, if the location is set, it will be a
1638          redirection; otherwise, just proceed normally.  */
1639       if (statcode == HTTP_STATUS_MULTIPLE_CHOICES && !hs->newloc)
1640         *dt |= RETROKF;
1641       else
1642         {
1643           logprintf (LOG_VERBOSE,
1644                      _("Location: %s%s\n"),
1645                      hs->newloc ? escnonprint_uri (hs->newloc) : _("unspecified"),
1646                      hs->newloc ? _(" [following]") : "");
1647           if (keep_alive)
1648             skip_short_body (sock, contlen);
1649           CLOSE_FINISH (sock);
1650           xfree_null (type);
1651           return NEWLOCATION;
1652         }
1653     }
1654
1655   /* If content-type is not given, assume text/html.  This is because
1656      of the multitude of broken CGI's that "forget" to generate the
1657      content-type.  */
1658   if (!type ||
1659         0 == strncasecmp (type, TEXTHTML_S, strlen (TEXTHTML_S)) ||
1660         0 == strncasecmp (type, TEXTXHTML_S, strlen (TEXTXHTML_S)))
1661     *dt |= TEXTHTML;
1662   else
1663     *dt &= ~TEXTHTML;
1664
1665   if (opt.html_extension && (*dt & TEXTHTML))
1666     /* -E / --html-extension / html_extension = on was specified, and this is a
1667        text/html file.  If some case-insensitive variation on ".htm[l]" isn't
1668        already the file's suffix, tack on ".html". */
1669     {
1670       char*  last_period_in_local_filename = strrchr(*hs->local_file, '.');
1671
1672       if (last_period_in_local_filename == NULL
1673           || !(0 == strcasecmp (last_period_in_local_filename, ".htm")
1674                || 0 == strcasecmp (last_period_in_local_filename, ".html")))
1675         {
1676           size_t  local_filename_len = strlen(*hs->local_file);
1677           
1678           *hs->local_file = xrealloc(*hs->local_file,
1679                                      local_filename_len + sizeof(".html"));
1680           strcpy(*hs->local_file + local_filename_len, ".html");
1681
1682           *dt |= ADDED_HTML_EXTENSION;
1683         }
1684     }
1685
1686   if (statcode == HTTP_STATUS_RANGE_NOT_SATISFIABLE)
1687     {
1688       /* If `-c' is in use and the file has been fully downloaded (or
1689          the remote file has shrunk), Wget effectively requests bytes
1690          after the end of file and the server response with 416.  */
1691       logputs (LOG_VERBOSE, _("\
1692 \n    The file is already fully retrieved; nothing to do.\n\n"));
1693       /* In case the caller inspects. */
1694       hs->len = contlen;
1695       hs->res = 0;
1696       /* Mark as successfully retrieved. */
1697       *dt |= RETROKF;
1698       xfree_null (type);
1699       CLOSE_INVALIDATE (sock);  /* would be CLOSE_FINISH, but there
1700                                    might be more bytes in the body. */
1701       return RETRUNNEEDED;
1702     }
1703   if ((contrange != 0 && contrange != hs->restval)
1704       || (H_PARTIAL (statcode) && !contrange))
1705     {
1706       /* The Range request was somehow misunderstood by the server.
1707          Bail out.  */
1708       xfree_null (type);
1709       CLOSE_INVALIDATE (sock);
1710       return RANGEERR;
1711     }
1712   hs->contlen = contlen + contrange;
1713
1714   if (opt.verbose)
1715     {
1716       if (*dt & RETROKF)
1717         {
1718           /* No need to print this output if the body won't be
1719              downloaded at all, or if the original server response is
1720              printed.  */
1721           logputs (LOG_VERBOSE, _("Length: "));
1722           if (contlen != -1)
1723             {
1724               logputs (LOG_VERBOSE, legible (contlen + contrange));
1725               if (contrange)
1726                 logprintf (LOG_VERBOSE, _(" (%s to go)"), legible (contlen));
1727             }
1728           else
1729             logputs (LOG_VERBOSE,
1730                      opt.ignore_length ? _("ignored") : _("unspecified"));
1731           if (type)
1732             logprintf (LOG_VERBOSE, " [%s]\n", escnonprint (type));
1733           else
1734             logputs (LOG_VERBOSE, "\n");
1735         }
1736     }
1737   xfree_null (type);
1738   type = NULL;                  /* We don't need it any more.  */
1739
1740   /* Return if we have no intention of further downloading.  */
1741   if (!(*dt & RETROKF) || (*dt & HEAD_ONLY))
1742     {
1743       /* In case the caller cares to look...  */
1744       hs->len = 0L;
1745       hs->res = 0;
1746       xfree_null (type);
1747       /* Pre-1.10 Wget used CLOSE_INVALIDATE here.  Now we trust the
1748          servers not to send body in response to a HEAD request.  If
1749          you encounter such a server (more likely a broken CGI), use
1750          `--no-http-keep-alive'.  */
1751       CLOSE_FINISH (sock);
1752       return RETRFINISHED;
1753     }
1754
1755   /* Open the local file.  */
1756   if (!output_stream)
1757     {
1758       mkalldirs (*hs->local_file);
1759       if (opt.backups)
1760         rotate_backups (*hs->local_file);
1761       if (hs->restval)
1762         fp = fopen (*hs->local_file, "ab");
1763       else if (opt.noclobber || opt.always_rest || opt.timestamping || opt.dirstruct
1764                || opt.output_document)
1765         fp = fopen (*hs->local_file, "wb");
1766       else
1767         {
1768           fp = fopen_excl (*hs->local_file, 0);
1769           if (!fp && errno == EEXIST)
1770             {
1771               /* We cannot just invent a new name and use it (which is
1772                  what functions like unique_create typically do)
1773                  because we told the user we'd use this name.
1774                  Instead, return and retry the download.  */
1775               logprintf (LOG_NOTQUIET,
1776                          _("%s has sprung into existence.\n"),
1777                          *hs->local_file);
1778               CLOSE_INVALIDATE (sock);
1779               return FOPEN_EXCL_ERR;
1780             }
1781         }
1782       if (!fp)
1783         {
1784           logprintf (LOG_NOTQUIET, "%s: %s\n", *hs->local_file, strerror (errno));
1785           CLOSE_INVALIDATE (sock);
1786           return FOPENERR;
1787         }
1788     }
1789   else
1790     fp = output_stream;
1791
1792   /* #### This confuses the timestamping code that checks for file
1793      size.  Maybe we should save some additional information?  */
1794   if (opt.save_headers)
1795     fwrite (head, 1, strlen (head), fp);
1796
1797   /* Download the request body.  */
1798   flags = 0;
1799   if (keep_alive)
1800     flags |= rb_read_exactly;
1801   if (hs->restval > 0 && contrange == 0)
1802     /* If the server ignored our range request, instruct fd_read_body
1803        to skip the first RESTVAL bytes of body.  */
1804     flags |= rb_skip_startpos;
1805   hs->len = hs->restval;
1806   hs->rd_size = 0;
1807   hs->res = fd_read_body (sock, fp, contlen != -1 ? contlen : 0,
1808                           hs->restval, &hs->rd_size, &hs->len, &hs->dltime,
1809                           flags);
1810
1811   if (hs->res >= 0)
1812     CLOSE_FINISH (sock);
1813   else
1814     CLOSE_INVALIDATE (sock);
1815
1816   {
1817     /* Close or flush the file.  We have to be careful to check for
1818        error here.  Checking the result of fwrite() is not enough --
1819        errors could go unnoticed!  */
1820     int flush_res;
1821     if (!output_stream)
1822       flush_res = fclose (fp);
1823     else
1824       flush_res = fflush (fp);
1825     if (flush_res == EOF)
1826       hs->res = -2;
1827   }
1828   if (hs->res == -2)
1829     return FWRITEERR;
1830   return RETRFINISHED;
1831 }
1832
1833 /* The genuine HTTP loop!  This is the part where the retrieval is
1834    retried, and retried, and retried, and...  */
1835 uerr_t
1836 http_loop (struct url *u, char **newloc, char **local_file, const char *referer,
1837            int *dt, struct url *proxy)
1838 {
1839   int count;
1840   int use_ts, got_head = 0;     /* time-stamping info */
1841   char *filename_plus_orig_suffix;
1842   char *local_filename = NULL;
1843   char *tms, *locf, *tmrate;
1844   uerr_t err;
1845   time_t tml = -1, tmr = -1;    /* local and remote time-stamps */
1846   wgint local_size = 0;         /* the size of the local file */
1847   size_t filename_len;
1848   struct http_stat hstat;       /* HTTP status */
1849   struct_stat st;
1850   char *dummy = NULL;
1851
1852   /* This used to be done in main(), but it's a better idea to do it
1853      here so that we don't go through the hoops if we're just using
1854      FTP or whatever. */
1855   if (opt.cookies)
1856     {
1857       if (!wget_cookie_jar)
1858         wget_cookie_jar = cookie_jar_new ();
1859       if (opt.cookies_input && !cookies_loaded_p)
1860         {
1861           cookie_jar_load (wget_cookie_jar, opt.cookies_input);
1862           cookies_loaded_p = 1;
1863         }
1864     }
1865
1866   *newloc = NULL;
1867
1868   /* Warn on (likely bogus) wildcard usage in HTTP.  Don't use
1869      has_wildcards_p because it would also warn on `?', and we know that
1870      shows up in CGI paths a *lot*.  */
1871   if (strchr (u->url, '*'))
1872     logputs (LOG_VERBOSE, _("Warning: wildcards not supported in HTTP.\n"));
1873
1874   xzero (hstat);
1875
1876   /* Determine the local filename.  */
1877   if (local_file && *local_file)
1878     hstat.local_file = local_file;
1879   else if (local_file && !opt.output_document)
1880     {
1881       *local_file = url_file_name (u);
1882       hstat.local_file = local_file;
1883     }
1884   else
1885     {
1886       dummy = url_file_name (u);
1887       hstat.local_file = &dummy;
1888       /* be honest about where we will save the file */
1889       if (local_file && opt.output_document)
1890         *local_file = HYPHENP (opt.output_document) ? NULL : xstrdup (opt.output_document);
1891     }
1892
1893   if (!opt.output_document)
1894     locf = *hstat.local_file;
1895   else
1896     locf = opt.output_document;
1897
1898   hstat.referer = referer;
1899
1900   filename_len = strlen (*hstat.local_file);
1901   filename_plus_orig_suffix = alloca (filename_len + sizeof (".orig"));
1902
1903   if (opt.noclobber && file_exists_p (*hstat.local_file))
1904     {
1905       /* If opt.noclobber is turned on and file already exists, do not
1906          retrieve the file */
1907       logprintf (LOG_VERBOSE, _("\
1908 File `%s' already there, will not retrieve.\n"), *hstat.local_file);
1909       /* If the file is there, we suppose it's retrieved OK.  */
1910       *dt |= RETROKF;
1911
1912       /* #### Bogusness alert.  */
1913       /* If its suffix is "html" or "htm" or similar, assume text/html.  */
1914       if (has_html_suffix_p (*hstat.local_file))
1915         *dt |= TEXTHTML;
1916
1917       xfree_null (dummy);
1918       return RETROK;
1919     }
1920
1921   use_ts = 0;
1922   if (opt.timestamping)
1923     {
1924       int local_dot_orig_file_exists = 0;
1925
1926       if (opt.backup_converted)
1927         /* If -K is specified, we'll act on the assumption that it was specified
1928            last time these files were downloaded as well, and instead of just
1929            comparing local file X against server file X, we'll compare local
1930            file X.orig (if extant, else X) against server file X.  If -K
1931            _wasn't_ specified last time, or the server contains files called
1932            *.orig, -N will be back to not operating correctly with -k. */
1933         {
1934           /* Would a single s[n]printf() call be faster?  --dan
1935
1936              Definitely not.  sprintf() is horribly slow.  It's a
1937              different question whether the difference between the two
1938              affects a program.  Usually I'd say "no", but at one
1939              point I profiled Wget, and found that a measurable and
1940              non-negligible amount of time was lost calling sprintf()
1941              in url.c.  Replacing sprintf with inline calls to
1942              strcpy() and number_to_string() made a difference.
1943              --hniksic */
1944           memcpy (filename_plus_orig_suffix, *hstat.local_file, filename_len);
1945           memcpy (filename_plus_orig_suffix + filename_len,
1946                   ".orig", sizeof (".orig"));
1947
1948           /* Try to stat() the .orig file. */
1949           if (stat (filename_plus_orig_suffix, &st) == 0)
1950             {
1951               local_dot_orig_file_exists = 1;
1952               local_filename = filename_plus_orig_suffix;
1953             }
1954         }      
1955
1956       if (!local_dot_orig_file_exists)
1957         /* Couldn't stat() <file>.orig, so try to stat() <file>. */
1958         if (stat (*hstat.local_file, &st) == 0)
1959           local_filename = *hstat.local_file;
1960
1961       if (local_filename != NULL)
1962         /* There was a local file, so we'll check later to see if the version
1963            the server has is the same version we already have, allowing us to
1964            skip a download. */
1965         {
1966           use_ts = 1;
1967           tml = st.st_mtime;
1968 #ifdef WINDOWS
1969           /* Modification time granularity is 2 seconds for Windows, so
1970              increase local time by 1 second for later comparison. */
1971           tml++;
1972 #endif
1973           local_size = st.st_size;
1974           got_head = 0;
1975         }
1976     }
1977   /* Reset the counter.  */
1978   count = 0;
1979   *dt = 0;
1980   /* THE loop */
1981   do
1982     {
1983       /* Increment the pass counter.  */
1984       ++count;
1985       sleep_between_retrievals (count);
1986       /* Get the current time string.  */
1987       tms = time_str (NULL);
1988       /* Print fetch message, if opt.verbose.  */
1989       if (opt.verbose)
1990         {
1991           char *hurl = url_string (u, 1);
1992           char tmp[256];
1993           strcpy (tmp, "        ");
1994           if (count > 1)
1995             sprintf (tmp, _("(try:%2d)"), count);
1996           logprintf (LOG_VERBOSE, "--%s--  %s\n  %s => `%s'\n",
1997                      tms, hurl, tmp, locf);
1998 #ifdef WINDOWS
1999           ws_changetitle (hurl);
2000 #endif
2001           xfree (hurl);
2002         }
2003
2004       /* Default document type is empty.  However, if spider mode is
2005          on or time-stamping is employed, HEAD_ONLY commands is
2006          encoded within *dt.  */
2007       if (opt.spider || (use_ts && !got_head))
2008         *dt |= HEAD_ONLY;
2009       else
2010         *dt &= ~HEAD_ONLY;
2011
2012       /* Decide whether or not to restart.  */
2013       hstat.restval = 0;
2014       if (count > 1)
2015         hstat.restval = hstat.len; /* continue where we left off */
2016       else if (opt.always_rest
2017                && stat (locf, &st) == 0
2018                && S_ISREG (st.st_mode))
2019         hstat.restval = st.st_size;
2020
2021       /* Decide whether to send the no-cache directive.  We send it in
2022          two cases:
2023            a) we're using a proxy, and we're past our first retrieval.
2024               Some proxies are notorious for caching incomplete data, so
2025               we require a fresh get.
2026            b) caching is explicitly inhibited. */
2027       if ((proxy && count > 1)  /* a */
2028           || !opt.allow_cache   /* b */
2029           )
2030         *dt |= SEND_NOCACHE;
2031       else
2032         *dt &= ~SEND_NOCACHE;
2033
2034       /* Try fetching the document, or at least its head.  */
2035       err = gethttp (u, &hstat, dt, proxy);
2036
2037       /* It's unfortunate that wget determines the local filename before finding
2038          out the Content-Type of the file.  Barring a major restructuring of the
2039          code, we need to re-set locf here, since gethttp() may have xrealloc()d
2040          *hstat.local_file to tack on ".html". */
2041       if (!opt.output_document)
2042         locf = *hstat.local_file;
2043
2044       /* Time?  */
2045       tms = time_str (NULL);
2046       /* Get the new location (with or without the redirection).  */
2047       if (hstat.newloc)
2048         *newloc = xstrdup (hstat.newloc);
2049       switch (err)
2050         {
2051         case HERR: case HEOF: case CONSOCKERR: case CONCLOSED:
2052         case CONERROR: case READERR: case WRITEFAILED:
2053         case RANGEERR: case FOPEN_EXCL_ERR:
2054           /* Non-fatal errors continue executing the loop, which will
2055              bring them to "while" statement at the end, to judge
2056              whether the number of tries was exceeded.  */
2057           free_hstat (&hstat);
2058           printwhat (count, opt.ntry);
2059           if (err == FOPEN_EXCL_ERR)
2060             {
2061               /* Re-determine the file name. */
2062               if (local_file && *local_file)
2063                 {
2064                   xfree (*local_file);
2065                   *local_file = url_file_name (u);
2066                   hstat.local_file = local_file;
2067                 }
2068               else
2069                 {
2070                   xfree (dummy);
2071                   dummy = url_file_name (u);
2072                   hstat.local_file = &dummy;
2073                 }
2074               /* be honest about where we will save the file */
2075               if (local_file && opt.output_document)
2076                 *local_file = HYPHENP (opt.output_document) ? NULL : xstrdup (opt.output_document);
2077               if (!opt.output_document)
2078                 locf = *hstat.local_file;
2079               else
2080                 locf = opt.output_document;
2081             }
2082           continue;
2083           break;
2084         case HOSTERR: case CONIMPOSSIBLE: case PROXERR: case AUTHFAILED: 
2085         case SSLERRCTXCREATE: case CONTNOTSUPPORTED:
2086           /* Fatal errors just return from the function.  */
2087           free_hstat (&hstat);
2088           xfree_null (dummy);
2089           return err;
2090           break;
2091         case FWRITEERR: case FOPENERR:
2092           /* Another fatal error.  */
2093           logputs (LOG_VERBOSE, "\n");
2094           logprintf (LOG_NOTQUIET, _("Cannot write to `%s' (%s).\n"),
2095                      *hstat.local_file, strerror (errno));
2096           free_hstat (&hstat);
2097           xfree_null (dummy);
2098           return err;
2099           break;
2100         case CONSSLERR:
2101           /* Another fatal error.  */
2102           logputs (LOG_VERBOSE, "\n");
2103           logprintf (LOG_NOTQUIET, _("Unable to establish SSL connection.\n"));
2104           free_hstat (&hstat);
2105           xfree_null (dummy);
2106           return err;
2107           break;
2108         case NEWLOCATION:
2109           /* Return the new location to the caller.  */
2110           if (!hstat.newloc)
2111             {
2112               logprintf (LOG_NOTQUIET,
2113                          _("ERROR: Redirection (%d) without location.\n"),
2114                          hstat.statcode);
2115               free_hstat (&hstat);
2116               xfree_null (dummy);
2117               return WRONGCODE;
2118             }
2119           free_hstat (&hstat);
2120           xfree_null (dummy);
2121           return NEWLOCATION;
2122           break;
2123         case RETRUNNEEDED:
2124           /* The file was already fully retrieved. */
2125           free_hstat (&hstat);
2126           xfree_null (dummy);
2127           return RETROK;
2128           break;
2129         case RETRFINISHED:
2130           /* Deal with you later.  */
2131           break;
2132         default:
2133           /* All possibilities should have been exhausted.  */
2134           abort ();
2135         }
2136       if (!(*dt & RETROKF))
2137         {
2138           if (!opt.verbose)
2139             {
2140               /* #### Ugly ugly ugly! */
2141               char *hurl = url_string (u, 1);
2142               logprintf (LOG_NONVERBOSE, "%s:\n", hurl);
2143               xfree (hurl);
2144             }
2145           logprintf (LOG_NOTQUIET, _("%s ERROR %d: %s.\n"),
2146                      tms, hstat.statcode, escnonprint (hstat.error));
2147           logputs (LOG_VERBOSE, "\n");
2148           free_hstat (&hstat);
2149           xfree_null (dummy);
2150           return WRONGCODE;
2151         }
2152
2153       /* Did we get the time-stamp?  */
2154       if (!got_head)
2155         {
2156           if (opt.timestamping && !hstat.remote_time)
2157             {
2158               logputs (LOG_NOTQUIET, _("\
2159 Last-modified header missing -- time-stamps turned off.\n"));
2160             }
2161           else if (hstat.remote_time)
2162             {
2163               /* Convert the date-string into struct tm.  */
2164               tmr = http_atotm (hstat.remote_time);
2165               if (tmr == (time_t) (-1))
2166                 logputs (LOG_VERBOSE, _("\
2167 Last-modified header invalid -- time-stamp ignored.\n"));
2168             }
2169         }
2170
2171       /* The time-stamping section.  */
2172       if (use_ts)
2173         {
2174           got_head = 1;
2175           *dt &= ~HEAD_ONLY;
2176           use_ts = 0;           /* no more time-stamping */
2177           count = 0;            /* the retrieve count for HEAD is
2178                                    reset */
2179           if (hstat.remote_time && tmr != (time_t) (-1))
2180             {
2181               /* Now time-stamping can be used validly.  Time-stamping
2182                  means that if the sizes of the local and remote file
2183                  match, and local file is newer than the remote file,
2184                  it will not be retrieved.  Otherwise, the normal
2185                  download procedure is resumed.  */
2186               if (tml >= tmr &&
2187                   (hstat.contlen == -1 || local_size == hstat.contlen))
2188                 {
2189                   logprintf (LOG_VERBOSE, _("\
2190 Server file no newer than local file `%s' -- not retrieving.\n\n"),
2191                              local_filename);
2192                   free_hstat (&hstat);
2193                   xfree_null (dummy);
2194                   return RETROK;
2195                 }
2196               else if (tml >= tmr)
2197                 logprintf (LOG_VERBOSE, _("\
2198 The sizes do not match (local %s) -- retrieving.\n"),
2199                            number_to_static_string (local_size));
2200               else
2201                 logputs (LOG_VERBOSE,
2202                          _("Remote file is newer, retrieving.\n"));
2203             }
2204           free_hstat (&hstat);
2205           continue;
2206         }
2207       if ((tmr != (time_t) (-1))
2208           && !opt.spider
2209           && ((hstat.len == hstat.contlen) ||
2210               ((hstat.res == 0) &&
2211                ((hstat.contlen == -1) ||
2212                 (hstat.len >= hstat.contlen && !opt.kill_longer)))))
2213         {
2214           /* #### This code repeats in http.c and ftp.c.  Move it to a
2215              function!  */
2216           const char *fl = NULL;
2217           if (opt.output_document)
2218             {
2219               if (output_stream_regular)
2220                 fl = opt.output_document;
2221             }
2222           else
2223             fl = *hstat.local_file;
2224           if (fl)
2225             touch (fl, tmr);
2226         }
2227       /* End of time-stamping section.  */
2228
2229       if (opt.spider)
2230         {
2231           logprintf (LOG_NOTQUIET, "%d %s\n\n", hstat.statcode,
2232                      escnonprint (hstat.error));
2233           xfree_null (dummy);
2234           return RETROK;
2235         }
2236
2237       tmrate = retr_rate (hstat.rd_size, hstat.dltime, 0);
2238
2239       if (hstat.len == hstat.contlen)
2240         {
2241           if (*dt & RETROKF)
2242             {
2243               logprintf (LOG_VERBOSE,
2244                          _("%s (%s) - `%s' saved [%s/%s]\n\n"),
2245                          tms, tmrate, locf,
2246                          number_to_static_string (hstat.len),
2247                          number_to_static_string (hstat.contlen));
2248               logprintf (LOG_NONVERBOSE,
2249                          "%s URL:%s [%s/%s] -> \"%s\" [%d]\n",
2250                          tms, u->url,
2251                          number_to_static_string (hstat.len),
2252                          number_to_static_string (hstat.contlen),
2253                          locf, count);
2254             }
2255           ++opt.numurls;
2256           total_downloaded_bytes += hstat.len;
2257
2258           /* Remember that we downloaded the file for later ".orig" code. */
2259           if (*dt & ADDED_HTML_EXTENSION)
2260             downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, locf);
2261           else
2262             downloaded_file(FILE_DOWNLOADED_NORMALLY, locf);
2263
2264           free_hstat (&hstat);
2265           xfree_null (dummy);
2266           return RETROK;
2267         }
2268       else if (hstat.res == 0) /* No read error */
2269         {
2270           if (hstat.contlen == -1)  /* We don't know how much we were supposed
2271                                        to get, so assume we succeeded. */ 
2272             {
2273               if (*dt & RETROKF)
2274                 {
2275                   logprintf (LOG_VERBOSE,
2276                              _("%s (%s) - `%s' saved [%s]\n\n"),
2277                              tms, tmrate, locf,
2278                              number_to_static_string (hstat.len));
2279                   logprintf (LOG_NONVERBOSE,
2280                              "%s URL:%s [%s] -> \"%s\" [%d]\n",
2281                              tms, u->url, number_to_static_string (hstat.len),
2282                              locf, count);
2283                 }
2284               ++opt.numurls;
2285               total_downloaded_bytes += hstat.len;
2286
2287               /* Remember that we downloaded the file for later ".orig" code. */
2288               if (*dt & ADDED_HTML_EXTENSION)
2289                 downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, locf);
2290               else
2291                 downloaded_file(FILE_DOWNLOADED_NORMALLY, locf);
2292               
2293               free_hstat (&hstat);
2294               xfree_null (dummy);
2295               return RETROK;
2296             }
2297           else if (hstat.len < hstat.contlen) /* meaning we lost the
2298                                                  connection too soon */
2299             {
2300               logprintf (LOG_VERBOSE,
2301                          _("%s (%s) - Connection closed at byte %s. "),
2302                          tms, tmrate, number_to_static_string (hstat.len));
2303               printwhat (count, opt.ntry);
2304               free_hstat (&hstat);
2305               continue;
2306             }
2307           else if (!opt.kill_longer) /* meaning we got more than expected */
2308             {
2309               logprintf (LOG_VERBOSE,
2310                          _("%s (%s) - `%s' saved [%s/%s])\n\n"),
2311                          tms, tmrate, locf,
2312                          number_to_static_string (hstat.len),
2313                          number_to_static_string (hstat.contlen));
2314               logprintf (LOG_NONVERBOSE,
2315                          "%s URL:%s [%s/%s] -> \"%s\" [%d]\n",
2316                          tms, u->url,
2317                          number_to_static_string (hstat.len),
2318                          number_to_static_string (hstat.contlen),
2319                          locf, count);
2320               ++opt.numurls;
2321               total_downloaded_bytes += hstat.len;
2322
2323               /* Remember that we downloaded the file for later ".orig" code. */
2324               if (*dt & ADDED_HTML_EXTENSION)
2325                 downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, locf);
2326               else
2327                 downloaded_file(FILE_DOWNLOADED_NORMALLY, locf);
2328               
2329               free_hstat (&hstat);
2330               xfree_null (dummy);
2331               return RETROK;
2332             }
2333           else                  /* the same, but not accepted */
2334             {
2335               logprintf (LOG_VERBOSE,
2336                          _("%s (%s) - Connection closed at byte %s/%s. "),
2337                          tms, tmrate,
2338                          number_to_static_string (hstat.len),
2339                          number_to_static_string (hstat.contlen));
2340               printwhat (count, opt.ntry);
2341               free_hstat (&hstat);
2342               continue;
2343             }
2344         }
2345       else                      /* now hstat.res can only be -1 */
2346         {
2347           if (hstat.contlen == -1)
2348             {
2349               logprintf (LOG_VERBOSE,
2350                          _("%s (%s) - Read error at byte %s (%s)."),
2351                          tms, tmrate, number_to_static_string (hstat.len),
2352                          strerror (errno));
2353               printwhat (count, opt.ntry);
2354               free_hstat (&hstat);
2355               continue;
2356             }
2357           else                  /* hstat.res == -1 and contlen is given */
2358             {
2359               logprintf (LOG_VERBOSE,
2360                          _("%s (%s) - Read error at byte %s/%s (%s). "),
2361                          tms, tmrate,
2362                          number_to_static_string (hstat.len),
2363                          number_to_static_string (hstat.contlen),
2364                          strerror (errno));
2365               printwhat (count, opt.ntry);
2366               free_hstat (&hstat);
2367               continue;
2368             }
2369         }
2370       /* not reached */
2371       break;
2372     }
2373   while (!opt.ntry || (count < opt.ntry));
2374   return TRYLIMEXC;
2375 }
2376 \f
2377 /* Converts struct tm to time_t, assuming the data in tm is UTC rather
2378    than local timezone.
2379
2380    mktime is similar but assumes struct tm, also known as the
2381    "broken-down" form of time, is in local time zone.  mktime_from_utc
2382    uses mktime to make the conversion understanding that an offset
2383    will be introduced by the local time assumption.
2384
2385    mktime_from_utc then measures the introduced offset by applying
2386    gmtime to the initial result and applying mktime to the resulting
2387    "broken-down" form.  The difference between the two mktime results
2388    is the measured offset which is then subtracted from the initial
2389    mktime result to yield a calendar time which is the value returned.
2390
2391    tm_isdst in struct tm is set to 0 to force mktime to introduce a
2392    consistent offset (the non DST offset) since tm and tm+o might be
2393    on opposite sides of a DST change.
2394
2395    Some implementations of mktime return -1 for the nonexistent
2396    localtime hour at the beginning of DST.  In this event, use
2397    mktime(tm - 1hr) + 3600.
2398
2399    Schematically
2400      mktime(tm)   --> t+o
2401      gmtime(t+o)  --> tm+o
2402      mktime(tm+o) --> t+2o
2403      t+o - (t+2o - t+o) = t
2404
2405    Note that glibc contains a function of the same purpose named
2406    `timegm' (reverse of gmtime).  But obviously, it is not universally
2407    available, and unfortunately it is not straightforwardly
2408    extractable for use here.  Perhaps configure should detect timegm
2409    and use it where available.
2410
2411    Contributed by Roger Beeman <beeman@cisco.com>, with the help of
2412    Mark Baushke <mdb@cisco.com> and the rest of the Gurus at CISCO.
2413    Further improved by Roger with assistance from Edward J. Sabol
2414    based on input by Jamie Zawinski.  */
2415
2416 static time_t
2417 mktime_from_utc (struct tm *t)
2418 {
2419   time_t tl, tb;
2420   struct tm *tg;
2421
2422   tl = mktime (t);
2423   if (tl == -1)
2424     {
2425       t->tm_hour--;
2426       tl = mktime (t);
2427       if (tl == -1)
2428         return -1; /* can't deal with output from strptime */
2429       tl += 3600;
2430     }
2431   tg = gmtime (&tl);
2432   tg->tm_isdst = 0;
2433   tb = mktime (tg);
2434   if (tb == -1)
2435     {
2436       tg->tm_hour--;
2437       tb = mktime (tg);
2438       if (tb == -1)
2439         return -1; /* can't deal with output from gmtime */
2440       tb += 3600;
2441     }
2442   return (tl - (tb - tl));
2443 }
2444
2445 /* Check whether the result of strptime() indicates success.
2446    strptime() returns the pointer to how far it got to in the string.
2447    The processing has been successful if the string is at `GMT' or
2448    `+X', or at the end of the string.
2449
2450    In extended regexp parlance, the function returns 1 if P matches
2451    "^ *(GMT|[+-][0-9]|$)", 0 otherwise.  P being NULL (which strptime
2452    can return) is considered a failure and 0 is returned.  */
2453 static int
2454 check_end (const char *p)
2455 {
2456   if (!p)
2457     return 0;
2458   while (ISSPACE (*p))
2459     ++p;
2460   if (!*p
2461       || (p[0] == 'G' && p[1] == 'M' && p[2] == 'T')
2462       || ((p[0] == '+' || p[0] == '-') && ISDIGIT (p[1])))
2463     return 1;
2464   else
2465     return 0;
2466 }
2467
2468 /* Convert the textual specification of time in TIME_STRING to the
2469    number of seconds since the Epoch.
2470
2471    TIME_STRING can be in any of the three formats RFC2068 allows the
2472    HTTP servers to emit -- RFC1123-date, RFC850-date or asctime-date.
2473    Timezones are ignored, and should be GMT.
2474
2475    Return the computed time_t representation, or -1 if the conversion
2476    fails.
2477
2478    This function uses strptime with various string formats for parsing
2479    TIME_STRING.  This results in a parser that is not as lenient in
2480    interpreting TIME_STRING as I would like it to be.  Being based on
2481    strptime, it always allows shortened months, one-digit days, etc.,
2482    but due to the multitude of formats in which time can be
2483    represented, an ideal HTTP time parser would be even more
2484    forgiving.  It should completely ignore things like week days and
2485    concentrate only on the various forms of representing years,
2486    months, days, hours, minutes, and seconds.  For example, it would
2487    be nice if it accepted ISO 8601 out of the box.
2488
2489    I've investigated free and PD code for this purpose, but none was
2490    usable.  getdate was big and unwieldy, and had potential copyright
2491    issues, or so I was informed.  Dr. Marcus Hennecke's atotm(),
2492    distributed with phttpd, is excellent, but we cannot use it because
2493    it is not assigned to the FSF.  So I stuck it with strptime.  */
2494
2495 time_t
2496 http_atotm (const char *time_string)
2497 {
2498   /* NOTE: Solaris strptime man page claims that %n and %t match white
2499      space, but that's not universally available.  Instead, we simply
2500      use ` ' to mean "skip all WS", which works under all strptime
2501      implementations I've tested.  */
2502
2503   static const char *time_formats[] = {
2504     "%a, %d %b %Y %T",          /* RFC1123: Thu, 29 Jan 1998 22:12:57 */
2505     "%A, %d-%b-%y %T",          /* RFC850:  Thursday, 29-Jan-98 22:12:57 */
2506     "%a, %d-%b-%Y %T",          /* pseudo-RFC850:  Thu, 29-Jan-1998 22:12:57
2507                                    (google.com uses this for their cookies.) */
2508     "%a %b %d %T %Y"            /* asctime: Thu Jan 29 22:12:57 1998 */
2509   };
2510
2511   int i;
2512   struct tm t;
2513
2514   /* According to Roger Beeman, we need to initialize tm_isdst, since
2515      strptime won't do it.  */
2516   t.tm_isdst = 0;
2517
2518   /* Note that under foreign locales Solaris strptime() fails to
2519      recognize English dates, which renders this function useless.  We
2520      solve this by being careful not to affect LC_TIME when
2521      initializing locale.
2522
2523      Another solution would be to temporarily set locale to C, invoke
2524      strptime(), and restore it back.  This is slow and dirty,
2525      however, and locale support other than LC_MESSAGES can mess other
2526      things, so I rather chose to stick with just setting LC_MESSAGES.
2527
2528      GNU strptime does not have this problem because it recognizes
2529      both international and local dates.  */
2530
2531   for (i = 0; i < countof (time_formats); i++)
2532     if (check_end (strptime (time_string, time_formats[i], &t)))
2533       return mktime_from_utc (&t);
2534
2535   /* All formats have failed.  */
2536   return -1;
2537 }
2538 \f
2539 /* Authorization support: We support two authorization schemes:
2540
2541    * `Basic' scheme, consisting of base64-ing USER:PASSWORD string;
2542
2543    * `Digest' scheme, added by Junio Hamano <junio@twinsun.com>,
2544    consisting of answering to the server's challenge with the proper
2545    MD5 digests.  */
2546
2547 /* How many bytes it will take to store LEN bytes in base64.  */
2548 #define BASE64_LENGTH(len) (4 * (((len) + 2) / 3))
2549
2550 /* Encode the string S of length LENGTH to base64 format and place it
2551    to STORE.  STORE will be 0-terminated, and must point to a writable
2552    buffer of at least 1+BASE64_LENGTH(length) bytes.  */
2553 static void
2554 base64_encode (const char *s, char *store, int length)
2555 {
2556   /* Conversion table.  */
2557   static char tbl[64] = {
2558     'A','B','C','D','E','F','G','H',
2559     'I','J','K','L','M','N','O','P',
2560     'Q','R','S','T','U','V','W','X',
2561     'Y','Z','a','b','c','d','e','f',
2562     'g','h','i','j','k','l','m','n',
2563     'o','p','q','r','s','t','u','v',
2564     'w','x','y','z','0','1','2','3',
2565     '4','5','6','7','8','9','+','/'
2566   };
2567   int i;
2568   unsigned char *p = (unsigned char *)store;
2569
2570   /* Transform the 3x8 bits to 4x6 bits, as required by base64.  */
2571   for (i = 0; i < length; i += 3)
2572     {
2573       *p++ = tbl[s[0] >> 2];
2574       *p++ = tbl[((s[0] & 3) << 4) + (s[1] >> 4)];
2575       *p++ = tbl[((s[1] & 0xf) << 2) + (s[2] >> 6)];
2576       *p++ = tbl[s[2] & 0x3f];
2577       s += 3;
2578     }
2579   /* Pad the result if necessary...  */
2580   if (i == length + 1)
2581     *(p - 1) = '=';
2582   else if (i == length + 2)
2583     *(p - 1) = *(p - 2) = '=';
2584   /* ...and zero-terminate it.  */
2585   *p = '\0';
2586 }
2587
2588 /* Create the authentication header contents for the `Basic' scheme.
2589    This is done by encoding the string `USER:PASS' in base64 and
2590    prepending `HEADER: Basic ' to it.  */
2591 static char *
2592 basic_authentication_encode (const char *user, const char *passwd)
2593 {
2594   char *t1, *t2;
2595   int len1 = strlen (user) + 1 + strlen (passwd);
2596   int len2 = BASE64_LENGTH (len1);
2597
2598   t1 = (char *)alloca (len1 + 1);
2599   sprintf (t1, "%s:%s", user, passwd);
2600
2601   t2 = (char *)alloca (len2 + 1);
2602   base64_encode (t1, t2, len1);
2603
2604   return concat_strings ("Basic ", t2, (char *) 0);
2605 }
2606
2607 #define SKIP_WS(x) do {                         \
2608   while (ISSPACE (*(x)))                        \
2609     ++(x);                                      \
2610 } while (0)
2611
2612 #ifdef USE_DIGEST
2613 /* Parse HTTP `WWW-Authenticate:' header.  AU points to the beginning
2614    of a field in such a header.  If the field is the one specified by
2615    ATTR_NAME ("realm", "opaque", and "nonce" are used by the current
2616    digest authorization code), extract its value in the (char*)
2617    variable pointed by RET.  Returns negative on a malformed header,
2618    or number of bytes that have been parsed by this call.  */
2619 static int
2620 extract_header_attr (const char *au, const char *attr_name, char **ret)
2621 {
2622   const char *ep;
2623   const char *cp = au;
2624
2625   if (strncmp (cp, attr_name, strlen (attr_name)) == 0)
2626     {
2627       cp += strlen (attr_name);
2628       if (!*cp)
2629         return -1;
2630       SKIP_WS (cp);
2631       if (*cp != '=')
2632         return -1;
2633       if (!*++cp)
2634         return -1;
2635       SKIP_WS (cp);
2636       if (*cp != '\"')
2637         return -1;
2638       if (!*++cp)
2639         return -1;
2640       for (ep = cp; *ep && *ep != '\"'; ep++)
2641         ;
2642       if (!*ep)
2643         return -1;
2644       xfree_null (*ret);
2645       *ret = strdupdelim (cp, ep);
2646       return ep - au + 1;
2647     }
2648   else
2649     return 0;
2650 }
2651
2652 /* Dump the hexadecimal representation of HASH to BUF.  HASH should be
2653    an array of 16 bytes containing the hash keys, and BUF should be a
2654    buffer of 33 writable characters (32 for hex digits plus one for
2655    zero termination).  */
2656 static void
2657 dump_hash (unsigned char *buf, const unsigned char *hash)
2658 {
2659   int i;
2660
2661   for (i = 0; i < MD5_HASHLEN; i++, hash++)
2662     {
2663       *buf++ = XNUM_TO_digit (*hash >> 4);
2664       *buf++ = XNUM_TO_digit (*hash & 0xf);
2665     }
2666   *buf = '\0';
2667 }
2668
2669 /* Take the line apart to find the challenge, and compose a digest
2670    authorization header.  See RFC2069 section 2.1.2.  */
2671 static char *
2672 digest_authentication_encode (const char *au, const char *user,
2673                               const char *passwd, const char *method,
2674                               const char *path)
2675 {
2676   static char *realm, *opaque, *nonce;
2677   static struct {
2678     const char *name;
2679     char **variable;
2680   } options[] = {
2681     { "realm", &realm },
2682     { "opaque", &opaque },
2683     { "nonce", &nonce }
2684   };
2685   char *res;
2686
2687   realm = opaque = nonce = NULL;
2688
2689   au += 6;                      /* skip over `Digest' */
2690   while (*au)
2691     {
2692       int i;
2693
2694       SKIP_WS (au);
2695       for (i = 0; i < countof (options); i++)
2696         {
2697           int skip = extract_header_attr (au, options[i].name,
2698                                           options[i].variable);
2699           if (skip < 0)
2700             {
2701               xfree_null (realm);
2702               xfree_null (opaque);
2703               xfree_null (nonce);
2704               return NULL;
2705             }
2706           else if (skip)
2707             {
2708               au += skip;
2709               break;
2710             }
2711         }
2712       if (i == countof (options))
2713         {
2714           while (*au && *au != '=')
2715             au++;
2716           if (*au && *++au)
2717             {
2718               SKIP_WS (au);
2719               if (*au == '\"')
2720                 {
2721                   au++;
2722                   while (*au && *au != '\"')
2723                     au++;
2724                   if (*au)
2725                     au++;
2726                 }
2727             }
2728         }
2729       while (*au && *au != ',')
2730         au++;
2731       if (*au)
2732         au++;
2733     }
2734   if (!realm || !nonce || !user || !passwd || !path || !method)
2735     {
2736       xfree_null (realm);
2737       xfree_null (opaque);
2738       xfree_null (nonce);
2739       return NULL;
2740     }
2741
2742   /* Calculate the digest value.  */
2743   {
2744     ALLOCA_MD5_CONTEXT (ctx);
2745     unsigned char hash[MD5_HASHLEN];
2746     unsigned char a1buf[MD5_HASHLEN * 2 + 1], a2buf[MD5_HASHLEN * 2 + 1];
2747     unsigned char response_digest[MD5_HASHLEN * 2 + 1];
2748
2749     /* A1BUF = H(user ":" realm ":" password) */
2750     gen_md5_init (ctx);
2751     gen_md5_update ((unsigned char *)user, strlen (user), ctx);
2752     gen_md5_update ((unsigned char *)":", 1, ctx);
2753     gen_md5_update ((unsigned char *)realm, strlen (realm), ctx);
2754     gen_md5_update ((unsigned char *)":", 1, ctx);
2755     gen_md5_update ((unsigned char *)passwd, strlen (passwd), ctx);
2756     gen_md5_finish (ctx, hash);
2757     dump_hash (a1buf, hash);
2758
2759     /* A2BUF = H(method ":" path) */
2760     gen_md5_init (ctx);
2761     gen_md5_update ((unsigned char *)method, strlen (method), ctx);
2762     gen_md5_update ((unsigned char *)":", 1, ctx);
2763     gen_md5_update ((unsigned char *)path, strlen (path), ctx);
2764     gen_md5_finish (ctx, hash);
2765     dump_hash (a2buf, hash);
2766
2767     /* RESPONSE_DIGEST = H(A1BUF ":" nonce ":" A2BUF) */
2768     gen_md5_init (ctx);
2769     gen_md5_update (a1buf, MD5_HASHLEN * 2, ctx);
2770     gen_md5_update ((unsigned char *)":", 1, ctx);
2771     gen_md5_update ((unsigned char *)nonce, strlen (nonce), ctx);
2772     gen_md5_update ((unsigned char *)":", 1, ctx);
2773     gen_md5_update (a2buf, MD5_HASHLEN * 2, ctx);
2774     gen_md5_finish (ctx, hash);
2775     dump_hash (response_digest, hash);
2776
2777     res = (char*) xmalloc (strlen (user)
2778                            + strlen (user)
2779                            + strlen (realm)
2780                            + strlen (nonce)
2781                            + strlen (path)
2782                            + 2 * MD5_HASHLEN /*strlen (response_digest)*/
2783                            + (opaque ? strlen (opaque) : 0)
2784                            + 128);
2785     sprintf (res, "Digest \
2786 username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", response=\"%s\"",
2787              user, realm, nonce, path, response_digest);
2788     if (opaque)
2789       {
2790         char *p = res + strlen (res);
2791         strcat (p, ", opaque=\"");
2792         strcat (p, opaque);
2793         strcat (p, "\"");
2794       }
2795   }
2796   return res;
2797 }
2798 #endif /* USE_DIGEST */
2799
2800
2801 #define BEGINS_WITH(line, string_constant)                              \
2802   (!strncasecmp (line, string_constant, sizeof (string_constant) - 1)   \
2803    && (ISSPACE (line[sizeof (string_constant) - 1])                     \
2804        || !line[sizeof (string_constant) - 1]))
2805
2806 static int
2807 known_authentication_scheme_p (const char *au)
2808 {
2809   return BEGINS_WITH (au, "Basic")
2810     || BEGINS_WITH (au, "Digest")
2811     || BEGINS_WITH (au, "NTLM");
2812 }
2813
2814 #undef BEGINS_WITH
2815
2816 /* Create the HTTP authorization request header.  When the
2817    `WWW-Authenticate' response header is seen, according to the
2818    authorization scheme specified in that header (`Basic' and `Digest'
2819    are supported by the current implementation), produce an
2820    appropriate HTTP authorization request header.  */
2821 static char *
2822 create_authorization_line (const char *au, const char *user,
2823                            const char *passwd, const char *method,
2824                            const char *path)
2825 {
2826   if (0 == strncasecmp (au, "Basic", 5))
2827     return basic_authentication_encode (user, passwd);
2828 #ifdef USE_DIGEST
2829   if (0 == strncasecmp (au, "Digest", 6))
2830     return digest_authentication_encode (au, user, passwd, method, path);
2831 #endif /* USE_DIGEST */
2832   return NULL;
2833 }
2834 \f
2835 void
2836 http_cleanup (void)
2837 {
2838 }