1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
8 #include "xfs_shared.h"
9 #include "xfs_format.h"
10 #include "xfs_log_format.h"
11 #include "xfs_trans_resv.h"
12 #include "xfs_mount.h"
13 #include "xfs_inode.h"
14 #include "xfs_quota.h"
15 #include "xfs_trans.h"
16 #include "xfs_buf_item.h"
17 #include "xfs_trans_priv.h"
20 #include "xfs_log_priv.h"
21 #include "xfs_log_recover.h"
24 xlog_recover_dquot_ra_pass2(
26 struct xlog_recover_item
*item
)
28 struct xfs_mount
*mp
= log
->l_mp
;
29 struct xfs_disk_dquot
*recddq
;
30 struct xfs_dq_logformat
*dq_f
;
33 if (mp
->m_qflags
== 0)
36 recddq
= item
->ri_buf
[1].i_addr
;
39 if (item
->ri_buf
[1].i_len
< sizeof(struct xfs_disk_dquot
))
42 type
= recddq
->d_type
& XFS_DQTYPE_REC_MASK
;
44 if (log
->l_quotaoffs_flag
& type
)
47 dq_f
= item
->ri_buf
[0].i_addr
;
49 ASSERT(dq_f
->qlf_len
== 1);
51 xlog_buf_readahead(log
, dq_f
->qlf_blkno
,
52 XFS_FSB_TO_BB(mp
, dq_f
->qlf_len
),
53 &xfs_dquot_buf_ra_ops
);
57 * Recover a dquot record
60 xlog_recover_dquot_commit_pass2(
62 struct list_head
*buffer_list
,
63 struct xlog_recover_item
*item
,
64 xfs_lsn_t current_lsn
)
66 struct xfs_mount
*mp
= log
->l_mp
;
68 struct xfs_disk_dquot
*ddq
, *recddq
;
69 struct xfs_dq_logformat
*dq_f
;
75 * Filesystems are required to send in quota flags at mount time.
77 if (mp
->m_qflags
== 0)
80 recddq
= item
->ri_buf
[1].i_addr
;
82 xfs_alert(log
->l_mp
, "NULL dquot in %s.", __func__
);
85 if (item
->ri_buf
[1].i_len
< sizeof(struct xfs_disk_dquot
)) {
86 xfs_alert(log
->l_mp
, "dquot too small (%d) in %s.",
87 item
->ri_buf
[1].i_len
, __func__
);
92 * This type of quotas was turned off, so ignore this record.
94 type
= recddq
->d_type
& XFS_DQTYPE_REC_MASK
;
96 if (log
->l_quotaoffs_flag
& type
)
100 * At this point we know that quota was _not_ turned off.
101 * Since the mount flags are not indicating to us otherwise, this
102 * must mean that quota is on, and the dquot needs to be replayed.
103 * Remember that we may not have fully recovered the superblock yet,
104 * so we can't do the usual trick of looking at the SB quota bits.
106 * The other possibility, of course, is that the quota subsystem was
107 * removed since the last mount - ENOSYS.
109 dq_f
= item
->ri_buf
[0].i_addr
;
111 fa
= xfs_dquot_verify(mp
, recddq
, dq_f
->qlf_id
);
113 xfs_alert(mp
, "corrupt dquot ID 0x%x in log at %pS",
115 return -EFSCORRUPTED
;
117 ASSERT(dq_f
->qlf_len
== 1);
120 * At this point we are assuming that the dquots have been allocated
121 * and hence the buffer has valid dquots stamped in it. It should,
122 * therefore, pass verifier validation. If the dquot is bad, then the
123 * we'll return an error here, so we don't need to specifically check
124 * the dquot in the buffer after the verifier has run.
126 error
= xfs_trans_read_buf(mp
, NULL
, mp
->m_ddev_targp
, dq_f
->qlf_blkno
,
127 XFS_FSB_TO_BB(mp
, dq_f
->qlf_len
), 0, &bp
,
133 ddq
= xfs_buf_offset(bp
, dq_f
->qlf_boffset
);
136 * If the dquot has an LSN in it, recover the dquot only if it's less
137 * than the lsn of the transaction we are replaying.
139 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
140 struct xfs_dqblk
*dqb
= (struct xfs_dqblk
*)ddq
;
141 xfs_lsn_t lsn
= be64_to_cpu(dqb
->dd_lsn
);
143 if (lsn
&& lsn
!= -1 && XFS_LSN_CMP(lsn
, current_lsn
) >= 0) {
148 memcpy(ddq
, recddq
, item
->ri_buf
[1].i_len
);
149 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
150 xfs_update_cksum((char *)ddq
, sizeof(struct xfs_dqblk
),
154 ASSERT(dq_f
->qlf_size
== 2);
155 ASSERT(bp
->b_mount
== mp
);
156 bp
->b_flags
|= _XBF_LOGRECOVERY
;
157 xfs_buf_delwri_queue(bp
, buffer_list
);
164 const struct xlog_recover_item_ops xlog_dquot_item_ops
= {
165 .item_type
= XFS_LI_DQUOT
,
166 .ra_pass2
= xlog_recover_dquot_ra_pass2
,
167 .commit_pass2
= xlog_recover_dquot_commit_pass2
,
171 * Recover QUOTAOFF records. We simply make a note of it in the xlog
172 * structure, so that we know not to do any dquot item or dquot buffer recovery,
176 xlog_recover_quotaoff_commit_pass1(
178 struct xlog_recover_item
*item
)
180 struct xfs_qoff_logformat
*qoff_f
= item
->ri_buf
[0].i_addr
;
184 * The logitem format's flag tells us if this was user quotaoff,
185 * group/project quotaoff or both.
187 if (qoff_f
->qf_flags
& XFS_UQUOTA_ACCT
)
188 log
->l_quotaoffs_flag
|= XFS_DQTYPE_USER
;
189 if (qoff_f
->qf_flags
& XFS_PQUOTA_ACCT
)
190 log
->l_quotaoffs_flag
|= XFS_DQTYPE_PROJ
;
191 if (qoff_f
->qf_flags
& XFS_GQUOTA_ACCT
)
192 log
->l_quotaoffs_flag
|= XFS_DQTYPE_GROUP
;
197 const struct xlog_recover_item_ops xlog_quotaoff_item_ops
= {
198 .item_type
= XFS_LI_QUOTAOFF
,
199 .commit_pass1
= xlog_recover_quotaoff_commit_pass1
,
200 /* nothing to commit in pass2 */