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