diff options
Diffstat (limited to 'miscutils')
| -rw-r--r-- | miscutils/getfattr.c | 136 | ||||
| -rw-r--r-- | miscutils/makedevs.c | 2 | ||||
| -rw-r--r-- | miscutils/setfattr.c | 2 | ||||
| -rw-r--r-- | miscutils/strings.c | 3 |
4 files changed, 140 insertions, 3 deletions
diff --git a/miscutils/getfattr.c b/miscutils/getfattr.c new file mode 100644 index 000000000..cb42fdac0 --- /dev/null +++ b/miscutils/getfattr.c | |||
| @@ -0,0 +1,136 @@ | |||
| 1 | /* | ||
| 2 | * getfattr - get extended attributes of filesystem objects. | ||
| 3 | * | ||
| 4 | * Copyright (C) 2023 by LoveSy <lovesykun@gmail.com> | ||
| 5 | * | ||
| 6 | * Licensed under GPLv2, see file LICENSE in this source tree. | ||
| 7 | */ | ||
| 8 | //config:config GETFATTR | ||
| 9 | //config: bool "getfattr (12.3 kb)" | ||
| 10 | //config: default y | ||
| 11 | //config: help | ||
| 12 | //config: Get extended attributes on files | ||
| 13 | |||
| 14 | //applet:IF_GETFATTR(APPLET_NOEXEC(getfattr, getfattr, BB_DIR_USR_BIN, BB_SUID_DROP, getfattr)) | ||
| 15 | |||
| 16 | //kbuild:lib-$(CONFIG_GETFATTR) += getfattr.o | ||
| 17 | |||
| 18 | #include <stdio.h> | ||
| 19 | #include <sys/xattr.h> | ||
| 20 | #include "libbb.h" | ||
| 21 | |||
| 22 | //usage:#define getfattr_trivial_usage | ||
| 23 | //usage: "[-h] {-d|-n ATTR} FILE...\n" | ||
| 24 | //usage:#define getfattr_full_usage "\n\n" | ||
| 25 | //usage: "Get extended attributes" | ||
| 26 | //usage: "\n" | ||
| 27 | //usage: "\n -h Do not follow symlinks" | ||
| 28 | //usage: "\n -d Dump all attributes" | ||
| 29 | //usage: "\n -n ATTR Get attribute ATTR" | ||
| 30 | |||
| 31 | enum { | ||
| 32 | OPT_h = (1 << 0), | ||
| 33 | OPT_d = (1 << 1), | ||
| 34 | OPT_n = (1 << 2), | ||
| 35 | }; | ||
| 36 | |||
| 37 | static int print_attr(const char *file, const char *name, char **buf, size_t *bufsize) | ||
| 38 | { | ||
| 39 | ssize_t len; | ||
| 40 | |||
| 41 | if (*bufsize == 0) | ||
| 42 | goto grow; | ||
| 43 | again: | ||
| 44 | len = ((option_mask32 & OPT_h) ? lgetxattr: getxattr)(file, name, *buf, *bufsize); | ||
| 45 | if (len < 0) { | ||
| 46 | if (errno != ERANGE) | ||
| 47 | return len; | ||
| 48 | grow: | ||
| 49 | *bufsize = (*bufsize * 2) + 1024; | ||
| 50 | *buf = xrealloc(*buf, *bufsize); | ||
| 51 | goto again; | ||
| 52 | } | ||
| 53 | printf("%s=\"%.*s\"\n", name, len, *buf); | ||
| 54 | return 0; | ||
| 55 | } | ||
| 56 | |||
| 57 | static ssize_t list_attr(const char *file, char **list, size_t *listsize) | ||
| 58 | { | ||
| 59 | ssize_t len; | ||
| 60 | |||
| 61 | if (*listsize == 0) | ||
| 62 | goto grow; | ||
| 63 | again: | ||
| 64 | len = ((option_mask32 & OPT_h) ? llistxattr : listxattr)(file, *list, *listsize); | ||
| 65 | if (len < 0) { | ||
| 66 | if (errno != ERANGE) | ||
| 67 | return len; | ||
| 68 | grow: | ||
| 69 | *listsize = (*listsize * 2) + 1024; | ||
| 70 | *list = xrealloc(*list, *listsize); | ||
| 71 | goto again; | ||
| 72 | } | ||
| 73 | return len; | ||
| 74 | } | ||
| 75 | |||
| 76 | int getfattr_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | ||
| 77 | int getfattr_main(int argc UNUSED_PARAM, char **argv) | ||
| 78 | { | ||
| 79 | const char *name; | ||
| 80 | exitcode_t status; | ||
| 81 | int opt; | ||
| 82 | char *buf = NULL; | ||
| 83 | size_t bufsize = 0; | ||
| 84 | char *list = NULL; | ||
| 85 | size_t listsize = 0; | ||
| 86 | |||
| 87 | opt = getopt32(argv, "^" | ||
| 88 | "hdn:" | ||
| 89 | /* Min one arg; -d and -n are exclusive */ | ||
| 90 | "\0" "-1:n--d:d--n" | ||
| 91 | //getfattr 2.5.1 does not enforce this: ":d:n" /* exactly one of -n or -d is required */ | ||
| 92 | , &name | ||
| 93 | ); | ||
| 94 | argv += optind; | ||
| 95 | status = EXIT_SUCCESS; | ||
| 96 | |||
| 97 | do { | ||
| 98 | int r; | ||
| 99 | //getfattr 2.5.1 with no -n/-d defaults to -d | ||
| 100 | if (!(opt & OPT_n)) { | ||
| 101 | ssize_t len = list_attr(*argv, &list, &listsize); | ||
| 102 | if (len < 0) | ||
| 103 | goto err; | ||
| 104 | if (len > 0) { | ||
| 105 | char *key; | ||
| 106 | printf("# file: %s\n", *argv); | ||
| 107 | key = list; | ||
| 108 | while (len > 0) { | ||
| 109 | ssize_t keylen; | ||
| 110 | r = print_attr(*argv, key, &buf, &bufsize); | ||
| 111 | if (r) | ||
| 112 | goto err; | ||
| 113 | keylen = strlen(key) + 1; | ||
| 114 | key += keylen; | ||
| 115 | len -= keylen; | ||
| 116 | } | ||
| 117 | bb_putchar('\n'); | ||
| 118 | } | ||
| 119 | } else { | ||
| 120 | printf("# file: %s\n", *argv); | ||
| 121 | r = print_attr(*argv, name, &buf, &bufsize); | ||
| 122 | if (r) { | ||
| 123 | err: | ||
| 124 | bb_simple_perror_msg(*argv); | ||
| 125 | status = EXIT_FAILURE; | ||
| 126 | continue; | ||
| 127 | } | ||
| 128 | bb_putchar('\n'); | ||
| 129 | } | ||
| 130 | } while (*++argv); | ||
| 131 | |||
| 132 | if (ENABLE_FEATURE_CLEAN_UP) | ||
| 133 | free(buf); | ||
| 134 | |||
| 135 | fflush_stdout_and_exit(status); | ||
| 136 | } | ||
diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c index 48be91875..999a3b976 100644 --- a/miscutils/makedevs.c +++ b/miscutils/makedevs.c | |||
| @@ -181,7 +181,7 @@ int makedevs_main(int argc UNUSED_PARAM, char **argv) | |||
| 181 | { | 181 | { |
| 182 | parser_t *parser; | 182 | parser_t *parser; |
| 183 | char *line = (char *)"-"; | 183 | char *line = (char *)"-"; |
| 184 | int ret = EXIT_SUCCESS; | 184 | exitcode_t ret = EXIT_SUCCESS; |
| 185 | 185 | ||
| 186 | getopt32(argv, "^" "d:" "\0" "=1", &line); | 186 | getopt32(argv, "^" "d:" "\0" "=1", &line); |
| 187 | argv += optind; | 187 | argv += optind; |
diff --git a/miscutils/setfattr.c b/miscutils/setfattr.c index 10d1840c9..b68bc9452 100644 --- a/miscutils/setfattr.c +++ b/miscutils/setfattr.c | |||
| @@ -32,7 +32,7 @@ int setfattr_main(int argc UNUSED_PARAM, char **argv) | |||
| 32 | { | 32 | { |
| 33 | const char *name; | 33 | const char *name; |
| 34 | const char *value = ""; | 34 | const char *value = ""; |
| 35 | int status; | 35 | exitcode_t status; |
| 36 | int opt; | 36 | int opt; |
| 37 | enum { | 37 | enum { |
| 38 | OPT_h = (1 << 0), | 38 | OPT_h = (1 << 0), |
diff --git a/miscutils/strings.c b/miscutils/strings.c index 036df5c5d..bd1850cbb 100644 --- a/miscutils/strings.c +++ b/miscutils/strings.c | |||
| @@ -40,7 +40,8 @@ | |||
| 40 | int strings_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 40 | int strings_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 41 | int strings_main(int argc UNUSED_PARAM, char **argv) | 41 | int strings_main(int argc UNUSED_PARAM, char **argv) |
| 42 | { | 42 | { |
| 43 | int n, c, status = EXIT_SUCCESS; | 43 | int n, c; |
| 44 | exitcode_t status = EXIT_SUCCESS; | ||
| 44 | unsigned count; | 45 | unsigned count; |
| 45 | off_t offset; | 46 | off_t offset; |
| 46 | FILE *file; | 47 | FILE *file; |
