2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3 * Copyright (c) 2013 Red Hat, Inc.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include "xfs_shared.h"
22 #include "xfs_format.h"
23 #include "xfs_log_format.h"
24 #include "xfs_trans_resv.h"
25 #include "xfs_mount.h"
26 #include "xfs_inode.h"
27 #include "xfs_quota.h"
28 #include "xfs_trans.h"
30 #include "xfs_error.h"
31 #include "xfs_cksum.h"
32 #include "xfs_trace.h"
35 xfs_calc_dquots_per_chunk(
36 unsigned int nbblks
) /* basic block units */
39 return BBTOB(nbblks
) / sizeof(xfs_dqblk_t
);
43 * Do some primitive error checking on ondisk dquot data structures.
48 xfs_disk_dquot_t
*ddq
,
50 uint type
, /* used only when IO_dorepair is true */
54 * We can encounter an uninitialized dquot buffer for 2 reasons:
55 * 1. If we crash while deleting the quotainode(s), and those blks got
56 * used for user data. This is because we take the path of regular
57 * file deletion; however, the size field of quotainodes is never
58 * updated, so all the tricks that we play in itruncate_finish
61 * 2. We don't play the quota buffers when there's a quotaoff logitem.
62 * But the allocation will be replayed so we'll end up with an
63 * uninitialized quota block.
65 * This is all fine; things are still consistent, and we haven't lost
66 * any quota information. Just don't complain about bad dquot blks.
68 if (ddq
->d_magic
!= cpu_to_be16(XFS_DQUOT_MAGIC
))
69 return __this_address
;
70 if (ddq
->d_version
!= XFS_DQUOT_VERSION
)
71 return __this_address
;
73 if (ddq
->d_flags
!= XFS_DQ_USER
&&
74 ddq
->d_flags
!= XFS_DQ_PROJ
&&
75 ddq
->d_flags
!= XFS_DQ_GROUP
)
76 return __this_address
;
78 if (id
!= -1 && id
!= be32_to_cpu(ddq
->d_id
))
79 return __this_address
;
84 if (ddq
->d_blk_softlimit
&&
85 be64_to_cpu(ddq
->d_bcount
) > be64_to_cpu(ddq
->d_blk_softlimit
) &&
87 return __this_address
;
89 if (ddq
->d_ino_softlimit
&&
90 be64_to_cpu(ddq
->d_icount
) > be64_to_cpu(ddq
->d_ino_softlimit
) &&
92 return __this_address
;
94 if (ddq
->d_rtb_softlimit
&&
95 be64_to_cpu(ddq
->d_rtbcount
) > be64_to_cpu(ddq
->d_rtb_softlimit
) &&
97 return __this_address
;
103 * Do some primitive error checking on ondisk dquot data structures.
107 struct xfs_mount
*mp
,
108 struct xfs_disk_dquot
*ddq
,
112 struct xfs_dqblk
*d
= (struct xfs_dqblk
*)ddq
;
116 * Typically, a repair is only requested by quotacheck.
119 memset(d
, 0, sizeof(xfs_dqblk_t
));
121 d
->dd_diskdq
.d_magic
= cpu_to_be16(XFS_DQUOT_MAGIC
);
122 d
->dd_diskdq
.d_version
= XFS_DQUOT_VERSION
;
123 d
->dd_diskdq
.d_flags
= type
;
124 d
->dd_diskdq
.d_id
= cpu_to_be32(id
);
126 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
127 uuid_copy(&d
->dd_uuid
, &mp
->m_sb
.sb_meta_uuid
);
128 xfs_update_cksum((char *)d
, sizeof(struct xfs_dqblk
),
136 xfs_dquot_buf_verify_crc(
137 struct xfs_mount
*mp
,
140 struct xfs_dqblk
*d
= (struct xfs_dqblk
*)bp
->b_addr
;
144 if (!xfs_sb_version_hascrc(&mp
->m_sb
))
148 * if we are in log recovery, the quota subsystem has not been
149 * initialised so we have no quotainfo structure. In that case, we need
150 * to manually calculate the number of dquots in the buffer.
153 ndquots
= mp
->m_quotainfo
->qi_dqperchunk
;
155 ndquots
= xfs_calc_dquots_per_chunk(bp
->b_length
);
157 for (i
= 0; i
< ndquots
; i
++, d
++) {
158 if (!xfs_verify_cksum((char *)d
, sizeof(struct xfs_dqblk
),
161 if (!uuid_equal(&d
->dd_uuid
, &mp
->m_sb
.sb_meta_uuid
))
167 STATIC xfs_failaddr_t
168 xfs_dquot_buf_verify(
169 struct xfs_mount
*mp
,
172 struct xfs_dqblk
*d
= (struct xfs_dqblk
*)bp
->b_addr
;
179 * if we are in log recovery, the quota subsystem has not been
180 * initialised so we have no quotainfo structure. In that case, we need
181 * to manually calculate the number of dquots in the buffer.
184 ndquots
= mp
->m_quotainfo
->qi_dqperchunk
;
186 ndquots
= xfs_calc_dquots_per_chunk(bp
->b_length
);
189 * On the first read of the buffer, verify that each dquot is valid.
190 * We don't know what the id of the dquot is supposed to be, just that
191 * they should be increasing monotonically within the buffer. If the
192 * first id is corrupt, then it will fail on the second dquot in the
193 * buffer so corruptions could point to the wrong dquot in this case.
195 for (i
= 0; i
< ndquots
; i
++) {
196 struct xfs_disk_dquot
*ddq
;
198 ddq
= &d
[i
].dd_diskdq
;
201 id
= be32_to_cpu(ddq
->d_id
);
203 fa
= xfs_dquot_verify(mp
, ddq
, id
+ i
, 0, 0);
211 static xfs_failaddr_t
212 xfs_dquot_buf_verify_struct(
215 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
217 return xfs_dquot_buf_verify(mp
, bp
);
221 xfs_dquot_buf_read_verify(
224 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
227 if (!xfs_dquot_buf_verify_crc(mp
, bp
))
228 xfs_verifier_error(bp
, -EFSBADCRC
, __this_address
);
230 fa
= xfs_dquot_buf_verify(mp
, bp
);
232 xfs_verifier_error(bp
, -EFSCORRUPTED
, __this_address
);
237 * readahead errors are silent and simply leave the buffer as !done so a real
238 * read will then be run with the xfs_dquot_buf_ops verifier. See
239 * xfs_inode_buf_verify() for why we use EIO and ~XBF_DONE here rather than
240 * reporting the failure.
243 xfs_dquot_buf_readahead_verify(
246 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
248 if (!xfs_dquot_buf_verify_crc(mp
, bp
) ||
249 xfs_dquot_buf_verify(mp
, bp
) != NULL
) {
250 xfs_buf_ioerror(bp
, -EIO
);
251 bp
->b_flags
&= ~XBF_DONE
;
256 * we don't calculate the CRC here as that is done when the dquot is flushed to
257 * the buffer after the update is done. This ensures that the dquot in the
258 * buffer always has an up-to-date CRC value.
261 xfs_dquot_buf_write_verify(
264 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
267 fa
= xfs_dquot_buf_verify(mp
, bp
);
269 xfs_verifier_error(bp
, -EFSCORRUPTED
, __this_address
);
272 const struct xfs_buf_ops xfs_dquot_buf_ops
= {
274 .verify_read
= xfs_dquot_buf_read_verify
,
275 .verify_write
= xfs_dquot_buf_write_verify
,
276 .verify_struct
= xfs_dquot_buf_verify_struct
,
279 const struct xfs_buf_ops xfs_dquot_buf_ra_ops
= {
280 .name
= "xfs_dquot_ra",
281 .verify_read
= xfs_dquot_buf_readahead_verify
,
282 .verify_write
= xfs_dquot_buf_write_verify
,