blob: 61f90b2c943057acb62dc878c232c6f3b6fad2e1 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0+
Darrick J. Wong80e4e122017-10-17 21:37:42 -07002/*
3 * Copyright (C) 2017 Oracle. All Rights Reserved.
Darrick J. Wong80e4e122017-10-17 21:37:42 -07004 * Author: Darrick J. Wong <darrick.wong@oracle.com>
Darrick J. Wong80e4e122017-10-17 21:37:42 -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. Wong80e4e122017-10-17 21:37:42 -070012#include "xfs_btree.h"
Darrick J. Wong80e4e122017-10-17 21:37:42 -070013#include "xfs_log_format.h"
Darrick J. Wong80e4e122017-10-17 21:37:42 -070014#include "xfs_inode.h"
Darrick J. Wong80e4e122017-10-17 21:37:42 -070015#include "xfs_ialloc.h"
16#include "xfs_da_format.h"
17#include "xfs_reflink.h"
Darrick J. Wongd8526572018-01-16 18:53:08 -080018#include "xfs_rmap.h"
Darrick J. Wong561f6482018-01-16 18:53:10 -080019#include "xfs_bmap_util.h"
Darrick J. Wong80e4e122017-10-17 21:37:42 -070020#include "scrub/scrub.h"
21#include "scrub/common.h"
Darrick J. Wong2e6f2752018-01-16 18:53:07 -080022#include "scrub/btree.h"
Darrick J. Wong80e4e122017-10-17 21:37:42 -070023
24/*
25 * Grab total control of the inode metadata. It doesn't matter here if
26 * the file data is still changing; exclusive access to the metadata is
27 * the goal.
28 */
29int
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070030xchk_setup_inode(
Darrick J. Wong026f57e2021-04-07 17:59:39 -070031 struct xfs_scrub *sc)
Darrick J. Wong80e4e122017-10-17 21:37:42 -070032{
Darrick J. Wong032d91f2018-07-19 12:29:12 -070033 int error;
Darrick J. Wong80e4e122017-10-17 21:37:42 -070034
35 /*
36 * Try to get the inode. If the verifiers fail, we try again
37 * in raw mode.
38 */
Darrick J. Wong026f57e2021-04-07 17:59:39 -070039 error = xchk_get_inode(sc);
Darrick J. Wong80e4e122017-10-17 21:37:42 -070040 switch (error) {
41 case 0:
42 break;
43 case -EFSCORRUPTED:
44 case -EFSBADCRC:
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070045 return xchk_trans_alloc(sc, 0);
Darrick J. Wong80e4e122017-10-17 21:37:42 -070046 default:
47 return error;
48 }
49
50 /* Got the inode, lock it and we're ready to go. */
51 sc->ilock_flags = XFS_IOLOCK_EXCL | XFS_MMAPLOCK_EXCL;
52 xfs_ilock(sc->ip, sc->ilock_flags);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070053 error = xchk_trans_alloc(sc, 0);
Darrick J. Wong80e4e122017-10-17 21:37:42 -070054 if (error)
55 goto out;
56 sc->ilock_flags |= XFS_ILOCK_EXCL;
57 xfs_ilock(sc->ip, XFS_ILOCK_EXCL);
58
59out:
60 /* scrub teardown will unlock and release the inode for us */
61 return error;
62}
63
64/* Inode core */
65
Darrick J. Wong8bb82bc2018-03-23 10:06:55 -070066/* Validate di_extsize hint. */
Darrick J. Wong80e4e122017-10-17 21:37:42 -070067STATIC void
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070068xchk_inode_extsize(
Darrick J. Wong1d8a7482018-07-19 12:29:12 -070069 struct xfs_scrub *sc,
Darrick J. Wong032d91f2018-07-19 12:29:12 -070070 struct xfs_dinode *dip,
71 xfs_ino_t ino,
72 uint16_t mode,
73 uint16_t flags)
Darrick J. Wong80e4e122017-10-17 21:37:42 -070074{
Darrick J. Wong032d91f2018-07-19 12:29:12 -070075 xfs_failaddr_t fa;
Darrick J. Wong80e4e122017-10-17 21:37:42 -070076
Darrick J. Wong8bb82bc2018-03-23 10:06:55 -070077 fa = xfs_inode_validate_extsize(sc->mp, be32_to_cpu(dip->di_extsize),
78 mode, flags);
79 if (fa)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070080 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -070081}
82
83/*
84 * Validate di_cowextsize hint.
85 *
86 * The rules are documented at xfs_ioctl_setattr_check_cowextsize().
87 * These functions must be kept in sync with each other.
88 */
89STATIC void
Darrick J. Wongc517b3a2018-07-19 12:29:11 -070090xchk_inode_cowextsize(
Darrick J. Wong1d8a7482018-07-19 12:29:12 -070091 struct xfs_scrub *sc,
Darrick J. Wong032d91f2018-07-19 12:29:12 -070092 struct xfs_dinode *dip,
93 xfs_ino_t ino,
94 uint16_t mode,
95 uint16_t flags,
96 uint64_t flags2)
Darrick J. Wong80e4e122017-10-17 21:37:42 -070097{
Darrick J. Wong032d91f2018-07-19 12:29:12 -070098 xfs_failaddr_t fa;
Darrick J. Wong80e4e122017-10-17 21:37:42 -070099
Darrick J. Wong8bb82bc2018-03-23 10:06:55 -0700100 fa = xfs_inode_validate_cowextsize(sc->mp,
101 be32_to_cpu(dip->di_cowextsize), mode, flags,
102 flags2);
103 if (fa)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700104 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700105}
106
107/* Make sure the di_flags make sense for the inode. */
108STATIC void
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700109xchk_inode_flags(
Darrick J. Wong1d8a7482018-07-19 12:29:12 -0700110 struct xfs_scrub *sc,
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700111 struct xfs_dinode *dip,
112 xfs_ino_t ino,
113 uint16_t mode,
114 uint16_t flags)
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700115{
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700116 struct xfs_mount *mp = sc->mp;
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700117
Eric Sandeenf369a132018-09-29 13:49:00 +1000118 /* di_flags are all taken, last bit cannot be used */
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700119 if (flags & ~XFS_DIFLAG_ANY)
120 goto bad;
121
122 /* rt flags require rt device */
Darrick J. Wongc1f6b1a2020-11-02 17:14:07 -0800123 if ((flags & XFS_DIFLAG_REALTIME) && !mp->m_rtdev_targp)
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700124 goto bad;
125
126 /* new rt bitmap flag only valid for rbmino */
127 if ((flags & XFS_DIFLAG_NEWRTBM) && ino != mp->m_sb.sb_rbmino)
128 goto bad;
129
130 /* directory-only flags */
131 if ((flags & (XFS_DIFLAG_RTINHERIT |
132 XFS_DIFLAG_EXTSZINHERIT |
133 XFS_DIFLAG_PROJINHERIT |
134 XFS_DIFLAG_NOSYMLINKS)) &&
135 !S_ISDIR(mode))
136 goto bad;
137
138 /* file-only flags */
139 if ((flags & (XFS_DIFLAG_REALTIME | FS_XFLAG_EXTSIZE)) &&
140 !S_ISREG(mode))
141 goto bad;
142
143 /* filestreams and rt make no sense */
144 if ((flags & XFS_DIFLAG_FILESTREAM) && (flags & XFS_DIFLAG_REALTIME))
145 goto bad;
146
147 return;
148bad:
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700149 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700150}
151
152/* Make sure the di_flags2 make sense for the inode. */
153STATIC void
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700154xchk_inode_flags2(
Darrick J. Wong1d8a7482018-07-19 12:29:12 -0700155 struct xfs_scrub *sc,
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700156 struct xfs_dinode *dip,
157 xfs_ino_t ino,
158 uint16_t mode,
159 uint16_t flags,
160 uint64_t flags2)
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700161{
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700162 struct xfs_mount *mp = sc->mp;
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700163
Eric Sandeenf369a132018-09-29 13:49:00 +1000164 /* Unknown di_flags2 could be from a future kernel */
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700165 if (flags2 & ~XFS_DIFLAG2_ANY)
Eric Sandeenf369a132018-09-29 13:49:00 +1000166 xchk_ino_set_warning(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700167
168 /* reflink flag requires reflink feature */
169 if ((flags2 & XFS_DIFLAG2_REFLINK) &&
170 !xfs_sb_version_hasreflink(&mp->m_sb))
171 goto bad;
172
173 /* cowextsize flag is checked w.r.t. mode separately */
174
175 /* file/dir-only flags */
176 if ((flags2 & XFS_DIFLAG2_DAX) && !(S_ISREG(mode) || S_ISDIR(mode)))
177 goto bad;
178
179 /* file-only flags */
180 if ((flags2 & XFS_DIFLAG2_REFLINK) && !S_ISREG(mode))
181 goto bad;
182
183 /* realtime and reflink make no sense, currently */
184 if ((flags & XFS_DIFLAG_REALTIME) && (flags2 & XFS_DIFLAG2_REFLINK))
185 goto bad;
186
Darrick J. Wongf93e54362020-08-17 09:59:07 -0700187 /* no bigtime iflag without the bigtime feature */
188 if (xfs_dinode_has_bigtime(dip) &&
189 !xfs_sb_version_hasbigtime(&mp->m_sb))
190 goto bad;
191
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700192 return;
193bad:
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700194 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700195}
196
Darrick J. Wong5a0bb062020-08-24 15:15:46 -0700197static inline void
198xchk_dinode_nsec(
199 struct xfs_scrub *sc,
200 xfs_ino_t ino,
Darrick J. Wongf93e54362020-08-17 09:59:07 -0700201 struct xfs_dinode *dip,
Darrick J. Wong5a0bb062020-08-24 15:15:46 -0700202 const xfs_timestamp_t ts)
203{
204 struct timespec64 tv;
205
Darrick J. Wongf93e54362020-08-17 09:59:07 -0700206 tv = xfs_inode_from_disk_ts(dip, ts);
Darrick J. Wong5a0bb062020-08-24 15:15:46 -0700207 if (tv.tv_nsec < 0 || tv.tv_nsec >= NSEC_PER_SEC)
208 xchk_ino_set_corrupt(sc, ino);
209}
210
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700211/* Scrub all the ondisk inode fields. */
212STATIC void
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700213xchk_dinode(
Darrick J. Wong1d8a7482018-07-19 12:29:12 -0700214 struct xfs_scrub *sc,
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700215 struct xfs_dinode *dip,
216 xfs_ino_t ino)
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700217{
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700218 struct xfs_mount *mp = sc->mp;
219 size_t fork_recs;
220 unsigned long long isize;
221 uint64_t flags2;
222 uint32_t nextents;
223 uint16_t flags;
224 uint16_t mode;
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700225
226 flags = be16_to_cpu(dip->di_flags);
227 if (dip->di_version >= 3)
228 flags2 = be64_to_cpu(dip->di_flags2);
229 else
230 flags2 = 0;
231
232 /* di_mode */
233 mode = be16_to_cpu(dip->di_mode);
Darrick J. Wong3b42d382017-11-27 21:40:19 -0800234 switch (mode & S_IFMT) {
235 case S_IFLNK:
236 case S_IFREG:
237 case S_IFDIR:
238 case S_IFCHR:
239 case S_IFBLK:
240 case S_IFIFO:
241 case S_IFSOCK:
242 /* mode is recognized */
243 break;
244 default:
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700245 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong3b42d382017-11-27 21:40:19 -0800246 break;
247 }
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700248
249 /* v1/v2 fields */
250 switch (dip->di_version) {
251 case 1:
252 /*
253 * We autoconvert v1 inodes into v2 inodes on writeout,
254 * so just mark this inode for preening.
255 */
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700256 xchk_ino_set_preen(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700257 break;
258 case 2:
259 case 3:
260 if (dip->di_onlink != 0)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700261 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700262
263 if (dip->di_mode == 0 && sc->ip)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700264 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700265
266 if (dip->di_projid_hi != 0 &&
267 !xfs_sb_version_hasprojid32bit(&mp->m_sb))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700268 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700269 break;
270 default:
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700271 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700272 return;
273 }
274
275 /*
276 * di_uid/di_gid -- -1 isn't invalid, but there's no way that
277 * userspace could have created that.
278 */
279 if (dip->di_uid == cpu_to_be32(-1U) ||
280 dip->di_gid == cpu_to_be32(-1U))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700281 xchk_ino_set_warning(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700282
283 /* di_format */
284 switch (dip->di_format) {
285 case XFS_DINODE_FMT_DEV:
286 if (!S_ISCHR(mode) && !S_ISBLK(mode) &&
287 !S_ISFIFO(mode) && !S_ISSOCK(mode))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700288 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700289 break;
290 case XFS_DINODE_FMT_LOCAL:
291 if (!S_ISDIR(mode) && !S_ISLNK(mode))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700292 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700293 break;
294 case XFS_DINODE_FMT_EXTENTS:
295 if (!S_ISREG(mode) && !S_ISDIR(mode) && !S_ISLNK(mode))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700296 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700297 break;
298 case XFS_DINODE_FMT_BTREE:
299 if (!S_ISREG(mode) && !S_ISDIR(mode))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700300 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700301 break;
302 case XFS_DINODE_FMT_UUID:
303 default:
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700304 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700305 break;
306 }
307
Darrick J. Wong29c1c122018-01-08 10:41:35 -0800308 /* di_[amc]time.nsec */
Darrick J. Wongf93e54362020-08-17 09:59:07 -0700309 xchk_dinode_nsec(sc, ino, dip, dip->di_atime);
310 xchk_dinode_nsec(sc, ino, dip, dip->di_mtime);
311 xchk_dinode_nsec(sc, ino, dip, dip->di_ctime);
Darrick J. Wong29c1c122018-01-08 10:41:35 -0800312
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700313 /*
314 * di_size. xfs_dinode_verify checks for things that screw up
315 * the VFS such as the upper bit being set and zero-length
316 * symlinks/directories, but we can do more here.
317 */
318 isize = be64_to_cpu(dip->di_size);
319 if (isize & (1ULL << 63))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700320 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700321
322 /* Devices, fifos, and sockets must have zero size */
323 if (!S_ISDIR(mode) && !S_ISREG(mode) && !S_ISLNK(mode) && isize != 0)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700324 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700325
326 /* Directories can't be larger than the data section size (32G) */
327 if (S_ISDIR(mode) && (isize == 0 || isize >= XFS_DIR2_SPACE_SIZE))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700328 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700329
330 /* Symlinks can't be larger than SYMLINK_MAXLEN */
331 if (S_ISLNK(mode) && (isize == 0 || isize >= XFS_SYMLINK_MAXLEN))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700332 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700333
334 /*
335 * Warn if the running kernel can't handle the kinds of offsets
336 * needed to deal with the file size. In other words, if the
337 * pagecache can't cache all the blocks in this file due to
338 * overly large offsets, flag the inode for admin review.
339 */
340 if (isize >= mp->m_super->s_maxbytes)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700341 xchk_ino_set_warning(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700342
343 /* di_nblocks */
344 if (flags2 & XFS_DIFLAG2_REFLINK) {
345 ; /* nblocks can exceed dblocks */
346 } else if (flags & XFS_DIFLAG_REALTIME) {
347 /*
348 * nblocks is the sum of data extents (in the rtdev),
349 * attr extents (in the datadev), and both forks' bmbt
350 * blocks (in the datadev). This clumsy check is the
351 * best we can do without cross-referencing with the
352 * inode forks.
353 */
354 if (be64_to_cpu(dip->di_nblocks) >=
355 mp->m_sb.sb_dblocks + mp->m_sb.sb_rblocks)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700356 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700357 } else {
358 if (be64_to_cpu(dip->di_nblocks) >= mp->m_sb.sb_dblocks)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700359 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700360 }
361
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700362 xchk_inode_flags(sc, dip, ino, mode, flags);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700363
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700364 xchk_inode_extsize(sc, dip, ino, mode, flags);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700365
366 /* di_nextents */
367 nextents = be32_to_cpu(dip->di_nextents);
368 fork_recs = XFS_DFORK_DSIZE(dip, mp) / sizeof(struct xfs_bmbt_rec);
369 switch (dip->di_format) {
370 case XFS_DINODE_FMT_EXTENTS:
371 if (nextents > fork_recs)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700372 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700373 break;
374 case XFS_DINODE_FMT_BTREE:
375 if (nextents <= fork_recs)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700376 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700377 break;
378 default:
379 if (nextents != 0)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700380 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700381 break;
382 }
383
384 /* di_forkoff */
385 if (XFS_DFORK_APTR(dip) >= (char *)dip + mp->m_sb.sb_inodesize)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700386 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700387 if (dip->di_anextents != 0 && dip->di_forkoff == 0)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700388 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700389 if (dip->di_forkoff == 0 && dip->di_aformat != XFS_DINODE_FMT_EXTENTS)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700390 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700391
392 /* di_aformat */
393 if (dip->di_aformat != XFS_DINODE_FMT_LOCAL &&
394 dip->di_aformat != XFS_DINODE_FMT_EXTENTS &&
395 dip->di_aformat != XFS_DINODE_FMT_BTREE)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700396 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700397
398 /* di_anextents */
399 nextents = be16_to_cpu(dip->di_anextents);
400 fork_recs = XFS_DFORK_ASIZE(dip, mp) / sizeof(struct xfs_bmbt_rec);
401 switch (dip->di_aformat) {
402 case XFS_DINODE_FMT_EXTENTS:
403 if (nextents > fork_recs)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700404 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700405 break;
406 case XFS_DINODE_FMT_BTREE:
407 if (nextents <= fork_recs)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700408 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700409 break;
410 default:
411 if (nextents != 0)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700412 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700413 }
414
415 if (dip->di_version >= 3) {
Darrick J. Wongf93e54362020-08-17 09:59:07 -0700416 xchk_dinode_nsec(sc, ino, dip, dip->di_crtime);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700417 xchk_inode_flags2(sc, dip, ino, mode, flags, flags2);
418 xchk_inode_cowextsize(sc, dip, ino, mode, flags,
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700419 flags2);
420 }
421}
422
Darrick J. Wong2e6f2752018-01-16 18:53:07 -0800423/*
424 * Make sure the finobt doesn't think this inode is free.
425 * We don't have to check the inobt ourselves because we got the inode via
426 * IGET_UNTRUSTED, which checks the inobt for us.
427 */
428static void
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700429xchk_inode_xref_finobt(
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700430 struct xfs_scrub *sc,
Darrick J. Wong2e6f2752018-01-16 18:53:07 -0800431 xfs_ino_t ino)
432{
433 struct xfs_inobt_rec_incore rec;
434 xfs_agino_t agino;
435 int has_record;
436 int error;
437
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700438 if (!sc->sa.fino_cur || xchk_skip_xref(sc->sm))
Darrick J. Wong2e6f2752018-01-16 18:53:07 -0800439 return;
440
441 agino = XFS_INO_TO_AGINO(sc->mp, ino);
442
443 /*
444 * Try to get the finobt record. If we can't get it, then we're
445 * in good shape.
446 */
447 error = xfs_inobt_lookup(sc->sa.fino_cur, agino, XFS_LOOKUP_LE,
448 &has_record);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700449 if (!xchk_should_check_xref(sc, &error, &sc->sa.fino_cur) ||
Darrick J. Wong2e6f2752018-01-16 18:53:07 -0800450 !has_record)
451 return;
452
453 error = xfs_inobt_get_rec(sc->sa.fino_cur, &rec, &has_record);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700454 if (!xchk_should_check_xref(sc, &error, &sc->sa.fino_cur) ||
Darrick J. Wong2e6f2752018-01-16 18:53:07 -0800455 !has_record)
456 return;
457
458 /*
459 * Otherwise, make sure this record either doesn't cover this inode,
460 * or that it does but it's marked present.
461 */
462 if (rec.ir_startino > agino ||
463 rec.ir_startino + XFS_INODES_PER_CHUNK <= agino)
464 return;
465
466 if (rec.ir_free & XFS_INOBT_MASK(agino - rec.ir_startino))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700467 xchk_btree_xref_set_corrupt(sc, sc->sa.fino_cur, 0);
Darrick J. Wong2e6f2752018-01-16 18:53:07 -0800468}
469
Darrick J. Wong561f6482018-01-16 18:53:10 -0800470/* Cross reference the inode fields with the forks. */
471STATIC void
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700472xchk_inode_xref_bmap(
Darrick J. Wong1d8a7482018-07-19 12:29:12 -0700473 struct xfs_scrub *sc,
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700474 struct xfs_dinode *dip)
Darrick J. Wong561f6482018-01-16 18:53:10 -0800475{
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700476 xfs_extnum_t nextents;
477 xfs_filblks_t count;
478 xfs_filblks_t acount;
479 int error;
Darrick J. Wong561f6482018-01-16 18:53:10 -0800480
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700481 if (xchk_skip_xref(sc->sm))
Darrick J. Wong8389f3ff2018-05-14 06:34:31 -0700482 return;
483
Darrick J. Wong561f6482018-01-16 18:53:10 -0800484 /* Walk all the extents to check nextents/naextents/nblocks. */
485 error = xfs_bmap_count_blocks(sc->tp, sc->ip, XFS_DATA_FORK,
486 &nextents, &count);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700487 if (!xchk_should_check_xref(sc, &error, NULL))
Darrick J. Wong561f6482018-01-16 18:53:10 -0800488 return;
489 if (nextents < be32_to_cpu(dip->di_nextents))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700490 xchk_ino_xref_set_corrupt(sc, sc->ip->i_ino);
Darrick J. Wong561f6482018-01-16 18:53:10 -0800491
492 error = xfs_bmap_count_blocks(sc->tp, sc->ip, XFS_ATTR_FORK,
493 &nextents, &acount);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700494 if (!xchk_should_check_xref(sc, &error, NULL))
Darrick J. Wong561f6482018-01-16 18:53:10 -0800495 return;
496 if (nextents != be16_to_cpu(dip->di_anextents))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700497 xchk_ino_xref_set_corrupt(sc, sc->ip->i_ino);
Darrick J. Wong561f6482018-01-16 18:53:10 -0800498
499 /* Check nblocks against the inode. */
500 if (count + acount != be64_to_cpu(dip->di_nblocks))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700501 xchk_ino_xref_set_corrupt(sc, sc->ip->i_ino);
Darrick J. Wong561f6482018-01-16 18:53:10 -0800502}
503
Darrick J. Wong166d7642018-01-16 18:53:05 -0800504/* Cross-reference with the other btrees. */
505STATIC void
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700506xchk_inode_xref(
Darrick J. Wong1d8a7482018-07-19 12:29:12 -0700507 struct xfs_scrub *sc,
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700508 xfs_ino_t ino,
509 struct xfs_dinode *dip)
Darrick J. Wong166d7642018-01-16 18:53:05 -0800510{
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700511 xfs_agnumber_t agno;
512 xfs_agblock_t agbno;
513 int error;
Darrick J. Wong52dc4b42018-01-16 18:53:06 -0800514
Darrick J. Wong166d7642018-01-16 18:53:05 -0800515 if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
516 return;
Darrick J. Wong52dc4b42018-01-16 18:53:06 -0800517
518 agno = XFS_INO_TO_AGNO(sc->mp, ino);
519 agbno = XFS_INO_TO_AGBNO(sc->mp, ino);
520
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700521 error = xchk_ag_init(sc, agno, &sc->sa);
522 if (!xchk_xref_process_error(sc, agno, agbno, &error))
Darrick J. Wong52dc4b42018-01-16 18:53:06 -0800523 return;
524
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700525 xchk_xref_is_used_space(sc, agbno, 1);
526 xchk_inode_xref_finobt(sc, ino);
Darrick J. Wong7280fed2018-12-12 08:46:23 -0800527 xchk_xref_is_owned_by(sc, agbno, 1, &XFS_RMAP_OINFO_INODES);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700528 xchk_xref_is_not_shared(sc, agbno, 1);
529 xchk_inode_xref_bmap(sc, dip);
Darrick J. Wong52dc4b42018-01-16 18:53:06 -0800530
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700531 xchk_ag_free(sc, &sc->sa);
Darrick J. Wong166d7642018-01-16 18:53:05 -0800532}
533
Darrick J. Wongf6d5fc22018-01-16 18:53:09 -0800534/*
535 * If the reflink iflag disagrees with a scan for shared data fork extents,
536 * either flag an error (shared extents w/ no flag) or a preen (flag set w/o
537 * any shared extents). We already checked for reflink iflag set on a non
538 * reflink filesystem.
539 */
540static void
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700541xchk_inode_check_reflink_iflag(
Darrick J. Wong1d8a7482018-07-19 12:29:12 -0700542 struct xfs_scrub *sc,
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700543 xfs_ino_t ino)
Darrick J. Wongf6d5fc22018-01-16 18:53:09 -0800544{
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700545 struct xfs_mount *mp = sc->mp;
546 bool has_shared;
547 int error;
Darrick J. Wongf6d5fc22018-01-16 18:53:09 -0800548
549 if (!xfs_sb_version_hasreflink(&mp->m_sb))
550 return;
551
552 error = xfs_reflink_inode_has_shared_extents(sc->tp, sc->ip,
553 &has_shared);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700554 if (!xchk_xref_process_error(sc, XFS_INO_TO_AGNO(mp, ino),
Darrick J. Wongf6d5fc22018-01-16 18:53:09 -0800555 XFS_INO_TO_AGBNO(mp, ino), &error))
556 return;
557 if (xfs_is_reflink_inode(sc->ip) && !has_shared)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700558 xchk_ino_set_preen(sc, ino);
Darrick J. Wongf6d5fc22018-01-16 18:53:09 -0800559 else if (!xfs_is_reflink_inode(sc->ip) && has_shared)
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700560 xchk_ino_set_corrupt(sc, ino);
Darrick J. Wongf6d5fc22018-01-16 18:53:09 -0800561}
562
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700563/* Scrub an inode. */
564int
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700565xchk_inode(
Darrick J. Wong1d8a7482018-07-19 12:29:12 -0700566 struct xfs_scrub *sc)
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700567{
Darrick J. Wong032d91f2018-07-19 12:29:12 -0700568 struct xfs_dinode di;
569 int error = 0;
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700570
Darrick J. Wongd0018ad2018-03-23 10:06:54 -0700571 /*
572 * If sc->ip is NULL, that means that the setup function called
573 * xfs_iget to look up the inode. xfs_iget returned a EFSCORRUPTED
574 * and a NULL inode, so flag the corruption error and return.
575 */
576 if (!sc->ip) {
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700577 xchk_ino_set_corrupt(sc, sc->sm->sm_ino);
Darrick J. Wongd0018ad2018-03-23 10:06:54 -0700578 return 0;
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700579 }
580
Darrick J. Wongd0018ad2018-03-23 10:06:54 -0700581 /* Scrub the inode core. */
582 xfs_inode_to_disk(sc->ip, &di, 0);
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700583 xchk_dinode(sc, &di, sc->ip->i_ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700584 if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
585 goto out;
586
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700587 /*
Darrick J. Wongf6d5fc22018-01-16 18:53:09 -0800588 * Look for discrepancies between file's data blocks and the reflink
589 * iflag. We already checked the iflag against the file mode when
590 * we scrubbed the dinode.
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700591 */
Darrick J. Wongf6d5fc22018-01-16 18:53:09 -0800592 if (S_ISREG(VFS_I(sc->ip)->i_mode))
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700593 xchk_inode_check_reflink_iflag(sc, sc->ip->i_ino);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700594
Darrick J. Wongc517b3a2018-07-19 12:29:11 -0700595 xchk_inode_xref(sc, sc->ip->i_ino, &di);
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700596out:
Darrick J. Wong80e4e122017-10-17 21:37:42 -0700597 return error;
598}