]> sjero.net Git - wget/blob - src/http.c
[svn] Applied Philipp Thomas's safe-ctype patch. Published in
[wget] / src / http.c
1 /* HTTP support.
2    Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
3
4 This file is part of Wget.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
19
20 #include <config.h>
21
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <sys/types.h>
25 #ifdef HAVE_STRING_H
26 # include <string.h>
27 #else
28 # include <strings.h>
29 #endif
30 #ifdef HAVE_UNISTD_H
31 # include <unistd.h>
32 #endif
33 #include <assert.h>
34 #include <errno.h>
35 #if TIME_WITH_SYS_TIME
36 # include <sys/time.h>
37 # include <time.h>
38 #else
39 # if HAVE_SYS_TIME_H
40 #  include <sys/time.h>
41 # else
42 #  include <time.h>
43 # endif
44 #endif
45
46 #ifdef WINDOWS
47 # include <winsock.h>
48 #else
49 # include <netdb.h>             /* for h_errno */
50 #endif
51
52 #include "wget.h"
53 #include "utils.h"
54 #include "url.h"
55 #include "host.h"
56 #include "rbuf.h"
57 #include "retr.h"
58 #include "headers.h"
59 #include "connect.h"
60 #include "fnmatch.h"
61 #include "netrc.h"
62 #if USE_DIGEST
63 # include "md5.h"
64 #endif
65 #ifdef HAVE_SSL
66 # include "gen_sslfunc.h"
67 #endif /* HAVE_SSL */
68
69 extern char *version_string;
70
71 #ifndef errno
72 extern int errno;
73 #endif
74 #ifndef h_errno
75 # ifndef __CYGWIN__
76 extern int h_errno;
77 # endif
78 #endif
79 \f
80
81 #define TEXTHTML_S "text/html"
82 #define HTTP_ACCEPT "*/*"
83
84 /* Some status code validation macros: */
85 #define H_20X(x)        (((x) >= 200) && ((x) < 300))
86 #define H_PARTIAL(x)    ((x) == HTTP_STATUS_PARTIAL_CONTENTS)
87 #define H_REDIRECTED(x) (((x) == HTTP_STATUS_MOVED_PERMANENTLY) \
88                          || ((x) == HTTP_STATUS_MOVED_TEMPORARILY))
89
90 /* HTTP/1.0 status codes from RFC1945, provided for reference.  */
91 /* Successful 2xx.  */
92 #define HTTP_STATUS_OK                  200
93 #define HTTP_STATUS_CREATED             201
94 #define HTTP_STATUS_ACCEPTED            202
95 #define HTTP_STATUS_NO_CONTENT          204
96 #define HTTP_STATUS_PARTIAL_CONTENTS    206
97
98 /* Redirection 3xx.  */
99 #define HTTP_STATUS_MULTIPLE_CHOICES    300
100 #define HTTP_STATUS_MOVED_PERMANENTLY   301
101 #define HTTP_STATUS_MOVED_TEMPORARILY   302
102 #define HTTP_STATUS_NOT_MODIFIED        304
103
104 /* Client error 4xx.  */
105 #define HTTP_STATUS_BAD_REQUEST         400
106 #define HTTP_STATUS_UNAUTHORIZED        401
107 #define HTTP_STATUS_FORBIDDEN           403
108 #define HTTP_STATUS_NOT_FOUND           404
109
110 /* Server errors 5xx.  */
111 #define HTTP_STATUS_INTERNAL            500
112 #define HTTP_STATUS_NOT_IMPLEMENTED     501
113 #define HTTP_STATUS_BAD_GATEWAY         502
114 #define HTTP_STATUS_UNAVAILABLE         503
115
116 \f
117 /* Parse the HTTP status line, which is of format:
118
119    HTTP-Version SP Status-Code SP Reason-Phrase
120
121    The function returns the status-code, or -1 if the status line is
122    malformed.  The pointer to reason-phrase is returned in RP.  */
123 static int
124 parse_http_status_line (const char *line, const char **reason_phrase_ptr)
125 {
126   /* (the variables must not be named `major' and `minor', because
127      that breaks compilation with SunOS4 cc.)  */
128   int mjr, mnr, statcode;
129   const char *p;
130
131   *reason_phrase_ptr = NULL;
132
133   /* The standard format of HTTP-Version is: `HTTP/X.Y', where X is
134      major version, and Y is minor version.  */
135   if (strncmp (line, "HTTP/", 5) != 0)
136     return -1;
137   line += 5;
138
139   /* Calculate major HTTP version.  */
140   p = line;
141   for (mjr = 0; ISDIGIT (*line); line++)
142     mjr = 10 * mjr + (*line - '0');
143   if (*line != '.' || p == line)
144     return -1;
145   ++line;
146
147   /* Calculate minor HTTP version.  */
148   p = line;
149   for (mnr = 0; ISDIGIT (*line); line++)
150     mnr = 10 * mnr + (*line - '0');
151   if (*line != ' ' || p == line)
152     return -1;
153   /* Wget will accept only 1.0 and higher HTTP-versions.  The value of
154      minor version can be safely ignored.  */
155   if (mjr < 1)
156     return -1;
157   ++line;
158
159   /* Calculate status code.  */
160   if (!(ISDIGIT (*line) && ISDIGIT (line[1]) && ISDIGIT (line[2])))
161     return -1;
162   statcode = 100 * (*line - '0') + 10 * (line[1] - '0') + (line[2] - '0');
163
164   /* Set up the reason phrase pointer.  */
165   line += 3;
166   /* RFC2068 requires SPC here, but we allow the string to finish
167      here, in case no reason-phrase is present.  */
168   if (*line != ' ')
169     {
170       if (!*line)
171         *reason_phrase_ptr = line;
172       else
173         return -1;
174     }
175   else
176     *reason_phrase_ptr = line + 1;
177
178   return statcode;
179 }
180 \f
181 /* Functions to be used as arguments to header_process(): */
182
183 struct http_process_range_closure {
184   long first_byte_pos;
185   long last_byte_pos;
186   long entity_length;
187 };
188
189 /* Parse the `Content-Range' header and extract the information it
190    contains.  Returns 1 if successful, -1 otherwise.  */
191 static int
192 http_process_range (const char *hdr, void *arg)
193 {
194   struct http_process_range_closure *closure
195     = (struct http_process_range_closure *)arg;
196   long num;
197
198   /* Certain versions of Nutscape proxy server send out
199      `Content-Length' without "bytes" specifier, which is a breach of
200      RFC2068 (as well as the HTTP/1.1 draft which was current at the
201      time).  But hell, I must support it...  */
202   if (!strncasecmp (hdr, "bytes", 5))
203     {
204       hdr += 5;
205       hdr += skip_lws (hdr);
206       if (!*hdr)
207         return 0;
208     }
209   if (!ISDIGIT (*hdr))
210     return 0;
211   for (num = 0; ISDIGIT (*hdr); hdr++)
212     num = 10 * num + (*hdr - '0');
213   if (*hdr != '-' || !ISDIGIT (*(hdr + 1)))
214     return 0;
215   closure->first_byte_pos = num;
216   ++hdr;
217   for (num = 0; ISDIGIT (*hdr); hdr++)
218     num = 10 * num + (*hdr - '0');
219   if (*hdr != '/' || !ISDIGIT (*(hdr + 1)))
220     return 0;
221   closure->last_byte_pos = num;
222   ++hdr;
223   for (num = 0; ISDIGIT (*hdr); hdr++)
224     num = 10 * num + (*hdr - '0');
225   closure->entity_length = num;
226   return 1;
227 }
228
229 /* Place 1 to ARG if the HDR contains the word "none", 0 otherwise.
230    Used for `Accept-Ranges'.  */
231 static int
232 http_process_none (const char *hdr, void *arg)
233 {
234   int *where = (int *)arg;
235
236   if (strstr (hdr, "none"))
237     *where = 1;
238   else
239     *where = 0;
240   return 1;
241 }
242
243 /* Place the malloc-ed copy of HDR hdr, to the first `;' to ARG.  */
244 static int
245 http_process_type (const char *hdr, void *arg)
246 {
247   char **result = (char **)arg;
248   /* Locate P on `;' or the terminating zero, whichever comes first. */
249   const char *p = strchr (hdr, ';');
250   if (!p)
251     p = hdr + strlen (hdr);
252   while (p > hdr && ISSPACE (*(p - 1)))
253     --p;
254   *result = strdupdelim (hdr, p);
255   return 1;
256 }
257
258 /* Check whether the `Connection' header is set to "keep-alive". */
259 static int
260 http_process_connection (const char *hdr, void *arg)
261 {
262   int *flag = (int *)arg;
263   if (!strcasecmp (hdr, "Keep-Alive"))
264     *flag = 1;
265   return 1;
266 }
267 \f
268 /* Persistent connections.  Currently, we cache the most recently used
269    connection as persistent, provided that the HTTP server agrees to
270    make it such.  The persistence data is stored in the variables
271    below.  Ideally, it would be in a structure, and it should be
272    possible to cache an arbitrary fixed number of these connections.
273
274    I think the code is quite easy to extend in that direction.  */
275
276 /* Whether a persistent connection is active. */
277 static int pc_active_p;
278 /* Host and port of currently active persistent connection. */
279 static unsigned char pc_last_host[4];
280 static unsigned short pc_last_port;
281
282 /* File descriptor of the currently active persistent connection. */
283 static int pc_last_fd;
284
285 #ifdef HAVE_SSL
286 /* Whether a ssl handshake has occoured on this connection */
287 static int pc_active_ssl;
288 /* SSL connection of the currently active persistent connection. */
289 static SSL *pc_last_ssl;
290 #endif /* HAVE_SSL */
291
292 /* Mark the persistent connection as invalid.  This is used by the
293    CLOSE_* macros after they forcefully close a registered persistent
294    connection.  This does not close the file descriptor -- it is left
295    to the caller to do that.  (Maybe it should, though.)  */
296
297 static void
298 invalidate_persistent (void)
299 {
300   pc_active_p = 0;
301 #ifdef HAVE_SSL
302   pc_active_ssl = 0;
303 #endif /* HAVE_SSL */
304   DEBUGP (("Invalidating fd %d from further reuse.\n", pc_last_fd));
305 }
306
307 /* Register FD, which should be a TCP/IP connection to HOST:PORT, as
308    persistent.  This will enable someone to use the same connection
309    later.  In the context of HTTP, this must be called only AFTER the
310    response has been received and the server has promised that the
311    connection will remain alive.
312
313    If a previous connection was persistent, it is closed. */
314
315 static void
316 register_persistent (const char *host, unsigned short port, int fd
317 #ifdef HAVE_SSL
318                      , SSL *ssl
319 #endif
320                      )
321 {
322   int success;
323
324   if (pc_active_p)
325     {
326       if (pc_last_fd == fd)
327         {
328           /* The connection FD is already registered.  Nothing to
329              do. */
330           return;
331         }
332       else
333         {
334           /* The old persistent connection is still active; let's
335              close it first.  This situation arises whenever a
336              persistent connection exists, but we then connect to a
337              different host, and try to register a persistent
338              connection to that one.  */
339 #ifdef HAVE_SSL
340           /* The ssl disconnect has to take place before the closing
341              of pc_last_fd.  */
342           if (pc_last_ssl)
343             shutdown_ssl(pc_last_ssl);
344 #endif
345           CLOSE (pc_last_fd);
346           invalidate_persistent ();
347         }
348     }
349
350   /* This store_hostaddress may not fail, because it has the results
351      in the cache.  */
352   success = store_hostaddress (pc_last_host, host);
353   assert (success);
354   pc_last_port = port;
355   pc_last_fd = fd;
356   pc_active_p = 1;
357 #ifdef HAVE_SSL
358   pc_last_ssl = ssl;
359   pc_active_ssl = ssl ? 1 : 0;
360 #endif
361   DEBUGP (("Registered fd %d for persistent reuse.\n", fd));
362 }
363
364 /* Return non-zero if a persistent connection is available for
365    connecting to HOST:PORT.  */
366
367 static int
368 persistent_available_p (const char *host, unsigned short port
369 #ifdef HAVE_SSL
370                         , int ssl
371 #endif
372                         )
373 {
374   unsigned char this_host[4];
375   /* First, check whether a persistent connection is active at all.  */
376   if (!pc_active_p)
377     return 0;
378   /* Second, check if the active connection pertains to the correct
379      (HOST, PORT) ordered pair.  */
380   if (port != pc_last_port)
381     return 0;
382 #ifdef HAVE_SSL
383   /* Second, a): check if current connection is (not) ssl, too.  This
384      test is unlikely to fail because HTTP and HTTPS typicaly use
385      different ports.  Yet it is possible, or so I [Christian
386      Fraenkel] have been told, to run HTTPS and HTTP simultaneus on
387      the same port.  */
388   if (ssl != pc_active_ssl)
389     return 0;
390 #endif /* HAVE_SSL */
391   if (!store_hostaddress (this_host, host))
392     return 0;
393   if (memcmp (pc_last_host, this_host, 4))
394     return 0;
395   /* Third: check whether the connection is still open.  This is
396      important because most server implement a liberal (short) timeout
397      on persistent connections.  Wget can of course always reconnect
398      if the connection doesn't work out, but it's nicer to know in
399      advance.  This test is a logical followup of the first test, but
400      is "expensive" and therefore placed at the end of the list.  */
401   if (!test_socket_open (pc_last_fd))
402     {
403       /* Oops, the socket is no longer open.  Now that we know that,
404          let's invalidate the persistent connection before returning
405          0.  */
406       CLOSE (pc_last_fd);
407       invalidate_persistent ();
408       return 0;
409     }
410   return 1;
411 }
412
413 #ifdef HAVE_SSL
414 # define SHUTDOWN_SSL(ssl) do {         \
415   if (ssl)                              \
416     shutdown_ssl (ssl);                 \
417 } while (0)
418 #else
419 # define SHUTDOWN_SSL(ssl) 
420 #endif
421
422 /* The idea behind these two CLOSE macros is to distinguish between
423    two cases: one when the job we've been doing is finished, and we
424    want to close the connection and leave, and two when something is
425    seriously wrong and we're closing the connection as part of
426    cleanup.
427
428    In case of keep_alive, CLOSE_FINISH should leave the connection
429    open, while CLOSE_INVALIDATE should still close it.
430
431    Note that the semantics of the flag `keep_alive' is "this
432    connection *will* be reused (the server has promised not to close
433    the connection once we're done)", while the semantics of
434    `pc_active_p && (fd) == pc_last_fd' is "we're *now* using an
435    active, registered connection".  */
436
437 #define CLOSE_FINISH(fd) do {                   \
438   if (!keep_alive)                              \
439     {                                           \
440       SHUTDOWN_SSL (ssl);                       \
441       CLOSE (fd);                               \
442       if (pc_active_p && (fd) == pc_last_fd)    \
443         invalidate_persistent ();               \
444     }                                           \
445 } while (0)
446
447 #define CLOSE_INVALIDATE(fd) do {               \
448   SHUTDOWN_SSL (ssl);                           \
449   CLOSE (fd);                                   \
450   if (pc_active_p && (fd) == pc_last_fd)        \
451     invalidate_persistent ();                   \
452 } while (0)
453 \f
454 struct http_stat
455 {
456   long len;                     /* received length */
457   long contlen;                 /* expected length */
458   long restval;                 /* the restart value */
459   int res;                      /* the result of last read */
460   char *newloc;                 /* new location (redirection) */
461   char *remote_time;            /* remote time-stamp string */
462   char *error;                  /* textual HTTP error */
463   int statcode;                 /* status code */
464   long dltime;                  /* time of the download */
465 };
466
467 /* Free the elements of hstat X.  */
468 #define FREEHSTAT(x) do                                 \
469 {                                                       \
470   FREE_MAYBE ((x).newloc);                              \
471   FREE_MAYBE ((x).remote_time);                         \
472   FREE_MAYBE ((x).error);                               \
473   (x).newloc = (x).remote_time = (x).error = NULL;      \
474 } while (0)
475
476 static char *create_authorization_line PARAMS ((const char *, const char *,
477                                                 const char *, const char *,
478                                                 const char *));
479 static char *basic_authentication_encode PARAMS ((const char *, const char *,
480                                                   const char *));
481 static int known_authentication_scheme_p PARAMS ((const char *));
482
483 static time_t http_atotm PARAMS ((char *));
484
485 #define BEGINS_WITH(line, string_constant)                              \
486   (!strncasecmp (line, string_constant, sizeof (string_constant) - 1)   \
487    && (ISSPACE (line[sizeof (string_constant) - 1])                     \
488        || !line[sizeof (string_constant) - 1]))
489
490 /* Retrieve a document through HTTP protocol.  It recognizes status
491    code, and correctly handles redirections.  It closes the network
492    socket.  If it receives an error from the functions below it, it
493    will print it if there is enough information to do so (almost
494    always), returning the error to the caller (i.e. http_loop).
495
496    Various HTTP parameters are stored to hs.  Although it parses the
497    response code correctly, it is not used in a sane way.  The caller
498    can do that, though.
499
500    If u->proxy is non-NULL, the URL u will be taken as a proxy URL,
501    and u->proxy->url will be given to the proxy server (bad naming,
502    I'm afraid).  */
503 static uerr_t
504 gethttp (struct urlinfo *u, struct http_stat *hs, int *dt)
505 {
506   char *request, *type, *command, *path;
507   char *user, *passwd;
508   char *pragma_h, *referer, *useragent, *range, *wwwauth, *remhost;
509   char *authenticate_h;
510   char *proxyauth;
511   char *all_headers;
512   char *port_maybe;
513   char *request_keep_alive;
514   int sock, hcount, num_written, all_length, remport, statcode;
515   long contlen, contrange;
516   struct urlinfo *ou;
517   uerr_t err;
518   FILE *fp;
519   int auth_tried_already;
520   struct rbuf rbuf;
521 #ifdef HAVE_SSL
522   static SSL_CTX *ssl_ctx = NULL;
523   SSL *ssl = NULL;
524 #endif /* HAVE_SSL */
525
526   /* Whether this connection will be kept alive after the HTTP request
527      is done. */
528   int keep_alive;
529
530   /* Flags that detect the two ways of specifying HTTP keep-alive
531      response.  */
532   int http_keep_alive_1, http_keep_alive_2;
533
534   /* Whether keep-alive should be inhibited. */
535   int inhibit_keep_alive;
536
537 #ifdef HAVE_SSL
538   /* initialize ssl_ctx on first run */
539   if (!ssl_ctx)
540     {
541       err=init_ssl (&ssl_ctx);
542       if (err != 0)
543         {
544           switch (err)
545             {
546             case SSLERRCTXCREATE:
547               /* this is fatal */
548               logprintf (LOG_NOTQUIET, _("Failed to set up an SSL context\n"));
549               ssl_printerrors ();
550               return err;
551             case SSLERRCERTFILE:
552               /* try without certfile */
553               logprintf (LOG_NOTQUIET,
554                          _("Failed to load certificates from %s\n"),
555                          opt.sslcertfile);
556               ssl_printerrors ();
557               logprintf (LOG_NOTQUIET,
558                          _("Trying without the specified certificate\n"));
559               break;
560             case SSLERRCERTKEY:
561               logprintf (LOG_NOTQUIET,
562                          _("Failed to get certificate key from %s\n"),
563                          opt.sslcertkey);
564               ssl_printerrors ();
565               logprintf (LOG_NOTQUIET,
566                          _("Trying without the specified certificate\n"));
567               break;
568             default:
569               break;
570             }
571         }
572     }
573 #endif /* HAVE_SSL */
574
575   if (!(*dt & HEAD_ONLY))
576     /* If we're doing a GET on the URL, as opposed to just a HEAD, we need to
577        know the local filename so we can save to it. */
578     assert (u->local != NULL);
579
580   authenticate_h = 0;
581   auth_tried_already = 0;
582
583   inhibit_keep_alive = (!opt.http_keep_alive || u->proxy != NULL);
584
585  again:
586   /* We need to come back here when the initial attempt to retrieve
587      without authorization header fails.  (Expected to happen at least
588      for the Digest authorization scheme.)  */
589
590   keep_alive = 0;
591   http_keep_alive_1 = http_keep_alive_2 = 0;
592
593   /* Initialize certain elements of struct http_stat.  */
594   hs->len = 0L;
595   hs->contlen = -1;
596   hs->res = -1;
597   hs->newloc = NULL;
598   hs->remote_time = NULL;
599   hs->error = NULL;
600
601   /* Which structure to use to retrieve the original URL data.  */
602   if (u->proxy)
603     ou = u->proxy;
604   else
605     ou = u;
606
607   /* First: establish the connection.  */
608   if (inhibit_keep_alive
609       ||
610 #ifndef HAVE_SSL
611       !persistent_available_p (u->host, u->port)
612 #else
613       !persistent_available_p (u->host, u->port, (u->proto==URLHTTPS ? 1 : 0))
614 #endif /* HAVE_SSL */
615       )
616     {
617       logprintf (LOG_VERBOSE, _("Connecting to %s:%hu... "), u->host, u->port);
618       err = make_connection (&sock, u->host, u->port);
619       switch (err)
620         {
621         case HOSTERR:
622           logputs (LOG_VERBOSE, "\n");
623           logprintf (LOG_NOTQUIET, "%s: %s.\n", u->host, herrmsg (h_errno));
624           return HOSTERR;
625           break;
626         case CONSOCKERR:
627           logputs (LOG_VERBOSE, "\n");
628           logprintf (LOG_NOTQUIET, "socket: %s\n", strerror (errno));
629           return CONSOCKERR;
630           break;
631         case CONREFUSED:
632           logputs (LOG_VERBOSE, "\n");
633           logprintf (LOG_NOTQUIET,
634                      _("Connection to %s:%hu refused.\n"), u->host, u->port);
635           CLOSE (sock);
636           return CONREFUSED;
637         case CONERROR:
638           logputs (LOG_VERBOSE, "\n");
639           logprintf (LOG_NOTQUIET, "connect: %s\n", strerror (errno));
640           CLOSE (sock);
641           return CONERROR;
642           break;
643         case NOCONERROR:
644           /* Everything is fine!  */
645           logputs (LOG_VERBOSE, _("connected!\n"));
646           break;
647         default:
648           abort ();
649           break;
650         }
651 #ifdef HAVE_SSL
652      if (u->proto == URLHTTPS)
653        if (connect_ssl (&ssl, ssl_ctx,sock) != 0)
654          {
655            logputs (LOG_VERBOSE, "\n");
656            logprintf (LOG_NOTQUIET, _("Unable to establish SSL connection.\n"));
657            CLOSE (sock);
658            return CONSSLERR;
659          }
660 #endif /* HAVE_SSL */
661     }
662   else
663     {
664       logprintf (LOG_VERBOSE, _("Reusing connection to %s:%hu.\n"), u->host, u->port);
665       /* #### pc_last_fd should be accessed through an accessor
666          function.  */
667       sock = pc_last_fd;
668 #ifdef HAVE_SSL
669       ssl = pc_last_ssl;
670 #endif /* HAVE_SSL */
671       DEBUGP (("Reusing fd %d.\n", sock));
672     }
673
674   if (u->proxy)
675     path = u->proxy->url;
676   else
677     path = u->path;
678   
679   command = (*dt & HEAD_ONLY) ? "HEAD" : "GET";
680   referer = NULL;
681   if (ou->referer)
682     {
683       referer = (char *)alloca (9 + strlen (ou->referer) + 3);
684       sprintf (referer, "Referer: %s\r\n", ou->referer);
685     }
686   if (*dt & SEND_NOCACHE)
687     pragma_h = "Pragma: no-cache\r\n";
688   else
689     pragma_h = "";
690   if (hs->restval)
691     {
692       range = (char *)alloca (13 + numdigit (hs->restval) + 4);
693       /* Gag me!  Some servers (e.g. WebSitePro) have been known to
694          respond to the following `Range' format by generating a
695          multipart/x-byte-ranges MIME document!  This MIME type was
696          present in an old draft of the byteranges specification.
697          HTTP/1.1 specifies a multipart/byte-ranges MIME type, but
698          only if multiple non-overlapping ranges are requested --
699          which Wget never does.  */
700       sprintf (range, "Range: bytes=%ld-\r\n", hs->restval);
701     }
702   else
703     range = NULL;
704   if (opt.useragent)
705     STRDUP_ALLOCA (useragent, opt.useragent);
706   else
707     {
708       useragent = (char *)alloca (10 + strlen (version_string));
709       sprintf (useragent, "Wget/%s", version_string);
710     }
711   /* Construct the authentication, if userid is present.  */
712   user = ou->user;
713   passwd = ou->passwd;
714   search_netrc (u->host, (const char **)&user, (const char **)&passwd, 0);
715   user = user ? user : opt.http_user;
716   passwd = passwd ? passwd : opt.http_passwd;
717
718   wwwauth = NULL;
719   if (user && passwd)
720     {
721       if (!authenticate_h)
722         {
723           /* We have the username and the password, but haven't tried
724              any authorization yet.  Let's see if the "Basic" method
725              works.  If not, we'll come back here and construct a
726              proper authorization method with the right challenges.
727
728              If we didn't employ this kind of logic, every URL that
729              requires authorization would have to be processed twice,
730              which is very suboptimal and generates a bunch of false
731              "unauthorized" errors in the server log.
732
733              #### But this logic also has a serious problem when used
734              with stronger authentications: we *first* transmit the
735              username and the password in clear text, and *then*
736              attempt a stronger authentication scheme.  That cannot be
737              right!  We are only fortunate that almost everyone still
738              uses the `Basic' scheme anyway.
739
740              There should be an option to prevent this from happening,
741              for those who use strong authentication schemes and value
742              their passwords.  */
743           wwwauth = basic_authentication_encode (user, passwd, "Authorization");
744         }
745       else
746         {
747           wwwauth = create_authorization_line (authenticate_h, user, passwd,
748                                                command, ou->path);
749         }
750     }
751
752   proxyauth = NULL;
753   if (u->proxy)
754     {
755       char *proxy_user, *proxy_passwd;
756       /* For normal username and password, URL components override
757          command-line/wgetrc parameters.  With proxy authentication,
758          it's the reverse, because proxy URLs are normally the
759          "permanent" ones, so command-line args should take
760          precedence.  */
761       if (opt.proxy_user && opt.proxy_passwd)
762         {
763           proxy_user = opt.proxy_user;
764           proxy_passwd = opt.proxy_passwd;
765         }
766       else
767         {
768           proxy_user = u->user;
769           proxy_passwd = u->passwd;
770         }
771       /* #### This is junky.  Can't the proxy request, say, `Digest'
772          authentication?  */
773       if (proxy_user && proxy_passwd)
774         proxyauth = basic_authentication_encode (proxy_user, proxy_passwd,
775                                                  "Proxy-Authorization");
776     }
777   remhost = ou->host;
778   remport = ou->port;
779
780   /* String of the form :PORT.  Used only for non-standard ports. */
781   port_maybe = NULL;
782 #ifdef HAVE_SSL
783   if (remport != (u->proto == URLHTTPS ? DEFAULT_HTTPS_PORT : DEFAULT_HTTP_PORT) )
784 #else
785   if (remport != DEFAULT_HTTP_PORT)
786 #endif
787     {
788       port_maybe = (char *)alloca (numdigit (remport) + 2);
789       sprintf (port_maybe, ":%d", remport);
790     }
791
792   if (!inhibit_keep_alive)
793     request_keep_alive = "Connection: Keep-Alive\r\n";
794   else
795     request_keep_alive = NULL;
796
797   /* Allocate the memory for the request.  */
798   request = (char *)alloca (strlen (command) + strlen (path)
799                             + strlen (useragent)
800                             + strlen (remhost)
801                             + (port_maybe ? strlen (port_maybe) : 0)
802                             + strlen (HTTP_ACCEPT)
803                             + (request_keep_alive
804                                ? strlen (request_keep_alive) : 0)
805                             + (referer ? strlen (referer) : 0)
806                             + (wwwauth ? strlen (wwwauth) : 0)
807                             + (proxyauth ? strlen (proxyauth) : 0)
808                             + (range ? strlen (range) : 0)
809                             + strlen (pragma_h)
810                             + (opt.user_header ? strlen (opt.user_header) : 0)
811                             + 64);
812   /* Construct the request.  */
813   sprintf (request, "\
814 %s %s HTTP/1.0\r\n\
815 User-Agent: %s\r\n\
816 Host: %s%s\r\n\
817 Accept: %s\r\n\
818 %s%s%s%s%s%s%s\r\n",
819            command, path, useragent, remhost,
820            port_maybe ? port_maybe : "",
821            HTTP_ACCEPT,
822            request_keep_alive ? request_keep_alive : "",
823            referer ? referer : "",
824            wwwauth ? wwwauth : "", 
825            proxyauth ? proxyauth : "", 
826            range ? range : "",
827            pragma_h, 
828            opt.user_header ? opt.user_header : "");
829   DEBUGP (("---request begin---\n%s---request end---\n", request));
830    /* Free the temporary memory.  */
831   FREE_MAYBE (wwwauth);
832   FREE_MAYBE (proxyauth);
833
834   /* Send the request to server.  */
835 #ifdef HAVE_SSL
836   if (u->proto == URLHTTPS)
837     num_written = ssl_iwrite (ssl, request, strlen (request));
838   else
839 #endif /* HAVE_SSL */
840     num_written = iwrite (sock, request, strlen (request));
841
842   if (num_written < 0)
843     {
844       logprintf (LOG_VERBOSE, _("Failed writing HTTP request: %s.\n"),
845                  strerror (errno));
846       CLOSE_INVALIDATE (sock);
847       return WRITEFAILED;
848     }
849   logprintf (LOG_VERBOSE, _("%s request sent, awaiting response... "),
850              u->proxy ? "Proxy" : "HTTP");
851   contlen = contrange = -1;
852   type = NULL;
853   statcode = -1;
854   *dt &= ~RETROKF;
855
856   /* Before reading anything, initialize the rbuf.  */
857   rbuf_initialize (&rbuf, sock);
858 #ifdef HAVE_SSL
859   if (u->proto == URLHTTPS)
860     rbuf.ssl = ssl;
861   else
862     rbuf.ssl = NULL;
863 #endif /* HAVE_SSL */
864   all_headers = NULL;
865   all_length = 0;
866   /* Header-fetching loop.  */
867   hcount = 0;
868   while (1)
869     {
870       char *hdr;
871       int status;
872
873       ++hcount;
874       /* Get the header.  */
875       status = header_get (&rbuf, &hdr,
876                            /* Disallow continuations for status line.  */
877                            (hcount == 1 ? HG_NO_CONTINUATIONS : HG_NONE));
878
879       /* Check for errors.  */
880       if (status == HG_EOF && *hdr)
881         {
882           /* This used to be an unconditional error, but that was
883              somewhat controversial, because of a large number of
884              broken CGI's that happily "forget" to send the second EOL
885              before closing the connection of a HEAD request.
886
887              So, the deal is to check whether the header is empty
888              (*hdr is zero if it is); if yes, it means that the
889              previous header was fully retrieved, and that -- most
890              probably -- the request is complete.  "...be liberal in
891              what you accept."  Oh boy.  */
892           logputs (LOG_VERBOSE, "\n");
893           logputs (LOG_NOTQUIET, _("End of file while parsing headers.\n"));
894           xfree (hdr);
895           FREE_MAYBE (type);
896           FREE_MAYBE (hs->newloc);
897           FREE_MAYBE (all_headers);
898           CLOSE_INVALIDATE (sock);
899           return HEOF;
900         }
901       else if (status == HG_ERROR)
902         {
903           logputs (LOG_VERBOSE, "\n");
904           logprintf (LOG_NOTQUIET, _("Read error (%s) in headers.\n"),
905                      strerror (errno));
906           xfree (hdr);
907           FREE_MAYBE (type);
908           FREE_MAYBE (hs->newloc);
909           FREE_MAYBE (all_headers);
910           CLOSE_INVALIDATE (sock);
911           return HERR;
912         }
913
914       /* If the headers are to be saved to a file later, save them to
915          memory now.  */
916       if (opt.save_headers)
917         {
918           int lh = strlen (hdr);
919           all_headers = (char *)xrealloc (all_headers, all_length + lh + 2);
920           memcpy (all_headers + all_length, hdr, lh);
921           all_length += lh;
922           all_headers[all_length++] = '\n';
923           all_headers[all_length] = '\0';
924         }
925
926       /* Print the header if requested.  */
927       if (opt.server_response && hcount != 1)
928         logprintf (LOG_VERBOSE, "\n%d %s", hcount, hdr);
929
930       /* Check for status line.  */
931       if (hcount == 1)
932         {
933           const char *error;
934           /* Parse the first line of server response.  */
935           statcode = parse_http_status_line (hdr, &error);
936           hs->statcode = statcode;
937           /* Store the descriptive response.  */
938           if (statcode == -1) /* malformed response */
939             {
940               /* A common reason for "malformed response" error is the
941                  case when no data was actually received.  Handle this
942                  special case.  */
943               if (!*hdr)
944                 hs->error = xstrdup (_("No data received"));
945               else
946                 hs->error = xstrdup (_("Malformed status line"));
947               xfree (hdr);
948               break;
949             }
950           else if (!*error)
951             hs->error = xstrdup (_("(no description)"));
952           else
953             hs->error = xstrdup (error);
954
955           if ((statcode != -1)
956 #ifdef DEBUG
957               && !opt.debug
958 #endif
959               )
960             logprintf (LOG_VERBOSE, "%d %s", statcode, error);
961
962           goto done_header;
963         }
964
965       /* Exit on empty header.  */
966       if (!*hdr)
967         {
968           xfree (hdr);
969           break;
970         }
971
972       /* Try getting content-length.  */
973       if (contlen == -1 && !opt.ignore_length)
974         if (header_process (hdr, "Content-Length", header_extract_number,
975                             &contlen))
976           goto done_header;
977       /* Try getting content-type.  */
978       if (!type)
979         if (header_process (hdr, "Content-Type", http_process_type, &type))
980           goto done_header;
981       /* Try getting location.  */
982       if (!hs->newloc)
983         if (header_process (hdr, "Location", header_strdup, &hs->newloc))
984           goto done_header;
985       /* Try getting last-modified.  */
986       if (!hs->remote_time)
987         if (header_process (hdr, "Last-Modified", header_strdup,
988                             &hs->remote_time))
989           goto done_header;
990       /* Try getting www-authentication.  */
991       if (!authenticate_h)
992         if (header_process (hdr, "WWW-Authenticate", header_strdup,
993                             &authenticate_h))
994           goto done_header;
995       /* Check for accept-ranges header.  If it contains the word
996          `none', disable the ranges.  */
997       if (*dt & ACCEPTRANGES)
998         {
999           int nonep;
1000           if (header_process (hdr, "Accept-Ranges", http_process_none, &nonep))
1001             {
1002               if (nonep)
1003                 *dt &= ~ACCEPTRANGES;
1004               goto done_header;
1005             }
1006         }
1007       /* Try getting content-range.  */
1008       if (contrange == -1)
1009         {
1010           struct http_process_range_closure closure;
1011           if (header_process (hdr, "Content-Range", http_process_range, &closure))
1012             {
1013               contrange = closure.first_byte_pos;
1014               goto done_header;
1015             }
1016         }
1017       /* Check for keep-alive related responses. */
1018       if (!inhibit_keep_alive)
1019         {
1020           /* Check for the `Keep-Alive' header. */
1021           if (!http_keep_alive_1)
1022             {
1023               if (header_process (hdr, "Keep-Alive", header_exists,
1024                                   &http_keep_alive_1))
1025                 goto done_header;
1026             }
1027           /* Check for `Connection: Keep-Alive'. */
1028           if (!http_keep_alive_2)
1029             {
1030               if (header_process (hdr, "Connection", http_process_connection,
1031                                   &http_keep_alive_2))
1032                 goto done_header;
1033             }
1034         }
1035     done_header:
1036       xfree (hdr);
1037     }
1038
1039   logputs (LOG_VERBOSE, "\n");
1040
1041   if (contlen != -1
1042       && (http_keep_alive_1 || http_keep_alive_2))
1043     {
1044       assert (inhibit_keep_alive == 0);
1045       keep_alive = 1;
1046     }
1047   if (keep_alive)
1048     /* The server has promised that it will not close the connection
1049        when we're done.  This means that we can register it.  */
1050 #ifndef HAVE_SSL
1051     register_persistent (u->host, u->port, sock);
1052 #else
1053     register_persistent (u->host, u->port, sock, ssl);
1054 #endif /* HAVE_SSL */
1055
1056   if ((statcode == HTTP_STATUS_UNAUTHORIZED)
1057       && authenticate_h)
1058     {
1059       /* Authorization is required.  */
1060       FREE_MAYBE (type);
1061       type = NULL;
1062       FREEHSTAT (*hs);
1063       CLOSE_FINISH (sock);
1064       if (auth_tried_already)
1065         {
1066           /* If we have tried it already, then there is not point
1067              retrying it.  */
1068         failed:
1069           logputs (LOG_NOTQUIET, _("Authorization failed.\n"));
1070           xfree (authenticate_h);
1071           return AUTHFAILED;
1072         }
1073       else if (!known_authentication_scheme_p (authenticate_h))
1074         {
1075           xfree (authenticate_h);
1076           logputs (LOG_NOTQUIET, _("Unknown authentication scheme.\n"));
1077           return AUTHFAILED;
1078         }
1079       else if (BEGINS_WITH (authenticate_h, "Basic"))
1080         {
1081           /* The authentication scheme is basic, the one we try by
1082              default, and it failed.  There's no sense in trying
1083              again.  */
1084           goto failed;
1085         }
1086       else
1087         {
1088           auth_tried_already = 1;
1089           goto again;
1090         }
1091     }
1092   /* We do not need this anymore.  */
1093   if (authenticate_h)
1094     {
1095       xfree (authenticate_h);
1096       authenticate_h = NULL;
1097     }
1098
1099   /* 20x responses are counted among successful by default.  */
1100   if (H_20X (statcode))
1101     *dt |= RETROKF;
1102
1103   if (type && !strncasecmp (type, TEXTHTML_S, strlen (TEXTHTML_S)))
1104     *dt |= TEXTHTML;
1105   else
1106     /* We don't assume text/html by default.  */
1107     *dt &= ~TEXTHTML;
1108
1109   if (opt.html_extension && (*dt & TEXTHTML))
1110     /* -E / --html-extension / html_extension = on was specified, and this is a
1111        text/html file.  If some case-insensitive variation on ".htm[l]" isn't
1112        already the file's suffix, tack on ".html". */
1113     {
1114       char*  last_period_in_local_filename = strrchr(u->local, '.');
1115
1116       if (last_period_in_local_filename == NULL ||
1117           !(strcasecmp(last_period_in_local_filename, ".htm") == EQ ||
1118             strcasecmp(last_period_in_local_filename, ".html") == EQ))
1119         {
1120           size_t  local_filename_len = strlen(u->local);
1121           
1122           u->local = xrealloc(u->local, local_filename_len + sizeof(".html"));
1123           strcpy(u->local + local_filename_len, ".html");
1124
1125           *dt |= ADDED_HTML_EXTENSION;
1126         }
1127     }
1128
1129   if (contrange == -1)
1130     hs->restval = 0;
1131   else if (contrange != hs->restval ||
1132            (H_PARTIAL (statcode) && contrange == -1))
1133     {
1134       /* This means the whole request was somehow misunderstood by the
1135          server.  Bail out.  */
1136       FREE_MAYBE (type);
1137       FREE_MAYBE (hs->newloc);
1138       FREE_MAYBE (all_headers);
1139       CLOSE_INVALIDATE (sock);
1140       return RANGEERR;
1141     }
1142
1143   if (hs->restval)
1144     {
1145       if (contlen != -1)
1146         contlen += contrange;
1147       else
1148         contrange = -1;        /* If conent-length was not sent,
1149                                   content-range will be ignored.  */
1150     }
1151   hs->contlen = contlen;
1152
1153   /* Return if redirected.  */
1154   if (H_REDIRECTED (statcode) || statcode == HTTP_STATUS_MULTIPLE_CHOICES)
1155     {
1156       /* RFC2068 says that in case of the 300 (multiple choices)
1157          response, the server can output a preferred URL through
1158          `Location' header; otherwise, the request should be treated
1159          like GET.  So, if the location is set, it will be a
1160          redirection; otherwise, just proceed normally.  */
1161       if (statcode == HTTP_STATUS_MULTIPLE_CHOICES && !hs->newloc)
1162         *dt |= RETROKF;
1163       else
1164         {
1165           logprintf (LOG_VERBOSE,
1166                      _("Location: %s%s\n"),
1167                      hs->newloc ? hs->newloc : _("unspecified"),
1168                      hs->newloc ? _(" [following]") : "");
1169           CLOSE_FINISH (sock);
1170           FREE_MAYBE (type);
1171           FREE_MAYBE (all_headers);
1172           return NEWLOCATION;
1173         }
1174     }
1175   if (opt.verbose)
1176     {
1177       if ((*dt & RETROKF) && !opt.server_response)
1178         {
1179           /* No need to print this output if the body won't be
1180              downloaded at all, or if the original server response is
1181              printed.  */
1182           logputs (LOG_VERBOSE, _("Length: "));
1183           if (contlen != -1)
1184             {
1185               logputs (LOG_VERBOSE, legible (contlen));
1186               if (contrange != -1)
1187                 logprintf (LOG_VERBOSE, _(" (%s to go)"),
1188                            legible (contlen - contrange));
1189             }
1190           else
1191             logputs (LOG_VERBOSE,
1192                      opt.ignore_length ? _("ignored") : _("unspecified"));
1193           if (type)
1194             logprintf (LOG_VERBOSE, " [%s]\n", type);
1195           else
1196             logputs (LOG_VERBOSE, "\n");
1197         }
1198     }
1199   FREE_MAYBE (type);
1200   type = NULL;                  /* We don't need it any more.  */
1201
1202   /* Return if we have no intention of further downloading.  */
1203   if (!(*dt & RETROKF) || (*dt & HEAD_ONLY))
1204     {
1205       /* In case someone cares to look...  */
1206       hs->len = 0L;
1207       hs->res = 0;
1208       FREE_MAYBE (type);
1209       FREE_MAYBE (all_headers);
1210       CLOSE_FINISH (sock);
1211       return RETRFINISHED;
1212     }
1213
1214   /* Open the local file.  */
1215   if (!opt.dfp)
1216     {
1217       mkalldirs (u->local);
1218       if (opt.backups)
1219         rotate_backups (u->local);
1220       fp = fopen (u->local, hs->restval ? "ab" : "wb");
1221       if (!fp)
1222         {
1223           logprintf (LOG_NOTQUIET, "%s: %s\n", u->local, strerror (errno));
1224           CLOSE_FINISH (sock);
1225           FREE_MAYBE (all_headers);
1226           return FOPENERR;
1227         }
1228     }
1229   else                          /* opt.dfp */
1230     {
1231       fp = opt.dfp;
1232       if (!hs->restval)
1233         {
1234           /* This will silently fail for streams that don't correspond
1235              to regular files, but that's OK.  */
1236           rewind (fp);
1237           clearerr (fp);
1238         }
1239     }
1240
1241   /* #### This confuses the code that checks for file size.  There
1242      should be some overhead information.  */
1243   if (opt.save_headers)
1244     fwrite (all_headers, 1, all_length, fp);
1245   reset_timer ();
1246   /* Get the contents of the document.  */
1247   hs->res = get_contents (sock, fp, &hs->len, hs->restval,
1248                           (contlen != -1 ? contlen : 0),
1249                           &rbuf, keep_alive);
1250   hs->dltime = elapsed_time ();
1251   {
1252     /* Close or flush the file.  We have to be careful to check for
1253        error here.  Checking the result of fwrite() is not enough --
1254        errors could go unnoticed!  */
1255     int flush_res;
1256     if (!opt.dfp)
1257       flush_res = fclose (fp);
1258     else
1259       flush_res = fflush (fp);
1260     if (flush_res == EOF)
1261       hs->res = -2;
1262   }
1263   FREE_MAYBE (all_headers);
1264   CLOSE_FINISH (sock);
1265   if (hs->res == -2)
1266     return FWRITEERR;
1267   return RETRFINISHED;
1268 }
1269
1270 /* The genuine HTTP loop!  This is the part where the retrieval is
1271    retried, and retried, and retried, and...  */
1272 uerr_t
1273 http_loop (struct urlinfo *u, char **newloc, int *dt)
1274 {
1275   int count;
1276   int use_ts, got_head = 0;     /* time-stamping info */
1277   char *filename_plus_orig_suffix;
1278   char *local_filename = NULL;
1279   char *tms, *suf, *locf, *tmrate;
1280   uerr_t err;
1281   time_t tml = -1, tmr = -1;    /* local and remote time-stamps */
1282   long local_size = 0;          /* the size of the local file */
1283   size_t filename_len;
1284   struct http_stat hstat;       /* HTTP status */
1285   struct stat st;
1286
1287   *newloc = NULL;
1288
1289   /* Warn on (likely bogus) wildcard usage in HTTP.  Don't use
1290      has_wildcards_p because it would also warn on `?', and we know that
1291      shows up in CGI paths a *lot*.  */
1292   if (strchr (u->url, '*'))
1293     logputs (LOG_VERBOSE, _("Warning: wildcards not supported in HTTP.\n"));
1294
1295   /* Determine the local filename.  */
1296   if (!u->local)
1297     u->local = url_filename (u->proxy ? u->proxy : u);
1298
1299   if (!opt.output_document)
1300     locf = u->local;
1301   else
1302     locf = opt.output_document;
1303
1304   /* Yuck.  Multiple returns suck.  We need to remember to free() the space we
1305      xmalloc() here before EACH return.  This is one reason it's better to set
1306      flags that influence flow control and then return once at the end. */
1307   filename_len = strlen(u->local);
1308   filename_plus_orig_suffix = xmalloc(filename_len + sizeof(".orig"));
1309
1310   if (opt.noclobber && file_exists_p (u->local))
1311     {
1312       /* If opt.noclobber is turned on and file already exists, do not
1313          retrieve the file */
1314       logprintf (LOG_VERBOSE, _("\
1315 File `%s' already there, will not retrieve.\n"), u->local);
1316       /* If the file is there, we suppose it's retrieved OK.  */
1317       *dt |= RETROKF;
1318
1319       /* #### Bogusness alert.  */
1320       /* If its suffix is "html" or (yuck!) "htm", we suppose it's
1321          text/html, a harmless lie.  */
1322       if (((suf = suffix (u->local)) != NULL)
1323           && (!strcmp (suf, "html") || !strcmp (suf, "htm")))
1324         *dt |= TEXTHTML;
1325       xfree (suf);
1326       xfree (filename_plus_orig_suffix); /* must precede every return! */
1327       /* Another harmless lie: */
1328       return RETROK;
1329     }
1330
1331   use_ts = 0;
1332   if (opt.timestamping)
1333     {
1334       boolean  local_dot_orig_file_exists = FALSE;
1335
1336       if (opt.backup_converted)
1337         /* If -K is specified, we'll act on the assumption that it was specified
1338            last time these files were downloaded as well, and instead of just
1339            comparing local file X against server file X, we'll compare local
1340            file X.orig (if extant, else X) against server file X.  If -K
1341            _wasn't_ specified last time, or the server contains files called
1342            *.orig, -N will be back to not operating correctly with -k. */
1343         {
1344           /* Would a single s[n]printf() call be faster?  --dan
1345
1346              It wouldn't.  sprintf() is horribly slow.  At one point I
1347              profiled Wget, and found that a measurable and
1348              non-negligible amount of time was lost calling sprintf()
1349              in url.c.  Replacing sprintf with inline calls to
1350              strcpy() and long_to_string() made a difference.
1351              --hniksic */
1352           strcpy(filename_plus_orig_suffix, u->local);
1353           strcpy(filename_plus_orig_suffix + filename_len, ".orig");
1354
1355           /* Try to stat() the .orig file. */
1356           if (stat(filename_plus_orig_suffix, &st) == 0)
1357             {
1358               local_dot_orig_file_exists = TRUE;
1359               local_filename = filename_plus_orig_suffix;
1360             }
1361         }      
1362
1363       if (!local_dot_orig_file_exists)
1364         /* Couldn't stat() <file>.orig, so try to stat() <file>. */
1365         if (stat (u->local, &st) == 0)
1366           local_filename = u->local;
1367
1368       if (local_filename != NULL)
1369         /* There was a local file, so we'll check later to see if the version
1370            the server has is the same version we already have, allowing us to
1371            skip a download. */
1372         {
1373           use_ts = 1;
1374           tml = st.st_mtime;
1375           local_size = st.st_size;
1376           got_head = 0;
1377         }
1378     }
1379   /* Reset the counter.  */
1380   count = 0;
1381   *dt = 0 | ACCEPTRANGES;
1382   /* THE loop */
1383   do
1384     {
1385       /* Increment the pass counter.  */
1386       ++count;
1387       sleep_between_retrievals (count);
1388       /* Get the current time string.  */
1389       tms = time_str (NULL);
1390       /* Print fetch message, if opt.verbose.  */
1391       if (opt.verbose)
1392         {
1393           char *hurl = str_url (u->proxy ? u->proxy : u, 1);
1394           char tmp[15];
1395           strcpy (tmp, "        ");
1396           if (count > 1)
1397             sprintf (tmp, _("(try:%2d)"), count);
1398           logprintf (LOG_VERBOSE, "--%s--  %s\n  %s => `%s'\n",
1399                      tms, hurl, tmp, locf);
1400 #ifdef WINDOWS
1401           ws_changetitle (hurl, 1);
1402 #endif
1403           xfree (hurl);
1404         }
1405
1406       /* Default document type is empty.  However, if spider mode is
1407          on or time-stamping is employed, HEAD_ONLY commands is
1408          encoded within *dt.  */
1409       if (opt.spider || (use_ts && !got_head))
1410         *dt |= HEAD_ONLY;
1411       else
1412         *dt &= ~HEAD_ONLY;
1413       /* Assume no restarting.  */
1414       hstat.restval = 0L;
1415       /* Decide whether or not to restart.  */
1416       if (((count > 1 && (*dt & ACCEPTRANGES)) || opt.always_rest)
1417           && file_exists_p (u->local))
1418         if (stat (u->local, &st) == 0)
1419           hstat.restval = st.st_size;
1420       /* Decide whether to send the no-cache directive.  */
1421       if (u->proxy && (count > 1 || (opt.proxy_cache == 0)))
1422         *dt |= SEND_NOCACHE;
1423       else
1424         *dt &= ~SEND_NOCACHE;
1425
1426       /* Try fetching the document, or at least its head.  :-) */
1427       err = gethttp (u, &hstat, dt);
1428
1429       /* It's unfortunate that wget determines the local filename before finding
1430          out the Content-Type of the file.  Barring a major restructuring of the
1431          code, we need to re-set locf here, since gethttp() may have xrealloc()d
1432          u->local to tack on ".html". */
1433       if (!opt.output_document)
1434         locf = u->local;
1435       else
1436         locf = opt.output_document;
1437
1438       /* Time?  */
1439       tms = time_str (NULL);
1440       /* Get the new location (with or without the redirection).  */
1441       if (hstat.newloc)
1442         *newloc = xstrdup (hstat.newloc);
1443       switch (err)
1444         {
1445         case HERR: case HEOF: case CONSOCKERR: case CONCLOSED:
1446         case CONERROR: case READERR: case WRITEFAILED:
1447         case RANGEERR:
1448           /* Non-fatal errors continue executing the loop, which will
1449              bring them to "while" statement at the end, to judge
1450              whether the number of tries was exceeded.  */
1451           FREEHSTAT (hstat);
1452           printwhat (count, opt.ntry);
1453           continue;
1454           break;
1455         case HOSTERR: case CONREFUSED: case PROXERR: case AUTHFAILED: 
1456         case SSLERRCTXCREATE:
1457           /* Fatal errors just return from the function.  */
1458           FREEHSTAT (hstat);
1459           xfree (filename_plus_orig_suffix); /* must precede every return! */
1460           return err;
1461           break;
1462         case FWRITEERR: case FOPENERR:
1463           /* Another fatal error.  */
1464           logputs (LOG_VERBOSE, "\n");
1465           logprintf (LOG_NOTQUIET, _("Cannot write to `%s' (%s).\n"),
1466                      u->local, strerror (errno));
1467           FREEHSTAT (hstat);
1468           return err;
1469           break;
1470    case CONSSLERR:
1471           /* Another fatal error.  */
1472           logputs (LOG_VERBOSE, "\n");
1473           logprintf (LOG_NOTQUIET, _("Unable to establish SSL connection.\n"));
1474           FREEHSTAT (hstat);
1475           xfree (filename_plus_orig_suffix); /* must precede every return! */
1476           return err;
1477           break;
1478         case NEWLOCATION:
1479           /* Return the new location to the caller.  */
1480           if (!hstat.newloc)
1481             {
1482               logprintf (LOG_NOTQUIET,
1483                          _("ERROR: Redirection (%d) without location.\n"),
1484                          hstat.statcode);
1485               xfree (filename_plus_orig_suffix); /* must precede every return! */
1486               return WRONGCODE;
1487             }
1488           FREEHSTAT (hstat);
1489           xfree (filename_plus_orig_suffix); /* must precede every return! */
1490           return NEWLOCATION;
1491           break;
1492         case RETRFINISHED:
1493           /* Deal with you later.  */
1494           break;
1495         default:
1496           /* All possibilities should have been exhausted.  */
1497           abort ();
1498         }
1499       if (!(*dt & RETROKF))
1500         {
1501           if (!opt.verbose)
1502             {
1503               /* #### Ugly ugly ugly! */
1504               char *hurl = str_url (u->proxy ? u->proxy : u, 1);
1505               logprintf (LOG_NONVERBOSE, "%s:\n", hurl);
1506               xfree (hurl);
1507             }
1508           logprintf (LOG_NOTQUIET, _("%s ERROR %d: %s.\n"),
1509                      tms, hstat.statcode, hstat.error);
1510           logputs (LOG_VERBOSE, "\n");
1511           FREEHSTAT (hstat);
1512           xfree (filename_plus_orig_suffix); /* must precede every return! */
1513           return WRONGCODE;
1514         }
1515
1516       /* Did we get the time-stamp?  */
1517       if (!got_head)
1518         {
1519           if (opt.timestamping && !hstat.remote_time)
1520             {
1521               logputs (LOG_NOTQUIET, _("\
1522 Last-modified header missing -- time-stamps turned off.\n"));
1523             }
1524           else if (hstat.remote_time)
1525             {
1526               /* Convert the date-string into struct tm.  */
1527               tmr = http_atotm (hstat.remote_time);
1528               if (tmr == (time_t) (-1))
1529                 logputs (LOG_VERBOSE, _("\
1530 Last-modified header invalid -- time-stamp ignored.\n"));
1531             }
1532         }
1533
1534       /* The time-stamping section.  */
1535       if (use_ts)
1536         {
1537           got_head = 1;
1538           *dt &= ~HEAD_ONLY;
1539           use_ts = 0;           /* no more time-stamping */
1540           count = 0;            /* the retrieve count for HEAD is
1541                                    reset */
1542           if (hstat.remote_time && tmr != (time_t) (-1))
1543             {
1544               /* Now time-stamping can be used validly.  Time-stamping
1545                  means that if the sizes of the local and remote file
1546                  match, and local file is newer than the remote file,
1547                  it will not be retrieved.  Otherwise, the normal
1548                  download procedure is resumed.  */
1549               if (tml >= tmr &&
1550                   (hstat.contlen == -1 || local_size == hstat.contlen))
1551                 {
1552                   logprintf (LOG_VERBOSE, _("\
1553 Server file no newer than local file `%s' -- not retrieving.\n\n"),
1554                              local_filename);
1555                   FREEHSTAT (hstat);
1556                   xfree (filename_plus_orig_suffix); /*must precede every return!*/
1557                   return RETROK;
1558                 }
1559               else if (tml >= tmr)
1560                 logprintf (LOG_VERBOSE, _("\
1561 The sizes do not match (local %ld) -- retrieving.\n"), local_size);
1562               else
1563                 logputs (LOG_VERBOSE,
1564                          _("Remote file is newer, retrieving.\n"));
1565             }
1566           FREEHSTAT (hstat);
1567           continue;
1568         }
1569       if ((tmr != (time_t) (-1))
1570           && !opt.spider
1571           && ((hstat.len == hstat.contlen) ||
1572               ((hstat.res == 0) &&
1573                ((hstat.contlen == -1) ||
1574                 (hstat.len >= hstat.contlen && !opt.kill_longer)))))
1575         {
1576           /* #### This code repeats in http.c and ftp.c.  Move it to a
1577              function!  */
1578           const char *fl = NULL;
1579           if (opt.output_document)
1580             {
1581               if (opt.od_known_regular)
1582                 fl = opt.output_document;
1583             }
1584           else
1585             fl = u->local;
1586           if (fl)
1587             touch (fl, tmr);
1588         }
1589       /* End of time-stamping section.  */
1590
1591       if (opt.spider)
1592         {
1593           logprintf (LOG_NOTQUIET, "%d %s\n\n", hstat.statcode, hstat.error);
1594           xfree (filename_plus_orig_suffix); /* must precede every return! */
1595           return RETROK;
1596         }
1597
1598       /* It is now safe to free the remainder of hstat, since the
1599          strings within it will no longer be used.  */
1600       FREEHSTAT (hstat);
1601
1602       tmrate = rate (hstat.len - hstat.restval, hstat.dltime, 0);
1603
1604       if (hstat.len == hstat.contlen)
1605         {
1606           if (*dt & RETROKF)
1607             {
1608               logprintf (LOG_VERBOSE,
1609                          _("%s (%s) - `%s' saved [%ld/%ld]\n\n"),
1610                          tms, tmrate, locf, hstat.len, hstat.contlen);
1611               logprintf (LOG_NONVERBOSE,
1612                          "%s URL:%s [%ld/%ld] -> \"%s\" [%d]\n",
1613                          tms, u->url, hstat.len, hstat.contlen, locf, count);
1614             }
1615           ++opt.numurls;
1616           downloaded_increase (hstat.len);
1617
1618           /* Remember that we downloaded the file for later ".orig" code. */
1619           if (*dt & ADDED_HTML_EXTENSION)
1620             downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, locf);
1621           else
1622             downloaded_file(FILE_DOWNLOADED_NORMALLY, locf);
1623
1624           xfree(filename_plus_orig_suffix); /* must precede every return! */
1625           return RETROK;
1626         }
1627       else if (hstat.res == 0) /* No read error */
1628         {
1629           if (hstat.contlen == -1)  /* We don't know how much we were supposed
1630                                        to get, so assume we succeeded. */ 
1631             {
1632               if (*dt & RETROKF)
1633                 {
1634                   logprintf (LOG_VERBOSE,
1635                              _("%s (%s) - `%s' saved [%ld]\n\n"),
1636                              tms, tmrate, locf, hstat.len);
1637                   logprintf (LOG_NONVERBOSE,
1638                              "%s URL:%s [%ld] -> \"%s\" [%d]\n",
1639                              tms, u->url, hstat.len, locf, count);
1640                 }
1641               ++opt.numurls;
1642               downloaded_increase (hstat.len);
1643
1644               /* Remember that we downloaded the file for later ".orig" code. */
1645               if (*dt & ADDED_HTML_EXTENSION)
1646                 downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, locf);
1647               else
1648                 downloaded_file(FILE_DOWNLOADED_NORMALLY, locf);
1649               
1650               xfree (filename_plus_orig_suffix); /* must precede every return! */
1651               return RETROK;
1652             }
1653           else if (hstat.len < hstat.contlen) /* meaning we lost the
1654                                                  connection too soon */
1655             {
1656               logprintf (LOG_VERBOSE,
1657                          _("%s (%s) - Connection closed at byte %ld. "),
1658                          tms, tmrate, hstat.len);
1659               printwhat (count, opt.ntry);
1660               continue;
1661             }
1662           else if (!opt.kill_longer) /* meaning we got more than expected */
1663             {
1664               logprintf (LOG_VERBOSE,
1665                          _("%s (%s) - `%s' saved [%ld/%ld])\n\n"),
1666                          tms, tmrate, locf, hstat.len, hstat.contlen);
1667               logprintf (LOG_NONVERBOSE,
1668                          "%s URL:%s [%ld/%ld] -> \"%s\" [%d]\n",
1669                          tms, u->url, hstat.len, hstat.contlen, locf, count);
1670               ++opt.numurls;
1671               downloaded_increase (hstat.len);
1672
1673               /* Remember that we downloaded the file for later ".orig" code. */
1674               if (*dt & ADDED_HTML_EXTENSION)
1675                 downloaded_file(FILE_DOWNLOADED_AND_HTML_EXTENSION_ADDED, locf);
1676               else
1677                 downloaded_file(FILE_DOWNLOADED_NORMALLY, locf);
1678               
1679               xfree (filename_plus_orig_suffix); /* must precede every return! */
1680               return RETROK;
1681             }
1682           else                  /* the same, but not accepted */
1683             {
1684               logprintf (LOG_VERBOSE,
1685                          _("%s (%s) - Connection closed at byte %ld/%ld. "),
1686                          tms, tmrate, hstat.len, hstat.contlen);
1687               printwhat (count, opt.ntry);
1688               continue;
1689             }
1690         }
1691       else                      /* now hstat.res can only be -1 */
1692         {
1693           if (hstat.contlen == -1)
1694             {
1695               logprintf (LOG_VERBOSE,
1696                          _("%s (%s) - Read error at byte %ld (%s)."),
1697                          tms, tmrate, hstat.len, strerror (errno));
1698               printwhat (count, opt.ntry);
1699               continue;
1700             }
1701           else                  /* hstat.res == -1 and contlen is given */
1702             {
1703               logprintf (LOG_VERBOSE,
1704                          _("%s (%s) - Read error at byte %ld/%ld (%s). "),
1705                          tms, tmrate, hstat.len, hstat.contlen,
1706                          strerror (errno));
1707               printwhat (count, opt.ntry);
1708               continue;
1709             }
1710         }
1711       /* not reached */
1712       break;
1713     }
1714   while (!opt.ntry || (count < opt.ntry));
1715   xfree (filename_plus_orig_suffix); /* must precede every return! */
1716   return TRYLIMEXC;
1717 }
1718 \f
1719 /* Converts struct tm to time_t, assuming the data in tm is UTC rather
1720    than local timezone (mktime assumes the latter).
1721
1722    Contributed by Roger Beeman <beeman@cisco.com>, with the help of
1723    Mark Baushke <mdb@cisco.com> and the rest of the Gurus at CISCO.  */
1724 static time_t
1725 mktime_from_utc (struct tm *t)
1726 {
1727   time_t tl, tb;
1728
1729   tl = mktime (t);
1730   if (tl == -1)
1731     return -1;
1732   tb = mktime (gmtime (&tl));
1733   return (tl <= tb ? (tl + (tl - tb)) : (tl - (tb - tl)));
1734 }
1735
1736 /* Check whether the result of strptime() indicates success.
1737    strptime() returns the pointer to how far it got to in the string.
1738    The processing has been successful if the string is at `GMT' or
1739    `+X', or at the end of the string.
1740
1741    In extended regexp parlance, the function returns 1 if P matches
1742    "^ *(GMT|[+-][0-9]|$)", 0 otherwise.  P being NULL (a valid result of
1743    strptime()) is considered a failure and 0 is returned.  */
1744 static int
1745 check_end (const char *p)
1746 {
1747   if (!p)
1748     return 0;
1749   while (ISSPACE (*p))
1750     ++p;
1751   if (!*p
1752       || (p[0] == 'G' && p[1] == 'M' && p[2] == 'T')
1753       || ((p[0] == '+' || p[0] == '-') && ISDIGIT (p[1])))
1754     return 1;
1755   else
1756     return 0;
1757 }
1758
1759 /* Convert TIME_STRING time to time_t.  TIME_STRING can be in any of
1760    the three formats RFC2068 allows the HTTP servers to emit --
1761    RFC1123-date, RFC850-date or asctime-date.  Timezones are ignored,
1762    and should be GMT.
1763
1764    We use strptime() to recognize various dates, which makes it a
1765    little bit slacker than the RFC1123/RFC850/asctime (e.g. it always
1766    allows shortened dates and months, one-digit days, etc.).  It also
1767    allows more than one space anywhere where the specs require one SP.
1768    The routine should probably be even more forgiving (as recommended
1769    by RFC2068), but I do not have the time to write one.
1770
1771    Return the computed time_t representation, or -1 if all the
1772    schemes fail.
1773
1774    Needless to say, what we *really* need here is something like
1775    Marcus Hennecke's atotm(), which is forgiving, fast, to-the-point,
1776    and does not use strptime().  atotm() is to be found in the sources
1777    of `phttpd', a little-known HTTP server written by Peter Erikson.  */
1778 static time_t
1779 http_atotm (char *time_string)
1780 {
1781   struct tm t;
1782
1783   /* Roger Beeman says: "This function dynamically allocates struct tm
1784      t, but does no initialization.  The only field that actually
1785      needs initialization is tm_isdst, since the others will be set by
1786      strptime.  Since strptime does not set tm_isdst, it will return
1787      the data structure with whatever data was in tm_isdst to begin
1788      with.  For those of us in timezones where DST can occur, there
1789      can be a one hour shift depending on the previous contents of the
1790      data area where the data structure is allocated."  */
1791   t.tm_isdst = -1;
1792
1793   /* Note that under foreign locales Solaris strptime() fails to
1794      recognize English dates, which renders this function useless.  I
1795      assume that other non-GNU strptime's are plagued by the same
1796      disease.  We solve this by setting only LC_MESSAGES in
1797      i18n_initialize(), instead of LC_ALL.
1798
1799      Another solution could be to temporarily set locale to C, invoke
1800      strptime(), and restore it back.  This is slow and dirty,
1801      however, and locale support other than LC_MESSAGES can mess other
1802      things, so I rather chose to stick with just setting LC_MESSAGES.
1803
1804      Also note that none of this is necessary under GNU strptime(),
1805      because it recognizes both international and local dates.  */
1806
1807   /* NOTE: We don't use `%n' for white space, as OSF's strptime uses
1808      it to eat all white space up to (and including) a newline, and
1809      the function fails if there is no newline (!).
1810
1811      Let's hope all strptime() implementations use ` ' to skip *all*
1812      whitespace instead of just one (it works that way on all the
1813      systems I've tested it on).  */
1814
1815   /* RFC1123: Thu, 29 Jan 1998 22:12:57 */
1816   if (check_end (strptime (time_string, "%a, %d %b %Y %T", &t)))
1817     return mktime_from_utc (&t);
1818   /* RFC850:  Thu, 29-Jan-98 22:12:57 */
1819   if (check_end (strptime (time_string, "%a, %d-%b-%y %T", &t)))
1820     return mktime_from_utc (&t);
1821   /* asctime: Thu Jan 29 22:12:57 1998 */
1822   if (check_end (strptime (time_string, "%a %b %d %T %Y", &t)))
1823     return mktime_from_utc (&t);
1824   /* Failure.  */
1825   return -1;
1826 }
1827 \f
1828 /* Authorization support: We support two authorization schemes:
1829
1830    * `Basic' scheme, consisting of base64-ing USER:PASSWORD string;
1831
1832    * `Digest' scheme, added by Junio Hamano <junio@twinsun.com>,
1833    consisting of answering to the server's challenge with the proper
1834    MD5 digests.  */
1835
1836 /* How many bytes it will take to store LEN bytes in base64.  */
1837 #define BASE64_LENGTH(len) (4 * (((len) + 2) / 3))
1838
1839 /* Encode the string S of length LENGTH to base64 format and place it
1840    to STORE.  STORE will be 0-terminated, and must point to a writable
1841    buffer of at least 1+BASE64_LENGTH(length) bytes.  */
1842 static void
1843 base64_encode (const char *s, char *store, int length)
1844 {
1845   /* Conversion table.  */
1846   static char tbl[64] = {
1847     'A','B','C','D','E','F','G','H',
1848     'I','J','K','L','M','N','O','P',
1849     'Q','R','S','T','U','V','W','X',
1850     'Y','Z','a','b','c','d','e','f',
1851     'g','h','i','j','k','l','m','n',
1852     'o','p','q','r','s','t','u','v',
1853     'w','x','y','z','0','1','2','3',
1854     '4','5','6','7','8','9','+','/'
1855   };
1856   int i;
1857   unsigned char *p = (unsigned char *)store;
1858
1859   /* Transform the 3x8 bits to 4x6 bits, as required by base64.  */
1860   for (i = 0; i < length; i += 3)
1861     {
1862       *p++ = tbl[s[0] >> 2];
1863       *p++ = tbl[((s[0] & 3) << 4) + (s[1] >> 4)];
1864       *p++ = tbl[((s[1] & 0xf) << 2) + (s[2] >> 6)];
1865       *p++ = tbl[s[2] & 0x3f];
1866       s += 3;
1867     }
1868   /* Pad the result if necessary...  */
1869   if (i == length + 1)
1870     *(p - 1) = '=';
1871   else if (i == length + 2)
1872     *(p - 1) = *(p - 2) = '=';
1873   /* ...and zero-terminate it.  */
1874   *p = '\0';
1875 }
1876
1877 /* Create the authentication header contents for the `Basic' scheme.
1878    This is done by encoding the string `USER:PASS' in base64 and
1879    prepending `HEADER: Basic ' to it.  */
1880 static char *
1881 basic_authentication_encode (const char *user, const char *passwd,
1882                              const char *header)
1883 {
1884   char *t1, *t2, *res;
1885   int len1 = strlen (user) + 1 + strlen (passwd);
1886   int len2 = BASE64_LENGTH (len1);
1887
1888   t1 = (char *)alloca (len1 + 1);
1889   sprintf (t1, "%s:%s", user, passwd);
1890   t2 = (char *)alloca (1 + len2);
1891   base64_encode (t1, t2, len1);
1892   res = (char *)xmalloc (len2 + 11 + strlen (header));
1893   sprintf (res, "%s: Basic %s\r\n", header, t2);
1894
1895   return res;
1896 }
1897
1898 #ifdef USE_DIGEST
1899 /* Parse HTTP `WWW-Authenticate:' header.  AU points to the beginning
1900    of a field in such a header.  If the field is the one specified by
1901    ATTR_NAME ("realm", "opaque", and "nonce" are used by the current
1902    digest authorization code), extract its value in the (char*)
1903    variable pointed by RET.  Returns negative on a malformed header,
1904    or number of bytes that have been parsed by this call.  */
1905 static int
1906 extract_header_attr (const char *au, const char *attr_name, char **ret)
1907 {
1908   const char *cp, *ep;
1909
1910   ep = cp = au;
1911
1912   if (strncmp (cp, attr_name, strlen (attr_name)) == 0)
1913     {
1914       cp += strlen (attr_name);
1915       if (!*cp)
1916         return -1;
1917       cp += skip_lws (cp);
1918       if (*cp != '=')
1919         return -1;
1920       if (!*++cp)
1921         return -1;
1922       cp += skip_lws (cp);
1923       if (*cp != '\"')
1924         return -1;
1925       if (!*++cp)
1926         return -1;
1927       for (ep = cp; *ep && *ep != '\"'; ep++)
1928         ;
1929       if (!*ep)
1930         return -1;
1931       FREE_MAYBE (*ret);
1932       *ret = strdupdelim (cp, ep);
1933       return ep - au + 1;
1934     }
1935   else
1936     return 0;
1937 }
1938
1939 /* Response value needs to be in lowercase, so we cannot use HEXD2ASC
1940    from url.h.  See RFC 2069 2.1.2 for the syntax of response-digest.  */
1941 #define HEXD2asc(x) (((x) < 10) ? ((x) + '0') : ((x) - 10 + 'a'))
1942
1943 /* Dump the hexadecimal representation of HASH to BUF.  HASH should be
1944    an array of 16 bytes containing the hash keys, and BUF should be a
1945    buffer of 33 writable characters (32 for hex digits plus one for
1946    zero termination).  */
1947 static void
1948 dump_hash (unsigned char *buf, const unsigned char *hash)
1949 {
1950   int i;
1951
1952   for (i = 0; i < MD5_HASHLEN; i++, hash++)
1953     {
1954       *buf++ = HEXD2asc (*hash >> 4);
1955       *buf++ = HEXD2asc (*hash & 0xf);
1956     }
1957   *buf = '\0';
1958 }
1959
1960 /* Take the line apart to find the challenge, and compose a digest
1961    authorization header.  See RFC2069 section 2.1.2.  */
1962 char *
1963 digest_authentication_encode (const char *au, const char *user,
1964                               const char *passwd, const char *method,
1965                               const char *path)
1966 {
1967   static char *realm, *opaque, *nonce;
1968   static struct {
1969     const char *name;
1970     char **variable;
1971   } options[] = {
1972     { "realm", &realm },
1973     { "opaque", &opaque },
1974     { "nonce", &nonce }
1975   };
1976   char *res;
1977
1978   realm = opaque = nonce = NULL;
1979
1980   au += 6;                      /* skip over `Digest' */
1981   while (*au)
1982     {
1983       int i;
1984
1985       au += skip_lws (au);
1986       for (i = 0; i < ARRAY_SIZE (options); i++)
1987         {
1988           int skip = extract_header_attr (au, options[i].name,
1989                                           options[i].variable);
1990           if (skip < 0)
1991             {
1992               FREE_MAYBE (realm);
1993               FREE_MAYBE (opaque);
1994               FREE_MAYBE (nonce);
1995               return NULL;
1996             }
1997           else if (skip)
1998             {
1999               au += skip;
2000               break;
2001             }
2002         }
2003       if (i == ARRAY_SIZE (options))
2004         {
2005           while (*au && *au != '=')
2006             au++;
2007           if (*au && *++au)
2008             {
2009               au += skip_lws (au);
2010               if (*au == '\"')
2011                 {
2012                   au++;
2013                   while (*au && *au != '\"')
2014                     au++;
2015                   if (*au)
2016                     au++;
2017                 }
2018             }
2019         }
2020       while (*au && *au != ',')
2021         au++;
2022       if (*au)
2023         au++;
2024     }
2025   if (!realm || !nonce || !user || !passwd || !path || !method)
2026     {
2027       FREE_MAYBE (realm);
2028       FREE_MAYBE (opaque);
2029       FREE_MAYBE (nonce);
2030       return NULL;
2031     }
2032
2033   /* Calculate the digest value.  */
2034   {
2035     struct md5_ctx ctx;
2036     unsigned char hash[MD5_HASHLEN];
2037     unsigned char a1buf[MD5_HASHLEN * 2 + 1], a2buf[MD5_HASHLEN * 2 + 1];
2038     unsigned char response_digest[MD5_HASHLEN * 2 + 1];
2039
2040     /* A1BUF = H(user ":" realm ":" password) */
2041     md5_init_ctx (&ctx);
2042     md5_process_bytes (user, strlen (user), &ctx);
2043     md5_process_bytes (":", 1, &ctx);
2044     md5_process_bytes (realm, strlen (realm), &ctx);
2045     md5_process_bytes (":", 1, &ctx);
2046     md5_process_bytes (passwd, strlen (passwd), &ctx);
2047     md5_finish_ctx (&ctx, hash);
2048     dump_hash (a1buf, hash);
2049
2050     /* A2BUF = H(method ":" path) */
2051     md5_init_ctx (&ctx);
2052     md5_process_bytes (method, strlen (method), &ctx);
2053     md5_process_bytes (":", 1, &ctx);
2054     md5_process_bytes (path, strlen (path), &ctx);
2055     md5_finish_ctx (&ctx, hash);
2056     dump_hash (a2buf, hash);
2057
2058     /* RESPONSE_DIGEST = H(A1BUF ":" nonce ":" A2BUF) */
2059     md5_init_ctx (&ctx);
2060     md5_process_bytes (a1buf, MD5_HASHLEN * 2, &ctx);
2061     md5_process_bytes (":", 1, &ctx);
2062     md5_process_bytes (nonce, strlen (nonce), &ctx);
2063     md5_process_bytes (":", 1, &ctx);
2064     md5_process_bytes (a2buf, MD5_HASHLEN * 2, &ctx);
2065     md5_finish_ctx (&ctx, hash);
2066     dump_hash (response_digest, hash);
2067
2068     res = (char*) xmalloc (strlen (user)
2069                            + strlen (user)
2070                            + strlen (realm)
2071                            + strlen (nonce)
2072                            + strlen (path)
2073                            + 2 * MD5_HASHLEN /*strlen (response_digest)*/
2074                            + (opaque ? strlen (opaque) : 0)
2075                            + 128);
2076     sprintf (res, "Authorization: Digest \
2077 username=\"%s\", realm=\"%s\", nonce=\"%s\", uri=\"%s\", response=\"%s\"",
2078              user, realm, nonce, path, response_digest);
2079     if (opaque)
2080       {
2081         char *p = res + strlen (res);
2082         strcat (p, ", opaque=\"");
2083         strcat (p, opaque);
2084         strcat (p, "\"");
2085       }
2086     strcat (res, "\r\n");
2087   }
2088   return res;
2089 }
2090 #endif /* USE_DIGEST */
2091
2092
2093 #define BEGINS_WITH(line, string_constant)                              \
2094   (!strncasecmp (line, string_constant, sizeof (string_constant) - 1)   \
2095    && (ISSPACE (line[sizeof (string_constant) - 1])                     \
2096        || !line[sizeof (string_constant) - 1]))
2097
2098 static int
2099 known_authentication_scheme_p (const char *au)
2100 {
2101   return BEGINS_WITH (au, "Basic")
2102     || BEGINS_WITH (au, "Digest")
2103     || BEGINS_WITH (au, "NTLM");
2104 }
2105
2106 #undef BEGINS_WITH
2107
2108 /* Create the HTTP authorization request header.  When the
2109    `WWW-Authenticate' response header is seen, according to the
2110    authorization scheme specified in that header (`Basic' and `Digest'
2111    are supported by the current implementation), produce an
2112    appropriate HTTP authorization request header.  */
2113 static char *
2114 create_authorization_line (const char *au, const char *user,
2115                            const char *passwd, const char *method,
2116                            const char *path)
2117 {
2118   char *wwwauth = NULL;
2119
2120   if (!strncasecmp (au, "Basic", 5))
2121     wwwauth = basic_authentication_encode (user, passwd, "Authorization");
2122   if (!strncasecmp (au, "NTLM", 4))
2123     wwwauth = basic_authentication_encode (user, passwd, "Authorization");
2124 #ifdef USE_DIGEST
2125   else if (!strncasecmp (au, "Digest", 6))
2126     wwwauth = digest_authentication_encode (au, user, passwd, method, path);
2127 #endif /* USE_DIGEST */
2128   return wwwauth;
2129 }