blob: ef7cc8e101abf439513b44501b29bc121c2110af [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0+
Darrick J. Wonga5c46e52017-10-17 21:37:44 -07002/*
3 * Copyright (C) 2017 Oracle. All Rights Reserved.
Darrick J. Wonga5c46e52017-10-17 21:37:44 -07004 * Author: Darrick J. Wong <darrick.wong@oracle.com>
Darrick J. Wonga5c46e52017-10-17 21:37:44 -07005 */
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"
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070012#include "xfs_log_format.h"
13#include "xfs_trans.h"
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070014#include "xfs_inode.h"
15#include "xfs_icache.h"
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070016#include "xfs_dir2.h"
17#include "xfs_dir2_priv.h"
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070018#include "scrub/scrub.h"
19#include "scrub/common.h"
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070020#include "scrub/dabtree.h"
21
22/* Set us up to scrub directories. */
23int
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070024xchk_setup_directory(
Darrick J. Wong1d8a7482018-07-19 12:29:12 -070025 struct xfs_scrub *sc,
Darrick J. Wong032d91f2018-07-19 12:29:12 -070026 struct xfs_inode *ip)
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070027{
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070028 return xchk_setup_inode_contents(sc, ip, 0);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070029}
30
31/* Directories */
32
33/* Scrub a directory entry. */
34
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070035struct xchk_dir_ctx {
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070036 /* VFS fill-directory iterator */
Darrick J. Wong032d91f2018-07-19 12:29:12 -070037 struct dir_context dir_iter;
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070038
Darrick J. Wong1d8a7482018-07-19 12:29:12 -070039 struct xfs_scrub *sc;
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070040};
41
42/* Check that an inode's mode matches a given DT_ type. */
43STATIC int
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070044xchk_dir_check_ftype(
Darrick J. Wong032d91f2018-07-19 12:29:12 -070045 struct xchk_dir_ctx *sdc,
46 xfs_fileoff_t offset,
47 xfs_ino_t inum,
48 int dtype)
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070049{
Darrick J. Wong032d91f2018-07-19 12:29:12 -070050 struct xfs_mount *mp = sdc->sc->mp;
51 struct xfs_inode *ip;
52 int ino_dtype;
53 int error = 0;
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070054
55 if (!xfs_sb_version_hasftype(&mp->m_sb)) {
56 if (dtype != DT_UNKNOWN && dtype != DT_DIR)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070057 xchk_fblock_set_corrupt(sdc->sc, XFS_DATA_FORK,
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070058 offset);
59 goto out;
60 }
61
62 /*
63 * Grab the inode pointed to by the dirent. We release the
64 * inode before we cancel the scrub transaction. Since we're
65 * don't know a priori that releasing the inode won't trigger
66 * eofblocks cleanup (which allocates what would be a nested
67 * transaction), we can't use DONTCACHE here because DONTCACHE
68 * inodes can trigger immediate inactive cleanup of the inode.
69 */
70 error = xfs_iget(mp, sdc->sc->tp, inum, 0, 0, &ip);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070071 if (!xchk_fblock_xref_process_error(sdc->sc, XFS_DATA_FORK, offset,
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070072 &error))
73 goto out;
74
75 /* Convert mode to the DT_* values that dir_emit uses. */
76 ino_dtype = xfs_dir3_get_dtype(mp,
77 xfs_mode_to_ftype(VFS_I(ip)->i_mode));
78 if (ino_dtype != dtype)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070079 xchk_fblock_set_corrupt(sdc->sc, XFS_DATA_FORK, offset);
Darrick J. Wong44a87362018-07-25 12:52:32 -070080 xfs_irele(ip);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -070081out:
82 return error;
83}
84
85/*
86 * Scrub a single directory entry.
87 *
88 * We use the VFS directory iterator (i.e. readdir) to call this
89 * function for every directory entry in a directory. Once we're here,
90 * we check the inode number to make sure it's sane, then we check that
91 * we can look up this filename. Finally, we check the ftype.
92 */
93STATIC int
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070094xchk_dir_actor(
Darrick J. Wong032d91f2018-07-19 12:29:12 -070095 struct dir_context *dir_iter,
96 const char *name,
97 int namelen,
98 loff_t pos,
99 u64 ino,
100 unsigned type)
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700101{
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700102 struct xfs_mount *mp;
103 struct xfs_inode *ip;
104 struct xchk_dir_ctx *sdc;
105 struct xfs_name xname;
106 xfs_ino_t lookup_ino;
107 xfs_dablk_t offset;
108 int error = 0;
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700109
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700110 sdc = container_of(dir_iter, struct xchk_dir_ctx, dir_iter);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700111 ip = sdc->sc->ip;
112 mp = ip->i_mount;
113 offset = xfs_dir2_db_to_da(mp->m_dir_geo,
114 xfs_dir2_dataptr_to_db(mp->m_dir_geo, pos));
115
Darrick J. Wong8ef347232019-11-05 15:33:56 -0800116 if (xchk_should_terminate(sdc->sc, &error))
117 return error;
118
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700119 /* Does this inode number make sense? */
120 if (!xfs_verify_dir_ino(mp, ino)) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700121 xchk_fblock_set_corrupt(sdc->sc, XFS_DATA_FORK, offset);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700122 goto out;
123 }
124
Darrick J. Wonge5d7d512019-02-01 09:08:54 -0800125 /* Does this name make sense? */
126 if (!xfs_dir2_namecheck(name, namelen)) {
127 xchk_fblock_set_corrupt(sdc->sc, XFS_DATA_FORK, offset);
128 goto out;
129 }
130
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700131 if (!strncmp(".", name, namelen)) {
132 /* If this is "." then check that the inum matches the dir. */
133 if (xfs_sb_version_hasftype(&mp->m_sb) && type != DT_DIR)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700134 xchk_fblock_set_corrupt(sdc->sc, XFS_DATA_FORK,
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700135 offset);
136 if (ino != ip->i_ino)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700137 xchk_fblock_set_corrupt(sdc->sc, XFS_DATA_FORK,
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700138 offset);
139 } else if (!strncmp("..", name, namelen)) {
140 /*
141 * If this is ".." in the root inode, check that the inum
142 * matches this dir.
143 */
144 if (xfs_sb_version_hasftype(&mp->m_sb) && type != DT_DIR)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700145 xchk_fblock_set_corrupt(sdc->sc, XFS_DATA_FORK,
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700146 offset);
147 if (ip->i_ino == mp->m_sb.sb_rootino && ino != ip->i_ino)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700148 xchk_fblock_set_corrupt(sdc->sc, XFS_DATA_FORK,
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700149 offset);
150 }
151
152 /* Verify that we can look up this name by hash. */
153 xname.name = name;
154 xname.len = namelen;
155 xname.type = XFS_DIR3_FT_UNKNOWN;
156
157 error = xfs_dir_lookup(sdc->sc->tp, ip, &xname, &lookup_ino, NULL);
Darrick J. Wong2e107cf2020-03-11 10:37:57 -0700158 /* ENOENT means the hash lookup failed and the dir is corrupt */
159 if (error == -ENOENT)
160 error = -EFSCORRUPTED;
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700161 if (!xchk_fblock_process_error(sdc->sc, XFS_DATA_FORK, offset,
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700162 &error))
Darrick J. Wong8bc763c2018-05-14 06:34:32 -0700163 goto out;
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700164 if (lookup_ino != ino) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700165 xchk_fblock_set_corrupt(sdc->sc, XFS_DATA_FORK, offset);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700166 goto out;
167 }
168
169 /* Verify the file type. This function absorbs error codes. */
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700170 error = xchk_dir_check_ftype(sdc, offset, lookup_ino, type);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700171 if (error)
172 goto out;
173out:
Darrick J. Wong8bc763c2018-05-14 06:34:32 -0700174 /*
175 * A negative error code returned here is supposed to cause the
176 * dir_emit caller (xfs_readdir) to abort the directory iteration
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700177 * and return zero to xchk_directory.
Darrick J. Wong8bc763c2018-05-14 06:34:32 -0700178 */
179 if (error == 0 && sdc->sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
180 return -EFSCORRUPTED;
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700181 return error;
182}
183
184/* Scrub a directory btree record. */
185STATIC int
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700186xchk_dir_rec(
187 struct xchk_da_btree *ds,
Christoph Hellwig649d9d92019-11-08 14:52:07 -0800188 int level)
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700189{
Christoph Hellwig649d9d92019-11-08 14:52:07 -0800190 struct xfs_da_state_blk *blk = &ds->state->path.blk[level];
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700191 struct xfs_mount *mp = ds->state->mp;
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700192 struct xfs_inode *dp = ds->dargs.dp;
Christoph Hellwigd73e1ce2019-11-08 15:05:38 -0800193 struct xfs_da_geometry *geo = mp->m_dir_geo;
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700194 struct xfs_dir2_data_entry *dent;
195 struct xfs_buf *bp;
Christoph Hellwig649d9d92019-11-08 14:52:07 -0800196 struct xfs_dir2_leaf_entry *ent;
Christoph Hellwig5c072122019-11-08 15:05:36 -0800197 unsigned int end;
Christoph Hellwig4c037dd2019-11-08 15:05:33 -0800198 unsigned int iter_off;
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700199 xfs_ino_t ino;
200 xfs_dablk_t rec_bno;
201 xfs_dir2_db_t db;
202 xfs_dir2_data_aoff_t off;
203 xfs_dir2_dataptr_t ptr;
204 xfs_dahash_t calc_hash;
205 xfs_dahash_t hash;
Christoph Hellwig787b0892019-11-08 14:57:50 -0800206 struct xfs_dir3_icleaf_hdr hdr;
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700207 unsigned int tag;
208 int error;
209
Christoph Hellwig649d9d92019-11-08 14:52:07 -0800210 ASSERT(blk->magic == XFS_DIR2_LEAF1_MAGIC ||
211 blk->magic == XFS_DIR2_LEAFN_MAGIC);
212
Christoph Hellwig787b0892019-11-08 14:57:50 -0800213 xfs_dir2_leaf_hdr_from_disk(mp, &hdr, blk->bp->b_addr);
214 ent = hdr.ents + blk->index;
Christoph Hellwig649d9d92019-11-08 14:52:07 -0800215
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700216 /* Check the hash of the entry. */
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700217 error = xchk_da_btree_hash(ds, level, &ent->hashval);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700218 if (error)
219 goto out;
220
221 /* Valid hash pointer? */
222 ptr = be32_to_cpu(ent->address);
223 if (ptr == 0)
224 return 0;
225
226 /* Find the directory entry's location. */
Christoph Hellwigd73e1ce2019-11-08 15:05:38 -0800227 db = xfs_dir2_dataptr_to_db(geo, ptr);
228 off = xfs_dir2_dataptr_to_off(geo, ptr);
229 rec_bno = xfs_dir2_db_to_da(geo, db);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700230
Christoph Hellwigd73e1ce2019-11-08 15:05:38 -0800231 if (rec_bno >= geo->leafblk) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700232 xchk_da_set_corrupt(ds, level);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700233 goto out;
234 }
Christoph Hellwigcd2c9f12019-11-20 09:46:04 -0800235 error = xfs_dir3_data_read(ds->dargs.trans, dp, rec_bno,
236 XFS_DABUF_MAP_HOLE_OK, &bp);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700237 if (!xchk_fblock_process_error(ds->sc, XFS_DATA_FORK, rec_bno,
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700238 &error))
239 goto out;
240 if (!bp) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700241 xchk_fblock_set_corrupt(ds->sc, XFS_DATA_FORK, rec_bno);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700242 goto out;
243 }
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700244 xchk_buffer_recheck(ds->sc, bp);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700245
Darrick J. Wong8bc763c2018-05-14 06:34:32 -0700246 if (ds->sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
247 goto out_relse;
248
Christoph Hellwig4c037dd2019-11-08 15:05:33 -0800249 dent = bp->b_addr + off;
Darrick J. Wongce92d292018-01-16 18:54:12 -0800250
251 /* Make sure we got a real directory entry. */
Christoph Hellwigd73e1ce2019-11-08 15:05:38 -0800252 iter_off = geo->data_entry_offset;
253 end = xfs_dir3_data_end_offset(geo, bp->b_addr);
Christoph Hellwig5c072122019-11-08 15:05:36 -0800254 if (!end) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700255 xchk_fblock_set_corrupt(ds->sc, XFS_DATA_FORK, rec_bno);
Darrick J. Wongce92d292018-01-16 18:54:12 -0800256 goto out_relse;
257 }
Christoph Hellwig4c037dd2019-11-08 15:05:33 -0800258 for (;;) {
259 struct xfs_dir2_data_entry *dep = bp->b_addr + iter_off;
260 struct xfs_dir2_data_unused *dup = bp->b_addr + iter_off;
Darrick J. Wongce92d292018-01-16 18:54:12 -0800261
Christoph Hellwig5c072122019-11-08 15:05:36 -0800262 if (iter_off >= end) {
Christoph Hellwig4c037dd2019-11-08 15:05:33 -0800263 xchk_fblock_set_corrupt(ds->sc, XFS_DATA_FORK, rec_bno);
264 goto out_relse;
265 }
266
Darrick J. Wongce92d292018-01-16 18:54:12 -0800267 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
Christoph Hellwig4c037dd2019-11-08 15:05:33 -0800268 iter_off += be16_to_cpu(dup->length);
Darrick J. Wongce92d292018-01-16 18:54:12 -0800269 continue;
270 }
Darrick J. Wongce92d292018-01-16 18:54:12 -0800271 if (dep == dent)
272 break;
Christoph Hellwigfdbb8c52019-11-08 15:05:37 -0800273 iter_off += xfs_dir2_data_entsize(mp, dep->namelen);
Darrick J. Wongce92d292018-01-16 18:54:12 -0800274 }
275
276 /* Retrieve the entry, sanity check it, and compare hashes. */
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700277 ino = be64_to_cpu(dent->inumber);
278 hash = be32_to_cpu(ent->hashval);
Christoph Hellwig7e8ae7bd2019-11-08 15:05:37 -0800279 tag = be16_to_cpup(xfs_dir2_data_entry_tag_p(mp, dent));
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700280 if (!xfs_verify_dir_ino(mp, ino) || tag != off)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700281 xchk_fblock_set_corrupt(ds->sc, XFS_DATA_FORK, rec_bno);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700282 if (dent->namelen == 0) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700283 xchk_fblock_set_corrupt(ds->sc, XFS_DATA_FORK, rec_bno);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700284 goto out_relse;
285 }
286 calc_hash = xfs_da_hashname(dent->name, dent->namelen);
287 if (calc_hash != hash)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700288 xchk_fblock_set_corrupt(ds->sc, XFS_DATA_FORK, rec_bno);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700289
290out_relse:
291 xfs_trans_brelse(ds->dargs.trans, bp);
292out:
293 return error;
294}
295
Darrick J. Wongdf481962017-10-17 21:37:44 -0700296/*
297 * Is this unused entry either in the bestfree or smaller than all of
298 * them? We've already checked that the bestfrees are sorted longest to
299 * shortest, and that there aren't any bogus entries.
300 */
301STATIC void
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700302xchk_directory_check_free_entry(
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700303 struct xfs_scrub *sc,
Darrick J. Wongdf481962017-10-17 21:37:44 -0700304 xfs_dablk_t lblk,
305 struct xfs_dir2_data_free *bf,
306 struct xfs_dir2_data_unused *dup)
307{
308 struct xfs_dir2_data_free *dfp;
309 unsigned int dup_length;
310
311 dup_length = be16_to_cpu(dup->length);
312
313 /* Unused entry is shorter than any of the bestfrees */
314 if (dup_length < be16_to_cpu(bf[XFS_DIR2_DATA_FD_COUNT - 1].length))
315 return;
316
317 for (dfp = &bf[XFS_DIR2_DATA_FD_COUNT - 1]; dfp >= bf; dfp--)
318 if (dup_length == be16_to_cpu(dfp->length))
319 return;
320
321 /* Unused entry should be in the bestfrees but wasn't found. */
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700322 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700323}
324
325/* Check free space info in a directory data block. */
326STATIC int
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700327xchk_directory_data_bestfree(
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700328 struct xfs_scrub *sc,
Darrick J. Wongdf481962017-10-17 21:37:44 -0700329 xfs_dablk_t lblk,
330 bool is_block)
331{
332 struct xfs_dir2_data_unused *dup;
333 struct xfs_dir2_data_free *dfp;
334 struct xfs_buf *bp;
335 struct xfs_dir2_data_free *bf;
336 struct xfs_mount *mp = sc->mp;
Darrick J. Wongdf481962017-10-17 21:37:44 -0700337 u16 tag;
338 unsigned int nr_bestfrees = 0;
339 unsigned int nr_frees = 0;
340 unsigned int smallest_bestfree;
341 int newlen;
Christoph Hellwig4a1a8b22019-11-08 15:05:33 -0800342 unsigned int offset;
343 unsigned int end;
Darrick J. Wongdf481962017-10-17 21:37:44 -0700344 int error;
345
Darrick J. Wongdf481962017-10-17 21:37:44 -0700346 if (is_block) {
347 /* dir block format */
348 if (lblk != XFS_B_TO_FSBT(mp, XFS_DIR2_DATA_OFFSET))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700349 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700350 error = xfs_dir3_block_read(sc->tp, sc->ip, &bp);
351 } else {
352 /* dir data format */
Christoph Hellwigcd2c9f12019-11-20 09:46:04 -0800353 error = xfs_dir3_data_read(sc->tp, sc->ip, lblk, 0, &bp);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700354 }
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700355 if (!xchk_fblock_process_error(sc, XFS_DATA_FORK, lblk, &error))
Darrick J. Wongdf481962017-10-17 21:37:44 -0700356 goto out;
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700357 xchk_buffer_recheck(sc, bp);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700358
359 /* XXX: Check xfs_dir3_data_hdr.pad is zero once we start setting it. */
360
Darrick J. Wong8bc763c2018-05-14 06:34:32 -0700361 if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
362 goto out_buf;
363
Darrick J. Wongdf481962017-10-17 21:37:44 -0700364 /* Do the bestfrees correspond to actual free space? */
Christoph Hellwig1848b602019-11-08 15:05:39 -0800365 bf = xfs_dir2_data_bestfree_p(mp, bp->b_addr);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700366 smallest_bestfree = UINT_MAX;
367 for (dfp = &bf[0]; dfp < &bf[XFS_DIR2_DATA_FD_COUNT]; dfp++) {
368 offset = be16_to_cpu(dfp->offset);
369 if (offset == 0)
370 continue;
371 if (offset >= mp->m_dir_geo->blksize) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700372 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700373 goto out_buf;
374 }
Christoph Hellwig4a1a8b22019-11-08 15:05:33 -0800375 dup = bp->b_addr + offset;
Darrick J. Wongdf481962017-10-17 21:37:44 -0700376 tag = be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup));
377
378 /* bestfree doesn't match the entry it points at? */
379 if (dup->freetag != cpu_to_be16(XFS_DIR2_DATA_FREE_TAG) ||
380 be16_to_cpu(dup->length) != be16_to_cpu(dfp->length) ||
Christoph Hellwig4a1a8b22019-11-08 15:05:33 -0800381 tag != offset) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700382 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700383 goto out_buf;
384 }
385
386 /* bestfree records should be ordered largest to smallest */
387 if (smallest_bestfree < be16_to_cpu(dfp->length)) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700388 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700389 goto out_buf;
390 }
391
392 smallest_bestfree = be16_to_cpu(dfp->length);
393 nr_bestfrees++;
394 }
395
396 /* Make sure the bestfrees are actually the best free spaces. */
Christoph Hellwigd73e1ce2019-11-08 15:05:38 -0800397 offset = mp->m_dir_geo->data_entry_offset;
Christoph Hellwig5c072122019-11-08 15:05:36 -0800398 end = xfs_dir3_data_end_offset(mp->m_dir_geo, bp->b_addr);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700399
400 /* Iterate the entries, stopping when we hit or go past the end. */
Christoph Hellwig4a1a8b22019-11-08 15:05:33 -0800401 while (offset < end) {
402 dup = bp->b_addr + offset;
403
Darrick J. Wongdf481962017-10-17 21:37:44 -0700404 /* Skip real entries */
405 if (dup->freetag != cpu_to_be16(XFS_DIR2_DATA_FREE_TAG)) {
Christoph Hellwig4a1a8b22019-11-08 15:05:33 -0800406 struct xfs_dir2_data_entry *dep = bp->b_addr + offset;
Darrick J. Wongdf481962017-10-17 21:37:44 -0700407
Christoph Hellwigfdbb8c52019-11-08 15:05:37 -0800408 newlen = xfs_dir2_data_entsize(mp, dep->namelen);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700409 if (newlen <= 0) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700410 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK,
Darrick J. Wongdf481962017-10-17 21:37:44 -0700411 lblk);
412 goto out_buf;
413 }
Christoph Hellwig4a1a8b22019-11-08 15:05:33 -0800414 offset += newlen;
Darrick J. Wongdf481962017-10-17 21:37:44 -0700415 continue;
416 }
417
418 /* Spot check this free entry */
419 tag = be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup));
Christoph Hellwig4a1a8b22019-11-08 15:05:33 -0800420 if (tag != offset) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700421 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wong8bc763c2018-05-14 06:34:32 -0700422 goto out_buf;
423 }
Darrick J. Wongdf481962017-10-17 21:37:44 -0700424
425 /*
426 * Either this entry is a bestfree or it's smaller than
427 * any of the bestfrees.
428 */
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700429 xchk_directory_check_free_entry(sc, lblk, bf, dup);
Darrick J. Wong8bc763c2018-05-14 06:34:32 -0700430 if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
431 goto out_buf;
Darrick J. Wongdf481962017-10-17 21:37:44 -0700432
433 /* Move on. */
434 newlen = be16_to_cpu(dup->length);
435 if (newlen <= 0) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700436 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700437 goto out_buf;
438 }
Christoph Hellwig4a1a8b22019-11-08 15:05:33 -0800439 offset += newlen;
440 if (offset <= end)
Darrick J. Wongdf481962017-10-17 21:37:44 -0700441 nr_frees++;
442 }
443
444 /* We're required to fill all the space. */
Christoph Hellwig4a1a8b22019-11-08 15:05:33 -0800445 if (offset != end)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700446 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700447
448 /* Did we see at least as many free slots as there are bestfrees? */
449 if (nr_frees < nr_bestfrees)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700450 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700451out_buf:
452 xfs_trans_brelse(sc->tp, bp);
453out:
454 return error;
455}
456
457/*
458 * Does the free space length in the free space index block ($len) match
459 * the longest length in the directory data block's bestfree array?
460 * Assume that we've already checked that the data block's bestfree
461 * array is in order.
462 */
463STATIC void
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700464xchk_directory_check_freesp(
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700465 struct xfs_scrub *sc,
Darrick J. Wongdf481962017-10-17 21:37:44 -0700466 xfs_dablk_t lblk,
467 struct xfs_buf *dbp,
468 unsigned int len)
469{
Darrick J. Wongdf481962017-10-17 21:37:44 -0700470 struct xfs_dir2_data_free *dfp;
Darrick J. Wongdf481962017-10-17 21:37:44 -0700471
Christoph Hellwig1848b602019-11-08 15:05:39 -0800472 dfp = xfs_dir2_data_bestfree_p(sc->mp, dbp->b_addr);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700473
Darrick J. Wong35ce8522017-11-06 11:37:46 -0800474 if (len != be16_to_cpu(dfp->length))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700475 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700476
Darrick J. Wong35ce8522017-11-06 11:37:46 -0800477 if (len > 0 && be16_to_cpu(dfp->offset) == 0)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700478 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700479}
480
481/* Check free space info in a directory leaf1 block. */
482STATIC int
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700483xchk_directory_leaf1_bestfree(
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700484 struct xfs_scrub *sc,
Darrick J. Wongdf481962017-10-17 21:37:44 -0700485 struct xfs_da_args *args,
486 xfs_dablk_t lblk)
487{
488 struct xfs_dir3_icleaf_hdr leafhdr;
Darrick J. Wongdf481962017-10-17 21:37:44 -0700489 struct xfs_dir2_leaf_tail *ltp;
490 struct xfs_dir2_leaf *leaf;
491 struct xfs_buf *dbp;
492 struct xfs_buf *bp;
Darrick J. Wongdf481962017-10-17 21:37:44 -0700493 struct xfs_da_geometry *geo = sc->mp->m_dir_geo;
494 __be16 *bestp;
495 __u16 best;
496 __u32 hash;
497 __u32 lasthash = 0;
498 __u32 bestcount;
499 unsigned int stale = 0;
500 int i;
501 int error;
502
503 /* Read the free space block. */
Christoph Hellwigc943c0b2019-11-20 09:46:03 -0800504 error = xfs_dir3_leaf_read(sc->tp, sc->ip, lblk, &bp);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700505 if (!xchk_fblock_process_error(sc, XFS_DATA_FORK, lblk, &error))
Darrick J. Wongdf481962017-10-17 21:37:44 -0700506 goto out;
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700507 xchk_buffer_recheck(sc, bp);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700508
509 leaf = bp->b_addr;
Christoph Hellwig51842552019-11-08 14:57:49 -0800510 xfs_dir2_leaf_hdr_from_disk(sc->ip->i_mount, &leafhdr, leaf);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700511 ltp = xfs_dir2_leaf_tail_p(geo, leaf);
512 bestcount = be32_to_cpu(ltp->bestcount);
513 bestp = xfs_dir2_leaf_bests_p(ltp);
514
515 if (xfs_sb_version_hascrc(&sc->mp->m_sb)) {
516 struct xfs_dir3_leaf_hdr *hdr3 = bp->b_addr;
517
518 if (hdr3->pad != cpu_to_be32(0))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700519 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700520 }
521
522 /*
523 * There should be as many bestfree slots as there are dir data
524 * blocks that can fit under i_size.
525 */
526 if (bestcount != xfs_dir2_byte_to_db(geo, sc->ip->i_d.di_size)) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700527 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700528 goto out;
529 }
530
531 /* Is the leaf count even remotely sane? */
Christoph Hellwig478c7832019-11-08 14:57:51 -0800532 if (leafhdr.count > geo->leaf_max_ents) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700533 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700534 goto out;
535 }
536
537 /* Leaves and bests don't overlap in leaf format. */
Christoph Hellwig787b0892019-11-08 14:57:50 -0800538 if ((char *)&leafhdr.ents[leafhdr.count] > (char *)bestp) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700539 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700540 goto out;
541 }
542
543 /* Check hash value order, count stale entries. */
544 for (i = 0; i < leafhdr.count; i++) {
Christoph Hellwig787b0892019-11-08 14:57:50 -0800545 hash = be32_to_cpu(leafhdr.ents[i].hashval);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700546 if (i > 0 && lasthash > hash)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700547 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700548 lasthash = hash;
Christoph Hellwig787b0892019-11-08 14:57:50 -0800549 if (leafhdr.ents[i].address ==
550 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Darrick J. Wongdf481962017-10-17 21:37:44 -0700551 stale++;
552 }
553 if (leafhdr.stale != stale)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700554 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wong8bc763c2018-05-14 06:34:32 -0700555 if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
556 goto out;
Darrick J. Wongdf481962017-10-17 21:37:44 -0700557
558 /* Check all the bestfree entries. */
559 for (i = 0; i < bestcount; i++, bestp++) {
560 best = be16_to_cpu(*bestp);
561 if (best == NULLDATAOFF)
562 continue;
563 error = xfs_dir3_data_read(sc->tp, sc->ip,
Christoph Hellwigcd2c9f12019-11-20 09:46:04 -0800564 i * args->geo->fsbcount, 0, &dbp);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700565 if (!xchk_fblock_process_error(sc, XFS_DATA_FORK, lblk,
Darrick J. Wongdf481962017-10-17 21:37:44 -0700566 &error))
Darrick J. Wong8bc763c2018-05-14 06:34:32 -0700567 break;
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700568 xchk_directory_check_freesp(sc, lblk, dbp, best);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700569 xfs_trans_brelse(sc->tp, dbp);
Darrick J. Wong8bc763c2018-05-14 06:34:32 -0700570 if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
571 goto out;
Darrick J. Wongdf481962017-10-17 21:37:44 -0700572 }
573out:
574 return error;
575}
576
577/* Check free space info in a directory freespace block. */
578STATIC int
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700579xchk_directory_free_bestfree(
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700580 struct xfs_scrub *sc,
Darrick J. Wongdf481962017-10-17 21:37:44 -0700581 struct xfs_da_args *args,
582 xfs_dablk_t lblk)
583{
584 struct xfs_dir3_icfree_hdr freehdr;
585 struct xfs_buf *dbp;
586 struct xfs_buf *bp;
Christoph Hellwig88aa5de2017-11-06 11:53:58 -0800587 __u16 best;
Darrick J. Wongdf481962017-10-17 21:37:44 -0700588 unsigned int stale = 0;
589 int i;
590 int error;
591
592 /* Read the free space block */
593 error = xfs_dir2_free_read(sc->tp, sc->ip, lblk, &bp);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700594 if (!xchk_fblock_process_error(sc, XFS_DATA_FORK, lblk, &error))
Darrick J. Wongdf481962017-10-17 21:37:44 -0700595 goto out;
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700596 xchk_buffer_recheck(sc, bp);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700597
598 if (xfs_sb_version_hascrc(&sc->mp->m_sb)) {
599 struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;
600
601 if (hdr3->pad != cpu_to_be32(0))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700602 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700603 }
604
605 /* Check all the entries. */
Christoph Hellwig5ba30912019-11-08 14:57:52 -0800606 xfs_dir2_free_hdr_from_disk(sc->ip->i_mount, &freehdr, bp->b_addr);
Christoph Hellwiga84f3d52019-11-08 14:58:05 -0800607 for (i = 0; i < freehdr.nvalid; i++) {
608 best = be16_to_cpu(freehdr.bests[i]);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700609 if (best == NULLDATAOFF) {
610 stale++;
611 continue;
612 }
613 error = xfs_dir3_data_read(sc->tp, sc->ip,
614 (freehdr.firstdb + i) * args->geo->fsbcount,
Christoph Hellwigcd2c9f12019-11-20 09:46:04 -0800615 0, &dbp);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700616 if (!xchk_fblock_process_error(sc, XFS_DATA_FORK, lblk,
Darrick J. Wongdf481962017-10-17 21:37:44 -0700617 &error))
Darrick J. Wong8bc763c2018-05-14 06:34:32 -0700618 break;
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700619 xchk_directory_check_freesp(sc, lblk, dbp, best);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700620 xfs_trans_brelse(sc->tp, dbp);
621 }
622
623 if (freehdr.nused + stale != freehdr.nvalid)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700624 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700625out:
626 return error;
627}
628
629/* Check free space information in directories. */
630STATIC int
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700631xchk_directory_blocks(
Darrick J. Wong1d8a7482018-07-19 12:29:12 -0700632 struct xfs_scrub *sc)
Darrick J. Wongdf481962017-10-17 21:37:44 -0700633{
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700634 struct xfs_bmbt_irec got;
635 struct xfs_da_args args;
636 struct xfs_ifork *ifp;
637 struct xfs_mount *mp = sc->mp;
638 xfs_fileoff_t leaf_lblk;
639 xfs_fileoff_t free_lblk;
640 xfs_fileoff_t lblk;
641 struct xfs_iext_cursor icur;
642 xfs_dablk_t dabno;
643 bool found;
644 int is_block = 0;
645 int error;
Darrick J. Wongdf481962017-10-17 21:37:44 -0700646
647 /* Ignore local format directories. */
648 if (sc->ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS &&
649 sc->ip->i_d.di_format != XFS_DINODE_FMT_BTREE)
650 return 0;
651
652 ifp = XFS_IFORK_PTR(sc->ip, XFS_DATA_FORK);
653 lblk = XFS_B_TO_FSB(mp, XFS_DIR2_DATA_OFFSET);
654 leaf_lblk = XFS_B_TO_FSB(mp, XFS_DIR2_LEAF_OFFSET);
655 free_lblk = XFS_B_TO_FSB(mp, XFS_DIR2_FREE_OFFSET);
656
657 /* Is this a block dir? */
658 args.dp = sc->ip;
659 args.geo = mp->m_dir_geo;
660 args.trans = sc->tp;
661 error = xfs_dir2_isblock(&args, &is_block);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700662 if (!xchk_fblock_process_error(sc, XFS_DATA_FORK, lblk, &error))
Darrick J. Wongdf481962017-10-17 21:37:44 -0700663 goto out;
664
665 /* Iterate all the data extents in the directory... */
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700666 found = xfs_iext_lookup_extent(sc->ip, ifp, lblk, &icur, &got);
Darrick J. Wong8bc763c2018-05-14 06:34:32 -0700667 while (found && !(sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)) {
Darrick J. Wongdf481962017-10-17 21:37:44 -0700668 /* Block directories only have a single block at offset 0. */
669 if (is_block &&
670 (got.br_startoff > 0 ||
671 got.br_blockcount != args.geo->fsbcount)) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700672 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK,
Darrick J. Wongdf481962017-10-17 21:37:44 -0700673 got.br_startoff);
674 break;
675 }
676
677 /* No more data blocks... */
678 if (got.br_startoff >= leaf_lblk)
679 break;
680
681 /*
682 * Check each data block's bestfree data.
683 *
684 * Iterate all the fsbcount-aligned block offsets in
685 * this directory. The directory block reading code is
686 * smart enough to do its own bmap lookups to handle
687 * discontiguous directory blocks. When we're done
688 * with the extent record, re-query the bmap at the
689 * next fsbcount-aligned offset to avoid redundant
690 * block checks.
691 */
692 for (lblk = roundup((xfs_dablk_t)got.br_startoff,
693 args.geo->fsbcount);
694 lblk < got.br_startoff + got.br_blockcount;
695 lblk += args.geo->fsbcount) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700696 error = xchk_directory_data_bestfree(sc, lblk,
Darrick J. Wongdf481962017-10-17 21:37:44 -0700697 is_block);
698 if (error)
699 goto out;
700 }
701 dabno = got.br_startoff + got.br_blockcount;
702 lblk = roundup(dabno, args.geo->fsbcount);
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700703 found = xfs_iext_lookup_extent(sc->ip, ifp, lblk, &icur, &got);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700704 }
705
706 if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
707 goto out;
708
709 /* Look for a leaf1 block, which has free info. */
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700710 if (xfs_iext_lookup_extent(sc->ip, ifp, leaf_lblk, &icur, &got) &&
Darrick J. Wongdf481962017-10-17 21:37:44 -0700711 got.br_startoff == leaf_lblk &&
712 got.br_blockcount == args.geo->fsbcount &&
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700713 !xfs_iext_next_extent(ifp, &icur, &got)) {
Darrick J. Wongdf481962017-10-17 21:37:44 -0700714 if (is_block) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700715 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700716 goto out;
717 }
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700718 error = xchk_directory_leaf1_bestfree(sc, &args,
Darrick J. Wongdf481962017-10-17 21:37:44 -0700719 leaf_lblk);
720 if (error)
721 goto out;
722 }
723
724 if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
725 goto out;
726
727 /* Scan for free blocks */
728 lblk = free_lblk;
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700729 found = xfs_iext_lookup_extent(sc->ip, ifp, lblk, &icur, &got);
Darrick J. Wong8bc763c2018-05-14 06:34:32 -0700730 while (found && !(sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)) {
Darrick J. Wongdf481962017-10-17 21:37:44 -0700731 /*
732 * Dirs can't have blocks mapped above 2^32.
733 * Single-block dirs shouldn't even be here.
734 */
735 lblk = got.br_startoff;
736 if (lblk & ~0xFFFFFFFFULL) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700737 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700738 goto out;
739 }
740 if (is_block) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700741 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, lblk);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700742 goto out;
743 }
744
745 /*
746 * Check each dir free block's bestfree data.
747 *
748 * Iterate all the fsbcount-aligned block offsets in
749 * this directory. The directory block reading code is
750 * smart enough to do its own bmap lookups to handle
751 * discontiguous directory blocks. When we're done
752 * with the extent record, re-query the bmap at the
753 * next fsbcount-aligned offset to avoid redundant
754 * block checks.
755 */
756 for (lblk = roundup((xfs_dablk_t)got.br_startoff,
757 args.geo->fsbcount);
758 lblk < got.br_startoff + got.br_blockcount;
759 lblk += args.geo->fsbcount) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700760 error = xchk_directory_free_bestfree(sc, &args,
Darrick J. Wongdf481962017-10-17 21:37:44 -0700761 lblk);
762 if (error)
763 goto out;
764 }
765 dabno = got.br_startoff + got.br_blockcount;
766 lblk = roundup(dabno, args.geo->fsbcount);
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700767 found = xfs_iext_lookup_extent(sc->ip, ifp, lblk, &icur, &got);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700768 }
769out:
770 return error;
771}
772
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700773/* Scrub a whole directory. */
774int
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700775xchk_directory(
Darrick J. Wong1d8a7482018-07-19 12:29:12 -0700776 struct xfs_scrub *sc)
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700777{
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700778 struct xchk_dir_ctx sdc = {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700779 .dir_iter.actor = xchk_dir_actor,
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700780 .dir_iter.pos = 0,
781 .sc = sc,
782 };
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700783 size_t bufsize;
784 loff_t oldpos;
785 int error = 0;
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700786
787 if (!S_ISDIR(VFS_I(sc->ip)->i_mode))
788 return -ENOENT;
789
790 /* Plausible size? */
791 if (sc->ip->i_d.di_size < xfs_dir2_sf_hdr_size(0)) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700792 xchk_ino_set_corrupt(sc, sc->ip->i_ino);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700793 goto out;
794 }
795
796 /* Check directory tree structure */
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700797 error = xchk_da_btree(sc, XFS_DATA_FORK, xchk_dir_rec, NULL);
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700798 if (error)
799 return error;
800
801 if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
802 return error;
803
Darrick J. Wongdf481962017-10-17 21:37:44 -0700804 /* Check the freespace. */
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700805 error = xchk_directory_blocks(sc);
Darrick J. Wongdf481962017-10-17 21:37:44 -0700806 if (error)
807 return error;
808
809 if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
810 return error;
811
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700812 /*
813 * Check that every dirent we see can also be looked up by hash.
814 * Userspace usually asks for a 32k buffer, so we will too.
815 */
816 bufsize = (size_t)min_t(loff_t, XFS_READDIR_BUFSIZE,
817 sc->ip->i_d.di_size);
818
819 /*
820 * Look up every name in this directory by hash.
821 *
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700822 * Use the xfs_readdir function to call xchk_dir_actor on
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700823 * every directory entry in this directory. In _actor, we check
824 * the name, inode number, and ftype (if applicable) of the
825 * entry. xfs_readdir uses the VFS filldir functions to provide
826 * iteration context.
827 *
828 * The VFS grabs a read or write lock via i_rwsem before it reads
829 * or writes to a directory. If we've gotten this far we've
830 * already obtained IOLOCK_EXCL, which (since 4.10) is the same as
831 * getting a write lock on i_rwsem. Therefore, it is safe for us
832 * to drop the ILOCK here in order to reuse the _readdir and
833 * _dir_lookup routines, which do their own ILOCK locking.
834 */
835 oldpos = 0;
836 sc->ilock_flags &= ~XFS_ILOCK_EXCL;
837 xfs_iunlock(sc->ip, XFS_ILOCK_EXCL);
838 while (true) {
839 error = xfs_readdir(sc->tp, sc->ip, &sdc.dir_iter, bufsize);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700840 if (!xchk_fblock_process_error(sc, XFS_DATA_FORK, 0,
Darrick J. Wonga5c46e52017-10-17 21:37:44 -0700841 &error))
842 goto out;
843 if (oldpos == sdc.dir_iter.pos)
844 break;
845 oldpos = sdc.dir_iter.pos;
846 }
847
848out:
849 return error;
850}