Merge tag 'block-6.1-2022-11-11' of git://git.kernel.dk/linux
[linux-block.git] / fs / xfs / scrub / refcount.c
CommitLineData
0b61f8a4 1// SPDX-License-Identifier: GPL-2.0+
edc09b52
DW
2/*
3 * Copyright (C) 2017 Oracle. All Rights Reserved.
edc09b52 4 * Author: Darrick J. Wong <darrick.wong@oracle.com>
edc09b52
DW
5 */
6#include "xfs.h"
7#include "xfs_fs.h"
8#include "xfs_shared.h"
9#include "xfs_format.h"
edc09b52 10#include "xfs_btree.h"
edc09b52 11#include "xfs_rmap.h"
f6d5fc21 12#include "xfs_refcount.h"
edc09b52
DW
13#include "scrub/scrub.h"
14#include "scrub/common.h"
15#include "scrub/btree.h"
36029dee
DC
16#include "xfs_trans_resv.h"
17#include "xfs_mount.h"
50f02fe3 18#include "xfs_ag.h"
edc09b52
DW
19
20/*
21 * Set us up to scrub reference count btrees.
22 */
23int
c517b3aa 24xchk_setup_ag_refcountbt(
026f57eb 25 struct xfs_scrub *sc)
edc09b52 26{
026f57eb 27 return xchk_setup_ag_btree(sc, false);
edc09b52
DW
28}
29
30/* Reference count btree scrubber. */
31
dbde19da
DW
32/*
33 * Confirming Reference Counts via Reverse Mappings
34 *
35 * We want to count the reverse mappings overlapping a refcount record
36 * (bno, len, refcount), allowing for the possibility that some of the
37 * overlap may come from smaller adjoining reverse mappings, while some
38 * comes from single extents which overlap the range entirely. The
39 * outer loop is as follows:
40 *
41 * 1. For all reverse mappings overlapping the refcount extent,
42 * a. If a given rmap completely overlaps, mark it as seen.
43 * b. Otherwise, record the fragment (in agbno order) for later
44 * processing.
45 *
46 * Once we've seen all the rmaps, we know that for all blocks in the
47 * refcount record we want to find $refcount owners and we've already
48 * visited $seen extents that overlap all the blocks. Therefore, we
49 * need to find ($refcount - $seen) owners for every block in the
50 * extent; call that quantity $target_nr. Proceed as follows:
51 *
52 * 2. Pull the first $target_nr fragments from the list; all of them
53 * should start at or before the start of the extent.
54 * Call this subset of fragments the working set.
55 * 3. Until there are no more unprocessed fragments,
56 * a. Find the shortest fragments in the set and remove them.
57 * b. Note the block number of the end of these fragments.
58 * c. Pull the same number of fragments from the list. All of these
59 * fragments should start at the block number recorded in the
60 * previous step.
61 * d. Put those fragments in the set.
62 * 4. Check that there are $target_nr fragments remaining in the list,
63 * and that they all end at or beyond the end of the refcount extent.
64 *
65 * If the refcount is correct, all the check conditions in the algorithm
66 * should always hold true. If not, the refcount is incorrect.
67 */
c517b3aa 68struct xchk_refcnt_frag {
032d91f9
DW
69 struct list_head list;
70 struct xfs_rmap_irec rm;
dbde19da
DW
71};
72
c517b3aa 73struct xchk_refcnt_check {
1d8a748a 74 struct xfs_scrub *sc;
032d91f9 75 struct list_head fragments;
dbde19da
DW
76
77 /* refcount extent we're examining */
032d91f9
DW
78 xfs_agblock_t bno;
79 xfs_extlen_t len;
80 xfs_nlink_t refcount;
dbde19da
DW
81
82 /* number of owners seen */
032d91f9 83 xfs_nlink_t seen;
dbde19da
DW
84};
85
86/*
87 * Decide if the given rmap is large enough that we can redeem it
88 * towards refcount verification now, or if it's a fragment, in
89 * which case we'll hang onto it in the hopes that we'll later
90 * discover that we've collected exactly the correct number of
91 * fragments as the refcountbt says we should have.
92 */
93STATIC int
c517b3aa 94xchk_refcountbt_rmap_check(
dbde19da 95 struct xfs_btree_cur *cur,
159eb69d 96 const struct xfs_rmap_irec *rec,
dbde19da
DW
97 void *priv)
98{
c517b3aa
DW
99 struct xchk_refcnt_check *refchk = priv;
100 struct xchk_refcnt_frag *frag;
dbde19da
DW
101 xfs_agblock_t rm_last;
102 xfs_agblock_t rc_last;
103 int error = 0;
104
c517b3aa 105 if (xchk_should_terminate(refchk->sc, &error))
dbde19da
DW
106 return error;
107
108 rm_last = rec->rm_startblock + rec->rm_blockcount - 1;
109 rc_last = refchk->bno + refchk->len - 1;
110
111 /* Confirm that a single-owner refc extent is a CoW stage. */
112 if (refchk->refcount == 1 && rec->rm_owner != XFS_RMAP_OWN_COW) {
c517b3aa 113 xchk_btree_xref_set_corrupt(refchk->sc, cur, 0);
dbde19da
DW
114 return 0;
115 }
116
117 if (rec->rm_startblock <= refchk->bno && rm_last >= rc_last) {
118 /*
119 * The rmap overlaps the refcount record, so we can confirm
120 * one refcount owner seen.
121 */
122 refchk->seen++;
123 } else {
124 /*
125 * This rmap covers only part of the refcount record, so
126 * save the fragment for later processing. If the rmapbt
127 * is healthy each rmap_irec we see will be in agbno order
128 * so we don't need insertion sort here.
129 */
c517b3aa 130 frag = kmem_alloc(sizeof(struct xchk_refcnt_frag),
631fc955 131 KM_MAYFAIL);
dbde19da
DW
132 if (!frag)
133 return -ENOMEM;
134 memcpy(&frag->rm, rec, sizeof(frag->rm));
135 list_add_tail(&frag->list, &refchk->fragments);
136 }
137
138 return 0;
139}
140
141/*
142 * Given a bunch of rmap fragments, iterate through them, keeping
143 * a running tally of the refcount. If this ever deviates from
144 * what we expect (which is the refcountbt's refcount minus the
145 * number of extents that totally covered the refcountbt extent),
146 * we have a refcountbt error.
147 */
148STATIC void
c517b3aa
DW
149xchk_refcountbt_process_rmap_fragments(
150 struct xchk_refcnt_check *refchk)
dbde19da
DW
151{
152 struct list_head worklist;
c517b3aa
DW
153 struct xchk_refcnt_frag *frag;
154 struct xchk_refcnt_frag *n;
dbde19da
DW
155 xfs_agblock_t bno;
156 xfs_agblock_t rbno;
157 xfs_agblock_t next_rbno;
158 xfs_nlink_t nr;
159 xfs_nlink_t target_nr;
160
161 target_nr = refchk->refcount - refchk->seen;
162 if (target_nr == 0)
163 return;
164
165 /*
166 * There are (refchk->rc.rc_refcount - refchk->nr refcount)
167 * references we haven't found yet. Pull that many off the
168 * fragment list and figure out where the smallest rmap ends
169 * (and therefore the next rmap should start). All the rmaps
170 * we pull off should start at or before the beginning of the
171 * refcount record's range.
172 */
173 INIT_LIST_HEAD(&worklist);
174 rbno = NULLAGBLOCK;
dbde19da
DW
175
176 /* Make sure the fragments actually /are/ in agbno order. */
177 bno = 0;
178 list_for_each_entry(frag, &refchk->fragments, list) {
179 if (frag->rm.rm_startblock < bno)
180 goto done;
181 bno = frag->rm.rm_startblock;
182 }
183
184 /*
185 * Find all the rmaps that start at or before the refc extent,
186 * and put them on the worklist.
187 */
54e9b09e 188 nr = 0;
dbde19da 189 list_for_each_entry_safe(frag, n, &refchk->fragments, list) {
54e9b09e
DW
190 if (frag->rm.rm_startblock > refchk->bno || nr > target_nr)
191 break;
dbde19da
DW
192 bno = frag->rm.rm_startblock + frag->rm.rm_blockcount;
193 if (bno < rbno)
194 rbno = bno;
195 list_move_tail(&frag->list, &worklist);
dbde19da
DW
196 nr++;
197 }
198
199 /*
200 * We should have found exactly $target_nr rmap fragments starting
201 * at or before the refcount extent.
202 */
203 if (nr != target_nr)
204 goto done;
205
206 while (!list_empty(&refchk->fragments)) {
207 /* Discard any fragments ending at rbno from the worklist. */
208 nr = 0;
209 next_rbno = NULLAGBLOCK;
210 list_for_each_entry_safe(frag, n, &worklist, list) {
211 bno = frag->rm.rm_startblock + frag->rm.rm_blockcount;
212 if (bno != rbno) {
213 if (bno < next_rbno)
214 next_rbno = bno;
215 continue;
216 }
217 list_del(&frag->list);
218 kmem_free(frag);
219 nr++;
220 }
221
222 /* Try to add nr rmaps starting at rbno to the worklist. */
223 list_for_each_entry_safe(frag, n, &refchk->fragments, list) {
224 bno = frag->rm.rm_startblock + frag->rm.rm_blockcount;
225 if (frag->rm.rm_startblock != rbno)
226 goto done;
227 list_move_tail(&frag->list, &worklist);
228 if (next_rbno > bno)
229 next_rbno = bno;
230 nr--;
231 if (nr == 0)
232 break;
233 }
234
235 /*
236 * If we get here and nr > 0, this means that we added fewer
237 * items to the worklist than we discarded because the fragment
238 * list ran out of items. Therefore, we cannot maintain the
239 * required refcount. Something is wrong, so we're done.
240 */
241 if (nr)
242 goto done;
243
244 rbno = next_rbno;
245 }
246
247 /*
248 * Make sure the last extent we processed ends at or beyond
249 * the end of the refcount extent.
250 */
251 if (rbno < refchk->bno + refchk->len)
252 goto done;
253
254 /* Actually record us having seen the remaining refcount. */
255 refchk->seen = refchk->refcount;
256done:
257 /* Delete fragments and work list. */
258 list_for_each_entry_safe(frag, n, &worklist, list) {
259 list_del(&frag->list);
260 kmem_free(frag);
261 }
262 list_for_each_entry_safe(frag, n, &refchk->fragments, list) {
263 list_del(&frag->list);
264 kmem_free(frag);
265 }
266}
267
268/* Use the rmap entries covering this extent to verify the refcount. */
269STATIC void
c517b3aa 270xchk_refcountbt_xref_rmap(
032d91f9 271 struct xfs_scrub *sc,
5a8c345c 272 const struct xfs_refcount_irec *irec)
dbde19da 273{
c517b3aa 274 struct xchk_refcnt_check refchk = {
5a8c345c
DW
275 .sc = sc,
276 .bno = irec->rc_startblock,
277 .len = irec->rc_blockcount,
278 .refcount = irec->rc_refcount,
dbde19da
DW
279 .seen = 0,
280 };
281 struct xfs_rmap_irec low;
282 struct xfs_rmap_irec high;
c517b3aa
DW
283 struct xchk_refcnt_frag *frag;
284 struct xchk_refcnt_frag *n;
dbde19da
DW
285 int error;
286
c517b3aa 287 if (!sc->sa.rmap_cur || xchk_skip_xref(sc->sm))
dbde19da
DW
288 return;
289
290 /* Cross-reference with the rmapbt to confirm the refcount. */
291 memset(&low, 0, sizeof(low));
5a8c345c 292 low.rm_startblock = irec->rc_startblock;
dbde19da 293 memset(&high, 0xFF, sizeof(high));
5a8c345c 294 high.rm_startblock = irec->rc_startblock + irec->rc_blockcount - 1;
dbde19da
DW
295
296 INIT_LIST_HEAD(&refchk.fragments);
297 error = xfs_rmap_query_range(sc->sa.rmap_cur, &low, &high,
c517b3aa
DW
298 &xchk_refcountbt_rmap_check, &refchk);
299 if (!xchk_should_check_xref(sc, &error, &sc->sa.rmap_cur))
dbde19da
DW
300 goto out_free;
301
c517b3aa 302 xchk_refcountbt_process_rmap_fragments(&refchk);
5a8c345c 303 if (irec->rc_refcount != refchk.seen)
c517b3aa 304 xchk_btree_xref_set_corrupt(sc, sc->sa.rmap_cur, 0);
dbde19da
DW
305
306out_free:
307 list_for_each_entry_safe(frag, n, &refchk.fragments, list) {
308 list_del(&frag->list);
309 kmem_free(frag);
310 }
311}
312
166d7641
DW
313/* Cross-reference with the other btrees. */
314STATIC void
c517b3aa 315xchk_refcountbt_xref(
5a8c345c
DW
316 struct xfs_scrub *sc,
317 const struct xfs_refcount_irec *irec)
166d7641
DW
318{
319 if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
320 return;
52dc4b44 321
5a8c345c
DW
322 xchk_xref_is_used_space(sc, irec->rc_startblock, irec->rc_blockcount);
323 xchk_xref_is_not_inode_chunk(sc, irec->rc_startblock,
324 irec->rc_blockcount);
325 xchk_refcountbt_xref_rmap(sc, irec);
166d7641
DW
326}
327
edc09b52
DW
328/* Scrub a refcountbt record. */
329STATIC int
c517b3aa 330xchk_refcountbt_rec(
032d91f9 331 struct xchk_btree *bs,
22ece4e8 332 const union xfs_btree_rec *rec)
edc09b52 333{
5a8c345c 334 struct xfs_refcount_irec irec;
032d91f9 335 xfs_agblock_t *cow_blocks = bs->private;
0800169e 336 struct xfs_perag *pag = bs->cur->bc_ag.pag;
edc09b52 337
5a8c345c 338 xfs_refcount_btrec_to_irec(rec, &irec);
edc09b52 339
f492135d
DW
340 /* Check the domain and refcount are not incompatible. */
341 if (!xfs_refcount_check_domain(&irec))
c517b3aa 342 xchk_btree_set_corrupt(bs->sc, bs->cur, 0);
f492135d
DW
343
344 if (irec.rc_domain == XFS_REFC_DOMAIN_COW)
5a8c345c 345 (*cow_blocks) += irec.rc_blockcount;
edc09b52
DW
346
347 /* Check the extent. */
5a8c345c 348 if (!xfs_verify_agbext(pag, irec.rc_startblock, irec.rc_blockcount))
c517b3aa 349 xchk_btree_set_corrupt(bs->sc, bs->cur, 0);
edc09b52 350
5a8c345c 351 if (irec.rc_refcount == 0)
c517b3aa 352 xchk_btree_set_corrupt(bs->sc, bs->cur, 0);
edc09b52 353
5a8c345c 354 xchk_refcountbt_xref(bs->sc, &irec);
166d7641 355
d5cc14d9 356 return 0;
edc09b52
DW
357}
358
dbde19da
DW
359/* Make sure we have as many refc blocks as the rmap says. */
360STATIC void
c517b3aa 361xchk_refcount_xref_rmap(
1d8a748a 362 struct xfs_scrub *sc,
032d91f9 363 xfs_filblks_t cow_blocks)
dbde19da 364{
032d91f9
DW
365 xfs_extlen_t refcbt_blocks = 0;
366 xfs_filblks_t blocks;
367 int error;
dbde19da 368
c517b3aa 369 if (!sc->sa.rmap_cur || xchk_skip_xref(sc->sm))
dbde19da
DW
370 return;
371
372 /* Check that we saw as many refcbt blocks as the rmap knows about. */
373 error = xfs_btree_count_blocks(sc->sa.refc_cur, &refcbt_blocks);
c517b3aa 374 if (!xchk_btree_process_error(sc, sc->sa.refc_cur, 0, &error))
dbde19da 375 return;
7280feda
DW
376 error = xchk_count_rmap_ownedby_ag(sc, sc->sa.rmap_cur,
377 &XFS_RMAP_OINFO_REFC, &blocks);
c517b3aa 378 if (!xchk_should_check_xref(sc, &error, &sc->sa.rmap_cur))
dbde19da
DW
379 return;
380 if (blocks != refcbt_blocks)
c517b3aa 381 xchk_btree_xref_set_corrupt(sc, sc->sa.rmap_cur, 0);
dbde19da
DW
382
383 /* Check that we saw as many cow blocks as the rmap knows about. */
7280feda
DW
384 error = xchk_count_rmap_ownedby_ag(sc, sc->sa.rmap_cur,
385 &XFS_RMAP_OINFO_COW, &blocks);
c517b3aa 386 if (!xchk_should_check_xref(sc, &error, &sc->sa.rmap_cur))
dbde19da
DW
387 return;
388 if (blocks != cow_blocks)
c517b3aa 389 xchk_btree_xref_set_corrupt(sc, sc->sa.rmap_cur, 0);
dbde19da
DW
390}
391
edc09b52
DW
392/* Scrub the refcount btree for some AG. */
393int
c517b3aa 394xchk_refcountbt(
1d8a748a 395 struct xfs_scrub *sc)
edc09b52 396{
032d91f9
DW
397 xfs_agblock_t cow_blocks = 0;
398 int error;
edc09b52 399
c517b3aa 400 error = xchk_btree(sc, sc->sa.refc_cur, xchk_refcountbt_rec,
7280feda 401 &XFS_RMAP_OINFO_REFC, &cow_blocks);
dbde19da
DW
402 if (error)
403 return error;
404
66e3237e 405 xchk_refcount_xref_rmap(sc, cow_blocks);
dbde19da
DW
406
407 return 0;
edc09b52 408}
f6d5fc21
DW
409
410/* xref check that a cow staging extent is marked in the refcountbt. */
411void
c517b3aa 412xchk_xref_is_cow_staging(
032d91f9 413 struct xfs_scrub *sc,
f6d5fc21
DW
414 xfs_agblock_t agbno,
415 xfs_extlen_t len)
416{
417 struct xfs_refcount_irec rc;
f6d5fc21
DW
418 int has_refcount;
419 int error;
420
c517b3aa 421 if (!sc->sa.refc_cur || xchk_skip_xref(sc->sm))
f6d5fc21
DW
422 return;
423
424 /* Find the CoW staging extent. */
9a50ee4f
DW
425 error = xfs_refcount_lookup_le(sc->sa.refc_cur, XFS_REFC_DOMAIN_COW,
426 agbno, &has_refcount);
c517b3aa 427 if (!xchk_should_check_xref(sc, &error, &sc->sa.refc_cur))
f6d5fc21
DW
428 return;
429 if (!has_refcount) {
c517b3aa 430 xchk_btree_xref_set_corrupt(sc, sc->sa.refc_cur, 0);
f6d5fc21
DW
431 return;
432 }
433
434 error = xfs_refcount_get_rec(sc->sa.refc_cur, &rc, &has_refcount);
c517b3aa 435 if (!xchk_should_check_xref(sc, &error, &sc->sa.refc_cur))
f6d5fc21
DW
436 return;
437 if (!has_refcount) {
c517b3aa 438 xchk_btree_xref_set_corrupt(sc, sc->sa.refc_cur, 0);
f6d5fc21
DW
439 return;
440 }
441
f62ac3e0
DW
442 /* CoW lookup returned a shared extent record? */
443 if (rc.rc_domain != XFS_REFC_DOMAIN_COW)
c517b3aa 444 xchk_btree_xref_set_corrupt(sc, sc->sa.refc_cur, 0);
f6d5fc21
DW
445
446 /* Must be at least as long as what was passed in */
447 if (rc.rc_blockcount < len)
c517b3aa 448 xchk_btree_xref_set_corrupt(sc, sc->sa.refc_cur, 0);
f6d5fc21
DW
449}
450
451/*
452 * xref check that the extent is not shared. Only file data blocks
453 * can have multiple owners.
454 */
455void
c517b3aa 456xchk_xref_is_not_shared(
1d8a748a 457 struct xfs_scrub *sc,
032d91f9
DW
458 xfs_agblock_t agbno,
459 xfs_extlen_t len)
f6d5fc21 460{
032d91f9
DW
461 bool shared;
462 int error;
f6d5fc21 463
c517b3aa 464 if (!sc->sa.refc_cur || xchk_skip_xref(sc->sm))
f6d5fc21
DW
465 return;
466
9a50ee4f
DW
467 error = xfs_refcount_has_record(sc->sa.refc_cur, XFS_REFC_DOMAIN_SHARED,
468 agbno, len, &shared);
c517b3aa 469 if (!xchk_should_check_xref(sc, &error, &sc->sa.refc_cur))
f6d5fc21
DW
470 return;
471 if (shared)
c517b3aa 472 xchk_btree_xref_set_corrupt(sc, sc->sa.refc_cur, 0);
f6d5fc21 473}