1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2000-2005 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"
14 #include "xfs_mount.h"
15 #include "xfs_inode.h"
16 #include "xfs_iwalk.h"
17 #include "xfs_quota.h"
19 #include "xfs_bmap_util.h"
20 #include "xfs_trans.h"
21 #include "xfs_trans_space.h"
23 #include "xfs_trace.h"
24 #include "xfs_icache.h"
25 #include "xfs_error.h"
28 * The global quota manager. There is only one of these for the entire
29 * system, _not_ one per file system. XQM keeps track of the overall
30 * quota functionality, including maintaining the freelist and hash
33 STATIC
int xfs_qm_init_quotainos(struct xfs_mount
*mp
);
34 STATIC
int xfs_qm_init_quotainfo(struct xfs_mount
*mp
);
36 STATIC
void xfs_qm_destroy_quotainos(struct xfs_quotainfo
*qi
);
37 STATIC
void xfs_qm_dqfree_one(struct xfs_dquot
*dqp
);
39 * We use the batch lookup interface to iterate over the dquots as it
40 * currently is the only interface into the radix tree code that allows
41 * fuzzy lookups instead of exact matches. Holding the lock over multiple
42 * operations is fine as all callers are used either during mount/umount
45 #define XFS_DQ_LOOKUP_BATCH 32
51 int (*execute
)(struct xfs_dquot
*dqp
, void *data
),
54 struct xfs_quotainfo
*qi
= mp
->m_quotainfo
;
55 struct radix_tree_root
*tree
= xfs_dquot_tree(qi
, type
);
67 struct xfs_dquot
*batch
[XFS_DQ_LOOKUP_BATCH
];
71 mutex_lock(&qi
->qi_tree_lock
);
72 nr_found
= radix_tree_gang_lookup(tree
, (void **)batch
,
73 next_index
, XFS_DQ_LOOKUP_BATCH
);
75 mutex_unlock(&qi
->qi_tree_lock
);
79 for (i
= 0; i
< nr_found
; i
++) {
80 struct xfs_dquot
*dqp
= batch
[i
];
82 next_index
= be32_to_cpu(dqp
->q_core
.d_id
) + 1;
84 error
= execute(batch
[i
], data
);
85 if (error
== -EAGAIN
) {
89 if (error
&& last_error
!= -EFSCORRUPTED
)
93 mutex_unlock(&qi
->qi_tree_lock
);
95 /* bail out if the filesystem is corrupted. */
96 if (last_error
== -EFSCORRUPTED
) {
100 /* we're done if id overflows back to zero */
115 * Purge a dquot from all tracking data structures and free it.
119 struct xfs_dquot
*dqp
,
122 struct xfs_mount
*mp
= dqp
->q_mount
;
123 struct xfs_quotainfo
*qi
= mp
->m_quotainfo
;
126 if ((dqp
->dq_flags
& XFS_DQ_FREEING
) || dqp
->q_nrefs
!= 0) {
131 dqp
->dq_flags
|= XFS_DQ_FREEING
;
136 * If we are turning this type of quotas off, we don't care
137 * about the dirty metadata sitting in this dquot. OTOH, if
138 * we're unmounting, we do care, so we flush it and wait.
140 if (XFS_DQ_IS_DIRTY(dqp
)) {
141 struct xfs_buf
*bp
= NULL
;
145 * We don't care about getting disk errors here. We need
146 * to purge this dquot anyway, so we go ahead regardless.
148 error
= xfs_qm_dqflush(dqp
, &bp
);
150 error
= xfs_bwrite(bp
);
156 ASSERT(atomic_read(&dqp
->q_pincount
) == 0);
157 ASSERT(XFS_FORCED_SHUTDOWN(mp
) ||
158 !test_bit(XFS_LI_IN_AIL
, &dqp
->q_logitem
.qli_item
.li_flags
));
163 radix_tree_delete(xfs_dquot_tree(qi
, dqp
->q_core
.d_flags
),
164 be32_to_cpu(dqp
->q_core
.d_id
));
168 * We move dquots to the freelist as soon as their reference count
169 * hits zero, so it really should be on the freelist here.
171 ASSERT(!list_empty(&dqp
->q_lru
));
172 list_lru_del(&qi
->qi_lru
, &dqp
->q_lru
);
173 XFS_STATS_DEC(mp
, xs_qm_dquot_unused
);
175 xfs_qm_dqdestroy(dqp
);
180 * Purge the dquot cache.
184 struct xfs_mount
*mp
,
187 if (flags
& XFS_QMOPT_UQUOTA
)
188 xfs_qm_dquot_walk(mp
, XFS_DQ_USER
, xfs_qm_dqpurge
, NULL
);
189 if (flags
& XFS_QMOPT_GQUOTA
)
190 xfs_qm_dquot_walk(mp
, XFS_DQ_GROUP
, xfs_qm_dqpurge
, NULL
);
191 if (flags
& XFS_QMOPT_PQUOTA
)
192 xfs_qm_dquot_walk(mp
, XFS_DQ_PROJ
, xfs_qm_dqpurge
, NULL
);
196 * Just destroy the quotainfo structure.
200 struct xfs_mount
*mp
)
202 if (mp
->m_quotainfo
) {
203 xfs_qm_dqpurge_all(mp
, XFS_QMOPT_QUOTALL
);
204 xfs_qm_destroy_quotainfo(mp
);
209 * Called from the vfsops layer.
212 xfs_qm_unmount_quotas(
216 * Release the dquots that root inode, et al might be holding,
217 * before we flush quotas and blow away the quotainfo structure.
219 ASSERT(mp
->m_rootip
);
220 xfs_qm_dqdetach(mp
->m_rootip
);
222 xfs_qm_dqdetach(mp
->m_rbmip
);
224 xfs_qm_dqdetach(mp
->m_rsumip
);
227 * Release the quota inodes.
229 if (mp
->m_quotainfo
) {
230 if (mp
->m_quotainfo
->qi_uquotaip
) {
231 xfs_irele(mp
->m_quotainfo
->qi_uquotaip
);
232 mp
->m_quotainfo
->qi_uquotaip
= NULL
;
234 if (mp
->m_quotainfo
->qi_gquotaip
) {
235 xfs_irele(mp
->m_quotainfo
->qi_gquotaip
);
236 mp
->m_quotainfo
->qi_gquotaip
= NULL
;
238 if (mp
->m_quotainfo
->qi_pquotaip
) {
239 xfs_irele(mp
->m_quotainfo
->qi_pquotaip
);
240 mp
->m_quotainfo
->qi_pquotaip
= NULL
;
247 struct xfs_inode
*ip
,
251 struct xfs_dquot
**IO_idqpp
)
253 struct xfs_dquot
*dqp
;
256 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
260 * See if we already have it in the inode itself. IO_idqpp is &i_udquot
261 * or &i_gdquot. This made the code look weird, but made the logic a lot
266 trace_xfs_dqattach_found(dqp
);
271 * Find the dquot from somewhere. This bumps the reference count of
272 * dquot and returns it locked. This can return ENOENT if dquot didn't
273 * exist on disk and we didn't ask it to allocate; ESRCH if quotas got
274 * turned off suddenly.
276 error
= xfs_qm_dqget_inode(ip
, type
, doalloc
, &dqp
);
280 trace_xfs_dqattach_get(dqp
);
283 * dqget may have dropped and re-acquired the ilock, but it guarantees
284 * that the dquot returned is the one that should go in the inode.
292 xfs_qm_need_dqattach(
293 struct xfs_inode
*ip
)
295 struct xfs_mount
*mp
= ip
->i_mount
;
297 if (!XFS_IS_QUOTA_RUNNING(mp
))
299 if (!XFS_IS_QUOTA_ON(mp
))
301 if (!XFS_NOT_DQATTACHED(mp
, ip
))
303 if (xfs_is_quota_inode(&mp
->m_sb
, ip
->i_ino
))
309 * Given a locked inode, attach dquot(s) to it, taking U/G/P-QUOTAON
311 * If @doalloc is true, the dquot(s) will be allocated if needed.
312 * Inode may get unlocked and relocked in here, and the caller must deal with
316 xfs_qm_dqattach_locked(
320 xfs_mount_t
*mp
= ip
->i_mount
;
323 if (!xfs_qm_need_dqattach(ip
))
326 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
328 if (XFS_IS_UQUOTA_ON(mp
) && !ip
->i_udquot
) {
329 error
= xfs_qm_dqattach_one(ip
, ip
->i_d
.di_uid
, XFS_DQ_USER
,
330 doalloc
, &ip
->i_udquot
);
333 ASSERT(ip
->i_udquot
);
336 if (XFS_IS_GQUOTA_ON(mp
) && !ip
->i_gdquot
) {
337 error
= xfs_qm_dqattach_one(ip
, ip
->i_d
.di_gid
, XFS_DQ_GROUP
,
338 doalloc
, &ip
->i_gdquot
);
341 ASSERT(ip
->i_gdquot
);
344 if (XFS_IS_PQUOTA_ON(mp
) && !ip
->i_pdquot
) {
345 error
= xfs_qm_dqattach_one(ip
, ip
->i_d
.di_projid
, XFS_DQ_PROJ
,
346 doalloc
, &ip
->i_pdquot
);
349 ASSERT(ip
->i_pdquot
);
354 * Don't worry about the dquots that we may have attached before any
355 * error - they'll get detached later if it has not already been done.
357 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
363 struct xfs_inode
*ip
)
367 if (!xfs_qm_need_dqattach(ip
))
370 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
371 error
= xfs_qm_dqattach_locked(ip
, false);
372 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
378 * Release dquots (and their references) if any.
379 * The inode should be locked EXCL except when this's called by
386 if (!(ip
->i_udquot
|| ip
->i_gdquot
|| ip
->i_pdquot
))
389 trace_xfs_dquot_dqdetach(ip
);
391 ASSERT(!xfs_is_quota_inode(&ip
->i_mount
->m_sb
, ip
->i_ino
));
393 xfs_qm_dqrele(ip
->i_udquot
);
397 xfs_qm_dqrele(ip
->i_gdquot
);
401 xfs_qm_dqrele(ip
->i_pdquot
);
406 struct xfs_qm_isolate
{
407 struct list_head buffers
;
408 struct list_head dispose
;
411 static enum lru_status
412 xfs_qm_dquot_isolate(
413 struct list_head
*item
,
414 struct list_lru_one
*lru
,
415 spinlock_t
*lru_lock
,
417 __releases(lru_lock
) __acquires(lru_lock
)
419 struct xfs_dquot
*dqp
= container_of(item
,
420 struct xfs_dquot
, q_lru
);
421 struct xfs_qm_isolate
*isol
= arg
;
423 if (!xfs_dqlock_nowait(dqp
))
427 * This dquot has acquired a reference in the meantime remove it from
428 * the freelist and try again.
432 XFS_STATS_INC(dqp
->q_mount
, xs_qm_dqwants
);
434 trace_xfs_dqreclaim_want(dqp
);
435 list_lru_isolate(lru
, &dqp
->q_lru
);
436 XFS_STATS_DEC(dqp
->q_mount
, xs_qm_dquot_unused
);
441 * If the dquot is dirty, flush it. If it's already being flushed, just
442 * skip it so there is time for the IO to complete before we try to
443 * reclaim it again on the next LRU pass.
445 if (!xfs_dqflock_nowait(dqp
)) {
450 if (XFS_DQ_IS_DIRTY(dqp
)) {
451 struct xfs_buf
*bp
= NULL
;
454 trace_xfs_dqreclaim_dirty(dqp
);
456 /* we have to drop the LRU lock to flush the dquot */
457 spin_unlock(lru_lock
);
459 error
= xfs_qm_dqflush(dqp
, &bp
);
461 goto out_unlock_dirty
;
463 xfs_buf_delwri_queue(bp
, &isol
->buffers
);
465 goto out_unlock_dirty
;
470 * Prevent lookups now that we are past the point of no return.
472 dqp
->dq_flags
|= XFS_DQ_FREEING
;
475 ASSERT(dqp
->q_nrefs
== 0);
476 list_lru_isolate_move(lru
, &dqp
->q_lru
, &isol
->dispose
);
477 XFS_STATS_DEC(dqp
->q_mount
, xs_qm_dquot_unused
);
478 trace_xfs_dqreclaim_done(dqp
);
479 XFS_STATS_INC(dqp
->q_mount
, xs_qm_dqreclaims
);
483 trace_xfs_dqreclaim_busy(dqp
);
484 XFS_STATS_INC(dqp
->q_mount
, xs_qm_dqreclaim_misses
);
488 trace_xfs_dqreclaim_busy(dqp
);
489 XFS_STATS_INC(dqp
->q_mount
, xs_qm_dqreclaim_misses
);
497 struct shrinker
*shrink
,
498 struct shrink_control
*sc
)
500 struct xfs_quotainfo
*qi
= container_of(shrink
,
501 struct xfs_quotainfo
, qi_shrinker
);
502 struct xfs_qm_isolate isol
;
506 if ((sc
->gfp_mask
& (__GFP_FS
|__GFP_DIRECT_RECLAIM
)) != (__GFP_FS
|__GFP_DIRECT_RECLAIM
))
509 INIT_LIST_HEAD(&isol
.buffers
);
510 INIT_LIST_HEAD(&isol
.dispose
);
512 freed
= list_lru_shrink_walk(&qi
->qi_lru
, sc
,
513 xfs_qm_dquot_isolate
, &isol
);
515 error
= xfs_buf_delwri_submit(&isol
.buffers
);
517 xfs_warn(NULL
, "%s: dquot reclaim failed", __func__
);
519 while (!list_empty(&isol
.dispose
)) {
520 struct xfs_dquot
*dqp
;
522 dqp
= list_first_entry(&isol
.dispose
, struct xfs_dquot
, q_lru
);
523 list_del_init(&dqp
->q_lru
);
524 xfs_qm_dqfree_one(dqp
);
532 struct shrinker
*shrink
,
533 struct shrink_control
*sc
)
535 struct xfs_quotainfo
*qi
= container_of(shrink
,
536 struct xfs_quotainfo
, qi_shrinker
);
538 return list_lru_shrink_count(&qi
->qi_lru
, sc
);
543 struct xfs_mount
*mp
,
545 struct xfs_quotainfo
*qinf
)
547 struct xfs_dquot
*dqp
;
548 struct xfs_def_quota
*defq
;
549 struct xfs_disk_dquot
*ddqp
;
552 error
= xfs_qm_dqget_uncached(mp
, 0, type
, &dqp
);
557 defq
= xfs_get_defquota(dqp
, qinf
);
560 * Timers and warnings have been already set, let's just set the
561 * default limits for this quota type
563 defq
->bhardlimit
= be64_to_cpu(ddqp
->d_blk_hardlimit
);
564 defq
->bsoftlimit
= be64_to_cpu(ddqp
->d_blk_softlimit
);
565 defq
->ihardlimit
= be64_to_cpu(ddqp
->d_ino_hardlimit
);
566 defq
->isoftlimit
= be64_to_cpu(ddqp
->d_ino_softlimit
);
567 defq
->rtbhardlimit
= be64_to_cpu(ddqp
->d_rtb_hardlimit
);
568 defq
->rtbsoftlimit
= be64_to_cpu(ddqp
->d_rtb_softlimit
);
569 xfs_qm_dqdestroy(dqp
);
572 /* Initialize quota time limits from the root dquot. */
574 xfs_qm_init_timelimits(
575 struct xfs_mount
*mp
,
576 struct xfs_quotainfo
*qinf
)
578 struct xfs_disk_dquot
*ddqp
;
579 struct xfs_dquot
*dqp
;
583 qinf
->qi_btimelimit
= XFS_QM_BTIMELIMIT
;
584 qinf
->qi_itimelimit
= XFS_QM_ITIMELIMIT
;
585 qinf
->qi_rtbtimelimit
= XFS_QM_RTBTIMELIMIT
;
586 qinf
->qi_bwarnlimit
= XFS_QM_BWARNLIMIT
;
587 qinf
->qi_iwarnlimit
= XFS_QM_IWARNLIMIT
;
588 qinf
->qi_rtbwarnlimit
= XFS_QM_RTBWARNLIMIT
;
591 * We try to get the limits from the superuser's limits fields.
592 * This is quite hacky, but it is standard quota practice.
594 * Since we may not have done a quotacheck by this point, just read
595 * the dquot without attaching it to any hashtables or lists.
597 * Timers and warnings are globally set by the first timer found in
598 * user/group/proj quota types, otherwise a default value is used.
599 * This should be split into different fields per quota type.
601 if (XFS_IS_UQUOTA_RUNNING(mp
))
603 else if (XFS_IS_GQUOTA_RUNNING(mp
))
607 error
= xfs_qm_dqget_uncached(mp
, 0, type
, &dqp
);
613 * The warnings and timers set the grace period given to
614 * a user or group before he or she can not perform any
615 * more writing. If it is zero, a default is used.
618 qinf
->qi_btimelimit
= be32_to_cpu(ddqp
->d_btimer
);
620 qinf
->qi_itimelimit
= be32_to_cpu(ddqp
->d_itimer
);
621 if (ddqp
->d_rtbtimer
)
622 qinf
->qi_rtbtimelimit
= be32_to_cpu(ddqp
->d_rtbtimer
);
624 qinf
->qi_bwarnlimit
= be16_to_cpu(ddqp
->d_bwarns
);
626 qinf
->qi_iwarnlimit
= be16_to_cpu(ddqp
->d_iwarns
);
627 if (ddqp
->d_rtbwarns
)
628 qinf
->qi_rtbwarnlimit
= be16_to_cpu(ddqp
->d_rtbwarns
);
630 xfs_qm_dqdestroy(dqp
);
634 * This initializes all the quota information that's kept in the
638 xfs_qm_init_quotainfo(
639 struct xfs_mount
*mp
)
641 struct xfs_quotainfo
*qinf
;
644 ASSERT(XFS_IS_QUOTA_RUNNING(mp
));
646 qinf
= mp
->m_quotainfo
= kmem_zalloc(sizeof(struct xfs_quotainfo
), 0);
648 error
= list_lru_init(&qinf
->qi_lru
);
653 * See if quotainodes are setup, and if not, allocate them,
654 * and change the superblock accordingly.
656 error
= xfs_qm_init_quotainos(mp
);
660 INIT_RADIX_TREE(&qinf
->qi_uquota_tree
, GFP_NOFS
);
661 INIT_RADIX_TREE(&qinf
->qi_gquota_tree
, GFP_NOFS
);
662 INIT_RADIX_TREE(&qinf
->qi_pquota_tree
, GFP_NOFS
);
663 mutex_init(&qinf
->qi_tree_lock
);
665 /* mutex used to serialize quotaoffs */
666 mutex_init(&qinf
->qi_quotaofflock
);
668 /* Precalc some constants */
669 qinf
->qi_dqchunklen
= XFS_FSB_TO_BB(mp
, XFS_DQUOT_CLUSTER_SIZE_FSB
);
670 qinf
->qi_dqperchunk
= xfs_calc_dquots_per_chunk(qinf
->qi_dqchunklen
);
672 mp
->m_qflags
|= (mp
->m_sb
.sb_qflags
& XFS_ALL_QUOTA_CHKD
);
674 xfs_qm_init_timelimits(mp
, qinf
);
676 if (XFS_IS_UQUOTA_RUNNING(mp
))
677 xfs_qm_set_defquota(mp
, XFS_DQ_USER
, qinf
);
678 if (XFS_IS_GQUOTA_RUNNING(mp
))
679 xfs_qm_set_defquota(mp
, XFS_DQ_GROUP
, qinf
);
680 if (XFS_IS_PQUOTA_RUNNING(mp
))
681 xfs_qm_set_defquota(mp
, XFS_DQ_PROJ
, qinf
);
683 qinf
->qi_shrinker
.count_objects
= xfs_qm_shrink_count
;
684 qinf
->qi_shrinker
.scan_objects
= xfs_qm_shrink_scan
;
685 qinf
->qi_shrinker
.seeks
= DEFAULT_SEEKS
;
686 qinf
->qi_shrinker
.flags
= SHRINKER_NUMA_AWARE
;
688 error
= register_shrinker(&qinf
->qi_shrinker
);
695 mutex_destroy(&qinf
->qi_quotaofflock
);
696 mutex_destroy(&qinf
->qi_tree_lock
);
697 xfs_qm_destroy_quotainos(qinf
);
699 list_lru_destroy(&qinf
->qi_lru
);
702 mp
->m_quotainfo
= NULL
;
707 * Gets called when unmounting a filesystem or when all quotas get
709 * This purges the quota inodes, destroys locks and frees itself.
712 xfs_qm_destroy_quotainfo(
713 struct xfs_mount
*mp
)
715 struct xfs_quotainfo
*qi
;
717 qi
= mp
->m_quotainfo
;
720 unregister_shrinker(&qi
->qi_shrinker
);
721 list_lru_destroy(&qi
->qi_lru
);
722 xfs_qm_destroy_quotainos(qi
);
723 mutex_destroy(&qi
->qi_tree_lock
);
724 mutex_destroy(&qi
->qi_quotaofflock
);
726 mp
->m_quotainfo
= NULL
;
730 * Create an inode and return with a reference already taken, but unlocked
731 * This is how we create quota inodes
741 bool need_alloc
= true;
745 * With superblock that doesn't have separate pquotino, we
746 * share an inode between gquota and pquota. If the on-disk
747 * superblock has GQUOTA and the filesystem is now mounted
748 * with PQUOTA, just use sb_gquotino for sb_pquotino and
751 if (!xfs_sb_version_has_pquotino(&mp
->m_sb
) &&
752 (flags
& (XFS_QMOPT_PQUOTA
|XFS_QMOPT_GQUOTA
))) {
753 xfs_ino_t ino
= NULLFSINO
;
755 if ((flags
& XFS_QMOPT_PQUOTA
) &&
756 (mp
->m_sb
.sb_gquotino
!= NULLFSINO
)) {
757 ino
= mp
->m_sb
.sb_gquotino
;
758 if (XFS_IS_CORRUPT(mp
,
759 mp
->m_sb
.sb_pquotino
!= NULLFSINO
))
760 return -EFSCORRUPTED
;
761 } else if ((flags
& XFS_QMOPT_GQUOTA
) &&
762 (mp
->m_sb
.sb_pquotino
!= NULLFSINO
)) {
763 ino
= mp
->m_sb
.sb_pquotino
;
764 if (XFS_IS_CORRUPT(mp
,
765 mp
->m_sb
.sb_gquotino
!= NULLFSINO
))
766 return -EFSCORRUPTED
;
768 if (ino
!= NULLFSINO
) {
769 error
= xfs_iget(mp
, NULL
, ino
, 0, 0, ip
);
772 mp
->m_sb
.sb_gquotino
= NULLFSINO
;
773 mp
->m_sb
.sb_pquotino
= NULLFSINO
;
778 error
= xfs_trans_alloc(mp
, &M_RES(mp
)->tr_create
,
779 XFS_QM_QINOCREATE_SPACE_RES(mp
), 0, 0, &tp
);
784 error
= xfs_dir_ialloc(&tp
, NULL
, S_IFREG
, 1, 0, 0, ip
);
786 xfs_trans_cancel(tp
);
792 * Make the changes in the superblock, and log those too.
793 * sbfields arg may contain fields other than *QUOTINO;
794 * VERSIONNUM for example.
796 spin_lock(&mp
->m_sb_lock
);
797 if (flags
& XFS_QMOPT_SBVERSION
) {
798 ASSERT(!xfs_sb_version_hasquota(&mp
->m_sb
));
800 xfs_sb_version_addquota(&mp
->m_sb
);
801 mp
->m_sb
.sb_uquotino
= NULLFSINO
;
802 mp
->m_sb
.sb_gquotino
= NULLFSINO
;
803 mp
->m_sb
.sb_pquotino
= NULLFSINO
;
805 /* qflags will get updated fully _after_ quotacheck */
806 mp
->m_sb
.sb_qflags
= mp
->m_qflags
& XFS_ALL_QUOTA_ACCT
;
808 if (flags
& XFS_QMOPT_UQUOTA
)
809 mp
->m_sb
.sb_uquotino
= (*ip
)->i_ino
;
810 else if (flags
& XFS_QMOPT_GQUOTA
)
811 mp
->m_sb
.sb_gquotino
= (*ip
)->i_ino
;
813 mp
->m_sb
.sb_pquotino
= (*ip
)->i_ino
;
814 spin_unlock(&mp
->m_sb_lock
);
817 error
= xfs_trans_commit(tp
);
819 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
820 xfs_alert(mp
, "%s failed (error %d)!", __func__
, error
);
823 xfs_finish_inode_setup(*ip
);
829 xfs_qm_reset_dqcounts(
835 struct xfs_dqblk
*dqb
;
839 trace_xfs_reset_dqcounts(bp
, _RET_IP_
);
842 * Reset all counters and timers. They'll be
843 * started afresh by xfs_qm_quotacheck.
846 j
= (int)XFS_FSB_TO_B(mp
, XFS_DQUOT_CLUSTER_SIZE_FSB
) /
848 ASSERT(mp
->m_quotainfo
->qi_dqperchunk
== j
);
851 for (j
= 0; j
< mp
->m_quotainfo
->qi_dqperchunk
; j
++) {
852 struct xfs_disk_dquot
*ddq
;
854 ddq
= (struct xfs_disk_dquot
*)&dqb
[j
];
857 * Do a sanity check, and if needed, repair the dqblk. Don't
858 * output any warnings because it's perfectly possible to
859 * find uninitialised dquot blks. See comment in
862 fa
= xfs_dqblk_verify(mp
, &dqb
[j
], id
+ j
, type
);
864 xfs_dqblk_repair(mp
, &dqb
[j
], id
+ j
, type
);
867 * Reset type in case we are reusing group quota file for
868 * project quotas or vice versa
881 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
882 xfs_update_cksum((char *)&dqb
[j
],
883 sizeof(struct xfs_dqblk
),
890 xfs_qm_reset_dqcounts_all(
891 struct xfs_mount
*mp
,
894 xfs_filblks_t blkcnt
,
896 struct list_head
*buffer_list
)
903 type
= flags
& XFS_QMOPT_UQUOTA
? XFS_DQ_USER
:
904 (flags
& XFS_QMOPT_PQUOTA
? XFS_DQ_PROJ
: XFS_DQ_GROUP
);
908 * Blkcnt arg can be a very big number, and might even be
909 * larger than the log itself. So, we have to break it up into
910 * manageable-sized transactions.
911 * Note that we don't start a permanent transaction here; we might
912 * not be able to get a log reservation for the whole thing up front,
913 * and we don't really care to either, because we just discard
914 * everything if we were to crash in the middle of this loop.
917 error
= xfs_trans_read_buf(mp
, NULL
, mp
->m_ddev_targp
,
918 XFS_FSB_TO_DADDR(mp
, bno
),
919 mp
->m_quotainfo
->qi_dqchunklen
, 0, &bp
,
923 * CRC and validation errors will return a EFSCORRUPTED here. If
924 * this occurs, re-read without CRC validation so that we can
925 * repair the damage via xfs_qm_reset_dqcounts(). This process
926 * will leave a trace in the log indicating corruption has
929 if (error
== -EFSCORRUPTED
) {
930 error
= xfs_trans_read_buf(mp
, NULL
, mp
->m_ddev_targp
,
931 XFS_FSB_TO_DADDR(mp
, bno
),
932 mp
->m_quotainfo
->qi_dqchunklen
, 0, &bp
,
940 * A corrupt buffer might not have a verifier attached, so
941 * make sure we have the correct one attached before writeback
944 bp
->b_ops
= &xfs_dquot_buf_ops
;
945 xfs_qm_reset_dqcounts(mp
, bp
, firstid
, type
);
946 xfs_buf_delwri_queue(bp
, buffer_list
);
949 /* goto the next block. */
951 firstid
+= mp
->m_quotainfo
->qi_dqperchunk
;
958 * Iterate over all allocated dquot blocks in this quota inode, zeroing all
959 * counters for every chunk of dquots that we find.
962 xfs_qm_reset_dqcounts_buf(
963 struct xfs_mount
*mp
,
964 struct xfs_inode
*qip
,
966 struct list_head
*buffer_list
)
968 struct xfs_bmbt_irec
*map
;
969 int i
, nmaps
; /* number of map entries */
970 int error
; /* return value */
971 xfs_fileoff_t lblkno
;
972 xfs_filblks_t maxlblkcnt
;
974 xfs_fsblock_t rablkno
;
975 xfs_filblks_t rablkcnt
;
979 * This looks racy, but we can't keep an inode lock across a
980 * trans_reserve. But, this gets called during quotacheck, and that
981 * happens only at mount time which is single threaded.
983 if (qip
->i_d
.di_nblocks
== 0)
986 map
= kmem_alloc(XFS_DQITER_MAP_SIZE
* sizeof(*map
), 0);
989 maxlblkcnt
= XFS_B_TO_FSB(mp
, mp
->m_super
->s_maxbytes
);
993 nmaps
= XFS_DQITER_MAP_SIZE
;
995 * We aren't changing the inode itself. Just changing
996 * some of its data. No new blocks are added here, and
997 * the inode is never added to the transaction.
999 lock_mode
= xfs_ilock_data_map_shared(qip
);
1000 error
= xfs_bmapi_read(qip
, lblkno
, maxlblkcnt
- lblkno
,
1002 xfs_iunlock(qip
, lock_mode
);
1006 ASSERT(nmaps
<= XFS_DQITER_MAP_SIZE
);
1007 for (i
= 0; i
< nmaps
; i
++) {
1008 ASSERT(map
[i
].br_startblock
!= DELAYSTARTBLOCK
);
1009 ASSERT(map
[i
].br_blockcount
);
1012 lblkno
+= map
[i
].br_blockcount
;
1014 if (map
[i
].br_startblock
== HOLESTARTBLOCK
)
1017 firstid
= (xfs_dqid_t
) map
[i
].br_startoff
*
1018 mp
->m_quotainfo
->qi_dqperchunk
;
1020 * Do a read-ahead on the next extent.
1022 if ((i
+1 < nmaps
) &&
1023 (map
[i
+1].br_startblock
!= HOLESTARTBLOCK
)) {
1024 rablkcnt
= map
[i
+1].br_blockcount
;
1025 rablkno
= map
[i
+1].br_startblock
;
1026 while (rablkcnt
--) {
1027 xfs_buf_readahead(mp
->m_ddev_targp
,
1028 XFS_FSB_TO_DADDR(mp
, rablkno
),
1029 mp
->m_quotainfo
->qi_dqchunklen
,
1030 &xfs_dquot_buf_ops
);
1035 * Iterate thru all the blks in the extent and
1036 * reset the counters of all the dquots inside them.
1038 error
= xfs_qm_reset_dqcounts_all(mp
, firstid
,
1039 map
[i
].br_startblock
,
1040 map
[i
].br_blockcount
,
1041 flags
, buffer_list
);
1045 } while (nmaps
> 0);
1053 * Called by dqusage_adjust in doing a quotacheck.
1055 * Given the inode, and a dquot id this updates both the incore dqout as well
1056 * as the buffer copy. This is so that once the quotacheck is done, we can
1057 * just log all the buffers, as opposed to logging numerous updates to
1058 * individual dquots.
1061 xfs_qm_quotacheck_dqadjust(
1062 struct xfs_inode
*ip
,
1067 struct xfs_mount
*mp
= ip
->i_mount
;
1068 struct xfs_dquot
*dqp
;
1072 id
= xfs_qm_id_for_quotatype(ip
, type
);
1073 error
= xfs_qm_dqget(mp
, id
, type
, true, &dqp
);
1076 * Shouldn't be able to turn off quotas here.
1078 ASSERT(error
!= -ESRCH
);
1079 ASSERT(error
!= -ENOENT
);
1083 trace_xfs_dqadjust(dqp
);
1086 * Adjust the inode count and the block count to reflect this inode's
1089 be64_add_cpu(&dqp
->q_core
.d_icount
, 1);
1090 dqp
->q_res_icount
++;
1092 be64_add_cpu(&dqp
->q_core
.d_bcount
, nblks
);
1093 dqp
->q_res_bcount
+= nblks
;
1096 be64_add_cpu(&dqp
->q_core
.d_rtbcount
, rtblks
);
1097 dqp
->q_res_rtbcount
+= rtblks
;
1101 * Set default limits, adjust timers (since we changed usages)
1103 * There are no timers for the default values set in the root dquot.
1105 if (dqp
->q_core
.d_id
) {
1106 xfs_qm_adjust_dqlimits(mp
, dqp
);
1107 xfs_qm_adjust_dqtimers(mp
, &dqp
->q_core
);
1110 dqp
->dq_flags
|= XFS_DQ_DIRTY
;
1116 * callback routine supplied to bulkstat(). Given an inumber, find its
1117 * dquots and update them to account for resources taken by that inode.
1121 xfs_qm_dqusage_adjust(
1122 struct xfs_mount
*mp
,
1123 struct xfs_trans
*tp
,
1127 struct xfs_inode
*ip
;
1129 xfs_filblks_t rtblks
= 0; /* total rt blks */
1132 ASSERT(XFS_IS_QUOTA_RUNNING(mp
));
1135 * rootino must have its resources accounted for, not so with the quota
1138 if (xfs_is_quota_inode(&mp
->m_sb
, ino
))
1142 * We don't _need_ to take the ilock EXCL here because quotacheck runs
1143 * at mount time and therefore nobody will be racing chown/chproj.
1145 error
= xfs_iget(mp
, tp
, ino
, XFS_IGET_DONTCACHE
, 0, &ip
);
1146 if (error
== -EINVAL
|| error
== -ENOENT
)
1151 ASSERT(ip
->i_delayed_blks
== 0);
1153 if (XFS_IS_REALTIME_INODE(ip
)) {
1154 struct xfs_ifork
*ifp
= XFS_IFORK_PTR(ip
, XFS_DATA_FORK
);
1156 if (!(ifp
->if_flags
& XFS_IFEXTENTS
)) {
1157 error
= xfs_iread_extents(tp
, ip
, XFS_DATA_FORK
);
1162 xfs_bmap_count_leaves(ifp
, &rtblks
);
1165 nblks
= (xfs_qcnt_t
)ip
->i_d
.di_nblocks
- rtblks
;
1168 * Add the (disk blocks and inode) resources occupied by this
1169 * inode to its dquots. We do this adjustment in the incore dquot,
1170 * and also copy the changes to its buffer.
1171 * We don't care about putting these changes in a transaction
1172 * envelope because if we crash in the middle of a 'quotacheck'
1173 * we have to start from the beginning anyway.
1174 * Once we're done, we'll log all the dquot bufs.
1176 * The *QUOTA_ON checks below may look pretty racy, but quotachecks
1177 * and quotaoffs don't race. (Quotachecks happen at mount time only).
1179 if (XFS_IS_UQUOTA_ON(mp
)) {
1180 error
= xfs_qm_quotacheck_dqadjust(ip
, XFS_DQ_USER
, nblks
,
1186 if (XFS_IS_GQUOTA_ON(mp
)) {
1187 error
= xfs_qm_quotacheck_dqadjust(ip
, XFS_DQ_GROUP
, nblks
,
1193 if (XFS_IS_PQUOTA_ON(mp
)) {
1194 error
= xfs_qm_quotacheck_dqadjust(ip
, XFS_DQ_PROJ
, nblks
,
1207 struct xfs_dquot
*dqp
,
1210 struct xfs_mount
*mp
= dqp
->q_mount
;
1211 struct list_head
*buffer_list
= data
;
1212 struct xfs_buf
*bp
= NULL
;
1216 if (dqp
->dq_flags
& XFS_DQ_FREEING
)
1218 if (!XFS_DQ_IS_DIRTY(dqp
))
1222 * The only way the dquot is already flush locked by the time quotacheck
1223 * gets here is if reclaim flushed it before the dqadjust walk dirtied
1224 * it for the final time. Quotacheck collects all dquot bufs in the
1225 * local delwri queue before dquots are dirtied, so reclaim can't have
1226 * possibly queued it for I/O. The only way out is to push the buffer to
1227 * cycle the flush lock.
1229 if (!xfs_dqflock_nowait(dqp
)) {
1230 /* buf is pinned in-core by delwri list */
1231 bp
= xfs_buf_incore(mp
->m_ddev_targp
, dqp
->q_blkno
,
1232 mp
->m_quotainfo
->qi_dqchunklen
, 0);
1239 xfs_buf_delwri_pushbuf(bp
, buffer_list
);
1246 error
= xfs_qm_dqflush(dqp
, &bp
);
1250 xfs_buf_delwri_queue(bp
, buffer_list
);
1258 * Walk thru all the filesystem inodes and construct a consistent view
1259 * of the disk quota world. If the quotacheck fails, disable quotas.
1267 LIST_HEAD (buffer_list
);
1268 struct xfs_inode
*uip
= mp
->m_quotainfo
->qi_uquotaip
;
1269 struct xfs_inode
*gip
= mp
->m_quotainfo
->qi_gquotaip
;
1270 struct xfs_inode
*pip
= mp
->m_quotainfo
->qi_pquotaip
;
1274 ASSERT(uip
|| gip
|| pip
);
1275 ASSERT(XFS_IS_QUOTA_RUNNING(mp
));
1277 xfs_notice(mp
, "Quotacheck needed: Please wait.");
1280 * First we go thru all the dquots on disk, USR and GRP/PRJ, and reset
1281 * their counters to zero. We need a clean slate.
1282 * We don't log our changes till later.
1285 error
= xfs_qm_reset_dqcounts_buf(mp
, uip
, XFS_QMOPT_UQUOTA
,
1289 flags
|= XFS_UQUOTA_CHKD
;
1293 error
= xfs_qm_reset_dqcounts_buf(mp
, gip
, XFS_QMOPT_GQUOTA
,
1297 flags
|= XFS_GQUOTA_CHKD
;
1301 error
= xfs_qm_reset_dqcounts_buf(mp
, pip
, XFS_QMOPT_PQUOTA
,
1305 flags
|= XFS_PQUOTA_CHKD
;
1308 error
= xfs_iwalk_threaded(mp
, 0, 0, xfs_qm_dqusage_adjust
, 0, true,
1314 * We've made all the changes that we need to make incore. Flush them
1315 * down to disk buffers if everything was updated successfully.
1317 if (XFS_IS_UQUOTA_ON(mp
)) {
1318 error
= xfs_qm_dquot_walk(mp
, XFS_DQ_USER
, xfs_qm_flush_one
,
1321 if (XFS_IS_GQUOTA_ON(mp
)) {
1322 error2
= xfs_qm_dquot_walk(mp
, XFS_DQ_GROUP
, xfs_qm_flush_one
,
1327 if (XFS_IS_PQUOTA_ON(mp
)) {
1328 error2
= xfs_qm_dquot_walk(mp
, XFS_DQ_PROJ
, xfs_qm_flush_one
,
1334 error2
= xfs_buf_delwri_submit(&buffer_list
);
1339 * We can get this error if we couldn't do a dquot allocation inside
1340 * xfs_qm_dqusage_adjust (via bulkstat). We don't care about the
1341 * dirty dquots that might be cached, we just want to get rid of them
1342 * and turn quotaoff. The dquots won't be attached to any of the inodes
1343 * at this point (because we intentionally didn't in dqget_noattach).
1346 xfs_qm_dqpurge_all(mp
, XFS_QMOPT_QUOTALL
);
1351 * If one type of quotas is off, then it will lose its
1352 * quotachecked status, since we won't be doing accounting for
1353 * that type anymore.
1355 mp
->m_qflags
&= ~XFS_ALL_QUOTA_CHKD
;
1356 mp
->m_qflags
|= flags
;
1359 xfs_buf_delwri_cancel(&buffer_list
);
1363 "Quotacheck: Unsuccessful (Error %d): Disabling quotas.",
1366 * We must turn off quotas.
1368 ASSERT(mp
->m_quotainfo
!= NULL
);
1369 xfs_qm_destroy_quotainfo(mp
);
1370 if (xfs_mount_reset_sbqflags(mp
)) {
1372 "Quotacheck: Failed to reset quota flags.");
1375 xfs_notice(mp
, "Quotacheck: Done.");
1380 * This is called from xfs_mountfs to start quotas and initialize all
1381 * necessary data structures like quotainfo. This is also responsible for
1382 * running a quotacheck as necessary. We are guaranteed that the superblock
1383 * is consistently read in at this point.
1385 * If we fail here, the mount will continue with quota turned off. We don't
1386 * need to inidicate success or failure at all.
1389 xfs_qm_mount_quotas(
1390 struct xfs_mount
*mp
)
1396 * If quotas on realtime volumes is not supported, we disable
1397 * quotas immediately.
1399 if (mp
->m_sb
.sb_rextents
) {
1400 xfs_notice(mp
, "Cannot turn on quotas for realtime filesystem");
1405 ASSERT(XFS_IS_QUOTA_RUNNING(mp
));
1408 * Allocate the quotainfo structure inside the mount struct, and
1409 * create quotainode(s), and change/rev superblock if necessary.
1411 error
= xfs_qm_init_quotainfo(mp
);
1414 * We must turn off quotas.
1416 ASSERT(mp
->m_quotainfo
== NULL
);
1421 * If any of the quotas are not consistent, do a quotacheck.
1423 if (XFS_QM_NEED_QUOTACHECK(mp
)) {
1424 error
= xfs_qm_quotacheck(mp
);
1426 /* Quotacheck failed and disabled quotas. */
1431 * If one type of quotas is off, then it will lose its
1432 * quotachecked status, since we won't be doing accounting for
1433 * that type anymore.
1435 if (!XFS_IS_UQUOTA_ON(mp
))
1436 mp
->m_qflags
&= ~XFS_UQUOTA_CHKD
;
1437 if (!XFS_IS_GQUOTA_ON(mp
))
1438 mp
->m_qflags
&= ~XFS_GQUOTA_CHKD
;
1439 if (!XFS_IS_PQUOTA_ON(mp
))
1440 mp
->m_qflags
&= ~XFS_PQUOTA_CHKD
;
1444 * We actually don't have to acquire the m_sb_lock at all.
1445 * This can only be called from mount, and that's single threaded. XXX
1447 spin_lock(&mp
->m_sb_lock
);
1448 sbf
= mp
->m_sb
.sb_qflags
;
1449 mp
->m_sb
.sb_qflags
= mp
->m_qflags
& XFS_MOUNT_QUOTA_ALL
;
1450 spin_unlock(&mp
->m_sb_lock
);
1452 if (sbf
!= (mp
->m_qflags
& XFS_MOUNT_QUOTA_ALL
)) {
1453 if (xfs_sync_sb(mp
, false)) {
1455 * We could only have been turning quotas off.
1456 * We aren't in very good shape actually because
1457 * the incore structures are convinced that quotas are
1458 * off, but the on disk superblock doesn't know that !
1460 ASSERT(!(XFS_IS_QUOTA_RUNNING(mp
)));
1461 xfs_alert(mp
, "%s: Superblock update failed!",
1467 xfs_warn(mp
, "Failed to initialize disk quotas.");
1473 * This is called after the superblock has been read in and we're ready to
1474 * iget the quota inodes.
1477 xfs_qm_init_quotainos(
1480 struct xfs_inode
*uip
= NULL
;
1481 struct xfs_inode
*gip
= NULL
;
1482 struct xfs_inode
*pip
= NULL
;
1486 ASSERT(mp
->m_quotainfo
);
1489 * Get the uquota and gquota inodes
1491 if (xfs_sb_version_hasquota(&mp
->m_sb
)) {
1492 if (XFS_IS_UQUOTA_ON(mp
) &&
1493 mp
->m_sb
.sb_uquotino
!= NULLFSINO
) {
1494 ASSERT(mp
->m_sb
.sb_uquotino
> 0);
1495 error
= xfs_iget(mp
, NULL
, mp
->m_sb
.sb_uquotino
,
1500 if (XFS_IS_GQUOTA_ON(mp
) &&
1501 mp
->m_sb
.sb_gquotino
!= NULLFSINO
) {
1502 ASSERT(mp
->m_sb
.sb_gquotino
> 0);
1503 error
= xfs_iget(mp
, NULL
, mp
->m_sb
.sb_gquotino
,
1508 if (XFS_IS_PQUOTA_ON(mp
) &&
1509 mp
->m_sb
.sb_pquotino
!= NULLFSINO
) {
1510 ASSERT(mp
->m_sb
.sb_pquotino
> 0);
1511 error
= xfs_iget(mp
, NULL
, mp
->m_sb
.sb_pquotino
,
1517 flags
|= XFS_QMOPT_SBVERSION
;
1521 * Create the three inodes, if they don't exist already. The changes
1522 * made above will get added to a transaction and logged in one of
1523 * the qino_alloc calls below. If the device is readonly,
1524 * temporarily switch to read-write to do this.
1526 if (XFS_IS_UQUOTA_ON(mp
) && uip
== NULL
) {
1527 error
= xfs_qm_qino_alloc(mp
, &uip
,
1528 flags
| XFS_QMOPT_UQUOTA
);
1532 flags
&= ~XFS_QMOPT_SBVERSION
;
1534 if (XFS_IS_GQUOTA_ON(mp
) && gip
== NULL
) {
1535 error
= xfs_qm_qino_alloc(mp
, &gip
,
1536 flags
| XFS_QMOPT_GQUOTA
);
1540 flags
&= ~XFS_QMOPT_SBVERSION
;
1542 if (XFS_IS_PQUOTA_ON(mp
) && pip
== NULL
) {
1543 error
= xfs_qm_qino_alloc(mp
, &pip
,
1544 flags
| XFS_QMOPT_PQUOTA
);
1549 mp
->m_quotainfo
->qi_uquotaip
= uip
;
1550 mp
->m_quotainfo
->qi_gquotaip
= gip
;
1551 mp
->m_quotainfo
->qi_pquotaip
= pip
;
1566 xfs_qm_destroy_quotainos(
1567 struct xfs_quotainfo
*qi
)
1569 if (qi
->qi_uquotaip
) {
1570 xfs_irele(qi
->qi_uquotaip
);
1571 qi
->qi_uquotaip
= NULL
; /* paranoia */
1573 if (qi
->qi_gquotaip
) {
1574 xfs_irele(qi
->qi_gquotaip
);
1575 qi
->qi_gquotaip
= NULL
;
1577 if (qi
->qi_pquotaip
) {
1578 xfs_irele(qi
->qi_pquotaip
);
1579 qi
->qi_pquotaip
= NULL
;
1585 struct xfs_dquot
*dqp
)
1587 struct xfs_mount
*mp
= dqp
->q_mount
;
1588 struct xfs_quotainfo
*qi
= mp
->m_quotainfo
;
1590 mutex_lock(&qi
->qi_tree_lock
);
1591 radix_tree_delete(xfs_dquot_tree(qi
, dqp
->q_core
.d_flags
),
1592 be32_to_cpu(dqp
->q_core
.d_id
));
1595 mutex_unlock(&qi
->qi_tree_lock
);
1597 xfs_qm_dqdestroy(dqp
);
1600 /* --------------- utility functions for vnodeops ---------------- */
1604 * Given an inode, a uid, gid and prid make sure that we have
1605 * allocated relevant dquot(s) on disk, and that we won't exceed inode
1606 * quotas by creating this file.
1607 * This also attaches dquot(s) to the given inode after locking it,
1608 * and returns the dquots corresponding to the uid and/or gid.
1610 * in : inode (unlocked)
1611 * out : udquot, gdquot with references taken and unlocked
1615 struct xfs_inode
*ip
,
1620 struct xfs_dquot
**O_udqpp
,
1621 struct xfs_dquot
**O_gdqpp
,
1622 struct xfs_dquot
**O_pdqpp
)
1624 struct xfs_mount
*mp
= ip
->i_mount
;
1625 struct xfs_dquot
*uq
= NULL
;
1626 struct xfs_dquot
*gq
= NULL
;
1627 struct xfs_dquot
*pq
= NULL
;
1631 if (!XFS_IS_QUOTA_RUNNING(mp
) || !XFS_IS_QUOTA_ON(mp
))
1634 lockflags
= XFS_ILOCK_EXCL
;
1635 xfs_ilock(ip
, lockflags
);
1637 if ((flags
& XFS_QMOPT_INHERIT
) && XFS_INHERIT_GID(ip
))
1638 gid
= ip
->i_d
.di_gid
;
1641 * Attach the dquot(s) to this inode, doing a dquot allocation
1642 * if necessary. The dquot(s) will not be locked.
1644 if (XFS_NOT_DQATTACHED(mp
, ip
)) {
1645 error
= xfs_qm_dqattach_locked(ip
, true);
1647 xfs_iunlock(ip
, lockflags
);
1652 if ((flags
& XFS_QMOPT_UQUOTA
) && XFS_IS_UQUOTA_ON(mp
)) {
1653 if (ip
->i_d
.di_uid
!= uid
) {
1655 * What we need is the dquot that has this uid, and
1656 * if we send the inode to dqget, the uid of the inode
1657 * takes priority over what's sent in the uid argument.
1658 * We must unlock inode here before calling dqget if
1659 * we're not sending the inode, because otherwise
1660 * we'll deadlock by doing trans_reserve while
1663 xfs_iunlock(ip
, lockflags
);
1664 error
= xfs_qm_dqget(mp
, uid
, XFS_DQ_USER
, true, &uq
);
1666 ASSERT(error
!= -ENOENT
);
1670 * Get the ilock in the right order.
1673 lockflags
= XFS_ILOCK_SHARED
;
1674 xfs_ilock(ip
, lockflags
);
1677 * Take an extra reference, because we'll return
1680 ASSERT(ip
->i_udquot
);
1681 uq
= xfs_qm_dqhold(ip
->i_udquot
);
1684 if ((flags
& XFS_QMOPT_GQUOTA
) && XFS_IS_GQUOTA_ON(mp
)) {
1685 if (ip
->i_d
.di_gid
!= gid
) {
1686 xfs_iunlock(ip
, lockflags
);
1687 error
= xfs_qm_dqget(mp
, gid
, XFS_DQ_GROUP
, true, &gq
);
1689 ASSERT(error
!= -ENOENT
);
1693 lockflags
= XFS_ILOCK_SHARED
;
1694 xfs_ilock(ip
, lockflags
);
1696 ASSERT(ip
->i_gdquot
);
1697 gq
= xfs_qm_dqhold(ip
->i_gdquot
);
1700 if ((flags
& XFS_QMOPT_PQUOTA
) && XFS_IS_PQUOTA_ON(mp
)) {
1701 if (ip
->i_d
.di_projid
!= prid
) {
1702 xfs_iunlock(ip
, lockflags
);
1703 error
= xfs_qm_dqget(mp
, (xfs_dqid_t
)prid
, XFS_DQ_PROJ
,
1706 ASSERT(error
!= -ENOENT
);
1710 lockflags
= XFS_ILOCK_SHARED
;
1711 xfs_ilock(ip
, lockflags
);
1713 ASSERT(ip
->i_pdquot
);
1714 pq
= xfs_qm_dqhold(ip
->i_pdquot
);
1718 trace_xfs_dquot_dqalloc(ip
);
1720 xfs_iunlock(ip
, lockflags
);
1742 * Actually transfer ownership, and do dquot modifications.
1743 * These were already reserved.
1747 struct xfs_trans
*tp
,
1748 struct xfs_inode
*ip
,
1749 struct xfs_dquot
**IO_olddq
,
1750 struct xfs_dquot
*newdq
)
1752 struct xfs_dquot
*prevdq
;
1753 uint bfield
= XFS_IS_REALTIME_INODE(ip
) ?
1754 XFS_TRANS_DQ_RTBCOUNT
: XFS_TRANS_DQ_BCOUNT
;
1757 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
1758 ASSERT(XFS_IS_QUOTA_RUNNING(ip
->i_mount
));
1763 ASSERT(prevdq
!= newdq
);
1765 xfs_trans_mod_dquot(tp
, prevdq
, bfield
, -(ip
->i_d
.di_nblocks
));
1766 xfs_trans_mod_dquot(tp
, prevdq
, XFS_TRANS_DQ_ICOUNT
, -1);
1768 /* the sparkling new dquot */
1769 xfs_trans_mod_dquot(tp
, newdq
, bfield
, ip
->i_d
.di_nblocks
);
1770 xfs_trans_mod_dquot(tp
, newdq
, XFS_TRANS_DQ_ICOUNT
, 1);
1773 * Take an extra reference, because the inode is going to keep
1774 * this dquot pointer even after the trans_commit.
1776 *IO_olddq
= xfs_qm_dqhold(newdq
);
1782 * Quota reservations for setattr(AT_UID|AT_GID|AT_PROJID).
1785 xfs_qm_vop_chown_reserve(
1786 struct xfs_trans
*tp
,
1787 struct xfs_inode
*ip
,
1788 struct xfs_dquot
*udqp
,
1789 struct xfs_dquot
*gdqp
,
1790 struct xfs_dquot
*pdqp
,
1793 struct xfs_mount
*mp
= ip
->i_mount
;
1795 unsigned int blkflags
, prjflags
= 0;
1796 struct xfs_dquot
*udq_unres
= NULL
;
1797 struct xfs_dquot
*gdq_unres
= NULL
;
1798 struct xfs_dquot
*pdq_unres
= NULL
;
1799 struct xfs_dquot
*udq_delblks
= NULL
;
1800 struct xfs_dquot
*gdq_delblks
= NULL
;
1801 struct xfs_dquot
*pdq_delblks
= NULL
;
1805 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
|XFS_ILOCK_SHARED
));
1806 ASSERT(XFS_IS_QUOTA_RUNNING(mp
));
1808 delblks
= ip
->i_delayed_blks
;
1809 blkflags
= XFS_IS_REALTIME_INODE(ip
) ?
1810 XFS_QMOPT_RES_RTBLKS
: XFS_QMOPT_RES_REGBLKS
;
1812 if (XFS_IS_UQUOTA_ON(mp
) && udqp
&&
1813 ip
->i_d
.di_uid
!= be32_to_cpu(udqp
->q_core
.d_id
)) {
1816 * If there are delayed allocation blocks, then we have to
1817 * unreserve those from the old dquot, and add them to the
1821 ASSERT(ip
->i_udquot
);
1822 udq_unres
= ip
->i_udquot
;
1825 if (XFS_IS_GQUOTA_ON(ip
->i_mount
) && gdqp
&&
1826 ip
->i_d
.di_gid
!= be32_to_cpu(gdqp
->q_core
.d_id
)) {
1829 ASSERT(ip
->i_gdquot
);
1830 gdq_unres
= ip
->i_gdquot
;
1834 if (XFS_IS_PQUOTA_ON(ip
->i_mount
) && pdqp
&&
1835 ip
->i_d
.di_projid
!= be32_to_cpu(pdqp
->q_core
.d_id
)) {
1836 prjflags
= XFS_QMOPT_ENOSPC
;
1839 ASSERT(ip
->i_pdquot
);
1840 pdq_unres
= ip
->i_pdquot
;
1844 error
= xfs_trans_reserve_quota_bydquots(tp
, ip
->i_mount
,
1845 udq_delblks
, gdq_delblks
, pdq_delblks
,
1846 ip
->i_d
.di_nblocks
, 1,
1847 flags
| blkflags
| prjflags
);
1852 * Do the delayed blks reservations/unreservations now. Since, these
1853 * are done without the help of a transaction, if a reservation fails
1854 * its previous reservations won't be automatically undone by trans
1855 * code. So, we have to do it manually here.
1859 * Do the reservations first. Unreservation can't fail.
1861 ASSERT(udq_delblks
|| gdq_delblks
|| pdq_delblks
);
1862 ASSERT(udq_unres
|| gdq_unres
|| pdq_unres
);
1863 error
= xfs_trans_reserve_quota_bydquots(NULL
, ip
->i_mount
,
1864 udq_delblks
, gdq_delblks
, pdq_delblks
,
1865 (xfs_qcnt_t
)delblks
, 0,
1866 flags
| blkflags
| prjflags
);
1869 xfs_trans_reserve_quota_bydquots(NULL
, ip
->i_mount
,
1870 udq_unres
, gdq_unres
, pdq_unres
,
1871 -((xfs_qcnt_t
)delblks
), 0, blkflags
);
1878 xfs_qm_vop_rename_dqattach(
1879 struct xfs_inode
**i_tab
)
1881 struct xfs_mount
*mp
= i_tab
[0]->i_mount
;
1884 if (!XFS_IS_QUOTA_RUNNING(mp
) || !XFS_IS_QUOTA_ON(mp
))
1887 for (i
= 0; (i
< 4 && i_tab
[i
]); i
++) {
1888 struct xfs_inode
*ip
= i_tab
[i
];
1892 * Watch out for duplicate entries in the table.
1894 if (i
== 0 || ip
!= i_tab
[i
-1]) {
1895 if (XFS_NOT_DQATTACHED(mp
, ip
)) {
1896 error
= xfs_qm_dqattach(ip
);
1906 xfs_qm_vop_create_dqattach(
1907 struct xfs_trans
*tp
,
1908 struct xfs_inode
*ip
,
1909 struct xfs_dquot
*udqp
,
1910 struct xfs_dquot
*gdqp
,
1911 struct xfs_dquot
*pdqp
)
1913 struct xfs_mount
*mp
= tp
->t_mountp
;
1915 if (!XFS_IS_QUOTA_RUNNING(mp
) || !XFS_IS_QUOTA_ON(mp
))
1918 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
1919 ASSERT(XFS_IS_QUOTA_RUNNING(mp
));
1921 if (udqp
&& XFS_IS_UQUOTA_ON(mp
)) {
1922 ASSERT(ip
->i_udquot
== NULL
);
1923 ASSERT(ip
->i_d
.di_uid
== be32_to_cpu(udqp
->q_core
.d_id
));
1925 ip
->i_udquot
= xfs_qm_dqhold(udqp
);
1926 xfs_trans_mod_dquot(tp
, udqp
, XFS_TRANS_DQ_ICOUNT
, 1);
1928 if (gdqp
&& XFS_IS_GQUOTA_ON(mp
)) {
1929 ASSERT(ip
->i_gdquot
== NULL
);
1930 ASSERT(ip
->i_d
.di_gid
== be32_to_cpu(gdqp
->q_core
.d_id
));
1931 ip
->i_gdquot
= xfs_qm_dqhold(gdqp
);
1932 xfs_trans_mod_dquot(tp
, gdqp
, XFS_TRANS_DQ_ICOUNT
, 1);
1934 if (pdqp
&& XFS_IS_PQUOTA_ON(mp
)) {
1935 ASSERT(ip
->i_pdquot
== NULL
);
1936 ASSERT(ip
->i_d
.di_projid
== be32_to_cpu(pdqp
->q_core
.d_id
));
1938 ip
->i_pdquot
= xfs_qm_dqhold(pdqp
);
1939 xfs_trans_mod_dquot(tp
, pdqp
, XFS_TRANS_DQ_ICOUNT
, 1);