blob: c40ca94e23eab49aba6f004405115b87ac118227 [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"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_dir2.h"
27#include "xfs_alloc.h"
28#include "xfs_dmapi.h"
29#include "xfs_quota.h"
30#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_dinode.h"
37#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_btree.h"
39#include "xfs_ialloc.h"
40#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_rtalloc.h"
42#include "xfs_error.h"
Nathan Scotta844f452005-11-02 14:38:42 +110043#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include "xfs_rw.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_attr.h"
46#include "xfs_buf_item.h"
47#include "xfs_trans_space.h"
48#include "xfs_utils.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include "xfs_qm.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000050#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*
53 * The global quota manager. There is only one of these for the entire
54 * system, _not_ one per file system. XQM keeps track of the overall
55 * quota functionality, including maintaining the freelist and hash
56 * tables of dquots.
57 */
Christoph Hellwiga0b0b8a2009-03-29 09:51:00 +020058struct mutex xfs_Gqm_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059struct xfs_qm *xfs_Gqm;
Nathan Scott6b3f6b52005-11-02 15:08:25 +110060uint ndquot;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62kmem_zone_t *qm_dqzone;
63kmem_zone_t *qm_dqtrxzone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
David Chinner7989cb82007-02-10 18:34:56 +110065static cred_t xfs_zerocr;
Nathan Scottdae81d42006-02-28 12:30:13 +110066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067STATIC void xfs_qm_list_init(xfs_dqlist_t *, char *, int);
68STATIC void xfs_qm_list_destroy(xfs_dqlist_t *);
69
70STATIC int xfs_qm_init_quotainos(xfs_mount_t *);
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100071STATIC int xfs_qm_init_quotainfo(xfs_mount_t *);
Al Viro51bfb752005-12-15 09:17:24 +000072STATIC int xfs_qm_shake(int, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Rusty Russell8e1f9362007-07-17 04:03:17 -070074static struct shrinker xfs_qm_shaker = {
75 .shrink = xfs_qm_shake,
76 .seeks = DEFAULT_SEEKS,
77};
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#ifdef DEBUG
Christoph Hellwiga0b0b8a2009-03-29 09:51:00 +020080extern struct mutex qcheck_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#endif
82
83#ifdef QUOTADEBUG
Dave Chinner3a254042010-04-13 15:06:48 +100084static void
85xfs_qm_dquot_list_print(
86 struct xfs_mount *mp)
87{
88 xfs_dquot_t *dqp;
89 int i = 0;
90
91 list_for_each_entry(dqp, &mp->m_quotainfo->qi_dqlist_lock, qi_mplist) {
92 cmn_err(CE_DEBUG, " %d. \"%d (%s)\" "
93 "bcnt = %lld, icnt = %lld, refs = %d",
94 i++, be32_to_cpu(dqp->q_core.d_id),
95 DQFLAGTO_TYPESTR(dqp),
96 (long long)be64_to_cpu(dqp->q_core.d_bcount),
97 (long long)be64_to_cpu(dqp->q_core.d_icount),
98 dqp->q_nrefs);
99 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101#else
Dave Chinner3a254042010-04-13 15:06:48 +1000102static void xfs_qm_dquot_list_print(struct xfs_mount *mp) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#endif
104
105/*
106 * Initialize the XQM structure.
107 * Note that there is not one quota manager per file system.
108 */
109STATIC struct xfs_qm *
110xfs_Gqm_init(void)
111{
Nathan Scott6b3f6b52005-11-02 15:08:25 +1100112 xfs_dqhash_t *udqhash, *gdqhash;
113 xfs_qm_t *xqm;
Nathan Scott215101c2006-09-28 11:04:43 +1000114 size_t hsize;
115 uint i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117 /*
118 * Initialize the dquot hash tables.
119 */
Nathan Scott77e46352006-09-28 11:03:27 +1000120 udqhash = kmem_zalloc_greedy(&hsize,
Eric Sandeen5995cb72007-08-16 16:49:11 +1000121 XFS_QM_HASHSIZE_LOW * sizeof(xfs_dqhash_t),
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000122 XFS_QM_HASHSIZE_HIGH * sizeof(xfs_dqhash_t));
123 if (!udqhash)
124 goto out;
125
126 gdqhash = kmem_zalloc_large(hsize);
Julia Lawalld67b1b02010-02-06 08:45:15 +0000127 if (!gdqhash)
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000128 goto out_free_udqhash;
129
Nathan Scott77e46352006-09-28 11:03:27 +1000130 hsize /= sizeof(xfs_dqhash_t);
Nathan Scott6b3f6b52005-11-02 15:08:25 +1100131 ndquot = hsize << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Nathan Scott6b3f6b52005-11-02 15:08:25 +1100133 xqm = kmem_zalloc(sizeof(xfs_qm_t), KM_SLEEP);
134 xqm->qm_dqhashmask = hsize - 1;
135 xqm->qm_usr_dqhtable = udqhash;
136 xqm->qm_grp_dqhtable = gdqhash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 ASSERT(xqm->qm_usr_dqhtable != NULL);
138 ASSERT(xqm->qm_grp_dqhtable != NULL);
139
140 for (i = 0; i < hsize; i++) {
141 xfs_qm_list_init(&(xqm->qm_usr_dqhtable[i]), "uxdqh", i);
142 xfs_qm_list_init(&(xqm->qm_grp_dqhtable[i]), "gxdqh", i);
143 }
144
145 /*
146 * Freelist of all dquots of all file systems
147 */
Dave Chinner3a8406f2010-04-13 15:06:52 +1000148 INIT_LIST_HEAD(&xqm->qm_dqfrlist);
149 xqm->qm_dqfrlist_cnt = 0;
150 mutex_init(&xqm->qm_dqfrlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 /*
153 * dquot zone. we register our own low-memory callback.
154 */
155 if (!qm_dqzone) {
156 xqm->qm_dqzone = kmem_zone_init(sizeof(xfs_dquot_t),
157 "xfs_dquots");
158 qm_dqzone = xqm->qm_dqzone;
159 } else
160 xqm->qm_dqzone = qm_dqzone;
161
Rusty Russell8e1f9362007-07-17 04:03:17 -0700162 register_shrinker(&xfs_qm_shaker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 /*
165 * The t_dqinfo portion of transactions.
166 */
167 if (!qm_dqtrxzone) {
168 xqm->qm_dqtrxzone = kmem_zone_init(sizeof(xfs_dquot_acct_t),
169 "xfs_dqtrx");
170 qm_dqtrxzone = xqm->qm_dqtrxzone;
171 } else
172 xqm->qm_dqtrxzone = qm_dqtrxzone;
173
174 atomic_set(&xqm->qm_totaldquots, 0);
175 xqm->qm_dqfree_ratio = XFS_QM_DQFREE_RATIO;
176 xqm->qm_nrefs = 0;
177#ifdef DEBUG
Nathan Scottc2e81432006-01-16 16:21:34 +1100178 mutex_init(&qcheck_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179#endif
180 return xqm;
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000181
182 out_free_udqhash:
183 kmem_free_large(udqhash);
184 out:
185 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
188/*
189 * Destroy the global quota manager when its reference count goes to zero.
190 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000191STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192xfs_qm_destroy(
193 struct xfs_qm *xqm)
194{
Dave Chinner3a8406f2010-04-13 15:06:52 +1000195 struct xfs_dquot *dqp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 int hsize, i;
197
198 ASSERT(xqm != NULL);
199 ASSERT(xqm->qm_nrefs == 0);
Rusty Russell8e1f9362007-07-17 04:03:17 -0700200 unregister_shrinker(&xfs_qm_shaker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 hsize = xqm->qm_dqhashmask + 1;
202 for (i = 0; i < hsize; i++) {
203 xfs_qm_list_destroy(&(xqm->qm_usr_dqhtable[i]));
204 xfs_qm_list_destroy(&(xqm->qm_grp_dqhtable[i]));
205 }
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000206 kmem_free_large(xqm->qm_usr_dqhtable);
207 kmem_free_large(xqm->qm_grp_dqhtable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 xqm->qm_usr_dqhtable = NULL;
209 xqm->qm_grp_dqhtable = NULL;
210 xqm->qm_dqhashmask = 0;
Dave Chinner3a8406f2010-04-13 15:06:52 +1000211
212 /* frlist cleanup */
213 mutex_lock(&xqm->qm_dqfrlist_lock);
214 list_for_each_entry_safe(dqp, n, &xqm->qm_dqfrlist, q_freelist) {
215 xfs_dqlock(dqp);
216#ifdef QUOTADEBUG
217 cmn_err(CE_DEBUG, "FREELIST destroy 0x%p", dqp);
218#endif
219 list_del_init(&dqp->q_freelist);
220 xfs_Gqm->qm_dqfrlist_cnt--;
221 xfs_dqunlock(dqp);
222 xfs_qm_dqdestroy(dqp);
223 }
224 mutex_unlock(&xqm->qm_dqfrlist_lock);
225 mutex_destroy(&xqm->qm_dqfrlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226#ifdef DEBUG
227 mutex_destroy(&qcheck_lock);
228#endif
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000229 kmem_free(xqm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
232/*
233 * Called at mount time to let XQM know that another file system is
234 * starting quotas. This isn't crucial information as the individual mount
235 * structures are pretty independent, but it helps the XQM keep a
236 * global view of what's going on.
237 */
238/* ARGSUSED */
239STATIC int
240xfs_qm_hold_quotafs_ref(
241 struct xfs_mount *mp)
242{
243 /*
244 * Need to lock the xfs_Gqm structure for things like this. For example,
245 * the structure could disappear between the entry to this routine and
246 * a HOLD operation if not locked.
247 */
Christoph Hellwige2494582009-02-09 08:38:39 +0100248 mutex_lock(&xfs_Gqm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000250 if (!xfs_Gqm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 xfs_Gqm = xfs_Gqm_init();
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000252 if (!xfs_Gqm)
253 return ENOMEM;
254 }
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /*
257 * We can keep a list of all filesystems with quotas mounted for
258 * debugging and statistical purposes, but ...
259 * Just take a reference and get out.
260 */
Christoph Hellwige2494582009-02-09 08:38:39 +0100261 xfs_Gqm->qm_nrefs++;
262 mutex_unlock(&xfs_Gqm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 return 0;
265}
266
267
268/*
269 * Release the reference that a filesystem took at mount time,
270 * so that we know when we need to destroy the entire quota manager.
271 */
272/* ARGSUSED */
273STATIC void
274xfs_qm_rele_quotafs_ref(
275 struct xfs_mount *mp)
276{
Dave Chinner3a8406f2010-04-13 15:06:52 +1000277 xfs_dquot_t *dqp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 ASSERT(xfs_Gqm);
280 ASSERT(xfs_Gqm->qm_nrefs > 0);
281
282 /*
283 * Go thru the freelist and destroy all inactive dquots.
284 */
Dave Chinner3a8406f2010-04-13 15:06:52 +1000285 mutex_lock(&xfs_Gqm->qm_dqfrlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Dave Chinner3a8406f2010-04-13 15:06:52 +1000287 list_for_each_entry_safe(dqp, n, &xfs_Gqm->qm_dqfrlist, q_freelist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 xfs_dqlock(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (dqp->dq_flags & XFS_DQ_INACTIVE) {
290 ASSERT(dqp->q_mount == NULL);
291 ASSERT(! XFS_DQ_IS_DIRTY(dqp));
Dave Chinnere6a81f12010-04-13 15:06:51 +1000292 ASSERT(list_empty(&dqp->q_hashlist));
Dave Chinner3a254042010-04-13 15:06:48 +1000293 ASSERT(list_empty(&dqp->q_mplist));
Dave Chinner3a8406f2010-04-13 15:06:52 +1000294 list_del_init(&dqp->q_freelist);
295 xfs_Gqm->qm_dqfrlist_cnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 xfs_dqunlock(dqp);
297 xfs_qm_dqdestroy(dqp);
298 } else {
299 xfs_dqunlock(dqp);
300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
Dave Chinner3a8406f2010-04-13 15:06:52 +1000302 mutex_unlock(&xfs_Gqm->qm_dqfrlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 /*
305 * Destroy the entire XQM. If somebody mounts with quotaon, this'll
306 * be restarted.
307 */
Christoph Hellwige2494582009-02-09 08:38:39 +0100308 mutex_lock(&xfs_Gqm_lock);
309 if (--xfs_Gqm->qm_nrefs == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 xfs_qm_destroy(xfs_Gqm);
311 xfs_Gqm = NULL;
312 }
Christoph Hellwige2494582009-02-09 08:38:39 +0100313 mutex_unlock(&xfs_Gqm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 * Just destroy the quotainfo structure.
318 */
319void
Christoph Hellwig7d095252009-06-08 15:33:32 +0200320xfs_qm_unmount(
321 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Christoph Hellwig7d095252009-06-08 15:33:32 +0200323 if (mp->m_quotainfo) {
324 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL | XFS_QMOPT_UMOUNTING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 xfs_qm_destroy_quotainfo(mp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
329
330/*
331 * This is called from xfs_mountfs to start quotas and initialize all
332 * necessary data structures like quotainfo. This is also responsible for
333 * running a quotacheck as necessary. We are guaranteed that the superblock
334 * is consistently read in at this point.
David Chinner53aa7912008-04-10 12:20:31 +1000335 *
336 * If we fail here, the mount will continue with quota turned off. We don't
337 * need to inidicate success or failure at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 */
David Chinner53aa7912008-04-10 12:20:31 +1000339void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340xfs_qm_mount_quotas(
Christoph Hellwig42490232008-08-13 16:49:32 +1000341 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 int error = 0;
344 uint sbf;
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 /*
347 * If quotas on realtime volumes is not supported, we disable
348 * quotas immediately.
349 */
350 if (mp->m_sb.sb_rextents) {
351 cmn_err(CE_NOTE,
352 "Cannot turn on quotas for realtime filesystem %s",
353 mp->m_fsname);
354 mp->m_qflags = 0;
355 goto write_changes;
356 }
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Nathan Scott155ffd02005-09-02 16:43:48 +1000359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 /*
361 * Allocate the quotainfo structure inside the mount struct, and
362 * create quotainode(s), and change/rev superblock if necessary.
363 */
David Chinner53aa7912008-04-10 12:20:31 +1000364 error = xfs_qm_init_quotainfo(mp);
365 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 /*
367 * We must turn off quotas.
368 */
369 ASSERT(mp->m_quotainfo == NULL);
370 mp->m_qflags = 0;
371 goto write_changes;
372 }
373 /*
374 * If any of the quotas are not consistent, do a quotacheck.
375 */
Christoph Hellwig42490232008-08-13 16:49:32 +1000376 if (XFS_QM_NEED_QUOTACHECK(mp)) {
David Chinner53aa7912008-04-10 12:20:31 +1000377 error = xfs_qm_quotacheck(mp);
378 if (error) {
379 /* Quotacheck failed and disabled quotas. */
380 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000383 /*
384 * If one type of quotas is off, then it will lose its
385 * quotachecked status, since we won't be doing accounting for
386 * that type anymore.
387 */
David Chinner53aa7912008-04-10 12:20:31 +1000388 if (!XFS_IS_UQUOTA_ON(mp))
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000389 mp->m_qflags &= ~XFS_UQUOTA_CHKD;
David Chinner53aa7912008-04-10 12:20:31 +1000390 if (!(XFS_IS_GQUOTA_ON(mp) || XFS_IS_PQUOTA_ON(mp)))
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000391 mp->m_qflags &= ~XFS_OQUOTA_CHKD;
Nathan Scott155ffd02005-09-02 16:43:48 +1000392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 write_changes:
394 /*
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000395 * We actually don't have to acquire the m_sb_lock at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * This can only be called from mount, and that's single threaded. XXX
397 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000398 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 sbf = mp->m_sb.sb_qflags;
400 mp->m_sb.sb_qflags = mp->m_qflags & XFS_MOUNT_QUOTA_ALL;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000401 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 if (sbf != (mp->m_qflags & XFS_MOUNT_QUOTA_ALL)) {
404 if (xfs_qm_write_sb_changes(mp, XFS_SB_QFLAGS)) {
405 /*
406 * We could only have been turning quotas off.
407 * We aren't in very good shape actually because
408 * the incore structures are convinced that quotas are
409 * off, but the on disk superblock doesn't know that !
410 */
411 ASSERT(!(XFS_IS_QUOTA_RUNNING(mp)));
412 xfs_fs_cmn_err(CE_ALERT, mp,
413 "XFS mount_quotas: Superblock update failed!");
414 }
415 }
416
417 if (error) {
418 xfs_fs_cmn_err(CE_WARN, mp,
419 "Failed to initialize disk quotas.");
Christoph Hellwig7d095252009-06-08 15:33:32 +0200420 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200422
423#ifdef QUOTADEBUG
424 if (XFS_IS_QUOTA_ON(mp))
425 xfs_qm_internalqcheck(mp);
426#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
429/*
430 * Called from the vfsops layer.
431 */
Christoph Hellwige57481d2008-12-03 12:20:36 +0100432void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433xfs_qm_unmount_quotas(
434 xfs_mount_t *mp)
435{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /*
437 * Release the dquots that root inode, et al might be holding,
438 * before we flush quotas and blow away the quotainfo structure.
439 */
440 ASSERT(mp->m_rootip);
441 xfs_qm_dqdetach(mp->m_rootip);
442 if (mp->m_rbmip)
443 xfs_qm_dqdetach(mp->m_rbmip);
444 if (mp->m_rsumip)
445 xfs_qm_dqdetach(mp->m_rsumip);
446
447 /*
Christoph Hellwige57481d2008-12-03 12:20:36 +0100448 * Release the quota inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (mp->m_quotainfo) {
Christoph Hellwige57481d2008-12-03 12:20:36 +0100451 if (mp->m_quotainfo->qi_uquotaip) {
452 IRELE(mp->m_quotainfo->qi_uquotaip);
453 mp->m_quotainfo->qi_uquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
Christoph Hellwige57481d2008-12-03 12:20:36 +0100455 if (mp->m_quotainfo->qi_gquotaip) {
456 IRELE(mp->m_quotainfo->qi_gquotaip);
457 mp->m_quotainfo->qi_gquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462/*
463 * Flush all dquots of the given file system to disk. The dquots are
464 * _not_ purged from memory here, just their data written to disk.
465 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000466STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467xfs_qm_dqflush_all(
468 xfs_mount_t *mp,
Dave Chinner20026d92010-02-04 09:48:58 +1100469 int sync_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 int recl;
472 xfs_dquot_t *dqp;
473 int niters;
474 int error;
475
476 if (mp->m_quotainfo == NULL)
Jesper Juhl014c2542006-01-15 02:37:08 +0100477 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 niters = 0;
479again:
Dave Chinner3a254042010-04-13 15:06:48 +1000480 mutex_lock(&mp->m_quotainfo->qi_dqlist_lock);
481 list_for_each_entry(dqp, &mp->m_quotainfo->qi_dqlist, q_mplist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 xfs_dqlock(dqp);
483 if (! XFS_DQ_IS_DIRTY(dqp)) {
484 xfs_dqunlock(dqp);
485 continue;
486 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /* XXX a sentinel would be better */
Dave Chinner3a254042010-04-13 15:06:48 +1000489 recl = mp->m_quotainfo->qi_dqreclaims;
David Chinnere1f49cf2008-08-13 16:41:43 +1000490 if (!xfs_dqflock_nowait(dqp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 /*
492 * If we can't grab the flush lock then check
493 * to see if the dquot has been flushed delayed
494 * write. If so, grab its buffer and send it
495 * out immediately. We'll be able to acquire
496 * the flush lock when the I/O completes.
497 */
498 xfs_qm_dqflock_pushbuf_wait(dqp);
499 }
500 /*
501 * Let go of the mplist lock. We don't want to hold it
502 * across a disk write.
503 */
Dave Chinner3a254042010-04-13 15:06:48 +1000504 mutex_unlock(&mp->m_quotainfo->qi_dqlist_lock);
Dave Chinner20026d92010-02-04 09:48:58 +1100505 error = xfs_qm_dqflush(dqp, sync_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 xfs_dqunlock(dqp);
507 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100508 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Dave Chinner3a254042010-04-13 15:06:48 +1000510 mutex_lock(&mp->m_quotainfo->qi_dqlist_lock);
511 if (recl != mp->m_quotainfo->qi_dqreclaims) {
512 mutex_unlock(&mp->m_quotainfo->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /* XXX restart limit */
514 goto again;
515 }
516 }
517
Dave Chinner3a254042010-04-13 15:06:48 +1000518 mutex_unlock(&mp->m_quotainfo->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 /* return ! busy */
Jesper Juhl014c2542006-01-15 02:37:08 +0100520 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522/*
523 * Release the group dquot pointers the user dquots may be
524 * carrying around as a hint. mplist is locked on entry and exit.
525 */
526STATIC void
527xfs_qm_detach_gdquots(
528 xfs_mount_t *mp)
529{
530 xfs_dquot_t *dqp, *gdqp;
531 int nrecl;
532
533 again:
Dave Chinner3a254042010-04-13 15:06:48 +1000534 ASSERT(mutex_is_locked(&mp->m_quotainfo->qi_dqlist_lock));
535 list_for_each_entry(dqp, &mp->m_quotainfo->qi_dqlist, q_mplist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 xfs_dqlock(dqp);
537 if ((gdqp = dqp->q_gdquot)) {
538 xfs_dqlock(gdqp);
539 dqp->q_gdquot = NULL;
540 }
541 xfs_dqunlock(dqp);
542
543 if (gdqp) {
544 /*
545 * Can't hold the mplist lock across a dqput.
546 * XXXmust convert to marker based iterations here.
547 */
Dave Chinner3a254042010-04-13 15:06:48 +1000548 nrecl = mp->m_quotainfo->qi_dqreclaims;
549 mutex_unlock(&mp->m_quotainfo->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 xfs_qm_dqput(gdqp);
551
Dave Chinner3a254042010-04-13 15:06:48 +1000552 mutex_lock(&mp->m_quotainfo->qi_dqlist_lock);
553 if (nrecl != mp->m_quotainfo->qi_dqreclaims)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 goto again;
555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557}
558
559/*
560 * Go through all the incore dquots of this file system and take them
561 * off the mplist and hashlist, if the dquot type matches the dqtype
562 * parameter. This is used when turning off quota accounting for
563 * users and/or groups, as well as when the filesystem is unmounting.
564 */
565STATIC int
566xfs_qm_dqpurge_int(
567 xfs_mount_t *mp,
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000568 uint flags) /* QUOTAOFF/UMOUNTING/UQUOTA/PQUOTA/GQUOTA */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Dave Chinner3a254042010-04-13 15:06:48 +1000570 xfs_dquot_t *dqp, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 uint dqtype;
572 int nrecl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 int nmisses;
574
575 if (mp->m_quotainfo == NULL)
Jesper Juhl014c2542006-01-15 02:37:08 +0100576 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 dqtype = (flags & XFS_QMOPT_UQUOTA) ? XFS_DQ_USER : 0;
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000579 dqtype |= (flags & XFS_QMOPT_PQUOTA) ? XFS_DQ_PROJ : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 dqtype |= (flags & XFS_QMOPT_GQUOTA) ? XFS_DQ_GROUP : 0;
581
Dave Chinner3a254042010-04-13 15:06:48 +1000582 mutex_lock(&mp->m_quotainfo->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 /*
585 * In the first pass through all incore dquots of this filesystem,
586 * we release the group dquot pointers the user dquots may be
587 * carrying around as a hint. We need to do this irrespective of
588 * what's being turned off.
589 */
590 xfs_qm_detach_gdquots(mp);
591
592 again:
593 nmisses = 0;
Dave Chinner3a254042010-04-13 15:06:48 +1000594 ASSERT(mutex_is_locked(&mp->m_quotainfo->qi_dqlist_lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 /*
596 * Try to get rid of all of the unwanted dquots. The idea is to
597 * get them off mplist and hashlist, but leave them on freelist.
598 */
Dave Chinner3a254042010-04-13 15:06:48 +1000599 list_for_each_entry_safe(dqp, n, &mp->m_quotainfo->qi_dqlist, q_mplist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 /*
601 * It's OK to look at the type without taking dqlock here.
602 * We're holding the mplist lock here, and that's needed for
603 * a dqreclaim.
604 */
Dave Chinner3a254042010-04-13 15:06:48 +1000605 if ((dqp->dq_flags & dqtype) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Christoph Hellwigc9a192d2009-02-09 08:47:22 +0100608 if (!mutex_trylock(&dqp->q_hash->qh_lock)) {
Dave Chinner3a254042010-04-13 15:06:48 +1000609 nrecl = mp->m_quotainfo->qi_dqreclaims;
610 mutex_unlock(&mp->m_quotainfo->qi_dqlist_lock);
Christoph Hellwigc9a192d2009-02-09 08:47:22 +0100611 mutex_lock(&dqp->q_hash->qh_lock);
Dave Chinner3a254042010-04-13 15:06:48 +1000612 mutex_lock(&mp->m_quotainfo->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 /*
615 * XXXTheoretically, we can get into a very long
616 * ping pong game here.
617 * No one can be adding dquots to the mplist at
618 * this point, but somebody might be taking things off.
619 */
Dave Chinner3a254042010-04-13 15:06:48 +1000620 if (nrecl != mp->m_quotainfo->qi_dqreclaims) {
Christoph Hellwigc9a192d2009-02-09 08:47:22 +0100621 mutex_unlock(&dqp->q_hash->qh_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 goto again;
623 }
624 }
625
626 /*
627 * Take the dquot off the mplist and hashlist. It may remain on
628 * freelist in INACTIVE state.
629 */
Denys Vlasenko4f0e8a92008-05-19 16:34:04 +1000630 nmisses += xfs_qm_dqpurge(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
Dave Chinner3a254042010-04-13 15:06:48 +1000632 mutex_unlock(&mp->m_quotainfo->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return nmisses;
634}
635
636int
637xfs_qm_dqpurge_all(
638 xfs_mount_t *mp,
639 uint flags)
640{
641 int ndquots;
642
643 /*
644 * Purge the dquot cache.
645 * None of the dquots should really be busy at this point.
646 */
647 if (mp->m_quotainfo) {
648 while ((ndquots = xfs_qm_dqpurge_int(mp, flags))) {
649 delay(ndquots * 10);
650 }
651 }
652 return 0;
653}
654
655STATIC int
656xfs_qm_dqattach_one(
657 xfs_inode_t *ip,
658 xfs_dqid_t id,
659 uint type,
660 uint doalloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 xfs_dquot_t *udqhint, /* hint */
662 xfs_dquot_t **IO_idqpp)
663{
664 xfs_dquot_t *dqp;
665 int error;
666
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000667 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 error = 0;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 /*
671 * See if we already have it in the inode itself. IO_idqpp is
672 * &i_udquot or &i_gdquot. This made the code look weird, but
673 * made the logic a lot simpler.
674 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100675 dqp = *IO_idqpp;
676 if (dqp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000677 trace_xfs_dqattach_found(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100678 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
680
681 /*
682 * udqhint is the i_udquot field in inode, and is non-NULL only
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000683 * when the type arg is group/project. Its purpose is to save a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 * lookup by dqid (xfs_qm_dqget) by caching a group dquot inside
685 * the user dquot.
686 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100687 if (udqhint) {
688 ASSERT(type == XFS_DQ_GROUP || type == XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 xfs_dqlock(udqhint);
690
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100691 /*
692 * No need to take dqlock to look at the id.
693 *
694 * The ID can't change until it gets reclaimed, and it won't
695 * be reclaimed as long as we have a ref from inode and we
696 * hold the ilock.
697 */
698 dqp = udqhint->q_gdquot;
699 if (dqp && be32_to_cpu(dqp->q_core.d_id) == id) {
700 xfs_dqlock(dqp);
701 XFS_DQHOLD(dqp);
702 ASSERT(*IO_idqpp == NULL);
703 *IO_idqpp = dqp;
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 xfs_dqunlock(dqp);
706 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100707 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100709
710 /*
711 * We can't hold a dquot lock when we call the dqget code.
712 * We'll deadlock in no time, because of (not conforming to)
713 * lock ordering - the inodelock comes before any dquot lock,
714 * and we may drop and reacquire the ilock in xfs_qm_dqget().
715 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100717 }
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /*
720 * Find the dquot from somewhere. This bumps the
721 * reference count of dquot and returns it locked.
722 * This can return ENOENT if dquot didn't exist on
723 * disk and we didn't ask it to allocate;
724 * ESRCH if quotas got turned off suddenly.
725 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100726 error = xfs_qm_dqget(ip->i_mount, ip, id, type, XFS_QMOPT_DOWARN, &dqp);
727 if (error)
728 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000730 trace_xfs_dqattach_get(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 /*
733 * dqget may have dropped and re-acquired the ilock, but it guarantees
734 * that the dquot returned is the one that should go in the inode.
735 */
736 *IO_idqpp = dqp;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100737 xfs_dqunlock(dqp);
738 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
741
742/*
743 * Given a udquot and gdquot, attach a ptr to the group dquot in the
744 * udquot as a hint for future lookups. The idea sounds simple, but the
745 * execution isn't, because the udquot might have a group dquot attached
Nathan Scottc41564b2006-03-29 08:55:14 +1000746 * already and getting rid of that gets us into lock ordering constraints.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 * The process is complicated more by the fact that the dquots may or may not
748 * be locked on entry.
749 */
750STATIC void
751xfs_qm_dqattach_grouphint(
752 xfs_dquot_t *udq,
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100753 xfs_dquot_t *gdq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
755 xfs_dquot_t *tmp;
756
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100757 xfs_dqlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 if ((tmp = udq->q_gdquot)) {
760 if (tmp == gdq) {
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100761 xfs_dqunlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return;
763 }
764
765 udq->q_gdquot = NULL;
766 /*
767 * We can't keep any dqlocks when calling dqrele,
768 * because the freelist lock comes before dqlocks.
769 */
770 xfs_dqunlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 /*
772 * we took a hard reference once upon a time in dqget,
773 * so give it back when the udquot no longer points at it
774 * dqput() does the unlocking of the dquot.
775 */
776 xfs_qm_dqrele(tmp);
777
778 xfs_dqlock(udq);
779 xfs_dqlock(gdq);
780
781 } else {
782 ASSERT(XFS_DQ_IS_LOCKED(udq));
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100783 xfs_dqlock(gdq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
785
786 ASSERT(XFS_DQ_IS_LOCKED(udq));
787 ASSERT(XFS_DQ_IS_LOCKED(gdq));
788 /*
789 * Somebody could have attached a gdquot here,
790 * when we dropped the uqlock. If so, just do nothing.
791 */
792 if (udq->q_gdquot == NULL) {
793 XFS_DQHOLD(gdq);
794 udq->q_gdquot = gdq;
795 }
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100796
797 xfs_dqunlock(gdq);
798 xfs_dqunlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
801
802/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000803 * Given a locked inode, attach dquot(s) to it, taking U/G/P-QUOTAON
804 * into account.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 * If XFS_QMOPT_DQALLOC, the dquot(s) will be allocated if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 * Inode may get unlocked and relocked in here, and the caller must deal with
807 * the consequences.
808 */
809int
Christoph Hellwig7d095252009-06-08 15:33:32 +0200810xfs_qm_dqattach_locked(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 xfs_inode_t *ip,
812 uint flags)
813{
814 xfs_mount_t *mp = ip->i_mount;
815 uint nquotas = 0;
816 int error = 0;
817
Christoph Hellwig7d095252009-06-08 15:33:32 +0200818 if (!XFS_IS_QUOTA_RUNNING(mp) ||
819 !XFS_IS_QUOTA_ON(mp) ||
820 !XFS_NOT_DQATTACHED(mp, ip) ||
821 ip->i_ino == mp->m_sb.sb_uquotino ||
822 ip->i_ino == mp->m_sb.sb_gquotino)
Jesper Juhl014c2542006-01-15 02:37:08 +0100823 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Christoph Hellwig7d095252009-06-08 15:33:32 +0200825 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 if (XFS_IS_UQUOTA_ON(mp)) {
828 error = xfs_qm_dqattach_one(ip, ip->i_d.di_uid, XFS_DQ_USER,
829 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 NULL, &ip->i_udquot);
831 if (error)
832 goto done;
833 nquotas++;
834 }
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000835
836 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000837 if (XFS_IS_OQUOTA_ON(mp)) {
838 error = XFS_IS_GQUOTA_ON(mp) ?
839 xfs_qm_dqattach_one(ip, ip->i_d.di_gid, XFS_DQ_GROUP,
840 flags & XFS_QMOPT_DQALLOC,
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000841 ip->i_udquot, &ip->i_gdquot) :
842 xfs_qm_dqattach_one(ip, ip->i_d.di_projid, XFS_DQ_PROJ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 ip->i_udquot, &ip->i_gdquot);
845 /*
846 * Don't worry about the udquot that we may have
847 * attached above. It'll get detached, if not already.
848 */
849 if (error)
850 goto done;
851 nquotas++;
852 }
853
854 /*
855 * Attach this group quota to the user quota as a hint.
856 * This WON'T, in general, result in a thrash.
857 */
858 if (nquotas == 2) {
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000859 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 ASSERT(ip->i_udquot);
861 ASSERT(ip->i_gdquot);
862
863 /*
864 * We may or may not have the i_udquot locked at this point,
865 * but this check is OK since we don't depend on the i_gdquot to
866 * be accurate 100% all the time. It is just a hint, and this
867 * will succeed in general.
868 */
869 if (ip->i_udquot->q_gdquot == ip->i_gdquot)
870 goto done;
871 /*
872 * Attach i_gdquot to the gdquot hint inside the i_udquot.
873 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100874 xfs_qm_dqattach_grouphint(ip->i_udquot, ip->i_gdquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
876
Christoph Hellwig7d095252009-06-08 15:33:32 +0200877 done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878#ifdef QUOTADEBUG
879 if (! error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (XFS_IS_UQUOTA_ON(mp))
881 ASSERT(ip->i_udquot);
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000882 if (XFS_IS_OQUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 ASSERT(ip->i_gdquot);
884 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200885 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886#endif
Christoph Hellwig7d095252009-06-08 15:33:32 +0200887 return error;
888}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Christoph Hellwig7d095252009-06-08 15:33:32 +0200890int
891xfs_qm_dqattach(
892 struct xfs_inode *ip,
893 uint flags)
894{
895 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Christoph Hellwig7d095252009-06-08 15:33:32 +0200897 xfs_ilock(ip, XFS_ILOCK_EXCL);
898 error = xfs_qm_dqattach_locked(ip, flags);
899 xfs_iunlock(ip, XFS_ILOCK_EXCL);
900
Jesper Juhl014c2542006-01-15 02:37:08 +0100901 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902}
903
904/*
905 * Release dquots (and their references) if any.
906 * The inode should be locked EXCL except when this's called by
907 * xfs_ireclaim.
908 */
909void
910xfs_qm_dqdetach(
911 xfs_inode_t *ip)
912{
913 if (!(ip->i_udquot || ip->i_gdquot))
914 return;
915
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000916 trace_xfs_dquot_dqdetach(ip);
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 ASSERT(ip->i_ino != ip->i_mount->m_sb.sb_uquotino);
919 ASSERT(ip->i_ino != ip->i_mount->m_sb.sb_gquotino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (ip->i_udquot) {
921 xfs_qm_dqrele(ip->i_udquot);
922 ip->i_udquot = NULL;
923 }
924 if (ip->i_gdquot) {
925 xfs_qm_dqrele(ip->i_gdquot);
926 ip->i_gdquot = NULL;
927 }
928}
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930int
931xfs_qm_sync(
932 xfs_mount_t *mp,
Christoph Hellwigb09cc772007-08-30 17:19:57 +1000933 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
935 int recl, restarts;
936 xfs_dquot_t *dqp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 int error;
938
Christoph Hellwig7d095252009-06-08 15:33:32 +0200939 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Donald Douwsmad7577622007-11-23 16:27:42 +1100940 return 0;
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 restarts = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 again:
Dave Chinner3a254042010-04-13 15:06:48 +1000945 mutex_lock(&mp->m_quotainfo->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 /*
947 * dqpurge_all() also takes the mplist lock and iterate thru all dquots
948 * in quotaoff. However, if the QUOTA_ACTIVE bits are not cleared
949 * when we have the mplist lock, we know that dquots will be consistent
950 * as long as we have it locked.
951 */
Dave Chinner3a254042010-04-13 15:06:48 +1000952 if (!XFS_IS_QUOTA_ON(mp)) {
953 mutex_unlock(&mp->m_quotainfo->qi_dqlist_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +0100954 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
Dave Chinner3a254042010-04-13 15:06:48 +1000956 ASSERT(mutex_is_locked(&mp->m_quotainfo->qi_dqlist_lock));
957 list_for_each_entry(dqp, &mp->m_quotainfo->qi_dqlist, q_mplist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 /*
959 * If this is vfs_sync calling, then skip the dquots that
960 * don't 'seem' to be dirty. ie. don't acquire dqlock.
961 * This is very similar to what xfs_sync does with inodes.
962 */
Christoph Hellwig8b5403a2009-06-08 15:37:16 +0200963 if (flags & SYNC_TRYLOCK) {
964 if (!XFS_DQ_IS_DIRTY(dqp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 continue;
Christoph Hellwig8b5403a2009-06-08 15:37:16 +0200966 if (!xfs_qm_dqlock_nowait(dqp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 continue;
968 } else {
969 xfs_dqlock(dqp);
970 }
971
972 /*
973 * Now, find out for sure if this dquot is dirty or not.
974 */
975 if (! XFS_DQ_IS_DIRTY(dqp)) {
976 xfs_dqunlock(dqp);
977 continue;
978 }
979
980 /* XXX a sentinel would be better */
Dave Chinner3a254042010-04-13 15:06:48 +1000981 recl = mp->m_quotainfo->qi_dqreclaims;
David Chinnere1f49cf2008-08-13 16:41:43 +1000982 if (!xfs_dqflock_nowait(dqp)) {
Christoph Hellwig8b5403a2009-06-08 15:37:16 +0200983 if (flags & SYNC_TRYLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 xfs_dqunlock(dqp);
985 continue;
986 }
987 /*
988 * If we can't grab the flush lock then if the caller
Nathan Scottc41564b2006-03-29 08:55:14 +1000989 * really wanted us to give this our best shot, so
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 * see if we can give a push to the buffer before we wait
991 * on the flush lock. At this point, we know that
Nathan Scottc41564b2006-03-29 08:55:14 +1000992 * even though the dquot is being flushed,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 * it has (new) dirty data.
994 */
995 xfs_qm_dqflock_pushbuf_wait(dqp);
996 }
997 /*
998 * Let go of the mplist lock. We don't want to hold it
999 * across a disk write
1000 */
Dave Chinner3a254042010-04-13 15:06:48 +10001001 mutex_unlock(&mp->m_quotainfo->qi_dqlist_lock);
Dave Chinner20026d92010-02-04 09:48:58 +11001002 error = xfs_qm_dqflush(dqp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 xfs_dqunlock(dqp);
1004 if (error && XFS_FORCED_SHUTDOWN(mp))
Jesper Juhl014c2542006-01-15 02:37:08 +01001005 return 0; /* Need to prevent umount failure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 else if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001007 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Dave Chinner3a254042010-04-13 15:06:48 +10001009 mutex_lock(&mp->m_quotainfo->qi_dqlist_lock);
1010 if (recl != mp->m_quotainfo->qi_dqreclaims) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (++restarts >= XFS_QM_SYNC_MAX_RESTARTS)
1012 break;
1013
Dave Chinner3a254042010-04-13 15:06:48 +10001014 mutex_unlock(&mp->m_quotainfo->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 goto again;
1016 }
1017 }
1018
Dave Chinner3a254042010-04-13 15:06:48 +10001019 mutex_unlock(&mp->m_quotainfo->qi_dqlist_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +01001020 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
Christoph Hellwiga4edd1d2009-01-19 02:03:11 +01001023/*
1024 * The hash chains and the mplist use the same xfs_dqhash structure as
1025 * their list head, but we can take the mplist qh_lock and one of the
1026 * hash qh_locks at the same time without any problem as they aren't
1027 * related.
1028 */
1029static struct lock_class_key xfs_quota_mplist_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031/*
1032 * This initializes all the quota information that's kept in the
1033 * mount structure
1034 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001035STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036xfs_qm_init_quotainfo(
1037 xfs_mount_t *mp)
1038{
1039 xfs_quotainfo_t *qinf;
1040 int error;
1041 xfs_dquot_t *dqp;
1042
1043 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1044
1045 /*
1046 * Tell XQM that we exist as soon as possible.
1047 */
1048 if ((error = xfs_qm_hold_quotafs_ref(mp))) {
Jesper Juhl014c2542006-01-15 02:37:08 +01001049 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051
1052 qinf = mp->m_quotainfo = kmem_zalloc(sizeof(xfs_quotainfo_t), KM_SLEEP);
1053
1054 /*
1055 * See if quotainodes are setup, and if not, allocate them,
1056 * and change the superblock accordingly.
1057 */
1058 if ((error = xfs_qm_init_quotainos(mp))) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001059 kmem_free(qinf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 mp->m_quotainfo = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +01001061 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063
Dave Chinner3a254042010-04-13 15:06:48 +10001064 INIT_LIST_HEAD(&qinf->qi_dqlist);
1065 mutex_init(&qinf->qi_dqlist_lock);
1066 lockdep_set_class(&qinf->qi_dqlist_lock, &xfs_quota_mplist_class);
Christoph Hellwiga4edd1d2009-01-19 02:03:11 +01001067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 qinf->qi_dqreclaims = 0;
1069
1070 /* mutex used to serialize quotaoffs */
Jes Sorensen794ee1b2006-01-09 15:59:21 -08001071 mutex_init(&qinf->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 /* Precalc some constants */
1074 qinf->qi_dqchunklen = XFS_FSB_TO_BB(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
1075 ASSERT(qinf->qi_dqchunklen);
1076 qinf->qi_dqperchunk = BBTOB(qinf->qi_dqchunklen);
1077 do_div(qinf->qi_dqperchunk, sizeof(xfs_dqblk_t));
1078
1079 mp->m_qflags |= (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_CHKD);
1080
1081 /*
1082 * We try to get the limits from the superuser's limits fields.
1083 * This is quite hacky, but it is standard quota practice.
1084 * We look at the USR dquot with id == 0 first, but if user quotas
1085 * are not enabled we goto the GRP dquot with id == 0.
1086 * We don't really care to keep separate default limits for user
1087 * and group quotas, at least not at this point.
1088 */
1089 error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)0,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001090 XFS_IS_UQUOTA_RUNNING(mp) ? XFS_DQ_USER :
1091 (XFS_IS_GQUOTA_RUNNING(mp) ? XFS_DQ_GROUP :
1092 XFS_DQ_PROJ),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 XFS_QMOPT_DQSUSER|XFS_QMOPT_DOWARN,
1094 &dqp);
1095 if (! error) {
1096 xfs_disk_dquot_t *ddqp = &dqp->q_core;
1097
1098 /*
1099 * The warnings and timers set the grace period given to
1100 * a user or group before he or she can not perform any
1101 * more writing. If it is zero, a default is used.
1102 */
Christoph Hellwig1149d962005-11-02 15:01:12 +11001103 qinf->qi_btimelimit = ddqp->d_btimer ?
1104 be32_to_cpu(ddqp->d_btimer) : XFS_QM_BTIMELIMIT;
1105 qinf->qi_itimelimit = ddqp->d_itimer ?
1106 be32_to_cpu(ddqp->d_itimer) : XFS_QM_ITIMELIMIT;
1107 qinf->qi_rtbtimelimit = ddqp->d_rtbtimer ?
1108 be32_to_cpu(ddqp->d_rtbtimer) : XFS_QM_RTBTIMELIMIT;
1109 qinf->qi_bwarnlimit = ddqp->d_bwarns ?
1110 be16_to_cpu(ddqp->d_bwarns) : XFS_QM_BWARNLIMIT;
1111 qinf->qi_iwarnlimit = ddqp->d_iwarns ?
1112 be16_to_cpu(ddqp->d_iwarns) : XFS_QM_IWARNLIMIT;
1113 qinf->qi_rtbwarnlimit = ddqp->d_rtbwarns ?
1114 be16_to_cpu(ddqp->d_rtbwarns) : XFS_QM_RTBWARNLIMIT;
1115 qinf->qi_bhardlimit = be64_to_cpu(ddqp->d_blk_hardlimit);
1116 qinf->qi_bsoftlimit = be64_to_cpu(ddqp->d_blk_softlimit);
1117 qinf->qi_ihardlimit = be64_to_cpu(ddqp->d_ino_hardlimit);
1118 qinf->qi_isoftlimit = be64_to_cpu(ddqp->d_ino_softlimit);
1119 qinf->qi_rtbhardlimit = be64_to_cpu(ddqp->d_rtb_hardlimit);
1120 qinf->qi_rtbsoftlimit = be64_to_cpu(ddqp->d_rtb_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 /*
1123 * We sent the XFS_QMOPT_DQSUSER flag to dqget because
1124 * we don't want this dquot cached. We haven't done a
1125 * quotacheck yet, and quotacheck doesn't like incore dquots.
1126 */
1127 xfs_qm_dqdestroy(dqp);
1128 } else {
1129 qinf->qi_btimelimit = XFS_QM_BTIMELIMIT;
1130 qinf->qi_itimelimit = XFS_QM_ITIMELIMIT;
1131 qinf->qi_rtbtimelimit = XFS_QM_RTBTIMELIMIT;
1132 qinf->qi_bwarnlimit = XFS_QM_BWARNLIMIT;
1133 qinf->qi_iwarnlimit = XFS_QM_IWARNLIMIT;
Nathan Scott06d10dd2005-06-21 15:48:47 +10001134 qinf->qi_rtbwarnlimit = XFS_QM_RTBWARNLIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
1136
Jesper Juhl014c2542006-01-15 02:37:08 +01001137 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
1140
1141/*
1142 * Gets called when unmounting a filesystem or when all quotas get
1143 * turned off.
1144 * This purges the quota inodes, destroys locks and frees itself.
1145 */
1146void
1147xfs_qm_destroy_quotainfo(
1148 xfs_mount_t *mp)
1149{
1150 xfs_quotainfo_t *qi;
1151
1152 qi = mp->m_quotainfo;
1153 ASSERT(qi != NULL);
1154 ASSERT(xfs_Gqm != NULL);
1155
1156 /*
1157 * Release the reference that XQM kept, so that we know
1158 * when the XQM structure should be freed. We cannot assume
1159 * that xfs_Gqm is non-null after this point.
1160 */
1161 xfs_qm_rele_quotafs_ref(mp);
1162
Dave Chinner3a254042010-04-13 15:06:48 +10001163 ASSERT(list_empty(&qi->qi_dqlist));
1164 mutex_destroy(&qi->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166 if (qi->qi_uquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +10001167 IRELE(qi->qi_uquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 qi->qi_uquotaip = NULL; /* paranoia */
1169 }
1170 if (qi->qi_gquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +10001171 IRELE(qi->qi_gquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 qi->qi_gquotaip = NULL;
1173 }
1174 mutex_destroy(&qi->qi_quotaofflock);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001175 kmem_free(qi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 mp->m_quotainfo = NULL;
1177}
1178
1179
1180
1181/* ------------------- PRIVATE STATIC FUNCTIONS ----------------------- */
1182
1183/* ARGSUSED */
1184STATIC void
1185xfs_qm_list_init(
1186 xfs_dqlist_t *list,
1187 char *str,
1188 int n)
1189{
Jes Sorensen794ee1b2006-01-09 15:59:21 -08001190 mutex_init(&list->qh_lock);
Dave Chinnere6a81f12010-04-13 15:06:51 +10001191 INIT_LIST_HEAD(&list->qh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 list->qh_version = 0;
1193 list->qh_nelems = 0;
1194}
1195
1196STATIC void
1197xfs_qm_list_destroy(
1198 xfs_dqlist_t *list)
1199{
1200 mutex_destroy(&(list->qh_lock));
1201}
1202
1203
1204/*
1205 * Stripped down version of dqattach. This doesn't attach, or even look at the
1206 * dquots attached to the inode. The rationale is that there won't be any
1207 * attached at the time this is called from quotacheck.
1208 */
1209STATIC int
1210xfs_qm_dqget_noattach(
1211 xfs_inode_t *ip,
1212 xfs_dquot_t **O_udqpp,
1213 xfs_dquot_t **O_gdqpp)
1214{
1215 int error;
1216 xfs_mount_t *mp;
1217 xfs_dquot_t *udqp, *gdqp;
1218
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001219 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 mp = ip->i_mount;
1221 udqp = NULL;
1222 gdqp = NULL;
1223
1224 if (XFS_IS_UQUOTA_ON(mp)) {
1225 ASSERT(ip->i_udquot == NULL);
1226 /*
1227 * We want the dquot allocated if it doesn't exist.
1228 */
1229 if ((error = xfs_qm_dqget(mp, ip, ip->i_d.di_uid, XFS_DQ_USER,
1230 XFS_QMOPT_DQALLOC | XFS_QMOPT_DOWARN,
1231 &udqp))) {
1232 /*
1233 * Shouldn't be able to turn off quotas here.
1234 */
1235 ASSERT(error != ESRCH);
1236 ASSERT(error != ENOENT);
Jesper Juhl014c2542006-01-15 02:37:08 +01001237 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239 ASSERT(udqp);
1240 }
1241
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001242 if (XFS_IS_OQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 ASSERT(ip->i_gdquot == NULL);
1244 if (udqp)
1245 xfs_dqunlock(udqp);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001246 error = XFS_IS_GQUOTA_ON(mp) ?
1247 xfs_qm_dqget(mp, ip,
1248 ip->i_d.di_gid, XFS_DQ_GROUP,
1249 XFS_QMOPT_DQALLOC|XFS_QMOPT_DOWARN,
1250 &gdqp) :
1251 xfs_qm_dqget(mp, ip,
1252 ip->i_d.di_projid, XFS_DQ_PROJ,
1253 XFS_QMOPT_DQALLOC|XFS_QMOPT_DOWARN,
1254 &gdqp);
1255 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (udqp)
1257 xfs_qm_dqrele(udqp);
1258 ASSERT(error != ESRCH);
1259 ASSERT(error != ENOENT);
Jesper Juhl014c2542006-01-15 02:37:08 +01001260 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
1262 ASSERT(gdqp);
1263
1264 /* Reacquire the locks in the right order */
1265 if (udqp) {
1266 if (! xfs_qm_dqlock_nowait(udqp)) {
1267 xfs_dqunlock(gdqp);
1268 xfs_dqlock(udqp);
1269 xfs_dqlock(gdqp);
1270 }
1271 }
1272 }
1273
1274 *O_udqpp = udqp;
1275 *O_gdqpp = gdqp;
1276
1277#ifdef QUOTADEBUG
1278 if (udqp) ASSERT(XFS_DQ_IS_LOCKED(udqp));
1279 if (gdqp) ASSERT(XFS_DQ_IS_LOCKED(gdqp));
1280#endif
Jesper Juhl014c2542006-01-15 02:37:08 +01001281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
1284/*
1285 * Create an inode and return with a reference already taken, but unlocked
1286 * This is how we create quota inodes
1287 */
1288STATIC int
1289xfs_qm_qino_alloc(
1290 xfs_mount_t *mp,
1291 xfs_inode_t **ip,
1292 __int64_t sbfields,
1293 uint flags)
1294{
1295 xfs_trans_t *tp;
1296 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 int committed;
1298
Nathan Scott061f7202006-01-11 15:27:50 +11001299 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QINOCREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if ((error = xfs_trans_reserve(tp,
1301 XFS_QM_QINOCREATE_SPACE_RES(mp),
1302 XFS_CREATE_LOG_RES(mp), 0,
1303 XFS_TRANS_PERM_LOG_RES,
1304 XFS_CREATE_LOG_COUNT))) {
1305 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001306 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
David Chinnerb11f94d2007-07-11 11:09:33 +10001309 if ((error = xfs_dir_ialloc(&tp, NULL, S_IFREG, 1, 0,
Nathan Scottdae81d42006-02-28 12:30:13 +11001310 &xfs_zerocr, 0, 1, ip, &committed))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES |
1312 XFS_TRANS_ABORT);
Jesper Juhl014c2542006-01-15 02:37:08 +01001313 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 }
1315
1316 /*
1317 * Keep an extra reference to this quota inode. This inode is
1318 * locked exclusively and joined to the transaction already.
1319 */
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001320 ASSERT(xfs_isilocked(*ip, XFS_ILOCK_EXCL));
Christoph Hellwig26cc0022008-07-18 17:12:43 +10001321 IHOLD(*ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 /*
1324 * Make the changes in the superblock, and log those too.
1325 * sbfields arg may contain fields other than *QUOTINO;
1326 * VERSIONNUM for example.
1327 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001328 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (flags & XFS_QMOPT_SBVERSION) {
1330#if defined(DEBUG) && defined(XFS_LOUD_RECOVERY)
1331 unsigned oldv = mp->m_sb.sb_versionnum;
1332#endif
Eric Sandeen62118702008-03-06 13:44:28 +11001333 ASSERT(!xfs_sb_version_hasquota(&mp->m_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 ASSERT((sbfields & (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
1335 XFS_SB_GQUOTINO | XFS_SB_QFLAGS)) ==
1336 (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
1337 XFS_SB_GQUOTINO | XFS_SB_QFLAGS));
1338
Eric Sandeen62118702008-03-06 13:44:28 +11001339 xfs_sb_version_addquota(&mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 mp->m_sb.sb_uquotino = NULLFSINO;
1341 mp->m_sb.sb_gquotino = NULLFSINO;
1342
1343 /* qflags will get updated _after_ quotacheck */
1344 mp->m_sb.sb_qflags = 0;
1345#if defined(DEBUG) && defined(XFS_LOUD_RECOVERY)
1346 cmn_err(CE_NOTE,
1347 "Old superblock version %x, converting to %x.",
1348 oldv, mp->m_sb.sb_versionnum);
1349#endif
1350 }
1351 if (flags & XFS_QMOPT_UQUOTA)
1352 mp->m_sb.sb_uquotino = (*ip)->i_ino;
1353 else
1354 mp->m_sb.sb_gquotino = (*ip)->i_ino;
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001355 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 xfs_mod_sb(tp, sbfields);
1357
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001358 if ((error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 xfs_fs_cmn_err(CE_ALERT, mp, "XFS qino_alloc failed!");
Jesper Juhl014c2542006-01-15 02:37:08 +01001360 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001362 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363}
1364
1365
David Chinner5b139732008-04-10 12:20:10 +10001366STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367xfs_qm_reset_dqcounts(
1368 xfs_mount_t *mp,
1369 xfs_buf_t *bp,
1370 xfs_dqid_t id,
1371 uint type)
1372{
1373 xfs_disk_dquot_t *ddq;
1374 int j;
1375
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001376 trace_xfs_reset_dqcounts(bp, _RET_IP_);
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 /*
1379 * Reset all counters and timers. They'll be
1380 * started afresh by xfs_qm_quotacheck.
1381 */
1382#ifdef DEBUG
1383 j = XFS_FSB_TO_B(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
1384 do_div(j, sizeof(xfs_dqblk_t));
1385 ASSERT(XFS_QM_DQPERBLK(mp) == j);
1386#endif
1387 ddq = (xfs_disk_dquot_t *)XFS_BUF_PTR(bp);
1388 for (j = 0; j < XFS_QM_DQPERBLK(mp); j++) {
1389 /*
1390 * Do a sanity check, and if needed, repair the dqblk. Don't
1391 * output any warnings because it's perfectly possible to
Nathan Scottc41564b2006-03-29 08:55:14 +10001392 * find uninitialised dquot blks. See comment in xfs_qm_dqcheck.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 */
1394 (void) xfs_qm_dqcheck(ddq, id+j, type, XFS_QMOPT_DQREPAIR,
1395 "xfs_quotacheck");
Christoph Hellwig1149d962005-11-02 15:01:12 +11001396 ddq->d_bcount = 0;
1397 ddq->d_icount = 0;
1398 ddq->d_rtbcount = 0;
1399 ddq->d_btimer = 0;
1400 ddq->d_itimer = 0;
1401 ddq->d_rtbtimer = 0;
1402 ddq->d_bwarns = 0;
1403 ddq->d_iwarns = 0;
1404 ddq->d_rtbwarns = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 ddq = (xfs_disk_dquot_t *) ((xfs_dqblk_t *)ddq + 1);
1406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407}
1408
1409STATIC int
1410xfs_qm_dqiter_bufs(
1411 xfs_mount_t *mp,
1412 xfs_dqid_t firstid,
1413 xfs_fsblock_t bno,
1414 xfs_filblks_t blkcnt,
1415 uint flags)
1416{
1417 xfs_buf_t *bp;
1418 int error;
1419 int notcommitted;
1420 int incr;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001421 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 ASSERT(blkcnt > 0);
1424 notcommitted = 0;
1425 incr = (blkcnt > XFS_QM_MAX_DQCLUSTER_LOGSZ) ?
1426 XFS_QM_MAX_DQCLUSTER_LOGSZ : blkcnt;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001427 type = flags & XFS_QMOPT_UQUOTA ? XFS_DQ_USER :
1428 (flags & XFS_QMOPT_PQUOTA ? XFS_DQ_PROJ : XFS_DQ_GROUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 error = 0;
1430
1431 /*
1432 * Blkcnt arg can be a very big number, and might even be
1433 * larger than the log itself. So, we have to break it up into
1434 * manageable-sized transactions.
1435 * Note that we don't start a permanent transaction here; we might
1436 * not be able to get a log reservation for the whole thing up front,
1437 * and we don't really care to either, because we just discard
1438 * everything if we were to crash in the middle of this loop.
1439 */
1440 while (blkcnt--) {
1441 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
1442 XFS_FSB_TO_DADDR(mp, bno),
1443 (int)XFS_QI_DQCHUNKLEN(mp), 0, &bp);
1444 if (error)
1445 break;
1446
David Chinner5b139732008-04-10 12:20:10 +10001447 xfs_qm_reset_dqcounts(mp, bp, firstid, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 xfs_bdwrite(mp, bp);
1449 /*
1450 * goto the next block.
1451 */
1452 bno++;
1453 firstid += XFS_QM_DQPERBLK(mp);
1454 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001455 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456}
1457
1458/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001459 * Iterate over all allocated USR/GRP/PRJ dquots in the system, calling a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 * caller supplied function for every chunk of dquots that we find.
1461 */
1462STATIC int
1463xfs_qm_dqiterate(
1464 xfs_mount_t *mp,
1465 xfs_inode_t *qip,
1466 uint flags)
1467{
1468 xfs_bmbt_irec_t *map;
1469 int i, nmaps; /* number of map entries */
1470 int error; /* return value */
1471 xfs_fileoff_t lblkno;
1472 xfs_filblks_t maxlblkcnt;
1473 xfs_dqid_t firstid;
1474 xfs_fsblock_t rablkno;
1475 xfs_filblks_t rablkcnt;
1476
1477 error = 0;
1478 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001479 * This looks racy, but we can't keep an inode lock across a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 * trans_reserve. But, this gets called during quotacheck, and that
1481 * happens only at mount time which is single threaded.
1482 */
1483 if (qip->i_d.di_nblocks == 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01001484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 map = kmem_alloc(XFS_DQITER_MAP_SIZE * sizeof(*map), KM_SLEEP);
1487
1488 lblkno = 0;
1489 maxlblkcnt = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
1490 do {
1491 nmaps = XFS_DQITER_MAP_SIZE;
1492 /*
1493 * We aren't changing the inode itself. Just changing
1494 * some of its data. No new blocks are added here, and
1495 * the inode is never added to the transaction.
1496 */
1497 xfs_ilock(qip, XFS_ILOCK_SHARED);
1498 error = xfs_bmapi(NULL, qip, lblkno,
1499 maxlblkcnt - lblkno,
1500 XFS_BMAPI_METADATA,
1501 NULL,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001502 0, map, &nmaps, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 xfs_iunlock(qip, XFS_ILOCK_SHARED);
1504 if (error)
1505 break;
1506
1507 ASSERT(nmaps <= XFS_DQITER_MAP_SIZE);
1508 for (i = 0; i < nmaps; i++) {
1509 ASSERT(map[i].br_startblock != DELAYSTARTBLOCK);
1510 ASSERT(map[i].br_blockcount);
1511
1512
1513 lblkno += map[i].br_blockcount;
1514
1515 if (map[i].br_startblock == HOLESTARTBLOCK)
1516 continue;
1517
1518 firstid = (xfs_dqid_t) map[i].br_startoff *
1519 XFS_QM_DQPERBLK(mp);
1520 /*
1521 * Do a read-ahead on the next extent.
1522 */
1523 if ((i+1 < nmaps) &&
1524 (map[i+1].br_startblock != HOLESTARTBLOCK)) {
1525 rablkcnt = map[i+1].br_blockcount;
1526 rablkno = map[i+1].br_startblock;
1527 while (rablkcnt--) {
1528 xfs_baread(mp->m_ddev_targp,
1529 XFS_FSB_TO_DADDR(mp, rablkno),
1530 (int)XFS_QI_DQCHUNKLEN(mp));
1531 rablkno++;
1532 }
1533 }
1534 /*
1535 * Iterate thru all the blks in the extent and
1536 * reset the counters of all the dquots inside them.
1537 */
1538 if ((error = xfs_qm_dqiter_bufs(mp,
1539 firstid,
1540 map[i].br_startblock,
1541 map[i].br_blockcount,
1542 flags))) {
1543 break;
1544 }
1545 }
1546
1547 if (error)
1548 break;
1549 } while (nmaps > 0);
1550
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001551 kmem_free(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
Jesper Juhl014c2542006-01-15 02:37:08 +01001553 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554}
1555
1556/*
1557 * Called by dqusage_adjust in doing a quotacheck.
1558 * Given the inode, and a dquot (either USR or GRP, doesn't matter),
1559 * this updates its incore copy as well as the buffer copy. This is
1560 * so that once the quotacheck is done, we can just log all the buffers,
1561 * as opposed to logging numerous updates to individual dquots.
1562 */
1563STATIC void
1564xfs_qm_quotacheck_dqadjust(
1565 xfs_dquot_t *dqp,
1566 xfs_qcnt_t nblks,
1567 xfs_qcnt_t rtblks)
1568{
1569 ASSERT(XFS_DQ_IS_LOCKED(dqp));
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001570
1571 trace_xfs_dqadjust(dqp);
1572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 /*
1574 * Adjust the inode count and the block count to reflect this inode's
1575 * resource usage.
1576 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001577 be64_add_cpu(&dqp->q_core.d_icount, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 dqp->q_res_icount++;
1579 if (nblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001580 be64_add_cpu(&dqp->q_core.d_bcount, nblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 dqp->q_res_bcount += nblks;
1582 }
1583 if (rtblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001584 be64_add_cpu(&dqp->q_core.d_rtbcount, rtblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 dqp->q_res_rtbcount += rtblks;
1586 }
1587
1588 /*
1589 * Set default limits, adjust timers (since we changed usages)
1590 */
1591 if (! XFS_IS_SUSER_DQUOT(dqp)) {
1592 xfs_qm_adjust_dqlimits(dqp->q_mount, &dqp->q_core);
1593 xfs_qm_adjust_dqtimers(dqp->q_mount, &dqp->q_core);
1594 }
1595
1596 dqp->dq_flags |= XFS_DQ_DIRTY;
1597}
1598
1599STATIC int
1600xfs_qm_get_rtblks(
1601 xfs_inode_t *ip,
1602 xfs_qcnt_t *O_rtblks)
1603{
1604 xfs_filblks_t rtblks; /* total rt blks */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001605 xfs_extnum_t idx; /* extent record index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 xfs_ifork_t *ifp; /* inode fork pointer */
1607 xfs_extnum_t nextents; /* number of extent entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 int error;
1609
1610 ASSERT(XFS_IS_REALTIME_INODE(ip));
1611 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1612 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1613 if ((error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001614 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 }
1616 rtblks = 0;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001617 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10001618 for (idx = 0; idx < nextents; idx++)
1619 rtblks += xfs_bmbt_get_blockcount(xfs_iext_get_ext(ifp, idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 *O_rtblks = (xfs_qcnt_t)rtblks;
Jesper Juhl014c2542006-01-15 02:37:08 +01001621 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622}
1623
1624/*
1625 * callback routine supplied to bulkstat(). Given an inumber, find its
1626 * dquots and update them to account for resources taken by that inode.
1627 */
1628/* ARGSUSED */
1629STATIC int
1630xfs_qm_dqusage_adjust(
1631 xfs_mount_t *mp, /* mount point for filesystem */
1632 xfs_ino_t ino, /* inode number to get data for */
1633 void __user *buffer, /* not used */
1634 int ubsize, /* not used */
1635 void *private_data, /* not used */
1636 xfs_daddr_t bno, /* starting block of inode cluster */
1637 int *ubused, /* not used */
1638 void *dip, /* on-disk inode pointer (not used) */
1639 int *res) /* result code value */
1640{
1641 xfs_inode_t *ip;
1642 xfs_dquot_t *udqp, *gdqp;
1643 xfs_qcnt_t nblks, rtblks;
1644 int error;
1645
1646 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1647
1648 /*
1649 * rootino must have its resources accounted for, not so with the quota
1650 * inodes.
1651 */
1652 if (ino == mp->m_sb.sb_uquotino || ino == mp->m_sb.sb_gquotino) {
1653 *res = BULKSTAT_RV_NOTHING;
1654 return XFS_ERROR(EINVAL);
1655 }
1656
1657 /*
1658 * We don't _need_ to take the ilock EXCL. However, the xfs_qm_dqget
1659 * interface expects the inode to be exclusively locked because that's
1660 * the case in all other instances. It's OK that we do this because
1661 * quotacheck is done only at mount time.
1662 */
1663 if ((error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_EXCL, &ip, bno))) {
1664 *res = BULKSTAT_RV_NOTHING;
Jesper Juhl014c2542006-01-15 02:37:08 +01001665 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
1667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 /*
1669 * Obtain the locked dquots. In case of an error (eg. allocation
1670 * fails for ENOSPC), we return the negative of the error number
1671 * to bulkstat, so that it can get propagated to quotacheck() and
1672 * making us disable quotas for the file system.
1673 */
1674 if ((error = xfs_qm_dqget_noattach(ip, &udqp, &gdqp))) {
1675 xfs_iput(ip, XFS_ILOCK_EXCL);
1676 *res = BULKSTAT_RV_GIVEUP;
Jesper Juhl014c2542006-01-15 02:37:08 +01001677 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 }
1679
1680 rtblks = 0;
1681 if (! XFS_IS_REALTIME_INODE(ip)) {
1682 nblks = (xfs_qcnt_t)ip->i_d.di_nblocks;
1683 } else {
1684 /*
1685 * Walk thru the extent list and count the realtime blocks.
1686 */
1687 if ((error = xfs_qm_get_rtblks(ip, &rtblks))) {
1688 xfs_iput(ip, XFS_ILOCK_EXCL);
1689 if (udqp)
1690 xfs_qm_dqput(udqp);
1691 if (gdqp)
1692 xfs_qm_dqput(gdqp);
1693 *res = BULKSTAT_RV_GIVEUP;
Jesper Juhl014c2542006-01-15 02:37:08 +01001694 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 }
1696 nblks = (xfs_qcnt_t)ip->i_d.di_nblocks - rtblks;
1697 }
1698 ASSERT(ip->i_delayed_blks == 0);
1699
1700 /*
1701 * We can't release the inode while holding its dquot locks.
1702 * The inode can go into inactive and might try to acquire the dquotlocks.
1703 * So, just unlock here and do a vn_rele at the end.
1704 */
1705 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1706
1707 /*
1708 * Add the (disk blocks and inode) resources occupied by this
1709 * inode to its dquots. We do this adjustment in the incore dquot,
1710 * and also copy the changes to its buffer.
1711 * We don't care about putting these changes in a transaction
1712 * envelope because if we crash in the middle of a 'quotacheck'
1713 * we have to start from the beginning anyway.
1714 * Once we're done, we'll log all the dquot bufs.
1715 *
Nathan Scottc41564b2006-03-29 08:55:14 +10001716 * The *QUOTA_ON checks below may look pretty racy, but quotachecks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 * and quotaoffs don't race. (Quotachecks happen at mount time only).
1718 */
1719 if (XFS_IS_UQUOTA_ON(mp)) {
1720 ASSERT(udqp);
1721 xfs_qm_quotacheck_dqadjust(udqp, nblks, rtblks);
1722 xfs_qm_dqput(udqp);
1723 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001724 if (XFS_IS_OQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 ASSERT(gdqp);
1726 xfs_qm_quotacheck_dqadjust(gdqp, nblks, rtblks);
1727 xfs_qm_dqput(gdqp);
1728 }
1729 /*
1730 * Now release the inode. This will send it to 'inactive', and
1731 * possibly even free blocks.
1732 */
Christoph Hellwig43355092008-03-27 18:01:08 +11001733 IRELE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735 /*
1736 * Goto next inode.
1737 */
1738 *res = BULKSTAT_RV_DIDONE;
Jesper Juhl014c2542006-01-15 02:37:08 +01001739 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740}
1741
1742/*
1743 * Walk thru all the filesystem inodes and construct a consistent view
1744 * of the disk quota world. If the quotacheck fails, disable quotas.
1745 */
1746int
1747xfs_qm_quotacheck(
1748 xfs_mount_t *mp)
1749{
1750 int done, count, error;
1751 xfs_ino_t lastino;
1752 size_t structsz;
1753 xfs_inode_t *uip, *gip;
1754 uint flags;
1755
1756 count = INT_MAX;
1757 structsz = 1;
1758 lastino = 0;
1759 flags = 0;
1760
1761 ASSERT(XFS_QI_UQIP(mp) || XFS_QI_GQIP(mp));
1762 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1763
1764 /*
1765 * There should be no cached dquots. The (simplistic) quotacheck
1766 * algorithm doesn't like that.
1767 */
Dave Chinner3a254042010-04-13 15:06:48 +10001768 ASSERT(list_empty(&mp->m_quotainfo->qi_dqlist));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
1770 cmn_err(CE_NOTE, "XFS quotacheck %s: Please wait.", mp->m_fsname);
1771
1772 /*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001773 * First we go thru all the dquots on disk, USR and GRP/PRJ, and reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 * their counters to zero. We need a clean slate.
1775 * We don't log our changes till later.
1776 */
1777 if ((uip = XFS_QI_UQIP(mp))) {
1778 if ((error = xfs_qm_dqiterate(mp, uip, XFS_QMOPT_UQUOTA)))
1779 goto error_return;
1780 flags |= XFS_UQUOTA_CHKD;
1781 }
1782
1783 if ((gip = XFS_QI_GQIP(mp))) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001784 if ((error = xfs_qm_dqiterate(mp, gip, XFS_IS_GQUOTA_ON(mp) ?
1785 XFS_QMOPT_GQUOTA : XFS_QMOPT_PQUOTA)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 goto error_return;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001787 flags |= XFS_OQUOTA_CHKD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
1789
1790 do {
1791 /*
1792 * Iterate thru all the inodes in the file system,
1793 * adjusting the corresponding dquot counters in core.
1794 */
1795 if ((error = xfs_bulkstat(mp, &lastino, &count,
1796 xfs_qm_dqusage_adjust, NULL,
Nathan Scott9c488762006-06-09 15:29:22 +10001797 structsz, NULL, BULKSTAT_FG_IGET, &done)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 break;
1799
1800 } while (! done);
1801
1802 /*
David Chinner4b8879d2008-04-10 12:20:17 +10001803 * We've made all the changes that we need to make incore.
1804 * Flush them down to disk buffers if everything was updated
1805 * successfully.
1806 */
1807 if (!error)
Dave Chinner20026d92010-02-04 09:48:58 +11001808 error = xfs_qm_dqflush_all(mp, 0);
David Chinner4b8879d2008-04-10 12:20:17 +10001809
1810 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 * We can get this error if we couldn't do a dquot allocation inside
1812 * xfs_qm_dqusage_adjust (via bulkstat). We don't care about the
1813 * dirty dquots that might be cached, we just want to get rid of them
1814 * and turn quotaoff. The dquots won't be attached to any of the inodes
1815 * at this point (because we intentionally didn't in dqget_noattach).
1816 */
1817 if (error) {
Nathan Scottee2a4f72006-01-11 15:33:36 +11001818 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL | XFS_QMOPT_QUOTAOFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 goto error_return;
1820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 /*
1823 * We didn't log anything, because if we crashed, we'll have to
1824 * start the quotacheck from scratch anyway. However, we must make
1825 * sure that our dquot changes are secure before we put the
1826 * quotacheck'd stamp on the superblock. So, here we do a synchronous
1827 * flush.
1828 */
1829 XFS_bflush(mp->m_ddev_targp);
1830
1831 /*
1832 * If one type of quotas is off, then it will lose its
1833 * quotachecked status, since we won't be doing accounting for
1834 * that type anymore.
1835 */
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001836 mp->m_qflags &= ~(XFS_OQUOTA_CHKD | XFS_UQUOTA_CHKD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 mp->m_qflags |= flags;
1838
Dave Chinner3a254042010-04-13 15:06:48 +10001839 xfs_qm_dquot_list_print(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841 error_return:
1842 if (error) {
1843 cmn_err(CE_WARN, "XFS quotacheck %s: Unsuccessful (Error %d): "
1844 "Disabling quotas.",
1845 mp->m_fsname, error);
1846 /*
1847 * We must turn off quotas.
1848 */
1849 ASSERT(mp->m_quotainfo != NULL);
1850 ASSERT(xfs_Gqm != NULL);
1851 xfs_qm_destroy_quotainfo(mp);
David Chinner31d55772008-04-10 12:20:38 +10001852 if (xfs_mount_reset_sbqflags(mp)) {
1853 cmn_err(CE_WARN, "XFS quotacheck %s: "
1854 "Failed to reset quota flags.", mp->m_fsname);
1855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 } else {
1857 cmn_err(CE_NOTE, "XFS quotacheck %s: Done.", mp->m_fsname);
1858 }
1859 return (error);
1860}
1861
1862/*
1863 * This is called after the superblock has been read in and we're ready to
1864 * iget the quota inodes.
1865 */
1866STATIC int
1867xfs_qm_init_quotainos(
1868 xfs_mount_t *mp)
1869{
1870 xfs_inode_t *uip, *gip;
1871 int error;
1872 __int64_t sbflags;
1873 uint flags;
1874
1875 ASSERT(mp->m_quotainfo);
1876 uip = gip = NULL;
1877 sbflags = 0;
1878 flags = 0;
1879
1880 /*
1881 * Get the uquota and gquota inodes
1882 */
Eric Sandeen62118702008-03-06 13:44:28 +11001883 if (xfs_sb_version_hasquota(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 if (XFS_IS_UQUOTA_ON(mp) &&
1885 mp->m_sb.sb_uquotino != NULLFSINO) {
1886 ASSERT(mp->m_sb.sb_uquotino > 0);
1887 if ((error = xfs_iget(mp, NULL, mp->m_sb.sb_uquotino,
1888 0, 0, &uip, 0)))
1889 return XFS_ERROR(error);
1890 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001891 if (XFS_IS_OQUOTA_ON(mp) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 mp->m_sb.sb_gquotino != NULLFSINO) {
1893 ASSERT(mp->m_sb.sb_gquotino > 0);
1894 if ((error = xfs_iget(mp, NULL, mp->m_sb.sb_gquotino,
1895 0, 0, &gip, 0))) {
1896 if (uip)
Christoph Hellwig43355092008-03-27 18:01:08 +11001897 IRELE(uip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 return XFS_ERROR(error);
1899 }
1900 }
1901 } else {
1902 flags |= XFS_QMOPT_SBVERSION;
1903 sbflags |= (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
1904 XFS_SB_GQUOTINO | XFS_SB_QFLAGS);
1905 }
1906
1907 /*
1908 * Create the two inodes, if they don't exist already. The changes
1909 * made above will get added to a transaction and logged in one of
1910 * the qino_alloc calls below. If the device is readonly,
1911 * temporarily switch to read-write to do this.
1912 */
1913 if (XFS_IS_UQUOTA_ON(mp) && uip == NULL) {
1914 if ((error = xfs_qm_qino_alloc(mp, &uip,
1915 sbflags | XFS_SB_UQUOTINO,
1916 flags | XFS_QMOPT_UQUOTA)))
1917 return XFS_ERROR(error);
1918
1919 flags &= ~XFS_QMOPT_SBVERSION;
1920 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001921 if (XFS_IS_OQUOTA_ON(mp) && gip == NULL) {
1922 flags |= (XFS_IS_GQUOTA_ON(mp) ?
1923 XFS_QMOPT_GQUOTA : XFS_QMOPT_PQUOTA);
1924 error = xfs_qm_qino_alloc(mp, &gip,
1925 sbflags | XFS_SB_GQUOTINO, flags);
1926 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if (uip)
Christoph Hellwig43355092008-03-27 18:01:08 +11001928 IRELE(uip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
1930 return XFS_ERROR(error);
1931 }
1932 }
1933
1934 XFS_QI_UQIP(mp) = uip;
1935 XFS_QI_GQIP(mp) = gip;
1936
Jesper Juhl014c2542006-01-15 02:37:08 +01001937 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938}
1939
1940
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
1942/*
1943 * Just pop the least recently used dquot off the freelist and
1944 * recycle it. The returned dquot is locked.
1945 */
1946STATIC xfs_dquot_t *
1947xfs_qm_dqreclaim_one(void)
1948{
1949 xfs_dquot_t *dqpout;
1950 xfs_dquot_t *dqp;
1951 int restarts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 restarts = 0;
1954 dqpout = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956 /* lockorder: hashchainlock, freelistlock, mplistlock, dqlock, dqflock */
Dave Chinner368e1362010-04-13 15:06:50 +10001957startagain:
Dave Chinner3a8406f2010-04-13 15:06:52 +10001958 mutex_lock(&xfs_Gqm->qm_dqfrlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Dave Chinner3a8406f2010-04-13 15:06:52 +10001960 list_for_each_entry(dqp, &xfs_Gqm->qm_dqfrlist, q_freelist) {
Dave Chinner3a254042010-04-13 15:06:48 +10001961 struct xfs_mount *mp = dqp->q_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 xfs_dqlock(dqp);
1963
1964 /*
1965 * We are racing with dqlookup here. Naturally we don't
1966 * want to reclaim a dquot that lookup wants. We release the
1967 * freelist lock and start over, so that lookup will grab
1968 * both the dquot and the freelistlock.
1969 */
1970 if (dqp->dq_flags & XFS_DQ_WANT) {
1971 ASSERT(! (dqp->dq_flags & XFS_DQ_INACTIVE));
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001972
1973 trace_xfs_dqreclaim_want(dqp);
1974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 xfs_dqunlock(dqp);
Dave Chinner3a8406f2010-04-13 15:06:52 +10001976 mutex_unlock(&xfs_Gqm->qm_dqfrlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 if (++restarts >= XFS_QM_RECLAIM_MAX_RESTARTS)
Jesper Juhl014c2542006-01-15 02:37:08 +01001978 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 XQM_STATS_INC(xqmstats.xs_qm_dqwants);
1980 goto startagain;
1981 }
1982
1983 /*
1984 * If the dquot is inactive, we are assured that it is
1985 * not on the mplist or the hashlist, and that makes our
1986 * life easier.
1987 */
1988 if (dqp->dq_flags & XFS_DQ_INACTIVE) {
Dave Chinner3a254042010-04-13 15:06:48 +10001989 ASSERT(mp == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 ASSERT(! XFS_DQ_IS_DIRTY(dqp));
Dave Chinnere6a81f12010-04-13 15:06:51 +10001991 ASSERT(list_empty(&dqp->q_hashlist));
Dave Chinner3a254042010-04-13 15:06:48 +10001992 ASSERT(list_empty(&dqp->q_mplist));
Dave Chinner3a8406f2010-04-13 15:06:52 +10001993 list_del_init(&dqp->q_freelist);
1994 xfs_Gqm->qm_dqfrlist_cnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 xfs_dqunlock(dqp);
1996 dqpout = dqp;
1997 XQM_STATS_INC(xqmstats.xs_qm_dqinact_reclaims);
1998 break;
1999 }
2000
2001 ASSERT(dqp->q_hash);
Dave Chinner3a254042010-04-13 15:06:48 +10002002 ASSERT(!list_empty(&dqp->q_mplist));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004 /*
2005 * Try to grab the flush lock. If this dquot is in the process of
2006 * getting flushed to disk, we don't want to reclaim it.
2007 */
David Chinnere1f49cf2008-08-13 16:41:43 +10002008 if (!xfs_dqflock_nowait(dqp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 xfs_dqunlock(dqp);
2010 continue;
2011 }
2012
2013 /*
2014 * We have the flush lock so we know that this is not in the
2015 * process of being flushed. So, if this is dirty, flush it
2016 * DELWRI so that we don't get a freelist infested with
2017 * dirty dquots.
2018 */
2019 if (XFS_DQ_IS_DIRTY(dqp)) {
David Chinner3c568362008-04-10 12:20:24 +10002020 int error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002021
2022 trace_xfs_dqreclaim_dirty(dqp);
2023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 /*
2025 * We flush it delayed write, so don't bother
2026 * releasing the freelist lock.
2027 */
Dave Chinner20026d92010-02-04 09:48:58 +11002028 error = xfs_qm_dqflush(dqp, 0);
David Chinner3c568362008-04-10 12:20:24 +10002029 if (error) {
Dave Chinner3a254042010-04-13 15:06:48 +10002030 xfs_fs_cmn_err(CE_WARN, mp,
David Chinner3c568362008-04-10 12:20:24 +10002031 "xfs_qm_dqreclaim: dquot %p flush failed", dqp);
2032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 xfs_dqunlock(dqp); /* dqflush unlocks dqflock */
2034 continue;
2035 }
2036
Dave Chinner368e1362010-04-13 15:06:50 +10002037 /*
2038 * We're trying to get the hashlock out of order. This races
2039 * with dqlookup; so, we giveup and goto the next dquot if
2040 * we couldn't get the hashlock. This way, we won't starve
2041 * a dqlookup process that holds the hashlock that is
2042 * waiting for the freelist lock.
2043 */
2044 if (!mutex_trylock(&dqp->q_hash->qh_lock)) {
2045 restarts++;
2046 goto dqfunlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 }
2048
Dave Chinner368e1362010-04-13 15:06:50 +10002049 /*
2050 * This races with dquot allocation code as well as dqflush_all
2051 * and reclaim code. So, if we failed to grab the mplist lock,
2052 * giveup everything and start over.
2053 */
2054 if (!mutex_trylock(&mp->m_quotainfo->qi_dqlist_lock)) {
2055 restarts++;
2056 mutex_unlock(&dqp->q_hash->qh_lock);
2057 xfs_dqfunlock(dqp);
2058 xfs_dqunlock(dqp);
Dave Chinner3a8406f2010-04-13 15:06:52 +10002059 mutex_unlock(&xfs_Gqm->qm_dqfrlist_lock);
Dave Chinner368e1362010-04-13 15:06:50 +10002060 if (restarts++ >= XFS_QM_RECLAIM_MAX_RESTARTS)
2061 return NULL;
2062 goto startagain;
2063 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002064
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 ASSERT(dqp->q_nrefs == 0);
Dave Chinner3a254042010-04-13 15:06:48 +10002066 list_del_init(&dqp->q_mplist);
2067 mp->m_quotainfo->qi_dquots--;
2068 mp->m_quotainfo->qi_dqreclaims++;
Dave Chinnere6a81f12010-04-13 15:06:51 +10002069 list_del_init(&dqp->q_hashlist);
2070 dqp->q_hash->qh_version++;
Dave Chinner3a8406f2010-04-13 15:06:52 +10002071 list_del_init(&dqp->q_freelist);
2072 xfs_Gqm->qm_dqfrlist_cnt--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 dqpout = dqp;
Dave Chinner3a254042010-04-13 15:06:48 +10002074 mutex_unlock(&mp->m_quotainfo->qi_dqlist_lock);
Dave Chinner368e1362010-04-13 15:06:50 +10002075 mutex_unlock(&dqp->q_hash->qh_lock);
2076dqfunlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 xfs_dqfunlock(dqp);
2078 xfs_dqunlock(dqp);
2079 if (dqpout)
2080 break;
Dave Chinner368e1362010-04-13 15:06:50 +10002081 if (restarts >= XFS_QM_RECLAIM_MAX_RESTARTS)
2082 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
Dave Chinner3a8406f2010-04-13 15:06:52 +10002084 mutex_unlock(&xfs_Gqm->qm_dqfrlist_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +01002085 return dqpout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
Dave Chinner368e1362010-04-13 15:06:50 +10002088/*
2089 * Traverse the freelist of dquots and attempt to reclaim a maximum of
2090 * 'howmany' dquots. This operation races with dqlookup(), and attempts to
2091 * favor the lookup function ...
2092 */
2093STATIC int
2094xfs_qm_shake_freelist(
2095 int howmany)
2096{
2097 int nreclaimed = 0;
2098 xfs_dquot_t *dqp;
2099
2100 if (howmany <= 0)
2101 return 0;
2102
2103 while (nreclaimed < howmany) {
2104 dqp = xfs_qm_dqreclaim_one();
2105 if (!dqp)
2106 return nreclaimed;
2107 xfs_qm_dqdestroy(dqp);
2108 nreclaimed++;
2109 }
2110 return nreclaimed;
2111}
2112
2113/*
2114 * The kmem_shake interface is invoked when memory is running low.
2115 */
2116/* ARGSUSED */
2117STATIC int
2118xfs_qm_shake(int nr_to_scan, gfp_t gfp_mask)
2119{
2120 int ndqused, nfree, n;
2121
2122 if (!kmem_shake_allow(gfp_mask))
2123 return 0;
2124 if (!xfs_Gqm)
2125 return 0;
2126
Dave Chinner3a8406f2010-04-13 15:06:52 +10002127 nfree = xfs_Gqm->qm_dqfrlist_cnt; /* free dquots */
Dave Chinner368e1362010-04-13 15:06:50 +10002128 /* incore dquots in all f/s's */
2129 ndqused = atomic_read(&xfs_Gqm->qm_totaldquots) - nfree;
2130
2131 ASSERT(ndqused >= 0);
2132
2133 if (nfree <= ndqused && nfree < ndquot)
2134 return 0;
2135
2136 ndqused *= xfs_Gqm->qm_dqfree_ratio; /* target # of free dquots */
2137 n = nfree - ndqused - ndquot; /* # over target */
2138
2139 return xfs_qm_shake_freelist(MAX(nfree, n));
2140}
2141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143/*------------------------------------------------------------------*/
2144
2145/*
2146 * Return a new incore dquot. Depending on the number of
2147 * dquots in the system, we either allocate a new one on the kernel heap,
2148 * or reclaim a free one.
2149 * Return value is B_TRUE if we allocated a new dquot, B_FALSE if we managed
2150 * to reclaim an existing one from the freelist.
2151 */
2152boolean_t
2153xfs_qm_dqalloc_incore(
2154 xfs_dquot_t **O_dqpp)
2155{
2156 xfs_dquot_t *dqp;
2157
2158 /*
2159 * Check against high water mark to see if we want to pop
2160 * a nincompoop dquot off the freelist.
2161 */
2162 if (atomic_read(&xfs_Gqm->qm_totaldquots) >= ndquot) {
2163 /*
2164 * Try to recycle a dquot from the freelist.
2165 */
2166 if ((dqp = xfs_qm_dqreclaim_one())) {
2167 XQM_STATS_INC(xqmstats.xs_qm_dqreclaims);
2168 /*
2169 * Just zero the core here. The rest will get
2170 * reinitialized by caller. XXX we shouldn't even
2171 * do this zero ...
2172 */
2173 memset(&dqp->q_core, 0, sizeof(dqp->q_core));
2174 *O_dqpp = dqp;
Jesper Juhl014c2542006-01-15 02:37:08 +01002175 return B_FALSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 }
2177 XQM_STATS_INC(xqmstats.xs_qm_dqreclaim_misses);
2178 }
2179
2180 /*
2181 * Allocate a brand new dquot on the kernel heap and return it
2182 * to the caller to initialize.
2183 */
2184 ASSERT(xfs_Gqm->qm_dqzone != NULL);
2185 *O_dqpp = kmem_zone_zalloc(xfs_Gqm->qm_dqzone, KM_SLEEP);
2186 atomic_inc(&xfs_Gqm->qm_totaldquots);
2187
Jesper Juhl014c2542006-01-15 02:37:08 +01002188 return B_TRUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189}
2190
2191
2192/*
2193 * Start a transaction and write the incore superblock changes to
2194 * disk. flags parameter indicates which fields have changed.
2195 */
2196int
2197xfs_qm_write_sb_changes(
2198 xfs_mount_t *mp,
2199 __int64_t flags)
2200{
2201 xfs_trans_t *tp;
2202 int error;
2203
2204#ifdef QUOTADEBUG
2205 cmn_err(CE_NOTE, "Writing superblock quota changes :%s", mp->m_fsname);
2206#endif
2207 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
2208 if ((error = xfs_trans_reserve(tp, 0,
2209 mp->m_sb.sb_sectsize + 128, 0,
2210 0,
2211 XFS_DEFAULT_LOG_COUNT))) {
2212 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01002213 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 }
2215
2216 xfs_mod_sb(tp, flags);
David Chinnere5720ee2008-04-10 12:21:18 +10002217 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
David Chinnere5720ee2008-04-10 12:21:18 +10002219 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220}
2221
2222
2223/* --------------- utility functions for vnodeops ---------------- */
2224
2225
2226/*
2227 * Given an inode, a uid and gid (from cred_t) make sure that we have
2228 * allocated relevant dquot(s) on disk, and that we won't exceed inode
2229 * quotas by creating this file.
2230 * This also attaches dquot(s) to the given inode after locking it,
2231 * and returns the dquots corresponding to the uid and/or gid.
2232 *
2233 * in : inode (unlocked)
2234 * out : udquot, gdquot with references taken and unlocked
2235 */
2236int
2237xfs_qm_vop_dqalloc(
Christoph Hellwig7d095252009-06-08 15:33:32 +02002238 struct xfs_inode *ip,
2239 uid_t uid,
2240 gid_t gid,
2241 prid_t prid,
2242 uint flags,
2243 struct xfs_dquot **O_udqpp,
2244 struct xfs_dquot **O_gdqpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002246 struct xfs_mount *mp = ip->i_mount;
2247 struct xfs_dquot *uq, *gq;
2248 int error;
2249 uint lockflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
Christoph Hellwig7d095252009-06-08 15:33:32 +02002251 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 return 0;
2253
2254 lockflags = XFS_ILOCK_EXCL;
2255 xfs_ilock(ip, lockflags);
2256
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10002257 if ((flags & XFS_QMOPT_INHERIT) && XFS_INHERIT_GID(ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 gid = ip->i_d.di_gid;
2259
2260 /*
2261 * Attach the dquot(s) to this inode, doing a dquot allocation
2262 * if necessary. The dquot(s) will not be locked.
2263 */
2264 if (XFS_NOT_DQATTACHED(mp, ip)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02002265 error = xfs_qm_dqattach_locked(ip, XFS_QMOPT_DQALLOC);
2266 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 xfs_iunlock(ip, lockflags);
Jesper Juhl014c2542006-01-15 02:37:08 +01002268 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 }
2270 }
2271
2272 uq = gq = NULL;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002273 if ((flags & XFS_QMOPT_UQUOTA) && XFS_IS_UQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 if (ip->i_d.di_uid != uid) {
2275 /*
2276 * What we need is the dquot that has this uid, and
2277 * if we send the inode to dqget, the uid of the inode
2278 * takes priority over what's sent in the uid argument.
2279 * We must unlock inode here before calling dqget if
2280 * we're not sending the inode, because otherwise
2281 * we'll deadlock by doing trans_reserve while
2282 * holding ilock.
2283 */
2284 xfs_iunlock(ip, lockflags);
2285 if ((error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t) uid,
2286 XFS_DQ_USER,
2287 XFS_QMOPT_DQALLOC |
2288 XFS_QMOPT_DOWARN,
2289 &uq))) {
2290 ASSERT(error != ENOENT);
Jesper Juhl014c2542006-01-15 02:37:08 +01002291 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
2293 /*
2294 * Get the ilock in the right order.
2295 */
2296 xfs_dqunlock(uq);
2297 lockflags = XFS_ILOCK_SHARED;
2298 xfs_ilock(ip, lockflags);
2299 } else {
2300 /*
2301 * Take an extra reference, because we'll return
2302 * this to caller
2303 */
2304 ASSERT(ip->i_udquot);
2305 uq = ip->i_udquot;
2306 xfs_dqlock(uq);
2307 XFS_DQHOLD(uq);
2308 xfs_dqunlock(uq);
2309 }
2310 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002311 if ((flags & XFS_QMOPT_GQUOTA) && XFS_IS_GQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 if (ip->i_d.di_gid != gid) {
2313 xfs_iunlock(ip, lockflags);
2314 if ((error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)gid,
2315 XFS_DQ_GROUP,
2316 XFS_QMOPT_DQALLOC |
2317 XFS_QMOPT_DOWARN,
2318 &gq))) {
2319 if (uq)
2320 xfs_qm_dqrele(uq);
2321 ASSERT(error != ENOENT);
Jesper Juhl014c2542006-01-15 02:37:08 +01002322 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 }
2324 xfs_dqunlock(gq);
2325 lockflags = XFS_ILOCK_SHARED;
2326 xfs_ilock(ip, lockflags);
2327 } else {
2328 ASSERT(ip->i_gdquot);
2329 gq = ip->i_gdquot;
2330 xfs_dqlock(gq);
2331 XFS_DQHOLD(gq);
2332 xfs_dqunlock(gq);
2333 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002334 } else if ((flags & XFS_QMOPT_PQUOTA) && XFS_IS_PQUOTA_ON(mp)) {
2335 if (ip->i_d.di_projid != prid) {
2336 xfs_iunlock(ip, lockflags);
2337 if ((error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)prid,
2338 XFS_DQ_PROJ,
2339 XFS_QMOPT_DQALLOC |
2340 XFS_QMOPT_DOWARN,
2341 &gq))) {
2342 if (uq)
2343 xfs_qm_dqrele(uq);
2344 ASSERT(error != ENOENT);
2345 return (error);
2346 }
2347 xfs_dqunlock(gq);
2348 lockflags = XFS_ILOCK_SHARED;
2349 xfs_ilock(ip, lockflags);
2350 } else {
2351 ASSERT(ip->i_gdquot);
2352 gq = ip->i_gdquot;
2353 xfs_dqlock(gq);
2354 XFS_DQHOLD(gq);
2355 xfs_dqunlock(gq);
2356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 }
2358 if (uq)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002359 trace_xfs_dquot_dqalloc(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
2361 xfs_iunlock(ip, lockflags);
2362 if (O_udqpp)
2363 *O_udqpp = uq;
2364 else if (uq)
2365 xfs_qm_dqrele(uq);
2366 if (O_gdqpp)
2367 *O_gdqpp = gq;
2368 else if (gq)
2369 xfs_qm_dqrele(gq);
Jesper Juhl014c2542006-01-15 02:37:08 +01002370 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371}
2372
2373/*
2374 * Actually transfer ownership, and do dquot modifications.
2375 * These were already reserved.
2376 */
2377xfs_dquot_t *
2378xfs_qm_vop_chown(
2379 xfs_trans_t *tp,
2380 xfs_inode_t *ip,
2381 xfs_dquot_t **IO_olddq,
2382 xfs_dquot_t *newdq)
2383{
2384 xfs_dquot_t *prevdq;
Nathan Scott06d10dd2005-06-21 15:48:47 +10002385 uint bfield = XFS_IS_REALTIME_INODE(ip) ?
2386 XFS_TRANS_DQ_RTBCOUNT : XFS_TRANS_DQ_BCOUNT;
2387
Christoph Hellwig7d095252009-06-08 15:33:32 +02002388
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002389 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 ASSERT(XFS_IS_QUOTA_RUNNING(ip->i_mount));
2391
2392 /* old dquot */
2393 prevdq = *IO_olddq;
2394 ASSERT(prevdq);
2395 ASSERT(prevdq != newdq);
2396
Nathan Scott06d10dd2005-06-21 15:48:47 +10002397 xfs_trans_mod_dquot(tp, prevdq, bfield, -(ip->i_d.di_nblocks));
2398 xfs_trans_mod_dquot(tp, prevdq, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
2400 /* the sparkling new dquot */
Nathan Scott06d10dd2005-06-21 15:48:47 +10002401 xfs_trans_mod_dquot(tp, newdq, bfield, ip->i_d.di_nblocks);
2402 xfs_trans_mod_dquot(tp, newdq, XFS_TRANS_DQ_ICOUNT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
2404 /*
2405 * Take an extra reference, because the inode
2406 * is going to keep this dquot pointer even
2407 * after the trans_commit.
2408 */
2409 xfs_dqlock(newdq);
2410 XFS_DQHOLD(newdq);
2411 xfs_dqunlock(newdq);
2412 *IO_olddq = newdq;
2413
Jesper Juhl014c2542006-01-15 02:37:08 +01002414 return prevdq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415}
2416
2417/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002418 * Quota reservations for setattr(AT_UID|AT_GID|AT_PROJID).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 */
2420int
2421xfs_qm_vop_chown_reserve(
2422 xfs_trans_t *tp,
2423 xfs_inode_t *ip,
2424 xfs_dquot_t *udqp,
2425 xfs_dquot_t *gdqp,
2426 uint flags)
2427{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002428 xfs_mount_t *mp = ip->i_mount;
Nathan Scott9a2a7de2006-03-31 13:04:49 +10002429 uint delblks, blkflags, prjflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 xfs_dquot_t *unresudq, *unresgdq, *delblksudq, *delblksgdq;
Christoph Hellwig7d095252009-06-08 15:33:32 +02002431 int error;
2432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002434 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
2436
2437 delblks = ip->i_delayed_blks;
2438 delblksudq = delblksgdq = unresudq = unresgdq = NULL;
Nathan Scott06d10dd2005-06-21 15:48:47 +10002439 blkflags = XFS_IS_REALTIME_INODE(ip) ?
2440 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
2442 if (XFS_IS_UQUOTA_ON(mp) && udqp &&
Christoph Hellwig1149d962005-11-02 15:01:12 +11002443 ip->i_d.di_uid != (uid_t)be32_to_cpu(udqp->q_core.d_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 delblksudq = udqp;
2445 /*
2446 * If there are delayed allocation blocks, then we have to
2447 * unreserve those from the old dquot, and add them to the
2448 * new dquot.
2449 */
2450 if (delblks) {
2451 ASSERT(ip->i_udquot);
2452 unresudq = ip->i_udquot;
2453 }
2454 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002455 if (XFS_IS_OQUOTA_ON(ip->i_mount) && gdqp) {
Nathan Scott9a2a7de2006-03-31 13:04:49 +10002456 if (XFS_IS_PQUOTA_ON(ip->i_mount) &&
2457 ip->i_d.di_projid != be32_to_cpu(gdqp->q_core.d_id))
2458 prjflags = XFS_QMOPT_ENOSPC;
2459
2460 if (prjflags ||
2461 (XFS_IS_GQUOTA_ON(ip->i_mount) &&
2462 ip->i_d.di_gid != be32_to_cpu(gdqp->q_core.d_id))) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002463 delblksgdq = gdqp;
2464 if (delblks) {
2465 ASSERT(ip->i_gdquot);
2466 unresgdq = ip->i_gdquot;
2467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 }
2469 }
2470
2471 if ((error = xfs_trans_reserve_quota_bydquots(tp, ip->i_mount,
2472 delblksudq, delblksgdq, ip->i_d.di_nblocks, 1,
Nathan Scott9a2a7de2006-03-31 13:04:49 +10002473 flags | blkflags | prjflags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 return (error);
2475
2476 /*
2477 * Do the delayed blks reservations/unreservations now. Since, these
2478 * are done without the help of a transaction, if a reservation fails
2479 * its previous reservations won't be automatically undone by trans
2480 * code. So, we have to do it manually here.
2481 */
2482 if (delblks) {
2483 /*
2484 * Do the reservations first. Unreservation can't fail.
2485 */
2486 ASSERT(delblksudq || delblksgdq);
2487 ASSERT(unresudq || unresgdq);
2488 if ((error = xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
2489 delblksudq, delblksgdq, (xfs_qcnt_t)delblks, 0,
Nathan Scott9a2a7de2006-03-31 13:04:49 +10002490 flags | blkflags | prjflags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 return (error);
2492 xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
2493 unresudq, unresgdq, -((xfs_qcnt_t)delblks), 0,
Nathan Scott06d10dd2005-06-21 15:48:47 +10002494 blkflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 }
2496
2497 return (0);
2498}
2499
2500int
2501xfs_qm_vop_rename_dqattach(
Christoph Hellwig7d095252009-06-08 15:33:32 +02002502 struct xfs_inode **i_tab)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002504 struct xfs_mount *mp = i_tab[0]->i_mount;
2505 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Christoph Hellwig7d095252009-06-08 15:33:32 +02002507 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Jesper Juhl014c2542006-01-15 02:37:08 +01002508 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Christoph Hellwig7d095252009-06-08 15:33:32 +02002510 for (i = 0; (i < 4 && i_tab[i]); i++) {
2511 struct xfs_inode *ip = i_tab[i];
2512 int error;
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 /*
2515 * Watch out for duplicate entries in the table.
2516 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02002517 if (i == 0 || ip != i_tab[i-1]) {
2518 if (XFS_NOT_DQATTACHED(mp, ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 error = xfs_qm_dqattach(ip, 0);
2520 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002521 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 }
2523 }
2524 }
Jesper Juhl014c2542006-01-15 02:37:08 +01002525 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526}
2527
2528void
Christoph Hellwig7d095252009-06-08 15:33:32 +02002529xfs_qm_vop_create_dqattach(
2530 struct xfs_trans *tp,
2531 struct xfs_inode *ip,
2532 struct xfs_dquot *udqp,
2533 struct xfs_dquot *gdqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002535 struct xfs_mount *mp = tp->t_mountp;
2536
2537 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 return;
2539
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002540 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig7d095252009-06-08 15:33:32 +02002541 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543 if (udqp) {
2544 xfs_dqlock(udqp);
2545 XFS_DQHOLD(udqp);
2546 xfs_dqunlock(udqp);
2547 ASSERT(ip->i_udquot == NULL);
2548 ip->i_udquot = udqp;
Christoph Hellwig7d095252009-06-08 15:33:32 +02002549 ASSERT(XFS_IS_UQUOTA_ON(mp));
Christoph Hellwig1149d962005-11-02 15:01:12 +11002550 ASSERT(ip->i_d.di_uid == be32_to_cpu(udqp->q_core.d_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 xfs_trans_mod_dquot(tp, udqp, XFS_TRANS_DQ_ICOUNT, 1);
2552 }
2553 if (gdqp) {
2554 xfs_dqlock(gdqp);
2555 XFS_DQHOLD(gdqp);
2556 xfs_dqunlock(gdqp);
2557 ASSERT(ip->i_gdquot == NULL);
2558 ip->i_gdquot = gdqp;
Christoph Hellwig7d095252009-06-08 15:33:32 +02002559 ASSERT(XFS_IS_OQUOTA_ON(mp));
2560 ASSERT((XFS_IS_GQUOTA_ON(mp) ?
Nathan Scottee2a4f72006-01-11 15:33:36 +11002561 ip->i_d.di_gid : ip->i_d.di_projid) ==
2562 be32_to_cpu(gdqp->q_core.d_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 xfs_trans_mod_dquot(tp, gdqp, XFS_TRANS_DQ_ICOUNT, 1);
2564 }
2565}
2566