bcachefs-tools/cmd_fsck.c

104 lines
2.4 KiB
C
Raw Normal View History

2017-02-02 06:16:42 +03:00
2020-05-18 21:56:35 +03:00
#include <getopt.h>
2017-02-02 06:16:42 +03:00
#include "cmds.h"
#include "libbcachefs/error.h"
#include "libbcachefs.h"
#include "libbcachefs/super.h"
2017-02-02 06:16:42 +03:00
#include "tools-util.h"
static void usage(void)
{
puts("bcachefs fsck - filesystem check and repair\n"
"Usage: bcachefs fsck [OPTION]... <devices>\n"
2017-02-02 06:16:42 +03:00
"\n"
"Options:\n"
2020-05-18 21:56:35 +03:00
" -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"
2020-05-27 19:38:25 +03:00
" -h Display this help and exit\n"
2020-05-18 21:56:35 +03:00
"Report bugs to <linux-bcachefs@vger.kernel.org>");
2017-02-02 06:16:42 +03:00
}
int cmd_fsck(int argc, char *argv[])
{
2020-05-18 21:56:35 +03:00
static const struct option longopts[] = {
{ "reconstruct_alloc", no_argument, NULL, 'R' },
{ NULL }
};
struct bch_opts opts = bch2_opts_empty();
unsigned i;
2018-07-21 06:42:06 +03:00
int opt, ret = 0;
2017-02-02 06:16:42 +03:00
2017-11-09 03:54:01 +03:00
opt_set(opts, degraded, true);
opt_set(opts, fsck, true);
opt_set(opts, fix_errors, FSCK_OPT_ASK);
2020-05-18 21:56:35 +03:00
while ((opt = getopt_long(argc, argv,
"apynfo:vh",
longopts, NULL)) != -1)
2017-02-02 06:16:42 +03:00
switch (opt) {
case 'a': /* outdated alias for -p */
2017-02-02 06:16:42 +03:00
case 'p':
opt_set(opts, fix_errors, FSCK_OPT_YES);
2017-02-02 06:16:42 +03:00
break;
case 'y':
opt_set(opts, fix_errors, FSCK_OPT_YES);
2017-02-02 06:16:42 +03:00
break;
case 'n':
2017-11-09 03:54:01 +03:00
opt_set(opts, nochanges, true);
opt_set(opts, fix_errors, FSCK_OPT_NO);
2017-02-02 06:16:42 +03:00
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;
2020-05-18 21:56:35 +03:00
case 'R':
opt_set(opts, reconstruct_alloc, true);
break;
2017-02-02 06:16:42 +03:00
case 'v':
opt_set(opts, verbose, true);
2017-02-02 06:16:42 +03:00
break;
case 'h':
usage();
exit(16);
2017-02-02 06:16:42 +03:00
}
2018-02-08 23:30:19 +03:00
args_shift(optind);
2017-02-02 06:16:42 +03:00
if (!argc) {
fprintf(stderr, "Please supply device(s) to check\n");
exit(8);
}
2017-02-02 06:16:42 +03:00
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);
}
}
2018-02-08 23:30:19 +03:00
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);
}
2017-02-02 06:16:42 +03:00
if (test_bit(BCH_FS_ERRORS_FIXED, &c->flags))
ret |= 1;
if (test_bit(BCH_FS_ERROR, &c->flags))
ret |= 4;
2018-07-21 06:42:06 +03:00
bch2_fs_stop(c);
2018-07-21 06:42:06 +03:00
return ret;
2017-02-02 06:16:42 +03:00
}