forked from koverstreet/bcachefs-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcmd_fsck.c
107 lines (97 loc) · 2.55 KB
/
cmd_fsck.c
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
#include <getopt.h>
#include "cmds.h"
#include "libbcachefs/error.h"
#include "libbcachefs.h"
#include "libbcachefs/super.h"
#include "tools-util.h"
static void usage(void)
{
puts("bcachefs fsck - filesystem check and repair\n"
"Usage: bcachefs fsck [OPTION]... <devices>\n"
"\n"
"Options:\n"
" -p Automatic repair (no questions)\n"
" -n Don't repair, only check for errors\n"
" -y Assume \"yes\" to all questions\n"
" -f Force checking even if filesystem is marked clean\n"
" --reconstruct_alloc Reconstruct the alloc btree\n"
" -v Be verbose\n"
" -h Display this help and exit\n"
"Report bugs to <[email protected]>");
}
int cmd_fsck(int argc, char *argv[])
{
static const struct option longopts[] = {
{ "reconstruct_alloc", no_argument, NULL, 'R' },
{ NULL }
};
struct bch_opts opts = bch2_opts_empty();
unsigned i;
int opt, ret = 0;
opt_set(opts, degraded, true);
opt_set(opts, fsck, true);
opt_set(opts, fix_errors, FSCK_OPT_ASK);
while ((opt = getopt_long(argc, argv,
"apynfo:vh",
longopts, NULL)) != -1)
switch (opt) {
case 'a': /* outdated alias for -p */
case 'p':
opt_set(opts, fix_errors, FSCK_OPT_YES);
break;
case 'y':
opt_set(opts, fix_errors, FSCK_OPT_YES);
break;
case 'n':
opt_set(opts, nochanges, true);
opt_set(opts, fix_errors, FSCK_OPT_NO);
break;
case 'f':
/* force check, even if filesystem marked clean: */
break;
case 'o':
ret = bch2_parse_mount_opts(NULL, &opts, optarg);
if (ret)
return ret;
break;
case 'R':
opt_set(opts, reconstruct_alloc, true);
break;
case 'v':
opt_set(opts, verbose, true);
break;
case 'h':
usage();
exit(16);
}
args_shift(optind);
if (!argc) {
fprintf(stderr, "Please supply device(s) to check\n");
exit(8);
}
for (i = 0; i < argc; i++) {
switch (dev_mounted(argv[i])) {
case 1:
ret |= 2;
break;
case 2:
fprintf(stderr, "%s is mounted read-write - aborting\n", argv[i]);
exit(8);
}
}
struct bch_fs *c = bch2_fs_open(argv, argc, opts);
if (IS_ERR(c)) {
fprintf(stderr, "error opening %s: %s\n", argv[0], strerror(-PTR_ERR(c)));
exit(8);
}
if (test_bit(BCH_FS_ERRORS_FIXED, &c->flags)) {
fprintf(stderr, "%s: errors fixed\n", c->name);
ret |= 1;
}
if (test_bit(BCH_FS_ERROR, &c->flags)) {
fprintf(stderr, "%s: still has errors\n", c->name);
ret |= 4;
}
bch2_fs_stop(c);
return ret;
}