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