blob: 14a4996cfec6cb4fbeaa1d3f8432548ebb57d48b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott4ce31212005-11-02 14:59:41 +11002 * Copyright (c) 2000-2005 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"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110020#include "xfs_shared.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +100021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110023#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_ialloc.h"
30#include "xfs_itable.h"
Dave Chinner239880e2013-10-23 10:50:10 +110031#include "xfs_quota.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_error.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_bmap.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110034#include "xfs_bmap_btree.h"
Dave Chinner239880e2013-10-23 10:50:10 +110035#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_trans_space.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_qm.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000038#include "xfs_trace.h"
Dave Chinner33479e02012-10-08 21:56:11 +110039#include "xfs_icache.h"
Dave Chinner6fcdc592013-06-03 15:28:46 +100040#include "xfs_cksum.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110041#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*
44 * The global quota manager. There is only one of these for the entire
45 * system, _not_ one per file system. XQM keeps track of the overall
46 * quota functionality, including maintaining the freelist and hash
47 * tables of dquots.
48 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049STATIC int xfs_qm_init_quotainos(xfs_mount_t *);
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100050STATIC int xfs_qm_init_quotainfo(xfs_mount_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Dave Chinnercd56a392013-08-28 10:18:07 +100052
53STATIC void xfs_qm_dqfree_one(struct xfs_dquot *dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/*
Christoph Hellwigb84a3a92012-03-14 11:53:34 -050055 * We use the batch lookup interface to iterate over the dquots as it
56 * currently is the only interface into the radix tree code that allows
57 * fuzzy lookups instead of exact matches. Holding the lock over multiple
58 * operations is fine as all callers are used either during mount/umount
59 * or quotaoff.
60 */
61#define XFS_DQ_LOOKUP_BATCH 32
62
63STATIC int
64xfs_qm_dquot_walk(
65 struct xfs_mount *mp,
66 int type,
Christoph Hellwig43ff2122012-04-23 15:58:39 +100067 int (*execute)(struct xfs_dquot *dqp, void *data),
68 void *data)
Christoph Hellwigb84a3a92012-03-14 11:53:34 -050069{
70 struct xfs_quotainfo *qi = mp->m_quotainfo;
Chandra Seetharaman329e0872013-06-27 17:25:05 -050071 struct radix_tree_root *tree = xfs_dquot_tree(qi, type);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -050072 uint32_t next_index;
73 int last_error = 0;
74 int skipped;
75 int nr_found;
76
77restart:
78 skipped = 0;
79 next_index = 0;
80 nr_found = 0;
81
82 while (1) {
83 struct xfs_dquot *batch[XFS_DQ_LOOKUP_BATCH];
84 int error = 0;
85 int i;
86
87 mutex_lock(&qi->qi_tree_lock);
88 nr_found = radix_tree_gang_lookup(tree, (void **)batch,
89 next_index, XFS_DQ_LOOKUP_BATCH);
90 if (!nr_found) {
91 mutex_unlock(&qi->qi_tree_lock);
92 break;
93 }
94
95 for (i = 0; i < nr_found; i++) {
96 struct xfs_dquot *dqp = batch[i];
97
98 next_index = be32_to_cpu(dqp->q_core.d_id) + 1;
99
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000100 error = execute(batch[i], data);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500101 if (error == EAGAIN) {
102 skipped++;
103 continue;
104 }
105 if (error && last_error != EFSCORRUPTED)
106 last_error = error;
107 }
108
109 mutex_unlock(&qi->qi_tree_lock);
110
111 /* bail out if the filesystem is corrupted. */
112 if (last_error == EFSCORRUPTED) {
113 skipped = 0;
114 break;
115 }
116 }
117
118 if (skipped) {
119 delay(1);
120 goto restart;
121 }
122
123 return last_error;
124}
125
126
127/*
128 * Purge a dquot from all tracking data structures and free it.
129 */
130STATIC int
131xfs_qm_dqpurge(
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000132 struct xfs_dquot *dqp,
133 void *data)
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500134{
135 struct xfs_mount *mp = dqp->q_mount;
136 struct xfs_quotainfo *qi = mp->m_quotainfo;
137 struct xfs_dquot *gdqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500138 struct xfs_dquot *pdqp = NULL;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500139
140 xfs_dqlock(dqp);
141 if ((dqp->dq_flags & XFS_DQ_FREEING) || dqp->q_nrefs != 0) {
142 xfs_dqunlock(dqp);
143 return EAGAIN;
144 }
145
146 /*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500147 * If this quota has a hint attached, prepare for releasing it now.
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500148 */
149 gdqp = dqp->q_gdquot;
150 if (gdqp) {
151 xfs_dqlock(gdqp);
152 dqp->q_gdquot = NULL;
153 }
154
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500155 pdqp = dqp->q_pdquot;
156 if (pdqp) {
157 xfs_dqlock(pdqp);
158 dqp->q_pdquot = NULL;
159 }
160
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500161 dqp->dq_flags |= XFS_DQ_FREEING;
162
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000163 xfs_dqflock(dqp);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500164
165 /*
166 * If we are turning this type of quotas off, we don't care
167 * about the dirty metadata sitting in this dquot. OTOH, if
168 * we're unmounting, we do care, so we flush it and wait.
169 */
170 if (XFS_DQ_IS_DIRTY(dqp)) {
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000171 struct xfs_buf *bp = NULL;
172 int error;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500173
174 /*
175 * We don't care about getting disk errors here. We need
176 * to purge this dquot anyway, so we go ahead regardless.
177 */
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000178 error = xfs_qm_dqflush(dqp, &bp);
179 if (error) {
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500180 xfs_warn(mp, "%s: dquot %p flush failed",
181 __func__, dqp);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000182 } else {
183 error = xfs_bwrite(bp);
184 xfs_buf_relse(bp);
185 }
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500186 xfs_dqflock(dqp);
187 }
188
189 ASSERT(atomic_read(&dqp->q_pincount) == 0);
190 ASSERT(XFS_FORCED_SHUTDOWN(mp) ||
191 !(dqp->q_logitem.qli_item.li_flags & XFS_LI_IN_AIL));
192
193 xfs_dqfunlock(dqp);
194 xfs_dqunlock(dqp);
195
Chandra Seetharaman329e0872013-06-27 17:25:05 -0500196 radix_tree_delete(xfs_dquot_tree(qi, dqp->q_core.d_flags),
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500197 be32_to_cpu(dqp->q_core.d_id));
198 qi->qi_dquots--;
199
200 /*
201 * We move dquots to the freelist as soon as their reference count
202 * hits zero, so it really should be on the freelist here.
203 */
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500204 ASSERT(!list_empty(&dqp->q_lru));
Dave Chinnercd56a392013-08-28 10:18:07 +1000205 list_lru_del(&qi->qi_lru, &dqp->q_lru);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500206 XFS_STATS_DEC(xs_qm_dquot_unused);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500207
208 xfs_qm_dqdestroy(dqp);
209
210 if (gdqp)
211 xfs_qm_dqput(gdqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500212 if (pdqp)
213 xfs_qm_dqput(pdqp);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500214 return 0;
215}
216
217/*
218 * Purge the dquot cache.
219 */
220void
221xfs_qm_dqpurge_all(
222 struct xfs_mount *mp,
223 uint flags)
224{
225 if (flags & XFS_QMOPT_UQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000226 xfs_qm_dquot_walk(mp, XFS_DQ_USER, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500227 if (flags & XFS_QMOPT_GQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000228 xfs_qm_dquot_walk(mp, XFS_DQ_GROUP, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500229 if (flags & XFS_QMOPT_PQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000230 xfs_qm_dquot_walk(mp, XFS_DQ_PROJ, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500231}
232
233/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 * Just destroy the quotainfo structure.
235 */
236void
Christoph Hellwig7d095252009-06-08 15:33:32 +0200237xfs_qm_unmount(
238 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Christoph Hellwig7d095252009-06-08 15:33:32 +0200240 if (mp->m_quotainfo) {
Christoph Hellwig8112e9d2010-04-20 17:02:29 +1000241 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 xfs_qm_destroy_quotainfo(mp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
246
247/*
248 * This is called from xfs_mountfs to start quotas and initialize all
249 * necessary data structures like quotainfo. This is also responsible for
250 * running a quotacheck as necessary. We are guaranteed that the superblock
251 * is consistently read in at this point.
David Chinner53aa7912008-04-10 12:20:31 +1000252 *
253 * If we fail here, the mount will continue with quota turned off. We don't
254 * need to inidicate success or failure at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 */
David Chinner53aa7912008-04-10 12:20:31 +1000256void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257xfs_qm_mount_quotas(
Christoph Hellwig42490232008-08-13 16:49:32 +1000258 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 int error = 0;
261 uint sbf;
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /*
264 * If quotas on realtime volumes is not supported, we disable
265 * quotas immediately.
266 */
267 if (mp->m_sb.sb_rextents) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100268 xfs_notice(mp, "Cannot turn on quotas for realtime filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 mp->m_qflags = 0;
270 goto write_changes;
271 }
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Nathan Scott155ffd02005-09-02 16:43:48 +1000274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /*
276 * Allocate the quotainfo structure inside the mount struct, and
277 * create quotainode(s), and change/rev superblock if necessary.
278 */
David Chinner53aa7912008-04-10 12:20:31 +1000279 error = xfs_qm_init_quotainfo(mp);
280 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /*
282 * We must turn off quotas.
283 */
284 ASSERT(mp->m_quotainfo == NULL);
285 mp->m_qflags = 0;
286 goto write_changes;
287 }
288 /*
289 * If any of the quotas are not consistent, do a quotacheck.
290 */
Christoph Hellwig42490232008-08-13 16:49:32 +1000291 if (XFS_QM_NEED_QUOTACHECK(mp)) {
David Chinner53aa7912008-04-10 12:20:31 +1000292 error = xfs_qm_quotacheck(mp);
293 if (error) {
294 /* Quotacheck failed and disabled quotas. */
295 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000298 /*
299 * If one type of quotas is off, then it will lose its
300 * quotachecked status, since we won't be doing accounting for
301 * that type anymore.
302 */
David Chinner53aa7912008-04-10 12:20:31 +1000303 if (!XFS_IS_UQUOTA_ON(mp))
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000304 mp->m_qflags &= ~XFS_UQUOTA_CHKD;
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500305 if (!XFS_IS_GQUOTA_ON(mp))
306 mp->m_qflags &= ~XFS_GQUOTA_CHKD;
307 if (!XFS_IS_PQUOTA_ON(mp))
308 mp->m_qflags &= ~XFS_PQUOTA_CHKD;
Nathan Scott155ffd02005-09-02 16:43:48 +1000309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 write_changes:
311 /*
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000312 * We actually don't have to acquire the m_sb_lock at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * This can only be called from mount, and that's single threaded. XXX
314 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000315 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 sbf = mp->m_sb.sb_qflags;
317 mp->m_sb.sb_qflags = mp->m_qflags & XFS_MOUNT_QUOTA_ALL;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000318 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 if (sbf != (mp->m_qflags & XFS_MOUNT_QUOTA_ALL)) {
321 if (xfs_qm_write_sb_changes(mp, XFS_SB_QFLAGS)) {
322 /*
323 * We could only have been turning quotas off.
324 * We aren't in very good shape actually because
325 * the incore structures are convinced that quotas are
326 * off, but the on disk superblock doesn't know that !
327 */
328 ASSERT(!(XFS_IS_QUOTA_RUNNING(mp)));
Dave Chinner53487782011-03-07 10:05:35 +1100329 xfs_alert(mp, "%s: Superblock update failed!",
330 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332 }
333
334 if (error) {
Dave Chinner53487782011-03-07 10:05:35 +1100335 xfs_warn(mp, "Failed to initialize disk quotas.");
Christoph Hellwig7d095252009-06-08 15:33:32 +0200336 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
340/*
341 * Called from the vfsops layer.
342 */
Christoph Hellwige57481d2008-12-03 12:20:36 +0100343void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344xfs_qm_unmount_quotas(
345 xfs_mount_t *mp)
346{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 /*
348 * Release the dquots that root inode, et al might be holding,
349 * before we flush quotas and blow away the quotainfo structure.
350 */
351 ASSERT(mp->m_rootip);
352 xfs_qm_dqdetach(mp->m_rootip);
353 if (mp->m_rbmip)
354 xfs_qm_dqdetach(mp->m_rbmip);
355 if (mp->m_rsumip)
356 xfs_qm_dqdetach(mp->m_rsumip);
357
358 /*
Christoph Hellwige57481d2008-12-03 12:20:36 +0100359 * Release the quota inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (mp->m_quotainfo) {
Christoph Hellwige57481d2008-12-03 12:20:36 +0100362 if (mp->m_quotainfo->qi_uquotaip) {
363 IRELE(mp->m_quotainfo->qi_uquotaip);
364 mp->m_quotainfo->qi_uquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
Christoph Hellwige57481d2008-12-03 12:20:36 +0100366 if (mp->m_quotainfo->qi_gquotaip) {
367 IRELE(mp->m_quotainfo->qi_gquotaip);
368 mp->m_quotainfo->qi_gquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500370 if (mp->m_quotainfo->qi_pquotaip) {
371 IRELE(mp->m_quotainfo->qi_pquotaip);
372 mp->m_quotainfo->qi_pquotaip = NULL;
373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377STATIC int
378xfs_qm_dqattach_one(
379 xfs_inode_t *ip,
380 xfs_dqid_t id,
381 uint type,
382 uint doalloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 xfs_dquot_t *udqhint, /* hint */
384 xfs_dquot_t **IO_idqpp)
385{
386 xfs_dquot_t *dqp;
387 int error;
388
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000389 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 error = 0;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /*
393 * See if we already have it in the inode itself. IO_idqpp is
394 * &i_udquot or &i_gdquot. This made the code look weird, but
395 * made the logic a lot simpler.
396 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100397 dqp = *IO_idqpp;
398 if (dqp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000399 trace_xfs_dqattach_found(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100400 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402
403 /*
404 * udqhint is the i_udquot field in inode, and is non-NULL only
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000405 * when the type arg is group/project. Its purpose is to save a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 * lookup by dqid (xfs_qm_dqget) by caching a group dquot inside
407 * the user dquot.
408 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100409 if (udqhint) {
410 ASSERT(type == XFS_DQ_GROUP || type == XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 xfs_dqlock(udqhint);
412
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100413 /*
414 * No need to take dqlock to look at the id.
415 *
416 * The ID can't change until it gets reclaimed, and it won't
417 * be reclaimed as long as we have a ref from inode and we
418 * hold the ilock.
419 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500420 if (type == XFS_DQ_GROUP)
421 dqp = udqhint->q_gdquot;
422 else
423 dqp = udqhint->q_pdquot;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100424 if (dqp && be32_to_cpu(dqp->q_core.d_id) == id) {
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100425 ASSERT(*IO_idqpp == NULL);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100426
Christoph Hellwig78e55892011-12-06 21:58:22 +0000427 *IO_idqpp = xfs_qm_dqhold(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100429 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100431
432 /*
433 * We can't hold a dquot lock when we call the dqget code.
434 * We'll deadlock in no time, because of (not conforming to)
435 * lock ordering - the inodelock comes before any dquot lock,
436 * and we may drop and reacquire the ilock in xfs_qm_dqget().
437 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100439 }
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 /*
442 * Find the dquot from somewhere. This bumps the
443 * reference count of dquot and returns it locked.
444 * This can return ENOENT if dquot didn't exist on
445 * disk and we didn't ask it to allocate;
446 * ESRCH if quotas got turned off suddenly.
447 */
Mitsuo Hayasakadb3e74b2011-11-10 01:33:10 +0000448 error = xfs_qm_dqget(ip->i_mount, ip, id, type,
449 doalloc | XFS_QMOPT_DOWARN, &dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100450 if (error)
451 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000453 trace_xfs_dqattach_get(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /*
456 * dqget may have dropped and re-acquired the ilock, but it guarantees
457 * that the dquot returned is the one that should go in the inode.
458 */
459 *IO_idqpp = dqp;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100460 xfs_dqunlock(dqp);
461 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463
464
465/*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500466 * Given a udquot and group/project type, attach the group/project
467 * dquot pointer to the udquot as a hint for future lookups.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 */
469STATIC void
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500470xfs_qm_dqattach_hint(
471 struct xfs_inode *ip,
472 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500474 struct xfs_dquot **dqhintp;
475 struct xfs_dquot *dqp;
476 struct xfs_dquot *udq = ip->i_udquot;
477
478 ASSERT(type == XFS_DQ_GROUP || type == XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100480 xfs_dqlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500482 if (type == XFS_DQ_GROUP) {
483 dqp = ip->i_gdquot;
484 dqhintp = &udq->q_gdquot;
485 } else {
486 dqp = ip->i_pdquot;
487 dqhintp = &udq->q_pdquot;
488 }
489
490 if (*dqhintp) {
491 struct xfs_dquot *tmp;
492
493 if (*dqhintp == dqp)
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000494 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500496 tmp = *dqhintp;
497 *dqhintp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 xfs_qm_dqrele(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
500
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500501 *dqhintp = xfs_qm_dqhold(dqp);
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000502done:
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100503 xfs_dqunlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400506static bool
507xfs_qm_need_dqattach(
508 struct xfs_inode *ip)
509{
510 struct xfs_mount *mp = ip->i_mount;
511
512 if (!XFS_IS_QUOTA_RUNNING(mp))
513 return false;
514 if (!XFS_IS_QUOTA_ON(mp))
515 return false;
516 if (!XFS_NOT_DQATTACHED(mp, ip))
517 return false;
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -0500518 if (xfs_is_quota_inode(&mp->m_sb, ip->i_ino))
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400519 return false;
520 return true;
521}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000524 * Given a locked inode, attach dquot(s) to it, taking U/G/P-QUOTAON
525 * into account.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 * If XFS_QMOPT_DQALLOC, the dquot(s) will be allocated if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 * Inode may get unlocked and relocked in here, and the caller must deal with
528 * the consequences.
529 */
530int
Christoph Hellwig7d095252009-06-08 15:33:32 +0200531xfs_qm_dqattach_locked(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 xfs_inode_t *ip,
533 uint flags)
534{
535 xfs_mount_t *mp = ip->i_mount;
536 uint nquotas = 0;
537 int error = 0;
538
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400539 if (!xfs_qm_need_dqattach(ip))
Jesper Juhl014c2542006-01-15 02:37:08 +0100540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Christoph Hellwig7d095252009-06-08 15:33:32 +0200542 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 if (XFS_IS_UQUOTA_ON(mp)) {
545 error = xfs_qm_dqattach_one(ip, ip->i_d.di_uid, XFS_DQ_USER,
546 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 NULL, &ip->i_udquot);
548 if (error)
549 goto done;
550 nquotas++;
551 }
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000552
553 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500554 if (XFS_IS_GQUOTA_ON(mp)) {
555 error = xfs_qm_dqattach_one(ip, ip->i_d.di_gid, XFS_DQ_GROUP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 ip->i_udquot, &ip->i_gdquot);
558 /*
559 * Don't worry about the udquot that we may have
560 * attached above. It'll get detached, if not already.
561 */
562 if (error)
563 goto done;
564 nquotas++;
565 }
566
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500567 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
568 if (XFS_IS_PQUOTA_ON(mp)) {
569 error = xfs_qm_dqattach_one(ip, xfs_get_projid(ip), XFS_DQ_PROJ,
570 flags & XFS_QMOPT_DQALLOC,
571 ip->i_udquot, &ip->i_pdquot);
572 /*
573 * Don't worry about the udquot that we may have
574 * attached above. It'll get detached, if not already.
575 */
576 if (error)
577 goto done;
578 nquotas++;
579 }
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500582 * Attach this group/project quota to the user quota as a hint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 * This WON'T, in general, result in a thrash.
584 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500585 if (nquotas > 1 && ip->i_udquot) {
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000586 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500587 ASSERT(ip->i_gdquot || !XFS_IS_GQUOTA_ON(mp));
588 ASSERT(ip->i_pdquot || !XFS_IS_PQUOTA_ON(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 /*
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000591 * We do not have i_udquot locked at this point, but this check
592 * is OK since we don't depend on the i_gdquot to be accurate
593 * 100% all the time. It is just a hint, and this will
594 * succeed in general.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 */
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000596 if (ip->i_udquot->q_gdquot != ip->i_gdquot)
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500597 xfs_qm_dqattach_hint(ip, XFS_DQ_GROUP);
598
599 if (ip->i_udquot->q_pdquot != ip->i_pdquot)
600 xfs_qm_dqattach_hint(ip, XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
602
Christoph Hellwig7d095252009-06-08 15:33:32 +0200603 done:
Christoph Hellwigea15ab32011-07-13 13:43:50 +0200604#ifdef DEBUG
605 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (XFS_IS_UQUOTA_ON(mp))
607 ASSERT(ip->i_udquot);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500608 if (XFS_IS_GQUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 ASSERT(ip->i_gdquot);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500610 if (XFS_IS_PQUOTA_ON(mp))
611 ASSERT(ip->i_pdquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200613 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614#endif
Christoph Hellwig7d095252009-06-08 15:33:32 +0200615 return error;
616}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Christoph Hellwig7d095252009-06-08 15:33:32 +0200618int
619xfs_qm_dqattach(
620 struct xfs_inode *ip,
621 uint flags)
622{
623 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400625 if (!xfs_qm_need_dqattach(ip))
626 return 0;
627
Christoph Hellwig7d095252009-06-08 15:33:32 +0200628 xfs_ilock(ip, XFS_ILOCK_EXCL);
629 error = xfs_qm_dqattach_locked(ip, flags);
630 xfs_iunlock(ip, XFS_ILOCK_EXCL);
631
Jesper Juhl014c2542006-01-15 02:37:08 +0100632 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
635/*
636 * Release dquots (and their references) if any.
637 * The inode should be locked EXCL except when this's called by
638 * xfs_ireclaim.
639 */
640void
641xfs_qm_dqdetach(
642 xfs_inode_t *ip)
643{
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500644 if (!(ip->i_udquot || ip->i_gdquot || ip->i_pdquot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return;
646
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000647 trace_xfs_dquot_dqdetach(ip);
648
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -0500649 ASSERT(!xfs_is_quota_inode(&ip->i_mount->m_sb, ip->i_ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (ip->i_udquot) {
651 xfs_qm_dqrele(ip->i_udquot);
652 ip->i_udquot = NULL;
653 }
654 if (ip->i_gdquot) {
655 xfs_qm_dqrele(ip->i_gdquot);
656 ip->i_gdquot = NULL;
657 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500658 if (ip->i_pdquot) {
659 xfs_qm_dqrele(ip->i_pdquot);
660 ip->i_pdquot = NULL;
661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Dave Chinnercd56a392013-08-28 10:18:07 +1000664struct xfs_qm_isolate {
665 struct list_head buffers;
666 struct list_head dispose;
667};
668
669static enum lru_status
670xfs_qm_dquot_isolate(
671 struct list_head *item,
672 spinlock_t *lru_lock,
673 void *arg)
674{
675 struct xfs_dquot *dqp = container_of(item,
676 struct xfs_dquot, q_lru);
677 struct xfs_qm_isolate *isol = arg;
678
679 if (!xfs_dqlock_nowait(dqp))
680 goto out_miss_busy;
681
682 /*
683 * This dquot has acquired a reference in the meantime remove it from
684 * the freelist and try again.
685 */
686 if (dqp->q_nrefs) {
687 xfs_dqunlock(dqp);
688 XFS_STATS_INC(xs_qm_dqwants);
689
690 trace_xfs_dqreclaim_want(dqp);
691 list_del_init(&dqp->q_lru);
692 XFS_STATS_DEC(xs_qm_dquot_unused);
Dave Chinner35163412013-08-28 10:18:08 +1000693 return LRU_REMOVED;
Dave Chinnercd56a392013-08-28 10:18:07 +1000694 }
695
696 /*
697 * If the dquot is dirty, flush it. If it's already being flushed, just
698 * skip it so there is time for the IO to complete before we try to
699 * reclaim it again on the next LRU pass.
700 */
701 if (!xfs_dqflock_nowait(dqp)) {
702 xfs_dqunlock(dqp);
703 goto out_miss_busy;
704 }
705
706 if (XFS_DQ_IS_DIRTY(dqp)) {
707 struct xfs_buf *bp = NULL;
708 int error;
709
710 trace_xfs_dqreclaim_dirty(dqp);
711
712 /* we have to drop the LRU lock to flush the dquot */
713 spin_unlock(lru_lock);
714
715 error = xfs_qm_dqflush(dqp, &bp);
716 if (error) {
717 xfs_warn(dqp->q_mount, "%s: dquot %p flush failed",
718 __func__, dqp);
719 goto out_unlock_dirty;
720 }
721
722 xfs_buf_delwri_queue(bp, &isol->buffers);
723 xfs_buf_relse(bp);
724 goto out_unlock_dirty;
725 }
726 xfs_dqfunlock(dqp);
727
728 /*
729 * Prevent lookups now that we are past the point of no return.
730 */
731 dqp->dq_flags |= XFS_DQ_FREEING;
732 xfs_dqunlock(dqp);
733
734 ASSERT(dqp->q_nrefs == 0);
735 list_move_tail(&dqp->q_lru, &isol->dispose);
736 XFS_STATS_DEC(xs_qm_dquot_unused);
737 trace_xfs_dqreclaim_done(dqp);
738 XFS_STATS_INC(xs_qm_dqreclaims);
Dave Chinner35163412013-08-28 10:18:08 +1000739 return LRU_REMOVED;
Dave Chinnercd56a392013-08-28 10:18:07 +1000740
741out_miss_busy:
742 trace_xfs_dqreclaim_busy(dqp);
743 XFS_STATS_INC(xs_qm_dqreclaim_misses);
Dave Chinner35163412013-08-28 10:18:08 +1000744 return LRU_SKIP;
Dave Chinnercd56a392013-08-28 10:18:07 +1000745
746out_unlock_dirty:
747 trace_xfs_dqreclaim_busy(dqp);
748 XFS_STATS_INC(xs_qm_dqreclaim_misses);
Dave Chinner35163412013-08-28 10:18:08 +1000749 xfs_dqunlock(dqp);
750 spin_lock(lru_lock);
751 return LRU_RETRY;
Dave Chinnercd56a392013-08-28 10:18:07 +1000752}
753
Andrew Morton2f5b56f2013-08-28 10:18:08 +1000754static unsigned long
Dave Chinnercd56a392013-08-28 10:18:07 +1000755xfs_qm_shrink_scan(
756 struct shrinker *shrink,
757 struct shrink_control *sc)
758{
759 struct xfs_quotainfo *qi = container_of(shrink,
760 struct xfs_quotainfo, qi_shrinker);
761 struct xfs_qm_isolate isol;
Andrew Morton2f5b56f2013-08-28 10:18:08 +1000762 unsigned long freed;
Dave Chinnercd56a392013-08-28 10:18:07 +1000763 int error;
764 unsigned long nr_to_scan = sc->nr_to_scan;
765
766 if ((sc->gfp_mask & (__GFP_FS|__GFP_WAIT)) != (__GFP_FS|__GFP_WAIT))
767 return 0;
768
769 INIT_LIST_HEAD(&isol.buffers);
770 INIT_LIST_HEAD(&isol.dispose);
771
772 freed = list_lru_walk_node(&qi->qi_lru, sc->nid, xfs_qm_dquot_isolate, &isol,
773 &nr_to_scan);
774
775 error = xfs_buf_delwri_submit(&isol.buffers);
776 if (error)
777 xfs_warn(NULL, "%s: dquot reclaim failed", __func__);
778
779 while (!list_empty(&isol.dispose)) {
780 struct xfs_dquot *dqp;
781
782 dqp = list_first_entry(&isol.dispose, struct xfs_dquot, q_lru);
783 list_del_init(&dqp->q_lru);
784 xfs_qm_dqfree_one(dqp);
785 }
786
787 return freed;
788}
789
Andrew Morton2f5b56f2013-08-28 10:18:08 +1000790static unsigned long
Dave Chinnercd56a392013-08-28 10:18:07 +1000791xfs_qm_shrink_count(
792 struct shrinker *shrink,
793 struct shrink_control *sc)
794{
795 struct xfs_quotainfo *qi = container_of(shrink,
796 struct xfs_quotainfo, qi_shrinker);
797
798 return list_lru_count_node(&qi->qi_lru, sc->nid);
799}
800
Christoph Hellwiga4edd1d2009-01-19 02:03:11 +0100801/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 * This initializes all the quota information that's kept in the
803 * mount structure
804 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000805STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806xfs_qm_init_quotainfo(
807 xfs_mount_t *mp)
808{
809 xfs_quotainfo_t *qinf;
810 int error;
811 xfs_dquot_t *dqp;
812
813 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 qinf = mp->m_quotainfo = kmem_zalloc(sizeof(xfs_quotainfo_t), KM_SLEEP);
816
Glauber Costa5ca302c2013-08-28 10:18:18 +1000817 if ((error = list_lru_init(&qinf->qi_lru))) {
818 kmem_free(qinf);
819 mp->m_quotainfo = NULL;
820 return error;
821 }
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 /*
824 * See if quotainodes are setup, and if not, allocate them,
825 * and change the superblock accordingly.
826 */
827 if ((error = xfs_qm_init_quotainos(mp))) {
Glauber Costa5ca302c2013-08-28 10:18:18 +1000828 list_lru_destroy(&qinf->qi_lru);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000829 kmem_free(qinf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 mp->m_quotainfo = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +0100831 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
833
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000834 INIT_RADIX_TREE(&qinf->qi_uquota_tree, GFP_NOFS);
835 INIT_RADIX_TREE(&qinf->qi_gquota_tree, GFP_NOFS);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500836 INIT_RADIX_TREE(&qinf->qi_pquota_tree, GFP_NOFS);
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000837 mutex_init(&qinf->qi_tree_lock);
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /* mutex used to serialize quotaoffs */
Jes Sorensen794ee1b2006-01-09 15:59:21 -0800840 mutex_init(&qinf->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 /* Precalc some constants */
843 qinf->qi_dqchunklen = XFS_FSB_TO_BB(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
Dave Chinner9aede1d2013-10-15 09:17:52 +1100844 qinf->qi_dqperchunk = xfs_calc_dquots_per_chunk(mp,
Christoph Hellwig3fe58f32013-04-03 16:11:16 +1100845 qinf->qi_dqchunklen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 mp->m_qflags |= (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_CHKD);
848
849 /*
850 * We try to get the limits from the superuser's limits fields.
851 * This is quite hacky, but it is standard quota practice.
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000852 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 * We look at the USR dquot with id == 0 first, but if user quotas
854 * are not enabled we goto the GRP dquot with id == 0.
855 * We don't really care to keep separate default limits for user
856 * and group quotas, at least not at this point.
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000857 *
858 * Since we may not have done a quotacheck by this point, just read
859 * the dquot without attaching it to any hashtables or lists.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 */
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000861 error = xfs_qm_dqread(mp, 0,
862 XFS_IS_UQUOTA_RUNNING(mp) ? XFS_DQ_USER :
863 (XFS_IS_GQUOTA_RUNNING(mp) ? XFS_DQ_GROUP :
864 XFS_DQ_PROJ),
865 XFS_QMOPT_DOWARN, &dqp);
866 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 xfs_disk_dquot_t *ddqp = &dqp->q_core;
868
869 /*
870 * The warnings and timers set the grace period given to
871 * a user or group before he or she can not perform any
872 * more writing. If it is zero, a default is used.
873 */
Christoph Hellwig1149d962005-11-02 15:01:12 +1100874 qinf->qi_btimelimit = ddqp->d_btimer ?
875 be32_to_cpu(ddqp->d_btimer) : XFS_QM_BTIMELIMIT;
876 qinf->qi_itimelimit = ddqp->d_itimer ?
877 be32_to_cpu(ddqp->d_itimer) : XFS_QM_ITIMELIMIT;
878 qinf->qi_rtbtimelimit = ddqp->d_rtbtimer ?
879 be32_to_cpu(ddqp->d_rtbtimer) : XFS_QM_RTBTIMELIMIT;
880 qinf->qi_bwarnlimit = ddqp->d_bwarns ?
881 be16_to_cpu(ddqp->d_bwarns) : XFS_QM_BWARNLIMIT;
882 qinf->qi_iwarnlimit = ddqp->d_iwarns ?
883 be16_to_cpu(ddqp->d_iwarns) : XFS_QM_IWARNLIMIT;
884 qinf->qi_rtbwarnlimit = ddqp->d_rtbwarns ?
885 be16_to_cpu(ddqp->d_rtbwarns) : XFS_QM_RTBWARNLIMIT;
886 qinf->qi_bhardlimit = be64_to_cpu(ddqp->d_blk_hardlimit);
887 qinf->qi_bsoftlimit = be64_to_cpu(ddqp->d_blk_softlimit);
888 qinf->qi_ihardlimit = be64_to_cpu(ddqp->d_ino_hardlimit);
889 qinf->qi_isoftlimit = be64_to_cpu(ddqp->d_ino_softlimit);
890 qinf->qi_rtbhardlimit = be64_to_cpu(ddqp->d_rtb_hardlimit);
891 qinf->qi_rtbsoftlimit = be64_to_cpu(ddqp->d_rtb_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 xfs_qm_dqdestroy(dqp);
894 } else {
895 qinf->qi_btimelimit = XFS_QM_BTIMELIMIT;
896 qinf->qi_itimelimit = XFS_QM_ITIMELIMIT;
897 qinf->qi_rtbtimelimit = XFS_QM_RTBTIMELIMIT;
898 qinf->qi_bwarnlimit = XFS_QM_BWARNLIMIT;
899 qinf->qi_iwarnlimit = XFS_QM_IWARNLIMIT;
Nathan Scott06d10dd2005-06-21 15:48:47 +1000900 qinf->qi_rtbwarnlimit = XFS_QM_RTBWARNLIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902
Dave Chinnercd56a392013-08-28 10:18:07 +1000903 qinf->qi_shrinker.count_objects = xfs_qm_shrink_count;
904 qinf->qi_shrinker.scan_objects = xfs_qm_shrink_scan;
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000905 qinf->qi_shrinker.seeks = DEFAULT_SEEKS;
Dave Chinnercd56a392013-08-28 10:18:07 +1000906 qinf->qi_shrinker.flags = SHRINKER_NUMA_AWARE;
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000907 register_shrinker(&qinf->qi_shrinker);
Jesper Juhl014c2542006-01-15 02:37:08 +0100908 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
910
911
912/*
913 * Gets called when unmounting a filesystem or when all quotas get
914 * turned off.
915 * This purges the quota inodes, destroys locks and frees itself.
916 */
917void
918xfs_qm_destroy_quotainfo(
919 xfs_mount_t *mp)
920{
921 xfs_quotainfo_t *qi;
922
923 qi = mp->m_quotainfo;
924 ASSERT(qi != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000926 unregister_shrinker(&qi->qi_shrinker);
Glauber Costaf5e1dd32013-08-28 10:18:18 +1000927 list_lru_destroy(&qi->qi_lru);
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 if (qi->qi_uquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +1000930 IRELE(qi->qi_uquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 qi->qi_uquotaip = NULL; /* paranoia */
932 }
933 if (qi->qi_gquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +1000934 IRELE(qi->qi_gquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 qi->qi_gquotaip = NULL;
936 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500937 if (qi->qi_pquotaip) {
938 IRELE(qi->qi_pquotaip);
939 qi->qi_pquotaip = NULL;
940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 mutex_destroy(&qi->qi_quotaofflock);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000942 kmem_free(qi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 mp->m_quotainfo = NULL;
944}
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946/*
947 * Create an inode and return with a reference already taken, but unlocked
948 * This is how we create quota inodes
949 */
950STATIC int
951xfs_qm_qino_alloc(
952 xfs_mount_t *mp,
953 xfs_inode_t **ip,
954 __int64_t sbfields,
955 uint flags)
956{
957 xfs_trans_t *tp;
958 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 int committed;
960
Chandra Seetharamand892d582013-07-19 17:36:02 -0500961 *ip = NULL;
962 /*
963 * With superblock that doesn't have separate pquotino, we
964 * share an inode between gquota and pquota. If the on-disk
965 * superblock has GQUOTA and the filesystem is now mounted
966 * with PQUOTA, just use sb_gquotino for sb_pquotino and
967 * vice-versa.
968 */
969 if (!xfs_sb_version_has_pquotino(&mp->m_sb) &&
970 (flags & (XFS_QMOPT_PQUOTA|XFS_QMOPT_GQUOTA))) {
971 xfs_ino_t ino = NULLFSINO;
972
973 if ((flags & XFS_QMOPT_PQUOTA) &&
974 (mp->m_sb.sb_gquotino != NULLFSINO)) {
975 ino = mp->m_sb.sb_gquotino;
976 ASSERT(mp->m_sb.sb_pquotino == NULLFSINO);
977 } else if ((flags & XFS_QMOPT_GQUOTA) &&
978 (mp->m_sb.sb_pquotino != NULLFSINO)) {
979 ino = mp->m_sb.sb_pquotino;
980 ASSERT(mp->m_sb.sb_gquotino == NULLFSINO);
981 }
982 if (ino != NULLFSINO) {
983 error = xfs_iget(mp, NULL, ino, 0, 0, ip);
984 if (error)
985 return error;
986 mp->m_sb.sb_gquotino = NULLFSINO;
987 mp->m_sb.sb_pquotino = NULLFSINO;
988 }
989 }
990
Nathan Scott061f7202006-01-11 15:27:50 +1100991 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QINOCREATE);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000992 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_create,
993 XFS_QM_QINOCREATE_SPACE_RES(mp), 0);
994 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +0100996 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Chandra Seetharamand892d582013-07-19 17:36:02 -0500999 if (!*ip) {
1000 error = xfs_dir_ialloc(&tp, NULL, S_IFREG, 1, 0, 0, 1, ip,
1001 &committed);
1002 if (error) {
1003 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES |
1004 XFS_TRANS_ABORT);
1005 return error;
1006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
1008
1009 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 * Make the changes in the superblock, and log those too.
1011 * sbfields arg may contain fields other than *QUOTINO;
1012 * VERSIONNUM for example.
1013 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001014 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (flags & XFS_QMOPT_SBVERSION) {
Eric Sandeen62118702008-03-06 13:44:28 +11001016 ASSERT(!xfs_sb_version_hasquota(&mp->m_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 ASSERT((sbfields & (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
Chandra Seetharamand892d582013-07-19 17:36:02 -05001018 XFS_SB_GQUOTINO | XFS_SB_PQUOTINO | XFS_SB_QFLAGS)) ==
1019 (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
1020 XFS_SB_GQUOTINO | XFS_SB_PQUOTINO |
1021 XFS_SB_QFLAGS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Eric Sandeen62118702008-03-06 13:44:28 +11001023 xfs_sb_version_addquota(&mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 mp->m_sb.sb_uquotino = NULLFSINO;
1025 mp->m_sb.sb_gquotino = NULLFSINO;
Chandra Seetharamand892d582013-07-19 17:36:02 -05001026 mp->m_sb.sb_pquotino = NULLFSINO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Chandra Seetharamand892d582013-07-19 17:36:02 -05001028 /* qflags will get updated fully _after_ quotacheck */
1029 mp->m_sb.sb_qflags = mp->m_qflags & XFS_ALL_QUOTA_ACCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031 if (flags & XFS_QMOPT_UQUOTA)
1032 mp->m_sb.sb_uquotino = (*ip)->i_ino;
Chandra Seetharamand892d582013-07-19 17:36:02 -05001033 else if (flags & XFS_QMOPT_GQUOTA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 mp->m_sb.sb_gquotino = (*ip)->i_ino;
Chandra Seetharamand892d582013-07-19 17:36:02 -05001035 else
1036 mp->m_sb.sb_pquotino = (*ip)->i_ino;
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001037 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 xfs_mod_sb(tp, sbfields);
1039
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001040 if ((error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES))) {
Dave Chinner53487782011-03-07 10:05:35 +11001041 xfs_alert(mp, "%s failed (error %d)!", __func__, error);
Jesper Juhl014c2542006-01-15 02:37:08 +01001042 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001044 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
1047
David Chinner5b139732008-04-10 12:20:10 +10001048STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049xfs_qm_reset_dqcounts(
1050 xfs_mount_t *mp,
1051 xfs_buf_t *bp,
1052 xfs_dqid_t id,
1053 uint type)
1054{
Dave Chinner6fcdc592013-06-03 15:28:46 +10001055 struct xfs_dqblk *dqb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 int j;
1057
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001058 trace_xfs_reset_dqcounts(bp, _RET_IP_);
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 /*
1061 * Reset all counters and timers. They'll be
1062 * started afresh by xfs_qm_quotacheck.
1063 */
1064#ifdef DEBUG
1065 j = XFS_FSB_TO_B(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
1066 do_div(j, sizeof(xfs_dqblk_t));
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001067 ASSERT(mp->m_quotainfo->qi_dqperchunk == j);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068#endif
Dave Chinner6fcdc592013-06-03 15:28:46 +10001069 dqb = bp->b_addr;
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001070 for (j = 0; j < mp->m_quotainfo->qi_dqperchunk; j++) {
Dave Chinner6fcdc592013-06-03 15:28:46 +10001071 struct xfs_disk_dquot *ddq;
1072
1073 ddq = (struct xfs_disk_dquot *)&dqb[j];
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 /*
1076 * Do a sanity check, and if needed, repair the dqblk. Don't
1077 * output any warnings because it's perfectly possible to
Dave Chinner9aede1d2013-10-15 09:17:52 +11001078 * find uninitialised dquot blks. See comment in xfs_dqcheck.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 */
Dave Chinner9aede1d2013-10-15 09:17:52 +11001080 xfs_dqcheck(mp, ddq, id+j, type, XFS_QMOPT_DQREPAIR,
1081 "xfs_quotacheck");
Christoph Hellwig1149d962005-11-02 15:01:12 +11001082 ddq->d_bcount = 0;
1083 ddq->d_icount = 0;
1084 ddq->d_rtbcount = 0;
1085 ddq->d_btimer = 0;
1086 ddq->d_itimer = 0;
1087 ddq->d_rtbtimer = 0;
1088 ddq->d_bwarns = 0;
1089 ddq->d_iwarns = 0;
1090 ddq->d_rtbwarns = 0;
Dave Chinner6fcdc592013-06-03 15:28:46 +10001091
1092 if (xfs_sb_version_hascrc(&mp->m_sb)) {
1093 xfs_update_cksum((char *)&dqb[j],
1094 sizeof(struct xfs_dqblk),
1095 XFS_DQUOT_CRC_OFF);
1096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
1100STATIC int
1101xfs_qm_dqiter_bufs(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001102 struct xfs_mount *mp,
1103 xfs_dqid_t firstid,
1104 xfs_fsblock_t bno,
1105 xfs_filblks_t blkcnt,
1106 uint flags,
1107 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001109 struct xfs_buf *bp;
1110 int error;
1111 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 ASSERT(blkcnt > 0);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001114 type = flags & XFS_QMOPT_UQUOTA ? XFS_DQ_USER :
1115 (flags & XFS_QMOPT_PQUOTA ? XFS_DQ_PROJ : XFS_DQ_GROUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 error = 0;
1117
1118 /*
1119 * Blkcnt arg can be a very big number, and might even be
1120 * larger than the log itself. So, we have to break it up into
1121 * manageable-sized transactions.
1122 * Note that we don't start a permanent transaction here; we might
1123 * not be able to get a log reservation for the whole thing up front,
1124 * and we don't really care to either, because we just discard
1125 * everything if we were to crash in the middle of this loop.
1126 */
1127 while (blkcnt--) {
1128 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
1129 XFS_FSB_TO_DADDR(mp, bno),
Dave Chinnerc6319192012-11-14 17:50:13 +11001130 mp->m_quotainfo->qi_dqchunklen, 0, &bp,
Dave Chinner1813dd62012-11-14 17:54:40 +11001131 &xfs_dquot_buf_ops);
Dave Chinner6fcdc592013-06-03 15:28:46 +10001132
1133 /*
1134 * CRC and validation errors will return a EFSCORRUPTED here. If
1135 * this occurs, re-read without CRC validation so that we can
1136 * repair the damage via xfs_qm_reset_dqcounts(). This process
1137 * will leave a trace in the log indicating corruption has
1138 * been detected.
1139 */
1140 if (error == EFSCORRUPTED) {
1141 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
1142 XFS_FSB_TO_DADDR(mp, bno),
1143 mp->m_quotainfo->qi_dqchunklen, 0, &bp,
1144 NULL);
1145 }
1146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (error)
1148 break;
1149
David Chinner5b139732008-04-10 12:20:10 +10001150 xfs_qm_reset_dqcounts(mp, bp, firstid, type);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001151 xfs_buf_delwri_queue(bp, buffer_list);
Christoph Hellwig61551f12011-08-23 08:28:06 +00001152 xfs_buf_relse(bp);
Dave Chinner6fcdc592013-06-03 15:28:46 +10001153
1154 /* goto the next block. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 bno++;
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001156 firstid += mp->m_quotainfo->qi_dqperchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001158
Jesper Juhl014c2542006-01-15 02:37:08 +01001159 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
1162/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001163 * Iterate over all allocated USR/GRP/PRJ dquots in the system, calling a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 * caller supplied function for every chunk of dquots that we find.
1165 */
1166STATIC int
1167xfs_qm_dqiterate(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001168 struct xfs_mount *mp,
1169 struct xfs_inode *qip,
1170 uint flags,
1171 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001173 struct xfs_bmbt_irec *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 int i, nmaps; /* number of map entries */
1175 int error; /* return value */
1176 xfs_fileoff_t lblkno;
1177 xfs_filblks_t maxlblkcnt;
1178 xfs_dqid_t firstid;
1179 xfs_fsblock_t rablkno;
1180 xfs_filblks_t rablkcnt;
1181
1182 error = 0;
1183 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001184 * This looks racy, but we can't keep an inode lock across a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 * trans_reserve. But, this gets called during quotacheck, and that
1186 * happens only at mount time which is single threaded.
1187 */
1188 if (qip->i_d.di_nblocks == 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01001189 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 map = kmem_alloc(XFS_DQITER_MAP_SIZE * sizeof(*map), KM_SLEEP);
1192
1193 lblkno = 0;
Dave Chinner32972382012-06-08 15:44:54 +10001194 maxlblkcnt = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 do {
1196 nmaps = XFS_DQITER_MAP_SIZE;
1197 /*
1198 * We aren't changing the inode itself. Just changing
1199 * some of its data. No new blocks are added here, and
1200 * the inode is never added to the transaction.
1201 */
1202 xfs_ilock(qip, XFS_ILOCK_SHARED);
Dave Chinner5c8ed202011-09-18 20:40:45 +00001203 error = xfs_bmapi_read(qip, lblkno, maxlblkcnt - lblkno,
1204 map, &nmaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 xfs_iunlock(qip, XFS_ILOCK_SHARED);
1206 if (error)
1207 break;
1208
1209 ASSERT(nmaps <= XFS_DQITER_MAP_SIZE);
1210 for (i = 0; i < nmaps; i++) {
1211 ASSERT(map[i].br_startblock != DELAYSTARTBLOCK);
1212 ASSERT(map[i].br_blockcount);
1213
1214
1215 lblkno += map[i].br_blockcount;
1216
1217 if (map[i].br_startblock == HOLESTARTBLOCK)
1218 continue;
1219
1220 firstid = (xfs_dqid_t) map[i].br_startoff *
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001221 mp->m_quotainfo->qi_dqperchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 /*
1223 * Do a read-ahead on the next extent.
1224 */
1225 if ((i+1 < nmaps) &&
1226 (map[i+1].br_startblock != HOLESTARTBLOCK)) {
1227 rablkcnt = map[i+1].br_blockcount;
1228 rablkno = map[i+1].br_startblock;
1229 while (rablkcnt--) {
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001230 xfs_buf_readahead(mp->m_ddev_targp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 XFS_FSB_TO_DADDR(mp, rablkno),
Dave Chinnerc3f8fc72012-11-12 22:54:01 +11001232 mp->m_quotainfo->qi_dqchunklen,
1233 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 rablkno++;
1235 }
1236 }
1237 /*
1238 * Iterate thru all the blks in the extent and
1239 * reset the counters of all the dquots inside them.
1240 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001241 error = xfs_qm_dqiter_bufs(mp, firstid,
1242 map[i].br_startblock,
1243 map[i].br_blockcount,
1244 flags, buffer_list);
1245 if (error)
1246 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 } while (nmaps > 0);
1249
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001250out:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001251 kmem_free(map);
Jesper Juhl014c2542006-01-15 02:37:08 +01001252 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254
1255/*
1256 * Called by dqusage_adjust in doing a quotacheck.
Christoph Hellwig52fda112010-09-06 01:44:22 +00001257 *
1258 * Given the inode, and a dquot id this updates both the incore dqout as well
1259 * as the buffer copy. This is so that once the quotacheck is done, we can
1260 * just log all the buffers, as opposed to logging numerous updates to
1261 * individual dquots.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001263STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264xfs_qm_quotacheck_dqadjust(
Christoph Hellwig52fda112010-09-06 01:44:22 +00001265 struct xfs_inode *ip,
1266 xfs_dqid_t id,
1267 uint type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 xfs_qcnt_t nblks,
1269 xfs_qcnt_t rtblks)
1270{
Christoph Hellwig52fda112010-09-06 01:44:22 +00001271 struct xfs_mount *mp = ip->i_mount;
1272 struct xfs_dquot *dqp;
1273 int error;
1274
1275 error = xfs_qm_dqget(mp, ip, id, type,
1276 XFS_QMOPT_DQALLOC | XFS_QMOPT_DOWARN, &dqp);
1277 if (error) {
1278 /*
1279 * Shouldn't be able to turn off quotas here.
1280 */
1281 ASSERT(error != ESRCH);
1282 ASSERT(error != ENOENT);
1283 return error;
1284 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001285
1286 trace_xfs_dqadjust(dqp);
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 /*
1289 * Adjust the inode count and the block count to reflect this inode's
1290 * resource usage.
1291 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001292 be64_add_cpu(&dqp->q_core.d_icount, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 dqp->q_res_icount++;
1294 if (nblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001295 be64_add_cpu(&dqp->q_core.d_bcount, nblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 dqp->q_res_bcount += nblks;
1297 }
1298 if (rtblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001299 be64_add_cpu(&dqp->q_core.d_rtbcount, rtblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 dqp->q_res_rtbcount += rtblks;
1301 }
1302
1303 /*
1304 * Set default limits, adjust timers (since we changed usages)
Christoph Hellwig191f8482010-04-20 17:01:53 +10001305 *
1306 * There are no timers for the default values set in the root dquot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 */
Christoph Hellwig191f8482010-04-20 17:01:53 +10001308 if (dqp->q_core.d_id) {
Brian Foster4b6eae2e2013-03-18 10:51:45 -04001309 xfs_qm_adjust_dqlimits(mp, dqp);
Christoph Hellwig52fda112010-09-06 01:44:22 +00001310 xfs_qm_adjust_dqtimers(mp, &dqp->q_core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
1312
1313 dqp->dq_flags |= XFS_DQ_DIRTY;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001314 xfs_qm_dqput(dqp);
1315 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
1317
1318STATIC int
1319xfs_qm_get_rtblks(
1320 xfs_inode_t *ip,
1321 xfs_qcnt_t *O_rtblks)
1322{
1323 xfs_filblks_t rtblks; /* total rt blks */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001324 xfs_extnum_t idx; /* extent record index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 xfs_ifork_t *ifp; /* inode fork pointer */
1326 xfs_extnum_t nextents; /* number of extent entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 int error;
1328
1329 ASSERT(XFS_IS_REALTIME_INODE(ip));
1330 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1331 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1332 if ((error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001333 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
1335 rtblks = 0;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001336 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10001337 for (idx = 0; idx < nextents; idx++)
1338 rtblks += xfs_bmbt_get_blockcount(xfs_iext_get_ext(ifp, idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 *O_rtblks = (xfs_qcnt_t)rtblks;
Jesper Juhl014c2542006-01-15 02:37:08 +01001340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341}
1342
1343/*
1344 * callback routine supplied to bulkstat(). Given an inumber, find its
1345 * dquots and update them to account for resources taken by that inode.
1346 */
1347/* ARGSUSED */
1348STATIC int
1349xfs_qm_dqusage_adjust(
1350 xfs_mount_t *mp, /* mount point for filesystem */
1351 xfs_ino_t ino, /* inode number to get data for */
1352 void __user *buffer, /* not used */
1353 int ubsize, /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 int *ubused, /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 int *res) /* result code value */
1356{
1357 xfs_inode_t *ip;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001358 xfs_qcnt_t nblks, rtblks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 int error;
1360
1361 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1362
1363 /*
1364 * rootino must have its resources accounted for, not so with the quota
1365 * inodes.
1366 */
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -05001367 if (xfs_is_quota_inode(&mp->m_sb, ino)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 *res = BULKSTAT_RV_NOTHING;
1369 return XFS_ERROR(EINVAL);
1370 }
1371
1372 /*
1373 * We don't _need_ to take the ilock EXCL. However, the xfs_qm_dqget
1374 * interface expects the inode to be exclusively locked because that's
1375 * the case in all other instances. It's OK that we do this because
1376 * quotacheck is done only at mount time.
1377 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001378 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_EXCL, &ip);
1379 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 *res = BULKSTAT_RV_NOTHING;
Jesper Juhl014c2542006-01-15 02:37:08 +01001381 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
1383
Christoph Hellwig52fda112010-09-06 01:44:22 +00001384 ASSERT(ip->i_delayed_blks == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Christoph Hellwig52fda112010-09-06 01:44:22 +00001386 if (XFS_IS_REALTIME_INODE(ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 /*
1388 * Walk thru the extent list and count the realtime blocks.
1389 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001390 error = xfs_qm_get_rtblks(ip, &rtblks);
1391 if (error)
1392 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Christoph Hellwig52fda112010-09-06 01:44:22 +00001395 nblks = (xfs_qcnt_t)ip->i_d.di_nblocks - rtblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 /*
1398 * Add the (disk blocks and inode) resources occupied by this
1399 * inode to its dquots. We do this adjustment in the incore dquot,
1400 * and also copy the changes to its buffer.
1401 * We don't care about putting these changes in a transaction
1402 * envelope because if we crash in the middle of a 'quotacheck'
1403 * we have to start from the beginning anyway.
1404 * Once we're done, we'll log all the dquot bufs.
1405 *
Nathan Scottc41564b2006-03-29 08:55:14 +10001406 * The *QUOTA_ON checks below may look pretty racy, but quotachecks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 * and quotaoffs don't race. (Quotachecks happen at mount time only).
1408 */
1409 if (XFS_IS_UQUOTA_ON(mp)) {
Christoph Hellwig52fda112010-09-06 01:44:22 +00001410 error = xfs_qm_quotacheck_dqadjust(ip, ip->i_d.di_uid,
1411 XFS_DQ_USER, nblks, rtblks);
1412 if (error)
1413 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Christoph Hellwig52fda112010-09-06 01:44:22 +00001416 if (XFS_IS_GQUOTA_ON(mp)) {
1417 error = xfs_qm_quotacheck_dqadjust(ip, ip->i_d.di_gid,
1418 XFS_DQ_GROUP, nblks, rtblks);
1419 if (error)
1420 goto error0;
1421 }
1422
1423 if (XFS_IS_PQUOTA_ON(mp)) {
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001424 error = xfs_qm_quotacheck_dqadjust(ip, xfs_get_projid(ip),
Christoph Hellwig52fda112010-09-06 01:44:22 +00001425 XFS_DQ_PROJ, nblks, rtblks);
1426 if (error)
1427 goto error0;
1428 }
1429
1430 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1431 IRELE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 *res = BULKSTAT_RV_DIDONE;
Jesper Juhl014c2542006-01-15 02:37:08 +01001433 return 0;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001434
1435error0:
1436 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1437 IRELE(ip);
1438 *res = BULKSTAT_RV_GIVEUP;
1439 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440}
1441
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001442STATIC int
1443xfs_qm_flush_one(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001444 struct xfs_dquot *dqp,
1445 void *data)
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001446{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001447 struct list_head *buffer_list = data;
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001448 struct xfs_buf *bp = NULL;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001449 int error = 0;
1450
1451 xfs_dqlock(dqp);
1452 if (dqp->dq_flags & XFS_DQ_FREEING)
1453 goto out_unlock;
1454 if (!XFS_DQ_IS_DIRTY(dqp))
1455 goto out_unlock;
1456
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001457 xfs_dqflock(dqp);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001458 error = xfs_qm_dqflush(dqp, &bp);
1459 if (error)
1460 goto out_unlock;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001461
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001462 xfs_buf_delwri_queue(bp, buffer_list);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001463 xfs_buf_relse(bp);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001464out_unlock:
1465 xfs_dqunlock(dqp);
1466 return error;
1467}
1468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469/*
1470 * Walk thru all the filesystem inodes and construct a consistent view
1471 * of the disk quota world. If the quotacheck fails, disable quotas.
1472 */
1473int
1474xfs_qm_quotacheck(
1475 xfs_mount_t *mp)
1476{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001477 int done, count, error, error2;
1478 xfs_ino_t lastino;
1479 size_t structsz;
1480 uint flags;
1481 LIST_HEAD (buffer_list);
1482 struct xfs_inode *uip = mp->m_quotainfo->qi_uquotaip;
1483 struct xfs_inode *gip = mp->m_quotainfo->qi_gquotaip;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001484 struct xfs_inode *pip = mp->m_quotainfo->qi_pquotaip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 count = INT_MAX;
1487 structsz = 1;
1488 lastino = 0;
1489 flags = 0;
1490
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001491 ASSERT(uip || gip || pip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1493
Dave Chinner0b932cc2011-03-07 10:08:35 +11001494 xfs_notice(mp, "Quotacheck needed: Please wait.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 /*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001497 * First we go thru all the dquots on disk, USR and GRP/PRJ, and reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 * their counters to zero. We need a clean slate.
1499 * We don't log our changes till later.
1500 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001501 if (uip) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001502 error = xfs_qm_dqiterate(mp, uip, XFS_QMOPT_UQUOTA,
1503 &buffer_list);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001504 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 goto error_return;
1506 flags |= XFS_UQUOTA_CHKD;
1507 }
1508
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001509 if (gip) {
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001510 error = xfs_qm_dqiterate(mp, gip, XFS_QMOPT_GQUOTA,
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001511 &buffer_list);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001512 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 goto error_return;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001514 flags |= XFS_GQUOTA_CHKD;
1515 }
1516
1517 if (pip) {
1518 error = xfs_qm_dqiterate(mp, pip, XFS_QMOPT_PQUOTA,
1519 &buffer_list);
1520 if (error)
1521 goto error_return;
1522 flags |= XFS_PQUOTA_CHKD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
1524
1525 do {
1526 /*
1527 * Iterate thru all the inodes in the file system,
1528 * adjusting the corresponding dquot counters in core.
1529 */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +10001530 error = xfs_bulkstat(mp, &lastino, &count,
1531 xfs_qm_dqusage_adjust,
1532 structsz, NULL, &done);
1533 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 break;
1535
Christoph Hellwig7dce11d2010-06-23 18:11:11 +10001536 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538 /*
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001539 * We've made all the changes that we need to make incore. Flush them
1540 * down to disk buffers if everything was updated successfully.
David Chinner4b8879d2008-04-10 12:20:17 +10001541 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001542 if (XFS_IS_UQUOTA_ON(mp)) {
1543 error = xfs_qm_dquot_walk(mp, XFS_DQ_USER, xfs_qm_flush_one,
1544 &buffer_list);
1545 }
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001546 if (XFS_IS_GQUOTA_ON(mp)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001547 error2 = xfs_qm_dquot_walk(mp, XFS_DQ_GROUP, xfs_qm_flush_one,
1548 &buffer_list);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001549 if (!error)
1550 error = error2;
1551 }
1552 if (XFS_IS_PQUOTA_ON(mp)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001553 error2 = xfs_qm_dquot_walk(mp, XFS_DQ_PROJ, xfs_qm_flush_one,
1554 &buffer_list);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001555 if (!error)
1556 error = error2;
1557 }
David Chinner4b8879d2008-04-10 12:20:17 +10001558
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001559 error2 = xfs_buf_delwri_submit(&buffer_list);
1560 if (!error)
1561 error = error2;
1562
David Chinner4b8879d2008-04-10 12:20:17 +10001563 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 * We can get this error if we couldn't do a dquot allocation inside
1565 * xfs_qm_dqusage_adjust (via bulkstat). We don't care about the
1566 * dirty dquots that might be cached, we just want to get rid of them
1567 * and turn quotaoff. The dquots won't be attached to any of the inodes
1568 * at this point (because we intentionally didn't in dqget_noattach).
1569 */
1570 if (error) {
Christoph Hellwig8112e9d2010-04-20 17:02:29 +10001571 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 goto error_return;
1573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 * If one type of quotas is off, then it will lose its
1577 * quotachecked status, since we won't be doing accounting for
1578 * that type anymore.
1579 */
Chandra Seetharaman4177af32012-01-23 17:31:43 +00001580 mp->m_qflags &= ~XFS_ALL_QUOTA_CHKD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 mp->m_qflags |= flags;
1582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 error_return:
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001584 while (!list_empty(&buffer_list)) {
1585 struct xfs_buf *bp =
1586 list_first_entry(&buffer_list, struct xfs_buf, b_list);
1587 list_del_init(&bp->b_list);
1588 xfs_buf_relse(bp);
1589 }
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001592 xfs_warn(mp,
1593 "Quotacheck: Unsuccessful (Error %d): Disabling quotas.",
1594 error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 /*
1596 * We must turn off quotas.
1597 */
1598 ASSERT(mp->m_quotainfo != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 xfs_qm_destroy_quotainfo(mp);
David Chinner31d55772008-04-10 12:20:38 +10001600 if (xfs_mount_reset_sbqflags(mp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001601 xfs_warn(mp,
1602 "Quotacheck: Failed to reset quota flags.");
David Chinner31d55772008-04-10 12:20:38 +10001603 }
Dave Chinner0b932cc2011-03-07 10:08:35 +11001604 } else
1605 xfs_notice(mp, "Quotacheck: Done.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 return (error);
1607}
1608
1609/*
1610 * This is called after the superblock has been read in and we're ready to
1611 * iget the quota inodes.
1612 */
1613STATIC int
1614xfs_qm_init_quotainos(
1615 xfs_mount_t *mp)
1616{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001617 struct xfs_inode *uip = NULL;
1618 struct xfs_inode *gip = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001619 struct xfs_inode *pip = NULL;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001620 int error;
1621 __int64_t sbflags = 0;
1622 uint flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 ASSERT(mp->m_quotainfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 /*
1627 * Get the uquota and gquota inodes
1628 */
Eric Sandeen62118702008-03-06 13:44:28 +11001629 if (xfs_sb_version_hasquota(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if (XFS_IS_UQUOTA_ON(mp) &&
1631 mp->m_sb.sb_uquotino != NULLFSINO) {
1632 ASSERT(mp->m_sb.sb_uquotino > 0);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001633 error = xfs_iget(mp, NULL, mp->m_sb.sb_uquotino,
1634 0, 0, &uip);
1635 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 return XFS_ERROR(error);
1637 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001638 if (XFS_IS_GQUOTA_ON(mp) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 mp->m_sb.sb_gquotino != NULLFSINO) {
1640 ASSERT(mp->m_sb.sb_gquotino > 0);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001641 error = xfs_iget(mp, NULL, mp->m_sb.sb_gquotino,
1642 0, 0, &gip);
1643 if (error)
1644 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001646 if (XFS_IS_PQUOTA_ON(mp) &&
Chandra Seetharamand892d582013-07-19 17:36:02 -05001647 mp->m_sb.sb_pquotino != NULLFSINO) {
1648 ASSERT(mp->m_sb.sb_pquotino > 0);
1649 error = xfs_iget(mp, NULL, mp->m_sb.sb_pquotino,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001650 0, 0, &pip);
1651 if (error)
1652 goto error_rele;
1653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 } else {
1655 flags |= XFS_QMOPT_SBVERSION;
1656 sbflags |= (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
Chandra Seetharamand892d582013-07-19 17:36:02 -05001657 XFS_SB_GQUOTINO | XFS_SB_PQUOTINO |
1658 XFS_SB_QFLAGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 }
1660
1661 /*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001662 * Create the three inodes, if they don't exist already. The changes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 * made above will get added to a transaction and logged in one of
1664 * the qino_alloc calls below. If the device is readonly,
1665 * temporarily switch to read-write to do this.
1666 */
1667 if (XFS_IS_UQUOTA_ON(mp) && uip == NULL) {
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001668 error = xfs_qm_qino_alloc(mp, &uip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 sbflags | XFS_SB_UQUOTINO,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001670 flags | XFS_QMOPT_UQUOTA);
1671 if (error)
1672 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674 flags &= ~XFS_QMOPT_SBVERSION;
1675 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001676 if (XFS_IS_GQUOTA_ON(mp) && gip == NULL) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001677 error = xfs_qm_qino_alloc(mp, &gip,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001678 sbflags | XFS_SB_GQUOTINO,
1679 flags | XFS_QMOPT_GQUOTA);
1680 if (error)
1681 goto error_rele;
1682
1683 flags &= ~XFS_QMOPT_SBVERSION;
1684 }
1685 if (XFS_IS_PQUOTA_ON(mp) && pip == NULL) {
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001686 error = xfs_qm_qino_alloc(mp, &pip,
Chandra Seetharamand892d582013-07-19 17:36:02 -05001687 sbflags | XFS_SB_PQUOTINO,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001688 flags | XFS_QMOPT_PQUOTA);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001689 if (error)
1690 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
1692
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001693 mp->m_quotainfo->qi_uquotaip = uip;
1694 mp->m_quotainfo->qi_gquotaip = gip;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001695 mp->m_quotainfo->qi_pquotaip = pip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Jesper Juhl014c2542006-01-15 02:37:08 +01001697 return 0;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001698
1699error_rele:
1700 if (uip)
1701 IRELE(uip);
1702 if (gip)
1703 IRELE(gip);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001704 if (pip)
1705 IRELE(pip);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001706 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001709STATIC void
1710xfs_qm_dqfree_one(
1711 struct xfs_dquot *dqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001713 struct xfs_mount *mp = dqp->q_mount;
1714 struct xfs_quotainfo *qi = mp->m_quotainfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Christoph Hellwig9f920f12012-03-13 08:52:35 +00001716 mutex_lock(&qi->qi_tree_lock);
Chandra Seetharaman329e0872013-06-27 17:25:05 -05001717 radix_tree_delete(xfs_dquot_tree(qi, dqp->q_core.d_flags),
Christoph Hellwig9f920f12012-03-13 08:52:35 +00001718 be32_to_cpu(dqp->q_core.d_id));
Christoph Hellwigbf72de32011-12-06 21:58:19 +00001719
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001720 qi->qi_dquots--;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001721 mutex_unlock(&qi->qi_tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001723 xfs_qm_dqdestroy(dqp);
1724}
Christoph Hellwigbe7ffc32011-12-06 21:58:17 +00001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726/*
1727 * Start a transaction and write the incore superblock changes to
1728 * disk. flags parameter indicates which fields have changed.
1729 */
1730int
1731xfs_qm_write_sb_changes(
1732 xfs_mount_t *mp,
1733 __int64_t flags)
1734{
1735 xfs_trans_t *tp;
1736 int error;
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001739 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_qm_sbchange, 0, 0);
Jeff Liuf910a8c2013-01-28 21:26:34 +08001740 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001742 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 }
1744
1745 xfs_mod_sb(tp, flags);
David Chinnere5720ee2008-04-10 12:21:18 +10001746 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
David Chinnere5720ee2008-04-10 12:21:18 +10001748 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749}
1750
1751
1752/* --------------- utility functions for vnodeops ---------------- */
1753
1754
1755/*
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001756 * Given an inode, a uid, gid and prid make sure that we have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 * allocated relevant dquot(s) on disk, and that we won't exceed inode
1758 * quotas by creating this file.
1759 * This also attaches dquot(s) to the given inode after locking it,
1760 * and returns the dquots corresponding to the uid and/or gid.
1761 *
1762 * in : inode (unlocked)
1763 * out : udquot, gdquot with references taken and unlocked
1764 */
1765int
1766xfs_qm_vop_dqalloc(
Christoph Hellwig7d095252009-06-08 15:33:32 +02001767 struct xfs_inode *ip,
Dwight Engen7aab1b22013-08-15 14:08:01 -04001768 xfs_dqid_t uid,
1769 xfs_dqid_t gid,
Christoph Hellwig7d095252009-06-08 15:33:32 +02001770 prid_t prid,
1771 uint flags,
1772 struct xfs_dquot **O_udqpp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001773 struct xfs_dquot **O_gdqpp,
1774 struct xfs_dquot **O_pdqpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
Christoph Hellwig7d095252009-06-08 15:33:32 +02001776 struct xfs_mount *mp = ip->i_mount;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001777 struct xfs_dquot *uq = NULL;
1778 struct xfs_dquot *gq = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001779 struct xfs_dquot *pq = NULL;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001780 int error;
1781 uint lockflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Christoph Hellwig7d095252009-06-08 15:33:32 +02001783 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 return 0;
1785
1786 lockflags = XFS_ILOCK_EXCL;
1787 xfs_ilock(ip, lockflags);
1788
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001789 if ((flags & XFS_QMOPT_INHERIT) && XFS_INHERIT_GID(ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 gid = ip->i_d.di_gid;
1791
1792 /*
1793 * Attach the dquot(s) to this inode, doing a dquot allocation
1794 * if necessary. The dquot(s) will not be locked.
1795 */
1796 if (XFS_NOT_DQATTACHED(mp, ip)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001797 error = xfs_qm_dqattach_locked(ip, XFS_QMOPT_DQALLOC);
1798 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 xfs_iunlock(ip, lockflags);
Jesper Juhl014c2542006-01-15 02:37:08 +01001800 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 }
1802 }
1803
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001804 if ((flags & XFS_QMOPT_UQUOTA) && XFS_IS_UQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 if (ip->i_d.di_uid != uid) {
1806 /*
1807 * What we need is the dquot that has this uid, and
1808 * if we send the inode to dqget, the uid of the inode
1809 * takes priority over what's sent in the uid argument.
1810 * We must unlock inode here before calling dqget if
1811 * we're not sending the inode, because otherwise
1812 * we'll deadlock by doing trans_reserve while
1813 * holding ilock.
1814 */
1815 xfs_iunlock(ip, lockflags);
Dwight Engen7aab1b22013-08-15 14:08:01 -04001816 error = xfs_qm_dqget(mp, NULL, uid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 XFS_DQ_USER,
1818 XFS_QMOPT_DQALLOC |
1819 XFS_QMOPT_DOWARN,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001820 &uq);
1821 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 ASSERT(error != ENOENT);
Jesper Juhl014c2542006-01-15 02:37:08 +01001823 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 }
1825 /*
1826 * Get the ilock in the right order.
1827 */
1828 xfs_dqunlock(uq);
1829 lockflags = XFS_ILOCK_SHARED;
1830 xfs_ilock(ip, lockflags);
1831 } else {
1832 /*
1833 * Take an extra reference, because we'll return
1834 * this to caller
1835 */
1836 ASSERT(ip->i_udquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001837 uq = xfs_qm_dqhold(ip->i_udquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 }
1839 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001840 if ((flags & XFS_QMOPT_GQUOTA) && XFS_IS_GQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 if (ip->i_d.di_gid != gid) {
1842 xfs_iunlock(ip, lockflags);
Dwight Engen7aab1b22013-08-15 14:08:01 -04001843 error = xfs_qm_dqget(mp, NULL, gid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 XFS_DQ_GROUP,
1845 XFS_QMOPT_DQALLOC |
1846 XFS_QMOPT_DOWARN,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001847 &gq);
1848 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 ASSERT(error != ENOENT);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001850 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
1852 xfs_dqunlock(gq);
1853 lockflags = XFS_ILOCK_SHARED;
1854 xfs_ilock(ip, lockflags);
1855 } else {
1856 ASSERT(ip->i_gdquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001857 gq = xfs_qm_dqhold(ip->i_gdquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001859 }
1860 if ((flags & XFS_QMOPT_PQUOTA) && XFS_IS_PQUOTA_ON(mp)) {
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001861 if (xfs_get_projid(ip) != prid) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001862 xfs_iunlock(ip, lockflags);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001863 error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)prid,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001864 XFS_DQ_PROJ,
1865 XFS_QMOPT_DQALLOC |
1866 XFS_QMOPT_DOWARN,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001867 &pq);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001868 if (error) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001869 ASSERT(error != ENOENT);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001870 goto error_rele;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001871 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001872 xfs_dqunlock(pq);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001873 lockflags = XFS_ILOCK_SHARED;
1874 xfs_ilock(ip, lockflags);
1875 } else {
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001876 ASSERT(ip->i_pdquot);
1877 pq = xfs_qm_dqhold(ip->i_pdquot);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 }
1880 if (uq)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001881 trace_xfs_dquot_dqalloc(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883 xfs_iunlock(ip, lockflags);
1884 if (O_udqpp)
1885 *O_udqpp = uq;
1886 else if (uq)
1887 xfs_qm_dqrele(uq);
1888 if (O_gdqpp)
1889 *O_gdqpp = gq;
1890 else if (gq)
1891 xfs_qm_dqrele(gq);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001892 if (O_pdqpp)
1893 *O_pdqpp = pq;
1894 else if (pq)
1895 xfs_qm_dqrele(pq);
Jesper Juhl014c2542006-01-15 02:37:08 +01001896 return 0;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001897
1898error_rele:
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001899 if (gq)
1900 xfs_qm_dqrele(gq);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001901 if (uq)
1902 xfs_qm_dqrele(uq);
1903 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904}
1905
1906/*
1907 * Actually transfer ownership, and do dquot modifications.
1908 * These were already reserved.
1909 */
1910xfs_dquot_t *
1911xfs_qm_vop_chown(
1912 xfs_trans_t *tp,
1913 xfs_inode_t *ip,
1914 xfs_dquot_t **IO_olddq,
1915 xfs_dquot_t *newdq)
1916{
1917 xfs_dquot_t *prevdq;
Nathan Scott06d10dd2005-06-21 15:48:47 +10001918 uint bfield = XFS_IS_REALTIME_INODE(ip) ?
1919 XFS_TRANS_DQ_RTBCOUNT : XFS_TRANS_DQ_BCOUNT;
1920
Christoph Hellwig7d095252009-06-08 15:33:32 +02001921
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001922 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 ASSERT(XFS_IS_QUOTA_RUNNING(ip->i_mount));
1924
1925 /* old dquot */
1926 prevdq = *IO_olddq;
1927 ASSERT(prevdq);
1928 ASSERT(prevdq != newdq);
1929
Nathan Scott06d10dd2005-06-21 15:48:47 +10001930 xfs_trans_mod_dquot(tp, prevdq, bfield, -(ip->i_d.di_nblocks));
1931 xfs_trans_mod_dquot(tp, prevdq, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 /* the sparkling new dquot */
Nathan Scott06d10dd2005-06-21 15:48:47 +10001934 xfs_trans_mod_dquot(tp, newdq, bfield, ip->i_d.di_nblocks);
1935 xfs_trans_mod_dquot(tp, newdq, XFS_TRANS_DQ_ICOUNT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 /*
Christoph Hellwig78e55892011-12-06 21:58:22 +00001938 * Take an extra reference, because the inode is going to keep
1939 * this dquot pointer even after the trans_commit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 */
Christoph Hellwig78e55892011-12-06 21:58:22 +00001941 *IO_olddq = xfs_qm_dqhold(newdq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Jesper Juhl014c2542006-01-15 02:37:08 +01001943 return prevdq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944}
1945
1946/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001947 * Quota reservations for setattr(AT_UID|AT_GID|AT_PROJID).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 */
1949int
1950xfs_qm_vop_chown_reserve(
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001951 struct xfs_trans *tp,
1952 struct xfs_inode *ip,
1953 struct xfs_dquot *udqp,
1954 struct xfs_dquot *gdqp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001955 struct xfs_dquot *pdqp,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001956 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001958 struct xfs_mount *mp = ip->i_mount;
1959 uint delblks, blkflags, prjflags = 0;
1960 struct xfs_dquot *udq_unres = NULL;
1961 struct xfs_dquot *gdq_unres = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001962 struct xfs_dquot *pdq_unres = NULL;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001963 struct xfs_dquot *udq_delblks = NULL;
1964 struct xfs_dquot *gdq_delblks = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001965 struct xfs_dquot *pdq_delblks = NULL;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001966 int error;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001969 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1971
1972 delblks = ip->i_delayed_blks;
Nathan Scott06d10dd2005-06-21 15:48:47 +10001973 blkflags = XFS_IS_REALTIME_INODE(ip) ?
1974 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
1976 if (XFS_IS_UQUOTA_ON(mp) && udqp &&
Dwight Engen7aab1b22013-08-15 14:08:01 -04001977 ip->i_d.di_uid != be32_to_cpu(udqp->q_core.d_id)) {
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001978 udq_delblks = udqp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 /*
1980 * If there are delayed allocation blocks, then we have to
1981 * unreserve those from the old dquot, and add them to the
1982 * new dquot.
1983 */
1984 if (delblks) {
1985 ASSERT(ip->i_udquot);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001986 udq_unres = ip->i_udquot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 }
1988 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001989 if (XFS_IS_GQUOTA_ON(ip->i_mount) && gdqp &&
1990 ip->i_d.di_gid != be32_to_cpu(gdqp->q_core.d_id)) {
1991 gdq_delblks = gdqp;
1992 if (delblks) {
1993 ASSERT(ip->i_gdquot);
1994 gdq_unres = ip->i_gdquot;
1995 }
1996 }
Nathan Scott9a2a7de2006-03-31 13:04:49 +10001997
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001998 if (XFS_IS_PQUOTA_ON(ip->i_mount) && pdqp &&
1999 xfs_get_projid(ip) != be32_to_cpu(pdqp->q_core.d_id)) {
2000 prjflags = XFS_QMOPT_ENOSPC;
2001 pdq_delblks = pdqp;
2002 if (delblks) {
2003 ASSERT(ip->i_pdquot);
2004 pdq_unres = ip->i_pdquot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 }
2006 }
2007
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002008 error = xfs_trans_reserve_quota_bydquots(tp, ip->i_mount,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002009 udq_delblks, gdq_delblks, pdq_delblks,
2010 ip->i_d.di_nblocks, 1,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002011 flags | blkflags | prjflags);
2012 if (error)
2013 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
2015 /*
2016 * Do the delayed blks reservations/unreservations now. Since, these
2017 * are done without the help of a transaction, if a reservation fails
2018 * its previous reservations won't be automatically undone by trans
2019 * code. So, we have to do it manually here.
2020 */
2021 if (delblks) {
2022 /*
2023 * Do the reservations first. Unreservation can't fail.
2024 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002025 ASSERT(udq_delblks || gdq_delblks || pdq_delblks);
2026 ASSERT(udq_unres || gdq_unres || pdq_unres);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002027 error = xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002028 udq_delblks, gdq_delblks, pdq_delblks,
2029 (xfs_qcnt_t)delblks, 0,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002030 flags | blkflags | prjflags);
2031 if (error)
2032 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002034 udq_unres, gdq_unres, pdq_unres,
2035 -((xfs_qcnt_t)delblks), 0, blkflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 }
2037
2038 return (0);
2039}
2040
2041int
2042xfs_qm_vop_rename_dqattach(
Christoph Hellwig7d095252009-06-08 15:33:32 +02002043 struct xfs_inode **i_tab)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002045 struct xfs_mount *mp = i_tab[0]->i_mount;
2046 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Christoph Hellwig7d095252009-06-08 15:33:32 +02002048 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Jesper Juhl014c2542006-01-15 02:37:08 +01002049 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Christoph Hellwig7d095252009-06-08 15:33:32 +02002051 for (i = 0; (i < 4 && i_tab[i]); i++) {
2052 struct xfs_inode *ip = i_tab[i];
2053 int error;
2054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 /*
2056 * Watch out for duplicate entries in the table.
2057 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02002058 if (i == 0 || ip != i_tab[i-1]) {
2059 if (XFS_NOT_DQATTACHED(mp, ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 error = xfs_qm_dqattach(ip, 0);
2061 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002062 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 }
2064 }
2065 }
Jesper Juhl014c2542006-01-15 02:37:08 +01002066 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067}
2068
2069void
Christoph Hellwig7d095252009-06-08 15:33:32 +02002070xfs_qm_vop_create_dqattach(
2071 struct xfs_trans *tp,
2072 struct xfs_inode *ip,
2073 struct xfs_dquot *udqp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002074 struct xfs_dquot *gdqp,
2075 struct xfs_dquot *pdqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002077 struct xfs_mount *mp = tp->t_mountp;
2078
2079 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 return;
2081
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002082 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig7d095252009-06-08 15:33:32 +02002083 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085 if (udqp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 ASSERT(ip->i_udquot == NULL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002087 ASSERT(XFS_IS_UQUOTA_ON(mp));
Christoph Hellwig1149d962005-11-02 15:01:12 +11002088 ASSERT(ip->i_d.di_uid == be32_to_cpu(udqp->q_core.d_id));
Christoph Hellwig78e55892011-12-06 21:58:22 +00002089
2090 ip->i_udquot = xfs_qm_dqhold(udqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 xfs_trans_mod_dquot(tp, udqp, XFS_TRANS_DQ_ICOUNT, 1);
2092 }
2093 if (gdqp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 ASSERT(ip->i_gdquot == NULL);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002095 ASSERT(XFS_IS_GQUOTA_ON(mp));
2096 ASSERT(ip->i_d.di_gid == be32_to_cpu(gdqp->q_core.d_id));
Christoph Hellwig78e55892011-12-06 21:58:22 +00002097 ip->i_gdquot = xfs_qm_dqhold(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 xfs_trans_mod_dquot(tp, gdqp, XFS_TRANS_DQ_ICOUNT, 1);
2099 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002100 if (pdqp) {
2101 ASSERT(ip->i_pdquot == NULL);
2102 ASSERT(XFS_IS_PQUOTA_ON(mp));
2103 ASSERT(xfs_get_projid(ip) == be32_to_cpu(pdqp->q_core.d_id));
2104
2105 ip->i_pdquot = xfs_qm_dqhold(pdqp);
2106 xfs_trans_mod_dquot(tp, pdqp, XFS_TRANS_DQ_ICOUNT, 1);
2107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108}
2109