blob: 92c36ac4bb233fc102559dda113b2461c097f368 [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"
41#include "xfs_utils.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_qm.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000043#include "xfs_trace.h"
Dave Chinner33479e02012-10-08 21:56:11 +110044#include "xfs_icache.h"
Dave Chinner6fcdc592013-06-03 15:28:46 +100045#include "xfs_cksum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
48 * The global quota manager. There is only one of these for the entire
49 * system, _not_ one per file system. XQM keeps track of the overall
50 * quota functionality, including maintaining the freelist and hash
51 * tables of dquots.
52 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053STATIC int xfs_qm_init_quotainos(xfs_mount_t *);
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100054STATIC int xfs_qm_init_quotainfo(xfs_mount_t *);
Ying Han1495f232011-05-24 17:12:27 -070055STATIC int xfs_qm_shake(struct shrinker *, struct shrink_control *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
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 */
207 mutex_lock(&qi->qi_lru_lock);
208 ASSERT(!list_empty(&dqp->q_lru));
209 list_del_init(&dqp->q_lru);
210 qi->qi_lru_count--;
211 XFS_STATS_DEC(xs_qm_dquot_unused);
212 mutex_unlock(&qi->qi_lru_lock);
213
214 xfs_qm_dqdestroy(dqp);
215
216 if (gdqp)
217 xfs_qm_dqput(gdqp);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500218 if (pdqp)
219 xfs_qm_dqput(pdqp);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500220 return 0;
221}
222
223/*
224 * Purge the dquot cache.
225 */
226void
227xfs_qm_dqpurge_all(
228 struct xfs_mount *mp,
229 uint flags)
230{
231 if (flags & XFS_QMOPT_UQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000232 xfs_qm_dquot_walk(mp, XFS_DQ_USER, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500233 if (flags & XFS_QMOPT_GQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000234 xfs_qm_dquot_walk(mp, XFS_DQ_GROUP, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500235 if (flags & XFS_QMOPT_PQUOTA)
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000236 xfs_qm_dquot_walk(mp, XFS_DQ_PROJ, xfs_qm_dqpurge, NULL);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500237}
238
239/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 * Just destroy the quotainfo structure.
241 */
242void
Christoph Hellwig7d095252009-06-08 15:33:32 +0200243xfs_qm_unmount(
244 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Christoph Hellwig7d095252009-06-08 15:33:32 +0200246 if (mp->m_quotainfo) {
Christoph Hellwig8112e9d2010-04-20 17:02:29 +1000247 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 xfs_qm_destroy_quotainfo(mp);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252
253/*
254 * This is called from xfs_mountfs to start quotas and initialize all
255 * necessary data structures like quotainfo. This is also responsible for
256 * running a quotacheck as necessary. We are guaranteed that the superblock
257 * is consistently read in at this point.
David Chinner53aa7912008-04-10 12:20:31 +1000258 *
259 * If we fail here, the mount will continue with quota turned off. We don't
260 * need to inidicate success or failure at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 */
David Chinner53aa7912008-04-10 12:20:31 +1000262void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263xfs_qm_mount_quotas(
Christoph Hellwig42490232008-08-13 16:49:32 +1000264 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 int error = 0;
267 uint sbf;
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 /*
270 * If quotas on realtime volumes is not supported, we disable
271 * quotas immediately.
272 */
273 if (mp->m_sb.sb_rextents) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100274 xfs_notice(mp, "Cannot turn on quotas for realtime filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 mp->m_qflags = 0;
276 goto write_changes;
277 }
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Nathan Scott155ffd02005-09-02 16:43:48 +1000280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /*
282 * Allocate the quotainfo structure inside the mount struct, and
283 * create quotainode(s), and change/rev superblock if necessary.
284 */
David Chinner53aa7912008-04-10 12:20:31 +1000285 error = xfs_qm_init_quotainfo(mp);
286 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /*
288 * We must turn off quotas.
289 */
290 ASSERT(mp->m_quotainfo == NULL);
291 mp->m_qflags = 0;
292 goto write_changes;
293 }
294 /*
295 * If any of the quotas are not consistent, do a quotacheck.
296 */
Christoph Hellwig42490232008-08-13 16:49:32 +1000297 if (XFS_QM_NEED_QUOTACHECK(mp)) {
David Chinner53aa7912008-04-10 12:20:31 +1000298 error = xfs_qm_quotacheck(mp);
299 if (error) {
300 /* Quotacheck failed and disabled quotas. */
301 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000304 /*
305 * If one type of quotas is off, then it will lose its
306 * quotachecked status, since we won't be doing accounting for
307 * that type anymore.
308 */
David Chinner53aa7912008-04-10 12:20:31 +1000309 if (!XFS_IS_UQUOTA_ON(mp))
Donald Douwsma646d5bd2007-05-08 13:49:09 +1000310 mp->m_qflags &= ~XFS_UQUOTA_CHKD;
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500311 if (!XFS_IS_GQUOTA_ON(mp))
312 mp->m_qflags &= ~XFS_GQUOTA_CHKD;
313 if (!XFS_IS_PQUOTA_ON(mp))
314 mp->m_qflags &= ~XFS_PQUOTA_CHKD;
Nathan Scott155ffd02005-09-02 16:43:48 +1000315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 write_changes:
317 /*
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000318 * We actually don't have to acquire the m_sb_lock at all.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 * This can only be called from mount, and that's single threaded. XXX
320 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000321 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 sbf = mp->m_sb.sb_qflags;
323 mp->m_sb.sb_qflags = mp->m_qflags & XFS_MOUNT_QUOTA_ALL;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000324 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 if (sbf != (mp->m_qflags & XFS_MOUNT_QUOTA_ALL)) {
327 if (xfs_qm_write_sb_changes(mp, XFS_SB_QFLAGS)) {
328 /*
329 * We could only have been turning quotas off.
330 * We aren't in very good shape actually because
331 * the incore structures are convinced that quotas are
332 * off, but the on disk superblock doesn't know that !
333 */
334 ASSERT(!(XFS_IS_QUOTA_RUNNING(mp)));
Dave Chinner53487782011-03-07 10:05:35 +1100335 xfs_alert(mp, "%s: Superblock update failed!",
336 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338 }
339
340 if (error) {
Dave Chinner53487782011-03-07 10:05:35 +1100341 xfs_warn(mp, "Failed to initialize disk quotas.");
Christoph Hellwig7d095252009-06-08 15:33:32 +0200342 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
346/*
347 * Called from the vfsops layer.
348 */
Christoph Hellwige57481d2008-12-03 12:20:36 +0100349void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350xfs_qm_unmount_quotas(
351 xfs_mount_t *mp)
352{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 /*
354 * Release the dquots that root inode, et al might be holding,
355 * before we flush quotas and blow away the quotainfo structure.
356 */
357 ASSERT(mp->m_rootip);
358 xfs_qm_dqdetach(mp->m_rootip);
359 if (mp->m_rbmip)
360 xfs_qm_dqdetach(mp->m_rbmip);
361 if (mp->m_rsumip)
362 xfs_qm_dqdetach(mp->m_rsumip);
363
364 /*
Christoph Hellwige57481d2008-12-03 12:20:36 +0100365 * Release the quota inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (mp->m_quotainfo) {
Christoph Hellwige57481d2008-12-03 12:20:36 +0100368 if (mp->m_quotainfo->qi_uquotaip) {
369 IRELE(mp->m_quotainfo->qi_uquotaip);
370 mp->m_quotainfo->qi_uquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
Christoph Hellwige57481d2008-12-03 12:20:36 +0100372 if (mp->m_quotainfo->qi_gquotaip) {
373 IRELE(mp->m_quotainfo->qi_gquotaip);
374 mp->m_quotainfo->qi_gquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500376 if (mp->m_quotainfo->qi_pquotaip) {
377 IRELE(mp->m_quotainfo->qi_pquotaip);
378 mp->m_quotainfo->qi_pquotaip = NULL;
379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383STATIC int
384xfs_qm_dqattach_one(
385 xfs_inode_t *ip,
386 xfs_dqid_t id,
387 uint type,
388 uint doalloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 xfs_dquot_t *udqhint, /* hint */
390 xfs_dquot_t **IO_idqpp)
391{
392 xfs_dquot_t *dqp;
393 int error;
394
Christoph Hellwig579aa9ca2008-04-22 17:34:00 +1000395 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 error = 0;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 /*
399 * See if we already have it in the inode itself. IO_idqpp is
400 * &i_udquot or &i_gdquot. This made the code look weird, but
401 * made the logic a lot simpler.
402 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100403 dqp = *IO_idqpp;
404 if (dqp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000405 trace_xfs_dqattach_found(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100406 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408
409 /*
410 * udqhint is the i_udquot field in inode, and is non-NULL only
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000411 * when the type arg is group/project. Its purpose is to save a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 * lookup by dqid (xfs_qm_dqget) by caching a group dquot inside
413 * the user dquot.
414 */
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100415 if (udqhint) {
416 ASSERT(type == XFS_DQ_GROUP || type == XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 xfs_dqlock(udqhint);
418
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100419 /*
420 * No need to take dqlock to look at the id.
421 *
422 * The ID can't change until it gets reclaimed, and it won't
423 * be reclaimed as long as we have a ref from inode and we
424 * hold the ilock.
425 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500426 if (type == XFS_DQ_GROUP)
427 dqp = udqhint->q_gdquot;
428 else
429 dqp = udqhint->q_pdquot;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100430 if (dqp && be32_to_cpu(dqp->q_core.d_id) == id) {
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100431 ASSERT(*IO_idqpp == NULL);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100432
Christoph Hellwig78e55892011-12-06 21:58:22 +0000433 *IO_idqpp = xfs_qm_dqhold(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100435 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100437
438 /*
439 * We can't hold a dquot lock when we call the dqget code.
440 * We'll deadlock in no time, because of (not conforming to)
441 * lock ordering - the inodelock comes before any dquot lock,
442 * and we may drop and reacquire the ilock in xfs_qm_dqget().
443 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 xfs_dqunlock(udqhint);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100445 }
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 /*
448 * Find the dquot from somewhere. This bumps the
449 * reference count of dquot and returns it locked.
450 * This can return ENOENT if dquot didn't exist on
451 * disk and we didn't ask it to allocate;
452 * ESRCH if quotas got turned off suddenly.
453 */
Mitsuo Hayasakadb3e74b2011-11-10 01:33:10 +0000454 error = xfs_qm_dqget(ip->i_mount, ip, id, type,
455 doalloc | XFS_QMOPT_DOWARN, &dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100456 if (error)
457 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000459 trace_xfs_dqattach_get(dqp);
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 /*
462 * dqget may have dropped and re-acquired the ilock, but it guarantees
463 * that the dquot returned is the one that should go in the inode.
464 */
465 *IO_idqpp = dqp;
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100466 xfs_dqunlock(dqp);
467 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469
470
471/*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500472 * Given a udquot and group/project type, attach the group/project
473 * dquot pointer to the udquot as a hint for future lookups.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 */
475STATIC void
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500476xfs_qm_dqattach_hint(
477 struct xfs_inode *ip,
478 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500480 struct xfs_dquot **dqhintp;
481 struct xfs_dquot *dqp;
482 struct xfs_dquot *udq = ip->i_udquot;
483
484 ASSERT(type == XFS_DQ_GROUP || type == XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100486 xfs_dqlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500488 if (type == XFS_DQ_GROUP) {
489 dqp = ip->i_gdquot;
490 dqhintp = &udq->q_gdquot;
491 } else {
492 dqp = ip->i_pdquot;
493 dqhintp = &udq->q_pdquot;
494 }
495
496 if (*dqhintp) {
497 struct xfs_dquot *tmp;
498
499 if (*dqhintp == dqp)
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000500 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500502 tmp = *dqhintp;
503 *dqhintp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 xfs_qm_dqrele(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500507 *dqhintp = xfs_qm_dqhold(dqp);
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000508done:
Christoph Hellwig8e9b6e72009-02-08 21:51:42 +0100509 xfs_dqunlock(udq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400512static bool
513xfs_qm_need_dqattach(
514 struct xfs_inode *ip)
515{
516 struct xfs_mount *mp = ip->i_mount;
517
518 if (!XFS_IS_QUOTA_RUNNING(mp))
519 return false;
520 if (!XFS_IS_QUOTA_ON(mp))
521 return false;
522 if (!XFS_NOT_DQATTACHED(mp, ip))
523 return false;
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -0500524 if (xfs_is_quota_inode(&mp->m_sb, ip->i_ino))
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400525 return false;
526 return true;
527}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000530 * Given a locked inode, attach dquot(s) to it, taking U/G/P-QUOTAON
531 * into account.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 * If XFS_QMOPT_DQALLOC, the dquot(s) will be allocated if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 * Inode may get unlocked and relocked in here, and the caller must deal with
534 * the consequences.
535 */
536int
Christoph Hellwig7d095252009-06-08 15:33:32 +0200537xfs_qm_dqattach_locked(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 xfs_inode_t *ip,
539 uint flags)
540{
541 xfs_mount_t *mp = ip->i_mount;
542 uint nquotas = 0;
543 int error = 0;
544
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400545 if (!xfs_qm_need_dqattach(ip))
Jesper Juhl014c2542006-01-15 02:37:08 +0100546 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Christoph Hellwig7d095252009-06-08 15:33:32 +0200548 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 if (XFS_IS_UQUOTA_ON(mp)) {
551 error = xfs_qm_dqattach_one(ip, ip->i_d.di_uid, XFS_DQ_USER,
552 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 NULL, &ip->i_udquot);
554 if (error)
555 goto done;
556 nquotas++;
557 }
Christoph Hellwig579aa9ca2008-04-22 17:34:00 +1000558
559 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500560 if (XFS_IS_GQUOTA_ON(mp)) {
561 error = xfs_qm_dqattach_one(ip, ip->i_d.di_gid, XFS_DQ_GROUP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 flags & XFS_QMOPT_DQALLOC,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 ip->i_udquot, &ip->i_gdquot);
564 /*
565 * Don't worry about the udquot that we may have
566 * attached above. It'll get detached, if not already.
567 */
568 if (error)
569 goto done;
570 nquotas++;
571 }
572
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500573 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
574 if (XFS_IS_PQUOTA_ON(mp)) {
575 error = xfs_qm_dqattach_one(ip, xfs_get_projid(ip), XFS_DQ_PROJ,
576 flags & XFS_QMOPT_DQALLOC,
577 ip->i_udquot, &ip->i_pdquot);
578 /*
579 * Don't worry about the udquot that we may have
580 * attached above. It'll get detached, if not already.
581 */
582 if (error)
583 goto done;
584 nquotas++;
585 }
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 /*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500588 * Attach this group/project quota to the user quota as a hint.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 * This WON'T, in general, result in a thrash.
590 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500591 if (nquotas > 1 && ip->i_udquot) {
Christoph Hellwig579aa9ca2008-04-22 17:34:00 +1000592 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500593 ASSERT(ip->i_gdquot || !XFS_IS_GQUOTA_ON(mp));
594 ASSERT(ip->i_pdquot || !XFS_IS_PQUOTA_ON(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 /*
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000597 * We do not have i_udquot locked at this point, but this check
598 * is OK since we don't depend on the i_gdquot to be accurate
599 * 100% all the time. It is just a hint, and this will
600 * succeed in general.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 */
Christoph Hellwigab680bb2011-12-06 21:58:20 +0000602 if (ip->i_udquot->q_gdquot != ip->i_gdquot)
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500603 xfs_qm_dqattach_hint(ip, XFS_DQ_GROUP);
604
605 if (ip->i_udquot->q_pdquot != ip->i_pdquot)
606 xfs_qm_dqattach_hint(ip, XFS_DQ_PROJ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608
Christoph Hellwig7d095252009-06-08 15:33:32 +0200609 done:
Christoph Hellwigea15ab32011-07-13 13:43:50 +0200610#ifdef DEBUG
611 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 if (XFS_IS_UQUOTA_ON(mp))
613 ASSERT(ip->i_udquot);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500614 if (XFS_IS_GQUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 ASSERT(ip->i_gdquot);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500616 if (XFS_IS_PQUOTA_ON(mp))
617 ASSERT(ip->i_pdquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
Christoph Hellwig7d095252009-06-08 15:33:32 +0200619 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620#endif
Christoph Hellwig7d095252009-06-08 15:33:32 +0200621 return error;
622}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Christoph Hellwig7d095252009-06-08 15:33:32 +0200624int
625xfs_qm_dqattach(
626 struct xfs_inode *ip,
627 uint flags)
628{
629 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Christoph Hellwigb4d05e32012-03-27 10:34:46 -0400631 if (!xfs_qm_need_dqattach(ip))
632 return 0;
633
Christoph Hellwig7d095252009-06-08 15:33:32 +0200634 xfs_ilock(ip, XFS_ILOCK_EXCL);
635 error = xfs_qm_dqattach_locked(ip, flags);
636 xfs_iunlock(ip, XFS_ILOCK_EXCL);
637
Jesper Juhl014c2542006-01-15 02:37:08 +0100638 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
641/*
642 * Release dquots (and their references) if any.
643 * The inode should be locked EXCL except when this's called by
644 * xfs_ireclaim.
645 */
646void
647xfs_qm_dqdetach(
648 xfs_inode_t *ip)
649{
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500650 if (!(ip->i_udquot || ip->i_gdquot || ip->i_pdquot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return;
652
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000653 trace_xfs_dquot_dqdetach(ip);
654
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -0500655 ASSERT(!xfs_is_quota_inode(&ip->i_mount->m_sb, ip->i_ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (ip->i_udquot) {
657 xfs_qm_dqrele(ip->i_udquot);
658 ip->i_udquot = NULL;
659 }
660 if (ip->i_gdquot) {
661 xfs_qm_dqrele(ip->i_gdquot);
662 ip->i_gdquot = NULL;
663 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500664 if (ip->i_pdquot) {
665 xfs_qm_dqrele(ip->i_pdquot);
666 ip->i_pdquot = NULL;
667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Christoph Hellwig3fe58f32013-04-03 16:11:16 +1100670int
671xfs_qm_calc_dquots_per_chunk(
672 struct xfs_mount *mp,
673 unsigned int nbblks) /* basic block units */
674{
675 unsigned int ndquots;
676
677 ASSERT(nbblks > 0);
678 ndquots = BBTOB(nbblks);
679 do_div(ndquots, sizeof(xfs_dqblk_t));
680
681 return ndquots;
682}
683
Christoph Hellwiga4edd1d2009-01-19 02:03:11 +0100684/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 * This initializes all the quota information that's kept in the
686 * mount structure
687 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000688STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689xfs_qm_init_quotainfo(
690 xfs_mount_t *mp)
691{
692 xfs_quotainfo_t *qinf;
693 int error;
694 xfs_dquot_t *dqp;
695
696 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 qinf = mp->m_quotainfo = kmem_zalloc(sizeof(xfs_quotainfo_t), KM_SLEEP);
699
700 /*
701 * See if quotainodes are setup, and if not, allocate them,
702 * and change the superblock accordingly.
703 */
704 if ((error = xfs_qm_init_quotainos(mp))) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000705 kmem_free(qinf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 mp->m_quotainfo = NULL;
Jesper Juhl014c2542006-01-15 02:37:08 +0100707 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000710 INIT_RADIX_TREE(&qinf->qi_uquota_tree, GFP_NOFS);
711 INIT_RADIX_TREE(&qinf->qi_gquota_tree, GFP_NOFS);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500712 INIT_RADIX_TREE(&qinf->qi_pquota_tree, GFP_NOFS);
Christoph Hellwig9f920f12012-03-13 08:52:35 +0000713 mutex_init(&qinf->qi_tree_lock);
714
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000715 INIT_LIST_HEAD(&qinf->qi_lru_list);
716 qinf->qi_lru_count = 0;
717 mutex_init(&qinf->qi_lru_lock);
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /* mutex used to serialize quotaoffs */
Jes Sorensen794ee1b2006-01-09 15:59:21 -0800720 mutex_init(&qinf->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 /* Precalc some constants */
723 qinf->qi_dqchunklen = XFS_FSB_TO_BB(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
Christoph Hellwig3fe58f32013-04-03 16:11:16 +1100724 qinf->qi_dqperchunk = xfs_qm_calc_dquots_per_chunk(mp,
725 qinf->qi_dqchunklen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 mp->m_qflags |= (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_CHKD);
728
729 /*
730 * We try to get the limits from the superuser's limits fields.
731 * This is quite hacky, but it is standard quota practice.
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000732 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 * We look at the USR dquot with id == 0 first, but if user quotas
734 * are not enabled we goto the GRP dquot with id == 0.
735 * We don't really care to keep separate default limits for user
736 * and group quotas, at least not at this point.
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000737 *
738 * Since we may not have done a quotacheck by this point, just read
739 * the dquot without attaching it to any hashtables or lists.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 */
Christoph Hellwig7ae44402011-12-06 21:58:25 +0000741 error = xfs_qm_dqread(mp, 0,
742 XFS_IS_UQUOTA_RUNNING(mp) ? XFS_DQ_USER :
743 (XFS_IS_GQUOTA_RUNNING(mp) ? XFS_DQ_GROUP :
744 XFS_DQ_PROJ),
745 XFS_QMOPT_DOWARN, &dqp);
746 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 xfs_disk_dquot_t *ddqp = &dqp->q_core;
748
749 /*
750 * The warnings and timers set the grace period given to
751 * a user or group before he or she can not perform any
752 * more writing. If it is zero, a default is used.
753 */
Christoph Hellwig1149d962005-11-02 15:01:12 +1100754 qinf->qi_btimelimit = ddqp->d_btimer ?
755 be32_to_cpu(ddqp->d_btimer) : XFS_QM_BTIMELIMIT;
756 qinf->qi_itimelimit = ddqp->d_itimer ?
757 be32_to_cpu(ddqp->d_itimer) : XFS_QM_ITIMELIMIT;
758 qinf->qi_rtbtimelimit = ddqp->d_rtbtimer ?
759 be32_to_cpu(ddqp->d_rtbtimer) : XFS_QM_RTBTIMELIMIT;
760 qinf->qi_bwarnlimit = ddqp->d_bwarns ?
761 be16_to_cpu(ddqp->d_bwarns) : XFS_QM_BWARNLIMIT;
762 qinf->qi_iwarnlimit = ddqp->d_iwarns ?
763 be16_to_cpu(ddqp->d_iwarns) : XFS_QM_IWARNLIMIT;
764 qinf->qi_rtbwarnlimit = ddqp->d_rtbwarns ?
765 be16_to_cpu(ddqp->d_rtbwarns) : XFS_QM_RTBWARNLIMIT;
766 qinf->qi_bhardlimit = be64_to_cpu(ddqp->d_blk_hardlimit);
767 qinf->qi_bsoftlimit = be64_to_cpu(ddqp->d_blk_softlimit);
768 qinf->qi_ihardlimit = be64_to_cpu(ddqp->d_ino_hardlimit);
769 qinf->qi_isoftlimit = be64_to_cpu(ddqp->d_ino_softlimit);
770 qinf->qi_rtbhardlimit = be64_to_cpu(ddqp->d_rtb_hardlimit);
771 qinf->qi_rtbsoftlimit = be64_to_cpu(ddqp->d_rtb_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 xfs_qm_dqdestroy(dqp);
774 } else {
775 qinf->qi_btimelimit = XFS_QM_BTIMELIMIT;
776 qinf->qi_itimelimit = XFS_QM_ITIMELIMIT;
777 qinf->qi_rtbtimelimit = XFS_QM_RTBTIMELIMIT;
778 qinf->qi_bwarnlimit = XFS_QM_BWARNLIMIT;
779 qinf->qi_iwarnlimit = XFS_QM_IWARNLIMIT;
Nathan Scott06d10dd2005-06-21 15:48:47 +1000780 qinf->qi_rtbwarnlimit = XFS_QM_RTBWARNLIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
782
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000783 qinf->qi_shrinker.shrink = xfs_qm_shake;
784 qinf->qi_shrinker.seeks = DEFAULT_SEEKS;
785 register_shrinker(&qinf->qi_shrinker);
Jesper Juhl014c2542006-01-15 02:37:08 +0100786 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
789
790/*
791 * Gets called when unmounting a filesystem or when all quotas get
792 * turned off.
793 * This purges the quota inodes, destroys locks and frees itself.
794 */
795void
796xfs_qm_destroy_quotainfo(
797 xfs_mount_t *mp)
798{
799 xfs_quotainfo_t *qi;
800
801 qi = mp->m_quotainfo;
802 ASSERT(qi != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Christoph Hellwigf8739c32012-03-13 08:52:34 +0000804 unregister_shrinker(&qi->qi_shrinker);
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (qi->qi_uquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +1000807 IRELE(qi->qi_uquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 qi->qi_uquotaip = NULL; /* paranoia */
809 }
810 if (qi->qi_gquotaip) {
Christoph Hellwig26cc0022008-07-18 17:12:43 +1000811 IRELE(qi->qi_gquotaip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 qi->qi_gquotaip = NULL;
813 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500814 if (qi->qi_pquotaip) {
815 IRELE(qi->qi_pquotaip);
816 qi->qi_pquotaip = NULL;
817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 mutex_destroy(&qi->qi_quotaofflock);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000819 kmem_free(qi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 mp->m_quotainfo = NULL;
821}
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823/*
824 * Create an inode and return with a reference already taken, but unlocked
825 * This is how we create quota inodes
826 */
827STATIC int
828xfs_qm_qino_alloc(
829 xfs_mount_t *mp,
830 xfs_inode_t **ip,
831 __int64_t sbfields,
832 uint flags)
833{
834 xfs_trans_t *tp;
835 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 int committed;
837
Chandra Seetharamand892d582013-07-19 17:36:02 -0500838 *ip = NULL;
839 /*
840 * With superblock that doesn't have separate pquotino, we
841 * share an inode between gquota and pquota. If the on-disk
842 * superblock has GQUOTA and the filesystem is now mounted
843 * with PQUOTA, just use sb_gquotino for sb_pquotino and
844 * vice-versa.
845 */
846 if (!xfs_sb_version_has_pquotino(&mp->m_sb) &&
847 (flags & (XFS_QMOPT_PQUOTA|XFS_QMOPT_GQUOTA))) {
848 xfs_ino_t ino = NULLFSINO;
849
850 if ((flags & XFS_QMOPT_PQUOTA) &&
851 (mp->m_sb.sb_gquotino != NULLFSINO)) {
852 ino = mp->m_sb.sb_gquotino;
853 ASSERT(mp->m_sb.sb_pquotino == NULLFSINO);
854 } else if ((flags & XFS_QMOPT_GQUOTA) &&
855 (mp->m_sb.sb_pquotino != NULLFSINO)) {
856 ino = mp->m_sb.sb_pquotino;
857 ASSERT(mp->m_sb.sb_gquotino == NULLFSINO);
858 }
859 if (ino != NULLFSINO) {
860 error = xfs_iget(mp, NULL, ino, 0, 0, ip);
861 if (error)
862 return error;
863 mp->m_sb.sb_gquotino = NULLFSINO;
864 mp->m_sb.sb_pquotino = NULLFSINO;
865 }
866 }
867
Nathan Scott061f7202006-01-11 15:27:50 +1100868 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QINOCREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if ((error = xfs_trans_reserve(tp,
870 XFS_QM_QINOCREATE_SPACE_RES(mp),
871 XFS_CREATE_LOG_RES(mp), 0,
872 XFS_TRANS_PERM_LOG_RES,
873 XFS_CREATE_LOG_COUNT))) {
874 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +0100875 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Chandra Seetharamand892d582013-07-19 17:36:02 -0500878 if (!*ip) {
879 error = xfs_dir_ialloc(&tp, NULL, S_IFREG, 1, 0, 0, 1, ip,
880 &committed);
881 if (error) {
882 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES |
883 XFS_TRANS_ABORT);
884 return error;
885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 }
887
888 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 * Make the changes in the superblock, and log those too.
890 * sbfields arg may contain fields other than *QUOTINO;
891 * VERSIONNUM for example.
892 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000893 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (flags & XFS_QMOPT_SBVERSION) {
Eric Sandeen62118702008-03-06 13:44:28 +1100895 ASSERT(!xfs_sb_version_hasquota(&mp->m_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 ASSERT((sbfields & (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
Chandra Seetharamand892d582013-07-19 17:36:02 -0500897 XFS_SB_GQUOTINO | XFS_SB_PQUOTINO | XFS_SB_QFLAGS)) ==
898 (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
899 XFS_SB_GQUOTINO | XFS_SB_PQUOTINO |
900 XFS_SB_QFLAGS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Eric Sandeen62118702008-03-06 13:44:28 +1100902 xfs_sb_version_addquota(&mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 mp->m_sb.sb_uquotino = NULLFSINO;
904 mp->m_sb.sb_gquotino = NULLFSINO;
Chandra Seetharamand892d582013-07-19 17:36:02 -0500905 mp->m_sb.sb_pquotino = NULLFSINO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Chandra Seetharamand892d582013-07-19 17:36:02 -0500907 /* qflags will get updated fully _after_ quotacheck */
908 mp->m_sb.sb_qflags = mp->m_qflags & XFS_ALL_QUOTA_ACCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910 if (flags & XFS_QMOPT_UQUOTA)
911 mp->m_sb.sb_uquotino = (*ip)->i_ino;
Chandra Seetharamand892d582013-07-19 17:36:02 -0500912 else if (flags & XFS_QMOPT_GQUOTA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 mp->m_sb.sb_gquotino = (*ip)->i_ino;
Chandra Seetharamand892d582013-07-19 17:36:02 -0500914 else
915 mp->m_sb.sb_pquotino = (*ip)->i_ino;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000916 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 xfs_mod_sb(tp, sbfields);
918
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000919 if ((error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES))) {
Dave Chinner53487782011-03-07 10:05:35 +1100920 xfs_alert(mp, "%s failed (error %d)!", __func__, error);
Jesper Juhl014c2542006-01-15 02:37:08 +0100921 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
Jesper Juhl014c2542006-01-15 02:37:08 +0100923 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924}
925
926
David Chinner5b139732008-04-10 12:20:10 +1000927STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928xfs_qm_reset_dqcounts(
929 xfs_mount_t *mp,
930 xfs_buf_t *bp,
931 xfs_dqid_t id,
932 uint type)
933{
Dave Chinner6fcdc592013-06-03 15:28:46 +1000934 struct xfs_dqblk *dqb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 int j;
936
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000937 trace_xfs_reset_dqcounts(bp, _RET_IP_);
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 /*
940 * Reset all counters and timers. They'll be
941 * started afresh by xfs_qm_quotacheck.
942 */
943#ifdef DEBUG
944 j = XFS_FSB_TO_B(mp, XFS_DQUOT_CLUSTER_SIZE_FSB);
945 do_div(j, sizeof(xfs_dqblk_t));
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000946 ASSERT(mp->m_quotainfo->qi_dqperchunk == j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947#endif
Dave Chinner6fcdc592013-06-03 15:28:46 +1000948 dqb = bp->b_addr;
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000949 for (j = 0; j < mp->m_quotainfo->qi_dqperchunk; j++) {
Dave Chinner6fcdc592013-06-03 15:28:46 +1000950 struct xfs_disk_dquot *ddq;
951
952 ddq = (struct xfs_disk_dquot *)&dqb[j];
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 /*
955 * Do a sanity check, and if needed, repair the dqblk. Don't
956 * output any warnings because it's perfectly possible to
Nathan Scottc41564b2006-03-29 08:55:14 +1000957 * find uninitialised dquot blks. See comment in xfs_qm_dqcheck.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 */
Dave Chinnera0fa2b62011-03-07 10:01:35 +1100959 (void) xfs_qm_dqcheck(mp, ddq, id+j, type, XFS_QMOPT_DQREPAIR,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 "xfs_quotacheck");
Christoph Hellwig1149d962005-11-02 15:01:12 +1100961 ddq->d_bcount = 0;
962 ddq->d_icount = 0;
963 ddq->d_rtbcount = 0;
964 ddq->d_btimer = 0;
965 ddq->d_itimer = 0;
966 ddq->d_rtbtimer = 0;
967 ddq->d_bwarns = 0;
968 ddq->d_iwarns = 0;
969 ddq->d_rtbwarns = 0;
Dave Chinner6fcdc592013-06-03 15:28:46 +1000970
971 if (xfs_sb_version_hascrc(&mp->m_sb)) {
972 xfs_update_cksum((char *)&dqb[j],
973 sizeof(struct xfs_dqblk),
974 XFS_DQUOT_CRC_OFF);
975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977}
978
979STATIC int
980xfs_qm_dqiter_bufs(
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000981 struct xfs_mount *mp,
982 xfs_dqid_t firstid,
983 xfs_fsblock_t bno,
984 xfs_filblks_t blkcnt,
985 uint flags,
986 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000988 struct xfs_buf *bp;
989 int error;
990 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 ASSERT(blkcnt > 0);
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000993 type = flags & XFS_QMOPT_UQUOTA ? XFS_DQ_USER :
994 (flags & XFS_QMOPT_PQUOTA ? XFS_DQ_PROJ : XFS_DQ_GROUP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 error = 0;
996
997 /*
998 * Blkcnt arg can be a very big number, and might even be
999 * larger than the log itself. So, we have to break it up into
1000 * manageable-sized transactions.
1001 * Note that we don't start a permanent transaction here; we might
1002 * not be able to get a log reservation for the whole thing up front,
1003 * and we don't really care to either, because we just discard
1004 * everything if we were to crash in the middle of this loop.
1005 */
1006 while (blkcnt--) {
1007 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
1008 XFS_FSB_TO_DADDR(mp, bno),
Dave Chinnerc6319192012-11-14 17:50:13 +11001009 mp->m_quotainfo->qi_dqchunklen, 0, &bp,
Dave Chinner1813dd62012-11-14 17:54:40 +11001010 &xfs_dquot_buf_ops);
Dave Chinner6fcdc592013-06-03 15:28:46 +10001011
1012 /*
1013 * CRC and validation errors will return a EFSCORRUPTED here. If
1014 * this occurs, re-read without CRC validation so that we can
1015 * repair the damage via xfs_qm_reset_dqcounts(). This process
1016 * will leave a trace in the log indicating corruption has
1017 * been detected.
1018 */
1019 if (error == EFSCORRUPTED) {
1020 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
1021 XFS_FSB_TO_DADDR(mp, bno),
1022 mp->m_quotainfo->qi_dqchunklen, 0, &bp,
1023 NULL);
1024 }
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 if (error)
1027 break;
1028
David Chinner5b139732008-04-10 12:20:10 +10001029 xfs_qm_reset_dqcounts(mp, bp, firstid, type);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001030 xfs_buf_delwri_queue(bp, buffer_list);
Christoph Hellwig61551f12011-08-23 08:28:06 +00001031 xfs_buf_relse(bp);
Dave Chinner6fcdc592013-06-03 15:28:46 +10001032
1033 /* goto the next block. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 bno++;
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001035 firstid += mp->m_quotainfo->qi_dqperchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001037
Jesper Juhl014c2542006-01-15 02:37:08 +01001038 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039}
1040
1041/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001042 * Iterate over all allocated USR/GRP/PRJ dquots in the system, calling a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 * caller supplied function for every chunk of dquots that we find.
1044 */
1045STATIC int
1046xfs_qm_dqiterate(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001047 struct xfs_mount *mp,
1048 struct xfs_inode *qip,
1049 uint flags,
1050 struct list_head *buffer_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001052 struct xfs_bmbt_irec *map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 int i, nmaps; /* number of map entries */
1054 int error; /* return value */
1055 xfs_fileoff_t lblkno;
1056 xfs_filblks_t maxlblkcnt;
1057 xfs_dqid_t firstid;
1058 xfs_fsblock_t rablkno;
1059 xfs_filblks_t rablkcnt;
1060
1061 error = 0;
1062 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001063 * This looks racy, but we can't keep an inode lock across a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 * trans_reserve. But, this gets called during quotacheck, and that
1065 * happens only at mount time which is single threaded.
1066 */
1067 if (qip->i_d.di_nblocks == 0)
Jesper Juhl014c2542006-01-15 02:37:08 +01001068 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 map = kmem_alloc(XFS_DQITER_MAP_SIZE * sizeof(*map), KM_SLEEP);
1071
1072 lblkno = 0;
Dave Chinner32972382012-06-08 15:44:54 +10001073 maxlblkcnt = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 do {
1075 nmaps = XFS_DQITER_MAP_SIZE;
1076 /*
1077 * We aren't changing the inode itself. Just changing
1078 * some of its data. No new blocks are added here, and
1079 * the inode is never added to the transaction.
1080 */
1081 xfs_ilock(qip, XFS_ILOCK_SHARED);
Dave Chinner5c8ed202011-09-18 20:40:45 +00001082 error = xfs_bmapi_read(qip, lblkno, maxlblkcnt - lblkno,
1083 map, &nmaps, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 xfs_iunlock(qip, XFS_ILOCK_SHARED);
1085 if (error)
1086 break;
1087
1088 ASSERT(nmaps <= XFS_DQITER_MAP_SIZE);
1089 for (i = 0; i < nmaps; i++) {
1090 ASSERT(map[i].br_startblock != DELAYSTARTBLOCK);
1091 ASSERT(map[i].br_blockcount);
1092
1093
1094 lblkno += map[i].br_blockcount;
1095
1096 if (map[i].br_startblock == HOLESTARTBLOCK)
1097 continue;
1098
1099 firstid = (xfs_dqid_t) map[i].br_startoff *
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001100 mp->m_quotainfo->qi_dqperchunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 /*
1102 * Do a read-ahead on the next extent.
1103 */
1104 if ((i+1 < nmaps) &&
1105 (map[i+1].br_startblock != HOLESTARTBLOCK)) {
1106 rablkcnt = map[i+1].br_blockcount;
1107 rablkno = map[i+1].br_startblock;
1108 while (rablkcnt--) {
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001109 xfs_buf_readahead(mp->m_ddev_targp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 XFS_FSB_TO_DADDR(mp, rablkno),
Dave Chinnerc3f8fc72012-11-12 22:54:01 +11001111 mp->m_quotainfo->qi_dqchunklen,
1112 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 rablkno++;
1114 }
1115 }
1116 /*
1117 * Iterate thru all the blks in the extent and
1118 * reset the counters of all the dquots inside them.
1119 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001120 error = xfs_qm_dqiter_bufs(mp, firstid,
1121 map[i].br_startblock,
1122 map[i].br_blockcount,
1123 flags, buffer_list);
1124 if (error)
1125 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 } while (nmaps > 0);
1128
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001129out:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001130 kmem_free(map);
Jesper Juhl014c2542006-01-15 02:37:08 +01001131 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
1134/*
1135 * Called by dqusage_adjust in doing a quotacheck.
Christoph Hellwig52fda112010-09-06 01:44:22 +00001136 *
1137 * Given the inode, and a dquot id this updates both the incore dqout as well
1138 * as the buffer copy. This is so that once the quotacheck is done, we can
1139 * just log all the buffers, as opposed to logging numerous updates to
1140 * individual dquots.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001142STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143xfs_qm_quotacheck_dqadjust(
Christoph Hellwig52fda112010-09-06 01:44:22 +00001144 struct xfs_inode *ip,
1145 xfs_dqid_t id,
1146 uint type,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 xfs_qcnt_t nblks,
1148 xfs_qcnt_t rtblks)
1149{
Christoph Hellwig52fda112010-09-06 01:44:22 +00001150 struct xfs_mount *mp = ip->i_mount;
1151 struct xfs_dquot *dqp;
1152 int error;
1153
1154 error = xfs_qm_dqget(mp, ip, id, type,
1155 XFS_QMOPT_DQALLOC | XFS_QMOPT_DOWARN, &dqp);
1156 if (error) {
1157 /*
1158 * Shouldn't be able to turn off quotas here.
1159 */
1160 ASSERT(error != ESRCH);
1161 ASSERT(error != ENOENT);
1162 return error;
1163 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001164
1165 trace_xfs_dqadjust(dqp);
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 /*
1168 * Adjust the inode count and the block count to reflect this inode's
1169 * resource usage.
1170 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001171 be64_add_cpu(&dqp->q_core.d_icount, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 dqp->q_res_icount++;
1173 if (nblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001174 be64_add_cpu(&dqp->q_core.d_bcount, nblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 dqp->q_res_bcount += nblks;
1176 }
1177 if (rtblks) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001178 be64_add_cpu(&dqp->q_core.d_rtbcount, rtblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 dqp->q_res_rtbcount += rtblks;
1180 }
1181
1182 /*
1183 * Set default limits, adjust timers (since we changed usages)
Christoph Hellwig191f8482010-04-20 17:01:53 +10001184 *
1185 * There are no timers for the default values set in the root dquot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 */
Christoph Hellwig191f8482010-04-20 17:01:53 +10001187 if (dqp->q_core.d_id) {
Brian Foster4b6eae2e2013-03-18 10:51:45 -04001188 xfs_qm_adjust_dqlimits(mp, dqp);
Christoph Hellwig52fda112010-09-06 01:44:22 +00001189 xfs_qm_adjust_dqtimers(mp, &dqp->q_core);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
1191
1192 dqp->dq_flags |= XFS_DQ_DIRTY;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001193 xfs_qm_dqput(dqp);
1194 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
1197STATIC int
1198xfs_qm_get_rtblks(
1199 xfs_inode_t *ip,
1200 xfs_qcnt_t *O_rtblks)
1201{
1202 xfs_filblks_t rtblks; /* total rt blks */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001203 xfs_extnum_t idx; /* extent record index */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 xfs_ifork_t *ifp; /* inode fork pointer */
1205 xfs_extnum_t nextents; /* number of extent entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 int error;
1207
1208 ASSERT(XFS_IS_REALTIME_INODE(ip));
1209 ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
1210 if (!(ifp->if_flags & XFS_IFEXTENTS)) {
1211 if ((error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK)))
Jesper Juhl014c2542006-01-15 02:37:08 +01001212 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
1214 rtblks = 0;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001215 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10001216 for (idx = 0; idx < nextents; idx++)
1217 rtblks += xfs_bmbt_get_blockcount(xfs_iext_get_ext(ifp, idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 *O_rtblks = (xfs_qcnt_t)rtblks;
Jesper Juhl014c2542006-01-15 02:37:08 +01001219 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
1221
1222/*
1223 * callback routine supplied to bulkstat(). Given an inumber, find its
1224 * dquots and update them to account for resources taken by that inode.
1225 */
1226/* ARGSUSED */
1227STATIC int
1228xfs_qm_dqusage_adjust(
1229 xfs_mount_t *mp, /* mount point for filesystem */
1230 xfs_ino_t ino, /* inode number to get data for */
1231 void __user *buffer, /* not used */
1232 int ubsize, /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 int *ubused, /* not used */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 int *res) /* result code value */
1235{
1236 xfs_inode_t *ip;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001237 xfs_qcnt_t nblks, rtblks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 int error;
1239
1240 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1241
1242 /*
1243 * rootino must have its resources accounted for, not so with the quota
1244 * inodes.
1245 */
Chandra Seetharaman9cad19d2013-06-27 17:25:04 -05001246 if (xfs_is_quota_inode(&mp->m_sb, ino)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 *res = BULKSTAT_RV_NOTHING;
1248 return XFS_ERROR(EINVAL);
1249 }
1250
1251 /*
1252 * We don't _need_ to take the ilock EXCL. However, the xfs_qm_dqget
1253 * interface expects the inode to be exclusively locked because that's
1254 * the case in all other instances. It's OK that we do this because
1255 * quotacheck is done only at mount time.
1256 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001257 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_EXCL, &ip);
1258 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 *res = BULKSTAT_RV_NOTHING;
Jesper Juhl014c2542006-01-15 02:37:08 +01001260 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
1262
Christoph Hellwig52fda112010-09-06 01:44:22 +00001263 ASSERT(ip->i_delayed_blks == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Christoph Hellwig52fda112010-09-06 01:44:22 +00001265 if (XFS_IS_REALTIME_INODE(ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 /*
1267 * Walk thru the extent list and count the realtime blocks.
1268 */
Christoph Hellwig52fda112010-09-06 01:44:22 +00001269 error = xfs_qm_get_rtblks(ip, &rtblks);
1270 if (error)
1271 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Christoph Hellwig52fda112010-09-06 01:44:22 +00001274 nblks = (xfs_qcnt_t)ip->i_d.di_nblocks - rtblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 /*
1277 * Add the (disk blocks and inode) resources occupied by this
1278 * inode to its dquots. We do this adjustment in the incore dquot,
1279 * and also copy the changes to its buffer.
1280 * We don't care about putting these changes in a transaction
1281 * envelope because if we crash in the middle of a 'quotacheck'
1282 * we have to start from the beginning anyway.
1283 * Once we're done, we'll log all the dquot bufs.
1284 *
Nathan Scottc41564b2006-03-29 08:55:14 +10001285 * The *QUOTA_ON checks below may look pretty racy, but quotachecks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 * and quotaoffs don't race. (Quotachecks happen at mount time only).
1287 */
1288 if (XFS_IS_UQUOTA_ON(mp)) {
Christoph Hellwig52fda112010-09-06 01:44:22 +00001289 error = xfs_qm_quotacheck_dqadjust(ip, ip->i_d.di_uid,
1290 XFS_DQ_USER, nblks, rtblks);
1291 if (error)
1292 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Christoph Hellwig52fda112010-09-06 01:44:22 +00001295 if (XFS_IS_GQUOTA_ON(mp)) {
1296 error = xfs_qm_quotacheck_dqadjust(ip, ip->i_d.di_gid,
1297 XFS_DQ_GROUP, nblks, rtblks);
1298 if (error)
1299 goto error0;
1300 }
1301
1302 if (XFS_IS_PQUOTA_ON(mp)) {
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001303 error = xfs_qm_quotacheck_dqadjust(ip, xfs_get_projid(ip),
Christoph Hellwig52fda112010-09-06 01:44:22 +00001304 XFS_DQ_PROJ, nblks, rtblks);
1305 if (error)
1306 goto error0;
1307 }
1308
1309 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1310 IRELE(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 *res = BULKSTAT_RV_DIDONE;
Jesper Juhl014c2542006-01-15 02:37:08 +01001312 return 0;
Christoph Hellwig52fda112010-09-06 01:44:22 +00001313
1314error0:
1315 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1316 IRELE(ip);
1317 *res = BULKSTAT_RV_GIVEUP;
1318 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319}
1320
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001321STATIC int
1322xfs_qm_flush_one(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001323 struct xfs_dquot *dqp,
1324 void *data)
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001325{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001326 struct list_head *buffer_list = data;
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001327 struct xfs_buf *bp = NULL;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001328 int error = 0;
1329
1330 xfs_dqlock(dqp);
1331 if (dqp->dq_flags & XFS_DQ_FREEING)
1332 goto out_unlock;
1333 if (!XFS_DQ_IS_DIRTY(dqp))
1334 goto out_unlock;
1335
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001336 xfs_dqflock(dqp);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001337 error = xfs_qm_dqflush(dqp, &bp);
1338 if (error)
1339 goto out_unlock;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001340
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001341 xfs_buf_delwri_queue(bp, buffer_list);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001342 xfs_buf_relse(bp);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001343out_unlock:
1344 xfs_dqunlock(dqp);
1345 return error;
1346}
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348/*
1349 * Walk thru all the filesystem inodes and construct a consistent view
1350 * of the disk quota world. If the quotacheck fails, disable quotas.
1351 */
1352int
1353xfs_qm_quotacheck(
1354 xfs_mount_t *mp)
1355{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001356 int done, count, error, error2;
1357 xfs_ino_t lastino;
1358 size_t structsz;
1359 uint flags;
1360 LIST_HEAD (buffer_list);
1361 struct xfs_inode *uip = mp->m_quotainfo->qi_uquotaip;
1362 struct xfs_inode *gip = mp->m_quotainfo->qi_gquotaip;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001363 struct xfs_inode *pip = mp->m_quotainfo->qi_pquotaip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 count = INT_MAX;
1366 structsz = 1;
1367 lastino = 0;
1368 flags = 0;
1369
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001370 ASSERT(uip || gip || pip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1372
Dave Chinner0b932cc2011-03-07 10:08:35 +11001373 xfs_notice(mp, "Quotacheck needed: Please wait.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375 /*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001376 * First we go thru all the dquots on disk, USR and GRP/PRJ, and reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 * their counters to zero. We need a clean slate.
1378 * We don't log our changes till later.
1379 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001380 if (uip) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001381 error = xfs_qm_dqiterate(mp, uip, XFS_QMOPT_UQUOTA,
1382 &buffer_list);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001383 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 goto error_return;
1385 flags |= XFS_UQUOTA_CHKD;
1386 }
1387
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001388 if (gip) {
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001389 error = xfs_qm_dqiterate(mp, gip, XFS_QMOPT_GQUOTA,
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001390 &buffer_list);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001391 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 goto error_return;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001393 flags |= XFS_GQUOTA_CHKD;
1394 }
1395
1396 if (pip) {
1397 error = xfs_qm_dqiterate(mp, pip, XFS_QMOPT_PQUOTA,
1398 &buffer_list);
1399 if (error)
1400 goto error_return;
1401 flags |= XFS_PQUOTA_CHKD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 }
1403
1404 do {
1405 /*
1406 * Iterate thru all the inodes in the file system,
1407 * adjusting the corresponding dquot counters in core.
1408 */
Christoph Hellwig7dce11d2010-06-23 18:11:11 +10001409 error = xfs_bulkstat(mp, &lastino, &count,
1410 xfs_qm_dqusage_adjust,
1411 structsz, NULL, &done);
1412 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 break;
1414
Christoph Hellwig7dce11d2010-06-23 18:11:11 +10001415 } while (!done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 /*
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001418 * We've made all the changes that we need to make incore. Flush them
1419 * down to disk buffers if everything was updated successfully.
David Chinner4b8879d2008-04-10 12:20:17 +10001420 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001421 if (XFS_IS_UQUOTA_ON(mp)) {
1422 error = xfs_qm_dquot_walk(mp, XFS_DQ_USER, xfs_qm_flush_one,
1423 &buffer_list);
1424 }
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001425 if (XFS_IS_GQUOTA_ON(mp)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001426 error2 = xfs_qm_dquot_walk(mp, XFS_DQ_GROUP, xfs_qm_flush_one,
1427 &buffer_list);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001428 if (!error)
1429 error = error2;
1430 }
1431 if (XFS_IS_PQUOTA_ON(mp)) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001432 error2 = xfs_qm_dquot_walk(mp, XFS_DQ_PROJ, xfs_qm_flush_one,
1433 &buffer_list);
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001434 if (!error)
1435 error = error2;
1436 }
David Chinner4b8879d2008-04-10 12:20:17 +10001437
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001438 error2 = xfs_buf_delwri_submit(&buffer_list);
1439 if (!error)
1440 error = error2;
1441
David Chinner4b8879d2008-04-10 12:20:17 +10001442 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 * We can get this error if we couldn't do a dquot allocation inside
1444 * xfs_qm_dqusage_adjust (via bulkstat). We don't care about the
1445 * dirty dquots that might be cached, we just want to get rid of them
1446 * and turn quotaoff. The dquots won't be attached to any of the inodes
1447 * at this point (because we intentionally didn't in dqget_noattach).
1448 */
1449 if (error) {
Christoph Hellwig8112e9d2010-04-20 17:02:29 +10001450 xfs_qm_dqpurge_all(mp, XFS_QMOPT_QUOTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 goto error_return;
1452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 * If one type of quotas is off, then it will lose its
1456 * quotachecked status, since we won't be doing accounting for
1457 * that type anymore.
1458 */
Chandra Seetharaman4177af32012-01-23 17:31:43 +00001459 mp->m_qflags &= ~XFS_ALL_QUOTA_CHKD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 mp->m_qflags |= flags;
1461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 error_return:
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001463 while (!list_empty(&buffer_list)) {
1464 struct xfs_buf *bp =
1465 list_first_entry(&buffer_list, struct xfs_buf, b_list);
1466 list_del_init(&bp->b_list);
1467 xfs_buf_relse(bp);
1468 }
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001471 xfs_warn(mp,
1472 "Quotacheck: Unsuccessful (Error %d): Disabling quotas.",
1473 error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 /*
1475 * We must turn off quotas.
1476 */
1477 ASSERT(mp->m_quotainfo != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 xfs_qm_destroy_quotainfo(mp);
David Chinner31d55772008-04-10 12:20:38 +10001479 if (xfs_mount_reset_sbqflags(mp)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001480 xfs_warn(mp,
1481 "Quotacheck: Failed to reset quota flags.");
David Chinner31d55772008-04-10 12:20:38 +10001482 }
Dave Chinner0b932cc2011-03-07 10:08:35 +11001483 } else
1484 xfs_notice(mp, "Quotacheck: Done.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 return (error);
1486}
1487
1488/*
1489 * This is called after the superblock has been read in and we're ready to
1490 * iget the quota inodes.
1491 */
1492STATIC int
1493xfs_qm_init_quotainos(
1494 xfs_mount_t *mp)
1495{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001496 struct xfs_inode *uip = NULL;
1497 struct xfs_inode *gip = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001498 struct xfs_inode *pip = NULL;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001499 int error;
1500 __int64_t sbflags = 0;
1501 uint flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
1503 ASSERT(mp->m_quotainfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
1505 /*
1506 * Get the uquota and gquota inodes
1507 */
Eric Sandeen62118702008-03-06 13:44:28 +11001508 if (xfs_sb_version_hasquota(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 if (XFS_IS_UQUOTA_ON(mp) &&
1510 mp->m_sb.sb_uquotino != NULLFSINO) {
1511 ASSERT(mp->m_sb.sb_uquotino > 0);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001512 error = xfs_iget(mp, NULL, mp->m_sb.sb_uquotino,
1513 0, 0, &uip);
1514 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 return XFS_ERROR(error);
1516 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001517 if (XFS_IS_GQUOTA_ON(mp) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 mp->m_sb.sb_gquotino != NULLFSINO) {
1519 ASSERT(mp->m_sb.sb_gquotino > 0);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001520 error = xfs_iget(mp, NULL, mp->m_sb.sb_gquotino,
1521 0, 0, &gip);
1522 if (error)
1523 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001525 if (XFS_IS_PQUOTA_ON(mp) &&
Chandra Seetharamand892d582013-07-19 17:36:02 -05001526 mp->m_sb.sb_pquotino != NULLFSINO) {
1527 ASSERT(mp->m_sb.sb_pquotino > 0);
1528 error = xfs_iget(mp, NULL, mp->m_sb.sb_pquotino,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001529 0, 0, &pip);
1530 if (error)
1531 goto error_rele;
1532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 } else {
1534 flags |= XFS_QMOPT_SBVERSION;
1535 sbflags |= (XFS_SB_VERSIONNUM | XFS_SB_UQUOTINO |
Chandra Seetharamand892d582013-07-19 17:36:02 -05001536 XFS_SB_GQUOTINO | XFS_SB_PQUOTINO |
1537 XFS_SB_QFLAGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
1539
1540 /*
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001541 * Create the three inodes, if they don't exist already. The changes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 * made above will get added to a transaction and logged in one of
1543 * the qino_alloc calls below. If the device is readonly,
1544 * temporarily switch to read-write to do this.
1545 */
1546 if (XFS_IS_UQUOTA_ON(mp) && uip == NULL) {
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001547 error = xfs_qm_qino_alloc(mp, &uip,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 sbflags | XFS_SB_UQUOTINO,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001549 flags | XFS_QMOPT_UQUOTA);
1550 if (error)
1551 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 flags &= ~XFS_QMOPT_SBVERSION;
1554 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001555 if (XFS_IS_GQUOTA_ON(mp) && gip == NULL) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001556 error = xfs_qm_qino_alloc(mp, &gip,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001557 sbflags | XFS_SB_GQUOTINO,
1558 flags | XFS_QMOPT_GQUOTA);
1559 if (error)
1560 goto error_rele;
1561
1562 flags &= ~XFS_QMOPT_SBVERSION;
1563 }
1564 if (XFS_IS_PQUOTA_ON(mp) && pip == NULL) {
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001565 error = xfs_qm_qino_alloc(mp, &pip,
Chandra Seetharamand892d582013-07-19 17:36:02 -05001566 sbflags | XFS_SB_PQUOTINO,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001567 flags | XFS_QMOPT_PQUOTA);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001568 if (error)
1569 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
1571
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +10001572 mp->m_quotainfo->qi_uquotaip = uip;
1573 mp->m_quotainfo->qi_gquotaip = gip;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001574 mp->m_quotainfo->qi_pquotaip = pip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Jesper Juhl014c2542006-01-15 02:37:08 +01001576 return 0;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001577
1578error_rele:
1579 if (uip)
1580 IRELE(uip);
1581 if (gip)
1582 IRELE(gip);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001583 if (pip)
1584 IRELE(pip);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001585 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586}
1587
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001588STATIC void
1589xfs_qm_dqfree_one(
1590 struct xfs_dquot *dqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001592 struct xfs_mount *mp = dqp->q_mount;
1593 struct xfs_quotainfo *qi = mp->m_quotainfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Christoph Hellwig9f920f12012-03-13 08:52:35 +00001595 mutex_lock(&qi->qi_tree_lock);
Chandra Seetharaman329e0872013-06-27 17:25:05 -05001596 radix_tree_delete(xfs_dquot_tree(qi, dqp->q_core.d_flags),
Christoph Hellwig9f920f12012-03-13 08:52:35 +00001597 be32_to_cpu(dqp->q_core.d_id));
Christoph Hellwigbf72de32011-12-06 21:58:19 +00001598
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001599 qi->qi_dquots--;
Christoph Hellwigb84a3a92012-03-14 11:53:34 -05001600 mutex_unlock(&qi->qi_tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001602 xfs_qm_dqdestroy(dqp);
1603}
Christoph Hellwigbe7ffc32011-12-06 21:58:17 +00001604
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001605STATIC void
1606xfs_qm_dqreclaim_one(
1607 struct xfs_dquot *dqp,
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001608 struct list_head *buffer_list,
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001609 struct list_head *dispose_list)
1610{
1611 struct xfs_mount *mp = dqp->q_mount;
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001612 struct xfs_quotainfo *qi = mp->m_quotainfo;
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001613 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001615 if (!xfs_dqlock_nowait(dqp))
Dave Chinnerb8705532012-11-28 13:01:02 +11001616 goto out_move_tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001618 /*
1619 * This dquot has acquired a reference in the meantime remove it from
1620 * the freelist and try again.
1621 */
1622 if (dqp->q_nrefs) {
Christoph Hellwig92678552011-12-06 21:58:18 +00001623 xfs_dqunlock(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001625 trace_xfs_dqreclaim_want(dqp);
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001626 XFS_STATS_INC(xs_qm_dqwants);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001627
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001628 list_del_init(&dqp->q_lru);
1629 qi->qi_lru_count--;
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001630 XFS_STATS_DEC(xs_qm_dquot_unused);
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001631 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 }
Christoph Hellwig92678552011-12-06 21:58:18 +00001633
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001634 /*
1635 * Try to grab the flush lock. If this dquot is in the process of
1636 * getting flushed to disk, we don't want to reclaim it.
1637 */
1638 if (!xfs_dqflock_nowait(dqp))
Dave Chinnerb8705532012-11-28 13:01:02 +11001639 goto out_unlock_move_tail;
Dave Chinner368e1362010-04-13 15:06:50 +10001640
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001641 if (XFS_DQ_IS_DIRTY(dqp)) {
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001642 struct xfs_buf *bp = NULL;
1643
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001644 trace_xfs_dqreclaim_dirty(dqp);
Dave Chinner368e1362010-04-13 15:06:50 +10001645
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001646 error = xfs_qm_dqflush(dqp, &bp);
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001647 if (error) {
1648 xfs_warn(mp, "%s: dquot %p flush failed",
1649 __func__, dqp);
Dave Chinnerb8705532012-11-28 13:01:02 +11001650 goto out_unlock_move_tail;
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001651 }
1652
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001653 xfs_buf_delwri_queue(bp, buffer_list);
Christoph Hellwigfe7257f2012-04-23 15:58:37 +10001654 xfs_buf_relse(bp);
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001655 /*
1656 * Give the dquot another try on the freelist, as the
1657 * flushing will take some time.
1658 */
Dave Chinnerb8705532012-11-28 13:01:02 +11001659 goto out_unlock_move_tail;
Dave Chinner368e1362010-04-13 15:06:50 +10001660 }
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001661 xfs_dqfunlock(dqp);
1662
1663 /*
1664 * Prevent lookups now that we are past the point of no return.
1665 */
1666 dqp->dq_flags |= XFS_DQ_FREEING;
1667 xfs_dqunlock(dqp);
1668
1669 ASSERT(dqp->q_nrefs == 0);
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001670 list_move_tail(&dqp->q_lru, dispose_list);
1671 qi->qi_lru_count--;
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001672 XFS_STATS_DEC(xs_qm_dquot_unused);
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001673
1674 trace_xfs_dqreclaim_done(dqp);
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001675 XFS_STATS_INC(xs_qm_dqreclaims);
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001676 return;
1677
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001678 /*
1679 * Move the dquot to the tail of the list so that we don't spin on it.
1680 */
Dave Chinnerb8705532012-11-28 13:01:02 +11001681out_unlock_move_tail:
1682 xfs_dqunlock(dqp);
1683out_move_tail:
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001684 list_move_tail(&dqp->q_lru, &qi->qi_lru_list);
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001685 trace_xfs_dqreclaim_busy(dqp);
Christoph Hellwig48776fd2012-03-13 08:52:33 +00001686 XFS_STATS_INC(xs_qm_dqreclaim_misses);
Dave Chinner368e1362010-04-13 15:06:50 +10001687}
1688
Dave Chinner368e1362010-04-13 15:06:50 +10001689STATIC int
Dave Chinner7f8275d2010-07-19 14:56:17 +10001690xfs_qm_shake(
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001691 struct shrinker *shrink,
1692 struct shrink_control *sc)
Dave Chinner368e1362010-04-13 15:06:50 +10001693{
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001694 struct xfs_quotainfo *qi =
1695 container_of(shrink, struct xfs_quotainfo, qi_shrinker);
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001696 int nr_to_scan = sc->nr_to_scan;
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001697 LIST_HEAD (buffer_list);
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001698 LIST_HEAD (dispose_list);
1699 struct xfs_dquot *dqp;
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001700 int error;
Dave Chinner368e1362010-04-13 15:06:50 +10001701
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001702 if ((sc->gfp_mask & (__GFP_FS|__GFP_WAIT)) != (__GFP_FS|__GFP_WAIT))
Dave Chinner368e1362010-04-13 15:06:50 +10001703 return 0;
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001704 if (!nr_to_scan)
1705 goto out;
Dave Chinner368e1362010-04-13 15:06:50 +10001706
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001707 mutex_lock(&qi->qi_lru_lock);
1708 while (!list_empty(&qi->qi_lru_list)) {
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001709 if (nr_to_scan-- <= 0)
1710 break;
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001711 dqp = list_first_entry(&qi->qi_lru_list, struct xfs_dquot,
1712 q_lru);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001713 xfs_qm_dqreclaim_one(dqp, &buffer_list, &dispose_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 }
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001715 mutex_unlock(&qi->qi_lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001717 error = xfs_buf_delwri_submit(&buffer_list);
1718 if (error)
1719 xfs_warn(NULL, "%s: dquot reclaim failed", __func__);
1720
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001721 while (!list_empty(&dispose_list)) {
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001722 dqp = list_first_entry(&dispose_list, struct xfs_dquot, q_lru);
1723 list_del_init(&dqp->q_lru);
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001724 xfs_qm_dqfree_one(dqp);
1725 }
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001726
Christoph Hellwig92b2e5b2012-02-01 13:57:20 +00001727out:
Christoph Hellwigf8739c32012-03-13 08:52:34 +00001728 return (qi->qi_lru_count / 100) * sysctl_vfs_cache_pressure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729}
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731/*
1732 * Start a transaction and write the incore superblock changes to
1733 * disk. flags parameter indicates which fields have changed.
1734 */
1735int
1736xfs_qm_write_sb_changes(
1737 xfs_mount_t *mp,
1738 __int64_t flags)
1739{
1740 xfs_trans_t *tp;
1741 int error;
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
Jeff Liuf910a8c2013-01-28 21:26:34 +08001744 error = xfs_trans_reserve(tp, 0, XFS_QM_SBCHANGE_LOG_RES(mp),
1745 0, 0, XFS_DEFAULT_LOG_COUNT);
1746 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 xfs_trans_cancel(tp, 0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001748 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 }
1750
1751 xfs_mod_sb(tp, flags);
David Chinnere5720ee2008-04-10 12:21:18 +10001752 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
David Chinnere5720ee2008-04-10 12:21:18 +10001754 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755}
1756
1757
1758/* --------------- utility functions for vnodeops ---------------- */
1759
1760
1761/*
Christoph Hellwig6c77b0e2010-10-06 18:41:17 +00001762 * Given an inode, a uid, gid and prid make sure that we have
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 * allocated relevant dquot(s) on disk, and that we won't exceed inode
1764 * quotas by creating this file.
1765 * This also attaches dquot(s) to the given inode after locking it,
1766 * and returns the dquots corresponding to the uid and/or gid.
1767 *
1768 * in : inode (unlocked)
1769 * out : udquot, gdquot with references taken and unlocked
1770 */
1771int
1772xfs_qm_vop_dqalloc(
Christoph Hellwig7d095252009-06-08 15:33:32 +02001773 struct xfs_inode *ip,
1774 uid_t uid,
1775 gid_t gid,
1776 prid_t prid,
1777 uint flags,
1778 struct xfs_dquot **O_udqpp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001779 struct xfs_dquot **O_gdqpp,
1780 struct xfs_dquot **O_pdqpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
Christoph Hellwig7d095252009-06-08 15:33:32 +02001782 struct xfs_mount *mp = ip->i_mount;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001783 struct xfs_dquot *uq = NULL;
1784 struct xfs_dquot *gq = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001785 struct xfs_dquot *pq = NULL;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001786 int error;
1787 uint lockflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Christoph Hellwig7d095252009-06-08 15:33:32 +02001789 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return 0;
1791
1792 lockflags = XFS_ILOCK_EXCL;
1793 xfs_ilock(ip, lockflags);
1794
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001795 if ((flags & XFS_QMOPT_INHERIT) && XFS_INHERIT_GID(ip))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 gid = ip->i_d.di_gid;
1797
1798 /*
1799 * Attach the dquot(s) to this inode, doing a dquot allocation
1800 * if necessary. The dquot(s) will not be locked.
1801 */
1802 if (XFS_NOT_DQATTACHED(mp, ip)) {
Christoph Hellwig7d095252009-06-08 15:33:32 +02001803 error = xfs_qm_dqattach_locked(ip, XFS_QMOPT_DQALLOC);
1804 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 xfs_iunlock(ip, lockflags);
Jesper Juhl014c2542006-01-15 02:37:08 +01001806 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 }
1808 }
1809
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001810 if ((flags & XFS_QMOPT_UQUOTA) && XFS_IS_UQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 if (ip->i_d.di_uid != uid) {
1812 /*
1813 * What we need is the dquot that has this uid, and
1814 * if we send the inode to dqget, the uid of the inode
1815 * takes priority over what's sent in the uid argument.
1816 * We must unlock inode here before calling dqget if
1817 * we're not sending the inode, because otherwise
1818 * we'll deadlock by doing trans_reserve while
1819 * holding ilock.
1820 */
1821 xfs_iunlock(ip, lockflags);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001822 error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t) uid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 XFS_DQ_USER,
1824 XFS_QMOPT_DQALLOC |
1825 XFS_QMOPT_DOWARN,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001826 &uq);
1827 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 ASSERT(error != ENOENT);
Jesper Juhl014c2542006-01-15 02:37:08 +01001829 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 }
1831 /*
1832 * Get the ilock in the right order.
1833 */
1834 xfs_dqunlock(uq);
1835 lockflags = XFS_ILOCK_SHARED;
1836 xfs_ilock(ip, lockflags);
1837 } else {
1838 /*
1839 * Take an extra reference, because we'll return
1840 * this to caller
1841 */
1842 ASSERT(ip->i_udquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001843 uq = xfs_qm_dqhold(ip->i_udquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845 }
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001846 if ((flags & XFS_QMOPT_GQUOTA) && XFS_IS_GQUOTA_ON(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 if (ip->i_d.di_gid != gid) {
1848 xfs_iunlock(ip, lockflags);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001849 error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)gid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 XFS_DQ_GROUP,
1851 XFS_QMOPT_DQALLOC |
1852 XFS_QMOPT_DOWARN,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001853 &gq);
1854 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 ASSERT(error != ENOENT);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001856 goto error_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 }
1858 xfs_dqunlock(gq);
1859 lockflags = XFS_ILOCK_SHARED;
1860 xfs_ilock(ip, lockflags);
1861 } else {
1862 ASSERT(ip->i_gdquot);
Christoph Hellwig78e55892011-12-06 21:58:22 +00001863 gq = xfs_qm_dqhold(ip->i_gdquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001865 }
1866 if ((flags & XFS_QMOPT_PQUOTA) && XFS_IS_PQUOTA_ON(mp)) {
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001867 if (xfs_get_projid(ip) != prid) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001868 xfs_iunlock(ip, lockflags);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001869 error = xfs_qm_dqget(mp, NULL, (xfs_dqid_t)prid,
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001870 XFS_DQ_PROJ,
1871 XFS_QMOPT_DQALLOC |
1872 XFS_QMOPT_DOWARN,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001873 &pq);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001874 if (error) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001875 ASSERT(error != ENOENT);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001876 goto error_rele;
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001877 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001878 xfs_dqunlock(pq);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001879 lockflags = XFS_ILOCK_SHARED;
1880 xfs_ilock(ip, lockflags);
1881 } else {
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001882 ASSERT(ip->i_pdquot);
1883 pq = xfs_qm_dqhold(ip->i_pdquot);
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 }
1886 if (uq)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001887 trace_xfs_dquot_dqalloc(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889 xfs_iunlock(ip, lockflags);
1890 if (O_udqpp)
1891 *O_udqpp = uq;
1892 else if (uq)
1893 xfs_qm_dqrele(uq);
1894 if (O_gdqpp)
1895 *O_gdqpp = gq;
1896 else if (gq)
1897 xfs_qm_dqrele(gq);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001898 if (O_pdqpp)
1899 *O_pdqpp = pq;
1900 else if (pq)
1901 xfs_qm_dqrele(pq);
Jesper Juhl014c2542006-01-15 02:37:08 +01001902 return 0;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001903
1904error_rele:
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001905 if (gq)
1906 xfs_qm_dqrele(gq);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001907 if (uq)
1908 xfs_qm_dqrele(uq);
1909 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910}
1911
1912/*
1913 * Actually transfer ownership, and do dquot modifications.
1914 * These were already reserved.
1915 */
1916xfs_dquot_t *
1917xfs_qm_vop_chown(
1918 xfs_trans_t *tp,
1919 xfs_inode_t *ip,
1920 xfs_dquot_t **IO_olddq,
1921 xfs_dquot_t *newdq)
1922{
1923 xfs_dquot_t *prevdq;
Nathan Scott06d10dd2005-06-21 15:48:47 +10001924 uint bfield = XFS_IS_REALTIME_INODE(ip) ?
1925 XFS_TRANS_DQ_RTBCOUNT : XFS_TRANS_DQ_BCOUNT;
1926
Christoph Hellwig7d095252009-06-08 15:33:32 +02001927
Christoph Hellwig579aa9ca2008-04-22 17:34:00 +10001928 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 ASSERT(XFS_IS_QUOTA_RUNNING(ip->i_mount));
1930
1931 /* old dquot */
1932 prevdq = *IO_olddq;
1933 ASSERT(prevdq);
1934 ASSERT(prevdq != newdq);
1935
Nathan Scott06d10dd2005-06-21 15:48:47 +10001936 xfs_trans_mod_dquot(tp, prevdq, bfield, -(ip->i_d.di_nblocks));
1937 xfs_trans_mod_dquot(tp, prevdq, XFS_TRANS_DQ_ICOUNT, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939 /* the sparkling new dquot */
Nathan Scott06d10dd2005-06-21 15:48:47 +10001940 xfs_trans_mod_dquot(tp, newdq, bfield, ip->i_d.di_nblocks);
1941 xfs_trans_mod_dquot(tp, newdq, XFS_TRANS_DQ_ICOUNT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 /*
Christoph Hellwig78e55892011-12-06 21:58:22 +00001944 * Take an extra reference, because the inode is going to keep
1945 * this dquot pointer even after the trans_commit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 */
Christoph Hellwig78e55892011-12-06 21:58:22 +00001947 *IO_olddq = xfs_qm_dqhold(newdq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Jesper Juhl014c2542006-01-15 02:37:08 +01001949 return prevdq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950}
1951
1952/*
Nathan Scottc8ad20f2005-06-21 15:38:48 +10001953 * Quota reservations for setattr(AT_UID|AT_GID|AT_PROJID).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 */
1955int
1956xfs_qm_vop_chown_reserve(
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001957 struct xfs_trans *tp,
1958 struct xfs_inode *ip,
1959 struct xfs_dquot *udqp,
1960 struct xfs_dquot *gdqp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001961 struct xfs_dquot *pdqp,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001962 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001964 struct xfs_mount *mp = ip->i_mount;
1965 uint delblks, blkflags, prjflags = 0;
1966 struct xfs_dquot *udq_unres = NULL;
1967 struct xfs_dquot *gdq_unres = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001968 struct xfs_dquot *pdq_unres = NULL;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001969 struct xfs_dquot *udq_delblks = NULL;
1970 struct xfs_dquot *gdq_delblks = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001971 struct xfs_dquot *pdq_delblks = NULL;
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001972 int error;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Christoph Hellwig579aa9ca2008-04-22 17:34:00 +10001975 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
1977
1978 delblks = ip->i_delayed_blks;
Nathan Scott06d10dd2005-06-21 15:48:47 +10001979 blkflags = XFS_IS_REALTIME_INODE(ip) ?
1980 XFS_QMOPT_RES_RTBLKS : XFS_QMOPT_RES_REGBLKS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982 if (XFS_IS_UQUOTA_ON(mp) && udqp &&
Christoph Hellwig1149d962005-11-02 15:01:12 +11001983 ip->i_d.di_uid != (uid_t)be32_to_cpu(udqp->q_core.d_id)) {
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001984 udq_delblks = udqp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 /*
1986 * If there are delayed allocation blocks, then we have to
1987 * unreserve those from the old dquot, and add them to the
1988 * new dquot.
1989 */
1990 if (delblks) {
1991 ASSERT(ip->i_udquot);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05001992 udq_unres = ip->i_udquot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 }
1994 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05001995 if (XFS_IS_GQUOTA_ON(ip->i_mount) && gdqp &&
1996 ip->i_d.di_gid != be32_to_cpu(gdqp->q_core.d_id)) {
1997 gdq_delblks = gdqp;
1998 if (delblks) {
1999 ASSERT(ip->i_gdquot);
2000 gdq_unres = ip->i_gdquot;
2001 }
2002 }
Nathan Scott9a2a7de2006-03-31 13:04:49 +10002003
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002004 if (XFS_IS_PQUOTA_ON(ip->i_mount) && pdqp &&
2005 xfs_get_projid(ip) != be32_to_cpu(pdqp->q_core.d_id)) {
2006 prjflags = XFS_QMOPT_ENOSPC;
2007 pdq_delblks = pdqp;
2008 if (delblks) {
2009 ASSERT(ip->i_pdquot);
2010 pdq_unres = ip->i_pdquot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 }
2012 }
2013
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002014 error = xfs_trans_reserve_quota_bydquots(tp, ip->i_mount,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002015 udq_delblks, gdq_delblks, pdq_delblks,
2016 ip->i_d.di_nblocks, 1,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002017 flags | blkflags | prjflags);
2018 if (error)
2019 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 /*
2022 * Do the delayed blks reservations/unreservations now. Since, these
2023 * are done without the help of a transaction, if a reservation fails
2024 * its previous reservations won't be automatically undone by trans
2025 * code. So, we have to do it manually here.
2026 */
2027 if (delblks) {
2028 /*
2029 * Do the reservations first. Unreservation can't fail.
2030 */
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002031 ASSERT(udq_delblks || gdq_delblks || pdq_delblks);
2032 ASSERT(udq_unres || gdq_unres || pdq_unres);
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002033 error = xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002034 udq_delblks, gdq_delblks, pdq_delblks,
2035 (xfs_qcnt_t)delblks, 0,
Chandra Seetharaman113a5682013-06-27 17:25:07 -05002036 flags | blkflags | prjflags);
2037 if (error)
2038 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 xfs_trans_reserve_quota_bydquots(NULL, ip->i_mount,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002040 udq_unres, gdq_unres, pdq_unres,
2041 -((xfs_qcnt_t)delblks), 0, blkflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 }
2043
2044 return (0);
2045}
2046
2047int
2048xfs_qm_vop_rename_dqattach(
Christoph Hellwig7d095252009-06-08 15:33:32 +02002049 struct xfs_inode **i_tab)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002051 struct xfs_mount *mp = i_tab[0]->i_mount;
2052 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Christoph Hellwig7d095252009-06-08 15:33:32 +02002054 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Jesper Juhl014c2542006-01-15 02:37:08 +01002055 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Christoph Hellwig7d095252009-06-08 15:33:32 +02002057 for (i = 0; (i < 4 && i_tab[i]); i++) {
2058 struct xfs_inode *ip = i_tab[i];
2059 int error;
2060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 /*
2062 * Watch out for duplicate entries in the table.
2063 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02002064 if (i == 0 || ip != i_tab[i-1]) {
2065 if (XFS_NOT_DQATTACHED(mp, ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 error = xfs_qm_dqattach(ip, 0);
2067 if (error)
Jesper Juhl014c2542006-01-15 02:37:08 +01002068 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 }
2070 }
2071 }
Jesper Juhl014c2542006-01-15 02:37:08 +01002072 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073}
2074
2075void
Christoph Hellwig7d095252009-06-08 15:33:32 +02002076xfs_qm_vop_create_dqattach(
2077 struct xfs_trans *tp,
2078 struct xfs_inode *ip,
2079 struct xfs_dquot *udqp,
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002080 struct xfs_dquot *gdqp,
2081 struct xfs_dquot *pdqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
Christoph Hellwig7d095252009-06-08 15:33:32 +02002083 struct xfs_mount *mp = tp->t_mountp;
2084
2085 if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 return;
2087
Christoph Hellwig579aa9ca2008-04-22 17:34:00 +10002088 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Christoph Hellwig7d095252009-06-08 15:33:32 +02002089 ASSERT(XFS_IS_QUOTA_RUNNING(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091 if (udqp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 ASSERT(ip->i_udquot == NULL);
Christoph Hellwig7d095252009-06-08 15:33:32 +02002093 ASSERT(XFS_IS_UQUOTA_ON(mp));
Christoph Hellwig1149d962005-11-02 15:01:12 +11002094 ASSERT(ip->i_d.di_uid == be32_to_cpu(udqp->q_core.d_id));
Christoph Hellwig78e55892011-12-06 21:58:22 +00002095
2096 ip->i_udquot = xfs_qm_dqhold(udqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 xfs_trans_mod_dquot(tp, udqp, XFS_TRANS_DQ_ICOUNT, 1);
2098 }
2099 if (gdqp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 ASSERT(ip->i_gdquot == NULL);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002101 ASSERT(XFS_IS_GQUOTA_ON(mp));
2102 ASSERT(ip->i_d.di_gid == be32_to_cpu(gdqp->q_core.d_id));
Christoph Hellwig78e55892011-12-06 21:58:22 +00002103 ip->i_gdquot = xfs_qm_dqhold(gdqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 xfs_trans_mod_dquot(tp, gdqp, XFS_TRANS_DQ_ICOUNT, 1);
2105 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -05002106 if (pdqp) {
2107 ASSERT(ip->i_pdquot == NULL);
2108 ASSERT(XFS_IS_PQUOTA_ON(mp));
2109 ASSERT(xfs_get_projid(ip) == be32_to_cpu(pdqp->q_core.d_id));
2110
2111 ip->i_pdquot = xfs_qm_dqhold(pdqp);
2112 xfs_trans_mod_dquot(tp, pdqp, XFS_TRANS_DQ_ICOUNT, 1);
2113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114}
2115