Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * lsattr.c - List file attributes on an ext2 file system |
| 4 | * |
| 5 | * Copyright (C) 1993, 1994 Remy Card <card@masi.ibp.fr> |
| 6 | * Laboratoire MASI, Institut Blaise Pascal |
| 7 | * Universite Pierre et Marie Curie (Paris VI) |
| 8 | * |
| 9 | * This file can be redistributed under the terms of the GNU General |
| 10 | * Public License |
| 11 | */ |
Denys Vlasenko | 000eda4 | 2015-10-18 22:40:23 +0200 | [diff] [blame^] | 12 | //config:config LSATTR |
| 13 | //config: bool "lsattr" |
| 14 | //config: default y |
| 15 | //config: select PLATFORM_LINUX |
| 16 | //config: help |
| 17 | //config: lsattr lists the file attributes on a second extended file system. |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 18 | |
Denys Vlasenko | 000eda4 | 2015-10-18 22:40:23 +0200 | [diff] [blame^] | 19 | //applet:IF_LSATTR(APPLET(lsattr, BB_DIR_BIN, BB_SUID_DROP)) |
| 20 | |
| 21 | //kbuild:lib-$(CONFIG_LSATTR) += lsattr.o e2fs_lib.o |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 22 | |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 23 | //usage:#define lsattr_trivial_usage |
| 24 | //usage: "[-Radlv] [FILE]..." |
| 25 | //usage:#define lsattr_full_usage "\n\n" |
| 26 | //usage: "List file attributes on an ext2 fs\n" |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 27 | //usage: "\n -R Recurse" |
| 28 | //usage: "\n -a Don't hide entries starting with ." |
| 29 | //usage: "\n -d List directory entries instead of contents" |
| 30 | //usage: "\n -l List long flag names" |
| 31 | //usage: "\n -v List the file's version/generation number" |
| 32 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 33 | #include "libbb.h" |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 34 | #include "e2fs_lib.h" |
| 35 | |
| 36 | enum { |
| 37 | OPT_RECUR = 0x1, |
| 38 | OPT_ALL = 0x2, |
| 39 | OPT_DIRS_OPT = 0x4, |
| 40 | OPT_PF_LONG = 0x8, |
| 41 | OPT_GENERATION = 0x10, |
| 42 | }; |
| 43 | |
| 44 | static void list_attributes(const char *name) |
| 45 | { |
| 46 | unsigned long fsflags; |
| 47 | unsigned long generation; |
| 48 | |
Denis Vlasenko | 8acf521 | 2007-04-15 11:48:27 +0000 | [diff] [blame] | 49 | if (fgetflags(name, &fsflags) != 0) |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 50 | goto read_err; |
| 51 | |
| 52 | if (option_mask32 & OPT_GENERATION) { |
Denis Vlasenko | 8acf521 | 2007-04-15 11:48:27 +0000 | [diff] [blame] | 53 | if (fgetversion(name, &generation) != 0) |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 54 | goto read_err; |
| 55 | printf("%5lu ", generation); |
| 56 | } |
| 57 | |
| 58 | if (option_mask32 & OPT_PF_LONG) { |
| 59 | printf("%-28s ", name); |
Denis Vlasenko | 53354ac | 2008-06-07 15:10:29 +0000 | [diff] [blame] | 60 | print_e2flags(stdout, fsflags, PFOPT_LONG); |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 61 | bb_putchar('\n'); |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 62 | } else { |
Denis Vlasenko | 53354ac | 2008-06-07 15:10:29 +0000 | [diff] [blame] | 63 | print_e2flags(stdout, fsflags, 0); |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 64 | printf(" %s\n", name); |
| 65 | } |
| 66 | |
| 67 | return; |
| 68 | read_err: |
| 69 | bb_perror_msg("reading %s", name); |
| 70 | } |
| 71 | |
Denys Vlasenko | d5f1b1b | 2009-06-05 12:06:05 +0200 | [diff] [blame] | 72 | static int FAST_FUNC lsattr_dir_proc(const char *dir_name, |
| 73 | struct dirent *de, |
| 74 | void *private UNUSED_PARAM) |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 75 | { |
| 76 | struct stat st; |
| 77 | char *path; |
| 78 | |
| 79 | path = concat_path_file(dir_name, de->d_name); |
| 80 | |
Denis Vlasenko | 8acf521 | 2007-04-15 11:48:27 +0000 | [diff] [blame] | 81 | if (lstat(path, &st) != 0) |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 82 | bb_perror_msg("stat %s", path); |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 83 | else if (de->d_name[0] != '.' || (option_mask32 & OPT_ALL)) { |
| 84 | list_attributes(path); |
| 85 | if (S_ISDIR(st.st_mode) && (option_mask32 & OPT_RECUR) |
Denis Vlasenko | 8acf521 | 2007-04-15 11:48:27 +0000 | [diff] [blame] | 86 | && !DOT_OR_DOTDOT(de->d_name) |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 87 | ) { |
| 88 | printf("\n%s:\n", path); |
| 89 | iterate_on_dir(path, lsattr_dir_proc, NULL); |
Denis Vlasenko | 4daad90 | 2007-09-27 10:20:47 +0000 | [diff] [blame] | 90 | bb_putchar('\n'); |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 91 | } |
| 92 | } |
| 93 | |
| 94 | free(path); |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 95 | return 0; |
| 96 | } |
| 97 | |
| 98 | static void lsattr_args(const char *name) |
| 99 | { |
| 100 | struct stat st; |
| 101 | |
| 102 | if (lstat(name, &st) == -1) { |
| 103 | bb_perror_msg("stat %s", name); |
| 104 | } else if (S_ISDIR(st.st_mode) && !(option_mask32 & OPT_DIRS_OPT)) { |
| 105 | iterate_on_dir(name, lsattr_dir_proc, NULL); |
| 106 | } else { |
| 107 | list_attributes(name); |
| 108 | } |
| 109 | } |
| 110 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 111 | int lsattr_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 112 | int lsattr_main(int argc UNUSED_PARAM, char **argv) |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 113 | { |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 114 | getopt32(argv, "Radlv"); |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 115 | argv += optind; |
| 116 | |
| 117 | if (!*argv) |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 118 | *--argv = (char*)"."; |
| 119 | do lsattr_args(*argv++); while (*argv); |
Denis Vlasenko | c4f623e | 2006-12-26 01:30:59 +0000 | [diff] [blame] | 120 | |
| 121 | return EXIT_SUCCESS; |
| 122 | } |