1 /* system-dependent definitions for coreutils
2 Copyright (C) 1989, 1991-2006 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 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(name, mode) mknod (name, (mode) | S_IFIFO, 0)
35 # include <sys/param.h>
41 # define STDIN_FILENO 0
45 # define STDOUT_FILENO 1
49 # define STDERR_FILENO 2
53 /* limits.h must come before pathmax.h because limits.h on some systems
54 undefs PATH_MAX, whereas pathmax.h sets PATH_MAX. */
59 #include "configmake.h"
61 #if TIME_WITH_SYS_TIME
62 # include <sys/time.h>
66 # include <sys/time.h>
72 /* Since major is a function on SVR4, we can't use `ifndef major'. */
74 # include <sys/mkdev.h>
77 #if MAJOR_IN_SYSMACROS
78 # include <sys/sysmacros.h>
81 #ifdef major /* Might be defined in sys/types.h. */
86 # define major(dev) (((dev) >> 8) & 0xff)
87 # define minor(dev) ((dev) & 0xff)
88 # define makedev(maj, min) (((maj) << 8) | (min))
92 #if ! defined makedev && defined mkdev
93 # define makedev(maj, min) mkdev (maj, min)
96 /* Don't use bcopy! Use memmove if source and destination may overlap,
107 /* Some systems don't define the following symbols. */
122 /* Exit statuses for programs like 'env' that exec other programs.
123 EXIT_FAILURE might not be 1, so use EXIT_FAIL in such programs. */
127 EXIT_CANNOT_INVOKE
= 126,
131 #include "exitfail.h"
133 /* Set exit_failure to STATUS if that's not the default already. */
135 initialize_exit_failure (int status
)
137 if (status
!= EXIT_FAILURE
)
138 exit_failure
= status
;
151 #ifndef _D_EXACT_NAMLEN
152 # define _D_EXACT_NAMLEN(dp) strlen ((dp)->d_name)
157 NOT_AN_INODE_NUMBER
= 0
160 #ifdef D_INO_IN_DIRENT
161 # define D_INO(dp) (dp)->d_ino
163 /* Some systems don't have inodes, so fake them to avoid lots of ifdefs. */
164 # define D_INO(dp) NOT_AN_INODE_NUMBER
167 /* Get or fake the disk device blocksize.
168 Usually defined by sys/param.h (if at all). */
169 #if !defined DEV_BSIZE && defined BSIZE
170 # define DEV_BSIZE BSIZE
172 #if !defined DEV_BSIZE && defined BBSIZE /* SGI */
173 # define DEV_BSIZE BBSIZE
176 # define DEV_BSIZE 4096
179 /* Extract or fake data from a `struct stat'.
180 ST_BLKSIZE: Preferred I/O blocksize for the file, in bytes.
181 ST_NBLOCKS: Number of blocks in the file, including indirect blocks.
182 ST_NBLOCKSIZE: Size of blocks used when calculating ST_NBLOCKS. */
183 #ifndef HAVE_STRUCT_STAT_ST_BLOCKS
184 # define ST_BLKSIZE(statbuf) DEV_BSIZE
185 # if defined _POSIX_SOURCE || !defined BSIZE /* fileblocks.c uses BSIZE. */
186 # define ST_NBLOCKS(statbuf) \
187 ((statbuf).st_size / ST_NBLOCKSIZE + ((statbuf).st_size % ST_NBLOCKSIZE != 0))
188 # else /* !_POSIX_SOURCE && BSIZE */
189 # define ST_NBLOCKS(statbuf) \
190 (S_ISREG ((statbuf).st_mode) \
191 || S_ISDIR ((statbuf).st_mode) \
192 ? st_blocks ((statbuf).st_size) : 0)
193 # endif /* !_POSIX_SOURCE && BSIZE */
194 #else /* HAVE_STRUCT_STAT_ST_BLOCKS */
195 /* Some systems, like Sequents, return st_blksize of 0 on pipes.
196 Also, when running `rsh hpux11-system cat any-file', cat would
197 determine that the output stream had an st_blksize of 2147421096.
198 Conversely st_blksize can be 2 GiB (or maybe even larger) with XFS
199 on 64-bit hosts. Somewhat arbitrarily, limit the `optimal' block
200 size to SIZE_MAX / 8 + 1. (Dividing SIZE_MAX by only 4 wouldn't
201 suffice, since "cat" sometimes multiplies the result by 4.) If
202 anyone knows of a system for which this limit is too small, please
203 report it as a bug in this code. */
204 # define ST_BLKSIZE(statbuf) ((0 < (statbuf).st_blksize \
205 && (statbuf).st_blksize <= SIZE_MAX / 8 + 1) \
206 ? (statbuf).st_blksize : DEV_BSIZE)
207 # if defined hpux || defined __hpux__ || defined __hpux
208 /* HP-UX counts st_blocks in 1024-byte units.
209 This loses when mixing HP-UX and BSD file systems with NFS. */
210 # define ST_NBLOCKSIZE 1024
212 # if defined _AIX && defined _I386
213 /* AIX PS/2 counts st_blocks in 4K units. */
214 # define ST_NBLOCKSIZE (4 * 1024)
215 # else /* not AIX PS/2 */
217 # define ST_NBLOCKS(statbuf) \
218 (S_ISREG ((statbuf).st_mode) \
219 || S_ISDIR ((statbuf).st_mode) \
220 ? (statbuf).st_blocks * ST_BLKSIZE(statbuf)/ST_NBLOCKSIZE : 0)
222 # endif /* not AIX PS/2 */
224 #endif /* HAVE_STRUCT_STAT_ST_BLOCKS */
227 # define ST_NBLOCKS(statbuf) ((statbuf).st_blocks)
230 #ifndef ST_NBLOCKSIZE
232 # define ST_NBLOCKSIZE S_BLKSIZE
234 # define ST_NBLOCKSIZE 512
238 /* Redirection and wildcarding when done by the utility itself.
239 Generally a noop, but used in particular for native VMS. */
240 #ifndef initialize_main
241 # define initialize_main(ac, av)
244 #include "stat-macros.h"
246 #include "timespec.h"
248 #include <inttypes.h>
252 #if ! (defined isblank || HAVE_DECL_ISBLANK)
253 # define isblank(c) ((c) == ' ' || (c) == '\t')
256 /* ISDIGIT differs from isdigit, as follows:
257 - Its arg may be any int or unsigned int; it need not be an unsigned char
259 - It's typically faster.
260 POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
261 isdigit unless it's important to use the locale's definition
262 of `digit' even when the host does not conform to POSIX. */
263 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9)
265 /* Convert a possibly-signed character to an unsigned character. This is
266 a bit safer than casting to unsigned char, since it catches some type
267 errors that the cast doesn't. */
268 static inline unsigned char to_uchar (char ch
) { return ch
; }
272 /* Take care of NLS matters. */
277 # define textdomain(Domainname) /* empty */
278 # undef bindtextdomain
279 # define bindtextdomain(Domainname, Dirname) /* empty */
282 #define _(msgid) gettext (msgid)
283 #define N_(msgid) msgid
285 /* Return a value that pluralizes the same way that N does, in all
286 languages we know of. */
287 static inline unsigned long int
288 select_plural (uintmax_t n
)
290 /* Reduce by a power of ten, but keep it away from zero. The
291 gettext manual says 1000000 should be safe. */
292 enum { PLURAL_REDUCER
= 1000000 };
293 return (n
<= ULONG_MAX
? n
: n
% PLURAL_REDUCER
+ PLURAL_REDUCER
);
296 #define STREQ(a, b) (strcmp ((a), (b)) == 0)
302 #if !HAVE_DECL_MALLOC
306 #if !HAVE_DECL_MEMCHR
310 #if !HAVE_DECL_REALLOC
314 #if !HAVE_DECL_GETENV
322 #if !HAVE_DECL_GETLOGIN
326 #if !HAVE_DECL_TTYNAME
330 #if !HAVE_DECL_GETEUID
334 #if !HAVE_DECL_GETPWUID
335 struct passwd
*getpwuid ();
338 #if !HAVE_DECL_GETGRGID
339 struct group
*getgrgid ();
342 #if !HAVE_DECL_GETUID
349 /* This is simply a shorthand for the common case in which
350 the third argument to x2nrealloc would be `sizeof *(P)'.
351 Ensure that sizeof *(P) is *not* 1. In that case, it'd be
352 better to use X2REALLOC, although not strictly necessary. */
353 #define X2NREALLOC(P, PN) ((void) verify_true (sizeof *(P) != 1), \
354 x2nrealloc (P, PN, sizeof *(P)))
356 /* Using x2realloc (when appropriate) usually makes your code more
357 readable than using x2nrealloc, but it also makes it so your
358 code will malfunction if sizeof *(P) ever becomes 2 or greater.
359 So use this macro instead of using x2realloc directly. */
360 #define X2REALLOC(P, PN) ((void) verify_true (sizeof *(P) == 1), \
363 #include "unlocked-io.h"
364 #include "same-inode.h"
369 dot_or_dotdot (char const *file_name
)
371 if (file_name
[0] == '.')
373 char sep
= file_name
[(file_name
[1] == '.') + 1];
374 return (! sep
|| ISSLASH (sep
));
380 /* A wrapper for readdir so that callers don't see entries for `.' or `..'. */
381 static inline struct dirent
const *
382 readdir_ignoring_dot_and_dotdot (DIR *dirp
)
386 struct dirent
const *dp
= readdir (dirp
);
387 if (dp
== NULL
|| ! dot_or_dotdot (dp
->d_name
))
393 # define SETVBUF(Stream, Buffer, Type, Size) \
394 setvbuf (Stream, Type, Buffer, Size)
396 # define SETVBUF(Stream, Buffer, Type, Size) \
397 setvbuf (Stream, Buffer, Type, Size)
400 /* Factor out some of the common --help and --version processing code. */
402 /* These enum values cannot possibly conflict with the option values
403 ordinarily used by commands, including CHAR_MAX + 1, etc. Avoid
404 CHAR_MIN - 1, as it may equal -1, the getopt end-of-options value. */
407 GETOPT_HELP_CHAR
= (CHAR_MIN
- 2),
408 GETOPT_VERSION_CHAR
= (CHAR_MIN
- 3)
411 #define GETOPT_HELP_OPTION_DECL \
412 "help", no_argument, NULL, GETOPT_HELP_CHAR
413 #define GETOPT_VERSION_OPTION_DECL \
414 "version", no_argument, NULL, GETOPT_VERSION_CHAR
416 #define case_GETOPT_HELP_CHAR \
417 case GETOPT_HELP_CHAR: \
418 usage (EXIT_SUCCESS); \
421 /* Program_name must be a literal string.
422 Usually it is just PROGRAM_NAME. */
423 #define USAGE_BUILTIN_WARNING \
425 "NOTE: your shell may have its own version of %s, which usually supersedes\n" \
426 "the version described here. Please refer to your shell's documentation\n" \
427 "for details about the options it supports.\n")
429 #define HELP_OPTION_DESCRIPTION \
430 _(" --help display this help and exit\n")
431 #define VERSION_OPTION_DESCRIPTION \
432 _(" --version output version information and exit\n")
434 #include "closeout.h"
435 #include "version-etc.h"
437 #define case_GETOPT_VERSION_CHAR(Program_name, Authors) \
438 case GETOPT_VERSION_CHAR: \
439 version_etc (stdout, Program_name, GNU_PACKAGE, VERSION, Authors, \
441 exit (EXIT_SUCCESS); \
445 # define MAX(a, b) ((a) > (b) ? (a) : (b))
449 # define MIN(a,b) (((a) < (b)) ? (a) : (b))
452 #include "intprops.h"
455 # define SSIZE_MAX TYPE_MAXIMUM (ssize_t)
459 # define OFF_T_MIN TYPE_MINIMUM (off_t)
463 # define OFF_T_MAX TYPE_MAXIMUM (off_t)
467 # define UID_T_MAX TYPE_MAXIMUM (uid_t)
471 # define GID_T_MAX TYPE_MAXIMUM (gid_t)
475 # define PID_T_MAX TYPE_MAXIMUM (pid_t)
478 /* Use this to suppress gcc's `...may be used before initialized' warnings. */
480 # define IF_LINT(Code) Code
482 # define IF_LINT(Code) /* empty */
485 #ifndef __attribute__
486 # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) || __STRICT_ANSI__
487 # define __attribute__(x) /* empty */
491 #ifndef ATTRIBUTE_NORETURN
492 # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
495 #ifndef ATTRIBUTE_UNUSED
496 # define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
500 # define ASSIGN_STRDUPA(DEST, S) \
501 do { DEST = strdupa (S); } while (0)
503 # define ASSIGN_STRDUPA(DEST, S) \
506 const char *s_ = (S); \
507 size_t len_ = strlen (s_) + 1; \
508 char *tmp_dest_ = alloca (len_); \
509 DEST = memcpy (tmp_dest_, (s_), len_); \
515 # define EOVERFLOW EINVAL
518 #if ! HAVE_FSEEKO && ! defined fseeko
519 # define fseeko(s, o, w) ((o) == (long int) (o) \
521 : (errno = EOVERFLOW, -1))
525 # define sync() /* empty */
528 /* Compute the greatest common divisor of U and V using Euclid's
529 algorithm. U and V must be nonzero. */
532 gcd (size_t u
, size_t v
)
545 /* Compute the least common multiple of U and V. U and V must be
546 nonzero. There is no overflow checking, so callers should not
547 specify outlandish sizes. */
550 lcm (size_t u
, size_t v
)
552 return u
* (v
/ gcd (u
, v
));
555 /* Return PTR, aligned upward to the next multiple of ALIGNMENT.
556 ALIGNMENT must be nonzero. The caller must arrange for ((char *)
557 PTR) through ((char *) PTR + ALIGNMENT - 1) to be addressable
561 ptr_align (void const *ptr
, size_t alignment
)
563 char const *p0
= ptr
;
564 char const *p1
= p0
+ alignment
- 1;
565 return (void *) (p1
- (size_t) p1
% alignment
);
568 /* If 10*Accum + Digit_val is larger than the maximum value for Type,
569 then don't update Accum and return false to indicate it would
570 overflow. Otherwise, set Accum to that new value and return true.
571 Verify at compile-time that Type is Accum's type, and that Type is
572 unsigned. Accum must be an object, so that we can take its
573 address. Accum and Digit_val may be evaluated multiple times.
575 The "Added check" below is not strictly required, but it causes GCC
576 to return a nonzero exit status instead of merely a warning
577 diagnostic, and that is more useful. */
579 #define DECIMAL_DIGIT_ACCUMULATE(Accum, Digit_val, Type) \
581 (void) (&(Accum) == (Type *) NULL), /* The type matches. */ \
582 (void) verify_true (! TYPE_SIGNED (Type)), /* The type is unsigned. */ \
583 (void) verify_true (sizeof (Accum) == sizeof (Type)), /* Added check. */ \
584 (((Type) -1 / 10 < (Accum) \
585 || (Type) ((Accum) * 10 + (Digit_val)) < (Accum)) \
586 ? false : (((Accum) = (Accum) * 10 + (Digit_val)), true)) \