1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2017-2023 Oracle. All Rights Reserved.
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_inode.h"
15 #include "xfs_quota.h"
18 #include "scrub/scrub.h"
19 #include "scrub/common.h"
21 /* Convert a scrub type code to a DQ flag, or return 0 if error. */
22 static inline xfs_dqtype_t
26 switch (sc->sm->sm_type) {
27 case XFS_SCRUB_TYPE_UQUOTA:
28 return XFS_DQTYPE_USER;
29 case XFS_SCRUB_TYPE_GQUOTA:
30 return XFS_DQTYPE_GROUP;
31 case XFS_SCRUB_TYPE_PQUOTA:
32 return XFS_DQTYPE_PROJ;
38 /* Set us up to scrub a quota. */
46 if (!XFS_IS_QUOTA_ON(sc->mp))
49 dqtype = xchk_quota_to_dqtype(sc);
53 if (!xfs_this_quota_on(sc->mp, dqtype))
56 if (xchk_need_intent_drain(sc))
57 xchk_fsgates_enable(sc, XCHK_FSGATES_DRAIN);
59 error = xchk_setup_fs(sc);
63 error = xchk_install_live_inode(sc, xfs_quota_inode(sc->mp, dqtype));
67 xchk_ilock(sc, XFS_ILOCK_EXCL);
73 struct xchk_quota_info {
78 /* Scrub the fields in an individual quota item. */
85 struct xchk_quota_info *sqi = priv;
86 struct xfs_scrub *sc = sqi->sc;
87 struct xfs_mount *mp = sc->mp;
88 struct xfs_quotainfo *qi = mp->m_quotainfo;
93 if (xchk_should_terminate(sc, &error))
97 * Except for the root dquot, the actual dquot we got must either have
98 * the same or higher id as we saw before.
100 offset = dq->q_id / qi->qi_dqperchunk;
101 if (dq->q_id && dq->q_id <= sqi->last_id)
102 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, offset);
104 sqi->last_id = dq->q_id;
107 * Warn if the hard limits are larger than the fs.
108 * Administrators can do this, though in production this seems
109 * suspect, which is why we flag it for review.
111 * Complain about corruption if the soft limit is greater than
114 if (dq->q_blk.hardlimit > mp->m_sb.sb_dblocks)
115 xchk_fblock_set_warning(sc, XFS_DATA_FORK, offset);
116 if (dq->q_blk.softlimit > dq->q_blk.hardlimit)
117 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, offset);
119 if (dq->q_ino.hardlimit > M_IGEO(mp)->maxicount)
120 xchk_fblock_set_warning(sc, XFS_DATA_FORK, offset);
121 if (dq->q_ino.softlimit > dq->q_ino.hardlimit)
122 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, offset);
124 if (dq->q_rtb.hardlimit > mp->m_sb.sb_rblocks)
125 xchk_fblock_set_warning(sc, XFS_DATA_FORK, offset);
126 if (dq->q_rtb.softlimit > dq->q_rtb.hardlimit)
127 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, offset);
129 /* Check the resource counts. */
130 fs_icount = percpu_counter_sum(&mp->m_icount);
133 * Check that usage doesn't exceed physical limits. However, on
134 * a reflink filesystem we're allowed to exceed physical space
135 * if there are no quota limits.
137 if (xfs_has_reflink(mp)) {
138 if (mp->m_sb.sb_dblocks < dq->q_blk.count)
139 xchk_fblock_set_warning(sc, XFS_DATA_FORK,
142 if (mp->m_sb.sb_dblocks < dq->q_blk.count)
143 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK,
146 if (dq->q_ino.count > fs_icount || dq->q_rtb.count > mp->m_sb.sb_rblocks)
147 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK, offset);
150 * We can violate the hard limits if the admin suddenly sets a
151 * lower limit than the actual usage. However, we flag it for
157 if (dq->q_blk.hardlimit != 0 &&
158 dq->q_blk.count > dq->q_blk.hardlimit)
159 xchk_fblock_set_warning(sc, XFS_DATA_FORK, offset);
161 if (dq->q_ino.hardlimit != 0 &&
162 dq->q_ino.count > dq->q_ino.hardlimit)
163 xchk_fblock_set_warning(sc, XFS_DATA_FORK, offset);
165 if (dq->q_rtb.hardlimit != 0 &&
166 dq->q_rtb.count > dq->q_rtb.hardlimit)
167 xchk_fblock_set_warning(sc, XFS_DATA_FORK, offset);
170 if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
176 /* Check the quota's data fork. */
178 xchk_quota_data_fork(
179 struct xfs_scrub *sc)
181 struct xfs_bmbt_irec irec = { 0 };
182 struct xfs_iext_cursor icur;
183 struct xfs_quotainfo *qi = sc->mp->m_quotainfo;
184 struct xfs_ifork *ifp;
185 xfs_fileoff_t max_dqid_off;
188 /* Invoke the fork scrubber. */
189 error = xchk_metadata_inode_forks(sc);
190 if (error || (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT))
193 /* Check for data fork problems that apply only to quota files. */
194 max_dqid_off = ((xfs_dqid_t)-1) / qi->qi_dqperchunk;
195 ifp = xfs_ifork_ptr(sc->ip, XFS_DATA_FORK);
196 for_each_xfs_iext(ifp, &icur, &irec) {
197 if (xchk_should_terminate(sc, &error))
201 * delalloc/unwritten extents or blocks mapped above the highest
202 * quota id shouldn't happen.
204 if (!xfs_bmap_is_written_extent(&irec) ||
205 irec.br_startoff > max_dqid_off ||
206 irec.br_startoff + irec.br_blockcount - 1 > max_dqid_off) {
207 xchk_fblock_set_corrupt(sc, XFS_DATA_FORK,
216 /* Scrub all of a quota type's items. */
219 struct xfs_scrub *sc)
221 struct xchk_quota_info sqi;
222 struct xfs_mount *mp = sc->mp;
223 struct xfs_quotainfo *qi = mp->m_quotainfo;
227 dqtype = xchk_quota_to_dqtype(sc);
229 /* Look for problem extents. */
230 error = xchk_quota_data_fork(sc);
233 if (sc->sm->sm_flags & XFS_SCRUB_OFLAG_CORRUPT)
237 * Check all the quota items. Now that we've checked the quota inode
238 * data fork we have to drop ILOCK_EXCL to use the regular dquot
241 xchk_iunlock(sc, sc->ilock_flags);
244 error = xfs_qm_dqiterate(mp, dqtype, xchk_quota_item, &sqi);
245 xchk_ilock(sc, XFS_ILOCK_EXCL);
246 if (error == -ECANCELED)
248 if (!xchk_fblock_process_error(sc, XFS_DATA_FORK,
249 sqi.last_id * qi->qi_dqperchunk, &error))