]> git.sesse.net Git - bcachefs-tools-debian/blob - cmd_fsck.c
Upload to unstable
[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              "  -r, --ratelimit_errors  Don't display more than 10 errors of a given type\n"
20              "  -R, --reconstruct_alloc Reconstruct the alloc btree\n"
21              "  -v                      Be verbose\n"
22              "  -h, --help              Display this help and exit\n"
23              "Report bugs to <linux-bcachefs@vger.kernel.org>");
24 }
25
26 int cmd_fsck(int argc, char *argv[])
27 {
28         static const struct option longopts[] = {
29                 { "ratelimit_errors",   no_argument,            NULL, 'r' },
30                 { "reconstruct_alloc",  no_argument,            NULL, 'R' },
31                 { "help",               no_argument,            NULL, 'h' },
32                 { NULL }
33         };
34         struct bch_opts opts = bch2_opts_empty();
35         unsigned i;
36         int opt, ret = 0;
37
38         opt_set(opts, degraded, true);
39         opt_set(opts, fsck, true);
40         opt_set(opts, fix_errors, FSCK_FIX_ask);
41
42         while ((opt = getopt_long(argc, argv,
43                                   "apynfo:rvh",
44                                   longopts, NULL)) != -1)
45                 switch (opt) {
46                 case 'a': /* outdated alias for -p */
47                 case 'p':
48                 case 'y':
49                         opt_set(opts, fix_errors, FSCK_FIX_yes);
50                         break;
51                 case 'n':
52                         opt_set(opts, nochanges, true);
53                         opt_set(opts, fix_errors, FSCK_FIX_no);
54                         break;
55                 case 'f':
56                         /* force check, even if filesystem marked clean: */
57                         break;
58                 case 'o':
59                         ret = bch2_parse_mount_opts(NULL, &opts, optarg);
60                         if (ret)
61                                 return ret;
62                         break;
63                 case 'r':
64                         opt_set(opts, ratelimit_errors, true);
65                         break;
66                 case 'R':
67                         opt_set(opts, reconstruct_alloc, true);
68                         break;
69                 case 'v':
70                         opt_set(opts, verbose, true);
71                         break;
72                 case 'h':
73                         usage();
74                         exit(16);
75                 }
76         args_shift(optind);
77
78         if (!argc) {
79                 fprintf(stderr, "Please supply device(s) to check\n");
80                 exit(8);
81         }
82
83         for (i = 0; i < argc; i++) {
84                 switch (dev_mounted(argv[i])) {
85                 case 1:
86                         ret |= 2;
87                         break;
88                 case 2:
89                         fprintf(stderr, "%s is mounted read-write - aborting\n", argv[i]);
90                         exit(8);
91                 }
92         }
93
94         struct bch_fs *c = bch2_fs_open(argv, argc, opts);
95         if (IS_ERR(c)) {
96                 fprintf(stderr, "error opening %s: %s\n", argv[0], bch2_err_str(PTR_ERR(c)));
97                 exit(8);
98         }
99
100         if (test_bit(BCH_FS_ERRORS_FIXED, &c->flags)) {
101                 fprintf(stderr, "%s: errors fixed\n", c->name);
102                 ret |= 1;
103         }
104         if (test_bit(BCH_FS_ERROR, &c->flags)) {
105                 fprintf(stderr, "%s: still has errors\n", c->name);
106                 ret |= 4;
107         }
108
109         bch2_fs_stop(c);
110         return ret;
111 }