]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - fs/xfs/xfs_dquot_item.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[mirror_ubuntu-jammy-kernel.git] / fs / xfs / xfs_dquot_item.c
CommitLineData
0b61f8a4 1// SPDX-License-Identifier: GPL-2.0
1da177e4 2/*
4ce3121f
NS
3 * Copyright (c) 2000-2003 Silicon Graphics, Inc.
4 * All Rights Reserved.
1da177e4 5 */
1da177e4
LT
6#include "xfs.h"
7#include "xfs_fs.h"
6ca1c906 8#include "xfs_format.h"
239880ef
DC
9#include "xfs_log_format.h"
10#include "xfs_trans_resv.h"
1da177e4 11#include "xfs_mount.h"
1da177e4 12#include "xfs_inode.h"
a4fbe6ab 13#include "xfs_quota.h"
1da177e4 14#include "xfs_error.h"
239880ef 15#include "xfs_trans.h"
1da177e4
LT
16#include "xfs_buf_item.h"
17#include "xfs_trans_priv.h"
1da177e4 18#include "xfs_qm.h"
239880ef 19#include "xfs_log.h"
1da177e4 20
7bfa31d8
CH
21static inline struct xfs_dq_logitem *DQUOT_ITEM(struct xfs_log_item *lip)
22{
23 return container_of(lip, struct xfs_dq_logitem, qli_item);
24}
25
1da177e4
LT
26/*
27 * returns the number of iovecs needed to log the given dquot item.
28 */
166d1368 29STATIC void
1da177e4 30xfs_qm_dquot_logitem_size(
166d1368
DC
31 struct xfs_log_item *lip,
32 int *nvecs,
33 int *nbytes)
1da177e4 34{
166d1368
DC
35 *nvecs += 2;
36 *nbytes += sizeof(struct xfs_dq_logformat) +
37 sizeof(struct xfs_disk_dquot);
1da177e4
LT
38}
39
40/*
41 * fills in the vector of log iovecs for the given dquot log item.
42 */
43STATIC void
44xfs_qm_dquot_logitem_format(
7bfa31d8 45 struct xfs_log_item *lip,
bde7cff6 46 struct xfs_log_vec *lv)
1da177e4 47{
7bfa31d8 48 struct xfs_dq_logitem *qlip = DQUOT_ITEM(lip);
bde7cff6 49 struct xfs_log_iovec *vecp = NULL;
ce8e9629 50 struct xfs_dq_logformat *qlf;
1da177e4 51
ce8e9629
CH
52 qlf = xlog_prepare_iovec(lv, &vecp, XLOG_REG_TYPE_QFORMAT);
53 qlf->qlf_type = XFS_LI_DQUOT;
54 qlf->qlf_size = 2;
55 qlf->qlf_id = be32_to_cpu(qlip->qli_dquot->q_core.d_id);
56 qlf->qlf_blkno = qlip->qli_dquot->q_blkno;
57 qlf->qlf_len = 1;
58 qlf->qlf_boffset = qlip->qli_dquot->q_bufoffset;
59 xlog_finish_iovec(lv, vecp, sizeof(struct xfs_dq_logformat));
bde7cff6 60
bde7cff6 61 xlog_copy_iovec(lv, &vecp, XLOG_REG_TYPE_DQUOT,
1234351c
CH
62 &qlip->qli_dquot->q_core,
63 sizeof(struct xfs_disk_dquot));
1da177e4
LT
64}
65
66/*
67 * Increment the pin count of the given dquot.
1da177e4
LT
68 */
69STATIC void
70xfs_qm_dquot_logitem_pin(
7bfa31d8 71 struct xfs_log_item *lip)
1da177e4 72{
7bfa31d8 73 struct xfs_dquot *dqp = DQUOT_ITEM(lip)->qli_dquot;
1da177e4 74
1da177e4 75 ASSERT(XFS_DQ_IS_LOCKED(dqp));
d1de8021 76 atomic_inc(&dqp->q_pincount);
1da177e4
LT
77}
78
79/*
80 * Decrement the pin count of the given dquot, and wake up
81 * anyone in xfs_dqwait_unpin() if the count goes to 0. The
bc3048e3
PL
82 * dquot must have been previously pinned with a call to
83 * xfs_qm_dquot_logitem_pin().
1da177e4 84 */
1da177e4
LT
85STATIC void
86xfs_qm_dquot_logitem_unpin(
7bfa31d8 87 struct xfs_log_item *lip,
9412e318 88 int remove)
1da177e4 89{
7bfa31d8 90 struct xfs_dquot *dqp = DQUOT_ITEM(lip)->qli_dquot;
1da177e4 91
bc3048e3
PL
92 ASSERT(atomic_read(&dqp->q_pincount) > 0);
93 if (atomic_dec_and_test(&dqp->q_pincount))
94 wake_up(&dqp->q_pinwait);
1da177e4
LT
95}
96
1da177e4
LT
97STATIC xfs_lsn_t
98xfs_qm_dquot_logitem_committed(
7bfa31d8 99 struct xfs_log_item *lip,
1da177e4
LT
100 xfs_lsn_t lsn)
101{
102 /*
103 * We always re-log the entire dquot when it becomes dirty,
104 * so, the latest copy _is_ the only one that matters.
105 */
7bfa31d8 106 return lsn;
1da177e4
LT
107}
108
1da177e4
LT
109/*
110 * This is called to wait for the given dquot to be unpinned.
111 * Most of these pin/unpin routines are plagiarized from inode code.
112 */
113void
114xfs_qm_dqunpin_wait(
7bfa31d8 115 struct xfs_dquot *dqp)
1da177e4 116{
1da177e4 117 ASSERT(XFS_DQ_IS_LOCKED(dqp));
bc3048e3 118 if (atomic_read(&dqp->q_pincount) == 0)
1da177e4 119 return;
1da177e4
LT
120
121 /*
122 * Give the log a push so we don't wait here too long.
123 */
a14a348b 124 xfs_log_force(dqp->q_mount, 0);
bc3048e3 125 wait_event(dqp->q_pinwait, (atomic_read(&dqp->q_pincount) == 0));
1da177e4
LT
126}
127
373b0589
CM
128/*
129 * Callback used to mark a buffer with XFS_LI_FAILED when items in the buffer
130 * have been failed during writeback
131 *
132 * this informs the AIL that the dquot is already flush locked on the next push,
133 * and acquires a hold on the buffer to ensure that it isn't reclaimed before
134 * dirty data makes it to disk.
135 */
136STATIC void
137xfs_dquot_item_error(
138 struct xfs_log_item *lip,
139 struct xfs_buf *bp)
140{
75d4a13b 141 ASSERT(!completion_done(&DQUOT_ITEM(lip)->qli_dquot->q_flush));
373b0589
CM
142 xfs_set_li_failed(lip, bp);
143}
144
1da177e4 145STATIC uint
43ff2122
CH
146xfs_qm_dquot_logitem_push(
147 struct xfs_log_item *lip,
57e80956
MW
148 struct list_head *buffer_list)
149 __releases(&lip->li_ailp->ail_lock)
150 __acquires(&lip->li_ailp->ail_lock)
1da177e4 151{
7bfa31d8 152 struct xfs_dquot *dqp = DQUOT_ITEM(lip)->qli_dquot;
373b0589 153 struct xfs_buf *bp = lip->li_buf;
43ff2122
CH
154 uint rval = XFS_ITEM_SUCCESS;
155 int error;
1da177e4 156
bc3048e3 157 if (atomic_read(&dqp->q_pincount) > 0)
d808f617 158 return XFS_ITEM_PINNED;
1da177e4 159
373b0589
CM
160 /*
161 * The buffer containing this item failed to be written back
162 * previously. Resubmit the buffer for IO
163 */
22525c17 164 if (test_bit(XFS_LI_FAILED, &lip->li_flags)) {
373b0589
CM
165 if (!xfs_buf_trylock(bp))
166 return XFS_ITEM_LOCKED;
167
643c8c05 168 if (!xfs_buf_resubmit_failed_buffers(bp, buffer_list))
373b0589
CM
169 rval = XFS_ITEM_FLUSHING;
170
171 xfs_buf_unlock(bp);
172 return rval;
173 }
174
800b484e 175 if (!xfs_dqlock_nowait(dqp))
d808f617 176 return XFS_ITEM_LOCKED;
1da177e4 177
fe7257fd
CH
178 /*
179 * Re-check the pincount now that we stabilized the value by
180 * taking the quota lock.
181 */
182 if (atomic_read(&dqp->q_pincount) > 0) {
43ff2122
CH
183 rval = XFS_ITEM_PINNED;
184 goto out_unlock;
fe7257fd
CH
185 }
186
43ff2122
CH
187 /*
188 * Someone else is already flushing the dquot. Nothing we can do
189 * here but wait for the flush to finish and remove the item from
190 * the AIL.
191 */
e1f49cf2 192 if (!xfs_dqflock_nowait(dqp)) {
43ff2122
CH
193 rval = XFS_ITEM_FLUSHING;
194 goto out_unlock;
195 }
196
57e80956 197 spin_unlock(&lip->li_ailp->ail_lock);
43ff2122
CH
198
199 error = xfs_qm_dqflush(dqp, &bp);
609001bc 200 if (!error) {
43ff2122
CH
201 if (!xfs_buf_delwri_queue(bp, buffer_list))
202 rval = XFS_ITEM_FLUSHING;
203 xfs_buf_relse(bp);
1da177e4
LT
204 }
205
57e80956 206 spin_lock(&lip->li_ailp->ail_lock);
43ff2122
CH
207out_unlock:
208 xfs_dqunlock(dqp);
209 return rval;
1da177e4
LT
210}
211
1da177e4
LT
212/*
213 * Unlock the dquot associated with the log item.
214 * Clear the fields of the dquot and dquot log item that
215 * are specific to the current transaction. If the
216 * hold flags is set, do not unlock the dquot.
217 */
218STATIC void
219xfs_qm_dquot_logitem_unlock(
7bfa31d8 220 struct xfs_log_item *lip)
1da177e4 221{
7bfa31d8 222 struct xfs_dquot *dqp = DQUOT_ITEM(lip)->qli_dquot;
1da177e4 223
1da177e4
LT
224 ASSERT(XFS_DQ_IS_LOCKED(dqp));
225
226 /*
227 * Clear the transaction pointer in the dquot
228 */
229 dqp->q_transp = NULL;
230
231 /*
232 * dquots are never 'held' from getting unlocked at the end of
233 * a transaction. Their locking and unlocking is hidden inside the
234 * transaction layer, within trans_commit. Hence, no LI_HOLD flag
235 * for the logitem.
236 */
237 xfs_dqunlock(dqp);
238}
239
1da177e4
LT
240/*
241 * this needs to stamp an lsn into the dquot, I think.
242 * rpc's that look at user dquot's would then have to
243 * push on the dependency recorded in the dquot
244 */
1da177e4
LT
245STATIC void
246xfs_qm_dquot_logitem_committing(
7bfa31d8 247 struct xfs_log_item *lip,
1da177e4
LT
248 xfs_lsn_t lsn)
249{
1da177e4
LT
250}
251
1da177e4
LT
252/*
253 * This is the ops vector for dquots
254 */
272e42b2 255static const struct xfs_item_ops xfs_dquot_item_ops = {
7bfa31d8
CH
256 .iop_size = xfs_qm_dquot_logitem_size,
257 .iop_format = xfs_qm_dquot_logitem_format,
258 .iop_pin = xfs_qm_dquot_logitem_pin,
259 .iop_unpin = xfs_qm_dquot_logitem_unpin,
7bfa31d8
CH
260 .iop_unlock = xfs_qm_dquot_logitem_unlock,
261 .iop_committed = xfs_qm_dquot_logitem_committed,
262 .iop_push = xfs_qm_dquot_logitem_push,
373b0589
CM
263 .iop_committing = xfs_qm_dquot_logitem_committing,
264 .iop_error = xfs_dquot_item_error
1da177e4
LT
265};
266
267/*
268 * Initialize the dquot log item for a newly allocated dquot.
269 * The dquot isn't locked at this point, but it isn't on any of the lists
270 * either, so we don't care.
271 */
272void
273xfs_qm_dquot_logitem_init(
7bfa31d8 274 struct xfs_dquot *dqp)
1da177e4 275{
7bfa31d8 276 struct xfs_dq_logitem *lp = &dqp->q_logitem;
1da177e4 277
43f5efc5
DC
278 xfs_log_item_init(dqp->q_mount, &lp->qli_item, XFS_LI_DQUOT,
279 &xfs_dquot_item_ops);
1da177e4 280 lp->qli_dquot = dqp;
1da177e4
LT
281}
282
283/*------------------ QUOTAOFF LOG ITEMS -------------------*/
284
7bfa31d8
CH
285static inline struct xfs_qoff_logitem *QOFF_ITEM(struct xfs_log_item *lip)
286{
287 return container_of(lip, struct xfs_qoff_logitem, qql_item);
288}
289
290
1da177e4
LT
291/*
292 * This returns the number of iovecs needed to log the given quotaoff item.
293 * We only need 1 iovec for an quotaoff item. It just logs the
294 * quotaoff_log_format structure.
295 */
166d1368 296STATIC void
7bfa31d8 297xfs_qm_qoff_logitem_size(
166d1368
DC
298 struct xfs_log_item *lip,
299 int *nvecs,
300 int *nbytes)
1da177e4 301{
166d1368
DC
302 *nvecs += 1;
303 *nbytes += sizeof(struct xfs_qoff_logitem);
1da177e4
LT
304}
305
1da177e4 306STATIC void
7bfa31d8
CH
307xfs_qm_qoff_logitem_format(
308 struct xfs_log_item *lip,
bde7cff6 309 struct xfs_log_vec *lv)
1da177e4 310{
7bfa31d8 311 struct xfs_qoff_logitem *qflip = QOFF_ITEM(lip);
bde7cff6 312 struct xfs_log_iovec *vecp = NULL;
ffda4e83 313 struct xfs_qoff_logformat *qlf;
1da177e4 314
ffda4e83
CH
315 qlf = xlog_prepare_iovec(lv, &vecp, XLOG_REG_TYPE_QUOTAOFF);
316 qlf->qf_type = XFS_LI_QUOTAOFF;
317 qlf->qf_size = 1;
318 qlf->qf_flags = qflip->qql_flags;
319 xlog_finish_iovec(lv, vecp, sizeof(struct xfs_qoff_logitem));
1da177e4
LT
320}
321
1da177e4
LT
322/*
323 * Pinning has no meaning for an quotaoff item, so just return.
324 */
1da177e4 325STATIC void
7bfa31d8
CH
326xfs_qm_qoff_logitem_pin(
327 struct xfs_log_item *lip)
1da177e4 328{
1da177e4
LT
329}
330
1da177e4
LT
331/*
332 * Since pinning has no meaning for an quotaoff item, unpinning does
333 * not either.
334 */
1da177e4 335STATIC void
7bfa31d8
CH
336xfs_qm_qoff_logitem_unpin(
337 struct xfs_log_item *lip,
338 int remove)
1da177e4 339{
1da177e4
LT
340}
341
342/*
43ff2122
CH
343 * There isn't much you can do to push a quotaoff item. It is simply
344 * stuck waiting for the log to be flushed to disk.
1da177e4 345 */
1da177e4 346STATIC uint
43ff2122
CH
347xfs_qm_qoff_logitem_push(
348 struct xfs_log_item *lip,
349 struct list_head *buffer_list)
1da177e4
LT
350{
351 return XFS_ITEM_LOCKED;
352}
353
354/*
355 * Quotaoff items have no locking or pushing, so return failure
356 * so that the caller doesn't bother with us.
357 */
1da177e4 358STATIC void
7bfa31d8
CH
359xfs_qm_qoff_logitem_unlock(
360 struct xfs_log_item *lip)
1da177e4 361{
1da177e4
LT
362}
363
364/*
365 * The quotaoff-start-item is logged only once and cannot be moved in the log,
366 * so simply return the lsn at which it's been logged.
367 */
1da177e4 368STATIC xfs_lsn_t
7bfa31d8
CH
369xfs_qm_qoff_logitem_committed(
370 struct xfs_log_item *lip,
371 xfs_lsn_t lsn)
1da177e4 372{
7bfa31d8 373 return lsn;
1da177e4
LT
374}
375
1da177e4
LT
376STATIC xfs_lsn_t
377xfs_qm_qoffend_logitem_committed(
7bfa31d8
CH
378 struct xfs_log_item *lip,
379 xfs_lsn_t lsn)
1da177e4 380{
7bfa31d8
CH
381 struct xfs_qoff_logitem *qfe = QOFF_ITEM(lip);
382 struct xfs_qoff_logitem *qfs = qfe->qql_start_lip;
383 struct xfs_ail *ailp = qfs->qql_item.li_ailp;
1da177e4 384
1da177e4
LT
385 /*
386 * Delete the qoff-start logitem from the AIL.
783a2f65 387 * xfs_trans_ail_delete() drops the AIL lock.
1da177e4 388 */
57e80956 389 spin_lock(&ailp->ail_lock);
04913fdd 390 xfs_trans_ail_delete(ailp, &qfs->qql_item, SHUTDOWN_LOG_IO_ERROR);
7bfa31d8 391
b1c5ebb2
DC
392 kmem_free(qfs->qql_item.li_lv_shadow);
393 kmem_free(lip->li_lv_shadow);
f0e2d93c
DV
394 kmem_free(qfs);
395 kmem_free(qfe);
1da177e4
LT
396 return (xfs_lsn_t)-1;
397}
398
399/*
400 * XXX rcc - don't know quite what to do with this. I think we can
401 * just ignore it. The only time that isn't the case is if we allow
402 * the client to somehow see that quotas have been turned off in which
403 * we can't allow that to get back until the quotaoff hits the disk.
404 * So how would that happen? Also, do we need different routines for
405 * quotaoff start and quotaoff end? I suspect the answer is yes but
406 * to be sure, I need to look at the recovery code and see how quota off
407 * recovery is handled (do we roll forward or back or do something else).
408 * If we roll forwards or backwards, then we need two separate routines,
409 * one that does nothing and one that stamps in the lsn that matters
410 * (truly makes the quotaoff irrevocable). If we do something else,
411 * then maybe we don't need two.
412 */
1da177e4 413STATIC void
7bfa31d8
CH
414xfs_qm_qoff_logitem_committing(
415 struct xfs_log_item *lip,
416 xfs_lsn_t commit_lsn)
1da177e4 417{
1da177e4
LT
418}
419
272e42b2 420static const struct xfs_item_ops xfs_qm_qoffend_logitem_ops = {
7bfa31d8
CH
421 .iop_size = xfs_qm_qoff_logitem_size,
422 .iop_format = xfs_qm_qoff_logitem_format,
423 .iop_pin = xfs_qm_qoff_logitem_pin,
424 .iop_unpin = xfs_qm_qoff_logitem_unpin,
7bfa31d8
CH
425 .iop_unlock = xfs_qm_qoff_logitem_unlock,
426 .iop_committed = xfs_qm_qoffend_logitem_committed,
427 .iop_push = xfs_qm_qoff_logitem_push,
428 .iop_committing = xfs_qm_qoff_logitem_committing
1da177e4
LT
429};
430
431/*
432 * This is the ops vector shared by all quotaoff-start log items.
433 */
272e42b2 434static const struct xfs_item_ops xfs_qm_qoff_logitem_ops = {
7bfa31d8
CH
435 .iop_size = xfs_qm_qoff_logitem_size,
436 .iop_format = xfs_qm_qoff_logitem_format,
437 .iop_pin = xfs_qm_qoff_logitem_pin,
438 .iop_unpin = xfs_qm_qoff_logitem_unpin,
7bfa31d8
CH
439 .iop_unlock = xfs_qm_qoff_logitem_unlock,
440 .iop_committed = xfs_qm_qoff_logitem_committed,
441 .iop_push = xfs_qm_qoff_logitem_push,
442 .iop_committing = xfs_qm_qoff_logitem_committing
1da177e4
LT
443};
444
445/*
446 * Allocate and initialize an quotaoff item of the correct quota type(s).
447 */
7bfa31d8 448struct xfs_qoff_logitem *
1da177e4 449xfs_qm_qoff_logitem_init(
7bfa31d8
CH
450 struct xfs_mount *mp,
451 struct xfs_qoff_logitem *start,
452 uint flags)
1da177e4 453{
7bfa31d8 454 struct xfs_qoff_logitem *qf;
1da177e4 455
7bfa31d8 456 qf = kmem_zalloc(sizeof(struct xfs_qoff_logitem), KM_SLEEP);
1da177e4 457
43f5efc5
DC
458 xfs_log_item_init(mp, &qf->qql_item, XFS_LI_QUOTAOFF, start ?
459 &xfs_qm_qoffend_logitem_ops : &xfs_qm_qoff_logitem_ops);
1da177e4 460 qf->qql_item.li_mountp = mp;
1da177e4 461 qf->qql_start_lip = start;
ffda4e83 462 qf->qql_flags = flags;
7bfa31d8 463 return qf;
1da177e4 464}