1 // SPDX-License-Identifier: GPL-2.0
5 #include "btree_cache.h"
6 #include "btree_update.h"
11 #include "fs-common.h"
20 #include <linux/bsearch.h>
21 #include <linux/dcache.h> /* struct qstr */
23 #define QSTR(n) { { { .len = strlen(n) } }, .name = n }
26 * XXX: this is handling transaction restarts without returning
27 * -BCH_ERR_transaction_restart_nested, this is not how we do things anymore:
29 static s64 bch2_count_inode_sectors(struct btree_trans *trans, u64 inum,
32 struct btree_iter iter;
37 for_each_btree_key_upto(trans, iter, BTREE_ID_extents,
38 SPOS(inum, 0, snapshot),
41 if (bkey_extent_is_allocation(k.k))
44 bch2_trans_iter_exit(trans, &iter);
46 return ret ?: sectors;
49 static s64 bch2_count_subdirs(struct btree_trans *trans, u64 inum,
52 struct btree_iter iter;
54 struct bkey_s_c_dirent d;
58 for_each_btree_key_upto(trans, iter, BTREE_ID_dirents,
59 SPOS(inum, 0, snapshot),
62 if (k.k->type != KEY_TYPE_dirent)
65 d = bkey_s_c_to_dirent(k);
66 if (d.v->d_type == DT_DIR)
69 bch2_trans_iter_exit(trans, &iter);
71 return ret ?: subdirs;
74 static int __snapshot_lookup_subvol(struct btree_trans *trans, u32 snapshot,
77 struct bch_snapshot s;
78 int ret = bch2_bkey_get_val_typed(trans, BTREE_ID_snapshots,
82 *subvol = le32_to_cpu(s.subvol);
83 else if (bch2_err_matches(ret, ENOENT))
84 bch_err(trans->c, "snapshot %u not found", snapshot);
89 static int __subvol_lookup(struct btree_trans *trans, u32 subvol,
90 u32 *snapshot, u64 *inum)
92 struct bch_subvolume s;
95 ret = bch2_subvolume_get(trans, subvol, false, 0, &s);
97 *snapshot = le32_to_cpu(s.snapshot);
98 *inum = le64_to_cpu(s.inode);
102 static int subvol_lookup(struct btree_trans *trans, u32 subvol,
103 u32 *snapshot, u64 *inum)
105 return lockrestart_do(trans, __subvol_lookup(trans, subvol, snapshot, inum));
108 static int lookup_first_inode(struct btree_trans *trans, u64 inode_nr,
109 struct bch_inode_unpacked *inode)
111 struct btree_iter iter;
115 bch2_trans_iter_init(trans, &iter, BTREE_ID_inodes,
117 BTREE_ITER_ALL_SNAPSHOTS);
118 k = bch2_btree_iter_peek(&iter);
123 if (!k.k || !bkey_eq(k.k->p, POS(0, inode_nr))) {
124 ret = -BCH_ERR_ENOENT_inode;
128 ret = bch2_inode_unpack(k, inode);
130 bch_err_msg(trans->c, ret, "fetching inode %llu", inode_nr);
131 bch2_trans_iter_exit(trans, &iter);
135 static int __lookup_inode(struct btree_trans *trans, u64 inode_nr,
136 struct bch_inode_unpacked *inode,
139 struct btree_iter iter;
143 k = bch2_bkey_get_iter(trans, &iter, BTREE_ID_inodes,
144 SPOS(0, inode_nr, *snapshot), 0);
149 ret = bkey_is_inode(k.k)
150 ? bch2_inode_unpack(k, inode)
151 : -BCH_ERR_ENOENT_inode;
153 *snapshot = iter.pos.snapshot;
155 bch_err_msg(trans->c, ret, "fetching inode %llu:%u", inode_nr, *snapshot);
156 bch2_trans_iter_exit(trans, &iter);
160 static int lookup_inode(struct btree_trans *trans, u64 inode_nr,
161 struct bch_inode_unpacked *inode,
164 return lockrestart_do(trans, __lookup_inode(trans, inode_nr, inode, snapshot));
167 static int __lookup_dirent(struct btree_trans *trans,
168 struct bch_hash_info hash_info,
169 subvol_inum dir, struct qstr *name,
170 u64 *target, unsigned *type)
172 struct btree_iter iter;
173 struct bkey_s_c_dirent d;
176 ret = bch2_hash_lookup(trans, &iter, bch2_dirent_hash_desc,
177 &hash_info, dir, name, 0);
181 d = bkey_s_c_to_dirent(bch2_btree_iter_peek_slot(&iter));
182 *target = le64_to_cpu(d.v->d_inum);
184 bch2_trans_iter_exit(trans, &iter);
188 static int __write_inode(struct btree_trans *trans,
189 struct bch_inode_unpacked *inode,
192 struct bkey_inode_buf *inode_p =
193 bch2_trans_kmalloc(trans, sizeof(*inode_p));
196 return PTR_ERR(inode_p);
198 bch2_inode_pack(inode_p, inode);
199 inode_p->inode.k.p.snapshot = snapshot;
201 return bch2_btree_insert_nonextent(trans, BTREE_ID_inodes,
203 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE);
206 static int fsck_write_inode(struct btree_trans *trans,
207 struct bch_inode_unpacked *inode,
210 int ret = commit_do(trans, NULL, NULL,
212 BTREE_INSERT_LAZY_RW,
213 __write_inode(trans, inode, snapshot));
215 bch_err_fn(trans->c, ret);
219 static int __remove_dirent(struct btree_trans *trans, struct bpos pos)
221 struct bch_fs *c = trans->c;
222 struct btree_iter iter;
223 struct bch_inode_unpacked dir_inode;
224 struct bch_hash_info dir_hash_info;
227 ret = lookup_first_inode(trans, pos.inode, &dir_inode);
231 dir_hash_info = bch2_hash_info_init(c, &dir_inode);
233 bch2_trans_iter_init(trans, &iter, BTREE_ID_dirents, pos, BTREE_ITER_INTENT);
235 ret = bch2_hash_delete_at(trans, bch2_dirent_hash_desc,
236 &dir_hash_info, &iter,
237 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE);
238 bch2_trans_iter_exit(trans, &iter);
244 /* Get lost+found, create if it doesn't exist: */
245 static int lookup_lostfound(struct btree_trans *trans, u32 subvol,
246 struct bch_inode_unpacked *lostfound)
248 struct bch_fs *c = trans->c;
249 struct bch_inode_unpacked root;
250 struct bch_hash_info root_hash_info;
251 struct qstr lostfound_str = QSTR("lost+found");
252 subvol_inum root_inum = { .subvol = subvol };
258 ret = __subvol_lookup(trans, subvol, &snapshot, &root_inum.inum);
262 ret = __lookup_inode(trans, root_inum.inum, &root, &snapshot);
266 root_hash_info = bch2_hash_info_init(c, &root);
268 ret = __lookup_dirent(trans, root_hash_info, root_inum,
269 &lostfound_str, &inum, &d_type);
270 if (bch2_err_matches(ret, ENOENT)) {
271 bch_notice(c, "creating lost+found");
272 goto create_lostfound;
279 if (d_type != DT_DIR) {
280 bch_err(c, "error looking up lost+found: not a directory");
281 return -BCH_ERR_ENOENT_not_directory;
285 * The bch2_check_dirents pass has already run, dangling dirents
286 * shouldn't exist here:
288 return __lookup_inode(trans, inum, lostfound, &snapshot);
291 bch2_inode_init_early(c, lostfound);
293 ret = bch2_create_trans(trans, root_inum, &root,
294 lostfound, &lostfound_str,
295 0, 0, S_IFDIR|0700, 0, NULL, NULL,
296 (subvol_inum) { }, 0);
297 bch_err_msg(c, ret, "creating lost+found");
301 static int __reattach_inode(struct btree_trans *trans,
302 struct bch_inode_unpacked *inode,
305 struct bch_hash_info dir_hash;
306 struct bch_inode_unpacked lostfound;
313 ret = __snapshot_lookup_subvol(trans, inode_snapshot, &subvol);
317 ret = lookup_lostfound(trans, subvol, &lostfound);
321 if (S_ISDIR(inode->bi_mode)) {
322 lostfound.bi_nlink++;
324 ret = __write_inode(trans, &lostfound, U32_MAX);
329 dir_hash = bch2_hash_info_init(trans->c, &lostfound);
331 snprintf(name_buf, sizeof(name_buf), "%llu", inode->bi_inum);
332 name = (struct qstr) QSTR(name_buf);
334 ret = bch2_dirent_create(trans,
337 .inum = lostfound.bi_inum,
341 &name, inode->bi_inum, &dir_offset,
342 BCH_HASH_SET_MUST_CREATE);
346 inode->bi_dir = lostfound.bi_inum;
347 inode->bi_dir_offset = dir_offset;
349 return __write_inode(trans, inode, inode_snapshot);
352 static int reattach_inode(struct btree_trans *trans,
353 struct bch_inode_unpacked *inode,
356 int ret = commit_do(trans, NULL, NULL,
357 BTREE_INSERT_LAZY_RW|
359 __reattach_inode(trans, inode, inode_snapshot));
360 bch_err_msg(trans->c, ret, "reattaching inode %llu", inode->bi_inum);
364 static int remove_backpointer(struct btree_trans *trans,
365 struct bch_inode_unpacked *inode)
367 struct btree_iter iter;
368 struct bkey_s_c_dirent d;
371 d = bch2_bkey_get_iter_typed(trans, &iter, BTREE_ID_dirents,
372 POS(inode->bi_dir, inode->bi_dir_offset), 0,
375 __remove_dirent(trans, d.k->p);
376 bch2_trans_iter_exit(trans, &iter);
380 struct snapshots_seen_entry {
385 struct snapshots_seen {
387 DARRAY(struct snapshots_seen_entry) ids;
390 static inline void snapshots_seen_exit(struct snapshots_seen *s)
392 darray_exit(&s->ids);
395 static inline void snapshots_seen_init(struct snapshots_seen *s)
397 memset(s, 0, sizeof(*s));
400 static int snapshots_seen_add_inorder(struct bch_fs *c, struct snapshots_seen *s, u32 id)
402 struct snapshots_seen_entry *i, n = {
404 .equiv = bch2_snapshot_equiv(c, id),
408 darray_for_each(s->ids, i) {
415 ret = darray_insert_item(&s->ids, i - s->ids.data, n);
417 bch_err(c, "error reallocating snapshots_seen table (size %zu)",
422 static int snapshots_seen_update(struct bch_fs *c, struct snapshots_seen *s,
423 enum btree_id btree_id, struct bpos pos)
425 struct snapshots_seen_entry *i, n = {
427 .equiv = bch2_snapshot_equiv(c, pos.snapshot),
431 if (!bkey_eq(s->pos, pos))
435 s->pos.snapshot = n.equiv;
437 darray_for_each(s->ids, i) {
442 * We currently don't rigorously track for snapshot cleanup
443 * needing to be run, so it shouldn't be a fsck error yet:
445 if (i->equiv == n.equiv) {
446 bch_err(c, "snapshot deletion did not finish:\n"
447 " duplicate keys in btree %s at %llu:%llu snapshots %u, %u (equiv %u)\n",
448 bch2_btree_id_str(btree_id),
449 pos.inode, pos.offset,
450 i->id, n.id, n.equiv);
451 set_bit(BCH_FS_NEED_DELETE_DEAD_SNAPSHOTS, &c->flags);
452 return bch2_run_explicit_recovery_pass(c, BCH_RECOVERY_PASS_delete_dead_snapshots);
456 ret = darray_push(&s->ids, n);
458 bch_err(c, "error reallocating snapshots_seen table (size %zu)",
464 * key_visible_in_snapshot - returns true if @id is a descendent of @ancestor,
465 * and @ancestor hasn't been overwritten in @seen
467 * @c: filesystem handle
468 * @seen: list of snapshot ids already seen at current position
469 * @id: descendent snapshot id
470 * @ancestor: ancestor snapshot id
472 * Returns: whether key in @ancestor snapshot is visible in @id snapshot
474 static bool key_visible_in_snapshot(struct bch_fs *c, struct snapshots_seen *seen,
475 u32 id, u32 ancestor)
479 EBUG_ON(id > ancestor);
480 EBUG_ON(!bch2_snapshot_is_equiv(c, id));
481 EBUG_ON(!bch2_snapshot_is_equiv(c, ancestor));
483 /* @ancestor should be the snapshot most recently added to @seen */
484 EBUG_ON(ancestor != seen->pos.snapshot);
485 EBUG_ON(ancestor != seen->ids.data[seen->ids.nr - 1].equiv);
490 if (!bch2_snapshot_is_ancestor(c, id, ancestor))
494 * We know that @id is a descendant of @ancestor, we're checking if
495 * we've seen a key that overwrote @ancestor - i.e. also a descendent of
496 * @ascestor and with @id as a descendent.
498 * But we already know that we're scanning IDs between @id and @ancestor
499 * numerically, since snapshot ID lists are kept sorted, so if we find
500 * an id that's an ancestor of @id we're done:
503 for (i = seen->ids.nr - 2;
504 i >= 0 && seen->ids.data[i].equiv >= id;
506 if (bch2_snapshot_is_ancestor(c, id, seen->ids.data[i].equiv))
513 * ref_visible - given a key with snapshot id @src that points to a key with
514 * snapshot id @dst, test whether there is some snapshot in which @dst is
517 * @c: filesystem handle
518 * @s: list of snapshot IDs already seen at @src
519 * @src: snapshot ID of src key
520 * @dst: snapshot ID of dst key
521 * Returns: true if there is some snapshot in which @dst is visible
523 * Assumes we're visiting @src keys in natural key order
525 static bool ref_visible(struct bch_fs *c, struct snapshots_seen *s,
529 ? key_visible_in_snapshot(c, s, dst, src)
530 : bch2_snapshot_is_ancestor(c, src, dst);
533 static int ref_visible2(struct bch_fs *c,
534 u32 src, struct snapshots_seen *src_seen,
535 u32 dst, struct snapshots_seen *dst_seen)
537 src = bch2_snapshot_equiv(c, src);
538 dst = bch2_snapshot_equiv(c, dst);
542 swap(dst_seen, src_seen);
544 return key_visible_in_snapshot(c, src_seen, dst, src);
547 #define for_each_visible_inode(_c, _s, _w, _snapshot, _i) \
548 for (_i = (_w)->inodes.data; _i < (_w)->inodes.data + (_w)->inodes.nr && \
549 (_i)->snapshot <= (_snapshot); _i++) \
550 if (key_visible_in_snapshot(_c, _s, _i->snapshot, _snapshot))
552 struct inode_walker_entry {
553 struct bch_inode_unpacked inode;
559 struct inode_walker {
560 bool first_this_inode;
561 bool recalculate_sums;
562 struct bpos last_pos;
564 DARRAY(struct inode_walker_entry) inodes;
567 static void inode_walker_exit(struct inode_walker *w)
569 darray_exit(&w->inodes);
572 static struct inode_walker inode_walker_init(void)
574 return (struct inode_walker) { 0, };
577 static int add_inode(struct bch_fs *c, struct inode_walker *w,
578 struct bkey_s_c inode)
580 struct bch_inode_unpacked u;
582 BUG_ON(bch2_inode_unpack(inode, &u));
584 return darray_push(&w->inodes, ((struct inode_walker_entry) {
586 .snapshot = bch2_snapshot_equiv(c, inode.k->p.snapshot),
590 static int get_inodes_all_snapshots(struct btree_trans *trans,
591 struct inode_walker *w, u64 inum)
593 struct bch_fs *c = trans->c;
594 struct btree_iter iter;
596 u32 restart_count = trans->restart_count;
599 w->recalculate_sums = false;
602 for_each_btree_key(trans, iter, BTREE_ID_inodes, POS(0, inum),
603 BTREE_ITER_ALL_SNAPSHOTS, k, ret) {
604 if (k.k->p.offset != inum)
607 if (bkey_is_inode(k.k))
610 bch2_trans_iter_exit(trans, &iter);
615 w->first_this_inode = true;
617 return trans_was_restarted(trans, restart_count);
620 static struct inode_walker_entry *
621 lookup_inode_for_snapshot(struct bch_fs *c, struct inode_walker *w,
622 u32 snapshot, bool is_whiteout)
624 struct inode_walker_entry *i;
626 snapshot = bch2_snapshot_equiv(c, snapshot);
628 darray_for_each(w->inodes, i)
629 if (bch2_snapshot_is_ancestor(c, snapshot, i->snapshot))
634 BUG_ON(snapshot > i->snapshot);
636 if (snapshot != i->snapshot && !is_whiteout) {
637 struct inode_walker_entry new = *i;
641 new.snapshot = snapshot;
644 bch_info(c, "have key for inode %llu:%u but have inode in ancestor snapshot %u",
645 w->last_pos.inode, snapshot, i->snapshot);
647 while (i > w->inodes.data && i[-1].snapshot > snapshot)
650 pos = i - w->inodes.data;
651 ret = darray_insert_item(&w->inodes, pos, new);
655 i = w->inodes.data + pos;
661 static struct inode_walker_entry *walk_inode(struct btree_trans *trans,
662 struct inode_walker *w, struct bpos pos,
665 if (w->last_pos.inode != pos.inode) {
666 int ret = get_inodes_all_snapshots(trans, w, pos.inode);
669 } else if (bkey_cmp(w->last_pos, pos)) {
670 struct inode_walker_entry *i;
672 darray_for_each(w->inodes, i)
673 i->seen_this_pos = false;
679 return lookup_inode_for_snapshot(trans->c, w, pos.snapshot, is_whiteout);
682 static int __get_visible_inodes(struct btree_trans *trans,
683 struct inode_walker *w,
684 struct snapshots_seen *s,
687 struct bch_fs *c = trans->c;
688 struct btree_iter iter;
694 for_each_btree_key_norestart(trans, iter, BTREE_ID_inodes, POS(0, inum),
695 BTREE_ITER_ALL_SNAPSHOTS, k, ret) {
696 u32 equiv = bch2_snapshot_equiv(c, k.k->p.snapshot);
698 if (k.k->p.offset != inum)
701 if (!ref_visible(c, s, s->pos.snapshot, equiv))
704 if (bkey_is_inode(k.k))
707 if (equiv >= s->pos.snapshot)
710 bch2_trans_iter_exit(trans, &iter);
715 static int check_key_has_snapshot(struct btree_trans *trans,
716 struct btree_iter *iter,
719 struct bch_fs *c = trans->c;
720 struct printbuf buf = PRINTBUF;
723 if (mustfix_fsck_err_on(!bch2_snapshot_equiv(c, k.k->p.snapshot), c,
724 bkey_in_missing_snapshot,
725 "key in missing snapshot: %s",
726 (bch2_bkey_val_to_text(&buf, c, k), buf.buf)))
727 ret = bch2_btree_delete_at(trans, iter,
728 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE) ?: 1;
734 static int hash_redo_key(struct btree_trans *trans,
735 const struct bch_hash_desc desc,
736 struct bch_hash_info *hash_info,
737 struct btree_iter *k_iter, struct bkey_s_c k)
739 struct bkey_i *delete;
742 delete = bch2_trans_kmalloc(trans, sizeof(*delete));
744 return PTR_ERR(delete);
746 tmp = bch2_bkey_make_mut_noupdate(trans, k);
750 bkey_init(&delete->k);
751 delete->k.p = k_iter->pos;
752 return bch2_btree_iter_traverse(k_iter) ?:
753 bch2_trans_update(trans, k_iter, delete, 0) ?:
754 bch2_hash_set_snapshot(trans, desc, hash_info,
755 (subvol_inum) { 0, k.k->p.inode },
756 k.k->p.snapshot, tmp,
757 BCH_HASH_SET_MUST_CREATE,
758 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE) ?:
759 bch2_trans_commit(trans, NULL, NULL,
761 BTREE_INSERT_LAZY_RW);
764 static int hash_check_key(struct btree_trans *trans,
765 const struct bch_hash_desc desc,
766 struct bch_hash_info *hash_info,
767 struct btree_iter *k_iter, struct bkey_s_c hash_k)
769 struct bch_fs *c = trans->c;
770 struct btree_iter iter = { NULL };
771 struct printbuf buf = PRINTBUF;
776 if (hash_k.k->type != desc.key_type)
779 hash = desc.hash_bkey(hash_info, hash_k);
781 if (likely(hash == hash_k.k->p.offset))
784 if (hash_k.k->p.offset < hash)
787 for_each_btree_key_norestart(trans, iter, desc.btree_id,
788 SPOS(hash_k.k->p.inode, hash, hash_k.k->p.snapshot),
789 BTREE_ITER_SLOTS, k, ret) {
790 if (bkey_eq(k.k->p, hash_k.k->p))
793 if (fsck_err_on(k.k->type == desc.key_type &&
794 !desc.cmp_bkey(k, hash_k), c,
795 hash_table_key_duplicate,
796 "duplicate hash table keys:\n%s",
797 (printbuf_reset(&buf),
798 bch2_bkey_val_to_text(&buf, c, hash_k),
800 ret = bch2_hash_delete_at(trans, desc, hash_info, k_iter, 0) ?: 1;
804 if (bkey_deleted(k.k)) {
805 bch2_trans_iter_exit(trans, &iter);
810 bch2_trans_iter_exit(trans, &iter);
814 if (fsck_err(c, hash_table_key_wrong_offset,
815 "hash table key at wrong offset: btree %s inode %llu offset %llu, hashed to %llu\n%s",
816 bch2_btree_id_str(desc.btree_id), hash_k.k->p.inode, hash_k.k->p.offset, hash,
817 (printbuf_reset(&buf),
818 bch2_bkey_val_to_text(&buf, c, hash_k), buf.buf))) {
819 ret = hash_redo_key(trans, desc, hash_info, k_iter, hash_k);
823 ret = -BCH_ERR_transaction_restart_nested;
829 static int check_inode(struct btree_trans *trans,
830 struct btree_iter *iter,
832 struct bch_inode_unpacked *prev,
833 struct snapshots_seen *s,
836 struct bch_fs *c = trans->c;
837 struct bch_inode_unpacked u;
838 bool do_update = false;
841 ret = check_key_has_snapshot(trans, iter, k);
847 ret = snapshots_seen_update(c, s, iter->btree_id, k.k->p);
851 if (!bkey_is_inode(k.k))
854 BUG_ON(bch2_inode_unpack(k, &u));
857 !(u.bi_flags & (BCH_INODE_i_size_dirty|
858 BCH_INODE_i_sectors_dirty|
859 BCH_INODE_unlinked)))
862 if (prev->bi_inum != u.bi_inum)
865 if (fsck_err_on(prev->bi_hash_seed != u.bi_hash_seed ||
866 inode_d_type(prev) != inode_d_type(&u),
867 c, inode_snapshot_mismatch,
868 "inodes in different snapshots don't match")) {
869 bch_err(c, "repair not implemented yet");
873 if ((u.bi_flags & (BCH_INODE_i_size_dirty|BCH_INODE_unlinked)) &&
874 bch2_key_has_snapshot_overwrites(trans, BTREE_ID_inodes, k.k->p)) {
875 struct bpos new_min_pos;
877 ret = bch2_propagate_key_to_snapshot_leaves(trans, iter->btree_id, k, &new_min_pos);
881 u.bi_flags &= ~BCH_INODE_i_size_dirty|BCH_INODE_unlinked;
883 ret = __write_inode(trans, &u, iter->pos.snapshot);
884 bch_err_msg(c, ret, "in fsck updating inode");
888 if (!bpos_eq(new_min_pos, POS_MIN))
889 bch2_btree_iter_set_pos(iter, bpos_predecessor(new_min_pos));
893 if (u.bi_flags & BCH_INODE_unlinked &&
895 fsck_err(c, inode_unlinked_but_clean,
896 "filesystem marked clean, but inode %llu unlinked",
898 bch2_trans_unlock(trans);
901 ret = bch2_inode_rm_snapshot(trans, u.bi_inum, iter->pos.snapshot);
902 bch_err_msg(c, ret, "in fsck deleting inode");
906 if (u.bi_flags & BCH_INODE_i_size_dirty &&
908 fsck_err(c, inode_i_size_dirty_but_clean,
909 "filesystem marked clean, but inode %llu has i_size dirty",
911 bch_verbose(c, "truncating inode %llu", u.bi_inum);
913 bch2_trans_unlock(trans);
917 * XXX: need to truncate partial blocks too here - or ideally
918 * just switch units to bytes and that issue goes away
920 ret = bch2_btree_delete_range_trans(trans, BTREE_ID_extents,
921 SPOS(u.bi_inum, round_up(u.bi_size, block_bytes(c)) >> 9,
923 POS(u.bi_inum, U64_MAX),
925 bch_err_msg(c, ret, "in fsck truncating inode");
930 * We truncated without our normal sector accounting hook, just
931 * make sure we recalculate it:
933 u.bi_flags |= BCH_INODE_i_sectors_dirty;
935 u.bi_flags &= ~BCH_INODE_i_size_dirty;
939 if (u.bi_flags & BCH_INODE_i_sectors_dirty &&
941 fsck_err(c, inode_i_sectors_dirty_but_clean,
942 "filesystem marked clean, but inode %llu has i_sectors dirty",
946 bch_verbose(c, "recounting sectors for inode %llu",
949 sectors = bch2_count_inode_sectors(trans, u.bi_inum, iter->pos.snapshot);
951 bch_err_msg(c, sectors, "in fsck recounting inode sectors");
955 u.bi_sectors = sectors;
956 u.bi_flags &= ~BCH_INODE_i_sectors_dirty;
960 if (u.bi_flags & BCH_INODE_backptr_untrusted) {
963 u.bi_flags &= ~BCH_INODE_backptr_untrusted;
968 ret = __write_inode(trans, &u, iter->pos.snapshot);
969 bch_err_msg(c, ret, "in fsck updating inode");
980 int bch2_check_inodes(struct bch_fs *c)
982 bool full = c->opts.fsck;
983 struct btree_trans *trans = bch2_trans_get(c);
984 struct btree_iter iter;
985 struct bch_inode_unpacked prev = { 0 };
986 struct snapshots_seen s;
990 snapshots_seen_init(&s);
992 ret = for_each_btree_key_commit(trans, iter, BTREE_ID_inodes,
994 BTREE_ITER_PREFETCH|BTREE_ITER_ALL_SNAPSHOTS, k,
995 NULL, NULL, BTREE_INSERT_LAZY_RW|BTREE_INSERT_NOFAIL,
996 check_inode(trans, &iter, k, &prev, &s, full));
998 snapshots_seen_exit(&s);
999 bch2_trans_put(trans);
1004 static struct bkey_s_c_dirent dirent_get_by_pos(struct btree_trans *trans,
1005 struct btree_iter *iter,
1008 return bch2_bkey_get_iter_typed(trans, iter, BTREE_ID_dirents, pos, 0, dirent);
1011 static bool inode_points_to_dirent(struct bch_inode_unpacked *inode,
1012 struct bkey_s_c_dirent d)
1014 return inode->bi_dir == d.k->p.inode &&
1015 inode->bi_dir_offset == d.k->p.offset;
1018 static bool dirent_points_to_inode(struct bkey_s_c_dirent d,
1019 struct bch_inode_unpacked *inode)
1021 return d.v->d_type == DT_SUBVOL
1022 ? le32_to_cpu(d.v->d_child_subvol) == inode->bi_subvol
1023 : le64_to_cpu(d.v->d_inum) == inode->bi_inum;
1026 static int inode_backpointer_exists(struct btree_trans *trans,
1027 struct bch_inode_unpacked *inode,
1030 struct btree_iter iter;
1031 struct bkey_s_c_dirent d;
1034 d = dirent_get_by_pos(trans, &iter,
1035 SPOS(inode->bi_dir, inode->bi_dir_offset, snapshot));
1038 return bch2_err_matches(ret, ENOENT) ? 0 : ret;
1040 ret = dirent_points_to_inode(d, inode);
1041 bch2_trans_iter_exit(trans, &iter);
1045 static int check_i_sectors(struct btree_trans *trans, struct inode_walker *w)
1047 struct bch_fs *c = trans->c;
1048 struct inode_walker_entry *i;
1049 u32 restart_count = trans->restart_count;
1053 darray_for_each(w->inodes, i) {
1054 if (i->inode.bi_sectors == i->count)
1057 count2 = bch2_count_inode_sectors(trans, w->last_pos.inode, i->snapshot);
1059 if (w->recalculate_sums)
1062 if (i->count != count2) {
1063 bch_err(c, "fsck counted i_sectors wrong for inode %llu:%u: got %llu should be %llu",
1064 w->last_pos.inode, i->snapshot, i->count, count2);
1065 return -BCH_ERR_internal_fsck_err;
1068 if (fsck_err_on(!(i->inode.bi_flags & BCH_INODE_i_sectors_dirty),
1069 c, inode_i_sectors_wrong,
1070 "inode %llu:%u has incorrect i_sectors: got %llu, should be %llu",
1071 w->last_pos.inode, i->snapshot,
1072 i->inode.bi_sectors, i->count)) {
1073 i->inode.bi_sectors = i->count;
1074 ret = fsck_write_inode(trans, &i->inode, i->snapshot);
1081 return ret ?: trans_was_restarted(trans, restart_count);
1087 struct snapshots_seen seen;
1090 struct extent_ends {
1091 struct bpos last_pos;
1092 DARRAY(struct extent_end) e;
1095 static void extent_ends_reset(struct extent_ends *extent_ends)
1097 struct extent_end *i;
1099 darray_for_each(extent_ends->e, i)
1100 snapshots_seen_exit(&i->seen);
1102 extent_ends->e.nr = 0;
1105 static void extent_ends_exit(struct extent_ends *extent_ends)
1107 extent_ends_reset(extent_ends);
1108 darray_exit(&extent_ends->e);
1111 static void extent_ends_init(struct extent_ends *extent_ends)
1113 memset(extent_ends, 0, sizeof(*extent_ends));
1116 static int extent_ends_at(struct bch_fs *c,
1117 struct extent_ends *extent_ends,
1118 struct snapshots_seen *seen,
1121 struct extent_end *i, n = (struct extent_end) {
1122 .offset = k.k->p.offset,
1123 .snapshot = k.k->p.snapshot,
1127 n.seen.ids.data = kmemdup(seen->ids.data,
1128 sizeof(seen->ids.data[0]) * seen->ids.size,
1130 if (!n.seen.ids.data)
1131 return -BCH_ERR_ENOMEM_fsck_extent_ends_at;
1133 darray_for_each(extent_ends->e, i) {
1134 if (i->snapshot == k.k->p.snapshot) {
1135 snapshots_seen_exit(&i->seen);
1140 if (i->snapshot >= k.k->p.snapshot)
1144 return darray_insert_item(&extent_ends->e, i - extent_ends->e.data, n);
1147 static int overlapping_extents_found(struct btree_trans *trans,
1148 enum btree_id btree,
1149 struct bpos pos1, struct snapshots_seen *pos1_seen,
1152 struct extent_end *extent_end)
1154 struct bch_fs *c = trans->c;
1155 struct printbuf buf = PRINTBUF;
1156 struct btree_iter iter1, iter2 = { NULL };
1157 struct bkey_s_c k1, k2;
1160 BUG_ON(bkey_le(pos1, bkey_start_pos(&pos2)));
1162 bch2_trans_iter_init(trans, &iter1, btree, pos1,
1163 BTREE_ITER_ALL_SNAPSHOTS|
1164 BTREE_ITER_NOT_EXTENTS);
1165 k1 = bch2_btree_iter_peek_upto(&iter1, POS(pos1.inode, U64_MAX));
1170 prt_str(&buf, "\n ");
1171 bch2_bkey_val_to_text(&buf, c, k1);
1173 if (!bpos_eq(pos1, k1.k->p)) {
1174 prt_str(&buf, "\n wanted\n ");
1175 bch2_bpos_to_text(&buf, pos1);
1176 prt_str(&buf, "\n ");
1177 bch2_bkey_to_text(&buf, &pos2);
1179 bch_err(c, "%s: error finding first overlapping extent when repairing, got%s",
1181 ret = -BCH_ERR_internal_fsck_err;
1185 bch2_trans_copy_iter(&iter2, &iter1);
1188 bch2_btree_iter_advance(&iter2);
1190 k2 = bch2_btree_iter_peek_upto(&iter2, POS(pos1.inode, U64_MAX));
1195 if (bpos_ge(k2.k->p, pos2.p))
1199 prt_str(&buf, "\n ");
1200 bch2_bkey_val_to_text(&buf, c, k2);
1202 if (bpos_gt(k2.k->p, pos2.p) ||
1203 pos2.size != k2.k->size) {
1204 bch_err(c, "%s: error finding seconding overlapping extent when repairing%s",
1206 ret = -BCH_ERR_internal_fsck_err;
1210 prt_printf(&buf, "\n overwriting %s extent",
1211 pos1.snapshot >= pos2.p.snapshot ? "first" : "second");
1213 if (fsck_err(c, extent_overlapping,
1214 "overlapping extents%s", buf.buf)) {
1215 struct btree_iter *old_iter = &iter1;
1216 struct disk_reservation res = { 0 };
1218 if (pos1.snapshot < pos2.p.snapshot) {
1223 trans->extra_journal_res += bch2_bkey_sectors_compressed(k2);
1225 ret = bch2_trans_update_extent_overwrite(trans, old_iter,
1226 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE,
1228 bch2_trans_commit(trans, &res, NULL,
1229 BTREE_INSERT_LAZY_RW|BTREE_INSERT_NOFAIL);
1230 bch2_disk_reservation_put(c, &res);
1237 if (pos1.snapshot == pos2.p.snapshot) {
1239 * We overwrote the first extent, and did the overwrite
1240 * in the same snapshot:
1242 extent_end->offset = bkey_start_offset(&pos2);
1243 } else if (pos1.snapshot > pos2.p.snapshot) {
1245 * We overwrote the first extent in pos2's snapshot:
1247 ret = snapshots_seen_add_inorder(c, pos1_seen, pos2.p.snapshot);
1250 * We overwrote the second extent - restart
1251 * check_extent() from the top:
1253 ret = -BCH_ERR_transaction_restart_nested;
1258 bch2_trans_iter_exit(trans, &iter2);
1259 bch2_trans_iter_exit(trans, &iter1);
1260 printbuf_exit(&buf);
1264 static int check_overlapping_extents(struct btree_trans *trans,
1265 struct snapshots_seen *seen,
1266 struct extent_ends *extent_ends,
1269 struct btree_iter *iter,
1272 struct bch_fs *c = trans->c;
1273 struct extent_end *i;
1276 /* transaction restart, running again */
1277 if (bpos_eq(extent_ends->last_pos, k.k->p))
1280 if (extent_ends->last_pos.inode != k.k->p.inode)
1281 extent_ends_reset(extent_ends);
1283 darray_for_each(extent_ends->e, i) {
1284 if (i->offset <= bkey_start_offset(k.k))
1287 if (!ref_visible2(c,
1288 k.k->p.snapshot, seen,
1289 i->snapshot, &i->seen))
1292 ret = overlapping_extents_found(trans, iter->btree_id,
1293 SPOS(iter->pos.inode,
1302 ret = extent_ends_at(c, extent_ends, seen, k);
1306 extent_ends->last_pos = k.k->p;
1311 static int check_extent_overbig(struct btree_trans *trans, struct btree_iter *iter,
1314 struct bch_fs *c = trans->c;
1315 struct bkey_ptrs_c ptrs = bch2_bkey_ptrs_c(k);
1316 struct bch_extent_crc_unpacked crc;
1317 const union bch_extent_entry *i;
1318 unsigned encoded_extent_max_sectors = c->opts.encoded_extent_max >> 9;
1320 bkey_for_each_crc(k.k, ptrs, crc, i)
1321 if (crc_is_encoded(crc) &&
1322 crc.uncompressed_size > encoded_extent_max_sectors) {
1323 struct printbuf buf = PRINTBUF;
1325 bch2_bkey_val_to_text(&buf, c, k);
1326 bch_err(c, "overbig encoded extent, please report this:\n %s", buf.buf);
1327 printbuf_exit(&buf);
1333 static int check_extent(struct btree_trans *trans, struct btree_iter *iter,
1335 struct inode_walker *inode,
1336 struct snapshots_seen *s,
1337 struct extent_ends *extent_ends)
1339 struct bch_fs *c = trans->c;
1340 struct inode_walker_entry *i;
1341 struct printbuf buf = PRINTBUF;
1342 struct bpos equiv = k.k->p;
1345 equiv.snapshot = bch2_snapshot_equiv(c, k.k->p.snapshot);
1347 ret = check_key_has_snapshot(trans, iter, k);
1349 ret = ret < 0 ? ret : 0;
1353 if (inode->last_pos.inode != k.k->p.inode) {
1354 ret = check_i_sectors(trans, inode);
1359 i = walk_inode(trans, inode, equiv, k.k->type == KEY_TYPE_whiteout);
1360 ret = PTR_ERR_OR_ZERO(i);
1364 ret = snapshots_seen_update(c, s, iter->btree_id, k.k->p);
1368 if (k.k->type != KEY_TYPE_whiteout) {
1369 if (fsck_err_on(!i, c, extent_in_missing_inode,
1370 "extent in missing inode:\n %s",
1371 (printbuf_reset(&buf),
1372 bch2_bkey_val_to_text(&buf, c, k), buf.buf)))
1375 if (fsck_err_on(i &&
1376 !S_ISREG(i->inode.bi_mode) &&
1377 !S_ISLNK(i->inode.bi_mode),
1378 c, extent_in_non_reg_inode,
1379 "extent in non regular inode mode %o:\n %s",
1381 (printbuf_reset(&buf),
1382 bch2_bkey_val_to_text(&buf, c, k), buf.buf)))
1385 ret = check_overlapping_extents(trans, s, extent_ends, k,
1386 equiv.snapshot, iter,
1387 &inode->recalculate_sums);
1393 * Check inodes in reverse order, from oldest snapshots to newest,
1394 * starting from the inode that matches this extent's snapshot. If we
1395 * didn't have one, iterate over all inodes:
1398 i = inode->inodes.data + inode->inodes.nr - 1;
1401 inode->inodes.data && i >= inode->inodes.data;
1403 if (i->snapshot > equiv.snapshot ||
1404 !key_visible_in_snapshot(c, s, i->snapshot, equiv.snapshot))
1407 if (k.k->type != KEY_TYPE_whiteout) {
1408 if (fsck_err_on(!(i->inode.bi_flags & BCH_INODE_i_size_dirty) &&
1409 k.k->p.offset > round_up(i->inode.bi_size, block_bytes(c)) >> 9 &&
1410 !bkey_extent_is_reservation(k),
1411 c, extent_past_end_of_inode,
1412 "extent type past end of inode %llu:%u, i_size %llu\n %s",
1413 i->inode.bi_inum, i->snapshot, i->inode.bi_size,
1414 (bch2_bkey_val_to_text(&buf, c, k), buf.buf))) {
1415 struct btree_iter iter2;
1417 bch2_trans_copy_iter(&iter2, iter);
1418 bch2_btree_iter_set_snapshot(&iter2, i->snapshot);
1419 ret = bch2_btree_iter_traverse(&iter2) ?:
1420 bch2_btree_delete_at(trans, &iter2,
1421 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE);
1422 bch2_trans_iter_exit(trans, &iter2);
1426 iter->k.type = KEY_TYPE_whiteout;
1429 if (bkey_extent_is_allocation(k.k))
1430 i->count += k.k->size;
1433 i->seen_this_pos = true;
1438 printbuf_exit(&buf);
1442 ret = bch2_btree_delete_at(trans, iter, BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE);
1447 * Walk extents: verify that extents have a corresponding S_ISREG inode, and
1448 * that i_size an i_sectors are consistent
1450 int bch2_check_extents(struct bch_fs *c)
1452 struct inode_walker w = inode_walker_init();
1453 struct snapshots_seen s;
1454 struct btree_trans *trans = bch2_trans_get(c);
1455 struct btree_iter iter;
1457 struct extent_ends extent_ends;
1458 struct disk_reservation res = { 0 };
1461 snapshots_seen_init(&s);
1462 extent_ends_init(&extent_ends);
1464 ret = for_each_btree_key_commit(trans, iter, BTREE_ID_extents,
1465 POS(BCACHEFS_ROOT_INO, 0),
1466 BTREE_ITER_PREFETCH|BTREE_ITER_ALL_SNAPSHOTS, k,
1468 BTREE_INSERT_LAZY_RW|BTREE_INSERT_NOFAIL, ({
1469 bch2_disk_reservation_put(c, &res);
1470 check_extent(trans, &iter, k, &w, &s, &extent_ends) ?:
1471 check_extent_overbig(trans, &iter, k);
1473 check_i_sectors(trans, &w);
1475 bch2_disk_reservation_put(c, &res);
1476 extent_ends_exit(&extent_ends);
1477 inode_walker_exit(&w);
1478 snapshots_seen_exit(&s);
1479 bch2_trans_put(trans);
1485 int bch2_check_indirect_extents(struct bch_fs *c)
1487 struct btree_trans *trans = bch2_trans_get(c);
1488 struct btree_iter iter;
1490 struct disk_reservation res = { 0 };
1493 ret = for_each_btree_key_commit(trans, iter, BTREE_ID_reflink,
1495 BTREE_ITER_PREFETCH, k,
1497 BTREE_INSERT_LAZY_RW|BTREE_INSERT_NOFAIL, ({
1498 bch2_disk_reservation_put(c, &res);
1499 check_extent_overbig(trans, &iter, k);
1502 bch2_disk_reservation_put(c, &res);
1503 bch2_trans_put(trans);
1509 static int check_subdir_count(struct btree_trans *trans, struct inode_walker *w)
1511 struct bch_fs *c = trans->c;
1512 struct inode_walker_entry *i;
1513 u32 restart_count = trans->restart_count;
1517 darray_for_each(w->inodes, i) {
1518 if (i->inode.bi_nlink == i->count)
1521 count2 = bch2_count_subdirs(trans, w->last_pos.inode, i->snapshot);
1525 if (i->count != count2) {
1526 bch_err(c, "fsck counted subdirectories wrong: got %llu should be %llu",
1529 if (i->inode.bi_nlink == i->count)
1533 if (fsck_err_on(i->inode.bi_nlink != i->count,
1534 c, inode_dir_wrong_nlink,
1535 "directory %llu:%u with wrong i_nlink: got %u, should be %llu",
1536 w->last_pos.inode, i->snapshot, i->inode.bi_nlink, i->count)) {
1537 i->inode.bi_nlink = i->count;
1538 ret = fsck_write_inode(trans, &i->inode, i->snapshot);
1545 return ret ?: trans_was_restarted(trans, restart_count);
1548 static int check_dirent_target(struct btree_trans *trans,
1549 struct btree_iter *iter,
1550 struct bkey_s_c_dirent d,
1551 struct bch_inode_unpacked *target,
1552 u32 target_snapshot)
1554 struct bch_fs *c = trans->c;
1555 struct bkey_i_dirent *n;
1556 bool backpointer_exists = true;
1557 struct printbuf buf = PRINTBUF;
1560 if (!target->bi_dir &&
1561 !target->bi_dir_offset) {
1562 target->bi_dir = d.k->p.inode;
1563 target->bi_dir_offset = d.k->p.offset;
1565 ret = __write_inode(trans, target, target_snapshot);
1570 if (!inode_points_to_dirent(target, d)) {
1571 ret = inode_backpointer_exists(trans, target, d.k->p.snapshot);
1575 backpointer_exists = ret;
1578 if (fsck_err_on(S_ISDIR(target->bi_mode) && backpointer_exists,
1579 c, inode_dir_multiple_links,
1580 "directory %llu with multiple links",
1582 ret = __remove_dirent(trans, d.k->p);
1586 if (fsck_err_on(backpointer_exists && !target->bi_nlink,
1587 c, inode_multiple_links_but_nlink_0,
1588 "inode %llu type %s has multiple links but i_nlink 0",
1589 target->bi_inum, bch2_d_types[d.v->d_type])) {
1591 target->bi_flags &= ~BCH_INODE_unlinked;
1593 ret = __write_inode(trans, target, target_snapshot);
1598 if (fsck_err_on(!backpointer_exists,
1599 c, inode_wrong_backpointer,
1600 "inode %llu:%u has wrong backpointer:\n"
1602 "should be %llu:%llu",
1603 target->bi_inum, target_snapshot,
1605 target->bi_dir_offset,
1608 target->bi_dir = d.k->p.inode;
1609 target->bi_dir_offset = d.k->p.offset;
1611 ret = __write_inode(trans, target, target_snapshot);
1617 if (fsck_err_on(d.v->d_type != inode_d_type(target),
1618 c, dirent_d_type_wrong,
1619 "incorrect d_type: got %s, should be %s:\n%s",
1620 bch2_d_type_str(d.v->d_type),
1621 bch2_d_type_str(inode_d_type(target)),
1622 (printbuf_reset(&buf),
1623 bch2_bkey_val_to_text(&buf, c, d.s_c), buf.buf))) {
1624 n = bch2_trans_kmalloc(trans, bkey_bytes(d.k));
1625 ret = PTR_ERR_OR_ZERO(n);
1629 bkey_reassemble(&n->k_i, d.s_c);
1630 n->v.d_type = inode_d_type(target);
1632 ret = bch2_trans_update(trans, iter, &n->k_i, 0);
1636 d = dirent_i_to_s_c(n);
1639 if (d.v->d_type == DT_SUBVOL &&
1640 target->bi_parent_subvol != le32_to_cpu(d.v->d_parent_subvol) &&
1641 (c->sb.version < bcachefs_metadata_version_subvol_dirent ||
1642 fsck_err(c, dirent_d_parent_subvol_wrong,
1643 "dirent has wrong d_parent_subvol field: got %u, should be %u",
1644 le32_to_cpu(d.v->d_parent_subvol),
1645 target->bi_parent_subvol))) {
1646 n = bch2_trans_kmalloc(trans, bkey_bytes(d.k));
1647 ret = PTR_ERR_OR_ZERO(n);
1651 bkey_reassemble(&n->k_i, d.s_c);
1652 n->v.d_parent_subvol = cpu_to_le32(target->bi_parent_subvol);
1654 ret = bch2_trans_update(trans, iter, &n->k_i, 0);
1658 d = dirent_i_to_s_c(n);
1663 printbuf_exit(&buf);
1668 static int check_dirent(struct btree_trans *trans, struct btree_iter *iter,
1670 struct bch_hash_info *hash_info,
1671 struct inode_walker *dir,
1672 struct inode_walker *target,
1673 struct snapshots_seen *s)
1675 struct bch_fs *c = trans->c;
1676 struct bkey_s_c_dirent d;
1677 struct inode_walker_entry *i;
1678 struct printbuf buf = PRINTBUF;
1682 ret = check_key_has_snapshot(trans, iter, k);
1684 ret = ret < 0 ? ret : 0;
1689 equiv.snapshot = bch2_snapshot_equiv(c, k.k->p.snapshot);
1691 ret = snapshots_seen_update(c, s, iter->btree_id, k.k->p);
1695 if (k.k->type == KEY_TYPE_whiteout)
1698 if (dir->last_pos.inode != k.k->p.inode) {
1699 ret = check_subdir_count(trans, dir);
1704 BUG_ON(!iter->path->should_be_locked);
1706 i = walk_inode(trans, dir, equiv, k.k->type == KEY_TYPE_whiteout);
1707 ret = PTR_ERR_OR_ZERO(i);
1711 if (dir->first_this_inode && dir->inodes.nr)
1712 *hash_info = bch2_hash_info_init(c, &dir->inodes.data[0].inode);
1713 dir->first_this_inode = false;
1715 if (fsck_err_on(!i, c, dirent_in_missing_dir_inode,
1716 "dirent in nonexisting directory:\n%s",
1717 (printbuf_reset(&buf),
1718 bch2_bkey_val_to_text(&buf, c, k), buf.buf))) {
1719 ret = bch2_btree_delete_at(trans, iter,
1720 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE);
1727 if (fsck_err_on(!S_ISDIR(i->inode.bi_mode),
1728 c, dirent_in_non_dir_inode,
1729 "dirent in non directory inode type %s:\n%s",
1730 bch2_d_type_str(inode_d_type(&i->inode)),
1731 (printbuf_reset(&buf),
1732 bch2_bkey_val_to_text(&buf, c, k), buf.buf))) {
1733 ret = bch2_btree_delete_at(trans, iter, 0);
1737 ret = hash_check_key(trans, bch2_dirent_hash_desc, hash_info, iter, k);
1741 /* dirent has been deleted */
1746 if (k.k->type != KEY_TYPE_dirent)
1749 d = bkey_s_c_to_dirent(k);
1751 if (d.v->d_type == DT_SUBVOL) {
1752 struct bch_inode_unpacked subvol_root;
1753 u32 target_subvol = le32_to_cpu(d.v->d_child_subvol);
1754 u32 target_snapshot;
1757 ret = __subvol_lookup(trans, target_subvol,
1758 &target_snapshot, &target_inum);
1759 if (ret && !bch2_err_matches(ret, ENOENT))
1762 if (fsck_err_on(ret, c, dirent_to_missing_subvol,
1763 "dirent points to missing subvolume %u",
1764 le32_to_cpu(d.v->d_child_subvol))) {
1765 ret = __remove_dirent(trans, d.k->p);
1769 ret = __lookup_inode(trans, target_inum,
1770 &subvol_root, &target_snapshot);
1771 if (ret && !bch2_err_matches(ret, ENOENT))
1774 if (fsck_err_on(ret, c, subvol_to_missing_root,
1775 "subvolume %u points to missing subvolume root %llu",
1778 bch_err(c, "repair not implemented yet");
1783 if (fsck_err_on(subvol_root.bi_subvol != target_subvol,
1784 c, subvol_root_wrong_bi_subvol,
1785 "subvol root %llu has wrong bi_subvol field: got %u, should be %u",
1787 subvol_root.bi_subvol, target_subvol)) {
1788 subvol_root.bi_subvol = target_subvol;
1789 ret = __write_inode(trans, &subvol_root, target_snapshot);
1794 ret = check_dirent_target(trans, iter, d, &subvol_root,
1799 ret = __get_visible_inodes(trans, target, s, le64_to_cpu(d.v->d_inum));
1803 if (fsck_err_on(!target->inodes.nr,
1804 c, dirent_to_missing_inode,
1805 "dirent points to missing inode: (equiv %u)\n%s",
1807 (printbuf_reset(&buf),
1808 bch2_bkey_val_to_text(&buf, c, k),
1810 ret = __remove_dirent(trans, d.k->p);
1815 darray_for_each(target->inodes, i) {
1816 ret = check_dirent_target(trans, iter, d,
1817 &i->inode, i->snapshot);
1823 if (d.v->d_type == DT_DIR)
1824 for_each_visible_inode(c, s, dir, equiv.snapshot, i)
1830 printbuf_exit(&buf);
1836 * Walk dirents: verify that they all have a corresponding S_ISDIR inode,
1839 int bch2_check_dirents(struct bch_fs *c)
1841 struct inode_walker dir = inode_walker_init();
1842 struct inode_walker target = inode_walker_init();
1843 struct snapshots_seen s;
1844 struct bch_hash_info hash_info;
1845 struct btree_trans *trans = bch2_trans_get(c);
1846 struct btree_iter iter;
1850 snapshots_seen_init(&s);
1852 ret = for_each_btree_key_commit(trans, iter, BTREE_ID_dirents,
1853 POS(BCACHEFS_ROOT_INO, 0),
1854 BTREE_ITER_PREFETCH|BTREE_ITER_ALL_SNAPSHOTS,
1857 BTREE_INSERT_LAZY_RW|BTREE_INSERT_NOFAIL,
1858 check_dirent(trans, &iter, k, &hash_info, &dir, &target, &s));
1860 bch2_trans_put(trans);
1861 snapshots_seen_exit(&s);
1862 inode_walker_exit(&dir);
1863 inode_walker_exit(&target);
1868 static int check_xattr(struct btree_trans *trans, struct btree_iter *iter,
1870 struct bch_hash_info *hash_info,
1871 struct inode_walker *inode)
1873 struct bch_fs *c = trans->c;
1874 struct inode_walker_entry *i;
1877 ret = check_key_has_snapshot(trans, iter, k);
1881 i = walk_inode(trans, inode, k.k->p, k.k->type == KEY_TYPE_whiteout);
1882 ret = PTR_ERR_OR_ZERO(i);
1886 if (inode->first_this_inode && inode->inodes.nr)
1887 *hash_info = bch2_hash_info_init(c, &inode->inodes.data[0].inode);
1888 inode->first_this_inode = false;
1890 if (fsck_err_on(!i, c, xattr_in_missing_inode,
1891 "xattr for missing inode %llu",
1893 return bch2_btree_delete_at(trans, iter, 0);
1898 ret = hash_check_key(trans, bch2_xattr_hash_desc, hash_info, iter, k);
1905 * Walk xattrs: verify that they all have a corresponding inode
1907 int bch2_check_xattrs(struct bch_fs *c)
1909 struct inode_walker inode = inode_walker_init();
1910 struct bch_hash_info hash_info;
1911 struct btree_iter iter;
1915 ret = bch2_trans_run(c,
1916 for_each_btree_key_commit(trans, iter, BTREE_ID_xattrs,
1917 POS(BCACHEFS_ROOT_INO, 0),
1918 BTREE_ITER_PREFETCH|BTREE_ITER_ALL_SNAPSHOTS,
1921 BTREE_INSERT_LAZY_RW|BTREE_INSERT_NOFAIL,
1922 check_xattr(trans, &iter, k, &hash_info, &inode)));
1927 static int check_root_trans(struct btree_trans *trans)
1929 struct bch_fs *c = trans->c;
1930 struct bch_inode_unpacked root_inode;
1935 ret = __subvol_lookup(trans, BCACHEFS_ROOT_SUBVOL, &snapshot, &inum);
1936 if (ret && !bch2_err_matches(ret, ENOENT))
1939 if (mustfix_fsck_err_on(ret, c, root_subvol_missing,
1940 "root subvol missing")) {
1941 struct bkey_i_subvolume root_subvol;
1944 inum = BCACHEFS_ROOT_INO;
1946 bkey_subvolume_init(&root_subvol.k_i);
1947 root_subvol.k.p.offset = BCACHEFS_ROOT_SUBVOL;
1948 root_subvol.v.flags = 0;
1949 root_subvol.v.snapshot = cpu_to_le32(snapshot);
1950 root_subvol.v.inode = cpu_to_le64(inum);
1951 ret = commit_do(trans, NULL, NULL,
1952 BTREE_INSERT_NOFAIL|
1953 BTREE_INSERT_LAZY_RW,
1954 bch2_btree_insert_trans(trans, BTREE_ID_subvolumes,
1955 &root_subvol.k_i, 0));
1956 bch_err_msg(c, ret, "writing root subvol");
1962 ret = __lookup_inode(trans, BCACHEFS_ROOT_INO, &root_inode, &snapshot);
1963 if (ret && !bch2_err_matches(ret, ENOENT))
1966 if (mustfix_fsck_err_on(ret, c, root_dir_missing,
1967 "root directory missing") ||
1968 mustfix_fsck_err_on(!S_ISDIR(root_inode.bi_mode),
1969 c, root_inode_not_dir,
1970 "root inode not a directory")) {
1971 bch2_inode_init(c, &root_inode, 0, 0, S_IFDIR|0755,
1973 root_inode.bi_inum = inum;
1975 ret = __write_inode(trans, &root_inode, snapshot);
1976 bch_err_msg(c, ret, "writing root inode");
1983 /* Get root directory, create if it doesn't exist: */
1984 int bch2_check_root(struct bch_fs *c)
1988 ret = bch2_trans_do(c, NULL, NULL,
1989 BTREE_INSERT_NOFAIL|
1990 BTREE_INSERT_LAZY_RW,
1991 check_root_trans(trans));
1996 struct pathbuf_entry {
2001 typedef DARRAY(struct pathbuf_entry) pathbuf;
2003 static bool path_is_dup(pathbuf *p, u64 inum, u32 snapshot)
2005 struct pathbuf_entry *i;
2007 darray_for_each(*p, i)
2008 if (i->inum == inum &&
2009 i->snapshot == snapshot)
2015 static int path_down(struct bch_fs *c, pathbuf *p,
2016 u64 inum, u32 snapshot)
2018 int ret = darray_push(p, ((struct pathbuf_entry) {
2020 .snapshot = snapshot,
2024 bch_err(c, "fsck: error allocating memory for pathbuf, size %zu",
2030 * Check that a given inode is reachable from the root:
2032 * XXX: we should also be verifying that inodes are in the right subvolumes
2034 static int check_path(struct btree_trans *trans,
2036 struct bch_inode_unpacked *inode,
2039 struct bch_fs *c = trans->c;
2042 snapshot = bch2_snapshot_equiv(c, snapshot);
2045 while (!(inode->bi_inum == BCACHEFS_ROOT_INO &&
2046 inode->bi_subvol == BCACHEFS_ROOT_SUBVOL)) {
2047 struct btree_iter dirent_iter;
2048 struct bkey_s_c_dirent d;
2049 u32 parent_snapshot = snapshot;
2051 if (inode->bi_subvol) {
2054 ret = subvol_lookup(trans, inode->bi_parent_subvol,
2055 &parent_snapshot, &inum);
2060 ret = lockrestart_do(trans,
2061 PTR_ERR_OR_ZERO((d = dirent_get_by_pos(trans, &dirent_iter,
2062 SPOS(inode->bi_dir, inode->bi_dir_offset,
2063 parent_snapshot))).k));
2064 if (ret && !bch2_err_matches(ret, ENOENT))
2067 if (!ret && !dirent_points_to_inode(d, inode)) {
2068 bch2_trans_iter_exit(trans, &dirent_iter);
2069 ret = -BCH_ERR_ENOENT_dirent_doesnt_match_inode;
2072 if (bch2_err_matches(ret, ENOENT)) {
2073 if (fsck_err(c, inode_unreachable,
2074 "unreachable inode %llu:%u, type %s nlink %u backptr %llu:%llu",
2075 inode->bi_inum, snapshot,
2076 bch2_d_type_str(inode_d_type(inode)),
2079 inode->bi_dir_offset))
2080 ret = reattach_inode(trans, inode, snapshot);
2084 bch2_trans_iter_exit(trans, &dirent_iter);
2086 if (!S_ISDIR(inode->bi_mode))
2089 ret = path_down(c, p, inode->bi_inum, snapshot);
2091 bch_err(c, "memory allocation failure");
2095 snapshot = parent_snapshot;
2097 ret = lookup_inode(trans, inode->bi_dir, inode, &snapshot);
2099 /* Should have been caught in dirents pass */
2100 bch_err(c, "error looking up parent directory: %i", ret);
2104 if (path_is_dup(p, inode->bi_inum, snapshot)) {
2105 struct pathbuf_entry *i;
2107 /* XXX print path */
2108 bch_err(c, "directory structure loop");
2110 darray_for_each(*p, i)
2111 pr_err("%llu:%u", i->inum, i->snapshot);
2112 pr_err("%llu:%u", inode->bi_inum, snapshot);
2114 if (!fsck_err(c, dir_loop,
2115 "directory structure loop"))
2118 ret = commit_do(trans, NULL, NULL,
2119 BTREE_INSERT_NOFAIL|
2120 BTREE_INSERT_LAZY_RW,
2121 remove_backpointer(trans, inode));
2123 bch_err(c, "error removing dirent: %i", ret);
2127 ret = reattach_inode(trans, inode, snapshot);
2136 * Check for unreachable inodes, as well as loops in the directory structure:
2137 * After bch2_check_dirents(), if an inode backpointer doesn't exist that means it's
2140 int bch2_check_directory_structure(struct bch_fs *c)
2142 struct btree_trans *trans = bch2_trans_get(c);
2143 struct btree_iter iter;
2145 struct bch_inode_unpacked u;
2146 pathbuf path = { 0, };
2149 for_each_btree_key(trans, iter, BTREE_ID_inodes, POS_MIN,
2151 BTREE_ITER_PREFETCH|
2152 BTREE_ITER_ALL_SNAPSHOTS, k, ret) {
2153 if (!bkey_is_inode(k.k))
2156 ret = bch2_inode_unpack(k, &u);
2158 /* Should have been caught earlier in fsck: */
2159 bch_err(c, "error unpacking inode %llu: %i", k.k->p.offset, ret);
2163 if (u.bi_flags & BCH_INODE_unlinked)
2166 ret = check_path(trans, &path, &u, iter.pos.snapshot);
2170 bch2_trans_iter_exit(trans, &iter);
2171 bch2_trans_put(trans);
2177 struct nlink_table {
2188 static int add_nlink(struct bch_fs *c, struct nlink_table *t,
2189 u64 inum, u32 snapshot)
2191 if (t->nr == t->size) {
2192 size_t new_size = max_t(size_t, 128UL, t->size * 2);
2193 void *d = kvmalloc_array(new_size, sizeof(t->d[0]), GFP_KERNEL);
2196 bch_err(c, "fsck: error allocating memory for nlink_table, size %zu",
2198 return -BCH_ERR_ENOMEM_fsck_add_nlink;
2202 memcpy(d, t->d, t->size * sizeof(t->d[0]));
2210 t->d[t->nr++] = (struct nlink) {
2212 .snapshot = snapshot,
2218 static int nlink_cmp(const void *_l, const void *_r)
2220 const struct nlink *l = _l;
2221 const struct nlink *r = _r;
2223 return cmp_int(l->inum, r->inum) ?: cmp_int(l->snapshot, r->snapshot);
2226 static void inc_link(struct bch_fs *c, struct snapshots_seen *s,
2227 struct nlink_table *links,
2228 u64 range_start, u64 range_end, u64 inum, u32 snapshot)
2230 struct nlink *link, key = {
2231 .inum = inum, .snapshot = U32_MAX,
2234 if (inum < range_start || inum >= range_end)
2237 link = __inline_bsearch(&key, links->d, links->nr,
2238 sizeof(links->d[0]), nlink_cmp);
2242 while (link > links->d && link[0].inum == link[-1].inum)
2245 for (; link < links->d + links->nr && link->inum == inum; link++)
2246 if (ref_visible(c, s, snapshot, link->snapshot)) {
2248 if (link->snapshot >= snapshot)
2254 static int check_nlinks_find_hardlinks(struct bch_fs *c,
2255 struct nlink_table *t,
2256 u64 start, u64 *end)
2258 struct btree_trans *trans = bch2_trans_get(c);
2259 struct btree_iter iter;
2261 struct bch_inode_unpacked u;
2264 for_each_btree_key(trans, iter, BTREE_ID_inodes,
2267 BTREE_ITER_PREFETCH|
2268 BTREE_ITER_ALL_SNAPSHOTS, k, ret) {
2269 if (!bkey_is_inode(k.k))
2272 /* Should never fail, checked by bch2_inode_invalid: */
2273 BUG_ON(bch2_inode_unpack(k, &u));
2276 * Backpointer and directory structure checks are sufficient for
2277 * directories, since they can't have hardlinks:
2279 if (S_ISDIR(u.bi_mode))
2285 ret = add_nlink(c, t, k.k->p.offset, k.k->p.snapshot);
2287 *end = k.k->p.offset;
2293 bch2_trans_iter_exit(trans, &iter);
2294 bch2_trans_put(trans);
2297 bch_err(c, "error in fsck: btree error %i while walking inodes", ret);
2303 static int check_nlinks_walk_dirents(struct bch_fs *c, struct nlink_table *links,
2304 u64 range_start, u64 range_end)
2306 struct btree_trans *trans = bch2_trans_get(c);
2307 struct snapshots_seen s;
2308 struct btree_iter iter;
2310 struct bkey_s_c_dirent d;
2313 snapshots_seen_init(&s);
2315 for_each_btree_key(trans, iter, BTREE_ID_dirents, POS_MIN,
2317 BTREE_ITER_PREFETCH|
2318 BTREE_ITER_ALL_SNAPSHOTS, k, ret) {
2319 ret = snapshots_seen_update(c, &s, iter.btree_id, k.k->p);
2323 switch (k.k->type) {
2324 case KEY_TYPE_dirent:
2325 d = bkey_s_c_to_dirent(k);
2327 if (d.v->d_type != DT_DIR &&
2328 d.v->d_type != DT_SUBVOL)
2329 inc_link(c, &s, links, range_start, range_end,
2330 le64_to_cpu(d.v->d_inum),
2331 bch2_snapshot_equiv(c, d.k->p.snapshot));
2335 bch2_trans_iter_exit(trans, &iter);
2338 bch_err(c, "error in fsck: btree error %i while walking dirents", ret);
2340 bch2_trans_put(trans);
2341 snapshots_seen_exit(&s);
2345 static int check_nlinks_update_inode(struct btree_trans *trans, struct btree_iter *iter,
2347 struct nlink_table *links,
2348 size_t *idx, u64 range_end)
2350 struct bch_fs *c = trans->c;
2351 struct bch_inode_unpacked u;
2352 struct nlink *link = &links->d[*idx];
2355 if (k.k->p.offset >= range_end)
2358 if (!bkey_is_inode(k.k))
2361 BUG_ON(bch2_inode_unpack(k, &u));
2363 if (S_ISDIR(u.bi_mode))
2369 while ((cmp_int(link->inum, k.k->p.offset) ?:
2370 cmp_int(link->snapshot, k.k->p.snapshot)) < 0) {
2371 BUG_ON(*idx == links->nr);
2372 link = &links->d[++*idx];
2375 if (fsck_err_on(bch2_inode_nlink_get(&u) != link->count,
2376 c, inode_wrong_nlink,
2377 "inode %llu type %s has wrong i_nlink (%u, should be %u)",
2378 u.bi_inum, bch2_d_types[mode_to_type(u.bi_mode)],
2379 bch2_inode_nlink_get(&u), link->count)) {
2380 bch2_inode_nlink_set(&u, link->count);
2381 ret = __write_inode(trans, &u, k.k->p.snapshot);
2388 static int check_nlinks_update_hardlinks(struct bch_fs *c,
2389 struct nlink_table *links,
2390 u64 range_start, u64 range_end)
2392 struct btree_iter iter;
2397 ret = bch2_trans_run(c,
2398 for_each_btree_key_commit(trans, iter, BTREE_ID_inodes,
2399 POS(0, range_start),
2400 BTREE_ITER_INTENT|BTREE_ITER_PREFETCH|BTREE_ITER_ALL_SNAPSHOTS, k,
2401 NULL, NULL, BTREE_INSERT_LAZY_RW|BTREE_INSERT_NOFAIL,
2402 check_nlinks_update_inode(trans, &iter, k, links, &idx, range_end)));
2404 bch_err(c, "error in fsck: btree error %i while walking inodes", ret);
2411 int bch2_check_nlinks(struct bch_fs *c)
2413 struct nlink_table links = { 0 };
2414 u64 this_iter_range_start, next_iter_range_start = 0;
2418 this_iter_range_start = next_iter_range_start;
2419 next_iter_range_start = U64_MAX;
2421 ret = check_nlinks_find_hardlinks(c, &links,
2422 this_iter_range_start,
2423 &next_iter_range_start);
2425 ret = check_nlinks_walk_dirents(c, &links,
2426 this_iter_range_start,
2427 next_iter_range_start);
2431 ret = check_nlinks_update_hardlinks(c, &links,
2432 this_iter_range_start,
2433 next_iter_range_start);
2438 } while (next_iter_range_start != U64_MAX);
2445 static int fix_reflink_p_key(struct btree_trans *trans, struct btree_iter *iter,
2448 struct bkey_s_c_reflink_p p;
2449 struct bkey_i_reflink_p *u;
2452 if (k.k->type != KEY_TYPE_reflink_p)
2455 p = bkey_s_c_to_reflink_p(k);
2457 if (!p.v->front_pad && !p.v->back_pad)
2460 u = bch2_trans_kmalloc(trans, sizeof(*u));
2461 ret = PTR_ERR_OR_ZERO(u);
2465 bkey_reassemble(&u->k_i, k);
2469 return bch2_trans_update(trans, iter, &u->k_i, BTREE_TRIGGER_NORUN);
2472 int bch2_fix_reflink_p(struct bch_fs *c)
2474 struct btree_iter iter;
2478 if (c->sb.version >= bcachefs_metadata_version_reflink_p_fix)
2481 ret = bch2_trans_run(c,
2482 for_each_btree_key_commit(trans, iter,
2483 BTREE_ID_extents, POS_MIN,
2484 BTREE_ITER_INTENT|BTREE_ITER_PREFETCH|
2485 BTREE_ITER_ALL_SNAPSHOTS, k,
2486 NULL, NULL, BTREE_INSERT_NOFAIL|BTREE_INSERT_LAZY_RW,
2487 fix_reflink_p_key(trans, &iter, k)));