]> sjero.net Git - wget/blob - src/utils.c
[svn] Force the use of separators in C locale.
[wget] / src / utils.c
1 /* Various utility functions.
2    Copyright (C) 2005 Free Software Foundation, Inc.
3
4 This file is part of GNU Wget.
5
6 GNU Wget is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 GNU Wget is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Wget; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 In addition, as a special exception, the Free Software Foundation
21 gives permission to link the code of its release of Wget with the
22 OpenSSL project's "OpenSSL" library (or with modified versions of it
23 that use the same license as the "OpenSSL" library), and distribute
24 the linked executables.  You must obey the GNU General Public License
25 in all respects for all of the code used other than "OpenSSL".  If you
26 modify this file, you may extend this exception to your version of the
27 file, but you are not obligated to do so.  If you do not wish to do
28 so, delete this exception statement from your version.  */
29
30 #include <config.h>
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <time.h>
36 #ifdef HAVE_SYS_TIME_H
37 # include <sys/time.h>
38 #endif
39 #ifdef HAVE_UNISTD_H
40 # include <unistd.h>
41 #endif
42 #ifdef HAVE_MMAP
43 # include <sys/mman.h>
44 #endif
45 #ifdef HAVE_PWD_H
46 # include <pwd.h>
47 #endif
48 #ifdef HAVE_UTIME_H
49 # include <utime.h>
50 #endif
51 #ifdef HAVE_SYS_UTIME_H
52 # include <sys/utime.h>
53 #endif
54 #include <errno.h>
55 #ifdef NeXT
56 # include <libc.h>              /* for access() */
57 #endif
58 #include <fcntl.h>
59 #include <assert.h>
60 #include <stdarg.h>
61 #ifdef HAVE_LOCALE_H
62 # include <locale.h>
63 #endif
64
65 /* For TIOCGWINSZ and friends: */
66 #ifdef HAVE_SYS_IOCTL_H
67 # include <sys/ioctl.h>
68 #endif
69 #ifdef HAVE_TERMIOS_H
70 # include <termios.h>
71 #endif
72
73 /* Needed for run_with_timeout. */
74 #include <signal.h>
75 #ifdef HAVE_SETJMP_H
76 # include <setjmp.h>
77 #endif
78
79 #ifndef HAVE_SIGSETJMP
80 /* If sigsetjmp is a macro, configure won't pick it up. */
81 # ifdef sigsetjmp
82 #  define HAVE_SIGSETJMP
83 # endif
84 #endif
85
86 #undef USE_SIGNAL_TIMEOUT
87 #if defined(HAVE_SIGSETJMP) || defined(HAVE_SIGBLOCK)
88 # define USE_SIGNAL_TIMEOUT
89 #endif
90
91 #include "wget.h"
92 #include "utils.h"
93 #include "hash.h"
94
95 /* Utility function: like xstrdup(), but also lowercases S.  */
96
97 char *
98 xstrdup_lower (const char *s)
99 {
100   char *copy = xstrdup (s);
101   char *p = copy;
102   for (; *p; p++)
103     *p = TOLOWER (*p);
104   return copy;
105 }
106
107 /* Copy the string formed by two pointers (one on the beginning, other
108    on the char after the last char) to a new, malloc-ed location.
109    0-terminate it.  */
110 char *
111 strdupdelim (const char *beg, const char *end)
112 {
113   char *res = xmalloc (end - beg + 1);
114   memcpy (res, beg, end - beg);
115   res[end - beg] = '\0';
116   return res;
117 }
118
119 /* Parse a string containing comma-separated elements, and return a
120    vector of char pointers with the elements.  Spaces following the
121    commas are ignored.  */
122 char **
123 sepstring (const char *s)
124 {
125   char **res;
126   const char *p;
127   int i = 0;
128
129   if (!s || !*s)
130     return NULL;
131   res = NULL;
132   p = s;
133   while (*s)
134     {
135       if (*s == ',')
136         {
137           res = xrealloc (res, (i + 2) * sizeof (char *));
138           res[i] = strdupdelim (p, s);
139           res[++i] = NULL;
140           ++s;
141           /* Skip the blanks following the ','.  */
142           while (ISSPACE (*s))
143             ++s;
144           p = s;
145         }
146       else
147         ++s;
148     }
149   res = xrealloc (res, (i + 2) * sizeof (char *));
150   res[i] = strdupdelim (p, s);
151   res[i + 1] = NULL;
152   return res;
153 }
154 \f
155 /* Like sprintf, but allocates a string of sufficient size with malloc
156    and returns it.  GNU libc has a similar function named asprintf,
157    which requires the pointer to the string to be passed.  */
158
159 char *
160 aprintf (const char *fmt, ...)
161 {
162   /* This function is implemented using vsnprintf, which we provide
163      for the systems that don't have it.  Therefore, it should be 100%
164      portable.  */
165
166   int size = 32;
167   char *str = xmalloc (size);
168
169   while (1)
170     {
171       int n;
172       va_list args;
173
174       /* See log_vprintf_internal for explanation why it's OK to rely
175          on the return value of vsnprintf.  */
176
177       va_start (args, fmt);
178       n = vsnprintf (str, size, fmt, args);
179       va_end (args);
180
181       /* If the printing worked, return the string. */
182       if (n > -1 && n < size)
183         return str;
184
185       /* Else try again with a larger buffer. */
186       if (n > -1)               /* C99 */
187         size = n + 1;           /* precisely what is needed */
188       else
189         size <<= 1;             /* twice the old size */
190       str = xrealloc (str, size);
191     }
192 }
193
194 /* Concatenate the NULL-terminated list of string arguments into
195    freshly allocated space.  */
196
197 char *
198 concat_strings (const char *str0, ...)
199 {
200   va_list args;
201   int saved_lengths[5];         /* inspired by Apache's apr_pstrcat */
202   char *ret, *p;
203
204   const char *next_str;
205   int total_length = 0;
206   int argcount;
207
208   /* Calculate the length of and allocate the resulting string. */
209
210   argcount = 0;
211   va_start (args, str0);
212   for (next_str = str0; next_str != NULL; next_str = va_arg (args, char *))
213     {
214       int len = strlen (next_str);
215       if (argcount < countof (saved_lengths))
216         saved_lengths[argcount++] = len;
217       total_length += len;
218     }
219   va_end (args);
220   p = ret = xmalloc (total_length + 1);
221
222   /* Copy the strings into the allocated space. */
223
224   argcount = 0;
225   va_start (args, str0);
226   for (next_str = str0; next_str != NULL; next_str = va_arg (args, char *))
227     {
228       int len;
229       if (argcount < countof (saved_lengths))
230         len = saved_lengths[argcount++];
231       else
232         len = strlen (next_str);
233       memcpy (p, next_str, len);
234       p += len;
235     }
236   va_end (args);
237   *p = '\0';
238
239   return ret;
240 }
241 \f
242 /* Return pointer to a static char[] buffer in which zero-terminated
243    string-representation of TM (in form hh:mm:ss) is printed.
244
245    If TM is NULL, the current time will be used.  */
246
247 char *
248 time_str (time_t *tm)
249 {
250   static char output[15];
251   struct tm *ptm;
252   time_t secs = tm ? *tm : time (NULL);
253
254   if (secs == -1)
255     {
256       /* In case of error, return the empty string.  Maybe we should
257          just abort if this happens?  */
258       *output = '\0';
259       return output;
260     }
261   ptm = localtime (&secs);
262   sprintf (output, "%02d:%02d:%02d", ptm->tm_hour, ptm->tm_min, ptm->tm_sec);
263   return output;
264 }
265
266 /* Like the above, but include the date: YYYY-MM-DD hh:mm:ss.  */
267
268 char *
269 datetime_str (time_t *tm)
270 {
271   static char output[20];       /* "YYYY-MM-DD hh:mm:ss" + \0 */
272   struct tm *ptm;
273   time_t secs = tm ? *tm : time (NULL);
274
275   if (secs == -1)
276     {
277       /* In case of error, return the empty string.  Maybe we should
278          just abort if this happens?  */
279       *output = '\0';
280       return output;
281     }
282   ptm = localtime (&secs);
283   sprintf (output, "%04d-%02d-%02d %02d:%02d:%02d",
284            ptm->tm_year + 1900, ptm->tm_mon + 1, ptm->tm_mday,
285            ptm->tm_hour, ptm->tm_min, ptm->tm_sec);
286   return output;
287 }
288 \f
289 /* The Windows versions of the following two functions are defined in
290    mswindows.c.  */
291
292 #ifndef WINDOWS
293 void
294 fork_to_background (void)
295 {
296   pid_t pid;
297   /* Whether we arrange our own version of opt.lfilename here.  */
298   bool logfile_changed = false;
299
300   if (!opt.lfilename)
301     {
302       /* We must create the file immediately to avoid either a race
303          condition (which arises from using unique_name and failing to
304          use fopen_excl) or lying to the user about the log file name
305          (which arises from using unique_name, printing the name, and
306          using fopen_excl later on.)  */
307       FILE *new_log_fp = unique_create (DEFAULT_LOGFILE, false, &opt.lfilename);
308       if (new_log_fp)
309         {
310           logfile_changed = true;
311           fclose (new_log_fp);
312         }
313     }
314   pid = fork ();
315   if (pid < 0)
316     {
317       /* parent, error */
318       perror ("fork");
319       exit (1);
320     }
321   else if (pid != 0)
322     {
323       /* parent, no error */
324       printf (_("Continuing in background, pid %d.\n"), (int) pid);
325       if (logfile_changed)
326         printf (_("Output will be written to `%s'.\n"), opt.lfilename);
327       exit (0);                 /* #### should we use _exit()? */
328     }
329
330   /* child: give up the privileges and keep running. */
331   setsid ();
332   freopen ("/dev/null", "r", stdin);
333   freopen ("/dev/null", "w", stdout);
334   freopen ("/dev/null", "w", stderr);
335 }
336 #endif /* not WINDOWS */
337 \f
338 /* "Touch" FILE, i.e. make its mtime ("modified time") equal the time
339    specified with TM.  The atime ("access time") is set to the current
340    time.  */
341
342 void
343 touch (const char *file, time_t tm)
344 {
345 #ifdef HAVE_STRUCT_UTIMBUF
346   struct utimbuf times;
347 #else
348   struct {
349     time_t actime;
350     time_t modtime;
351   } times;
352 #endif
353   times.modtime = tm;
354   times.actime = time (NULL);
355   if (utime (file, &times) == -1)
356     logprintf (LOG_NOTQUIET, "utime(%s): %s\n", file, strerror (errno));
357 }
358
359 /* Checks if FILE is a symbolic link, and removes it if it is.  Does
360    nothing under MS-Windows.  */
361 int
362 remove_link (const char *file)
363 {
364   int err = 0;
365   struct_stat st;
366
367   if (lstat (file, &st) == 0 && S_ISLNK (st.st_mode))
368     {
369       DEBUGP (("Unlinking %s (symlink).\n", file));
370       err = unlink (file);
371       if (err != 0)
372         logprintf (LOG_VERBOSE, _("Failed to unlink symlink `%s': %s\n"),
373                    file, strerror (errno));
374     }
375   return err;
376 }
377
378 /* Does FILENAME exist?  This is quite a lousy implementation, since
379    it supplies no error codes -- only a yes-or-no answer.  Thus it
380    will return that a file does not exist if, e.g., the directory is
381    unreadable.  I don't mind it too much currently, though.  The
382    proper way should, of course, be to have a third, error state,
383    other than true/false, but that would introduce uncalled-for
384    additional complexity to the callers.  */
385 bool
386 file_exists_p (const char *filename)
387 {
388 #ifdef HAVE_ACCESS
389   return access (filename, F_OK) >= 0;
390 #else
391   struct_stat buf;
392   return stat (filename, &buf) >= 0;
393 #endif
394 }
395
396 /* Returns 0 if PATH is a directory, 1 otherwise (any kind of file).
397    Returns 0 on error.  */
398 bool
399 file_non_directory_p (const char *path)
400 {
401   struct_stat buf;
402   /* Use lstat() rather than stat() so that symbolic links pointing to
403      directories can be identified correctly.  */
404   if (lstat (path, &buf) != 0)
405     return false;
406   return S_ISDIR (buf.st_mode) ? false : true;
407 }
408
409 /* Return the size of file named by FILENAME, or -1 if it cannot be
410    opened or seeked into. */
411 wgint
412 file_size (const char *filename)
413 {
414 #if defined(HAVE_FSEEKO) && defined(HAVE_FTELLO)
415   wgint size;
416   /* We use fseek rather than stat to determine the file size because
417      that way we can also verify that the file is readable without
418      explicitly checking for permissions.  Inspired by the POST patch
419      by Arnaud Wylie.  */
420   FILE *fp = fopen (filename, "rb");
421   if (!fp)
422     return -1;
423   fseeko (fp, 0, SEEK_END);
424   size = ftello (fp);
425   fclose (fp);
426   return size;
427 #else
428   struct_stat st;
429   if (stat (filename, &st) < 0)
430     return -1;
431   return st.st_size;
432 #endif
433 }
434
435 /* stat file names named PREFIX.1, PREFIX.2, etc., until one that
436    doesn't exist is found.  Return a freshly allocated copy of the
437    unused file name.  */
438
439 static char *
440 unique_name_1 (const char *prefix)
441 {
442   int count = 1;
443   int plen = strlen (prefix);
444   char *template = (char *)alloca (plen + 1 + 24);
445   char *template_tail = template + plen;
446
447   memcpy (template, prefix, plen);
448   *template_tail++ = '.';
449
450   do
451     number_to_string (template_tail, count++);
452   while (file_exists_p (template));
453
454   return xstrdup (template);
455 }
456
457 /* Return a unique file name, based on FILE.
458
459    More precisely, if FILE doesn't exist, it is returned unmodified.
460    If not, FILE.1 is tried, then FILE.2, etc.  The first FILE.<number>
461    file name that doesn't exist is returned.
462
463    The resulting file is not created, only verified that it didn't
464    exist at the point in time when the function was called.
465    Therefore, where security matters, don't rely that the file created
466    by this function exists until you open it with O_EXCL or
467    equivalent.
468
469    If ALLOW_PASSTHROUGH is 0, it always returns a freshly allocated
470    string.  Otherwise, it may return FILE if the file doesn't exist
471    (and therefore doesn't need changing).  */
472
473 char *
474 unique_name (const char *file, bool allow_passthrough)
475 {
476   /* If the FILE itself doesn't exist, return it without
477      modification. */
478   if (!file_exists_p (file))
479     return allow_passthrough ? (char *)file : xstrdup (file);
480
481   /* Otherwise, find a numeric suffix that results in unused file name
482      and return it.  */
483   return unique_name_1 (file);
484 }
485
486 /* Create a file based on NAME, except without overwriting an existing
487    file with that name.  Providing O_EXCL is correctly implemented,
488    this function does not have the race condition associated with
489    opening the file returned by unique_name.  */
490
491 FILE *
492 unique_create (const char *name, bool binary, char **opened_name)
493 {
494   /* unique file name, based on NAME */
495   char *uname = unique_name (name, false);
496   FILE *fp;
497   while ((fp = fopen_excl (uname, binary)) == NULL && errno == EEXIST)
498     {
499       xfree (uname);
500       uname = unique_name (name, false);
501     }
502   if (opened_name && fp != NULL)
503     {
504       if (fp)
505         *opened_name = uname;
506       else
507         {
508           *opened_name = NULL;
509           xfree (uname);
510         }
511     }
512   else
513     xfree (uname);
514   return fp;
515 }
516
517 /* Open the file for writing, with the addition that the file is
518    opened "exclusively".  This means that, if the file already exists,
519    this function will *fail* and errno will be set to EEXIST.  If
520    BINARY is set, the file will be opened in binary mode, equivalent
521    to fopen's "wb".
522
523    If opening the file fails for any reason, including the file having
524    previously existed, this function returns NULL and sets errno
525    appropriately.  */
526    
527 FILE *
528 fopen_excl (const char *fname, bool binary)
529 {
530   int fd;
531 #ifdef O_EXCL
532   int flags = O_WRONLY | O_CREAT | O_EXCL;
533 # ifdef O_BINARY
534   if (binary)
535     flags |= O_BINARY;
536 # endif
537   fd = open (fname, flags, 0666);
538   if (fd < 0)
539     return NULL;
540   return fdopen (fd, binary ? "wb" : "w");
541 #else  /* not O_EXCL */
542   /* Manually check whether the file exists.  This is prone to race
543      conditions, but systems without O_EXCL haven't deserved
544      better.  */
545   if (file_exists_p (fname))
546     {
547       errno = EEXIST;
548       return NULL;
549     }
550   return fopen (fname, binary ? "wb" : "w");
551 #endif /* not O_EXCL */
552 }
553 \f
554 /* Create DIRECTORY.  If some of the pathname components of DIRECTORY
555    are missing, create them first.  In case any mkdir() call fails,
556    return its error status.  Returns 0 on successful completion.
557
558    The behaviour of this function should be identical to the behaviour
559    of `mkdir -p' on systems where mkdir supports the `-p' option.  */
560 int
561 make_directory (const char *directory)
562 {
563   int i, ret, quit = 0;
564   char *dir;
565
566   /* Make a copy of dir, to be able to write to it.  Otherwise, the
567      function is unsafe if called with a read-only char *argument.  */
568   STRDUP_ALLOCA (dir, directory);
569
570   /* If the first character of dir is '/', skip it (and thus enable
571      creation of absolute-pathname directories.  */
572   for (i = (*dir == '/'); 1; ++i)
573     {
574       for (; dir[i] && dir[i] != '/'; i++)
575         ;
576       if (!dir[i])
577         quit = 1;
578       dir[i] = '\0';
579       /* Check whether the directory already exists.  Allow creation of
580          of intermediate directories to fail, as the initial path components
581          are not necessarily directories!  */
582       if (!file_exists_p (dir))
583         ret = mkdir (dir, 0777);
584       else
585         ret = 0;
586       if (quit)
587         break;
588       else
589         dir[i] = '/';
590     }
591   return ret;
592 }
593
594 /* Merge BASE with FILE.  BASE can be a directory or a file name, FILE
595    should be a file name.
596
597    file_merge("/foo/bar", "baz")  => "/foo/baz"
598    file_merge("/foo/bar/", "baz") => "/foo/bar/baz"
599    file_merge("foo", "bar")       => "bar"
600
601    In other words, it's a simpler and gentler version of uri_merge_1.  */
602
603 char *
604 file_merge (const char *base, const char *file)
605 {
606   char *result;
607   const char *cut = (const char *)strrchr (base, '/');
608
609   if (!cut)
610     return xstrdup (file);
611
612   result = xmalloc (cut - base + 1 + strlen (file) + 1);
613   memcpy (result, base, cut - base);
614   result[cut - base] = '/';
615   strcpy (result + (cut - base) + 1, file);
616
617   return result;
618 }
619 \f
620 static bool in_acclist (const char *const *, const char *, bool);
621
622 /* Determine whether a file is acceptable to be followed, according to
623    lists of patterns to accept/reject.  */
624 bool
625 acceptable (const char *s)
626 {
627   int l = strlen (s);
628
629   while (l && s[l] != '/')
630     --l;
631   if (s[l] == '/')
632     s += (l + 1);
633   if (opt.accepts)
634     {
635       if (opt.rejects)
636         return (in_acclist ((const char *const *)opt.accepts, s, true)
637                 && !in_acclist ((const char *const *)opt.rejects, s, true));
638       else
639         return in_acclist ((const char *const *)opt.accepts, s, true);
640     }
641   else if (opt.rejects)
642     return !in_acclist ((const char *const *)opt.rejects, s, true);
643   return true;
644 }
645
646 /* Compare S1 and S2 frontally; S2 must begin with S1.  E.g. if S1 is
647    `/something', frontcmp() will return 1 only if S2 begins with
648    `/something'.  Otherwise, 0 is returned.  */
649 bool
650 frontcmp (const char *s1, const char *s2)
651 {
652   for (; *s1 && *s2 && (*s1 == *s2); ++s1, ++s2);
653   return *s1 == '\0';
654 }
655
656 /* Iterate through STRLIST, and return the first element that matches
657    S, through wildcards or front comparison (as appropriate).  */
658 static char *
659 proclist (char **strlist, const char *s, enum accd flags)
660 {
661   char **x;
662   for (x = strlist; *x; x++)
663     {
664       /* Remove leading '/' if ALLABS */
665       char *p = *x + ((flags & ALLABS) && (**x == '/'));
666       if (has_wildcards_p (p))
667         {
668           if (fnmatch (p, s, FNM_PATHNAME) == 0)
669             break;
670         }
671       else
672         {
673           if (frontcmp (p, s))
674             break;
675         }
676     }
677   return *x;
678 }
679
680 /* Returns whether DIRECTORY is acceptable for download, wrt the
681    include/exclude lists.
682
683    If FLAGS is ALLABS, the leading `/' is ignored in paths; relative
684    and absolute paths may be freely intermixed.  */
685 bool
686 accdir (const char *directory, enum accd flags)
687 {
688   /* Remove starting '/'.  */
689   if (flags & ALLABS && *directory == '/')
690     ++directory;
691   if (opt.includes)
692     {
693       if (!proclist (opt.includes, directory, flags))
694         return false;
695     }
696   if (opt.excludes)
697     {
698       if (proclist (opt.excludes, directory, flags))
699         return false;
700     }
701   return true;
702 }
703
704 /* Return true if STRING ends with TAIL.  For instance:
705
706    match_tail ("abc", "bc", false)  -> 1
707    match_tail ("abc", "ab", false)  -> 0
708    match_tail ("abc", "abc", false) -> 1
709
710    If FOLD_CASE is true, the comparison will be case-insensitive.  */
711
712 bool
713 match_tail (const char *string, const char *tail, bool fold_case)
714 {
715   int i, j;
716
717   /* We want this to be fast, so we code two loops, one with
718      case-folding, one without. */
719
720   if (!fold_case)
721     {
722       for (i = strlen (string), j = strlen (tail); i >= 0 && j >= 0; i--, j--)
723         if (string[i] != tail[j])
724           break;
725     }
726   else
727     {
728       for (i = strlen (string), j = strlen (tail); i >= 0 && j >= 0; i--, j--)
729         if (TOLOWER (string[i]) != TOLOWER (tail[j]))
730           break;
731     }
732
733   /* If the tail was exhausted, the match was succesful.  */
734   if (j == -1)
735     return true;
736   else
737     return false;
738 }
739
740 /* Checks whether string S matches each element of ACCEPTS.  A list
741    element are matched either with fnmatch() or match_tail(),
742    according to whether the element contains wildcards or not.
743
744    If the BACKWARD is false, don't do backward comparison -- just compare
745    them normally.  */
746 static bool
747 in_acclist (const char *const *accepts, const char *s, bool backward)
748 {
749   for (; *accepts; accepts++)
750     {
751       if (has_wildcards_p (*accepts))
752         {
753           /* fnmatch returns 0 if the pattern *does* match the
754              string.  */
755           if (fnmatch (*accepts, s, 0) == 0)
756             return true;
757         }
758       else
759         {
760           if (backward)
761             {
762               if (match_tail (s, *accepts, 0))
763                 return true;
764             }
765           else
766             {
767               if (!strcmp (s, *accepts))
768                 return true;
769             }
770         }
771     }
772   return false;
773 }
774
775 /* Return the location of STR's suffix (file extension).  Examples:
776    suffix ("foo.bar")       -> "bar"
777    suffix ("foo.bar.baz")   -> "baz"
778    suffix ("/foo/bar")      -> NULL
779    suffix ("/foo.bar/baz")  -> NULL  */
780 char *
781 suffix (const char *str)
782 {
783   int i;
784
785   for (i = strlen (str); i && str[i] != '/' && str[i] != '.'; i--)
786     ;
787
788   if (str[i++] == '.')
789     return (char *)str + i;
790   else
791     return NULL;
792 }
793
794 /* Return true if S contains globbing wildcards (`*', `?', `[' or
795    `]').  */
796
797 bool
798 has_wildcards_p (const char *s)
799 {
800   for (; *s; s++)
801     if (*s == '*' || *s == '?' || *s == '[' || *s == ']')
802       return true;
803   return false;
804 }
805
806 /* Return true if FNAME ends with a typical HTML suffix.  The
807    following (case-insensitive) suffixes are presumed to be HTML
808    files:
809    
810      html
811      htm
812      ?html (`?' matches one character)
813
814    #### CAVEAT.  This is not necessarily a good indication that FNAME
815    refers to a file that contains HTML!  */
816 bool
817 has_html_suffix_p (const char *fname)
818 {
819   char *suf;
820
821   if ((suf = suffix (fname)) == NULL)
822     return false;
823   if (!strcasecmp (suf, "html"))
824     return true;
825   if (!strcasecmp (suf, "htm"))
826     return true;
827   if (suf[0] && !strcasecmp (suf + 1, "html"))
828     return true;
829   return false;
830 }
831
832 /* Read a line from FP and return the pointer to freshly allocated
833    storage.  The storage space is obtained through malloc() and should
834    be freed with free() when it is no longer needed.
835
836    The length of the line is not limited, except by available memory.
837    The newline character at the end of line is retained.  The line is
838    terminated with a zero character.
839
840    After end-of-file is encountered without anything being read, NULL
841    is returned.  NULL is also returned on error.  To distinguish
842    between these two cases, use the stdio function ferror().  */
843
844 char *
845 read_whole_line (FILE *fp)
846 {
847   int length = 0;
848   int bufsize = 82;
849   char *line = xmalloc (bufsize);
850
851   while (fgets (line + length, bufsize - length, fp))
852     {
853       length += strlen (line + length);
854       if (length == 0)
855         /* Possible for example when reading from a binary file where
856            a line begins with \0.  */
857         continue;
858
859       if (line[length - 1] == '\n')
860         break;
861
862       /* fgets() guarantees to read the whole line, or to use up the
863          space we've given it.  We can double the buffer
864          unconditionally.  */
865       bufsize <<= 1;
866       line = xrealloc (line, bufsize);
867     }
868   if (length == 0 || ferror (fp))
869     {
870       xfree (line);
871       return NULL;
872     }
873   if (length + 1 < bufsize)
874     /* Relieve the memory from our exponential greediness.  We say
875        `length + 1' because the terminating \0 is not included in
876        LENGTH.  We don't need to zero-terminate the string ourselves,
877        though, because fgets() does that.  */
878     line = xrealloc (line, length + 1);
879   return line;
880 }
881 \f
882 /* Read FILE into memory.  A pointer to `struct file_memory' are
883    returned; use struct element `content' to access file contents, and
884    the element `length' to know the file length.  `content' is *not*
885    zero-terminated, and you should *not* read or write beyond the [0,
886    length) range of characters.
887
888    After you are done with the file contents, call read_file_free to
889    release the memory.
890
891    Depending on the operating system and the type of file that is
892    being read, read_file() either mmap's the file into memory, or
893    reads the file into the core using read().
894
895    If file is named "-", fileno(stdin) is used for reading instead.
896    If you want to read from a real file named "-", use "./-" instead.  */
897
898 struct file_memory *
899 read_file (const char *file)
900 {
901   int fd;
902   struct file_memory *fm;
903   long size;
904   bool inhibit_close = false;
905
906   /* Some magic in the finest tradition of Perl and its kin: if FILE
907      is "-", just use stdin.  */
908   if (HYPHENP (file))
909     {
910       fd = fileno (stdin);
911       inhibit_close = true;
912       /* Note that we don't inhibit mmap() in this case.  If stdin is
913          redirected from a regular file, mmap() will still work.  */
914     }
915   else
916     fd = open (file, O_RDONLY);
917   if (fd < 0)
918     return NULL;
919   fm = xnew (struct file_memory);
920
921 #ifdef HAVE_MMAP
922   {
923     struct_fstat buf;
924     if (fstat (fd, &buf) < 0)
925       goto mmap_lose;
926     fm->length = buf.st_size;
927     /* NOTE: As far as I know, the callers of this function never
928        modify the file text.  Relying on this would enable us to
929        specify PROT_READ and MAP_SHARED for a marginal gain in
930        efficiency, but at some cost to generality.  */
931     fm->content = mmap (NULL, fm->length, PROT_READ | PROT_WRITE,
932                         MAP_PRIVATE, fd, 0);
933     if (fm->content == (char *)MAP_FAILED)
934       goto mmap_lose;
935     if (!inhibit_close)
936       close (fd);
937
938     fm->mmap_p = 1;
939     return fm;
940   }
941
942  mmap_lose:
943   /* The most common reason why mmap() fails is that FD does not point
944      to a plain file.  However, it's also possible that mmap() doesn't
945      work for a particular type of file.  Therefore, whenever mmap()
946      fails, we just fall back to the regular method.  */
947 #endif /* HAVE_MMAP */
948
949   fm->length = 0;
950   size = 512;                   /* number of bytes fm->contents can
951                                    hold at any given time. */
952   fm->content = xmalloc (size);
953   while (1)
954     {
955       wgint nread;
956       if (fm->length > size / 2)
957         {
958           /* #### I'm not sure whether the whole exponential-growth
959              thing makes sense with kernel read.  On Linux at least,
960              read() refuses to read more than 4K from a file at a
961              single chunk anyway.  But other Unixes might optimize it
962              better, and it doesn't *hurt* anything, so I'm leaving
963              it.  */
964
965           /* Normally, we grow SIZE exponentially to make the number
966              of calls to read() and realloc() logarithmic in relation
967              to file size.  However, read() can read an amount of data
968              smaller than requested, and it would be unreasonable to
969              double SIZE every time *something* was read.  Therefore,
970              we double SIZE only when the length exceeds half of the
971              entire allocated size.  */
972           size <<= 1;
973           fm->content = xrealloc (fm->content, size);
974         }
975       nread = read (fd, fm->content + fm->length, size - fm->length);
976       if (nread > 0)
977         /* Successful read. */
978         fm->length += nread;
979       else if (nread < 0)
980         /* Error. */
981         goto lose;
982       else
983         /* EOF */
984         break;
985     }
986   if (!inhibit_close)
987     close (fd);
988   if (size > fm->length && fm->length != 0)
989     /* Due to exponential growth of fm->content, the allocated region
990        might be much larger than what is actually needed.  */
991     fm->content = xrealloc (fm->content, fm->length);
992   fm->mmap_p = 0;
993   return fm;
994
995  lose:
996   if (!inhibit_close)
997     close (fd);
998   xfree (fm->content);
999   xfree (fm);
1000   return NULL;
1001 }
1002
1003 /* Release the resources held by FM.  Specifically, this calls
1004    munmap() or xfree() on fm->content, depending whether mmap or
1005    malloc/read were used to read in the file.  It also frees the
1006    memory needed to hold the FM structure itself.  */
1007
1008 void
1009 read_file_free (struct file_memory *fm)
1010 {
1011 #ifdef HAVE_MMAP
1012   if (fm->mmap_p)
1013     {
1014       munmap (fm->content, fm->length);
1015     }
1016   else
1017 #endif
1018     {
1019       xfree (fm->content);
1020     }
1021   xfree (fm);
1022 }
1023 \f
1024 /* Free the pointers in a NULL-terminated vector of pointers, then
1025    free the pointer itself.  */
1026 void
1027 free_vec (char **vec)
1028 {
1029   if (vec)
1030     {
1031       char **p = vec;
1032       while (*p)
1033         xfree (*p++);
1034       xfree (vec);
1035     }
1036 }
1037
1038 /* Append vector V2 to vector V1.  The function frees V2 and
1039    reallocates V1 (thus you may not use the contents of neither
1040    pointer after the call).  If V1 is NULL, V2 is returned.  */
1041 char **
1042 merge_vecs (char **v1, char **v2)
1043 {
1044   int i, j;
1045
1046   if (!v1)
1047     return v2;
1048   if (!v2)
1049     return v1;
1050   if (!*v2)
1051     {
1052       /* To avoid j == 0 */
1053       xfree (v2);
1054       return v1;
1055     }
1056   /* Count v1.  */
1057   for (i = 0; v1[i]; i++);
1058   /* Count v2.  */
1059   for (j = 0; v2[j]; j++);
1060   /* Reallocate v1.  */
1061   v1 = xrealloc (v1, (i + j + 1) * sizeof (char **));
1062   memcpy (v1 + i, v2, (j + 1) * sizeof (char *));
1063   xfree (v2);
1064   return v1;
1065 }
1066
1067 /* Append a freshly allocated copy of STR to VEC.  If VEC is NULL, it
1068    is allocated as needed.  Return the new value of the vector. */
1069
1070 char **
1071 vec_append (char **vec, const char *str)
1072 {
1073   int cnt;                      /* count of vector elements, including
1074                                    the one we're about to append */
1075   if (vec != NULL)
1076     {
1077       for (cnt = 0; vec[cnt]; cnt++)
1078         ;
1079       ++cnt;
1080     }
1081   else
1082     cnt = 1;
1083   /* Reallocate the array to fit the new element and the NULL. */
1084   vec = xrealloc (vec, (cnt + 1) * sizeof (char *));
1085   /* Append a copy of STR to the vector. */
1086   vec[cnt - 1] = xstrdup (str);
1087   vec[cnt] = NULL;
1088   return vec;
1089 }
1090 \f
1091 /* Sometimes it's useful to create "sets" of strings, i.e. special
1092    hash tables where you want to store strings as keys and merely
1093    query for their existence.  Here is a set of utility routines that
1094    makes that transparent.  */
1095
1096 void
1097 string_set_add (struct hash_table *ht, const char *s)
1098 {
1099   /* First check whether the set element already exists.  If it does,
1100      do nothing so that we don't have to free() the old element and
1101      then strdup() a new one.  */
1102   if (hash_table_contains (ht, s))
1103     return;
1104
1105   /* We use "1" as value.  It provides us a useful and clear arbitrary
1106      value, and it consumes no memory -- the pointers to the same
1107      string "1" will be shared by all the key-value pairs in all `set'
1108      hash tables.  */
1109   hash_table_put (ht, xstrdup (s), "1");
1110 }
1111
1112 /* Synonym for hash_table_contains... */
1113
1114 int
1115 string_set_contains (struct hash_table *ht, const char *s)
1116 {
1117   return hash_table_contains (ht, s);
1118 }
1119
1120 static int
1121 string_set_to_array_mapper (void *key, void *value_ignored, void *arg)
1122 {
1123   char ***arrayptr = (char ***) arg;
1124   *(*arrayptr)++ = (char *) key;
1125   return 0;
1126 }
1127
1128 /* Convert the specified string set to array.  ARRAY should be large
1129    enough to hold hash_table_count(ht) char pointers.  */
1130
1131 void string_set_to_array (struct hash_table *ht, char **array)
1132 {
1133   hash_table_map (ht, string_set_to_array_mapper, &array);
1134 }
1135
1136 static int
1137 string_set_free_mapper (void *key, void *value_ignored, void *arg_ignored)
1138 {
1139   xfree (key);
1140   return 0;
1141 }
1142
1143 void
1144 string_set_free (struct hash_table *ht)
1145 {
1146   hash_table_map (ht, string_set_free_mapper, NULL);
1147   hash_table_destroy (ht);
1148 }
1149
1150 static int
1151 free_keys_and_values_mapper (void *key, void *value, void *arg_ignored)
1152 {
1153   xfree (key);
1154   xfree (value);
1155   return 0;
1156 }
1157
1158 /* Another utility function: call free() on all keys and values of HT.  */
1159
1160 void
1161 free_keys_and_values (struct hash_table *ht)
1162 {
1163   hash_table_map (ht, free_keys_and_values_mapper, NULL);
1164 }
1165
1166 \f
1167 /* Get grouping data, the separator and grouping info, by calling
1168    localeconv().  The information is cached after the first call to
1169    the function.
1170
1171    In locales that don't set a thousand separator (such as the "C"
1172    locale), this forces it to be ",".  Wget 1.10 is only using
1173    thousand separators in one place, so this shouldn't be a problem in
1174    practice.  */
1175
1176 static void
1177 get_grouping_data (const char **sep, const char **grouping)
1178 {
1179   static const char *cached_sep;
1180   static const char *cached_grouping;
1181   static bool initialized;
1182   if (!initialized)
1183     {
1184       /* Get the grouping info from the locale. */
1185       struct lconv *lconv = localeconv ();
1186       cached_sep = lconv->thousands_sep;
1187       cached_grouping = lconv->grouping;
1188       if (!*cached_sep)
1189         {
1190           /* Many locales (such as "C" or "hr_HR") don't specify
1191              grouping, which we still want to use it for legibility.
1192              In those locales set the sep char to ',', unless that
1193              character is used for decimal point, in which case set it
1194              to " ".  */
1195           if (*lconv->decimal_point != ',')
1196             cached_sep = ",";
1197           else
1198             cached_sep = " ";
1199           cached_grouping = "\x03";
1200         }
1201       initialized = true;
1202     }
1203   *sep = cached_sep;
1204   *grouping = cached_grouping;
1205 }
1206
1207 /* Return a printed representation of N with thousand separators.
1208    This should respect locale settings, with the exception of the "C"
1209    locale which mandates no separator, but we use one anyway.
1210
1211    Unfortunately, we cannot use %'d (in fact it would be %'j) to get
1212    the separators because it's too non-portable, and it's hard to test
1213    for this feature at configure time.  Besides, it wouldn't work in
1214    the "C" locale, which many Unix users still work in.  */
1215
1216 const char *
1217 with_thousand_seps (wgint n)
1218 {
1219   static char outbuf[48];
1220   char *p = outbuf + sizeof outbuf;
1221
1222   /* Info received from locale */
1223   const char *grouping, *sep;
1224   int seplen;
1225
1226   /* State information */
1227   int i = 0, groupsize;
1228   const char *atgroup;
1229
1230   bool negative = n < 0;
1231
1232   /* Initialize grouping data. */
1233   get_grouping_data (&sep, &grouping);
1234   seplen = strlen (sep);
1235   atgroup = grouping;
1236   groupsize = *atgroup++;
1237
1238   /* This will overflow on WGINT_MIN, but we're not using this to
1239      print negative numbers anyway.  */
1240   if (negative)
1241     n = -n;
1242
1243   /* Write the number into the buffer, backwards, inserting the
1244      separators as necessary.  */
1245   *--p = '\0';
1246   while (1)
1247     {
1248       *--p = n % 10 + '0';
1249       n /= 10;
1250       if (n == 0)
1251         break;
1252       /* Prepend SEP to every groupsize'd digit and get new groupsize.  */
1253       if (++i == groupsize)
1254         {
1255           if (seplen == 1)
1256             *--p = *sep;
1257           else
1258             memcpy (p -= seplen, sep, seplen);
1259           i = 0;
1260           if (*atgroup)
1261             groupsize = *atgroup++;
1262         }
1263     }
1264   if (negative)
1265     *--p = '-';
1266
1267   return p;
1268 }
1269
1270 /* N, a byte quantity, is converted to a human-readable abberviated
1271    form a la sizes printed by `ls -lh'.  The result is written to a
1272    static buffer, a pointer to which is returned.
1273
1274    Unlike `with_thousand_seps', this approximates to the nearest unit.
1275    Quoting GNU libit: "Most people visually process strings of 3-4
1276    digits effectively, but longer strings of digits are more prone to
1277    misinterpretation.  Hence, converting to an abbreviated form
1278    usually improves readability."
1279
1280    This intentionally uses kilobyte (KB), megabyte (MB), etc. in their
1281    original computer-related meaning of "powers of 1024".  Powers of
1282    1000 would be useless since Wget already displays sizes with
1283    thousand separators.  We don't use the "*bibyte" names invented in
1284    1998, and seldom used in practice.  Wikipedia's entry on kilobyte
1285    discusses this in some detail.  */
1286
1287 char *
1288 human_readable (HR_NUMTYPE n)
1289 {
1290   /* These suffixes are compatible with those of GNU `ls -lh'. */
1291   static char powers[] =
1292     {
1293       'K',                      /* kilobyte, 2^10 bytes */
1294       'M',                      /* megabyte, 2^20 bytes */
1295       'G',                      /* gigabyte, 2^30 bytes */
1296       'T',                      /* terabyte, 2^40 bytes */
1297       'P',                      /* petabyte, 2^50 bytes */
1298       'E',                      /* exabyte,  2^60 bytes */
1299     };
1300   static char buf[8];
1301   int i;
1302
1303   /* If the quantity is smaller than 1K, just print it. */
1304   if (n < 1024)
1305     {
1306       snprintf (buf, sizeof (buf), "%d", (int) n);
1307       return buf;
1308     }
1309
1310   /* Loop over powers, dividing N with 1024 in each iteration.  This
1311      works unchanged for all sizes of wgint, while still avoiding
1312      non-portable `long double' arithmetic.  */
1313   for (i = 0; i < countof (powers); i++)
1314     {
1315       /* At each iteration N is greater than the *subsequent* power.
1316          That way N/1024.0 produces a decimal number in the units of
1317          *this* power.  */
1318       if ((n / 1024) < 1024 || i == countof (powers) - 1)
1319         {
1320           /* Must cast to long first because MS VC can't directly cast
1321              __int64 to double.  (This is safe because N is known to
1322              be < 1024^2, so always fits into long.)  */
1323           double val = (double) (long) n / 1024.0;
1324           /* Print values smaller than 10 with one decimal digits, and
1325              others without any decimals.  */
1326           snprintf (buf, sizeof (buf), "%.*f%c",
1327                     val < 10 ? 1 : 0, val, powers[i]);
1328           return buf;
1329         }
1330       n /= 1024;
1331     }
1332   return NULL;                  /* unreached */
1333 }
1334
1335 /* Count the digits in the provided number.  Used to allocate space
1336    when printing numbers.  */
1337
1338 int
1339 numdigit (wgint number)
1340 {
1341   int cnt = 1;
1342   if (number < 0)
1343     ++cnt;                      /* accomodate '-' */
1344   while ((number /= 10) != 0)
1345     ++cnt;
1346   return cnt;
1347 }
1348
1349 #define PR(mask) *p++ = n / (mask) + '0'
1350
1351 /* DIGITS_<D> is used to print a D-digit number and should be called
1352    with mask==10^(D-1).  It prints n/mask (the first digit), reducing
1353    n to n%mask (the remaining digits), and calling DIGITS_<D-1>.
1354    Recursively this continues until DIGITS_1 is invoked.  */
1355
1356 #define DIGITS_1(mask) PR (mask)
1357 #define DIGITS_2(mask) PR (mask), n %= (mask), DIGITS_1 ((mask) / 10)
1358 #define DIGITS_3(mask) PR (mask), n %= (mask), DIGITS_2 ((mask) / 10)
1359 #define DIGITS_4(mask) PR (mask), n %= (mask), DIGITS_3 ((mask) / 10)
1360 #define DIGITS_5(mask) PR (mask), n %= (mask), DIGITS_4 ((mask) / 10)
1361 #define DIGITS_6(mask) PR (mask), n %= (mask), DIGITS_5 ((mask) / 10)
1362 #define DIGITS_7(mask) PR (mask), n %= (mask), DIGITS_6 ((mask) / 10)
1363 #define DIGITS_8(mask) PR (mask), n %= (mask), DIGITS_7 ((mask) / 10)
1364 #define DIGITS_9(mask) PR (mask), n %= (mask), DIGITS_8 ((mask) / 10)
1365 #define DIGITS_10(mask) PR (mask), n %= (mask), DIGITS_9 ((mask) / 10)
1366
1367 /* DIGITS_<11-20> are only used on machines with 64-bit wgints. */
1368
1369 #define DIGITS_11(mask) PR (mask), n %= (mask), DIGITS_10 ((mask) / 10)
1370 #define DIGITS_12(mask) PR (mask), n %= (mask), DIGITS_11 ((mask) / 10)
1371 #define DIGITS_13(mask) PR (mask), n %= (mask), DIGITS_12 ((mask) / 10)
1372 #define DIGITS_14(mask) PR (mask), n %= (mask), DIGITS_13 ((mask) / 10)
1373 #define DIGITS_15(mask) PR (mask), n %= (mask), DIGITS_14 ((mask) / 10)
1374 #define DIGITS_16(mask) PR (mask), n %= (mask), DIGITS_15 ((mask) / 10)
1375 #define DIGITS_17(mask) PR (mask), n %= (mask), DIGITS_16 ((mask) / 10)
1376 #define DIGITS_18(mask) PR (mask), n %= (mask), DIGITS_17 ((mask) / 10)
1377 #define DIGITS_19(mask) PR (mask), n %= (mask), DIGITS_18 ((mask) / 10)
1378
1379 /* SPRINTF_WGINT is used by number_to_string to handle pathological
1380    cases and to portably support strange sizes of wgint.  Ideally this
1381    would just use "%j" and intmax_t, but many systems don't support
1382    it, so it's used only if nothing else works.  */
1383 #if SIZEOF_LONG >= SIZEOF_WGINT
1384 # define SPRINTF_WGINT(buf, n) sprintf (buf, "%ld", (long) (n))
1385 #elif SIZEOF_LONG_LONG >= SIZEOF_WGINT
1386 # define SPRINTF_WGINT(buf, n) sprintf (buf, "%lld", (long long) (n))
1387 #elif defined(WINDOWS)
1388 # define SPRINTF_WGINT(buf, n) sprintf (buf, "%I64d", (__int64) (n))
1389 #else
1390 # define SPRINTF_WGINT(buf, n) sprintf (buf, "%j", (intmax_t) (n))
1391 #endif
1392
1393 /* Shorthand for casting to wgint. */
1394 #define W wgint
1395
1396 /* Print NUMBER to BUFFER in base 10.  This is equivalent to
1397    `sprintf(buffer, "%lld", (long long) number)', only typically much
1398    faster and portable to machines without long long.
1399
1400    The speedup may make a difference in programs that frequently
1401    convert numbers to strings.  Some implementations of sprintf,
1402    particularly the one in GNU libc, have been known to be extremely
1403    slow when converting integers to strings.
1404
1405    Return the pointer to the location where the terminating zero was
1406    printed.  (Equivalent to calling buffer+strlen(buffer) after the
1407    function is done.)
1408
1409    BUFFER should be big enough to accept as many bytes as you expect
1410    the number to take up.  On machines with 64-bit longs the maximum
1411    needed size is 24 bytes.  That includes the digits needed for the
1412    largest 64-bit number, the `-' sign in case it's negative, and the
1413    terminating '\0'.  */
1414
1415 char *
1416 number_to_string (char *buffer, wgint number)
1417 {
1418   char *p = buffer;
1419   wgint n = number;
1420
1421 #if (SIZEOF_WGINT != 4) && (SIZEOF_WGINT != 8)
1422   /* We are running in a strange or misconfigured environment.  Let
1423      sprintf cope with it.  */
1424   SPRINTF_WGINT (buffer, n);
1425   p += strlen (buffer);
1426 #else  /* (SIZEOF_WGINT == 4) || (SIZEOF_WGINT == 8) */
1427
1428   if (n < 0)
1429     {
1430       if (n < -WGINT_MAX)
1431         {
1432           /* -n would overflow.  Have sprintf deal with this.  */
1433           SPRINTF_WGINT (buffer, n);
1434           p += strlen (buffer);
1435           return p;
1436         }
1437
1438       *p++ = '-';
1439       n = -n;
1440     }
1441
1442   /* Use the DIGITS_ macro appropriate for N's number of digits.  That
1443      way printing any N is fully open-coded without a loop or jump.
1444      (Also see description of DIGITS_*.)  */
1445
1446   if      (n < 10)                       DIGITS_1 (1);
1447   else if (n < 100)                      DIGITS_2 (10);
1448   else if (n < 1000)                     DIGITS_3 (100);
1449   else if (n < 10000)                    DIGITS_4 (1000);
1450   else if (n < 100000)                   DIGITS_5 (10000);
1451   else if (n < 1000000)                  DIGITS_6 (100000);
1452   else if (n < 10000000)                 DIGITS_7 (1000000);
1453   else if (n < 100000000)                DIGITS_8 (10000000);
1454   else if (n < 1000000000)               DIGITS_9 (100000000);
1455 #if SIZEOF_WGINT == 4
1456   /* wgint is 32 bits wide: no number has more than 10 digits. */
1457   else                                   DIGITS_10 (1000000000);
1458 #else
1459   /* wgint is 64 bits wide: handle numbers with 9-19 decimal digits.
1460      Constants are constructed by compile-time multiplication to avoid
1461      dealing with different notations for 64-bit constants
1462      (nL/nLL/nI64, depending on the compiler and architecture).  */
1463   else if (n < 10*(W)1000000000)         DIGITS_10 (1000000000);
1464   else if (n < 100*(W)1000000000)        DIGITS_11 (10*(W)1000000000);
1465   else if (n < 1000*(W)1000000000)       DIGITS_12 (100*(W)1000000000);
1466   else if (n < 10000*(W)1000000000)      DIGITS_13 (1000*(W)1000000000);
1467   else if (n < 100000*(W)1000000000)     DIGITS_14 (10000*(W)1000000000);
1468   else if (n < 1000000*(W)1000000000)    DIGITS_15 (100000*(W)1000000000);
1469   else if (n < 10000000*(W)1000000000)   DIGITS_16 (1000000*(W)1000000000);
1470   else if (n < 100000000*(W)1000000000)  DIGITS_17 (10000000*(W)1000000000);
1471   else if (n < 1000000000*(W)1000000000) DIGITS_18 (100000000*(W)1000000000);
1472   else                                   DIGITS_19 (1000000000*(W)1000000000);
1473 #endif
1474
1475   *p = '\0';
1476 #endif /* (SIZEOF_WGINT == 4) || (SIZEOF_WGINT == 8) */
1477
1478   return p;
1479 }
1480
1481 #undef PR
1482 #undef W
1483 #undef DIGITS_1
1484 #undef DIGITS_2
1485 #undef DIGITS_3
1486 #undef DIGITS_4
1487 #undef DIGITS_5
1488 #undef DIGITS_6
1489 #undef DIGITS_7
1490 #undef DIGITS_8
1491 #undef DIGITS_9
1492 #undef DIGITS_10
1493 #undef DIGITS_11
1494 #undef DIGITS_12
1495 #undef DIGITS_13
1496 #undef DIGITS_14
1497 #undef DIGITS_15
1498 #undef DIGITS_16
1499 #undef DIGITS_17
1500 #undef DIGITS_18
1501 #undef DIGITS_19
1502
1503 #define RING_SIZE 3
1504
1505 /* Print NUMBER to a statically allocated string and return a pointer
1506    to the printed representation.
1507
1508    This function is intended to be used in conjunction with printf.
1509    It is hard to portably print wgint values:
1510     a) you cannot use printf("%ld", number) because wgint can be long
1511        long on 32-bit machines with LFS.
1512     b) you cannot use printf("%lld", number) because NUMBER could be
1513        long on 32-bit machines without LFS, or on 64-bit machines,
1514        which do not require LFS.  Also, Windows doesn't support %lld.
1515     c) you cannot use printf("%j", (int_max_t) number) because not all
1516        versions of printf support "%j", the most notable being the one
1517        on Windows.
1518     d) you cannot #define WGINT_FMT to the appropriate format and use
1519        printf(WGINT_FMT, number) because that would break translations
1520        for user-visible messages, such as printf("Downloaded: %d
1521        bytes\n", number).
1522
1523    What you should use instead is printf("%s", number_to_static_string
1524    (number)).
1525
1526    CAVEAT: since the function returns pointers to static data, you
1527    must be careful to copy its result before calling it again.
1528    However, to make it more useful with printf, the function maintains
1529    an internal ring of static buffers to return.  That way things like
1530    printf("%s %s", number_to_static_string (num1),
1531    number_to_static_string (num2)) work as expected.  Three buffers
1532    are currently used, which means that "%s %s %s" will work, but "%s
1533    %s %s %s" won't.  If you need to print more than three wgints,
1534    bump the RING_SIZE (or rethink your message.)  */
1535
1536 char *
1537 number_to_static_string (wgint number)
1538 {
1539   static char ring[RING_SIZE][24];
1540   static int ringpos;
1541   char *buf = ring[ringpos];
1542   number_to_string (buf, number);
1543   ringpos = (ringpos + 1) % RING_SIZE;
1544   return buf;
1545 }
1546 \f
1547 /* Determine the width of the terminal we're running on.  If that's
1548    not possible, return 0.  */
1549
1550 int
1551 determine_screen_width (void)
1552 {
1553   /* If there's a way to get the terminal size using POSIX
1554      tcgetattr(), somebody please tell me.  */
1555 #ifdef TIOCGWINSZ
1556   int fd;
1557   struct winsize wsz;
1558
1559   if (opt.lfilename != NULL)
1560     return 0;
1561
1562   fd = fileno (stderr);
1563   if (ioctl (fd, TIOCGWINSZ, &wsz) < 0)
1564     return 0;                   /* most likely ENOTTY */
1565
1566   return wsz.ws_col;
1567 #elif defined(WINDOWS)
1568   CONSOLE_SCREEN_BUFFER_INFO csbi;
1569   if (!GetConsoleScreenBufferInfo (GetStdHandle (STD_ERROR_HANDLE), &csbi))
1570     return 0;
1571   return csbi.dwSize.X;
1572 #else  /* neither TIOCGWINSZ nor WINDOWS */
1573   return 0;
1574 #endif /* neither TIOCGWINSZ nor WINDOWS */
1575 }
1576
1577 /* Return a random number between 0 and MAX-1, inclusive.
1578
1579    If MAX is greater than the value of RAND_MAX+1 on the system, the
1580    returned value will be in the range [0, RAND_MAX].  This may be
1581    fixed in a future release.
1582
1583    The random number generator is seeded automatically the first time
1584    it is called.
1585
1586    This uses rand() for portability.  It has been suggested that
1587    random() offers better randomness, but this is not required for
1588    Wget, so I chose to go for simplicity and use rand
1589    unconditionally.
1590
1591    DO NOT use this for cryptographic purposes.  It is only meant to be
1592    used in situations where quality of the random numbers returned
1593    doesn't really matter.  */
1594
1595 int
1596 random_number (int max)
1597 {
1598   static int seeded;
1599   double bounded;
1600   int rnd;
1601
1602   if (!seeded)
1603     {
1604       srand (time (NULL));
1605       seeded = 1;
1606     }
1607   rnd = rand ();
1608
1609   /* On systems that don't define RAND_MAX, assume it to be 2**15 - 1,
1610      and enforce that assumption by masking other bits.  */
1611 #ifndef RAND_MAX
1612 # define RAND_MAX 32767
1613   rnd &= RAND_MAX;
1614 #endif
1615
1616   /* This is equivalent to rand() % max, but uses the high-order bits
1617      for better randomness on architecture where rand() is implemented
1618      using a simple congruential generator.  */
1619
1620   bounded = (double)max * rnd / (RAND_MAX + 1.0);
1621   return (int)bounded;
1622 }
1623
1624 /* Return a random uniformly distributed floating point number in the
1625    [0, 1) range.  The precision of returned numbers is 9 digits.
1626
1627    Modify this to use erand48() where available!  */
1628
1629 double
1630 random_float (void)
1631 {
1632   /* We can't rely on any specific value of RAND_MAX, but I'm pretty
1633      sure it's greater than 1000.  */
1634   int rnd1 = random_number (1000);
1635   int rnd2 = random_number (1000);
1636   int rnd3 = random_number (1000);
1637   return rnd1 / 1000.0 + rnd2 / 1000000.0 + rnd3 / 1000000000.0;
1638 }
1639 \f
1640 /* Implementation of run_with_timeout, a generic timeout-forcing
1641    routine for systems with Unix-like signal handling.  */
1642
1643 #ifdef USE_SIGNAL_TIMEOUT
1644 # ifdef HAVE_SIGSETJMP
1645 #  define SETJMP(env) sigsetjmp (env, 1)
1646
1647 static sigjmp_buf run_with_timeout_env;
1648
1649 static void
1650 abort_run_with_timeout (int sig)
1651 {
1652   assert (sig == SIGALRM);
1653   siglongjmp (run_with_timeout_env, -1);
1654 }
1655 # else /* not HAVE_SIGSETJMP */
1656 #  define SETJMP(env) setjmp (env)
1657
1658 static jmp_buf run_with_timeout_env;
1659
1660 static void
1661 abort_run_with_timeout (int sig)
1662 {
1663   assert (sig == SIGALRM);
1664   /* We don't have siglongjmp to preserve the set of blocked signals;
1665      if we longjumped out of the handler at this point, SIGALRM would
1666      remain blocked.  We must unblock it manually. */
1667   int mask = siggetmask ();
1668   mask &= ~sigmask (SIGALRM);
1669   sigsetmask (mask);
1670
1671   /* Now it's safe to longjump. */
1672   longjmp (run_with_timeout_env, -1);
1673 }
1674 # endif /* not HAVE_SIGSETJMP */
1675
1676 /* Arrange for SIGALRM to be delivered in TIMEOUT seconds.  This uses
1677    setitimer where available, alarm otherwise.
1678
1679    TIMEOUT should be non-zero.  If the timeout value is so small that
1680    it would be rounded to zero, it is rounded to the least legal value
1681    instead (1us for setitimer, 1s for alarm).  That ensures that
1682    SIGALRM will be delivered in all cases.  */
1683
1684 static void
1685 alarm_set (double timeout)
1686 {
1687 #ifdef ITIMER_REAL
1688   /* Use the modern itimer interface. */
1689   struct itimerval itv;
1690   xzero (itv);
1691   itv.it_value.tv_sec = (long) timeout;
1692   itv.it_value.tv_usec = 1000000 * (timeout - (long)timeout);
1693   if (itv.it_value.tv_sec == 0 && itv.it_value.tv_usec == 0)
1694     /* Ensure that we wait for at least the minimum interval.
1695        Specifying zero would mean "wait forever".  */
1696     itv.it_value.tv_usec = 1;
1697   setitimer (ITIMER_REAL, &itv, NULL);
1698 #else  /* not ITIMER_REAL */
1699   /* Use the old alarm() interface. */
1700   int secs = (int) timeout;
1701   if (secs == 0)
1702     /* Round TIMEOUTs smaller than 1 to 1, not to zero.  This is
1703        because alarm(0) means "never deliver the alarm", i.e. "wait
1704        forever", which is not what someone who specifies a 0.5s
1705        timeout would expect.  */
1706     secs = 1;
1707   alarm (secs);
1708 #endif /* not ITIMER_REAL */
1709 }
1710
1711 /* Cancel the alarm set with alarm_set. */
1712
1713 static void
1714 alarm_cancel (void)
1715 {
1716 #ifdef ITIMER_REAL
1717   struct itimerval disable;
1718   xzero (disable);
1719   setitimer (ITIMER_REAL, &disable, NULL);
1720 #else  /* not ITIMER_REAL */
1721   alarm (0);
1722 #endif /* not ITIMER_REAL */
1723 }
1724
1725 /* Call FUN(ARG), but don't allow it to run for more than TIMEOUT
1726    seconds.  Returns true if the function was interrupted with a
1727    timeout, false otherwise.
1728
1729    This works by setting up SIGALRM to be delivered in TIMEOUT seconds
1730    using setitimer() or alarm().  The timeout is enforced by
1731    longjumping out of the SIGALRM handler.  This has several
1732    advantages compared to the traditional approach of relying on
1733    signals causing system calls to exit with EINTR:
1734
1735      * The callback function is *forcibly* interrupted after the
1736        timeout expires, (almost) regardless of what it was doing and
1737        whether it was in a syscall.  For example, a calculation that
1738        takes a long time is interrupted as reliably as an IO
1739        operation.
1740
1741      * It works with both SYSV and BSD signals because it doesn't
1742        depend on the default setting of SA_RESTART.
1743
1744      * It doesn't require special handler setup beyond a simple call
1745        to signal().  (It does use sigsetjmp/siglongjmp, but they're
1746        optional.)
1747
1748    The only downside is that, if FUN allocates internal resources that
1749    are normally freed prior to exit from the functions, they will be
1750    lost in case of timeout.  */
1751
1752 bool
1753 run_with_timeout (double timeout, void (*fun) (void *), void *arg)
1754 {
1755   int saved_errno;
1756
1757   if (timeout == 0)
1758     {
1759       fun (arg);
1760       return false;
1761     }
1762
1763   signal (SIGALRM, abort_run_with_timeout);
1764   if (SETJMP (run_with_timeout_env) != 0)
1765     {
1766       /* Longjumped out of FUN with a timeout. */
1767       signal (SIGALRM, SIG_DFL);
1768       return true;
1769     }
1770   alarm_set (timeout);
1771   fun (arg);
1772
1773   /* Preserve errno in case alarm() or signal() modifies it. */
1774   saved_errno = errno;
1775   alarm_cancel ();
1776   signal (SIGALRM, SIG_DFL);
1777   errno = saved_errno;
1778
1779   return false;
1780 }
1781
1782 #else  /* not USE_SIGNAL_TIMEOUT */
1783
1784 #ifndef WINDOWS
1785 /* A stub version of run_with_timeout that just calls FUN(ARG).  Don't
1786    define it under Windows, because Windows has its own version of
1787    run_with_timeout that uses threads.  */
1788
1789 int
1790 run_with_timeout (double timeout, void (*fun) (void *), void *arg)
1791 {
1792   fun (arg);
1793   return false;
1794 }
1795 #endif /* not WINDOWS */
1796 #endif /* not USE_SIGNAL_TIMEOUT */
1797 \f
1798 #ifndef WINDOWS
1799
1800 /* Sleep the specified amount of seconds.  On machines without
1801    nanosleep(), this may sleep shorter if interrupted by signals.  */
1802
1803 void
1804 xsleep (double seconds)
1805 {
1806 #ifdef HAVE_NANOSLEEP
1807   /* nanosleep is the preferred interface because it offers high
1808      accuracy and, more importantly, because it allows us to reliably
1809      restart receiving a signal such as SIGWINCH.  (There was an
1810      actual Debian bug report about --limit-rate malfunctioning while
1811      the terminal was being resized.)  */
1812   struct timespec sleep, remaining;
1813   sleep.tv_sec = (long) seconds;
1814   sleep.tv_nsec = 1000000000 * (seconds - (long) seconds);
1815   while (nanosleep (&sleep, &remaining) < 0 && errno == EINTR)
1816     /* If nanosleep has been interrupted by a signal, adjust the
1817        sleeping period and return to sleep.  */
1818     sleep = remaining;
1819 #elif defined(HAVE_USLEEP)
1820   /* If usleep is available, use it in preference to select.  */
1821   if (seconds >= 1)
1822     {
1823       /* On some systems, usleep cannot handle values larger than
1824          1,000,000.  If the period is larger than that, use sleep
1825          first, then add usleep for subsecond accuracy.  */
1826       sleep (seconds);
1827       seconds -= (long) seconds;
1828     }
1829   usleep (seconds * 1000000);
1830 #else /* fall back select */
1831   /* Note that, although Windows supports select, it can't be used to
1832      implement sleeping because Winsock's select doesn't implement
1833      timeout when it is passed NULL pointers for all fd sets.  (But it
1834      does under Cygwin, which implements Unix-compatible select.)  */
1835   struct timeval sleep;
1836   sleep.tv_sec = (long) seconds;
1837   sleep.tv_usec = 1000000 * (seconds - (long) seconds);
1838   select (0, NULL, NULL, NULL, &sleep);
1839   /* If select returns -1 and errno is EINTR, it means we were
1840      interrupted by a signal.  But without knowing how long we've
1841      actually slept, we can't return to sleep.  Using gettimeofday to
1842      track sleeps is slow and unreliable due to clock skew.  */
1843 #endif
1844 }
1845
1846 #endif /* not WINDOWS */
1847
1848 /* Encode the string STR of length LENGTH to base64 format and place it
1849    to B64STORE.  The output will be \0-terminated, and must point to a
1850    writable buffer of at least 1+BASE64_LENGTH(length) bytes.  It
1851    returns the length of the resulting base64 data, not counting the
1852    terminating zero.
1853
1854    This implementation will not emit newlines after 76 characters of
1855    base64 data.  */
1856
1857 int
1858 base64_encode (const char *str, int length, char *b64store)
1859 {
1860   /* Conversion table.  */
1861   static char tbl[64] = {
1862     'A','B','C','D','E','F','G','H',
1863     'I','J','K','L','M','N','O','P',
1864     'Q','R','S','T','U','V','W','X',
1865     'Y','Z','a','b','c','d','e','f',
1866     'g','h','i','j','k','l','m','n',
1867     'o','p','q','r','s','t','u','v',
1868     'w','x','y','z','0','1','2','3',
1869     '4','5','6','7','8','9','+','/'
1870   };
1871   int i;
1872   const unsigned char *s = (const unsigned char *) str;
1873   char *p = b64store;
1874
1875   /* Transform the 3x8 bits to 4x6 bits, as required by base64.  */
1876   for (i = 0; i < length; i += 3)
1877     {
1878       *p++ = tbl[s[0] >> 2];
1879       *p++ = tbl[((s[0] & 3) << 4) + (s[1] >> 4)];
1880       *p++ = tbl[((s[1] & 0xf) << 2) + (s[2] >> 6)];
1881       *p++ = tbl[s[2] & 0x3f];
1882       s += 3;
1883     }
1884
1885   /* Pad the result if necessary...  */
1886   if (i == length + 1)
1887     *(p - 1) = '=';
1888   else if (i == length + 2)
1889     *(p - 1) = *(p - 2) = '=';
1890
1891   /* ...and zero-terminate it.  */
1892   *p = '\0';
1893
1894   return p - b64store;
1895 }
1896
1897 #define IS_ASCII(c) (((c) & 0x80) == 0)
1898 #define IS_BASE64(c) ((IS_ASCII (c) && base64_char_to_value[c] >= 0) || c == '=')
1899
1900 /* Get next character from the string, except that non-base64
1901    characters are ignored, as mandated by rfc2045.  */
1902 #define NEXT_BASE64_CHAR(c, p) do {                     \
1903   c = *p++;                                             \
1904 } while (c != '\0' && !IS_BASE64 (c))
1905
1906 /* Decode data from BASE64 (assumed to be encoded as base64) into
1907    memory pointed to by TO.  TO should be large enough to accomodate
1908    the decoded data, which is guaranteed to be less than
1909    strlen(base64).
1910
1911    Since TO is assumed to contain binary data, it is not
1912    NUL-terminated.  The function returns the length of the data
1913    written to TO.  -1 is returned in case of error caused by malformed
1914    base64 input.  */
1915
1916 int
1917 base64_decode (const char *base64, char *to)
1918 {
1919   /* Table of base64 values for first 128 characters.  Note that this
1920      assumes ASCII (but so does Wget in other places).  */
1921   static short base64_char_to_value[128] =
1922     {
1923       -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  /*   0-  9 */
1924       -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  /*  10- 19 */
1925       -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  /*  20- 29 */
1926       -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  -1,  /*  30- 39 */
1927       -1,  -1,  -1,  62,  -1,  -1,  -1,  63,  52,  53,  /*  40- 49 */
1928       54,  55,  56,  57,  58,  59,  60,  61,  -1,  -1,  /*  50- 59 */
1929       -1,  -1,  -1,  -1,  -1,  0,   1,   2,   3,   4,   /*  60- 69 */
1930       5,   6,   7,   8,   9,   10,  11,  12,  13,  14,  /*  70- 79 */
1931       15,  16,  17,  18,  19,  20,  21,  22,  23,  24,  /*  80- 89 */
1932       25,  -1,  -1,  -1,  -1,  -1,  -1,  26,  27,  28,  /*  90- 99 */
1933       29,  30,  31,  32,  33,  34,  35,  36,  37,  38,  /* 100-109 */
1934       39,  40,  41,  42,  43,  44,  45,  46,  47,  48,  /* 110-119 */
1935       49,  50,  51,  -1,  -1,  -1,  -1,  -1             /* 120-127 */
1936     };
1937
1938   const char *p = base64;
1939   char *q = to;
1940
1941   while (1)
1942     {
1943       unsigned char c;
1944       unsigned long value;
1945
1946       /* Process first byte of a quadruplet.  */
1947       NEXT_BASE64_CHAR (c, p);
1948       if (!c)
1949         break;
1950       if (c == '=')
1951         return -1;              /* illegal '=' while decoding base64 */
1952       value = base64_char_to_value[c] << 18;
1953
1954       /* Process scond byte of a quadruplet.  */
1955       NEXT_BASE64_CHAR (c, p);
1956       if (!c)
1957         return -1;              /* premature EOF while decoding base64 */
1958       if (c == '=')
1959         return -1;              /* illegal `=' while decoding base64 */
1960       value |= base64_char_to_value[c] << 12;
1961       *q++ = value >> 16;
1962
1963       /* Process third byte of a quadruplet.  */
1964       NEXT_BASE64_CHAR (c, p);
1965       if (!c)
1966         return -1;              /* premature EOF while decoding base64 */
1967
1968       if (c == '=')
1969         {
1970           NEXT_BASE64_CHAR (c, p);
1971           if (!c)
1972             return -1;          /* premature EOF while decoding base64 */
1973           if (c != '=')
1974             return -1;          /* padding `=' expected but not found */
1975           continue;
1976         }
1977
1978       value |= base64_char_to_value[c] << 6;
1979       *q++ = 0xff & value >> 8;
1980
1981       /* Process fourth byte of a quadruplet.  */
1982       NEXT_BASE64_CHAR (c, p);
1983       if (!c)
1984         return -1;              /* premature EOF while decoding base64 */
1985       if (c == '=')
1986         continue;
1987
1988       value |= base64_char_to_value[c];
1989       *q++ = 0xff & value;
1990     }
1991
1992   return q - to;
1993 }
1994
1995 #undef IS_ASCII
1996 #undef IS_BASE64
1997 #undef NEXT_BASE64_CHAR
1998 \f
1999 /* Simple merge sort for use by stable_sort.  Implementation courtesy
2000    Zeljko Vrba with additional debugging by Nenad Barbutov.  */
2001
2002 static void
2003 mergesort_internal (void *base, void *temp, size_t size, size_t from, size_t to,
2004                     int (*cmpfun) (const void *, const void *))
2005 {
2006 #define ELT(array, pos) ((char *)(array) + (pos) * size)
2007   if (from < to)
2008     {
2009       size_t i, j, k;
2010       size_t mid = (to + from) / 2;
2011       mergesort_internal (base, temp, size, from, mid, cmpfun);
2012       mergesort_internal (base, temp, size, mid + 1, to, cmpfun);
2013       i = from;
2014       j = mid + 1;
2015       for (k = from; (i <= mid) && (j <= to); k++)
2016         if (cmpfun (ELT (base, i), ELT (base, j)) <= 0)
2017           memcpy (ELT (temp, k), ELT (base, i++), size);
2018         else
2019           memcpy (ELT (temp, k), ELT (base, j++), size);
2020       while (i <= mid)
2021         memcpy (ELT (temp, k++), ELT (base, i++), size);
2022       while (j <= to)
2023         memcpy (ELT (temp, k++), ELT (base, j++), size);
2024       for (k = from; k <= to; k++)
2025         memcpy (ELT (base, k), ELT (temp, k), size);
2026     }
2027 #undef ELT
2028 }
2029
2030 /* Stable sort with interface exactly like standard library's qsort.
2031    Uses mergesort internally, allocating temporary storage with
2032    alloca.  */
2033
2034 void
2035 stable_sort (void *base, size_t nmemb, size_t size,
2036              int (*cmpfun) (const void *, const void *))
2037 {
2038   if (size > 1)
2039     {
2040       void *temp = alloca (nmemb * size * sizeof (void *));
2041       mergesort_internal (base, temp, size, 0, nmemb - 1, cmpfun);
2042     }
2043 }