]> git.sesse.net Git - bcachefs-tools-debian/blob - cmd_fsck.c
correct flag listing in fsck help text
[bcachefs-tools-debian] / cmd_fsck.c
1
2 #include <getopt.h>
3 #include "cmds.h"
4 #include "libbcachefs/error.h"
5 #include "libbcachefs.h"
6 #include "libbcachefs/super.h"
7 #include "tools-util.h"
8
9 static void usage(void)
10 {
11         puts("bcachefs fsck - filesystem check and repair\n"
12              "Usage: bcachefs fsck [OPTION]... <devices>\n"
13              "\n"
14              "Options:\n"
15              "  -p                     Automatic repair (no questions)\n"
16              "  -n                     Don't repair, only check for errors\n"
17              "  -y                     Assume \"yes\" to all questions\n"
18              "  -f                     Force checking even if filesystem is marked clean\n"
19              " --reconstruct_alloc     Reconstruct the alloc btree\n"
20              "  -v                     Be verbose\n"
21              "  -h                     Display this help and exit\n"
22              "Report bugs to <linux-bcachefs@vger.kernel.org>");
23 }
24
25 int cmd_fsck(int argc, char *argv[])
26 {
27         static const struct option longopts[] = {
28                 { "reconstruct_alloc",  no_argument,            NULL, 'R' },
29                 { NULL }
30         };
31         struct bch_opts opts = bch2_opts_empty();
32         unsigned i;
33         int opt, ret = 0;
34
35         opt_set(opts, degraded, true);
36         opt_set(opts, fsck, true);
37         opt_set(opts, fix_errors, FSCK_OPT_ASK);
38
39         while ((opt = getopt_long(argc, argv,
40                                   "apynfo:vh",
41                                   longopts, NULL)) != -1)
42                 switch (opt) {
43                 case 'a': /* outdated alias for -p */
44                 case 'p':
45                         opt_set(opts, fix_errors, FSCK_OPT_YES);
46                         break;
47                 case 'y':
48                         opt_set(opts, fix_errors, FSCK_OPT_YES);
49                         break;
50                 case 'n':
51                         opt_set(opts, nochanges, true);
52                         opt_set(opts, fix_errors, FSCK_OPT_NO);
53                         break;
54                 case 'f':
55                         /* force check, even if filesystem marked clean: */
56                         break;
57                 case 'o':
58                         ret = bch2_parse_mount_opts(&opts, optarg);
59                         if (ret)
60                                 return ret;
61                         break;
62                 case 'R':
63                         opt_set(opts, reconstruct_alloc, true);
64                         break;
65                 case 'v':
66                         opt_set(opts, verbose, true);
67                         break;
68                 case 'h':
69                         usage();
70                         exit(EXIT_SUCCESS);
71                 }
72         args_shift(optind);
73
74         if (!argc)
75                 die("Please supply device(s) to check");
76
77         for (i = 0; i < argc; i++)
78                 if (dev_mounted_rw(argv[i]))
79                         die("%s is mounted read-write - aborting", argv[i]);
80
81         struct bch_fs *c = bch2_fs_open(argv, argc, opts);
82         if (IS_ERR(c))
83                 die("error opening %s: %s", argv[0], strerror(-PTR_ERR(c)));
84
85         if (test_bit(BCH_FS_ERRORS_FIXED, &c->flags))
86                 ret = 2;
87         if (test_bit(BCH_FS_ERROR, &c->flags))
88                 ret = 4;
89
90         bch2_fs_stop(c);
91         return ret;
92 }