2017-02-02 06:16:42 +03:00
|
|
|
|
|
|
|
#include "cmds.h"
|
2017-11-27 04:29:00 +03:00
|
|
|
#include "libbcachefs/error.h"
|
2017-03-20 02:56:34 +03:00
|
|
|
#include "libbcachefs.h"
|
2017-11-27 04:29:00 +03:00
|
|
|
#include "libbcachefs/super.h"
|
2017-02-02 06:16:42 +03:00
|
|
|
#include "tools-util.h"
|
|
|
|
|
|
|
|
static void usage(void)
|
|
|
|
{
|
2017-03-20 02:56:34 +03:00
|
|
|
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"
|
2018-02-11 00:48:04 +03:00
|
|
|
" -p Automatic repair (no questions)\n"
|
2017-02-02 06:16:42 +03:00
|
|
|
" -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"
|
|
|
|
" -v Be verbose\n"
|
|
|
|
" --h Display this help and exit\n"
|
|
|
|
"Report bugs to <linux-bcache@vger.kernel.org>");
|
|
|
|
}
|
|
|
|
|
|
|
|
int cmd_fsck(int argc, char *argv[])
|
|
|
|
{
|
2017-03-20 02:56:34 +03:00
|
|
|
struct bch_opts opts = bch2_opts_empty();
|
2019-03-25 04:07:45 +03:00
|
|
|
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);
|
2019-04-18 00:01:40 +03:00
|
|
|
opt_set(opts, fsck, true);
|
2017-12-22 02:00:30 +03:00
|
|
|
opt_set(opts, fix_errors, FSCK_OPT_ASK);
|
2017-05-08 13:28:15 +03:00
|
|
|
|
2019-08-28 20:43:18 +03:00
|
|
|
while ((opt = getopt(argc, argv, "apynfo:vh")) != -1)
|
2017-02-02 06:16:42 +03:00
|
|
|
switch (opt) {
|
2018-02-11 00:48:48 +03:00
|
|
|
case 'a': /* outdated alias for -p */
|
2017-02-02 06:16:42 +03:00
|
|
|
case 'p':
|
2017-12-22 02:00:30 +03:00
|
|
|
opt_set(opts, fix_errors, FSCK_OPT_YES);
|
2017-02-02 06:16:42 +03:00
|
|
|
break;
|
|
|
|
case 'y':
|
2017-12-22 02:00:30 +03:00
|
|
|
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);
|
2017-12-22 02:00:30 +03:00
|
|
|
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;
|
2019-08-28 20:43:18 +03:00
|
|
|
case 'o':
|
|
|
|
ret = bch2_parse_mount_opts(&opts, optarg);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
break;
|
2017-02-02 06:16:42 +03:00
|
|
|
case 'v':
|
2018-12-19 23:20:44 +03:00
|
|
|
opt_set(opts, verbose, true);
|
2017-02-02 06:16:42 +03:00
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
2018-02-08 23:30:19 +03:00
|
|
|
args_shift(optind);
|
2017-02-02 06:16:42 +03:00
|
|
|
|
2018-02-08 23:30:19 +03:00
|
|
|
if (!argc)
|
2017-02-02 06:16:42 +03:00
|
|
|
die("Please supply device(s) to check");
|
|
|
|
|
2019-03-25 04:07:45 +03:00
|
|
|
for (i = 0; i < argc; i++)
|
|
|
|
if (dev_mounted_rw(argv[i]))
|
|
|
|
die("%s is mounted read-write - aborting", argv[i]);
|
|
|
|
|
2018-02-08 23:30:19 +03:00
|
|
|
struct bch_fs *c = bch2_fs_open(argv, argc, opts);
|
2018-01-11 14:41:59 +03:00
|
|
|
if (IS_ERR(c))
|
2018-02-08 23:30:19 +03:00
|
|
|
die("error opening %s: %s", argv[0], strerror(-PTR_ERR(c)));
|
2017-02-02 06:16:42 +03:00
|
|
|
|
2019-03-29 21:36:06 +03:00
|
|
|
if (test_bit(BCH_FS_ERRORS_FIXED, &c->flags))
|
2018-07-21 06:42:06 +03:00
|
|
|
ret = 2;
|
2019-03-29 21:36:06 +03:00
|
|
|
if (test_bit(BCH_FS_ERROR, &c->flags))
|
2018-07-21 06:42:06 +03:00
|
|
|
ret = 4;
|
|
|
|
|
2017-03-20 02:56:34 +03:00
|
|
|
bch2_fs_stop(c);
|
2018-07-21 06:42:06 +03:00
|
|
|
return ret;
|
2017-02-02 06:16:42 +03:00
|
|
|
}
|