xref: /openbmc/linux/fs/xfs/scrub/scrub.h (revision d4c52c6a)
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 #ifndef __XFS_SCRUB_SCRUB_H__
7 #define __XFS_SCRUB_SCRUB_H__
8 
9 struct xfs_scrub;
10 
11 /*
12  * Standard flags for allocating memory within scrub.  NOFS context is
13  * configured by the process allocation scope.  Scrub and repair must be able
14  * to back out gracefully if there isn't enough memory.  Force-cast to avoid
15  * complaints from static checkers.
16  */
17 #define XCHK_GFP_FLAGS	((__force gfp_t)(GFP_KERNEL | __GFP_NOWARN | \
18 					 __GFP_RETRY_MAYFAIL))
19 
20 /*
21  * For opening files by handle for fsck operations, we don't trust the inumber
22  * or the allocation state; therefore, perform an untrusted lookup.  We don't
23  * want these inodes to pollute the cache, so mark them for immediate removal.
24  */
25 #define XCHK_IGET_FLAGS	(XFS_IGET_UNTRUSTED | XFS_IGET_DONTCACHE)
26 
27 /* Type info and names for the scrub types. */
28 enum xchk_type {
29 	ST_NONE = 1,	/* disabled */
30 	ST_PERAG,	/* per-AG metadata */
31 	ST_FS,		/* per-FS metadata */
32 	ST_INODE,	/* per-inode metadata */
33 };
34 
35 struct xchk_meta_ops {
36 	/* Acquire whatever resources are needed for the operation. */
37 	int		(*setup)(struct xfs_scrub *sc);
38 
39 	/* Examine metadata for errors. */
40 	int		(*scrub)(struct xfs_scrub *);
41 
42 	/* Repair or optimize the metadata. */
43 	int		(*repair)(struct xfs_scrub *);
44 
45 	/* Decide if we even have this piece of metadata. */
46 	bool		(*has)(struct xfs_mount *);
47 
48 	/* type describing required/allowed inputs */
49 	enum xchk_type	type;
50 };
51 
52 /* Buffer pointers and btree cursors for an entire AG. */
53 struct xchk_ag {
54 	struct xfs_perag	*pag;
55 
56 	/* AG btree roots */
57 	struct xfs_buf		*agf_bp;
58 	struct xfs_buf		*agi_bp;
59 
60 	/* AG btrees */
61 	struct xfs_btree_cur	*bno_cur;
62 	struct xfs_btree_cur	*cnt_cur;
63 	struct xfs_btree_cur	*ino_cur;
64 	struct xfs_btree_cur	*fino_cur;
65 	struct xfs_btree_cur	*rmap_cur;
66 	struct xfs_btree_cur	*refc_cur;
67 };
68 
69 struct xfs_scrub {
70 	/* General scrub state. */
71 	struct xfs_mount		*mp;
72 	struct xfs_scrub_metadata	*sm;
73 	const struct xchk_meta_ops	*ops;
74 	struct xfs_trans		*tp;
75 
76 	/* File that scrub was called with. */
77 	struct file			*file;
78 
79 	/*
80 	 * File that is undergoing the scrub operation.  This can differ from
81 	 * the file that scrub was called with if we're checking file-based fs
82 	 * metadata (e.g. rt bitmaps) or if we're doing a scrub-by-handle for
83 	 * something that can't be opened directly (e.g. symlinks).
84 	 */
85 	struct xfs_inode		*ip;
86 
87 	/* Kernel memory buffer used by scrubbers; freed at teardown. */
88 	void				*buf;
89 
90 	/*
91 	 * Clean up resources owned by whatever is in the buffer.  Cleanup can
92 	 * be deferred with this hook as a means for scrub functions to pass
93 	 * data to repair functions.  This function must not free the buffer
94 	 * itself.
95 	 */
96 	void				(*buf_cleanup)(void *buf);
97 
98 	/* xfile used by the scrubbers; freed at teardown. */
99 	struct xfile			*xfile;
100 
101 	/* Lock flags for @ip. */
102 	uint				ilock_flags;
103 
104 	/* See the XCHK/XREP state flags below. */
105 	unsigned int			flags;
106 
107 	/*
108 	 * The XFS_SICK_* flags that correspond to the metadata being scrubbed
109 	 * or repaired.  We will use this mask to update the in-core fs health
110 	 * status with whatever we find.
111 	 */
112 	unsigned int			sick_mask;
113 
114 	/* State tracking for single-AG operations. */
115 	struct xchk_ag			sa;
116 };
117 
118 /* XCHK state flags grow up from zero, XREP state flags grown down from 2^31 */
119 #define XCHK_TRY_HARDER		(1U << 0)  /* can't get resources, try again */
120 #define XCHK_HAVE_FREEZE_PROT	(1U << 1)  /* do we have freeze protection? */
121 #define XCHK_FSGATES_DRAIN	(1U << 2)  /* defer ops draining enabled */
122 #define XCHK_NEED_DRAIN		(1U << 3)  /* scrub needs to drain defer ops */
123 #define XREP_ALREADY_FIXED	(1U << 31) /* checking our repair work */
124 
125 /*
126  * The XCHK_FSGATES* flags reflect functionality in the main filesystem that
127  * are only enabled for this particular online fsck.  When not in use, the
128  * features are gated off via dynamic code patching, which is why the state
129  * must be enabled during scrub setup and can only be torn down afterwards.
130  */
131 #define XCHK_FSGATES_ALL	(XCHK_FSGATES_DRAIN)
132 
133 /* Metadata scrubbers */
134 int xchk_tester(struct xfs_scrub *sc);
135 int xchk_superblock(struct xfs_scrub *sc);
136 int xchk_agf(struct xfs_scrub *sc);
137 int xchk_agfl(struct xfs_scrub *sc);
138 int xchk_agi(struct xfs_scrub *sc);
139 int xchk_bnobt(struct xfs_scrub *sc);
140 int xchk_cntbt(struct xfs_scrub *sc);
141 int xchk_inobt(struct xfs_scrub *sc);
142 int xchk_finobt(struct xfs_scrub *sc);
143 int xchk_rmapbt(struct xfs_scrub *sc);
144 int xchk_refcountbt(struct xfs_scrub *sc);
145 int xchk_inode(struct xfs_scrub *sc);
146 int xchk_bmap_data(struct xfs_scrub *sc);
147 int xchk_bmap_attr(struct xfs_scrub *sc);
148 int xchk_bmap_cow(struct xfs_scrub *sc);
149 int xchk_directory(struct xfs_scrub *sc);
150 int xchk_xattr(struct xfs_scrub *sc);
151 int xchk_symlink(struct xfs_scrub *sc);
152 int xchk_parent(struct xfs_scrub *sc);
153 #ifdef CONFIG_XFS_RT
154 int xchk_rtbitmap(struct xfs_scrub *sc);
155 int xchk_rtsummary(struct xfs_scrub *sc);
156 #else
157 static inline int
158 xchk_rtbitmap(struct xfs_scrub *sc)
159 {
160 	return -ENOENT;
161 }
162 static inline int
163 xchk_rtsummary(struct xfs_scrub *sc)
164 {
165 	return -ENOENT;
166 }
167 #endif
168 #ifdef CONFIG_XFS_QUOTA
169 int xchk_quota(struct xfs_scrub *sc);
170 #else
171 static inline int
172 xchk_quota(struct xfs_scrub *sc)
173 {
174 	return -ENOENT;
175 }
176 #endif
177 int xchk_fscounters(struct xfs_scrub *sc);
178 
179 /* cross-referencing helpers */
180 void xchk_xref_is_used_space(struct xfs_scrub *sc, xfs_agblock_t agbno,
181 		xfs_extlen_t len);
182 void xchk_xref_is_not_inode_chunk(struct xfs_scrub *sc, xfs_agblock_t agbno,
183 		xfs_extlen_t len);
184 void xchk_xref_is_inode_chunk(struct xfs_scrub *sc, xfs_agblock_t agbno,
185 		xfs_extlen_t len);
186 void xchk_xref_is_only_owned_by(struct xfs_scrub *sc, xfs_agblock_t agbno,
187 		xfs_extlen_t len, const struct xfs_owner_info *oinfo);
188 void xchk_xref_is_not_owned_by(struct xfs_scrub *sc, xfs_agblock_t agbno,
189 		xfs_extlen_t len, const struct xfs_owner_info *oinfo);
190 void xchk_xref_has_no_owner(struct xfs_scrub *sc, xfs_agblock_t agbno,
191 		xfs_extlen_t len);
192 void xchk_xref_is_cow_staging(struct xfs_scrub *sc, xfs_agblock_t bno,
193 		xfs_extlen_t len);
194 void xchk_xref_is_not_shared(struct xfs_scrub *sc, xfs_agblock_t bno,
195 		xfs_extlen_t len);
196 void xchk_xref_is_not_cow_staging(struct xfs_scrub *sc, xfs_agblock_t bno,
197 		xfs_extlen_t len);
198 #ifdef CONFIG_XFS_RT
199 void xchk_xref_is_used_rt_space(struct xfs_scrub *sc, xfs_rtblock_t rtbno,
200 		xfs_extlen_t len);
201 #else
202 # define xchk_xref_is_used_rt_space(sc, rtbno, len) do { } while (0)
203 #endif
204 
205 #endif	/* __XFS_SCRUB_SCRUB_H__ */
206