blob: 777197292881dab3bd00e4a5fa017c9b67f65568 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020013 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000014 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000015#include "libbb.h"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000016
Denis Vlasenko91e52032007-10-05 20:31:23 +000017#define OPT_FILESYS (1 << 0)
18#define OPT_TERSE (1 << 1)
19#define OPT_DEREFERENCE (1 << 2)
20#define OPT_SELINUX (1 << 3)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000021
Denis Vlasenko85c24712008-03-17 09:04:04 +000022#if ENABLE_FEATURE_STAT_FORMAT
23typedef bool (*statfunc_ptr)(const char *, const char *);
24#else
25typedef bool (*statfunc_ptr)(const char *);
26#endif
27
Denis Vlasenko91e52032007-10-05 20:31:23 +000028static const char *file_type(const struct stat *st)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000029{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000030 /* See POSIX 1003.1-2001 XCU Table 4-8 lines 17093-17107
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000031 * for some of these formats.
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000032 * To keep diagnostics grammatical in English, the
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000033 * returned string must start with a consonant.
34 */
35 if (S_ISREG(st->st_mode)) return st->st_size == 0 ? "regular empty file" : "regular file";
36 if (S_ISDIR(st->st_mode)) return "directory";
37 if (S_ISBLK(st->st_mode)) return "block special file";
38 if (S_ISCHR(st->st_mode)) return "character special file";
39 if (S_ISFIFO(st->st_mode)) return "fifo";
40 if (S_ISLNK(st->st_mode)) return "symbolic link";
41 if (S_ISSOCK(st->st_mode)) return "socket";
42 if (S_TYPEISMQ(st)) return "message queue";
43 if (S_TYPEISSEM(st)) return "semaphore";
44 if (S_TYPEISSHM(st)) return "shared memory object";
45#ifdef S_TYPEISTMO
46 if (S_TYPEISTMO(st)) return "typed memory object";
47#endif
48 return "weird file";
49}
50
Denis Vlasenko91e52032007-10-05 20:31:23 +000051static const char *human_time(time_t t)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000052{
Denis Vlasenko5d148e22006-11-21 00:12:09 +000053 /* Old
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000054 static char *str;
55 str = ctime(&t);
56 str[strlen(str)-1] = '\0';
57 return str;
Denis Vlasenko5d148e22006-11-21 00:12:09 +000058 */
59 /* coreutils 6.3 compat: */
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +000060
Denis Vlasenko91e52032007-10-05 20:31:23 +000061 /*static char buf[sizeof("YYYY-MM-DD HH:MM:SS.000000000")] ALIGN1;*/
62#define buf bb_common_bufsiz1
63
Denis Vlasenko5d148e22006-11-21 00:12:09 +000064 strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S.000000000", localtime(&t));
65 return buf;
Denis Vlasenko91e52032007-10-05 20:31:23 +000066#undef buf
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000067}
68
69/* Return the type of the specified file system.
70 * Some systems have statfvs.f_basetype[FSTYPSZ]. (AIX, HP-UX, and Solaris)
71 * Others have statfs.f_fstypename[MFSNAMELEN]. (NetBSD 1.5.2)
72 * Still others have neither and have to get by with f_type (Linux).
73 */
Denis Vlasenko91e52032007-10-05 20:31:23 +000074static const char *human_fstype(uint32_t f_type)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000075{
Denis Vlasenko240a1cf2007-04-08 16:07:02 +000076 static const struct types {
Denis Vlasenko91e52032007-10-05 20:31:23 +000077 uint32_t type;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000078 const char *const fs;
Mike Frysinger408ae212005-04-24 04:11:44 +000079 } humantypes[] = {
80 { 0xADFF, "affs" },
81 { 0x1Cd1, "devpts" },
82 { 0x137D, "ext" },
83 { 0xEF51, "ext2" },
84 { 0xEF53, "ext2/ext3" },
85 { 0x3153464a, "jfs" },
86 { 0x58465342, "xfs" },
87 { 0xF995E849, "hpfs" },
88 { 0x9660, "isofs" },
89 { 0x4000, "isofs" },
90 { 0x4004, "isofs" },
91 { 0x137F, "minix" },
92 { 0x138F, "minix (30 char.)" },
93 { 0x2468, "minix v2" },
94 { 0x2478, "minix v2 (30 char.)" },
95 { 0x4d44, "msdos" },
96 { 0x4006, "fat" },
97 { 0x564c, "novell" },
98 { 0x6969, "nfs" },
99 { 0x9fa0, "proc" },
100 { 0x517B, "smb" },
101 { 0x012FF7B4, "xenix" },
102 { 0x012FF7B5, "sysv4" },
103 { 0x012FF7B6, "sysv2" },
104 { 0x012FF7B7, "coh" },
105 { 0x00011954, "ufs" },
106 { 0x012FD16D, "xia" },
107 { 0x5346544e, "ntfs" },
108 { 0x1021994, "tmpfs" },
109 { 0x52654973, "reiserfs" },
110 { 0x28cd3d45, "cramfs" },
111 { 0x7275, "romfs" },
112 { 0x858458f6, "romfs" },
113 { 0x73717368, "squashfs" },
114 { 0x62656572, "sysfs" },
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000115 { 0, "UNKNOWN" }
Mike Frysinger408ae212005-04-24 04:11:44 +0000116 };
Denis Vlasenko91e52032007-10-05 20:31:23 +0000117
118 int i;
119
Denis Vlasenko240a1cf2007-04-08 16:07:02 +0000120 for (i = 0; humantypes[i].type; ++i)
Mike Frysinger408ae212005-04-24 04:11:44 +0000121 if (humantypes[i].type == f_type)
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000122 break;
Mike Frysinger408ae212005-04-24 04:11:44 +0000123 return humantypes[i].fs;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000124}
125
Denis Vlasenko98f5cdf2008-11-11 22:25:34 +0000126/* "man statfs" says that statfsbuf->f_fsid is a mess */
127/* coreutils treats it as an array of ints, most significant first */
128static unsigned long long get_f_fsid(const struct statfs *statfsbuf)
129{
130 const unsigned *p = (const void*) &statfsbuf->f_fsid;
131 unsigned sz = sizeof(statfsbuf->f_fsid) / sizeof(unsigned);
132 unsigned long long r = 0;
133
134 do
135 r = (r << (sizeof(unsigned)*8)) | *p++;
136 while (--sz > 0);
137 return r;
138}
139
Denis Vlasenko86c285d2008-11-13 21:53:32 +0000140#if ENABLE_FEATURE_STAT_FORMAT
141static void strcatc(char *str, char c)
142{
143 int len = strlen(str);
144 str[len++] = c;
145 str[len] = '\0';
146}
147
148static void printfs(char *pformat, const char *msg)
149{
150 strcatc(pformat, 's');
151 printf(pformat, msg);
152}
153
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000154/* print statfs info */
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100155static void FAST_FUNC print_statfs(char *pformat, const char m,
Denis Vlasenko91e52032007-10-05 20:31:23 +0000156 const char *const filename, const void *data
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000157 IF_SELINUX(, security_context_t scontext))
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000158{
Denis Vlasenko91e52032007-10-05 20:31:23 +0000159 const struct statfs *statfsbuf = data;
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000160 if (m == 'n') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000161 printfs(pformat, filename);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000162 } else if (m == 'i') {
Denis Vlasenko98f5cdf2008-11-11 22:25:34 +0000163 strcat(pformat, "llx");
164 printf(pformat, get_f_fsid(statfsbuf));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000165 } else if (m == 'l') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000166 strcat(pformat, "lu");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100167 printf(pformat, (unsigned long) statfsbuf->f_namelen);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000168 } else if (m == 't') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000169 strcat(pformat, "lx");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100170 printf(pformat, (unsigned long) statfsbuf->f_type); /* no equiv */
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000171 } else if (m == 'T') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000172 printfs(pformat, human_fstype(statfsbuf->f_type));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000173 } else if (m == 'b') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100174 strcat(pformat, "llu");
175 printf(pformat, (unsigned long long) statfsbuf->f_blocks);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000176 } else if (m == 'f') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100177 strcat(pformat, "llu");
178 printf(pformat, (unsigned long long) statfsbuf->f_bfree);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000179 } else if (m == 'a') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100180 strcat(pformat, "llu");
181 printf(pformat, (unsigned long long) statfsbuf->f_bavail);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000182 } else if (m == 's' || m == 'S') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000183 strcat(pformat, "lu");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100184 printf(pformat, (unsigned long) statfsbuf->f_bsize);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000185 } else if (m == 'c') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100186 strcat(pformat, "llu");
187 printf(pformat, (unsigned long long) statfsbuf->f_files);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000188 } else if (m == 'd') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100189 strcat(pformat, "llu");
190 printf(pformat, (unsigned long long) statfsbuf->f_ffree);
191# if ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000192 } else if (m == 'C' && (option_mask32 & OPT_SELINUX)) {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000193 printfs(pformat, scontext);
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100194# endif
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000195 } else {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000196 strcatc(pformat, 'c');
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000197 printf(pformat, m);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000198 }
199}
200
201/* print stat info */
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100202static void FAST_FUNC print_stat(char *pformat, const char m,
Denis Vlasenko91e52032007-10-05 20:31:23 +0000203 const char *const filename, const void *data
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000204 IF_SELINUX(, security_context_t scontext))
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000205{
206#define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
207 struct stat *statbuf = (struct stat *) data;
208 struct passwd *pw_ent;
209 struct group *gw_ent;
210
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000211 if (m == 'n') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000212 printfs(pformat, filename);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000213 } else if (m == 'N') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000214 strcatc(pformat, 's');
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000215 if (S_ISLNK(statbuf->st_mode)) {
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000216 char *linkname = xmalloc_readlink_or_warn(filename);
Denis Vlasenko91e52032007-10-05 20:31:23 +0000217 if (linkname == NULL)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000218 return;
Sebd2d327d2010-06-12 21:57:50 +0200219 printf("'%s' -> '%s'", filename, linkname);
Denis Vlasenko91e52032007-10-05 20:31:23 +0000220 free(linkname);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000221 } else {
222 printf(pformat, filename);
223 }
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000224 } else if (m == 'd') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100225 strcat(pformat, "llu");
226 printf(pformat, (unsigned long long) statbuf->st_dev);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000227 } else if (m == 'D') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100228 strcat(pformat, "llx");
229 printf(pformat, (unsigned long long) statbuf->st_dev);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000230 } else if (m == 'i') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100231 strcat(pformat, "llu");
232 printf(pformat, (unsigned long long) statbuf->st_ino);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000233 } else if (m == 'a') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000234 strcat(pformat, "lo");
Denis Vlasenko87468852007-04-13 23:22:00 +0000235 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 +0000236 } else if (m == 'A') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000237 printfs(pformat, bb_mode_string(statbuf->st_mode));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000238 } else if (m == 'f') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000239 strcat(pformat, "lx");
Denis Vlasenko87468852007-04-13 23:22:00 +0000240 printf(pformat, (unsigned long) statbuf->st_mode);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000241 } else if (m == 'F') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000242 printfs(pformat, file_type(statbuf));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000243 } else if (m == 'h') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000244 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000245 printf(pformat, (unsigned long) statbuf->st_nlink);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000246 } else if (m == 'u') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000247 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000248 printf(pformat, (unsigned long) statbuf->st_uid);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000249 } else if (m == 'U') {
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000250 setpwent();
251 pw_ent = getpwuid(statbuf->st_uid);
Denis Vlasenkob75fe792008-06-27 22:31:07 +0000252 printfs(pformat, (pw_ent != NULL) ? pw_ent->pw_name : "UNKNOWN");
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000253 } else if (m == 'g') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000254 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000255 printf(pformat, (unsigned long) statbuf->st_gid);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000256 } else if (m == 'G') {
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000257 setgrent();
258 gw_ent = getgrgid(statbuf->st_gid);
Denis Vlasenkob75fe792008-06-27 22:31:07 +0000259 printfs(pformat, (gw_ent != NULL) ? gw_ent->gr_name : "UNKNOWN");
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000260 } else if (m == 't') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000261 strcat(pformat, "lx");
Denis Vlasenko87468852007-04-13 23:22:00 +0000262 printf(pformat, (unsigned long) major(statbuf->st_rdev));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000263 } else if (m == 'T') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000264 strcat(pformat, "lx");
Denis Vlasenko87468852007-04-13 23:22:00 +0000265 printf(pformat, (unsigned long) minor(statbuf->st_rdev));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000266 } else if (m == 's') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100267 strcat(pformat, "llu");
268 printf(pformat, (unsigned long long) statbuf->st_size);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000269 } else if (m == 'B') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000270 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000271 printf(pformat, (unsigned long) 512); //ST_NBLOCKSIZE
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000272 } else if (m == 'b') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100273 strcat(pformat, "llu");
274 printf(pformat, (unsigned long long) statbuf->st_blocks);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000275 } else if (m == 'o') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000276 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000277 printf(pformat, (unsigned long) statbuf->st_blksize);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000278 } else if (m == 'x') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000279 printfs(pformat, human_time(statbuf->st_atime));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000280 } else if (m == 'X') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000281 strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100282 /* note: (unsigned long) would be wrong:
283 * imagine (unsigned long64)int32 */
284 printf(pformat, (long) statbuf->st_atime);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000285 } else if (m == 'y') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000286 printfs(pformat, human_time(statbuf->st_mtime));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000287 } else if (m == 'Y') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000288 strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100289 printf(pformat, (long) statbuf->st_mtime);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000290 } else if (m == 'z') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000291 printfs(pformat, human_time(statbuf->st_ctime));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000292 } else if (m == 'Z') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000293 strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100294 printf(pformat, (long) statbuf->st_ctime);
295# if ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000296 } else if (m == 'C' && (option_mask32 & OPT_SELINUX)) {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000297 printfs(pformat, scontext);
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100298# endif
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000299 } else {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000300 strcatc(pformat, 'c');
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000301 printf(pformat, m);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000302 }
303}
304
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100305static void print_it(const char *masterformat,
306 const char *filename,
307 void FAST_FUNC (*print_func)(char*, char, const char*, const void* IF_SELINUX(, security_context_t scontext)),
Denis Vlasenko91e52032007-10-05 20:31:23 +0000308 const void *data
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100309 IF_SELINUX(, security_context_t scontext))
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000310{
Denis Vlasenko91e52032007-10-05 20:31:23 +0000311 /* Create a working copy of the format string */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000312 char *format = xstrdup(masterformat);
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000313 /* Add 2 to accomodate our conversion of the stat '%s' format string
314 * to the printf '%llu' one. */
Denis Vlasenko91e52032007-10-05 20:31:23 +0000315 char *dest = xmalloc(strlen(format) + 2 + 1);
316 char *b;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000317
318 b = format;
319 while (b) {
Sebd2d327d2010-06-12 21:57:50 +0200320 /* Each iteration finds next %spec,
321 * prints preceding string and handles found %spec
322 */
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000323 size_t len;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000324 char *p = strchr(b, '%');
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000325 if (!p) {
Sebd2d327d2010-06-12 21:57:50 +0200326 /* coreutils 6.3 always prints newline at the end */
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000327 /*fputs(b, stdout);*/
328 puts(b);
329 break;
330 }
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000331
Denis Vlasenko91e52032007-10-05 20:31:23 +0000332 /* dest = "%<modifiers>" */
Sebd2d327d2010-06-12 21:57:50 +0200333 len = 1 + strspn(p + 1, "#-+.I 0123456789");
334 memcpy(dest, p, len);
335 dest[len] = '\0';
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000336
Sebd2d327d2010-06-12 21:57:50 +0200337 /* print preceding string */
338 *p = '\0';
339 fputs(b, stdout);
340
341 p += len;
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000342 b = p + 1;
343 switch (*p) {
344 case '\0':
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000345 b = NULL;
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000346 /* fall through */
347 case '%':
Denis Vlasenko4daad902007-09-27 10:20:47 +0000348 bb_putchar('%');
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000349 break;
350 default:
Denis Vlasenko91e52032007-10-05 20:31:23 +0000351 /* Completes "%<modifiers>" with specifier and printfs */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000352 print_func(dest, *p, filename, data IF_SELINUX(,scontext));
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000353 break;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000354 }
355 }
356
357 free(format);
358 free(dest);
359}
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100360#endif /* FEATURE_STAT_FORMAT */
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000361
362/* Stat the file system and print what we find. */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000363#if !ENABLE_FEATURE_STAT_FORMAT
364#define do_statfs(filename, format) do_statfs(filename)
365#endif
Denis Vlasenko91e52032007-10-05 20:31:23 +0000366static bool do_statfs(const char *filename, const char *format)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000367{
Denis Vlasenko98f5cdf2008-11-11 22:25:34 +0000368 struct statfs statfsbuf;
Denis Vlasenko85c24712008-03-17 09:04:04 +0000369#if !ENABLE_FEATURE_STAT_FORMAT
370 const char *format;
371#endif
Denis Vlasenko49622d72007-03-10 16:58:49 +0000372#if ENABLE_SELINUX
373 security_context_t scontext = NULL;
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000374
375 if (option_mask32 & OPT_SELINUX) {
Denis Vlasenko501bfe22007-08-09 08:10:13 +0000376 if ((option_mask32 & OPT_DEREFERENCE
377 ? lgetfilecon(filename, &scontext)
378 : getfilecon(filename, &scontext)
379 ) < 0
380 ) {
Denis Vlasenko49622d72007-03-10 16:58:49 +0000381 bb_perror_msg(filename);
382 return 0;
383 }
384 }
385#endif
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000386 if (statfs(filename, &statfsbuf) != 0) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100387 bb_perror_msg("can't read file system information for '%s'", filename);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000388 return 0;
389 }
390
Denis Vlasenko240a1cf2007-04-08 16:07:02 +0000391#if ENABLE_FEATURE_STAT_FORMAT
Denis Vlasenko91e52032007-10-05 20:31:23 +0000392 if (format == NULL) {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100393# if !ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000394 format = (option_mask32 & OPT_TERSE
Mike Frysinger726b2cb2005-07-26 22:39:56 +0000395 ? "%n %i %l %t %s %b %f %a %c %d\n"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000396 : " File: \"%n\"\n"
397 " ID: %-8i Namelen: %-7l Type: %T\n"
Mike Frysinger726b2cb2005-07-26 22:39:56 +0000398 "Block size: %-10s\n"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000399 "Blocks: Total: %-10b Free: %-10f Available: %a\n"
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000400 "Inodes: Total: %-10c Free: %d");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100401# else
Denis Vlasenko91e52032007-10-05 20:31:23 +0000402 format = (option_mask32 & OPT_TERSE
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000403 ? (option_mask32 & OPT_SELINUX ? "%n %i %l %t %s %b %f %a %c %d %C\n":
Denis Vlasenko49622d72007-03-10 16:58:49 +0000404 "%n %i %l %t %s %b %f %a %c %d\n")
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000405 : (option_mask32 & OPT_SELINUX ?
Denis Vlasenko49622d72007-03-10 16:58:49 +0000406 " File: \"%n\"\n"
407 " ID: %-8i Namelen: %-7l Type: %T\n"
408 "Block size: %-10s\n"
409 "Blocks: Total: %-10b Free: %-10f Available: %a\n"
410 "Inodes: Total: %-10c Free: %d"
411 " S_context: %C\n":
412 " File: \"%n\"\n"
413 " ID: %-8i Namelen: %-7l Type: %T\n"
414 "Block size: %-10s\n"
415 "Blocks: Total: %-10b Free: %-10f Available: %a\n"
416 "Inodes: Total: %-10c Free: %d\n")
417 );
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100418# endif /* SELINUX */
Denis Vlasenko91e52032007-10-05 20:31:23 +0000419 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000420 print_it(format, filename, print_statfs, &statfsbuf IF_SELINUX(, scontext));
Denis Vlasenko49622d72007-03-10 16:58:49 +0000421#else /* FEATURE_STAT_FORMAT */
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000422 format = (option_mask32 & OPT_TERSE
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000423 ? "%s %llx %lu "
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000424 : " File: \"%s\"\n"
Denis Vlasenko98f5cdf2008-11-11 22:25:34 +0000425 " ID: %-8llx Namelen: %-7lu ");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000426 printf(format,
427 filename,
Denis Vlasenko98f5cdf2008-11-11 22:25:34 +0000428 get_f_fsid(&statfsbuf),
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000429 statfsbuf.f_namelen);
430
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000431 if (option_mask32 & OPT_TERSE)
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100432 printf("%lx ", (unsigned long) statfsbuf.f_type);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000433 else
434 printf("Type: %s\n", human_fstype(statfsbuf.f_type));
435
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100436# if !ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000437 format = (option_mask32 & OPT_TERSE
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100438 ? "%lu %llu %llu %llu %llu %llu\n"
Mike Frysinger726b2cb2005-07-26 22:39:56 +0000439 : "Block size: %-10lu\n"
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100440 "Blocks: Total: %-10llu Free: %-10llu Available: %llu\n"
441 "Inodes: Total: %-10llu Free: %llu\n");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000442 printf(format,
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100443 (unsigned long) statfsbuf.f_bsize,
444 (unsigned long long) statfsbuf.f_blocks,
445 (unsigned long long) statfsbuf.f_bfree,
446 (unsigned long long) statfsbuf.f_bavail,
447 (unsigned long long) statfsbuf.f_files,
448 (unsigned long long) statfsbuf.f_ffree);
449# else
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000450 format = (option_mask32 & OPT_TERSE
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100451 ? (option_mask32 & OPT_SELINUX ? "%lu %llu %llu %llu %llu %llu %C\n" : "%lu %llu %llu %llu %llu %llu\n")
452 : (option_mask32 & OPT_SELINUX
453 ? "Block size: %-10lu\n"
454 "Blocks: Total: %-10llu Free: %-10llu Available: %llu\n"
455 "Inodes: Total: %-10llu Free: %llu"
456 "S_context: %C\n"
457 : "Block size: %-10lu\n"
458 "Blocks: Total: %-10llu Free: %-10llu Available: %llu\n"
459 "Inodes: Total: %-10llu Free: %llu\n"
460 )
461 );
Denis Vlasenko49622d72007-03-10 16:58:49 +0000462 printf(format,
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100463 (unsigned long) statfsbuf.f_bsize,
464 (unsigned long long) statfsbuf.f_blocks,
465 (unsigned long long) statfsbuf.f_bfree,
466 (unsigned long long) statfsbuf.f_bavail,
467 (unsigned long long) statfsbuf.f_files,
468 (unsigned long long) statfsbuf.f_ffree,
Denis Vlasenko49622d72007-03-10 16:58:49 +0000469 scontext);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000470
Denis Vlasenko49622d72007-03-10 16:58:49 +0000471 if (scontext)
472 freecon(scontext);
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100473# endif
Denis Vlasenko49622d72007-03-10 16:58:49 +0000474#endif /* FEATURE_STAT_FORMAT */
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000475 return 1;
476}
477
478/* stat the file and print what we find */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000479#if !ENABLE_FEATURE_STAT_FORMAT
480#define do_stat(filename, format) do_stat(filename)
481#endif
Denis Vlasenko91e52032007-10-05 20:31:23 +0000482static bool do_stat(const char *filename, const char *format)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000483{
484 struct stat statbuf;
Denis Vlasenko49622d72007-03-10 16:58:49 +0000485#if ENABLE_SELINUX
486 security_context_t scontext = NULL;
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000487
488 if (option_mask32 & OPT_SELINUX) {
Denis Vlasenko501bfe22007-08-09 08:10:13 +0000489 if ((option_mask32 & OPT_DEREFERENCE
490 ? lgetfilecon(filename, &scontext)
491 : getfilecon(filename, &scontext)
492 ) < 0
493 ) {
494 bb_perror_msg(filename);
Denis Vlasenko49622d72007-03-10 16:58:49 +0000495 return 0;
496 }
497 }
498#endif
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000499 if ((option_mask32 & OPT_DEREFERENCE ? stat : lstat) (filename, &statbuf) != 0) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100500 bb_perror_msg("can't stat '%s'", filename);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000501 return 0;
502 }
503
Denis Vlasenko240a1cf2007-04-08 16:07:02 +0000504#if ENABLE_FEATURE_STAT_FORMAT
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000505 if (format == NULL) {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100506# if !ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000507 if (option_mask32 & OPT_TERSE) {
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000508 format = "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o";
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000509 } else {
510 if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode)) {
511 format =
Sebd2d327d2010-06-12 21:57:50 +0200512 " File: %N\n"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000513 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
514 "Device: %Dh/%dd\tInode: %-10i Links: %-5h"
515 " Device type: %t,%T\n"
516 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
517 "Access: %x\n" "Modify: %y\n" "Change: %z\n";
518 } else {
519 format =
Sebd2d327d2010-06-12 21:57:50 +0200520 " File: %N\n"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000521 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
522 "Device: %Dh/%dd\tInode: %-10i Links: %h\n"
523 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
524 "Access: %x\n" "Modify: %y\n" "Change: %z\n";
525 }
526 }
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100527# else
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000528 if (option_mask32 & OPT_TERSE) {
529 format = (option_mask32 & OPT_SELINUX ?
Denis Vlasenko49622d72007-03-10 16:58:49 +0000530 "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o %C\n":
531 "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o\n");
532 } else {
533 if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode)) {
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000534 format = (option_mask32 & OPT_SELINUX ?
Sebd2d327d2010-06-12 21:57:50 +0200535 " File: %N\n"
Denis Vlasenko49622d72007-03-10 16:58:49 +0000536 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
537 "Device: %Dh/%dd\tInode: %-10i Links: %-5h"
538 " Device type: %t,%T\n"
539 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
540 " S_Context: %C\n"
541 "Access: %x\n" "Modify: %y\n" "Change: %z\n":
Sebd2d327d2010-06-12 21:57:50 +0200542 " File: %N\n"
Denis Vlasenko49622d72007-03-10 16:58:49 +0000543 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
544 "Device: %Dh/%dd\tInode: %-10i Links: %-5h"
545 " Device type: %t,%T\n"
546 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
547 "Access: %x\n" "Modify: %y\n" "Change: %z\n");
548 } else {
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000549 format = (option_mask32 & OPT_SELINUX ?
Sebd2d327d2010-06-12 21:57:50 +0200550 " File: %N\n"
Denis Vlasenko49622d72007-03-10 16:58:49 +0000551 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
552 "Device: %Dh/%dd\tInode: %-10i Links: %h\n"
553 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
554 "S_Context: %C\n"
555 "Access: %x\n" "Modify: %y\n" "Change: %z\n":
Sebd2d327d2010-06-12 21:57:50 +0200556 " File: %N\n"
Denis Vlasenko49622d72007-03-10 16:58:49 +0000557 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
558 "Device: %Dh/%dd\tInode: %-10i Links: %h\n"
559 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
560 "Access: %x\n" "Modify: %y\n" "Change: %z\n");
561 }
562 }
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100563# endif
Denis Vlasenko49622d72007-03-10 16:58:49 +0000564 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000565 print_it(format, filename, print_stat, &statbuf IF_SELINUX(, scontext));
Denis Vlasenko49622d72007-03-10 16:58:49 +0000566#else /* FEATURE_STAT_FORMAT */
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000567 if (option_mask32 & OPT_TERSE) {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100568 printf("%s %llu %llu %lx %lu %lu %llx %llu %lu %lx %lx %lu %lu %lu %lu"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000569 IF_NOT_SELINUX("\n"),
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000570 filename,
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100571 (unsigned long long) statbuf.st_size,
572 (unsigned long long) statbuf.st_blocks,
Denis Vlasenko87468852007-04-13 23:22:00 +0000573 (unsigned long) statbuf.st_mode,
574 (unsigned long) statbuf.st_uid,
575 (unsigned long) statbuf.st_gid,
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100576 (unsigned long long) statbuf.st_dev,
577 (unsigned long long) statbuf.st_ino,
Denis Vlasenko87468852007-04-13 23:22:00 +0000578 (unsigned long) statbuf.st_nlink,
579 (unsigned long) major(statbuf.st_rdev),
580 (unsigned long) minor(statbuf.st_rdev),
581 (unsigned long) statbuf.st_atime,
582 (unsigned long) statbuf.st_mtime,
583 (unsigned long) statbuf.st_ctime,
584 (unsigned long) statbuf.st_blksize
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000585 );
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100586# if ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000587 if (option_mask32 & OPT_SELINUX)
Denis Vlasenko49622d72007-03-10 16:58:49 +0000588 printf(" %lc\n", *scontext);
589 else
Denis Vlasenko4daad902007-09-27 10:20:47 +0000590 bb_putchar('\n');
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100591# endif
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000592 } else {
593 char *linkname = NULL;
594
595 struct passwd *pw_ent;
596 struct group *gw_ent;
597 setgrent();
598 gw_ent = getgrgid(statbuf.st_gid);
599 setpwent();
600 pw_ent = getpwuid(statbuf.st_uid);
601
602 if (S_ISLNK(statbuf.st_mode))
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000603 linkname = xmalloc_readlink_or_warn(filename);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000604 if (linkname)
Sebd2d327d2010-06-12 21:57:50 +0200605 printf(" File: '%s' -> '%s'\n", filename, linkname);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000606 else
Sebd2d327d2010-06-12 21:57:50 +0200607 printf(" File: '%s'\n", filename);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000608
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100609 printf(" Size: %-10llu\tBlocks: %-10llu IO Block: %-6lu %s\n"
610 "Device: %llxh/%llud\tInode: %-10llu Links: %-5lu",
611 (unsigned long long) statbuf.st_size,
612 (unsigned long long) statbuf.st_blocks,
Denis Vlasenko87468852007-04-13 23:22:00 +0000613 (unsigned long) statbuf.st_blksize,
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000614 file_type(&statbuf),
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100615 (unsigned long long) statbuf.st_dev,
616 (unsigned long long) statbuf.st_dev,
617 (unsigned long long) statbuf.st_ino,
Denis Vlasenko87468852007-04-13 23:22:00 +0000618 (unsigned long) statbuf.st_nlink);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000619 if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode))
620 printf(" Device type: %lx,%lx\n",
Denis Vlasenko87468852007-04-13 23:22:00 +0000621 (unsigned long) major(statbuf.st_rdev),
622 (unsigned long) minor(statbuf.st_rdev));
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000623 else
Denis Vlasenko4daad902007-09-27 10:20:47 +0000624 bb_putchar('\n');
Denis Vlasenko49622d72007-03-10 16:58:49 +0000625 printf("Access: (%04lo/%10.10s) Uid: (%5lu/%8s) Gid: (%5lu/%8s)\n",
Denis Vlasenko87468852007-04-13 23:22:00 +0000626 (unsigned long) (statbuf.st_mode & (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)),
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000627 bb_mode_string(statbuf.st_mode),
Denis Vlasenko87468852007-04-13 23:22:00 +0000628 (unsigned long) statbuf.st_uid,
Denis Vlasenkob75fe792008-06-27 22:31:07 +0000629 (pw_ent != NULL) ? pw_ent->pw_name : "UNKNOWN",
Denis Vlasenko87468852007-04-13 23:22:00 +0000630 (unsigned long) statbuf.st_gid,
Denis Vlasenkob75fe792008-06-27 22:31:07 +0000631 (gw_ent != NULL) ? gw_ent->gr_name : "UNKNOWN");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100632# if ENABLE_SELINUX
Denis Vlasenko49622d72007-03-10 16:58:49 +0000633 printf(" S_Context: %lc\n", *scontext);
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100634# endif
Denis Vlasenko49622d72007-03-10 16:58:49 +0000635 printf("Access: %s\n" "Modify: %s\n" "Change: %s\n",
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000636 human_time(statbuf.st_atime),
637 human_time(statbuf.st_mtime),
638 human_time(statbuf.st_ctime));
639 }
Denis Vlasenko49622d72007-03-10 16:58:49 +0000640#endif /* FEATURE_STAT_FORMAT */
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000641 return 1;
642}
643
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000644int stat_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenkoe992bae2009-11-28 15:18:53 +0100645int stat_main(int argc UNUSED_PARAM, char **argv)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000646{
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000647 IF_FEATURE_STAT_FORMAT(char *format = NULL;)
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000648 int i;
Denys Vlasenkoe992bae2009-11-28 15:18:53 +0100649 int ok;
650 unsigned opts;
Denis Vlasenko85c24712008-03-17 09:04:04 +0000651 statfunc_ptr statfunc = do_stat;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000652
Denys Vlasenkoe992bae2009-11-28 15:18:53 +0100653 opt_complementary = "-1"; /* min one arg */
654 opts = getopt32(argv, "ftL"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000655 IF_SELINUX("Z")
656 IF_FEATURE_STAT_FORMAT("c:", &format)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000657 );
Denys Vlasenkoe992bae2009-11-28 15:18:53 +0100658 if (opts & OPT_FILESYS) /* -f */
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000659 statfunc = do_statfs;
Denis Vlasenko49622d72007-03-10 16:58:49 +0000660#if ENABLE_SELINUX
Denys Vlasenkoe992bae2009-11-28 15:18:53 +0100661 if (opts & OPT_SELINUX) {
Denis Vlasenko49622d72007-03-10 16:58:49 +0000662 selinux_or_die();
663 }
Denys Vlasenkoe992bae2009-11-28 15:18:53 +0100664#endif
665 ok = 1;
666 argv += optind;
667 for (i = 0; argv[i]; ++i)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000668 ok &= statfunc(argv[i] IF_FEATURE_STAT_FORMAT(, format));
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000669
670 return (ok ? EXIT_SUCCESS : EXIT_FAILURE);
671}