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