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