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