blob: b2b1913a9e08d535c919a608cc6f6593694d6acb [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Mike Frysinger9b5f71e2005-04-23 06:26:38 +00002/*
3 * stat -- display file or file system status
4 *
5 * Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation.
6 * Copyright (C) 2005 by Erik Andersen <andersen@codepoet.org>
7 * Copyright (C) 2005 by Mike Frysinger <vapier@gentoo.org>
Denis Vlasenko49622d72007-03-10 16:58:49 +00008 * Copyright (C) 2006 by Yoshinori Sato <ysato@users.sourceforge.jp>
Mike Frysinger9b5f71e2005-04-23 06:26:38 +00009 *
10 * Written by Michael Meskes
11 * Taken from coreutils and turned into a busybox applet by Mike Frysinger
12 *
Bernhard Reutner-Fischere11a01c2006-04-05 17:19:37 +000013 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000014 */
15
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000016#include "libbb.h"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000017
18/* vars to control behavior */
Denis Vlasenko91e52032007-10-05 20:31:23 +000019#define OPT_FILESYS (1 << 0)
20#define OPT_TERSE (1 << 1)
21#define OPT_DEREFERENCE (1 << 2)
22#define OPT_SELINUX (1 << 3)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000023
Denis Vlasenko85c24712008-03-17 09:04:04 +000024#if ENABLE_FEATURE_STAT_FORMAT
25typedef bool (*statfunc_ptr)(const char *, const char *);
26#else
27typedef bool (*statfunc_ptr)(const char *);
28#endif
29
Denis Vlasenko91e52032007-10-05 20:31:23 +000030static const char *file_type(const struct stat *st)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000031{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000032 /* See POSIX 1003.1-2001 XCU Table 4-8 lines 17093-17107
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000033 * for some of these formats.
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000034 * To keep diagnostics grammatical in English, the
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000035 * returned string must start with a consonant.
36 */
37 if (S_ISREG(st->st_mode)) return st->st_size == 0 ? "regular empty file" : "regular file";
38 if (S_ISDIR(st->st_mode)) return "directory";
39 if (S_ISBLK(st->st_mode)) return "block special file";
40 if (S_ISCHR(st->st_mode)) return "character special file";
41 if (S_ISFIFO(st->st_mode)) return "fifo";
42 if (S_ISLNK(st->st_mode)) return "symbolic link";
43 if (S_ISSOCK(st->st_mode)) return "socket";
44 if (S_TYPEISMQ(st)) return "message queue";
45 if (S_TYPEISSEM(st)) return "semaphore";
46 if (S_TYPEISSHM(st)) return "shared memory object";
47#ifdef S_TYPEISTMO
48 if (S_TYPEISTMO(st)) return "typed memory object";
49#endif
50 return "weird file";
51}
52
Denis Vlasenko91e52032007-10-05 20:31:23 +000053static const char *human_time(time_t t)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000054{
Denis Vlasenko5d148e22006-11-21 00:12:09 +000055 /* Old
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000056 static char *str;
57 str = ctime(&t);
58 str[strlen(str)-1] = '\0';
59 return str;
Denis Vlasenko5d148e22006-11-21 00:12:09 +000060 */
61 /* coreutils 6.3 compat: */
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +000062
Denis Vlasenko91e52032007-10-05 20:31:23 +000063 /*static char buf[sizeof("YYYY-MM-DD HH:MM:SS.000000000")] ALIGN1;*/
64#define buf bb_common_bufsiz1
65
Denis Vlasenko5d148e22006-11-21 00:12:09 +000066 strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S.000000000", localtime(&t));
67 return buf;
Denis Vlasenko91e52032007-10-05 20:31:23 +000068#undef buf
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000069}
70
71/* Return the type of the specified file system.
72 * Some systems have statfvs.f_basetype[FSTYPSZ]. (AIX, HP-UX, and Solaris)
73 * Others have statfs.f_fstypename[MFSNAMELEN]. (NetBSD 1.5.2)
74 * Still others have neither and have to get by with f_type (Linux).
75 */
Denis Vlasenko91e52032007-10-05 20:31:23 +000076static const char *human_fstype(uint32_t f_type)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000077{
Denis Vlasenko240a1cf2007-04-08 16:07:02 +000078 static const struct types {
Denis Vlasenko91e52032007-10-05 20:31:23 +000079 uint32_t type;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000080 const char *const fs;
Mike Frysinger408ae212005-04-24 04:11:44 +000081 } humantypes[] = {
82 { 0xADFF, "affs" },
83 { 0x1Cd1, "devpts" },
84 { 0x137D, "ext" },
85 { 0xEF51, "ext2" },
86 { 0xEF53, "ext2/ext3" },
87 { 0x3153464a, "jfs" },
88 { 0x58465342, "xfs" },
89 { 0xF995E849, "hpfs" },
90 { 0x9660, "isofs" },
91 { 0x4000, "isofs" },
92 { 0x4004, "isofs" },
93 { 0x137F, "minix" },
94 { 0x138F, "minix (30 char.)" },
95 { 0x2468, "minix v2" },
96 { 0x2478, "minix v2 (30 char.)" },
97 { 0x4d44, "msdos" },
98 { 0x4006, "fat" },
99 { 0x564c, "novell" },
100 { 0x6969, "nfs" },
101 { 0x9fa0, "proc" },
102 { 0x517B, "smb" },
103 { 0x012FF7B4, "xenix" },
104 { 0x012FF7B5, "sysv4" },
105 { 0x012FF7B6, "sysv2" },
106 { 0x012FF7B7, "coh" },
107 { 0x00011954, "ufs" },
108 { 0x012FD16D, "xia" },
109 { 0x5346544e, "ntfs" },
110 { 0x1021994, "tmpfs" },
111 { 0x52654973, "reiserfs" },
112 { 0x28cd3d45, "cramfs" },
113 { 0x7275, "romfs" },
114 { 0x858458f6, "romfs" },
115 { 0x73717368, "squashfs" },
116 { 0x62656572, "sysfs" },
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000117 { 0, "UNKNOWN" }
Mike Frysinger408ae212005-04-24 04:11:44 +0000118 };
Denis Vlasenko91e52032007-10-05 20:31:23 +0000119
120 int i;
121
Denis Vlasenko240a1cf2007-04-08 16:07:02 +0000122 for (i = 0; humantypes[i].type; ++i)
Mike Frysinger408ae212005-04-24 04:11:44 +0000123 if (humantypes[i].type == f_type)
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000124 break;
Mike Frysinger408ae212005-04-24 04:11:44 +0000125 return humantypes[i].fs;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000126}
127
Denis Vlasenko55761362007-10-16 22:53:05 +0000128#if ENABLE_FEATURE_STAT_FORMAT
Denis Vlasenko91e52032007-10-05 20:31:23 +0000129static void strcatc(char *str, char c)
130{
131 int len = strlen(str);
132 str[len++] = c;
133 str[len] = '\0';
134}
135
136static void printfs(char *pformat, const char *msg)
137{
138 strcatc(pformat, 's');
139 printf(pformat, msg);
140}
141
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000142/* print statfs info */
Denis Vlasenko91e52032007-10-05 20:31:23 +0000143static void print_statfs(char *pformat, const char m,
144 const char *const filename, const void *data
145 USE_SELINUX(, security_context_t scontext))
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000146{
Denis Vlasenko91e52032007-10-05 20:31:23 +0000147 const struct statfs *statfsbuf = data;
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000148 if (m == 'n') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000149 printfs(pformat, filename);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000150 } else if (m == 'i') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000151 strcat(pformat, "Lx");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000152 printf(pformat, statfsbuf->f_fsid);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000153 } else if (m == 'l') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000154 strcat(pformat, "lu");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000155 printf(pformat, statfsbuf->f_namelen);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000156 } else if (m == 't') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000157 strcat(pformat, "lx");
Denis Vlasenko87468852007-04-13 23:22:00 +0000158 printf(pformat, (unsigned long) (statfsbuf->f_type)); /* no equiv */
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000159 } else if (m == 'T') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000160 printfs(pformat, human_fstype(statfsbuf->f_type));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000161 } else if (m == 'b') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000162 strcat(pformat, "jd");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000163 printf(pformat, (intmax_t) (statfsbuf->f_blocks));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000164 } else if (m == 'f') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000165 strcat(pformat, "jd");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000166 printf(pformat, (intmax_t) (statfsbuf->f_bfree));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000167 } else if (m == 'a') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000168 strcat(pformat, "jd");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000169 printf(pformat, (intmax_t) (statfsbuf->f_bavail));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000170 } else if (m == 's' || m == 'S') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000171 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000172 printf(pformat, (unsigned long) (statfsbuf->f_bsize));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000173 } else if (m == 'c') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000174 strcat(pformat, "jd");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000175 printf(pformat, (intmax_t) (statfsbuf->f_files));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000176 } else if (m == 'd') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000177 strcat(pformat, "jd");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000178 printf(pformat, (intmax_t) (statfsbuf->f_ffree));
Denis Vlasenko49622d72007-03-10 16:58:49 +0000179#if ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000180 } else if (m == 'C' && (option_mask32 & OPT_SELINUX)) {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000181 printfs(pformat, scontext);
Denis Vlasenko49622d72007-03-10 16:58:49 +0000182#endif
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000183 } else {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000184 strcatc(pformat, 'c');
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000185 printf(pformat, m);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000186 }
187}
188
189/* print stat info */
Denis Vlasenko91e52032007-10-05 20:31:23 +0000190static void print_stat(char *pformat, const char m,
191 const char *const filename, const void *data
192 USE_SELINUX(, security_context_t scontext))
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000193{
194#define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
195 struct stat *statbuf = (struct stat *) data;
196 struct passwd *pw_ent;
197 struct group *gw_ent;
198
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000199 if (m == 'n') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000200 printfs(pformat, filename);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000201 } else if (m == 'N') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000202 strcatc(pformat, 's');
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000203 if (S_ISLNK(statbuf->st_mode)) {
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000204 char *linkname = xmalloc_readlink_or_warn(filename);
Denis Vlasenko91e52032007-10-05 20:31:23 +0000205 if (linkname == NULL)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000206 return;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000207 /*printf("\"%s\" -> \"%s\"", filename, linkname); */
208 printf(pformat, filename);
209 printf(" -> ");
210 printf(pformat, linkname);
Denis Vlasenko91e52032007-10-05 20:31:23 +0000211 free(linkname);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000212 } else {
213 printf(pformat, filename);
214 }
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000215 } else if (m == 'd') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000216 strcat(pformat, "ju");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000217 printf(pformat, (uintmax_t) statbuf->st_dev);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000218 } else if (m == 'D') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000219 strcat(pformat, "jx");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000220 printf(pformat, (uintmax_t) statbuf->st_dev);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000221 } else if (m == 'i') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000222 strcat(pformat, "ju");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000223 printf(pformat, (uintmax_t) statbuf->st_ino);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000224 } else if (m == 'a') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000225 strcat(pformat, "lo");
Denis Vlasenko87468852007-04-13 23:22:00 +0000226 printf(pformat, (unsigned long) (statbuf->st_mode & (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000227 } else if (m == 'A') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000228 printfs(pformat, bb_mode_string(statbuf->st_mode));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000229 } else if (m == 'f') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000230 strcat(pformat, "lx");
Denis Vlasenko87468852007-04-13 23:22:00 +0000231 printf(pformat, (unsigned long) statbuf->st_mode);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000232 } else if (m == 'F') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000233 printfs(pformat, file_type(statbuf));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000234 } else if (m == 'h') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000235 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000236 printf(pformat, (unsigned long) statbuf->st_nlink);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000237 } else if (m == 'u') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000238 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000239 printf(pformat, (unsigned long) statbuf->st_uid);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000240 } else if (m == 'U') {
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000241 setpwent();
242 pw_ent = getpwuid(statbuf->st_uid);
Denis Vlasenko91e52032007-10-05 20:31:23 +0000243 printfs(pformat, (pw_ent != 0L) ? pw_ent->pw_name : "UNKNOWN");
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000244 } else if (m == 'g') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000245 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000246 printf(pformat, (unsigned long) statbuf->st_gid);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000247 } else if (m == 'G') {
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000248 setgrent();
249 gw_ent = getgrgid(statbuf->st_gid);
Denis Vlasenko91e52032007-10-05 20:31:23 +0000250 printfs(pformat, (gw_ent != 0L) ? gw_ent->gr_name : "UNKNOWN");
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000251 } else if (m == 't') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000252 strcat(pformat, "lx");
Denis Vlasenko87468852007-04-13 23:22:00 +0000253 printf(pformat, (unsigned long) major(statbuf->st_rdev));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000254 } else if (m == 'T') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000255 strcat(pformat, "lx");
Denis Vlasenko87468852007-04-13 23:22:00 +0000256 printf(pformat, (unsigned long) minor(statbuf->st_rdev));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000257 } else if (m == 's') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000258 strcat(pformat, "ju");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000259 printf(pformat, (uintmax_t) (statbuf->st_size));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000260 } else if (m == 'B') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000261 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000262 printf(pformat, (unsigned long) 512); //ST_NBLOCKSIZE
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000263 } else if (m == 'b') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000264 strcat(pformat, "ju");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000265 printf(pformat, (uintmax_t) statbuf->st_blocks);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000266 } else if (m == 'o') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000267 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000268 printf(pformat, (unsigned long) statbuf->st_blksize);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000269 } else if (m == 'x') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000270 printfs(pformat, human_time(statbuf->st_atime));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000271 } else if (m == 'X') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000272 strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000273 printf(pformat, (unsigned long) statbuf->st_atime);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000274 } else if (m == 'y') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000275 printfs(pformat, human_time(statbuf->st_mtime));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000276 } else if (m == 'Y') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000277 strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000278 printf(pformat, (unsigned long) statbuf->st_mtime);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000279 } else if (m == 'z') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000280 printfs(pformat, human_time(statbuf->st_ctime));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000281 } else if (m == 'Z') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000282 strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000283 printf(pformat, (unsigned long) statbuf->st_ctime);
Denis Vlasenko49622d72007-03-10 16:58:49 +0000284#if ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000285 } else if (m == 'C' && (option_mask32 & OPT_SELINUX)) {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000286 printfs(pformat, scontext);
Denis Vlasenko49622d72007-03-10 16:58:49 +0000287#endif
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000288 } else {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000289 strcatc(pformat, 'c');
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000290 printf(pformat, m);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000291 }
292}
293
Denis Vlasenko91e52032007-10-05 20:31:23 +0000294static void print_it(const char *masterformat, const char *filename,
295 void (*print_func) (char*, char, const char*, const void* USE_SELINUX(, security_context_t scontext)),
296 const void *data
297 USE_SELINUX(, security_context_t scontext) )
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000298{
Denis Vlasenko91e52032007-10-05 20:31:23 +0000299 /* Create a working copy of the format string */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000300 char *format = xstrdup(masterformat);
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000301 /* Add 2 to accomodate our conversion of the stat '%s' format string
302 * to the printf '%llu' one. */
Denis Vlasenko91e52032007-10-05 20:31:23 +0000303 char *dest = xmalloc(strlen(format) + 2 + 1);
304 char *b;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000305
306 b = format;
307 while (b) {
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000308 size_t len;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000309 char *p = strchr(b, '%');
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000310 if (!p) {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000311 /* coreutils 6.3 always prints <cr> at the end */
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000312 /*fputs(b, stdout);*/
313 puts(b);
314 break;
315 }
316 *p++ = '\0';
317 fputs(b, stdout);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000318
Denis Vlasenko91e52032007-10-05 20:31:23 +0000319 /* dest = "%<modifiers>" */
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000320 len = strspn(p, "#-+.I 0123456789");
321 dest[0] = '%';
322 memcpy(dest + 1, p, len);
Denis Vlasenko91e52032007-10-05 20:31:23 +0000323 dest[1 + len] = '\0';
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000324 p += len;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000325
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000326 b = p + 1;
327 switch (*p) {
328 case '\0':
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000329 b = NULL;
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000330 /* fall through */
331 case '%':
Denis Vlasenko4daad902007-09-27 10:20:47 +0000332 bb_putchar('%');
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000333 break;
334 default:
Denis Vlasenko91e52032007-10-05 20:31:23 +0000335 /* Completes "%<modifiers>" with specifier and printfs */
336 print_func(dest, *p, filename, data USE_SELINUX(,scontext));
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000337 break;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000338 }
339 }
340
341 free(format);
342 free(dest);
343}
344#endif
345
346/* Stat the file system and print what we find. */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000347#if !ENABLE_FEATURE_STAT_FORMAT
348#define do_statfs(filename, format) do_statfs(filename)
349#endif
Denis Vlasenko91e52032007-10-05 20:31:23 +0000350static bool do_statfs(const char *filename, const char *format)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000351{
Denis Vlasenko85c24712008-03-17 09:04:04 +0000352#if !ENABLE_FEATURE_STAT_FORMAT
353 const char *format;
354#endif
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000355 struct statfs statfsbuf;
Denis Vlasenko49622d72007-03-10 16:58:49 +0000356#if ENABLE_SELINUX
357 security_context_t scontext = NULL;
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000358
359 if (option_mask32 & OPT_SELINUX) {
Denis Vlasenko501bfe22007-08-09 08:10:13 +0000360 if ((option_mask32 & OPT_DEREFERENCE
361 ? lgetfilecon(filename, &scontext)
362 : getfilecon(filename, &scontext)
363 ) < 0
364 ) {
Denis Vlasenko49622d72007-03-10 16:58:49 +0000365 bb_perror_msg(filename);
366 return 0;
367 }
368 }
369#endif
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000370 if (statfs(filename, &statfsbuf) != 0) {
371 bb_perror_msg("cannot read file system information for '%s'", filename);
372 return 0;
373 }
374
Denis Vlasenko240a1cf2007-04-08 16:07:02 +0000375#if ENABLE_FEATURE_STAT_FORMAT
Denis Vlasenko91e52032007-10-05 20:31:23 +0000376 if (format == NULL) {
Denis Vlasenko240a1cf2007-04-08 16:07:02 +0000377#if !ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000378 format = (option_mask32 & OPT_TERSE
Mike Frysinger726b2cb2005-07-26 22:39:56 +0000379 ? "%n %i %l %t %s %b %f %a %c %d\n"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000380 : " File: \"%n\"\n"
381 " ID: %-8i Namelen: %-7l Type: %T\n"
Mike Frysinger726b2cb2005-07-26 22:39:56 +0000382 "Block size: %-10s\n"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000383 "Blocks: Total: %-10b Free: %-10f Available: %a\n"
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000384 "Inodes: Total: %-10c Free: %d");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000385#else
Denis Vlasenko91e52032007-10-05 20:31:23 +0000386 format = (option_mask32 & OPT_TERSE
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000387 ? (option_mask32 & OPT_SELINUX ? "%n %i %l %t %s %b %f %a %c %d %C\n":
Denis Vlasenko49622d72007-03-10 16:58:49 +0000388 "%n %i %l %t %s %b %f %a %c %d\n")
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000389 : (option_mask32 & OPT_SELINUX ?
Denis Vlasenko49622d72007-03-10 16:58:49 +0000390 " File: \"%n\"\n"
391 " ID: %-8i Namelen: %-7l Type: %T\n"
392 "Block size: %-10s\n"
393 "Blocks: Total: %-10b Free: %-10f Available: %a\n"
394 "Inodes: Total: %-10c Free: %d"
395 " S_context: %C\n":
396 " File: \"%n\"\n"
397 " ID: %-8i Namelen: %-7l Type: %T\n"
398 "Block size: %-10s\n"
399 "Blocks: Total: %-10b Free: %-10f Available: %a\n"
400 "Inodes: Total: %-10c Free: %d\n")
401 );
Denis Vlasenko49622d72007-03-10 16:58:49 +0000402#endif /* SELINUX */
Denis Vlasenko91e52032007-10-05 20:31:23 +0000403 }
404 print_it(format, filename, print_statfs, &statfsbuf USE_SELINUX(, scontext));
Denis Vlasenko49622d72007-03-10 16:58:49 +0000405#else /* FEATURE_STAT_FORMAT */
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000406 format = (option_mask32 & OPT_TERSE
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000407 ? "%s %llx %lu "
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000408 : " File: \"%s\"\n"
409 " ID: %-8Lx Namelen: %-7lu ");
410 printf(format,
411 filename,
412 statfsbuf.f_fsid,
413 statfsbuf.f_namelen);
414
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000415 if (option_mask32 & OPT_TERSE)
Denis Vlasenko87468852007-04-13 23:22:00 +0000416 printf("%lx ", (unsigned long) (statfsbuf.f_type));
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000417 else
418 printf("Type: %s\n", human_fstype(statfsbuf.f_type));
419
Denis Vlasenko49622d72007-03-10 16:58:49 +0000420#if !ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000421 format = (option_mask32 & OPT_TERSE
Mike Frysinger726b2cb2005-07-26 22:39:56 +0000422 ? "%lu %ld %ld %ld %ld %ld\n"
423 : "Block size: %-10lu\n"
Bernhard Reutner-Fischerfc5f3182006-04-12 08:03:11 +0000424 "Blocks: Total: %-10jd Free: %-10jd Available: %jd\n"
425 "Inodes: Total: %-10jd Free: %jd\n");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000426 printf(format,
Denis Vlasenko87468852007-04-13 23:22:00 +0000427 (unsigned long) (statfsbuf.f_bsize),
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000428 (intmax_t) (statfsbuf.f_blocks),
429 (intmax_t) (statfsbuf.f_bfree),
430 (intmax_t) (statfsbuf.f_bavail),
431 (intmax_t) (statfsbuf.f_files),
432 (intmax_t) (statfsbuf.f_ffree));
Denis Vlasenko49622d72007-03-10 16:58:49 +0000433#else
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000434 format = (option_mask32 & OPT_TERSE
435 ? (option_mask32 & OPT_SELINUX ? "%lu %ld %ld %ld %ld %ld %C\n":
Denis Vlasenko49622d72007-03-10 16:58:49 +0000436 "%lu %ld %ld %ld %ld %ld\n")
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000437 : (option_mask32 & OPT_SELINUX ?
Denis Vlasenko49622d72007-03-10 16:58:49 +0000438 "Block size: %-10lu\n"
439 "Blocks: Total: %-10jd Free: %-10jd Available: %jd\n"
440 "Inodes: Total: %-10jd Free: %jd"
441 "S_context: %C\n":
442 "Block size: %-10lu\n"
443 "Blocks: Total: %-10jd Free: %-10jd Available: %jd\n"
444 "Inodes: Total: %-10jd Free: %jd\n"));
445 printf(format,
Denis Vlasenko87468852007-04-13 23:22:00 +0000446 (unsigned long) (statfsbuf.f_bsize),
Denis Vlasenko49622d72007-03-10 16:58:49 +0000447 (intmax_t) (statfsbuf.f_blocks),
448 (intmax_t) (statfsbuf.f_bfree),
449 (intmax_t) (statfsbuf.f_bavail),
450 (intmax_t) (statfsbuf.f_files),
451 (intmax_t) (statfsbuf.f_ffree),
452 scontext);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000453
Denis Vlasenko49622d72007-03-10 16:58:49 +0000454 if (scontext)
455 freecon(scontext);
456#endif
457#endif /* FEATURE_STAT_FORMAT */
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000458 return 1;
459}
460
461/* stat the file and print what we find */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000462#if !ENABLE_FEATURE_STAT_FORMAT
463#define do_stat(filename, format) do_stat(filename)
464#endif
Denis Vlasenko91e52032007-10-05 20:31:23 +0000465static bool do_stat(const char *filename, const char *format)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000466{
467 struct stat statbuf;
Denis Vlasenko49622d72007-03-10 16:58:49 +0000468#if ENABLE_SELINUX
469 security_context_t scontext = NULL;
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000470
471 if (option_mask32 & OPT_SELINUX) {
Denis Vlasenko501bfe22007-08-09 08:10:13 +0000472 if ((option_mask32 & OPT_DEREFERENCE
473 ? lgetfilecon(filename, &scontext)
474 : getfilecon(filename, &scontext)
475 ) < 0
476 ) {
477 bb_perror_msg(filename);
Denis Vlasenko49622d72007-03-10 16:58:49 +0000478 return 0;
479 }
480 }
481#endif
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000482 if ((option_mask32 & OPT_DEREFERENCE ? stat : lstat) (filename, &statbuf) != 0) {
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000483 bb_perror_msg("cannot stat '%s'", filename);
484 return 0;
485 }
486
Denis Vlasenko240a1cf2007-04-08 16:07:02 +0000487#if ENABLE_FEATURE_STAT_FORMAT
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000488 if (format == NULL) {
Denis Vlasenko240a1cf2007-04-08 16:07:02 +0000489#if !ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000490 if (option_mask32 & OPT_TERSE) {
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000491 format = "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o";
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000492 } else {
493 if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode)) {
494 format =
495 " File: \"%N\"\n"
496 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
497 "Device: %Dh/%dd\tInode: %-10i Links: %-5h"
498 " Device type: %t,%T\n"
499 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
500 "Access: %x\n" "Modify: %y\n" "Change: %z\n";
501 } else {
502 format =
503 " File: \"%N\"\n"
504 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
505 "Device: %Dh/%dd\tInode: %-10i Links: %h\n"
506 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
507 "Access: %x\n" "Modify: %y\n" "Change: %z\n";
508 }
509 }
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000510#else
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000511 if (option_mask32 & OPT_TERSE) {
512 format = (option_mask32 & OPT_SELINUX ?
Denis Vlasenko49622d72007-03-10 16:58:49 +0000513 "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o %C\n":
514 "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o\n");
515 } else {
516 if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode)) {
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000517 format = (option_mask32 & OPT_SELINUX ?
Denis Vlasenko49622d72007-03-10 16:58:49 +0000518 " File: \"%N\"\n"
519 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
520 "Device: %Dh/%dd\tInode: %-10i Links: %-5h"
521 " Device type: %t,%T\n"
522 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
523 " S_Context: %C\n"
524 "Access: %x\n" "Modify: %y\n" "Change: %z\n":
525 " File: \"%N\"\n"
526 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
527 "Device: %Dh/%dd\tInode: %-10i Links: %-5h"
528 " Device type: %t,%T\n"
529 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
530 "Access: %x\n" "Modify: %y\n" "Change: %z\n");
531 } else {
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000532 format = (option_mask32 & OPT_SELINUX ?
Denis Vlasenko49622d72007-03-10 16:58:49 +0000533 " File: \"%N\"\n"
534 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
535 "Device: %Dh/%dd\tInode: %-10i Links: %h\n"
536 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
537 "S_Context: %C\n"
538 "Access: %x\n" "Modify: %y\n" "Change: %z\n":
539 " File: \"%N\"\n"
540 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
541 "Device: %Dh/%dd\tInode: %-10i Links: %h\n"
542 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
543 "Access: %x\n" "Modify: %y\n" "Change: %z\n");
544 }
545 }
546#endif
547 }
548 print_it(format, filename, print_stat, &statbuf USE_SELINUX(, scontext));
549#else /* FEATURE_STAT_FORMAT */
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000550 if (option_mask32 & OPT_TERSE) {
Denis Vlasenko49622d72007-03-10 16:58:49 +0000551 printf("%s %ju %ju %lx %lu %lu %jx %ju %lu %lx %lx %lu %lu %lu %lu"
552 SKIP_SELINUX("\n"),
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000553 filename,
554 (uintmax_t) (statbuf.st_size),
555 (uintmax_t) statbuf.st_blocks,
Denis Vlasenko87468852007-04-13 23:22:00 +0000556 (unsigned long) statbuf.st_mode,
557 (unsigned long) statbuf.st_uid,
558 (unsigned long) statbuf.st_gid,
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000559 (uintmax_t) statbuf.st_dev,
560 (uintmax_t) statbuf.st_ino,
Denis Vlasenko87468852007-04-13 23:22:00 +0000561 (unsigned long) statbuf.st_nlink,
562 (unsigned long) major(statbuf.st_rdev),
563 (unsigned long) minor(statbuf.st_rdev),
564 (unsigned long) statbuf.st_atime,
565 (unsigned long) statbuf.st_mtime,
566 (unsigned long) statbuf.st_ctime,
567 (unsigned long) statbuf.st_blksize
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000568 );
Denis Vlasenko49622d72007-03-10 16:58:49 +0000569#if ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000570 if (option_mask32 & OPT_SELINUX)
Denis Vlasenko49622d72007-03-10 16:58:49 +0000571 printf(" %lc\n", *scontext);
572 else
Denis Vlasenko4daad902007-09-27 10:20:47 +0000573 bb_putchar('\n');
Denis Vlasenko49622d72007-03-10 16:58:49 +0000574#endif
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000575 } else {
576 char *linkname = NULL;
577
578 struct passwd *pw_ent;
579 struct group *gw_ent;
580 setgrent();
581 gw_ent = getgrgid(statbuf.st_gid);
582 setpwent();
583 pw_ent = getpwuid(statbuf.st_uid);
584
585 if (S_ISLNK(statbuf.st_mode))
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000586 linkname = xmalloc_readlink_or_warn(filename);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000587 if (linkname)
588 printf(" File: \"%s\" -> \"%s\"\n", filename, linkname);
589 else
590 printf(" File: \"%s\"\n", filename);
591
Bernhard Reutner-Fischerfc5f3182006-04-12 08:03:11 +0000592 printf(" Size: %-10ju\tBlocks: %-10ju IO Block: %-6lu %s\n"
593 "Device: %jxh/%jud\tInode: %-10ju Links: %-5lu",
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000594 (uintmax_t) (statbuf.st_size),
595 (uintmax_t) statbuf.st_blocks,
Denis Vlasenko87468852007-04-13 23:22:00 +0000596 (unsigned long) statbuf.st_blksize,
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000597 file_type(&statbuf),
598 (uintmax_t) statbuf.st_dev,
599 (uintmax_t) statbuf.st_dev,
600 (uintmax_t) statbuf.st_ino,
Denis Vlasenko87468852007-04-13 23:22:00 +0000601 (unsigned long) statbuf.st_nlink);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000602 if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode))
603 printf(" Device type: %lx,%lx\n",
Denis Vlasenko87468852007-04-13 23:22:00 +0000604 (unsigned long) major(statbuf.st_rdev),
605 (unsigned long) minor(statbuf.st_rdev));
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000606 else
Denis Vlasenko4daad902007-09-27 10:20:47 +0000607 bb_putchar('\n');
Denis Vlasenko49622d72007-03-10 16:58:49 +0000608 printf("Access: (%04lo/%10.10s) Uid: (%5lu/%8s) Gid: (%5lu/%8s)\n",
Denis Vlasenko87468852007-04-13 23:22:00 +0000609 (unsigned long) (statbuf.st_mode & (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)),
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000610 bb_mode_string(statbuf.st_mode),
Denis Vlasenko87468852007-04-13 23:22:00 +0000611 (unsigned long) statbuf.st_uid,
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000612 (pw_ent != 0L) ? pw_ent->pw_name : "UNKNOWN",
Denis Vlasenko87468852007-04-13 23:22:00 +0000613 (unsigned long) statbuf.st_gid,
Denis Vlasenko49622d72007-03-10 16:58:49 +0000614 (gw_ent != 0L) ? gw_ent->gr_name : "UNKNOWN");
615#if ENABLE_SELINUX
616 printf(" S_Context: %lc\n", *scontext);
617#endif
618 printf("Access: %s\n" "Modify: %s\n" "Change: %s\n",
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000619 human_time(statbuf.st_atime),
620 human_time(statbuf.st_mtime),
621 human_time(statbuf.st_ctime));
622 }
Denis Vlasenko49622d72007-03-10 16:58:49 +0000623#endif /* FEATURE_STAT_FORMAT */
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000624 return 1;
625}
626
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000627int stat_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000628int stat_main(int argc, char **argv)
629{
Denis Vlasenko85c24712008-03-17 09:04:04 +0000630 USE_FEATURE_STAT_FORMAT(char *format = NULL;)
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000631 int i;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000632 int ok = 1;
Denis Vlasenko85c24712008-03-17 09:04:04 +0000633 statfunc_ptr statfunc = do_stat;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000634
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000635 getopt32(argv, "ftL"
Denis Vlasenko49622d72007-03-10 16:58:49 +0000636 USE_SELINUX("Z")
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000637 USE_FEATURE_STAT_FORMAT("c:", &format)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000638 );
639
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000640 if (option_mask32 & OPT_FILESYS) /* -f */
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000641 statfunc = do_statfs;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000642 if (argc == optind) /* files */
643 bb_show_usage();
644
Denis Vlasenko49622d72007-03-10 16:58:49 +0000645#if ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000646 if (option_mask32 & OPT_SELINUX) {
Denis Vlasenko49622d72007-03-10 16:58:49 +0000647 selinux_or_die();
648 }
649#endif /* ENABLE_SELINUX */
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000650 for (i = optind; i < argc; ++i)
Denis Vlasenko85c24712008-03-17 09:04:04 +0000651 ok &= statfunc(argv[i] USE_FEATURE_STAT_FORMAT(, format));
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000652
653 return (ok ? EXIT_SUCCESS : EXIT_FAILURE);
654}