blob: 0dde1f48c280a37b7390f0c2cefc18436f814193 [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_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_quota.h"
28#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap_btree.h"
30#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_dinode.h"
32#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_ialloc.h"
34#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_rtalloc.h"
36#include "xfs_error.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_attr.h"
39#include "xfs_buf_item.h"
40#include "xfs_trans_space.h"
41#include "xfs_utils.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_qm.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000043#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/*
46 * The global quota manager. There is only one of these for the entire
47 * system, _not_ one per file system. XQM keeps track of the overall
48 * quota functionality, including maintaining the freelist and hash
49 * tables of dquots.
50 */
Christoph Hellwiga0b0b8a2009-03-29 09:51:00 +020051struct mutex xfs_Gqm_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052struct xfs_qm *xfs_Gqm;
53
54kmem_zone_t *qm_dqzone;
55kmem_zone_t *qm_dqtrxzone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57STATIC void xfs_qm_list_init(xfs_dqlist_t *, char *, int);
58STATIC void xfs_qm_list_destroy(xfs_dqlist_t *);
59
60STATIC int xfs_qm_init_quotainos(xfs_mount_t *);
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100061STATIC int xfs_qm_init_quotainfo(xfs_mount_t *);
Ying Han1495f232011-05-24 17:12:27 -070062STATIC int xfs_qm_shake(struct shrinker *, struct shrink_control *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Rusty Russell8e1f9362007-07-17 04:03:17 -070064static struct shrinker xfs_qm_shaker = {
65 .shrink = xfs_qm_shake,
66 .seeks = DEFAULT_SEEKS,
67};
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
70 * Initialize the XQM structure.
71 * Note that there is not one quota manager per file system.
72 */
73STATIC struct xfs_qm *
74xfs_Gqm_init(void)
75{
Nathan Scott6b3f6b52005-11-02 15:08:25 +110076 xfs_dqhash_t *udqhash, *gdqhash;
77 xfs_qm_t *xqm;
Nathan Scott215101c2006-09-28 11:04:43 +100078 size_t hsize;
79 uint i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 /*
82 * Initialize the dquot hash tables.
83 */
Nathan Scott77e46352006-09-28 11:03:27 +100084 udqhash = kmem_zalloc_greedy(&hsize,
Eric Sandeen5995cb72007-08-16 16:49:11 +100085 XFS_QM_HASHSIZE_LOW * sizeof(xfs_dqhash_t),
Christoph Hellwigbdfb0432010-01-20 21:55:30 +000086 XFS_QM_HASHSIZE_HIGH * sizeof(xfs_dqhash_t));
87 if (!udqhash)
88 goto out;
89
90 gdqhash = kmem_zalloc_large(hsize);
Julia Lawalld67b1b02010-02-06 08:45:15 +000091 if (!gdqhash)
Christoph Hellwigbdfb0432010-01-20 21:55:30 +000092 goto out_free_udqhash;
93
Nathan Scott77e46352006-09-28 11:03:27 +100094 hsize /= sizeof(xfs_dqhash_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Nathan Scott6b3f6b52005-11-02 15:08:25 +110096 xqm = kmem_zalloc(sizeof(xfs_qm_t), KM_SLEEP);
97 xqm->qm_dqhashmask = hsize - 1;
98 xqm->qm_usr_dqhtable = udqhash;
99 xqm->qm_grp_dqhtable = gdqhash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 ASSERT(xqm->qm_usr_dqhtable != NULL);
101 ASSERT(xqm->qm_grp_dqhtable != NULL);
102
103 for (i = 0; i < hsize; i++) {
104 xfs_qm_list_init(&(xqm->qm_usr_dqhtable[i]), "uxdqh", i);
105 xfs_qm_list_init(&(xqm->qm_grp_dqhtable[i]), "gxdqh", i);
106 }
107
108 /*
109 * Freelist of all dquots of all file systems
110 */
Dave Chinner3a8406f2010-04-13 15:06:52 +1000111 INIT_LIST_HEAD(&xqm->qm_dqfrlist);
112 xqm->qm_dqfrlist_cnt = 0;
113 mutex_init(&xqm->qm_dqfrlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 /*
116 * dquot zone. we register our own low-memory callback.
117 */
118 if (!qm_dqzone) {
119 xqm->qm_dqzone = kmem_zone_init(sizeof(xfs_dquot_t),
120 "xfs_dquots");
121 qm_dqzone = xqm->qm_dqzone;
122 } else
123 xqm->qm_dqzone = qm_dqzone;
124
Rusty Russell8e1f9362007-07-17 04:03:17 -0700125 register_shrinker(&xfs_qm_shaker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /*
128 * The t_dqinfo portion of transactions.
129 */
130 if (!qm_dqtrxzone) {
131 xqm->qm_dqtrxzone = kmem_zone_init(sizeof(xfs_dquot_acct_t),
132 "xfs_dqtrx");
133 qm_dqtrxzone = xqm->qm_dqtrxzone;
134 } else
135 xqm->qm_dqtrxzone = qm_dqtrxzone;
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 xqm->qm_nrefs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return xqm;
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000139
140 out_free_udqhash:
141 kmem_free_large(udqhash);
142 out:
143 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146/*
147 * Destroy the global quota manager when its reference count goes to zero.
148 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000149STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150xfs_qm_destroy(
151 struct xfs_qm *xqm)
152{
153 int hsize, i;
154
155 ASSERT(xqm != NULL);
156 ASSERT(xqm->qm_nrefs == 0);
Christoph Hellwig80a376b2011-12-06 21:58:16 +0000157
Rusty Russell8e1f9362007-07-17 04:03:17 -0700158 unregister_shrinker(&xfs_qm_shaker);
Christoph Hellwig80a376b2011-12-06 21:58:16 +0000159
160 mutex_lock(&xqm->qm_dqfrlist_lock);
161 ASSERT(list_empty(&xqm->qm_dqfrlist));
162 mutex_unlock(&xqm->qm_dqfrlist_lock);
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 hsize = xqm->qm_dqhashmask + 1;
165 for (i = 0; i < hsize; i++) {
166 xfs_qm_list_destroy(&(xqm->qm_usr_dqhtable[i]));
167 xfs_qm_list_destroy(&(xqm->qm_grp_dqhtable[i]));
168 }
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000169 kmem_free_large(xqm->qm_usr_dqhtable);
170 kmem_free_large(xqm->qm_grp_dqhtable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 xqm->qm_usr_dqhtable = NULL;
172 xqm->qm_grp_dqhtable = NULL;
173 xqm->qm_dqhashmask = 0;
Dave Chinner3a8406f2010-04-13 15:06:52 +1000174
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000175 kmem_free(xqm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
178/*
179 * Called at mount time to let XQM know that another file system is
180 * starting quotas. This isn't crucial information as the individual mount
181 * structures are pretty independent, but it helps the XQM keep a
182 * global view of what's going on.
183 */
184/* ARGSUSED */
185STATIC int
186xfs_qm_hold_quotafs_ref(
187 struct xfs_mount *mp)
188{
189 /*
190 * Need to lock the xfs_Gqm structure for things like this. For example,
191 * the structure could disappear between the entry to this routine and
192 * a HOLD operation if not locked.
193 */
Christoph Hellwige2494582009-02-09 08:38:39 +0100194 mutex_lock(&xfs_Gqm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000196 if (!xfs_Gqm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 xfs_Gqm = xfs_Gqm_init();
Julia Lawall38e712a2010-05-26 15:57:23 +0000198 if (!xfs_Gqm) {
199 mutex_unlock(&xfs_Gqm_lock);
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000200 return ENOMEM;
Julia Lawall38e712a2010-05-26 15:57:23 +0000201 }
Christoph Hellwigbdfb0432010-01-20 21:55:30 +0000202 }
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 /*
205 * We can keep a list of all filesystems with quotas mounted for
206 * debugging and statistical purposes, but ...
207 * Just take a reference and get out.
208 */
Christoph Hellwige2494582009-02-09 08:38:39 +0100209 xfs_Gqm->qm_nrefs++;
210 mutex_unlock(&xfs_Gqm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 return 0;
213}
214
215
216/*
217 * Release the reference that a filesystem took at mount time,
218 * so that we know when we need to destroy the entire quota manager.
219 */
220/* ARGSUSED */
221STATIC void
222xfs_qm_rele_quotafs_ref(
223 struct xfs_mount *mp)
224{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 ASSERT(xfs_Gqm);
226 ASSERT(xfs_Gqm->qm_nrefs > 0);
227
228 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 * Destroy the entire XQM. If somebody mounts with quotaon, this'll
230 * be restarted.
231 */
Christoph Hellwige2494582009-02-09 08:38:39 +0100232 mutex_lock(&xfs_Gqm_lock);
233 if (--xfs_Gqm->qm_nrefs == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 xfs_qm_destroy(xfs_Gqm);
235 xfs_Gqm = NULL;
236 }
Christoph Hellwige2494582009-02-09 08:38:39 +0100237 mutex_unlock(&xfs_Gqm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
240/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 * Just destroy the quotainfo structure.
242 */
243void
Christoph Hellwig7d095252009-06-08 15:33:32 +0200244xfs_qm_unmount(
245 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Christoph Hellwig7d095252009-06-08 15:33:32 +0200247 if (mp->m_quotainfo) {
Christoph Hellwig8112e9d2010-04-20 17:02:29 +1000248 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 xfs_qm_destroy_quotainfo(mp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
253
254/*
255 * This is called from xfs_mountfs to start quotas and initialize all
256 * necessary data structures like quotainfo. This is also responsible for
257 * running a quotacheck as necessary. We are guaranteed that the superblock
258 * is consistently read in at this point.
David Chinner53aa7912008-04-10 12:20:31 +1000259 *
260 * If we fail here, the mount will continue with quota turned off. We don't
261 * need to inidicate success or failure at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 */
David Chinner53aa7912008-04-10 12:20:31 +1000263void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264xfs_qm_mount_quotas(
Christoph Hellwig42490232008-08-13 16:49:32 +1000265 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 int error = 0;
268 uint sbf;
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 /*
271 * If quotas on realtime volumes is not supported, we disable
272 * quotas immediately.
273 */
274 if (mp->m_sb.sb_rextents) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100275 xfs_notice(mp, "Cannot turn on quotas for realtime filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 mp->m_qflags = 0;
277 goto write_changes;
278 }
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Nathan Scott155ffd02005-09-02 16:43:48 +1000281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /*
283 * Allocate the quotainfo structure inside the mount struct, and
284 * create quotainode(s), and change/rev superblock if necessary.
285 */
David Chinner53aa7912008-04-10 12:20:31 +1000286 error = xfs_qm_init_quotainfo(mp);
287 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /*
289 * We must turn off quotas.
290 */
291 ASSERT(mp->m_quotainfo == NULL);
292 mp->m_qflags = 0;
293 goto write_changes;
294 }
295 /*
296 * If any of the quotas are not consistent, do a quotacheck.
297 */
Christoph Hellwig42490232008-08-13 16:49:32 +1000298 if (XFS_QM_NEED_QUOTACHECK(mp)) {
David Chinner53aa7912008-04-10 12:20:31 +1000299 error = xfs_qm_quotacheck(mp);
300 if (error) {
301 /* Quotacheck failed and disabled quotas. */
302 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000305 /*
306 * If one type of quotas is off, then it will lose its
307 * quotachecked status, since we won't be doing accounting for
308 * that type anymore.
309 */
David Chinner53aa7912008-04-10 12:20:31 +1000310 if (!XFS_IS_UQUOTA_ON(mp))
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000311 mp->m_qflags &= ~XFS_UQUOTA_CHKD;
David Chinner53aa7912008-04-10 12:20:31 +1000312 if (!(XFS_IS_GQUOTA_ON(mp) || XFS_IS_PQUOTA_ON(mp)))
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000313 mp->m_qflags &= ~XFS_OQUOTA_CHKD;
Nathan Scott155ffd02005-09-02 16:43:48 +1000314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 write_changes:
316 /*
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000317 * We actually don't have to acquire the m_sb_lock at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 * This can only be called from mount, and that's single threaded. XXX
319 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000320 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 sbf = mp->m_sb.sb_qflags;
322 mp->m_sb.sb_qflags = mp->m_qflags & XFS_MOUNT_QUOTA_ALL;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000323 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 if (sbf != (mp->m_qflags & XFS_MOUNT_QUOTA_ALL)) {
326 if (xfs_qm_write_sb_changes(mp, XFS_SB_QFLAGS)) {
327 /*
328 * We could only have been turning quotas off.
329 * We aren't in very good shape actually because
330 * the incore structures are convinced that quotas are
331 * off, but the on disk superblock doesn't know that !
332 */
333 ASSERT(!(XFS_IS_QUOTA_RUNNING(mp)));
Dave Chinner53487782011-03-07 10:05:35 +1100334 xfs_alert(mp, "%s: Superblock update failed!",
335 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337 }
338
339 if (error) {
Dave Chinner53487782011-03-07 10:05:35 +1100340 xfs_warn(mp, "Failed to initialize disk quotas.");
Christoph Hellwig7d095252009-06-08 15:33:32 +0200341 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
345/*
346 * Called from the vfsops layer.
347 */
Christoph Hellwige57481d2008-12-03 12:20:36 +0100348void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349xfs_qm_unmount_quotas(
350 xfs_mount_t *mp)
351{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /*
353 * Release the dquots that root inode, et al might be holding,
354 * before we flush quotas and blow away the quotainfo structure.
355 */
356 ASSERT(mp->m_rootip);
357 xfs_qm_dqdetach(mp->m_rootip);
358 if (mp->m_rbmip)
359 xfs_qm_dqdetach(mp->m_rbmip);
360 if (mp->m_rsumip)
361 xfs_qm_dqdetach(mp->m_rsumip);
362
363 /*
Christoph Hellwige57481d2008-12-03 12:20:36 +0100364 * Release the quota inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (mp->m_quotainfo) {
Christoph Hellwige57481d2008-12-03 12:20:36 +0100367 if (mp->m_quotainfo->qi_uquotaip) {
368 IRELE(mp->m_quotainfo->qi_uquotaip);
369 mp->m_quotainfo->qi_uquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Christoph Hellwige57481d2008-12-03 12:20:36 +0100371 if (mp->m_quotainfo->qi_gquotaip) {
372 IRELE(mp->m_quotainfo->qi_gquotaip);
373 mp->m_quotainfo->qi_gquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 }
375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
378/*
379 * Flush all dquots of the given file system to disk. The dquots are
380 * _not_ purged from memory here, just their data written to disk.
381 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000382STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383xfs_qm_dqflush_all(
Christoph Hellwiga7ef9bd2011-12-06 21:58:13 +0000384 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000386 struct xfs_quotainfo *q = mp->m_quotainfo;
387 int recl;
388 struct xfs_dquot *dqp;
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000389 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000391 if (!q)
Jesper Juhl014c2542006-01-15 02:37:08 +0100392 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393again:
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000394 mutex_lock(&q->qi_dqlist_lock);
395 list_for_each_entry(dqp, &q->qi_dqlist, q_mplist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 xfs_dqlock(dqp);
Christoph Hellwig92678552011-12-06 21:58:18 +0000397 if ((dqp->dq_flags & XFS_DQ_FREEING) ||
398 !XFS_DQ_IS_DIRTY(dqp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 xfs_dqunlock(dqp);
400 continue;
401 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 /* XXX a sentinel would be better */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000404 recl = q->qi_dqreclaims;
David Chinnere1f49cf2008-08-13 16:41:43 +1000405 if (!xfs_dqflock_nowait(dqp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 /*
407 * If we can't grab the flush lock then check
408 * to see if the dquot has been flushed delayed
409 * write. If so, grab its buffer and send it
410 * out immediately. We'll be able to acquire
411 * the flush lock when the I/O completes.
412 */
Christoph Hellwig800b4842011-12-06 21:58:14 +0000413 xfs_dqflock_pushbuf_wait(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415 /*
416 * Let go of the mplist lock. We don't want to hold it
417 * across a disk write.
418 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000419 mutex_unlock(&q->qi_dqlist_lock);
Christoph Hellwiga7ef9bd2011-12-06 21:58:13 +0000420 error = xfs_qm_dqflush(dqp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 xfs_dqunlock(dqp);
422 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +0100423 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000425 mutex_lock(&q->qi_dqlist_lock);
426 if (recl != q->qi_dqreclaims) {
427 mutex_unlock(&q->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 /* XXX restart limit */
429 goto again;
430 }
431 }
432
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000433 mutex_unlock(&q->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 /* return ! busy */
Jesper Juhl014c2542006-01-15 02:37:08 +0100435 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
Christoph Hellwig92678552011-12-06 21:58:18 +0000437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438/*
439 * Release the group dquot pointers the user dquots may be
440 * carrying around as a hint. mplist is locked on entry and exit.
441 */
442STATIC void
443xfs_qm_detach_gdquots(
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000444 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000446 struct xfs_quotainfo *q = mp->m_quotainfo;
447 struct xfs_dquot *dqp, *gdqp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 again:
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000450 ASSERT(mutex_is_locked(&q->qi_dqlist_lock));
451 list_for_each_entry(dqp, &q->qi_dqlist, q_mplist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 xfs_dqlock(dqp);
Christoph Hellwig92678552011-12-06 21:58:18 +0000453 if (dqp->dq_flags & XFS_DQ_FREEING) {
454 xfs_dqunlock(dqp);
455 mutex_unlock(&q->qi_dqlist_lock);
456 delay(1);
457 mutex_lock(&q->qi_dqlist_lock);
458 goto again;
459 }
Christoph Hellwig28fb5882011-12-06 21:58:21 +0000460
461 gdqp = dqp->q_gdquot;
462 if (gdqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 dqp->q_gdquot = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 xfs_dqunlock(dqp);
465
Christoph Hellwig28fb5882011-12-06 21:58:21 +0000466 if (gdqp)
467 xfs_qm_dqrele(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469}
470
471/*
472 * Go through all the incore dquots of this file system and take them
473 * off the mplist and hashlist, if the dquot type matches the dqtype
474 * parameter. This is used when turning off quota accounting for
475 * users and/or groups, as well as when the filesystem is unmounting.
476 */
477STATIC int
478xfs_qm_dqpurge_int(
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000479 struct xfs_mount *mp,
480 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000482 struct xfs_quotainfo *q = mp->m_quotainfo;
483 struct xfs_dquot *dqp, *n;
484 uint dqtype;
Christoph Hellwig92678552011-12-06 21:58:18 +0000485 int nmisses = 0;
486 LIST_HEAD (dispose_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000488 if (!q)
Jesper Juhl014c2542006-01-15 02:37:08 +0100489 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 dqtype = (flags & XFS_QMOPT_UQUOTA) ? XFS_DQ_USER : 0;
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000492 dqtype |= (flags & XFS_QMOPT_PQUOTA) ? XFS_DQ_PROJ : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 dqtype |= (flags & XFS_QMOPT_GQUOTA) ? XFS_DQ_GROUP : 0;
494
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000495 mutex_lock(&q->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 /*
498 * In the first pass through all incore dquots of this filesystem,
499 * we release the group dquot pointers the user dquots may be
500 * carrying around as a hint. We need to do this irrespective of
501 * what's being turned off.
502 */
503 xfs_qm_detach_gdquots(mp);
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 /*
Christoph Hellwig92678552011-12-06 21:58:18 +0000506 * Try to get rid of all of the unwanted dquots.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000508 list_for_each_entry_safe(dqp, n, &q->qi_dqlist, q_mplist) {
Christoph Hellwigbe7ffc32011-12-06 21:58:17 +0000509 xfs_dqlock(dqp);
Christoph Hellwig92678552011-12-06 21:58:18 +0000510 if ((dqp->dq_flags & dqtype) != 0 &&
511 !(dqp->dq_flags & XFS_DQ_FREEING)) {
512 if (dqp->q_nrefs == 0) {
513 dqp->dq_flags |= XFS_DQ_FREEING;
514 list_move_tail(&dqp->q_mplist, &dispose_list);
515 } else
516 nmisses++;
Christoph Hellwigbe7ffc32011-12-06 21:58:17 +0000517 }
518 xfs_dqunlock(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000520 mutex_unlock(&q->qi_dqlist_lock);
Christoph Hellwig92678552011-12-06 21:58:18 +0000521
522 list_for_each_entry_safe(dqp, n, &dispose_list, q_mplist)
523 xfs_qm_dqpurge(dqp);
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return nmisses;
526}
527
528int
529xfs_qm_dqpurge_all(
530 xfs_mount_t *mp,
531 uint flags)
532{
533 int ndquots;
534
535 /*
536 * Purge the dquot cache.
537 * None of the dquots should really be busy at this point.
538 */
539 if (mp->m_quotainfo) {
540 while ((ndquots = xfs_qm_dqpurge_int(mp, flags))) {
541 delay(ndquots * 10);
542 }
543 }
544 return 0;
545}
546
547STATIC int
548xfs_qm_dqattach_one(
549 xfs_inode_t *ip,
550 xfs_dqid_t id,
551 uint type,
552 uint doalloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 xfs_dquot_t *udqhint, /* hint */
554 xfs_dquot_t **IO_idqpp)
555{
556 xfs_dquot_t *dqp;
557 int error;
558
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000559 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 error = 0;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 /*
563 * See if we already have it in the inode itself. IO_idqpp is
564 * &i_udquot or &i_gdquot. This made the code look weird, but
565 * made the logic a lot simpler.
566 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100567 dqp = *IO_idqpp;
568 if (dqp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000569 trace_xfs_dqattach_found(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100570 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
572
573 /*
574 * udqhint is the i_udquot field in inode, and is non-NULL only
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000575 * when the type arg is group/project. Its purpose is to save a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * lookup by dqid (xfs_qm_dqget) by caching a group dquot inside
577 * the user dquot.
578 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100579 if (udqhint) {
580 ASSERT(type == XFS_DQ_GROUP || type == XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 xfs_dqlock(udqhint);
582
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100583 /*
584 * No need to take dqlock to look at the id.
585 *
586 * The ID can't change until it gets reclaimed, and it won't
587 * be reclaimed as long as we have a ref from inode and we
588 * hold the ilock.
589 */
590 dqp = udqhint->q_gdquot;
591 if (dqp && be32_to_cpu(dqp->q_core.d_id) == id) {
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100592 ASSERT(*IO_idqpp == NULL);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100593
Christoph Hellwig78e55892011-12-06 21:58:22 +0000594 *IO_idqpp = xfs_qm_dqhold(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100596 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100598
599 /*
600 * We can't hold a dquot lock when we call the dqget code.
601 * We'll deadlock in no time, because of (not conforming to)
602 * lock ordering - the inodelock comes before any dquot lock,
603 * and we may drop and reacquire the ilock in xfs_qm_dqget().
604 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100606 }
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 /*
609 * Find the dquot from somewhere. This bumps the
610 * reference count of dquot and returns it locked.
611 * This can return ENOENT if dquot didn't exist on
612 * disk and we didn't ask it to allocate;
613 * ESRCH if quotas got turned off suddenly.
614 */
Mitsuo Hayasakadb3e74b2011-11-10 01:33:10 +0000615 error = xfs_qm_dqget(ip->i_mount, ip, id, type,
616 doalloc | XFS_QMOPT_DOWARN, &dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100617 if (error)
618 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000620 trace_xfs_dqattach_get(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 /*
623 * dqget may have dropped and re-acquired the ilock, but it guarantees
624 * that the dquot returned is the one that should go in the inode.
625 */
626 *IO_idqpp = dqp;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100627 xfs_dqunlock(dqp);
628 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631
632/*
633 * Given a udquot and gdquot, attach a ptr to the group dquot in the
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000634 * udquot as a hint for future lookups.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 */
636STATIC void
637xfs_qm_dqattach_grouphint(
638 xfs_dquot_t *udq,
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100639 xfs_dquot_t *gdq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
641 xfs_dquot_t *tmp;
642
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100643 xfs_dqlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000645 tmp = udq->q_gdquot;
646 if (tmp) {
647 if (tmp == gdq)
648 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 udq->q_gdquot = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 xfs_qm_dqrele(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653
Christoph Hellwig78e55892011-12-06 21:58:22 +0000654 udq->q_gdquot = xfs_qm_dqhold(gdq);
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000655done:
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100656 xfs_dqunlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
659
660/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000661 * Given a locked inode, attach dquot(s) to it, taking U/G/P-QUOTAON
662 * into account.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 * If XFS_QMOPT_DQALLOC, the dquot(s) will be allocated if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 * Inode may get unlocked and relocked in here, and the caller must deal with
665 * the consequences.
666 */
667int
Christoph Hellwig7d095252009-06-08 15:33:32 +0200668xfs_qm_dqattach_locked(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 xfs_inode_t *ip,
670 uint flags)
671{
672 xfs_mount_t *mp = ip->i_mount;
673 uint nquotas = 0;
674 int error = 0;
675
Christoph Hellwig7d095252009-06-08 15:33:32 +0200676 if (!XFS_IS_QUOTA_RUNNING(mp) ||
677 !XFS_IS_QUOTA_ON(mp) ||
678 !XFS_NOT_DQATTACHED(mp, ip) ||
679 ip->i_ino == mp->m_sb.sb_uquotino ||
680 ip->i_ino == mp->m_sb.sb_gquotino)
Jesper Juhl014c2542006-01-15 02:37:08 +0100681 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Christoph Hellwig7d095252009-06-08 15:33:32 +0200683 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 if (XFS_IS_UQUOTA_ON(mp)) {
686 error = xfs_qm_dqattach_one(ip, ip->i_d.di_uid, XFS_DQ_USER,
687 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 NULL, &ip->i_udquot);
689 if (error)
690 goto done;
691 nquotas++;
692 }
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000693
694 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000695 if (XFS_IS_OQUOTA_ON(mp)) {
696 error = XFS_IS_GQUOTA_ON(mp) ?
697 xfs_qm_dqattach_one(ip, ip->i_d.di_gid, XFS_DQ_GROUP,
698 flags & XFS_QMOPT_DQALLOC,
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000699 ip->i_udquot, &ip->i_gdquot) :
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000700 xfs_qm_dqattach_one(ip, xfs_get_projid(ip), XFS_DQ_PROJ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 ip->i_udquot, &ip->i_gdquot);
703 /*
704 * Don't worry about the udquot that we may have
705 * attached above. It'll get detached, if not already.
706 */
707 if (error)
708 goto done;
709 nquotas++;
710 }
711
712 /*
713 * Attach this group quota to the user quota as a hint.
714 * This WON'T, in general, result in a thrash.
715 */
716 if (nquotas == 2) {
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000717 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 ASSERT(ip->i_udquot);
719 ASSERT(ip->i_gdquot);
720
721 /*
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000722 * We do not have i_udquot locked at this point, but this check
723 * is OK since we don't depend on the i_gdquot to be accurate
724 * 100% all the time. It is just a hint, and this will
725 * succeed in general.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 */
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000727 if (ip->i_udquot->q_gdquot != ip->i_gdquot)
728 xfs_qm_dqattach_grouphint(ip->i_udquot, ip->i_gdquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730
Christoph Hellwig7d095252009-06-08 15:33:32 +0200731 done:
Christoph Hellwigea15ab32011-07-13 13:43:50 +0200732#ifdef DEBUG
733 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (XFS_IS_UQUOTA_ON(mp))
735 ASSERT(ip->i_udquot);
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000736 if (XFS_IS_OQUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 ASSERT(ip->i_gdquot);
738 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200739 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740#endif
Christoph Hellwig7d095252009-06-08 15:33:32 +0200741 return error;
742}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Christoph Hellwig7d095252009-06-08 15:33:32 +0200744int
745xfs_qm_dqattach(
746 struct xfs_inode *ip,
747 uint flags)
748{
749 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Christoph Hellwig7d095252009-06-08 15:33:32 +0200751 xfs_ilock(ip, XFS_ILOCK_EXCL);
752 error = xfs_qm_dqattach_locked(ip, flags);
753 xfs_iunlock(ip, XFS_ILOCK_EXCL);
754
Jesper Juhl014c2542006-01-15 02:37:08 +0100755 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
758/*
759 * Release dquots (and their references) if any.
760 * The inode should be locked EXCL except when this's called by
761 * xfs_ireclaim.
762 */
763void
764xfs_qm_dqdetach(
765 xfs_inode_t *ip)
766{
767 if (!(ip->i_udquot || ip->i_gdquot))
768 return;
769
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000770 trace_xfs_dquot_dqdetach(ip);
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 ASSERT(ip->i_ino != ip->i_mount->m_sb.sb_uquotino);
773 ASSERT(ip->i_ino != ip->i_mount->m_sb.sb_gquotino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (ip->i_udquot) {
775 xfs_qm_dqrele(ip->i_udquot);
776 ip->i_udquot = NULL;
777 }
778 if (ip->i_gdquot) {
779 xfs_qm_dqrele(ip->i_gdquot);
780 ip->i_gdquot = NULL;
781 }
782}
783
Christoph Hellwiga4edd1d2009-01-19 02:03:11 +0100784/*
785 * The hash chains and the mplist use the same xfs_dqhash structure as
786 * their list head, but we can take the mplist qh_lock and one of the
787 * hash qh_locks at the same time without any problem as they aren't
788 * related.
789 */
790static struct lock_class_key xfs_quota_mplist_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792/*
793 * This initializes all the quota information that's kept in the
794 * mount structure
795 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000796STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797xfs_qm_init_quotainfo(
798 xfs_mount_t *mp)
799{
800 xfs_quotainfo_t *qinf;
801 int error;
802 xfs_dquot_t *dqp;
803
804 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
805
806 /*
807 * Tell XQM that we exist as soon as possible.
808 */
809 if ((error = xfs_qm_hold_quotafs_ref(mp))) {
Jesper Juhl014c2542006-01-15 02:37:08 +0100810 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812
813 qinf = mp->m_quotainfo = kmem_zalloc(sizeof(xfs_quotainfo_t), KM_SLEEP);
814
815 /*
816 * See if quotainodes are setup, and if not, allocate them,
817 * and change the superblock accordingly.
818 */
819 if ((error = xfs_qm_init_quotainos(mp))) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000820 kmem_free(qinf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 mp->m_quotainfo = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +0100822 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824
Dave Chinner3a254042010-04-13 15:06:48 +1000825 INIT_LIST_HEAD(&qinf->qi_dqlist);
826 mutex_init(&qinf->qi_dqlist_lock);
827 lockdep_set_class(&qinf->qi_dqlist_lock, &xfs_quota_mplist_class);
Christoph Hellwiga4edd1d2009-01-19 02:03:11 +0100828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 qinf->qi_dqreclaims = 0;
830
831 /* mutex used to serialize quotaoffs */
Jes Sorensen794ee1b2006-01-09 15:59:21 -0800832 mutex_init(&qinf->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 /* Precalc some constants */
835 qinf->qi_dqchunklen = XFS_FSB_TO_BB(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
836 ASSERT(qinf->qi_dqchunklen);
837 qinf->qi_dqperchunk = BBTOB(qinf->qi_dqchunklen);
838 do_div(qinf->qi_dqperchunk, sizeof(xfs_dqblk_t));
839
840 mp->m_qflags |= (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_CHKD);
841
842 /*
843 * We try to get the limits from the superuser's limits fields.
844 * This is quite hacky, but it is standard quota practice.
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000845 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 * We look at the USR dquot with id == 0 first, but if user quotas
847 * are not enabled we goto the GRP dquot with id == 0.
848 * We don't really care to keep separate default limits for user
849 * and group quotas, at least not at this point.
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000850 *
851 * Since we may not have done a quotacheck by this point, just read
852 * the dquot without attaching it to any hashtables or lists.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 */
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000854 error = xfs_qm_dqread(mp, 0,
855 XFS_IS_UQUOTA_RUNNING(mp) ? XFS_DQ_USER :
856 (XFS_IS_GQUOTA_RUNNING(mp) ? XFS_DQ_GROUP :
857 XFS_DQ_PROJ),
858 XFS_QMOPT_DOWARN, &dqp);
859 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 xfs_disk_dquot_t *ddqp = &dqp->q_core;
861
862 /*
863 * The warnings and timers set the grace period given to
864 * a user or group before he or she can not perform any
865 * more writing. If it is zero, a default is used.
866 */
Christoph Hellwig1149d962005-11-02 15:01:12 +1100867 qinf->qi_btimelimit = ddqp->d_btimer ?
868 be32_to_cpu(ddqp->d_btimer) : XFS_QM_BTIMELIMIT;
869 qinf->qi_itimelimit = ddqp->d_itimer ?
870 be32_to_cpu(ddqp->d_itimer) : XFS_QM_ITIMELIMIT;
871 qinf->qi_rtbtimelimit = ddqp->d_rtbtimer ?
872 be32_to_cpu(ddqp->d_rtbtimer) : XFS_QM_RTBTIMELIMIT;
873 qinf->qi_bwarnlimit = ddqp->d_bwarns ?
874 be16_to_cpu(ddqp->d_bwarns) : XFS_QM_BWARNLIMIT;
875 qinf->qi_iwarnlimit = ddqp->d_iwarns ?
876 be16_to_cpu(ddqp->d_iwarns) : XFS_QM_IWARNLIMIT;
877 qinf->qi_rtbwarnlimit = ddqp->d_rtbwarns ?
878 be16_to_cpu(ddqp->d_rtbwarns) : XFS_QM_RTBWARNLIMIT;
879 qinf->qi_bhardlimit = be64_to_cpu(ddqp->d_blk_hardlimit);
880 qinf->qi_bsoftlimit = be64_to_cpu(ddqp->d_blk_softlimit);
881 qinf->qi_ihardlimit = be64_to_cpu(ddqp->d_ino_hardlimit);
882 qinf->qi_isoftlimit = be64_to_cpu(ddqp->d_ino_softlimit);
883 qinf->qi_rtbhardlimit = be64_to_cpu(ddqp->d_rtb_hardlimit);
884 qinf->qi_rtbsoftlimit = be64_to_cpu(ddqp->d_rtb_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 xfs_qm_dqdestroy(dqp);
887 } else {
888 qinf->qi_btimelimit = XFS_QM_BTIMELIMIT;
889 qinf->qi_itimelimit = XFS_QM_ITIMELIMIT;
890 qinf->qi_rtbtimelimit = XFS_QM_RTBTIMELIMIT;
891 qinf->qi_bwarnlimit = XFS_QM_BWARNLIMIT;
892 qinf->qi_iwarnlimit = XFS_QM_IWARNLIMIT;
Nathan Scott06d10dd2005-06-21 15:48:47 +1000893 qinf->qi_rtbwarnlimit = XFS_QM_RTBWARNLIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
895
Jesper Juhl014c2542006-01-15 02:37:08 +0100896 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
899
900/*
901 * Gets called when unmounting a filesystem or when all quotas get
902 * turned off.
903 * This purges the quota inodes, destroys locks and frees itself.
904 */
905void
906xfs_qm_destroy_quotainfo(
907 xfs_mount_t *mp)
908{
909 xfs_quotainfo_t *qi;
910
911 qi = mp->m_quotainfo;
912 ASSERT(qi != NULL);
913 ASSERT(xfs_Gqm != NULL);
914
915 /*
916 * Release the reference that XQM kept, so that we know
917 * when the XQM structure should be freed. We cannot assume
918 * that xfs_Gqm is non-null after this point.
919 */
920 xfs_qm_rele_quotafs_ref(mp);
921
Dave Chinner3a254042010-04-13 15:06:48 +1000922 ASSERT(list_empty(&qi->qi_dqlist));
923 mutex_destroy(&qi->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 if (qi->qi_uquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +1000926 IRELE(qi->qi_uquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 qi->qi_uquotaip = NULL; /* paranoia */
928 }
929 if (qi->qi_gquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +1000930 IRELE(qi->qi_gquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 qi->qi_gquotaip = NULL;
932 }
933 mutex_destroy(&qi->qi_quotaofflock);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000934 kmem_free(qi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 mp->m_quotainfo = NULL;
936}
937
938
939
940/* ------------------- PRIVATE STATIC FUNCTIONS ----------------------- */
941
942/* ARGSUSED */
943STATIC void
944xfs_qm_list_init(
945 xfs_dqlist_t *list,
946 char *str,
947 int n)
948{
Jes Sorensen794ee1b2006-01-09 15:59:21 -0800949 mutex_init(&list->qh_lock);
Dave Chinnere6a81f12010-04-13 15:06:51 +1000950 INIT_LIST_HEAD(&list->qh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 list->qh_version = 0;
952 list->qh_nelems = 0;
953}
954
955STATIC void
956xfs_qm_list_destroy(
957 xfs_dqlist_t *list)
958{
959 mutex_destroy(&(list->qh_lock));
960}
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962/*
963 * Create an inode and return with a reference already taken, but unlocked
964 * This is how we create quota inodes
965 */
966STATIC int
967xfs_qm_qino_alloc(
968 xfs_mount_t *mp,
969 xfs_inode_t **ip,
970 __int64_t sbfields,
971 uint flags)
972{
973 xfs_trans_t *tp;
974 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 int committed;
976
Nathan Scott061f7202006-01-11 15:27:50 +1100977 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QINOCREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if ((error = xfs_trans_reserve(tp,
979 XFS_QM_QINOCREATE_SPACE_RES(mp),
980 XFS_CREATE_LOG_RES(mp), 0,
981 XFS_TRANS_PERM_LOG_RES,
982 XFS_CREATE_LOG_COUNT))) {
983 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +0100984 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000987 error = xfs_dir_ialloc(&tp, NULL, S_IFREG, 1, 0, 0, 1, ip, &committed);
988 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES |
990 XFS_TRANS_ABORT);
Jesper Juhl014c2542006-01-15 02:37:08 +0100991 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
993
994 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 * Make the changes in the superblock, and log those too.
996 * sbfields arg may contain fields other than *QUOTINO;
997 * VERSIONNUM for example.
998 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000999 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (flags & XFS_QMOPT_SBVERSION) {
Eric Sandeen62118702008-03-06 13:44:28 +11001001 ASSERT(!xfs_sb_version_hasquota(&mp->m_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 ASSERT((sbfields & (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
1003 XFS_SB_GQUOTINO | XFS_SB_QFLAGS)) ==
1004 (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
1005 XFS_SB_GQUOTINO | XFS_SB_QFLAGS));
1006
Eric Sandeen62118702008-03-06 13:44:28 +11001007 xfs_sb_version_addquota(&mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 mp->m_sb.sb_uquotino = NULLFSINO;
1009 mp->m_sb.sb_gquotino = NULLFSINO;
1010
1011 /* qflags will get updated _after_ quotacheck */
1012 mp->m_sb.sb_qflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 }
1014 if (flags & XFS_QMOPT_UQUOTA)
1015 mp->m_sb.sb_uquotino = (*ip)->i_ino;
1016 else
1017 mp->m_sb.sb_gquotino = (*ip)->i_ino;
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001018 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 xfs_mod_sb(tp, sbfields);
1020
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001021 if ((error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES))) {
Dave Chinner53487782011-03-07 10:05:35 +11001022 xfs_alert(mp, "%s failed (error %d)!", __func__, error);
Jesper Juhl014c2542006-01-15 02:37:08 +01001023 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001025 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
1028
David Chinner5b139732008-04-10 12:20:10 +10001029STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030xfs_qm_reset_dqcounts(
1031 xfs_mount_t *mp,
1032 xfs_buf_t *bp,
1033 xfs_dqid_t id,
1034 uint type)
1035{
1036 xfs_disk_dquot_t *ddq;
1037 int j;
1038
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001039 trace_xfs_reset_dqcounts(bp, _RET_IP_);
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 /*
1042 * Reset all counters and timers. They'll be
1043 * started afresh by xfs_qm_quotacheck.
1044 */
1045#ifdef DEBUG
1046 j = XFS_FSB_TO_B(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
1047 do_div(j, sizeof(xfs_dqblk_t));
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001048 ASSERT(mp->m_quotainfo->qi_dqperchunk == j);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049#endif
Chandra Seetharaman62926042011-07-22 23:40:15 +00001050 ddq = bp->b_addr;
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001051 for (j = 0; j < mp->m_quotainfo->qi_dqperchunk; j++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 /*
1053 * Do a sanity check, and if needed, repair the dqblk. Don't
1054 * output any warnings because it's perfectly possible to
Nathan Scottc41564b2006-03-29 08:55:14 +10001055 * find uninitialised dquot blks. See comment in xfs_qm_dqcheck.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 */
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001057 (void) xfs_qm_dqcheck(mp, ddq, id+j, type, XFS_QMOPT_DQREPAIR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 "xfs_quotacheck");
Christoph Hellwig1149d962005-11-02 15:01:12 +11001059 ddq->d_bcount = 0;
1060 ddq->d_icount = 0;
1061 ddq->d_rtbcount = 0;
1062 ddq->d_btimer = 0;
1063 ddq->d_itimer = 0;
1064 ddq->d_rtbtimer = 0;
1065 ddq->d_bwarns = 0;
1066 ddq->d_iwarns = 0;
1067 ddq->d_rtbwarns = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 ddq = (xfs_disk_dquot_t *) ((xfs_dqblk_t *)ddq + 1);
1069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070}
1071
1072STATIC int
1073xfs_qm_dqiter_bufs(
1074 xfs_mount_t *mp,
1075 xfs_dqid_t firstid,
1076 xfs_fsblock_t bno,
1077 xfs_filblks_t blkcnt,
1078 uint flags)
1079{
1080 xfs_buf_t *bp;
1081 int error;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001082 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084 ASSERT(blkcnt > 0);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001085 type = flags & XFS_QMOPT_UQUOTA ? XFS_DQ_USER :
1086 (flags & XFS_QMOPT_PQUOTA ? XFS_DQ_PROJ : XFS_DQ_GROUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 error = 0;
1088
1089 /*
1090 * Blkcnt arg can be a very big number, and might even be
1091 * larger than the log itself. So, we have to break it up into
1092 * manageable-sized transactions.
1093 * Note that we don't start a permanent transaction here; we might
1094 * not be able to get a log reservation for the whole thing up front,
1095 * and we don't really care to either, because we just discard
1096 * everything if we were to crash in the middle of this loop.
1097 */
1098 while (blkcnt--) {
1099 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
1100 XFS_FSB_TO_DADDR(mp, bno),
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001101 mp->m_quotainfo->qi_dqchunklen, 0, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (error)
1103 break;
1104
David Chinner5b139732008-04-10 12:20:10 +10001105 xfs_qm_reset_dqcounts(mp, bp, firstid, type);
Christoph Hellwig61551f12011-08-23 08:28:06 +00001106 xfs_buf_delwri_queue(bp);
1107 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 /*
1109 * goto the next block.
1110 */
1111 bno++;
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001112 firstid += mp->m_quotainfo->qi_dqperchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001114 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115}
1116
1117/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001118 * Iterate over all allocated USR/GRP/PRJ dquots in the system, calling a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 * caller supplied function for every chunk of dquots that we find.
1120 */
1121STATIC int
1122xfs_qm_dqiterate(
1123 xfs_mount_t *mp,
1124 xfs_inode_t *qip,
1125 uint flags)
1126{
1127 xfs_bmbt_irec_t *map;
1128 int i, nmaps; /* number of map entries */
1129 int error; /* return value */
1130 xfs_fileoff_t lblkno;
1131 xfs_filblks_t maxlblkcnt;
1132 xfs_dqid_t firstid;
1133 xfs_fsblock_t rablkno;
1134 xfs_filblks_t rablkcnt;
1135
1136 error = 0;
1137 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001138 * This looks racy, but we can't keep an inode lock across a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 * trans_reserve. But, this gets called during quotacheck, and that
1140 * happens only at mount time which is single threaded.
1141 */
1142 if (qip->i_d.di_nblocks == 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01001143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 map = kmem_alloc(XFS_DQITER_MAP_SIZE * sizeof(*map), KM_SLEEP);
1146
1147 lblkno = 0;
1148 maxlblkcnt = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
1149 do {
1150 nmaps = XFS_DQITER_MAP_SIZE;
1151 /*
1152 * We aren't changing the inode itself. Just changing
1153 * some of its data. No new blocks are added here, and
1154 * the inode is never added to the transaction.
1155 */
1156 xfs_ilock(qip, XFS_ILOCK_SHARED);
Dave Chinner5c8ed202011-09-18 20:40:45 +00001157 error = xfs_bmapi_read(qip, lblkno, maxlblkcnt - lblkno,
1158 map, &nmaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 xfs_iunlock(qip, XFS_ILOCK_SHARED);
1160 if (error)
1161 break;
1162
1163 ASSERT(nmaps <= XFS_DQITER_MAP_SIZE);
1164 for (i = 0; i < nmaps; i++) {
1165 ASSERT(map[i].br_startblock != DELAYSTARTBLOCK);
1166 ASSERT(map[i].br_blockcount);
1167
1168
1169 lblkno += map[i].br_blockcount;
1170
1171 if (map[i].br_startblock == HOLESTARTBLOCK)
1172 continue;
1173
1174 firstid = (xfs_dqid_t) map[i].br_startoff *
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001175 mp->m_quotainfo->qi_dqperchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 /*
1177 * Do a read-ahead on the next extent.
1178 */
1179 if ((i+1 < nmaps) &&
1180 (map[i+1].br_startblock != HOLESTARTBLOCK)) {
1181 rablkcnt = map[i+1].br_blockcount;
1182 rablkno = map[i+1].br_startblock;
1183 while (rablkcnt--) {
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001184 xfs_buf_readahead(mp->m_ddev_targp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 XFS_FSB_TO_DADDR(mp, rablkno),
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001186 mp->m_quotainfo->qi_dqchunklen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 rablkno++;
1188 }
1189 }
1190 /*
1191 * Iterate thru all the blks in the extent and
1192 * reset the counters of all the dquots inside them.
1193 */
1194 if ((error = xfs_qm_dqiter_bufs(mp,
1195 firstid,
1196 map[i].br_startblock,
1197 map[i].br_blockcount,
1198 flags))) {
1199 break;
1200 }
1201 }
1202
1203 if (error)
1204 break;
1205 } while (nmaps > 0);
1206
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001207 kmem_free(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Jesper Juhl014c2542006-01-15 02:37:08 +01001209 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
1212/*
1213 * Called by dqusage_adjust in doing a quotacheck.
Christoph Hellwig52fda112010-09-06 01:44:22 +00001214 *
1215 * Given the inode, and a dquot id this updates both the incore dqout as well
1216 * as the buffer copy. This is so that once the quotacheck is done, we can
1217 * just log all the buffers, as opposed to logging numerous updates to
1218 * individual dquots.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001220STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221xfs_qm_quotacheck_dqadjust(
Christoph Hellwig52fda112010-09-06 01:44:22 +00001222 struct xfs_inode *ip,
1223 xfs_dqid_t id,
1224 uint type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 xfs_qcnt_t nblks,
1226 xfs_qcnt_t rtblks)
1227{
Christoph Hellwig52fda112010-09-06 01:44:22 +00001228 struct xfs_mount *mp = ip->i_mount;
1229 struct xfs_dquot *dqp;
1230 int error;
1231
1232 error = xfs_qm_dqget(mp, ip, id, type,
1233 XFS_QMOPT_DQALLOC | XFS_QMOPT_DOWARN, &dqp);
1234 if (error) {
1235 /*
1236 * Shouldn't be able to turn off quotas here.
1237 */
1238 ASSERT(error != ESRCH);
1239 ASSERT(error != ENOENT);
1240 return error;
1241 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001242
1243 trace_xfs_dqadjust(dqp);
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 /*
1246 * Adjust the inode count and the block count to reflect this inode's
1247 * resource usage.
1248 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001249 be64_add_cpu(&dqp->q_core.d_icount, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 dqp->q_res_icount++;
1251 if (nblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001252 be64_add_cpu(&dqp->q_core.d_bcount, nblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 dqp->q_res_bcount += nblks;
1254 }
1255 if (rtblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001256 be64_add_cpu(&dqp->q_core.d_rtbcount, rtblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 dqp->q_res_rtbcount += rtblks;
1258 }
1259
1260 /*
1261 * Set default limits, adjust timers (since we changed usages)
Christoph Hellwig191f8482010-04-20 17:01:53 +10001262 *
1263 * There are no timers for the default values set in the root dquot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 */
Christoph Hellwig191f8482010-04-20 17:01:53 +10001265 if (dqp->q_core.d_id) {
Christoph Hellwig52fda112010-09-06 01:44:22 +00001266 xfs_qm_adjust_dqlimits(mp, &dqp->q_core);
1267 xfs_qm_adjust_dqtimers(mp, &dqp->q_core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269
1270 dqp->dq_flags |= XFS_DQ_DIRTY;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001271 xfs_qm_dqput(dqp);
1272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
1275STATIC int
1276xfs_qm_get_rtblks(
1277 xfs_inode_t *ip,
1278 xfs_qcnt_t *O_rtblks)
1279{
1280 xfs_filblks_t rtblks; /* total rt blks */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001281 xfs_extnum_t idx; /* extent record index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 xfs_ifork_t *ifp; /* inode fork pointer */
1283 xfs_extnum_t nextents; /* number of extent entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 int error;
1285
1286 ASSERT(XFS_IS_REALTIME_INODE(ip));
1287 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1288 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1289 if ((error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001290 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
1292 rtblks = 0;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001293 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10001294 for (idx = 0; idx < nextents; idx++)
1295 rtblks += xfs_bmbt_get_blockcount(xfs_iext_get_ext(ifp, idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 *O_rtblks = (xfs_qcnt_t)rtblks;
Jesper Juhl014c2542006-01-15 02:37:08 +01001297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
1300/*
1301 * callback routine supplied to bulkstat(). Given an inumber, find its
1302 * dquots and update them to account for resources taken by that inode.
1303 */
1304/* ARGSUSED */
1305STATIC int
1306xfs_qm_dqusage_adjust(
1307 xfs_mount_t *mp, /* mount point for filesystem */
1308 xfs_ino_t ino, /* inode number to get data for */
1309 void __user *buffer, /* not used */
1310 int ubsize, /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 int *ubused, /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 int *res) /* result code value */
1313{
1314 xfs_inode_t *ip;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001315 xfs_qcnt_t nblks, rtblks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 int error;
1317
1318 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1319
1320 /*
1321 * rootino must have its resources accounted for, not so with the quota
1322 * inodes.
1323 */
1324 if (ino == mp->m_sb.sb_uquotino || ino == mp->m_sb.sb_gquotino) {
1325 *res = BULKSTAT_RV_NOTHING;
1326 return XFS_ERROR(EINVAL);
1327 }
1328
1329 /*
1330 * We don't _need_ to take the ilock EXCL. However, the xfs_qm_dqget
1331 * interface expects the inode to be exclusively locked because that's
1332 * the case in all other instances. It's OK that we do this because
1333 * quotacheck is done only at mount time.
1334 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001335 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_EXCL, &ip);
1336 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 *res = BULKSTAT_RV_NOTHING;
Jesper Juhl014c2542006-01-15 02:37:08 +01001338 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340
Christoph Hellwig52fda112010-09-06 01:44:22 +00001341 ASSERT(ip->i_delayed_blks == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Christoph Hellwig52fda112010-09-06 01:44:22 +00001343 if (XFS_IS_REALTIME_INODE(ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 /*
1345 * Walk thru the extent list and count the realtime blocks.
1346 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001347 error = xfs_qm_get_rtblks(ip, &rtblks);
1348 if (error)
1349 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Christoph Hellwig52fda112010-09-06 01:44:22 +00001352 nblks = (xfs_qcnt_t)ip->i_d.di_nblocks - rtblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 /*
1355 * Add the (disk blocks and inode) resources occupied by this
1356 * inode to its dquots. We do this adjustment in the incore dquot,
1357 * and also copy the changes to its buffer.
1358 * We don't care about putting these changes in a transaction
1359 * envelope because if we crash in the middle of a 'quotacheck'
1360 * we have to start from the beginning anyway.
1361 * Once we're done, we'll log all the dquot bufs.
1362 *
Nathan Scottc41564b2006-03-29 08:55:14 +10001363 * The *QUOTA_ON checks below may look pretty racy, but quotachecks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 * and quotaoffs don't race. (Quotachecks happen at mount time only).
1365 */
1366 if (XFS_IS_UQUOTA_ON(mp)) {
Christoph Hellwig52fda112010-09-06 01:44:22 +00001367 error = xfs_qm_quotacheck_dqadjust(ip, ip->i_d.di_uid,
1368 XFS_DQ_USER, nblks, rtblks);
1369 if (error)
1370 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Christoph Hellwig52fda112010-09-06 01:44:22 +00001373 if (XFS_IS_GQUOTA_ON(mp)) {
1374 error = xfs_qm_quotacheck_dqadjust(ip, ip->i_d.di_gid,
1375 XFS_DQ_GROUP, nblks, rtblks);
1376 if (error)
1377 goto error0;
1378 }
1379
1380 if (XFS_IS_PQUOTA_ON(mp)) {
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001381 error = xfs_qm_quotacheck_dqadjust(ip, xfs_get_projid(ip),
Christoph Hellwig52fda112010-09-06 01:44:22 +00001382 XFS_DQ_PROJ, nblks, rtblks);
1383 if (error)
1384 goto error0;
1385 }
1386
1387 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1388 IRELE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 *res = BULKSTAT_RV_DIDONE;
Jesper Juhl014c2542006-01-15 02:37:08 +01001390 return 0;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001391
1392error0:
1393 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1394 IRELE(ip);
1395 *res = BULKSTAT_RV_GIVEUP;
1396 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397}
1398
1399/*
1400 * Walk thru all the filesystem inodes and construct a consistent view
1401 * of the disk quota world. If the quotacheck fails, disable quotas.
1402 */
1403int
1404xfs_qm_quotacheck(
1405 xfs_mount_t *mp)
1406{
1407 int done, count, error;
1408 xfs_ino_t lastino;
1409 size_t structsz;
1410 xfs_inode_t *uip, *gip;
1411 uint flags;
1412
1413 count = INT_MAX;
1414 structsz = 1;
1415 lastino = 0;
1416 flags = 0;
1417
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001418 ASSERT(mp->m_quotainfo->qi_uquotaip || mp->m_quotainfo->qi_gquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1420
1421 /*
1422 * There should be no cached dquots. The (simplistic) quotacheck
1423 * algorithm doesn't like that.
1424 */
Dave Chinner3a254042010-04-13 15:06:48 +10001425 ASSERT(list_empty(&mp->m_quotainfo->qi_dqlist));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Dave Chinner0b932cc2011-03-07 10:08:35 +11001427 xfs_notice(mp, "Quotacheck needed: Please wait.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
1429 /*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001430 * First we go thru all the dquots on disk, USR and GRP/PRJ, and reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 * their counters to zero. We need a clean slate.
1432 * We don't log our changes till later.
1433 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001434 uip = mp->m_quotainfo->qi_uquotaip;
1435 if (uip) {
1436 error = xfs_qm_dqiterate(mp, uip, XFS_QMOPT_UQUOTA);
1437 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 goto error_return;
1439 flags |= XFS_UQUOTA_CHKD;
1440 }
1441
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001442 gip = mp->m_quotainfo->qi_gquotaip;
1443 if (gip) {
1444 error = xfs_qm_dqiterate(mp, gip, XFS_IS_GQUOTA_ON(mp) ?
1445 XFS_QMOPT_GQUOTA : XFS_QMOPT_PQUOTA);
1446 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 goto error_return;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001448 flags |= XFS_OQUOTA_CHKD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
1450
1451 do {
1452 /*
1453 * Iterate thru all the inodes in the file system,
1454 * adjusting the corresponding dquot counters in core.
1455 */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +10001456 error = xfs_bulkstat(mp, &lastino, &count,
1457 xfs_qm_dqusage_adjust,
1458 structsz, NULL, &done);
1459 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 break;
1461
Christoph Hellwig7dce11d2010-06-23 18:11:11 +10001462 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 /*
David Chinner4b8879d2008-04-10 12:20:17 +10001465 * We've made all the changes that we need to make incore.
1466 * Flush them down to disk buffers if everything was updated
1467 * successfully.
1468 */
1469 if (!error)
Christoph Hellwiga7ef9bd2011-12-06 21:58:13 +00001470 error = xfs_qm_dqflush_all(mp);
David Chinner4b8879d2008-04-10 12:20:17 +10001471
1472 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 * We can get this error if we couldn't do a dquot allocation inside
1474 * xfs_qm_dqusage_adjust (via bulkstat). We don't care about the
1475 * dirty dquots that might be cached, we just want to get rid of them
1476 * and turn quotaoff. The dquots won't be attached to any of the inodes
1477 * at this point (because we intentionally didn't in dqget_noattach).
1478 */
1479 if (error) {
Christoph Hellwig8112e9d2010-04-20 17:02:29 +10001480 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 goto error_return;
1482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
1484 /*
1485 * We didn't log anything, because if we crashed, we'll have to
1486 * start the quotacheck from scratch anyway. However, we must make
1487 * sure that our dquot changes are secure before we put the
1488 * quotacheck'd stamp on the superblock. So, here we do a synchronous
1489 * flush.
1490 */
Christoph Hellwiga9add832011-10-10 16:52:52 +00001491 xfs_flush_buftarg(mp->m_ddev_targp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
1493 /*
1494 * If one type of quotas is off, then it will lose its
1495 * quotachecked status, since we won't be doing accounting for
1496 * that type anymore.
1497 */
Chandra Seetharaman4177af32012-01-23 17:31:43 +00001498 mp->m_qflags &= ~XFS_ALL_QUOTA_CHKD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 mp->m_qflags |= flags;
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 error_return:
1502 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001503 xfs_warn(mp,
1504 "Quotacheck: Unsuccessful (Error %d): Disabling quotas.",
1505 error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 /*
1507 * We must turn off quotas.
1508 */
1509 ASSERT(mp->m_quotainfo != NULL);
1510 ASSERT(xfs_Gqm != NULL);
1511 xfs_qm_destroy_quotainfo(mp);
David Chinner31d55772008-04-10 12:20:38 +10001512 if (xfs_mount_reset_sbqflags(mp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001513 xfs_warn(mp,
1514 "Quotacheck: Failed to reset quota flags.");
David Chinner31d55772008-04-10 12:20:38 +10001515 }
Dave Chinner0b932cc2011-03-07 10:08:35 +11001516 } else
1517 xfs_notice(mp, "Quotacheck: Done.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 return (error);
1519}
1520
1521/*
1522 * This is called after the superblock has been read in and we're ready to
1523 * iget the quota inodes.
1524 */
1525STATIC int
1526xfs_qm_init_quotainos(
1527 xfs_mount_t *mp)
1528{
1529 xfs_inode_t *uip, *gip;
1530 int error;
1531 __int64_t sbflags;
1532 uint flags;
1533
1534 ASSERT(mp->m_quotainfo);
1535 uip = gip = NULL;
1536 sbflags = 0;
1537 flags = 0;
1538
1539 /*
1540 * Get the uquota and gquota inodes
1541 */
Eric Sandeen62118702008-03-06 13:44:28 +11001542 if (xfs_sb_version_hasquota(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 if (XFS_IS_UQUOTA_ON(mp) &&
1544 mp->m_sb.sb_uquotino != NULLFSINO) {
1545 ASSERT(mp->m_sb.sb_uquotino > 0);
1546 if ((error = xfs_iget(mp, NULL, mp->m_sb.sb_uquotino,
Dave Chinner7b6259e2010-06-24 11:35:17 +10001547 0, 0, &uip)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 return XFS_ERROR(error);
1549 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001550 if (XFS_IS_OQUOTA_ON(mp) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 mp->m_sb.sb_gquotino != NULLFSINO) {
1552 ASSERT(mp->m_sb.sb_gquotino > 0);
1553 if ((error = xfs_iget(mp, NULL, mp->m_sb.sb_gquotino,
Dave Chinner7b6259e2010-06-24 11:35:17 +10001554 0, 0, &gip))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (uip)
Christoph Hellwig43355092008-03-27 18:01:08 +11001556 IRELE(uip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 return XFS_ERROR(error);
1558 }
1559 }
1560 } else {
1561 flags |= XFS_QMOPT_SBVERSION;
1562 sbflags |= (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
1563 XFS_SB_GQUOTINO | XFS_SB_QFLAGS);
1564 }
1565
1566 /*
1567 * Create the two inodes, if they don't exist already. The changes
1568 * made above will get added to a transaction and logged in one of
1569 * the qino_alloc calls below. If the device is readonly,
1570 * temporarily switch to read-write to do this.
1571 */
1572 if (XFS_IS_UQUOTA_ON(mp) && uip == NULL) {
1573 if ((error = xfs_qm_qino_alloc(mp, &uip,
1574 sbflags | XFS_SB_UQUOTINO,
1575 flags | XFS_QMOPT_UQUOTA)))
1576 return XFS_ERROR(error);
1577
1578 flags &= ~XFS_QMOPT_SBVERSION;
1579 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001580 if (XFS_IS_OQUOTA_ON(mp) && gip == NULL) {
1581 flags |= (XFS_IS_GQUOTA_ON(mp) ?
1582 XFS_QMOPT_GQUOTA : XFS_QMOPT_PQUOTA);
1583 error = xfs_qm_qino_alloc(mp, &gip,
1584 sbflags | XFS_SB_GQUOTINO, flags);
1585 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 if (uip)
Christoph Hellwig43355092008-03-27 18:01:08 +11001587 IRELE(uip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
1589 return XFS_ERROR(error);
1590 }
1591 }
1592
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001593 mp->m_quotainfo->qi_uquotaip = uip;
1594 mp->m_quotainfo->qi_gquotaip = gip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Jesper Juhl014c2542006-01-15 02:37:08 +01001596 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597}
1598
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001599STATIC void
1600xfs_qm_dqfree_one(
1601 struct xfs_dquot *dqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001603 struct xfs_mount *mp = dqp->q_mount;
1604 struct xfs_quotainfo *qi = mp->m_quotainfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001606 mutex_lock(&dqp->q_hash->qh_lock);
1607 list_del_init(&dqp->q_hashlist);
1608 dqp->q_hash->qh_version++;
1609 mutex_unlock(&dqp->q_hash->qh_lock);
Christoph Hellwigbf72de32011-12-06 21:58:19 +00001610
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001611 mutex_lock(&qi->qi_dqlist_lock);
1612 list_del_init(&dqp->q_mplist);
1613 qi->qi_dquots--;
1614 qi->qi_dqreclaims++;
1615 mutex_unlock(&qi->qi_dqlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001617 xfs_qm_dqdestroy(dqp);
1618}
Christoph Hellwigbe7ffc32011-12-06 21:58:17 +00001619
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001620STATIC void
1621xfs_qm_dqreclaim_one(
1622 struct xfs_dquot *dqp,
1623 struct list_head *dispose_list)
1624{
1625 struct xfs_mount *mp = dqp->q_mount;
1626 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001628 if (!xfs_dqlock_nowait(dqp))
1629 goto out_busy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001631 /*
1632 * This dquot has acquired a reference in the meantime remove it from
1633 * the freelist and try again.
1634 */
1635 if (dqp->q_nrefs) {
Christoph Hellwig92678552011-12-06 21:58:18 +00001636 xfs_dqunlock(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001638 trace_xfs_dqreclaim_want(dqp);
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001639 XFS_STATS_INC(xs_qm_dqwants);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001640
Dave Chinner3a8406f2010-04-13 15:06:52 +10001641 list_del_init(&dqp->q_freelist);
1642 xfs_Gqm->qm_dqfrlist_cnt--;
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001643 XFS_STATS_DEC(xs_qm_dquot_unused);
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001644 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
Christoph Hellwig92678552011-12-06 21:58:18 +00001646
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001647 ASSERT(dqp->q_hash);
1648 ASSERT(!list_empty(&dqp->q_mplist));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001650 /*
1651 * Try to grab the flush lock. If this dquot is in the process of
1652 * getting flushed to disk, we don't want to reclaim it.
1653 */
1654 if (!xfs_dqflock_nowait(dqp))
1655 goto out_busy;
Dave Chinner368e1362010-04-13 15:06:50 +10001656
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001657 /*
1658 * We have the flush lock so we know that this is not in the
1659 * process of being flushed. So, if this is dirty, flush it
1660 * DELWRI so that we don't get a freelist infested with
1661 * dirty dquots.
1662 */
1663 if (XFS_DQ_IS_DIRTY(dqp)) {
1664 trace_xfs_dqreclaim_dirty(dqp);
Dave Chinner368e1362010-04-13 15:06:50 +10001665
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001666 /*
1667 * We flush it delayed write, so don't bother releasing the
1668 * freelist lock.
1669 */
1670 error = xfs_qm_dqflush(dqp, 0);
1671 if (error) {
1672 xfs_warn(mp, "%s: dquot %p flush failed",
1673 __func__, dqp);
1674 }
1675
1676 /*
1677 * Give the dquot another try on the freelist, as the
1678 * flushing will take some time.
1679 */
1680 goto out_busy;
Dave Chinner368e1362010-04-13 15:06:50 +10001681 }
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001682 xfs_dqfunlock(dqp);
1683
1684 /*
1685 * Prevent lookups now that we are past the point of no return.
1686 */
1687 dqp->dq_flags |= XFS_DQ_FREEING;
1688 xfs_dqunlock(dqp);
1689
1690 ASSERT(dqp->q_nrefs == 0);
1691 list_move_tail(&dqp->q_freelist, dispose_list);
1692 xfs_Gqm->qm_dqfrlist_cnt--;
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001693 XFS_STATS_DEC(xs_qm_dquot_unused);
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001694
1695 trace_xfs_dqreclaim_done(dqp);
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001696 XFS_STATS_INC(xs_qm_dqreclaims);
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001697 return;
1698
1699out_busy:
1700 xfs_dqunlock(dqp);
1701
1702 /*
1703 * Move the dquot to the tail of the list so that we don't spin on it.
1704 */
1705 list_move_tail(&dqp->q_freelist, &xfs_Gqm->qm_dqfrlist);
1706
1707 trace_xfs_dqreclaim_busy(dqp);
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001708 XFS_STATS_INC(xs_qm_dqreclaim_misses);
Dave Chinner368e1362010-04-13 15:06:50 +10001709}
1710
Dave Chinner368e1362010-04-13 15:06:50 +10001711STATIC int
Dave Chinner7f8275d2010-07-19 14:56:17 +10001712xfs_qm_shake(
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001713 struct shrinker *shrink,
1714 struct shrink_control *sc)
Dave Chinner368e1362010-04-13 15:06:50 +10001715{
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001716 int nr_to_scan = sc->nr_to_scan;
1717 LIST_HEAD (dispose_list);
1718 struct xfs_dquot *dqp;
Dave Chinner368e1362010-04-13 15:06:50 +10001719
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001720 if ((sc->gfp_mask & (__GFP_FS|__GFP_WAIT)) != (__GFP_FS|__GFP_WAIT))
Dave Chinner368e1362010-04-13 15:06:50 +10001721 return 0;
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001722 if (!nr_to_scan)
1723 goto out;
Dave Chinner368e1362010-04-13 15:06:50 +10001724
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001725 mutex_lock(&xfs_Gqm->qm_dqfrlist_lock);
1726 while (!list_empty(&xfs_Gqm->qm_dqfrlist)) {
1727 if (nr_to_scan-- <= 0)
1728 break;
1729 dqp = list_first_entry(&xfs_Gqm->qm_dqfrlist, struct xfs_dquot,
1730 q_freelist);
1731 xfs_qm_dqreclaim_one(dqp, &dispose_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 }
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001733 mutex_unlock(&xfs_Gqm->qm_dqfrlist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001735 while (!list_empty(&dispose_list)) {
1736 dqp = list_first_entry(&dispose_list, struct xfs_dquot,
1737 q_freelist);
1738 list_del_init(&dqp->q_freelist);
1739 xfs_qm_dqfree_one(dqp);
1740 }
1741out:
1742 return (xfs_Gqm->qm_dqfrlist_cnt / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743}
1744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745/*
1746 * Start a transaction and write the incore superblock changes to
1747 * disk. flags parameter indicates which fields have changed.
1748 */
1749int
1750xfs_qm_write_sb_changes(
1751 xfs_mount_t *mp,
1752 __int64_t flags)
1753{
1754 xfs_trans_t *tp;
1755 int error;
1756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
1758 if ((error = xfs_trans_reserve(tp, 0,
1759 mp->m_sb.sb_sectsize + 128, 0,
1760 0,
1761 XFS_DEFAULT_LOG_COUNT))) {
1762 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001763 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
1765
1766 xfs_mod_sb(tp, flags);
David Chinnere5720ee2008-04-10 12:21:18 +10001767 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
David Chinnere5720ee2008-04-10 12:21:18 +10001769 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
1771
1772
1773/* --------------- utility functions for vnodeops ---------------- */
1774
1775
1776/*
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001777 * Given an inode, a uid, gid and prid make sure that we have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 * allocated relevant dquot(s) on disk, and that we won't exceed inode
1779 * quotas by creating this file.
1780 * This also attaches dquot(s) to the given inode after locking it,
1781 * and returns the dquots corresponding to the uid and/or gid.
1782 *
1783 * in : inode (unlocked)
1784 * out : udquot, gdquot with references taken and unlocked
1785 */
1786int
1787xfs_qm_vop_dqalloc(
Christoph Hellwig7d095252009-06-08 15:33:32 +02001788 struct xfs_inode *ip,
1789 uid_t uid,
1790 gid_t gid,
1791 prid_t prid,
1792 uint flags,
1793 struct xfs_dquot **O_udqpp,
1794 struct xfs_dquot **O_gdqpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
Christoph Hellwig7d095252009-06-08 15:33:32 +02001796 struct xfs_mount *mp = ip->i_mount;
1797 struct xfs_dquot *uq, *gq;
1798 int error;
1799 uint lockflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Christoph Hellwig7d095252009-06-08 15:33:32 +02001801 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 return 0;
1803
1804 lockflags = XFS_ILOCK_EXCL;
1805 xfs_ilock(ip, lockflags);
1806
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001807 if ((flags & XFS_QMOPT_INHERIT) && XFS_INHERIT_GID(ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 gid = ip->i_d.di_gid;
1809
1810 /*
1811 * Attach the dquot(s) to this inode, doing a dquot allocation
1812 * if necessary. The dquot(s) will not be locked.
1813 */
1814 if (XFS_NOT_DQATTACHED(mp, ip)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001815 error = xfs_qm_dqattach_locked(ip, XFS_QMOPT_DQALLOC);
1816 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 xfs_iunlock(ip, lockflags);
Jesper Juhl014c2542006-01-15 02:37:08 +01001818 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 }
1820 }
1821
1822 uq = gq = NULL;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001823 if ((flags & XFS_QMOPT_UQUOTA) && XFS_IS_UQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 if (ip->i_d.di_uid != uid) {
1825 /*
1826 * What we need is the dquot that has this uid, and
1827 * if we send the inode to dqget, the uid of the inode
1828 * takes priority over what's sent in the uid argument.
1829 * We must unlock inode here before calling dqget if
1830 * we're not sending the inode, because otherwise
1831 * we'll deadlock by doing trans_reserve while
1832 * holding ilock.
1833 */
1834 xfs_iunlock(ip, lockflags);
1835 if ((error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t) uid,
1836 XFS_DQ_USER,
1837 XFS_QMOPT_DQALLOC |
1838 XFS_QMOPT_DOWARN,
1839 &uq))) {
1840 ASSERT(error != ENOENT);
Jesper Juhl014c2542006-01-15 02:37:08 +01001841 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843 /*
1844 * Get the ilock in the right order.
1845 */
1846 xfs_dqunlock(uq);
1847 lockflags = XFS_ILOCK_SHARED;
1848 xfs_ilock(ip, lockflags);
1849 } else {
1850 /*
1851 * Take an extra reference, because we'll return
1852 * this to caller
1853 */
1854 ASSERT(ip->i_udquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001855 uq = xfs_qm_dqhold(ip->i_udquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 }
1857 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001858 if ((flags & XFS_QMOPT_GQUOTA) && XFS_IS_GQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 if (ip->i_d.di_gid != gid) {
1860 xfs_iunlock(ip, lockflags);
1861 if ((error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)gid,
1862 XFS_DQ_GROUP,
1863 XFS_QMOPT_DQALLOC |
1864 XFS_QMOPT_DOWARN,
1865 &gq))) {
1866 if (uq)
1867 xfs_qm_dqrele(uq);
1868 ASSERT(error != ENOENT);
Jesper Juhl014c2542006-01-15 02:37:08 +01001869 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 }
1871 xfs_dqunlock(gq);
1872 lockflags = XFS_ILOCK_SHARED;
1873 xfs_ilock(ip, lockflags);
1874 } else {
1875 ASSERT(ip->i_gdquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001876 gq = xfs_qm_dqhold(ip->i_gdquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001878 } else if ((flags & XFS_QMOPT_PQUOTA) && XFS_IS_PQUOTA_ON(mp)) {
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001879 if (xfs_get_projid(ip) != prid) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001880 xfs_iunlock(ip, lockflags);
1881 if ((error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)prid,
1882 XFS_DQ_PROJ,
1883 XFS_QMOPT_DQALLOC |
1884 XFS_QMOPT_DOWARN,
1885 &gq))) {
1886 if (uq)
1887 xfs_qm_dqrele(uq);
1888 ASSERT(error != ENOENT);
1889 return (error);
1890 }
1891 xfs_dqunlock(gq);
1892 lockflags = XFS_ILOCK_SHARED;
1893 xfs_ilock(ip, lockflags);
1894 } else {
1895 ASSERT(ip->i_gdquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001896 gq = xfs_qm_dqhold(ip->i_gdquot);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
1899 if (uq)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001900 trace_xfs_dquot_dqalloc(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
1902 xfs_iunlock(ip, lockflags);
1903 if (O_udqpp)
1904 *O_udqpp = uq;
1905 else if (uq)
1906 xfs_qm_dqrele(uq);
1907 if (O_gdqpp)
1908 *O_gdqpp = gq;
1909 else if (gq)
1910 xfs_qm_dqrele(gq);
Jesper Juhl014c2542006-01-15 02:37:08 +01001911 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912}
1913
1914/*
1915 * Actually transfer ownership, and do dquot modifications.
1916 * These were already reserved.
1917 */
1918xfs_dquot_t *
1919xfs_qm_vop_chown(
1920 xfs_trans_t *tp,
1921 xfs_inode_t *ip,
1922 xfs_dquot_t **IO_olddq,
1923 xfs_dquot_t *newdq)
1924{
1925 xfs_dquot_t *prevdq;
Nathan Scott06d10dd2005-06-21 15:48:47 +10001926 uint bfield = XFS_IS_REALTIME_INODE(ip) ?
1927 XFS_TRANS_DQ_RTBCOUNT : XFS_TRANS_DQ_BCOUNT;
1928
Christoph Hellwig7d095252009-06-08 15:33:32 +02001929
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001930 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 ASSERT(XFS_IS_QUOTA_RUNNING(ip->i_mount));
1932
1933 /* old dquot */
1934 prevdq = *IO_olddq;
1935 ASSERT(prevdq);
1936 ASSERT(prevdq != newdq);
1937
Nathan Scott06d10dd2005-06-21 15:48:47 +10001938 xfs_trans_mod_dquot(tp, prevdq, bfield, -(ip->i_d.di_nblocks));
1939 xfs_trans_mod_dquot(tp, prevdq, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
1941 /* the sparkling new dquot */
Nathan Scott06d10dd2005-06-21 15:48:47 +10001942 xfs_trans_mod_dquot(tp, newdq, bfield, ip->i_d.di_nblocks);
1943 xfs_trans_mod_dquot(tp, newdq, XFS_TRANS_DQ_ICOUNT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945 /*
Christoph Hellwig78e55892011-12-06 21:58:22 +00001946 * Take an extra reference, because the inode is going to keep
1947 * this dquot pointer even after the trans_commit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 */
Christoph Hellwig78e55892011-12-06 21:58:22 +00001949 *IO_olddq = xfs_qm_dqhold(newdq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Jesper Juhl014c2542006-01-15 02:37:08 +01001951 return prevdq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952}
1953
1954/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001955 * Quota reservations for setattr(AT_UID|AT_GID|AT_PROJID).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 */
1957int
1958xfs_qm_vop_chown_reserve(
1959 xfs_trans_t *tp,
1960 xfs_inode_t *ip,
1961 xfs_dquot_t *udqp,
1962 xfs_dquot_t *gdqp,
1963 uint flags)
1964{
Christoph Hellwig7d095252009-06-08 15:33:32 +02001965 xfs_mount_t *mp = ip->i_mount;
Nathan Scott9a2a7de2006-03-31 13:04:49 +10001966 uint delblks, blkflags, prjflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 xfs_dquot_t *unresudq, *unresgdq, *delblksudq, *delblksgdq;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001968 int error;
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001971 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1973
1974 delblks = ip->i_delayed_blks;
1975 delblksudq = delblksgdq = unresudq = unresgdq = NULL;
Nathan Scott06d10dd2005-06-21 15:48:47 +10001976 blkflags = XFS_IS_REALTIME_INODE(ip) ?
1977 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
1979 if (XFS_IS_UQUOTA_ON(mp) && udqp &&
Christoph Hellwig1149d962005-11-02 15:01:12 +11001980 ip->i_d.di_uid != (uid_t)be32_to_cpu(udqp->q_core.d_id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 delblksudq = udqp;
1982 /*
1983 * If there are delayed allocation blocks, then we have to
1984 * unreserve those from the old dquot, and add them to the
1985 * new dquot.
1986 */
1987 if (delblks) {
1988 ASSERT(ip->i_udquot);
1989 unresudq = ip->i_udquot;
1990 }
1991 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001992 if (XFS_IS_OQUOTA_ON(ip->i_mount) && gdqp) {
Nathan Scott9a2a7de2006-03-31 13:04:49 +10001993 if (XFS_IS_PQUOTA_ON(ip->i_mount) &&
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001994 xfs_get_projid(ip) != be32_to_cpu(gdqp->q_core.d_id))
Nathan Scott9a2a7de2006-03-31 13:04:49 +10001995 prjflags = XFS_QMOPT_ENOSPC;
1996
1997 if (prjflags ||
1998 (XFS_IS_GQUOTA_ON(ip->i_mount) &&
1999 ip->i_d.di_gid != be32_to_cpu(gdqp->q_core.d_id))) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10002000 delblksgdq = gdqp;
2001 if (delblks) {
2002 ASSERT(ip->i_gdquot);
2003 unresgdq = ip->i_gdquot;
2004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 }
2006 }
2007
2008 if ((error = xfs_trans_reserve_quota_bydquots(tp, ip->i_mount,
2009 delblksudq, delblksgdq, ip->i_d.di_nblocks, 1,
Nathan Scott9a2a7de2006-03-31 13:04:49 +10002010 flags | blkflags | prjflags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 return (error);
2012
2013 /*
2014 * Do the delayed blks reservations/unreservations now. Since, these
2015 * are done without the help of a transaction, if a reservation fails
2016 * its previous reservations won't be automatically undone by trans
2017 * code. So, we have to do it manually here.
2018 */
2019 if (delblks) {
2020 /*
2021 * Do the reservations first. Unreservation can't fail.
2022 */
2023 ASSERT(delblksudq || delblksgdq);
2024 ASSERT(unresudq || unresgdq);
2025 if ((error = xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
2026 delblksudq, delblksgdq, (xfs_qcnt_t)delblks, 0,
Nathan Scott9a2a7de2006-03-31 13:04:49 +10002027 flags | blkflags | prjflags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 return (error);
2029 xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
2030 unresudq, unresgdq, -((xfs_qcnt_t)delblks), 0,
Nathan Scott06d10dd2005-06-21 15:48:47 +10002031 blkflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 }
2033
2034 return (0);
2035}
2036
2037int
2038xfs_qm_vop_rename_dqattach(
Christoph Hellwig7d095252009-06-08 15:33:32 +02002039 struct xfs_inode **i_tab)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002041 struct xfs_mount *mp = i_tab[0]->i_mount;
2042 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Christoph Hellwig7d095252009-06-08 15:33:32 +02002044 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Jesper Juhl014c2542006-01-15 02:37:08 +01002045 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Christoph Hellwig7d095252009-06-08 15:33:32 +02002047 for (i = 0; (i < 4 && i_tab[i]); i++) {
2048 struct xfs_inode *ip = i_tab[i];
2049 int error;
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 /*
2052 * Watch out for duplicate entries in the table.
2053 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02002054 if (i == 0 || ip != i_tab[i-1]) {
2055 if (XFS_NOT_DQATTACHED(mp, ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 error = xfs_qm_dqattach(ip, 0);
2057 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002058 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 }
2060 }
2061 }
Jesper Juhl014c2542006-01-15 02:37:08 +01002062 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063}
2064
2065void
Christoph Hellwig7d095252009-06-08 15:33:32 +02002066xfs_qm_vop_create_dqattach(
2067 struct xfs_trans *tp,
2068 struct xfs_inode *ip,
2069 struct xfs_dquot *udqp,
2070 struct xfs_dquot *gdqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002072 struct xfs_mount *mp = tp->t_mountp;
2073
2074 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 return;
2076
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002077 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig7d095252009-06-08 15:33:32 +02002078 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080 if (udqp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 ASSERT(ip->i_udquot == NULL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002082 ASSERT(XFS_IS_UQUOTA_ON(mp));
Christoph Hellwig1149d962005-11-02 15:01:12 +11002083 ASSERT(ip->i_d.di_uid == be32_to_cpu(udqp->q_core.d_id));
Christoph Hellwig78e55892011-12-06 21:58:22 +00002084
2085 ip->i_udquot = xfs_qm_dqhold(udqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 xfs_trans_mod_dquot(tp, udqp, XFS_TRANS_DQ_ICOUNT, 1);
2087 }
2088 if (gdqp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 ASSERT(ip->i_gdquot == NULL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002090 ASSERT(XFS_IS_OQUOTA_ON(mp));
2091 ASSERT((XFS_IS_GQUOTA_ON(mp) ?
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00002092 ip->i_d.di_gid : xfs_get_projid(ip)) ==
Nathan Scottee2a4f72006-01-11 15:33:36 +11002093 be32_to_cpu(gdqp->q_core.d_id));
Christoph Hellwig78e55892011-12-06 21:58:22 +00002094
2095 ip->i_gdquot = xfs_qm_dqhold(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 xfs_trans_mod_dquot(tp, gdqp, XFS_TRANS_DQ_ICOUNT, 1);
2097 }
2098}
2099