Line data Source code
1 : // SPDX-License-Identifier: GPL-2.0-or-later
2 : /*
3 : * Copyright (C) 2017-2023 Oracle. All Rights Reserved.
4 : * Author: Darrick J. Wong <djwong@kernel.org>
5 : */
6 : #include "xfs.h"
7 : #include "xfs_fs.h"
8 : #include "xfs_shared.h"
9 : #include "xfs_format.h"
10 : #include "xfs_trans_resv.h"
11 : #include "xfs_mount.h"
12 : #include "xfs_log_format.h"
13 : #include "xfs_trans.h"
14 : #include "xfs_btree.h"
15 : #include "xfs_alloc.h"
16 : #include "xfs_rmap.h"
17 : #include "xfs_ag.h"
18 : #include "scrub/scrub.h"
19 : #include "scrub/common.h"
20 : #include "scrub/btree.h"
21 : #include "scrub/repair.h"
22 :
23 : /*
24 : * Set us up to scrub free space btrees.
25 : */
26 : int
27 462616 : xchk_setup_ag_allocbt(
28 : struct xfs_scrub *sc)
29 : {
30 462616 : int error;
31 :
32 462616 : if (xchk_need_intent_drain(sc))
33 5324 : xchk_fsgates_enable(sc, XCHK_FSGATES_DRAIN);
34 :
35 462616 : error = xchk_setup_ag_btree(sc, false);
36 462621 : if (error)
37 : return error;
38 :
39 915234 : if (xchk_could_repair(sc))
40 87316 : return xrep_setup_ag_allocbt(sc);
41 :
42 : return 0;
43 : }
44 :
45 : /* Free space btree scrubber. */
46 :
47 : struct xchk_alloc {
48 : /* Previous free space extent. */
49 : struct xfs_alloc_rec_incore prev;
50 : };
51 :
52 : /*
53 : * Ensure there's a corresponding cntbt/bnobt record matching this
54 : * bnobt/cntbt record, respectively.
55 : */
56 : STATIC void
57 387432191 : xchk_allocbt_xref_other(
58 : struct xfs_scrub *sc,
59 : xfs_agblock_t agbno,
60 : xfs_extlen_t len)
61 : {
62 387432191 : struct xfs_btree_cur **pcur;
63 387432191 : xfs_agblock_t fbno;
64 387432191 : xfs_extlen_t flen;
65 387432191 : int has_otherrec;
66 387432191 : int error;
67 :
68 387432191 : if (sc->sm->sm_type == XFS_SCRUB_TYPE_BNOBT)
69 216204087 : pcur = &sc->sa.cnt_cur;
70 : else
71 171228104 : pcur = &sc->sa.bno_cur;
72 387432191 : if (!*pcur || xchk_skip_xref(sc->sm))
73 1004 : return;
74 :
75 387431187 : error = xfs_alloc_lookup_le(*pcur, agbno, len, &has_otherrec);
76 387430854 : if (!xchk_should_check_xref(sc, &error, pcur))
77 : return;
78 387431794 : if (!has_otherrec) {
79 0 : xchk_btree_xref_set_corrupt(sc, *pcur, 0);
80 0 : return;
81 : }
82 :
83 387431794 : error = xfs_alloc_get_rec(*pcur, &fbno, &flen, &has_otherrec);
84 387431807 : if (!xchk_should_check_xref(sc, &error, pcur))
85 : return;
86 387432188 : if (!has_otherrec) {
87 0 : xchk_btree_xref_set_corrupt(sc, *pcur, 0);
88 0 : return;
89 : }
90 :
91 387432188 : if (fbno != agbno || flen != len)
92 0 : xchk_btree_xref_set_corrupt(sc, *pcur, 0);
93 : }
94 :
95 : /* Cross-reference with the other btrees. */
96 : STATIC void
97 387432114 : xchk_allocbt_xref(
98 : struct xfs_scrub *sc,
99 : const struct xfs_alloc_rec_incore *irec)
100 : {
101 387432114 : xfs_agblock_t agbno = irec->ar_startblock;
102 387432114 : xfs_extlen_t len = irec->ar_blockcount;
103 :
104 387432114 : if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
105 : return;
106 :
107 387432689 : xchk_allocbt_xref_other(sc, agbno, len);
108 387432324 : xchk_xref_is_not_inode_chunk(sc, agbno, len);
109 387428343 : xchk_xref_has_no_owner(sc, agbno, len);
110 387428984 : xchk_xref_is_not_shared(sc, agbno, len);
111 387432187 : xchk_xref_is_not_cow_staging(sc, agbno, len);
112 : }
113 :
114 : /* Flag failures for records that could be merged. */
115 : STATIC void
116 387431765 : xchk_allocbt_mergeable(
117 : struct xchk_btree *bs,
118 : struct xchk_alloc *ca,
119 : const struct xfs_alloc_rec_incore *irec)
120 : {
121 387431765 : if (bs->sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
122 : return;
123 :
124 387431765 : if (ca->prev.ar_blockcount > 0 &&
125 386888078 : ca->prev.ar_startblock + ca->prev.ar_blockcount == irec->ar_startblock &&
126 0 : ca->prev.ar_blockcount + irec->ar_blockcount < (uint32_t)~0U)
127 0 : xchk_btree_set_corrupt(bs->sc, bs->cur, 0);
128 :
129 774863530 : memcpy(&ca->prev, irec, sizeof(*irec));
130 : }
131 :
132 : /* Scrub a bnobt/cntbt record. */
133 : STATIC int
134 387433009 : xchk_allocbt_rec(
135 : struct xchk_btree *bs,
136 : const union xfs_btree_rec *rec)
137 : {
138 387433009 : struct xfs_alloc_rec_incore irec;
139 387433009 : struct xchk_alloc *ca = bs->private;
140 :
141 387433009 : xfs_alloc_btrec_to_irec(rec, &irec);
142 387433847 : if (xfs_alloc_check_irec(bs->cur, &irec) != NULL) {
143 0 : xchk_btree_set_corrupt(bs->sc, bs->cur, 0);
144 0 : return 0;
145 : }
146 :
147 387432464 : xchk_allocbt_mergeable(bs, ca, &irec);
148 387433627 : xchk_allocbt_xref(bs->sc, &irec);
149 :
150 387433627 : return 0;
151 : }
152 :
153 : /* Scrub the freespace btrees for some AG. */
154 : STATIC int
155 544929 : xchk_allocbt(
156 : struct xfs_scrub *sc,
157 : xfs_btnum_t which)
158 : {
159 544929 : struct xchk_alloc ca = { };
160 544929 : struct xfs_btree_cur *cur;
161 :
162 544929 : cur = which == XFS_BTNUM_BNO ? sc->sa.bno_cur : sc->sa.cnt_cur;
163 544929 : return xchk_btree(sc, cur, xchk_allocbt_rec, &XFS_RMAP_OINFO_AG, &ca);
164 : }
165 :
166 : int
167 309755 : xchk_bnobt(
168 : struct xfs_scrub *sc)
169 : {
170 309755 : return xchk_allocbt(sc, XFS_BTNUM_BNO);
171 : }
172 :
173 : int
174 235171 : xchk_cntbt(
175 : struct xfs_scrub *sc)
176 : {
177 235171 : return xchk_allocbt(sc, XFS_BTNUM_CNT);
178 : }
179 :
180 : /* xref check that the extent is not free */
181 : void
182 1762949326 : xchk_xref_is_used_space(
183 : struct xfs_scrub *sc,
184 : xfs_agblock_t agbno,
185 : xfs_extlen_t len)
186 : {
187 1762949326 : enum xbtree_recpacking outcome;
188 1762949326 : int error;
189 :
190 1762949326 : if (!sc->sa.bno_cur || xchk_skip_xref(sc->sm))
191 0 : return;
192 :
193 1762949326 : error = xfs_alloc_has_records(sc->sa.bno_cur, agbno, len, &outcome);
194 1762964185 : if (!xchk_should_check_xref(sc, &error, &sc->sa.bno_cur))
195 : return;
196 1762969258 : if (outcome != XBTREE_RECPACKING_EMPTY)
197 0 : xchk_btree_xref_set_corrupt(sc, sc->sa.bno_cur, 0);
198 : }
|