blob: 2797719dd1da07a5012ec86e5e4be682b0a0544b [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 */
Pere Orga34425382011-03-31 14:43:25 +020015
16//usage:#define stat_trivial_usage
17//usage: "[OPTIONS] FILE..."
18//usage:#define stat_full_usage "\n\n"
19//usage: "Display file (default) or filesystem status\n"
Pere Orga34425382011-03-31 14:43:25 +020020//usage: IF_FEATURE_STAT_FORMAT(
21//usage: "\n -c fmt Use the specified format"
22//usage: )
23//usage: "\n -f Display filesystem status"
24//usage: "\n -L Follow links"
25//usage: "\n -t Display info in terse form"
26//usage: IF_SELINUX(
27//usage: "\n -Z Print security context"
28//usage: )
29//usage: IF_FEATURE_STAT_FORMAT(
30//usage: "\n\nValid format sequences for files:\n"
31//usage: " %a Access rights in octal\n"
32//usage: " %A Access rights in human readable form\n"
33//usage: " %b Number of blocks allocated (see %B)\n"
34//usage: " %B The size in bytes of each block reported by %b\n"
35//usage: " %d Device number in decimal\n"
36//usage: " %D Device number in hex\n"
37//usage: " %f Raw mode in hex\n"
38//usage: " %F File type\n"
39//usage: " %g Group ID of owner\n"
40//usage: " %G Group name of owner\n"
41//usage: " %h Number of hard links\n"
42//usage: " %i Inode number\n"
43//usage: " %n File name\n"
44//usage: " %N File name, with -> TARGET if symlink\n"
45//usage: " %o I/O block size\n"
46//usage: " %s Total size, in bytes\n"
47//usage: " %t Major device type in hex\n"
48//usage: " %T Minor device type in hex\n"
49//usage: " %u User ID of owner\n"
50//usage: " %U User name of owner\n"
51//usage: " %x Time of last access\n"
52//usage: " %X Time of last access as seconds since Epoch\n"
53//usage: " %y Time of last modification\n"
54//usage: " %Y Time of last modification as seconds since Epoch\n"
55//usage: " %z Time of last change\n"
56//usage: " %Z Time of last change as seconds since Epoch\n"
57//usage: "\nValid format sequences for file systems:\n"
58//usage: " %a Free blocks available to non-superuser\n"
59//usage: " %b Total data blocks in file system\n"
60//usage: " %c Total file nodes in file system\n"
61//usage: " %d Free file nodes in file system\n"
62//usage: " %f Free blocks in file system\n"
63//usage: IF_SELINUX(
64//usage: " %C Security context in selinux\n"
65//usage: )
66//usage: " %i File System ID in hex\n"
67//usage: " %l Maximum length of filenames\n"
68//usage: " %n File name\n"
69//usage: " %s Block size (for faster transfer)\n"
70//usage: " %S Fundamental block size (for block counts)\n"
71//usage: " %t Type in hex\n"
72//usage: " %T Type in human readable form"
73//usage: )
74
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000075#include "libbb.h"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000076
Denis Vlasenko91e52032007-10-05 20:31:23 +000077#define OPT_FILESYS (1 << 0)
78#define OPT_TERSE (1 << 1)
79#define OPT_DEREFERENCE (1 << 2)
80#define OPT_SELINUX (1 << 3)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000081
Denis Vlasenko85c24712008-03-17 09:04:04 +000082#if ENABLE_FEATURE_STAT_FORMAT
83typedef bool (*statfunc_ptr)(const char *, const char *);
84#else
85typedef bool (*statfunc_ptr)(const char *);
86#endif
87
Denis Vlasenko91e52032007-10-05 20:31:23 +000088static const char *file_type(const struct stat *st)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000089{
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000090 /* See POSIX 1003.1-2001 XCU Table 4-8 lines 17093-17107
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000091 * for some of these formats.
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000092 * To keep diagnostics grammatical in English, the
Mike Frysinger9b5f71e2005-04-23 06:26:38 +000093 * returned string must start with a consonant.
94 */
95 if (S_ISREG(st->st_mode)) return st->st_size == 0 ? "regular empty file" : "regular file";
96 if (S_ISDIR(st->st_mode)) return "directory";
97 if (S_ISBLK(st->st_mode)) return "block special file";
98 if (S_ISCHR(st->st_mode)) return "character special file";
99 if (S_ISFIFO(st->st_mode)) return "fifo";
100 if (S_ISLNK(st->st_mode)) return "symbolic link";
101 if (S_ISSOCK(st->st_mode)) return "socket";
102 if (S_TYPEISMQ(st)) return "message queue";
103 if (S_TYPEISSEM(st)) return "semaphore";
104 if (S_TYPEISSHM(st)) return "shared memory object";
105#ifdef S_TYPEISTMO
106 if (S_TYPEISTMO(st)) return "typed memory object";
107#endif
108 return "weird file";
109}
110
Denis Vlasenko91e52032007-10-05 20:31:23 +0000111static const char *human_time(time_t t)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000112{
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000113 /* Old
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000114 static char *str;
115 str = ctime(&t);
116 str[strlen(str)-1] = '\0';
117 return str;
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000118 */
119 /* coreutils 6.3 compat: */
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000120
Denis Vlasenko91e52032007-10-05 20:31:23 +0000121 /*static char buf[sizeof("YYYY-MM-DD HH:MM:SS.000000000")] ALIGN1;*/
122#define buf bb_common_bufsiz1
123
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000124 strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S.000000000", localtime(&t));
125 return buf;
Denis Vlasenko91e52032007-10-05 20:31:23 +0000126#undef buf
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000127}
128
129/* Return the type of the specified file system.
130 * Some systems have statfvs.f_basetype[FSTYPSZ]. (AIX, HP-UX, and Solaris)
131 * Others have statfs.f_fstypename[MFSNAMELEN]. (NetBSD 1.5.2)
132 * Still others have neither and have to get by with f_type (Linux).
133 */
Denis Vlasenko91e52032007-10-05 20:31:23 +0000134static const char *human_fstype(uint32_t f_type)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000135{
Denis Vlasenko240a1cf2007-04-08 16:07:02 +0000136 static const struct types {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000137 uint32_t type;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000138 const char *const fs;
Mike Frysinger408ae212005-04-24 04:11:44 +0000139 } humantypes[] = {
140 { 0xADFF, "affs" },
141 { 0x1Cd1, "devpts" },
142 { 0x137D, "ext" },
143 { 0xEF51, "ext2" },
144 { 0xEF53, "ext2/ext3" },
145 { 0x3153464a, "jfs" },
146 { 0x58465342, "xfs" },
147 { 0xF995E849, "hpfs" },
148 { 0x9660, "isofs" },
149 { 0x4000, "isofs" },
150 { 0x4004, "isofs" },
151 { 0x137F, "minix" },
152 { 0x138F, "minix (30 char.)" },
153 { 0x2468, "minix v2" },
154 { 0x2478, "minix v2 (30 char.)" },
155 { 0x4d44, "msdos" },
156 { 0x4006, "fat" },
157 { 0x564c, "novell" },
158 { 0x6969, "nfs" },
159 { 0x9fa0, "proc" },
160 { 0x517B, "smb" },
161 { 0x012FF7B4, "xenix" },
162 { 0x012FF7B5, "sysv4" },
163 { 0x012FF7B6, "sysv2" },
164 { 0x012FF7B7, "coh" },
165 { 0x00011954, "ufs" },
166 { 0x012FD16D, "xia" },
167 { 0x5346544e, "ntfs" },
168 { 0x1021994, "tmpfs" },
169 { 0x52654973, "reiserfs" },
170 { 0x28cd3d45, "cramfs" },
171 { 0x7275, "romfs" },
172 { 0x858458f6, "romfs" },
173 { 0x73717368, "squashfs" },
174 { 0x62656572, "sysfs" },
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000175 { 0, "UNKNOWN" }
Mike Frysinger408ae212005-04-24 04:11:44 +0000176 };
Denis Vlasenko91e52032007-10-05 20:31:23 +0000177
178 int i;
179
Denis Vlasenko240a1cf2007-04-08 16:07:02 +0000180 for (i = 0; humantypes[i].type; ++i)
Mike Frysinger408ae212005-04-24 04:11:44 +0000181 if (humantypes[i].type == f_type)
Rob Landley0a7c8ef2006-02-22 17:01:00 +0000182 break;
Mike Frysinger408ae212005-04-24 04:11:44 +0000183 return humantypes[i].fs;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000184}
185
Denis Vlasenko98f5cdf2008-11-11 22:25:34 +0000186/* "man statfs" says that statfsbuf->f_fsid is a mess */
187/* coreutils treats it as an array of ints, most significant first */
188static unsigned long long get_f_fsid(const struct statfs *statfsbuf)
189{
190 const unsigned *p = (const void*) &statfsbuf->f_fsid;
191 unsigned sz = sizeof(statfsbuf->f_fsid) / sizeof(unsigned);
192 unsigned long long r = 0;
193
194 do
195 r = (r << (sizeof(unsigned)*8)) | *p++;
196 while (--sz > 0);
197 return r;
198}
199
Denis Vlasenko86c285d2008-11-13 21:53:32 +0000200#if ENABLE_FEATURE_STAT_FORMAT
201static void strcatc(char *str, char c)
202{
203 int len = strlen(str);
204 str[len++] = c;
205 str[len] = '\0';
206}
207
208static void printfs(char *pformat, const char *msg)
209{
210 strcatc(pformat, 's');
211 printf(pformat, msg);
212}
213
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000214/* print statfs info */
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100215static void FAST_FUNC print_statfs(char *pformat, const char m,
Denis Vlasenko91e52032007-10-05 20:31:23 +0000216 const char *const filename, const void *data
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000217 IF_SELINUX(, security_context_t scontext))
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000218{
Denis Vlasenko91e52032007-10-05 20:31:23 +0000219 const struct statfs *statfsbuf = data;
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000220 if (m == 'n') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000221 printfs(pformat, filename);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000222 } else if (m == 'i') {
Denis Vlasenko98f5cdf2008-11-11 22:25:34 +0000223 strcat(pformat, "llx");
224 printf(pformat, get_f_fsid(statfsbuf));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000225 } else if (m == 'l') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000226 strcat(pformat, "lu");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100227 printf(pformat, (unsigned long) statfsbuf->f_namelen);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000228 } else if (m == 't') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000229 strcat(pformat, "lx");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100230 printf(pformat, (unsigned long) statfsbuf->f_type); /* no equiv */
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000231 } else if (m == 'T') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000232 printfs(pformat, human_fstype(statfsbuf->f_type));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000233 } else if (m == 'b') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100234 strcat(pformat, "llu");
235 printf(pformat, (unsigned long long) statfsbuf->f_blocks);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000236 } else if (m == 'f') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100237 strcat(pformat, "llu");
238 printf(pformat, (unsigned long long) statfsbuf->f_bfree);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000239 } else if (m == 'a') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100240 strcat(pformat, "llu");
241 printf(pformat, (unsigned long long) statfsbuf->f_bavail);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000242 } else if (m == 's' || m == 'S') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000243 strcat(pformat, "lu");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100244 printf(pformat, (unsigned long) statfsbuf->f_bsize);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000245 } else if (m == 'c') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100246 strcat(pformat, "llu");
247 printf(pformat, (unsigned long long) statfsbuf->f_files);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000248 } else if (m == 'd') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100249 strcat(pformat, "llu");
250 printf(pformat, (unsigned long long) statfsbuf->f_ffree);
251# if ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000252 } else if (m == 'C' && (option_mask32 & OPT_SELINUX)) {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000253 printfs(pformat, scontext);
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100254# endif
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000255 } else {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000256 strcatc(pformat, 'c');
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000257 printf(pformat, m);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000258 }
259}
260
261/* print stat info */
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100262static void FAST_FUNC print_stat(char *pformat, const char m,
Denis Vlasenko91e52032007-10-05 20:31:23 +0000263 const char *const filename, const void *data
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000264 IF_SELINUX(, security_context_t scontext))
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000265{
266#define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
267 struct stat *statbuf = (struct stat *) data;
268 struct passwd *pw_ent;
269 struct group *gw_ent;
270
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000271 if (m == 'n') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000272 printfs(pformat, filename);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000273 } else if (m == 'N') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000274 strcatc(pformat, 's');
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000275 if (S_ISLNK(statbuf->st_mode)) {
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000276 char *linkname = xmalloc_readlink_or_warn(filename);
Denis Vlasenko91e52032007-10-05 20:31:23 +0000277 if (linkname == NULL)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000278 return;
Sebd2d327d2010-06-12 21:57:50 +0200279 printf("'%s' -> '%s'", filename, linkname);
Denis Vlasenko91e52032007-10-05 20:31:23 +0000280 free(linkname);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000281 } else {
282 printf(pformat, filename);
283 }
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000284 } else if (m == 'd') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100285 strcat(pformat, "llu");
286 printf(pformat, (unsigned long long) statbuf->st_dev);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000287 } else if (m == 'D') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100288 strcat(pformat, "llx");
289 printf(pformat, (unsigned long long) statbuf->st_dev);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000290 } else if (m == 'i') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100291 strcat(pformat, "llu");
292 printf(pformat, (unsigned long long) statbuf->st_ino);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000293 } else if (m == 'a') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000294 strcat(pformat, "lo");
Denis Vlasenko87468852007-04-13 23:22:00 +0000295 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 +0000296 } else if (m == 'A') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000297 printfs(pformat, bb_mode_string(statbuf->st_mode));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000298 } else if (m == 'f') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000299 strcat(pformat, "lx");
Denis Vlasenko87468852007-04-13 23:22:00 +0000300 printf(pformat, (unsigned long) statbuf->st_mode);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000301 } else if (m == 'F') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000302 printfs(pformat, file_type(statbuf));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000303 } else if (m == 'h') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000304 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000305 printf(pformat, (unsigned long) statbuf->st_nlink);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000306 } else if (m == 'u') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000307 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000308 printf(pformat, (unsigned long) statbuf->st_uid);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000309 } else if (m == 'U') {
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000310 pw_ent = getpwuid(statbuf->st_uid);
Denis Vlasenkob75fe792008-06-27 22:31:07 +0000311 printfs(pformat, (pw_ent != NULL) ? pw_ent->pw_name : "UNKNOWN");
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000312 } else if (m == 'g') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000313 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000314 printf(pformat, (unsigned long) statbuf->st_gid);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000315 } else if (m == 'G') {
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000316 gw_ent = getgrgid(statbuf->st_gid);
Denis Vlasenkob75fe792008-06-27 22:31:07 +0000317 printfs(pformat, (gw_ent != NULL) ? gw_ent->gr_name : "UNKNOWN");
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000318 } else if (m == 't') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000319 strcat(pformat, "lx");
Denis Vlasenko87468852007-04-13 23:22:00 +0000320 printf(pformat, (unsigned long) major(statbuf->st_rdev));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000321 } else if (m == 'T') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000322 strcat(pformat, "lx");
Denis Vlasenko87468852007-04-13 23:22:00 +0000323 printf(pformat, (unsigned long) minor(statbuf->st_rdev));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000324 } else if (m == 's') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100325 strcat(pformat, "llu");
326 printf(pformat, (unsigned long long) statbuf->st_size);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000327 } else if (m == 'B') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000328 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000329 printf(pformat, (unsigned long) 512); //ST_NBLOCKSIZE
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000330 } else if (m == 'b') {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100331 strcat(pformat, "llu");
332 printf(pformat, (unsigned long long) statbuf->st_blocks);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000333 } else if (m == 'o') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000334 strcat(pformat, "lu");
Denis Vlasenko87468852007-04-13 23:22:00 +0000335 printf(pformat, (unsigned long) statbuf->st_blksize);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000336 } else if (m == 'x') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000337 printfs(pformat, human_time(statbuf->st_atime));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000338 } else if (m == 'X') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000339 strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100340 /* note: (unsigned long) would be wrong:
341 * imagine (unsigned long64)int32 */
342 printf(pformat, (long) statbuf->st_atime);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000343 } else if (m == 'y') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000344 printfs(pformat, human_time(statbuf->st_mtime));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000345 } else if (m == 'Y') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000346 strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100347 printf(pformat, (long) statbuf->st_mtime);
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000348 } else if (m == 'z') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000349 printfs(pformat, human_time(statbuf->st_ctime));
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000350 } else if (m == 'Z') {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000351 strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100352 printf(pformat, (long) statbuf->st_ctime);
353# if ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000354 } else if (m == 'C' && (option_mask32 & OPT_SELINUX)) {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000355 printfs(pformat, scontext);
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100356# endif
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000357 } else {
Denis Vlasenko91e52032007-10-05 20:31:23 +0000358 strcatc(pformat, 'c');
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000359 printf(pformat, m);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000360 }
361}
362
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100363static void print_it(const char *masterformat,
364 const char *filename,
365 void FAST_FUNC (*print_func)(char*, char, const char*, const void* IF_SELINUX(, security_context_t scontext)),
Denis Vlasenko91e52032007-10-05 20:31:23 +0000366 const void *data
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100367 IF_SELINUX(, security_context_t scontext))
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000368{
Denis Vlasenko91e52032007-10-05 20:31:23 +0000369 /* Create a working copy of the format string */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000370 char *format = xstrdup(masterformat);
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000371 /* Add 2 to accomodate our conversion of the stat '%s' format string
372 * to the printf '%llu' one. */
Denis Vlasenko91e52032007-10-05 20:31:23 +0000373 char *dest = xmalloc(strlen(format) + 2 + 1);
374 char *b;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000375
376 b = format;
377 while (b) {
Sebd2d327d2010-06-12 21:57:50 +0200378 /* Each iteration finds next %spec,
379 * prints preceding string and handles found %spec
380 */
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000381 size_t len;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000382 char *p = strchr(b, '%');
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000383 if (!p) {
Sebd2d327d2010-06-12 21:57:50 +0200384 /* coreutils 6.3 always prints newline at the end */
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000385 /*fputs(b, stdout);*/
386 puts(b);
387 break;
388 }
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000389
Denis Vlasenko91e52032007-10-05 20:31:23 +0000390 /* dest = "%<modifiers>" */
Sebd2d327d2010-06-12 21:57:50 +0200391 len = 1 + strspn(p + 1, "#-+.I 0123456789");
392 memcpy(dest, p, len);
393 dest[len] = '\0';
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000394
Sebd2d327d2010-06-12 21:57:50 +0200395 /* print preceding string */
396 *p = '\0';
397 fputs(b, stdout);
398
399 p += len;
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000400 b = p + 1;
401 switch (*p) {
402 case '\0':
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000403 b = NULL;
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000404 /* fall through */
405 case '%':
Denis Vlasenko4daad902007-09-27 10:20:47 +0000406 bb_putchar('%');
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000407 break;
408 default:
Denis Vlasenko91e52032007-10-05 20:31:23 +0000409 /* Completes "%<modifiers>" with specifier and printfs */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000410 print_func(dest, *p, filename, data IF_SELINUX(,scontext));
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000411 break;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000412 }
413 }
414
415 free(format);
416 free(dest);
417}
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100418#endif /* FEATURE_STAT_FORMAT */
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000419
420/* Stat the file system and print what we find. */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000421#if !ENABLE_FEATURE_STAT_FORMAT
422#define do_statfs(filename, format) do_statfs(filename)
423#endif
Denis Vlasenko91e52032007-10-05 20:31:23 +0000424static bool do_statfs(const char *filename, const char *format)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000425{
Denis Vlasenko98f5cdf2008-11-11 22:25:34 +0000426 struct statfs statfsbuf;
Denis Vlasenko85c24712008-03-17 09:04:04 +0000427#if !ENABLE_FEATURE_STAT_FORMAT
428 const char *format;
429#endif
Denis Vlasenko49622d72007-03-10 16:58:49 +0000430#if ENABLE_SELINUX
431 security_context_t scontext = NULL;
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000432
433 if (option_mask32 & OPT_SELINUX) {
Denis Vlasenko501bfe22007-08-09 08:10:13 +0000434 if ((option_mask32 & OPT_DEREFERENCE
435 ? lgetfilecon(filename, &scontext)
436 : getfilecon(filename, &scontext)
437 ) < 0
438 ) {
Denis Vlasenko49622d72007-03-10 16:58:49 +0000439 bb_perror_msg(filename);
440 return 0;
441 }
442 }
443#endif
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000444 if (statfs(filename, &statfsbuf) != 0) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100445 bb_perror_msg("can't read file system information for '%s'", filename);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000446 return 0;
447 }
448
Denis Vlasenko240a1cf2007-04-08 16:07:02 +0000449#if ENABLE_FEATURE_STAT_FORMAT
Denis Vlasenko91e52032007-10-05 20:31:23 +0000450 if (format == NULL) {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100451# if !ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000452 format = (option_mask32 & OPT_TERSE
Mike Frysinger726b2cb2005-07-26 22:39:56 +0000453 ? "%n %i %l %t %s %b %f %a %c %d\n"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000454 : " File: \"%n\"\n"
455 " ID: %-8i Namelen: %-7l Type: %T\n"
Mike Frysinger726b2cb2005-07-26 22:39:56 +0000456 "Block size: %-10s\n"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000457 "Blocks: Total: %-10b Free: %-10f Available: %a\n"
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000458 "Inodes: Total: %-10c Free: %d");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100459# else
Denis Vlasenko91e52032007-10-05 20:31:23 +0000460 format = (option_mask32 & OPT_TERSE
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000461 ? (option_mask32 & OPT_SELINUX ? "%n %i %l %t %s %b %f %a %c %d %C\n":
Denis Vlasenko49622d72007-03-10 16:58:49 +0000462 "%n %i %l %t %s %b %f %a %c %d\n")
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000463 : (option_mask32 & OPT_SELINUX ?
Denis Vlasenko49622d72007-03-10 16:58:49 +0000464 " File: \"%n\"\n"
465 " ID: %-8i Namelen: %-7l Type: %T\n"
466 "Block size: %-10s\n"
467 "Blocks: Total: %-10b Free: %-10f Available: %a\n"
468 "Inodes: Total: %-10c Free: %d"
469 " S_context: %C\n":
470 " File: \"%n\"\n"
471 " ID: %-8i Namelen: %-7l Type: %T\n"
472 "Block size: %-10s\n"
473 "Blocks: Total: %-10b Free: %-10f Available: %a\n"
474 "Inodes: Total: %-10c Free: %d\n")
475 );
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100476# endif /* SELINUX */
Denis Vlasenko91e52032007-10-05 20:31:23 +0000477 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000478 print_it(format, filename, print_statfs, &statfsbuf IF_SELINUX(, scontext));
Denis Vlasenko49622d72007-03-10 16:58:49 +0000479#else /* FEATURE_STAT_FORMAT */
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000480 format = (option_mask32 & OPT_TERSE
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +0000481 ? "%s %llx %lu "
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000482 : " File: \"%s\"\n"
Denis Vlasenko98f5cdf2008-11-11 22:25:34 +0000483 " ID: %-8llx Namelen: %-7lu ");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000484 printf(format,
485 filename,
Denis Vlasenko98f5cdf2008-11-11 22:25:34 +0000486 get_f_fsid(&statfsbuf),
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000487 statfsbuf.f_namelen);
488
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000489 if (option_mask32 & OPT_TERSE)
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100490 printf("%lx ", (unsigned long) statfsbuf.f_type);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000491 else
492 printf("Type: %s\n", human_fstype(statfsbuf.f_type));
493
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100494# if !ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000495 format = (option_mask32 & OPT_TERSE
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100496 ? "%lu %llu %llu %llu %llu %llu\n"
Mike Frysinger726b2cb2005-07-26 22:39:56 +0000497 : "Block size: %-10lu\n"
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100498 "Blocks: Total: %-10llu Free: %-10llu Available: %llu\n"
499 "Inodes: Total: %-10llu Free: %llu\n");
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000500 printf(format,
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100501 (unsigned long) statfsbuf.f_bsize,
502 (unsigned long long) statfsbuf.f_blocks,
503 (unsigned long long) statfsbuf.f_bfree,
504 (unsigned long long) statfsbuf.f_bavail,
505 (unsigned long long) statfsbuf.f_files,
506 (unsigned long long) statfsbuf.f_ffree);
507# else
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000508 format = (option_mask32 & OPT_TERSE
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100509 ? (option_mask32 & OPT_SELINUX ? "%lu %llu %llu %llu %llu %llu %C\n" : "%lu %llu %llu %llu %llu %llu\n")
510 : (option_mask32 & OPT_SELINUX
511 ? "Block size: %-10lu\n"
512 "Blocks: Total: %-10llu Free: %-10llu Available: %llu\n"
513 "Inodes: Total: %-10llu Free: %llu"
514 "S_context: %C\n"
515 : "Block size: %-10lu\n"
516 "Blocks: Total: %-10llu Free: %-10llu Available: %llu\n"
517 "Inodes: Total: %-10llu Free: %llu\n"
518 )
519 );
Denis Vlasenko49622d72007-03-10 16:58:49 +0000520 printf(format,
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100521 (unsigned long) statfsbuf.f_bsize,
522 (unsigned long long) statfsbuf.f_blocks,
523 (unsigned long long) statfsbuf.f_bfree,
524 (unsigned long long) statfsbuf.f_bavail,
525 (unsigned long long) statfsbuf.f_files,
526 (unsigned long long) statfsbuf.f_ffree,
Denis Vlasenko49622d72007-03-10 16:58:49 +0000527 scontext);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000528
Denis Vlasenko49622d72007-03-10 16:58:49 +0000529 if (scontext)
530 freecon(scontext);
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100531# endif
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200532#endif /* FEATURE_STAT_FORMAT */
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000533 return 1;
534}
535
536/* stat the file and print what we find */
Denis Vlasenko85c24712008-03-17 09:04:04 +0000537#if !ENABLE_FEATURE_STAT_FORMAT
538#define do_stat(filename, format) do_stat(filename)
539#endif
Denis Vlasenko91e52032007-10-05 20:31:23 +0000540static bool do_stat(const char *filename, const char *format)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000541{
542 struct stat statbuf;
Denis Vlasenko49622d72007-03-10 16:58:49 +0000543#if ENABLE_SELINUX
544 security_context_t scontext = NULL;
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000545
546 if (option_mask32 & OPT_SELINUX) {
Denis Vlasenko501bfe22007-08-09 08:10:13 +0000547 if ((option_mask32 & OPT_DEREFERENCE
548 ? lgetfilecon(filename, &scontext)
549 : getfilecon(filename, &scontext)
550 ) < 0
551 ) {
552 bb_perror_msg(filename);
Denis Vlasenko49622d72007-03-10 16:58:49 +0000553 return 0;
554 }
555 }
556#endif
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000557 if ((option_mask32 & OPT_DEREFERENCE ? stat : lstat) (filename, &statbuf) != 0) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100558 bb_perror_msg("can't stat '%s'", filename);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000559 return 0;
560 }
561
Denis Vlasenko240a1cf2007-04-08 16:07:02 +0000562#if ENABLE_FEATURE_STAT_FORMAT
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000563 if (format == NULL) {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100564# if !ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000565 if (option_mask32 & OPT_TERSE) {
Denis Vlasenko5d148e22006-11-21 00:12:09 +0000566 format = "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o";
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000567 } else {
568 if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode)) {
569 format =
Sebd2d327d2010-06-12 21:57:50 +0200570 " File: %N\n"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000571 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
572 "Device: %Dh/%dd\tInode: %-10i Links: %-5h"
573 " Device type: %t,%T\n"
574 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
575 "Access: %x\n" "Modify: %y\n" "Change: %z\n";
576 } else {
577 format =
Sebd2d327d2010-06-12 21:57:50 +0200578 " File: %N\n"
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000579 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
580 "Device: %Dh/%dd\tInode: %-10i Links: %h\n"
581 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
582 "Access: %x\n" "Modify: %y\n" "Change: %z\n";
583 }
584 }
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100585# else
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000586 if (option_mask32 & OPT_TERSE) {
587 format = (option_mask32 & OPT_SELINUX ?
Denis Vlasenko49622d72007-03-10 16:58:49 +0000588 "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o %C\n":
589 "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o\n");
590 } else {
591 if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode)) {
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000592 format = (option_mask32 & OPT_SELINUX ?
Sebd2d327d2010-06-12 21:57:50 +0200593 " File: %N\n"
Denis Vlasenko49622d72007-03-10 16:58:49 +0000594 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
595 "Device: %Dh/%dd\tInode: %-10i Links: %-5h"
596 " Device type: %t,%T\n"
597 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
598 " S_Context: %C\n"
599 "Access: %x\n" "Modify: %y\n" "Change: %z\n":
Sebd2d327d2010-06-12 21:57:50 +0200600 " File: %N\n"
Denis Vlasenko49622d72007-03-10 16:58:49 +0000601 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
602 "Device: %Dh/%dd\tInode: %-10i Links: %-5h"
603 " Device type: %t,%T\n"
604 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
605 "Access: %x\n" "Modify: %y\n" "Change: %z\n");
606 } else {
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000607 format = (option_mask32 & OPT_SELINUX ?
Sebd2d327d2010-06-12 21:57:50 +0200608 " File: %N\n"
Denis Vlasenko49622d72007-03-10 16:58:49 +0000609 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
610 "Device: %Dh/%dd\tInode: %-10i Links: %h\n"
611 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
612 "S_Context: %C\n"
613 "Access: %x\n" "Modify: %y\n" "Change: %z\n":
Sebd2d327d2010-06-12 21:57:50 +0200614 " File: %N\n"
Denis Vlasenko49622d72007-03-10 16:58:49 +0000615 " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n"
616 "Device: %Dh/%dd\tInode: %-10i Links: %h\n"
617 "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n"
618 "Access: %x\n" "Modify: %y\n" "Change: %z\n");
619 }
620 }
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100621# endif
Denis Vlasenko49622d72007-03-10 16:58:49 +0000622 }
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000623 print_it(format, filename, print_stat, &statbuf IF_SELINUX(, scontext));
Denis Vlasenko49622d72007-03-10 16:58:49 +0000624#else /* FEATURE_STAT_FORMAT */
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000625 if (option_mask32 & OPT_TERSE) {
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100626 printf("%s %llu %llu %lx %lu %lu %llx %llu %lu %lx %lx %lu %lu %lu %lu"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000627 IF_NOT_SELINUX("\n"),
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000628 filename,
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100629 (unsigned long long) statbuf.st_size,
630 (unsigned long long) statbuf.st_blocks,
Denis Vlasenko87468852007-04-13 23:22:00 +0000631 (unsigned long) statbuf.st_mode,
632 (unsigned long) statbuf.st_uid,
633 (unsigned long) statbuf.st_gid,
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100634 (unsigned long long) statbuf.st_dev,
635 (unsigned long long) statbuf.st_ino,
Denis Vlasenko87468852007-04-13 23:22:00 +0000636 (unsigned long) statbuf.st_nlink,
637 (unsigned long) major(statbuf.st_rdev),
638 (unsigned long) minor(statbuf.st_rdev),
639 (unsigned long) statbuf.st_atime,
640 (unsigned long) statbuf.st_mtime,
641 (unsigned long) statbuf.st_ctime,
642 (unsigned long) statbuf.st_blksize
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000643 );
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100644# if ENABLE_SELINUX
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000645 if (option_mask32 & OPT_SELINUX)
Denis Vlasenko49622d72007-03-10 16:58:49 +0000646 printf(" %lc\n", *scontext);
647 else
Denis Vlasenko4daad902007-09-27 10:20:47 +0000648 bb_putchar('\n');
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100649# endif
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000650 } else {
651 char *linkname = NULL;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000652 struct passwd *pw_ent;
653 struct group *gw_ent;
Alexander Shishkina7027bf2010-10-21 00:24:05 +0200654
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000655 gw_ent = getgrgid(statbuf.st_gid);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000656 pw_ent = getpwuid(statbuf.st_uid);
657
658 if (S_ISLNK(statbuf.st_mode))
Denis Vlasenko6ca04442007-02-11 16:19:28 +0000659 linkname = xmalloc_readlink_or_warn(filename);
Alexander Shishkina7027bf2010-10-21 00:24:05 +0200660 if (linkname) {
Sebd2d327d2010-06-12 21:57:50 +0200661 printf(" File: '%s' -> '%s'\n", filename, linkname);
Alexander Shishkina7027bf2010-10-21 00:24:05 +0200662 free(linkname);
663 } else {
Sebd2d327d2010-06-12 21:57:50 +0200664 printf(" File: '%s'\n", filename);
Alexander Shishkina7027bf2010-10-21 00:24:05 +0200665 }
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000666
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100667 printf(" Size: %-10llu\tBlocks: %-10llu IO Block: %-6lu %s\n"
668 "Device: %llxh/%llud\tInode: %-10llu Links: %-5lu",
669 (unsigned long long) statbuf.st_size,
670 (unsigned long long) statbuf.st_blocks,
Denis Vlasenko87468852007-04-13 23:22:00 +0000671 (unsigned long) statbuf.st_blksize,
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000672 file_type(&statbuf),
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100673 (unsigned long long) statbuf.st_dev,
674 (unsigned long long) statbuf.st_dev,
675 (unsigned long long) statbuf.st_ino,
Denis Vlasenko87468852007-04-13 23:22:00 +0000676 (unsigned long) statbuf.st_nlink);
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000677 if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode))
678 printf(" Device type: %lx,%lx\n",
Denis Vlasenko87468852007-04-13 23:22:00 +0000679 (unsigned long) major(statbuf.st_rdev),
680 (unsigned long) minor(statbuf.st_rdev));
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000681 else
Denis Vlasenko4daad902007-09-27 10:20:47 +0000682 bb_putchar('\n');
Denis Vlasenko49622d72007-03-10 16:58:49 +0000683 printf("Access: (%04lo/%10.10s) Uid: (%5lu/%8s) Gid: (%5lu/%8s)\n",
Denis Vlasenko87468852007-04-13 23:22:00 +0000684 (unsigned long) (statbuf.st_mode & (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)),
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000685 bb_mode_string(statbuf.st_mode),
Denis Vlasenko87468852007-04-13 23:22:00 +0000686 (unsigned long) statbuf.st_uid,
Denis Vlasenkob75fe792008-06-27 22:31:07 +0000687 (pw_ent != NULL) ? pw_ent->pw_name : "UNKNOWN",
Denis Vlasenko87468852007-04-13 23:22:00 +0000688 (unsigned long) statbuf.st_gid,
Denis Vlasenkob75fe792008-06-27 22:31:07 +0000689 (gw_ent != NULL) ? gw_ent->gr_name : "UNKNOWN");
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100690# if ENABLE_SELINUX
Denis Vlasenko49622d72007-03-10 16:58:49 +0000691 printf(" S_Context: %lc\n", *scontext);
Denys Vlasenko5b9b1362010-02-02 03:08:57 +0100692# endif
Eric Lammerts66be9192010-10-30 02:48:20 +0200693 printf("Access: %s\n", human_time(statbuf.st_atime));
694 printf("Modify: %s\n", human_time(statbuf.st_mtime));
695 printf("Change: %s\n", human_time(statbuf.st_ctime));
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000696 }
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200697#endif /* FEATURE_STAT_FORMAT */
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000698 return 1;
699}
700
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000701int stat_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenkoe992bae2009-11-28 15:18:53 +0100702int stat_main(int argc UNUSED_PARAM, char **argv)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000703{
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000704 IF_FEATURE_STAT_FORMAT(char *format = NULL;)
Bernhard Reutner-Fischer0e6ab012007-04-04 13:58:33 +0000705 int i;
Denys Vlasenkoe992bae2009-11-28 15:18:53 +0100706 int ok;
707 unsigned opts;
Denis Vlasenko85c24712008-03-17 09:04:04 +0000708 statfunc_ptr statfunc = do_stat;
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000709
Denys Vlasenkoe992bae2009-11-28 15:18:53 +0100710 opt_complementary = "-1"; /* min one arg */
711 opts = getopt32(argv, "ftL"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000712 IF_SELINUX("Z")
713 IF_FEATURE_STAT_FORMAT("c:", &format)
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000714 );
Denys Vlasenkoe992bae2009-11-28 15:18:53 +0100715 if (opts & OPT_FILESYS) /* -f */
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000716 statfunc = do_statfs;
Denis Vlasenko49622d72007-03-10 16:58:49 +0000717#if ENABLE_SELINUX
Denys Vlasenkoe992bae2009-11-28 15:18:53 +0100718 if (opts & OPT_SELINUX) {
Denis Vlasenko49622d72007-03-10 16:58:49 +0000719 selinux_or_die();
720 }
Denys Vlasenkoe992bae2009-11-28 15:18:53 +0100721#endif
722 ok = 1;
723 argv += optind;
724 for (i = 0; argv[i]; ++i)
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000725 ok &= statfunc(argv[i] IF_FEATURE_STAT_FORMAT(, format));
Mike Frysinger9b5f71e2005-04-23 06:26:38 +0000726
727 return (ok ? EXIT_SUCCESS : EXIT_FAILURE);
728}