"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 2 | /* |
| 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 Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 8 | * Copyright (C) 2006 by Yoshinori Sato <ysato@users.sourceforge.jp> |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 9 | * |
| 10 | * Written by Michael Meskes |
| 11 | * Taken from coreutils and turned into a busybox applet by Mike Frysinger |
| 12 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 13 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 14 | */ |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 15 | //config:config STAT |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 16 | //config: bool "stat (11 kb)" |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 17 | //config: default y |
| 18 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 19 | //config: display file or filesystem status. |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 20 | //config: |
| 21 | //config:config FEATURE_STAT_FORMAT |
| 22 | //config: bool "Enable custom formats (-c)" |
| 23 | //config: default y |
| 24 | //config: depends on STAT |
| 25 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 26 | //config: Without this, stat will not support the '-c format' option where |
| 27 | //config: users can pass a custom format string for output. This adds about |
| 28 | //config: 7k to a nonstatic build on amd64. |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 29 | //config: |
| 30 | //config:config FEATURE_STAT_FILESYSTEM |
| 31 | //config: bool "Enable display of filesystem status (-f)" |
| 32 | //config: default y |
| 33 | //config: depends on STAT |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 34 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 35 | //config: Without this, stat will not support the '-f' option to display |
| 36 | //config: information about filesystem status. |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 37 | |
Denys Vlasenko | 248a67f | 2017-08-07 18:18:09 +0200 | [diff] [blame] | 38 | //applet:IF_STAT(APPLET_NOEXEC(stat, stat, BB_DIR_BIN, BB_SUID_DROP, stat)) |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 39 | |
| 40 | //kbuild:lib-$(CONFIG_STAT) += stat.o |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 41 | |
| 42 | //usage:#define stat_trivial_usage |
Denys Vlasenko | 11f1a25 | 2020-12-13 19:04:19 +0100 | [diff] [blame] | 43 | //usage: "[-lt"IF_FEATURE_STAT_FILESYSTEM("f")"] "IF_FEATURE_STAT_FORMAT("[-c FMT] ")"FILE..." |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 44 | //usage:#define stat_full_usage "\n\n" |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 45 | //usage: "Display file" |
| 46 | //usage: IF_FEATURE_STAT_FILESYSTEM(" (default) or filesystem") |
| 47 | //usage: " status\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 48 | //usage: IF_FEATURE_STAT_FORMAT( |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 49 | //usage: "\n -c FMT Use the specified format" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 50 | //usage: ) |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 51 | //usage: IF_FEATURE_STAT_FILESYSTEM( |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 52 | //usage: "\n -f Display filesystem status" |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 53 | //usage: ) |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 54 | //usage: "\n -L Follow links" |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 55 | //usage: "\n -t Terse display" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 56 | //usage: IF_SELINUX( |
| 57 | //usage: "\n -Z Print security context" |
| 58 | //usage: ) |
| 59 | //usage: IF_FEATURE_STAT_FORMAT( |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 60 | //usage: "\n\nFMT sequences"IF_FEATURE_STAT_FILESYSTEM(" for files")":\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 61 | //usage: " %a Access rights in octal\n" |
| 62 | //usage: " %A Access rights in human readable form\n" |
| 63 | //usage: " %b Number of blocks allocated (see %B)\n" |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 64 | //usage: " %B Size in bytes of each block reported by %b\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 65 | //usage: " %d Device number in decimal\n" |
| 66 | //usage: " %D Device number in hex\n" |
| 67 | //usage: " %f Raw mode in hex\n" |
| 68 | //usage: " %F File type\n" |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 69 | //usage: " %g Group ID\n" |
| 70 | //usage: " %G Group name\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 71 | //usage: " %h Number of hard links\n" |
| 72 | //usage: " %i Inode number\n" |
| 73 | //usage: " %n File name\n" |
| 74 | //usage: " %N File name, with -> TARGET if symlink\n" |
| 75 | //usage: " %o I/O block size\n" |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 76 | //usage: " %s Total size in bytes\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 77 | //usage: " %t Major device type in hex\n" |
| 78 | //usage: " %T Minor device type in hex\n" |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 79 | //usage: " %u User ID\n" |
| 80 | //usage: " %U User name\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 81 | //usage: " %x Time of last access\n" |
| 82 | //usage: " %X Time of last access as seconds since Epoch\n" |
| 83 | //usage: " %y Time of last modification\n" |
| 84 | //usage: " %Y Time of last modification as seconds since Epoch\n" |
| 85 | //usage: " %z Time of last change\n" |
| 86 | //usage: " %Z Time of last change as seconds since Epoch\n" |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 87 | //usage: IF_FEATURE_STAT_FILESYSTEM( |
| 88 | //usage: "\nFMT sequences for file systems:\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 89 | //usage: " %a Free blocks available to non-superuser\n" |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 90 | //usage: " %b Total data blocks\n" |
| 91 | //usage: " %c Total file nodes\n" |
| 92 | //usage: " %d Free file nodes\n" |
| 93 | //usage: " %f Free blocks\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 94 | //usage: IF_SELINUX( |
| 95 | //usage: " %C Security context in selinux\n" |
| 96 | //usage: ) |
| 97 | //usage: " %i File System ID in hex\n" |
| 98 | //usage: " %l Maximum length of filenames\n" |
| 99 | //usage: " %n File name\n" |
| 100 | //usage: " %s Block size (for faster transfer)\n" |
| 101 | //usage: " %S Fundamental block size (for block counts)\n" |
| 102 | //usage: " %t Type in hex\n" |
| 103 | //usage: " %T Type in human readable form" |
| 104 | //usage: ) |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 105 | //usage: ) |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 106 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 107 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 108 | #include "common_bufsiz.h" |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 109 | |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 110 | enum { |
| 111 | OPT_TERSE = (1 << 0), |
| 112 | OPT_DEREFERENCE = (1 << 1), |
| 113 | OPT_FILESYS = (1 << 2) * ENABLE_FEATURE_STAT_FILESYSTEM, |
| 114 | OPT_SELINUX = (1 << (2+ENABLE_FEATURE_STAT_FILESYSTEM)) * ENABLE_SELINUX, |
| 115 | }; |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 116 | |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 117 | #if ENABLE_FEATURE_STAT_FORMAT |
| 118 | typedef bool (*statfunc_ptr)(const char *, const char *); |
| 119 | #else |
| 120 | typedef bool (*statfunc_ptr)(const char *); |
| 121 | #endif |
| 122 | |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 123 | static const char *file_type(const struct stat *st) |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 124 | { |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 125 | /* See POSIX 1003.1-2001 XCU Table 4-8 lines 17093-17107 |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 126 | * for some of these formats. |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 127 | * To keep diagnostics grammatical in English, the |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 128 | * returned string must start with a consonant. |
| 129 | */ |
| 130 | if (S_ISREG(st->st_mode)) return st->st_size == 0 ? "regular empty file" : "regular file"; |
| 131 | if (S_ISDIR(st->st_mode)) return "directory"; |
| 132 | if (S_ISBLK(st->st_mode)) return "block special file"; |
| 133 | if (S_ISCHR(st->st_mode)) return "character special file"; |
| 134 | if (S_ISFIFO(st->st_mode)) return "fifo"; |
| 135 | if (S_ISLNK(st->st_mode)) return "symbolic link"; |
| 136 | if (S_ISSOCK(st->st_mode)) return "socket"; |
Tias Guns | a1ec841 | 2012-06-03 16:43:06 +0200 | [diff] [blame] | 137 | #ifdef S_TYPEISMQ |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 138 | if (S_TYPEISMQ(st)) return "message queue"; |
Tias Guns | a1ec841 | 2012-06-03 16:43:06 +0200 | [diff] [blame] | 139 | #endif |
| 140 | #ifdef S_TYPEISSEM |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 141 | if (S_TYPEISSEM(st)) return "semaphore"; |
Tias Guns | a1ec841 | 2012-06-03 16:43:06 +0200 | [diff] [blame] | 142 | #endif |
| 143 | #ifdef S_TYPEISSHM |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 144 | if (S_TYPEISSHM(st)) return "shared memory object"; |
Tias Guns | a1ec841 | 2012-06-03 16:43:06 +0200 | [diff] [blame] | 145 | #endif |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 146 | #ifdef S_TYPEISTMO |
| 147 | if (S_TYPEISTMO(st)) return "typed memory object"; |
| 148 | #endif |
| 149 | return "weird file"; |
| 150 | } |
| 151 | |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 152 | static const char *human_time(struct timespec *ts) |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 153 | { |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 154 | char fmt[sizeof("%Y-%m-%d %H:%M:%S.123456789 %z") + /*paranoia*/ 8]; |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 155 | |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 156 | /* coreutils 6.3 compat */ |
Denys Vlasenko | 9de2e5a | 2016-04-21 18:38:51 +0200 | [diff] [blame] | 157 | #define buf bb_common_bufsiz1 |
| 158 | setup_common_bufsiz(); |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 159 | |
| 160 | sprintf(stpcpy(fmt, "%Y-%m-%d %H:%M:%S"), ".%09u %%z", (unsigned)ts->tv_nsec); |
| 161 | strftime(buf, COMMON_BUFSIZE, fmt, localtime(&ts->tv_sec)); |
Denis Vlasenko | 5d148e2 | 2006-11-21 00:12:09 +0000 | [diff] [blame] | 162 | return buf; |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 163 | #undef buf |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 164 | } |
| 165 | |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 166 | #if ENABLE_FEATURE_STAT_FILESYSTEM |
Ron Yorston | e202638 | 2019-03-18 11:14:52 +0000 | [diff] [blame] | 167 | #define FS_TYPE_LIST \ |
| 168 | FS_TYPE(0xADFF, "affs") \ |
| 169 | FS_TYPE(0x1CD1, "devpts") \ |
| 170 | FS_TYPE(0x137D, "ext") \ |
| 171 | FS_TYPE(0xEF51, "ext2") \ |
| 172 | FS_TYPE(0xEF53, "ext2/ext3") \ |
| 173 | FS_TYPE(0x3153464a, "jfs") \ |
| 174 | FS_TYPE(0x58465342, "xfs") \ |
| 175 | FS_TYPE(0xF995E849, "hpfs") \ |
| 176 | FS_TYPE(0x9660, "isofs") \ |
| 177 | FS_TYPE(0x4000, "isofs") \ |
| 178 | FS_TYPE(0x4004, "isofs") \ |
| 179 | FS_TYPE(0x137F, "minix") \ |
| 180 | FS_TYPE(0x138F, "minix (30 char.)") \ |
| 181 | FS_TYPE(0x2468, "minix v2") \ |
| 182 | FS_TYPE(0x2478, "minix v2 (30 char.)") \ |
| 183 | FS_TYPE(0x4d44, "msdos") \ |
| 184 | FS_TYPE(0x4006, "fat") \ |
| 185 | FS_TYPE(0x564c, "novell") \ |
| 186 | FS_TYPE(0x6969, "nfs") \ |
| 187 | FS_TYPE(0x9fa0, "proc") \ |
| 188 | FS_TYPE(0x517B, "smb") \ |
| 189 | FS_TYPE(0x012FF7B4, "xenix") \ |
| 190 | FS_TYPE(0x012FF7B5, "sysv4") \ |
| 191 | FS_TYPE(0x012FF7B6, "sysv2") \ |
| 192 | FS_TYPE(0x012FF7B7, "coh") \ |
| 193 | FS_TYPE(0x00011954, "ufs") \ |
| 194 | FS_TYPE(0x012FD16D, "xia") \ |
| 195 | FS_TYPE(0x5346544e, "ntfs") \ |
| 196 | FS_TYPE(0x1021994, "tmpfs") \ |
| 197 | FS_TYPE(0x52654973, "reiserfs") \ |
| 198 | FS_TYPE(0x28cd3d45, "cramfs") \ |
| 199 | FS_TYPE(0x7275, "romfs") \ |
| 200 | FS_TYPE(0x858458f6, "ramfs") \ |
| 201 | FS_TYPE(0x73717368, "squashfs") \ |
| 202 | FS_TYPE(0x62656572, "sysfs") |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 203 | /* Return the type of the specified file system. |
| 204 | * Some systems have statfvs.f_basetype[FSTYPSZ]. (AIX, HP-UX, and Solaris) |
| 205 | * Others have statfs.f_fstypename[MFSNAMELEN]. (NetBSD 1.5.2) |
| 206 | * Still others have neither and have to get by with f_type (Linux). |
| 207 | */ |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 208 | static const char *human_fstype(uint32_t f_type) |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 209 | { |
Ron Yorston | e202638 | 2019-03-18 11:14:52 +0000 | [diff] [blame] | 210 | # define FS_TYPE(type, name) type, |
Denys Vlasenko | 965b795 | 2020-11-30 13:03:03 +0100 | [diff] [blame] | 211 | static const uint32_t fstype[] ALIGN4 = { |
Ron Yorston | e202638 | 2019-03-18 11:14:52 +0000 | [diff] [blame] | 212 | FS_TYPE_LIST |
Mike Frysinger | 408ae21 | 2005-04-24 04:11:44 +0000 | [diff] [blame] | 213 | }; |
Ron Yorston | e202638 | 2019-03-18 11:14:52 +0000 | [diff] [blame] | 214 | # undef FS_TYPE |
| 215 | # define FS_TYPE(type, name) name"\0" |
| 216 | static const char humanname[] ALIGN1 = |
| 217 | FS_TYPE_LIST |
| 218 | "UNKNOWN"; |
| 219 | # undef FS_TYPE |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 220 | int i; |
| 221 | |
Ron Yorston | e202638 | 2019-03-18 11:14:52 +0000 | [diff] [blame] | 222 | for (i = 0; i < ARRAY_SIZE(fstype); ++i) |
| 223 | if (fstype[i] == f_type) |
Rob Landley | 0a7c8ef | 2006-02-22 17:01:00 +0000 | [diff] [blame] | 224 | break; |
Ron Yorston | e202638 | 2019-03-18 11:14:52 +0000 | [diff] [blame] | 225 | return nth_string(humanname, i); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 226 | } |
| 227 | |
Denis Vlasenko | 98f5cdf | 2008-11-11 22:25:34 +0000 | [diff] [blame] | 228 | /* "man statfs" says that statfsbuf->f_fsid is a mess */ |
| 229 | /* coreutils treats it as an array of ints, most significant first */ |
| 230 | static unsigned long long get_f_fsid(const struct statfs *statfsbuf) |
| 231 | { |
| 232 | const unsigned *p = (const void*) &statfsbuf->f_fsid; |
| 233 | unsigned sz = sizeof(statfsbuf->f_fsid) / sizeof(unsigned); |
| 234 | unsigned long long r = 0; |
| 235 | |
| 236 | do |
| 237 | r = (r << (sizeof(unsigned)*8)) | *p++; |
| 238 | while (--sz > 0); |
| 239 | return r; |
| 240 | } |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 241 | #endif /* FEATURE_STAT_FILESYSTEM */ |
Denis Vlasenko | 98f5cdf | 2008-11-11 22:25:34 +0000 | [diff] [blame] | 242 | |
Denis Vlasenko | 86c285d | 2008-11-13 21:53:32 +0000 | [diff] [blame] | 243 | #if ENABLE_FEATURE_STAT_FORMAT |
| 244 | static void strcatc(char *str, char c) |
| 245 | { |
| 246 | int len = strlen(str); |
| 247 | str[len++] = c; |
| 248 | str[len] = '\0'; |
| 249 | } |
| 250 | |
| 251 | static void printfs(char *pformat, const char *msg) |
| 252 | { |
| 253 | strcatc(pformat, 's'); |
| 254 | printf(pformat, msg); |
| 255 | } |
| 256 | |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 257 | #if ENABLE_FEATURE_STAT_FILESYSTEM |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 258 | /* print statfs info */ |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 259 | static void FAST_FUNC print_statfs(char *pformat, const char m, |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 260 | const char *const filename, const void *data |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 261 | IF_SELINUX(, security_context_t scontext)) |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 262 | { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 263 | const struct statfs *statfsbuf = data; |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 264 | if (m == 'n') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 265 | printfs(pformat, filename); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 266 | } else if (m == 'i') { |
Denis Vlasenko | 98f5cdf | 2008-11-11 22:25:34 +0000 | [diff] [blame] | 267 | strcat(pformat, "llx"); |
| 268 | printf(pformat, get_f_fsid(statfsbuf)); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 269 | } else if (m == 'l') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 270 | strcat(pformat, "lu"); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 271 | printf(pformat, (unsigned long) statfsbuf->f_namelen); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 272 | } else if (m == 't') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 273 | strcat(pformat, "lx"); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 274 | printf(pformat, (unsigned long) statfsbuf->f_type); /* no equiv */ |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 275 | } else if (m == 'T') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 276 | printfs(pformat, human_fstype(statfsbuf->f_type)); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 277 | } else if (m == 'b') { |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 278 | strcat(pformat, "llu"); |
| 279 | printf(pformat, (unsigned long long) statfsbuf->f_blocks); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 280 | } else if (m == 'f') { |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 281 | strcat(pformat, "llu"); |
| 282 | printf(pformat, (unsigned long long) statfsbuf->f_bfree); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 283 | } else if (m == 'a') { |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 284 | strcat(pformat, "llu"); |
| 285 | printf(pformat, (unsigned long long) statfsbuf->f_bavail); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 286 | } else if (m == 's' || m == 'S') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 287 | strcat(pformat, "lu"); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 288 | printf(pformat, (unsigned long) statfsbuf->f_bsize); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 289 | } else if (m == 'c') { |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 290 | strcat(pformat, "llu"); |
| 291 | printf(pformat, (unsigned long long) statfsbuf->f_files); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 292 | } else if (m == 'd') { |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 293 | strcat(pformat, "llu"); |
| 294 | printf(pformat, (unsigned long long) statfsbuf->f_ffree); |
| 295 | # if ENABLE_SELINUX |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 296 | } else if (m == 'C' && (option_mask32 & OPT_SELINUX)) { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 297 | printfs(pformat, scontext); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 298 | # endif |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 299 | } else { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 300 | strcatc(pformat, 'c'); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 301 | printf(pformat, m); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 302 | } |
| 303 | } |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 304 | #endif |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 305 | |
| 306 | /* print stat info */ |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 307 | static void FAST_FUNC print_stat(char *pformat, const char m, |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 308 | const char *const filename, const void *data |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 309 | IF_SELINUX(, security_context_t scontext)) |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 310 | { |
| 311 | #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1)) |
| 312 | struct stat *statbuf = (struct stat *) data; |
| 313 | struct passwd *pw_ent; |
| 314 | struct group *gw_ent; |
| 315 | |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 316 | if (m == 'n') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 317 | printfs(pformat, filename); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 318 | } else if (m == 'N') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 319 | strcatc(pformat, 's'); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 320 | if (S_ISLNK(statbuf->st_mode)) { |
Denis Vlasenko | 6ca0444 | 2007-02-11 16:19:28 +0000 | [diff] [blame] | 321 | char *linkname = xmalloc_readlink_or_warn(filename); |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 322 | if (linkname == NULL) |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 323 | return; |
Seb | d2d327d | 2010-06-12 21:57:50 +0200 | [diff] [blame] | 324 | printf("'%s' -> '%s'", filename, linkname); |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 325 | free(linkname); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 326 | } else { |
| 327 | printf(pformat, filename); |
| 328 | } |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 329 | } else if (m == 'd') { |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 330 | strcat(pformat, "llu"); |
| 331 | printf(pformat, (unsigned long long) statbuf->st_dev); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 332 | } else if (m == 'D') { |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 333 | strcat(pformat, "llx"); |
| 334 | printf(pformat, (unsigned long long) statbuf->st_dev); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 335 | } else if (m == 'i') { |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 336 | strcat(pformat, "llu"); |
| 337 | printf(pformat, (unsigned long long) statbuf->st_ino); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 338 | } else if (m == 'a') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 339 | strcat(pformat, "lo"); |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 340 | printf(pformat, (unsigned long) (statbuf->st_mode & (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO))); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 341 | } else if (m == 'A') { |
Denys Vlasenko | 59ac467 | 2021-09-17 01:13:58 +0200 | [diff] [blame] | 342 | char modestr[12]; |
| 343 | printfs(pformat, bb_mode_string(modestr, statbuf->st_mode)); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 344 | } else if (m == 'f') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 345 | strcat(pformat, "lx"); |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 346 | printf(pformat, (unsigned long) statbuf->st_mode); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 347 | } else if (m == 'F') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 348 | printfs(pformat, file_type(statbuf)); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 349 | } else if (m == 'h') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 350 | strcat(pformat, "lu"); |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 351 | printf(pformat, (unsigned long) statbuf->st_nlink); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 352 | } else if (m == 'u') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 353 | strcat(pformat, "lu"); |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 354 | printf(pformat, (unsigned long) statbuf->st_uid); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 355 | } else if (m == 'U') { |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 356 | pw_ent = getpwuid(statbuf->st_uid); |
Denis Vlasenko | b75fe79 | 2008-06-27 22:31:07 +0000 | [diff] [blame] | 357 | printfs(pformat, (pw_ent != NULL) ? pw_ent->pw_name : "UNKNOWN"); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 358 | } else if (m == 'g') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 359 | strcat(pformat, "lu"); |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 360 | printf(pformat, (unsigned long) statbuf->st_gid); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 361 | } else if (m == 'G') { |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 362 | gw_ent = getgrgid(statbuf->st_gid); |
Denis Vlasenko | b75fe79 | 2008-06-27 22:31:07 +0000 | [diff] [blame] | 363 | printfs(pformat, (gw_ent != NULL) ? gw_ent->gr_name : "UNKNOWN"); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 364 | } else if (m == 't') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 365 | strcat(pformat, "lx"); |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 366 | printf(pformat, (unsigned long) major(statbuf->st_rdev)); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 367 | } else if (m == 'T') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 368 | strcat(pformat, "lx"); |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 369 | printf(pformat, (unsigned long) minor(statbuf->st_rdev)); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 370 | } else if (m == 's') { |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 371 | strcat(pformat, "llu"); |
| 372 | printf(pformat, (unsigned long long) statbuf->st_size); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 373 | } else if (m == 'B') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 374 | strcat(pformat, "lu"); |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 375 | printf(pformat, (unsigned long) 512); //ST_NBLOCKSIZE |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 376 | } else if (m == 'b') { |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 377 | strcat(pformat, "llu"); |
| 378 | printf(pformat, (unsigned long long) statbuf->st_blocks); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 379 | } else if (m == 'o') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 380 | strcat(pformat, "lu"); |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 381 | printf(pformat, (unsigned long) statbuf->st_blksize); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 382 | } else if (m == 'x') { |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 383 | printfs(pformat, human_time(&statbuf->st_atim)); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 384 | } else if (m == 'X') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 385 | strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu"); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 386 | /* note: (unsigned long) would be wrong: |
| 387 | * imagine (unsigned long64)int32 */ |
| 388 | printf(pformat, (long) statbuf->st_atime); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 389 | } else if (m == 'y') { |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 390 | printfs(pformat, human_time(&statbuf->st_mtim)); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 391 | } else if (m == 'Y') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 392 | strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu"); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 393 | printf(pformat, (long) statbuf->st_mtime); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 394 | } else if (m == 'z') { |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 395 | printfs(pformat, human_time(&statbuf->st_ctim)); |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 396 | } else if (m == 'Z') { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 397 | strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu"); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 398 | printf(pformat, (long) statbuf->st_ctime); |
| 399 | # if ENABLE_SELINUX |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 400 | } else if (m == 'C' && (option_mask32 & OPT_SELINUX)) { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 401 | printfs(pformat, scontext); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 402 | # endif |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 403 | } else { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 404 | strcatc(pformat, 'c'); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 405 | printf(pformat, m); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 406 | } |
| 407 | } |
| 408 | |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 409 | static void print_it(const char *masterformat, |
| 410 | const char *filename, |
| 411 | void FAST_FUNC (*print_func)(char*, char, const char*, const void* IF_SELINUX(, security_context_t scontext)), |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 412 | const void *data |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 413 | IF_SELINUX(, security_context_t scontext)) |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 414 | { |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 415 | /* Create a working copy of the format string */ |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 416 | char *format = xstrdup(masterformat); |
Maninder Singh | 97c6491 | 2015-05-25 13:46:36 +0200 | [diff] [blame] | 417 | /* Add 2 to accommodate our conversion of the stat '%s' format string |
Denis Vlasenko | 5d148e2 | 2006-11-21 00:12:09 +0000 | [diff] [blame] | 418 | * to the printf '%llu' one. */ |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 419 | char *dest = xmalloc(strlen(format) + 2 + 1); |
| 420 | char *b; |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 421 | |
| 422 | b = format; |
| 423 | while (b) { |
Seb | d2d327d | 2010-06-12 21:57:50 +0200 | [diff] [blame] | 424 | /* Each iteration finds next %spec, |
| 425 | * prints preceding string and handles found %spec |
| 426 | */ |
Denis Vlasenko | 5d148e2 | 2006-11-21 00:12:09 +0000 | [diff] [blame] | 427 | size_t len; |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 428 | char *p = strchr(b, '%'); |
Denis Vlasenko | 5d148e2 | 2006-11-21 00:12:09 +0000 | [diff] [blame] | 429 | if (!p) { |
Seb | d2d327d | 2010-06-12 21:57:50 +0200 | [diff] [blame] | 430 | /* coreutils 6.3 always prints newline at the end */ |
Denis Vlasenko | 5d148e2 | 2006-11-21 00:12:09 +0000 | [diff] [blame] | 431 | /*fputs(b, stdout);*/ |
| 432 | puts(b); |
| 433 | break; |
| 434 | } |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 435 | |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 436 | /* dest = "%<modifiers>" */ |
Seb | d2d327d | 2010-06-12 21:57:50 +0200 | [diff] [blame] | 437 | len = 1 + strspn(p + 1, "#-+.I 0123456789"); |
| 438 | memcpy(dest, p, len); |
| 439 | dest[len] = '\0'; |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 440 | |
Seb | d2d327d | 2010-06-12 21:57:50 +0200 | [diff] [blame] | 441 | /* print preceding string */ |
| 442 | *p = '\0'; |
Ron Yorston | cad3fc7 | 2021-02-03 20:47:14 +0100 | [diff] [blame] | 443 | fputs_stdout(b); |
Seb | d2d327d | 2010-06-12 21:57:50 +0200 | [diff] [blame] | 444 | |
| 445 | p += len; |
Denis Vlasenko | 5d148e2 | 2006-11-21 00:12:09 +0000 | [diff] [blame] | 446 | b = p + 1; |
| 447 | switch (*p) { |
| 448 | case '\0': |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 449 | b = NULL; |
Denis Vlasenko | 5d148e2 | 2006-11-21 00:12:09 +0000 | [diff] [blame] | 450 | /* fall through */ |
| 451 | case '%': |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 452 | bb_putchar('%'); |
Denis Vlasenko | 5d148e2 | 2006-11-21 00:12:09 +0000 | [diff] [blame] | 453 | break; |
| 454 | default: |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 455 | /* Completes "%<modifiers>" with specifier and printfs */ |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 456 | print_func(dest, *p, filename, data IF_SELINUX(,scontext)); |
Denis Vlasenko | 5d148e2 | 2006-11-21 00:12:09 +0000 | [diff] [blame] | 457 | break; |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 458 | } |
| 459 | } |
| 460 | |
| 461 | free(format); |
| 462 | free(dest); |
| 463 | } |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 464 | #endif /* FEATURE_STAT_FORMAT */ |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 465 | |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 466 | #if ENABLE_FEATURE_STAT_FILESYSTEM |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 467 | /* Stat the file system and print what we find. */ |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 468 | #if !ENABLE_FEATURE_STAT_FORMAT |
| 469 | #define do_statfs(filename, format) do_statfs(filename) |
| 470 | #endif |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 471 | static bool do_statfs(const char *filename, const char *format) |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 472 | { |
Denis Vlasenko | 98f5cdf | 2008-11-11 22:25:34 +0000 | [diff] [blame] | 473 | struct statfs statfsbuf; |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 474 | #if !ENABLE_FEATURE_STAT_FORMAT |
| 475 | const char *format; |
| 476 | #endif |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 477 | #if ENABLE_SELINUX |
| 478 | security_context_t scontext = NULL; |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 479 | |
| 480 | if (option_mask32 & OPT_SELINUX) { |
Denis Vlasenko | 501bfe2 | 2007-08-09 08:10:13 +0000 | [diff] [blame] | 481 | if ((option_mask32 & OPT_DEREFERENCE |
| 482 | ? lgetfilecon(filename, &scontext) |
| 483 | : getfilecon(filename, &scontext) |
| 484 | ) < 0 |
| 485 | ) { |
Denys Vlasenko | 9371043 | 2012-09-27 15:35:10 +0200 | [diff] [blame] | 486 | bb_simple_perror_msg(filename); |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 487 | return 0; |
| 488 | } |
| 489 | } |
| 490 | #endif |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 491 | if (statfs(filename, &statfsbuf) != 0) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 492 | bb_perror_msg("can't read file system information for '%s'", filename); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 493 | return 0; |
| 494 | } |
| 495 | |
Denis Vlasenko | 240a1cf | 2007-04-08 16:07:02 +0000 | [diff] [blame] | 496 | #if ENABLE_FEATURE_STAT_FORMAT |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 497 | if (format == NULL) { |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 498 | # if !ENABLE_SELINUX |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 499 | format = (option_mask32 & OPT_TERSE |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 500 | ? "%n %i %l %t %s %b %f %a %c %d" |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 501 | : " File: \"%n\"\n" |
| 502 | " ID: %-8i Namelen: %-7l Type: %T\n" |
Mike Frysinger | 726b2cb | 2005-07-26 22:39:56 +0000 | [diff] [blame] | 503 | "Block size: %-10s\n" |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 504 | "Blocks: Total: %-10b Free: %-10f Available: %a\n" |
Denis Vlasenko | 5d148e2 | 2006-11-21 00:12:09 +0000 | [diff] [blame] | 505 | "Inodes: Total: %-10c Free: %d"); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 506 | # else |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 507 | format = (option_mask32 & OPT_TERSE |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 508 | ? (option_mask32 & OPT_SELINUX |
| 509 | ? "%n %i %l %t %s %b %f %a %c %d %C" |
| 510 | : "%n %i %l %t %s %b %f %a %c %d") |
| 511 | : (option_mask32 & OPT_SELINUX |
| 512 | ? " File: \"%n\"\n" |
| 513 | " ID: %-8i Namelen: %-7l Type: %T\n" |
| 514 | "Block size: %-10s\n" |
| 515 | "Blocks: Total: %-10b Free: %-10f Available: %a\n" |
| 516 | "Inodes: Total: %-10c Free: %d" |
| 517 | " S_context: %C" |
| 518 | : " File: \"%n\"\n" |
| 519 | " ID: %-8i Namelen: %-7l Type: %T\n" |
| 520 | "Block size: %-10s\n" |
| 521 | "Blocks: Total: %-10b Free: %-10f Available: %a\n" |
| 522 | "Inodes: Total: %-10c Free: %d") |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 523 | ); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 524 | # endif /* SELINUX */ |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 525 | } |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 526 | print_it(format, filename, print_statfs, &statfsbuf IF_SELINUX(, scontext)); |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 527 | #else /* !FEATURE_STAT_FORMAT */ |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 528 | format = (option_mask32 & OPT_TERSE |
Bernhard Reutner-Fischer | d409c3a | 2006-03-29 22:34:47 +0000 | [diff] [blame] | 529 | ? "%s %llx %lu " |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 530 | : " File: \"%s\"\n" |
Denis Vlasenko | 98f5cdf | 2008-11-11 22:25:34 +0000 | [diff] [blame] | 531 | " ID: %-8llx Namelen: %-7lu "); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 532 | printf(format, |
| 533 | filename, |
Denis Vlasenko | 98f5cdf | 2008-11-11 22:25:34 +0000 | [diff] [blame] | 534 | get_f_fsid(&statfsbuf), |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 535 | statfsbuf.f_namelen); |
| 536 | |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 537 | if (option_mask32 & OPT_TERSE) |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 538 | printf("%lx ", (unsigned long) statfsbuf.f_type); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 539 | else |
| 540 | printf("Type: %s\n", human_fstype(statfsbuf.f_type)); |
| 541 | |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 542 | # if !ENABLE_SELINUX |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 543 | format = (option_mask32 & OPT_TERSE |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 544 | ? "%lu %llu %llu %llu %llu %llu\n" |
Mike Frysinger | 726b2cb | 2005-07-26 22:39:56 +0000 | [diff] [blame] | 545 | : "Block size: %-10lu\n" |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 546 | "Blocks: Total: %-10llu Free: %-10llu Available: %llu\n" |
| 547 | "Inodes: Total: %-10llu Free: %llu\n"); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 548 | printf(format, |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 549 | (unsigned long) statfsbuf.f_bsize, |
| 550 | (unsigned long long) statfsbuf.f_blocks, |
| 551 | (unsigned long long) statfsbuf.f_bfree, |
| 552 | (unsigned long long) statfsbuf.f_bavail, |
| 553 | (unsigned long long) statfsbuf.f_files, |
| 554 | (unsigned long long) statfsbuf.f_ffree); |
| 555 | # else |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 556 | format = (option_mask32 & OPT_TERSE |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 557 | ? (option_mask32 & OPT_SELINUX ? "%lu %llu %llu %llu %llu %llu %C\n" : "%lu %llu %llu %llu %llu %llu\n") |
| 558 | : (option_mask32 & OPT_SELINUX |
| 559 | ? "Block size: %-10lu\n" |
| 560 | "Blocks: Total: %-10llu Free: %-10llu Available: %llu\n" |
| 561 | "Inodes: Total: %-10llu Free: %llu" |
| 562 | "S_context: %C\n" |
| 563 | : "Block size: %-10lu\n" |
| 564 | "Blocks: Total: %-10llu Free: %-10llu Available: %llu\n" |
| 565 | "Inodes: Total: %-10llu Free: %llu\n" |
| 566 | ) |
| 567 | ); |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 568 | printf(format, |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 569 | (unsigned long) statfsbuf.f_bsize, |
| 570 | (unsigned long long) statfsbuf.f_blocks, |
| 571 | (unsigned long long) statfsbuf.f_bfree, |
| 572 | (unsigned long long) statfsbuf.f_bavail, |
| 573 | (unsigned long long) statfsbuf.f_files, |
| 574 | (unsigned long long) statfsbuf.f_ffree, |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 575 | scontext); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 576 | |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 577 | if (scontext) |
| 578 | freecon(scontext); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 579 | # endif |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 580 | #endif /* FEATURE_STAT_FORMAT */ |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 581 | return 1; |
| 582 | } |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 583 | #endif /* FEATURE_STAT_FILESYSTEM */ |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 584 | |
| 585 | /* stat the file and print what we find */ |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 586 | #if !ENABLE_FEATURE_STAT_FORMAT |
| 587 | #define do_stat(filename, format) do_stat(filename) |
| 588 | #endif |
Denis Vlasenko | 91e5203 | 2007-10-05 20:31:23 +0000 | [diff] [blame] | 589 | static bool do_stat(const char *filename, const char *format) |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 590 | { |
| 591 | struct stat statbuf; |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 592 | #if ENABLE_SELINUX |
| 593 | security_context_t scontext = NULL; |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 594 | |
| 595 | if (option_mask32 & OPT_SELINUX) { |
Denis Vlasenko | 501bfe2 | 2007-08-09 08:10:13 +0000 | [diff] [blame] | 596 | if ((option_mask32 & OPT_DEREFERENCE |
| 597 | ? lgetfilecon(filename, &scontext) |
| 598 | : getfilecon(filename, &scontext) |
| 599 | ) < 0 |
| 600 | ) { |
Denys Vlasenko | 9371043 | 2012-09-27 15:35:10 +0200 | [diff] [blame] | 601 | bb_simple_perror_msg(filename); |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 602 | return 0; |
| 603 | } |
| 604 | } |
| 605 | #endif |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 606 | if ((option_mask32 & OPT_DEREFERENCE ? stat : lstat) (filename, &statbuf) != 0) { |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 607 | bb_perror_msg("can't stat '%s'", filename); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 608 | return 0; |
| 609 | } |
| 610 | |
Denis Vlasenko | 240a1cf | 2007-04-08 16:07:02 +0000 | [diff] [blame] | 611 | #if ENABLE_FEATURE_STAT_FORMAT |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 612 | if (format == NULL) { |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 613 | # if !ENABLE_SELINUX |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 614 | if (option_mask32 & OPT_TERSE) { |
Denis Vlasenko | 5d148e2 | 2006-11-21 00:12:09 +0000 | [diff] [blame] | 615 | format = "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o"; |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 616 | } else { |
| 617 | if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode)) { |
| 618 | format = |
Seb | d2d327d | 2010-06-12 21:57:50 +0200 | [diff] [blame] | 619 | " File: %N\n" |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 620 | " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n" |
| 621 | "Device: %Dh/%dd\tInode: %-10i Links: %-5h" |
| 622 | " Device type: %t,%T\n" |
| 623 | "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 624 | "Access: %x\n" "Modify: %y\n" "Change: %z"; |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 625 | } else { |
| 626 | format = |
Seb | d2d327d | 2010-06-12 21:57:50 +0200 | [diff] [blame] | 627 | " File: %N\n" |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 628 | " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n" |
| 629 | "Device: %Dh/%dd\tInode: %-10i Links: %h\n" |
| 630 | "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 631 | "Access: %x\n" "Modify: %y\n" "Change: %z"; |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 632 | } |
| 633 | } |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 634 | # else |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 635 | if (option_mask32 & OPT_TERSE) { |
| 636 | format = (option_mask32 & OPT_SELINUX ? |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 637 | "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o %C\n" |
| 638 | : |
| 639 | "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o\n" |
| 640 | ); |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 641 | } else { |
| 642 | if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode)) { |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 643 | format = (option_mask32 & OPT_SELINUX ? |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 644 | " File: %N\n" |
| 645 | " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n" |
| 646 | "Device: %Dh/%dd\tInode: %-10i Links: %-5h" |
| 647 | " Device type: %t,%T\n" |
| 648 | "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" |
| 649 | " S_Context: %C\n" |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 650 | "Access: %x\n" "Modify: %y\n" "Change: %z" |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 651 | : |
| 652 | " File: %N\n" |
| 653 | " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n" |
| 654 | "Device: %Dh/%dd\tInode: %-10i Links: %-5h" |
| 655 | " Device type: %t,%T\n" |
| 656 | "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 657 | "Access: %x\n" "Modify: %y\n" "Change: %z" |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 658 | ); |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 659 | } else { |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 660 | format = (option_mask32 & OPT_SELINUX ? |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 661 | " File: %N\n" |
| 662 | " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n" |
| 663 | "Device: %Dh/%dd\tInode: %-10i Links: %h\n" |
| 664 | "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" |
| 665 | "S_Context: %C\n" |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 666 | "Access: %x\n" "Modify: %y\n" "Change: %z" |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 667 | : |
| 668 | " File: %N\n" |
| 669 | " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n" |
| 670 | "Device: %Dh/%dd\tInode: %-10i Links: %h\n" |
| 671 | "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 672 | "Access: %x\n" "Modify: %y\n" "Change: %z" |
Denys Vlasenko | 60cb48c | 2013-01-14 15:57:44 +0100 | [diff] [blame] | 673 | ); |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 674 | } |
| 675 | } |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 676 | # endif |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 677 | } |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 678 | print_it(format, filename, print_stat, &statbuf IF_SELINUX(, scontext)); |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 679 | #else /* FEATURE_STAT_FORMAT */ |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 680 | if (option_mask32 & OPT_TERSE) { |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 681 | printf("%s %llu %llu %lx %lu %lu %llx %llu %lu %lx %lx %lu %lu %lu %lu" |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 682 | IF_NOT_SELINUX("\n"), |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 683 | filename, |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 684 | (unsigned long long) statbuf.st_size, |
| 685 | (unsigned long long) statbuf.st_blocks, |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 686 | (unsigned long) statbuf.st_mode, |
| 687 | (unsigned long) statbuf.st_uid, |
| 688 | (unsigned long) statbuf.st_gid, |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 689 | (unsigned long long) statbuf.st_dev, |
| 690 | (unsigned long long) statbuf.st_ino, |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 691 | (unsigned long) statbuf.st_nlink, |
| 692 | (unsigned long) major(statbuf.st_rdev), |
| 693 | (unsigned long) minor(statbuf.st_rdev), |
| 694 | (unsigned long) statbuf.st_atime, |
| 695 | (unsigned long) statbuf.st_mtime, |
| 696 | (unsigned long) statbuf.st_ctime, |
| 697 | (unsigned long) statbuf.st_blksize |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 698 | ); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 699 | # if ENABLE_SELINUX |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 700 | if (option_mask32 & OPT_SELINUX) |
Michael Gernoth | 1b487ea | 2014-06-27 14:08:29 +0200 | [diff] [blame] | 701 | printf(" %s\n", scontext); |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 702 | else |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 703 | bb_putchar('\n'); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 704 | # endif |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 705 | } else { |
Denys Vlasenko | 59ac467 | 2021-09-17 01:13:58 +0200 | [diff] [blame] | 706 | char modestr[12]; |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 707 | char *linkname = NULL; |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 708 | struct passwd *pw_ent; |
| 709 | struct group *gw_ent; |
Alexander Shishkin | a7027bf | 2010-10-21 00:24:05 +0200 | [diff] [blame] | 710 | |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 711 | gw_ent = getgrgid(statbuf.st_gid); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 712 | pw_ent = getpwuid(statbuf.st_uid); |
| 713 | |
| 714 | if (S_ISLNK(statbuf.st_mode)) |
Denis Vlasenko | 6ca0444 | 2007-02-11 16:19:28 +0000 | [diff] [blame] | 715 | linkname = xmalloc_readlink_or_warn(filename); |
Alexander Shishkin | a7027bf | 2010-10-21 00:24:05 +0200 | [diff] [blame] | 716 | if (linkname) { |
Seb | d2d327d | 2010-06-12 21:57:50 +0200 | [diff] [blame] | 717 | printf(" File: '%s' -> '%s'\n", filename, linkname); |
Alexander Shishkin | a7027bf | 2010-10-21 00:24:05 +0200 | [diff] [blame] | 718 | free(linkname); |
| 719 | } else { |
Seb | d2d327d | 2010-06-12 21:57:50 +0200 | [diff] [blame] | 720 | printf(" File: '%s'\n", filename); |
Alexander Shishkin | a7027bf | 2010-10-21 00:24:05 +0200 | [diff] [blame] | 721 | } |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 722 | |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 723 | printf(" Size: %-10llu\tBlocks: %-10llu IO Block: %-6lu %s\n" |
| 724 | "Device: %llxh/%llud\tInode: %-10llu Links: %-5lu", |
| 725 | (unsigned long long) statbuf.st_size, |
| 726 | (unsigned long long) statbuf.st_blocks, |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 727 | (unsigned long) statbuf.st_blksize, |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 728 | file_type(&statbuf), |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 729 | (unsigned long long) statbuf.st_dev, |
| 730 | (unsigned long long) statbuf.st_dev, |
| 731 | (unsigned long long) statbuf.st_ino, |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 732 | (unsigned long) statbuf.st_nlink); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 733 | if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode)) |
| 734 | printf(" Device type: %lx,%lx\n", |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 735 | (unsigned long) major(statbuf.st_rdev), |
| 736 | (unsigned long) minor(statbuf.st_rdev)); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 737 | else |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 738 | bb_putchar('\n'); |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 739 | printf("Access: (%04lo/%10.10s) Uid: (%5lu/%8s) Gid: (%5lu/%8s)\n", |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 740 | (unsigned long) (statbuf.st_mode & (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)), |
Denys Vlasenko | 59ac467 | 2021-09-17 01:13:58 +0200 | [diff] [blame] | 741 | bb_mode_string(modestr, statbuf.st_mode), |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 742 | (unsigned long) statbuf.st_uid, |
Denis Vlasenko | b75fe79 | 2008-06-27 22:31:07 +0000 | [diff] [blame] | 743 | (pw_ent != NULL) ? pw_ent->pw_name : "UNKNOWN", |
Denis Vlasenko | 8746885 | 2007-04-13 23:22:00 +0000 | [diff] [blame] | 744 | (unsigned long) statbuf.st_gid, |
Denis Vlasenko | b75fe79 | 2008-06-27 22:31:07 +0000 | [diff] [blame] | 745 | (gw_ent != NULL) ? gw_ent->gr_name : "UNKNOWN"); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 746 | # if ENABLE_SELINUX |
Michael Gernoth | 1b487ea | 2014-06-27 14:08:29 +0200 | [diff] [blame] | 747 | if (option_mask32 & OPT_SELINUX) |
| 748 | printf(" S_Context: %s\n", scontext); |
Denys Vlasenko | 5b9b136 | 2010-02-02 03:08:57 +0100 | [diff] [blame] | 749 | # endif |
Denys Vlasenko | b81f805 | 2019-08-03 18:08:27 +0200 | [diff] [blame] | 750 | printf("Access: %s\n", human_time(&statbuf.st_atim)); |
| 751 | printf("Modify: %s\n", human_time(&statbuf.st_mtim)); |
| 752 | printf("Change: %s\n", human_time(&statbuf.st_ctim)); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 753 | } |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 754 | #endif /* FEATURE_STAT_FORMAT */ |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 755 | return 1; |
| 756 | } |
| 757 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 758 | int stat_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | e992bae | 2009-11-28 15:18:53 +0100 | [diff] [blame] | 759 | int stat_main(int argc UNUSED_PARAM, char **argv) |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 760 | { |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 761 | IF_FEATURE_STAT_FORMAT(char *format = NULL;) |
Bernhard Reutner-Fischer | 0e6ab01 | 2007-04-04 13:58:33 +0000 | [diff] [blame] | 762 | int i; |
Denys Vlasenko | e992bae | 2009-11-28 15:18:53 +0100 | [diff] [blame] | 763 | int ok; |
Denis Vlasenko | 85c2471 | 2008-03-17 09:04:04 +0000 | [diff] [blame] | 764 | statfunc_ptr statfunc = do_stat; |
Denys Vlasenko | 82d1c1f | 2017-12-31 17:30:02 +0100 | [diff] [blame] | 765 | #if ENABLE_FEATURE_STAT_FILESYSTEM || ENABLE_SELINUX |
| 766 | unsigned opts; |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 767 | |
Denys Vlasenko | 82d1c1f | 2017-12-31 17:30:02 +0100 | [diff] [blame] | 768 | opts = |
| 769 | #endif |
| 770 | getopt32(argv, "^" |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 771 | "tL" |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 772 | IF_FEATURE_STAT_FILESYSTEM("f") |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 773 | IF_SELINUX("Z") |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 774 | IF_FEATURE_STAT_FORMAT("c:") |
| 775 | "\0" "-1" /* min one arg */ |
| 776 | IF_FEATURE_STAT_FORMAT(,&format) |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 777 | ); |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 778 | #if ENABLE_FEATURE_STAT_FILESYSTEM |
Denys Vlasenko | e992bae | 2009-11-28 15:18:53 +0100 | [diff] [blame] | 779 | if (opts & OPT_FILESYS) /* -f */ |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 780 | statfunc = do_statfs; |
Denys Vlasenko | ace8330 | 2015-10-30 22:10:44 +0100 | [diff] [blame] | 781 | #endif |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 782 | #if ENABLE_SELINUX |
Denys Vlasenko | e992bae | 2009-11-28 15:18:53 +0100 | [diff] [blame] | 783 | if (opts & OPT_SELINUX) { |
Denis Vlasenko | 49622d7 | 2007-03-10 16:58:49 +0000 | [diff] [blame] | 784 | selinux_or_die(); |
| 785 | } |
Denys Vlasenko | e992bae | 2009-11-28 15:18:53 +0100 | [diff] [blame] | 786 | #endif |
| 787 | ok = 1; |
| 788 | argv += optind; |
| 789 | for (i = 0; argv[i]; ++i) |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 790 | ok &= statfunc(argv[i] IF_FEATURE_STAT_FORMAT(, format)); |
Mike Frysinger | 9b5f71e | 2005-04-23 06:26:38 +0000 | [diff] [blame] | 791 | |
| 792 | return (ok ? EXIT_SUCCESS : EXIT_FAILURE); |
| 793 | } |