blob: cf09aa845d8cf1d46f28ab9984495baa1e31cb9f [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_trans.h"
23#include "xfs_sb.h"
24#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_quota.h"
27#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_bmap_btree.h"
29#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_dinode.h"
31#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_ialloc.h"
33#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_rtalloc.h"
35#include "xfs_error.h"
Nathan Scotta844f452005-11-02 14:38:42 +110036#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_attr.h"
38#include "xfs_buf_item.h"
39#include "xfs_trans_space.h"
40#include "xfs_utils.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_qm.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000042#include "xfs_trace.h"
Dave Chinner33479e02012-10-08 21:56:11 +110043#include "xfs_icache.h"
Dave Chinner6fcdc592013-06-03 15:28:46 +100044#include "xfs_cksum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
47 * The global quota manager. There is only one of these for the entire
48 * system, _not_ one per file system. XQM keeps track of the overall
49 * quota functionality, including maintaining the freelist and hash
50 * tables of dquots.
51 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070052STATIC int xfs_qm_init_quotainos(xfs_mount_t *);
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100053STATIC int xfs_qm_init_quotainfo(xfs_mount_t *);
Ying Han1495f232011-05-24 17:12:27 -070054STATIC int xfs_qm_shake(struct shrinker *, struct shrink_control *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*
Christoph Hellwigb84a3a92012-03-14 11:53:34 -050057 * We use the batch lookup interface to iterate over the dquots as it
58 * currently is the only interface into the radix tree code that allows
59 * fuzzy lookups instead of exact matches. Holding the lock over multiple
60 * operations is fine as all callers are used either during mount/umount
61 * or quotaoff.
62 */
63#define XFS_DQ_LOOKUP_BATCH 32
64
65STATIC int
66xfs_qm_dquot_walk(
67 struct xfs_mount *mp,
68 int type,
Christoph Hellwig43ff2122012-04-23 15:58:39 +100069 int (*execute)(struct xfs_dquot *dqp, void *data),
70 void *data)
Christoph Hellwigb84a3a92012-03-14 11:53:34 -050071{
72 struct xfs_quotainfo *qi = mp->m_quotainfo;
Chandra Seetharaman329e0872013-06-27 17:25:05 -050073 struct radix_tree_root *tree = xfs_dquot_tree(qi, type);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -050074 uint32_t next_index;
75 int last_error = 0;
76 int skipped;
77 int nr_found;
78
79restart:
80 skipped = 0;
81 next_index = 0;
82 nr_found = 0;
83
84 while (1) {
85 struct xfs_dquot *batch[XFS_DQ_LOOKUP_BATCH];
86 int error = 0;
87 int i;
88
89 mutex_lock(&qi->qi_tree_lock);
90 nr_found = radix_tree_gang_lookup(tree, (void **)batch,
91 next_index, XFS_DQ_LOOKUP_BATCH);
92 if (!nr_found) {
93 mutex_unlock(&qi->qi_tree_lock);
94 break;
95 }
96
97 for (i = 0; i < nr_found; i++) {
98 struct xfs_dquot *dqp = batch[i];
99
100 next_index = be32_to_cpu(dqp->q_core.d_id) + 1;
101
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000102 error = execute(batch[i], data);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500103 if (error == EAGAIN) {
104 skipped++;
105 continue;
106 }
107 if (error && last_error != EFSCORRUPTED)
108 last_error = error;
109 }
110
111 mutex_unlock(&qi->qi_tree_lock);
112
113 /* bail out if the filesystem is corrupted. */
114 if (last_error == EFSCORRUPTED) {
115 skipped = 0;
116 break;
117 }
118 }
119
120 if (skipped) {
121 delay(1);
122 goto restart;
123 }
124
125 return last_error;
126}
127
128
129/*
130 * Purge a dquot from all tracking data structures and free it.
131 */
132STATIC int
133xfs_qm_dqpurge(
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000134 struct xfs_dquot *dqp,
135 void *data)
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500136{
137 struct xfs_mount *mp = dqp->q_mount;
138 struct xfs_quotainfo *qi = mp->m_quotainfo;
139 struct xfs_dquot *gdqp = NULL;
140
141 xfs_dqlock(dqp);
142 if ((dqp->dq_flags & XFS_DQ_FREEING) || dqp->q_nrefs != 0) {
143 xfs_dqunlock(dqp);
144 return EAGAIN;
145 }
146
147 /*
148 * If this quota has a group hint attached, prepare for releasing it
149 * now.
150 */
151 gdqp = dqp->q_gdquot;
152 if (gdqp) {
153 xfs_dqlock(gdqp);
154 dqp->q_gdquot = NULL;
155 }
156
157 dqp->dq_flags |= XFS_DQ_FREEING;
158
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000159 xfs_dqflock(dqp);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500160
161 /*
162 * If we are turning this type of quotas off, we don't care
163 * about the dirty metadata sitting in this dquot. OTOH, if
164 * we're unmounting, we do care, so we flush it and wait.
165 */
166 if (XFS_DQ_IS_DIRTY(dqp)) {
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000167 struct xfs_buf *bp = NULL;
168 int error;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500169
170 /*
171 * We don't care about getting disk errors here. We need
172 * to purge this dquot anyway, so we go ahead regardless.
173 */
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000174 error = xfs_qm_dqflush(dqp, &bp);
175 if (error) {
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500176 xfs_warn(mp, "%s: dquot %p flush failed",
177 __func__, dqp);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000178 } else {
179 error = xfs_bwrite(bp);
180 xfs_buf_relse(bp);
181 }
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500182 xfs_dqflock(dqp);
183 }
184
185 ASSERT(atomic_read(&dqp->q_pincount) == 0);
186 ASSERT(XFS_FORCED_SHUTDOWN(mp) ||
187 !(dqp->q_logitem.qli_item.li_flags & XFS_LI_IN_AIL));
188
189 xfs_dqfunlock(dqp);
190 xfs_dqunlock(dqp);
191
Chandra Seetharaman329e0872013-06-27 17:25:05 -0500192 radix_tree_delete(xfs_dquot_tree(qi, dqp->q_core.d_flags),
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500193 be32_to_cpu(dqp->q_core.d_id));
194 qi->qi_dquots--;
195
196 /*
197 * We move dquots to the freelist as soon as their reference count
198 * hits zero, so it really should be on the freelist here.
199 */
200 mutex_lock(&qi->qi_lru_lock);
201 ASSERT(!list_empty(&dqp->q_lru));
202 list_del_init(&dqp->q_lru);
203 qi->qi_lru_count--;
204 XFS_STATS_DEC(xs_qm_dquot_unused);
205 mutex_unlock(&qi->qi_lru_lock);
206
207 xfs_qm_dqdestroy(dqp);
208
209 if (gdqp)
210 xfs_qm_dqput(gdqp);
211 return 0;
212}
213
214/*
215 * Purge the dquot cache.
216 */
217void
218xfs_qm_dqpurge_all(
219 struct xfs_mount *mp,
220 uint flags)
221{
222 if (flags & XFS_QMOPT_UQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000223 xfs_qm_dquot_walk(mp, XFS_DQ_USER, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500224 if (flags & XFS_QMOPT_GQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000225 xfs_qm_dquot_walk(mp, XFS_DQ_GROUP, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500226 if (flags & XFS_QMOPT_PQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000227 xfs_qm_dquot_walk(mp, XFS_DQ_PROJ, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500228}
229
230/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 * Just destroy the quotainfo structure.
232 */
233void
Christoph Hellwig7d095252009-06-08 15:33:32 +0200234xfs_qm_unmount(
235 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Christoph Hellwig7d095252009-06-08 15:33:32 +0200237 if (mp->m_quotainfo) {
Christoph Hellwig8112e9d2010-04-20 17:02:29 +1000238 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 xfs_qm_destroy_quotainfo(mp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
243
244/*
245 * This is called from xfs_mountfs to start quotas and initialize all
246 * necessary data structures like quotainfo. This is also responsible for
247 * running a quotacheck as necessary. We are guaranteed that the superblock
248 * is consistently read in at this point.
David Chinner53aa7912008-04-10 12:20:31 +1000249 *
250 * If we fail here, the mount will continue with quota turned off. We don't
251 * need to inidicate success or failure at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 */
David Chinner53aa7912008-04-10 12:20:31 +1000253void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254xfs_qm_mount_quotas(
Christoph Hellwig42490232008-08-13 16:49:32 +1000255 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 int error = 0;
258 uint sbf;
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 /*
261 * If quotas on realtime volumes is not supported, we disable
262 * quotas immediately.
263 */
264 if (mp->m_sb.sb_rextents) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100265 xfs_notice(mp, "Cannot turn on quotas for realtime filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 mp->m_qflags = 0;
267 goto write_changes;
268 }
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Nathan Scott155ffd02005-09-02 16:43:48 +1000271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /*
273 * Allocate the quotainfo structure inside the mount struct, and
274 * create quotainode(s), and change/rev superblock if necessary.
275 */
David Chinner53aa7912008-04-10 12:20:31 +1000276 error = xfs_qm_init_quotainfo(mp);
277 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /*
279 * We must turn off quotas.
280 */
281 ASSERT(mp->m_quotainfo == NULL);
282 mp->m_qflags = 0;
283 goto write_changes;
284 }
285 /*
286 * If any of the quotas are not consistent, do a quotacheck.
287 */
Christoph Hellwig42490232008-08-13 16:49:32 +1000288 if (XFS_QM_NEED_QUOTACHECK(mp)) {
David Chinner53aa7912008-04-10 12:20:31 +1000289 error = xfs_qm_quotacheck(mp);
290 if (error) {
291 /* Quotacheck failed and disabled quotas. */
292 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000295 /*
296 * If one type of quotas is off, then it will lose its
297 * quotachecked status, since we won't be doing accounting for
298 * that type anymore.
299 */
David Chinner53aa7912008-04-10 12:20:31 +1000300 if (!XFS_IS_UQUOTA_ON(mp))
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000301 mp->m_qflags &= ~XFS_UQUOTA_CHKD;
David Chinner53aa7912008-04-10 12:20:31 +1000302 if (!(XFS_IS_GQUOTA_ON(mp) || XFS_IS_PQUOTA_ON(mp)))
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000303 mp->m_qflags &= ~XFS_OQUOTA_CHKD;
Nathan Scott155ffd02005-09-02 16:43:48 +1000304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 write_changes:
306 /*
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000307 * We actually don't have to acquire the m_sb_lock at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 * This can only be called from mount, and that's single threaded. XXX
309 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000310 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 sbf = mp->m_sb.sb_qflags;
312 mp->m_sb.sb_qflags = mp->m_qflags & XFS_MOUNT_QUOTA_ALL;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000313 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 if (sbf != (mp->m_qflags & XFS_MOUNT_QUOTA_ALL)) {
316 if (xfs_qm_write_sb_changes(mp, XFS_SB_QFLAGS)) {
317 /*
318 * We could only have been turning quotas off.
319 * We aren't in very good shape actually because
320 * the incore structures are convinced that quotas are
321 * off, but the on disk superblock doesn't know that !
322 */
323 ASSERT(!(XFS_IS_QUOTA_RUNNING(mp)));
Dave Chinner53487782011-03-07 10:05:35 +1100324 xfs_alert(mp, "%s: Superblock update failed!",
325 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327 }
328
329 if (error) {
Dave Chinner53487782011-03-07 10:05:35 +1100330 xfs_warn(mp, "Failed to initialize disk quotas.");
Christoph Hellwig7d095252009-06-08 15:33:32 +0200331 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
335/*
336 * Called from the vfsops layer.
337 */
Christoph Hellwige57481d2008-12-03 12:20:36 +0100338void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339xfs_qm_unmount_quotas(
340 xfs_mount_t *mp)
341{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 /*
343 * Release the dquots that root inode, et al might be holding,
344 * before we flush quotas and blow away the quotainfo structure.
345 */
346 ASSERT(mp->m_rootip);
347 xfs_qm_dqdetach(mp->m_rootip);
348 if (mp->m_rbmip)
349 xfs_qm_dqdetach(mp->m_rbmip);
350 if (mp->m_rsumip)
351 xfs_qm_dqdetach(mp->m_rsumip);
352
353 /*
Christoph Hellwige57481d2008-12-03 12:20:36 +0100354 * Release the quota inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (mp->m_quotainfo) {
Christoph Hellwige57481d2008-12-03 12:20:36 +0100357 if (mp->m_quotainfo->qi_uquotaip) {
358 IRELE(mp->m_quotainfo->qi_uquotaip);
359 mp->m_quotainfo->qi_uquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
Christoph Hellwige57481d2008-12-03 12:20:36 +0100361 if (mp->m_quotainfo->qi_gquotaip) {
362 IRELE(mp->m_quotainfo->qi_gquotaip);
363 mp->m_quotainfo->qi_gquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368STATIC int
369xfs_qm_dqattach_one(
370 xfs_inode_t *ip,
371 xfs_dqid_t id,
372 uint type,
373 uint doalloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 xfs_dquot_t *udqhint, /* hint */
375 xfs_dquot_t **IO_idqpp)
376{
377 xfs_dquot_t *dqp;
378 int error;
379
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000380 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 error = 0;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 /*
384 * See if we already have it in the inode itself. IO_idqpp is
385 * &i_udquot or &i_gdquot. This made the code look weird, but
386 * made the logic a lot simpler.
387 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100388 dqp = *IO_idqpp;
389 if (dqp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000390 trace_xfs_dqattach_found(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393
394 /*
395 * udqhint is the i_udquot field in inode, and is non-NULL only
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000396 * when the type arg is group/project. Its purpose is to save a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 * lookup by dqid (xfs_qm_dqget) by caching a group dquot inside
398 * the user dquot.
399 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100400 if (udqhint) {
401 ASSERT(type == XFS_DQ_GROUP || type == XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 xfs_dqlock(udqhint);
403
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100404 /*
405 * No need to take dqlock to look at the id.
406 *
407 * The ID can't change until it gets reclaimed, and it won't
408 * be reclaimed as long as we have a ref from inode and we
409 * hold the ilock.
410 */
411 dqp = udqhint->q_gdquot;
412 if (dqp && be32_to_cpu(dqp->q_core.d_id) == id) {
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100413 ASSERT(*IO_idqpp == NULL);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100414
Christoph Hellwig78e55892011-12-06 21:58:22 +0000415 *IO_idqpp = xfs_qm_dqhold(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100417 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100419
420 /*
421 * We can't hold a dquot lock when we call the dqget code.
422 * We'll deadlock in no time, because of (not conforming to)
423 * lock ordering - the inodelock comes before any dquot lock,
424 * and we may drop and reacquire the ilock in xfs_qm_dqget().
425 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100427 }
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 /*
430 * Find the dquot from somewhere. This bumps the
431 * reference count of dquot and returns it locked.
432 * This can return ENOENT if dquot didn't exist on
433 * disk and we didn't ask it to allocate;
434 * ESRCH if quotas got turned off suddenly.
435 */
Mitsuo Hayasakadb3e74b2011-11-10 01:33:10 +0000436 error = xfs_qm_dqget(ip->i_mount, ip, id, type,
437 doalloc | XFS_QMOPT_DOWARN, &dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100438 if (error)
439 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000441 trace_xfs_dqattach_get(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /*
444 * dqget may have dropped and re-acquired the ilock, but it guarantees
445 * that the dquot returned is the one that should go in the inode.
446 */
447 *IO_idqpp = dqp;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100448 xfs_dqunlock(dqp);
449 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
452
453/*
454 * Given a udquot and gdquot, attach a ptr to the group dquot in the
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000455 * udquot as a hint for future lookups.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 */
457STATIC void
458xfs_qm_dqattach_grouphint(
459 xfs_dquot_t *udq,
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100460 xfs_dquot_t *gdq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 xfs_dquot_t *tmp;
463
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100464 xfs_dqlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000466 tmp = udq->q_gdquot;
467 if (tmp) {
468 if (tmp == gdq)
469 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 udq->q_gdquot = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 xfs_qm_dqrele(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474
Christoph Hellwig78e55892011-12-06 21:58:22 +0000475 udq->q_gdquot = xfs_qm_dqhold(gdq);
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000476done:
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100477 xfs_dqunlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400480static bool
481xfs_qm_need_dqattach(
482 struct xfs_inode *ip)
483{
484 struct xfs_mount *mp = ip->i_mount;
485
486 if (!XFS_IS_QUOTA_RUNNING(mp))
487 return false;
488 if (!XFS_IS_QUOTA_ON(mp))
489 return false;
490 if (!XFS_NOT_DQATTACHED(mp, ip))
491 return false;
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -0500492 if (xfs_is_quota_inode(&mp->m_sb, ip->i_ino))
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400493 return false;
494 return true;
495}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000498 * Given a locked inode, attach dquot(s) to it, taking U/G/P-QUOTAON
499 * into account.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 * If XFS_QMOPT_DQALLOC, the dquot(s) will be allocated if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 * Inode may get unlocked and relocked in here, and the caller must deal with
502 * the consequences.
503 */
504int
Christoph Hellwig7d095252009-06-08 15:33:32 +0200505xfs_qm_dqattach_locked(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 xfs_inode_t *ip,
507 uint flags)
508{
509 xfs_mount_t *mp = ip->i_mount;
510 uint nquotas = 0;
511 int error = 0;
512
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400513 if (!xfs_qm_need_dqattach(ip))
Jesper Juhl014c2542006-01-15 02:37:08 +0100514 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Christoph Hellwig7d095252009-06-08 15:33:32 +0200516 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 if (XFS_IS_UQUOTA_ON(mp)) {
519 error = xfs_qm_dqattach_one(ip, ip->i_d.di_uid, XFS_DQ_USER,
520 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 NULL, &ip->i_udquot);
522 if (error)
523 goto done;
524 nquotas++;
525 }
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000526
527 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000528 if (XFS_IS_OQUOTA_ON(mp)) {
529 error = XFS_IS_GQUOTA_ON(mp) ?
530 xfs_qm_dqattach_one(ip, ip->i_d.di_gid, XFS_DQ_GROUP,
531 flags & XFS_QMOPT_DQALLOC,
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000532 ip->i_udquot, &ip->i_gdquot) :
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000533 xfs_qm_dqattach_one(ip, xfs_get_projid(ip), XFS_DQ_PROJ,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 ip->i_udquot, &ip->i_gdquot);
536 /*
537 * Don't worry about the udquot that we may have
538 * attached above. It'll get detached, if not already.
539 */
540 if (error)
541 goto done;
542 nquotas++;
543 }
544
545 /*
546 * Attach this group quota to the user quota as a hint.
547 * This WON'T, in general, result in a thrash.
548 */
549 if (nquotas == 2) {
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000550 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 ASSERT(ip->i_udquot);
552 ASSERT(ip->i_gdquot);
553
554 /*
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000555 * We do not have i_udquot locked at this point, but this check
556 * is OK since we don't depend on the i_gdquot to be accurate
557 * 100% all the time. It is just a hint, and this will
558 * succeed in general.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 */
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000560 if (ip->i_udquot->q_gdquot != ip->i_gdquot)
561 xfs_qm_dqattach_grouphint(ip->i_udquot, ip->i_gdquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563
Christoph Hellwig7d095252009-06-08 15:33:32 +0200564 done:
Christoph Hellwigea15ab32011-07-13 13:43:50 +0200565#ifdef DEBUG
566 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (XFS_IS_UQUOTA_ON(mp))
568 ASSERT(ip->i_udquot);
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000569 if (XFS_IS_OQUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 ASSERT(ip->i_gdquot);
571 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200572 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573#endif
Christoph Hellwig7d095252009-06-08 15:33:32 +0200574 return error;
575}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Christoph Hellwig7d095252009-06-08 15:33:32 +0200577int
578xfs_qm_dqattach(
579 struct xfs_inode *ip,
580 uint flags)
581{
582 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400584 if (!xfs_qm_need_dqattach(ip))
585 return 0;
586
Christoph Hellwig7d095252009-06-08 15:33:32 +0200587 xfs_ilock(ip, XFS_ILOCK_EXCL);
588 error = xfs_qm_dqattach_locked(ip, flags);
589 xfs_iunlock(ip, XFS_ILOCK_EXCL);
590
Jesper Juhl014c2542006-01-15 02:37:08 +0100591 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
594/*
595 * Release dquots (and their references) if any.
596 * The inode should be locked EXCL except when this's called by
597 * xfs_ireclaim.
598 */
599void
600xfs_qm_dqdetach(
601 xfs_inode_t *ip)
602{
603 if (!(ip->i_udquot || ip->i_gdquot))
604 return;
605
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000606 trace_xfs_dquot_dqdetach(ip);
607
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -0500608 ASSERT(!xfs_is_quota_inode(&ip->i_mount->m_sb, ip->i_ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (ip->i_udquot) {
610 xfs_qm_dqrele(ip->i_udquot);
611 ip->i_udquot = NULL;
612 }
613 if (ip->i_gdquot) {
614 xfs_qm_dqrele(ip->i_gdquot);
615 ip->i_gdquot = NULL;
616 }
617}
618
Christoph Hellwig3fe58f32013-04-03 16:11:16 +1100619int
620xfs_qm_calc_dquots_per_chunk(
621 struct xfs_mount *mp,
622 unsigned int nbblks) /* basic block units */
623{
624 unsigned int ndquots;
625
626 ASSERT(nbblks > 0);
627 ndquots = BBTOB(nbblks);
628 do_div(ndquots, sizeof(xfs_dqblk_t));
629
630 return ndquots;
631}
632
Christoph Hellwiga4edd1d2009-01-19 02:03:11 +0100633/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 * This initializes all the quota information that's kept in the
635 * mount structure
636 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000637STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638xfs_qm_init_quotainfo(
639 xfs_mount_t *mp)
640{
641 xfs_quotainfo_t *qinf;
642 int error;
643 xfs_dquot_t *dqp;
644
645 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 qinf = mp->m_quotainfo = kmem_zalloc(sizeof(xfs_quotainfo_t), KM_SLEEP);
648
649 /*
650 * See if quotainodes are setup, and if not, allocate them,
651 * and change the superblock accordingly.
652 */
653 if ((error = xfs_qm_init_quotainos(mp))) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000654 kmem_free(qinf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 mp->m_quotainfo = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +0100656 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 }
658
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000659 INIT_RADIX_TREE(&qinf->qi_uquota_tree, GFP_NOFS);
660 INIT_RADIX_TREE(&qinf->qi_gquota_tree, GFP_NOFS);
661 mutex_init(&qinf->qi_tree_lock);
662
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000663 INIT_LIST_HEAD(&qinf->qi_lru_list);
664 qinf->qi_lru_count = 0;
665 mutex_init(&qinf->qi_lru_lock);
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 /* mutex used to serialize quotaoffs */
Jes Sorensen794ee1b2006-01-09 15:59:21 -0800668 mutex_init(&qinf->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 /* Precalc some constants */
671 qinf->qi_dqchunklen = XFS_FSB_TO_BB(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
Christoph Hellwig3fe58f32013-04-03 16:11:16 +1100672 qinf->qi_dqperchunk = xfs_qm_calc_dquots_per_chunk(mp,
673 qinf->qi_dqchunklen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 mp->m_qflags |= (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_CHKD);
676
677 /*
678 * We try to get the limits from the superuser's limits fields.
679 * This is quite hacky, but it is standard quota practice.
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000680 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 * We look at the USR dquot with id == 0 first, but if user quotas
682 * are not enabled we goto the GRP dquot with id == 0.
683 * We don't really care to keep separate default limits for user
684 * and group quotas, at least not at this point.
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000685 *
686 * Since we may not have done a quotacheck by this point, just read
687 * the dquot without attaching it to any hashtables or lists.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 */
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000689 error = xfs_qm_dqread(mp, 0,
690 XFS_IS_UQUOTA_RUNNING(mp) ? XFS_DQ_USER :
691 (XFS_IS_GQUOTA_RUNNING(mp) ? XFS_DQ_GROUP :
692 XFS_DQ_PROJ),
693 XFS_QMOPT_DOWARN, &dqp);
694 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 xfs_disk_dquot_t *ddqp = &dqp->q_core;
696
697 /*
698 * The warnings and timers set the grace period given to
699 * a user or group before he or she can not perform any
700 * more writing. If it is zero, a default is used.
701 */
Christoph Hellwig1149d962005-11-02 15:01:12 +1100702 qinf->qi_btimelimit = ddqp->d_btimer ?
703 be32_to_cpu(ddqp->d_btimer) : XFS_QM_BTIMELIMIT;
704 qinf->qi_itimelimit = ddqp->d_itimer ?
705 be32_to_cpu(ddqp->d_itimer) : XFS_QM_ITIMELIMIT;
706 qinf->qi_rtbtimelimit = ddqp->d_rtbtimer ?
707 be32_to_cpu(ddqp->d_rtbtimer) : XFS_QM_RTBTIMELIMIT;
708 qinf->qi_bwarnlimit = ddqp->d_bwarns ?
709 be16_to_cpu(ddqp->d_bwarns) : XFS_QM_BWARNLIMIT;
710 qinf->qi_iwarnlimit = ddqp->d_iwarns ?
711 be16_to_cpu(ddqp->d_iwarns) : XFS_QM_IWARNLIMIT;
712 qinf->qi_rtbwarnlimit = ddqp->d_rtbwarns ?
713 be16_to_cpu(ddqp->d_rtbwarns) : XFS_QM_RTBWARNLIMIT;
714 qinf->qi_bhardlimit = be64_to_cpu(ddqp->d_blk_hardlimit);
715 qinf->qi_bsoftlimit = be64_to_cpu(ddqp->d_blk_softlimit);
716 qinf->qi_ihardlimit = be64_to_cpu(ddqp->d_ino_hardlimit);
717 qinf->qi_isoftlimit = be64_to_cpu(ddqp->d_ino_softlimit);
718 qinf->qi_rtbhardlimit = be64_to_cpu(ddqp->d_rtb_hardlimit);
719 qinf->qi_rtbsoftlimit = be64_to_cpu(ddqp->d_rtb_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 xfs_qm_dqdestroy(dqp);
722 } else {
723 qinf->qi_btimelimit = XFS_QM_BTIMELIMIT;
724 qinf->qi_itimelimit = XFS_QM_ITIMELIMIT;
725 qinf->qi_rtbtimelimit = XFS_QM_RTBTIMELIMIT;
726 qinf->qi_bwarnlimit = XFS_QM_BWARNLIMIT;
727 qinf->qi_iwarnlimit = XFS_QM_IWARNLIMIT;
Nathan Scott06d10dd2005-06-21 15:48:47 +1000728 qinf->qi_rtbwarnlimit = XFS_QM_RTBWARNLIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000731 qinf->qi_shrinker.shrink = xfs_qm_shake;
732 qinf->qi_shrinker.seeks = DEFAULT_SEEKS;
733 register_shrinker(&qinf->qi_shrinker);
Jesper Juhl014c2542006-01-15 02:37:08 +0100734 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
737
738/*
739 * Gets called when unmounting a filesystem or when all quotas get
740 * turned off.
741 * This purges the quota inodes, destroys locks and frees itself.
742 */
743void
744xfs_qm_destroy_quotainfo(
745 xfs_mount_t *mp)
746{
747 xfs_quotainfo_t *qi;
748
749 qi = mp->m_quotainfo;
750 ASSERT(qi != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000752 unregister_shrinker(&qi->qi_shrinker);
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (qi->qi_uquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +1000755 IRELE(qi->qi_uquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 qi->qi_uquotaip = NULL; /* paranoia */
757 }
758 if (qi->qi_gquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +1000759 IRELE(qi->qi_gquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 qi->qi_gquotaip = NULL;
761 }
762 mutex_destroy(&qi->qi_quotaofflock);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000763 kmem_free(qi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 mp->m_quotainfo = NULL;
765}
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767/*
768 * Create an inode and return with a reference already taken, but unlocked
769 * This is how we create quota inodes
770 */
771STATIC int
772xfs_qm_qino_alloc(
773 xfs_mount_t *mp,
774 xfs_inode_t **ip,
775 __int64_t sbfields,
776 uint flags)
777{
778 xfs_trans_t *tp;
779 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 int committed;
781
Nathan Scott061f7202006-01-11 15:27:50 +1100782 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QINOCREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if ((error = xfs_trans_reserve(tp,
784 XFS_QM_QINOCREATE_SPACE_RES(mp),
785 XFS_CREATE_LOG_RES(mp), 0,
786 XFS_TRANS_PERM_LOG_RES,
787 XFS_CREATE_LOG_COUNT))) {
788 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +0100789 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +0000792 error = xfs_dir_ialloc(&tp, NULL, S_IFREG, 1, 0, 0, 1, ip, &committed);
793 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES |
795 XFS_TRANS_ABORT);
Jesper Juhl014c2542006-01-15 02:37:08 +0100796 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798
799 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 * Make the changes in the superblock, and log those too.
801 * sbfields arg may contain fields other than *QUOTINO;
802 * VERSIONNUM for example.
803 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000804 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (flags & XFS_QMOPT_SBVERSION) {
Eric Sandeen62118702008-03-06 13:44:28 +1100806 ASSERT(!xfs_sb_version_hasquota(&mp->m_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 ASSERT((sbfields & (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
808 XFS_SB_GQUOTINO | XFS_SB_QFLAGS)) ==
809 (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
810 XFS_SB_GQUOTINO | XFS_SB_QFLAGS));
811
Eric Sandeen62118702008-03-06 13:44:28 +1100812 xfs_sb_version_addquota(&mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 mp->m_sb.sb_uquotino = NULLFSINO;
814 mp->m_sb.sb_gquotino = NULLFSINO;
815
816 /* qflags will get updated _after_ quotacheck */
817 mp->m_sb.sb_qflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
819 if (flags & XFS_QMOPT_UQUOTA)
820 mp->m_sb.sb_uquotino = (*ip)->i_ino;
821 else
822 mp->m_sb.sb_gquotino = (*ip)->i_ino;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000823 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 xfs_mod_sb(tp, sbfields);
825
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000826 if ((error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES))) {
Dave Chinner53487782011-03-07 10:05:35 +1100827 xfs_alert(mp, "%s failed (error %d)!", __func__, error);
Jesper Juhl014c2542006-01-15 02:37:08 +0100828 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 }
Jesper Juhl014c2542006-01-15 02:37:08 +0100830 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
833
David Chinner5b139732008-04-10 12:20:10 +1000834STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835xfs_qm_reset_dqcounts(
836 xfs_mount_t *mp,
837 xfs_buf_t *bp,
838 xfs_dqid_t id,
839 uint type)
840{
Dave Chinner6fcdc592013-06-03 15:28:46 +1000841 struct xfs_dqblk *dqb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 int j;
843
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000844 trace_xfs_reset_dqcounts(bp, _RET_IP_);
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 /*
847 * Reset all counters and timers. They'll be
848 * started afresh by xfs_qm_quotacheck.
849 */
850#ifdef DEBUG
851 j = XFS_FSB_TO_B(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
852 do_div(j, sizeof(xfs_dqblk_t));
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000853 ASSERT(mp->m_quotainfo->qi_dqperchunk == j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854#endif
Dave Chinner6fcdc592013-06-03 15:28:46 +1000855 dqb = bp->b_addr;
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000856 for (j = 0; j < mp->m_quotainfo->qi_dqperchunk; j++) {
Dave Chinner6fcdc592013-06-03 15:28:46 +1000857 struct xfs_disk_dquot *ddq;
858
859 ddq = (struct xfs_disk_dquot *)&dqb[j];
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 /*
862 * Do a sanity check, and if needed, repair the dqblk. Don't
863 * output any warnings because it's perfectly possible to
Nathan Scottc41564b2006-03-29 08:55:14 +1000864 * find uninitialised dquot blks. See comment in xfs_qm_dqcheck.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 */
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100866 (void) xfs_qm_dqcheck(mp, ddq, id+j, type, XFS_QMOPT_DQREPAIR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 "xfs_quotacheck");
Christoph Hellwig1149d962005-11-02 15:01:12 +1100868 ddq->d_bcount = 0;
869 ddq->d_icount = 0;
870 ddq->d_rtbcount = 0;
871 ddq->d_btimer = 0;
872 ddq->d_itimer = 0;
873 ddq->d_rtbtimer = 0;
874 ddq->d_bwarns = 0;
875 ddq->d_iwarns = 0;
876 ddq->d_rtbwarns = 0;
Dave Chinner6fcdc592013-06-03 15:28:46 +1000877
878 if (xfs_sb_version_hascrc(&mp->m_sb)) {
879 xfs_update_cksum((char *)&dqb[j],
880 sizeof(struct xfs_dqblk),
881 XFS_DQUOT_CRC_OFF);
882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
886STATIC int
887xfs_qm_dqiter_bufs(
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000888 struct xfs_mount *mp,
889 xfs_dqid_t firstid,
890 xfs_fsblock_t bno,
891 xfs_filblks_t blkcnt,
892 uint flags,
893 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000895 struct xfs_buf *bp;
896 int error;
897 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 ASSERT(blkcnt > 0);
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000900 type = flags & XFS_QMOPT_UQUOTA ? XFS_DQ_USER :
901 (flags & XFS_QMOPT_PQUOTA ? XFS_DQ_PROJ : XFS_DQ_GROUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 error = 0;
903
904 /*
905 * Blkcnt arg can be a very big number, and might even be
906 * larger than the log itself. So, we have to break it up into
907 * manageable-sized transactions.
908 * Note that we don't start a permanent transaction here; we might
909 * not be able to get a log reservation for the whole thing up front,
910 * and we don't really care to either, because we just discard
911 * everything if we were to crash in the middle of this loop.
912 */
913 while (blkcnt--) {
914 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
915 XFS_FSB_TO_DADDR(mp, bno),
Dave Chinnerc6319192012-11-14 17:50:13 +1100916 mp->m_quotainfo->qi_dqchunklen, 0, &bp,
Dave Chinner1813dd62012-11-14 17:54:40 +1100917 &xfs_dquot_buf_ops);
Dave Chinner6fcdc592013-06-03 15:28:46 +1000918
919 /*
920 * CRC and validation errors will return a EFSCORRUPTED here. If
921 * this occurs, re-read without CRC validation so that we can
922 * repair the damage via xfs_qm_reset_dqcounts(). This process
923 * will leave a trace in the log indicating corruption has
924 * been detected.
925 */
926 if (error == EFSCORRUPTED) {
927 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
928 XFS_FSB_TO_DADDR(mp, bno),
929 mp->m_quotainfo->qi_dqchunklen, 0, &bp,
930 NULL);
931 }
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (error)
934 break;
935
David Chinner5b139732008-04-10 12:20:10 +1000936 xfs_qm_reset_dqcounts(mp, bp, firstid, type);
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000937 xfs_buf_delwri_queue(bp, buffer_list);
Christoph Hellwig61551f12011-08-23 08:28:06 +0000938 xfs_buf_relse(bp);
Dave Chinner6fcdc592013-06-03 15:28:46 +1000939
940 /* goto the next block. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 bno++;
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000942 firstid += mp->m_quotainfo->qi_dqperchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000944
Jesper Juhl014c2542006-01-15 02:37:08 +0100945 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
948/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000949 * Iterate over all allocated USR/GRP/PRJ dquots in the system, calling a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 * caller supplied function for every chunk of dquots that we find.
951 */
952STATIC int
953xfs_qm_dqiterate(
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000954 struct xfs_mount *mp,
955 struct xfs_inode *qip,
956 uint flags,
957 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000959 struct xfs_bmbt_irec *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 int i, nmaps; /* number of map entries */
961 int error; /* return value */
962 xfs_fileoff_t lblkno;
963 xfs_filblks_t maxlblkcnt;
964 xfs_dqid_t firstid;
965 xfs_fsblock_t rablkno;
966 xfs_filblks_t rablkcnt;
967
968 error = 0;
969 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000970 * This looks racy, but we can't keep an inode lock across a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 * trans_reserve. But, this gets called during quotacheck, and that
972 * happens only at mount time which is single threaded.
973 */
974 if (qip->i_d.di_nblocks == 0)
Jesper Juhl014c2542006-01-15 02:37:08 +0100975 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977 map = kmem_alloc(XFS_DQITER_MAP_SIZE * sizeof(*map), KM_SLEEP);
978
979 lblkno = 0;
Dave Chinner32972382012-06-08 15:44:54 +1000980 maxlblkcnt = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 do {
982 nmaps = XFS_DQITER_MAP_SIZE;
983 /*
984 * We aren't changing the inode itself. Just changing
985 * some of its data. No new blocks are added here, and
986 * the inode is never added to the transaction.
987 */
988 xfs_ilock(qip, XFS_ILOCK_SHARED);
Dave Chinner5c8ed202011-09-18 20:40:45 +0000989 error = xfs_bmapi_read(qip, lblkno, maxlblkcnt - lblkno,
990 map, &nmaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 xfs_iunlock(qip, XFS_ILOCK_SHARED);
992 if (error)
993 break;
994
995 ASSERT(nmaps <= XFS_DQITER_MAP_SIZE);
996 for (i = 0; i < nmaps; i++) {
997 ASSERT(map[i].br_startblock != DELAYSTARTBLOCK);
998 ASSERT(map[i].br_blockcount);
999
1000
1001 lblkno += map[i].br_blockcount;
1002
1003 if (map[i].br_startblock == HOLESTARTBLOCK)
1004 continue;
1005
1006 firstid = (xfs_dqid_t) map[i].br_startoff *
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001007 mp->m_quotainfo->qi_dqperchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 /*
1009 * Do a read-ahead on the next extent.
1010 */
1011 if ((i+1 < nmaps) &&
1012 (map[i+1].br_startblock != HOLESTARTBLOCK)) {
1013 rablkcnt = map[i+1].br_blockcount;
1014 rablkno = map[i+1].br_startblock;
1015 while (rablkcnt--) {
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001016 xfs_buf_readahead(mp->m_ddev_targp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 XFS_FSB_TO_DADDR(mp, rablkno),
Dave Chinnerc3f8fc72012-11-12 22:54:01 +11001018 mp->m_quotainfo->qi_dqchunklen,
1019 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 rablkno++;
1021 }
1022 }
1023 /*
1024 * Iterate thru all the blks in the extent and
1025 * reset the counters of all the dquots inside them.
1026 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001027 error = xfs_qm_dqiter_bufs(mp, firstid,
1028 map[i].br_startblock,
1029 map[i].br_blockcount,
1030 flags, buffer_list);
1031 if (error)
1032 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 } while (nmaps > 0);
1035
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001036out:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001037 kmem_free(map);
Jesper Juhl014c2542006-01-15 02:37:08 +01001038 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
1040
1041/*
1042 * Called by dqusage_adjust in doing a quotacheck.
Christoph Hellwig52fda112010-09-06 01:44:22 +00001043 *
1044 * Given the inode, and a dquot id this updates both the incore dqout as well
1045 * as the buffer copy. This is so that once the quotacheck is done, we can
1046 * just log all the buffers, as opposed to logging numerous updates to
1047 * individual dquots.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001049STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050xfs_qm_quotacheck_dqadjust(
Christoph Hellwig52fda112010-09-06 01:44:22 +00001051 struct xfs_inode *ip,
1052 xfs_dqid_t id,
1053 uint type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 xfs_qcnt_t nblks,
1055 xfs_qcnt_t rtblks)
1056{
Christoph Hellwig52fda112010-09-06 01:44:22 +00001057 struct xfs_mount *mp = ip->i_mount;
1058 struct xfs_dquot *dqp;
1059 int error;
1060
1061 error = xfs_qm_dqget(mp, ip, id, type,
1062 XFS_QMOPT_DQALLOC | XFS_QMOPT_DOWARN, &dqp);
1063 if (error) {
1064 /*
1065 * Shouldn't be able to turn off quotas here.
1066 */
1067 ASSERT(error != ESRCH);
1068 ASSERT(error != ENOENT);
1069 return error;
1070 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001071
1072 trace_xfs_dqadjust(dqp);
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 /*
1075 * Adjust the inode count and the block count to reflect this inode's
1076 * resource usage.
1077 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001078 be64_add_cpu(&dqp->q_core.d_icount, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 dqp->q_res_icount++;
1080 if (nblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001081 be64_add_cpu(&dqp->q_core.d_bcount, nblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 dqp->q_res_bcount += nblks;
1083 }
1084 if (rtblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001085 be64_add_cpu(&dqp->q_core.d_rtbcount, rtblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 dqp->q_res_rtbcount += rtblks;
1087 }
1088
1089 /*
1090 * Set default limits, adjust timers (since we changed usages)
Christoph Hellwig191f8482010-04-20 17:01:53 +10001091 *
1092 * There are no timers for the default values set in the root dquot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 */
Christoph Hellwig191f8482010-04-20 17:01:53 +10001094 if (dqp->q_core.d_id) {
Brian Foster4b6eae2e2013-03-18 10:51:45 -04001095 xfs_qm_adjust_dqlimits(mp, dqp);
Christoph Hellwig52fda112010-09-06 01:44:22 +00001096 xfs_qm_adjust_dqtimers(mp, &dqp->q_core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
1098
1099 dqp->dq_flags |= XFS_DQ_DIRTY;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001100 xfs_qm_dqput(dqp);
1101 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102}
1103
1104STATIC int
1105xfs_qm_get_rtblks(
1106 xfs_inode_t *ip,
1107 xfs_qcnt_t *O_rtblks)
1108{
1109 xfs_filblks_t rtblks; /* total rt blks */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001110 xfs_extnum_t idx; /* extent record index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 xfs_ifork_t *ifp; /* inode fork pointer */
1112 xfs_extnum_t nextents; /* number of extent entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 int error;
1114
1115 ASSERT(XFS_IS_REALTIME_INODE(ip));
1116 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1117 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1118 if ((error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001119 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
1121 rtblks = 0;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001122 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10001123 for (idx = 0; idx < nextents; idx++)
1124 rtblks += xfs_bmbt_get_blockcount(xfs_iext_get_ext(ifp, idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 *O_rtblks = (xfs_qcnt_t)rtblks;
Jesper Juhl014c2542006-01-15 02:37:08 +01001126 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127}
1128
1129/*
1130 * callback routine supplied to bulkstat(). Given an inumber, find its
1131 * dquots and update them to account for resources taken by that inode.
1132 */
1133/* ARGSUSED */
1134STATIC int
1135xfs_qm_dqusage_adjust(
1136 xfs_mount_t *mp, /* mount point for filesystem */
1137 xfs_ino_t ino, /* inode number to get data for */
1138 void __user *buffer, /* not used */
1139 int ubsize, /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 int *ubused, /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 int *res) /* result code value */
1142{
1143 xfs_inode_t *ip;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001144 xfs_qcnt_t nblks, rtblks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 int error;
1146
1147 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1148
1149 /*
1150 * rootino must have its resources accounted for, not so with the quota
1151 * inodes.
1152 */
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -05001153 if (xfs_is_quota_inode(&mp->m_sb, ino)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 *res = BULKSTAT_RV_NOTHING;
1155 return XFS_ERROR(EINVAL);
1156 }
1157
1158 /*
1159 * We don't _need_ to take the ilock EXCL. However, the xfs_qm_dqget
1160 * interface expects the inode to be exclusively locked because that's
1161 * the case in all other instances. It's OK that we do this because
1162 * quotacheck is done only at mount time.
1163 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001164 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_EXCL, &ip);
1165 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 *res = BULKSTAT_RV_NOTHING;
Jesper Juhl014c2542006-01-15 02:37:08 +01001167 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
1169
Christoph Hellwig52fda112010-09-06 01:44:22 +00001170 ASSERT(ip->i_delayed_blks == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Christoph Hellwig52fda112010-09-06 01:44:22 +00001172 if (XFS_IS_REALTIME_INODE(ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 /*
1174 * Walk thru the extent list and count the realtime blocks.
1175 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001176 error = xfs_qm_get_rtblks(ip, &rtblks);
1177 if (error)
1178 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Christoph Hellwig52fda112010-09-06 01:44:22 +00001181 nblks = (xfs_qcnt_t)ip->i_d.di_nblocks - rtblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 /*
1184 * Add the (disk blocks and inode) resources occupied by this
1185 * inode to its dquots. We do this adjustment in the incore dquot,
1186 * and also copy the changes to its buffer.
1187 * We don't care about putting these changes in a transaction
1188 * envelope because if we crash in the middle of a 'quotacheck'
1189 * we have to start from the beginning anyway.
1190 * Once we're done, we'll log all the dquot bufs.
1191 *
Nathan Scottc41564b2006-03-29 08:55:14 +10001192 * The *QUOTA_ON checks below may look pretty racy, but quotachecks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 * and quotaoffs don't race. (Quotachecks happen at mount time only).
1194 */
1195 if (XFS_IS_UQUOTA_ON(mp)) {
Christoph Hellwig52fda112010-09-06 01:44:22 +00001196 error = xfs_qm_quotacheck_dqadjust(ip, ip->i_d.di_uid,
1197 XFS_DQ_USER, nblks, rtblks);
1198 if (error)
1199 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Christoph Hellwig52fda112010-09-06 01:44:22 +00001202 if (XFS_IS_GQUOTA_ON(mp)) {
1203 error = xfs_qm_quotacheck_dqadjust(ip, ip->i_d.di_gid,
1204 XFS_DQ_GROUP, nblks, rtblks);
1205 if (error)
1206 goto error0;
1207 }
1208
1209 if (XFS_IS_PQUOTA_ON(mp)) {
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001210 error = xfs_qm_quotacheck_dqadjust(ip, xfs_get_projid(ip),
Christoph Hellwig52fda112010-09-06 01:44:22 +00001211 XFS_DQ_PROJ, nblks, rtblks);
1212 if (error)
1213 goto error0;
1214 }
1215
1216 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1217 IRELE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 *res = BULKSTAT_RV_DIDONE;
Jesper Juhl014c2542006-01-15 02:37:08 +01001219 return 0;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001220
1221error0:
1222 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1223 IRELE(ip);
1224 *res = BULKSTAT_RV_GIVEUP;
1225 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001228STATIC int
1229xfs_qm_flush_one(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001230 struct xfs_dquot *dqp,
1231 void *data)
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001232{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001233 struct list_head *buffer_list = data;
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001234 struct xfs_buf *bp = NULL;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001235 int error = 0;
1236
1237 xfs_dqlock(dqp);
1238 if (dqp->dq_flags & XFS_DQ_FREEING)
1239 goto out_unlock;
1240 if (!XFS_DQ_IS_DIRTY(dqp))
1241 goto out_unlock;
1242
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001243 xfs_dqflock(dqp);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001244 error = xfs_qm_dqflush(dqp, &bp);
1245 if (error)
1246 goto out_unlock;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001247
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001248 xfs_buf_delwri_queue(bp, buffer_list);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001249 xfs_buf_relse(bp);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001250out_unlock:
1251 xfs_dqunlock(dqp);
1252 return error;
1253}
1254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255/*
1256 * Walk thru all the filesystem inodes and construct a consistent view
1257 * of the disk quota world. If the quotacheck fails, disable quotas.
1258 */
1259int
1260xfs_qm_quotacheck(
1261 xfs_mount_t *mp)
1262{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001263 int done, count, error, error2;
1264 xfs_ino_t lastino;
1265 size_t structsz;
1266 uint flags;
1267 LIST_HEAD (buffer_list);
1268 struct xfs_inode *uip = mp->m_quotainfo->qi_uquotaip;
1269 struct xfs_inode *gip = mp->m_quotainfo->qi_gquotaip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 count = INT_MAX;
1272 structsz = 1;
1273 lastino = 0;
1274 flags = 0;
1275
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001276 ASSERT(uip || gip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1278
Dave Chinner0b932cc2011-03-07 10:08:35 +11001279 xfs_notice(mp, "Quotacheck needed: Please wait.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 /*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001282 * First we go thru all the dquots on disk, USR and GRP/PRJ, and reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 * their counters to zero. We need a clean slate.
1284 * We don't log our changes till later.
1285 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001286 if (uip) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001287 error = xfs_qm_dqiterate(mp, uip, XFS_QMOPT_UQUOTA,
1288 &buffer_list);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001289 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 goto error_return;
1291 flags |= XFS_UQUOTA_CHKD;
1292 }
1293
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001294 if (gip) {
1295 error = xfs_qm_dqiterate(mp, gip, XFS_IS_GQUOTA_ON(mp) ?
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001296 XFS_QMOPT_GQUOTA : XFS_QMOPT_PQUOTA,
1297 &buffer_list);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001298 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 goto error_return;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001300 flags |= XFS_OQUOTA_CHKD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302
1303 do {
1304 /*
1305 * Iterate thru all the inodes in the file system,
1306 * adjusting the corresponding dquot counters in core.
1307 */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +10001308 error = xfs_bulkstat(mp, &lastino, &count,
1309 xfs_qm_dqusage_adjust,
1310 structsz, NULL, &done);
1311 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 break;
1313
Christoph Hellwig7dce11d2010-06-23 18:11:11 +10001314 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 /*
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001317 * We've made all the changes that we need to make incore. Flush them
1318 * down to disk buffers if everything was updated successfully.
David Chinner4b8879d2008-04-10 12:20:17 +10001319 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001320 if (XFS_IS_UQUOTA_ON(mp)) {
1321 error = xfs_qm_dquot_walk(mp, XFS_DQ_USER, xfs_qm_flush_one,
1322 &buffer_list);
1323 }
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001324 if (XFS_IS_GQUOTA_ON(mp)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001325 error2 = xfs_qm_dquot_walk(mp, XFS_DQ_GROUP, xfs_qm_flush_one,
1326 &buffer_list);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001327 if (!error)
1328 error = error2;
1329 }
1330 if (XFS_IS_PQUOTA_ON(mp)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001331 error2 = xfs_qm_dquot_walk(mp, XFS_DQ_PROJ, xfs_qm_flush_one,
1332 &buffer_list);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001333 if (!error)
1334 error = error2;
1335 }
David Chinner4b8879d2008-04-10 12:20:17 +10001336
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001337 error2 = xfs_buf_delwri_submit(&buffer_list);
1338 if (!error)
1339 error = error2;
1340
David Chinner4b8879d2008-04-10 12:20:17 +10001341 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 * We can get this error if we couldn't do a dquot allocation inside
1343 * xfs_qm_dqusage_adjust (via bulkstat). We don't care about the
1344 * dirty dquots that might be cached, we just want to get rid of them
1345 * and turn quotaoff. The dquots won't be attached to any of the inodes
1346 * at this point (because we intentionally didn't in dqget_noattach).
1347 */
1348 if (error) {
Christoph Hellwig8112e9d2010-04-20 17:02:29 +10001349 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 goto error_return;
1351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
1353 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 * If one type of quotas is off, then it will lose its
1355 * quotachecked status, since we won't be doing accounting for
1356 * that type anymore.
1357 */
Chandra Seetharaman4177af32012-01-23 17:31:43 +00001358 mp->m_qflags &= ~XFS_ALL_QUOTA_CHKD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 mp->m_qflags |= flags;
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 error_return:
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001362 while (!list_empty(&buffer_list)) {
1363 struct xfs_buf *bp =
1364 list_first_entry(&buffer_list, struct xfs_buf, b_list);
1365 list_del_init(&bp->b_list);
1366 xfs_buf_relse(bp);
1367 }
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001370 xfs_warn(mp,
1371 "Quotacheck: Unsuccessful (Error %d): Disabling quotas.",
1372 error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 /*
1374 * We must turn off quotas.
1375 */
1376 ASSERT(mp->m_quotainfo != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 xfs_qm_destroy_quotainfo(mp);
David Chinner31d55772008-04-10 12:20:38 +10001378 if (xfs_mount_reset_sbqflags(mp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001379 xfs_warn(mp,
1380 "Quotacheck: Failed to reset quota flags.");
David Chinner31d55772008-04-10 12:20:38 +10001381 }
Dave Chinner0b932cc2011-03-07 10:08:35 +11001382 } else
1383 xfs_notice(mp, "Quotacheck: Done.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return (error);
1385}
1386
1387/*
1388 * This is called after the superblock has been read in and we're ready to
1389 * iget the quota inodes.
1390 */
1391STATIC int
1392xfs_qm_init_quotainos(
1393 xfs_mount_t *mp)
1394{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001395 struct xfs_inode *uip = NULL;
1396 struct xfs_inode *gip = NULL;
1397 int error;
1398 __int64_t sbflags = 0;
1399 uint flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 ASSERT(mp->m_quotainfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
1403 /*
1404 * Get the uquota and gquota inodes
1405 */
Eric Sandeen62118702008-03-06 13:44:28 +11001406 if (xfs_sb_version_hasquota(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (XFS_IS_UQUOTA_ON(mp) &&
1408 mp->m_sb.sb_uquotino != NULLFSINO) {
1409 ASSERT(mp->m_sb.sb_uquotino > 0);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001410 error = xfs_iget(mp, NULL, mp->m_sb.sb_uquotino,
1411 0, 0, &uip);
1412 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 return XFS_ERROR(error);
1414 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001415 if (XFS_IS_OQUOTA_ON(mp) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 mp->m_sb.sb_gquotino != NULLFSINO) {
1417 ASSERT(mp->m_sb.sb_gquotino > 0);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001418 error = xfs_iget(mp, NULL, mp->m_sb.sb_gquotino,
1419 0, 0, &gip);
1420 if (error)
1421 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
1423 } else {
1424 flags |= XFS_QMOPT_SBVERSION;
1425 sbflags |= (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
1426 XFS_SB_GQUOTINO | XFS_SB_QFLAGS);
1427 }
1428
1429 /*
1430 * Create the two inodes, if they don't exist already. The changes
1431 * made above will get added to a transaction and logged in one of
1432 * the qino_alloc calls below. If the device is readonly,
1433 * temporarily switch to read-write to do this.
1434 */
1435 if (XFS_IS_UQUOTA_ON(mp) && uip == NULL) {
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001436 error = xfs_qm_qino_alloc(mp, &uip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 sbflags | XFS_SB_UQUOTINO,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001438 flags | XFS_QMOPT_UQUOTA);
1439 if (error)
1440 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 flags &= ~XFS_QMOPT_SBVERSION;
1443 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001444 if (XFS_IS_OQUOTA_ON(mp) && gip == NULL) {
1445 flags |= (XFS_IS_GQUOTA_ON(mp) ?
1446 XFS_QMOPT_GQUOTA : XFS_QMOPT_PQUOTA);
1447 error = xfs_qm_qino_alloc(mp, &gip,
1448 sbflags | XFS_SB_GQUOTINO, flags);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001449 if (error)
1450 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
1452
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001453 mp->m_quotainfo->qi_uquotaip = uip;
1454 mp->m_quotainfo->qi_gquotaip = gip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Jesper Juhl014c2542006-01-15 02:37:08 +01001456 return 0;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001457
1458error_rele:
1459 if (uip)
1460 IRELE(uip);
1461 if (gip)
1462 IRELE(gip);
1463 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
1465
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001466STATIC void
1467xfs_qm_dqfree_one(
1468 struct xfs_dquot *dqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001470 struct xfs_mount *mp = dqp->q_mount;
1471 struct xfs_quotainfo *qi = mp->m_quotainfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Christoph Hellwig9f920f12012-03-13 08:52:35 +00001473 mutex_lock(&qi->qi_tree_lock);
Chandra Seetharaman329e0872013-06-27 17:25:05 -05001474 radix_tree_delete(xfs_dquot_tree(qi, dqp->q_core.d_flags),
Christoph Hellwig9f920f12012-03-13 08:52:35 +00001475 be32_to_cpu(dqp->q_core.d_id));
Christoph Hellwigbf72de32011-12-06 21:58:19 +00001476
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001477 qi->qi_dquots--;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001478 mutex_unlock(&qi->qi_tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001480 xfs_qm_dqdestroy(dqp);
1481}
Christoph Hellwigbe7ffc32011-12-06 21:58:17 +00001482
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001483STATIC void
1484xfs_qm_dqreclaim_one(
1485 struct xfs_dquot *dqp,
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001486 struct list_head *buffer_list,
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001487 struct list_head *dispose_list)
1488{
1489 struct xfs_mount *mp = dqp->q_mount;
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001490 struct xfs_quotainfo *qi = mp->m_quotainfo;
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001491 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001493 if (!xfs_dqlock_nowait(dqp))
Dave Chinnerb8705532012-11-28 13:01:02 +11001494 goto out_move_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001496 /*
1497 * This dquot has acquired a reference in the meantime remove it from
1498 * the freelist and try again.
1499 */
1500 if (dqp->q_nrefs) {
Christoph Hellwig92678552011-12-06 21:58:18 +00001501 xfs_dqunlock(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001503 trace_xfs_dqreclaim_want(dqp);
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001504 XFS_STATS_INC(xs_qm_dqwants);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001505
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001506 list_del_init(&dqp->q_lru);
1507 qi->qi_lru_count--;
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001508 XFS_STATS_DEC(xs_qm_dquot_unused);
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001509 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 }
Christoph Hellwig92678552011-12-06 21:58:18 +00001511
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001512 /*
1513 * Try to grab the flush lock. If this dquot is in the process of
1514 * getting flushed to disk, we don't want to reclaim it.
1515 */
1516 if (!xfs_dqflock_nowait(dqp))
Dave Chinnerb8705532012-11-28 13:01:02 +11001517 goto out_unlock_move_tail;
Dave Chinner368e1362010-04-13 15:06:50 +10001518
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001519 if (XFS_DQ_IS_DIRTY(dqp)) {
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001520 struct xfs_buf *bp = NULL;
1521
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001522 trace_xfs_dqreclaim_dirty(dqp);
Dave Chinner368e1362010-04-13 15:06:50 +10001523
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001524 error = xfs_qm_dqflush(dqp, &bp);
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001525 if (error) {
1526 xfs_warn(mp, "%s: dquot %p flush failed",
1527 __func__, dqp);
Dave Chinnerb8705532012-11-28 13:01:02 +11001528 goto out_unlock_move_tail;
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001529 }
1530
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001531 xfs_buf_delwri_queue(bp, buffer_list);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001532 xfs_buf_relse(bp);
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001533 /*
1534 * Give the dquot another try on the freelist, as the
1535 * flushing will take some time.
1536 */
Dave Chinnerb8705532012-11-28 13:01:02 +11001537 goto out_unlock_move_tail;
Dave Chinner368e1362010-04-13 15:06:50 +10001538 }
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001539 xfs_dqfunlock(dqp);
1540
1541 /*
1542 * Prevent lookups now that we are past the point of no return.
1543 */
1544 dqp->dq_flags |= XFS_DQ_FREEING;
1545 xfs_dqunlock(dqp);
1546
1547 ASSERT(dqp->q_nrefs == 0);
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001548 list_move_tail(&dqp->q_lru, dispose_list);
1549 qi->qi_lru_count--;
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001550 XFS_STATS_DEC(xs_qm_dquot_unused);
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001551
1552 trace_xfs_dqreclaim_done(dqp);
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001553 XFS_STATS_INC(xs_qm_dqreclaims);
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001554 return;
1555
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001556 /*
1557 * Move the dquot to the tail of the list so that we don't spin on it.
1558 */
Dave Chinnerb8705532012-11-28 13:01:02 +11001559out_unlock_move_tail:
1560 xfs_dqunlock(dqp);
1561out_move_tail:
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001562 list_move_tail(&dqp->q_lru, &qi->qi_lru_list);
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001563 trace_xfs_dqreclaim_busy(dqp);
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001564 XFS_STATS_INC(xs_qm_dqreclaim_misses);
Dave Chinner368e1362010-04-13 15:06:50 +10001565}
1566
Dave Chinner368e1362010-04-13 15:06:50 +10001567STATIC int
Dave Chinner7f8275d2010-07-19 14:56:17 +10001568xfs_qm_shake(
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001569 struct shrinker *shrink,
1570 struct shrink_control *sc)
Dave Chinner368e1362010-04-13 15:06:50 +10001571{
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001572 struct xfs_quotainfo *qi =
1573 container_of(shrink, struct xfs_quotainfo, qi_shrinker);
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001574 int nr_to_scan = sc->nr_to_scan;
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001575 LIST_HEAD (buffer_list);
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001576 LIST_HEAD (dispose_list);
1577 struct xfs_dquot *dqp;
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001578 int error;
Dave Chinner368e1362010-04-13 15:06:50 +10001579
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001580 if ((sc->gfp_mask & (__GFP_FS|__GFP_WAIT)) != (__GFP_FS|__GFP_WAIT))
Dave Chinner368e1362010-04-13 15:06:50 +10001581 return 0;
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001582 if (!nr_to_scan)
1583 goto out;
Dave Chinner368e1362010-04-13 15:06:50 +10001584
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001585 mutex_lock(&qi->qi_lru_lock);
1586 while (!list_empty(&qi->qi_lru_list)) {
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001587 if (nr_to_scan-- <= 0)
1588 break;
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001589 dqp = list_first_entry(&qi->qi_lru_list, struct xfs_dquot,
1590 q_lru);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001591 xfs_qm_dqreclaim_one(dqp, &buffer_list, &dispose_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 }
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001593 mutex_unlock(&qi->qi_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001595 error = xfs_buf_delwri_submit(&buffer_list);
1596 if (error)
1597 xfs_warn(NULL, "%s: dquot reclaim failed", __func__);
1598
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001599 while (!list_empty(&dispose_list)) {
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001600 dqp = list_first_entry(&dispose_list, struct xfs_dquot, q_lru);
1601 list_del_init(&dqp->q_lru);
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001602 xfs_qm_dqfree_one(dqp);
1603 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001604
Christoph Hellwig92b2e5b32012-02-01 13:57:20 +00001605out:
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001606 return (qi->qi_lru_count / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607}
1608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609/*
1610 * Start a transaction and write the incore superblock changes to
1611 * disk. flags parameter indicates which fields have changed.
1612 */
1613int
1614xfs_qm_write_sb_changes(
1615 xfs_mount_t *mp,
1616 __int64_t flags)
1617{
1618 xfs_trans_t *tp;
1619 int error;
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
Jeff Liuf910a8c2013-01-28 21:26:34 +08001622 error = xfs_trans_reserve(tp, 0, XFS_QM_SBCHANGE_LOG_RES(mp),
1623 0, 0, XFS_DEFAULT_LOG_COUNT);
1624 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001626 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 }
1628
1629 xfs_mod_sb(tp, flags);
David Chinnere5720ee2008-04-10 12:21:18 +10001630 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
David Chinnere5720ee2008-04-10 12:21:18 +10001632 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634
1635
1636/* --------------- utility functions for vnodeops ---------------- */
1637
1638
1639/*
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001640 * Given an inode, a uid, gid and prid make sure that we have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 * allocated relevant dquot(s) on disk, and that we won't exceed inode
1642 * quotas by creating this file.
1643 * This also attaches dquot(s) to the given inode after locking it,
1644 * and returns the dquots corresponding to the uid and/or gid.
1645 *
1646 * in : inode (unlocked)
1647 * out : udquot, gdquot with references taken and unlocked
1648 */
1649int
1650xfs_qm_vop_dqalloc(
Christoph Hellwig7d095252009-06-08 15:33:32 +02001651 struct xfs_inode *ip,
1652 uid_t uid,
1653 gid_t gid,
1654 prid_t prid,
1655 uint flags,
1656 struct xfs_dquot **O_udqpp,
1657 struct xfs_dquot **O_gdqpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
Christoph Hellwig7d095252009-06-08 15:33:32 +02001659 struct xfs_mount *mp = ip->i_mount;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001660 struct xfs_dquot *uq = NULL;
1661 struct xfs_dquot *gq = NULL;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001662 int error;
1663 uint lockflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Christoph Hellwig7d095252009-06-08 15:33:32 +02001665 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 return 0;
1667
1668 lockflags = XFS_ILOCK_EXCL;
1669 xfs_ilock(ip, lockflags);
1670
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001671 if ((flags & XFS_QMOPT_INHERIT) && XFS_INHERIT_GID(ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 gid = ip->i_d.di_gid;
1673
1674 /*
1675 * Attach the dquot(s) to this inode, doing a dquot allocation
1676 * if necessary. The dquot(s) will not be locked.
1677 */
1678 if (XFS_NOT_DQATTACHED(mp, ip)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001679 error = xfs_qm_dqattach_locked(ip, XFS_QMOPT_DQALLOC);
1680 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 xfs_iunlock(ip, lockflags);
Jesper Juhl014c2542006-01-15 02:37:08 +01001682 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 }
1684 }
1685
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001686 if ((flags & XFS_QMOPT_UQUOTA) && XFS_IS_UQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 if (ip->i_d.di_uid != uid) {
1688 /*
1689 * What we need is the dquot that has this uid, and
1690 * if we send the inode to dqget, the uid of the inode
1691 * takes priority over what's sent in the uid argument.
1692 * We must unlock inode here before calling dqget if
1693 * we're not sending the inode, because otherwise
1694 * we'll deadlock by doing trans_reserve while
1695 * holding ilock.
1696 */
1697 xfs_iunlock(ip, lockflags);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001698 error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t) uid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 XFS_DQ_USER,
1700 XFS_QMOPT_DQALLOC |
1701 XFS_QMOPT_DOWARN,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001702 &uq);
1703 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 ASSERT(error != ENOENT);
Jesper Juhl014c2542006-01-15 02:37:08 +01001705 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
1707 /*
1708 * Get the ilock in the right order.
1709 */
1710 xfs_dqunlock(uq);
1711 lockflags = XFS_ILOCK_SHARED;
1712 xfs_ilock(ip, lockflags);
1713 } else {
1714 /*
1715 * Take an extra reference, because we'll return
1716 * this to caller
1717 */
1718 ASSERT(ip->i_udquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001719 uq = xfs_qm_dqhold(ip->i_udquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 }
1721 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001722 if ((flags & XFS_QMOPT_GQUOTA) && XFS_IS_GQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 if (ip->i_d.di_gid != gid) {
1724 xfs_iunlock(ip, lockflags);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001725 error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)gid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 XFS_DQ_GROUP,
1727 XFS_QMOPT_DQALLOC |
1728 XFS_QMOPT_DOWARN,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001729 &gq);
1730 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 ASSERT(error != ENOENT);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001732 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
1734 xfs_dqunlock(gq);
1735 lockflags = XFS_ILOCK_SHARED;
1736 xfs_ilock(ip, lockflags);
1737 } else {
1738 ASSERT(ip->i_gdquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001739 gq = xfs_qm_dqhold(ip->i_gdquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001741 } else if ((flags & XFS_QMOPT_PQUOTA) && XFS_IS_PQUOTA_ON(mp)) {
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001742 if (xfs_get_projid(ip) != prid) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001743 xfs_iunlock(ip, lockflags);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001744 error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)prid,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001745 XFS_DQ_PROJ,
1746 XFS_QMOPT_DQALLOC |
1747 XFS_QMOPT_DOWARN,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001748 &gq);
1749 if (error) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001750 ASSERT(error != ENOENT);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001751 goto error_rele;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001752 }
1753 xfs_dqunlock(gq);
1754 lockflags = XFS_ILOCK_SHARED;
1755 xfs_ilock(ip, lockflags);
1756 } else {
1757 ASSERT(ip->i_gdquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001758 gq = xfs_qm_dqhold(ip->i_gdquot);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
1761 if (uq)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001762 trace_xfs_dquot_dqalloc(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
1764 xfs_iunlock(ip, lockflags);
1765 if (O_udqpp)
1766 *O_udqpp = uq;
1767 else if (uq)
1768 xfs_qm_dqrele(uq);
1769 if (O_gdqpp)
1770 *O_gdqpp = gq;
1771 else if (gq)
1772 xfs_qm_dqrele(gq);
Jesper Juhl014c2542006-01-15 02:37:08 +01001773 return 0;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001774
1775error_rele:
1776 if (uq)
1777 xfs_qm_dqrele(uq);
1778 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779}
1780
1781/*
1782 * Actually transfer ownership, and do dquot modifications.
1783 * These were already reserved.
1784 */
1785xfs_dquot_t *
1786xfs_qm_vop_chown(
1787 xfs_trans_t *tp,
1788 xfs_inode_t *ip,
1789 xfs_dquot_t **IO_olddq,
1790 xfs_dquot_t *newdq)
1791{
1792 xfs_dquot_t *prevdq;
Nathan Scott06d10dd2005-06-21 15:48:47 +10001793 uint bfield = XFS_IS_REALTIME_INODE(ip) ?
1794 XFS_TRANS_DQ_RTBCOUNT : XFS_TRANS_DQ_BCOUNT;
1795
Christoph Hellwig7d095252009-06-08 15:33:32 +02001796
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001797 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 ASSERT(XFS_IS_QUOTA_RUNNING(ip->i_mount));
1799
1800 /* old dquot */
1801 prevdq = *IO_olddq;
1802 ASSERT(prevdq);
1803 ASSERT(prevdq != newdq);
1804
Nathan Scott06d10dd2005-06-21 15:48:47 +10001805 xfs_trans_mod_dquot(tp, prevdq, bfield, -(ip->i_d.di_nblocks));
1806 xfs_trans_mod_dquot(tp, prevdq, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808 /* the sparkling new dquot */
Nathan Scott06d10dd2005-06-21 15:48:47 +10001809 xfs_trans_mod_dquot(tp, newdq, bfield, ip->i_d.di_nblocks);
1810 xfs_trans_mod_dquot(tp, newdq, XFS_TRANS_DQ_ICOUNT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 /*
Christoph Hellwig78e55892011-12-06 21:58:22 +00001813 * Take an extra reference, because the inode is going to keep
1814 * this dquot pointer even after the trans_commit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 */
Christoph Hellwig78e55892011-12-06 21:58:22 +00001816 *IO_olddq = xfs_qm_dqhold(newdq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Jesper Juhl014c2542006-01-15 02:37:08 +01001818 return prevdq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819}
1820
1821/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001822 * Quota reservations for setattr(AT_UID|AT_GID|AT_PROJID).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 */
1824int
1825xfs_qm_vop_chown_reserve(
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001826 struct xfs_trans *tp,
1827 struct xfs_inode *ip,
1828 struct xfs_dquot *udqp,
1829 struct xfs_dquot *gdqp,
1830 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001832 struct xfs_mount *mp = ip->i_mount;
1833 uint delblks, blkflags, prjflags = 0;
1834 struct xfs_dquot *udq_unres = NULL;
1835 struct xfs_dquot *gdq_unres = NULL;
1836 struct xfs_dquot *udq_delblks = NULL;
1837 struct xfs_dquot *gdq_delblks = NULL;
1838 int error;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001841 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1843
1844 delblks = ip->i_delayed_blks;
Nathan Scott06d10dd2005-06-21 15:48:47 +10001845 blkflags = XFS_IS_REALTIME_INODE(ip) ?
1846 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
1848 if (XFS_IS_UQUOTA_ON(mp) && udqp &&
Christoph Hellwig1149d962005-11-02 15:01:12 +11001849 ip->i_d.di_uid != (uid_t)be32_to_cpu(udqp->q_core.d_id)) {
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001850 udq_delblks = udqp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 /*
1852 * If there are delayed allocation blocks, then we have to
1853 * unreserve those from the old dquot, and add them to the
1854 * new dquot.
1855 */
1856 if (delblks) {
1857 ASSERT(ip->i_udquot);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001858 udq_unres = ip->i_udquot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 }
1860 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001861 if (XFS_IS_OQUOTA_ON(ip->i_mount) && gdqp) {
Nathan Scott9a2a7de2006-03-31 13:04:49 +10001862 if (XFS_IS_PQUOTA_ON(ip->i_mount) &&
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001863 xfs_get_projid(ip) != be32_to_cpu(gdqp->q_core.d_id))
Nathan Scott9a2a7de2006-03-31 13:04:49 +10001864 prjflags = XFS_QMOPT_ENOSPC;
1865
1866 if (prjflags ||
1867 (XFS_IS_GQUOTA_ON(ip->i_mount) &&
1868 ip->i_d.di_gid != be32_to_cpu(gdqp->q_core.d_id))) {
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001869 gdq_delblks = gdqp;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001870 if (delblks) {
1871 ASSERT(ip->i_gdquot);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001872 gdq_unres = ip->i_gdquot;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 }
1875 }
1876
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001877 error = xfs_trans_reserve_quota_bydquots(tp, ip->i_mount,
1878 udq_delblks, gdq_delblks, ip->i_d.di_nblocks, 1,
1879 flags | blkflags | prjflags);
1880 if (error)
1881 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883 /*
1884 * Do the delayed blks reservations/unreservations now. Since, these
1885 * are done without the help of a transaction, if a reservation fails
1886 * its previous reservations won't be automatically undone by trans
1887 * code. So, we have to do it manually here.
1888 */
1889 if (delblks) {
1890 /*
1891 * Do the reservations first. Unreservation can't fail.
1892 */
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001893 ASSERT(udq_delblks || gdq_delblks);
1894 ASSERT(udq_unres || gdq_unres);
1895 error = xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
1896 udq_delblks, gdq_delblks, (xfs_qcnt_t)delblks, 0,
1897 flags | blkflags | prjflags);
1898 if (error)
1899 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001901 udq_unres, gdq_unres, -((xfs_qcnt_t)delblks), 0,
Nathan Scott06d10dd2005-06-21 15:48:47 +10001902 blkflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
1904
1905 return (0);
1906}
1907
1908int
1909xfs_qm_vop_rename_dqattach(
Christoph Hellwig7d095252009-06-08 15:33:32 +02001910 struct xfs_inode **i_tab)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911{
Christoph Hellwig7d095252009-06-08 15:33:32 +02001912 struct xfs_mount *mp = i_tab[0]->i_mount;
1913 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Christoph Hellwig7d095252009-06-08 15:33:32 +02001915 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Jesper Juhl014c2542006-01-15 02:37:08 +01001916 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Christoph Hellwig7d095252009-06-08 15:33:32 +02001918 for (i = 0; (i < 4 && i_tab[i]); i++) {
1919 struct xfs_inode *ip = i_tab[i];
1920 int error;
1921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 /*
1923 * Watch out for duplicate entries in the table.
1924 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001925 if (i == 0 || ip != i_tab[i-1]) {
1926 if (XFS_NOT_DQATTACHED(mp, ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 error = xfs_qm_dqattach(ip, 0);
1928 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01001929 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 }
1931 }
1932 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001933 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934}
1935
1936void
Christoph Hellwig7d095252009-06-08 15:33:32 +02001937xfs_qm_vop_create_dqattach(
1938 struct xfs_trans *tp,
1939 struct xfs_inode *ip,
1940 struct xfs_dquot *udqp,
1941 struct xfs_dquot *gdqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942{
Christoph Hellwig7d095252009-06-08 15:33:32 +02001943 struct xfs_mount *mp = tp->t_mountp;
1944
1945 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 return;
1947
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001948 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig7d095252009-06-08 15:33:32 +02001949 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
1951 if (udqp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 ASSERT(ip->i_udquot == NULL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001953 ASSERT(XFS_IS_UQUOTA_ON(mp));
Christoph Hellwig1149d962005-11-02 15:01:12 +11001954 ASSERT(ip->i_d.di_uid == be32_to_cpu(udqp->q_core.d_id));
Christoph Hellwig78e55892011-12-06 21:58:22 +00001955
1956 ip->i_udquot = xfs_qm_dqhold(udqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 xfs_trans_mod_dquot(tp, udqp, XFS_TRANS_DQ_ICOUNT, 1);
1958 }
1959 if (gdqp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 ASSERT(ip->i_gdquot == NULL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02001961 ASSERT(XFS_IS_OQUOTA_ON(mp));
1962 ASSERT((XFS_IS_GQUOTA_ON(mp) ?
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001963 ip->i_d.di_gid : xfs_get_projid(ip)) ==
Nathan Scottee2a4f72006-01-11 15:33:36 +11001964 be32_to_cpu(gdqp->q_core.d_id));
Christoph Hellwig78e55892011-12-06 21:58:22 +00001965
1966 ip->i_gdquot = xfs_qm_dqhold(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 xfs_trans_mod_dquot(tp, gdqp, XFS_TRANS_DQ_ICOUNT, 1);
1968 }
1969}
1970