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"
|
|
|
|
" -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"
|
|
|
|
" -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();
|
2017-03-11 00:40:01 +03:00
|
|
|
struct bch_fs *c = NULL;
|
2017-02-02 06:16:42 +03:00
|
|
|
const char *err;
|
|
|
|
int opt;
|
|
|
|
|
2017-11-09 03:54:01 +03:00
|
|
|
opt_set(opts, degraded, 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
|
|
|
|
2017-02-02 06:16:42 +03:00
|
|
|
while ((opt = getopt(argc, argv, "pynfvh")) != -1)
|
|
|
|
switch (opt) {
|
|
|
|
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;
|
|
|
|
case 'v':
|
2017-11-09 03:54:01 +03:00
|
|
|
opt_set(opts, verbose_recovery, true);
|
2017-02-02 06:16:42 +03:00
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (optind >= argc)
|
|
|
|
die("Please supply device(s) to check");
|
|
|
|
|
2017-03-20 02:56:34 +03:00
|
|
|
err = bch2_fs_open(argv + optind, argc - optind, opts, &c);
|
2017-02-02 06:16:42 +03:00
|
|
|
if (err)
|
|
|
|
die("error opening %s: %s", argv[optind], err);
|
|
|
|
|
2017-03-20 02:56:34 +03:00
|
|
|
bch2_fs_stop(c);
|
2017-02-02 06:16:42 +03:00
|
|
|
return 0;
|
|
|
|
}
|