1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
#include <dirent.h>
#include <getopt.h>
#include <stdio.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/xattr.h>
#include <unistd.h>
#include "libbcachefs/bcachefs_ioctl.h"
#include "cmds.h"
#include "libbcachefs.h"
static void propagate_recurse(int dirfd)
{
DIR *dir = fdopendir(dirfd);
struct dirent *d;
while ((errno = 0), (d = readdir(dir))) {
if (!strcmp(d->d_name, ".") ||
!strcmp(d->d_name, ".."))
continue;
int ret = ioctl(dirfd, BCHFS_IOC_REINHERIT_ATTRS,
d->d_name);
if (ret < 0) {
fprintf(stderr, "error propagating attributes to %s: %m\n",
d->d_name);
continue;
}
if (!ret) /* did no work */
continue;
struct stat st = xfstatat(dirfd, d->d_name,
AT_SYMLINK_NOFOLLOW);
if (!S_ISDIR(st.st_mode))
continue;
int fd = openat(dirfd, d->d_name, O_RDONLY);
if (fd < 0) {
fprintf(stderr, "error opening %s: %m\n", d->d_name);
continue;
}
propagate_recurse(fd);
close(fd);
}
if (errno)
die("readdir error: %m");
}
static void do_setattr(char *path, struct bch_opt_strs opts)
{
unsigned i;
for (i = 0; i < bch2_opts_nr; i++) {
if (!opts.by_id[i])
continue;
char *n = mprintf("bcachefs.%s", bch2_opt_table[i].attr.name);
if (setxattr(path, n, opts.by_id[i], strlen(opts.by_id[i]), 0))
die("setxattr error: %m");
free(n);
}
struct stat st = xstat(path);
if (!S_ISDIR(st.st_mode))
return;
int dirfd = open(path, O_RDONLY);
if (dirfd < 0)
die("error opening %s: %m", path);
propagate_recurse(dirfd);
close(dirfd);
}
static void setattr_usage(void)
{
puts("bcachefs setattr - set attributes on files in a bcachefs filesystem\n"
"Usage: bcachefs setattr [OPTIONS]... <files>\n"
"\n"
"Options:");
bch2_opts_usage(OPT_INODE);
puts(" -h Display this help and exit\n"
"Report bugs to <linux-bcachefs@vger.kernel.org>");
}
int cmd_setattr(int argc, char *argv[])
{
struct bch_opt_strs opts =
bch2_cmdline_opts_get(&argc, argv, OPT_INODE);
unsigned i;
for (i = 1; i < argc; i++)
if (argv[i][0] == '-') {
printf("invalid option %s\n", argv[i]);
setattr_usage();
exit(EXIT_FAILURE);
}
if (argc <= 1)
die("Please supply one or more files");
for (i = 1; i < argc; i++)
do_setattr(argv[i], opts);
bch2_opt_strs_free(&opts);
return 0;
}
static void getattr_usage(void)
{
puts("bcachefs getattr - get attributes on files in a bcachefs filesystem\n"
"Usage: bcachefs getattr <files>\n"
"\n"
"Options:\n"
" -h, --help Display this help and exit\n"
"Report bugs to <linux-bcachefs@vger.kernel.org>");
}
int cmd_getattr(int argc, char *argv[])
{
static const struct option longopts[] = {
{ "help", no_argument, NULL, 'h' },
{ NULL }
};
int opt;
while ((opt = getopt_long(argc, argv, "h",
longopts, NULL)) != -1)
switch (opt) {
case 'h':
getattr_usage();
exit(EXIT_SUCCESS);
default:
getattr_usage();
exit(EXIT_FAILURE);
}
args_shift(optind);
//for (i = 1; i < argc; i++)
// do_setattr(argv[i], opts);
return 0;
}
|