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