1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2000-2003 Silicon Graphics, Inc.
8 #include "xfs_format.h"
9 #include "xfs_log_format.h"
10 #include "xfs_shared.h"
11 #include "xfs_trans_resv.h"
13 #include "xfs_mount.h"
14 #include "xfs_defer.h"
15 #include "xfs_inode.h"
17 #include "xfs_bmap_util.h"
18 #include "xfs_alloc.h"
19 #include "xfs_quota.h"
20 #include "xfs_error.h"
21 #include "xfs_trans.h"
22 #include "xfs_buf_item.h"
23 #include "xfs_trans_space.h"
24 #include "xfs_trans_priv.h"
26 #include "xfs_cksum.h"
27 #include "xfs_trace.h"
29 #include "xfs_bmap_btree.h"
36 * dquot->q_qlock (xfs_dqlock() and friends)
37 * dquot->q_flush (xfs_dqflock() and friends)
40 * If two dquots need to be locked the order is user before group/project,
41 * otherwise by the lowest id first, see xfs_dqlock2.
44 struct kmem_zone
*xfs_qm_dqtrxzone
;
45 static struct kmem_zone
*xfs_qm_dqzone
;
47 static struct lock_class_key xfs_dquot_group_class
;
48 static struct lock_class_key xfs_dquot_project_class
;
51 * This is called to free all the memory associated with a dquot
57 ASSERT(list_empty(&dqp
->q_lru
));
59 kmem_free(dqp
->q_logitem
.qli_item
.li_lv_shadow
);
60 mutex_destroy(&dqp
->q_qlock
);
62 XFS_STATS_DEC(dqp
->q_mount
, xs_qm_dquot
);
63 kmem_zone_free(xfs_qm_dqzone
, dqp
);
67 * If default limits are in force, push them into the dquot now.
68 * We overwrite the dquot limits only if they are zero and this
69 * is not the root dquot.
72 xfs_qm_adjust_dqlimits(
76 struct xfs_quotainfo
*q
= mp
->m_quotainfo
;
77 struct xfs_disk_dquot
*d
= &dq
->q_core
;
78 struct xfs_def_quota
*defq
;
82 defq
= xfs_get_defquota(dq
, q
);
84 if (defq
->bsoftlimit
&& !d
->d_blk_softlimit
) {
85 d
->d_blk_softlimit
= cpu_to_be64(defq
->bsoftlimit
);
88 if (defq
->bhardlimit
&& !d
->d_blk_hardlimit
) {
89 d
->d_blk_hardlimit
= cpu_to_be64(defq
->bhardlimit
);
92 if (defq
->isoftlimit
&& !d
->d_ino_softlimit
)
93 d
->d_ino_softlimit
= cpu_to_be64(defq
->isoftlimit
);
94 if (defq
->ihardlimit
&& !d
->d_ino_hardlimit
)
95 d
->d_ino_hardlimit
= cpu_to_be64(defq
->ihardlimit
);
96 if (defq
->rtbsoftlimit
&& !d
->d_rtb_softlimit
)
97 d
->d_rtb_softlimit
= cpu_to_be64(defq
->rtbsoftlimit
);
98 if (defq
->rtbhardlimit
&& !d
->d_rtb_hardlimit
)
99 d
->d_rtb_hardlimit
= cpu_to_be64(defq
->rtbhardlimit
);
102 xfs_dquot_set_prealloc_limits(dq
);
106 * Check the limits and timers of a dquot and start or reset timers
108 * This gets called even when quota enforcement is OFF, which makes our
109 * life a little less complicated. (We just don't reject any quota
110 * reservations in that case, when enforcement is off).
111 * We also return 0 as the values of the timers in Q_GETQUOTA calls, when
113 * In contrast, warnings are a little different in that they don't
114 * 'automatically' get started when limits get exceeded. They do
115 * get reset to zero, however, when we find the count to be under
116 * the soft limit (they are only ever set non-zero via userspace).
119 xfs_qm_adjust_dqtimers(
126 if (d
->d_blk_hardlimit
)
127 ASSERT(be64_to_cpu(d
->d_blk_softlimit
) <=
128 be64_to_cpu(d
->d_blk_hardlimit
));
129 if (d
->d_ino_hardlimit
)
130 ASSERT(be64_to_cpu(d
->d_ino_softlimit
) <=
131 be64_to_cpu(d
->d_ino_hardlimit
));
132 if (d
->d_rtb_hardlimit
)
133 ASSERT(be64_to_cpu(d
->d_rtb_softlimit
) <=
134 be64_to_cpu(d
->d_rtb_hardlimit
));
138 if ((d
->d_blk_softlimit
&&
139 (be64_to_cpu(d
->d_bcount
) >
140 be64_to_cpu(d
->d_blk_softlimit
))) ||
141 (d
->d_blk_hardlimit
&&
142 (be64_to_cpu(d
->d_bcount
) >
143 be64_to_cpu(d
->d_blk_hardlimit
)))) {
144 d
->d_btimer
= cpu_to_be32(get_seconds() +
145 mp
->m_quotainfo
->qi_btimelimit
);
150 if ((!d
->d_blk_softlimit
||
151 (be64_to_cpu(d
->d_bcount
) <=
152 be64_to_cpu(d
->d_blk_softlimit
))) &&
153 (!d
->d_blk_hardlimit
||
154 (be64_to_cpu(d
->d_bcount
) <=
155 be64_to_cpu(d
->d_blk_hardlimit
)))) {
161 if ((d
->d_ino_softlimit
&&
162 (be64_to_cpu(d
->d_icount
) >
163 be64_to_cpu(d
->d_ino_softlimit
))) ||
164 (d
->d_ino_hardlimit
&&
165 (be64_to_cpu(d
->d_icount
) >
166 be64_to_cpu(d
->d_ino_hardlimit
)))) {
167 d
->d_itimer
= cpu_to_be32(get_seconds() +
168 mp
->m_quotainfo
->qi_itimelimit
);
173 if ((!d
->d_ino_softlimit
||
174 (be64_to_cpu(d
->d_icount
) <=
175 be64_to_cpu(d
->d_ino_softlimit
))) &&
176 (!d
->d_ino_hardlimit
||
177 (be64_to_cpu(d
->d_icount
) <=
178 be64_to_cpu(d
->d_ino_hardlimit
)))) {
183 if (!d
->d_rtbtimer
) {
184 if ((d
->d_rtb_softlimit
&&
185 (be64_to_cpu(d
->d_rtbcount
) >
186 be64_to_cpu(d
->d_rtb_softlimit
))) ||
187 (d
->d_rtb_hardlimit
&&
188 (be64_to_cpu(d
->d_rtbcount
) >
189 be64_to_cpu(d
->d_rtb_hardlimit
)))) {
190 d
->d_rtbtimer
= cpu_to_be32(get_seconds() +
191 mp
->m_quotainfo
->qi_rtbtimelimit
);
196 if ((!d
->d_rtb_softlimit
||
197 (be64_to_cpu(d
->d_rtbcount
) <=
198 be64_to_cpu(d
->d_rtb_softlimit
))) &&
199 (!d
->d_rtb_hardlimit
||
200 (be64_to_cpu(d
->d_rtbcount
) <=
201 be64_to_cpu(d
->d_rtb_hardlimit
)))) {
208 * initialize a buffer full of dquots and log the whole thing
211 xfs_qm_init_dquot_blk(
218 struct xfs_quotainfo
*q
= mp
->m_quotainfo
;
224 ASSERT(xfs_buf_islocked(bp
));
229 * ID of the first dquot in the block - id's are zero based.
231 curid
= id
- (id
% q
->qi_dqperchunk
);
232 memset(d
, 0, BBTOB(q
->qi_dqchunklen
));
233 for (i
= 0; i
< q
->qi_dqperchunk
; i
++, d
++, curid
++) {
234 d
->dd_diskdq
.d_magic
= cpu_to_be16(XFS_DQUOT_MAGIC
);
235 d
->dd_diskdq
.d_version
= XFS_DQUOT_VERSION
;
236 d
->dd_diskdq
.d_id
= cpu_to_be32(curid
);
237 d
->dd_diskdq
.d_flags
= type
;
238 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
239 uuid_copy(&d
->dd_uuid
, &mp
->m_sb
.sb_meta_uuid
);
240 xfs_update_cksum((char *)d
, sizeof(struct xfs_dqblk
),
245 xfs_trans_dquot_buf(tp
, bp
,
246 (type
& XFS_DQ_USER
? XFS_BLF_UDQUOT_BUF
:
247 ((type
& XFS_DQ_PROJ
) ? XFS_BLF_PDQUOT_BUF
:
248 XFS_BLF_GDQUOT_BUF
)));
249 xfs_trans_log_buf(tp
, bp
, 0, BBTOB(q
->qi_dqchunklen
) - 1);
253 * Initialize the dynamic speculative preallocation thresholds. The lo/hi
254 * watermarks correspond to the soft and hard limits by default. If a soft limit
255 * is not specified, we use 95% of the hard limit.
258 xfs_dquot_set_prealloc_limits(struct xfs_dquot
*dqp
)
262 dqp
->q_prealloc_hi_wmark
= be64_to_cpu(dqp
->q_core
.d_blk_hardlimit
);
263 dqp
->q_prealloc_lo_wmark
= be64_to_cpu(dqp
->q_core
.d_blk_softlimit
);
264 if (!dqp
->q_prealloc_lo_wmark
) {
265 dqp
->q_prealloc_lo_wmark
= dqp
->q_prealloc_hi_wmark
;
266 do_div(dqp
->q_prealloc_lo_wmark
, 100);
267 dqp
->q_prealloc_lo_wmark
*= 95;
270 space
= dqp
->q_prealloc_hi_wmark
;
273 dqp
->q_low_space
[XFS_QLOWSP_1_PCNT
] = space
;
274 dqp
->q_low_space
[XFS_QLOWSP_3_PCNT
] = space
* 3;
275 dqp
->q_low_space
[XFS_QLOWSP_5_PCNT
] = space
* 5;
279 * Ensure that the given in-core dquot has a buffer on disk backing it, and
280 * return the buffer. This is called when the bmapi finds a hole.
283 xfs_dquot_disk_alloc(
284 struct xfs_trans
**tpp
,
285 struct xfs_dquot
*dqp
,
286 struct xfs_buf
**bpp
)
288 struct xfs_bmbt_irec map
;
289 struct xfs_trans
*tp
= *tpp
;
290 struct xfs_mount
*mp
= tp
->t_mountp
;
292 struct xfs_inode
*quotip
= xfs_quota_inode(mp
, dqp
->dq_flags
);
296 trace_xfs_dqalloc(dqp
);
298 xfs_ilock(quotip
, XFS_ILOCK_EXCL
);
299 if (!xfs_this_quota_on(dqp
->q_mount
, dqp
->dq_flags
)) {
301 * Return if this type of quotas is turned off while we didn't
304 xfs_iunlock(quotip
, XFS_ILOCK_EXCL
);
308 /* Create the block mapping. */
309 xfs_trans_ijoin(tp
, quotip
, XFS_ILOCK_EXCL
);
310 error
= xfs_bmapi_write(tp
, quotip
, dqp
->q_fileoffset
,
311 XFS_DQUOT_CLUSTER_SIZE_FSB
, XFS_BMAPI_METADATA
,
312 XFS_QM_DQALLOC_SPACE_RES(mp
), &map
, &nmaps
);
315 ASSERT(map
.br_blockcount
== XFS_DQUOT_CLUSTER_SIZE_FSB
);
317 ASSERT((map
.br_startblock
!= DELAYSTARTBLOCK
) &&
318 (map
.br_startblock
!= HOLESTARTBLOCK
));
321 * Keep track of the blkno to save a lookup later
323 dqp
->q_blkno
= XFS_FSB_TO_DADDR(mp
, map
.br_startblock
);
325 /* now we can just get the buffer (there's nothing to read yet) */
326 bp
= xfs_trans_get_buf(tp
, mp
->m_ddev_targp
, dqp
->q_blkno
,
327 mp
->m_quotainfo
->qi_dqchunklen
, 0);
330 bp
->b_ops
= &xfs_dquot_buf_ops
;
333 * Make a chunk of dquots out of this buffer and log
336 xfs_qm_init_dquot_blk(tp
, mp
, be32_to_cpu(dqp
->q_core
.d_id
),
337 dqp
->dq_flags
& XFS_DQ_ALLTYPES
, bp
);
338 xfs_buf_set_ref(bp
, XFS_DQUOT_REF
);
341 * Hold the buffer and join it to the dfops so that we'll still own
342 * the buffer when we return to the caller. The buffer disposal on
343 * error must be paid attention to very carefully, as it has been
344 * broken since commit efa092f3d4c6 "[XFS] Fixes a bug in the quota
345 * code when allocating a new dquot record" in 2005, and the later
346 * conversion to xfs_defer_ops in commit 310a75a3c6c747 failed to keep
347 * the buffer locked across the _defer_finish call. We can now do
348 * this correctly with xfs_defer_bjoin.
350 * Above, we allocated a disk block for the dquot information and used
351 * get_buf to initialize the dquot. If the _defer_finish fails, the old
352 * transaction is gone but the new buffer is not joined or held to any
353 * transaction, so we must _buf_relse it.
355 * If everything succeeds, the caller of this function is returned a
356 * buffer that is locked and held to the transaction. The caller
357 * is responsible for unlocking any buffer passed back, either
358 * manually or by committing the transaction.
360 xfs_trans_bhold(tp
, bp
);
361 error
= xfs_defer_finish(tpp
);
372 * Read in the in-core dquot's on-disk metadata and return the buffer.
373 * Returns ENOENT to signal a hole.
377 struct xfs_mount
*mp
,
378 struct xfs_dquot
*dqp
,
379 struct xfs_buf
**bpp
)
381 struct xfs_bmbt_irec map
;
383 struct xfs_inode
*quotip
= xfs_quota_inode(mp
, dqp
->dq_flags
);
388 lock_mode
= xfs_ilock_data_map_shared(quotip
);
389 if (!xfs_this_quota_on(mp
, dqp
->dq_flags
)) {
391 * Return if this type of quotas is turned off while we
392 * didn't have the quota inode lock.
394 xfs_iunlock(quotip
, lock_mode
);
399 * Find the block map; no allocations yet
401 error
= xfs_bmapi_read(quotip
, dqp
->q_fileoffset
,
402 XFS_DQUOT_CLUSTER_SIZE_FSB
, &map
, &nmaps
, 0);
403 xfs_iunlock(quotip
, lock_mode
);
408 ASSERT(map
.br_blockcount
>= 1);
409 ASSERT(map
.br_startblock
!= DELAYSTARTBLOCK
);
410 if (map
.br_startblock
== HOLESTARTBLOCK
)
413 trace_xfs_dqtobp_read(dqp
);
416 * store the blkno etc so that we don't have to do the
417 * mapping all the time
419 dqp
->q_blkno
= XFS_FSB_TO_DADDR(mp
, map
.br_startblock
);
421 error
= xfs_trans_read_buf(mp
, NULL
, mp
->m_ddev_targp
, dqp
->q_blkno
,
422 mp
->m_quotainfo
->qi_dqchunklen
, 0, &bp
,
429 ASSERT(xfs_buf_islocked(bp
));
430 xfs_buf_set_ref(bp
, XFS_DQUOT_REF
);
436 /* Allocate and initialize everything we need for an incore dquot. */
437 STATIC
struct xfs_dquot
*
439 struct xfs_mount
*mp
,
443 struct xfs_dquot
*dqp
;
445 dqp
= kmem_zone_zalloc(xfs_qm_dqzone
, KM_SLEEP
);
447 dqp
->dq_flags
= type
;
448 dqp
->q_core
.d_id
= cpu_to_be32(id
);
450 INIT_LIST_HEAD(&dqp
->q_lru
);
451 mutex_init(&dqp
->q_qlock
);
452 init_waitqueue_head(&dqp
->q_pinwait
);
453 dqp
->q_fileoffset
= (xfs_fileoff_t
)id
/ mp
->m_quotainfo
->qi_dqperchunk
;
455 * Offset of dquot in the (fixed sized) dquot chunk.
457 dqp
->q_bufoffset
= (id
% mp
->m_quotainfo
->qi_dqperchunk
) *
461 * Because we want to use a counting completion, complete
462 * the flush completion once to allow a single access to
463 * the flush completion without blocking.
465 init_completion(&dqp
->q_flush
);
466 complete(&dqp
->q_flush
);
469 * Make sure group quotas have a different lock class than user
474 /* uses the default lock class */
477 lockdep_set_class(&dqp
->q_qlock
, &xfs_dquot_group_class
);
480 lockdep_set_class(&dqp
->q_qlock
, &xfs_dquot_project_class
);
487 xfs_qm_dquot_logitem_init(dqp
);
489 XFS_STATS_INC(mp
, xs_qm_dquot
);
493 /* Copy the in-core quota fields in from the on-disk buffer. */
496 struct xfs_dquot
*dqp
,
499 struct xfs_disk_dquot
*ddqp
= bp
->b_addr
+ dqp
->q_bufoffset
;
501 /* copy everything from disk dquot to the incore dquot */
502 memcpy(&dqp
->q_core
, ddqp
, sizeof(xfs_disk_dquot_t
));
505 * Reservation counters are defined as reservation plus current usage
506 * to avoid having to add every time.
508 dqp
->q_res_bcount
= be64_to_cpu(ddqp
->d_bcount
);
509 dqp
->q_res_icount
= be64_to_cpu(ddqp
->d_icount
);
510 dqp
->q_res_rtbcount
= be64_to_cpu(ddqp
->d_rtbcount
);
512 /* initialize the dquot speculative prealloc thresholds */
513 xfs_dquot_set_prealloc_limits(dqp
);
516 /* Allocate and initialize the dquot buffer for this in-core dquot. */
519 struct xfs_mount
*mp
,
520 struct xfs_dquot
*dqp
,
521 struct xfs_buf
**bpp
)
523 struct xfs_trans
*tp
;
527 error
= xfs_trans_alloc(mp
, &M_RES(mp
)->tr_qm_dqalloc
,
528 XFS_QM_DQALLOC_SPACE_RES(mp
), 0, 0, &tp
);
532 error
= xfs_dquot_disk_alloc(&tp
, dqp
, &bp
);
536 error
= xfs_trans_commit(tp
);
539 * Buffer was held to the transaction, so we have to unlock it
540 * manually here because we're not passing it back.
549 xfs_trans_cancel(tp
);
555 * Read in the ondisk dquot using dqtobp() then copy it to an incore version,
556 * and release the buffer immediately. If @can_alloc is true, fill any
557 * holes in the on-disk metadata.
561 struct xfs_mount
*mp
,
565 struct xfs_dquot
**dqpp
)
567 struct xfs_dquot
*dqp
;
571 dqp
= xfs_dquot_alloc(mp
, id
, type
);
572 trace_xfs_dqread(dqp
);
574 /* Try to read the buffer, allocating if necessary. */
575 error
= xfs_dquot_disk_read(mp
, dqp
, &bp
);
576 if (error
== -ENOENT
&& can_alloc
)
577 error
= xfs_qm_dqread_alloc(mp
, dqp
, &bp
);
582 * At this point we should have a clean locked buffer. Copy the data
583 * to the incore dquot and release the buffer since the incore dquot
584 * has its own locking protocol so we needn't tie up the buffer any
587 ASSERT(xfs_buf_islocked(bp
));
588 xfs_dquot_from_disk(dqp
, bp
);
595 trace_xfs_dqread_fail(dqp
);
596 xfs_qm_dqdestroy(dqp
);
602 * Advance to the next id in the current chunk, or if at the
603 * end of the chunk, skip ahead to first id in next allocated chunk
604 * using the SEEK_DATA interface.
608 struct xfs_mount
*mp
,
612 struct xfs_inode
*quotip
= xfs_quota_inode(mp
, type
);
613 xfs_dqid_t next_id
= *id
+ 1; /* simple advance */
615 struct xfs_bmbt_irec got
;
616 struct xfs_iext_cursor cur
;
620 /* If we'd wrap past the max ID, stop */
624 /* If new ID is within the current chunk, advancing it sufficed */
625 if (next_id
% mp
->m_quotainfo
->qi_dqperchunk
) {
630 /* Nope, next_id is now past the current chunk, so find the next one */
631 start
= (xfs_fsblock_t
)next_id
/ mp
->m_quotainfo
->qi_dqperchunk
;
633 lock_flags
= xfs_ilock_data_map_shared(quotip
);
634 if (!(quotip
->i_df
.if_flags
& XFS_IFEXTENTS
)) {
635 error
= xfs_iread_extents(NULL
, quotip
, XFS_DATA_FORK
);
640 if (xfs_iext_lookup_extent(quotip
, "ip
->i_df
, start
, &cur
, &got
)) {
641 /* contiguous chunk, bump startoff for the id calculation */
642 if (got
.br_startoff
< start
)
643 got
.br_startoff
= start
;
644 *id
= got
.br_startoff
* mp
->m_quotainfo
->qi_dqperchunk
;
649 xfs_iunlock(quotip
, lock_flags
);
655 * Look up the dquot in the in-core cache. If found, the dquot is returned
656 * locked and ready to go.
658 static struct xfs_dquot
*
659 xfs_qm_dqget_cache_lookup(
660 struct xfs_mount
*mp
,
661 struct xfs_quotainfo
*qi
,
662 struct radix_tree_root
*tree
,
665 struct xfs_dquot
*dqp
;
668 mutex_lock(&qi
->qi_tree_lock
);
669 dqp
= radix_tree_lookup(tree
, id
);
671 mutex_unlock(&qi
->qi_tree_lock
);
672 XFS_STATS_INC(mp
, xs_qm_dqcachemisses
);
677 if (dqp
->dq_flags
& XFS_DQ_FREEING
) {
679 mutex_unlock(&qi
->qi_tree_lock
);
680 trace_xfs_dqget_freeing(dqp
);
686 mutex_unlock(&qi
->qi_tree_lock
);
688 trace_xfs_dqget_hit(dqp
);
689 XFS_STATS_INC(mp
, xs_qm_dqcachehits
);
694 * Try to insert a new dquot into the in-core cache. If an error occurs the
695 * caller should throw away the dquot and start over. Otherwise, the dquot
696 * is returned locked (and held by the cache) as if there had been a cache
700 xfs_qm_dqget_cache_insert(
701 struct xfs_mount
*mp
,
702 struct xfs_quotainfo
*qi
,
703 struct radix_tree_root
*tree
,
705 struct xfs_dquot
*dqp
)
709 mutex_lock(&qi
->qi_tree_lock
);
710 error
= radix_tree_insert(tree
, id
, dqp
);
711 if (unlikely(error
)) {
712 /* Duplicate found! Caller must try again. */
713 WARN_ON(error
!= -EEXIST
);
714 mutex_unlock(&qi
->qi_tree_lock
);
715 trace_xfs_dqget_dup(dqp
);
719 /* Return a locked dquot to the caller, with a reference taken. */
724 mutex_unlock(&qi
->qi_tree_lock
);
729 /* Check our input parameters. */
732 struct xfs_mount
*mp
,
735 if (WARN_ON_ONCE(!XFS_IS_QUOTA_RUNNING(mp
)))
740 if (!XFS_IS_UQUOTA_ON(mp
))
744 if (!XFS_IS_GQUOTA_ON(mp
))
748 if (!XFS_IS_PQUOTA_ON(mp
))
758 * Given the file system, id, and type (UDQUOT/GDQUOT), return a a locked
759 * dquot, doing an allocation (if requested) as needed.
763 struct xfs_mount
*mp
,
767 struct xfs_dquot
**O_dqpp
)
769 struct xfs_quotainfo
*qi
= mp
->m_quotainfo
;
770 struct radix_tree_root
*tree
= xfs_dquot_tree(qi
, type
);
771 struct xfs_dquot
*dqp
;
774 error
= xfs_qm_dqget_checks(mp
, type
);
779 dqp
= xfs_qm_dqget_cache_lookup(mp
, qi
, tree
, id
);
785 error
= xfs_qm_dqread(mp
, id
, type
, can_alloc
, &dqp
);
789 error
= xfs_qm_dqget_cache_insert(mp
, qi
, tree
, id
, dqp
);
792 * Duplicate found. Just throw away the new dquot and start
795 xfs_qm_dqdestroy(dqp
);
796 XFS_STATS_INC(mp
, xs_qm_dquot_dups
);
800 trace_xfs_dqget_miss(dqp
);
806 * Given a dquot id and type, read and initialize a dquot from the on-disk
807 * metadata. This function is only for use during quota initialization so
808 * it ignores the dquot cache assuming that the dquot shrinker isn't set up.
809 * The caller is responsible for _qm_dqdestroy'ing the returned dquot.
812 xfs_qm_dqget_uncached(
813 struct xfs_mount
*mp
,
816 struct xfs_dquot
**dqpp
)
820 error
= xfs_qm_dqget_checks(mp
, type
);
824 return xfs_qm_dqread(mp
, id
, type
, 0, dqpp
);
827 /* Return the quota id for a given inode and type. */
829 xfs_qm_id_for_quotatype(
830 struct xfs_inode
*ip
,
835 return ip
->i_d
.di_uid
;
837 return ip
->i_d
.di_gid
;
839 return xfs_get_projid(ip
);
846 * Return the dquot for a given inode and type. If @can_alloc is true, then
847 * allocate blocks if needed. The inode's ILOCK must be held and it must not
848 * have already had an inode attached.
852 struct xfs_inode
*ip
,
855 struct xfs_dquot
**O_dqpp
)
857 struct xfs_mount
*mp
= ip
->i_mount
;
858 struct xfs_quotainfo
*qi
= mp
->m_quotainfo
;
859 struct radix_tree_root
*tree
= xfs_dquot_tree(qi
, type
);
860 struct xfs_dquot
*dqp
;
864 error
= xfs_qm_dqget_checks(mp
, type
);
868 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
869 ASSERT(xfs_inode_dquot(ip
, type
) == NULL
);
871 id
= xfs_qm_id_for_quotatype(ip
, type
);
874 dqp
= xfs_qm_dqget_cache_lookup(mp
, qi
, tree
, id
);
881 * Dquot cache miss. We don't want to keep the inode lock across
882 * a (potential) disk read. Also we don't want to deal with the lock
883 * ordering between quotainode and this inode. OTOH, dropping the inode
884 * lock here means dealing with a chown that can happen before
885 * we re-acquire the lock.
887 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
888 error
= xfs_qm_dqread(mp
, id
, type
, can_alloc
, &dqp
);
889 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
894 * A dquot could be attached to this inode by now, since we had
897 if (xfs_this_quota_on(mp
, type
)) {
898 struct xfs_dquot
*dqp1
;
900 dqp1
= xfs_inode_dquot(ip
, type
);
902 xfs_qm_dqdestroy(dqp
);
908 /* inode stays locked on return */
909 xfs_qm_dqdestroy(dqp
);
913 error
= xfs_qm_dqget_cache_insert(mp
, qi
, tree
, id
, dqp
);
916 * Duplicate found. Just throw away the new dquot and start
919 xfs_qm_dqdestroy(dqp
);
920 XFS_STATS_INC(mp
, xs_qm_dquot_dups
);
925 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
926 trace_xfs_dqget_miss(dqp
);
932 * Starting at @id and progressing upwards, look for an initialized incore
933 * dquot, lock it, and return it.
937 struct xfs_mount
*mp
,
940 struct xfs_dquot
**dqpp
)
942 struct xfs_dquot
*dqp
;
946 for (; !error
; error
= xfs_dq_get_next_id(mp
, type
, &id
)) {
947 error
= xfs_qm_dqget(mp
, id
, type
, false, &dqp
);
948 if (error
== -ENOENT
)
953 if (!XFS_IS_DQUOT_UNINITIALIZED(dqp
)) {
965 * Release a reference to the dquot (decrement ref-count) and unlock it.
967 * If there is a group quota attached to this dquot, carefully release that
968 * too without tripping over deadlocks'n'stuff.
972 struct xfs_dquot
*dqp
)
974 ASSERT(dqp
->q_nrefs
> 0);
975 ASSERT(XFS_DQ_IS_LOCKED(dqp
));
977 trace_xfs_dqput(dqp
);
979 if (--dqp
->q_nrefs
== 0) {
980 struct xfs_quotainfo
*qi
= dqp
->q_mount
->m_quotainfo
;
981 trace_xfs_dqput_free(dqp
);
983 if (list_lru_add(&qi
->qi_lru
, &dqp
->q_lru
))
984 XFS_STATS_INC(dqp
->q_mount
, xs_qm_dquot_unused
);
990 * Release a dquot. Flush it if dirty, then dqput() it.
991 * dquot must not be locked.
1000 trace_xfs_dqrele(dqp
);
1004 * We don't care to flush it if the dquot is dirty here.
1005 * That will create stutters that we want to avoid.
1006 * Instead we do a delayed write when we try to reclaim
1007 * a dirty dquot. Also xfs_sync will take part of the burden...
1013 * This is the dquot flushing I/O completion routine. It is called
1014 * from interrupt level when the buffer containing the dquot is
1015 * flushed to disk. It is responsible for removing the dquot logitem
1016 * from the AIL if it has not been re-logged, and unlocking the dquot's
1017 * flush lock. This behavior is very similar to that of inodes..
1020 xfs_qm_dqflush_done(
1022 struct xfs_log_item
*lip
)
1024 xfs_dq_logitem_t
*qip
= (struct xfs_dq_logitem
*)lip
;
1025 xfs_dquot_t
*dqp
= qip
->qli_dquot
;
1026 struct xfs_ail
*ailp
= lip
->li_ailp
;
1029 * We only want to pull the item from the AIL if its
1030 * location in the log has not changed since we started the flush.
1031 * Thus, we only bother if the dquot's lsn has
1032 * not changed. First we check the lsn outside the lock
1033 * since it's cheaper, and then we recheck while
1034 * holding the lock before removing the dquot from the AIL.
1036 if (test_bit(XFS_LI_IN_AIL
, &lip
->li_flags
) &&
1037 ((lip
->li_lsn
== qip
->qli_flush_lsn
) ||
1038 test_bit(XFS_LI_FAILED
, &lip
->li_flags
))) {
1040 /* xfs_trans_ail_delete() drops the AIL lock. */
1041 spin_lock(&ailp
->ail_lock
);
1042 if (lip
->li_lsn
== qip
->qli_flush_lsn
) {
1043 xfs_trans_ail_delete(ailp
, lip
, SHUTDOWN_CORRUPT_INCORE
);
1046 * Clear the failed state since we are about to drop the
1049 xfs_clear_li_failed(lip
);
1050 spin_unlock(&ailp
->ail_lock
);
1055 * Release the dq's flush lock since we're done with it.
1061 * Write a modified dquot to disk.
1062 * The dquot must be locked and the flush lock too taken by caller.
1063 * The flush lock will not be unlocked until the dquot reaches the disk,
1064 * but the dquot is free to be unlocked and modified by the caller
1065 * in the interim. Dquot is still locked on return. This behavior is
1066 * identical to that of inodes.
1070 struct xfs_dquot
*dqp
,
1071 struct xfs_buf
**bpp
)
1073 struct xfs_mount
*mp
= dqp
->q_mount
;
1075 struct xfs_dqblk
*dqb
;
1076 struct xfs_disk_dquot
*ddqp
;
1080 ASSERT(XFS_DQ_IS_LOCKED(dqp
));
1081 ASSERT(!completion_done(&dqp
->q_flush
));
1083 trace_xfs_dqflush(dqp
);
1087 xfs_qm_dqunpin_wait(dqp
);
1090 * This may have been unpinned because the filesystem is shutting
1091 * down forcibly. If that's the case we must not write this dquot
1092 * to disk, because the log record didn't make it to disk.
1094 * We also have to remove the log item from the AIL in this case,
1095 * as we wait for an emptry AIL as part of the unmount process.
1097 if (XFS_FORCED_SHUTDOWN(mp
)) {
1098 struct xfs_log_item
*lip
= &dqp
->q_logitem
.qli_item
;
1099 dqp
->dq_flags
&= ~XFS_DQ_DIRTY
;
1101 xfs_trans_ail_remove(lip
, SHUTDOWN_CORRUPT_INCORE
);
1108 * Get the buffer containing the on-disk dquot
1110 error
= xfs_trans_read_buf(mp
, NULL
, mp
->m_ddev_targp
, dqp
->q_blkno
,
1111 mp
->m_quotainfo
->qi_dqchunklen
, 0, &bp
,
1112 &xfs_dquot_buf_ops
);
1117 * Calculate the location of the dquot inside the buffer.
1119 dqb
= bp
->b_addr
+ dqp
->q_bufoffset
;
1120 ddqp
= &dqb
->dd_diskdq
;
1123 * A simple sanity check in case we got a corrupted dquot.
1125 fa
= xfs_dqblk_verify(mp
, dqb
, be32_to_cpu(ddqp
->d_id
), 0);
1127 xfs_alert(mp
, "corrupt dquot ID 0x%x in memory at %pS",
1128 be32_to_cpu(ddqp
->d_id
), fa
);
1131 xfs_force_shutdown(mp
, SHUTDOWN_CORRUPT_INCORE
);
1135 /* This is the only portion of data that needs to persist */
1136 memcpy(ddqp
, &dqp
->q_core
, sizeof(xfs_disk_dquot_t
));
1139 * Clear the dirty field and remember the flush lsn for later use.
1141 dqp
->dq_flags
&= ~XFS_DQ_DIRTY
;
1143 xfs_trans_ail_copy_lsn(mp
->m_ail
, &dqp
->q_logitem
.qli_flush_lsn
,
1144 &dqp
->q_logitem
.qli_item
.li_lsn
);
1147 * copy the lsn into the on-disk dquot now while we have the in memory
1148 * dquot here. This can't be done later in the write verifier as we
1149 * can't get access to the log item at that point in time.
1151 * We also calculate the CRC here so that the on-disk dquot in the
1152 * buffer always has a valid CRC. This ensures there is no possibility
1153 * of a dquot without an up-to-date CRC getting to disk.
1155 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
1156 dqb
->dd_lsn
= cpu_to_be64(dqp
->q_logitem
.qli_item
.li_lsn
);
1157 xfs_update_cksum((char *)dqb
, sizeof(struct xfs_dqblk
),
1162 * Attach an iodone routine so that we can remove this dquot from the
1163 * AIL and release the flush lock once the dquot is synced to disk.
1165 xfs_buf_attach_iodone(bp
, xfs_qm_dqflush_done
,
1166 &dqp
->q_logitem
.qli_item
);
1169 * If the buffer is pinned then push on the log so we won't
1170 * get stuck waiting in the write for too long.
1172 if (xfs_buf_ispinned(bp
)) {
1173 trace_xfs_dqflush_force(dqp
);
1174 xfs_log_force(mp
, 0);
1177 trace_xfs_dqflush_done(dqp
);
1187 * Lock two xfs_dquot structures.
1189 * To avoid deadlocks we always lock the quota structure with
1190 * the lowerd id first.
1199 if (be32_to_cpu(d1
->q_core
.d_id
) >
1200 be32_to_cpu(d2
->q_core
.d_id
)) {
1201 mutex_lock(&d2
->q_qlock
);
1202 mutex_lock_nested(&d1
->q_qlock
, XFS_QLOCK_NESTED
);
1204 mutex_lock(&d1
->q_qlock
);
1205 mutex_lock_nested(&d2
->q_qlock
, XFS_QLOCK_NESTED
);
1208 mutex_lock(&d1
->q_qlock
);
1210 mutex_lock(&d2
->q_qlock
);
1218 kmem_zone_init(sizeof(struct xfs_dquot
), "xfs_dquot");
1223 kmem_zone_init(sizeof(struct xfs_dquot_acct
), "xfs_dqtrx");
1224 if (!xfs_qm_dqtrxzone
)
1225 goto out_free_dqzone
;
1230 kmem_zone_destroy(xfs_qm_dqzone
);
1238 kmem_zone_destroy(xfs_qm_dqtrxzone
);
1239 kmem_zone_destroy(xfs_qm_dqzone
);
1243 * Iterate every dquot of a particular type. The caller must ensure that the
1244 * particular quota type is active. iter_fn can return negative error codes,
1245 * or XFS_BTREE_QUERY_RANGE_ABORT to indicate that it wants to stop iterating.
1249 struct xfs_mount
*mp
,
1251 xfs_qm_dqiterate_fn iter_fn
,
1254 struct xfs_dquot
*dq
;
1259 error
= xfs_qm_dqget_next(mp
, id
, dqtype
, &dq
);
1260 if (error
== -ENOENT
)
1265 error
= iter_fn(dq
, dqtype
, priv
);
1266 id
= be32_to_cpu(dq
->q_core
.d_id
);
1269 } while (error
== 0 && id
!= 0);