2 * Copyright (c) 2000-2003 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 #include "xfs_trans.h"
27 #include "xfs_alloc.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_quota.h"
30 #include "xfs_mount.h"
31 #include "xfs_bmap_btree.h"
32 #include "xfs_alloc_btree.h"
33 #include "xfs_ialloc_btree.h"
34 #include "xfs_dir2_sf.h"
35 #include "xfs_attr_sf.h"
36 #include "xfs_dinode.h"
37 #include "xfs_inode.h"
38 #include "xfs_btree.h"
39 #include "xfs_ialloc.h"
41 #include "xfs_rtalloc.h"
42 #include "xfs_error.h"
43 #include "xfs_itable.h"
46 #include "xfs_buf_item.h"
47 #include "xfs_trans_space.h"
48 #include "xfs_trans_priv.h"
50 #include "xfs_trace.h"
57 dquot hash-chain lock (hashlock)
58 xqm dquot freelist lock (freelistlock
59 mount's dquot list lock (mplistlock)
60 user dquot lock - lock ordering among dquots is based on the uid or gid
61 group dquot lock - similar to udquots. Between the two dquots, the udquot
62 has to be locked first.
63 pin lock - the dquot lock must be held to take this lock.
67 STATIC
void xfs_qm_dqflush_done(xfs_buf_t
*, xfs_dq_logitem_t
*);
70 xfs_buftarg_t
*xfs_dqerror_target
;
73 int xfs_dqerror_mod
= 33;
76 static struct lock_class_key xfs_dquot_other_class
;
79 * Allocate and initialize a dquot. We don't always allocate fresh memory;
80 * we try to reclaim a free dquot if the number of incore dquots are above
82 * The only field inside the core that gets initialized at this point
83 * is the d_id field. The idea is to fill in the entire q_core
84 * when we read in the on disk dquot.
93 boolean_t brandnewdquot
;
95 brandnewdquot
= xfs_qm_dqalloc_incore(&dqp
);
97 dqp
->q_core
.d_id
= cpu_to_be32(id
);
101 * No need to re-initialize these if this is a reclaimed dquot.
104 INIT_LIST_HEAD(&dqp
->q_freelist
);
105 mutex_init(&dqp
->q_qlock
);
106 init_waitqueue_head(&dqp
->q_pinwait
);
109 * Because we want to use a counting completion, complete
110 * the flush completion once to allow a single access to
111 * the flush completion without blocking.
113 init_completion(&dqp
->q_flush
);
114 complete(&dqp
->q_flush
);
116 trace_xfs_dqinit(dqp
);
119 * Only the q_core portion was zeroed in dqreclaim_one().
120 * So, we need to reset others.
124 INIT_LIST_HEAD(&dqp
->q_mplist
);
125 INIT_LIST_HEAD(&dqp
->q_hashlist
);
126 dqp
->q_bufoffset
= 0;
127 dqp
->q_fileoffset
= 0;
128 dqp
->q_transp
= NULL
;
129 dqp
->q_gdquot
= NULL
;
130 dqp
->q_res_bcount
= 0;
131 dqp
->q_res_icount
= 0;
132 dqp
->q_res_rtbcount
= 0;
133 atomic_set(&dqp
->q_pincount
, 0);
135 ASSERT(list_empty(&dqp
->q_freelist
));
137 trace_xfs_dqreuse(dqp
);
141 * In either case we need to make sure group quotas have a different
142 * lock class than user quotas, to make sure lockdep knows we can
143 * locks of one of each at the same time.
145 if (!(type
& XFS_DQ_USER
))
146 lockdep_set_class(&dqp
->q_qlock
, &xfs_dquot_other_class
);
149 * log item gets initialized later
155 * This is called to free all the memory associated with a dquot
161 ASSERT(list_empty(&dqp
->q_freelist
));
163 mutex_destroy(&dqp
->q_qlock
);
164 sv_destroy(&dqp
->q_pinwait
);
165 kmem_zone_free(xfs_Gqm
->qm_dqzone
, dqp
);
167 atomic_dec(&xfs_Gqm
->qm_totaldquots
);
171 * This is what a 'fresh' dquot inside a dquot chunk looks like on disk.
180 * Caller has zero'd the entire dquot 'chunk' already.
182 d
->dd_diskdq
.d_magic
= cpu_to_be16(XFS_DQUOT_MAGIC
);
183 d
->dd_diskdq
.d_version
= XFS_DQUOT_VERSION
;
184 d
->dd_diskdq
.d_id
= cpu_to_be32(id
);
185 d
->dd_diskdq
.d_flags
= type
;
189 * If default limits are in force, push them into the dquot now.
190 * We overwrite the dquot limits only if they are zero and this
191 * is not the root dquot.
194 xfs_qm_adjust_dqlimits(
198 xfs_quotainfo_t
*q
= mp
->m_quotainfo
;
202 if (q
->qi_bsoftlimit
&& !d
->d_blk_softlimit
)
203 d
->d_blk_softlimit
= cpu_to_be64(q
->qi_bsoftlimit
);
204 if (q
->qi_bhardlimit
&& !d
->d_blk_hardlimit
)
205 d
->d_blk_hardlimit
= cpu_to_be64(q
->qi_bhardlimit
);
206 if (q
->qi_isoftlimit
&& !d
->d_ino_softlimit
)
207 d
->d_ino_softlimit
= cpu_to_be64(q
->qi_isoftlimit
);
208 if (q
->qi_ihardlimit
&& !d
->d_ino_hardlimit
)
209 d
->d_ino_hardlimit
= cpu_to_be64(q
->qi_ihardlimit
);
210 if (q
->qi_rtbsoftlimit
&& !d
->d_rtb_softlimit
)
211 d
->d_rtb_softlimit
= cpu_to_be64(q
->qi_rtbsoftlimit
);
212 if (q
->qi_rtbhardlimit
&& !d
->d_rtb_hardlimit
)
213 d
->d_rtb_hardlimit
= cpu_to_be64(q
->qi_rtbhardlimit
);
217 * Check the limits and timers of a dquot and start or reset timers
219 * This gets called even when quota enforcement is OFF, which makes our
220 * life a little less complicated. (We just don't reject any quota
221 * reservations in that case, when enforcement is off).
222 * We also return 0 as the values of the timers in Q_GETQUOTA calls, when
224 * In contrast, warnings are a little different in that they don't
225 * 'automatically' get started when limits get exceeded. They do
226 * get reset to zero, however, when we find the count to be under
227 * the soft limit (they are only ever set non-zero via userspace).
230 xfs_qm_adjust_dqtimers(
237 if (d
->d_blk_hardlimit
)
238 ASSERT(be64_to_cpu(d
->d_blk_softlimit
) <=
239 be64_to_cpu(d
->d_blk_hardlimit
));
240 if (d
->d_ino_hardlimit
)
241 ASSERT(be64_to_cpu(d
->d_ino_softlimit
) <=
242 be64_to_cpu(d
->d_ino_hardlimit
));
243 if (d
->d_rtb_hardlimit
)
244 ASSERT(be64_to_cpu(d
->d_rtb_softlimit
) <=
245 be64_to_cpu(d
->d_rtb_hardlimit
));
248 if ((d
->d_blk_softlimit
&&
249 (be64_to_cpu(d
->d_bcount
) >=
250 be64_to_cpu(d
->d_blk_softlimit
))) ||
251 (d
->d_blk_hardlimit
&&
252 (be64_to_cpu(d
->d_bcount
) >=
253 be64_to_cpu(d
->d_blk_hardlimit
)))) {
254 d
->d_btimer
= cpu_to_be32(get_seconds() +
255 mp
->m_quotainfo
->qi_btimelimit
);
260 if ((!d
->d_blk_softlimit
||
261 (be64_to_cpu(d
->d_bcount
) <
262 be64_to_cpu(d
->d_blk_softlimit
))) &&
263 (!d
->d_blk_hardlimit
||
264 (be64_to_cpu(d
->d_bcount
) <
265 be64_to_cpu(d
->d_blk_hardlimit
)))) {
271 if ((d
->d_ino_softlimit
&&
272 (be64_to_cpu(d
->d_icount
) >=
273 be64_to_cpu(d
->d_ino_softlimit
))) ||
274 (d
->d_ino_hardlimit
&&
275 (be64_to_cpu(d
->d_icount
) >=
276 be64_to_cpu(d
->d_ino_hardlimit
)))) {
277 d
->d_itimer
= cpu_to_be32(get_seconds() +
278 mp
->m_quotainfo
->qi_itimelimit
);
283 if ((!d
->d_ino_softlimit
||
284 (be64_to_cpu(d
->d_icount
) <
285 be64_to_cpu(d
->d_ino_softlimit
))) &&
286 (!d
->d_ino_hardlimit
||
287 (be64_to_cpu(d
->d_icount
) <
288 be64_to_cpu(d
->d_ino_hardlimit
)))) {
293 if (!d
->d_rtbtimer
) {
294 if ((d
->d_rtb_softlimit
&&
295 (be64_to_cpu(d
->d_rtbcount
) >=
296 be64_to_cpu(d
->d_rtb_softlimit
))) ||
297 (d
->d_rtb_hardlimit
&&
298 (be64_to_cpu(d
->d_rtbcount
) >=
299 be64_to_cpu(d
->d_rtb_hardlimit
)))) {
300 d
->d_rtbtimer
= cpu_to_be32(get_seconds() +
301 mp
->m_quotainfo
->qi_rtbtimelimit
);
306 if ((!d
->d_rtb_softlimit
||
307 (be64_to_cpu(d
->d_rtbcount
) <
308 be64_to_cpu(d
->d_rtb_softlimit
))) &&
309 (!d
->d_rtb_hardlimit
||
310 (be64_to_cpu(d
->d_rtbcount
) <
311 be64_to_cpu(d
->d_rtb_hardlimit
)))) {
318 * initialize a buffer full of dquots and log the whole thing
321 xfs_qm_init_dquot_blk(
328 struct xfs_quotainfo
*q
= mp
->m_quotainfo
;
333 ASSERT(XFS_BUF_ISBUSY(bp
));
334 ASSERT(XFS_BUF_VALUSEMA(bp
) <= 0);
336 d
= (xfs_dqblk_t
*)XFS_BUF_PTR(bp
);
339 * ID of the first dquot in the block - id's are zero based.
341 curid
= id
- (id
% q
->qi_dqperchunk
);
343 memset(d
, 0, BBTOB(q
->qi_dqchunklen
));
344 for (i
= 0; i
< q
->qi_dqperchunk
; i
++, d
++, curid
++)
345 xfs_qm_dqinit_core(curid
, type
, d
);
346 xfs_trans_dquot_buf(tp
, bp
,
347 (type
& XFS_DQ_USER
? XFS_BLF_UDQUOT_BUF
:
348 ((type
& XFS_DQ_PROJ
) ? XFS_BLF_PDQUOT_BUF
:
349 XFS_BLF_GDQUOT_BUF
)));
350 xfs_trans_log_buf(tp
, bp
, 0, BBTOB(q
->qi_dqchunklen
) - 1);
356 * Allocate a block and fill it with dquots.
357 * This is called when the bmapi finds a hole.
365 xfs_fileoff_t offset_fsb
,
368 xfs_fsblock_t firstblock
;
369 xfs_bmap_free_t flist
;
371 int nmaps
, error
, committed
;
373 xfs_trans_t
*tp
= *tpp
;
377 trace_xfs_dqalloc(dqp
);
380 * Initialize the bmap freelist prior to calling bmapi code.
382 xfs_bmap_init(&flist
, &firstblock
);
383 xfs_ilock(quotip
, XFS_ILOCK_EXCL
);
385 * Return if this type of quotas is turned off while we didn't
388 if (XFS_IS_THIS_QUOTA_OFF(dqp
)) {
389 xfs_iunlock(quotip
, XFS_ILOCK_EXCL
);
394 * xfs_trans_commit normally decrements the vnode ref count
395 * when it unlocks the inode. Since we want to keep the quota
396 * inode around, we bump the vnode ref count now.
400 xfs_trans_ijoin(tp
, quotip
, XFS_ILOCK_EXCL
);
402 if ((error
= xfs_bmapi(tp
, quotip
,
403 offset_fsb
, XFS_DQUOT_CLUSTER_SIZE_FSB
,
404 XFS_BMAPI_METADATA
| XFS_BMAPI_WRITE
,
406 XFS_QM_DQALLOC_SPACE_RES(mp
),
407 &map
, &nmaps
, &flist
, NULL
))) {
410 ASSERT(map
.br_blockcount
== XFS_DQUOT_CLUSTER_SIZE_FSB
);
412 ASSERT((map
.br_startblock
!= DELAYSTARTBLOCK
) &&
413 (map
.br_startblock
!= HOLESTARTBLOCK
));
416 * Keep track of the blkno to save a lookup later
418 dqp
->q_blkno
= XFS_FSB_TO_DADDR(mp
, map
.br_startblock
);
420 /* now we can just get the buffer (there's nothing to read yet) */
421 bp
= xfs_trans_get_buf(tp
, mp
->m_ddev_targp
,
423 mp
->m_quotainfo
->qi_dqchunklen
,
425 if (!bp
|| (error
= XFS_BUF_GETERROR(bp
)))
428 * Make a chunk of dquots out of this buffer and log
431 xfs_qm_init_dquot_blk(tp
, mp
, be32_to_cpu(dqp
->q_core
.d_id
),
432 dqp
->dq_flags
& XFS_DQ_ALLTYPES
, bp
);
435 * xfs_bmap_finish() may commit the current transaction and
436 * start a second transaction if the freelist is not empty.
438 * Since we still want to modify this buffer, we need to
439 * ensure that the buffer is not released on commit of
440 * the first transaction and ensure the buffer is added to the
441 * second transaction.
443 * If there is only one transaction then don't stop the buffer
444 * from being released when it commits later on.
447 xfs_trans_bhold(tp
, bp
);
449 if ((error
= xfs_bmap_finish(tpp
, &flist
, &committed
))) {
455 xfs_trans_bjoin(tp
, bp
);
457 xfs_trans_bhold_release(tp
, bp
);
464 xfs_bmap_cancel(&flist
);
466 xfs_iunlock(quotip
, XFS_ILOCK_EXCL
);
472 * Maps a dquot to the buffer containing its on-disk version.
473 * This returns a ptr to the buffer containing the on-disk dquot
474 * in the bpp param, and a ptr to the on-disk dquot within that buffer
480 xfs_disk_dquot_t
**O_ddpp
,
489 xfs_disk_dquot_t
*ddq
;
492 xfs_trans_t
*tp
= (tpp
? *tpp
: NULL
);
495 id
= be32_to_cpu(dqp
->q_core
.d_id
);
500 * If we don't know where the dquot lives, find out.
502 if (dqp
->q_blkno
== (xfs_daddr_t
) 0) {
503 /* We use the id as an index */
504 dqp
->q_fileoffset
= (xfs_fileoff_t
)id
/
505 mp
->m_quotainfo
->qi_dqperchunk
;
507 quotip
= XFS_DQ_TO_QIP(dqp
);
508 xfs_ilock(quotip
, XFS_ILOCK_SHARED
);
510 * Return if this type of quotas is turned off while we didn't
513 if (XFS_IS_THIS_QUOTA_OFF(dqp
)) {
514 xfs_iunlock(quotip
, XFS_ILOCK_SHARED
);
518 * Find the block map; no allocations yet
520 error
= xfs_bmapi(NULL
, quotip
, dqp
->q_fileoffset
,
521 XFS_DQUOT_CLUSTER_SIZE_FSB
,
523 NULL
, 0, &map
, &nmaps
, NULL
, NULL
);
525 xfs_iunlock(quotip
, XFS_ILOCK_SHARED
);
529 ASSERT(map
.br_blockcount
== 1);
532 * offset of dquot in the (fixed sized) dquot chunk.
534 dqp
->q_bufoffset
= (id
% mp
->m_quotainfo
->qi_dqperchunk
) *
536 if (map
.br_startblock
== HOLESTARTBLOCK
) {
538 * We don't allocate unless we're asked to
540 if (!(flags
& XFS_QMOPT_DQALLOC
))
544 if ((error
= xfs_qm_dqalloc(tpp
, mp
, dqp
, quotip
,
545 dqp
->q_fileoffset
, &bp
)))
551 * store the blkno etc so that we don't have to do the
552 * mapping all the time
554 dqp
->q_blkno
= XFS_FSB_TO_DADDR(mp
, map
.br_startblock
);
557 ASSERT(dqp
->q_blkno
!= DELAYSTARTBLOCK
);
558 ASSERT(dqp
->q_blkno
!= HOLESTARTBLOCK
);
561 * Read in the buffer, unless we've just done the allocation
562 * (in which case we already have the buf).
565 trace_xfs_dqtobp_read(dqp
);
567 error
= xfs_trans_read_buf(mp
, tp
, mp
->m_ddev_targp
,
569 mp
->m_quotainfo
->qi_dqchunklen
,
572 return XFS_ERROR(error
);
574 ASSERT(XFS_BUF_ISBUSY(bp
));
575 ASSERT(XFS_BUF_VALUSEMA(bp
) <= 0);
578 * calculate the location of the dquot inside the buffer.
580 ddq
= (xfs_disk_dquot_t
*)((char *)XFS_BUF_PTR(bp
) + dqp
->q_bufoffset
);
583 * A simple sanity check in case we got a corrupted dquot...
585 if (xfs_qm_dqcheck(ddq
, id
, dqp
->dq_flags
& XFS_DQ_ALLTYPES
,
586 flags
& (XFS_QMOPT_DQREPAIR
|XFS_QMOPT_DOWARN
),
588 if (!(flags
& XFS_QMOPT_DQREPAIR
)) {
589 xfs_trans_brelse(tp
, bp
);
590 return XFS_ERROR(EIO
);
592 XFS_BUF_BUSY(bp
); /* We dirtied this */
603 * Read in the ondisk dquot using dqtobp() then copy it to an incore version,
604 * and release the buffer immediately.
612 xfs_dquot_t
*dqp
, /* dquot to get filled in */
615 xfs_disk_dquot_t
*ddqp
;
622 trace_xfs_dqread(dqp
);
625 * get a pointer to the on-disk dquot and the buffer containing it
626 * dqp already knows its own type (GROUP/USER).
628 if ((error
= xfs_qm_dqtobp(tpp
, dqp
, &ddqp
, &bp
, flags
))) {
633 /* copy everything from disk dquot to the incore dquot */
634 memcpy(&dqp
->q_core
, ddqp
, sizeof(xfs_disk_dquot_t
));
635 ASSERT(be32_to_cpu(dqp
->q_core
.d_id
) == id
);
636 xfs_qm_dquot_logitem_init(dqp
);
639 * Reservation counters are defined as reservation plus current usage
640 * to avoid having to add everytime.
642 dqp
->q_res_bcount
= be64_to_cpu(ddqp
->d_bcount
);
643 dqp
->q_res_icount
= be64_to_cpu(ddqp
->d_icount
);
644 dqp
->q_res_rtbcount
= be64_to_cpu(ddqp
->d_rtbcount
);
646 /* Mark the buf so that this will stay incore a little longer */
647 XFS_BUF_SET_VTYPE_REF(bp
, B_FS_DQUOT
, XFS_DQUOT_REF
);
650 * We got the buffer with a xfs_trans_read_buf() (in dqtobp())
651 * So we need to release with xfs_trans_brelse().
652 * The strategy here is identical to that of inodes; we lock
653 * the dquot in xfs_qm_dqget() before making it accessible to
654 * others. This is because dquots, like inodes, need a good level of
655 * concurrency, and we don't want to take locks on the entire buffers
656 * for dquot accesses.
657 * Note also that the dquot buffer may even be dirty at this point, if
658 * this particular dquot was repaired. We still aren't afraid to
659 * brelse it because we have the changes incore.
661 ASSERT(XFS_BUF_ISBUSY(bp
));
662 ASSERT(XFS_BUF_VALUSEMA(bp
) <= 0);
663 xfs_trans_brelse(tp
, bp
);
670 * allocate an incore dquot from the kernel heap,
671 * and fill its core with quota information kept on disk.
672 * If XFS_QMOPT_DQALLOC is set, it'll allocate a dquot on disk
673 * if it wasn't already allocated.
678 xfs_dqid_t id
, /* gid or uid, depending on type */
679 uint type
, /* UDQUOT or GDQUOT */
680 uint flags
, /* DQALLOC, DQREPAIR */
681 xfs_dquot_t
**O_dqpp
)/* OUT : incore dquot, not locked */
688 dqp
= xfs_qm_dqinit(mp
, id
, type
);
690 if (flags
& XFS_QMOPT_DQALLOC
) {
691 tp
= xfs_trans_alloc(mp
, XFS_TRANS_QM_DQALLOC
);
692 error
= xfs_trans_reserve(tp
, XFS_QM_DQALLOC_SPACE_RES(mp
),
693 XFS_WRITE_LOG_RES(mp
) +
694 BBTOB(mp
->m_quotainfo
->qi_dqchunklen
) - 1 +
697 XFS_TRANS_PERM_LOG_RES
,
698 XFS_WRITE_LOG_COUNT
);
703 cancelflags
= XFS_TRANS_RELEASE_LOG_RES
;
707 * Read it from disk; xfs_dqread() takes care of
708 * all the necessary initialization of dquot's fields (locks, etc)
710 if ((error
= xfs_qm_dqread(&tp
, id
, dqp
, flags
))) {
712 * This can happen if quotas got turned off (ESRCH),
713 * or if the dquot didn't exist on disk and we ask to
716 trace_xfs_dqread_fail(dqp
);
717 cancelflags
|= XFS_TRANS_ABORT
;
721 if ((error
= xfs_trans_commit(tp
, XFS_TRANS_RELEASE_LOG_RES
)))
731 xfs_trans_cancel(tp
, cancelflags
);
733 xfs_qm_dqdestroy(dqp
);
739 * Lookup a dquot in the incore dquot hashtable. We keep two separate
740 * hashtables for user and group dquots; and, these are global tables
741 * inside the XQM, not per-filesystem tables.
742 * The hash chain must be locked by caller, and it is left locked
743 * on return. Returning dquot is locked.
750 xfs_dquot_t
**O_dqpp
)
755 ASSERT(mutex_is_locked(&qh
->qh_lock
));
757 flist_locked
= B_FALSE
;
760 * Traverse the hashchain looking for a match
762 list_for_each_entry(dqp
, &qh
->qh_list
, q_hashlist
) {
764 * We already have the hashlock. We don't need the
765 * dqlock to look at the id field of the dquot, since the
766 * id can't be modified without the hashlock anyway.
768 if (be32_to_cpu(dqp
->q_core
.d_id
) == id
&& dqp
->q_mount
== mp
) {
769 trace_xfs_dqlookup_found(dqp
);
772 * All in core dquots must be on the dqlist of mp
774 ASSERT(!list_empty(&dqp
->q_mplist
));
777 if (dqp
->q_nrefs
== 0) {
778 ASSERT(!list_empty(&dqp
->q_freelist
));
779 if (!mutex_trylock(&xfs_Gqm
->qm_dqfrlist_lock
)) {
780 trace_xfs_dqlookup_want(dqp
);
783 * We may have raced with dqreclaim_one()
784 * (and lost). So, flag that we don't
785 * want the dquot to be reclaimed.
787 dqp
->dq_flags
|= XFS_DQ_WANT
;
789 mutex_lock(&xfs_Gqm
->qm_dqfrlist_lock
);
791 dqp
->dq_flags
&= ~(XFS_DQ_WANT
);
793 flist_locked
= B_TRUE
;
797 * id couldn't have changed; we had the hashlock all
800 ASSERT(be32_to_cpu(dqp
->q_core
.d_id
) == id
);
803 if (dqp
->q_nrefs
!= 0) {
804 mutex_unlock(&xfs_Gqm
->qm_dqfrlist_lock
);
805 flist_locked
= B_FALSE
;
807 /* take it off the freelist */
808 trace_xfs_dqlookup_freelist(dqp
);
809 list_del_init(&dqp
->q_freelist
);
810 xfs_Gqm
->qm_dqfrlist_cnt
--;
817 mutex_unlock(&xfs_Gqm
->qm_dqfrlist_lock
);
819 * move the dquot to the front of the hashchain
821 ASSERT(mutex_is_locked(&qh
->qh_lock
));
822 list_move(&dqp
->q_hashlist
, &qh
->qh_list
);
823 trace_xfs_dqlookup_done(dqp
);
830 ASSERT(mutex_is_locked(&qh
->qh_lock
));
835 * Given the file system, inode OR id, and type (UDQUOT/GDQUOT), return a
836 * a locked dquot, doing an allocation (if requested) as needed.
837 * When both an inode and an id are given, the inode's id takes precedence.
838 * That is, if the id changes while we don't hold the ilock inside this
839 * function, the new dquot is returned, not necessarily the one requested
840 * in the id argument.
845 xfs_inode_t
*ip
, /* locked inode (optional) */
846 xfs_dqid_t id
, /* uid/projid/gid depending on type */
847 uint type
, /* XFS_DQ_USER/XFS_DQ_PROJ/XFS_DQ_GROUP */
848 uint flags
, /* DQALLOC, DQSUSER, DQREPAIR, DOWARN */
849 xfs_dquot_t
**O_dqpp
) /* OUT : locked incore dquot */
856 ASSERT(XFS_IS_QUOTA_RUNNING(mp
));
857 if ((! XFS_IS_UQUOTA_ON(mp
) && type
== XFS_DQ_USER
) ||
858 (! XFS_IS_PQUOTA_ON(mp
) && type
== XFS_DQ_PROJ
) ||
859 (! XFS_IS_GQUOTA_ON(mp
) && type
== XFS_DQ_GROUP
)) {
862 h
= XFS_DQ_HASH(mp
, id
, type
);
865 if (xfs_do_dqerror
) {
866 if ((xfs_dqerror_target
== mp
->m_ddev_targp
) &&
867 (xfs_dqreq_num
++ % xfs_dqerror_mod
) == 0) {
868 cmn_err(CE_DEBUG
, "Returning error in dqget");
877 ASSERT(type
== XFS_DQ_USER
||
878 type
== XFS_DQ_PROJ
||
879 type
== XFS_DQ_GROUP
);
881 ASSERT(xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
882 if (type
== XFS_DQ_USER
)
883 ASSERT(ip
->i_udquot
== NULL
);
885 ASSERT(ip
->i_gdquot
== NULL
);
888 mutex_lock(&h
->qh_lock
);
891 * Look in the cache (hashtable).
892 * The chain is kept locked during lookup.
894 if (xfs_qm_dqlookup(mp
, id
, h
, O_dqpp
) == 0) {
895 XQM_STATS_INC(xqmstats
.xs_qm_dqcachehits
);
897 * The dquot was found, moved to the front of the chain,
898 * taken off the freelist if it was on it, and locked
899 * at this point. Just unlock the hashchain and return.
902 ASSERT(XFS_DQ_IS_LOCKED(*O_dqpp
));
903 mutex_unlock(&h
->qh_lock
);
904 trace_xfs_dqget_hit(*O_dqpp
);
905 return (0); /* success */
907 XQM_STATS_INC(xqmstats
.xs_qm_dqcachemisses
);
910 * Dquot cache miss. We don't want to keep the inode lock across
911 * a (potential) disk read. Also we don't want to deal with the lock
912 * ordering between quotainode and this inode. OTOH, dropping the inode
913 * lock here means dealing with a chown that can happen before
914 * we re-acquire the lock.
917 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
919 * Save the hashchain version stamp, and unlock the chain, so that
920 * we don't keep the lock across a disk read
922 version
= h
->qh_version
;
923 mutex_unlock(&h
->qh_lock
);
926 * Allocate the dquot on the kernel heap, and read the ondisk
927 * portion off the disk. Also, do all the necessary initialization
928 * This can return ENOENT if dquot didn't exist on disk and we didn't
929 * ask it to allocate; ESRCH if quotas got turned off suddenly.
931 if ((error
= xfs_qm_idtodq(mp
, id
, type
,
932 flags
& (XFS_QMOPT_DQALLOC
|XFS_QMOPT_DQREPAIR
|
936 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
941 * See if this is mount code calling to look at the overall quota limits
942 * which are stored in the id == 0 user or group's dquot.
943 * Since we may not have done a quotacheck by this point, just return
944 * the dquot without attaching it to any hashtables, lists, etc, or even
945 * taking a reference.
946 * The caller must dqdestroy this once done.
948 if (flags
& XFS_QMOPT_DQSUSER
) {
955 * Dquot lock comes after hashlock in the lock ordering
958 xfs_ilock(ip
, XFS_ILOCK_EXCL
);
961 * A dquot could be attached to this inode by now, since
962 * we had dropped the ilock.
964 if (type
== XFS_DQ_USER
) {
965 if (!XFS_IS_UQUOTA_ON(mp
)) {
966 /* inode stays locked on return */
967 xfs_qm_dqdestroy(dqp
);
968 return XFS_ERROR(ESRCH
);
971 xfs_qm_dqdestroy(dqp
);
977 if (!XFS_IS_OQUOTA_ON(mp
)) {
978 /* inode stays locked on return */
979 xfs_qm_dqdestroy(dqp
);
980 return XFS_ERROR(ESRCH
);
983 xfs_qm_dqdestroy(dqp
);
992 * Hashlock comes after ilock in lock order
994 mutex_lock(&h
->qh_lock
);
995 if (version
!= h
->qh_version
) {
998 * Now, see if somebody else put the dquot in the
999 * hashtable before us. This can happen because we didn't
1000 * keep the hashchain lock. We don't have to worry about
1001 * lock order between the two dquots here since dqp isn't
1002 * on any findable lists yet.
1004 if (xfs_qm_dqlookup(mp
, id
, h
, &tmpdqp
) == 0) {
1006 * Duplicate found. Just throw away the new dquot
1009 xfs_qm_dqput(tmpdqp
);
1010 mutex_unlock(&h
->qh_lock
);
1011 xfs_qm_dqdestroy(dqp
);
1012 XQM_STATS_INC(xqmstats
.xs_qm_dquot_dups
);
1018 * Put the dquot at the beginning of the hash-chain and mp's list
1019 * LOCK ORDER: hashlock, freelistlock, mplistlock, udqlock, gdqlock ..
1021 ASSERT(mutex_is_locked(&h
->qh_lock
));
1023 list_add(&dqp
->q_hashlist
, &h
->qh_list
);
1027 * Attach this dquot to this filesystem's list of all dquots,
1028 * kept inside the mount structure in m_quotainfo field
1030 mutex_lock(&mp
->m_quotainfo
->qi_dqlist_lock
);
1033 * We return a locked dquot to the caller, with a reference taken
1038 list_add(&dqp
->q_mplist
, &mp
->m_quotainfo
->qi_dqlist
);
1039 mp
->m_quotainfo
->qi_dquots
++;
1040 mutex_unlock(&mp
->m_quotainfo
->qi_dqlist_lock
);
1041 mutex_unlock(&h
->qh_lock
);
1043 ASSERT((ip
== NULL
) || xfs_isilocked(ip
, XFS_ILOCK_EXCL
));
1044 trace_xfs_dqget_miss(dqp
);
1051 * Release a reference to the dquot (decrement ref-count)
1052 * and unlock it. If there is a group quota attached to this
1053 * dquot, carefully release that too without tripping over
1054 * deadlocks'n'stuff.
1062 ASSERT(dqp
->q_nrefs
> 0);
1063 ASSERT(XFS_DQ_IS_LOCKED(dqp
));
1065 trace_xfs_dqput(dqp
);
1067 if (dqp
->q_nrefs
!= 1) {
1074 * drop the dqlock and acquire the freelist and dqlock
1075 * in the right order; but try to get it out-of-order first
1077 if (!mutex_trylock(&xfs_Gqm
->qm_dqfrlist_lock
)) {
1078 trace_xfs_dqput_wait(dqp
);
1080 mutex_lock(&xfs_Gqm
->qm_dqfrlist_lock
);
1087 /* We can't depend on nrefs being == 1 here */
1088 if (--dqp
->q_nrefs
== 0) {
1089 trace_xfs_dqput_free(dqp
);
1091 list_add_tail(&dqp
->q_freelist
, &xfs_Gqm
->qm_dqfrlist
);
1092 xfs_Gqm
->qm_dqfrlist_cnt
++;
1095 * If we just added a udquot to the freelist, then
1096 * we want to release the gdquot reference that
1097 * it (probably) has. Otherwise it'll keep the
1098 * gdquot from getting reclaimed.
1100 if ((gdqp
= dqp
->q_gdquot
)) {
1102 * Avoid a recursive dqput call
1105 dqp
->q_gdquot
= NULL
;
1111 * If we had a group quota inside the user quota as a hint,
1118 mutex_unlock(&xfs_Gqm
->qm_dqfrlist_lock
);
1122 * Release a dquot. Flush it if dirty, then dqput() it.
1123 * dquot must not be locked.
1132 trace_xfs_dqrele(dqp
);
1136 * We don't care to flush it if the dquot is dirty here.
1137 * That will create stutters that we want to avoid.
1138 * Instead we do a delayed write when we try to reclaim
1139 * a dirty dquot. Also xfs_sync will take part of the burden...
1146 * Write a modified dquot to disk.
1147 * The dquot must be locked and the flush lock too taken by caller.
1148 * The flush lock will not be unlocked until the dquot reaches the disk,
1149 * but the dquot is free to be unlocked and modified by the caller
1150 * in the interim. Dquot is still locked on return. This behavior is
1151 * identical to that of inodes.
1160 xfs_disk_dquot_t
*ddqp
;
1163 ASSERT(XFS_DQ_IS_LOCKED(dqp
));
1164 ASSERT(!completion_done(&dqp
->q_flush
));
1165 trace_xfs_dqflush(dqp
);
1168 * If not dirty, or it's pinned and we are not supposed to
1171 if (!XFS_DQ_IS_DIRTY(dqp
) ||
1172 (!(flags
& SYNC_WAIT
) && atomic_read(&dqp
->q_pincount
) > 0)) {
1176 xfs_qm_dqunpin_wait(dqp
);
1179 * This may have been unpinned because the filesystem is shutting
1180 * down forcibly. If that's the case we must not write this dquot
1181 * to disk, because the log record didn't make it to disk!
1183 if (XFS_FORCED_SHUTDOWN(dqp
->q_mount
)) {
1184 dqp
->dq_flags
&= ~(XFS_DQ_DIRTY
);
1186 return XFS_ERROR(EIO
);
1190 * Get the buffer containing the on-disk dquot
1191 * We don't need a transaction envelope because we know that the
1192 * the ondisk-dquot has already been allocated for.
1194 if ((error
= xfs_qm_dqtobp(NULL
, dqp
, &ddqp
, &bp
, XFS_QMOPT_DOWARN
))) {
1195 ASSERT(error
!= ENOENT
);
1197 * Quotas could have gotten turned off (ESRCH)
1203 if (xfs_qm_dqcheck(&dqp
->q_core
, be32_to_cpu(ddqp
->d_id
),
1204 0, XFS_QMOPT_DOWARN
, "dqflush (incore copy)")) {
1205 xfs_force_shutdown(dqp
->q_mount
, SHUTDOWN_CORRUPT_INCORE
);
1206 return XFS_ERROR(EIO
);
1209 /* This is the only portion of data that needs to persist */
1210 memcpy(ddqp
, &(dqp
->q_core
), sizeof(xfs_disk_dquot_t
));
1213 * Clear the dirty field and remember the flush lsn for later use.
1215 dqp
->dq_flags
&= ~(XFS_DQ_DIRTY
);
1218 xfs_trans_ail_copy_lsn(mp
->m_ail
, &dqp
->q_logitem
.qli_flush_lsn
,
1219 &dqp
->q_logitem
.qli_item
.li_lsn
);
1222 * Attach an iodone routine so that we can remove this dquot from the
1223 * AIL and release the flush lock once the dquot is synced to disk.
1225 xfs_buf_attach_iodone(bp
, (void(*)(xfs_buf_t
*, xfs_log_item_t
*))
1226 xfs_qm_dqflush_done
, &(dqp
->q_logitem
.qli_item
));
1228 * If the buffer is pinned then push on the log so we won't
1229 * get stuck waiting in the write for too long.
1231 if (XFS_BUF_ISPINNED(bp
)) {
1232 trace_xfs_dqflush_force(dqp
);
1233 xfs_log_force(mp
, 0);
1236 if (flags
& SYNC_WAIT
)
1237 error
= xfs_bwrite(mp
, bp
);
1239 xfs_bdwrite(mp
, bp
);
1241 trace_xfs_dqflush_done(dqp
);
1244 * dqp is still locked, but caller is free to unlock it now.
1251 * This is the dquot flushing I/O completion routine. It is called
1252 * from interrupt level when the buffer containing the dquot is
1253 * flushed to disk. It is responsible for removing the dquot logitem
1254 * from the AIL if it has not been re-logged, and unlocking the dquot's
1255 * flush lock. This behavior is very similar to that of inodes..
1259 xfs_qm_dqflush_done(
1261 xfs_dq_logitem_t
*qip
)
1264 struct xfs_ail
*ailp
;
1266 dqp
= qip
->qli_dquot
;
1267 ailp
= qip
->qli_item
.li_ailp
;
1270 * We only want to pull the item from the AIL if its
1271 * location in the log has not changed since we started the flush.
1272 * Thus, we only bother if the dquot's lsn has
1273 * not changed. First we check the lsn outside the lock
1274 * since it's cheaper, and then we recheck while
1275 * holding the lock before removing the dquot from the AIL.
1277 if ((qip
->qli_item
.li_flags
& XFS_LI_IN_AIL
) &&
1278 qip
->qli_item
.li_lsn
== qip
->qli_flush_lsn
) {
1280 /* xfs_trans_ail_delete() drops the AIL lock. */
1281 spin_lock(&ailp
->xa_lock
);
1282 if (qip
->qli_item
.li_lsn
== qip
->qli_flush_lsn
)
1283 xfs_trans_ail_delete(ailp
, (xfs_log_item_t
*)qip
);
1285 spin_unlock(&ailp
->xa_lock
);
1289 * Release the dq's flush lock since we're done with it.
1295 xfs_qm_dqlock_nowait(
1298 return mutex_trylock(&dqp
->q_qlock
);
1305 mutex_lock(&dqp
->q_qlock
);
1312 mutex_unlock(&(dqp
->q_qlock
));
1313 if (dqp
->q_logitem
.qli_dquot
== dqp
) {
1314 /* Once was dqp->q_mount, but might just have been cleared */
1315 xfs_trans_unlocked_item(dqp
->q_logitem
.qli_item
.li_ailp
,
1316 (xfs_log_item_t
*)&(dqp
->q_logitem
));
1322 xfs_dqunlock_nonotify(
1325 mutex_unlock(&(dqp
->q_qlock
));
1329 * Lock two xfs_dquot structures.
1331 * To avoid deadlocks we always lock the quota structure with
1332 * the lowerd id first.
1341 if (be32_to_cpu(d1
->q_core
.d_id
) >
1342 be32_to_cpu(d2
->q_core
.d_id
)) {
1343 mutex_lock(&d2
->q_qlock
);
1344 mutex_lock_nested(&d1
->q_qlock
, XFS_QLOCK_NESTED
);
1346 mutex_lock(&d1
->q_qlock
);
1347 mutex_lock_nested(&d2
->q_qlock
, XFS_QLOCK_NESTED
);
1350 mutex_lock(&d1
->q_qlock
);
1352 mutex_lock(&d2
->q_qlock
);
1358 * Take a dquot out of the mount's dqlist as well as the hashlist.
1359 * This is called via unmount as well as quotaoff, and the purge
1360 * will always succeed unless there are soft (temp) references
1363 * This returns 0 if it was purged, 1 if it wasn't. It's not an error code
1364 * that we're returning! XXXsup - not cool.
1371 xfs_dqhash_t
*qh
= dqp
->q_hash
;
1372 xfs_mount_t
*mp
= dqp
->q_mount
;
1374 ASSERT(mutex_is_locked(&mp
->m_quotainfo
->qi_dqlist_lock
));
1375 ASSERT(mutex_is_locked(&dqp
->q_hash
->qh_lock
));
1379 * We really can't afford to purge a dquot that is
1380 * referenced, because these are hard refs.
1381 * It shouldn't happen in general because we went thru _all_ inodes in
1382 * dqrele_all_inodes before calling this and didn't let the mountlock go.
1383 * However it is possible that we have dquots with temporary
1384 * references that are not attached to an inode. e.g. see xfs_setattr().
1386 if (dqp
->q_nrefs
!= 0) {
1388 mutex_unlock(&dqp
->q_hash
->qh_lock
);
1392 ASSERT(!list_empty(&dqp
->q_freelist
));
1395 * If we're turning off quotas, we have to make sure that, for
1396 * example, we don't delete quota disk blocks while dquots are
1397 * in the process of getting written to those disk blocks.
1398 * This dquot might well be on AIL, and we can't leave it there
1399 * if we're turning off quotas. Basically, we need this flush
1400 * lock, and are willing to block on it.
1402 if (!xfs_dqflock_nowait(dqp
)) {
1404 * Block on the flush lock after nudging dquot buffer,
1407 xfs_qm_dqflock_pushbuf_wait(dqp
);
1411 * XXXIf we're turning this type of quotas off, we don't care
1412 * about the dirty metadata sitting in this dquot. OTOH, if
1413 * we're unmounting, we do care, so we flush it and wait.
1415 if (XFS_DQ_IS_DIRTY(dqp
)) {
1418 /* dqflush unlocks dqflock */
1420 * Given that dqpurge is a very rare occurrence, it is OK
1421 * that we're holding the hashlist and mplist locks
1422 * across the disk write. But, ... XXXsup
1424 * We don't care about getting disk errors here. We need
1425 * to purge this dquot anyway, so we go ahead regardless.
1427 error
= xfs_qm_dqflush(dqp
, SYNC_WAIT
);
1429 xfs_fs_cmn_err(CE_WARN
, mp
,
1430 "xfs_qm_dqpurge: dquot %p flush failed", dqp
);
1433 ASSERT(atomic_read(&dqp
->q_pincount
) == 0);
1434 ASSERT(XFS_FORCED_SHUTDOWN(mp
) ||
1435 !(dqp
->q_logitem
.qli_item
.li_flags
& XFS_LI_IN_AIL
));
1437 list_del_init(&dqp
->q_hashlist
);
1439 list_del_init(&dqp
->q_mplist
);
1440 mp
->m_quotainfo
->qi_dqreclaims
++;
1441 mp
->m_quotainfo
->qi_dquots
--;
1443 * XXX Move this to the front of the freelist, if we can get the
1446 ASSERT(!list_empty(&dqp
->q_freelist
));
1448 dqp
->q_mount
= NULL
;
1450 dqp
->dq_flags
= XFS_DQ_INACTIVE
;
1451 memset(&dqp
->q_core
, 0, sizeof(dqp
->q_core
));
1454 mutex_unlock(&qh
->qh_lock
);
1461 xfs_qm_dqprint(xfs_dquot_t
*dqp
)
1463 cmn_err(CE_DEBUG
, "-----------KERNEL DQUOT----------------");
1464 cmn_err(CE_DEBUG
, "---- dquotID = %d",
1465 (int)be32_to_cpu(dqp
->q_core
.d_id
));
1466 cmn_err(CE_DEBUG
, "---- type = %s", DQFLAGTO_TYPESTR(dqp
));
1467 cmn_err(CE_DEBUG
, "---- fs = 0x%p", dqp
->q_mount
);
1468 cmn_err(CE_DEBUG
, "---- blkno = 0x%x", (int) dqp
->q_blkno
);
1469 cmn_err(CE_DEBUG
, "---- boffset = 0x%x", (int) dqp
->q_bufoffset
);
1470 cmn_err(CE_DEBUG
, "---- blkhlimit = %Lu (0x%x)",
1471 be64_to_cpu(dqp
->q_core
.d_blk_hardlimit
),
1472 (int)be64_to_cpu(dqp
->q_core
.d_blk_hardlimit
));
1473 cmn_err(CE_DEBUG
, "---- blkslimit = %Lu (0x%x)",
1474 be64_to_cpu(dqp
->q_core
.d_blk_softlimit
),
1475 (int)be64_to_cpu(dqp
->q_core
.d_blk_softlimit
));
1476 cmn_err(CE_DEBUG
, "---- inohlimit = %Lu (0x%x)",
1477 be64_to_cpu(dqp
->q_core
.d_ino_hardlimit
),
1478 (int)be64_to_cpu(dqp
->q_core
.d_ino_hardlimit
));
1479 cmn_err(CE_DEBUG
, "---- inoslimit = %Lu (0x%x)",
1480 be64_to_cpu(dqp
->q_core
.d_ino_softlimit
),
1481 (int)be64_to_cpu(dqp
->q_core
.d_ino_softlimit
));
1482 cmn_err(CE_DEBUG
, "---- bcount = %Lu (0x%x)",
1483 be64_to_cpu(dqp
->q_core
.d_bcount
),
1484 (int)be64_to_cpu(dqp
->q_core
.d_bcount
));
1485 cmn_err(CE_DEBUG
, "---- icount = %Lu (0x%x)",
1486 be64_to_cpu(dqp
->q_core
.d_icount
),
1487 (int)be64_to_cpu(dqp
->q_core
.d_icount
));
1488 cmn_err(CE_DEBUG
, "---- btimer = %d",
1489 (int)be32_to_cpu(dqp
->q_core
.d_btimer
));
1490 cmn_err(CE_DEBUG
, "---- itimer = %d",
1491 (int)be32_to_cpu(dqp
->q_core
.d_itimer
));
1492 cmn_err(CE_DEBUG
, "---------------------------");
1497 * Give the buffer a little push if it is incore and
1498 * wait on the flush lock.
1501 xfs_qm_dqflock_pushbuf_wait(
1504 xfs_mount_t
*mp
= dqp
->q_mount
;
1508 * Check to see if the dquot has been flushed delayed
1509 * write. If so, grab its buffer and send it
1510 * out immediately. We'll be able to acquire
1511 * the flush lock when the I/O completes.
1513 bp
= xfs_incore(mp
->m_ddev_targp
, dqp
->q_blkno
,
1514 mp
->m_quotainfo
->qi_dqchunklen
, XBF_TRYLOCK
);
1518 if (XFS_BUF_ISDELAYWRITE(bp
)) {
1519 if (XFS_BUF_ISPINNED(bp
))
1520 xfs_log_force(mp
, 0);
1521 xfs_buf_delwri_promote(bp
);
1522 wake_up_process(bp
->b_target
->bt_task
);