1 /* system-dependent definitions for fileutils, textutils, and sh-utils packages.
2 Copyright (C) 1989, 1991-2004 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 /* Include sys/types.h before this file. */
22 #if 2 <= __GLIBC__ && 2 <= __GLIBC_MINOR__
23 # if ! defined _SYS_TYPES_H
24 you must include
<sys
/types
.h
> before including
this file
30 #if !defined HAVE_MKFIFO
31 # define mkfifo(path, mode) (mknod ((path), (mode) | S_IFIFO, 0))
35 # include <sys/param.h>
38 /* <unistd.h> should be included before any preprocessor test
45 # define STDIN_FILENO 0
49 # define STDOUT_FILENO 1
53 # define STDERR_FILENO 2
57 /* limits.h must come before pathmax.h because limits.h on some systems
58 undefs PATH_MAX, whereas pathmax.h sets PATH_MAX. */
62 #include "localedir.h"
64 #if TIME_WITH_SYS_TIME
65 # include <sys/time.h>
69 # include <sys/time.h>
75 /* Since major is a function on SVR4, we can't use `ifndef major'. */
77 # include <sys/mkdev.h>
80 #if MAJOR_IN_SYSMACROS
81 # include <sys/sysmacros.h>
84 #ifdef major /* Might be defined in sys/types.h. */
89 # define major(dev) (((dev) >> 8) & 0xff)
90 # define minor(dev) ((dev) & 0xff)
91 # define makedev(maj, min) (((maj) << 8) | (min))
99 /* Some systems (even some that do have <utime.h>) don't declare this
100 structure anywhere. */
101 #ifndef HAVE_STRUCT_UTIMBUF
109 /* Don't use bcopy! Use memmove if source and destination may overlap,
113 #if ! HAVE_DECL_MEMRCHR
114 void *memrchr (const void *, int, size_t);
122 /* Some systems don't define the following symbols. */
127 # define ENOTSUP (-1)
135 #define getopt system_getopt
139 /* The following test is to work around the gross typo in
140 systems like Sony NEWS-OS Release 4.0C, whereby EXIT_FAILURE
141 is defined to 0, not 1. */
144 # define EXIT_FAILURE 1
148 # define EXIT_SUCCESS 0
151 /* Exit statuses for programs like 'env' that exec other programs.
152 EXIT_FAILURE might not be 1, so use EXIT_FAIL in such programs. */
156 EXIT_CANNOT_INVOKE
= 126,
160 #include "exitfail.h"
162 /* Set exit_failure to STATUS if that's not the default already. */
164 initialize_exit_failure (int status
)
166 if (status
!= EXIT_FAILURE
)
167 exit_failure
= status
;
173 # include <sys/file.h>
176 #if !defined SEEK_SET
188 /* For systems that distinguish between text and binary I/O.
189 O_BINARY is usually declared in fcntl.h */
190 #if !defined O_BINARY && defined _O_BINARY
191 /* For MSC-compatible compilers. */
192 # define O_BINARY _O_BINARY
193 # define O_TEXT _O_TEXT
196 #if !defined O_NDELAY
200 #if !defined O_NONBLOCK
201 # define O_NONBLOCK O_NDELAY
204 #if !defined O_NOCTTY
209 /* BeOS 5 has O_BINARY and O_TEXT, but they have no effect. */
216 # define setmode _setmode
217 # define fileno(_fp) _fileno (_fp)
218 # endif /* not DJGPP */
219 # define SET_MODE(_f, _m) setmode (_f, _m)
220 # define SET_BINARY(_f) do {if (!isatty(_f)) setmode (_f, O_BINARY);} while (0)
221 # define SET_BINARY2(_f1, _f2) \
225 setmode (_f1, O_BINARY); \
227 setmode (_f2, O_BINARY); \
231 # define SET_MODE(_f, _m) (void)0
232 # define SET_BINARY(f) (void)0
233 # define SET_BINARY2(f1,f2) (void)0
236 #endif /* O_BINARY */
240 # define NLENGTH(direct) (strlen((direct)->d_name))
241 #else /* not HAVE_DIRENT_H */
242 # define dirent direct
243 # define NLENGTH(direct) ((direct)->d_namlen)
245 # include <sys/ndir.h>
246 # endif /* HAVE_SYS_NDIR_H */
248 # include <sys/dir.h>
249 # endif /* HAVE_SYS_DIR_H */
252 # endif /* HAVE_NDIR_H */
253 #endif /* HAVE_DIRENT_H */
256 /* Fake a return value. */
257 # define CLOSEDIR(d) (closedir (d), 0)
259 # define CLOSEDIR(d) closedir (d)
262 /* Get or fake the disk device blocksize.
263 Usually defined by sys/param.h (if at all). */
264 #if !defined DEV_BSIZE && defined BSIZE
265 # define DEV_BSIZE BSIZE
267 #if !defined DEV_BSIZE && defined BBSIZE /* SGI */
268 # define DEV_BSIZE BBSIZE
271 # define DEV_BSIZE 4096
274 /* Extract or fake data from a `struct stat'.
275 ST_BLKSIZE: Preferred I/O blocksize for the file, in bytes.
276 ST_NBLOCKS: Number of blocks in the file, including indirect blocks.
277 ST_NBLOCKSIZE: Size of blocks used when calculating ST_NBLOCKS. */
278 #ifndef HAVE_STRUCT_STAT_ST_BLOCKS
279 # define ST_BLKSIZE(statbuf) DEV_BSIZE
280 # if defined _POSIX_SOURCE || !defined BSIZE /* fileblocks.c uses BSIZE. */
281 # define ST_NBLOCKS(statbuf) \
282 ((statbuf).st_size / ST_NBLOCKSIZE + ((statbuf).st_size % ST_NBLOCKSIZE != 0))
283 # else /* !_POSIX_SOURCE && BSIZE */
284 # define ST_NBLOCKS(statbuf) \
285 (S_ISREG ((statbuf).st_mode) \
286 || S_ISDIR ((statbuf).st_mode) \
287 ? st_blocks ((statbuf).st_size) : 0)
288 # endif /* !_POSIX_SOURCE && BSIZE */
289 #else /* HAVE_STRUCT_STAT_ST_BLOCKS */
290 /* Some systems, like Sequents, return st_blksize of 0 on pipes.
291 Also, when running `rsh hpux11-system cat any-file', cat would
292 determine that the output stream had an st_blksize of 2147421096.
293 So here we arbitrarily limit the `optimal' block size to 4MB.
294 If anyone knows of a system for which the legitimate value for
295 st_blksize can exceed 4MB, please report it as a bug in this code. */
296 # define ST_BLKSIZE(statbuf) ((0 < (statbuf).st_blksize \
297 && (statbuf).st_blksize <= (1 << 22)) /* 4MB */ \
298 ? (statbuf).st_blksize : DEV_BSIZE)
299 # if defined hpux || defined __hpux__ || defined __hpux
300 /* HP-UX counts st_blocks in 1024-byte units.
301 This loses when mixing HP-UX and BSD filesystems with NFS. */
302 # define ST_NBLOCKSIZE 1024
304 # if defined _AIX && defined _I386
305 /* AIX PS/2 counts st_blocks in 4K units. */
306 # define ST_NBLOCKSIZE (4 * 1024)
307 # else /* not AIX PS/2 */
309 # define ST_NBLOCKS(statbuf) \
310 (S_ISREG ((statbuf).st_mode) \
311 || S_ISDIR ((statbuf).st_mode) \
312 ? (statbuf).st_blocks * ST_BLKSIZE(statbuf)/ST_NBLOCKSIZE : 0)
314 # endif /* not AIX PS/2 */
316 #endif /* HAVE_STRUCT_STAT_ST_BLOCKS */
319 # define ST_NBLOCKS(statbuf) ((statbuf).st_blocks)
322 #ifndef ST_NBLOCKSIZE
323 # define ST_NBLOCKSIZE 512
326 /* Redirection and wildcarding when done by the utility itself.
327 Generally a noop, but used in particular for native VMS. */
328 #ifndef initialize_main
329 # define initialize_main(ac, av)
333 # define S_IFMT 0170000
336 #if STAT_MACROS_BROKEN
354 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
356 # define S_ISBLK(m) 0
362 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
364 # define S_ISCHR(m) 0
370 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
372 # define S_ISDIR(m) 0
376 #ifndef S_ISDOOR /* Solaris 2.5 and up */
378 # define S_ISDOOR(m) (((m) & S_IFMT) == S_IFDOOR)
380 # define S_ISDOOR(m) 0
386 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
388 # define S_ISFIFO(m) 0
394 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
396 # define S_ISLNK(m) 0
400 #ifndef S_ISMPB /* V7 */
402 # define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
403 # define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
405 # define S_ISMPB(m) 0
406 # define S_ISMPC(m) 0
410 #ifndef S_ISNAM /* Xenix */
412 # define S_ISNAM(m) (((m) & S_IFMT) == S_IFNAM)
414 # define S_ISNAM(m) 0
418 #ifndef S_ISNWK /* HP/UX */
420 # define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
422 # define S_ISNWK(m) 0
428 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
430 # define S_ISREG(m) 0
436 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
438 # define S_ISSOCK(m) 0
445 # define S_TYPEISSEM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSEM)
447 # define S_TYPEISSEM(p) 0
453 # define S_TYPEISSHM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSHD)
455 # define S_TYPEISSHM(p) 0
460 # define S_TYPEISMQ(p) 0
464 /* If any of the following are undefined,
465 define them to their de facto standard values. */
467 # define S_ISUID 04000
470 # define S_ISGID 02000
473 /* S_ISVTX is a common extension to POSIX. */
475 # define S_ISVTX 01000
478 #if !S_IRUSR && S_IREAD
479 # define S_IRUSR S_IREAD
482 # define S_IRUSR 00400
485 # define S_IRGRP (S_IRUSR >> 3)
488 # define S_IROTH (S_IRUSR >> 6)
491 #if !S_IWUSR && S_IWRITE
492 # define S_IWUSR S_IWRITE
495 # define S_IWUSR 00200
498 # define S_IWGRP (S_IWUSR >> 3)
501 # define S_IWOTH (S_IWUSR >> 6)
504 #if !S_IXUSR && S_IEXEC
505 # define S_IXUSR S_IEXEC
508 # define S_IXUSR 00100
511 # define S_IXGRP (S_IXUSR >> 3)
514 # define S_IXOTH (S_IXUSR >> 6)
518 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
521 # define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
524 # define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
527 /* S_IXUGO is a common extension to POSIX. */
529 # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
533 # define S_IRWXUGO (S_IRWXU | S_IRWXG | S_IRWXO)
536 /* All the mode bits that can be affected by chmod. */
537 #define CHMOD_MODE_BITS \
538 (S_ISUID | S_ISGID | S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO)
540 #include "timespec.h"
543 # define RETSIGTYPE void
547 /* We need the declaration of setmode. */
549 /* We need the declaration of __djgpp_set_ctrl_c. */
550 # include <sys/exceptn.h>
558 # include <inttypes.h> /* for the definition of UINTMAX_MAX */
561 #if !defined PRIdMAX || PRI_MACROS_BROKEN
563 # define PRIdMAX (sizeof (uintmax_t) == sizeof (long) ? "ld" : "lld")
565 #if !defined PRIoMAX || PRI_MACROS_BROKEN
567 # define PRIoMAX (sizeof (uintmax_t) == sizeof (long) ? "lo" : "llo")
569 #if !defined PRIuMAX || PRI_MACROS_BROKEN
571 # define PRIuMAX (sizeof (uintmax_t) == sizeof (long) ? "lu" : "llu")
573 #if !defined PRIxMAX || PRI_MACROS_BROKEN
575 # define PRIxMAX (sizeof (uintmax_t) == sizeof (long) ? "lx" : "llx")
580 /* Jim Meyering writes:
582 "... Some ctype macros are valid only for character codes that
583 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
584 using /bin/cc or gcc but without giving an ansi option). So, all
585 ctype uses should be through macros like ISPRINT... If
586 STDC_HEADERS is defined, then autoconf has verified that the ctype
587 macros don't need to be guarded with references to isascii. ...
588 Defining isascii to 1 should let any compiler worth its salt
589 eliminate the && through constant folding."
593 "... Furthermore, isupper(c) etc. have an undefined result if c is
594 outside the range -1 <= c <= 255. One is tempted to write isupper(c)
595 with c being of type `char', but this is wrong if c is an 8-bit
596 character >= 128 which gets sign-extended to a negative value.
597 The macro ISUPPER protects against this as well." */
599 #if STDC_HEADERS || (!defined (isascii) && !HAVE_ISASCII)
600 # define IN_CTYPE_DOMAIN(c) 1
602 # define IN_CTYPE_DOMAIN(c) isascii(c)
606 # define ISBLANK(c) (IN_CTYPE_DOMAIN (c) && isblank (c))
608 # define ISBLANK(c) ((c) == ' ' || (c) == '\t')
611 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isgraph (c))
613 # define ISGRAPH(c) (IN_CTYPE_DOMAIN (c) && isprint (c) && !isspace (c))
616 /* This is defined in <sys/euc.h> on at least Solaris2.6 systems. */
619 #define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint (c))
620 #define ISALNUM(c) (IN_CTYPE_DOMAIN (c) && isalnum (c))
621 #define ISALPHA(c) (IN_CTYPE_DOMAIN (c) && isalpha (c))
622 #define ISCNTRL(c) (IN_CTYPE_DOMAIN (c) && iscntrl (c))
623 #define ISLOWER(c) (IN_CTYPE_DOMAIN (c) && islower (c))
624 #define ISPUNCT(c) (IN_CTYPE_DOMAIN (c) && ispunct (c))
625 #define ISSPACE(c) (IN_CTYPE_DOMAIN (c) && isspace (c))
626 #define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c))
627 #define ISXDIGIT(c) (IN_CTYPE_DOMAIN (c) && isxdigit (c))
628 #define ISDIGIT_LOCALE(c) (IN_CTYPE_DOMAIN (c) && isdigit (c))
631 # define TOLOWER(Ch) tolower (Ch)
632 # define TOUPPER(Ch) toupper (Ch)
634 # define TOLOWER(Ch) (ISUPPER (Ch) ? tolower (Ch) : (Ch))
635 # define TOUPPER(Ch) (ISLOWER (Ch) ? toupper (Ch) : (Ch))
638 /* ISDIGIT differs from ISDIGIT_LOCALE, as follows:
639 - Its arg may be any int or unsigned int; it need not be an unsigned char.
640 - It's guaranteed to evaluate its argument exactly once.
641 - It's typically faster.
642 POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
643 ISDIGIT_LOCALE unless it's important to use the locale's definition
644 of `digit' even when the host does not conform to POSIX. */
645 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
647 /* Take care of NLS matters. */
652 # define setlocale(Category, Locale) /* empty */
658 # define textdomain(Domainname) /* empty */
659 # undef bindtextdomain
660 # define bindtextdomain(Domainname, Dirname) /* empty */
663 #define _(msgid) gettext (msgid)
664 #define N_(msgid) msgid
666 #ifndef HAVE_SETLOCALE
667 # define HAVE_SETLOCALE 0
670 #define STREQ(a, b) (strcmp ((a), (b)) == 0)
676 #if !HAVE_DECL_MALLOC
680 #if !HAVE_DECL_MEMCHR
684 #if !HAVE_DECL_REALLOC
688 #if !HAVE_DECL_STPCPY
694 #if !HAVE_DECL_STRNDUP
698 #if !HAVE_DECL_STRSTR
702 #if !HAVE_DECL_GETENV
710 /* This is needed on some AIX systems. */
711 #if !HAVE_DECL_STRTOUL
712 unsigned long strtoul ();
715 #if !HAVE_DECL_GETLOGIN
719 #if !HAVE_DECL_TTYNAME
723 #if !HAVE_DECL_GETEUID
727 #if !HAVE_DECL_GETPWUID
728 struct passwd
*getpwuid ();
731 #if !HAVE_DECL_GETGRGID
732 struct group
*getgrgid ();
735 #if !HAVE_DECL_GETUID
741 #if ! defined HAVE_MEMPCPY && ! defined mempcpy
742 /* Be CAREFUL that there are no side effects in N. */
743 # define mempcpy(D, S, N) ((void *) ((char *) memcpy (D, S, N) + (N)))
746 /* Include automatically-generated macros for unlocked I/O. */
747 #include "unlocked-io.h"
749 #define SAME_INODE(Stat_buf_1, Stat_buf_2) \
750 ((Stat_buf_1).st_ino == (Stat_buf_2).st_ino \
751 && (Stat_buf_1).st_dev == (Stat_buf_2).st_dev)
753 #define DOT_OR_DOTDOT(Basename) \
754 (Basename[0] == '.' && (Basename[1] == '\0' \
755 || (Basename[1] == '.' && Basename[2] == '\0')))
758 # define SETVBUF(Stream, Buffer, Type, Size) \
759 setvbuf (Stream, Type, Buffer, Size)
761 # define SETVBUF(Stream, Buffer, Type, Size) \
762 setvbuf (Stream, Buffer, Type, Size)
765 /* Factor out some of the common --help and --version processing code. */
767 /* These enum values cannot possibly conflict with the option values
768 ordinarily used by commands, including CHAR_MAX + 1, etc. Avoid
769 CHAR_MIN - 1, as it may equal -1, the getopt end-of-options value. */
772 GETOPT_HELP_CHAR
= (CHAR_MIN
- 2),
773 GETOPT_VERSION_CHAR
= (CHAR_MIN
- 3)
776 #define GETOPT_HELP_OPTION_DECL \
777 "help", no_argument, 0, GETOPT_HELP_CHAR
778 #define GETOPT_VERSION_OPTION_DECL \
779 "version", no_argument, 0, GETOPT_VERSION_CHAR
781 #define case_GETOPT_HELP_CHAR \
782 case GETOPT_HELP_CHAR: \
783 usage (EXIT_SUCCESS); \
786 #define HELP_OPTION_DESCRIPTION \
787 _(" --help display this help and exit\n")
788 #define VERSION_OPTION_DESCRIPTION \
789 _(" --version output version information and exit\n")
791 #include "closeout.h"
792 #include "version-etc.h"
794 #define case_GETOPT_VERSION_CHAR(Program_name, Authors) \
795 case GETOPT_VERSION_CHAR: \
796 version_etc (stdout, Program_name, PACKAGE, VERSION, Authors, \
798 exit (EXIT_SUCCESS); \
802 # define MAX(a, b) ((a) > (b) ? (a) : (b))
806 # define MIN(a,b) (((a) < (b)) ? (a) : (b))
813 /* The extra casts work around common compiler bugs. */
814 #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
815 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
816 It is necessary at least when t == time_t. */
817 #define TYPE_MINIMUM(t) ((t) (TYPE_SIGNED (t) \
818 ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
819 #define TYPE_MAXIMUM(t) ((t) (~ (t) 0 - TYPE_MINIMUM (t)))
821 /* Upper bound on the string length of an integer converted to string.
822 302 / 1000 is ceil (log10 (2.0)). Subtract 1 for the sign bit;
823 add 1 for integer division truncation; add 1 more for a minus sign. */
824 #define INT_STRLEN_BOUND(t) ((sizeof (t) * CHAR_BIT - 1) * 302 / 1000 + 2)
827 # define CHAR_MIN TYPE_MINIMUM (char)
831 # define CHAR_MAX TYPE_MAXIMUM (char)
835 # define SCHAR_MIN (-1 - SCHAR_MAX)
839 # define SCHAR_MAX (CHAR_MAX == UCHAR_MAX ? CHAR_MAX / 2 : CHAR_MAX)
843 # define UCHAR_MAX TYPE_MAXIMUM (unsigned char)
847 # define SHRT_MIN TYPE_MINIMUM (short int)
851 # define SHRT_MAX TYPE_MAXIMUM (short int)
855 # define INT_MAX TYPE_MAXIMUM (int)
859 # define INT_MIN TYPE_MINIMUM (int)
863 # define UINT_MAX TYPE_MAXIMUM (unsigned int)
867 # define LONG_MAX TYPE_MAXIMUM (long)
871 # define ULONG_MAX TYPE_MAXIMUM (unsigned long)
875 # define SIZE_MAX TYPE_MAXIMUM (size_t)
879 # define SSIZE_MAX TYPE_MAXIMUM (ssize_t)
883 # define UINTMAX_MAX TYPE_MAXIMUM (uintmax_t)
887 # define OFF_T_MIN TYPE_MINIMUM (off_t)
891 # define OFF_T_MAX TYPE_MAXIMUM (off_t)
895 # define UID_T_MAX TYPE_MAXIMUM (uid_t)
899 # define GID_T_MAX TYPE_MAXIMUM (gid_t)
903 # define PID_T_MAX TYPE_MAXIMUM (pid_t)
906 /* Use this to suppress gcc's `...may be used before initialized' warnings. */
908 # define IF_LINT(Code) Code
910 # define IF_LINT(Code) /* empty */
913 #ifndef __attribute__
914 # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) || __STRICT_ANSI__
915 # define __attribute__(x)
919 #ifndef ATTRIBUTE_NORETURN
920 # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
923 #ifndef ATTRIBUTE_UNUSED
924 # define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
928 # define ASSIGN_STRDUPA(DEST, S) \
929 do { DEST = strdupa (S); } while (0)
931 # define ASSIGN_STRDUPA(DEST, S) \
934 const char *s_ = (S); \
935 size_t len_ = strlen (s_) + 1; \
936 char *tmp_dest_ = alloca (len_); \
937 DEST = memcpy (tmp_dest_, (s_), len_); \
943 # define EOVERFLOW EINVAL
946 #if ! HAVE_FSEEKO && ! defined fseeko
947 # define fseeko(s, o, w) ((o) == (long) (o) \
949 : (errno = EOVERFLOW, -1))