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 */
24 * XXX: this is handling transaction restarts without returning
25 * -BCH_ERR_transaction_restart_nested, this is not how we do things anymore:
27 static s64 bch2_count_inode_sectors(struct btree_trans *trans, u64 inum,
32 int ret = for_each_btree_key_upto(trans, iter, BTREE_ID_extents,
33 SPOS(inum, 0, snapshot),
36 if (bkey_extent_is_allocation(k.k))
41 return ret ?: sectors;
44 static s64 bch2_count_subdirs(struct btree_trans *trans, u64 inum,
49 int ret = for_each_btree_key_upto(trans, iter, BTREE_ID_dirents,
50 SPOS(inum, 0, snapshot),
53 if (k.k->type == KEY_TYPE_dirent &&
54 bkey_s_c_to_dirent(k).v->d_type == DT_DIR)
59 return ret ?: subdirs;
62 static int subvol_lookup(struct btree_trans *trans, u32 subvol,
63 u32 *snapshot, u64 *inum)
65 struct bch_subvolume s;
68 ret = bch2_subvolume_get(trans, subvol, false, 0, &s);
70 *snapshot = le32_to_cpu(s.snapshot);
71 *inum = le64_to_cpu(s.inode);
75 static int lookup_first_inode(struct btree_trans *trans, u64 inode_nr,
76 struct bch_inode_unpacked *inode)
78 struct btree_iter iter;
82 bch2_trans_iter_init(trans, &iter, BTREE_ID_inodes,
84 BTREE_ITER_ALL_SNAPSHOTS);
85 k = bch2_btree_iter_peek(&iter);
90 if (!k.k || !bkey_eq(k.k->p, POS(0, inode_nr))) {
91 ret = -BCH_ERR_ENOENT_inode;
95 ret = bch2_inode_unpack(k, inode);
97 bch_err_msg(trans->c, ret, "fetching inode %llu", inode_nr);
98 bch2_trans_iter_exit(trans, &iter);
102 static int lookup_inode(struct btree_trans *trans, u64 inode_nr,
103 struct bch_inode_unpacked *inode,
106 struct btree_iter iter;
110 k = bch2_bkey_get_iter(trans, &iter, BTREE_ID_inodes,
111 SPOS(0, inode_nr, *snapshot), 0);
116 ret = bkey_is_inode(k.k)
117 ? bch2_inode_unpack(k, inode)
118 : -BCH_ERR_ENOENT_inode;
120 *snapshot = iter.pos.snapshot;
122 bch2_trans_iter_exit(trans, &iter);
126 static int lookup_dirent_in_snapshot(struct btree_trans *trans,
127 struct bch_hash_info hash_info,
128 subvol_inum dir, struct qstr *name,
129 u64 *target, unsigned *type, u32 snapshot)
131 struct btree_iter iter;
132 struct bkey_s_c_dirent d;
133 int ret = bch2_hash_lookup_in_snapshot(trans, &iter, bch2_dirent_hash_desc,
134 &hash_info, dir, name, 0, snapshot);
138 d = bkey_s_c_to_dirent(bch2_btree_iter_peek_slot(&iter));
139 *target = le64_to_cpu(d.v->d_inum);
141 bch2_trans_iter_exit(trans, &iter);
145 static int __remove_dirent(struct btree_trans *trans, struct bpos pos)
147 struct bch_fs *c = trans->c;
148 struct btree_iter iter;
149 struct bch_inode_unpacked dir_inode;
150 struct bch_hash_info dir_hash_info;
153 ret = lookup_first_inode(trans, pos.inode, &dir_inode);
157 dir_hash_info = bch2_hash_info_init(c, &dir_inode);
159 bch2_trans_iter_init(trans, &iter, BTREE_ID_dirents, pos, BTREE_ITER_INTENT);
161 ret = bch2_hash_delete_at(trans, bch2_dirent_hash_desc,
162 &dir_hash_info, &iter,
163 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE);
164 bch2_trans_iter_exit(trans, &iter);
170 /* Get lost+found, create if it doesn't exist: */
171 static int lookup_lostfound(struct btree_trans *trans, u32 snapshot,
172 struct bch_inode_unpacked *lostfound)
174 struct bch_fs *c = trans->c;
175 struct qstr lostfound_str = QSTR("lost+found");
180 struct bch_snapshot_tree st;
181 ret = bch2_snapshot_tree_lookup(trans,
182 bch2_snapshot_tree(c, snapshot), &st);
186 subvol_inum root_inum = { .subvol = le32_to_cpu(st.master_subvol) };
189 ret = subvol_lookup(trans, le32_to_cpu(st.master_subvol),
190 &subvol_snapshot, &root_inum.inum);
191 bch_err_msg(c, ret, "looking up root subvol");
195 struct bch_inode_unpacked root_inode;
196 struct bch_hash_info root_hash_info;
197 u32 root_inode_snapshot = snapshot;
198 ret = lookup_inode(trans, root_inum.inum, &root_inode, &root_inode_snapshot);
199 bch_err_msg(c, ret, "looking up root inode");
203 root_hash_info = bch2_hash_info_init(c, &root_inode);
205 ret = lookup_dirent_in_snapshot(trans, root_hash_info, root_inum,
206 &lostfound_str, &inum, &d_type, snapshot);
207 if (bch2_err_matches(ret, ENOENT))
208 goto create_lostfound;
214 if (d_type != DT_DIR) {
215 bch_err(c, "error looking up lost+found: not a directory");
216 return -BCH_ERR_ENOENT_not_directory;
220 * The bch2_check_dirents pass has already run, dangling dirents
221 * shouldn't exist here:
223 ret = lookup_inode(trans, inum, lostfound, &snapshot);
224 bch_err_msg(c, ret, "looking up lost+found %llu:%u in (root inode %llu, snapshot root %u)",
225 inum, snapshot, root_inum.inum, bch2_snapshot_root(c, snapshot));
230 * XXX: we could have a nicer log message here if we had a nice way to
231 * walk backpointers to print a path
233 bch_notice(c, "creating lost+found in snapshot %u", le32_to_cpu(st.root_snapshot));
235 u64 now = bch2_current_time(c);
236 struct btree_iter lostfound_iter = { NULL };
237 u64 cpu = raw_smp_processor_id();
239 bch2_inode_init_early(c, lostfound);
240 bch2_inode_init_late(lostfound, now, 0, 0, S_IFDIR|0700, 0, &root_inode);
241 lostfound->bi_dir = root_inode.bi_inum;
243 root_inode.bi_nlink++;
245 ret = bch2_inode_create(trans, &lostfound_iter, lostfound, snapshot, cpu);
249 bch2_btree_iter_set_snapshot(&lostfound_iter, snapshot);
250 ret = bch2_btree_iter_traverse(&lostfound_iter);
254 ret = bch2_dirent_create_snapshot(trans,
255 0, root_inode.bi_inum, snapshot, &root_hash_info,
256 mode_to_type(lostfound->bi_mode),
259 &lostfound->bi_dir_offset,
260 BCH_HASH_SET_MUST_CREATE) ?:
261 bch2_inode_write_flags(trans, &lostfound_iter, lostfound,
262 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE);
264 bch_err_msg(c, ret, "creating lost+found");
265 bch2_trans_iter_exit(trans, &lostfound_iter);
269 static int reattach_inode(struct btree_trans *trans,
270 struct bch_inode_unpacked *inode,
273 struct bch_hash_info dir_hash;
274 struct bch_inode_unpacked lostfound;
278 u32 dirent_snapshot = inode_snapshot;
281 if (inode->bi_subvol) {
282 inode->bi_parent_subvol = BCACHEFS_ROOT_SUBVOL;
285 ret = subvol_lookup(trans, inode->bi_parent_subvol,
286 &dirent_snapshot, &root_inum);
290 snprintf(name_buf, sizeof(name_buf), "subvol-%u", inode->bi_subvol);
292 snprintf(name_buf, sizeof(name_buf), "%llu", inode->bi_inum);
295 ret = lookup_lostfound(trans, dirent_snapshot, &lostfound);
299 if (S_ISDIR(inode->bi_mode)) {
300 lostfound.bi_nlink++;
302 ret = __bch2_fsck_write_inode(trans, &lostfound, U32_MAX);
307 dir_hash = bch2_hash_info_init(trans->c, &lostfound);
309 name = (struct qstr) QSTR(name_buf);
311 ret = bch2_dirent_create_snapshot(trans,
312 inode->bi_parent_subvol, lostfound.bi_inum,
317 inode->bi_subvol ?: inode->bi_inum,
319 BCH_HASH_SET_MUST_CREATE);
323 inode->bi_dir = lostfound.bi_inum;
324 inode->bi_dir_offset = dir_offset;
326 return __bch2_fsck_write_inode(trans, inode, inode_snapshot);
329 static int remove_backpointer(struct btree_trans *trans,
330 struct bch_inode_unpacked *inode)
332 struct btree_iter iter;
333 struct bkey_s_c_dirent d;
336 d = bch2_bkey_get_iter_typed(trans, &iter, BTREE_ID_dirents,
337 POS(inode->bi_dir, inode->bi_dir_offset), 0,
340 __remove_dirent(trans, d.k->p);
341 bch2_trans_iter_exit(trans, &iter);
345 static int reattach_subvol(struct btree_trans *trans, struct bkey_s_c_subvolume s)
347 struct bch_fs *c = trans->c;
349 struct bch_inode_unpacked inode;
350 int ret = bch2_inode_find_by_inum_trans(trans,
351 (subvol_inum) { s.k->p.offset, le64_to_cpu(s.v->inode) },
356 ret = remove_backpointer(trans, &inode);
357 bch_err_msg(c, ret, "removing dirent");
361 ret = reattach_inode(trans, &inode, le32_to_cpu(s.v->snapshot));
362 bch_err_msg(c, ret, "reattaching inode %llu", inode.bi_inum);
366 struct snapshots_seen_entry {
371 struct snapshots_seen {
373 DARRAY(struct snapshots_seen_entry) ids;
376 static inline void snapshots_seen_exit(struct snapshots_seen *s)
378 darray_exit(&s->ids);
381 static inline void snapshots_seen_init(struct snapshots_seen *s)
383 memset(s, 0, sizeof(*s));
386 static int snapshots_seen_add_inorder(struct bch_fs *c, struct snapshots_seen *s, u32 id)
388 struct snapshots_seen_entry *i, n = {
390 .equiv = bch2_snapshot_equiv(c, id),
394 __darray_for_each(s->ids, i) {
401 ret = darray_insert_item(&s->ids, i - s->ids.data, n);
403 bch_err(c, "error reallocating snapshots_seen table (size %zu)",
408 static int snapshots_seen_update(struct bch_fs *c, struct snapshots_seen *s,
409 enum btree_id btree_id, struct bpos pos)
411 struct snapshots_seen_entry n = {
413 .equiv = bch2_snapshot_equiv(c, pos.snapshot),
417 if (!bkey_eq(s->pos, pos))
421 s->pos.snapshot = n.equiv;
423 darray_for_each(s->ids, i) {
428 * We currently don't rigorously track for snapshot cleanup
429 * needing to be run, so it shouldn't be a fsck error yet:
431 if (i->equiv == n.equiv) {
432 bch_err(c, "snapshot deletion did not finish:\n"
433 " duplicate keys in btree %s at %llu:%llu snapshots %u, %u (equiv %u)\n",
434 bch2_btree_id_str(btree_id),
435 pos.inode, pos.offset,
436 i->id, n.id, n.equiv);
437 set_bit(BCH_FS_need_delete_dead_snapshots, &c->flags);
438 return bch2_run_explicit_recovery_pass(c, BCH_RECOVERY_PASS_delete_dead_snapshots);
442 ret = darray_push(&s->ids, n);
444 bch_err(c, "error reallocating snapshots_seen table (size %zu)",
450 * key_visible_in_snapshot - returns true if @id is a descendent of @ancestor,
451 * and @ancestor hasn't been overwritten in @seen
453 * @c: filesystem handle
454 * @seen: list of snapshot ids already seen at current position
455 * @id: descendent snapshot id
456 * @ancestor: ancestor snapshot id
458 * Returns: whether key in @ancestor snapshot is visible in @id snapshot
460 static bool key_visible_in_snapshot(struct bch_fs *c, struct snapshots_seen *seen,
461 u32 id, u32 ancestor)
465 EBUG_ON(id > ancestor);
466 EBUG_ON(!bch2_snapshot_is_equiv(c, id));
467 EBUG_ON(!bch2_snapshot_is_equiv(c, ancestor));
469 /* @ancestor should be the snapshot most recently added to @seen */
470 EBUG_ON(ancestor != seen->pos.snapshot);
471 EBUG_ON(ancestor != seen->ids.data[seen->ids.nr - 1].equiv);
476 if (!bch2_snapshot_is_ancestor(c, id, ancestor))
480 * We know that @id is a descendant of @ancestor, we're checking if
481 * we've seen a key that overwrote @ancestor - i.e. also a descendent of
482 * @ascestor and with @id as a descendent.
484 * But we already know that we're scanning IDs between @id and @ancestor
485 * numerically, since snapshot ID lists are kept sorted, so if we find
486 * an id that's an ancestor of @id we're done:
489 for (i = seen->ids.nr - 2;
490 i >= 0 && seen->ids.data[i].equiv >= id;
492 if (bch2_snapshot_is_ancestor(c, id, seen->ids.data[i].equiv))
499 * ref_visible - given a key with snapshot id @src that points to a key with
500 * snapshot id @dst, test whether there is some snapshot in which @dst is
503 * @c: filesystem handle
504 * @s: list of snapshot IDs already seen at @src
505 * @src: snapshot ID of src key
506 * @dst: snapshot ID of dst key
507 * Returns: true if there is some snapshot in which @dst is visible
509 * Assumes we're visiting @src keys in natural key order
511 static bool ref_visible(struct bch_fs *c, struct snapshots_seen *s,
515 ? key_visible_in_snapshot(c, s, dst, src)
516 : bch2_snapshot_is_ancestor(c, src, dst);
519 static int ref_visible2(struct bch_fs *c,
520 u32 src, struct snapshots_seen *src_seen,
521 u32 dst, struct snapshots_seen *dst_seen)
523 src = bch2_snapshot_equiv(c, src);
524 dst = bch2_snapshot_equiv(c, dst);
528 swap(dst_seen, src_seen);
530 return key_visible_in_snapshot(c, src_seen, dst, src);
533 #define for_each_visible_inode(_c, _s, _w, _snapshot, _i) \
534 for (_i = (_w)->inodes.data; _i < (_w)->inodes.data + (_w)->inodes.nr && \
535 (_i)->snapshot <= (_snapshot); _i++) \
536 if (key_visible_in_snapshot(_c, _s, _i->snapshot, _snapshot))
538 struct inode_walker_entry {
539 struct bch_inode_unpacked inode;
545 struct inode_walker {
546 bool first_this_inode;
547 bool recalculate_sums;
548 struct bpos last_pos;
550 DARRAY(struct inode_walker_entry) inodes;
553 static void inode_walker_exit(struct inode_walker *w)
555 darray_exit(&w->inodes);
558 static struct inode_walker inode_walker_init(void)
560 return (struct inode_walker) { 0, };
563 static int add_inode(struct bch_fs *c, struct inode_walker *w,
564 struct bkey_s_c inode)
566 struct bch_inode_unpacked u;
568 BUG_ON(bch2_inode_unpack(inode, &u));
570 return darray_push(&w->inodes, ((struct inode_walker_entry) {
572 .snapshot = bch2_snapshot_equiv(c, inode.k->p.snapshot),
576 static int get_inodes_all_snapshots(struct btree_trans *trans,
577 struct inode_walker *w, u64 inum)
579 struct bch_fs *c = trans->c;
580 struct btree_iter iter;
584 w->recalculate_sums = false;
587 for_each_btree_key_norestart(trans, iter, BTREE_ID_inodes, POS(0, inum),
588 BTREE_ITER_ALL_SNAPSHOTS, k, ret) {
589 if (k.k->p.offset != inum)
592 if (bkey_is_inode(k.k))
595 bch2_trans_iter_exit(trans, &iter);
600 w->first_this_inode = true;
604 static struct inode_walker_entry *
605 lookup_inode_for_snapshot(struct bch_fs *c, struct inode_walker *w, struct bkey_s_c k)
607 bool is_whiteout = k.k->type == KEY_TYPE_whiteout;
608 u32 snapshot = bch2_snapshot_equiv(c, k.k->p.snapshot);
610 struct inode_walker_entry *i;
611 __darray_for_each(w->inodes, i)
612 if (bch2_snapshot_is_ancestor(c, snapshot, i->snapshot))
617 BUG_ON(snapshot > i->snapshot);
619 if (snapshot != i->snapshot && !is_whiteout) {
620 struct inode_walker_entry new = *i;
622 new.snapshot = snapshot;
625 struct printbuf buf = PRINTBUF;
626 bch2_bkey_val_to_text(&buf, c, k);
628 bch_info(c, "have key for inode %llu:%u but have inode in ancestor snapshot %u\n"
629 "unexpected because we should always update the inode when we update a key in that inode\n"
631 w->last_pos.inode, snapshot, i->snapshot, buf.buf);
634 while (i > w->inodes.data && i[-1].snapshot > snapshot)
637 size_t pos = i - w->inodes.data;
638 int ret = darray_insert_item(&w->inodes, pos, new);
642 i = w->inodes.data + pos;
648 static struct inode_walker_entry *walk_inode(struct btree_trans *trans,
649 struct inode_walker *w,
652 if (w->last_pos.inode != k.k->p.inode) {
653 int ret = get_inodes_all_snapshots(trans, w, k.k->p.inode);
656 } else if (bkey_cmp(w->last_pos, k.k->p)) {
657 darray_for_each(w->inodes, i)
658 i->seen_this_pos = false;
661 w->last_pos = k.k->p;
663 return lookup_inode_for_snapshot(trans->c, w, k);
666 static int __get_visible_inodes(struct btree_trans *trans,
667 struct inode_walker *w,
668 struct snapshots_seen *s,
671 struct bch_fs *c = trans->c;
672 struct btree_iter iter;
678 for_each_btree_key_norestart(trans, iter, BTREE_ID_inodes, POS(0, inum),
679 BTREE_ITER_ALL_SNAPSHOTS, k, ret) {
680 u32 equiv = bch2_snapshot_equiv(c, k.k->p.snapshot);
682 if (k.k->p.offset != inum)
685 if (!ref_visible(c, s, s->pos.snapshot, equiv))
688 if (bkey_is_inode(k.k))
691 if (equiv >= s->pos.snapshot)
694 bch2_trans_iter_exit(trans, &iter);
699 static int check_key_has_snapshot(struct btree_trans *trans,
700 struct btree_iter *iter,
703 struct bch_fs *c = trans->c;
704 struct printbuf buf = PRINTBUF;
707 if (mustfix_fsck_err_on(!bch2_snapshot_equiv(c, k.k->p.snapshot), c,
708 bkey_in_missing_snapshot,
709 "key in missing snapshot: %s",
710 (bch2_bkey_val_to_text(&buf, c, k), buf.buf)))
711 ret = bch2_btree_delete_at(trans, iter,
712 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE) ?: 1;
718 static int hash_redo_key(struct btree_trans *trans,
719 const struct bch_hash_desc desc,
720 struct bch_hash_info *hash_info,
721 struct btree_iter *k_iter, struct bkey_s_c k)
723 struct bkey_i *delete;
726 delete = bch2_trans_kmalloc(trans, sizeof(*delete));
728 return PTR_ERR(delete);
730 tmp = bch2_bkey_make_mut_noupdate(trans, k);
734 bkey_init(&delete->k);
735 delete->k.p = k_iter->pos;
736 return bch2_btree_iter_traverse(k_iter) ?:
737 bch2_trans_update(trans, k_iter, delete, 0) ?:
738 bch2_hash_set_in_snapshot(trans, desc, hash_info,
739 (subvol_inum) { 0, k.k->p.inode },
740 k.k->p.snapshot, tmp,
741 BCH_HASH_SET_MUST_CREATE,
742 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE) ?:
743 bch2_trans_commit(trans, NULL, NULL, BCH_TRANS_COMMIT_no_enospc);
746 static int hash_check_key(struct btree_trans *trans,
747 const struct bch_hash_desc desc,
748 struct bch_hash_info *hash_info,
749 struct btree_iter *k_iter, struct bkey_s_c hash_k)
751 struct bch_fs *c = trans->c;
752 struct btree_iter iter = { NULL };
753 struct printbuf buf = PRINTBUF;
758 if (hash_k.k->type != desc.key_type)
761 hash = desc.hash_bkey(hash_info, hash_k);
763 if (likely(hash == hash_k.k->p.offset))
766 if (hash_k.k->p.offset < hash)
769 for_each_btree_key_norestart(trans, iter, desc.btree_id,
770 SPOS(hash_k.k->p.inode, hash, hash_k.k->p.snapshot),
771 BTREE_ITER_SLOTS, k, ret) {
772 if (bkey_eq(k.k->p, hash_k.k->p))
775 if (fsck_err_on(k.k->type == desc.key_type &&
776 !desc.cmp_bkey(k, hash_k), c,
777 hash_table_key_duplicate,
778 "duplicate hash table keys:\n%s",
779 (printbuf_reset(&buf),
780 bch2_bkey_val_to_text(&buf, c, hash_k),
782 ret = bch2_hash_delete_at(trans, desc, hash_info, k_iter, 0) ?: 1;
786 if (bkey_deleted(k.k)) {
787 bch2_trans_iter_exit(trans, &iter);
792 bch2_trans_iter_exit(trans, &iter);
796 if (fsck_err(c, hash_table_key_wrong_offset,
797 "hash table key at wrong offset: btree %s inode %llu offset %llu, hashed to %llu\n%s",
798 bch2_btree_id_str(desc.btree_id), hash_k.k->p.inode, hash_k.k->p.offset, hash,
799 (printbuf_reset(&buf),
800 bch2_bkey_val_to_text(&buf, c, hash_k), buf.buf))) {
801 ret = hash_redo_key(trans, desc, hash_info, k_iter, hash_k);
805 ret = -BCH_ERR_transaction_restart_nested;
811 static struct bkey_s_c_dirent dirent_get_by_pos(struct btree_trans *trans,
812 struct btree_iter *iter,
815 return bch2_bkey_get_iter_typed(trans, iter, BTREE_ID_dirents, pos, 0, dirent);
818 static struct bkey_s_c_dirent inode_get_dirent(struct btree_trans *trans,
819 struct btree_iter *iter,
820 struct bch_inode_unpacked *inode,
823 if (inode->bi_subvol) {
825 int ret = subvol_lookup(trans, inode->bi_parent_subvol, snapshot, &inum);
827 return ((struct bkey_s_c_dirent) { .k = ERR_PTR(ret) });
830 return dirent_get_by_pos(trans, iter, SPOS(inode->bi_dir, inode->bi_dir_offset, *snapshot));
833 static bool inode_points_to_dirent(struct bch_inode_unpacked *inode,
834 struct bkey_s_c_dirent d)
836 return inode->bi_dir == d.k->p.inode &&
837 inode->bi_dir_offset == d.k->p.offset;
840 static bool dirent_points_to_inode(struct bkey_s_c_dirent d,
841 struct bch_inode_unpacked *inode)
843 return d.v->d_type == DT_SUBVOL
844 ? le32_to_cpu(d.v->d_child_subvol) == inode->bi_subvol
845 : le64_to_cpu(d.v->d_inum) == inode->bi_inum;
848 static int check_inode_deleted_list(struct btree_trans *trans, struct bpos p)
850 struct btree_iter iter;
851 struct bkey_s_c k = bch2_bkey_get_iter(trans, &iter, BTREE_ID_deleted_inodes, p, 0);
852 int ret = bkey_err(k) ?: k.k->type == KEY_TYPE_set;
853 bch2_trans_iter_exit(trans, &iter);
857 static int check_inode_dirent_inode(struct btree_trans *trans, struct bkey_s_c inode_k,
858 struct bch_inode_unpacked *inode,
859 u32 inode_snapshot, bool *write_inode)
861 struct bch_fs *c = trans->c;
862 struct printbuf buf = PRINTBUF;
864 struct btree_iter dirent_iter = {};
865 struct bkey_s_c_dirent d = inode_get_dirent(trans, &dirent_iter, inode, &inode_snapshot);
866 int ret = bkey_err(d);
867 if (ret && !bch2_err_matches(ret, ENOENT))
871 c, inode_points_to_missing_dirent,
872 "inode points to missing dirent\n%s",
873 (bch2_bkey_val_to_text(&buf, c, inode_k), buf.buf)) ||
874 fsck_err_on(!ret && !dirent_points_to_inode(d, inode),
875 c, inode_points_to_wrong_dirent,
876 "inode points to dirent that does not point back:\n%s",
877 (bch2_bkey_val_to_text(&buf, c, inode_k),
879 bch2_bkey_val_to_text(&buf, c, d.s_c), buf.buf))) {
881 * We just clear the backpointer fields for now. If we find a
882 * dirent that points to this inode in check_dirents(), we'll
883 * update it then; then when we get to check_path() if the
884 * backpointer is still 0 we'll reattach it.
887 inode->bi_dir_offset = 0;
888 inode->bi_flags &= ~BCH_INODE_backptr_untrusted;
894 bch2_trans_iter_exit(trans, &dirent_iter);
900 static int check_inode(struct btree_trans *trans,
901 struct btree_iter *iter,
903 struct bch_inode_unpacked *prev,
904 struct snapshots_seen *s,
907 struct bch_fs *c = trans->c;
908 struct bch_inode_unpacked u;
909 bool do_update = false;
912 ret = check_key_has_snapshot(trans, iter, k);
918 ret = snapshots_seen_update(c, s, iter->btree_id, k.k->p);
922 if (!bkey_is_inode(k.k))
925 BUG_ON(bch2_inode_unpack(k, &u));
928 !(u.bi_flags & (BCH_INODE_i_size_dirty|
929 BCH_INODE_i_sectors_dirty|
930 BCH_INODE_unlinked)))
933 if (prev->bi_inum != u.bi_inum)
936 if (fsck_err_on(prev->bi_hash_seed != u.bi_hash_seed ||
937 inode_d_type(prev) != inode_d_type(&u),
938 c, inode_snapshot_mismatch,
939 "inodes in different snapshots don't match")) {
940 bch_err(c, "repair not implemented yet");
941 return -BCH_ERR_fsck_repair_unimplemented;
944 if ((u.bi_flags & (BCH_INODE_i_size_dirty|BCH_INODE_unlinked)) &&
945 bch2_key_has_snapshot_overwrites(trans, BTREE_ID_inodes, k.k->p)) {
946 struct bpos new_min_pos;
948 ret = bch2_propagate_key_to_snapshot_leaves(trans, iter->btree_id, k, &new_min_pos);
952 u.bi_flags &= ~BCH_INODE_i_size_dirty|BCH_INODE_unlinked;
954 ret = __bch2_fsck_write_inode(trans, &u, iter->pos.snapshot);
956 bch_err_msg(c, ret, "in fsck updating inode");
960 if (!bpos_eq(new_min_pos, POS_MIN))
961 bch2_btree_iter_set_pos(iter, bpos_predecessor(new_min_pos));
965 if (u.bi_flags & BCH_INODE_unlinked) {
966 ret = check_inode_deleted_list(trans, k.k->p);
970 fsck_err_on(!ret, c, unlinked_inode_not_on_deleted_list,
971 "inode %llu:%u unlinked, but not on deleted list",
972 u.bi_inum, k.k->p.snapshot);
976 if (u.bi_flags & BCH_INODE_unlinked &&
978 fsck_err(c, inode_unlinked_but_clean,
979 "filesystem marked clean, but inode %llu unlinked",
981 ret = bch2_inode_rm_snapshot(trans, u.bi_inum, iter->pos.snapshot);
982 bch_err_msg(c, ret, "in fsck deleting inode");
986 if (u.bi_flags & BCH_INODE_i_size_dirty &&
988 fsck_err(c, inode_i_size_dirty_but_clean,
989 "filesystem marked clean, but inode %llu has i_size dirty",
991 bch_verbose(c, "truncating inode %llu", u.bi_inum);
994 * XXX: need to truncate partial blocks too here - or ideally
995 * just switch units to bytes and that issue goes away
997 ret = bch2_btree_delete_range_trans(trans, BTREE_ID_extents,
998 SPOS(u.bi_inum, round_up(u.bi_size, block_bytes(c)) >> 9,
1000 POS(u.bi_inum, U64_MAX),
1002 bch_err_msg(c, ret, "in fsck truncating inode");
1007 * We truncated without our normal sector accounting hook, just
1008 * make sure we recalculate it:
1010 u.bi_flags |= BCH_INODE_i_sectors_dirty;
1012 u.bi_flags &= ~BCH_INODE_i_size_dirty;
1016 if (u.bi_flags & BCH_INODE_i_sectors_dirty &&
1018 fsck_err(c, inode_i_sectors_dirty_but_clean,
1019 "filesystem marked clean, but inode %llu has i_sectors dirty",
1023 bch_verbose(c, "recounting sectors for inode %llu",
1026 sectors = bch2_count_inode_sectors(trans, u.bi_inum, iter->pos.snapshot);
1028 bch_err_msg(c, sectors, "in fsck recounting inode sectors");
1032 u.bi_sectors = sectors;
1033 u.bi_flags &= ~BCH_INODE_i_sectors_dirty;
1037 if (u.bi_flags & BCH_INODE_backptr_untrusted) {
1039 u.bi_dir_offset = 0;
1040 u.bi_flags &= ~BCH_INODE_backptr_untrusted;
1044 if (u.bi_dir || u.bi_dir_offset) {
1045 ret = check_inode_dirent_inode(trans, k, &u, k.k->p.snapshot, &do_update);
1050 if (fsck_err_on(u.bi_parent_subvol &&
1051 (u.bi_subvol == 0 ||
1052 u.bi_subvol == BCACHEFS_ROOT_SUBVOL),
1053 c, inode_bi_parent_nonzero,
1054 "inode %llu:%u has subvol %u but nonzero parent subvol %u",
1055 u.bi_inum, k.k->p.snapshot, u.bi_subvol, u.bi_parent_subvol)) {
1056 u.bi_parent_subvol = 0;
1061 struct bch_subvolume s;
1063 ret = bch2_subvolume_get(trans, u.bi_subvol, false, 0, &s);
1064 if (ret && !bch2_err_matches(ret, ENOENT))
1067 if (fsck_err_on(ret,
1068 c, inode_bi_subvol_missing,
1069 "inode %llu:%u bi_subvol points to missing subvolume %u",
1070 u.bi_inum, k.k->p.snapshot, u.bi_subvol) ||
1071 fsck_err_on(le64_to_cpu(s.inode) != u.bi_inum ||
1072 !bch2_snapshot_is_ancestor(c, le32_to_cpu(s.snapshot),
1074 c, inode_bi_subvol_wrong,
1075 "inode %llu:%u points to subvol %u, but subvol points to %llu:%u",
1076 u.bi_inum, k.k->p.snapshot, u.bi_subvol,
1077 le64_to_cpu(s.inode),
1078 le32_to_cpu(s.snapshot))) {
1080 u.bi_parent_subvol = 0;
1086 ret = __bch2_fsck_write_inode(trans, &u, iter->pos.snapshot);
1087 bch_err_msg(c, ret, "in fsck updating inode");
1097 int bch2_check_inodes(struct bch_fs *c)
1099 bool full = c->opts.fsck;
1100 struct bch_inode_unpacked prev = { 0 };
1101 struct snapshots_seen s;
1103 snapshots_seen_init(&s);
1105 int ret = bch2_trans_run(c,
1106 for_each_btree_key_commit(trans, iter, BTREE_ID_inodes,
1108 BTREE_ITER_PREFETCH|BTREE_ITER_ALL_SNAPSHOTS, k,
1109 NULL, NULL, BCH_TRANS_COMMIT_no_enospc,
1110 check_inode(trans, &iter, k, &prev, &s, full)));
1112 snapshots_seen_exit(&s);
1117 static int check_i_sectors_notnested(struct btree_trans *trans, struct inode_walker *w)
1119 struct bch_fs *c = trans->c;
1123 darray_for_each(w->inodes, i) {
1124 if (i->inode.bi_sectors == i->count)
1127 count2 = bch2_count_inode_sectors(trans, w->last_pos.inode, i->snapshot);
1129 if (w->recalculate_sums)
1132 if (i->count != count2) {
1133 bch_err(c, "fsck counted i_sectors wrong for inode %llu:%u: got %llu should be %llu",
1134 w->last_pos.inode, i->snapshot, i->count, count2);
1135 return -BCH_ERR_internal_fsck_err;
1138 if (fsck_err_on(!(i->inode.bi_flags & BCH_INODE_i_sectors_dirty),
1139 c, inode_i_sectors_wrong,
1140 "inode %llu:%u has incorrect i_sectors: got %llu, should be %llu",
1141 w->last_pos.inode, i->snapshot,
1142 i->inode.bi_sectors, i->count)) {
1143 i->inode.bi_sectors = i->count;
1144 ret = bch2_fsck_write_inode(trans, &i->inode, i->snapshot);
1154 static int check_i_sectors(struct btree_trans *trans, struct inode_walker *w)
1156 u32 restart_count = trans->restart_count;
1157 return check_i_sectors_notnested(trans, w) ?:
1158 trans_was_restarted(trans, restart_count);
1164 struct snapshots_seen seen;
1167 struct extent_ends {
1168 struct bpos last_pos;
1169 DARRAY(struct extent_end) e;
1172 static void extent_ends_reset(struct extent_ends *extent_ends)
1174 darray_for_each(extent_ends->e, i)
1175 snapshots_seen_exit(&i->seen);
1176 extent_ends->e.nr = 0;
1179 static void extent_ends_exit(struct extent_ends *extent_ends)
1181 extent_ends_reset(extent_ends);
1182 darray_exit(&extent_ends->e);
1185 static void extent_ends_init(struct extent_ends *extent_ends)
1187 memset(extent_ends, 0, sizeof(*extent_ends));
1190 static int extent_ends_at(struct bch_fs *c,
1191 struct extent_ends *extent_ends,
1192 struct snapshots_seen *seen,
1195 struct extent_end *i, n = (struct extent_end) {
1196 .offset = k.k->p.offset,
1197 .snapshot = k.k->p.snapshot,
1201 n.seen.ids.data = kmemdup(seen->ids.data,
1202 sizeof(seen->ids.data[0]) * seen->ids.size,
1204 if (!n.seen.ids.data)
1205 return -BCH_ERR_ENOMEM_fsck_extent_ends_at;
1207 __darray_for_each(extent_ends->e, i) {
1208 if (i->snapshot == k.k->p.snapshot) {
1209 snapshots_seen_exit(&i->seen);
1214 if (i->snapshot >= k.k->p.snapshot)
1218 return darray_insert_item(&extent_ends->e, i - extent_ends->e.data, n);
1221 static int overlapping_extents_found(struct btree_trans *trans,
1222 enum btree_id btree,
1223 struct bpos pos1, struct snapshots_seen *pos1_seen,
1226 struct extent_end *extent_end)
1228 struct bch_fs *c = trans->c;
1229 struct printbuf buf = PRINTBUF;
1230 struct btree_iter iter1, iter2 = { NULL };
1231 struct bkey_s_c k1, k2;
1234 BUG_ON(bkey_le(pos1, bkey_start_pos(&pos2)));
1236 bch2_trans_iter_init(trans, &iter1, btree, pos1,
1237 BTREE_ITER_ALL_SNAPSHOTS|
1238 BTREE_ITER_NOT_EXTENTS);
1239 k1 = bch2_btree_iter_peek_upto(&iter1, POS(pos1.inode, U64_MAX));
1244 prt_str(&buf, "\n ");
1245 bch2_bkey_val_to_text(&buf, c, k1);
1247 if (!bpos_eq(pos1, k1.k->p)) {
1248 prt_str(&buf, "\n wanted\n ");
1249 bch2_bpos_to_text(&buf, pos1);
1250 prt_str(&buf, "\n ");
1251 bch2_bkey_to_text(&buf, &pos2);
1253 bch_err(c, "%s: error finding first overlapping extent when repairing, got%s",
1255 ret = -BCH_ERR_internal_fsck_err;
1259 bch2_trans_copy_iter(&iter2, &iter1);
1262 bch2_btree_iter_advance(&iter2);
1264 k2 = bch2_btree_iter_peek_upto(&iter2, POS(pos1.inode, U64_MAX));
1269 if (bpos_ge(k2.k->p, pos2.p))
1273 prt_str(&buf, "\n ");
1274 bch2_bkey_val_to_text(&buf, c, k2);
1276 if (bpos_gt(k2.k->p, pos2.p) ||
1277 pos2.size != k2.k->size) {
1278 bch_err(c, "%s: error finding seconding overlapping extent when repairing%s",
1280 ret = -BCH_ERR_internal_fsck_err;
1284 prt_printf(&buf, "\n overwriting %s extent",
1285 pos1.snapshot >= pos2.p.snapshot ? "first" : "second");
1287 if (fsck_err(c, extent_overlapping,
1288 "overlapping extents%s", buf.buf)) {
1289 struct btree_iter *old_iter = &iter1;
1290 struct disk_reservation res = { 0 };
1292 if (pos1.snapshot < pos2.p.snapshot) {
1297 trans->extra_disk_res += bch2_bkey_sectors_compressed(k2);
1299 ret = bch2_trans_update_extent_overwrite(trans, old_iter,
1300 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE,
1302 bch2_trans_commit(trans, &res, NULL, BCH_TRANS_COMMIT_no_enospc);
1303 bch2_disk_reservation_put(c, &res);
1310 if (pos1.snapshot == pos2.p.snapshot) {
1312 * We overwrote the first extent, and did the overwrite
1313 * in the same snapshot:
1315 extent_end->offset = bkey_start_offset(&pos2);
1316 } else if (pos1.snapshot > pos2.p.snapshot) {
1318 * We overwrote the first extent in pos2's snapshot:
1320 ret = snapshots_seen_add_inorder(c, pos1_seen, pos2.p.snapshot);
1323 * We overwrote the second extent - restart
1324 * check_extent() from the top:
1326 ret = -BCH_ERR_transaction_restart_nested;
1331 bch2_trans_iter_exit(trans, &iter2);
1332 bch2_trans_iter_exit(trans, &iter1);
1333 printbuf_exit(&buf);
1337 static int check_overlapping_extents(struct btree_trans *trans,
1338 struct snapshots_seen *seen,
1339 struct extent_ends *extent_ends,
1342 struct btree_iter *iter,
1345 struct bch_fs *c = trans->c;
1348 /* transaction restart, running again */
1349 if (bpos_eq(extent_ends->last_pos, k.k->p))
1352 if (extent_ends->last_pos.inode != k.k->p.inode)
1353 extent_ends_reset(extent_ends);
1355 darray_for_each(extent_ends->e, i) {
1356 if (i->offset <= bkey_start_offset(k.k))
1359 if (!ref_visible2(c,
1360 k.k->p.snapshot, seen,
1361 i->snapshot, &i->seen))
1364 ret = overlapping_extents_found(trans, iter->btree_id,
1365 SPOS(iter->pos.inode,
1374 ret = extent_ends_at(c, extent_ends, seen, k);
1378 extent_ends->last_pos = k.k->p;
1383 static int check_extent_overbig(struct btree_trans *trans, struct btree_iter *iter,
1386 struct bch_fs *c = trans->c;
1387 struct bkey_ptrs_c ptrs = bch2_bkey_ptrs_c(k);
1388 struct bch_extent_crc_unpacked crc;
1389 const union bch_extent_entry *i;
1390 unsigned encoded_extent_max_sectors = c->opts.encoded_extent_max >> 9;
1392 bkey_for_each_crc(k.k, ptrs, crc, i)
1393 if (crc_is_encoded(crc) &&
1394 crc.uncompressed_size > encoded_extent_max_sectors) {
1395 struct printbuf buf = PRINTBUF;
1397 bch2_bkey_val_to_text(&buf, c, k);
1398 bch_err(c, "overbig encoded extent, please report this:\n %s", buf.buf);
1399 printbuf_exit(&buf);
1405 static int check_extent(struct btree_trans *trans, struct btree_iter *iter,
1407 struct inode_walker *inode,
1408 struct snapshots_seen *s,
1409 struct extent_ends *extent_ends)
1411 struct bch_fs *c = trans->c;
1412 struct inode_walker_entry *i;
1413 struct printbuf buf = PRINTBUF;
1414 struct bpos equiv = k.k->p;
1417 equiv.snapshot = bch2_snapshot_equiv(c, k.k->p.snapshot);
1419 ret = check_key_has_snapshot(trans, iter, k);
1421 ret = ret < 0 ? ret : 0;
1425 if (inode->last_pos.inode != k.k->p.inode) {
1426 ret = check_i_sectors(trans, inode);
1431 i = walk_inode(trans, inode, k);
1432 ret = PTR_ERR_OR_ZERO(i);
1436 ret = snapshots_seen_update(c, s, iter->btree_id, k.k->p);
1440 if (k.k->type != KEY_TYPE_whiteout) {
1441 if (fsck_err_on(!i, c, extent_in_missing_inode,
1442 "extent in missing inode:\n %s",
1443 (printbuf_reset(&buf),
1444 bch2_bkey_val_to_text(&buf, c, k), buf.buf)))
1447 if (fsck_err_on(i &&
1448 !S_ISREG(i->inode.bi_mode) &&
1449 !S_ISLNK(i->inode.bi_mode),
1450 c, extent_in_non_reg_inode,
1451 "extent in non regular inode mode %o:\n %s",
1453 (printbuf_reset(&buf),
1454 bch2_bkey_val_to_text(&buf, c, k), buf.buf)))
1457 ret = check_overlapping_extents(trans, s, extent_ends, k,
1458 equiv.snapshot, iter,
1459 &inode->recalculate_sums);
1465 * Check inodes in reverse order, from oldest snapshots to newest,
1466 * starting from the inode that matches this extent's snapshot. If we
1467 * didn't have one, iterate over all inodes:
1470 i = inode->inodes.data + inode->inodes.nr - 1;
1473 inode->inodes.data && i >= inode->inodes.data;
1475 if (i->snapshot > equiv.snapshot ||
1476 !key_visible_in_snapshot(c, s, i->snapshot, equiv.snapshot))
1479 if (k.k->type != KEY_TYPE_whiteout) {
1480 if (fsck_err_on(!(i->inode.bi_flags & BCH_INODE_i_size_dirty) &&
1481 k.k->p.offset > round_up(i->inode.bi_size, block_bytes(c)) >> 9 &&
1482 !bkey_extent_is_reservation(k),
1483 c, extent_past_end_of_inode,
1484 "extent type past end of inode %llu:%u, i_size %llu\n %s",
1485 i->inode.bi_inum, i->snapshot, i->inode.bi_size,
1486 (bch2_bkey_val_to_text(&buf, c, k), buf.buf))) {
1487 struct btree_iter iter2;
1489 bch2_trans_copy_iter(&iter2, iter);
1490 bch2_btree_iter_set_snapshot(&iter2, i->snapshot);
1491 ret = bch2_btree_iter_traverse(&iter2) ?:
1492 bch2_btree_delete_at(trans, &iter2,
1493 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE);
1494 bch2_trans_iter_exit(trans, &iter2);
1498 iter->k.type = KEY_TYPE_whiteout;
1501 if (bkey_extent_is_allocation(k.k))
1502 i->count += k.k->size;
1505 i->seen_this_pos = true;
1510 printbuf_exit(&buf);
1514 ret = bch2_btree_delete_at(trans, iter, BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE);
1519 * Walk extents: verify that extents have a corresponding S_ISREG inode, and
1520 * that i_size an i_sectors are consistent
1522 int bch2_check_extents(struct bch_fs *c)
1524 struct inode_walker w = inode_walker_init();
1525 struct snapshots_seen s;
1526 struct extent_ends extent_ends;
1527 struct disk_reservation res = { 0 };
1529 snapshots_seen_init(&s);
1530 extent_ends_init(&extent_ends);
1532 int ret = bch2_trans_run(c,
1533 for_each_btree_key_commit(trans, iter, BTREE_ID_extents,
1534 POS(BCACHEFS_ROOT_INO, 0),
1535 BTREE_ITER_PREFETCH|BTREE_ITER_ALL_SNAPSHOTS, k,
1537 BCH_TRANS_COMMIT_no_enospc, ({
1538 bch2_disk_reservation_put(c, &res);
1539 check_extent(trans, &iter, k, &w, &s, &extent_ends) ?:
1540 check_extent_overbig(trans, &iter, k);
1542 check_i_sectors_notnested(trans, &w));
1544 bch2_disk_reservation_put(c, &res);
1545 extent_ends_exit(&extent_ends);
1546 inode_walker_exit(&w);
1547 snapshots_seen_exit(&s);
1553 int bch2_check_indirect_extents(struct bch_fs *c)
1555 struct disk_reservation res = { 0 };
1557 int ret = bch2_trans_run(c,
1558 for_each_btree_key_commit(trans, iter, BTREE_ID_reflink,
1560 BTREE_ITER_PREFETCH, k,
1562 BCH_TRANS_COMMIT_no_enospc, ({
1563 bch2_disk_reservation_put(c, &res);
1564 check_extent_overbig(trans, &iter, k);
1567 bch2_disk_reservation_put(c, &res);
1572 static int check_subdir_count_notnested(struct btree_trans *trans, struct inode_walker *w)
1574 struct bch_fs *c = trans->c;
1578 darray_for_each(w->inodes, i) {
1579 if (i->inode.bi_nlink == i->count)
1582 count2 = bch2_count_subdirs(trans, w->last_pos.inode, i->snapshot);
1586 if (i->count != count2) {
1587 bch_err(c, "fsck counted subdirectories wrong: got %llu should be %llu",
1590 if (i->inode.bi_nlink == i->count)
1594 if (fsck_err_on(i->inode.bi_nlink != i->count,
1595 c, inode_dir_wrong_nlink,
1596 "directory %llu:%u with wrong i_nlink: got %u, should be %llu",
1597 w->last_pos.inode, i->snapshot, i->inode.bi_nlink, i->count)) {
1598 i->inode.bi_nlink = i->count;
1599 ret = bch2_fsck_write_inode(trans, &i->inode, i->snapshot);
1609 static int check_subdir_count(struct btree_trans *trans, struct inode_walker *w)
1611 u32 restart_count = trans->restart_count;
1612 return check_subdir_count_notnested(trans, w) ?:
1613 trans_was_restarted(trans, restart_count);
1616 static int check_dirent_inode_dirent(struct btree_trans *trans,
1617 struct btree_iter *iter,
1618 struct bkey_s_c_dirent d,
1619 struct bch_inode_unpacked *target,
1620 u32 target_snapshot)
1622 struct bch_fs *c = trans->c;
1623 struct printbuf buf = PRINTBUF;
1626 if (inode_points_to_dirent(target, d))
1629 if (!target->bi_dir &&
1630 !target->bi_dir_offset) {
1631 target->bi_dir = d.k->p.inode;
1632 target->bi_dir_offset = d.k->p.offset;
1633 return __bch2_fsck_write_inode(trans, target, target_snapshot);
1636 struct btree_iter bp_iter = { NULL };
1637 struct bkey_s_c_dirent bp_dirent = dirent_get_by_pos(trans, &bp_iter,
1638 SPOS(target->bi_dir, target->bi_dir_offset, target_snapshot));
1639 ret = bkey_err(bp_dirent);
1640 if (ret && !bch2_err_matches(ret, ENOENT))
1643 bool backpointer_exists = !ret;
1646 if (fsck_err_on(!backpointer_exists,
1647 c, inode_wrong_backpointer,
1648 "inode %llu:%u has wrong backpointer:\n"
1650 "should be %llu:%llu",
1651 target->bi_inum, target_snapshot,
1653 target->bi_dir_offset,
1656 target->bi_dir = d.k->p.inode;
1657 target->bi_dir_offset = d.k->p.offset;
1658 ret = __bch2_fsck_write_inode(trans, target, target_snapshot);
1662 bch2_bkey_val_to_text(&buf, c, d.s_c);
1664 if (backpointer_exists)
1665 bch2_bkey_val_to_text(&buf, c, bp_dirent.s_c);
1667 if (fsck_err_on(backpointer_exists &&
1668 (S_ISDIR(target->bi_mode) ||
1670 c, inode_dir_multiple_links,
1671 "%s %llu:%u with multiple links\n%s",
1672 S_ISDIR(target->bi_mode) ? "directory" : "subvolume",
1673 target->bi_inum, target_snapshot, buf.buf)) {
1674 ret = __remove_dirent(trans, d.k->p);
1679 * hardlinked file with nlink 0:
1680 * We're just adjusting nlink here so check_nlinks() will pick
1681 * it up, it ignores inodes with nlink 0
1683 if (fsck_err_on(backpointer_exists && !target->bi_nlink,
1684 c, inode_multiple_links_but_nlink_0,
1685 "inode %llu:%u type %s has multiple links but i_nlink 0\n%s",
1686 target->bi_inum, target_snapshot, bch2_d_types[d.v->d_type], buf.buf)) {
1688 target->bi_flags &= ~BCH_INODE_unlinked;
1689 ret = __bch2_fsck_write_inode(trans, target, target_snapshot);
1696 bch2_trans_iter_exit(trans, &bp_iter);
1697 printbuf_exit(&buf);
1702 static int check_dirent_target(struct btree_trans *trans,
1703 struct btree_iter *iter,
1704 struct bkey_s_c_dirent d,
1705 struct bch_inode_unpacked *target,
1706 u32 target_snapshot)
1708 struct bch_fs *c = trans->c;
1709 struct bkey_i_dirent *n;
1710 struct printbuf buf = PRINTBUF;
1713 ret = check_dirent_inode_dirent(trans, iter, d, target, target_snapshot);
1717 if (fsck_err_on(d.v->d_type != inode_d_type(target),
1718 c, dirent_d_type_wrong,
1719 "incorrect d_type: got %s, should be %s:\n%s",
1720 bch2_d_type_str(d.v->d_type),
1721 bch2_d_type_str(inode_d_type(target)),
1722 (printbuf_reset(&buf),
1723 bch2_bkey_val_to_text(&buf, c, d.s_c), buf.buf))) {
1724 n = bch2_trans_kmalloc(trans, bkey_bytes(d.k));
1725 ret = PTR_ERR_OR_ZERO(n);
1729 bkey_reassemble(&n->k_i, d.s_c);
1730 n->v.d_type = inode_d_type(target);
1731 if (n->v.d_type == DT_SUBVOL) {
1732 n->v.d_parent_subvol = cpu_to_le32(target->bi_parent_subvol);
1733 n->v.d_child_subvol = cpu_to_le32(target->bi_subvol);
1735 n->v.d_inum = cpu_to_le64(target->bi_inum);
1738 ret = bch2_trans_update(trans, iter, &n->k_i, 0);
1742 d = dirent_i_to_s_c(n);
1746 printbuf_exit(&buf);
1751 /* find a subvolume that's a descendent of @snapshot: */
1752 static int find_snapshot_subvol(struct btree_trans *trans, u32 snapshot, u32 *subvolid)
1754 struct btree_iter iter;
1758 for_each_btree_key_norestart(trans, iter, BTREE_ID_subvolumes, POS_MIN, 0, k, ret) {
1759 if (k.k->type != KEY_TYPE_subvolume)
1762 struct bkey_s_c_subvolume s = bkey_s_c_to_subvolume(k);
1763 if (bch2_snapshot_is_ancestor(trans->c, le32_to_cpu(s.v->snapshot), snapshot)) {
1764 bch2_trans_iter_exit(trans, &iter);
1765 *subvolid = k.k->p.offset;
1772 bch2_trans_iter_exit(trans, &iter);
1776 static int check_dirent_to_subvol(struct btree_trans *trans, struct btree_iter *iter,
1777 struct bkey_s_c_dirent d)
1779 struct bch_fs *c = trans->c;
1780 struct btree_iter subvol_iter = {};
1781 struct bch_inode_unpacked subvol_root;
1782 u32 parent_subvol = le32_to_cpu(d.v->d_parent_subvol);
1783 u32 target_subvol = le32_to_cpu(d.v->d_child_subvol);
1784 u32 parent_snapshot;
1786 struct printbuf buf = PRINTBUF;
1789 ret = subvol_lookup(trans, parent_subvol, &parent_snapshot, &parent_inum);
1790 if (ret && !bch2_err_matches(ret, ENOENT))
1793 if (fsck_err_on(ret, c, dirent_to_missing_parent_subvol,
1794 "dirent parent_subvol points to missing subvolume\n%s",
1795 (bch2_bkey_val_to_text(&buf, c, d.s_c), buf.buf)) ||
1796 fsck_err_on(!ret && !bch2_snapshot_is_ancestor(c, parent_snapshot, d.k->p.snapshot),
1797 c, dirent_not_visible_in_parent_subvol,
1798 "dirent not visible in parent_subvol (not an ancestor of subvol snap %u)\n%s",
1800 (bch2_bkey_val_to_text(&buf, c, d.s_c), buf.buf))) {
1801 u32 new_parent_subvol;
1802 ret = find_snapshot_subvol(trans, d.k->p.snapshot, &new_parent_subvol);
1806 struct bkey_i_dirent *new_dirent = bch2_bkey_make_mut_typed(trans, iter, &d.s_c, 0, dirent);
1807 ret = PTR_ERR_OR_ZERO(new_dirent);
1811 new_dirent->v.d_parent_subvol = cpu_to_le32(new_parent_subvol);
1814 struct bkey_s_c_subvolume s =
1815 bch2_bkey_get_iter_typed(trans, &subvol_iter,
1816 BTREE_ID_subvolumes, POS(0, target_subvol),
1818 ret = bkey_err(s.s_c);
1819 if (ret && !bch2_err_matches(ret, ENOENT))
1823 if (fsck_err(c, dirent_to_missing_subvol,
1824 "dirent points to missing subvolume\n%s",
1825 (bch2_bkey_val_to_text(&buf, c, d.s_c), buf.buf)))
1826 return __remove_dirent(trans, d.k->p);
1831 if (fsck_err_on(le32_to_cpu(s.v->fs_path_parent) != parent_subvol,
1832 c, subvol_fs_path_parent_wrong,
1833 "subvol with wrong fs_path_parent, should be be %u\n%s",
1835 (bch2_bkey_val_to_text(&buf, c, s.s_c), buf.buf))) {
1836 struct bkey_i_subvolume *n =
1837 bch2_bkey_make_mut_typed(trans, &subvol_iter, &s.s_c, 0, subvolume);
1838 ret = PTR_ERR_OR_ZERO(n);
1842 n->v.fs_path_parent = cpu_to_le32(parent_subvol);
1845 u64 target_inum = le64_to_cpu(s.v->inode);
1846 u32 target_snapshot = le32_to_cpu(s.v->snapshot);
1848 ret = lookup_inode(trans, target_inum, &subvol_root, &target_snapshot);
1849 if (ret && !bch2_err_matches(ret, ENOENT))
1852 if (fsck_err_on(parent_subvol != subvol_root.bi_parent_subvol,
1853 c, inode_bi_parent_wrong,
1854 "subvol root %llu has wrong bi_parent_subvol: got %u, should be %u",
1856 subvol_root.bi_parent_subvol, parent_subvol)) {
1857 subvol_root.bi_parent_subvol = parent_subvol;
1858 ret = __bch2_fsck_write_inode(trans, &subvol_root, target_snapshot);
1863 ret = check_dirent_target(trans, iter, d, &subvol_root,
1870 bch2_trans_iter_exit(trans, &subvol_iter);
1871 printbuf_exit(&buf);
1875 static int check_dirent(struct btree_trans *trans, struct btree_iter *iter,
1877 struct bch_hash_info *hash_info,
1878 struct inode_walker *dir,
1879 struct inode_walker *target,
1880 struct snapshots_seen *s)
1882 struct bch_fs *c = trans->c;
1883 struct bkey_s_c_dirent d;
1884 struct inode_walker_entry *i;
1885 struct printbuf buf = PRINTBUF;
1889 ret = check_key_has_snapshot(trans, iter, k);
1891 ret = ret < 0 ? ret : 0;
1896 equiv.snapshot = bch2_snapshot_equiv(c, k.k->p.snapshot);
1898 ret = snapshots_seen_update(c, s, iter->btree_id, k.k->p);
1902 if (k.k->type == KEY_TYPE_whiteout)
1905 if (dir->last_pos.inode != k.k->p.inode) {
1906 ret = check_subdir_count(trans, dir);
1911 BUG_ON(!btree_iter_path(trans, iter)->should_be_locked);
1913 i = walk_inode(trans, dir, k);
1914 ret = PTR_ERR_OR_ZERO(i);
1918 if (dir->first_this_inode && dir->inodes.nr)
1919 *hash_info = bch2_hash_info_init(c, &dir->inodes.data[0].inode);
1920 dir->first_this_inode = false;
1922 if (fsck_err_on(!i, c, dirent_in_missing_dir_inode,
1923 "dirent in nonexisting directory:\n%s",
1924 (printbuf_reset(&buf),
1925 bch2_bkey_val_to_text(&buf, c, k), buf.buf))) {
1926 ret = bch2_btree_delete_at(trans, iter,
1927 BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE);
1934 if (fsck_err_on(!S_ISDIR(i->inode.bi_mode),
1935 c, dirent_in_non_dir_inode,
1936 "dirent in non directory inode type %s:\n%s",
1937 bch2_d_type_str(inode_d_type(&i->inode)),
1938 (printbuf_reset(&buf),
1939 bch2_bkey_val_to_text(&buf, c, k), buf.buf))) {
1940 ret = bch2_btree_delete_at(trans, iter, 0);
1944 ret = hash_check_key(trans, bch2_dirent_hash_desc, hash_info, iter, k);
1948 /* dirent has been deleted */
1953 if (k.k->type != KEY_TYPE_dirent)
1956 d = bkey_s_c_to_dirent(k);
1958 if (d.v->d_type == DT_SUBVOL) {
1959 ret = check_dirent_to_subvol(trans, iter, d);
1963 ret = __get_visible_inodes(trans, target, s, le64_to_cpu(d.v->d_inum));
1967 if (fsck_err_on(!target->inodes.nr,
1968 c, dirent_to_missing_inode,
1969 "dirent points to missing inode: (equiv %u)\n%s",
1971 (printbuf_reset(&buf),
1972 bch2_bkey_val_to_text(&buf, c, k),
1974 ret = __remove_dirent(trans, d.k->p);
1979 darray_for_each(target->inodes, i) {
1980 ret = check_dirent_target(trans, iter, d,
1981 &i->inode, i->snapshot);
1986 if (d.v->d_type == DT_DIR)
1987 for_each_visible_inode(c, s, dir, equiv.snapshot, i)
1993 printbuf_exit(&buf);
1999 * Walk dirents: verify that they all have a corresponding S_ISDIR inode,
2002 int bch2_check_dirents(struct bch_fs *c)
2004 struct inode_walker dir = inode_walker_init();
2005 struct inode_walker target = inode_walker_init();
2006 struct snapshots_seen s;
2007 struct bch_hash_info hash_info;
2009 snapshots_seen_init(&s);
2011 int ret = bch2_trans_run(c,
2012 for_each_btree_key_commit(trans, iter, BTREE_ID_dirents,
2013 POS(BCACHEFS_ROOT_INO, 0),
2014 BTREE_ITER_PREFETCH|BTREE_ITER_ALL_SNAPSHOTS,
2017 BCH_TRANS_COMMIT_no_enospc,
2018 check_dirent(trans, &iter, k, &hash_info, &dir, &target, &s)) ?:
2019 check_subdir_count_notnested(trans, &dir));
2021 snapshots_seen_exit(&s);
2022 inode_walker_exit(&dir);
2023 inode_walker_exit(&target);
2028 static int check_xattr(struct btree_trans *trans, struct btree_iter *iter,
2030 struct bch_hash_info *hash_info,
2031 struct inode_walker *inode)
2033 struct bch_fs *c = trans->c;
2034 struct inode_walker_entry *i;
2037 ret = check_key_has_snapshot(trans, iter, k);
2043 i = walk_inode(trans, inode, k);
2044 ret = PTR_ERR_OR_ZERO(i);
2048 if (inode->first_this_inode && inode->inodes.nr)
2049 *hash_info = bch2_hash_info_init(c, &inode->inodes.data[0].inode);
2050 inode->first_this_inode = false;
2052 if (fsck_err_on(!i, c, xattr_in_missing_inode,
2053 "xattr for missing inode %llu",
2055 return bch2_btree_delete_at(trans, iter, 0);
2060 ret = hash_check_key(trans, bch2_xattr_hash_desc, hash_info, iter, k);
2067 * Walk xattrs: verify that they all have a corresponding inode
2069 int bch2_check_xattrs(struct bch_fs *c)
2071 struct inode_walker inode = inode_walker_init();
2072 struct bch_hash_info hash_info;
2075 ret = bch2_trans_run(c,
2076 for_each_btree_key_commit(trans, iter, BTREE_ID_xattrs,
2077 POS(BCACHEFS_ROOT_INO, 0),
2078 BTREE_ITER_PREFETCH|BTREE_ITER_ALL_SNAPSHOTS,
2081 BCH_TRANS_COMMIT_no_enospc,
2082 check_xattr(trans, &iter, k, &hash_info, &inode)));
2087 static int check_root_trans(struct btree_trans *trans)
2089 struct bch_fs *c = trans->c;
2090 struct bch_inode_unpacked root_inode;
2095 ret = subvol_lookup(trans, BCACHEFS_ROOT_SUBVOL, &snapshot, &inum);
2096 if (ret && !bch2_err_matches(ret, ENOENT))
2099 if (mustfix_fsck_err_on(ret, c, root_subvol_missing,
2100 "root subvol missing")) {
2101 struct bkey_i_subvolume root_subvol;
2104 inum = BCACHEFS_ROOT_INO;
2106 bkey_subvolume_init(&root_subvol.k_i);
2107 root_subvol.k.p.offset = BCACHEFS_ROOT_SUBVOL;
2108 root_subvol.v.flags = 0;
2109 root_subvol.v.snapshot = cpu_to_le32(snapshot);
2110 root_subvol.v.inode = cpu_to_le64(inum);
2111 ret = bch2_btree_insert_trans(trans, BTREE_ID_subvolumes, &root_subvol.k_i, 0);
2112 bch_err_msg(c, ret, "writing root subvol");
2117 ret = lookup_inode(trans, BCACHEFS_ROOT_INO, &root_inode, &snapshot);
2118 if (ret && !bch2_err_matches(ret, ENOENT))
2121 if (mustfix_fsck_err_on(ret, c, root_dir_missing,
2122 "root directory missing") ||
2123 mustfix_fsck_err_on(!S_ISDIR(root_inode.bi_mode),
2124 c, root_inode_not_dir,
2125 "root inode not a directory")) {
2126 bch2_inode_init(c, &root_inode, 0, 0, S_IFDIR|0755,
2128 root_inode.bi_inum = inum;
2130 ret = __bch2_fsck_write_inode(trans, &root_inode, snapshot);
2131 bch_err_msg(c, ret, "writing root inode");
2138 /* Get root directory, create if it doesn't exist: */
2139 int bch2_check_root(struct bch_fs *c)
2141 int ret = bch2_trans_do(c, NULL, NULL, BCH_TRANS_COMMIT_no_enospc,
2142 check_root_trans(trans));
2147 typedef DARRAY(u32) darray_u32;
2149 static bool darray_u32_has(darray_u32 *d, u32 v)
2151 darray_for_each(*d, i)
2158 * We've checked that inode backpointers point to valid dirents; here, it's
2159 * sufficient to check that the subvolume root has a dirent:
2161 static int subvol_has_dirent(struct btree_trans *trans, struct bkey_s_c_subvolume s)
2163 struct bch_inode_unpacked inode;
2164 int ret = bch2_inode_find_by_inum_trans(trans,
2165 (subvol_inum) { s.k->p.offset, le64_to_cpu(s.v->inode) },
2170 return inode.bi_dir != 0;
2173 static int check_subvol_path(struct btree_trans *trans, struct btree_iter *iter, struct bkey_s_c k)
2175 struct bch_fs *c = trans->c;
2176 struct btree_iter parent_iter = {};
2177 darray_u32 subvol_path = {};
2178 struct printbuf buf = PRINTBUF;
2181 if (k.k->type != KEY_TYPE_subvolume)
2184 while (k.k->p.offset != BCACHEFS_ROOT_SUBVOL) {
2185 ret = darray_push(&subvol_path, k.k->p.offset);
2189 struct bkey_s_c_subvolume s = bkey_s_c_to_subvolume(k);
2191 ret = subvol_has_dirent(trans, s);
2195 if (fsck_err_on(!ret,
2196 c, subvol_unreachable,
2197 "unreachable subvolume %s",
2198 (bch2_bkey_val_to_text(&buf, c, s.s_c),
2200 ret = reattach_subvol(trans, s);
2204 u32 parent = le32_to_cpu(s.v->fs_path_parent);
2206 if (darray_u32_has(&subvol_path, parent)) {
2207 if (fsck_err(c, subvol_loop, "subvolume loop"))
2208 ret = reattach_subvol(trans, s);
2212 bch2_trans_iter_exit(trans, &parent_iter);
2213 bch2_trans_iter_init(trans, &parent_iter,
2214 BTREE_ID_subvolumes, POS(0, parent), 0);
2215 k = bch2_btree_iter_peek_slot(&parent_iter);
2220 if (fsck_err_on(k.k->type != KEY_TYPE_subvolume,
2221 c, subvol_unreachable,
2222 "unreachable subvolume %s",
2223 (bch2_bkey_val_to_text(&buf, c, s.s_c),
2225 ret = reattach_subvol(trans, s);
2231 printbuf_exit(&buf);
2232 darray_exit(&subvol_path);
2233 bch2_trans_iter_exit(trans, &parent_iter);
2237 int bch2_check_subvolume_structure(struct bch_fs *c)
2239 int ret = bch2_trans_run(c,
2240 for_each_btree_key_commit(trans, iter,
2241 BTREE_ID_subvolumes, POS_MIN, BTREE_ITER_PREFETCH, k,
2242 NULL, NULL, BCH_TRANS_COMMIT_no_enospc,
2243 check_subvol_path(trans, &iter, k)));
2248 struct pathbuf_entry {
2253 typedef DARRAY(struct pathbuf_entry) pathbuf;
2255 static bool path_is_dup(pathbuf *p, u64 inum, u32 snapshot)
2257 darray_for_each(*p, i)
2258 if (i->inum == inum &&
2259 i->snapshot == snapshot)
2265 * Check that a given inode is reachable from its subvolume root - we already
2266 * verified subvolume connectivity:
2268 * XXX: we should also be verifying that inodes are in the right subvolumes
2270 static int check_path(struct btree_trans *trans, pathbuf *p, struct bkey_s_c inode_k)
2272 struct bch_fs *c = trans->c;
2273 struct btree_iter inode_iter = {};
2274 struct bch_inode_unpacked inode;
2275 struct printbuf buf = PRINTBUF;
2276 u32 snapshot = bch2_snapshot_equiv(c, inode_k.k->p.snapshot);
2281 BUG_ON(bch2_inode_unpack(inode_k, &inode));
2283 while (!inode.bi_subvol) {
2284 struct btree_iter dirent_iter;
2285 struct bkey_s_c_dirent d;
2286 u32 parent_snapshot = snapshot;
2288 d = inode_get_dirent(trans, &dirent_iter, &inode, &parent_snapshot);
2289 ret = bkey_err(d.s_c);
2290 if (ret && !bch2_err_matches(ret, ENOENT))
2293 if (!ret && !dirent_points_to_inode(d, &inode)) {
2294 bch2_trans_iter_exit(trans, &dirent_iter);
2295 ret = -BCH_ERR_ENOENT_dirent_doesnt_match_inode;
2298 if (bch2_err_matches(ret, ENOENT)) {
2300 if (fsck_err(c, inode_unreachable,
2301 "unreachable inode\n%s",
2302 (printbuf_reset(&buf),
2303 bch2_bkey_val_to_text(&buf, c, inode_k),
2305 ret = reattach_inode(trans, &inode, snapshot);
2309 bch2_trans_iter_exit(trans, &dirent_iter);
2311 if (!S_ISDIR(inode.bi_mode))
2314 ret = darray_push(p, ((struct pathbuf_entry) {
2315 .inum = inode.bi_inum,
2316 .snapshot = snapshot,
2321 snapshot = parent_snapshot;
2323 bch2_trans_iter_exit(trans, &inode_iter);
2324 inode_k = bch2_bkey_get_iter(trans, &inode_iter, BTREE_ID_inodes,
2325 SPOS(0, inode.bi_dir, snapshot), 0);
2326 ret = bkey_err(inode_k) ?:
2327 !bkey_is_inode(inode_k.k) ? -BCH_ERR_ENOENT_inode
2328 : bch2_inode_unpack(inode_k, &inode);
2330 /* Should have been caught in dirents pass */
2331 if (!bch2_err_matches(ret, BCH_ERR_transaction_restart))
2332 bch_err(c, "error looking up parent directory: %i", ret);
2336 snapshot = inode_k.k->p.snapshot;
2338 if (path_is_dup(p, inode.bi_inum, snapshot)) {
2339 /* XXX print path */
2340 bch_err(c, "directory structure loop");
2342 darray_for_each(*p, i)
2343 pr_err("%llu:%u", i->inum, i->snapshot);
2344 pr_err("%llu:%u", inode.bi_inum, snapshot);
2346 if (fsck_err(c, dir_loop, "directory structure loop")) {
2347 ret = remove_backpointer(trans, &inode);
2348 bch_err_msg(c, ret, "removing dirent");
2352 ret = reattach_inode(trans, &inode, snapshot);
2353 bch_err_msg(c, ret, "reattaching inode %llu", inode.bi_inum);
2360 bch2_trans_iter_exit(trans, &inode_iter);
2361 printbuf_exit(&buf);
2367 * Check for unreachable inodes, as well as loops in the directory structure:
2368 * After bch2_check_dirents(), if an inode backpointer doesn't exist that means it's
2371 int bch2_check_directory_structure(struct bch_fs *c)
2373 pathbuf path = { 0, };
2376 ret = bch2_trans_run(c,
2377 for_each_btree_key_commit(trans, iter, BTREE_ID_inodes, POS_MIN,
2379 BTREE_ITER_PREFETCH|
2380 BTREE_ITER_ALL_SNAPSHOTS, k,
2381 NULL, NULL, BCH_TRANS_COMMIT_no_enospc, ({
2382 if (!bkey_is_inode(k.k))
2385 if (bch2_inode_flags(k) & BCH_INODE_unlinked)
2388 check_path(trans, &path, k);
2396 struct nlink_table {
2407 static int add_nlink(struct bch_fs *c, struct nlink_table *t,
2408 u64 inum, u32 snapshot)
2410 if (t->nr == t->size) {
2411 size_t new_size = max_t(size_t, 128UL, t->size * 2);
2412 void *d = kvmalloc_array(new_size, sizeof(t->d[0]), GFP_KERNEL);
2415 bch_err(c, "fsck: error allocating memory for nlink_table, size %zu",
2417 return -BCH_ERR_ENOMEM_fsck_add_nlink;
2421 memcpy(d, t->d, t->size * sizeof(t->d[0]));
2429 t->d[t->nr++] = (struct nlink) {
2431 .snapshot = snapshot,
2437 static int nlink_cmp(const void *_l, const void *_r)
2439 const struct nlink *l = _l;
2440 const struct nlink *r = _r;
2442 return cmp_int(l->inum, r->inum);
2445 static void inc_link(struct bch_fs *c, struct snapshots_seen *s,
2446 struct nlink_table *links,
2447 u64 range_start, u64 range_end, u64 inum, u32 snapshot)
2449 struct nlink *link, key = {
2450 .inum = inum, .snapshot = U32_MAX,
2453 if (inum < range_start || inum >= range_end)
2456 link = __inline_bsearch(&key, links->d, links->nr,
2457 sizeof(links->d[0]), nlink_cmp);
2461 while (link > links->d && link[0].inum == link[-1].inum)
2464 for (; link < links->d + links->nr && link->inum == inum; link++)
2465 if (ref_visible(c, s, snapshot, link->snapshot)) {
2467 if (link->snapshot >= snapshot)
2473 static int check_nlinks_find_hardlinks(struct bch_fs *c,
2474 struct nlink_table *t,
2475 u64 start, u64 *end)
2477 int ret = bch2_trans_run(c,
2478 for_each_btree_key(trans, iter, BTREE_ID_inodes,
2481 BTREE_ITER_PREFETCH|
2482 BTREE_ITER_ALL_SNAPSHOTS, k, ({
2483 if (!bkey_is_inode(k.k))
2486 /* Should never fail, checked by bch2_inode_invalid: */
2487 struct bch_inode_unpacked u;
2488 BUG_ON(bch2_inode_unpack(k, &u));
2491 * Backpointer and directory structure checks are sufficient for
2492 * directories, since they can't have hardlinks:
2494 if (S_ISDIR(u.bi_mode))
2500 ret = add_nlink(c, t, k.k->p.offset, k.k->p.snapshot);
2502 *end = k.k->p.offset;
2514 static int check_nlinks_walk_dirents(struct bch_fs *c, struct nlink_table *links,
2515 u64 range_start, u64 range_end)
2517 struct snapshots_seen s;
2519 snapshots_seen_init(&s);
2521 int ret = bch2_trans_run(c,
2522 for_each_btree_key(trans, iter, BTREE_ID_dirents, POS_MIN,
2524 BTREE_ITER_PREFETCH|
2525 BTREE_ITER_ALL_SNAPSHOTS, k, ({
2526 ret = snapshots_seen_update(c, &s, iter.btree_id, k.k->p);
2530 if (k.k->type == KEY_TYPE_dirent) {
2531 struct bkey_s_c_dirent d = bkey_s_c_to_dirent(k);
2533 if (d.v->d_type != DT_DIR &&
2534 d.v->d_type != DT_SUBVOL)
2535 inc_link(c, &s, links, range_start, range_end,
2536 le64_to_cpu(d.v->d_inum),
2537 bch2_snapshot_equiv(c, d.k->p.snapshot));
2542 snapshots_seen_exit(&s);
2548 static int check_nlinks_update_inode(struct btree_trans *trans, struct btree_iter *iter,
2550 struct nlink_table *links,
2551 size_t *idx, u64 range_end)
2553 struct bch_fs *c = trans->c;
2554 struct bch_inode_unpacked u;
2555 struct nlink *link = &links->d[*idx];
2558 if (k.k->p.offset >= range_end)
2561 if (!bkey_is_inode(k.k))
2564 BUG_ON(bch2_inode_unpack(k, &u));
2566 if (S_ISDIR(u.bi_mode))
2572 while ((cmp_int(link->inum, k.k->p.offset) ?:
2573 cmp_int(link->snapshot, k.k->p.snapshot)) < 0) {
2574 BUG_ON(*idx == links->nr);
2575 link = &links->d[++*idx];
2578 if (fsck_err_on(bch2_inode_nlink_get(&u) != link->count,
2579 c, inode_wrong_nlink,
2580 "inode %llu type %s has wrong i_nlink (%u, should be %u)",
2581 u.bi_inum, bch2_d_types[mode_to_type(u.bi_mode)],
2582 bch2_inode_nlink_get(&u), link->count)) {
2583 bch2_inode_nlink_set(&u, link->count);
2584 ret = __bch2_fsck_write_inode(trans, &u, k.k->p.snapshot);
2591 static int check_nlinks_update_hardlinks(struct bch_fs *c,
2592 struct nlink_table *links,
2593 u64 range_start, u64 range_end)
2597 int ret = bch2_trans_run(c,
2598 for_each_btree_key_commit(trans, iter, BTREE_ID_inodes,
2599 POS(0, range_start),
2600 BTREE_ITER_INTENT|BTREE_ITER_PREFETCH|BTREE_ITER_ALL_SNAPSHOTS, k,
2601 NULL, NULL, BCH_TRANS_COMMIT_no_enospc,
2602 check_nlinks_update_inode(trans, &iter, k, links, &idx, range_end)));
2604 bch_err(c, "error in fsck walking inodes: %s", bch2_err_str(ret));
2611 int bch2_check_nlinks(struct bch_fs *c)
2613 struct nlink_table links = { 0 };
2614 u64 this_iter_range_start, next_iter_range_start = 0;
2618 this_iter_range_start = next_iter_range_start;
2619 next_iter_range_start = U64_MAX;
2621 ret = check_nlinks_find_hardlinks(c, &links,
2622 this_iter_range_start,
2623 &next_iter_range_start);
2625 ret = check_nlinks_walk_dirents(c, &links,
2626 this_iter_range_start,
2627 next_iter_range_start);
2631 ret = check_nlinks_update_hardlinks(c, &links,
2632 this_iter_range_start,
2633 next_iter_range_start);
2638 } while (next_iter_range_start != U64_MAX);
2645 static int fix_reflink_p_key(struct btree_trans *trans, struct btree_iter *iter,
2648 struct bkey_s_c_reflink_p p;
2649 struct bkey_i_reflink_p *u;
2651 if (k.k->type != KEY_TYPE_reflink_p)
2654 p = bkey_s_c_to_reflink_p(k);
2656 if (!p.v->front_pad && !p.v->back_pad)
2659 u = bch2_trans_kmalloc(trans, sizeof(*u));
2660 int ret = PTR_ERR_OR_ZERO(u);
2664 bkey_reassemble(&u->k_i, k);
2668 return bch2_trans_update(trans, iter, &u->k_i, BTREE_TRIGGER_NORUN);
2671 int bch2_fix_reflink_p(struct bch_fs *c)
2673 if (c->sb.version >= bcachefs_metadata_version_reflink_p_fix)
2676 int ret = bch2_trans_run(c,
2677 for_each_btree_key_commit(trans, iter,
2678 BTREE_ID_extents, POS_MIN,
2679 BTREE_ITER_INTENT|BTREE_ITER_PREFETCH|
2680 BTREE_ITER_ALL_SNAPSHOTS, k,
2681 NULL, NULL, BCH_TRANS_COMMIT_no_enospc,
2682 fix_reflink_p_key(trans, &iter, k)));