summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2022-10-26 08:38:19 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2022-10-27 09:43:57 +0200
commite6a09861b9a76b5527aa1310cff3d4e772b292b8 (patch)
tree4aec60947a1f1c72342a17c970d5435f080d40f6
parentf9f0c098048f8fa76f9f4945b0fe16e9333530d5 (diff)
downloadbarebox-e6a09861b9a76b5527aa1310cff3d4e772b292b8.tar.gz
barebox-e6a09861b9a76b5527aa1310cff3d4e772b292b8.tar.xz
commands: add new stat command
We have a couple of commands to help with debugging the VFS: ll, devinfo, devlookup, but we lack a command that can just dump all information we have in a struct stat or struct cdev. Add stat as such a command. For most uses, it's not needed, but it can come in handy for development. The stat_print and cdev_print functions underlying it are exported, so they can called for debugging purposes. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20221026063819.2355568-1-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--commands/Kconfig14
-rw-r--r--commands/Makefile1
-rw-r--r--commands/stat.c62
-rw-r--r--fs/fs.c105
-rw-r--r--include/fs.h3
5 files changed, 184 insertions, 1 deletions
diff --git a/commands/Kconfig b/commands/Kconfig
index 9894ecb9aa..2ce990b561 100644
--- a/commands/Kconfig
+++ b/commands/Kconfig
@@ -947,6 +947,20 @@ config CMD_LS
-C column format (opposite of long format)
-R list subdirectories recursively
+config CMD_STAT
+ tristate
+ prompt "stat"
+ select PRINTF_UUID
+ help
+ Display file status
+
+ Usage: stat [-L] [FILEDIR...]
+
+ Display status information about the specified files or directories.
+
+ Options:
+ -L follow symlinks
+
config CMD_MD5SUM
tristate
select COMPILE_HASH
diff --git a/commands/Makefile b/commands/Makefile
index 068fbb32da..68d0d05365 100644
--- a/commands/Makefile
+++ b/commands/Makefile
@@ -26,6 +26,7 @@ obj-$(CONFIG_CMD_POWEROFF) += poweroff.o
obj-$(CONFIG_CMD_GO) += go.o
obj-$(CONFIG_CMD_PARTITION) += partition.o
obj-$(CONFIG_CMD_LS) += ls.o
+obj-$(CONFIG_CMD_STAT) += stat.o
obj-$(CONFIG_CMD_CD) += cd.o
obj-$(CONFIG_CMD_PWD) += pwd.o
obj-$(CONFIG_CMD_MKDIR) += mkdir.o
diff --git a/commands/stat.c b/commands/stat.c
new file mode 100644
index 0000000000..153eac50f1
--- /dev/null
+++ b/commands/stat.c
@@ -0,0 +1,62 @@
+// SPDX-License-Identifier: GPL-2.0-only
+// SPDX-FileCopyrightText: © 2022 Ahmad Fatoum, Pengutronix
+
+#include <common.h>
+#include <command.h>
+#include <fs.h>
+#include <linux/stat.h>
+#include <errno.h>
+#include <malloc.h>
+#include <getopt.h>
+#include <stringlist.h>
+
+static int do_stat(int argc, char *argv[])
+{
+ int (*statfn)(const char *, struct stat *) = lstat;
+ int ret, opt, exitcode = 0;
+ char **filename;
+ struct stat st;
+
+ while((opt = getopt(argc, argv, "L")) > 0) {
+ switch(opt) {
+ case 'L':
+ statfn = stat;
+ break;
+ default:
+ return COMMAND_ERROR_USAGE;
+ }
+ }
+
+ if (optind == argc)
+ return COMMAND_ERROR_USAGE;
+
+ for (filename = &argv[optind]; *filename; filename++) {
+ ret = statfn(*filename, &st);
+
+ if (ret) {
+ printf("%s: %s: %m\n", argv[0], *filename);
+ exitcode = COMMAND_ERROR;
+ continue;
+ }
+
+ stat_print(*filename, &st);
+ }
+
+ return exitcode;
+}
+
+BAREBOX_CMD_HELP_START(stat)
+BAREBOX_CMD_HELP_TEXT("Display status information about the specified files")
+BAREBOX_CMD_HELP_TEXT("or directories.")
+BAREBOX_CMD_HELP_TEXT("")
+BAREBOX_CMD_HELP_TEXT("Options:")
+BAREBOX_CMD_HELP_OPT ("-L", "follow links")
+BAREBOX_CMD_HELP_END
+
+BAREBOX_CMD_START(stat)
+ .cmd = do_stat,
+ BAREBOX_CMD_DESC("display file status")
+ BAREBOX_CMD_OPTS("[-L] [FILEDIR...]")
+ BAREBOX_CMD_GROUP(CMD_GRP_FILE)
+ BAREBOX_CMD_HELP(cmd_stat_help)
+BAREBOX_CMD_END
diff --git a/fs/fs.c b/fs/fs.c
index 24a3319544..8f21420494 100644
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -67,6 +67,110 @@ char *mkmodestr(unsigned long mode, char *str)
}
EXPORT_SYMBOL(mkmodestr);
+void cdev_print(const struct cdev *cdev)
+{
+ bool uuid_set;
+
+ if (cdev->dev || cdev->master || cdev->partname) {
+ printf("Origin: %s", dev_name(cdev->dev) ?: "None");
+ if (cdev->master)
+ printf("\tMaster: %s", cdev->master->name);
+ if (cdev->partname)
+ printf("\tPartition: %s", cdev->partname);
+ printf("\n");
+ }
+ printf("Ocount: %d\tFlags: 0x%02x", cdev->open, cdev->flags);
+ if (cdev->flags) {
+ printf(" (");
+ if (cdev->flags & DEVFS_IS_CHARACTER_DEV)
+ printf(" cdev");
+ if (cdev->flags & DEVFS_PARTITION_FIXED)
+ printf(" fixed-partition");
+ if (cdev->flags & DEVFS_PARTITION_READONLY)
+ printf(" readonly-partition");
+ if (cdev->flags & DEVFS_PARTITION_FROM_TABLE)
+ printf(" table-partition");
+ if (cdev->flags & DEVFS_IS_MCI_MAIN_PART_DEV)
+ printf(" mci-main-partition");
+ if (cdev->mtd)
+ printf(" mtd");
+ printf(" )");
+ }
+ printf("\n");
+
+ uuid_set = memchr_inv(cdev->uuid, 0x00 ,sizeof(cdev->uuid));
+ if (cdev->filetype || cdev->dos_partition_type || uuid_set) {
+ if (cdev->filetype)
+ printf("Filetype: %s\t", file_type_to_string(cdev->filetype));
+ if (cdev->dos_partition_type)
+ printf("DOS parttype: 0x%02x\t", cdev->dos_partition_type);
+ if (uuid_set)
+ printf("UUID: %pUl", cdev->uuid);
+ printf("\n");
+ }
+}
+EXPORT_SYMBOL(cdev_print);
+
+static struct fs_device_d *get_fsdevice_by_path(const char *path);
+
+void stat_print(const char *filename, const struct stat *st)
+{
+ struct block_device *bdev = NULL;
+ struct fs_device_d *fdev;
+ struct cdev *cdev = NULL;
+ const char *type = NULL;
+ char modestr[11];
+
+ mkmodestr(st->st_mode, modestr);
+
+ switch (st->st_mode & S_IFMT) {
+ case S_IFDIR: type = "directory"; break;
+ case S_IFBLK: type = "block special file"; break;
+ case S_IFCHR: type = "character special file"; break;
+ case S_IFIFO: type = "fifo"; break;
+ case S_IFLNK: type = "symbolic link"; break;
+ case S_IFSOCK: type = "socket"; break;
+ case S_IFREG: type = "regular file"; break;
+ }
+
+ printf(" File: %s\n", filename);
+
+ if (st->st_mode & S_IFCHR) {
+ char *path;
+
+ path = canonicalize_path(filename);
+ if (path) {
+ const char *devicefile = devpath_to_name(path);
+
+ cdev = cdev_by_name(devicefile);
+ if (cdev)
+ bdev = cdev_get_block_device(cdev);
+
+ free(path);
+ }
+ }
+
+ printf(" Size: %-20llu", st->st_size);
+ if (bdev)
+ printf("Blocks: %llu\tIO Block: %u\t",
+ (u64)bdev->num_blocks, 1 << bdev->blockbits);
+
+ if (type)
+ printf(" %s", type);
+
+ fdev = get_fsdevice_by_path(filename);
+
+ printf("\nDevice: %s\tInode: %lu\tLinks: %u\n",
+ fdev ? dev_name(&fdev->dev) : "<unknown>",
+ st->st_ino, st->st_nlink);
+ printf("Access: (%04o/%s)\tUid: (%u)\tGid: (%u)\n",
+ st->st_mode & 07777, modestr, st->st_uid, st->st_gid);
+
+ if (cdev)
+ cdev_print(cdev);
+}
+EXPORT_SYMBOL(stat_print);
+
static char *cwd;
static struct dentry *cwd_dentry;
static struct vfsmount *cwd_mnt;
@@ -91,7 +195,6 @@ postcore_initcall(init_fs);
struct filename;
-static struct fs_device_d *get_fsdevice_by_path(const char *path);
static int filename_lookup(struct filename *name, unsigned flags,
struct path *path);;
static struct filename *getname(const char *filename);
diff --git a/include/fs.h b/include/fs.h
index b501db38ad..f96839f9eb 100644
--- a/include/fs.h
+++ b/include/fs.h
@@ -147,6 +147,9 @@ int ls(const char *path, ulong flags);
char *mkmodestr(unsigned long mode, char *str);
+void stat_print(const char *filename, const struct stat *st);
+void cdev_print(const struct cdev *cdev);
+
char *canonicalize_path(const char *pathname);
char *get_mounted_path(const char *path);