2017-02-02 06:16:42 +03:00
|
|
|
|
2020-05-18 21:56:35 +03:00
|
|
|
#include <getopt.h>
|
2023-12-05 03:49:21 +03:00
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <unistd.h>
|
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"
|
|
|
|
|
2023-12-24 03:37:04 +03:00
|
|
|
static void fsck_usage(void)
|
2017-02-02 06:16:42 +03:00
|
|
|
{
|
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"
|
2023-02-01 23:37:05 +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"
|
|
|
|
" -r, --ratelimit_errors Don't display more than 10 errors of a given type\n"
|
|
|
|
" -R, --reconstruct_alloc Reconstruct the alloc btree\n"
|
2023-12-24 03:37:04 +03:00
|
|
|
" -k, --kernel Use the in-kernel fsck implementation\n"
|
2023-02-01 23:37:05 +03:00
|
|
|
" -v Be verbose\n"
|
|
|
|
" -h, --help 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
|
|
|
}
|
|
|
|
|
2023-12-05 03:49:21 +03:00
|
|
|
static void setnonblocking(int fd)
|
|
|
|
{
|
|
|
|
int flags = fcntl(fd, F_GETFL);
|
|
|
|
if (fcntl(fd, F_SETFL, flags|O_NONBLOCK))
|
|
|
|
die("fcntl error: %m");
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_splice(int rfd, int wfd)
|
|
|
|
{
|
2024-01-04 04:30:35 +03:00
|
|
|
char buf[4096], *b = buf;
|
2023-12-05 03:49:21 +03:00
|
|
|
|
|
|
|
int r = read(rfd, buf, sizeof(buf));
|
|
|
|
if (r < 0 && errno == EAGAIN)
|
|
|
|
return 0;
|
|
|
|
if (r < 0)
|
|
|
|
return r;
|
|
|
|
if (!r)
|
|
|
|
return 1;
|
2024-01-04 04:30:35 +03:00
|
|
|
do {
|
|
|
|
ssize_t w = write(wfd, b, r);
|
|
|
|
if (w < 0)
|
|
|
|
die("%s: write error: %m", __func__);
|
|
|
|
r -= w;
|
|
|
|
b += w;
|
|
|
|
} while (r);
|
2023-12-05 03:49:21 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-12-24 03:37:04 +03:00
|
|
|
static int splice_fd_to_stdinout(int fd)
|
2023-12-05 03:49:21 +03:00
|
|
|
{
|
|
|
|
setnonblocking(STDIN_FILENO);
|
2023-12-24 03:37:04 +03:00
|
|
|
setnonblocking(fd);
|
2023-12-05 03:49:21 +03:00
|
|
|
|
|
|
|
while (true) {
|
|
|
|
fd_set fds;
|
|
|
|
|
|
|
|
FD_ZERO(&fds);
|
|
|
|
FD_SET(STDIN_FILENO, &fds);
|
2023-12-24 03:37:04 +03:00
|
|
|
FD_SET(fd, &fds);
|
2023-12-05 03:49:21 +03:00
|
|
|
|
2023-12-24 03:37:04 +03:00
|
|
|
select(fd + 1, &fds, NULL, NULL, NULL);
|
2023-12-05 03:49:21 +03:00
|
|
|
|
2023-12-24 03:37:04 +03:00
|
|
|
int r = do_splice(fd, STDOUT_FILENO) ?:
|
|
|
|
do_splice(STDIN_FILENO, fd);
|
2023-12-05 03:49:21 +03:00
|
|
|
if (r)
|
|
|
|
return r < 0 ? r : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-12-24 03:37:04 +03:00
|
|
|
static int fsck_online(const char *dev_path)
|
|
|
|
{
|
|
|
|
int dev_idx;
|
|
|
|
struct bchfs_handle fs = bchu_fs_open_by_dev(dev_path, &dev_idx);
|
|
|
|
|
|
|
|
struct bch_ioctl_fsck_online fsck = { 0 };
|
|
|
|
|
|
|
|
int fsck_fd = ioctl(fs.ioctl_fd, BCH_IOCTL_FSCK_ONLINE, &fsck);
|
|
|
|
if (fsck_fd < 0)
|
|
|
|
die("BCH_IOCTL_FSCK_ONLINE error: %s", bch2_err_str(fsck_fd));
|
|
|
|
|
|
|
|
return splice_fd_to_stdinout(fsck_fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void append_opt(struct printbuf *out, const char *opt)
|
|
|
|
{
|
|
|
|
if (out->pos)
|
|
|
|
prt_char(out, ',');
|
|
|
|
prt_str(out, opt);
|
|
|
|
}
|
|
|
|
|
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[] = {
|
2023-02-01 23:37:05 +03:00
|
|
|
{ "ratelimit_errors", no_argument, NULL, 'r' },
|
2020-05-18 21:56:35 +03:00
|
|
|
{ "reconstruct_alloc", no_argument, NULL, 'R' },
|
2023-12-24 03:37:04 +03:00
|
|
|
{ "kernel", no_argument, NULL, 'k' },
|
2023-02-01 23:37:05 +03:00
|
|
|
{ "help", no_argument, NULL, 'h' },
|
2020-05-18 21:56:35 +03:00
|
|
|
{ NULL }
|
|
|
|
};
|
2023-12-24 03:37:04 +03:00
|
|
|
bool kernel = false;
|
2018-07-21 06:42:06 +03:00
|
|
|
int opt, ret = 0;
|
2023-12-24 03:37:04 +03:00
|
|
|
struct printbuf opts_str = PRINTBUF;
|
2017-02-02 06:16:42 +03:00
|
|
|
|
2023-12-24 03:37:04 +03:00
|
|
|
append_opt(&opts_str, "degraded");
|
|
|
|
append_opt(&opts_str, "fsck");
|
|
|
|
append_opt(&opts_str, "fix_errors=ask");
|
|
|
|
append_opt(&opts_str, "read_only");
|
2017-05-08 13:28:15 +03:00
|
|
|
|
2020-05-18 21:56:35 +03:00
|
|
|
while ((opt = getopt_long(argc, argv,
|
2023-12-24 03:37:04 +03:00
|
|
|
"apynfo:rRkvh",
|
2020-05-18 21:56:35 +03:00
|
|
|
longopts, NULL)) != -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':
|
|
|
|
case 'y':
|
2023-12-24 03:37:04 +03:00
|
|
|
append_opt(&opts_str, "fix_errors=yes");
|
2017-02-02 06:16:42 +03:00
|
|
|
break;
|
|
|
|
case 'n':
|
2023-12-24 03:37:04 +03:00
|
|
|
append_opt(&opts_str, "nochanges");
|
|
|
|
append_opt(&opts_str, "fix_errors=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':
|
2023-12-24 03:37:04 +03:00
|
|
|
append_opt(&opts_str, optarg);
|
2019-08-28 20:43:18 +03:00
|
|
|
break;
|
2023-02-01 23:37:05 +03:00
|
|
|
case 'r':
|
2023-12-24 03:37:04 +03:00
|
|
|
append_opt(&opts_str, "ratelimit_errors");
|
2023-02-01 23:37:05 +03:00
|
|
|
break;
|
2020-05-18 21:56:35 +03:00
|
|
|
case 'R':
|
2023-12-24 03:37:04 +03:00
|
|
|
append_opt(&opts_str, "reconstruct_alloc");
|
|
|
|
break;
|
|
|
|
case 'k':
|
|
|
|
kernel = true;
|
2020-05-18 21:56:35 +03:00
|
|
|
break;
|
2017-02-02 06:16:42 +03:00
|
|
|
case 'v':
|
2023-12-24 03:37:04 +03:00
|
|
|
append_opt(&opts_str, "verbose");
|
2017-02-02 06:16:42 +03:00
|
|
|
break;
|
|
|
|
case 'h':
|
2023-12-24 03:37:04 +03:00
|
|
|
fsck_usage();
|
2020-08-24 23:26:22 +03:00
|
|
|
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
|
|
|
|
2020-08-24 23:26:22 +03:00
|
|
|
if (!argc) {
|
|
|
|
fprintf(stderr, "Please supply device(s) to check\n");
|
|
|
|
exit(8);
|
|
|
|
}
|
2017-02-02 06:16:42 +03:00
|
|
|
|
2023-12-23 05:29:36 +03:00
|
|
|
darray_str devs = get_or_split_cmdline_devs(argc, argv);
|
2019-03-25 04:07:45 +03:00
|
|
|
|
2023-12-24 03:37:04 +03:00
|
|
|
if (!kernel) {
|
|
|
|
struct bch_opts opts = bch2_opts_empty();
|
|
|
|
ret = bch2_parse_mount_opts(NULL, &opts, opts_str.buf);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2023-12-23 05:29:36 +03:00
|
|
|
|
2023-12-24 03:37:04 +03:00
|
|
|
darray_for_each(devs, i)
|
|
|
|
if (dev_mounted(*i))
|
|
|
|
return fsck_online(*i);
|
2017-02-02 06:16:42 +03:00
|
|
|
|
2023-12-24 03:37:04 +03:00
|
|
|
struct bch_fs *c = bch2_fs_open(devs.data, devs.nr, opts);
|
|
|
|
if (IS_ERR(c))
|
|
|
|
exit(8);
|
|
|
|
|
|
|
|
if (test_bit(BCH_FS_errors_fixed, &c->flags)) {
|
|
|
|
fprintf(stderr, "%s: errors fixed\n", c->name);
|
|
|
|
ret |= 1;
|
|
|
|
}
|
|
|
|
if (test_bit(BCH_FS_error, &c->flags)) {
|
|
|
|
fprintf(stderr, "%s: still has errors\n", c->name);
|
|
|
|
ret |= 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
bch2_fs_stop(c);
|
|
|
|
} else {
|
|
|
|
struct bch_ioctl_fsck_offline *fsck = calloc(sizeof(*fsck) +
|
|
|
|
sizeof(u64) * devs.nr, 1);
|
|
|
|
|
|
|
|
fsck->opts = (unsigned long)opts_str.buf;
|
|
|
|
darray_for_each(devs, i)
|
|
|
|
fsck->devs[i - devs.data] = (unsigned long) *i;
|
|
|
|
fsck->nr_devs = devs.nr;
|
|
|
|
|
|
|
|
int ctl_fd = bcachectl_open();
|
|
|
|
|
|
|
|
int fsck_fd = ioctl(ctl_fd, BCH_IOCTL_FSCK_OFFLINE, fsck);
|
|
|
|
if (fsck_fd < 0)
|
|
|
|
die("BCH_IOCTL_FSCK_OFFLINE error: %s", bch2_err_str(fsck_fd));
|
|
|
|
|
|
|
|
ret = splice_fd_to_stdinout(fsck_fd);
|
|
|
|
free(fsck);
|
2020-12-04 03:15:37 +03:00
|
|
|
}
|
2018-07-21 06:42:06 +03:00
|
|
|
|
2023-12-24 03:37:04 +03:00
|
|
|
printbuf_exit(&opts_str);
|
2018-07-21 06:42:06 +03:00
|
|
|
return ret;
|
2017-02-02 06:16:42 +03:00
|
|
|
}
|