blob: 6dfb4e320498f028d146728c78ec7f6fcf4ad18f [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 Chinner6ca1c902013-08-12 20:49:26 +100020#include "xfs_format.h"
Dave Chinner70a98832013-10-23 10:36:05 +110021#include "xfs_shared.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_quota.h"
29#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
31#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_dinode.h"
33#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_ialloc.h"
35#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_rtalloc.h"
37#include "xfs_error.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_attr.h"
40#include "xfs_buf_item.h"
41#include "xfs_trans_space.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_qm.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000043#include "xfs_trace.h"
Dave Chinner33479e02012-10-08 21:56:11 +110044#include "xfs_icache.h"
Dave Chinner6fcdc592013-06-03 15:28:46 +100045#include "xfs_cksum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
48 * The global quota manager. There is only one of these for the entire
49 * system, _not_ one per file system. XQM keeps track of the overall
50 * quota functionality, including maintaining the freelist and hash
51 * tables of dquots.
52 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053STATIC int xfs_qm_init_quotainos(xfs_mount_t *);
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100054STATIC int xfs_qm_init_quotainfo(xfs_mount_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Dave Chinnercd56a392013-08-28 10:18:07 +100056
57STATIC void xfs_qm_dqfree_one(struct xfs_dquot *dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*
Christoph Hellwigb84a3a92012-03-14 11:53:34 -050059 * We use the batch lookup interface to iterate over the dquots as it
60 * currently is the only interface into the radix tree code that allows
61 * fuzzy lookups instead of exact matches. Holding the lock over multiple
62 * operations is fine as all callers are used either during mount/umount
63 * or quotaoff.
64 */
65#define XFS_DQ_LOOKUP_BATCH 32
66
67STATIC int
68xfs_qm_dquot_walk(
69 struct xfs_mount *mp,
70 int type,
Christoph Hellwig43ff2122012-04-23 15:58:39 +100071 int (*execute)(struct xfs_dquot *dqp, void *data),
72 void *data)
Christoph Hellwigb84a3a92012-03-14 11:53:34 -050073{
74 struct xfs_quotainfo *qi = mp->m_quotainfo;
Chandra Seetharaman329e0872013-06-27 17:25:05 -050075 struct radix_tree_root *tree = xfs_dquot_tree(qi, type);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -050076 uint32_t next_index;
77 int last_error = 0;
78 int skipped;
79 int nr_found;
80
81restart:
82 skipped = 0;
83 next_index = 0;
84 nr_found = 0;
85
86 while (1) {
87 struct xfs_dquot *batch[XFS_DQ_LOOKUP_BATCH];
88 int error = 0;
89 int i;
90
91 mutex_lock(&qi->qi_tree_lock);
92 nr_found = radix_tree_gang_lookup(tree, (void **)batch,
93 next_index, XFS_DQ_LOOKUP_BATCH);
94 if (!nr_found) {
95 mutex_unlock(&qi->qi_tree_lock);
96 break;
97 }
98
99 for (i = 0; i < nr_found; i++) {
100 struct xfs_dquot *dqp = batch[i];
101
102 next_index = be32_to_cpu(dqp->q_core.d_id) + 1;
103
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000104 error = execute(batch[i], data);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500105 if (error == EAGAIN) {
106 skipped++;
107 continue;
108 }
109 if (error && last_error != EFSCORRUPTED)
110 last_error = error;
111 }
112
113 mutex_unlock(&qi->qi_tree_lock);
114
115 /* bail out if the filesystem is corrupted. */
116 if (last_error == EFSCORRUPTED) {
117 skipped = 0;
118 break;
119 }
120 }
121
122 if (skipped) {
123 delay(1);
124 goto restart;
125 }
126
127 return last_error;
128}
129
130
131/*
132 * Purge a dquot from all tracking data structures and free it.
133 */
134STATIC int
135xfs_qm_dqpurge(
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000136 struct xfs_dquot *dqp,
137 void *data)
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500138{
139 struct xfs_mount *mp = dqp->q_mount;
140 struct xfs_quotainfo *qi = mp->m_quotainfo;
141 struct xfs_dquot *gdqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500142 struct xfs_dquot *pdqp = NULL;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500143
144 xfs_dqlock(dqp);
145 if ((dqp->dq_flags & XFS_DQ_FREEING) || dqp->q_nrefs != 0) {
146 xfs_dqunlock(dqp);
147 return EAGAIN;
148 }
149
150 /*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500151 * If this quota has a hint attached, prepare for releasing it now.
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500152 */
153 gdqp = dqp->q_gdquot;
154 if (gdqp) {
155 xfs_dqlock(gdqp);
156 dqp->q_gdquot = NULL;
157 }
158
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500159 pdqp = dqp->q_pdquot;
160 if (pdqp) {
161 xfs_dqlock(pdqp);
162 dqp->q_pdquot = NULL;
163 }
164
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500165 dqp->dq_flags |= XFS_DQ_FREEING;
166
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000167 xfs_dqflock(dqp);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500168
169 /*
170 * If we are turning this type of quotas off, we don't care
171 * about the dirty metadata sitting in this dquot. OTOH, if
172 * we're unmounting, we do care, so we flush it and wait.
173 */
174 if (XFS_DQ_IS_DIRTY(dqp)) {
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000175 struct xfs_buf *bp = NULL;
176 int error;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500177
178 /*
179 * We don't care about getting disk errors here. We need
180 * to purge this dquot anyway, so we go ahead regardless.
181 */
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000182 error = xfs_qm_dqflush(dqp, &bp);
183 if (error) {
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500184 xfs_warn(mp, "%s: dquot %p flush failed",
185 __func__, dqp);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000186 } else {
187 error = xfs_bwrite(bp);
188 xfs_buf_relse(bp);
189 }
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500190 xfs_dqflock(dqp);
191 }
192
193 ASSERT(atomic_read(&dqp->q_pincount) == 0);
194 ASSERT(XFS_FORCED_SHUTDOWN(mp) ||
195 !(dqp->q_logitem.qli_item.li_flags & XFS_LI_IN_AIL));
196
197 xfs_dqfunlock(dqp);
198 xfs_dqunlock(dqp);
199
Chandra Seetharaman329e0872013-06-27 17:25:05 -0500200 radix_tree_delete(xfs_dquot_tree(qi, dqp->q_core.d_flags),
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500201 be32_to_cpu(dqp->q_core.d_id));
202 qi->qi_dquots--;
203
204 /*
205 * We move dquots to the freelist as soon as their reference count
206 * hits zero, so it really should be on the freelist here.
207 */
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500208 ASSERT(!list_empty(&dqp->q_lru));
Dave Chinnercd56a392013-08-28 10:18:07 +1000209 list_lru_del(&qi->qi_lru, &dqp->q_lru);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500210 XFS_STATS_DEC(xs_qm_dquot_unused);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500211
212 xfs_qm_dqdestroy(dqp);
213
214 if (gdqp)
215 xfs_qm_dqput(gdqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500216 if (pdqp)
217 xfs_qm_dqput(pdqp);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500218 return 0;
219}
220
221/*
222 * Purge the dquot cache.
223 */
224void
225xfs_qm_dqpurge_all(
226 struct xfs_mount *mp,
227 uint flags)
228{
229 if (flags & XFS_QMOPT_UQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000230 xfs_qm_dquot_walk(mp, XFS_DQ_USER, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500231 if (flags & XFS_QMOPT_GQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000232 xfs_qm_dquot_walk(mp, XFS_DQ_GROUP, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500233 if (flags & XFS_QMOPT_PQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000234 xfs_qm_dquot_walk(mp, XFS_DQ_PROJ, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500235}
236
237/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 * Just destroy the quotainfo structure.
239 */
240void
Christoph Hellwig7d095252009-06-08 15:33:32 +0200241xfs_qm_unmount(
242 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Christoph Hellwig7d095252009-06-08 15:33:32 +0200244 if (mp->m_quotainfo) {
Christoph Hellwig8112e9d2010-04-20 17:02:29 +1000245 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 xfs_qm_destroy_quotainfo(mp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
250
251/*
252 * This is called from xfs_mountfs to start quotas and initialize all
253 * necessary data structures like quotainfo. This is also responsible for
254 * running a quotacheck as necessary. We are guaranteed that the superblock
255 * is consistently read in at this point.
David Chinner53aa7912008-04-10 12:20:31 +1000256 *
257 * If we fail here, the mount will continue with quota turned off. We don't
258 * need to inidicate success or failure at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 */
David Chinner53aa7912008-04-10 12:20:31 +1000260void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261xfs_qm_mount_quotas(
Christoph Hellwig42490232008-08-13 16:49:32 +1000262 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 int error = 0;
265 uint sbf;
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /*
268 * If quotas on realtime volumes is not supported, we disable
269 * quotas immediately.
270 */
271 if (mp->m_sb.sb_rextents) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100272 xfs_notice(mp, "Cannot turn on quotas for realtime filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 mp->m_qflags = 0;
274 goto write_changes;
275 }
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Nathan Scott155ffd02005-09-02 16:43:48 +1000278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /*
280 * Allocate the quotainfo structure inside the mount struct, and
281 * create quotainode(s), and change/rev superblock if necessary.
282 */
David Chinner53aa7912008-04-10 12:20:31 +1000283 error = xfs_qm_init_quotainfo(mp);
284 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 /*
286 * We must turn off quotas.
287 */
288 ASSERT(mp->m_quotainfo == NULL);
289 mp->m_qflags = 0;
290 goto write_changes;
291 }
292 /*
293 * If any of the quotas are not consistent, do a quotacheck.
294 */
Christoph Hellwig42490232008-08-13 16:49:32 +1000295 if (XFS_QM_NEED_QUOTACHECK(mp)) {
David Chinner53aa7912008-04-10 12:20:31 +1000296 error = xfs_qm_quotacheck(mp);
297 if (error) {
298 /* Quotacheck failed and disabled quotas. */
299 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000302 /*
303 * If one type of quotas is off, then it will lose its
304 * quotachecked status, since we won't be doing accounting for
305 * that type anymore.
306 */
David Chinner53aa7912008-04-10 12:20:31 +1000307 if (!XFS_IS_UQUOTA_ON(mp))
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000308 mp->m_qflags &= ~XFS_UQUOTA_CHKD;
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500309 if (!XFS_IS_GQUOTA_ON(mp))
310 mp->m_qflags &= ~XFS_GQUOTA_CHKD;
311 if (!XFS_IS_PQUOTA_ON(mp))
312 mp->m_qflags &= ~XFS_PQUOTA_CHKD;
Nathan Scott155ffd02005-09-02 16:43:48 +1000313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 write_changes:
315 /*
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000316 * We actually don't have to acquire the m_sb_lock at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 * This can only be called from mount, and that's single threaded. XXX
318 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000319 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 sbf = mp->m_sb.sb_qflags;
321 mp->m_sb.sb_qflags = mp->m_qflags & XFS_MOUNT_QUOTA_ALL;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000322 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 if (sbf != (mp->m_qflags & XFS_MOUNT_QUOTA_ALL)) {
325 if (xfs_qm_write_sb_changes(mp, XFS_SB_QFLAGS)) {
326 /*
327 * We could only have been turning quotas off.
328 * We aren't in very good shape actually because
329 * the incore structures are convinced that quotas are
330 * off, but the on disk superblock doesn't know that !
331 */
332 ASSERT(!(XFS_IS_QUOTA_RUNNING(mp)));
Dave Chinner53487782011-03-07 10:05:35 +1100333 xfs_alert(mp, "%s: Superblock update failed!",
334 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336 }
337
338 if (error) {
Dave Chinner53487782011-03-07 10:05:35 +1100339 xfs_warn(mp, "Failed to initialize disk quotas.");
Christoph Hellwig7d095252009-06-08 15:33:32 +0200340 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344/*
345 * Called from the vfsops layer.
346 */
Christoph Hellwige57481d2008-12-03 12:20:36 +0100347void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348xfs_qm_unmount_quotas(
349 xfs_mount_t *mp)
350{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 /*
352 * Release the dquots that root inode, et al might be holding,
353 * before we flush quotas and blow away the quotainfo structure.
354 */
355 ASSERT(mp->m_rootip);
356 xfs_qm_dqdetach(mp->m_rootip);
357 if (mp->m_rbmip)
358 xfs_qm_dqdetach(mp->m_rbmip);
359 if (mp->m_rsumip)
360 xfs_qm_dqdetach(mp->m_rsumip);
361
362 /*
Christoph Hellwige57481d2008-12-03 12:20:36 +0100363 * Release the quota inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (mp->m_quotainfo) {
Christoph Hellwige57481d2008-12-03 12:20:36 +0100366 if (mp->m_quotainfo->qi_uquotaip) {
367 IRELE(mp->m_quotainfo->qi_uquotaip);
368 mp->m_quotainfo->qi_uquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 }
Christoph Hellwige57481d2008-12-03 12:20:36 +0100370 if (mp->m_quotainfo->qi_gquotaip) {
371 IRELE(mp->m_quotainfo->qi_gquotaip);
372 mp->m_quotainfo->qi_gquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500374 if (mp->m_quotainfo->qi_pquotaip) {
375 IRELE(mp->m_quotainfo->qi_pquotaip);
376 mp->m_quotainfo->qi_pquotaip = NULL;
377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381STATIC int
382xfs_qm_dqattach_one(
383 xfs_inode_t *ip,
384 xfs_dqid_t id,
385 uint type,
386 uint doalloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 xfs_dquot_t *udqhint, /* hint */
388 xfs_dquot_t **IO_idqpp)
389{
390 xfs_dquot_t *dqp;
391 int error;
392
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000393 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 error = 0;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 /*
397 * See if we already have it in the inode itself. IO_idqpp is
398 * &i_udquot or &i_gdquot. This made the code look weird, but
399 * made the logic a lot simpler.
400 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100401 dqp = *IO_idqpp;
402 if (dqp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000403 trace_xfs_dqattach_found(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100404 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406
407 /*
408 * udqhint is the i_udquot field in inode, and is non-NULL only
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000409 * when the type arg is group/project. Its purpose is to save a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 * lookup by dqid (xfs_qm_dqget) by caching a group dquot inside
411 * the user dquot.
412 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100413 if (udqhint) {
414 ASSERT(type == XFS_DQ_GROUP || type == XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 xfs_dqlock(udqhint);
416
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100417 /*
418 * No need to take dqlock to look at the id.
419 *
420 * The ID can't change until it gets reclaimed, and it won't
421 * be reclaimed as long as we have a ref from inode and we
422 * hold the ilock.
423 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500424 if (type == XFS_DQ_GROUP)
425 dqp = udqhint->q_gdquot;
426 else
427 dqp = udqhint->q_pdquot;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100428 if (dqp && be32_to_cpu(dqp->q_core.d_id) == id) {
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100429 ASSERT(*IO_idqpp == NULL);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100430
Christoph Hellwig78e55892011-12-06 21:58:22 +0000431 *IO_idqpp = xfs_qm_dqhold(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100433 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100435
436 /*
437 * We can't hold a dquot lock when we call the dqget code.
438 * We'll deadlock in no time, because of (not conforming to)
439 * lock ordering - the inodelock comes before any dquot lock,
440 * and we may drop and reacquire the ilock in xfs_qm_dqget().
441 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100443 }
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 /*
446 * Find the dquot from somewhere. This bumps the
447 * reference count of dquot and returns it locked.
448 * This can return ENOENT if dquot didn't exist on
449 * disk and we didn't ask it to allocate;
450 * ESRCH if quotas got turned off suddenly.
451 */
Mitsuo Hayasakadb3e74b2011-11-10 01:33:10 +0000452 error = xfs_qm_dqget(ip->i_mount, ip, id, type,
453 doalloc | XFS_QMOPT_DOWARN, &dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100454 if (error)
455 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000457 trace_xfs_dqattach_get(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 /*
460 * dqget may have dropped and re-acquired the ilock, but it guarantees
461 * that the dquot returned is the one that should go in the inode.
462 */
463 *IO_idqpp = dqp;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100464 xfs_dqunlock(dqp);
465 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
468
469/*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500470 * Given a udquot and group/project type, attach the group/project
471 * dquot pointer to the udquot as a hint for future lookups.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 */
473STATIC void
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500474xfs_qm_dqattach_hint(
475 struct xfs_inode *ip,
476 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500478 struct xfs_dquot **dqhintp;
479 struct xfs_dquot *dqp;
480 struct xfs_dquot *udq = ip->i_udquot;
481
482 ASSERT(type == XFS_DQ_GROUP || type == XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100484 xfs_dqlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500486 if (type == XFS_DQ_GROUP) {
487 dqp = ip->i_gdquot;
488 dqhintp = &udq->q_gdquot;
489 } else {
490 dqp = ip->i_pdquot;
491 dqhintp = &udq->q_pdquot;
492 }
493
494 if (*dqhintp) {
495 struct xfs_dquot *tmp;
496
497 if (*dqhintp == dqp)
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000498 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500500 tmp = *dqhintp;
501 *dqhintp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 xfs_qm_dqrele(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500505 *dqhintp = xfs_qm_dqhold(dqp);
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000506done:
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100507 xfs_dqunlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400510static bool
511xfs_qm_need_dqattach(
512 struct xfs_inode *ip)
513{
514 struct xfs_mount *mp = ip->i_mount;
515
516 if (!XFS_IS_QUOTA_RUNNING(mp))
517 return false;
518 if (!XFS_IS_QUOTA_ON(mp))
519 return false;
520 if (!XFS_NOT_DQATTACHED(mp, ip))
521 return false;
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -0500522 if (xfs_is_quota_inode(&mp->m_sb, ip->i_ino))
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400523 return false;
524 return true;
525}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000528 * Given a locked inode, attach dquot(s) to it, taking U/G/P-QUOTAON
529 * into account.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * If XFS_QMOPT_DQALLOC, the dquot(s) will be allocated if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 * Inode may get unlocked and relocked in here, and the caller must deal with
532 * the consequences.
533 */
534int
Christoph Hellwig7d095252009-06-08 15:33:32 +0200535xfs_qm_dqattach_locked(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 xfs_inode_t *ip,
537 uint flags)
538{
539 xfs_mount_t *mp = ip->i_mount;
540 uint nquotas = 0;
541 int error = 0;
542
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400543 if (!xfs_qm_need_dqattach(ip))
Jesper Juhl014c2542006-01-15 02:37:08 +0100544 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Christoph Hellwig7d095252009-06-08 15:33:32 +0200546 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548 if (XFS_IS_UQUOTA_ON(mp)) {
549 error = xfs_qm_dqattach_one(ip, ip->i_d.di_uid, XFS_DQ_USER,
550 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 NULL, &ip->i_udquot);
552 if (error)
553 goto done;
554 nquotas++;
555 }
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000556
557 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500558 if (XFS_IS_GQUOTA_ON(mp)) {
559 error = xfs_qm_dqattach_one(ip, ip->i_d.di_gid, XFS_DQ_GROUP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 ip->i_udquot, &ip->i_gdquot);
562 /*
563 * Don't worry about the udquot that we may have
564 * attached above. It'll get detached, if not already.
565 */
566 if (error)
567 goto done;
568 nquotas++;
569 }
570
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500571 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
572 if (XFS_IS_PQUOTA_ON(mp)) {
573 error = xfs_qm_dqattach_one(ip, xfs_get_projid(ip), XFS_DQ_PROJ,
574 flags & XFS_QMOPT_DQALLOC,
575 ip->i_udquot, &ip->i_pdquot);
576 /*
577 * Don't worry about the udquot that we may have
578 * attached above. It'll get detached, if not already.
579 */
580 if (error)
581 goto done;
582 nquotas++;
583 }
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500586 * Attach this group/project quota to the user quota as a hint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 * This WON'T, in general, result in a thrash.
588 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500589 if (nquotas > 1 && ip->i_udquot) {
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000590 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500591 ASSERT(ip->i_gdquot || !XFS_IS_GQUOTA_ON(mp));
592 ASSERT(ip->i_pdquot || !XFS_IS_PQUOTA_ON(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 /*
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000595 * We do not have i_udquot locked at this point, but this check
596 * is OK since we don't depend on the i_gdquot to be accurate
597 * 100% all the time. It is just a hint, and this will
598 * succeed in general.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 */
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000600 if (ip->i_udquot->q_gdquot != ip->i_gdquot)
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500601 xfs_qm_dqattach_hint(ip, XFS_DQ_GROUP);
602
603 if (ip->i_udquot->q_pdquot != ip->i_pdquot)
604 xfs_qm_dqattach_hint(ip, XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
606
Christoph Hellwig7d095252009-06-08 15:33:32 +0200607 done:
Christoph Hellwigea15ab32011-07-13 13:43:50 +0200608#ifdef DEBUG
609 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 if (XFS_IS_UQUOTA_ON(mp))
611 ASSERT(ip->i_udquot);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500612 if (XFS_IS_GQUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 ASSERT(ip->i_gdquot);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500614 if (XFS_IS_PQUOTA_ON(mp))
615 ASSERT(ip->i_pdquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200617 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618#endif
Christoph Hellwig7d095252009-06-08 15:33:32 +0200619 return error;
620}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Christoph Hellwig7d095252009-06-08 15:33:32 +0200622int
623xfs_qm_dqattach(
624 struct xfs_inode *ip,
625 uint flags)
626{
627 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400629 if (!xfs_qm_need_dqattach(ip))
630 return 0;
631
Christoph Hellwig7d095252009-06-08 15:33:32 +0200632 xfs_ilock(ip, XFS_ILOCK_EXCL);
633 error = xfs_qm_dqattach_locked(ip, flags);
634 xfs_iunlock(ip, XFS_ILOCK_EXCL);
635
Jesper Juhl014c2542006-01-15 02:37:08 +0100636 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
639/*
640 * Release dquots (and their references) if any.
641 * The inode should be locked EXCL except when this's called by
642 * xfs_ireclaim.
643 */
644void
645xfs_qm_dqdetach(
646 xfs_inode_t *ip)
647{
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500648 if (!(ip->i_udquot || ip->i_gdquot || ip->i_pdquot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return;
650
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000651 trace_xfs_dquot_dqdetach(ip);
652
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -0500653 ASSERT(!xfs_is_quota_inode(&ip->i_mount->m_sb, ip->i_ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 if (ip->i_udquot) {
655 xfs_qm_dqrele(ip->i_udquot);
656 ip->i_udquot = NULL;
657 }
658 if (ip->i_gdquot) {
659 xfs_qm_dqrele(ip->i_gdquot);
660 ip->i_gdquot = NULL;
661 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500662 if (ip->i_pdquot) {
663 xfs_qm_dqrele(ip->i_pdquot);
664 ip->i_pdquot = NULL;
665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
Dave Chinnercd56a392013-08-28 10:18:07 +1000668struct xfs_qm_isolate {
669 struct list_head buffers;
670 struct list_head dispose;
671};
672
673static enum lru_status
674xfs_qm_dquot_isolate(
675 struct list_head *item,
676 spinlock_t *lru_lock,
677 void *arg)
678{
679 struct xfs_dquot *dqp = container_of(item,
680 struct xfs_dquot, q_lru);
681 struct xfs_qm_isolate *isol = arg;
682
683 if (!xfs_dqlock_nowait(dqp))
684 goto out_miss_busy;
685
686 /*
687 * This dquot has acquired a reference in the meantime remove it from
688 * the freelist and try again.
689 */
690 if (dqp->q_nrefs) {
691 xfs_dqunlock(dqp);
692 XFS_STATS_INC(xs_qm_dqwants);
693
694 trace_xfs_dqreclaim_want(dqp);
695 list_del_init(&dqp->q_lru);
696 XFS_STATS_DEC(xs_qm_dquot_unused);
Dave Chinner35163412013-08-28 10:18:08 +1000697 return LRU_REMOVED;
Dave Chinnercd56a392013-08-28 10:18:07 +1000698 }
699
700 /*
701 * If the dquot is dirty, flush it. If it's already being flushed, just
702 * skip it so there is time for the IO to complete before we try to
703 * reclaim it again on the next LRU pass.
704 */
705 if (!xfs_dqflock_nowait(dqp)) {
706 xfs_dqunlock(dqp);
707 goto out_miss_busy;
708 }
709
710 if (XFS_DQ_IS_DIRTY(dqp)) {
711 struct xfs_buf *bp = NULL;
712 int error;
713
714 trace_xfs_dqreclaim_dirty(dqp);
715
716 /* we have to drop the LRU lock to flush the dquot */
717 spin_unlock(lru_lock);
718
719 error = xfs_qm_dqflush(dqp, &bp);
720 if (error) {
721 xfs_warn(dqp->q_mount, "%s: dquot %p flush failed",
722 __func__, dqp);
723 goto out_unlock_dirty;
724 }
725
726 xfs_buf_delwri_queue(bp, &isol->buffers);
727 xfs_buf_relse(bp);
728 goto out_unlock_dirty;
729 }
730 xfs_dqfunlock(dqp);
731
732 /*
733 * Prevent lookups now that we are past the point of no return.
734 */
735 dqp->dq_flags |= XFS_DQ_FREEING;
736 xfs_dqunlock(dqp);
737
738 ASSERT(dqp->q_nrefs == 0);
739 list_move_tail(&dqp->q_lru, &isol->dispose);
740 XFS_STATS_DEC(xs_qm_dquot_unused);
741 trace_xfs_dqreclaim_done(dqp);
742 XFS_STATS_INC(xs_qm_dqreclaims);
Dave Chinner35163412013-08-28 10:18:08 +1000743 return LRU_REMOVED;
Dave Chinnercd56a392013-08-28 10:18:07 +1000744
745out_miss_busy:
746 trace_xfs_dqreclaim_busy(dqp);
747 XFS_STATS_INC(xs_qm_dqreclaim_misses);
Dave Chinner35163412013-08-28 10:18:08 +1000748 return LRU_SKIP;
Dave Chinnercd56a392013-08-28 10:18:07 +1000749
750out_unlock_dirty:
751 trace_xfs_dqreclaim_busy(dqp);
752 XFS_STATS_INC(xs_qm_dqreclaim_misses);
Dave Chinner35163412013-08-28 10:18:08 +1000753 xfs_dqunlock(dqp);
754 spin_lock(lru_lock);
755 return LRU_RETRY;
Dave Chinnercd56a392013-08-28 10:18:07 +1000756}
757
Andrew Morton2f5b56f2013-08-28 10:18:08 +1000758static unsigned long
Dave Chinnercd56a392013-08-28 10:18:07 +1000759xfs_qm_shrink_scan(
760 struct shrinker *shrink,
761 struct shrink_control *sc)
762{
763 struct xfs_quotainfo *qi = container_of(shrink,
764 struct xfs_quotainfo, qi_shrinker);
765 struct xfs_qm_isolate isol;
Andrew Morton2f5b56f2013-08-28 10:18:08 +1000766 unsigned long freed;
Dave Chinnercd56a392013-08-28 10:18:07 +1000767 int error;
768 unsigned long nr_to_scan = sc->nr_to_scan;
769
770 if ((sc->gfp_mask & (__GFP_FS|__GFP_WAIT)) != (__GFP_FS|__GFP_WAIT))
771 return 0;
772
773 INIT_LIST_HEAD(&isol.buffers);
774 INIT_LIST_HEAD(&isol.dispose);
775
776 freed = list_lru_walk_node(&qi->qi_lru, sc->nid, xfs_qm_dquot_isolate, &isol,
777 &nr_to_scan);
778
779 error = xfs_buf_delwri_submit(&isol.buffers);
780 if (error)
781 xfs_warn(NULL, "%s: dquot reclaim failed", __func__);
782
783 while (!list_empty(&isol.dispose)) {
784 struct xfs_dquot *dqp;
785
786 dqp = list_first_entry(&isol.dispose, struct xfs_dquot, q_lru);
787 list_del_init(&dqp->q_lru);
788 xfs_qm_dqfree_one(dqp);
789 }
790
791 return freed;
792}
793
Andrew Morton2f5b56f2013-08-28 10:18:08 +1000794static unsigned long
Dave Chinnercd56a392013-08-28 10:18:07 +1000795xfs_qm_shrink_count(
796 struct shrinker *shrink,
797 struct shrink_control *sc)
798{
799 struct xfs_quotainfo *qi = container_of(shrink,
800 struct xfs_quotainfo, qi_shrinker);
801
802 return list_lru_count_node(&qi->qi_lru, sc->nid);
803}
804
Christoph Hellwiga4edd1d2009-01-19 02:03:11 +0100805/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 * This initializes all the quota information that's kept in the
807 * mount structure
808 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000809STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810xfs_qm_init_quotainfo(
811 xfs_mount_t *mp)
812{
813 xfs_quotainfo_t *qinf;
814 int error;
815 xfs_dquot_t *dqp;
816
817 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 qinf = mp->m_quotainfo = kmem_zalloc(sizeof(xfs_quotainfo_t), KM_SLEEP);
820
Glauber Costa5ca302c2013-08-28 10:18:18 +1000821 if ((error = list_lru_init(&qinf->qi_lru))) {
822 kmem_free(qinf);
823 mp->m_quotainfo = NULL;
824 return error;
825 }
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 /*
828 * See if quotainodes are setup, and if not, allocate them,
829 * and change the superblock accordingly.
830 */
831 if ((error = xfs_qm_init_quotainos(mp))) {
Glauber Costa5ca302c2013-08-28 10:18:18 +1000832 list_lru_destroy(&qinf->qi_lru);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000833 kmem_free(qinf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 mp->m_quotainfo = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +0100835 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000838 INIT_RADIX_TREE(&qinf->qi_uquota_tree, GFP_NOFS);
839 INIT_RADIX_TREE(&qinf->qi_gquota_tree, GFP_NOFS);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500840 INIT_RADIX_TREE(&qinf->qi_pquota_tree, GFP_NOFS);
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000841 mutex_init(&qinf->qi_tree_lock);
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 /* mutex used to serialize quotaoffs */
Jes Sorensen794ee1b2006-01-09 15:59:21 -0800844 mutex_init(&qinf->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 /* Precalc some constants */
847 qinf->qi_dqchunklen = XFS_FSB_TO_BB(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
Dave Chinner9aede1d2013-10-15 09:17:52 +1100848 qinf->qi_dqperchunk = xfs_calc_dquots_per_chunk(mp,
Christoph Hellwig3fe58f32013-04-03 16:11:16 +1100849 qinf->qi_dqchunklen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 mp->m_qflags |= (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_CHKD);
852
853 /*
854 * We try to get the limits from the superuser's limits fields.
855 * This is quite hacky, but it is standard quota practice.
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000856 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 * We look at the USR dquot with id == 0 first, but if user quotas
858 * are not enabled we goto the GRP dquot with id == 0.
859 * We don't really care to keep separate default limits for user
860 * and group quotas, at least not at this point.
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000861 *
862 * Since we may not have done a quotacheck by this point, just read
863 * the dquot without attaching it to any hashtables or lists.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 */
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000865 error = xfs_qm_dqread(mp, 0,
866 XFS_IS_UQUOTA_RUNNING(mp) ? XFS_DQ_USER :
867 (XFS_IS_GQUOTA_RUNNING(mp) ? XFS_DQ_GROUP :
868 XFS_DQ_PROJ),
869 XFS_QMOPT_DOWARN, &dqp);
870 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 xfs_disk_dquot_t *ddqp = &dqp->q_core;
872
873 /*
874 * The warnings and timers set the grace period given to
875 * a user or group before he or she can not perform any
876 * more writing. If it is zero, a default is used.
877 */
Christoph Hellwig1149d962005-11-02 15:01:12 +1100878 qinf->qi_btimelimit = ddqp->d_btimer ?
879 be32_to_cpu(ddqp->d_btimer) : XFS_QM_BTIMELIMIT;
880 qinf->qi_itimelimit = ddqp->d_itimer ?
881 be32_to_cpu(ddqp->d_itimer) : XFS_QM_ITIMELIMIT;
882 qinf->qi_rtbtimelimit = ddqp->d_rtbtimer ?
883 be32_to_cpu(ddqp->d_rtbtimer) : XFS_QM_RTBTIMELIMIT;
884 qinf->qi_bwarnlimit = ddqp->d_bwarns ?
885 be16_to_cpu(ddqp->d_bwarns) : XFS_QM_BWARNLIMIT;
886 qinf->qi_iwarnlimit = ddqp->d_iwarns ?
887 be16_to_cpu(ddqp->d_iwarns) : XFS_QM_IWARNLIMIT;
888 qinf->qi_rtbwarnlimit = ddqp->d_rtbwarns ?
889 be16_to_cpu(ddqp->d_rtbwarns) : XFS_QM_RTBWARNLIMIT;
890 qinf->qi_bhardlimit = be64_to_cpu(ddqp->d_blk_hardlimit);
891 qinf->qi_bsoftlimit = be64_to_cpu(ddqp->d_blk_softlimit);
892 qinf->qi_ihardlimit = be64_to_cpu(ddqp->d_ino_hardlimit);
893 qinf->qi_isoftlimit = be64_to_cpu(ddqp->d_ino_softlimit);
894 qinf->qi_rtbhardlimit = be64_to_cpu(ddqp->d_rtb_hardlimit);
895 qinf->qi_rtbsoftlimit = be64_to_cpu(ddqp->d_rtb_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 xfs_qm_dqdestroy(dqp);
898 } else {
899 qinf->qi_btimelimit = XFS_QM_BTIMELIMIT;
900 qinf->qi_itimelimit = XFS_QM_ITIMELIMIT;
901 qinf->qi_rtbtimelimit = XFS_QM_RTBTIMELIMIT;
902 qinf->qi_bwarnlimit = XFS_QM_BWARNLIMIT;
903 qinf->qi_iwarnlimit = XFS_QM_IWARNLIMIT;
Nathan Scott06d10dd2005-06-21 15:48:47 +1000904 qinf->qi_rtbwarnlimit = XFS_QM_RTBWARNLIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
906
Dave Chinnercd56a392013-08-28 10:18:07 +1000907 qinf->qi_shrinker.count_objects = xfs_qm_shrink_count;
908 qinf->qi_shrinker.scan_objects = xfs_qm_shrink_scan;
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000909 qinf->qi_shrinker.seeks = DEFAULT_SEEKS;
Dave Chinnercd56a392013-08-28 10:18:07 +1000910 qinf->qi_shrinker.flags = SHRINKER_NUMA_AWARE;
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000911 register_shrinker(&qinf->qi_shrinker);
Jesper Juhl014c2542006-01-15 02:37:08 +0100912 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913}
914
915
916/*
917 * Gets called when unmounting a filesystem or when all quotas get
918 * turned off.
919 * This purges the quota inodes, destroys locks and frees itself.
920 */
921void
922xfs_qm_destroy_quotainfo(
923 xfs_mount_t *mp)
924{
925 xfs_quotainfo_t *qi;
926
927 qi = mp->m_quotainfo;
928 ASSERT(qi != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000930 unregister_shrinker(&qi->qi_shrinker);
Glauber Costaf5e1dd32013-08-28 10:18:18 +1000931 list_lru_destroy(&qi->qi_lru);
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (qi->qi_uquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +1000934 IRELE(qi->qi_uquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 qi->qi_uquotaip = NULL; /* paranoia */
936 }
937 if (qi->qi_gquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +1000938 IRELE(qi->qi_gquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 qi->qi_gquotaip = NULL;
940 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500941 if (qi->qi_pquotaip) {
942 IRELE(qi->qi_pquotaip);
943 qi->qi_pquotaip = NULL;
944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 mutex_destroy(&qi->qi_quotaofflock);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000946 kmem_free(qi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 mp->m_quotainfo = NULL;
948}
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950/*
951 * Create an inode and return with a reference already taken, but unlocked
952 * This is how we create quota inodes
953 */
954STATIC int
955xfs_qm_qino_alloc(
956 xfs_mount_t *mp,
957 xfs_inode_t **ip,
958 __int64_t sbfields,
959 uint flags)
960{
961 xfs_trans_t *tp;
962 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 int committed;
964
Chandra Seetharamand892d582013-07-19 17:36:02 -0500965 *ip = NULL;
966 /*
967 * With superblock that doesn't have separate pquotino, we
968 * share an inode between gquota and pquota. If the on-disk
969 * superblock has GQUOTA and the filesystem is now mounted
970 * with PQUOTA, just use sb_gquotino for sb_pquotino and
971 * vice-versa.
972 */
973 if (!xfs_sb_version_has_pquotino(&mp->m_sb) &&
974 (flags & (XFS_QMOPT_PQUOTA|XFS_QMOPT_GQUOTA))) {
975 xfs_ino_t ino = NULLFSINO;
976
977 if ((flags & XFS_QMOPT_PQUOTA) &&
978 (mp->m_sb.sb_gquotino != NULLFSINO)) {
979 ino = mp->m_sb.sb_gquotino;
980 ASSERT(mp->m_sb.sb_pquotino == NULLFSINO);
981 } else if ((flags & XFS_QMOPT_GQUOTA) &&
982 (mp->m_sb.sb_pquotino != NULLFSINO)) {
983 ino = mp->m_sb.sb_pquotino;
984 ASSERT(mp->m_sb.sb_gquotino == NULLFSINO);
985 }
986 if (ino != NULLFSINO) {
987 error = xfs_iget(mp, NULL, ino, 0, 0, ip);
988 if (error)
989 return error;
990 mp->m_sb.sb_gquotino = NULLFSINO;
991 mp->m_sb.sb_pquotino = NULLFSINO;
992 }
993 }
994
Nathan Scott061f7202006-01-11 15:27:50 +1100995 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QINOCREATE);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000996 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_create,
997 XFS_QM_QINOCREATE_SPACE_RES(mp), 0);
998 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001000 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Chandra Seetharamand892d582013-07-19 17:36:02 -05001003 if (!*ip) {
1004 error = xfs_dir_ialloc(&tp, NULL, S_IFREG, 1, 0, 0, 1, ip,
1005 &committed);
1006 if (error) {
1007 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES |
1008 XFS_TRANS_ABORT);
1009 return error;
1010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 }
1012
1013 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 * Make the changes in the superblock, and log those too.
1015 * sbfields arg may contain fields other than *QUOTINO;
1016 * VERSIONNUM for example.
1017 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001018 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 if (flags & XFS_QMOPT_SBVERSION) {
Eric Sandeen62118702008-03-06 13:44:28 +11001020 ASSERT(!xfs_sb_version_hasquota(&mp->m_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 ASSERT((sbfields & (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
Chandra Seetharamand892d582013-07-19 17:36:02 -05001022 XFS_SB_GQUOTINO | XFS_SB_PQUOTINO | XFS_SB_QFLAGS)) ==
1023 (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
1024 XFS_SB_GQUOTINO | XFS_SB_PQUOTINO |
1025 XFS_SB_QFLAGS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Eric Sandeen62118702008-03-06 13:44:28 +11001027 xfs_sb_version_addquota(&mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 mp->m_sb.sb_uquotino = NULLFSINO;
1029 mp->m_sb.sb_gquotino = NULLFSINO;
Chandra Seetharamand892d582013-07-19 17:36:02 -05001030 mp->m_sb.sb_pquotino = NULLFSINO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Chandra Seetharamand892d582013-07-19 17:36:02 -05001032 /* qflags will get updated fully _after_ quotacheck */
1033 mp->m_sb.sb_qflags = mp->m_qflags & XFS_ALL_QUOTA_ACCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035 if (flags & XFS_QMOPT_UQUOTA)
1036 mp->m_sb.sb_uquotino = (*ip)->i_ino;
Chandra Seetharamand892d582013-07-19 17:36:02 -05001037 else if (flags & XFS_QMOPT_GQUOTA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 mp->m_sb.sb_gquotino = (*ip)->i_ino;
Chandra Seetharamand892d582013-07-19 17:36:02 -05001039 else
1040 mp->m_sb.sb_pquotino = (*ip)->i_ino;
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001041 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 xfs_mod_sb(tp, sbfields);
1043
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001044 if ((error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES))) {
Dave Chinner53487782011-03-07 10:05:35 +11001045 xfs_alert(mp, "%s failed (error %d)!", __func__, error);
Jesper Juhl014c2542006-01-15 02:37:08 +01001046 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001048 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049}
1050
1051
David Chinner5b139732008-04-10 12:20:10 +10001052STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053xfs_qm_reset_dqcounts(
1054 xfs_mount_t *mp,
1055 xfs_buf_t *bp,
1056 xfs_dqid_t id,
1057 uint type)
1058{
Dave Chinner6fcdc592013-06-03 15:28:46 +10001059 struct xfs_dqblk *dqb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 int j;
1061
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001062 trace_xfs_reset_dqcounts(bp, _RET_IP_);
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 /*
1065 * Reset all counters and timers. They'll be
1066 * started afresh by xfs_qm_quotacheck.
1067 */
1068#ifdef DEBUG
1069 j = XFS_FSB_TO_B(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
1070 do_div(j, sizeof(xfs_dqblk_t));
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001071 ASSERT(mp->m_quotainfo->qi_dqperchunk == j);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072#endif
Dave Chinner6fcdc592013-06-03 15:28:46 +10001073 dqb = bp->b_addr;
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001074 for (j = 0; j < mp->m_quotainfo->qi_dqperchunk; j++) {
Dave Chinner6fcdc592013-06-03 15:28:46 +10001075 struct xfs_disk_dquot *ddq;
1076
1077 ddq = (struct xfs_disk_dquot *)&dqb[j];
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 /*
1080 * Do a sanity check, and if needed, repair the dqblk. Don't
1081 * output any warnings because it's perfectly possible to
Dave Chinner9aede1d2013-10-15 09:17:52 +11001082 * find uninitialised dquot blks. See comment in xfs_dqcheck.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 */
Dave Chinner9aede1d2013-10-15 09:17:52 +11001084 xfs_dqcheck(mp, ddq, id+j, type, XFS_QMOPT_DQREPAIR,
1085 "xfs_quotacheck");
Christoph Hellwig1149d962005-11-02 15:01:12 +11001086 ddq->d_bcount = 0;
1087 ddq->d_icount = 0;
1088 ddq->d_rtbcount = 0;
1089 ddq->d_btimer = 0;
1090 ddq->d_itimer = 0;
1091 ddq->d_rtbtimer = 0;
1092 ddq->d_bwarns = 0;
1093 ddq->d_iwarns = 0;
1094 ddq->d_rtbwarns = 0;
Dave Chinner6fcdc592013-06-03 15:28:46 +10001095
1096 if (xfs_sb_version_hascrc(&mp->m_sb)) {
1097 xfs_update_cksum((char *)&dqb[j],
1098 sizeof(struct xfs_dqblk),
1099 XFS_DQUOT_CRC_OFF);
1100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102}
1103
1104STATIC int
1105xfs_qm_dqiter_bufs(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001106 struct xfs_mount *mp,
1107 xfs_dqid_t firstid,
1108 xfs_fsblock_t bno,
1109 xfs_filblks_t blkcnt,
1110 uint flags,
1111 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001113 struct xfs_buf *bp;
1114 int error;
1115 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 ASSERT(blkcnt > 0);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001118 type = flags & XFS_QMOPT_UQUOTA ? XFS_DQ_USER :
1119 (flags & XFS_QMOPT_PQUOTA ? XFS_DQ_PROJ : XFS_DQ_GROUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 error = 0;
1121
1122 /*
1123 * Blkcnt arg can be a very big number, and might even be
1124 * larger than the log itself. So, we have to break it up into
1125 * manageable-sized transactions.
1126 * Note that we don't start a permanent transaction here; we might
1127 * not be able to get a log reservation for the whole thing up front,
1128 * and we don't really care to either, because we just discard
1129 * everything if we were to crash in the middle of this loop.
1130 */
1131 while (blkcnt--) {
1132 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
1133 XFS_FSB_TO_DADDR(mp, bno),
Dave Chinnerc6319192012-11-14 17:50:13 +11001134 mp->m_quotainfo->qi_dqchunklen, 0, &bp,
Dave Chinner1813dd62012-11-14 17:54:40 +11001135 &xfs_dquot_buf_ops);
Dave Chinner6fcdc592013-06-03 15:28:46 +10001136
1137 /*
1138 * CRC and validation errors will return a EFSCORRUPTED here. If
1139 * this occurs, re-read without CRC validation so that we can
1140 * repair the damage via xfs_qm_reset_dqcounts(). This process
1141 * will leave a trace in the log indicating corruption has
1142 * been detected.
1143 */
1144 if (error == EFSCORRUPTED) {
1145 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
1146 XFS_FSB_TO_DADDR(mp, bno),
1147 mp->m_quotainfo->qi_dqchunklen, 0, &bp,
1148 NULL);
1149 }
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (error)
1152 break;
1153
David Chinner5b139732008-04-10 12:20:10 +10001154 xfs_qm_reset_dqcounts(mp, bp, firstid, type);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001155 xfs_buf_delwri_queue(bp, buffer_list);
Christoph Hellwig61551f12011-08-23 08:28:06 +00001156 xfs_buf_relse(bp);
Dave Chinner6fcdc592013-06-03 15:28:46 +10001157
1158 /* goto the next block. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 bno++;
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001160 firstid += mp->m_quotainfo->qi_dqperchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001162
Jesper Juhl014c2542006-01-15 02:37:08 +01001163 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164}
1165
1166/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001167 * Iterate over all allocated USR/GRP/PRJ dquots in the system, calling a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 * caller supplied function for every chunk of dquots that we find.
1169 */
1170STATIC int
1171xfs_qm_dqiterate(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001172 struct xfs_mount *mp,
1173 struct xfs_inode *qip,
1174 uint flags,
1175 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001177 struct xfs_bmbt_irec *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 int i, nmaps; /* number of map entries */
1179 int error; /* return value */
1180 xfs_fileoff_t lblkno;
1181 xfs_filblks_t maxlblkcnt;
1182 xfs_dqid_t firstid;
1183 xfs_fsblock_t rablkno;
1184 xfs_filblks_t rablkcnt;
1185
1186 error = 0;
1187 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001188 * This looks racy, but we can't keep an inode lock across a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 * trans_reserve. But, this gets called during quotacheck, and that
1190 * happens only at mount time which is single threaded.
1191 */
1192 if (qip->i_d.di_nblocks == 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01001193 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 map = kmem_alloc(XFS_DQITER_MAP_SIZE * sizeof(*map), KM_SLEEP);
1196
1197 lblkno = 0;
Dave Chinner32972382012-06-08 15:44:54 +10001198 maxlblkcnt = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 do {
1200 nmaps = XFS_DQITER_MAP_SIZE;
1201 /*
1202 * We aren't changing the inode itself. Just changing
1203 * some of its data. No new blocks are added here, and
1204 * the inode is never added to the transaction.
1205 */
1206 xfs_ilock(qip, XFS_ILOCK_SHARED);
Dave Chinner5c8ed202011-09-18 20:40:45 +00001207 error = xfs_bmapi_read(qip, lblkno, maxlblkcnt - lblkno,
1208 map, &nmaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 xfs_iunlock(qip, XFS_ILOCK_SHARED);
1210 if (error)
1211 break;
1212
1213 ASSERT(nmaps <= XFS_DQITER_MAP_SIZE);
1214 for (i = 0; i < nmaps; i++) {
1215 ASSERT(map[i].br_startblock != DELAYSTARTBLOCK);
1216 ASSERT(map[i].br_blockcount);
1217
1218
1219 lblkno += map[i].br_blockcount;
1220
1221 if (map[i].br_startblock == HOLESTARTBLOCK)
1222 continue;
1223
1224 firstid = (xfs_dqid_t) map[i].br_startoff *
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001225 mp->m_quotainfo->qi_dqperchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 /*
1227 * Do a read-ahead on the next extent.
1228 */
1229 if ((i+1 < nmaps) &&
1230 (map[i+1].br_startblock != HOLESTARTBLOCK)) {
1231 rablkcnt = map[i+1].br_blockcount;
1232 rablkno = map[i+1].br_startblock;
1233 while (rablkcnt--) {
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001234 xfs_buf_readahead(mp->m_ddev_targp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 XFS_FSB_TO_DADDR(mp, rablkno),
Dave Chinnerc3f8fc72012-11-12 22:54:01 +11001236 mp->m_quotainfo->qi_dqchunklen,
1237 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 rablkno++;
1239 }
1240 }
1241 /*
1242 * Iterate thru all the blks in the extent and
1243 * reset the counters of all the dquots inside them.
1244 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001245 error = xfs_qm_dqiter_bufs(mp, firstid,
1246 map[i].br_startblock,
1247 map[i].br_blockcount,
1248 flags, buffer_list);
1249 if (error)
1250 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 } while (nmaps > 0);
1253
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001254out:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001255 kmem_free(map);
Jesper Juhl014c2542006-01-15 02:37:08 +01001256 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257}
1258
1259/*
1260 * Called by dqusage_adjust in doing a quotacheck.
Christoph Hellwig52fda112010-09-06 01:44:22 +00001261 *
1262 * Given the inode, and a dquot id this updates both the incore dqout as well
1263 * as the buffer copy. This is so that once the quotacheck is done, we can
1264 * just log all the buffers, as opposed to logging numerous updates to
1265 * individual dquots.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001267STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268xfs_qm_quotacheck_dqadjust(
Christoph Hellwig52fda112010-09-06 01:44:22 +00001269 struct xfs_inode *ip,
1270 xfs_dqid_t id,
1271 uint type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 xfs_qcnt_t nblks,
1273 xfs_qcnt_t rtblks)
1274{
Christoph Hellwig52fda112010-09-06 01:44:22 +00001275 struct xfs_mount *mp = ip->i_mount;
1276 struct xfs_dquot *dqp;
1277 int error;
1278
1279 error = xfs_qm_dqget(mp, ip, id, type,
1280 XFS_QMOPT_DQALLOC | XFS_QMOPT_DOWARN, &dqp);
1281 if (error) {
1282 /*
1283 * Shouldn't be able to turn off quotas here.
1284 */
1285 ASSERT(error != ESRCH);
1286 ASSERT(error != ENOENT);
1287 return error;
1288 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001289
1290 trace_xfs_dqadjust(dqp);
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 /*
1293 * Adjust the inode count and the block count to reflect this inode's
1294 * resource usage.
1295 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001296 be64_add_cpu(&dqp->q_core.d_icount, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 dqp->q_res_icount++;
1298 if (nblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001299 be64_add_cpu(&dqp->q_core.d_bcount, nblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 dqp->q_res_bcount += nblks;
1301 }
1302 if (rtblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001303 be64_add_cpu(&dqp->q_core.d_rtbcount, rtblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 dqp->q_res_rtbcount += rtblks;
1305 }
1306
1307 /*
1308 * Set default limits, adjust timers (since we changed usages)
Christoph Hellwig191f8482010-04-20 17:01:53 +10001309 *
1310 * There are no timers for the default values set in the root dquot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 */
Christoph Hellwig191f8482010-04-20 17:01:53 +10001312 if (dqp->q_core.d_id) {
Brian Foster4b6eae2e2013-03-18 10:51:45 -04001313 xfs_qm_adjust_dqlimits(mp, dqp);
Christoph Hellwig52fda112010-09-06 01:44:22 +00001314 xfs_qm_adjust_dqtimers(mp, &dqp->q_core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 }
1316
1317 dqp->dq_flags |= XFS_DQ_DIRTY;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001318 xfs_qm_dqput(dqp);
1319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
1321
1322STATIC int
1323xfs_qm_get_rtblks(
1324 xfs_inode_t *ip,
1325 xfs_qcnt_t *O_rtblks)
1326{
1327 xfs_filblks_t rtblks; /* total rt blks */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001328 xfs_extnum_t idx; /* extent record index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 xfs_ifork_t *ifp; /* inode fork pointer */
1330 xfs_extnum_t nextents; /* number of extent entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 int error;
1332
1333 ASSERT(XFS_IS_REALTIME_INODE(ip));
1334 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1335 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1336 if ((error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001337 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339 rtblks = 0;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001340 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10001341 for (idx = 0; idx < nextents; idx++)
1342 rtblks += xfs_bmbt_get_blockcount(xfs_iext_get_ext(ifp, idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 *O_rtblks = (xfs_qcnt_t)rtblks;
Jesper Juhl014c2542006-01-15 02:37:08 +01001344 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345}
1346
1347/*
1348 * callback routine supplied to bulkstat(). Given an inumber, find its
1349 * dquots and update them to account for resources taken by that inode.
1350 */
1351/* ARGSUSED */
1352STATIC int
1353xfs_qm_dqusage_adjust(
1354 xfs_mount_t *mp, /* mount point for filesystem */
1355 xfs_ino_t ino, /* inode number to get data for */
1356 void __user *buffer, /* not used */
1357 int ubsize, /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 int *ubused, /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 int *res) /* result code value */
1360{
1361 xfs_inode_t *ip;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001362 xfs_qcnt_t nblks, rtblks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 int error;
1364
1365 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1366
1367 /*
1368 * rootino must have its resources accounted for, not so with the quota
1369 * inodes.
1370 */
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -05001371 if (xfs_is_quota_inode(&mp->m_sb, ino)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 *res = BULKSTAT_RV_NOTHING;
1373 return XFS_ERROR(EINVAL);
1374 }
1375
1376 /*
1377 * We don't _need_ to take the ilock EXCL. However, the xfs_qm_dqget
1378 * interface expects the inode to be exclusively locked because that's
1379 * the case in all other instances. It's OK that we do this because
1380 * quotacheck is done only at mount time.
1381 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001382 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_EXCL, &ip);
1383 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 *res = BULKSTAT_RV_NOTHING;
Jesper Juhl014c2542006-01-15 02:37:08 +01001385 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
1387
Christoph Hellwig52fda112010-09-06 01:44:22 +00001388 ASSERT(ip->i_delayed_blks == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Christoph Hellwig52fda112010-09-06 01:44:22 +00001390 if (XFS_IS_REALTIME_INODE(ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 /*
1392 * Walk thru the extent list and count the realtime blocks.
1393 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001394 error = xfs_qm_get_rtblks(ip, &rtblks);
1395 if (error)
1396 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Christoph Hellwig52fda112010-09-06 01:44:22 +00001399 nblks = (xfs_qcnt_t)ip->i_d.di_nblocks - rtblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 /*
1402 * Add the (disk blocks and inode) resources occupied by this
1403 * inode to its dquots. We do this adjustment in the incore dquot,
1404 * and also copy the changes to its buffer.
1405 * We don't care about putting these changes in a transaction
1406 * envelope because if we crash in the middle of a 'quotacheck'
1407 * we have to start from the beginning anyway.
1408 * Once we're done, we'll log all the dquot bufs.
1409 *
Nathan Scottc41564b2006-03-29 08:55:14 +10001410 * The *QUOTA_ON checks below may look pretty racy, but quotachecks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 * and quotaoffs don't race. (Quotachecks happen at mount time only).
1412 */
1413 if (XFS_IS_UQUOTA_ON(mp)) {
Christoph Hellwig52fda112010-09-06 01:44:22 +00001414 error = xfs_qm_quotacheck_dqadjust(ip, ip->i_d.di_uid,
1415 XFS_DQ_USER, nblks, rtblks);
1416 if (error)
1417 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Christoph Hellwig52fda112010-09-06 01:44:22 +00001420 if (XFS_IS_GQUOTA_ON(mp)) {
1421 error = xfs_qm_quotacheck_dqadjust(ip, ip->i_d.di_gid,
1422 XFS_DQ_GROUP, nblks, rtblks);
1423 if (error)
1424 goto error0;
1425 }
1426
1427 if (XFS_IS_PQUOTA_ON(mp)) {
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001428 error = xfs_qm_quotacheck_dqadjust(ip, xfs_get_projid(ip),
Christoph Hellwig52fda112010-09-06 01:44:22 +00001429 XFS_DQ_PROJ, nblks, rtblks);
1430 if (error)
1431 goto error0;
1432 }
1433
1434 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1435 IRELE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 *res = BULKSTAT_RV_DIDONE;
Jesper Juhl014c2542006-01-15 02:37:08 +01001437 return 0;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001438
1439error0:
1440 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1441 IRELE(ip);
1442 *res = BULKSTAT_RV_GIVEUP;
1443 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444}
1445
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001446STATIC int
1447xfs_qm_flush_one(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001448 struct xfs_dquot *dqp,
1449 void *data)
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001450{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001451 struct list_head *buffer_list = data;
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001452 struct xfs_buf *bp = NULL;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001453 int error = 0;
1454
1455 xfs_dqlock(dqp);
1456 if (dqp->dq_flags & XFS_DQ_FREEING)
1457 goto out_unlock;
1458 if (!XFS_DQ_IS_DIRTY(dqp))
1459 goto out_unlock;
1460
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001461 xfs_dqflock(dqp);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001462 error = xfs_qm_dqflush(dqp, &bp);
1463 if (error)
1464 goto out_unlock;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001465
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001466 xfs_buf_delwri_queue(bp, buffer_list);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001467 xfs_buf_relse(bp);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001468out_unlock:
1469 xfs_dqunlock(dqp);
1470 return error;
1471}
1472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473/*
1474 * Walk thru all the filesystem inodes and construct a consistent view
1475 * of the disk quota world. If the quotacheck fails, disable quotas.
1476 */
1477int
1478xfs_qm_quotacheck(
1479 xfs_mount_t *mp)
1480{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001481 int done, count, error, error2;
1482 xfs_ino_t lastino;
1483 size_t structsz;
1484 uint flags;
1485 LIST_HEAD (buffer_list);
1486 struct xfs_inode *uip = mp->m_quotainfo->qi_uquotaip;
1487 struct xfs_inode *gip = mp->m_quotainfo->qi_gquotaip;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001488 struct xfs_inode *pip = mp->m_quotainfo->qi_pquotaip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
1490 count = INT_MAX;
1491 structsz = 1;
1492 lastino = 0;
1493 flags = 0;
1494
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001495 ASSERT(uip || gip || pip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1497
Dave Chinner0b932cc2011-03-07 10:08:35 +11001498 xfs_notice(mp, "Quotacheck needed: Please wait.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 /*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001501 * First we go thru all the dquots on disk, USR and GRP/PRJ, and reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 * their counters to zero. We need a clean slate.
1503 * We don't log our changes till later.
1504 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001505 if (uip) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001506 error = xfs_qm_dqiterate(mp, uip, XFS_QMOPT_UQUOTA,
1507 &buffer_list);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001508 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 goto error_return;
1510 flags |= XFS_UQUOTA_CHKD;
1511 }
1512
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001513 if (gip) {
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001514 error = xfs_qm_dqiterate(mp, gip, XFS_QMOPT_GQUOTA,
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001515 &buffer_list);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001516 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 goto error_return;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001518 flags |= XFS_GQUOTA_CHKD;
1519 }
1520
1521 if (pip) {
1522 error = xfs_qm_dqiterate(mp, pip, XFS_QMOPT_PQUOTA,
1523 &buffer_list);
1524 if (error)
1525 goto error_return;
1526 flags |= XFS_PQUOTA_CHKD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
1528
1529 do {
1530 /*
1531 * Iterate thru all the inodes in the file system,
1532 * adjusting the corresponding dquot counters in core.
1533 */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +10001534 error = xfs_bulkstat(mp, &lastino, &count,
1535 xfs_qm_dqusage_adjust,
1536 structsz, NULL, &done);
1537 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 break;
1539
Christoph Hellwig7dce11d2010-06-23 18:11:11 +10001540 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 /*
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001543 * We've made all the changes that we need to make incore. Flush them
1544 * down to disk buffers if everything was updated successfully.
David Chinner4b8879d2008-04-10 12:20:17 +10001545 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001546 if (XFS_IS_UQUOTA_ON(mp)) {
1547 error = xfs_qm_dquot_walk(mp, XFS_DQ_USER, xfs_qm_flush_one,
1548 &buffer_list);
1549 }
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001550 if (XFS_IS_GQUOTA_ON(mp)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001551 error2 = xfs_qm_dquot_walk(mp, XFS_DQ_GROUP, xfs_qm_flush_one,
1552 &buffer_list);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001553 if (!error)
1554 error = error2;
1555 }
1556 if (XFS_IS_PQUOTA_ON(mp)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001557 error2 = xfs_qm_dquot_walk(mp, XFS_DQ_PROJ, xfs_qm_flush_one,
1558 &buffer_list);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001559 if (!error)
1560 error = error2;
1561 }
David Chinner4b8879d2008-04-10 12:20:17 +10001562
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001563 error2 = xfs_buf_delwri_submit(&buffer_list);
1564 if (!error)
1565 error = error2;
1566
David Chinner4b8879d2008-04-10 12:20:17 +10001567 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 * We can get this error if we couldn't do a dquot allocation inside
1569 * xfs_qm_dqusage_adjust (via bulkstat). We don't care about the
1570 * dirty dquots that might be cached, we just want to get rid of them
1571 * and turn quotaoff. The dquots won't be attached to any of the inodes
1572 * at this point (because we intentionally didn't in dqget_noattach).
1573 */
1574 if (error) {
Christoph Hellwig8112e9d2010-04-20 17:02:29 +10001575 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 goto error_return;
1577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 * If one type of quotas is off, then it will lose its
1581 * quotachecked status, since we won't be doing accounting for
1582 * that type anymore.
1583 */
Chandra Seetharaman4177af32012-01-23 17:31:43 +00001584 mp->m_qflags &= ~XFS_ALL_QUOTA_CHKD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 mp->m_qflags |= flags;
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 error_return:
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001588 while (!list_empty(&buffer_list)) {
1589 struct xfs_buf *bp =
1590 list_first_entry(&buffer_list, struct xfs_buf, b_list);
1591 list_del_init(&bp->b_list);
1592 xfs_buf_relse(bp);
1593 }
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001596 xfs_warn(mp,
1597 "Quotacheck: Unsuccessful (Error %d): Disabling quotas.",
1598 error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 /*
1600 * We must turn off quotas.
1601 */
1602 ASSERT(mp->m_quotainfo != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 xfs_qm_destroy_quotainfo(mp);
David Chinner31d55772008-04-10 12:20:38 +10001604 if (xfs_mount_reset_sbqflags(mp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001605 xfs_warn(mp,
1606 "Quotacheck: Failed to reset quota flags.");
David Chinner31d55772008-04-10 12:20:38 +10001607 }
Dave Chinner0b932cc2011-03-07 10:08:35 +11001608 } else
1609 xfs_notice(mp, "Quotacheck: Done.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 return (error);
1611}
1612
1613/*
1614 * This is called after the superblock has been read in and we're ready to
1615 * iget the quota inodes.
1616 */
1617STATIC int
1618xfs_qm_init_quotainos(
1619 xfs_mount_t *mp)
1620{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001621 struct xfs_inode *uip = NULL;
1622 struct xfs_inode *gip = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001623 struct xfs_inode *pip = NULL;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001624 int error;
1625 __int64_t sbflags = 0;
1626 uint flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 ASSERT(mp->m_quotainfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630 /*
1631 * Get the uquota and gquota inodes
1632 */
Eric Sandeen62118702008-03-06 13:44:28 +11001633 if (xfs_sb_version_hasquota(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (XFS_IS_UQUOTA_ON(mp) &&
1635 mp->m_sb.sb_uquotino != NULLFSINO) {
1636 ASSERT(mp->m_sb.sb_uquotino > 0);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001637 error = xfs_iget(mp, NULL, mp->m_sb.sb_uquotino,
1638 0, 0, &uip);
1639 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 return XFS_ERROR(error);
1641 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001642 if (XFS_IS_GQUOTA_ON(mp) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 mp->m_sb.sb_gquotino != NULLFSINO) {
1644 ASSERT(mp->m_sb.sb_gquotino > 0);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001645 error = xfs_iget(mp, NULL, mp->m_sb.sb_gquotino,
1646 0, 0, &gip);
1647 if (error)
1648 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001650 if (XFS_IS_PQUOTA_ON(mp) &&
Chandra Seetharamand892d582013-07-19 17:36:02 -05001651 mp->m_sb.sb_pquotino != NULLFSINO) {
1652 ASSERT(mp->m_sb.sb_pquotino > 0);
1653 error = xfs_iget(mp, NULL, mp->m_sb.sb_pquotino,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001654 0, 0, &pip);
1655 if (error)
1656 goto error_rele;
1657 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 } else {
1659 flags |= XFS_QMOPT_SBVERSION;
1660 sbflags |= (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
Chandra Seetharamand892d582013-07-19 17:36:02 -05001661 XFS_SB_GQUOTINO | XFS_SB_PQUOTINO |
1662 XFS_SB_QFLAGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 }
1664
1665 /*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001666 * Create the three inodes, if they don't exist already. The changes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 * made above will get added to a transaction and logged in one of
1668 * the qino_alloc calls below. If the device is readonly,
1669 * temporarily switch to read-write to do this.
1670 */
1671 if (XFS_IS_UQUOTA_ON(mp) && uip == NULL) {
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001672 error = xfs_qm_qino_alloc(mp, &uip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 sbflags | XFS_SB_UQUOTINO,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001674 flags | XFS_QMOPT_UQUOTA);
1675 if (error)
1676 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 flags &= ~XFS_QMOPT_SBVERSION;
1679 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001680 if (XFS_IS_GQUOTA_ON(mp) && gip == NULL) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001681 error = xfs_qm_qino_alloc(mp, &gip,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001682 sbflags | XFS_SB_GQUOTINO,
1683 flags | XFS_QMOPT_GQUOTA);
1684 if (error)
1685 goto error_rele;
1686
1687 flags &= ~XFS_QMOPT_SBVERSION;
1688 }
1689 if (XFS_IS_PQUOTA_ON(mp) && pip == NULL) {
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001690 error = xfs_qm_qino_alloc(mp, &pip,
Chandra Seetharamand892d582013-07-19 17:36:02 -05001691 sbflags | XFS_SB_PQUOTINO,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001692 flags | XFS_QMOPT_PQUOTA);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001693 if (error)
1694 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 }
1696
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001697 mp->m_quotainfo->qi_uquotaip = uip;
1698 mp->m_quotainfo->qi_gquotaip = gip;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001699 mp->m_quotainfo->qi_pquotaip = pip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Jesper Juhl014c2542006-01-15 02:37:08 +01001701 return 0;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001702
1703error_rele:
1704 if (uip)
1705 IRELE(uip);
1706 if (gip)
1707 IRELE(gip);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001708 if (pip)
1709 IRELE(pip);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001710 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711}
1712
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001713STATIC void
1714xfs_qm_dqfree_one(
1715 struct xfs_dquot *dqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716{
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001717 struct xfs_mount *mp = dqp->q_mount;
1718 struct xfs_quotainfo *qi = mp->m_quotainfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Christoph Hellwig9f920f12012-03-13 08:52:35 +00001720 mutex_lock(&qi->qi_tree_lock);
Chandra Seetharaman329e0872013-06-27 17:25:05 -05001721 radix_tree_delete(xfs_dquot_tree(qi, dqp->q_core.d_flags),
Christoph Hellwig9f920f12012-03-13 08:52:35 +00001722 be32_to_cpu(dqp->q_core.d_id));
Christoph Hellwigbf72de32011-12-06 21:58:19 +00001723
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001724 qi->qi_dquots--;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001725 mutex_unlock(&qi->qi_tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001727 xfs_qm_dqdestroy(dqp);
1728}
Christoph Hellwigbe7ffc32011-12-06 21:58:17 +00001729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730/*
1731 * Start a transaction and write the incore superblock changes to
1732 * disk. flags parameter indicates which fields have changed.
1733 */
1734int
1735xfs_qm_write_sb_changes(
1736 xfs_mount_t *mp,
1737 __int64_t flags)
1738{
1739 xfs_trans_t *tp;
1740 int error;
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001743 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_qm_sbchange, 0, 0);
Jeff Liuf910a8c2013-01-28 21:26:34 +08001744 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001746 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 }
1748
1749 xfs_mod_sb(tp, flags);
David Chinnere5720ee2008-04-10 12:21:18 +10001750 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
David Chinnere5720ee2008-04-10 12:21:18 +10001752 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753}
1754
1755
1756/* --------------- utility functions for vnodeops ---------------- */
1757
1758
1759/*
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001760 * Given an inode, a uid, gid and prid make sure that we have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 * allocated relevant dquot(s) on disk, and that we won't exceed inode
1762 * quotas by creating this file.
1763 * This also attaches dquot(s) to the given inode after locking it,
1764 * and returns the dquots corresponding to the uid and/or gid.
1765 *
1766 * in : inode (unlocked)
1767 * out : udquot, gdquot with references taken and unlocked
1768 */
1769int
1770xfs_qm_vop_dqalloc(
Christoph Hellwig7d095252009-06-08 15:33:32 +02001771 struct xfs_inode *ip,
Dwight Engen7aab1b22013-08-15 14:08:01 -04001772 xfs_dqid_t uid,
1773 xfs_dqid_t gid,
Christoph Hellwig7d095252009-06-08 15:33:32 +02001774 prid_t prid,
1775 uint flags,
1776 struct xfs_dquot **O_udqpp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001777 struct xfs_dquot **O_gdqpp,
1778 struct xfs_dquot **O_pdqpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
Christoph Hellwig7d095252009-06-08 15:33:32 +02001780 struct xfs_mount *mp = ip->i_mount;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001781 struct xfs_dquot *uq = NULL;
1782 struct xfs_dquot *gq = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001783 struct xfs_dquot *pq = NULL;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001784 int error;
1785 uint lockflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Christoph Hellwig7d095252009-06-08 15:33:32 +02001787 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 return 0;
1789
1790 lockflags = XFS_ILOCK_EXCL;
1791 xfs_ilock(ip, lockflags);
1792
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001793 if ((flags & XFS_QMOPT_INHERIT) && XFS_INHERIT_GID(ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 gid = ip->i_d.di_gid;
1795
1796 /*
1797 * Attach the dquot(s) to this inode, doing a dquot allocation
1798 * if necessary. The dquot(s) will not be locked.
1799 */
1800 if (XFS_NOT_DQATTACHED(mp, ip)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001801 error = xfs_qm_dqattach_locked(ip, XFS_QMOPT_DQALLOC);
1802 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 xfs_iunlock(ip, lockflags);
Jesper Juhl014c2542006-01-15 02:37:08 +01001804 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 }
1806 }
1807
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001808 if ((flags & XFS_QMOPT_UQUOTA) && XFS_IS_UQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 if (ip->i_d.di_uid != uid) {
1810 /*
1811 * What we need is the dquot that has this uid, and
1812 * if we send the inode to dqget, the uid of the inode
1813 * takes priority over what's sent in the uid argument.
1814 * We must unlock inode here before calling dqget if
1815 * we're not sending the inode, because otherwise
1816 * we'll deadlock by doing trans_reserve while
1817 * holding ilock.
1818 */
1819 xfs_iunlock(ip, lockflags);
Dwight Engen7aab1b22013-08-15 14:08:01 -04001820 error = xfs_qm_dqget(mp, NULL, uid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 XFS_DQ_USER,
1822 XFS_QMOPT_DQALLOC |
1823 XFS_QMOPT_DOWARN,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001824 &uq);
1825 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 ASSERT(error != ENOENT);
Jesper Juhl014c2542006-01-15 02:37:08 +01001827 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 }
1829 /*
1830 * Get the ilock in the right order.
1831 */
1832 xfs_dqunlock(uq);
1833 lockflags = XFS_ILOCK_SHARED;
1834 xfs_ilock(ip, lockflags);
1835 } else {
1836 /*
1837 * Take an extra reference, because we'll return
1838 * this to caller
1839 */
1840 ASSERT(ip->i_udquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001841 uq = xfs_qm_dqhold(ip->i_udquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001844 if ((flags & XFS_QMOPT_GQUOTA) && XFS_IS_GQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 if (ip->i_d.di_gid != gid) {
1846 xfs_iunlock(ip, lockflags);
Dwight Engen7aab1b22013-08-15 14:08:01 -04001847 error = xfs_qm_dqget(mp, NULL, gid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 XFS_DQ_GROUP,
1849 XFS_QMOPT_DQALLOC |
1850 XFS_QMOPT_DOWARN,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001851 &gq);
1852 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 ASSERT(error != ENOENT);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001854 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 }
1856 xfs_dqunlock(gq);
1857 lockflags = XFS_ILOCK_SHARED;
1858 xfs_ilock(ip, lockflags);
1859 } else {
1860 ASSERT(ip->i_gdquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001861 gq = xfs_qm_dqhold(ip->i_gdquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001863 }
1864 if ((flags & XFS_QMOPT_PQUOTA) && XFS_IS_PQUOTA_ON(mp)) {
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001865 if (xfs_get_projid(ip) != prid) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001866 xfs_iunlock(ip, lockflags);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001867 error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)prid,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001868 XFS_DQ_PROJ,
1869 XFS_QMOPT_DQALLOC |
1870 XFS_QMOPT_DOWARN,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001871 &pq);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001872 if (error) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001873 ASSERT(error != ENOENT);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001874 goto error_rele;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001875 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001876 xfs_dqunlock(pq);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001877 lockflags = XFS_ILOCK_SHARED;
1878 xfs_ilock(ip, lockflags);
1879 } else {
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001880 ASSERT(ip->i_pdquot);
1881 pq = xfs_qm_dqhold(ip->i_pdquot);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 }
1884 if (uq)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001885 trace_xfs_dquot_dqalloc(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
1887 xfs_iunlock(ip, lockflags);
1888 if (O_udqpp)
1889 *O_udqpp = uq;
1890 else if (uq)
1891 xfs_qm_dqrele(uq);
1892 if (O_gdqpp)
1893 *O_gdqpp = gq;
1894 else if (gq)
1895 xfs_qm_dqrele(gq);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001896 if (O_pdqpp)
1897 *O_pdqpp = pq;
1898 else if (pq)
1899 xfs_qm_dqrele(pq);
Jesper Juhl014c2542006-01-15 02:37:08 +01001900 return 0;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001901
1902error_rele:
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001903 if (gq)
1904 xfs_qm_dqrele(gq);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001905 if (uq)
1906 xfs_qm_dqrele(uq);
1907 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908}
1909
1910/*
1911 * Actually transfer ownership, and do dquot modifications.
1912 * These were already reserved.
1913 */
1914xfs_dquot_t *
1915xfs_qm_vop_chown(
1916 xfs_trans_t *tp,
1917 xfs_inode_t *ip,
1918 xfs_dquot_t **IO_olddq,
1919 xfs_dquot_t *newdq)
1920{
1921 xfs_dquot_t *prevdq;
Nathan Scott06d10dd2005-06-21 15:48:47 +10001922 uint bfield = XFS_IS_REALTIME_INODE(ip) ?
1923 XFS_TRANS_DQ_RTBCOUNT : XFS_TRANS_DQ_BCOUNT;
1924
Christoph Hellwig7d095252009-06-08 15:33:32 +02001925
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001926 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 ASSERT(XFS_IS_QUOTA_RUNNING(ip->i_mount));
1928
1929 /* old dquot */
1930 prevdq = *IO_olddq;
1931 ASSERT(prevdq);
1932 ASSERT(prevdq != newdq);
1933
Nathan Scott06d10dd2005-06-21 15:48:47 +10001934 xfs_trans_mod_dquot(tp, prevdq, bfield, -(ip->i_d.di_nblocks));
1935 xfs_trans_mod_dquot(tp, prevdq, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 /* the sparkling new dquot */
Nathan Scott06d10dd2005-06-21 15:48:47 +10001938 xfs_trans_mod_dquot(tp, newdq, bfield, ip->i_d.di_nblocks);
1939 xfs_trans_mod_dquot(tp, newdq, XFS_TRANS_DQ_ICOUNT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
1941 /*
Christoph Hellwig78e55892011-12-06 21:58:22 +00001942 * Take an extra reference, because the inode is going to keep
1943 * this dquot pointer even after the trans_commit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 */
Christoph Hellwig78e55892011-12-06 21:58:22 +00001945 *IO_olddq = xfs_qm_dqhold(newdq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Jesper Juhl014c2542006-01-15 02:37:08 +01001947 return prevdq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948}
1949
1950/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001951 * Quota reservations for setattr(AT_UID|AT_GID|AT_PROJID).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 */
1953int
1954xfs_qm_vop_chown_reserve(
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001955 struct xfs_trans *tp,
1956 struct xfs_inode *ip,
1957 struct xfs_dquot *udqp,
1958 struct xfs_dquot *gdqp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001959 struct xfs_dquot *pdqp,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001960 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001962 struct xfs_mount *mp = ip->i_mount;
1963 uint delblks, blkflags, prjflags = 0;
1964 struct xfs_dquot *udq_unres = NULL;
1965 struct xfs_dquot *gdq_unres = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001966 struct xfs_dquot *pdq_unres = NULL;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001967 struct xfs_dquot *udq_delblks = NULL;
1968 struct xfs_dquot *gdq_delblks = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001969 struct xfs_dquot *pdq_delblks = NULL;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001970 int error;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001973 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1975
1976 delblks = ip->i_delayed_blks;
Nathan Scott06d10dd2005-06-21 15:48:47 +10001977 blkflags = XFS_IS_REALTIME_INODE(ip) ?
1978 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 if (XFS_IS_UQUOTA_ON(mp) && udqp &&
Dwight Engen7aab1b22013-08-15 14:08:01 -04001981 ip->i_d.di_uid != be32_to_cpu(udqp->q_core.d_id)) {
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001982 udq_delblks = udqp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 /*
1984 * If there are delayed allocation blocks, then we have to
1985 * unreserve those from the old dquot, and add them to the
1986 * new dquot.
1987 */
1988 if (delblks) {
1989 ASSERT(ip->i_udquot);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001990 udq_unres = ip->i_udquot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 }
1992 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001993 if (XFS_IS_GQUOTA_ON(ip->i_mount) && gdqp &&
1994 ip->i_d.di_gid != be32_to_cpu(gdqp->q_core.d_id)) {
1995 gdq_delblks = gdqp;
1996 if (delblks) {
1997 ASSERT(ip->i_gdquot);
1998 gdq_unres = ip->i_gdquot;
1999 }
2000 }
Nathan Scott9a2a7de2006-03-31 13:04:49 +10002001
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002002 if (XFS_IS_PQUOTA_ON(ip->i_mount) && pdqp &&
2003 xfs_get_projid(ip) != be32_to_cpu(pdqp->q_core.d_id)) {
2004 prjflags = XFS_QMOPT_ENOSPC;
2005 pdq_delblks = pdqp;
2006 if (delblks) {
2007 ASSERT(ip->i_pdquot);
2008 pdq_unres = ip->i_pdquot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 }
2010 }
2011
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002012 error = xfs_trans_reserve_quota_bydquots(tp, ip->i_mount,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002013 udq_delblks, gdq_delblks, pdq_delblks,
2014 ip->i_d.di_nblocks, 1,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002015 flags | blkflags | prjflags);
2016 if (error)
2017 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019 /*
2020 * Do the delayed blks reservations/unreservations now. Since, these
2021 * are done without the help of a transaction, if a reservation fails
2022 * its previous reservations won't be automatically undone by trans
2023 * code. So, we have to do it manually here.
2024 */
2025 if (delblks) {
2026 /*
2027 * Do the reservations first. Unreservation can't fail.
2028 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002029 ASSERT(udq_delblks || gdq_delblks || pdq_delblks);
2030 ASSERT(udq_unres || gdq_unres || pdq_unres);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002031 error = xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002032 udq_delblks, gdq_delblks, pdq_delblks,
2033 (xfs_qcnt_t)delblks, 0,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002034 flags | blkflags | prjflags);
2035 if (error)
2036 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002038 udq_unres, gdq_unres, pdq_unres,
2039 -((xfs_qcnt_t)delblks), 0, blkflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
2041
2042 return (0);
2043}
2044
2045int
2046xfs_qm_vop_rename_dqattach(
Christoph Hellwig7d095252009-06-08 15:33:32 +02002047 struct xfs_inode **i_tab)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002049 struct xfs_mount *mp = i_tab[0]->i_mount;
2050 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Christoph Hellwig7d095252009-06-08 15:33:32 +02002052 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Jesper Juhl014c2542006-01-15 02:37:08 +01002053 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Christoph Hellwig7d095252009-06-08 15:33:32 +02002055 for (i = 0; (i < 4 && i_tab[i]); i++) {
2056 struct xfs_inode *ip = i_tab[i];
2057 int error;
2058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 /*
2060 * Watch out for duplicate entries in the table.
2061 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02002062 if (i == 0 || ip != i_tab[i-1]) {
2063 if (XFS_NOT_DQATTACHED(mp, ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 error = xfs_qm_dqattach(ip, 0);
2065 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002066 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
2068 }
2069 }
Jesper Juhl014c2542006-01-15 02:37:08 +01002070 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071}
2072
2073void
Christoph Hellwig7d095252009-06-08 15:33:32 +02002074xfs_qm_vop_create_dqattach(
2075 struct xfs_trans *tp,
2076 struct xfs_inode *ip,
2077 struct xfs_dquot *udqp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002078 struct xfs_dquot *gdqp,
2079 struct xfs_dquot *pdqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002081 struct xfs_mount *mp = tp->t_mountp;
2082
2083 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 return;
2085
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002086 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig7d095252009-06-08 15:33:32 +02002087 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
2089 if (udqp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 ASSERT(ip->i_udquot == NULL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002091 ASSERT(XFS_IS_UQUOTA_ON(mp));
Christoph Hellwig1149d962005-11-02 15:01:12 +11002092 ASSERT(ip->i_d.di_uid == be32_to_cpu(udqp->q_core.d_id));
Christoph Hellwig78e55892011-12-06 21:58:22 +00002093
2094 ip->i_udquot = xfs_qm_dqhold(udqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 xfs_trans_mod_dquot(tp, udqp, XFS_TRANS_DQ_ICOUNT, 1);
2096 }
2097 if (gdqp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 ASSERT(ip->i_gdquot == NULL);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002099 ASSERT(XFS_IS_GQUOTA_ON(mp));
2100 ASSERT(ip->i_d.di_gid == be32_to_cpu(gdqp->q_core.d_id));
Christoph Hellwig78e55892011-12-06 21:58:22 +00002101 ip->i_gdquot = xfs_qm_dqhold(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 xfs_trans_mod_dquot(tp, gdqp, XFS_TRANS_DQ_ICOUNT, 1);
2103 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002104 if (pdqp) {
2105 ASSERT(ip->i_pdquot == NULL);
2106 ASSERT(XFS_IS_PQUOTA_ON(mp));
2107 ASSERT(xfs_get_projid(ip) == be32_to_cpu(pdqp->q_core.d_id));
2108
2109 ip->i_pdquot = xfs_qm_dqhold(pdqp);
2110 xfs_trans_mod_dquot(tp, pdqp, XFS_TRANS_DQ_ICOUNT, 1);
2111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112}
2113