blob: 2896ac953ed6b26458783d519f1d841c5c28ede1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott4ce31212005-11-02 14:59:41 +11002 * Copyright (c) 2000-2003 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott4ce31212005-11-02 14:59:41 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott4ce31212005-11-02 14:59:41 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott4ce31212005-11-02 14:59:41 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
19#include "xfs_fs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_quota.h"
28#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_inode.h"
31#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_rtalloc.h"
33#include "xfs_error.h"
34#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_attr.h"
36#include "xfs_buf_item.h"
37#include "xfs_trans_space.h"
38#include "xfs_trans_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_qm.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000040#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/*
Christoph Hellwigbf72de32011-12-06 21:58:19 +000043 * Lock order:
44 *
45 * ip->i_lock
Christoph Hellwig9f920f12012-03-13 08:52:35 +000046 * qi->qi_tree_lock
Christoph Hellwigb84a3a92012-03-14 11:53:34 -050047 * dquot->q_qlock (xfs_dqlock() and friends)
48 * dquot->q_flush (xfs_dqflock() and friends)
49 * qi->qi_lru_lock
Christoph Hellwigbf72de32011-12-06 21:58:19 +000050 *
51 * If two dquots need to be locked the order is user before group/project,
52 * otherwise by the lowest id first, see xfs_dqlock2.
53 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#ifdef DEBUG
56xfs_buftarg_t *xfs_dqerror_target;
57int xfs_do_dqerror;
58int xfs_dqreq_num;
59int xfs_dqerror_mod = 33;
60#endif
61
Christoph Hellwig98b8c7a2009-01-19 02:03:25 +010062static struct lock_class_key xfs_dquot_other_class;
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 * This is called to free all the memory associated with a dquot
66 */
67void
68xfs_qm_dqdestroy(
69 xfs_dquot_t *dqp)
70{
Christoph Hellwigf8739c32012-03-13 08:52:34 +000071 ASSERT(list_empty(&dqp->q_lru));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 mutex_destroy(&dqp->q_qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 kmem_zone_free(xfs_Gqm->qm_dqzone, dqp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000075
Christoph Hellwig48776fd2012-03-13 08:52:33 +000076 XFS_STATS_DEC(xs_qm_dquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * If default limits are in force, push them into the dquot now.
81 * We overwrite the dquot limits only if they are zero and this
82 * is not the root dquot.
83 */
84void
85xfs_qm_adjust_dqlimits(
86 xfs_mount_t *mp,
87 xfs_disk_dquot_t *d)
88{
89 xfs_quotainfo_t *q = mp->m_quotainfo;
90
91 ASSERT(d->d_id);
92
93 if (q->qi_bsoftlimit && !d->d_blk_softlimit)
Christoph Hellwig1149d962005-11-02 15:01:12 +110094 d->d_blk_softlimit = cpu_to_be64(q->qi_bsoftlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 if (q->qi_bhardlimit && !d->d_blk_hardlimit)
Christoph Hellwig1149d962005-11-02 15:01:12 +110096 d->d_blk_hardlimit = cpu_to_be64(q->qi_bhardlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (q->qi_isoftlimit && !d->d_ino_softlimit)
Christoph Hellwig1149d962005-11-02 15:01:12 +110098 d->d_ino_softlimit = cpu_to_be64(q->qi_isoftlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (q->qi_ihardlimit && !d->d_ino_hardlimit)
Christoph Hellwig1149d962005-11-02 15:01:12 +1100100 d->d_ino_hardlimit = cpu_to_be64(q->qi_ihardlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (q->qi_rtbsoftlimit && !d->d_rtb_softlimit)
Christoph Hellwig1149d962005-11-02 15:01:12 +1100102 d->d_rtb_softlimit = cpu_to_be64(q->qi_rtbsoftlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (q->qi_rtbhardlimit && !d->d_rtb_hardlimit)
Christoph Hellwig1149d962005-11-02 15:01:12 +1100104 d->d_rtb_hardlimit = cpu_to_be64(q->qi_rtbhardlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107/*
108 * Check the limits and timers of a dquot and start or reset timers
109 * if necessary.
110 * This gets called even when quota enforcement is OFF, which makes our
111 * life a little less complicated. (We just don't reject any quota
112 * reservations in that case, when enforcement is off).
113 * We also return 0 as the values of the timers in Q_GETQUOTA calls, when
114 * enforcement's off.
115 * In contrast, warnings are a little different in that they don't
Nathan Scott754002b2005-06-21 15:49:06 +1000116 * 'automatically' get started when limits get exceeded. They do
117 * get reset to zero, however, when we find the count to be under
118 * the soft limit (they are only ever set non-zero via userspace).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 */
120void
121xfs_qm_adjust_dqtimers(
122 xfs_mount_t *mp,
123 xfs_disk_dquot_t *d)
124{
125 ASSERT(d->d_id);
126
Christoph Hellwigea15ab32011-07-13 13:43:50 +0200127#ifdef DEBUG
Christoph Hellwig1149d962005-11-02 15:01:12 +1100128 if (d->d_blk_hardlimit)
129 ASSERT(be64_to_cpu(d->d_blk_softlimit) <=
130 be64_to_cpu(d->d_blk_hardlimit));
131 if (d->d_ino_hardlimit)
132 ASSERT(be64_to_cpu(d->d_ino_softlimit) <=
133 be64_to_cpu(d->d_ino_hardlimit));
134 if (d->d_rtb_hardlimit)
135 ASSERT(be64_to_cpu(d->d_rtb_softlimit) <=
136 be64_to_cpu(d->d_rtb_hardlimit));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#endif
Christoph Hellwigea15ab32011-07-13 13:43:50 +0200138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 if (!d->d_btimer) {
Christoph Hellwig1149d962005-11-02 15:01:12 +1100140 if ((d->d_blk_softlimit &&
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000141 (be64_to_cpu(d->d_bcount) >
Christoph Hellwig1149d962005-11-02 15:01:12 +1100142 be64_to_cpu(d->d_blk_softlimit))) ||
143 (d->d_blk_hardlimit &&
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000144 (be64_to_cpu(d->d_bcount) >
Christoph Hellwig1149d962005-11-02 15:01:12 +1100145 be64_to_cpu(d->d_blk_hardlimit)))) {
146 d->d_btimer = cpu_to_be32(get_seconds() +
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000147 mp->m_quotainfo->qi_btimelimit);
Nathan Scott754002b2005-06-21 15:49:06 +1000148 } else {
149 d->d_bwarns = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 }
151 } else {
152 if ((!d->d_blk_softlimit ||
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000153 (be64_to_cpu(d->d_bcount) <=
Christoph Hellwig1149d962005-11-02 15:01:12 +1100154 be64_to_cpu(d->d_blk_softlimit))) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 (!d->d_blk_hardlimit ||
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000156 (be64_to_cpu(d->d_bcount) <=
Christoph Hellwig1149d962005-11-02 15:01:12 +1100157 be64_to_cpu(d->d_blk_hardlimit)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 d->d_btimer = 0;
159 }
160 }
161
162 if (!d->d_itimer) {
Christoph Hellwig1149d962005-11-02 15:01:12 +1100163 if ((d->d_ino_softlimit &&
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000164 (be64_to_cpu(d->d_icount) >
Christoph Hellwig1149d962005-11-02 15:01:12 +1100165 be64_to_cpu(d->d_ino_softlimit))) ||
166 (d->d_ino_hardlimit &&
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000167 (be64_to_cpu(d->d_icount) >
Christoph Hellwig1149d962005-11-02 15:01:12 +1100168 be64_to_cpu(d->d_ino_hardlimit)))) {
169 d->d_itimer = cpu_to_be32(get_seconds() +
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000170 mp->m_quotainfo->qi_itimelimit);
Nathan Scott754002b2005-06-21 15:49:06 +1000171 } else {
172 d->d_iwarns = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
174 } else {
175 if ((!d->d_ino_softlimit ||
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000176 (be64_to_cpu(d->d_icount) <=
Christoph Hellwig1149d962005-11-02 15:01:12 +1100177 be64_to_cpu(d->d_ino_softlimit))) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 (!d->d_ino_hardlimit ||
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000179 (be64_to_cpu(d->d_icount) <=
Christoph Hellwig1149d962005-11-02 15:01:12 +1100180 be64_to_cpu(d->d_ino_hardlimit)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 d->d_itimer = 0;
182 }
183 }
184
185 if (!d->d_rtbtimer) {
Christoph Hellwig1149d962005-11-02 15:01:12 +1100186 if ((d->d_rtb_softlimit &&
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000187 (be64_to_cpu(d->d_rtbcount) >
Christoph Hellwig1149d962005-11-02 15:01:12 +1100188 be64_to_cpu(d->d_rtb_softlimit))) ||
189 (d->d_rtb_hardlimit &&
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000190 (be64_to_cpu(d->d_rtbcount) >
Christoph Hellwig1149d962005-11-02 15:01:12 +1100191 be64_to_cpu(d->d_rtb_hardlimit)))) {
192 d->d_rtbtimer = cpu_to_be32(get_seconds() +
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000193 mp->m_quotainfo->qi_rtbtimelimit);
Nathan Scott754002b2005-06-21 15:49:06 +1000194 } else {
195 d->d_rtbwarns = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197 } else {
198 if ((!d->d_rtb_softlimit ||
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000199 (be64_to_cpu(d->d_rtbcount) <=
Christoph Hellwig1149d962005-11-02 15:01:12 +1100200 be64_to_cpu(d->d_rtb_softlimit))) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 (!d->d_rtb_hardlimit ||
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000202 (be64_to_cpu(d->d_rtbcount) <=
Christoph Hellwig1149d962005-11-02 15:01:12 +1100203 be64_to_cpu(d->d_rtb_hardlimit)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 d->d_rtbtimer = 0;
205 }
206 }
207}
208
209/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 * initialize a buffer full of dquots and log the whole thing
211 */
212STATIC void
213xfs_qm_init_dquot_blk(
214 xfs_trans_t *tp,
215 xfs_mount_t *mp,
216 xfs_dqid_t id,
217 uint type,
218 xfs_buf_t *bp)
219{
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000220 struct xfs_quotainfo *q = mp->m_quotainfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 xfs_dqblk_t *d;
222 int curid, i;
223
224 ASSERT(tp);
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200225 ASSERT(xfs_buf_islocked(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Chandra Seetharaman62926042011-07-22 23:40:15 +0000227 d = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /*
230 * ID of the first dquot in the block - id's are zero based.
231 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000232 curid = id - (id % q->qi_dqperchunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 ASSERT(curid >= 0);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000234 memset(d, 0, BBTOB(q->qi_dqchunklen));
Christoph Hellwig49d35a52011-12-06 21:58:23 +0000235 for (i = 0; i < q->qi_dqperchunk; i++, d++, curid++) {
236 d->dd_diskdq.d_magic = cpu_to_be16(XFS_DQUOT_MAGIC);
237 d->dd_diskdq.d_version = XFS_DQUOT_VERSION;
238 d->dd_diskdq.d_id = cpu_to_be32(curid);
239 d->dd_diskdq.d_flags = type;
240 }
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 xfs_trans_dquot_buf(tp, bp,
Dave Chinnerc1155412010-05-07 11:05:19 +1000243 (type & XFS_DQ_USER ? XFS_BLF_UDQUOT_BUF :
244 ((type & XFS_DQ_PROJ) ? XFS_BLF_PDQUOT_BUF :
245 XFS_BLF_GDQUOT_BUF)));
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000246 xfs_trans_log_buf(tp, bp, 0, BBTOB(q->qi_dqchunklen) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249
250
251/*
252 * Allocate a block and fill it with dquots.
253 * This is called when the bmapi finds a hole.
254 */
255STATIC int
256xfs_qm_dqalloc(
Tim Shimminefa092f2005-09-05 08:29:01 +1000257 xfs_trans_t **tpp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 xfs_mount_t *mp,
259 xfs_dquot_t *dqp,
260 xfs_inode_t *quotip,
261 xfs_fileoff_t offset_fsb,
262 xfs_buf_t **O_bpp)
263{
264 xfs_fsblock_t firstblock;
265 xfs_bmap_free_t flist;
266 xfs_bmbt_irec_t map;
267 int nmaps, error, committed;
268 xfs_buf_t *bp;
Tim Shimminefa092f2005-09-05 08:29:01 +1000269 xfs_trans_t *tp = *tpp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 ASSERT(tp != NULL);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000272
273 trace_xfs_dqalloc(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /*
276 * Initialize the bmap freelist prior to calling bmapi code.
277 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600278 xfs_bmap_init(&flist, &firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 xfs_ilock(quotip, XFS_ILOCK_EXCL);
280 /*
281 * Return if this type of quotas is turned off while we didn't
282 * have an inode lock
283 */
Chandra Seetharaman6967b962012-01-23 17:31:25 +0000284 if (!xfs_this_quota_on(dqp->q_mount, dqp->dq_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 xfs_iunlock(quotip, XFS_ILOCK_EXCL);
286 return (ESRCH);
287 }
288
Christoph Hellwigddc34152011-09-19 15:00:54 +0000289 xfs_trans_ijoin(tp, quotip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 nmaps = 1;
Dave Chinnerc0dc7822011-09-18 20:40:52 +0000291 error = xfs_bmapi_write(tp, quotip, offset_fsb,
292 XFS_DQUOT_CLUSTER_SIZE_FSB, XFS_BMAPI_METADATA,
293 &firstblock, XFS_QM_DQALLOC_SPACE_RES(mp),
294 &map, &nmaps, &flist);
295 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 ASSERT(map.br_blockcount == XFS_DQUOT_CLUSTER_SIZE_FSB);
298 ASSERT(nmaps == 1);
299 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
300 (map.br_startblock != HOLESTARTBLOCK));
301
302 /*
303 * Keep track of the blkno to save a lookup later
304 */
305 dqp->q_blkno = XFS_FSB_TO_DADDR(mp, map.br_startblock);
306
307 /* now we can just get the buffer (there's nothing to read yet) */
308 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
309 dqp->q_blkno,
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000310 mp->m_quotainfo->qi_dqchunklen,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 0);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000312
313 error = xfs_buf_geterror(bp);
314 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 goto error1;
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /*
318 * Make a chunk of dquots out of this buffer and log
319 * the entire thing.
320 */
Christoph Hellwig1149d962005-11-02 15:01:12 +1100321 xfs_qm_init_dquot_blk(tp, mp, be32_to_cpu(dqp->q_core.d_id),
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000322 dqp->dq_flags & XFS_DQ_ALLTYPES, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Tim Shimminefa092f2005-09-05 08:29:01 +1000324 /*
325 * xfs_bmap_finish() may commit the current transaction and
326 * start a second transaction if the freelist is not empty.
327 *
328 * Since we still want to modify this buffer, we need to
329 * ensure that the buffer is not released on commit of
330 * the first transaction and ensure the buffer is added to the
331 * second transaction.
332 *
333 * If there is only one transaction then don't stop the buffer
334 * from being released when it commits later on.
335 */
336
337 xfs_trans_bhold(tp, bp);
338
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100339 if ((error = xfs_bmap_finish(tpp, &flist, &committed))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 goto error1;
341 }
342
Tim Shimminefa092f2005-09-05 08:29:01 +1000343 if (committed) {
344 tp = *tpp;
345 xfs_trans_bjoin(tp, bp);
346 } else {
347 xfs_trans_bhold_release(tp, bp);
348 }
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 *O_bpp = bp;
351 return 0;
352
353 error1:
354 xfs_bmap_cancel(&flist);
355 error0:
356 xfs_iunlock(quotip, XFS_ILOCK_EXCL);
357
358 return (error);
359}
360
361/*
362 * Maps a dquot to the buffer containing its on-disk version.
363 * This returns a ptr to the buffer containing the on-disk dquot
364 * in the bpp param, and a ptr to the on-disk dquot within that buffer
365 */
366STATIC int
367xfs_qm_dqtobp(
Tim Shimminefa092f2005-09-05 08:29:01 +1000368 xfs_trans_t **tpp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 xfs_dquot_t *dqp,
370 xfs_disk_dquot_t **O_ddpp,
371 xfs_buf_t **O_bpp,
372 uint flags)
373{
374 xfs_bmbt_irec_t map;
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000375 int nmaps = 1, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 xfs_buf_t *bp;
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000377 xfs_inode_t *quotip = XFS_DQ_TO_QIP(dqp);
378 xfs_mount_t *mp = dqp->q_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 xfs_disk_dquot_t *ddq;
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000380 xfs_dqid_t id = be32_to_cpu(dqp->q_core.d_id);
Tim Shimminefa092f2005-09-05 08:29:01 +1000381 xfs_trans_t *tp = (tpp ? *tpp : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000383 dqp->q_fileoffset = (xfs_fileoff_t)id / mp->m_quotainfo->qi_dqperchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000385 xfs_ilock(quotip, XFS_ILOCK_SHARED);
Chandra Seetharaman6967b962012-01-23 17:31:25 +0000386 if (!xfs_this_quota_on(dqp->q_mount, dqp->dq_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /*
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000388 * Return if this type of quotas is turned off while we
389 * didn't have the quota inode lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 xfs_iunlock(quotip, XFS_ILOCK_SHARED);
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000392 return ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 /*
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000396 * Find the block map; no allocations yet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 */
Dave Chinner5c8ed202011-09-18 20:40:45 +0000398 error = xfs_bmapi_read(quotip, dqp->q_fileoffset,
399 XFS_DQUOT_CLUSTER_SIZE_FSB, &map, &nmaps, 0);
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000400
401 xfs_iunlock(quotip, XFS_ILOCK_SHARED);
402 if (error)
403 return error;
404
405 ASSERT(nmaps == 1);
406 ASSERT(map.br_blockcount == 1);
407
408 /*
409 * Offset of dquot in the (fixed sized) dquot chunk.
410 */
411 dqp->q_bufoffset = (id % mp->m_quotainfo->qi_dqperchunk) *
412 sizeof(xfs_dqblk_t);
413
414 ASSERT(map.br_startblock != DELAYSTARTBLOCK);
415 if (map.br_startblock == HOLESTARTBLOCK) {
416 /*
417 * We don't allocate unless we're asked to
418 */
419 if (!(flags & XFS_QMOPT_DQALLOC))
420 return ENOENT;
421
422 ASSERT(tp);
423 error = xfs_qm_dqalloc(tpp, mp, dqp, quotip,
424 dqp->q_fileoffset, &bp);
425 if (error)
426 return error;
427 tp = *tpp;
428 } else {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000429 trace_xfs_dqtobp_read(dqp);
430
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000431 /*
432 * store the blkno etc so that we don't have to do the
433 * mapping all the time
434 */
435 dqp->q_blkno = XFS_FSB_TO_DADDR(mp, map.br_startblock);
436
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000437 error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp,
438 dqp->q_blkno,
439 mp->m_quotainfo->qi_dqchunklen,
440 0, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (error || !bp)
442 return XFS_ERROR(error);
443 }
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000444
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200445 ASSERT(xfs_buf_islocked(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 /*
448 * calculate the location of the dquot inside the buffer.
449 */
Chandra Seetharaman62926042011-07-22 23:40:15 +0000450 ddq = bp->b_addr + dqp->q_bufoffset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 /*
453 * A simple sanity check in case we got a corrupted dquot...
454 */
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100455 error = xfs_qm_dqcheck(mp, ddq, id, dqp->dq_flags & XFS_DQ_ALLTYPES,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 flags & (XFS_QMOPT_DQREPAIR|XFS_QMOPT_DOWARN),
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100457 "dqtobp");
458 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (!(flags & XFS_QMOPT_DQREPAIR)) {
460 xfs_trans_brelse(tp, bp);
461 return XFS_ERROR(EIO);
462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464
465 *O_bpp = bp;
466 *O_ddpp = ddq;
467
468 return (0);
469}
470
471
472/*
473 * Read in the ondisk dquot using dqtobp() then copy it to an incore version,
474 * and release the buffer immediately.
475 *
Christoph Hellwig97e7ade2011-12-06 21:58:24 +0000476 * If XFS_QMOPT_DQALLOC is set, allocate a dquot on disk if it needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 */
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000478int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479xfs_qm_dqread(
Christoph Hellwig97e7ade2011-12-06 21:58:24 +0000480 struct xfs_mount *mp,
481 xfs_dqid_t id,
482 uint type,
483 uint flags,
484 struct xfs_dquot **O_dqpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Christoph Hellwig97e7ade2011-12-06 21:58:24 +0000486 struct xfs_dquot *dqp;
487 struct xfs_disk_dquot *ddqp;
488 struct xfs_buf *bp;
489 struct xfs_trans *tp = NULL;
490 int error;
491 int cancelflags = 0;
Tim Shimminefa092f2005-09-05 08:29:01 +1000492
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +0000493
494 dqp = kmem_zone_zalloc(xfs_Gqm->qm_dqzone, KM_SLEEP);
495
496 dqp->dq_flags = type;
497 dqp->q_core.d_id = cpu_to_be32(id);
498 dqp->q_mount = mp;
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000499 INIT_LIST_HEAD(&dqp->q_lru);
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +0000500 mutex_init(&dqp->q_qlock);
501 init_waitqueue_head(&dqp->q_pinwait);
502
503 /*
504 * Because we want to use a counting completion, complete
505 * the flush completion once to allow a single access to
506 * the flush completion without blocking.
507 */
508 init_completion(&dqp->q_flush);
509 complete(&dqp->q_flush);
510
511 /*
512 * Make sure group quotas have a different lock class than user
513 * quotas.
514 */
515 if (!(type & XFS_DQ_USER))
516 lockdep_set_class(&dqp->q_qlock, &xfs_dquot_other_class);
517
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000518 XFS_STATS_INC(xs_qm_dquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000520 trace_xfs_dqread(dqp);
521
Christoph Hellwig97e7ade2011-12-06 21:58:24 +0000522 if (flags & XFS_QMOPT_DQALLOC) {
523 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_DQALLOC);
524 error = xfs_trans_reserve(tp, XFS_QM_DQALLOC_SPACE_RES(mp),
525 XFS_WRITE_LOG_RES(mp) +
526 /*
527 * Round the chunklen up to the next multiple
528 * of 128 (buf log item chunk size)).
529 */
530 BBTOB(mp->m_quotainfo->qi_dqchunklen) - 1 + 128,
531 0,
532 XFS_TRANS_PERM_LOG_RES,
533 XFS_WRITE_LOG_COUNT);
534 if (error)
535 goto error1;
536 cancelflags = XFS_TRANS_RELEASE_LOG_RES;
537 }
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 /*
540 * get a pointer to the on-disk dquot and the buffer containing it
541 * dqp already knows its own type (GROUP/USER).
542 */
Christoph Hellwig97e7ade2011-12-06 21:58:24 +0000543 error = xfs_qm_dqtobp(&tp, dqp, &ddqp, &bp, flags);
544 if (error) {
545 /*
546 * This can happen if quotas got turned off (ESRCH),
547 * or if the dquot didn't exist on disk and we ask to
548 * allocate (ENOENT).
549 */
550 trace_xfs_dqread_fail(dqp);
551 cancelflags |= XFS_TRANS_ABORT;
552 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554
555 /* copy everything from disk dquot to the incore dquot */
556 memcpy(&dqp->q_core, ddqp, sizeof(xfs_disk_dquot_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 xfs_qm_dquot_logitem_init(dqp);
558
559 /*
560 * Reservation counters are defined as reservation plus current usage
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300561 * to avoid having to add every time.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 */
Christoph Hellwig1149d962005-11-02 15:01:12 +1100563 dqp->q_res_bcount = be64_to_cpu(ddqp->d_bcount);
564 dqp->q_res_icount = be64_to_cpu(ddqp->d_icount);
565 dqp->q_res_rtbcount = be64_to_cpu(ddqp->d_rtbcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 /* Mark the buf so that this will stay incore a little longer */
Christoph Hellwig38f23232011-10-10 16:52:45 +0000568 xfs_buf_set_ref(bp, XFS_DQUOT_REF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 /*
571 * We got the buffer with a xfs_trans_read_buf() (in dqtobp())
572 * So we need to release with xfs_trans_brelse().
573 * The strategy here is identical to that of inodes; we lock
574 * the dquot in xfs_qm_dqget() before making it accessible to
575 * others. This is because dquots, like inodes, need a good level of
576 * concurrency, and we don't want to take locks on the entire buffers
577 * for dquot accesses.
578 * Note also that the dquot buffer may even be dirty at this point, if
579 * this particular dquot was repaired. We still aren't afraid to
580 * brelse it because we have the changes incore.
581 */
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200582 ASSERT(xfs_buf_islocked(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 xfs_trans_brelse(tp, bp);
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (tp) {
Christoph Hellwig97e7ade2011-12-06 21:58:24 +0000586 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
587 if (error)
588 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
590
591 *O_dqpp = dqp;
Christoph Hellwig97e7ade2011-12-06 21:58:24 +0000592 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Christoph Hellwig97e7ade2011-12-06 21:58:24 +0000594error1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (tp)
596 xfs_trans_cancel(tp, cancelflags);
Christoph Hellwig97e7ade2011-12-06 21:58:24 +0000597error0:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 xfs_qm_dqdestroy(dqp);
599 *O_dqpp = NULL;
Christoph Hellwig97e7ade2011-12-06 21:58:24 +0000600 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
603/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 * Given the file system, inode OR id, and type (UDQUOT/GDQUOT), return a
605 * a locked dquot, doing an allocation (if requested) as needed.
606 * When both an inode and an id are given, the inode's id takes precedence.
607 * That is, if the id changes while we don't hold the ilock inside this
608 * function, the new dquot is returned, not necessarily the one requested
609 * in the id argument.
610 */
611int
612xfs_qm_dqget(
613 xfs_mount_t *mp,
614 xfs_inode_t *ip, /* locked inode (optional) */
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000615 xfs_dqid_t id, /* uid/projid/gid depending on type */
616 uint type, /* XFS_DQ_USER/XFS_DQ_PROJ/XFS_DQ_GROUP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 uint flags, /* DQALLOC, DQSUSER, DQREPAIR, DOWARN */
618 xfs_dquot_t **O_dqpp) /* OUT : locked incore dquot */
619{
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000620 struct xfs_quotainfo *qi = mp->m_quotainfo;
621 struct radix_tree_root *tree = XFS_DQUOT_TREE(qi, type);
622 struct xfs_dquot *dqp;
623 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
626 if ((! XFS_IS_UQUOTA_ON(mp) && type == XFS_DQ_USER) ||
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000627 (! XFS_IS_PQUOTA_ON(mp) && type == XFS_DQ_PROJ) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 (! XFS_IS_GQUOTA_ON(mp) && type == XFS_DQ_GROUP)) {
629 return (ESRCH);
630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632#ifdef DEBUG
633 if (xfs_do_dqerror) {
634 if ((xfs_dqerror_target == mp->m_ddev_targp) &&
635 (xfs_dqreq_num++ % xfs_dqerror_mod) == 0) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100636 xfs_debug(mp, "Returning error in dqget");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return (EIO);
638 }
639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000641 ASSERT(type == XFS_DQ_USER ||
642 type == XFS_DQ_PROJ ||
643 type == XFS_DQ_GROUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (ip) {
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000645 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Chandra Seetharaman36731412012-01-23 17:31:30 +0000646 ASSERT(xfs_inode_dquot(ip, type) == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648#endif
Christoph Hellwig92678552011-12-06 21:58:18 +0000649
650restart:
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000651 mutex_lock(&qi->qi_tree_lock);
652 dqp = radix_tree_lookup(tree, id);
653 if (dqp) {
654 xfs_dqlock(dqp);
655 if (dqp->dq_flags & XFS_DQ_FREEING) {
656 xfs_dqunlock(dqp);
657 mutex_unlock(&qi->qi_tree_lock);
658 trace_xfs_dqget_freeing(dqp);
659 delay(1);
660 goto restart;
661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000663 dqp->q_nrefs++;
664 mutex_unlock(&qi->qi_tree_lock);
665
666 trace_xfs_dqget_hit(dqp);
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000667 XFS_STATS_INC(xs_qm_dqcachehits);
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000668 *O_dqpp = dqp;
669 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 }
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000671 mutex_unlock(&qi->qi_tree_lock);
672 XFS_STATS_INC(xs_qm_dqcachemisses);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 /*
675 * Dquot cache miss. We don't want to keep the inode lock across
676 * a (potential) disk read. Also we don't want to deal with the lock
677 * ordering between quotainode and this inode. OTOH, dropping the inode
678 * lock here means dealing with a chown that can happen before
679 * we re-acquire the lock.
680 */
681 if (ip)
682 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Christoph Hellwig97e7ade2011-12-06 21:58:24 +0000684 error = xfs_qm_dqread(mp, id, type, flags, &dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000686 if (ip)
687 xfs_ilock(ip, XFS_ILOCK_EXCL);
688
689 if (error)
690 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (ip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /*
694 * A dquot could be attached to this inode by now, since
695 * we had dropped the ilock.
696 */
Chandra Seetharaman36731412012-01-23 17:31:30 +0000697 if (xfs_this_quota_on(mp, type)) {
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000698 struct xfs_dquot *dqp1;
699
Chandra Seetharaman36731412012-01-23 17:31:30 +0000700 dqp1 = xfs_inode_dquot(ip, type);
701 if (dqp1) {
Christoph Hellwig191f8482010-04-20 17:01:53 +1000702 xfs_qm_dqdestroy(dqp);
Chandra Seetharaman36731412012-01-23 17:31:30 +0000703 dqp = dqp1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 xfs_dqlock(dqp);
705 goto dqret;
706 }
707 } else {
Chandra Seetharaman36731412012-01-23 17:31:30 +0000708 /* inode stays locked on return */
709 xfs_qm_dqdestroy(dqp);
710 return XFS_ERROR(ESRCH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
712 }
713
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000714 mutex_lock(&qi->qi_tree_lock);
715 error = -radix_tree_insert(tree, id, dqp);
716 if (unlikely(error)) {
717 WARN_ON(error != EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000719 /*
720 * Duplicate found. Just throw away the new dquot and start
721 * over.
722 */
723 mutex_unlock(&qi->qi_tree_lock);
724 trace_xfs_dqget_dup(dqp);
725 xfs_qm_dqdestroy(dqp);
726 XFS_STATS_INC(xs_qm_dquot_dups);
727 goto restart;
728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 * We return a locked dquot to the caller, with a reference taken
732 */
733 xfs_dqlock(dqp);
734 dqp->q_nrefs = 1;
735
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000736 qi->qi_dquots++;
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000737 mutex_unlock(&qi->qi_tree_lock);
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 dqret:
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000740 ASSERT((ip == NULL) || xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000741 trace_xfs_dqget_miss(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 *O_dqpp = dqp;
743 return (0);
744}
745
746
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000747STATIC void
748xfs_qm_dqput_final(
Christoph Hellwigbf72de32011-12-06 21:58:19 +0000749 struct xfs_dquot *dqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000751 struct xfs_quotainfo *qi = dqp->q_mount->m_quotainfo;
Christoph Hellwigbf72de32011-12-06 21:58:19 +0000752 struct xfs_dquot *gdqp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Christoph Hellwigbf72de32011-12-06 21:58:19 +0000754 trace_xfs_dqput_free(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000756 mutex_lock(&qi->qi_lru_lock);
757 if (list_empty(&dqp->q_lru)) {
758 list_add_tail(&dqp->q_lru, &qi->qi_lru_list);
759 qi->qi_lru_count++;
Christoph Hellwig48776fd2012-03-13 08:52:33 +0000760 XFS_STATS_INC(xs_qm_dquot_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000762 mutex_unlock(&qi->qi_lru_lock);
Christoph Hellwigbf72de32011-12-06 21:58:19 +0000763
764 /*
765 * If we just added a udquot to the freelist, then we want to release
766 * the gdquot reference that it (probably) has. Otherwise it'll keep
767 * the gdquot from getting reclaimed.
768 */
769 gdqp = dqp->q_gdquot;
770 if (gdqp) {
771 xfs_dqlock(gdqp);
772 dqp->q_gdquot = NULL;
773 }
774 xfs_dqunlock(dqp);
775
776 /*
777 * If we had a group quota hint, release it now.
778 */
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000779 if (gdqp)
780 xfs_qm_dqput(gdqp);
781}
782
783/*
784 * Release a reference to the dquot (decrement ref-count) and unlock it.
785 *
786 * If there is a group quota attached to this dquot, carefully release that
787 * too without tripping over deadlocks'n'stuff.
788 */
789void
790xfs_qm_dqput(
791 struct xfs_dquot *dqp)
792{
793 ASSERT(dqp->q_nrefs > 0);
794 ASSERT(XFS_DQ_IS_LOCKED(dqp));
795
796 trace_xfs_dqput(dqp);
797
798 if (--dqp->q_nrefs > 0)
799 xfs_dqunlock(dqp);
800 else
801 xfs_qm_dqput_final(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802}
803
804/*
805 * Release a dquot. Flush it if dirty, then dqput() it.
806 * dquot must not be locked.
807 */
808void
809xfs_qm_dqrele(
810 xfs_dquot_t *dqp)
811{
Christoph Hellwig7d095252009-06-08 15:33:32 +0200812 if (!dqp)
813 return;
814
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000815 trace_xfs_dqrele(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 xfs_dqlock(dqp);
818 /*
819 * We don't care to flush it if the dquot is dirty here.
820 * That will create stutters that we want to avoid.
821 * Instead we do a delayed write when we try to reclaim
822 * a dirty dquot. Also xfs_sync will take part of the burden...
823 */
824 xfs_qm_dqput(dqp);
825}
826
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000827/*
828 * This is the dquot flushing I/O completion routine. It is called
829 * from interrupt level when the buffer containing the dquot is
830 * flushed to disk. It is responsible for removing the dquot logitem
831 * from the AIL if it has not been re-logged, and unlocking the dquot's
832 * flush lock. This behavior is very similar to that of inodes..
833 */
834STATIC void
835xfs_qm_dqflush_done(
836 struct xfs_buf *bp,
837 struct xfs_log_item *lip)
838{
839 xfs_dq_logitem_t *qip = (struct xfs_dq_logitem *)lip;
840 xfs_dquot_t *dqp = qip->qli_dquot;
841 struct xfs_ail *ailp = lip->li_ailp;
842
843 /*
844 * We only want to pull the item from the AIL if its
845 * location in the log has not changed since we started the flush.
846 * Thus, we only bother if the dquot's lsn has
847 * not changed. First we check the lsn outside the lock
848 * since it's cheaper, and then we recheck while
849 * holding the lock before removing the dquot from the AIL.
850 */
851 if ((lip->li_flags & XFS_LI_IN_AIL) &&
852 lip->li_lsn == qip->qli_flush_lsn) {
853
854 /* xfs_trans_ail_delete() drops the AIL lock. */
855 spin_lock(&ailp->xa_lock);
856 if (lip->li_lsn == qip->qli_flush_lsn)
857 xfs_trans_ail_delete(ailp, lip);
858 else
859 spin_unlock(&ailp->xa_lock);
860 }
861
862 /*
863 * Release the dq's flush lock since we're done with it.
864 */
865 xfs_dqfunlock(dqp);
866}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868/*
869 * Write a modified dquot to disk.
870 * The dquot must be locked and the flush lock too taken by caller.
871 * The flush lock will not be unlocked until the dquot reaches the disk,
872 * but the dquot is free to be unlocked and modified by the caller
873 * in the interim. Dquot is still locked on return. This behavior is
874 * identical to that of inodes.
875 */
876int
877xfs_qm_dqflush(
878 xfs_dquot_t *dqp,
879 uint flags)
880{
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000881 struct xfs_mount *mp = dqp->q_mount;
882 struct xfs_buf *bp;
883 struct xfs_disk_dquot *ddqp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 ASSERT(XFS_DQ_IS_LOCKED(dqp));
David Chinnere1f49cf2008-08-13 16:41:43 +1000887 ASSERT(!completion_done(&dqp->q_flush));
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000888
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000889 trace_xfs_dqflush(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 /*
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000892 * If not dirty, or it's pinned and we are not supposed to block, nada.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 */
David Chinner2f8a3ce2008-10-30 17:07:20 +1100894 if (!XFS_DQ_IS_DIRTY(dqp) ||
Christoph Hellwigfdedf282011-12-06 21:58:10 +0000895 ((flags & SYNC_TRYLOCK) && atomic_read(&dqp->q_pincount) > 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 xfs_dqfunlock(dqp);
David Chinner2f8a3ce2008-10-30 17:07:20 +1100897 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 xfs_qm_dqunpin_wait(dqp);
900
901 /*
902 * This may have been unpinned because the filesystem is shutting
903 * down forcibly. If that's the case we must not write this dquot
904 * to disk, because the log record didn't make it to disk!
905 */
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000906 if (XFS_FORCED_SHUTDOWN(mp)) {
907 dqp->dq_flags &= ~XFS_DQ_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 xfs_dqfunlock(dqp);
909 return XFS_ERROR(EIO);
910 }
911
912 /*
913 * Get the buffer containing the on-disk dquot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 */
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000915 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp, dqp->q_blkno,
916 mp->m_quotainfo->qi_dqchunklen, 0, &bp);
917 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 ASSERT(error != ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 xfs_dqfunlock(dqp);
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000920 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 }
922
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000923 /*
924 * Calculate the location of the dquot inside the buffer.
925 */
Chandra Seetharaman62926042011-07-22 23:40:15 +0000926 ddqp = bp->b_addr + dqp->q_bufoffset;
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000927
928 /*
929 * A simple sanity check in case we got a corrupted dquot..
930 */
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100931 error = xfs_qm_dqcheck(mp, &dqp->q_core, be32_to_cpu(ddqp->d_id), 0,
932 XFS_QMOPT_DOWARN, "dqflush (incore copy)");
933 if (error) {
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000934 xfs_buf_relse(bp);
935 xfs_dqfunlock(dqp);
936 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 return XFS_ERROR(EIO);
938 }
939
940 /* This is the only portion of data that needs to persist */
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000941 memcpy(ddqp, &dqp->q_core, sizeof(xfs_disk_dquot_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 /*
944 * Clear the dirty field and remember the flush lsn for later use.
945 */
Christoph Hellwigacecf1b2010-09-06 01:44:45 +0000946 dqp->dq_flags &= ~XFS_DQ_DIRTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
David Chinner7b2e2a32008-10-30 17:39:12 +1100948 xfs_trans_ail_copy_lsn(mp->m_ail, &dqp->q_logitem.qli_flush_lsn,
949 &dqp->q_logitem.qli_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 /*
952 * Attach an iodone routine so that we can remove this dquot from the
953 * AIL and release the flush lock once the dquot is synced to disk.
954 */
Christoph Hellwigca30b2a2010-06-23 18:11:15 +1000955 xfs_buf_attach_iodone(bp, xfs_qm_dqflush_done,
956 &dqp->q_logitem.qli_item);
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 /*
959 * If the buffer is pinned then push on the log so we won't
960 * get stuck waiting in the write for too long.
961 */
Chandra Seetharaman811e64c2011-07-22 23:40:27 +0000962 if (xfs_buf_ispinned(bp)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000963 trace_xfs_dqflush_force(dqp);
Christoph Hellwiga14a3482010-01-19 09:56:46 +0000964 xfs_log_force(mp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966
Dave Chinner20026d92010-02-04 09:48:58 +1100967 if (flags & SYNC_WAIT)
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000968 error = xfs_bwrite(bp);
969 else
Christoph Hellwig61551f12011-08-23 08:28:06 +0000970 xfs_buf_delwri_queue(bp);
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000971
972 xfs_buf_relse(bp);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000973
974 trace_xfs_dqflush_done(dqp);
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 /*
977 * dqp is still locked, but caller is free to unlock it now.
978 */
Dave Chinner20026d92010-02-04 09:48:58 +1100979 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981}
982
Christoph Hellwig5bb87a32009-01-19 02:03:19 +0100983/*
984 * Lock two xfs_dquot structures.
985 *
986 * To avoid deadlocks we always lock the quota structure with
987 * the lowerd id first.
988 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989void
990xfs_dqlock2(
991 xfs_dquot_t *d1,
992 xfs_dquot_t *d2)
993{
994 if (d1 && d2) {
995 ASSERT(d1 != d2);
Christoph Hellwig1149d962005-11-02 15:01:12 +1100996 if (be32_to_cpu(d1->q_core.d_id) >
997 be32_to_cpu(d2->q_core.d_id)) {
Christoph Hellwig5bb87a32009-01-19 02:03:19 +0100998 mutex_lock(&d2->q_qlock);
999 mutex_lock_nested(&d1->q_qlock, XFS_QLOCK_NESTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 } else {
Christoph Hellwig5bb87a32009-01-19 02:03:19 +01001001 mutex_lock(&d1->q_qlock);
1002 mutex_lock_nested(&d2->q_qlock, XFS_QLOCK_NESTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
Christoph Hellwig5bb87a32009-01-19 02:03:19 +01001004 } else if (d1) {
1005 mutex_lock(&d1->q_qlock);
1006 } else if (d2) {
1007 mutex_lock(&d2->q_qlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
1009}
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 * Give the buffer a little push if it is incore and
1013 * wait on the flush lock.
1014 */
1015void
Christoph Hellwig800b4842011-12-06 21:58:14 +00001016xfs_dqflock_pushbuf_wait(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 xfs_dquot_t *dqp)
1018{
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001019 xfs_mount_t *mp = dqp->q_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 xfs_buf_t *bp;
1021
1022 /*
1023 * Check to see if the dquot has been flushed delayed
1024 * write. If so, grab its buffer and send it
1025 * out immediately. We'll be able to acquire
1026 * the flush lock when the I/O completes.
1027 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001028 bp = xfs_incore(mp->m_ddev_targp, dqp->q_blkno,
1029 mp->m_quotainfo->qi_dqchunklen, XBF_TRYLOCK);
Dave Chinner7d6a7bd2010-01-26 15:13:41 +11001030 if (!bp)
1031 goto out_lock;
Christoph Hellwiga14a3482010-01-19 09:56:46 +00001032
Dave Chinner7d6a7bd2010-01-26 15:13:41 +11001033 if (XFS_BUF_ISDELAYWRITE(bp)) {
Chandra Seetharaman811e64c2011-07-22 23:40:27 +00001034 if (xfs_buf_ispinned(bp))
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001035 xfs_log_force(mp, 0);
Dave Chinner7d6a7bd2010-01-26 15:13:41 +11001036 xfs_buf_delwri_promote(bp);
1037 wake_up_process(bp->b_target->bt_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
Dave Chinner7d6a7bd2010-01-26 15:13:41 +11001039 xfs_buf_relse(bp);
1040out_lock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 xfs_dqflock(dqp);
1042}