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