blob: a29169b062e3b4f58c774f865db3cb6b871af12a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott4ce31212005-11-02 14:59:41 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott4ce31212005-11-02 14:59:41 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott4ce31212005-11-02 14:59:41 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott4ce31212005-11-02 14:59:41 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
19#include "xfs_fs.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +100020#include "xfs_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.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"
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 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Dave Chinnercd56a392013-08-28 10:18:07 +100055
56STATIC void xfs_qm_dqfree_one(struct xfs_dquot *dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/*
Christoph Hellwigb84a3a92012-03-14 11:53:34 -050058 * We use the batch lookup interface to iterate over the dquots as it
59 * currently is the only interface into the radix tree code that allows
60 * fuzzy lookups instead of exact matches. Holding the lock over multiple
61 * operations is fine as all callers are used either during mount/umount
62 * or quotaoff.
63 */
64#define XFS_DQ_LOOKUP_BATCH 32
65
66STATIC int
67xfs_qm_dquot_walk(
68 struct xfs_mount *mp,
69 int type,
Christoph Hellwig43ff2122012-04-23 15:58:39 +100070 int (*execute)(struct xfs_dquot *dqp, void *data),
71 void *data)
Christoph Hellwigb84a3a92012-03-14 11:53:34 -050072{
73 struct xfs_quotainfo *qi = mp->m_quotainfo;
Chandra Seetharaman329e0872013-06-27 17:25:05 -050074 struct radix_tree_root *tree = xfs_dquot_tree(qi, type);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -050075 uint32_t next_index;
76 int last_error = 0;
77 int skipped;
78 int nr_found;
79
80restart:
81 skipped = 0;
82 next_index = 0;
83 nr_found = 0;
84
85 while (1) {
86 struct xfs_dquot *batch[XFS_DQ_LOOKUP_BATCH];
87 int error = 0;
88 int i;
89
90 mutex_lock(&qi->qi_tree_lock);
91 nr_found = radix_tree_gang_lookup(tree, (void **)batch,
92 next_index, XFS_DQ_LOOKUP_BATCH);
93 if (!nr_found) {
94 mutex_unlock(&qi->qi_tree_lock);
95 break;
96 }
97
98 for (i = 0; i < nr_found; i++) {
99 struct xfs_dquot *dqp = batch[i];
100
101 next_index = be32_to_cpu(dqp->q_core.d_id) + 1;
102
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000103 error = execute(batch[i], data);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500104 if (error == EAGAIN) {
105 skipped++;
106 continue;
107 }
108 if (error && last_error != EFSCORRUPTED)
109 last_error = error;
110 }
111
112 mutex_unlock(&qi->qi_tree_lock);
113
114 /* bail out if the filesystem is corrupted. */
115 if (last_error == EFSCORRUPTED) {
116 skipped = 0;
117 break;
118 }
119 }
120
121 if (skipped) {
122 delay(1);
123 goto restart;
124 }
125
126 return last_error;
127}
128
129
130/*
131 * Purge a dquot from all tracking data structures and free it.
132 */
133STATIC int
134xfs_qm_dqpurge(
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000135 struct xfs_dquot *dqp,
136 void *data)
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500137{
138 struct xfs_mount *mp = dqp->q_mount;
139 struct xfs_quotainfo *qi = mp->m_quotainfo;
140 struct xfs_dquot *gdqp = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500141 struct xfs_dquot *pdqp = NULL;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500142
143 xfs_dqlock(dqp);
144 if ((dqp->dq_flags & XFS_DQ_FREEING) || dqp->q_nrefs != 0) {
145 xfs_dqunlock(dqp);
146 return EAGAIN;
147 }
148
149 /*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500150 * If this quota has a hint attached, prepare for releasing it now.
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500151 */
152 gdqp = dqp->q_gdquot;
153 if (gdqp) {
154 xfs_dqlock(gdqp);
155 dqp->q_gdquot = NULL;
156 }
157
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500158 pdqp = dqp->q_pdquot;
159 if (pdqp) {
160 xfs_dqlock(pdqp);
161 dqp->q_pdquot = NULL;
162 }
163
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500164 dqp->dq_flags |= XFS_DQ_FREEING;
165
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000166 xfs_dqflock(dqp);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500167
168 /*
169 * If we are turning this type of quotas off, we don't care
170 * about the dirty metadata sitting in this dquot. OTOH, if
171 * we're unmounting, we do care, so we flush it and wait.
172 */
173 if (XFS_DQ_IS_DIRTY(dqp)) {
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000174 struct xfs_buf *bp = NULL;
175 int error;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500176
177 /*
178 * We don't care about getting disk errors here. We need
179 * to purge this dquot anyway, so we go ahead regardless.
180 */
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000181 error = xfs_qm_dqflush(dqp, &bp);
182 if (error) {
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500183 xfs_warn(mp, "%s: dquot %p flush failed",
184 __func__, dqp);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +1000185 } else {
186 error = xfs_bwrite(bp);
187 xfs_buf_relse(bp);
188 }
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500189 xfs_dqflock(dqp);
190 }
191
192 ASSERT(atomic_read(&dqp->q_pincount) == 0);
193 ASSERT(XFS_FORCED_SHUTDOWN(mp) ||
194 !(dqp->q_logitem.qli_item.li_flags & XFS_LI_IN_AIL));
195
196 xfs_dqfunlock(dqp);
197 xfs_dqunlock(dqp);
198
Chandra Seetharaman329e0872013-06-27 17:25:05 -0500199 radix_tree_delete(xfs_dquot_tree(qi, dqp->q_core.d_flags),
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500200 be32_to_cpu(dqp->q_core.d_id));
201 qi->qi_dquots--;
202
203 /*
204 * We move dquots to the freelist as soon as their reference count
205 * hits zero, so it really should be on the freelist here.
206 */
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500207 ASSERT(!list_empty(&dqp->q_lru));
Dave Chinnercd56a392013-08-28 10:18:07 +1000208 list_lru_del(&qi->qi_lru, &dqp->q_lru);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500209 XFS_STATS_DEC(xs_qm_dquot_unused);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500210
211 xfs_qm_dqdestroy(dqp);
212
213 if (gdqp)
214 xfs_qm_dqput(gdqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500215 if (pdqp)
216 xfs_qm_dqput(pdqp);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500217 return 0;
218}
219
220/*
221 * Purge the dquot cache.
222 */
223void
224xfs_qm_dqpurge_all(
225 struct xfs_mount *mp,
226 uint flags)
227{
228 if (flags & XFS_QMOPT_UQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000229 xfs_qm_dquot_walk(mp, XFS_DQ_USER, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500230 if (flags & XFS_QMOPT_GQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000231 xfs_qm_dquot_walk(mp, XFS_DQ_GROUP, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500232 if (flags & XFS_QMOPT_PQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000233 xfs_qm_dquot_walk(mp, XFS_DQ_PROJ, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500234}
235
236/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 * Just destroy the quotainfo structure.
238 */
239void
Christoph Hellwig7d095252009-06-08 15:33:32 +0200240xfs_qm_unmount(
241 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Christoph Hellwig7d095252009-06-08 15:33:32 +0200243 if (mp->m_quotainfo) {
Christoph Hellwig8112e9d2010-04-20 17:02:29 +1000244 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 xfs_qm_destroy_quotainfo(mp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249
250/*
251 * This is called from xfs_mountfs to start quotas and initialize all
252 * necessary data structures like quotainfo. This is also responsible for
253 * running a quotacheck as necessary. We are guaranteed that the superblock
254 * is consistently read in at this point.
David Chinner53aa7912008-04-10 12:20:31 +1000255 *
256 * If we fail here, the mount will continue with quota turned off. We don't
257 * need to inidicate success or failure at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 */
David Chinner53aa7912008-04-10 12:20:31 +1000259void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260xfs_qm_mount_quotas(
Christoph Hellwig42490232008-08-13 16:49:32 +1000261 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 int error = 0;
264 uint sbf;
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 /*
267 * If quotas on realtime volumes is not supported, we disable
268 * quotas immediately.
269 */
270 if (mp->m_sb.sb_rextents) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100271 xfs_notice(mp, "Cannot turn on quotas for realtime filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 mp->m_qflags = 0;
273 goto write_changes;
274 }
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Nathan Scott155ffd02005-09-02 16:43:48 +1000277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /*
279 * Allocate the quotainfo structure inside the mount struct, and
280 * create quotainode(s), and change/rev superblock if necessary.
281 */
David Chinner53aa7912008-04-10 12:20:31 +1000282 error = xfs_qm_init_quotainfo(mp);
283 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /*
285 * We must turn off quotas.
286 */
287 ASSERT(mp->m_quotainfo == NULL);
288 mp->m_qflags = 0;
289 goto write_changes;
290 }
291 /*
292 * If any of the quotas are not consistent, do a quotacheck.
293 */
Christoph Hellwig42490232008-08-13 16:49:32 +1000294 if (XFS_QM_NEED_QUOTACHECK(mp)) {
David Chinner53aa7912008-04-10 12:20:31 +1000295 error = xfs_qm_quotacheck(mp);
296 if (error) {
297 /* Quotacheck failed and disabled quotas. */
298 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000301 /*
302 * If one type of quotas is off, then it will lose its
303 * quotachecked status, since we won't be doing accounting for
304 * that type anymore.
305 */
David Chinner53aa7912008-04-10 12:20:31 +1000306 if (!XFS_IS_UQUOTA_ON(mp))
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000307 mp->m_qflags &= ~XFS_UQUOTA_CHKD;
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500308 if (!XFS_IS_GQUOTA_ON(mp))
309 mp->m_qflags &= ~XFS_GQUOTA_CHKD;
310 if (!XFS_IS_PQUOTA_ON(mp))
311 mp->m_qflags &= ~XFS_PQUOTA_CHKD;
Nathan Scott155ffd02005-09-02 16:43:48 +1000312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 write_changes:
314 /*
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000315 * We actually don't have to acquire the m_sb_lock at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 * This can only be called from mount, and that's single threaded. XXX
317 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000318 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 sbf = mp->m_sb.sb_qflags;
320 mp->m_sb.sb_qflags = mp->m_qflags & XFS_MOUNT_QUOTA_ALL;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000321 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 if (sbf != (mp->m_qflags & XFS_MOUNT_QUOTA_ALL)) {
324 if (xfs_qm_write_sb_changes(mp, XFS_SB_QFLAGS)) {
325 /*
326 * We could only have been turning quotas off.
327 * We aren't in very good shape actually because
328 * the incore structures are convinced that quotas are
329 * off, but the on disk superblock doesn't know that !
330 */
331 ASSERT(!(XFS_IS_QUOTA_RUNNING(mp)));
Dave Chinner53487782011-03-07 10:05:35 +1100332 xfs_alert(mp, "%s: Superblock update failed!",
333 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335 }
336
337 if (error) {
Dave Chinner53487782011-03-07 10:05:35 +1100338 xfs_warn(mp, "Failed to initialize disk quotas.");
Christoph Hellwig7d095252009-06-08 15:33:32 +0200339 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343/*
344 * Called from the vfsops layer.
345 */
Christoph Hellwige57481d2008-12-03 12:20:36 +0100346void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347xfs_qm_unmount_quotas(
348 xfs_mount_t *mp)
349{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /*
351 * Release the dquots that root inode, et al might be holding,
352 * before we flush quotas and blow away the quotainfo structure.
353 */
354 ASSERT(mp->m_rootip);
355 xfs_qm_dqdetach(mp->m_rootip);
356 if (mp->m_rbmip)
357 xfs_qm_dqdetach(mp->m_rbmip);
358 if (mp->m_rsumip)
359 xfs_qm_dqdetach(mp->m_rsumip);
360
361 /*
Christoph Hellwige57481d2008-12-03 12:20:36 +0100362 * Release the quota inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 if (mp->m_quotainfo) {
Christoph Hellwige57481d2008-12-03 12:20:36 +0100365 if (mp->m_quotainfo->qi_uquotaip) {
366 IRELE(mp->m_quotainfo->qi_uquotaip);
367 mp->m_quotainfo->qi_uquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
Christoph Hellwige57481d2008-12-03 12:20:36 +0100369 if (mp->m_quotainfo->qi_gquotaip) {
370 IRELE(mp->m_quotainfo->qi_gquotaip);
371 mp->m_quotainfo->qi_gquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500373 if (mp->m_quotainfo->qi_pquotaip) {
374 IRELE(mp->m_quotainfo->qi_pquotaip);
375 mp->m_quotainfo->qi_pquotaip = NULL;
376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380STATIC int
381xfs_qm_dqattach_one(
382 xfs_inode_t *ip,
383 xfs_dqid_t id,
384 uint type,
385 uint doalloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 xfs_dquot_t *udqhint, /* hint */
387 xfs_dquot_t **IO_idqpp)
388{
389 xfs_dquot_t *dqp;
390 int error;
391
Christoph Hellwig579aa9ca2008-04-22 17:34:00 +1000392 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 error = 0;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /*
396 * See if we already have it in the inode itself. IO_idqpp is
397 * &i_udquot or &i_gdquot. This made the code look weird, but
398 * made the logic a lot simpler.
399 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100400 dqp = *IO_idqpp;
401 if (dqp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000402 trace_xfs_dqattach_found(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100403 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405
406 /*
407 * udqhint is the i_udquot field in inode, and is non-NULL only
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000408 * when the type arg is group/project. Its purpose is to save a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 * lookup by dqid (xfs_qm_dqget) by caching a group dquot inside
410 * the user dquot.
411 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100412 if (udqhint) {
413 ASSERT(type == XFS_DQ_GROUP || type == XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 xfs_dqlock(udqhint);
415
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100416 /*
417 * No need to take dqlock to look at the id.
418 *
419 * The ID can't change until it gets reclaimed, and it won't
420 * be reclaimed as long as we have a ref from inode and we
421 * hold the ilock.
422 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500423 if (type == XFS_DQ_GROUP)
424 dqp = udqhint->q_gdquot;
425 else
426 dqp = udqhint->q_pdquot;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100427 if (dqp && be32_to_cpu(dqp->q_core.d_id) == id) {
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100428 ASSERT(*IO_idqpp == NULL);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100429
Christoph Hellwig78e55892011-12-06 21:58:22 +0000430 *IO_idqpp = xfs_qm_dqhold(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100434
435 /*
436 * We can't hold a dquot lock when we call the dqget code.
437 * We'll deadlock in no time, because of (not conforming to)
438 * lock ordering - the inodelock comes before any dquot lock,
439 * and we may drop and reacquire the ilock in xfs_qm_dqget().
440 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100442 }
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 /*
445 * Find the dquot from somewhere. This bumps the
446 * reference count of dquot and returns it locked.
447 * This can return ENOENT if dquot didn't exist on
448 * disk and we didn't ask it to allocate;
449 * ESRCH if quotas got turned off suddenly.
450 */
Mitsuo Hayasakadb3e74b2011-11-10 01:33:10 +0000451 error = xfs_qm_dqget(ip->i_mount, ip, id, type,
452 doalloc | XFS_QMOPT_DOWARN, &dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100453 if (error)
454 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000456 trace_xfs_dqattach_get(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /*
459 * dqget may have dropped and re-acquired the ilock, but it guarantees
460 * that the dquot returned is the one that should go in the inode.
461 */
462 *IO_idqpp = dqp;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100463 xfs_dqunlock(dqp);
464 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
467
468/*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500469 * Given a udquot and group/project type, attach the group/project
470 * dquot pointer to the udquot as a hint for future lookups.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 */
472STATIC void
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500473xfs_qm_dqattach_hint(
474 struct xfs_inode *ip,
475 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500477 struct xfs_dquot **dqhintp;
478 struct xfs_dquot *dqp;
479 struct xfs_dquot *udq = ip->i_udquot;
480
481 ASSERT(type == XFS_DQ_GROUP || type == XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100483 xfs_dqlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500485 if (type == XFS_DQ_GROUP) {
486 dqp = ip->i_gdquot;
487 dqhintp = &udq->q_gdquot;
488 } else {
489 dqp = ip->i_pdquot;
490 dqhintp = &udq->q_pdquot;
491 }
492
493 if (*dqhintp) {
494 struct xfs_dquot *tmp;
495
496 if (*dqhintp == dqp)
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000497 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500499 tmp = *dqhintp;
500 *dqhintp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 xfs_qm_dqrele(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500504 *dqhintp = xfs_qm_dqhold(dqp);
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000505done:
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100506 xfs_dqunlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400509static bool
510xfs_qm_need_dqattach(
511 struct xfs_inode *ip)
512{
513 struct xfs_mount *mp = ip->i_mount;
514
515 if (!XFS_IS_QUOTA_RUNNING(mp))
516 return false;
517 if (!XFS_IS_QUOTA_ON(mp))
518 return false;
519 if (!XFS_NOT_DQATTACHED(mp, ip))
520 return false;
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -0500521 if (xfs_is_quota_inode(&mp->m_sb, ip->i_ino))
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400522 return false;
523 return true;
524}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000527 * Given a locked inode, attach dquot(s) to it, taking U/G/P-QUOTAON
528 * into account.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 * If XFS_QMOPT_DQALLOC, the dquot(s) will be allocated if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * Inode may get unlocked and relocked in here, and the caller must deal with
531 * the consequences.
532 */
533int
Christoph Hellwig7d095252009-06-08 15:33:32 +0200534xfs_qm_dqattach_locked(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 xfs_inode_t *ip,
536 uint flags)
537{
538 xfs_mount_t *mp = ip->i_mount;
539 uint nquotas = 0;
540 int error = 0;
541
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400542 if (!xfs_qm_need_dqattach(ip))
Jesper Juhl014c2542006-01-15 02:37:08 +0100543 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Christoph Hellwig7d095252009-06-08 15:33:32 +0200545 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 if (XFS_IS_UQUOTA_ON(mp)) {
548 error = xfs_qm_dqattach_one(ip, ip->i_d.di_uid, XFS_DQ_USER,
549 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 NULL, &ip->i_udquot);
551 if (error)
552 goto done;
553 nquotas++;
554 }
Christoph Hellwig579aa9ca2008-04-22 17:34:00 +1000555
556 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500557 if (XFS_IS_GQUOTA_ON(mp)) {
558 error = xfs_qm_dqattach_one(ip, ip->i_d.di_gid, XFS_DQ_GROUP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 ip->i_udquot, &ip->i_gdquot);
561 /*
562 * Don't worry about the udquot that we may have
563 * attached above. It'll get detached, if not already.
564 */
565 if (error)
566 goto done;
567 nquotas++;
568 }
569
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500570 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
571 if (XFS_IS_PQUOTA_ON(mp)) {
572 error = xfs_qm_dqattach_one(ip, xfs_get_projid(ip), XFS_DQ_PROJ,
573 flags & XFS_QMOPT_DQALLOC,
574 ip->i_udquot, &ip->i_pdquot);
575 /*
576 * Don't worry about the udquot that we may have
577 * attached above. It'll get detached, if not already.
578 */
579 if (error)
580 goto done;
581 nquotas++;
582 }
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 /*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500585 * Attach this group/project quota to the user quota as a hint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 * This WON'T, in general, result in a thrash.
587 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500588 if (nquotas > 1 && ip->i_udquot) {
Christoph Hellwig579aa9ca2008-04-22 17:34:00 +1000589 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500590 ASSERT(ip->i_gdquot || !XFS_IS_GQUOTA_ON(mp));
591 ASSERT(ip->i_pdquot || !XFS_IS_PQUOTA_ON(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 /*
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000594 * We do not have i_udquot locked at this point, but this check
595 * is OK since we don't depend on the i_gdquot to be accurate
596 * 100% all the time. It is just a hint, and this will
597 * succeed in general.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 */
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000599 if (ip->i_udquot->q_gdquot != ip->i_gdquot)
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500600 xfs_qm_dqattach_hint(ip, XFS_DQ_GROUP);
601
602 if (ip->i_udquot->q_pdquot != ip->i_pdquot)
603 xfs_qm_dqattach_hint(ip, XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605
Christoph Hellwig7d095252009-06-08 15:33:32 +0200606 done:
Christoph Hellwigea15ab32011-07-13 13:43:50 +0200607#ifdef DEBUG
608 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (XFS_IS_UQUOTA_ON(mp))
610 ASSERT(ip->i_udquot);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500611 if (XFS_IS_GQUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 ASSERT(ip->i_gdquot);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500613 if (XFS_IS_PQUOTA_ON(mp))
614 ASSERT(ip->i_pdquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200616 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617#endif
Christoph Hellwig7d095252009-06-08 15:33:32 +0200618 return error;
619}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Christoph Hellwig7d095252009-06-08 15:33:32 +0200621int
622xfs_qm_dqattach(
623 struct xfs_inode *ip,
624 uint flags)
625{
626 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400628 if (!xfs_qm_need_dqattach(ip))
629 return 0;
630
Christoph Hellwig7d095252009-06-08 15:33:32 +0200631 xfs_ilock(ip, XFS_ILOCK_EXCL);
632 error = xfs_qm_dqattach_locked(ip, flags);
633 xfs_iunlock(ip, XFS_ILOCK_EXCL);
634
Jesper Juhl014c2542006-01-15 02:37:08 +0100635 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
638/*
639 * Release dquots (and their references) if any.
640 * The inode should be locked EXCL except when this's called by
641 * xfs_ireclaim.
642 */
643void
644xfs_qm_dqdetach(
645 xfs_inode_t *ip)
646{
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500647 if (!(ip->i_udquot || ip->i_gdquot || ip->i_pdquot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return;
649
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000650 trace_xfs_dquot_dqdetach(ip);
651
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -0500652 ASSERT(!xfs_is_quota_inode(&ip->i_mount->m_sb, ip->i_ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (ip->i_udquot) {
654 xfs_qm_dqrele(ip->i_udquot);
655 ip->i_udquot = NULL;
656 }
657 if (ip->i_gdquot) {
658 xfs_qm_dqrele(ip->i_gdquot);
659 ip->i_gdquot = NULL;
660 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500661 if (ip->i_pdquot) {
662 xfs_qm_dqrele(ip->i_pdquot);
663 ip->i_pdquot = NULL;
664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
Christoph Hellwig3fe58f32013-04-03 16:11:16 +1100667int
668xfs_qm_calc_dquots_per_chunk(
669 struct xfs_mount *mp,
670 unsigned int nbblks) /* basic block units */
671{
672 unsigned int ndquots;
673
674 ASSERT(nbblks > 0);
675 ndquots = BBTOB(nbblks);
676 do_div(ndquots, sizeof(xfs_dqblk_t));
677
678 return ndquots;
679}
680
Dave Chinnercd56a392013-08-28 10:18:07 +1000681struct xfs_qm_isolate {
682 struct list_head buffers;
683 struct list_head dispose;
684};
685
686static enum lru_status
687xfs_qm_dquot_isolate(
688 struct list_head *item,
689 spinlock_t *lru_lock,
690 void *arg)
691{
692 struct xfs_dquot *dqp = container_of(item,
693 struct xfs_dquot, q_lru);
694 struct xfs_qm_isolate *isol = arg;
695
696 if (!xfs_dqlock_nowait(dqp))
697 goto out_miss_busy;
698
699 /*
700 * This dquot has acquired a reference in the meantime remove it from
701 * the freelist and try again.
702 */
703 if (dqp->q_nrefs) {
704 xfs_dqunlock(dqp);
705 XFS_STATS_INC(xs_qm_dqwants);
706
707 trace_xfs_dqreclaim_want(dqp);
708 list_del_init(&dqp->q_lru);
709 XFS_STATS_DEC(xs_qm_dquot_unused);
Dave Chinner35163412013-08-28 10:18:08 +1000710 return LRU_REMOVED;
Dave Chinnercd56a392013-08-28 10:18:07 +1000711 }
712
713 /*
714 * If the dquot is dirty, flush it. If it's already being flushed, just
715 * skip it so there is time for the IO to complete before we try to
716 * reclaim it again on the next LRU pass.
717 */
718 if (!xfs_dqflock_nowait(dqp)) {
719 xfs_dqunlock(dqp);
720 goto out_miss_busy;
721 }
722
723 if (XFS_DQ_IS_DIRTY(dqp)) {
724 struct xfs_buf *bp = NULL;
725 int error;
726
727 trace_xfs_dqreclaim_dirty(dqp);
728
729 /* we have to drop the LRU lock to flush the dquot */
730 spin_unlock(lru_lock);
731
732 error = xfs_qm_dqflush(dqp, &bp);
733 if (error) {
734 xfs_warn(dqp->q_mount, "%s: dquot %p flush failed",
735 __func__, dqp);
736 goto out_unlock_dirty;
737 }
738
739 xfs_buf_delwri_queue(bp, &isol->buffers);
740 xfs_buf_relse(bp);
741 goto out_unlock_dirty;
742 }
743 xfs_dqfunlock(dqp);
744
745 /*
746 * Prevent lookups now that we are past the point of no return.
747 */
748 dqp->dq_flags |= XFS_DQ_FREEING;
749 xfs_dqunlock(dqp);
750
751 ASSERT(dqp->q_nrefs == 0);
752 list_move_tail(&dqp->q_lru, &isol->dispose);
753 XFS_STATS_DEC(xs_qm_dquot_unused);
754 trace_xfs_dqreclaim_done(dqp);
755 XFS_STATS_INC(xs_qm_dqreclaims);
Dave Chinner35163412013-08-28 10:18:08 +1000756 return LRU_REMOVED;
Dave Chinnercd56a392013-08-28 10:18:07 +1000757
758out_miss_busy:
759 trace_xfs_dqreclaim_busy(dqp);
760 XFS_STATS_INC(xs_qm_dqreclaim_misses);
Dave Chinner35163412013-08-28 10:18:08 +1000761 return LRU_SKIP;
Dave Chinnercd56a392013-08-28 10:18:07 +1000762
763out_unlock_dirty:
764 trace_xfs_dqreclaim_busy(dqp);
765 XFS_STATS_INC(xs_qm_dqreclaim_misses);
Dave Chinner35163412013-08-28 10:18:08 +1000766 xfs_dqunlock(dqp);
767 spin_lock(lru_lock);
768 return LRU_RETRY;
Dave Chinnercd56a392013-08-28 10:18:07 +1000769}
770
Andrew Morton2f5b56f2013-08-28 10:18:08 +1000771static unsigned long
Dave Chinnercd56a392013-08-28 10:18:07 +1000772xfs_qm_shrink_scan(
773 struct shrinker *shrink,
774 struct shrink_control *sc)
775{
776 struct xfs_quotainfo *qi = container_of(shrink,
777 struct xfs_quotainfo, qi_shrinker);
778 struct xfs_qm_isolate isol;
Andrew Morton2f5b56f2013-08-28 10:18:08 +1000779 unsigned long freed;
Dave Chinnercd56a392013-08-28 10:18:07 +1000780 int error;
781 unsigned long nr_to_scan = sc->nr_to_scan;
782
783 if ((sc->gfp_mask & (__GFP_FS|__GFP_WAIT)) != (__GFP_FS|__GFP_WAIT))
784 return 0;
785
786 INIT_LIST_HEAD(&isol.buffers);
787 INIT_LIST_HEAD(&isol.dispose);
788
789 freed = list_lru_walk_node(&qi->qi_lru, sc->nid, xfs_qm_dquot_isolate, &isol,
790 &nr_to_scan);
791
792 error = xfs_buf_delwri_submit(&isol.buffers);
793 if (error)
794 xfs_warn(NULL, "%s: dquot reclaim failed", __func__);
795
796 while (!list_empty(&isol.dispose)) {
797 struct xfs_dquot *dqp;
798
799 dqp = list_first_entry(&isol.dispose, struct xfs_dquot, q_lru);
800 list_del_init(&dqp->q_lru);
801 xfs_qm_dqfree_one(dqp);
802 }
803
804 return freed;
805}
806
Andrew Morton2f5b56f2013-08-28 10:18:08 +1000807static unsigned long
Dave Chinnercd56a392013-08-28 10:18:07 +1000808xfs_qm_shrink_count(
809 struct shrinker *shrink,
810 struct shrink_control *sc)
811{
812 struct xfs_quotainfo *qi = container_of(shrink,
813 struct xfs_quotainfo, qi_shrinker);
814
815 return list_lru_count_node(&qi->qi_lru, sc->nid);
816}
817
Christoph Hellwiga4edd1d2009-01-19 02:03:11 +0100818/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 * This initializes all the quota information that's kept in the
820 * mount structure
821 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000822STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823xfs_qm_init_quotainfo(
824 xfs_mount_t *mp)
825{
826 xfs_quotainfo_t *qinf;
827 int error;
828 xfs_dquot_t *dqp;
829
830 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 qinf = mp->m_quotainfo = kmem_zalloc(sizeof(xfs_quotainfo_t), KM_SLEEP);
833
834 /*
835 * See if quotainodes are setup, and if not, allocate them,
836 * and change the superblock accordingly.
837 */
838 if ((error = xfs_qm_init_quotainos(mp))) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000839 kmem_free(qinf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 mp->m_quotainfo = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +0100841 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
843
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000844 INIT_RADIX_TREE(&qinf->qi_uquota_tree, GFP_NOFS);
845 INIT_RADIX_TREE(&qinf->qi_gquota_tree, GFP_NOFS);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500846 INIT_RADIX_TREE(&qinf->qi_pquota_tree, GFP_NOFS);
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000847 mutex_init(&qinf->qi_tree_lock);
848
Dave Chinnercd56a392013-08-28 10:18:07 +1000849 list_lru_init(&qinf->qi_lru);
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 /* mutex used to serialize quotaoffs */
Jes Sorensen794ee1b2006-01-09 15:59:21 -0800852 mutex_init(&qinf->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 /* Precalc some constants */
855 qinf->qi_dqchunklen = XFS_FSB_TO_BB(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
Christoph Hellwig3fe58f32013-04-03 16:11:16 +1100856 qinf->qi_dqperchunk = xfs_qm_calc_dquots_per_chunk(mp,
857 qinf->qi_dqchunklen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 mp->m_qflags |= (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_CHKD);
860
861 /*
862 * We try to get the limits from the superuser's limits fields.
863 * This is quite hacky, but it is standard quota practice.
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000864 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 * We look at the USR dquot with id == 0 first, but if user quotas
866 * are not enabled we goto the GRP dquot with id == 0.
867 * We don't really care to keep separate default limits for user
868 * and group quotas, at least not at this point.
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000869 *
870 * Since we may not have done a quotacheck by this point, just read
871 * the dquot without attaching it to any hashtables or lists.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 */
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000873 error = xfs_qm_dqread(mp, 0,
874 XFS_IS_UQUOTA_RUNNING(mp) ? XFS_DQ_USER :
875 (XFS_IS_GQUOTA_RUNNING(mp) ? XFS_DQ_GROUP :
876 XFS_DQ_PROJ),
877 XFS_QMOPT_DOWARN, &dqp);
878 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 xfs_disk_dquot_t *ddqp = &dqp->q_core;
880
881 /*
882 * The warnings and timers set the grace period given to
883 * a user or group before he or she can not perform any
884 * more writing. If it is zero, a default is used.
885 */
Christoph Hellwig1149d962005-11-02 15:01:12 +1100886 qinf->qi_btimelimit = ddqp->d_btimer ?
887 be32_to_cpu(ddqp->d_btimer) : XFS_QM_BTIMELIMIT;
888 qinf->qi_itimelimit = ddqp->d_itimer ?
889 be32_to_cpu(ddqp->d_itimer) : XFS_QM_ITIMELIMIT;
890 qinf->qi_rtbtimelimit = ddqp->d_rtbtimer ?
891 be32_to_cpu(ddqp->d_rtbtimer) : XFS_QM_RTBTIMELIMIT;
892 qinf->qi_bwarnlimit = ddqp->d_bwarns ?
893 be16_to_cpu(ddqp->d_bwarns) : XFS_QM_BWARNLIMIT;
894 qinf->qi_iwarnlimit = ddqp->d_iwarns ?
895 be16_to_cpu(ddqp->d_iwarns) : XFS_QM_IWARNLIMIT;
896 qinf->qi_rtbwarnlimit = ddqp->d_rtbwarns ?
897 be16_to_cpu(ddqp->d_rtbwarns) : XFS_QM_RTBWARNLIMIT;
898 qinf->qi_bhardlimit = be64_to_cpu(ddqp->d_blk_hardlimit);
899 qinf->qi_bsoftlimit = be64_to_cpu(ddqp->d_blk_softlimit);
900 qinf->qi_ihardlimit = be64_to_cpu(ddqp->d_ino_hardlimit);
901 qinf->qi_isoftlimit = be64_to_cpu(ddqp->d_ino_softlimit);
902 qinf->qi_rtbhardlimit = be64_to_cpu(ddqp->d_rtb_hardlimit);
903 qinf->qi_rtbsoftlimit = be64_to_cpu(ddqp->d_rtb_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 xfs_qm_dqdestroy(dqp);
906 } else {
907 qinf->qi_btimelimit = XFS_QM_BTIMELIMIT;
908 qinf->qi_itimelimit = XFS_QM_ITIMELIMIT;
909 qinf->qi_rtbtimelimit = XFS_QM_RTBTIMELIMIT;
910 qinf->qi_bwarnlimit = XFS_QM_BWARNLIMIT;
911 qinf->qi_iwarnlimit = XFS_QM_IWARNLIMIT;
Nathan Scott06d10dd2005-06-21 15:48:47 +1000912 qinf->qi_rtbwarnlimit = XFS_QM_RTBWARNLIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
914
Dave Chinnercd56a392013-08-28 10:18:07 +1000915 qinf->qi_shrinker.count_objects = xfs_qm_shrink_count;
916 qinf->qi_shrinker.scan_objects = xfs_qm_shrink_scan;
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000917 qinf->qi_shrinker.seeks = DEFAULT_SEEKS;
Dave Chinnercd56a392013-08-28 10:18:07 +1000918 qinf->qi_shrinker.flags = SHRINKER_NUMA_AWARE;
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000919 register_shrinker(&qinf->qi_shrinker);
Jesper Juhl014c2542006-01-15 02:37:08 +0100920 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
923
924/*
925 * Gets called when unmounting a filesystem or when all quotas get
926 * turned off.
927 * This purges the quota inodes, destroys locks and frees itself.
928 */
929void
930xfs_qm_destroy_quotainfo(
931 xfs_mount_t *mp)
932{
933 xfs_quotainfo_t *qi;
934
935 qi = mp->m_quotainfo;
936 ASSERT(qi != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000938 unregister_shrinker(&qi->qi_shrinker);
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (qi->qi_uquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +1000941 IRELE(qi->qi_uquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 qi->qi_uquotaip = NULL; /* paranoia */
943 }
944 if (qi->qi_gquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +1000945 IRELE(qi->qi_gquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 qi->qi_gquotaip = NULL;
947 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500948 if (qi->qi_pquotaip) {
949 IRELE(qi->qi_pquotaip);
950 qi->qi_pquotaip = NULL;
951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 mutex_destroy(&qi->qi_quotaofflock);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000953 kmem_free(qi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 mp->m_quotainfo = NULL;
955}
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957/*
958 * Create an inode and return with a reference already taken, but unlocked
959 * This is how we create quota inodes
960 */
961STATIC int
962xfs_qm_qino_alloc(
963 xfs_mount_t *mp,
964 xfs_inode_t **ip,
965 __int64_t sbfields,
966 uint flags)
967{
968 xfs_trans_t *tp;
969 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 int committed;
971
Chandra Seetharamand892d582013-07-19 17:36:02 -0500972 *ip = NULL;
973 /*
974 * With superblock that doesn't have separate pquotino, we
975 * share an inode between gquota and pquota. If the on-disk
976 * superblock has GQUOTA and the filesystem is now mounted
977 * with PQUOTA, just use sb_gquotino for sb_pquotino and
978 * vice-versa.
979 */
980 if (!xfs_sb_version_has_pquotino(&mp->m_sb) &&
981 (flags & (XFS_QMOPT_PQUOTA|XFS_QMOPT_GQUOTA))) {
982 xfs_ino_t ino = NULLFSINO;
983
984 if ((flags & XFS_QMOPT_PQUOTA) &&
985 (mp->m_sb.sb_gquotino != NULLFSINO)) {
986 ino = mp->m_sb.sb_gquotino;
987 ASSERT(mp->m_sb.sb_pquotino == NULLFSINO);
988 } else if ((flags & XFS_QMOPT_GQUOTA) &&
989 (mp->m_sb.sb_pquotino != NULLFSINO)) {
990 ino = mp->m_sb.sb_pquotino;
991 ASSERT(mp->m_sb.sb_gquotino == NULLFSINO);
992 }
993 if (ino != NULLFSINO) {
994 error = xfs_iget(mp, NULL, ino, 0, 0, ip);
995 if (error)
996 return error;
997 mp->m_sb.sb_gquotino = NULLFSINO;
998 mp->m_sb.sb_pquotino = NULLFSINO;
999 }
1000 }
1001
Nathan Scott061f7202006-01-11 15:27:50 +11001002 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QINOCREATE);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001003 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_create,
1004 XFS_QM_QINOCREATE_SPACE_RES(mp), 0);
1005 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001007 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Chandra Seetharamand892d582013-07-19 17:36:02 -05001010 if (!*ip) {
1011 error = xfs_dir_ialloc(&tp, NULL, S_IFREG, 1, 0, 0, 1, ip,
1012 &committed);
1013 if (error) {
1014 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES |
1015 XFS_TRANS_ABORT);
1016 return error;
1017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
1019
1020 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 * Make the changes in the superblock, and log those too.
1022 * sbfields arg may contain fields other than *QUOTINO;
1023 * VERSIONNUM for example.
1024 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001025 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if (flags & XFS_QMOPT_SBVERSION) {
Eric Sandeen62118702008-03-06 13:44:28 +11001027 ASSERT(!xfs_sb_version_hasquota(&mp->m_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 ASSERT((sbfields & (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
Chandra Seetharamand892d582013-07-19 17:36:02 -05001029 XFS_SB_GQUOTINO | XFS_SB_PQUOTINO | XFS_SB_QFLAGS)) ==
1030 (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
1031 XFS_SB_GQUOTINO | XFS_SB_PQUOTINO |
1032 XFS_SB_QFLAGS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Eric Sandeen62118702008-03-06 13:44:28 +11001034 xfs_sb_version_addquota(&mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 mp->m_sb.sb_uquotino = NULLFSINO;
1036 mp->m_sb.sb_gquotino = NULLFSINO;
Chandra Seetharamand892d582013-07-19 17:36:02 -05001037 mp->m_sb.sb_pquotino = NULLFSINO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Chandra Seetharamand892d582013-07-19 17:36:02 -05001039 /* qflags will get updated fully _after_ quotacheck */
1040 mp->m_sb.sb_qflags = mp->m_qflags & XFS_ALL_QUOTA_ACCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
1042 if (flags & XFS_QMOPT_UQUOTA)
1043 mp->m_sb.sb_uquotino = (*ip)->i_ino;
Chandra Seetharamand892d582013-07-19 17:36:02 -05001044 else if (flags & XFS_QMOPT_GQUOTA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 mp->m_sb.sb_gquotino = (*ip)->i_ino;
Chandra Seetharamand892d582013-07-19 17:36:02 -05001046 else
1047 mp->m_sb.sb_pquotino = (*ip)->i_ino;
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001048 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 xfs_mod_sb(tp, sbfields);
1050
Eric Sandeen1c72bf92007-05-08 13:48:42 +10001051 if ((error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES))) {
Dave Chinner53487782011-03-07 10:05:35 +11001052 xfs_alert(mp, "%s failed (error %d)!", __func__, error);
Jesper Juhl014c2542006-01-15 02:37:08 +01001053 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001055 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
1058
David Chinner5b139732008-04-10 12:20:10 +10001059STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060xfs_qm_reset_dqcounts(
1061 xfs_mount_t *mp,
1062 xfs_buf_t *bp,
1063 xfs_dqid_t id,
1064 uint type)
1065{
Dave Chinner6fcdc592013-06-03 15:28:46 +10001066 struct xfs_dqblk *dqb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 int j;
1068
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001069 trace_xfs_reset_dqcounts(bp, _RET_IP_);
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 /*
1072 * Reset all counters and timers. They'll be
1073 * started afresh by xfs_qm_quotacheck.
1074 */
1075#ifdef DEBUG
1076 j = XFS_FSB_TO_B(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
1077 do_div(j, sizeof(xfs_dqblk_t));
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001078 ASSERT(mp->m_quotainfo->qi_dqperchunk == j);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079#endif
Dave Chinner6fcdc592013-06-03 15:28:46 +10001080 dqb = bp->b_addr;
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001081 for (j = 0; j < mp->m_quotainfo->qi_dqperchunk; j++) {
Dave Chinner6fcdc592013-06-03 15:28:46 +10001082 struct xfs_disk_dquot *ddq;
1083
1084 ddq = (struct xfs_disk_dquot *)&dqb[j];
1085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 /*
1087 * Do a sanity check, and if needed, repair the dqblk. Don't
1088 * output any warnings because it's perfectly possible to
Nathan Scottc41564b2006-03-29 08:55:14 +10001089 * find uninitialised dquot blks. See comment in xfs_qm_dqcheck.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 */
Dave Chinnera0fa2b62011-03-07 10:01:35 +11001091 (void) xfs_qm_dqcheck(mp, ddq, id+j, type, XFS_QMOPT_DQREPAIR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 "xfs_quotacheck");
Christoph Hellwig1149d962005-11-02 15:01:12 +11001093 ddq->d_bcount = 0;
1094 ddq->d_icount = 0;
1095 ddq->d_rtbcount = 0;
1096 ddq->d_btimer = 0;
1097 ddq->d_itimer = 0;
1098 ddq->d_rtbtimer = 0;
1099 ddq->d_bwarns = 0;
1100 ddq->d_iwarns = 0;
1101 ddq->d_rtbwarns = 0;
Dave Chinner6fcdc592013-06-03 15:28:46 +10001102
1103 if (xfs_sb_version_hascrc(&mp->m_sb)) {
1104 xfs_update_cksum((char *)&dqb[j],
1105 sizeof(struct xfs_dqblk),
1106 XFS_DQUOT_CRC_OFF);
1107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
1111STATIC int
1112xfs_qm_dqiter_bufs(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001113 struct xfs_mount *mp,
1114 xfs_dqid_t firstid,
1115 xfs_fsblock_t bno,
1116 xfs_filblks_t blkcnt,
1117 uint flags,
1118 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001120 struct xfs_buf *bp;
1121 int error;
1122 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 ASSERT(blkcnt > 0);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001125 type = flags & XFS_QMOPT_UQUOTA ? XFS_DQ_USER :
1126 (flags & XFS_QMOPT_PQUOTA ? XFS_DQ_PROJ : XFS_DQ_GROUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 error = 0;
1128
1129 /*
1130 * Blkcnt arg can be a very big number, and might even be
1131 * larger than the log itself. So, we have to break it up into
1132 * manageable-sized transactions.
1133 * Note that we don't start a permanent transaction here; we might
1134 * not be able to get a log reservation for the whole thing up front,
1135 * and we don't really care to either, because we just discard
1136 * everything if we were to crash in the middle of this loop.
1137 */
1138 while (blkcnt--) {
1139 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
1140 XFS_FSB_TO_DADDR(mp, bno),
Dave Chinnerc6319192012-11-14 17:50:13 +11001141 mp->m_quotainfo->qi_dqchunklen, 0, &bp,
Dave Chinner1813dd62012-11-14 17:54:40 +11001142 &xfs_dquot_buf_ops);
Dave Chinner6fcdc592013-06-03 15:28:46 +10001143
1144 /*
1145 * CRC and validation errors will return a EFSCORRUPTED here. If
1146 * this occurs, re-read without CRC validation so that we can
1147 * repair the damage via xfs_qm_reset_dqcounts(). This process
1148 * will leave a trace in the log indicating corruption has
1149 * been detected.
1150 */
1151 if (error == EFSCORRUPTED) {
1152 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
1153 XFS_FSB_TO_DADDR(mp, bno),
1154 mp->m_quotainfo->qi_dqchunklen, 0, &bp,
1155 NULL);
1156 }
1157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (error)
1159 break;
1160
David Chinner5b139732008-04-10 12:20:10 +10001161 xfs_qm_reset_dqcounts(mp, bp, firstid, type);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001162 xfs_buf_delwri_queue(bp, buffer_list);
Christoph Hellwig61551f12011-08-23 08:28:06 +00001163 xfs_buf_relse(bp);
Dave Chinner6fcdc592013-06-03 15:28:46 +10001164
1165 /* goto the next block. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 bno++;
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001167 firstid += mp->m_quotainfo->qi_dqperchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001169
Jesper Juhl014c2542006-01-15 02:37:08 +01001170 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171}
1172
1173/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001174 * Iterate over all allocated USR/GRP/PRJ dquots in the system, calling a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 * caller supplied function for every chunk of dquots that we find.
1176 */
1177STATIC int
1178xfs_qm_dqiterate(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001179 struct xfs_mount *mp,
1180 struct xfs_inode *qip,
1181 uint flags,
1182 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001184 struct xfs_bmbt_irec *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 int i, nmaps; /* number of map entries */
1186 int error; /* return value */
1187 xfs_fileoff_t lblkno;
1188 xfs_filblks_t maxlblkcnt;
1189 xfs_dqid_t firstid;
1190 xfs_fsblock_t rablkno;
1191 xfs_filblks_t rablkcnt;
1192
1193 error = 0;
1194 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001195 * This looks racy, but we can't keep an inode lock across a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 * trans_reserve. But, this gets called during quotacheck, and that
1197 * happens only at mount time which is single threaded.
1198 */
1199 if (qip->i_d.di_nblocks == 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01001200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 map = kmem_alloc(XFS_DQITER_MAP_SIZE * sizeof(*map), KM_SLEEP);
1203
1204 lblkno = 0;
Dave Chinner32972382012-06-08 15:44:54 +10001205 maxlblkcnt = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 do {
1207 nmaps = XFS_DQITER_MAP_SIZE;
1208 /*
1209 * We aren't changing the inode itself. Just changing
1210 * some of its data. No new blocks are added here, and
1211 * the inode is never added to the transaction.
1212 */
1213 xfs_ilock(qip, XFS_ILOCK_SHARED);
Dave Chinner5c8ed202011-09-18 20:40:45 +00001214 error = xfs_bmapi_read(qip, lblkno, maxlblkcnt - lblkno,
1215 map, &nmaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 xfs_iunlock(qip, XFS_ILOCK_SHARED);
1217 if (error)
1218 break;
1219
1220 ASSERT(nmaps <= XFS_DQITER_MAP_SIZE);
1221 for (i = 0; i < nmaps; i++) {
1222 ASSERT(map[i].br_startblock != DELAYSTARTBLOCK);
1223 ASSERT(map[i].br_blockcount);
1224
1225
1226 lblkno += map[i].br_blockcount;
1227
1228 if (map[i].br_startblock == HOLESTARTBLOCK)
1229 continue;
1230
1231 firstid = (xfs_dqid_t) map[i].br_startoff *
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001232 mp->m_quotainfo->qi_dqperchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 /*
1234 * Do a read-ahead on the next extent.
1235 */
1236 if ((i+1 < nmaps) &&
1237 (map[i+1].br_startblock != HOLESTARTBLOCK)) {
1238 rablkcnt = map[i+1].br_blockcount;
1239 rablkno = map[i+1].br_startblock;
1240 while (rablkcnt--) {
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001241 xfs_buf_readahead(mp->m_ddev_targp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 XFS_FSB_TO_DADDR(mp, rablkno),
Dave Chinnerc3f8fc72012-11-12 22:54:01 +11001243 mp->m_quotainfo->qi_dqchunklen,
1244 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 rablkno++;
1246 }
1247 }
1248 /*
1249 * Iterate thru all the blks in the extent and
1250 * reset the counters of all the dquots inside them.
1251 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001252 error = xfs_qm_dqiter_bufs(mp, firstid,
1253 map[i].br_startblock,
1254 map[i].br_blockcount,
1255 flags, buffer_list);
1256 if (error)
1257 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 } while (nmaps > 0);
1260
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001261out:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001262 kmem_free(map);
Jesper Juhl014c2542006-01-15 02:37:08 +01001263 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264}
1265
1266/*
1267 * Called by dqusage_adjust in doing a quotacheck.
Christoph Hellwig52fda112010-09-06 01:44:22 +00001268 *
1269 * Given the inode, and a dquot id this updates both the incore dqout as well
1270 * as the buffer copy. This is so that once the quotacheck is done, we can
1271 * just log all the buffers, as opposed to logging numerous updates to
1272 * individual dquots.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001274STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275xfs_qm_quotacheck_dqadjust(
Christoph Hellwig52fda112010-09-06 01:44:22 +00001276 struct xfs_inode *ip,
1277 xfs_dqid_t id,
1278 uint type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 xfs_qcnt_t nblks,
1280 xfs_qcnt_t rtblks)
1281{
Christoph Hellwig52fda112010-09-06 01:44:22 +00001282 struct xfs_mount *mp = ip->i_mount;
1283 struct xfs_dquot *dqp;
1284 int error;
1285
1286 error = xfs_qm_dqget(mp, ip, id, type,
1287 XFS_QMOPT_DQALLOC | XFS_QMOPT_DOWARN, &dqp);
1288 if (error) {
1289 /*
1290 * Shouldn't be able to turn off quotas here.
1291 */
1292 ASSERT(error != ESRCH);
1293 ASSERT(error != ENOENT);
1294 return error;
1295 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001296
1297 trace_xfs_dqadjust(dqp);
1298
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 /*
1300 * Adjust the inode count and the block count to reflect this inode's
1301 * resource usage.
1302 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001303 be64_add_cpu(&dqp->q_core.d_icount, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 dqp->q_res_icount++;
1305 if (nblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001306 be64_add_cpu(&dqp->q_core.d_bcount, nblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 dqp->q_res_bcount += nblks;
1308 }
1309 if (rtblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001310 be64_add_cpu(&dqp->q_core.d_rtbcount, rtblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 dqp->q_res_rtbcount += rtblks;
1312 }
1313
1314 /*
1315 * Set default limits, adjust timers (since we changed usages)
Christoph Hellwig191f8482010-04-20 17:01:53 +10001316 *
1317 * There are no timers for the default values set in the root dquot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 */
Christoph Hellwig191f8482010-04-20 17:01:53 +10001319 if (dqp->q_core.d_id) {
Brian Foster4b6eae2e2013-03-18 10:51:45 -04001320 xfs_qm_adjust_dqlimits(mp, dqp);
Christoph Hellwig52fda112010-09-06 01:44:22 +00001321 xfs_qm_adjust_dqtimers(mp, &dqp->q_core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 }
1323
1324 dqp->dq_flags |= XFS_DQ_DIRTY;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001325 xfs_qm_dqput(dqp);
1326 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327}
1328
1329STATIC int
1330xfs_qm_get_rtblks(
1331 xfs_inode_t *ip,
1332 xfs_qcnt_t *O_rtblks)
1333{
1334 xfs_filblks_t rtblks; /* total rt blks */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001335 xfs_extnum_t idx; /* extent record index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 xfs_ifork_t *ifp; /* inode fork pointer */
1337 xfs_extnum_t nextents; /* number of extent entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 int error;
1339
1340 ASSERT(XFS_IS_REALTIME_INODE(ip));
1341 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1342 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1343 if ((error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001344 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 }
1346 rtblks = 0;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001347 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10001348 for (idx = 0; idx < nextents; idx++)
1349 rtblks += xfs_bmbt_get_blockcount(xfs_iext_get_ext(ifp, idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 *O_rtblks = (xfs_qcnt_t)rtblks;
Jesper Juhl014c2542006-01-15 02:37:08 +01001351 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
1354/*
1355 * callback routine supplied to bulkstat(). Given an inumber, find its
1356 * dquots and update them to account for resources taken by that inode.
1357 */
1358/* ARGSUSED */
1359STATIC int
1360xfs_qm_dqusage_adjust(
1361 xfs_mount_t *mp, /* mount point for filesystem */
1362 xfs_ino_t ino, /* inode number to get data for */
1363 void __user *buffer, /* not used */
1364 int ubsize, /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 int *ubused, /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 int *res) /* result code value */
1367{
1368 xfs_inode_t *ip;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001369 xfs_qcnt_t nblks, rtblks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 int error;
1371
1372 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1373
1374 /*
1375 * rootino must have its resources accounted for, not so with the quota
1376 * inodes.
1377 */
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -05001378 if (xfs_is_quota_inode(&mp->m_sb, ino)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 *res = BULKSTAT_RV_NOTHING;
1380 return XFS_ERROR(EINVAL);
1381 }
1382
1383 /*
1384 * We don't _need_ to take the ilock EXCL. However, the xfs_qm_dqget
1385 * interface expects the inode to be exclusively locked because that's
1386 * the case in all other instances. It's OK that we do this because
1387 * quotacheck is done only at mount time.
1388 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001389 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_EXCL, &ip);
1390 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 *res = BULKSTAT_RV_NOTHING;
Jesper Juhl014c2542006-01-15 02:37:08 +01001392 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 }
1394
Christoph Hellwig52fda112010-09-06 01:44:22 +00001395 ASSERT(ip->i_delayed_blks == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Christoph Hellwig52fda112010-09-06 01:44:22 +00001397 if (XFS_IS_REALTIME_INODE(ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 /*
1399 * Walk thru the extent list and count the realtime blocks.
1400 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001401 error = xfs_qm_get_rtblks(ip, &rtblks);
1402 if (error)
1403 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Christoph Hellwig52fda112010-09-06 01:44:22 +00001406 nblks = (xfs_qcnt_t)ip->i_d.di_nblocks - rtblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 /*
1409 * Add the (disk blocks and inode) resources occupied by this
1410 * inode to its dquots. We do this adjustment in the incore dquot,
1411 * and also copy the changes to its buffer.
1412 * We don't care about putting these changes in a transaction
1413 * envelope because if we crash in the middle of a 'quotacheck'
1414 * we have to start from the beginning anyway.
1415 * Once we're done, we'll log all the dquot bufs.
1416 *
Nathan Scottc41564b2006-03-29 08:55:14 +10001417 * The *QUOTA_ON checks below may look pretty racy, but quotachecks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 * and quotaoffs don't race. (Quotachecks happen at mount time only).
1419 */
1420 if (XFS_IS_UQUOTA_ON(mp)) {
Christoph Hellwig52fda112010-09-06 01:44:22 +00001421 error = xfs_qm_quotacheck_dqadjust(ip, ip->i_d.di_uid,
1422 XFS_DQ_USER, nblks, rtblks);
1423 if (error)
1424 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Christoph Hellwig52fda112010-09-06 01:44:22 +00001427 if (XFS_IS_GQUOTA_ON(mp)) {
1428 error = xfs_qm_quotacheck_dqadjust(ip, ip->i_d.di_gid,
1429 XFS_DQ_GROUP, nblks, rtblks);
1430 if (error)
1431 goto error0;
1432 }
1433
1434 if (XFS_IS_PQUOTA_ON(mp)) {
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001435 error = xfs_qm_quotacheck_dqadjust(ip, xfs_get_projid(ip),
Christoph Hellwig52fda112010-09-06 01:44:22 +00001436 XFS_DQ_PROJ, nblks, rtblks);
1437 if (error)
1438 goto error0;
1439 }
1440
1441 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1442 IRELE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 *res = BULKSTAT_RV_DIDONE;
Jesper Juhl014c2542006-01-15 02:37:08 +01001444 return 0;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001445
1446error0:
1447 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1448 IRELE(ip);
1449 *res = BULKSTAT_RV_GIVEUP;
1450 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001453STATIC int
1454xfs_qm_flush_one(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001455 struct xfs_dquot *dqp,
1456 void *data)
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001457{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001458 struct list_head *buffer_list = data;
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001459 struct xfs_buf *bp = NULL;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001460 int error = 0;
1461
1462 xfs_dqlock(dqp);
1463 if (dqp->dq_flags & XFS_DQ_FREEING)
1464 goto out_unlock;
1465 if (!XFS_DQ_IS_DIRTY(dqp))
1466 goto out_unlock;
1467
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001468 xfs_dqflock(dqp);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001469 error = xfs_qm_dqflush(dqp, &bp);
1470 if (error)
1471 goto out_unlock;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001472
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001473 xfs_buf_delwri_queue(bp, buffer_list);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001474 xfs_buf_relse(bp);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001475out_unlock:
1476 xfs_dqunlock(dqp);
1477 return error;
1478}
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480/*
1481 * Walk thru all the filesystem inodes and construct a consistent view
1482 * of the disk quota world. If the quotacheck fails, disable quotas.
1483 */
1484int
1485xfs_qm_quotacheck(
1486 xfs_mount_t *mp)
1487{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001488 int done, count, error, error2;
1489 xfs_ino_t lastino;
1490 size_t structsz;
1491 uint flags;
1492 LIST_HEAD (buffer_list);
1493 struct xfs_inode *uip = mp->m_quotainfo->qi_uquotaip;
1494 struct xfs_inode *gip = mp->m_quotainfo->qi_gquotaip;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001495 struct xfs_inode *pip = mp->m_quotainfo->qi_pquotaip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 count = INT_MAX;
1498 structsz = 1;
1499 lastino = 0;
1500 flags = 0;
1501
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001502 ASSERT(uip || gip || pip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1504
Dave Chinner0b932cc2011-03-07 10:08:35 +11001505 xfs_notice(mp, "Quotacheck needed: Please wait.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 /*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001508 * First we go thru all the dquots on disk, USR and GRP/PRJ, and reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 * their counters to zero. We need a clean slate.
1510 * We don't log our changes till later.
1511 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001512 if (uip) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001513 error = xfs_qm_dqiterate(mp, uip, XFS_QMOPT_UQUOTA,
1514 &buffer_list);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001515 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 goto error_return;
1517 flags |= XFS_UQUOTA_CHKD;
1518 }
1519
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001520 if (gip) {
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001521 error = xfs_qm_dqiterate(mp, gip, XFS_QMOPT_GQUOTA,
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001522 &buffer_list);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001523 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 goto error_return;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001525 flags |= XFS_GQUOTA_CHKD;
1526 }
1527
1528 if (pip) {
1529 error = xfs_qm_dqiterate(mp, pip, XFS_QMOPT_PQUOTA,
1530 &buffer_list);
1531 if (error)
1532 goto error_return;
1533 flags |= XFS_PQUOTA_CHKD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
1535
1536 do {
1537 /*
1538 * Iterate thru all the inodes in the file system,
1539 * adjusting the corresponding dquot counters in core.
1540 */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +10001541 error = xfs_bulkstat(mp, &lastino, &count,
1542 xfs_qm_dqusage_adjust,
1543 structsz, NULL, &done);
1544 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 break;
1546
Christoph Hellwig7dce11d2010-06-23 18:11:11 +10001547 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 /*
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001550 * We've made all the changes that we need to make incore. Flush them
1551 * down to disk buffers if everything was updated successfully.
David Chinner4b8879d2008-04-10 12:20:17 +10001552 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001553 if (XFS_IS_UQUOTA_ON(mp)) {
1554 error = xfs_qm_dquot_walk(mp, XFS_DQ_USER, xfs_qm_flush_one,
1555 &buffer_list);
1556 }
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001557 if (XFS_IS_GQUOTA_ON(mp)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001558 error2 = xfs_qm_dquot_walk(mp, XFS_DQ_GROUP, xfs_qm_flush_one,
1559 &buffer_list);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001560 if (!error)
1561 error = error2;
1562 }
1563 if (XFS_IS_PQUOTA_ON(mp)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001564 error2 = xfs_qm_dquot_walk(mp, XFS_DQ_PROJ, xfs_qm_flush_one,
1565 &buffer_list);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001566 if (!error)
1567 error = error2;
1568 }
David Chinner4b8879d2008-04-10 12:20:17 +10001569
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001570 error2 = xfs_buf_delwri_submit(&buffer_list);
1571 if (!error)
1572 error = error2;
1573
David Chinner4b8879d2008-04-10 12:20:17 +10001574 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 * We can get this error if we couldn't do a dquot allocation inside
1576 * xfs_qm_dqusage_adjust (via bulkstat). We don't care about the
1577 * dirty dquots that might be cached, we just want to get rid of them
1578 * and turn quotaoff. The dquots won't be attached to any of the inodes
1579 * at this point (because we intentionally didn't in dqget_noattach).
1580 */
1581 if (error) {
Christoph Hellwig8112e9d2010-04-20 17:02:29 +10001582 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 goto error_return;
1584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 * If one type of quotas is off, then it will lose its
1588 * quotachecked status, since we won't be doing accounting for
1589 * that type anymore.
1590 */
Chandra Seetharaman4177af32012-01-23 17:31:43 +00001591 mp->m_qflags &= ~XFS_ALL_QUOTA_CHKD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 mp->m_qflags |= flags;
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 error_return:
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001595 while (!list_empty(&buffer_list)) {
1596 struct xfs_buf *bp =
1597 list_first_entry(&buffer_list, struct xfs_buf, b_list);
1598 list_del_init(&bp->b_list);
1599 xfs_buf_relse(bp);
1600 }
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001603 xfs_warn(mp,
1604 "Quotacheck: Unsuccessful (Error %d): Disabling quotas.",
1605 error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 /*
1607 * We must turn off quotas.
1608 */
1609 ASSERT(mp->m_quotainfo != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 xfs_qm_destroy_quotainfo(mp);
David Chinner31d55772008-04-10 12:20:38 +10001611 if (xfs_mount_reset_sbqflags(mp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001612 xfs_warn(mp,
1613 "Quotacheck: Failed to reset quota flags.");
David Chinner31d55772008-04-10 12:20:38 +10001614 }
Dave Chinner0b932cc2011-03-07 10:08:35 +11001615 } else
1616 xfs_notice(mp, "Quotacheck: Done.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 return (error);
1618}
1619
1620/*
1621 * This is called after the superblock has been read in and we're ready to
1622 * iget the quota inodes.
1623 */
1624STATIC int
1625xfs_qm_init_quotainos(
1626 xfs_mount_t *mp)
1627{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001628 struct xfs_inode *uip = NULL;
1629 struct xfs_inode *gip = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001630 struct xfs_inode *pip = NULL;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001631 int error;
1632 __int64_t sbflags = 0;
1633 uint flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 ASSERT(mp->m_quotainfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637 /*
1638 * Get the uquota and gquota inodes
1639 */
Eric Sandeen62118702008-03-06 13:44:28 +11001640 if (xfs_sb_version_hasquota(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if (XFS_IS_UQUOTA_ON(mp) &&
1642 mp->m_sb.sb_uquotino != NULLFSINO) {
1643 ASSERT(mp->m_sb.sb_uquotino > 0);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001644 error = xfs_iget(mp, NULL, mp->m_sb.sb_uquotino,
1645 0, 0, &uip);
1646 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 return XFS_ERROR(error);
1648 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001649 if (XFS_IS_GQUOTA_ON(mp) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 mp->m_sb.sb_gquotino != NULLFSINO) {
1651 ASSERT(mp->m_sb.sb_gquotino > 0);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001652 error = xfs_iget(mp, NULL, mp->m_sb.sb_gquotino,
1653 0, 0, &gip);
1654 if (error)
1655 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001657 if (XFS_IS_PQUOTA_ON(mp) &&
Chandra Seetharamand892d582013-07-19 17:36:02 -05001658 mp->m_sb.sb_pquotino != NULLFSINO) {
1659 ASSERT(mp->m_sb.sb_pquotino > 0);
1660 error = xfs_iget(mp, NULL, mp->m_sb.sb_pquotino,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001661 0, 0, &pip);
1662 if (error)
1663 goto error_rele;
1664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 } else {
1666 flags |= XFS_QMOPT_SBVERSION;
1667 sbflags |= (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
Chandra Seetharamand892d582013-07-19 17:36:02 -05001668 XFS_SB_GQUOTINO | XFS_SB_PQUOTINO |
1669 XFS_SB_QFLAGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
1671
1672 /*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001673 * Create the three inodes, if they don't exist already. The changes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 * made above will get added to a transaction and logged in one of
1675 * the qino_alloc calls below. If the device is readonly,
1676 * temporarily switch to read-write to do this.
1677 */
1678 if (XFS_IS_UQUOTA_ON(mp) && uip == NULL) {
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001679 error = xfs_qm_qino_alloc(mp, &uip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 sbflags | XFS_SB_UQUOTINO,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001681 flags | XFS_QMOPT_UQUOTA);
1682 if (error)
1683 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 flags &= ~XFS_QMOPT_SBVERSION;
1686 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001687 if (XFS_IS_GQUOTA_ON(mp) && gip == NULL) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001688 error = xfs_qm_qino_alloc(mp, &gip,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001689 sbflags | XFS_SB_GQUOTINO,
1690 flags | XFS_QMOPT_GQUOTA);
1691 if (error)
1692 goto error_rele;
1693
1694 flags &= ~XFS_QMOPT_SBVERSION;
1695 }
1696 if (XFS_IS_PQUOTA_ON(mp) && pip == NULL) {
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001697 error = xfs_qm_qino_alloc(mp, &pip,
Chandra Seetharamand892d582013-07-19 17:36:02 -05001698 sbflags | XFS_SB_PQUOTINO,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001699 flags | XFS_QMOPT_PQUOTA);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001700 if (error)
1701 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 }
1703
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001704 mp->m_quotainfo->qi_uquotaip = uip;
1705 mp->m_quotainfo->qi_gquotaip = gip;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001706 mp->m_quotainfo->qi_pquotaip = pip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
Jesper Juhl014c2542006-01-15 02:37:08 +01001708 return 0;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001709
1710error_rele:
1711 if (uip)
1712 IRELE(uip);
1713 if (gip)
1714 IRELE(gip);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001715 if (pip)
1716 IRELE(pip);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001717 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
1719
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001720STATIC void
1721xfs_qm_dqfree_one(
1722 struct xfs_dquot *dqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001724 struct xfs_mount *mp = dqp->q_mount;
1725 struct xfs_quotainfo *qi = mp->m_quotainfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Christoph Hellwig9f920f12012-03-13 08:52:35 +00001727 mutex_lock(&qi->qi_tree_lock);
Chandra Seetharaman329e0872013-06-27 17:25:05 -05001728 radix_tree_delete(xfs_dquot_tree(qi, dqp->q_core.d_flags),
Christoph Hellwig9f920f12012-03-13 08:52:35 +00001729 be32_to_cpu(dqp->q_core.d_id));
Christoph Hellwigbf72de32011-12-06 21:58:19 +00001730
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001731 qi->qi_dquots--;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001732 mutex_unlock(&qi->qi_tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001734 xfs_qm_dqdestroy(dqp);
1735}
Christoph Hellwigbe7ffc32011-12-06 21:58:17 +00001736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737/*
1738 * Start a transaction and write the incore superblock changes to
1739 * disk. flags parameter indicates which fields have changed.
1740 */
1741int
1742xfs_qm_write_sb_changes(
1743 xfs_mount_t *mp,
1744 __int64_t flags)
1745{
1746 xfs_trans_t *tp;
1747 int error;
1748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001750 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_qm_sbchange, 0, 0);
Jeff Liuf910a8c2013-01-28 21:26:34 +08001751 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001753 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
1755
1756 xfs_mod_sb(tp, flags);
David Chinnere5720ee2008-04-10 12:21:18 +10001757 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
David Chinnere5720ee2008-04-10 12:21:18 +10001759 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760}
1761
1762
1763/* --------------- utility functions for vnodeops ---------------- */
1764
1765
1766/*
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001767 * Given an inode, a uid, gid and prid make sure that we have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 * allocated relevant dquot(s) on disk, and that we won't exceed inode
1769 * quotas by creating this file.
1770 * This also attaches dquot(s) to the given inode after locking it,
1771 * and returns the dquots corresponding to the uid and/or gid.
1772 *
1773 * in : inode (unlocked)
1774 * out : udquot, gdquot with references taken and unlocked
1775 */
1776int
1777xfs_qm_vop_dqalloc(
Christoph Hellwig7d095252009-06-08 15:33:32 +02001778 struct xfs_inode *ip,
Dwight Engen7aab1b22013-08-15 14:08:01 -04001779 xfs_dqid_t uid,
1780 xfs_dqid_t gid,
Christoph Hellwig7d095252009-06-08 15:33:32 +02001781 prid_t prid,
1782 uint flags,
1783 struct xfs_dquot **O_udqpp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001784 struct xfs_dquot **O_gdqpp,
1785 struct xfs_dquot **O_pdqpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
Christoph Hellwig7d095252009-06-08 15:33:32 +02001787 struct xfs_mount *mp = ip->i_mount;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001788 struct xfs_dquot *uq = NULL;
1789 struct xfs_dquot *gq = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001790 struct xfs_dquot *pq = NULL;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001791 int error;
1792 uint lockflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Christoph Hellwig7d095252009-06-08 15:33:32 +02001794 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 return 0;
1796
1797 lockflags = XFS_ILOCK_EXCL;
1798 xfs_ilock(ip, lockflags);
1799
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001800 if ((flags & XFS_QMOPT_INHERIT) && XFS_INHERIT_GID(ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 gid = ip->i_d.di_gid;
1802
1803 /*
1804 * Attach the dquot(s) to this inode, doing a dquot allocation
1805 * if necessary. The dquot(s) will not be locked.
1806 */
1807 if (XFS_NOT_DQATTACHED(mp, ip)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001808 error = xfs_qm_dqattach_locked(ip, XFS_QMOPT_DQALLOC);
1809 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 xfs_iunlock(ip, lockflags);
Jesper Juhl014c2542006-01-15 02:37:08 +01001811 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 }
1813 }
1814
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001815 if ((flags & XFS_QMOPT_UQUOTA) && XFS_IS_UQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 if (ip->i_d.di_uid != uid) {
1817 /*
1818 * What we need is the dquot that has this uid, and
1819 * if we send the inode to dqget, the uid of the inode
1820 * takes priority over what's sent in the uid argument.
1821 * We must unlock inode here before calling dqget if
1822 * we're not sending the inode, because otherwise
1823 * we'll deadlock by doing trans_reserve while
1824 * holding ilock.
1825 */
1826 xfs_iunlock(ip, lockflags);
Dwight Engen7aab1b22013-08-15 14:08:01 -04001827 error = xfs_qm_dqget(mp, NULL, uid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 XFS_DQ_USER,
1829 XFS_QMOPT_DQALLOC |
1830 XFS_QMOPT_DOWARN,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001831 &uq);
1832 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 ASSERT(error != ENOENT);
Jesper Juhl014c2542006-01-15 02:37:08 +01001834 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 }
1836 /*
1837 * Get the ilock in the right order.
1838 */
1839 xfs_dqunlock(uq);
1840 lockflags = XFS_ILOCK_SHARED;
1841 xfs_ilock(ip, lockflags);
1842 } else {
1843 /*
1844 * Take an extra reference, because we'll return
1845 * this to caller
1846 */
1847 ASSERT(ip->i_udquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001848 uq = xfs_qm_dqhold(ip->i_udquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 }
1850 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001851 if ((flags & XFS_QMOPT_GQUOTA) && XFS_IS_GQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 if (ip->i_d.di_gid != gid) {
1853 xfs_iunlock(ip, lockflags);
Dwight Engen7aab1b22013-08-15 14:08:01 -04001854 error = xfs_qm_dqget(mp, NULL, gid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 XFS_DQ_GROUP,
1856 XFS_QMOPT_DQALLOC |
1857 XFS_QMOPT_DOWARN,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001858 &gq);
1859 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 ASSERT(error != ENOENT);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001861 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 }
1863 xfs_dqunlock(gq);
1864 lockflags = XFS_ILOCK_SHARED;
1865 xfs_ilock(ip, lockflags);
1866 } else {
1867 ASSERT(ip->i_gdquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001868 gq = xfs_qm_dqhold(ip->i_gdquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001870 }
1871 if ((flags & XFS_QMOPT_PQUOTA) && XFS_IS_PQUOTA_ON(mp)) {
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001872 if (xfs_get_projid(ip) != prid) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001873 xfs_iunlock(ip, lockflags);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001874 error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)prid,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001875 XFS_DQ_PROJ,
1876 XFS_QMOPT_DQALLOC |
1877 XFS_QMOPT_DOWARN,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001878 &pq);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001879 if (error) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001880 ASSERT(error != ENOENT);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001881 goto error_rele;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001882 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001883 xfs_dqunlock(pq);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001884 lockflags = XFS_ILOCK_SHARED;
1885 xfs_ilock(ip, lockflags);
1886 } else {
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001887 ASSERT(ip->i_pdquot);
1888 pq = xfs_qm_dqhold(ip->i_pdquot);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 }
1891 if (uq)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001892 trace_xfs_dquot_dqalloc(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
1894 xfs_iunlock(ip, lockflags);
1895 if (O_udqpp)
1896 *O_udqpp = uq;
1897 else if (uq)
1898 xfs_qm_dqrele(uq);
1899 if (O_gdqpp)
1900 *O_gdqpp = gq;
1901 else if (gq)
1902 xfs_qm_dqrele(gq);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001903 if (O_pdqpp)
1904 *O_pdqpp = pq;
1905 else if (pq)
1906 xfs_qm_dqrele(pq);
Jesper Juhl014c2542006-01-15 02:37:08 +01001907 return 0;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001908
1909error_rele:
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001910 if (gq)
1911 xfs_qm_dqrele(gq);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001912 if (uq)
1913 xfs_qm_dqrele(uq);
1914 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915}
1916
1917/*
1918 * Actually transfer ownership, and do dquot modifications.
1919 * These were already reserved.
1920 */
1921xfs_dquot_t *
1922xfs_qm_vop_chown(
1923 xfs_trans_t *tp,
1924 xfs_inode_t *ip,
1925 xfs_dquot_t **IO_olddq,
1926 xfs_dquot_t *newdq)
1927{
1928 xfs_dquot_t *prevdq;
Nathan Scott06d10dd2005-06-21 15:48:47 +10001929 uint bfield = XFS_IS_REALTIME_INODE(ip) ?
1930 XFS_TRANS_DQ_RTBCOUNT : XFS_TRANS_DQ_BCOUNT;
1931
Christoph Hellwig7d095252009-06-08 15:33:32 +02001932
Christoph Hellwig579aa9ca2008-04-22 17:34:00 +10001933 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 ASSERT(XFS_IS_QUOTA_RUNNING(ip->i_mount));
1935
1936 /* old dquot */
1937 prevdq = *IO_olddq;
1938 ASSERT(prevdq);
1939 ASSERT(prevdq != newdq);
1940
Nathan Scott06d10dd2005-06-21 15:48:47 +10001941 xfs_trans_mod_dquot(tp, prevdq, bfield, -(ip->i_d.di_nblocks));
1942 xfs_trans_mod_dquot(tp, prevdq, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944 /* the sparkling new dquot */
Nathan Scott06d10dd2005-06-21 15:48:47 +10001945 xfs_trans_mod_dquot(tp, newdq, bfield, ip->i_d.di_nblocks);
1946 xfs_trans_mod_dquot(tp, newdq, XFS_TRANS_DQ_ICOUNT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
1948 /*
Christoph Hellwig78e55892011-12-06 21:58:22 +00001949 * Take an extra reference, because the inode is going to keep
1950 * this dquot pointer even after the trans_commit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 */
Christoph Hellwig78e55892011-12-06 21:58:22 +00001952 *IO_olddq = xfs_qm_dqhold(newdq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Jesper Juhl014c2542006-01-15 02:37:08 +01001954 return prevdq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955}
1956
1957/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001958 * Quota reservations for setattr(AT_UID|AT_GID|AT_PROJID).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 */
1960int
1961xfs_qm_vop_chown_reserve(
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001962 struct xfs_trans *tp,
1963 struct xfs_inode *ip,
1964 struct xfs_dquot *udqp,
1965 struct xfs_dquot *gdqp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001966 struct xfs_dquot *pdqp,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001967 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001969 struct xfs_mount *mp = ip->i_mount;
1970 uint delblks, blkflags, prjflags = 0;
1971 struct xfs_dquot *udq_unres = NULL;
1972 struct xfs_dquot *gdq_unres = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001973 struct xfs_dquot *pdq_unres = NULL;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001974 struct xfs_dquot *udq_delblks = NULL;
1975 struct xfs_dquot *gdq_delblks = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001976 struct xfs_dquot *pdq_delblks = NULL;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001977 int error;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
Christoph Hellwig579aa9ca2008-04-22 17:34:00 +10001980 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1982
1983 delblks = ip->i_delayed_blks;
Nathan Scott06d10dd2005-06-21 15:48:47 +10001984 blkflags = XFS_IS_REALTIME_INODE(ip) ?
1985 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 if (XFS_IS_UQUOTA_ON(mp) && udqp &&
Dwight Engen7aab1b22013-08-15 14:08:01 -04001988 ip->i_d.di_uid != be32_to_cpu(udqp->q_core.d_id)) {
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001989 udq_delblks = udqp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 /*
1991 * If there are delayed allocation blocks, then we have to
1992 * unreserve those from the old dquot, and add them to the
1993 * new dquot.
1994 */
1995 if (delblks) {
1996 ASSERT(ip->i_udquot);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001997 udq_unres = ip->i_udquot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 }
1999 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002000 if (XFS_IS_GQUOTA_ON(ip->i_mount) && gdqp &&
2001 ip->i_d.di_gid != be32_to_cpu(gdqp->q_core.d_id)) {
2002 gdq_delblks = gdqp;
2003 if (delblks) {
2004 ASSERT(ip->i_gdquot);
2005 gdq_unres = ip->i_gdquot;
2006 }
2007 }
Nathan Scott9a2a7de2006-03-31 13:04:49 +10002008
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002009 if (XFS_IS_PQUOTA_ON(ip->i_mount) && pdqp &&
2010 xfs_get_projid(ip) != be32_to_cpu(pdqp->q_core.d_id)) {
2011 prjflags = XFS_QMOPT_ENOSPC;
2012 pdq_delblks = pdqp;
2013 if (delblks) {
2014 ASSERT(ip->i_pdquot);
2015 pdq_unres = ip->i_pdquot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 }
2017 }
2018
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002019 error = xfs_trans_reserve_quota_bydquots(tp, ip->i_mount,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002020 udq_delblks, gdq_delblks, pdq_delblks,
2021 ip->i_d.di_nblocks, 1,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002022 flags | blkflags | prjflags);
2023 if (error)
2024 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026 /*
2027 * Do the delayed blks reservations/unreservations now. Since, these
2028 * are done without the help of a transaction, if a reservation fails
2029 * its previous reservations won't be automatically undone by trans
2030 * code. So, we have to do it manually here.
2031 */
2032 if (delblks) {
2033 /*
2034 * Do the reservations first. Unreservation can't fail.
2035 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002036 ASSERT(udq_delblks || gdq_delblks || pdq_delblks);
2037 ASSERT(udq_unres || gdq_unres || pdq_unres);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002038 error = xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002039 udq_delblks, gdq_delblks, pdq_delblks,
2040 (xfs_qcnt_t)delblks, 0,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002041 flags | blkflags | prjflags);
2042 if (error)
2043 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002045 udq_unres, gdq_unres, pdq_unres,
2046 -((xfs_qcnt_t)delblks), 0, blkflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 }
2048
2049 return (0);
2050}
2051
2052int
2053xfs_qm_vop_rename_dqattach(
Christoph Hellwig7d095252009-06-08 15:33:32 +02002054 struct xfs_inode **i_tab)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002056 struct xfs_mount *mp = i_tab[0]->i_mount;
2057 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Christoph Hellwig7d095252009-06-08 15:33:32 +02002059 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Jesper Juhl014c2542006-01-15 02:37:08 +01002060 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Christoph Hellwig7d095252009-06-08 15:33:32 +02002062 for (i = 0; (i < 4 && i_tab[i]); i++) {
2063 struct xfs_inode *ip = i_tab[i];
2064 int error;
2065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 /*
2067 * Watch out for duplicate entries in the table.
2068 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02002069 if (i == 0 || ip != i_tab[i-1]) {
2070 if (XFS_NOT_DQATTACHED(mp, ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 error = xfs_qm_dqattach(ip, 0);
2072 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002073 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 }
2075 }
2076 }
Jesper Juhl014c2542006-01-15 02:37:08 +01002077 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078}
2079
2080void
Christoph Hellwig7d095252009-06-08 15:33:32 +02002081xfs_qm_vop_create_dqattach(
2082 struct xfs_trans *tp,
2083 struct xfs_inode *ip,
2084 struct xfs_dquot *udqp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002085 struct xfs_dquot *gdqp,
2086 struct xfs_dquot *pdqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002088 struct xfs_mount *mp = tp->t_mountp;
2089
2090 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 return;
2092
Christoph Hellwig579aa9ca2008-04-22 17:34:00 +10002093 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig7d095252009-06-08 15:33:32 +02002094 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096 if (udqp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 ASSERT(ip->i_udquot == NULL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002098 ASSERT(XFS_IS_UQUOTA_ON(mp));
Christoph Hellwig1149d962005-11-02 15:01:12 +11002099 ASSERT(ip->i_d.di_uid == be32_to_cpu(udqp->q_core.d_id));
Christoph Hellwig78e55892011-12-06 21:58:22 +00002100
2101 ip->i_udquot = xfs_qm_dqhold(udqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 xfs_trans_mod_dquot(tp, udqp, XFS_TRANS_DQ_ICOUNT, 1);
2103 }
2104 if (gdqp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 ASSERT(ip->i_gdquot == NULL);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002106 ASSERT(XFS_IS_GQUOTA_ON(mp));
2107 ASSERT(ip->i_d.di_gid == be32_to_cpu(gdqp->q_core.d_id));
Christoph Hellwig78e55892011-12-06 21:58:22 +00002108 ip->i_gdquot = xfs_qm_dqhold(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 xfs_trans_mod_dquot(tp, gdqp, XFS_TRANS_DQ_ICOUNT, 1);
2110 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002111 if (pdqp) {
2112 ASSERT(ip->i_pdquot == NULL);
2113 ASSERT(XFS_IS_PQUOTA_ON(mp));
2114 ASSERT(xfs_get_projid(ip) == be32_to_cpu(pdqp->q_core.d_id));
2115
2116 ip->i_pdquot = xfs_qm_dqhold(pdqp);
2117 xfs_trans_mod_dquot(tp, pdqp, XFS_TRANS_DQ_ICOUNT, 1);
2118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119}
2120