blob: 858a3b186110ab74760ebebf0d6b8c1326a9ee5a [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 */
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080018
19#include <linux/capability.h>
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs.h"
22#include "xfs_fs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_log.h"
25#include "xfs_trans.h"
26#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_quota.h"
30#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_inode.h"
Christoph Hellwig673e8e52011-12-18 20:00:04 +000033#include "xfs_inode_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_itable.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_rtalloc.h"
37#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_attr.h"
39#include "xfs_buf_item.h"
40#include "xfs_utils.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_qm.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000042#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044STATIC int xfs_qm_log_quotaoff(xfs_mount_t *, xfs_qoff_logitem_t **, uint);
45STATIC int xfs_qm_log_quotaoff_end(xfs_mount_t *, xfs_qoff_logitem_t *,
46 uint);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047STATIC uint xfs_qm_export_flags(uint);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048STATIC uint xfs_qm_export_qtype_flags(uint);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * Turn off quota accounting and/or enforcement for all udquots and/or
52 * gdquots. Called only at unmount time.
53 *
54 * This assumes that there are no dquots of this file system cached
55 * incore, and modifies the ondisk dquot directly. Therefore, for example,
56 * it is an error to call this twice, without purging the cache.
57 */
Christoph Hellwigfcafb712009-02-09 08:47:34 +010058int
Linus Torvalds1da177e2005-04-16 15:20:36 -070059xfs_qm_scall_quotaoff(
60 xfs_mount_t *mp,
Christoph Hellwigfcafb712009-02-09 08:47:34 +010061 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +100063 struct xfs_quotainfo *q = mp->m_quotainfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 uint dqtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 int error;
66 uint inactivate_flags;
67 xfs_qoff_logitem_t *qoffstart;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 /*
70 * No file system can have quotas enabled on disk but not in core.
71 * Note that quota utilities (like quotaoff) _expect_
72 * errno == EEXIST here.
73 */
74 if ((mp->m_qflags & flags) == 0)
75 return XFS_ERROR(EEXIST);
76 error = 0;
77
78 flags &= (XFS_ALL_QUOTA_ACCT | XFS_ALL_QUOTA_ENFD);
79
80 /*
81 * We don't want to deal with two quotaoffs messing up each other,
82 * so we're going to serialize it. quotaoff isn't exactly a performance
83 * critical thing.
84 * If quotaoff, then we must be dealing with the root filesystem.
85 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +100086 ASSERT(q);
87 mutex_lock(&q->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 /*
90 * If we're just turning off quota enforcement, change mp and go.
91 */
92 if ((flags & XFS_ALL_QUOTA_ACCT) == 0) {
93 mp->m_qflags &= ~(flags);
94
Eric Sandeen3685c2a2007-10-11 17:42:32 +100095 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 mp->m_sb.sb_qflags = mp->m_qflags;
Eric Sandeen3685c2a2007-10-11 17:42:32 +100097 spin_unlock(&mp->m_sb_lock);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +100098 mutex_unlock(&q->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 /* XXX what to do if error ? Revert back to old vals incore ? */
101 error = xfs_qm_write_sb_changes(mp, XFS_SB_QFLAGS);
102 return (error);
103 }
104
105 dqtype = 0;
106 inactivate_flags = 0;
107 /*
108 * If accounting is off, we must turn enforcement off, clear the
109 * quota 'CHKD' certificate to make it known that we have to
110 * do a quotacheck the next time this quota is turned on.
111 */
112 if (flags & XFS_UQUOTA_ACCT) {
113 dqtype |= XFS_QMOPT_UQUOTA;
114 flags |= (XFS_UQUOTA_CHKD | XFS_UQUOTA_ENFD);
115 inactivate_flags |= XFS_UQUOTA_ACTIVE;
116 }
117 if (flags & XFS_GQUOTA_ACCT) {
118 dqtype |= XFS_QMOPT_GQUOTA;
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000119 flags |= (XFS_OQUOTA_CHKD | XFS_OQUOTA_ENFD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 inactivate_flags |= XFS_GQUOTA_ACTIVE;
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000121 } else if (flags & XFS_PQUOTA_ACCT) {
122 dqtype |= XFS_QMOPT_PQUOTA;
123 flags |= (XFS_OQUOTA_CHKD | XFS_OQUOTA_ENFD);
124 inactivate_flags |= XFS_PQUOTA_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126
127 /*
128 * Nothing to do? Don't complain. This happens when we're just
129 * turning off quota enforcement.
130 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000131 if ((mp->m_qflags & flags) == 0)
132 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 /*
135 * Write the LI_QUOTAOFF log record, and do SB changes atomically,
David Chinnercb6edc22008-04-10 12:20:45 +1000136 * and synchronously. If we fail to write, we should abort the
137 * operation as it cannot be recovered safely if we crash.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 */
David Chinnercb6edc22008-04-10 12:20:45 +1000139 error = xfs_qm_log_quotaoff(mp, &qoffstart, flags);
140 if (error)
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000141 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143 /*
144 * Next we clear the XFS_MOUNT_*DQ_ACTIVE bit(s) in the mount struct
145 * to take care of the race between dqget and quotaoff. We don't take
146 * any special locks to reset these bits. All processes need to check
147 * these bits *after* taking inode lock(s) to see if the particular
148 * quota type is in the process of being turned off. If *ACTIVE, it is
149 * guaranteed that all dquot structures and all quotainode ptrs will all
150 * stay valid as long as that inode is kept locked.
151 *
152 * There is no turning back after this.
153 */
154 mp->m_qflags &= ~inactivate_flags;
155
156 /*
157 * Give back all the dquot reference(s) held by inodes.
158 * Here we go thru every single incore inode in this file system, and
159 * do a dqrele on the i_udquot/i_gdquot that it may have.
160 * Essentially, as long as somebody has an inode locked, this guarantees
161 * that quotas will not be turned off. This is handy because in a
162 * transaction once we lock the inode(s) and check for quotaon, we can
163 * depend on the quota inodes (and other things) being valid as long as
164 * we keep the lock(s).
165 */
166 xfs_qm_dqrele_all_inodes(mp, flags);
167
168 /*
169 * Next we make the changes in the quota flag in the mount struct.
170 * This isn't protected by a particular lock directly, because we
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300171 * don't want to take a mrlock every time we depend on quotas being on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500173 mp->m_qflags &= ~flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 /*
176 * Go through all the dquots of this file system and purge them,
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500177 * according to what was turned off.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 */
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500179 xfs_qm_dqpurge_all(mp, dqtype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 /*
182 * Transactions that had started before ACTIVE state bit was cleared
183 * could have logged many dquots, so they'd have higher LSNs than
184 * the first QUOTAOFF log record does. If we happen to crash when
185 * the tail of the log has gone past the QUOTAOFF record, but
186 * before the last dquot modification, those dquots __will__
187 * recover, and that's not good.
188 *
189 * So, we have QUOTAOFF start and end logitems; the start
190 * logitem won't get overwritten until the end logitem appears...
191 */
David Chinnercb6edc22008-04-10 12:20:45 +1000192 error = xfs_qm_log_quotaoff_end(mp, qoffstart, flags);
193 if (error) {
194 /* We're screwed now. Shutdown is the only option. */
195 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000196 goto out_unlock;
David Chinnercb6edc22008-04-10 12:20:45 +1000197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 /*
200 * If quotas is completely disabled, close shop.
201 */
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000202 if (((flags & XFS_MOUNT_QUOTA_ALL) == XFS_MOUNT_QUOTA_SET1) ||
203 ((flags & XFS_MOUNT_QUOTA_ALL) == XFS_MOUNT_QUOTA_SET2)) {
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000204 mutex_unlock(&q->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 xfs_qm_destroy_quotainfo(mp);
206 return (0);
207 }
208
209 /*
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000210 * Release our quotainode references if we don't need them anymore.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000212 if ((dqtype & XFS_QMOPT_UQUOTA) && q->qi_uquotaip) {
213 IRELE(q->qi_uquotaip);
214 q->qi_uquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000216 if ((dqtype & (XFS_QMOPT_GQUOTA|XFS_QMOPT_PQUOTA)) && q->qi_gquotaip) {
217 IRELE(q->qi_gquotaip);
218 q->qi_gquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000221out_unlock:
222 mutex_unlock(&q->qi_quotaofflock);
223 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Christoph Hellwig5d188982010-07-20 17:51:31 +1000226STATIC int
227xfs_qm_scall_trunc_qfile(
228 struct xfs_mount *mp,
229 xfs_ino_t ino)
230{
231 struct xfs_inode *ip;
232 struct xfs_trans *tp;
233 int error;
234
235 if (ino == NULLFSINO)
236 return 0;
237
238 error = xfs_iget(mp, NULL, ino, 0, 0, &ip);
239 if (error)
240 return error;
241
242 xfs_ilock(ip, XFS_IOLOCK_EXCL);
243
244 tp = xfs_trans_alloc(mp, XFS_TRANS_TRUNCATE_FILE);
245 error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
246 XFS_TRANS_PERM_LOG_RES,
247 XFS_ITRUNCATE_LOG_COUNT);
248 if (error) {
249 xfs_trans_cancel(tp, 0);
250 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
251 goto out_put;
252 }
253
254 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +0000255 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwig5d188982010-07-20 17:51:31 +1000256
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000257 ip->i_d.di_size = 0;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000258 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
259
260 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0);
Christoph Hellwig5d188982010-07-20 17:51:31 +1000261 if (error) {
262 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES |
263 XFS_TRANS_ABORT);
264 goto out_unlock;
265 }
266
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000267 ASSERT(ip->i_d.di_nextents == 0);
268
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000269 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Christoph Hellwig5d188982010-07-20 17:51:31 +1000270 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
271
272out_unlock:
273 xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
274out_put:
275 IRELE(ip);
276 return error;
277}
278
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100279int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280xfs_qm_scall_trunc_qfiles(
281 xfs_mount_t *mp,
282 uint flags)
283{
David Chinner88ab0202008-04-10 12:20:51 +1000284 int error = 0, error2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Eric Sandeen62118702008-03-06 13:44:28 +1100286 if (!xfs_sb_version_hasquota(&mp->m_sb) || flags == 0) {
Dave Chinner82211122011-03-07 10:07:35 +1100287 xfs_debug(mp, "%s: flags=%x m_qflags=%x\n",
288 __func__, flags, mp->m_qflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return XFS_ERROR(EINVAL);
290 }
291
Christoph Hellwig5d188982010-07-20 17:51:31 +1000292 if (flags & XFS_DQ_USER)
293 error = xfs_qm_scall_trunc_qfile(mp, mp->m_sb.sb_uquotino);
294 if (flags & (XFS_DQ_GROUP|XFS_DQ_PROJ))
295 error2 = xfs_qm_scall_trunc_qfile(mp, mp->m_sb.sb_gquotino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
David Chinner88ab0202008-04-10 12:20:51 +1000297 return error ? error : error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/*
301 * Switch on (a given) quota enforcement for a filesystem. This takes
302 * effect immediately.
303 * (Switching on quota accounting must be done at mount time.)
304 */
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100305int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306xfs_qm_scall_quotaon(
307 xfs_mount_t *mp,
308 uint flags)
309{
310 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 uint qf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 __int64_t sbflags;
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 flags &= (XFS_ALL_QUOTA_ACCT | XFS_ALL_QUOTA_ENFD);
315 /*
316 * Switching on quota accounting must be done at mount time.
317 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 flags &= ~(XFS_ALL_QUOTA_ACCT);
319
320 sbflags = 0;
321
322 if (flags == 0) {
Dave Chinner82211122011-03-07 10:07:35 +1100323 xfs_debug(mp, "%s: zero flags, m_qflags=%x\n",
324 __func__, mp->m_qflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return XFS_ERROR(EINVAL);
326 }
327
328 /* No fs can turn on quotas with a delayed effect */
329 ASSERT((flags & XFS_ALL_QUOTA_ACCT) == 0);
330
331 /*
332 * Can't enforce without accounting. We check the superblock
333 * qflags here instead of m_qflags because rootfs can have
334 * quota acct on ondisk without m_qflags' knowing.
335 */
336 if (((flags & XFS_UQUOTA_ACCT) == 0 &&
337 (mp->m_sb.sb_qflags & XFS_UQUOTA_ACCT) == 0 &&
338 (flags & XFS_UQUOTA_ENFD))
339 ||
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000340 ((flags & XFS_PQUOTA_ACCT) == 0 &&
341 (mp->m_sb.sb_qflags & XFS_PQUOTA_ACCT) == 0 &&
Donald Douwsma424ea91b2007-05-08 13:49:15 +1000342 (flags & XFS_GQUOTA_ACCT) == 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 (mp->m_sb.sb_qflags & XFS_GQUOTA_ACCT) == 0 &&
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000344 (flags & XFS_OQUOTA_ENFD))) {
Dave Chinner82211122011-03-07 10:07:35 +1100345 xfs_debug(mp,
346 "%s: Can't enforce without acct, flags=%x sbflags=%x\n",
347 __func__, flags, mp->m_sb.sb_qflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return XFS_ERROR(EINVAL);
349 }
350 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300351 * If everything's up to-date incore, then don't waste time.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 */
353 if ((mp->m_qflags & flags) == flags)
354 return XFS_ERROR(EEXIST);
355
356 /*
357 * Change sb_qflags on disk but not incore mp->qflags
358 * if this is the root filesystem.
359 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000360 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 qf = mp->m_sb.sb_qflags;
362 mp->m_sb.sb_qflags = qf | flags;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000363 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /*
366 * There's nothing to change if it's the same.
367 */
368 if ((qf & flags) == flags && sbflags == 0)
369 return XFS_ERROR(EEXIST);
370 sbflags |= XFS_SB_QFLAGS;
371
372 if ((error = xfs_qm_write_sb_changes(mp, sbflags)))
373 return (error);
374 /*
375 * If we aren't trying to switch on quota enforcement, we are done.
376 */
377 if (((mp->m_sb.sb_qflags & XFS_UQUOTA_ACCT) !=
378 (mp->m_qflags & XFS_UQUOTA_ACCT)) ||
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000379 ((mp->m_sb.sb_qflags & XFS_PQUOTA_ACCT) !=
380 (mp->m_qflags & XFS_PQUOTA_ACCT)) ||
381 ((mp->m_sb.sb_qflags & XFS_GQUOTA_ACCT) !=
382 (mp->m_qflags & XFS_GQUOTA_ACCT)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 (flags & XFS_ALL_QUOTA_ENFD) == 0)
384 return (0);
385
386 if (! XFS_IS_QUOTA_RUNNING(mp))
387 return XFS_ERROR(ESRCH);
388
389 /*
390 * Switch on quota enforcement in core.
391 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000392 mutex_lock(&mp->m_quotainfo->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 mp->m_qflags |= (flags & XFS_ALL_QUOTA_ENFD);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000394 mutex_unlock(&mp->m_quotainfo->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 return (0);
397}
398
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400/*
401 * Return quota status information, such as uquota-off, enforcements, etc.
402 */
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100403int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404xfs_qm_scall_getqstat(
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000405 struct xfs_mount *mp,
406 struct fs_quota_stat *out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000408 struct xfs_quotainfo *q = mp->m_quotainfo;
409 struct xfs_inode *uip, *gip;
410 boolean_t tempuqip, tempgqip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 uip = gip = NULL;
413 tempuqip = tempgqip = B_FALSE;
414 memset(out, 0, sizeof(fs_quota_stat_t));
415
416 out->qs_version = FS_QSTAT_VERSION;
Eric Sandeen62118702008-03-06 13:44:28 +1100417 if (!xfs_sb_version_hasquota(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 out->qs_uquota.qfs_ino = NULLFSINO;
419 out->qs_gquota.qfs_ino = NULLFSINO;
420 return (0);
421 }
422 out->qs_flags = (__uint16_t) xfs_qm_export_flags(mp->m_qflags &
423 (XFS_ALL_QUOTA_ACCT|
424 XFS_ALL_QUOTA_ENFD));
425 out->qs_pad = 0;
426 out->qs_uquota.qfs_ino = mp->m_sb.sb_uquotino;
427 out->qs_gquota.qfs_ino = mp->m_sb.sb_gquotino;
428
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000429 if (q) {
430 uip = q->qi_uquotaip;
431 gip = q->qi_gquotaip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433 if (!uip && mp->m_sb.sb_uquotino != NULLFSINO) {
434 if (xfs_iget(mp, NULL, mp->m_sb.sb_uquotino,
Dave Chinner7b6259e2010-06-24 11:35:17 +1000435 0, 0, &uip) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 tempuqip = B_TRUE;
437 }
438 if (!gip && mp->m_sb.sb_gquotino != NULLFSINO) {
439 if (xfs_iget(mp, NULL, mp->m_sb.sb_gquotino,
Dave Chinner7b6259e2010-06-24 11:35:17 +1000440 0, 0, &gip) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 tempgqip = B_TRUE;
442 }
443 if (uip) {
444 out->qs_uquota.qfs_nblks = uip->i_d.di_nblocks;
445 out->qs_uquota.qfs_nextents = uip->i_d.di_nextents;
446 if (tempuqip)
Christoph Hellwig43355092008-03-27 18:01:08 +1100447 IRELE(uip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449 if (gip) {
450 out->qs_gquota.qfs_nblks = gip->i_d.di_nblocks;
451 out->qs_gquota.qfs_nextents = gip->i_d.di_nextents;
452 if (tempgqip)
Christoph Hellwig43355092008-03-27 18:01:08 +1100453 IRELE(gip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000455 if (q) {
456 out->qs_incoredqs = q->qi_dquots;
457 out->qs_btimelimit = q->qi_btimelimit;
458 out->qs_itimelimit = q->qi_itimelimit;
459 out->qs_rtbtimelimit = q->qi_rtbtimelimit;
460 out->qs_bwarnlimit = q->qi_bwarnlimit;
461 out->qs_iwarnlimit = q->qi_iwarnlimit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000463 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Christoph Hellwigc472b432010-05-06 17:05:17 -0400466#define XFS_DQ_MASK \
467 (FS_DQ_LIMIT_MASK | FS_DQ_TIMER_MASK | FS_DQ_WARNS_MASK)
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469/*
470 * Adjust quota limits, and start/stop timers accordingly.
471 */
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100472int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473xfs_qm_scall_setqlim(
474 xfs_mount_t *mp,
475 xfs_dqid_t id,
476 uint type,
477 fs_disk_quota_t *newlim)
478{
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000479 struct xfs_quotainfo *q = mp->m_quotainfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 xfs_disk_dquot_t *ddq;
481 xfs_dquot_t *dqp;
482 xfs_trans_t *tp;
483 int error;
484 xfs_qcnt_t hard, soft;
485
Christoph Hellwigc472b432010-05-06 17:05:17 -0400486 if (newlim->d_fieldmask & ~XFS_DQ_MASK)
487 return EINVAL;
488 if ((newlim->d_fieldmask & XFS_DQ_MASK) == 0)
489 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SETQLIM);
492 if ((error = xfs_trans_reserve(tp, 0, sizeof(xfs_disk_dquot_t) + 128,
493 0, 0, XFS_DEFAULT_LOG_COUNT))) {
494 xfs_trans_cancel(tp, 0);
495 return (error);
496 }
497
498 /*
499 * We don't want to race with a quotaoff so take the quotaoff lock.
500 * (We don't hold an inode lock, so there's nothing else to stop
501 * a quotaoff from happening). (XXXThis doesn't currently happen
502 * because we take the vfslock before calling xfs_qm_sysent).
503 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000504 mutex_lock(&q->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 /*
507 * Get the dquot (locked), and join it to the transaction.
508 * Allocate the dquot if this doesn't exist.
509 */
510 if ((error = xfs_qm_dqget(mp, NULL, id, type, XFS_QMOPT_DQALLOC, &dqp))) {
511 xfs_trans_cancel(tp, XFS_TRANS_ABORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 ASSERT(error != ENOENT);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000513 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 xfs_trans_dqjoin(tp, dqp);
516 ddq = &dqp->q_core;
517
518 /*
519 * Make sure that hardlimits are >= soft limits before changing.
520 */
521 hard = (newlim->d_fieldmask & FS_DQ_BHARD) ?
522 (xfs_qcnt_t) XFS_BB_TO_FSB(mp, newlim->d_blk_hardlimit) :
Christoph Hellwig1149d962005-11-02 15:01:12 +1100523 be64_to_cpu(ddq->d_blk_hardlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 soft = (newlim->d_fieldmask & FS_DQ_BSOFT) ?
525 (xfs_qcnt_t) XFS_BB_TO_FSB(mp, newlim->d_blk_softlimit) :
Christoph Hellwig1149d962005-11-02 15:01:12 +1100526 be64_to_cpu(ddq->d_blk_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (hard == 0 || hard >= soft) {
Christoph Hellwig1149d962005-11-02 15:01:12 +1100528 ddq->d_blk_hardlimit = cpu_to_be64(hard);
529 ddq->d_blk_softlimit = cpu_to_be64(soft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (id == 0) {
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000531 q->qi_bhardlimit = hard;
532 q->qi_bsoftlimit = soft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534 } else {
Dave Chinner82211122011-03-07 10:07:35 +1100535 xfs_debug(mp, "blkhard %Ld < blksoft %Ld\n", hard, soft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
537 hard = (newlim->d_fieldmask & FS_DQ_RTBHARD) ?
538 (xfs_qcnt_t) XFS_BB_TO_FSB(mp, newlim->d_rtb_hardlimit) :
Christoph Hellwig1149d962005-11-02 15:01:12 +1100539 be64_to_cpu(ddq->d_rtb_hardlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 soft = (newlim->d_fieldmask & FS_DQ_RTBSOFT) ?
541 (xfs_qcnt_t) XFS_BB_TO_FSB(mp, newlim->d_rtb_softlimit) :
Christoph Hellwig1149d962005-11-02 15:01:12 +1100542 be64_to_cpu(ddq->d_rtb_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (hard == 0 || hard >= soft) {
Christoph Hellwig1149d962005-11-02 15:01:12 +1100544 ddq->d_rtb_hardlimit = cpu_to_be64(hard);
545 ddq->d_rtb_softlimit = cpu_to_be64(soft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (id == 0) {
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000547 q->qi_rtbhardlimit = hard;
548 q->qi_rtbsoftlimit = soft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550 } else {
Dave Chinner82211122011-03-07 10:07:35 +1100551 xfs_debug(mp, "rtbhard %Ld < rtbsoft %Ld\n", hard, soft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553
554 hard = (newlim->d_fieldmask & FS_DQ_IHARD) ?
555 (xfs_qcnt_t) newlim->d_ino_hardlimit :
Christoph Hellwig1149d962005-11-02 15:01:12 +1100556 be64_to_cpu(ddq->d_ino_hardlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 soft = (newlim->d_fieldmask & FS_DQ_ISOFT) ?
558 (xfs_qcnt_t) newlim->d_ino_softlimit :
Christoph Hellwig1149d962005-11-02 15:01:12 +1100559 be64_to_cpu(ddq->d_ino_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (hard == 0 || hard >= soft) {
Christoph Hellwig1149d962005-11-02 15:01:12 +1100561 ddq->d_ino_hardlimit = cpu_to_be64(hard);
562 ddq->d_ino_softlimit = cpu_to_be64(soft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (id == 0) {
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000564 q->qi_ihardlimit = hard;
565 q->qi_isoftlimit = soft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
567 } else {
Dave Chinner82211122011-03-07 10:07:35 +1100568 xfs_debug(mp, "ihard %Ld < isoft %Ld\n", hard, soft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570
Nathan Scott754002b2005-06-21 15:49:06 +1000571 /*
572 * Update warnings counter(s) if requested
573 */
574 if (newlim->d_fieldmask & FS_DQ_BWARNS)
Christoph Hellwig1149d962005-11-02 15:01:12 +1100575 ddq->d_bwarns = cpu_to_be16(newlim->d_bwarns);
Nathan Scott754002b2005-06-21 15:49:06 +1000576 if (newlim->d_fieldmask & FS_DQ_IWARNS)
Christoph Hellwig1149d962005-11-02 15:01:12 +1100577 ddq->d_iwarns = cpu_to_be16(newlim->d_iwarns);
Nathan Scott754002b2005-06-21 15:49:06 +1000578 if (newlim->d_fieldmask & FS_DQ_RTBWARNS)
Christoph Hellwig1149d962005-11-02 15:01:12 +1100579 ddq->d_rtbwarns = cpu_to_be16(newlim->d_rtbwarns);
Nathan Scott754002b2005-06-21 15:49:06 +1000580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 if (id == 0) {
582 /*
583 * Timelimits for the super user set the relative time
584 * the other users can be over quota for this file system.
585 * If it is zero a default is used. Ditto for the default
Nathan Scott754002b2005-06-21 15:49:06 +1000586 * soft and hard limit values (already done, above), and
587 * for warnings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 */
589 if (newlim->d_fieldmask & FS_DQ_BTIMER) {
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000590 q->qi_btimelimit = newlim->d_btimer;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100591 ddq->d_btimer = cpu_to_be32(newlim->d_btimer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
593 if (newlim->d_fieldmask & FS_DQ_ITIMER) {
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000594 q->qi_itimelimit = newlim->d_itimer;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100595 ddq->d_itimer = cpu_to_be32(newlim->d_itimer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597 if (newlim->d_fieldmask & FS_DQ_RTBTIMER) {
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000598 q->qi_rtbtimelimit = newlim->d_rtbtimer;
Christoph Hellwig1149d962005-11-02 15:01:12 +1100599 ddq->d_rtbtimer = cpu_to_be32(newlim->d_rtbtimer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Nathan Scott754002b2005-06-21 15:49:06 +1000601 if (newlim->d_fieldmask & FS_DQ_BWARNS)
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000602 q->qi_bwarnlimit = newlim->d_bwarns;
Nathan Scott754002b2005-06-21 15:49:06 +1000603 if (newlim->d_fieldmask & FS_DQ_IWARNS)
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000604 q->qi_iwarnlimit = newlim->d_iwarns;
Nathan Scott754002b2005-06-21 15:49:06 +1000605 if (newlim->d_fieldmask & FS_DQ_RTBWARNS)
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000606 q->qi_rtbwarnlimit = newlim->d_rtbwarns;
Nathan Scott754002b2005-06-21 15:49:06 +1000607 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 /*
609 * If the user is now over quota, start the timelimit.
610 * The user will not be 'warned'.
611 * Note that we keep the timers ticking, whether enforcement
612 * is on or off. We don't really want to bother with iterating
613 * over all ondisk dquots and turning the timers on/off.
614 */
615 xfs_qm_adjust_dqtimers(mp, ddq);
616 }
617 dqp->dq_flags |= XFS_DQ_DIRTY;
618 xfs_trans_log_dquot(tp, dqp);
619
David Chinnere5720ee2008-04-10 12:21:18 +1000620 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 xfs_qm_dqrele(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000623 out_unlock:
624 mutex_unlock(&q->qi_quotaofflock);
David Chinnere5720ee2008-04-10 12:21:18 +1000625 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628STATIC int
629xfs_qm_log_quotaoff_end(
630 xfs_mount_t *mp,
631 xfs_qoff_logitem_t *startqoff,
632 uint flags)
633{
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000634 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 int error;
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000636 xfs_qoff_logitem_t *qoffi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QUOTAOFF_END);
639
640 if ((error = xfs_trans_reserve(tp, 0, sizeof(xfs_qoff_logitem_t) * 2,
641 0, 0, XFS_DEFAULT_LOG_COUNT))) {
642 xfs_trans_cancel(tp, 0);
643 return (error);
644 }
645
646 qoffi = xfs_trans_get_qoff_item(tp, startqoff,
647 flags & XFS_ALL_QUOTA_ACCT);
648 xfs_trans_log_quotaoff_item(tp, qoffi);
649
650 /*
651 * We have to make sure that the transaction is secure on disk before we
652 * return and actually stop quota accounting. So, make it synchronous.
653 * We don't care about quotoff's performance.
654 */
655 xfs_trans_set_sync(tp);
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000656 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return (error);
658}
659
660
661STATIC int
662xfs_qm_log_quotaoff(
663 xfs_mount_t *mp,
664 xfs_qoff_logitem_t **qoffstartp,
665 uint flags)
666{
667 xfs_trans_t *tp;
668 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 xfs_qoff_logitem_t *qoffi=NULL;
670 uint oldsbqflag=0;
671
672 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QUOTAOFF);
673 if ((error = xfs_trans_reserve(tp, 0,
674 sizeof(xfs_qoff_logitem_t) * 2 +
675 mp->m_sb.sb_sectsize + 128,
676 0,
677 0,
678 XFS_DEFAULT_LOG_COUNT))) {
679 goto error0;
680 }
681
682 qoffi = xfs_trans_get_qoff_item(tp, NULL, flags & XFS_ALL_QUOTA_ACCT);
683 xfs_trans_log_quotaoff_item(tp, qoffi);
684
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000685 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 oldsbqflag = mp->m_sb.sb_qflags;
687 mp->m_sb.sb_qflags = (mp->m_qflags & ~(flags)) & XFS_MOUNT_QUOTA_ALL;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000688 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 xfs_mod_sb(tp, XFS_SB_QFLAGS);
691
692 /*
693 * We have to make sure that the transaction is secure on disk before we
694 * return and actually stop quota accounting. So, make it synchronous.
695 * We don't care about quotoff's performance.
696 */
697 xfs_trans_set_sync(tp);
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000698 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700error0:
701 if (error) {
702 xfs_trans_cancel(tp, 0);
703 /*
704 * No one else is modifying sb_qflags, so this is OK.
705 * We still hold the quotaofflock.
706 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000707 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 mp->m_sb.sb_qflags = oldsbqflag;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000709 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711 *qoffstartp = qoffi;
712 return (error);
713}
714
715
Christoph Hellwig18535a72012-02-20 02:28:16 +0000716int
717xfs_qm_scall_getquota(
718 struct xfs_mount *mp,
719 xfs_dqid_t id,
720 uint type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 struct fs_disk_quota *dst)
722{
Christoph Hellwig18535a72012-02-20 02:28:16 +0000723 struct xfs_dquot *dqp;
724 int error;
725
726 /*
727 * Try to get the dquot. We don't want it allocated on disk, so
728 * we aren't passing the XFS_QMOPT_DOALLOC flag. If it doesn't
729 * exist, we'll get ENOENT back.
730 */
731 error = xfs_qm_dqget(mp, NULL, id, type, 0, &dqp);
732 if (error)
733 return error;
734
735 /*
736 * If everything's NULL, this dquot doesn't quite exist as far as
737 * our utility programs are concerned.
738 */
739 if (XFS_IS_DQUOT_UNINITIALIZED(dqp)) {
740 error = XFS_ERROR(ENOENT);
741 goto out_put;
742 }
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 memset(dst, 0, sizeof(*dst));
Christoph Hellwig18535a72012-02-20 02:28:16 +0000745 dst->d_version = FS_DQUOT_VERSION;
746 dst->d_flags = xfs_qm_export_qtype_flags(dqp->q_core.d_flags);
747 dst->d_id = be32_to_cpu(dqp->q_core.d_id);
Christoph Hellwig1149d962005-11-02 15:01:12 +1100748 dst->d_blk_hardlimit =
Christoph Hellwig18535a72012-02-20 02:28:16 +0000749 XFS_FSB_TO_BB(mp, be64_to_cpu(dqp->q_core.d_blk_hardlimit));
Christoph Hellwig1149d962005-11-02 15:01:12 +1100750 dst->d_blk_softlimit =
Christoph Hellwig18535a72012-02-20 02:28:16 +0000751 XFS_FSB_TO_BB(mp, be64_to_cpu(dqp->q_core.d_blk_softlimit));
752 dst->d_ino_hardlimit = be64_to_cpu(dqp->q_core.d_ino_hardlimit);
753 dst->d_ino_softlimit = be64_to_cpu(dqp->q_core.d_ino_softlimit);
Christoph Hellwig89605012012-02-20 02:28:17 +0000754 dst->d_bcount = XFS_FSB_TO_BB(mp, dqp->q_res_bcount);
755 dst->d_icount = dqp->q_res_icount;
Christoph Hellwig18535a72012-02-20 02:28:16 +0000756 dst->d_btimer = be32_to_cpu(dqp->q_core.d_btimer);
757 dst->d_itimer = be32_to_cpu(dqp->q_core.d_itimer);
758 dst->d_iwarns = be16_to_cpu(dqp->q_core.d_iwarns);
759 dst->d_bwarns = be16_to_cpu(dqp->q_core.d_bwarns);
Christoph Hellwig1149d962005-11-02 15:01:12 +1100760 dst->d_rtb_hardlimit =
Christoph Hellwig18535a72012-02-20 02:28:16 +0000761 XFS_FSB_TO_BB(mp, be64_to_cpu(dqp->q_core.d_rtb_hardlimit));
Christoph Hellwig1149d962005-11-02 15:01:12 +1100762 dst->d_rtb_softlimit =
Christoph Hellwig18535a72012-02-20 02:28:16 +0000763 XFS_FSB_TO_BB(mp, be64_to_cpu(dqp->q_core.d_rtb_softlimit));
Christoph Hellwig89605012012-02-20 02:28:17 +0000764 dst->d_rtbcount = XFS_FSB_TO_BB(mp, dqp->q_res_rtbcount);
Christoph Hellwig18535a72012-02-20 02:28:16 +0000765 dst->d_rtbtimer = be32_to_cpu(dqp->q_core.d_rtbtimer);
766 dst->d_rtbwarns = be16_to_cpu(dqp->q_core.d_rtbwarns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 /*
769 * Internally, we don't reset all the timers when quota enforcement
Nathan Scottc41564b2006-03-29 08:55:14 +1000770 * gets turned off. No need to confuse the user level code,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 * so return zeroes in that case.
772 */
Christoph Hellwig18535a72012-02-20 02:28:16 +0000773 if ((!XFS_IS_UQUOTA_ENFORCED(mp) && dqp->q_core.d_flags == XFS_DQ_USER) ||
Kouta Ooizumie6d29422007-05-08 13:49:33 +1000774 (!XFS_IS_OQUOTA_ENFORCED(mp) &&
Christoph Hellwig18535a72012-02-20 02:28:16 +0000775 (dqp->q_core.d_flags & (XFS_DQ_PROJ | XFS_DQ_GROUP)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 dst->d_btimer = 0;
777 dst->d_itimer = 0;
778 dst->d_rtbtimer = 0;
779 }
780
781#ifdef DEBUG
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200782 if (((XFS_IS_UQUOTA_ENFORCED(mp) && dst->d_flags == FS_USER_QUOTA) ||
Kouta Ooizumie6d29422007-05-08 13:49:33 +1000783 (XFS_IS_OQUOTA_ENFORCED(mp) &&
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200784 (dst->d_flags & (FS_PROJ_QUOTA | FS_GROUP_QUOTA)))) &&
Kouta Ooizumie6d29422007-05-08 13:49:33 +1000785 dst->d_id != 0) {
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000786 if (((int) dst->d_bcount > (int) dst->d_blk_softlimit) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 (dst->d_blk_softlimit > 0)) {
788 ASSERT(dst->d_btimer != 0);
789 }
Mitsuo Hayasakad0a3fe62012-02-06 12:50:07 +0000790 if (((int) dst->d_icount > (int) dst->d_ino_softlimit) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 (dst->d_ino_softlimit > 0)) {
792 ASSERT(dst->d_itimer != 0);
793 }
794 }
795#endif
Christoph Hellwig18535a72012-02-20 02:28:16 +0000796out_put:
797 xfs_qm_dqput(dqp);
798 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
801STATIC uint
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802xfs_qm_export_qtype_flags(
803 uint flags)
804{
805 /*
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000806 * Can't be more than one, or none.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 */
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200808 ASSERT((flags & (FS_PROJ_QUOTA | FS_USER_QUOTA)) !=
809 (FS_PROJ_QUOTA | FS_USER_QUOTA));
810 ASSERT((flags & (FS_PROJ_QUOTA | FS_GROUP_QUOTA)) !=
811 (FS_PROJ_QUOTA | FS_GROUP_QUOTA));
812 ASSERT((flags & (FS_USER_QUOTA | FS_GROUP_QUOTA)) !=
813 (FS_USER_QUOTA | FS_GROUP_QUOTA));
814 ASSERT((flags & (FS_PROJ_QUOTA|FS_USER_QUOTA|FS_GROUP_QUOTA)) != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 return (flags & XFS_DQ_USER) ?
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200817 FS_USER_QUOTA : (flags & XFS_DQ_PROJ) ?
818 FS_PROJ_QUOTA : FS_GROUP_QUOTA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
821STATIC uint
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822xfs_qm_export_flags(
823 uint flags)
824{
825 uint uflags;
826
827 uflags = 0;
828 if (flags & XFS_UQUOTA_ACCT)
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200829 uflags |= FS_QUOTA_UDQ_ACCT;
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000830 if (flags & XFS_PQUOTA_ACCT)
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200831 uflags |= FS_QUOTA_PDQ_ACCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (flags & XFS_GQUOTA_ACCT)
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200833 uflags |= FS_QUOTA_GDQ_ACCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (flags & XFS_UQUOTA_ENFD)
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200835 uflags |= FS_QUOTA_UDQ_ENFD;
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000836 if (flags & (XFS_OQUOTA_ENFD)) {
837 uflags |= (flags & XFS_GQUOTA_ACCT) ?
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200838 FS_QUOTA_GDQ_ENFD : FS_QUOTA_PDQ_ENFD;
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return (uflags);
841}
842
843
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200844STATIC int
845xfs_dqrele_inode(
846 struct xfs_inode *ip,
847 struct xfs_perag *pag,
848 int flags)
David Chinner5b4d89a2008-10-30 17:08:03 +1100849{
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200850 /* skip quota inodes */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000851 if (ip == ip->i_mount->m_quotainfo->qi_uquotaip ||
852 ip == ip->i_mount->m_quotainfo->qi_gquotaip) {
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200853 ASSERT(ip->i_udquot == NULL);
854 ASSERT(ip->i_gdquot == NULL);
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200855 return 0;
856 }
Dave Chinnercb4f0d12008-11-10 17:11:18 +1100857
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200858 xfs_ilock(ip, XFS_ILOCK_EXCL);
859 if ((flags & XFS_UQUOTA_ACCT) && ip->i_udquot) {
860 xfs_qm_dqrele(ip->i_udquot);
861 ip->i_udquot = NULL;
862 }
863 if (flags & (XFS_PQUOTA_ACCT|XFS_GQUOTA_ACCT) && ip->i_gdquot) {
864 xfs_qm_dqrele(ip->i_gdquot);
865 ip->i_gdquot = NULL;
866 }
Christoph Hellwigf2d67612010-06-24 11:52:50 +1000867 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200868 return 0;
David Chinner5b4d89a2008-10-30 17:08:03 +1100869}
870
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200871
David Chinner5b4d89a2008-10-30 17:08:03 +1100872/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 * Go thru all the inodes in the file system, releasing their dquots.
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200874 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 * Note that the mount structure gets modified to indicate that quotas are off
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200876 * AFTER this, in the case of quotaoff.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 */
878void
879xfs_qm_dqrele_all_inodes(
880 struct xfs_mount *mp,
881 uint flags)
882{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 ASSERT(mp->m_quotainfo);
Dave Chinner65d0f202010-09-24 18:40:15 +1000884 xfs_inode_ag_iterator(mp, xfs_dqrele_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}