blob: 9b965db458000f684379f6a7e19c26387556e826 [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"
Dave Chinner70a9883c2013-10-23 10:36:05 +110023#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110024#include "xfs_format.h"
25#include "xfs_log_format.h"
26#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110031#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_error.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110033#include "xfs_quota.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_qm.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000035#include "xfs_trace.h"
Dave Chinner6d8b79c2012-10-08 21:56:09 +110036#include "xfs_icache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038STATIC int xfs_qm_log_quotaoff(xfs_mount_t *, xfs_qoff_logitem_t **, uint);
39STATIC int xfs_qm_log_quotaoff_end(xfs_mount_t *, xfs_qoff_logitem_t *,
40 uint);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041STATIC uint xfs_qm_export_flags(uint);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * Turn off quota accounting and/or enforcement for all udquots and/or
45 * gdquots. Called only at unmount time.
46 *
47 * This assumes that there are no dquots of this file system cached
48 * incore, and modifies the ondisk dquot directly. Therefore, for example,
49 * it is an error to call this twice, without purging the cache.
50 */
Christoph Hellwigfcafb712009-02-09 08:47:34 +010051int
Linus Torvalds1da177e2005-04-16 15:20:36 -070052xfs_qm_scall_quotaoff(
53 xfs_mount_t *mp,
Christoph Hellwigfcafb712009-02-09 08:47:34 +010054 uint flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +100056 struct xfs_quotainfo *q = mp->m_quotainfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 uint dqtype;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 int error;
59 uint inactivate_flags;
60 xfs_qoff_logitem_t *qoffstart;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 /*
63 * No file system can have quotas enabled on disk but not in core.
64 * Note that quota utilities (like quotaoff) _expect_
Dave Chinner24513372014-06-25 14:58:08 +100065 * errno == -EEXIST here.
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 */
67 if ((mp->m_qflags & flags) == 0)
Dave Chinner24513372014-06-25 14:58:08 +100068 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 error = 0;
70
71 flags &= (XFS_ALL_QUOTA_ACCT | XFS_ALL_QUOTA_ENFD);
72
73 /*
74 * We don't want to deal with two quotaoffs messing up each other,
75 * so we're going to serialize it. quotaoff isn't exactly a performance
76 * critical thing.
77 * If quotaoff, then we must be dealing with the root filesystem.
78 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +100079 ASSERT(q);
80 mutex_lock(&q->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 /*
83 * If we're just turning off quota enforcement, change mp and go.
84 */
85 if ((flags & XFS_ALL_QUOTA_ACCT) == 0) {
86 mp->m_qflags &= ~(flags);
87
Eric Sandeen3685c2a2007-10-11 17:42:32 +100088 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 mp->m_sb.sb_qflags = mp->m_qflags;
Eric Sandeen3685c2a2007-10-11 17:42:32 +100090 spin_unlock(&mp->m_sb_lock);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +100091 mutex_unlock(&q->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 /* XXX what to do if error ? Revert back to old vals incore ? */
Dave Chinner61e63ec2015-01-22 09:10:31 +110094 return xfs_sync_sb(mp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
96
97 dqtype = 0;
98 inactivate_flags = 0;
99 /*
100 * If accounting is off, we must turn enforcement off, clear the
101 * quota 'CHKD' certificate to make it known that we have to
102 * do a quotacheck the next time this quota is turned on.
103 */
104 if (flags & XFS_UQUOTA_ACCT) {
105 dqtype |= XFS_QMOPT_UQUOTA;
106 flags |= (XFS_UQUOTA_CHKD | XFS_UQUOTA_ENFD);
107 inactivate_flags |= XFS_UQUOTA_ACTIVE;
108 }
109 if (flags & XFS_GQUOTA_ACCT) {
110 dqtype |= XFS_QMOPT_GQUOTA;
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500111 flags |= (XFS_GQUOTA_CHKD | XFS_GQUOTA_ENFD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 inactivate_flags |= XFS_GQUOTA_ACTIVE;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500113 }
114 if (flags & XFS_PQUOTA_ACCT) {
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000115 dqtype |= XFS_QMOPT_PQUOTA;
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500116 flags |= (XFS_PQUOTA_CHKD | XFS_PQUOTA_ENFD);
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000117 inactivate_flags |= XFS_PQUOTA_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
119
120 /*
121 * Nothing to do? Don't complain. This happens when we're just
122 * turning off quota enforcement.
123 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000124 if ((mp->m_qflags & flags) == 0)
125 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /*
128 * Write the LI_QUOTAOFF log record, and do SB changes atomically,
David Chinnercb6edc22008-04-10 12:20:45 +1000129 * and synchronously. If we fail to write, we should abort the
130 * operation as it cannot be recovered safely if we crash.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
David Chinnercb6edc22008-04-10 12:20:45 +1000132 error = xfs_qm_log_quotaoff(mp, &qoffstart, flags);
133 if (error)
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000134 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 /*
137 * Next we clear the XFS_MOUNT_*DQ_ACTIVE bit(s) in the mount struct
138 * to take care of the race between dqget and quotaoff. We don't take
139 * any special locks to reset these bits. All processes need to check
140 * these bits *after* taking inode lock(s) to see if the particular
141 * quota type is in the process of being turned off. If *ACTIVE, it is
142 * guaranteed that all dquot structures and all quotainode ptrs will all
143 * stay valid as long as that inode is kept locked.
144 *
145 * There is no turning back after this.
146 */
147 mp->m_qflags &= ~inactivate_flags;
148
149 /*
150 * Give back all the dquot reference(s) held by inodes.
151 * Here we go thru every single incore inode in this file system, and
152 * do a dqrele on the i_udquot/i_gdquot that it may have.
153 * Essentially, as long as somebody has an inode locked, this guarantees
154 * that quotas will not be turned off. This is handy because in a
155 * transaction once we lock the inode(s) and check for quotaon, we can
156 * depend on the quota inodes (and other things) being valid as long as
157 * we keep the lock(s).
158 */
159 xfs_qm_dqrele_all_inodes(mp, flags);
160
161 /*
162 * Next we make the changes in the quota flag in the mount struct.
163 * This isn't protected by a particular lock directly, because we
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300164 * don't want to take a mrlock every time we depend on quotas being on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 */
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500166 mp->m_qflags &= ~flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 /*
169 * Go through all the dquots of this file system and purge them,
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500170 * according to what was turned off.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 */
Christoph Hellwigb84a3a92012-03-14 11:53:34 -0500172 xfs_qm_dqpurge_all(mp, dqtype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 /*
175 * Transactions that had started before ACTIVE state bit was cleared
176 * could have logged many dquots, so they'd have higher LSNs than
177 * the first QUOTAOFF log record does. If we happen to crash when
178 * the tail of the log has gone past the QUOTAOFF record, but
179 * before the last dquot modification, those dquots __will__
180 * recover, and that's not good.
181 *
182 * So, we have QUOTAOFF start and end logitems; the start
183 * logitem won't get overwritten until the end logitem appears...
184 */
David Chinnercb6edc22008-04-10 12:20:45 +1000185 error = xfs_qm_log_quotaoff_end(mp, qoffstart, flags);
186 if (error) {
187 /* We're screwed now. Shutdown is the only option. */
188 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000189 goto out_unlock;
David Chinnercb6edc22008-04-10 12:20:45 +1000190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 /*
Chandra Seetharamanc31ad432013-07-10 18:00:36 -0500193 * If all quotas are completely turned off, close shop.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 */
Chandra Seetharamanc31ad432013-07-10 18:00:36 -0500195 if (mp->m_qflags == 0) {
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000196 mutex_unlock(&q->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 xfs_qm_destroy_quotainfo(mp);
Eric Sandeend99831f2014-06-22 15:03:54 +1000198 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200
201 /*
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000202 * Release our quotainode references if we don't need them anymore.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000204 if ((dqtype & XFS_QMOPT_UQUOTA) && q->qi_uquotaip) {
205 IRELE(q->qi_uquotaip);
206 q->qi_uquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500208 if ((dqtype & XFS_QMOPT_GQUOTA) && q->qi_gquotaip) {
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000209 IRELE(q->qi_gquotaip);
210 q->qi_gquotaip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500212 if ((dqtype & XFS_QMOPT_PQUOTA) && q->qi_pquotaip) {
213 IRELE(q->qi_pquotaip);
214 q->qi_pquotaip = NULL;
215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000217out_unlock:
218 mutex_unlock(&q->qi_quotaofflock);
219 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Christoph Hellwig5d188982010-07-20 17:51:31 +1000222STATIC int
223xfs_qm_scall_trunc_qfile(
224 struct xfs_mount *mp,
225 xfs_ino_t ino)
226{
227 struct xfs_inode *ip;
228 struct xfs_trans *tp;
229 int error;
230
231 if (ino == NULLFSINO)
232 return 0;
233
234 error = xfs_iget(mp, NULL, ino, 0, 0, &ip);
235 if (error)
236 return error;
237
238 xfs_ilock(ip, XFS_IOLOCK_EXCL);
239
240 tp = xfs_trans_alloc(mp, XFS_TRANS_TRUNCATE_FILE);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000241 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_itruncate, 0, 0);
Christoph Hellwig5d188982010-07-20 17:51:31 +1000242 if (error) {
243 xfs_trans_cancel(tp, 0);
244 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
245 goto out_put;
246 }
247
248 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +0000249 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwig5d188982010-07-20 17:51:31 +1000250
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000251 ip->i_d.di_size = 0;
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000252 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
253
254 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0);
Christoph Hellwig5d188982010-07-20 17:51:31 +1000255 if (error) {
256 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES |
257 XFS_TRANS_ABORT);
258 goto out_unlock;
259 }
260
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000261 ASSERT(ip->i_d.di_nextents == 0);
262
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000263 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Christoph Hellwig5d188982010-07-20 17:51:31 +1000264 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
265
266out_unlock:
267 xfs_iunlock(ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
268out_put:
269 IRELE(ip);
270 return error;
271}
272
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100273int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274xfs_qm_scall_trunc_qfiles(
275 xfs_mount_t *mp,
276 uint flags)
277{
Dave Chinner24513372014-06-25 14:58:08 +1000278 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Eric Sandeenf58522c2014-05-05 17:27:06 +1000280 if (!xfs_sb_version_hasquota(&mp->m_sb) || flags == 0 ||
281 (flags & ~XFS_DQ_ALLTYPES)) {
Eric Sandeen08e96e12013-10-11 20:59:05 -0500282 xfs_debug(mp, "%s: flags=%x m_qflags=%x",
Dave Chinner82211122011-03-07 10:07:35 +1100283 __func__, flags, mp->m_qflags);
Dave Chinner24513372014-06-25 14:58:08 +1000284 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286
Jie Liuc61a9e32013-11-22 14:04:00 +0800287 if (flags & XFS_DQ_USER) {
Christoph Hellwig5d188982010-07-20 17:51:31 +1000288 error = xfs_qm_scall_trunc_qfile(mp, mp->m_sb.sb_uquotino);
Jie Liuc61a9e32013-11-22 14:04:00 +0800289 if (error)
290 return error;
291 }
292 if (flags & XFS_DQ_GROUP) {
293 error = xfs_qm_scall_trunc_qfile(mp, mp->m_sb.sb_gquotino);
294 if (error)
295 return error;
296 }
Chandra Seetharamand892d582013-07-19 17:36:02 -0500297 if (flags & XFS_DQ_PROJ)
Jie Liuc61a9e32013-11-22 14:04:00 +0800298 error = xfs_qm_scall_trunc_qfile(mp, mp->m_sb.sb_pquotino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Jie Liuc61a9e32013-11-22 14:04:00 +0800300 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/*
304 * Switch on (a given) quota enforcement for a filesystem. This takes
305 * effect immediately.
306 * (Switching on quota accounting must be done at mount time.)
307 */
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100308int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309xfs_qm_scall_quotaon(
310 xfs_mount_t *mp,
311 uint flags)
312{
313 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 uint qf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 flags &= (XFS_ALL_QUOTA_ACCT | XFS_ALL_QUOTA_ENFD);
317 /*
318 * Switching on quota accounting must be done at mount time.
319 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 flags &= ~(XFS_ALL_QUOTA_ACCT);
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (flags == 0) {
Eric Sandeen08e96e12013-10-11 20:59:05 -0500323 xfs_debug(mp, "%s: zero flags, m_qflags=%x",
Dave Chinner82211122011-03-07 10:07:35 +1100324 __func__, mp->m_qflags);
Dave Chinner24513372014-06-25 14:58:08 +1000325 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 /*
329 * Can't enforce without accounting. We check the superblock
330 * qflags here instead of m_qflags because rootfs can have
331 * quota acct on ondisk without m_qflags' knowing.
332 */
Jan Karafbf64b32014-10-08 11:52:52 +0200333 if (((mp->m_sb.sb_qflags & XFS_UQUOTA_ACCT) == 0 &&
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500334 (flags & XFS_UQUOTA_ENFD)) ||
Jan Karafbf64b32014-10-08 11:52:52 +0200335 ((mp->m_sb.sb_qflags & XFS_GQUOTA_ACCT) == 0 &&
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500336 (flags & XFS_GQUOTA_ENFD)) ||
Jan Karafbf64b32014-10-08 11:52:52 +0200337 ((mp->m_sb.sb_qflags & XFS_PQUOTA_ACCT) == 0 &&
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500338 (flags & XFS_PQUOTA_ENFD))) {
Dave Chinner82211122011-03-07 10:07:35 +1100339 xfs_debug(mp,
Eric Sandeen08e96e12013-10-11 20:59:05 -0500340 "%s: Can't enforce without acct, flags=%x sbflags=%x",
Dave Chinner82211122011-03-07 10:07:35 +1100341 __func__, flags, mp->m_sb.sb_qflags);
Dave Chinner24513372014-06-25 14:58:08 +1000342 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300345 * If everything's up to-date incore, then don't waste time.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 */
347 if ((mp->m_qflags & flags) == flags)
Dave Chinner24513372014-06-25 14:58:08 +1000348 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 /*
351 * Change sb_qflags on disk but not incore mp->qflags
352 * if this is the root filesystem.
353 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000354 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 qf = mp->m_sb.sb_qflags;
356 mp->m_sb.sb_qflags = qf | flags;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000357 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 /*
360 * There's nothing to change if it's the same.
361 */
Dave Chinner4d11a402015-01-22 09:10:26 +1100362 if ((qf & flags) == flags)
Dave Chinner24513372014-06-25 14:58:08 +1000363 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Dave Chinner61e63ec2015-01-22 09:10:31 +1100365 error = xfs_sync_sb(mp, false);
366 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000367 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 /*
369 * If we aren't trying to switch on quota enforcement, we are done.
370 */
371 if (((mp->m_sb.sb_qflags & XFS_UQUOTA_ACCT) !=
372 (mp->m_qflags & XFS_UQUOTA_ACCT)) ||
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000373 ((mp->m_sb.sb_qflags & XFS_PQUOTA_ACCT) !=
374 (mp->m_qflags & XFS_PQUOTA_ACCT)) ||
375 ((mp->m_sb.sb_qflags & XFS_GQUOTA_ACCT) !=
Jan Karafbf64b32014-10-08 11:52:52 +0200376 (mp->m_qflags & XFS_GQUOTA_ACCT)))
Eric Sandeend99831f2014-06-22 15:03:54 +1000377 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 if (! XFS_IS_QUOTA_RUNNING(mp))
Dave Chinner24513372014-06-25 14:58:08 +1000380 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 /*
383 * Switch on quota enforcement in core.
384 */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000385 mutex_lock(&mp->m_quotainfo->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 mp->m_qflags |= (flags & XFS_ALL_QUOTA_ENFD);
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000387 mutex_unlock(&mp->m_quotainfo->qi_quotaofflock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Eric Sandeend99831f2014-06-22 15:03:54 +1000389 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393/*
394 * Return quota status information, such as uquota-off, enforcements, etc.
Chandra Seetharaman5d5e3d52013-08-06 17:27:08 -0500395 * for Q_XGETQSTAT command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 */
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100397int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398xfs_qm_scall_getqstat(
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000399 struct xfs_mount *mp,
400 struct fs_quota_stat *out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000402 struct xfs_quotainfo *q = mp->m_quotainfo;
Chandra Seetharaman113a5682013-06-27 17:25:07 -0500403 struct xfs_inode *uip = NULL;
404 struct xfs_inode *gip = NULL;
Chandra Seetharamand892d582013-07-19 17:36:02 -0500405 struct xfs_inode *pip = NULL;
Chandra Seetharaman113a5682013-06-27 17:25:07 -0500406 bool tempuqip = false;
407 bool tempgqip = false;
Chandra Seetharamand892d582013-07-19 17:36:02 -0500408 bool temppqip = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 memset(out, 0, sizeof(fs_quota_stat_t));
411
412 out->qs_version = FS_QSTAT_VERSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 out->qs_flags = (__uint16_t) xfs_qm_export_flags(mp->m_qflags &
414 (XFS_ALL_QUOTA_ACCT|
415 XFS_ALL_QUOTA_ENFD));
Jan Karaa3942702014-12-12 20:53:36 +0100416 uip = q->qi_uquotaip;
417 gip = q->qi_gquotaip;
418 pip = q->qi_pquotaip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (!uip && mp->m_sb.sb_uquotino != NULLFSINO) {
420 if (xfs_iget(mp, NULL, mp->m_sb.sb_uquotino,
Dave Chinner7b6259e2010-06-24 11:35:17 +1000421 0, 0, &uip) == 0)
Thiago Farina667a9292012-11-12 21:32:59 -0200422 tempuqip = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
424 if (!gip && mp->m_sb.sb_gquotino != NULLFSINO) {
425 if (xfs_iget(mp, NULL, mp->m_sb.sb_gquotino,
Dave Chinner7b6259e2010-06-24 11:35:17 +1000426 0, 0, &gip) == 0)
Thiago Farina667a9292012-11-12 21:32:59 -0200427 tempgqip = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
Chandra Seetharamand892d582013-07-19 17:36:02 -0500429 /*
430 * Q_XGETQSTAT doesn't have room for both group and project quotas.
431 * So, allow the project quota values to be copied out only if
432 * there is no group quota information available.
433 */
434 if (!gip) {
435 if (!pip && mp->m_sb.sb_pquotino != NULLFSINO) {
436 if (xfs_iget(mp, NULL, mp->m_sb.sb_pquotino,
437 0, 0, &pip) == 0)
438 temppqip = true;
439 }
440 } else
441 pip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (uip) {
Chandra Seetharamand892d582013-07-19 17:36:02 -0500443 out->qs_uquota.qfs_ino = mp->m_sb.sb_uquotino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 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 }
Chandra Seetharamand892d582013-07-19 17:36:02 -0500449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (gip) {
Chandra Seetharamand892d582013-07-19 17:36:02 -0500451 out->qs_gquota.qfs_ino = mp->m_sb.sb_gquotino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 out->qs_gquota.qfs_nblks = gip->i_d.di_nblocks;
453 out->qs_gquota.qfs_nextents = gip->i_d.di_nextents;
454 if (tempgqip)
Christoph Hellwig43355092008-03-27 18:01:08 +1100455 IRELE(gip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
Chandra Seetharamand892d582013-07-19 17:36:02 -0500457 if (pip) {
458 out->qs_gquota.qfs_ino = mp->m_sb.sb_gquotino;
459 out->qs_gquota.qfs_nblks = pip->i_d.di_nblocks;
460 out->qs_gquota.qfs_nextents = pip->i_d.di_nextents;
461 if (temppqip)
462 IRELE(pip);
463 }
Jan Karaa3942702014-12-12 20:53:36 +0100464 out->qs_incoredqs = q->qi_dquots;
465 out->qs_btimelimit = q->qi_btimelimit;
466 out->qs_itimelimit = q->qi_itimelimit;
467 out->qs_rtbtimelimit = q->qi_rtbtimelimit;
468 out->qs_bwarnlimit = q->qi_bwarnlimit;
469 out->qs_iwarnlimit = q->qi_iwarnlimit;
470
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000471 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Chandra Seetharaman5d5e3d52013-08-06 17:27:08 -0500474/*
475 * Return quota status information, such as uquota-off, enforcements, etc.
476 * for Q_XGETQSTATV command, to support separate project quota field.
477 */
478int
479xfs_qm_scall_getqstatv(
480 struct xfs_mount *mp,
481 struct fs_quota_statv *out)
482{
483 struct xfs_quotainfo *q = mp->m_quotainfo;
484 struct xfs_inode *uip = NULL;
485 struct xfs_inode *gip = NULL;
486 struct xfs_inode *pip = NULL;
487 bool tempuqip = false;
488 bool tempgqip = false;
489 bool temppqip = false;
490
Chandra Seetharaman5d5e3d52013-08-06 17:27:08 -0500491 out->qs_flags = (__uint16_t) xfs_qm_export_flags(mp->m_qflags &
492 (XFS_ALL_QUOTA_ACCT|
493 XFS_ALL_QUOTA_ENFD));
494 out->qs_uquota.qfs_ino = mp->m_sb.sb_uquotino;
495 out->qs_gquota.qfs_ino = mp->m_sb.sb_gquotino;
496 out->qs_pquota.qfs_ino = mp->m_sb.sb_pquotino;
497
Jan Karaa3942702014-12-12 20:53:36 +0100498 uip = q->qi_uquotaip;
499 gip = q->qi_gquotaip;
500 pip = q->qi_pquotaip;
Chandra Seetharaman5d5e3d52013-08-06 17:27:08 -0500501 if (!uip && mp->m_sb.sb_uquotino != NULLFSINO) {
502 if (xfs_iget(mp, NULL, mp->m_sb.sb_uquotino,
503 0, 0, &uip) == 0)
504 tempuqip = true;
505 }
506 if (!gip && mp->m_sb.sb_gquotino != NULLFSINO) {
507 if (xfs_iget(mp, NULL, mp->m_sb.sb_gquotino,
508 0, 0, &gip) == 0)
509 tempgqip = true;
510 }
511 if (!pip && mp->m_sb.sb_pquotino != NULLFSINO) {
512 if (xfs_iget(mp, NULL, mp->m_sb.sb_pquotino,
513 0, 0, &pip) == 0)
514 temppqip = true;
515 }
516 if (uip) {
517 out->qs_uquota.qfs_nblks = uip->i_d.di_nblocks;
518 out->qs_uquota.qfs_nextents = uip->i_d.di_nextents;
519 if (tempuqip)
520 IRELE(uip);
521 }
522
523 if (gip) {
524 out->qs_gquota.qfs_nblks = gip->i_d.di_nblocks;
525 out->qs_gquota.qfs_nextents = gip->i_d.di_nextents;
526 if (tempgqip)
527 IRELE(gip);
528 }
529 if (pip) {
530 out->qs_pquota.qfs_nblks = pip->i_d.di_nblocks;
531 out->qs_pquota.qfs_nextents = pip->i_d.di_nextents;
532 if (temppqip)
533 IRELE(pip);
534 }
Jan Karaa3942702014-12-12 20:53:36 +0100535 out->qs_incoredqs = q->qi_dquots;
536 out->qs_btimelimit = q->qi_btimelimit;
537 out->qs_itimelimit = q->qi_itimelimit;
538 out->qs_rtbtimelimit = q->qi_rtbtimelimit;
539 out->qs_bwarnlimit = q->qi_bwarnlimit;
540 out->qs_iwarnlimit = q->qi_iwarnlimit;
541
Chandra Seetharaman5d5e3d52013-08-06 17:27:08 -0500542 return 0;
543}
544
Jan Kara14bf61f2014-10-09 16:03:13 +0200545#define XFS_QC_MASK \
546 (QC_LIMIT_MASK | QC_TIMER_MASK | QC_WARNS_MASK)
Christoph Hellwigc472b432010-05-06 17:05:17 -0400547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548/*
549 * Adjust quota limits, and start/stop timers accordingly.
550 */
Christoph Hellwigfcafb712009-02-09 08:47:34 +0100551int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552xfs_qm_scall_setqlim(
Brian Fosterb1366452013-03-18 10:51:46 -0400553 struct xfs_mount *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 xfs_dqid_t id,
555 uint type,
Jan Kara14bf61f2014-10-09 16:03:13 +0200556 struct qc_dqblk *newlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000558 struct xfs_quotainfo *q = mp->m_quotainfo;
Brian Fosterb1366452013-03-18 10:51:46 -0400559 struct xfs_disk_dquot *ddq;
560 struct xfs_dquot *dqp;
561 struct xfs_trans *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 int error;
563 xfs_qcnt_t hard, soft;
564
Jan Kara14bf61f2014-10-09 16:03:13 +0200565 if (newlim->d_fieldmask & ~XFS_QC_MASK)
Dave Chinner24513372014-06-25 14:58:08 +1000566 return -EINVAL;
Jan Kara14bf61f2014-10-09 16:03:13 +0200567 if ((newlim->d_fieldmask & XFS_QC_MASK) == 0)
Christoph Hellwigc472b432010-05-06 17:05:17 -0400568 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Dave Chinnerf6481672013-05-21 18:02:00 +1000570 /*
571 * We don't want to race with a quotaoff so take the quotaoff lock.
572 * We don't hold an inode lock, so there's nothing else to stop
573 * a quotaoff from happening.
574 */
575 mutex_lock(&q->qi_quotaofflock);
576
577 /*
578 * Get the dquot (locked) before we start, as we need to do a
579 * transaction to allocate it if it doesn't exist. Once we have the
580 * dquot, unlock it so we can start the next transaction safely. We hold
581 * a reference to the dquot, so it's safe to do this unlock/lock without
582 * it being reclaimed in the mean time.
583 */
584 error = xfs_qm_dqget(mp, NULL, id, type, XFS_QMOPT_DQALLOC, &dqp);
585 if (error) {
Dave Chinner24513372014-06-25 14:58:08 +1000586 ASSERT(error != -ENOENT);
Dave Chinnerf6481672013-05-21 18:02:00 +1000587 goto out_unlock;
588 }
589 xfs_dqunlock(dqp);
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SETQLIM);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000592 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_qm_setqlim, 0, 0);
Jeff Liuf0f2df92013-01-28 21:26:49 +0800593 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 xfs_trans_cancel(tp, 0);
Dave Chinnerf6481672013-05-21 18:02:00 +1000595 goto out_rele;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597
Dave Chinnerf6481672013-05-21 18:02:00 +1000598 xfs_dqlock(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 xfs_trans_dqjoin(tp, dqp);
600 ddq = &dqp->q_core;
601
602 /*
603 * Make sure that hardlimits are >= soft limits before changing.
604 */
Jan Kara14bf61f2014-10-09 16:03:13 +0200605 hard = (newlim->d_fieldmask & QC_SPC_HARD) ?
606 (xfs_qcnt_t) XFS_B_TO_FSB(mp, newlim->d_spc_hardlimit) :
Christoph Hellwig1149d962005-11-02 15:01:12 +1100607 be64_to_cpu(ddq->d_blk_hardlimit);
Jan Kara14bf61f2014-10-09 16:03:13 +0200608 soft = (newlim->d_fieldmask & QC_SPC_SOFT) ?
609 (xfs_qcnt_t) XFS_B_TO_FSB(mp, newlim->d_spc_softlimit) :
Christoph Hellwig1149d962005-11-02 15:01:12 +1100610 be64_to_cpu(ddq->d_blk_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (hard == 0 || hard >= soft) {
Christoph Hellwig1149d962005-11-02 15:01:12 +1100612 ddq->d_blk_hardlimit = cpu_to_be64(hard);
613 ddq->d_blk_softlimit = cpu_to_be64(soft);
Brian Fosterb1366452013-03-18 10:51:46 -0400614 xfs_dquot_set_prealloc_limits(dqp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (id == 0) {
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000616 q->qi_bhardlimit = hard;
617 q->qi_bsoftlimit = soft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619 } else {
Eric Sandeen08e96e12013-10-11 20:59:05 -0500620 xfs_debug(mp, "blkhard %Ld < blksoft %Ld", hard, soft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
Jan Kara14bf61f2014-10-09 16:03:13 +0200622 hard = (newlim->d_fieldmask & QC_RT_SPC_HARD) ?
623 (xfs_qcnt_t) XFS_B_TO_FSB(mp, newlim->d_rt_spc_hardlimit) :
Christoph Hellwig1149d962005-11-02 15:01:12 +1100624 be64_to_cpu(ddq->d_rtb_hardlimit);
Jan Kara14bf61f2014-10-09 16:03:13 +0200625 soft = (newlim->d_fieldmask & QC_RT_SPC_SOFT) ?
626 (xfs_qcnt_t) XFS_B_TO_FSB(mp, newlim->d_rt_spc_softlimit) :
Christoph Hellwig1149d962005-11-02 15:01:12 +1100627 be64_to_cpu(ddq->d_rtb_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (hard == 0 || hard >= soft) {
Christoph Hellwig1149d962005-11-02 15:01:12 +1100629 ddq->d_rtb_hardlimit = cpu_to_be64(hard);
630 ddq->d_rtb_softlimit = cpu_to_be64(soft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if (id == 0) {
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000632 q->qi_rtbhardlimit = hard;
633 q->qi_rtbsoftlimit = soft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635 } else {
Eric Sandeen08e96e12013-10-11 20:59:05 -0500636 xfs_debug(mp, "rtbhard %Ld < rtbsoft %Ld", hard, soft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638
Jan Kara14bf61f2014-10-09 16:03:13 +0200639 hard = (newlim->d_fieldmask & QC_INO_HARD) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 (xfs_qcnt_t) newlim->d_ino_hardlimit :
Christoph Hellwig1149d962005-11-02 15:01:12 +1100641 be64_to_cpu(ddq->d_ino_hardlimit);
Jan Kara14bf61f2014-10-09 16:03:13 +0200642 soft = (newlim->d_fieldmask & QC_INO_SOFT) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 (xfs_qcnt_t) newlim->d_ino_softlimit :
Christoph Hellwig1149d962005-11-02 15:01:12 +1100644 be64_to_cpu(ddq->d_ino_softlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (hard == 0 || hard >= soft) {
Christoph Hellwig1149d962005-11-02 15:01:12 +1100646 ddq->d_ino_hardlimit = cpu_to_be64(hard);
647 ddq->d_ino_softlimit = cpu_to_be64(soft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (id == 0) {
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000649 q->qi_ihardlimit = hard;
650 q->qi_isoftlimit = soft;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652 } else {
Eric Sandeen08e96e12013-10-11 20:59:05 -0500653 xfs_debug(mp, "ihard %Ld < isoft %Ld", hard, soft);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
655
Nathan Scott754002b2005-06-21 15:49:06 +1000656 /*
657 * Update warnings counter(s) if requested
658 */
Jan Kara14bf61f2014-10-09 16:03:13 +0200659 if (newlim->d_fieldmask & QC_SPC_WARNS)
660 ddq->d_bwarns = cpu_to_be16(newlim->d_spc_warns);
661 if (newlim->d_fieldmask & QC_INO_WARNS)
662 ddq->d_iwarns = cpu_to_be16(newlim->d_ino_warns);
663 if (newlim->d_fieldmask & QC_RT_SPC_WARNS)
664 ddq->d_rtbwarns = cpu_to_be16(newlim->d_rt_spc_warns);
Nathan Scott754002b2005-06-21 15:49:06 +1000665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (id == 0) {
667 /*
668 * Timelimits for the super user set the relative time
669 * the other users can be over quota for this file system.
670 * If it is zero a default is used. Ditto for the default
Nathan Scott754002b2005-06-21 15:49:06 +1000671 * soft and hard limit values (already done, above), and
672 * for warnings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 */
Jan Kara14bf61f2014-10-09 16:03:13 +0200674 if (newlim->d_fieldmask & QC_SPC_TIMER) {
675 q->qi_btimelimit = newlim->d_spc_timer;
676 ddq->d_btimer = cpu_to_be32(newlim->d_spc_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
Jan Kara14bf61f2014-10-09 16:03:13 +0200678 if (newlim->d_fieldmask & QC_INO_TIMER) {
679 q->qi_itimelimit = newlim->d_ino_timer;
680 ddq->d_itimer = cpu_to_be32(newlim->d_ino_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Jan Kara14bf61f2014-10-09 16:03:13 +0200682 if (newlim->d_fieldmask & QC_RT_SPC_TIMER) {
683 q->qi_rtbtimelimit = newlim->d_rt_spc_timer;
684 ddq->d_rtbtimer = cpu_to_be32(newlim->d_rt_spc_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
Jan Kara14bf61f2014-10-09 16:03:13 +0200686 if (newlim->d_fieldmask & QC_SPC_WARNS)
687 q->qi_bwarnlimit = newlim->d_spc_warns;
688 if (newlim->d_fieldmask & QC_INO_WARNS)
689 q->qi_iwarnlimit = newlim->d_ino_warns;
690 if (newlim->d_fieldmask & QC_RT_SPC_WARNS)
691 q->qi_rtbwarnlimit = newlim->d_rt_spc_warns;
Nathan Scott754002b2005-06-21 15:49:06 +1000692 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 /*
694 * If the user is now over quota, start the timelimit.
695 * The user will not be 'warned'.
696 * Note that we keep the timers ticking, whether enforcement
697 * is on or off. We don't really want to bother with iterating
698 * over all ondisk dquots and turning the timers on/off.
699 */
700 xfs_qm_adjust_dqtimers(mp, ddq);
701 }
702 dqp->dq_flags |= XFS_DQ_DIRTY;
703 xfs_trans_log_dquot(tp, dqp);
704
David Chinnere5720ee2008-04-10 12:21:18 +1000705 error = xfs_trans_commit(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Dave Chinnerf6481672013-05-21 18:02:00 +1000707out_rele:
708 xfs_qm_dqrele(dqp);
709out_unlock:
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000710 mutex_unlock(&q->qi_quotaofflock);
David Chinnere5720ee2008-04-10 12:21:18 +1000711 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714STATIC int
715xfs_qm_log_quotaoff_end(
716 xfs_mount_t *mp,
717 xfs_qoff_logitem_t *startqoff,
718 uint flags)
719{
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000720 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 int error;
Nathan Scottc8ad20f2005-06-21 15:38:48 +1000722 xfs_qoff_logitem_t *qoffi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QUOTAOFF_END);
725
Jie Liu3d3c8b52013-08-12 20:49:59 +1000726 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_qm_equotaoff, 0, 0);
Jeff Liu762d7ba2013-01-28 21:27:21 +0800727 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 xfs_trans_cancel(tp, 0);
Eric Sandeend99831f2014-06-22 15:03:54 +1000729 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
731
732 qoffi = xfs_trans_get_qoff_item(tp, startqoff,
733 flags & XFS_ALL_QUOTA_ACCT);
734 xfs_trans_log_quotaoff_item(tp, qoffi);
735
736 /*
737 * We have to make sure that the transaction is secure on disk before we
738 * return and actually stop quota accounting. So, make it synchronous.
739 * We don't care about quotoff's performance.
740 */
741 xfs_trans_set_sync(tp);
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000742 error = xfs_trans_commit(tp, 0);
Eric Sandeend99831f2014-06-22 15:03:54 +1000743 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746
747STATIC int
748xfs_qm_log_quotaoff(
749 xfs_mount_t *mp,
750 xfs_qoff_logitem_t **qoffstartp,
751 uint flags)
752{
753 xfs_trans_t *tp;
754 int error;
Brian Foster5d45ee12014-11-28 14:00:53 +1100755 xfs_qoff_logitem_t *qoffi;
756
757 *qoffstartp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QUOTAOFF);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000760 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_qm_quotaoff, 0, 0);
Brian Foster5d45ee12014-11-28 14:00:53 +1100761 if (error) {
762 xfs_trans_cancel(tp, 0);
763 goto out;
764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 qoffi = xfs_trans_get_qoff_item(tp, NULL, flags & XFS_ALL_QUOTA_ACCT);
767 xfs_trans_log_quotaoff_item(tp, qoffi);
768
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000769 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 mp->m_sb.sb_qflags = (mp->m_qflags & ~(flags)) & XFS_MOUNT_QUOTA_ALL;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000771 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Dave Chinner61e63ec2015-01-22 09:10:31 +1100773 xfs_log_sb(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 /*
776 * We have to make sure that the transaction is secure on disk before we
777 * return and actually stop quota accounting. So, make it synchronous.
778 * We don't care about quotoff's performance.
779 */
780 xfs_trans_set_sync(tp);
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000781 error = xfs_trans_commit(tp, 0);
Brian Foster5d45ee12014-11-28 14:00:53 +1100782 if (error)
783 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 *qoffstartp = qoffi;
Brian Foster5d45ee12014-11-28 14:00:53 +1100786out:
Eric Sandeend99831f2014-06-22 15:03:54 +1000787 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
790
Christoph Hellwig18535a72012-02-20 02:28:16 +0000791int
792xfs_qm_scall_getquota(
793 struct xfs_mount *mp,
794 xfs_dqid_t id,
795 uint type,
Jan Kara14bf61f2014-10-09 16:03:13 +0200796 struct qc_dqblk *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Christoph Hellwig18535a72012-02-20 02:28:16 +0000798 struct xfs_dquot *dqp;
799 int error;
800
801 /*
802 * Try to get the dquot. We don't want it allocated on disk, so
803 * we aren't passing the XFS_QMOPT_DOALLOC flag. If it doesn't
804 * exist, we'll get ENOENT back.
805 */
806 error = xfs_qm_dqget(mp, NULL, id, type, 0, &dqp);
807 if (error)
808 return error;
809
810 /*
811 * If everything's NULL, this dquot doesn't quite exist as far as
812 * our utility programs are concerned.
813 */
814 if (XFS_IS_DQUOT_UNINITIALIZED(dqp)) {
Dave Chinner24513372014-06-25 14:58:08 +1000815 error = -ENOENT;
Christoph Hellwig18535a72012-02-20 02:28:16 +0000816 goto out_put;
817 }
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 memset(dst, 0, sizeof(*dst));
Jan Kara14bf61f2014-10-09 16:03:13 +0200820 dst->d_spc_hardlimit =
821 XFS_FSB_TO_B(mp, be64_to_cpu(dqp->q_core.d_blk_hardlimit));
822 dst->d_spc_softlimit =
823 XFS_FSB_TO_B(mp, be64_to_cpu(dqp->q_core.d_blk_softlimit));
Christoph Hellwig18535a72012-02-20 02:28:16 +0000824 dst->d_ino_hardlimit = be64_to_cpu(dqp->q_core.d_ino_hardlimit);
825 dst->d_ino_softlimit = be64_to_cpu(dqp->q_core.d_ino_softlimit);
Jan Kara14bf61f2014-10-09 16:03:13 +0200826 dst->d_space = XFS_FSB_TO_B(mp, dqp->q_res_bcount);
827 dst->d_ino_count = dqp->q_res_icount;
828 dst->d_spc_timer = be32_to_cpu(dqp->q_core.d_btimer);
829 dst->d_ino_timer = be32_to_cpu(dqp->q_core.d_itimer);
830 dst->d_ino_warns = be16_to_cpu(dqp->q_core.d_iwarns);
831 dst->d_spc_warns = be16_to_cpu(dqp->q_core.d_bwarns);
832 dst->d_rt_spc_hardlimit =
833 XFS_FSB_TO_B(mp, be64_to_cpu(dqp->q_core.d_rtb_hardlimit));
834 dst->d_rt_spc_softlimit =
835 XFS_FSB_TO_B(mp, be64_to_cpu(dqp->q_core.d_rtb_softlimit));
836 dst->d_rt_space = XFS_FSB_TO_B(mp, dqp->q_res_rtbcount);
837 dst->d_rt_spc_timer = be32_to_cpu(dqp->q_core.d_rtbtimer);
838 dst->d_rt_spc_warns = be16_to_cpu(dqp->q_core.d_rtbwarns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 /*
841 * Internally, we don't reset all the timers when quota enforcement
Nathan Scottc41564b2006-03-29 08:55:14 +1000842 * gets turned off. No need to confuse the user level code,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 * so return zeroes in that case.
844 */
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500845 if ((!XFS_IS_UQUOTA_ENFORCED(mp) &&
846 dqp->q_core.d_flags == XFS_DQ_USER) ||
847 (!XFS_IS_GQUOTA_ENFORCED(mp) &&
848 dqp->q_core.d_flags == XFS_DQ_GROUP) ||
849 (!XFS_IS_PQUOTA_ENFORCED(mp) &&
850 dqp->q_core.d_flags == XFS_DQ_PROJ)) {
Jan Kara14bf61f2014-10-09 16:03:13 +0200851 dst->d_spc_timer = 0;
852 dst->d_ino_timer = 0;
853 dst->d_rt_spc_timer = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855
856#ifdef DEBUG
Jan Kara14bf61f2014-10-09 16:03:13 +0200857 if (((XFS_IS_UQUOTA_ENFORCED(mp) && type == XFS_DQ_USER) ||
858 (XFS_IS_GQUOTA_ENFORCED(mp) && type == XFS_DQ_GROUP) ||
859 (XFS_IS_PQUOTA_ENFORCED(mp) && type == XFS_DQ_PROJ)) &&
860 id != 0) {
861 if ((dst->d_space > dst->d_spc_softlimit) &&
862 (dst->d_spc_softlimit > 0)) {
863 ASSERT(dst->d_spc_timer != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
Jan Kara14bf61f2014-10-09 16:03:13 +0200865 if ((dst->d_ino_count > dst->d_ino_softlimit) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 (dst->d_ino_softlimit > 0)) {
Jan Kara14bf61f2014-10-09 16:03:13 +0200867 ASSERT(dst->d_ino_timer != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869 }
870#endif
Christoph Hellwig18535a72012-02-20 02:28:16 +0000871out_put:
872 xfs_qm_dqput(dqp);
873 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
875
876STATIC uint
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877xfs_qm_export_flags(
878 uint flags)
879{
880 uint uflags;
881
882 uflags = 0;
883 if (flags & XFS_UQUOTA_ACCT)
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200884 uflags |= FS_QUOTA_UDQ_ACCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (flags & XFS_GQUOTA_ACCT)
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200886 uflags |= FS_QUOTA_GDQ_ACCT;
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500887 if (flags & XFS_PQUOTA_ACCT)
888 uflags |= FS_QUOTA_PDQ_ACCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (flags & XFS_UQUOTA_ENFD)
Christoph Hellwigade7ce32010-06-04 10:56:01 +0200890 uflags |= FS_QUOTA_UDQ_ENFD;
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500891 if (flags & XFS_GQUOTA_ENFD)
892 uflags |= FS_QUOTA_GDQ_ENFD;
893 if (flags & XFS_PQUOTA_ENFD)
894 uflags |= FS_QUOTA_PDQ_ENFD;
Eric Sandeend99831f2014-06-22 15:03:54 +1000895 return uflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
898
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200899STATIC int
900xfs_dqrele_inode(
901 struct xfs_inode *ip,
Brian Fostera454f742012-11-06 09:50:39 -0500902 int flags,
903 void *args)
David Chinner5b4d89a2008-10-30 17:08:03 +1100904{
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200905 /* skip quota inodes */
Christoph Hellwig8a7b8a82010-04-20 17:01:30 +1000906 if (ip == ip->i_mount->m_quotainfo->qi_uquotaip ||
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500907 ip == ip->i_mount->m_quotainfo->qi_gquotaip ||
908 ip == ip->i_mount->m_quotainfo->qi_pquotaip) {
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200909 ASSERT(ip->i_udquot == NULL);
910 ASSERT(ip->i_gdquot == NULL);
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500911 ASSERT(ip->i_pdquot == NULL);
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200912 return 0;
913 }
Dave Chinnercb4f0d12008-11-10 17:11:18 +1100914
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200915 xfs_ilock(ip, XFS_ILOCK_EXCL);
916 if ((flags & XFS_UQUOTA_ACCT) && ip->i_udquot) {
917 xfs_qm_dqrele(ip->i_udquot);
918 ip->i_udquot = NULL;
919 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500920 if ((flags & XFS_GQUOTA_ACCT) && ip->i_gdquot) {
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200921 xfs_qm_dqrele(ip->i_gdquot);
922 ip->i_gdquot = NULL;
923 }
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500924 if ((flags & XFS_PQUOTA_ACCT) && ip->i_pdquot) {
925 xfs_qm_dqrele(ip->i_pdquot);
926 ip->i_pdquot = NULL;
927 }
Christoph Hellwigf2d67612010-06-24 11:52:50 +1000928 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200929 return 0;
David Chinner5b4d89a2008-10-30 17:08:03 +1100930}
931
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200932
David Chinner5b4d89a2008-10-30 17:08:03 +1100933/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 * Go thru all the inodes in the file system, releasing their dquots.
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200935 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 * Note that the mount structure gets modified to indicate that quotas are off
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200937 * AFTER this, in the case of quotaoff.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 */
939void
940xfs_qm_dqrele_all_inodes(
941 struct xfs_mount *mp,
942 uint flags)
943{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 ASSERT(mp->m_quotainfo);
Brian Fostera454f742012-11-06 09:50:39 -0500945 xfs_inode_ag_iterator(mp, xfs_dqrele_inode, flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}