blob: cfb4cdeddacbd568ee2797c16f1b304f13b70a89 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Peterson0d0868b2007-12-11 18:51:25 -06003 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10/*
11 * Quota change tags are associated with each transaction that allocates or
12 * deallocates space. Those changes are accumulated locally to each node (in a
13 * per-node file) and then are periodically synced to the quota file. This
14 * avoids the bottleneck of constantly touching the quota file, but introduces
15 * fuzziness in the current usage value of IDs that are being used on different
16 * nodes in the cluster simultaneously. So, it is possible for a user on
17 * multiple nodes to overrun their quota, but that overrun is controlable.
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +010018 * Since quota tags are part of transactions, there is no need for a quota check
David Teiglandb3b94fa2006-01-16 16:50:04 +000019 * program to be run on node crashes or anything like that.
20 *
21 * There are couple of knobs that let the administrator manage the quota
22 * fuzziness. "quota_quantum" sets the maximum time a quota change can be
23 * sitting on one node before being synced to the quota file. (The default is
24 * 60 seconds.) Another knob, "quota_scale" controls how quickly the frequency
25 * of quota file syncs increases as the user moves closer to their limit. The
26 * more frequent the syncs, the more accurate the quota enforcement, but that
27 * means that there is more contention between the nodes for the quota file.
28 * The default value is one. This sets the maximum theoretical quota overrun
29 * (with infinite node with infinite bandwidth) to twice the user's limit. (In
30 * practice, the maximum overrun you see should be much less.) A "quota_scale"
31 * number greater than one makes quota syncs more frequent and reduces the
32 * maximum overrun. Numbers less than one (but greater than zero) make quota
33 * syncs less frequent.
34 *
35 * GFS quotas also use per-ID Lock Value Blocks (LVBs) to cache the contents of
36 * the quota file, so it is not being constantly read.
37 */
38
39#include <linux/sched.h>
40#include <linux/slab.h>
Ying Han1495f232011-05-24 17:12:27 -070041#include <linux/mm.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000042#include <linux/spinlock.h>
43#include <linux/completion.h>
44#include <linux/buffer_head.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000045#include <linux/sort.h>
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000046#include <linux/fs.h>
Steven Whitehouse2e565bb2006-10-02 11:38:25 -040047#include <linux/bio.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050048#include <linux/gfs2_ondisk.h>
Steven Whitehouse37b2c832008-11-17 14:25:37 +000049#include <linux/kthread.h>
50#include <linux/freezer.h>
Steven Whitehouse2ec46502009-09-28 12:49:15 +010051#include <linux/quota.h>
Steven Whitehouse1d371b52009-09-11 15:57:27 +010052#include <linux/dqblk_xfs.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000053
54#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050055#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000056#include "bmap.h"
57#include "glock.h"
58#include "glops.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000059#include "log.h"
60#include "meta_io.h"
61#include "quota.h"
62#include "rgrp.h"
63#include "super.h"
64#include "trans.h"
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000065#include "inode.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050066#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000067
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010068struct gfs2_quota_change_host {
69 u64 qc_change;
70 u32 qc_flags; /* GFS2_QCF_... */
Eric W. Biedermane08d8d72013-01-31 19:25:50 -080071 struct kqid qc_id;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010072};
73
Abhijith Das0a7ab792009-01-07 16:03:37 -060074static LIST_HEAD(qd_lru_list);
75static atomic_t qd_lru_count = ATOMIC_INIT(0);
Xu Gang1328df72009-04-14 14:54:14 +080076static DEFINE_SPINLOCK(qd_lru_lock);
Abhijith Das0a7ab792009-01-07 16:03:37 -060077
Dave Chinner1ab6c492013-08-28 10:18:09 +100078unsigned long gfs2_qd_shrink_scan(struct shrinker *shrink,
79 struct shrink_control *sc)
Abhijith Das0a7ab792009-01-07 16:03:37 -060080{
81 struct gfs2_quota_data *qd;
82 struct gfs2_sbd *sdp;
Ying Han1495f232011-05-24 17:12:27 -070083 int nr_to_scan = sc->nr_to_scan;
Dave Chinner1ab6c492013-08-28 10:18:09 +100084 long freed = 0;
Abhijith Das0a7ab792009-01-07 16:03:37 -060085
Ying Han1495f232011-05-24 17:12:27 -070086 if (!(sc->gfp_mask & __GFP_FS))
Dave Chinner1ab6c492013-08-28 10:18:09 +100087 return SHRINK_STOP;
Abhijith Das0a7ab792009-01-07 16:03:37 -060088
89 spin_lock(&qd_lru_lock);
Ying Han1495f232011-05-24 17:12:27 -070090 while (nr_to_scan && !list_empty(&qd_lru_list)) {
Abhijith Das0a7ab792009-01-07 16:03:37 -060091 qd = list_entry(qd_lru_list.next,
92 struct gfs2_quota_data, qd_reclaim);
93 sdp = qd->qd_gl->gl_sbd;
94
95 /* Free from the filesystem-specific list */
96 list_del(&qd->qd_list);
97
Abhijith Das0a7ab792009-01-07 16:03:37 -060098 gfs2_assert_warn(sdp, !qd->qd_change);
99 gfs2_assert_warn(sdp, !qd->qd_slot_count);
100 gfs2_assert_warn(sdp, !qd->qd_bh_count);
101
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000102 gfs2_glock_put(qd->qd_gl);
Abhijith Das0a7ab792009-01-07 16:03:37 -0600103 atomic_dec(&sdp->sd_quota_count);
104
105 /* Delete it from the common reclaim list */
106 list_del_init(&qd->qd_reclaim);
107 atomic_dec(&qd_lru_count);
108 spin_unlock(&qd_lru_lock);
109 kmem_cache_free(gfs2_quotad_cachep, qd);
110 spin_lock(&qd_lru_lock);
Ying Han1495f232011-05-24 17:12:27 -0700111 nr_to_scan--;
Dave Chinner1ab6c492013-08-28 10:18:09 +1000112 freed++;
Abhijith Das0a7ab792009-01-07 16:03:37 -0600113 }
114 spin_unlock(&qd_lru_lock);
Dave Chinner1ab6c492013-08-28 10:18:09 +1000115 return freed;
116}
Abhijith Das0a7ab792009-01-07 16:03:37 -0600117
Dave Chinner1ab6c492013-08-28 10:18:09 +1000118unsigned long gfs2_qd_shrink_count(struct shrinker *shrink,
119 struct shrink_control *sc)
120{
Glauber Costa55f841c2013-08-28 10:17:53 +1000121 return vfs_pressure_ratio(atomic_read(&qd_lru_count));
Abhijith Das0a7ab792009-01-07 16:03:37 -0600122}
123
Eric W. Biederman2f6c9892013-01-31 18:33:38 -0800124static u64 qd2index(struct gfs2_quota_data *qd)
125{
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800126 struct kqid qid = qd->qd_id;
127 return (2 * (u64)from_kqid(&init_user_ns, qid)) +
Bob Peterson37f71572013-05-10 11:59:18 -0400128 ((qid.type == USRQUOTA) ? 0 : 1);
Eric W. Biederman2f6c9892013-01-31 18:33:38 -0800129}
130
Steven Whitehousecd915492006-09-04 12:49:07 -0400131static u64 qd2offset(struct gfs2_quota_data *qd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000132{
Steven Whitehousecd915492006-09-04 12:49:07 -0400133 u64 offset;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000134
Eric W. Biederman2f6c9892013-01-31 18:33:38 -0800135 offset = qd2index(qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000136 offset *= sizeof(struct gfs2_quota);
137
138 return offset;
139}
140
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800141static int qd_alloc(struct gfs2_sbd *sdp, struct kqid qid,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000142 struct gfs2_quota_data **qdp)
143{
144 struct gfs2_quota_data *qd;
145 int error;
146
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000147 qd = kmem_cache_zalloc(gfs2_quotad_cachep, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000148 if (!qd)
149 return -ENOMEM;
150
Abhijith Das0a7ab792009-01-07 16:03:37 -0600151 atomic_set(&qd->qd_count, 1);
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800152 qd->qd_id = qid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000153 qd->qd_slot = -1;
Abhijith Das0a7ab792009-01-07 16:03:37 -0600154 INIT_LIST_HEAD(&qd->qd_reclaim);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000155
Eric W. Biederman2f6c9892013-01-31 18:33:38 -0800156 error = gfs2_glock_get(sdp, qd2index(qd),
David Teiglandb3b94fa2006-01-16 16:50:04 +0000157 &gfs2_quota_glops, CREATE, &qd->qd_gl);
158 if (error)
159 goto fail;
160
David Teiglandb3b94fa2006-01-16 16:50:04 +0000161 *qdp = qd;
162
163 return 0;
164
Steven Whitehousea91ea692006-09-04 12:04:26 -0400165fail:
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000166 kmem_cache_free(gfs2_quotad_cachep, qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000167 return error;
168}
169
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800170static int qd_get(struct gfs2_sbd *sdp, struct kqid qid,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000171 struct gfs2_quota_data **qdp)
172{
173 struct gfs2_quota_data *qd = NULL, *new_qd = NULL;
174 int error, found;
175
176 *qdp = NULL;
177
178 for (;;) {
179 found = 0;
Abhijith Das0a7ab792009-01-07 16:03:37 -0600180 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000181 list_for_each_entry(qd, &sdp->sd_quota_list, qd_list) {
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800182 if (qid_eq(qd->qd_id, qid)) {
Abhijith Das0a7ab792009-01-07 16:03:37 -0600183 if (!atomic_read(&qd->qd_count) &&
184 !list_empty(&qd->qd_reclaim)) {
185 /* Remove it from reclaim list */
186 list_del_init(&qd->qd_reclaim);
187 atomic_dec(&qd_lru_count);
188 }
189 atomic_inc(&qd->qd_count);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000190 found = 1;
191 break;
192 }
193 }
194
195 if (!found)
196 qd = NULL;
197
198 if (!qd && new_qd) {
199 qd = new_qd;
200 list_add(&qd->qd_list, &sdp->sd_quota_list);
201 atomic_inc(&sdp->sd_quota_count);
202 new_qd = NULL;
203 }
204
Abhijith Das0a7ab792009-01-07 16:03:37 -0600205 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000206
Steven Whitehouse6a6ada82009-09-15 16:30:38 +0100207 if (qd) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000208 if (new_qd) {
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000209 gfs2_glock_put(new_qd->qd_gl);
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000210 kmem_cache_free(gfs2_quotad_cachep, new_qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000211 }
212 *qdp = qd;
213 return 0;
214 }
215
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800216 error = qd_alloc(sdp, qid, &new_qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000217 if (error)
218 return error;
219 }
220}
221
222static void qd_hold(struct gfs2_quota_data *qd)
223{
224 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Abhijith Das0a7ab792009-01-07 16:03:37 -0600225 gfs2_assert(sdp, atomic_read(&qd->qd_count));
226 atomic_inc(&qd->qd_count);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000227}
228
229static void qd_put(struct gfs2_quota_data *qd)
230{
Abhijith Das0a7ab792009-01-07 16:03:37 -0600231 if (atomic_dec_and_lock(&qd->qd_count, &qd_lru_lock)) {
232 /* Add to the reclaim list */
233 list_add_tail(&qd->qd_reclaim, &qd_lru_list);
234 atomic_inc(&qd_lru_count);
235 spin_unlock(&qd_lru_lock);
236 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000237}
238
239static int slot_get(struct gfs2_quota_data *qd)
240{
241 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
242 unsigned int c, o = 0, b;
243 unsigned char byte = 0;
244
Steven Whitehouse22077f52009-01-08 14:28:42 +0000245 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000246
247 if (qd->qd_slot_count++) {
Steven Whitehouse22077f52009-01-08 14:28:42 +0000248 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000249 return 0;
250 }
251
252 for (c = 0; c < sdp->sd_quota_chunks; c++)
253 for (o = 0; o < PAGE_SIZE; o++) {
254 byte = sdp->sd_quota_bitmap[c][o];
255 if (byte != 0xFF)
256 goto found;
257 }
258
259 goto fail;
260
Steven Whitehousea91ea692006-09-04 12:04:26 -0400261found:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000262 for (b = 0; b < 8; b++)
263 if (!(byte & (1 << b)))
264 break;
265 qd->qd_slot = c * (8 * PAGE_SIZE) + o * 8 + b;
266
267 if (qd->qd_slot >= sdp->sd_quota_slots)
268 goto fail;
269
270 sdp->sd_quota_bitmap[c][o] |= 1 << b;
271
Steven Whitehouse22077f52009-01-08 14:28:42 +0000272 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000273
274 return 0;
275
Steven Whitehousea91ea692006-09-04 12:04:26 -0400276fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000277 qd->qd_slot_count--;
Steven Whitehouse22077f52009-01-08 14:28:42 +0000278 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000279 return -ENOSPC;
280}
281
282static void slot_hold(struct gfs2_quota_data *qd)
283{
284 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
285
Steven Whitehouse22077f52009-01-08 14:28:42 +0000286 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000287 gfs2_assert(sdp, qd->qd_slot_count);
288 qd->qd_slot_count++;
Steven Whitehouse22077f52009-01-08 14:28:42 +0000289 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000290}
291
Steven Whitehouse26e43a12013-10-02 14:47:02 +0100292static void gfs2_icbit_munge(struct gfs2_sbd *sdp, unsigned char **bitmap,
293 unsigned int bit, int new_value)
294{
295 unsigned int c, o, b = bit;
296 int old_value;
297
298 c = b / (8 * PAGE_SIZE);
299 b %= 8 * PAGE_SIZE;
300 o = b / 8;
301 b %= 8;
302
303 old_value = (bitmap[c][o] & (1 << b));
304 gfs2_assert_withdraw(sdp, !old_value != !new_value);
305
306 if (new_value)
307 bitmap[c][o] |= 1 << b;
308 else
309 bitmap[c][o] &= ~(1 << b);
310}
311
David Teiglandb3b94fa2006-01-16 16:50:04 +0000312static void slot_put(struct gfs2_quota_data *qd)
313{
314 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
315
Steven Whitehouse22077f52009-01-08 14:28:42 +0000316 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000317 gfs2_assert(sdp, qd->qd_slot_count);
318 if (!--qd->qd_slot_count) {
319 gfs2_icbit_munge(sdp, sdp->sd_quota_bitmap, qd->qd_slot, 0);
320 qd->qd_slot = -1;
321 }
Steven Whitehouse22077f52009-01-08 14:28:42 +0000322 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000323}
324
325static int bh_get(struct gfs2_quota_data *qd)
326{
327 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400328 struct gfs2_inode *ip = GFS2_I(sdp->sd_qc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000329 unsigned int block, offset;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000330 struct buffer_head *bh;
331 int error;
Steven Whitehouse23591252006-10-13 17:25:45 -0400332 struct buffer_head bh_map = { .b_state = 0, .b_blocknr = 0 };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000333
Steven Whitehousef55ab262006-02-21 12:51:39 +0000334 mutex_lock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000335
336 if (qd->qd_bh_count++) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000337 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000338 return 0;
339 }
340
341 block = qd->qd_slot / sdp->sd_qc_per_block;
Bob Peterson0d0868b2007-12-11 18:51:25 -0600342 offset = qd->qd_slot % sdp->sd_qc_per_block;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000343
Steven Whitehouse23591252006-10-13 17:25:45 -0400344 bh_map.b_size = 1 << ip->i_inode.i_blkbits;
Bob Petersone9e1ef22007-12-10 14:13:27 -0600345 error = gfs2_block_map(&ip->i_inode, block, &bh_map, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000346 if (error)
347 goto fail;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400348 error = gfs2_meta_read(ip->i_gl, bh_map.b_blocknr, DIO_WAIT, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000349 if (error)
350 goto fail;
351 error = -EIO;
352 if (gfs2_metatype_check(sdp, bh, GFS2_METATYPE_QC))
353 goto fail_brelse;
354
355 qd->qd_bh = bh;
356 qd->qd_bh_qc = (struct gfs2_quota_change *)
357 (bh->b_data + sizeof(struct gfs2_meta_header) +
358 offset * sizeof(struct gfs2_quota_change));
359
Josef Whiter2e95b662007-02-20 00:03:29 -0500360 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000361
362 return 0;
363
Steven Whitehousea91ea692006-09-04 12:04:26 -0400364fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000365 brelse(bh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400366fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000367 qd->qd_bh_count--;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000368 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000369 return error;
370}
371
372static void bh_put(struct gfs2_quota_data *qd)
373{
374 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
375
Steven Whitehousef55ab262006-02-21 12:51:39 +0000376 mutex_lock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000377 gfs2_assert(sdp, qd->qd_bh_count);
378 if (!--qd->qd_bh_count) {
379 brelse(qd->qd_bh);
380 qd->qd_bh = NULL;
381 qd->qd_bh_qc = NULL;
382 }
Steven Whitehousef55ab262006-02-21 12:51:39 +0000383 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000384}
385
Steven Whitehouse1bf59bf2013-10-04 11:14:46 +0100386static int qd_check_sync(struct gfs2_sbd *sdp, struct gfs2_quota_data *qd,
387 u64 *sync_gen)
388{
389 if (test_bit(QDF_LOCKED, &qd->qd_flags) ||
390 !test_bit(QDF_CHANGE, &qd->qd_flags) ||
391 (sync_gen && (qd->qd_sync_gen >= *sync_gen)))
392 return 0;
393
394 list_move_tail(&qd->qd_list, &sdp->sd_quota_list);
395
396 set_bit(QDF_LOCKED, &qd->qd_flags);
397 gfs2_assert_warn(sdp, atomic_read(&qd->qd_count));
398 atomic_inc(&qd->qd_count);
399 qd->qd_change_sync = qd->qd_change;
400 gfs2_assert_warn(sdp, qd->qd_slot_count);
401 qd->qd_slot_count++;
402 return 1;
403}
404
David Teiglandb3b94fa2006-01-16 16:50:04 +0000405static int qd_fish(struct gfs2_sbd *sdp, struct gfs2_quota_data **qdp)
406{
407 struct gfs2_quota_data *qd = NULL;
408 int error;
409 int found = 0;
410
411 *qdp = NULL;
412
413 if (sdp->sd_vfs->s_flags & MS_RDONLY)
414 return 0;
415
Abhijith Das0a7ab792009-01-07 16:03:37 -0600416 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000417
418 list_for_each_entry(qd, &sdp->sd_quota_list, qd_list) {
Steven Whitehouse1bf59bf2013-10-04 11:14:46 +0100419 found = qd_check_sync(sdp, qd, &sdp->sd_quota_sync_gen);
420 if (found)
421 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000422 }
423
424 if (!found)
425 qd = NULL;
426
Abhijith Das0a7ab792009-01-07 16:03:37 -0600427 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000428
429 if (qd) {
430 gfs2_assert_warn(sdp, qd->qd_change_sync);
431 error = bh_get(qd);
432 if (error) {
433 clear_bit(QDF_LOCKED, &qd->qd_flags);
434 slot_put(qd);
435 qd_put(qd);
436 return error;
437 }
438 }
439
440 *qdp = qd;
441
442 return 0;
443}
444
David Teiglandb3b94fa2006-01-16 16:50:04 +0000445static void qd_unlock(struct gfs2_quota_data *qd)
446{
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500447 gfs2_assert_warn(qd->qd_gl->gl_sbd,
448 test_bit(QDF_LOCKED, &qd->qd_flags));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000449 clear_bit(QDF_LOCKED, &qd->qd_flags);
450 bh_put(qd);
451 slot_put(qd);
452 qd_put(qd);
453}
454
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800455static int qdsb_get(struct gfs2_sbd *sdp, struct kqid qid,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000456 struct gfs2_quota_data **qdp)
457{
458 int error;
459
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800460 error = qd_get(sdp, qid, qdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000461 if (error)
462 return error;
463
464 error = slot_get(*qdp);
465 if (error)
466 goto fail;
467
468 error = bh_get(*qdp);
469 if (error)
470 goto fail_slot;
471
472 return 0;
473
Steven Whitehousea91ea692006-09-04 12:04:26 -0400474fail_slot:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000475 slot_put(*qdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400476fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000477 qd_put(*qdp);
478 return error;
479}
480
481static void qdsb_put(struct gfs2_quota_data *qd)
482{
483 bh_put(qd);
484 slot_put(qd);
485 qd_put(qd);
486}
487
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -0800488int gfs2_quota_hold(struct gfs2_inode *ip, kuid_t uid, kgid_t gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000489{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400490 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Bob Peterson5407e242012-05-18 09:28:23 -0400491 struct gfs2_quota_data **qd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000492 int error;
493
Andrew Priceaaaf68c2012-10-12 16:45:08 +0100494 if (ip->i_res == NULL) {
495 error = gfs2_rs_alloc(ip);
496 if (error)
497 return error;
498 }
Bob Peterson5407e242012-05-18 09:28:23 -0400499
500 qd = ip->i_res->rs_qa_qd;
501
502 if (gfs2_assert_warn(sdp, !ip->i_res->rs_qa_qd_num) ||
David Teiglandb3b94fa2006-01-16 16:50:04 +0000503 gfs2_assert_warn(sdp, !test_bit(GIF_QD_LOCKED, &ip->i_flags)))
504 return -EIO;
505
506 if (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
507 return 0;
508
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800509 error = qdsb_get(sdp, make_kqid_uid(ip->i_inode.i_uid), qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000510 if (error)
511 goto out;
Bob Peterson5407e242012-05-18 09:28:23 -0400512 ip->i_res->rs_qa_qd_num++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000513 qd++;
514
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800515 error = qdsb_get(sdp, make_kqid_gid(ip->i_inode.i_gid), qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000516 if (error)
517 goto out;
Bob Peterson5407e242012-05-18 09:28:23 -0400518 ip->i_res->rs_qa_qd_num++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000519 qd++;
520
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -0800521 if (!uid_eq(uid, NO_UID_QUOTA_CHANGE) &&
522 !uid_eq(uid, ip->i_inode.i_uid)) {
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800523 error = qdsb_get(sdp, make_kqid_uid(uid), qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000524 if (error)
525 goto out;
Bob Peterson5407e242012-05-18 09:28:23 -0400526 ip->i_res->rs_qa_qd_num++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000527 qd++;
528 }
529
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -0800530 if (!gid_eq(gid, NO_GID_QUOTA_CHANGE) &&
531 !gid_eq(gid, ip->i_inode.i_gid)) {
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800532 error = qdsb_get(sdp, make_kqid_gid(gid), qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000533 if (error)
534 goto out;
Bob Peterson5407e242012-05-18 09:28:23 -0400535 ip->i_res->rs_qa_qd_num++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000536 qd++;
537 }
538
Steven Whitehousea91ea692006-09-04 12:04:26 -0400539out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000540 if (error)
541 gfs2_quota_unhold(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000542 return error;
543}
544
545void gfs2_quota_unhold(struct gfs2_inode *ip)
546{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400547 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000548 unsigned int x;
549
Bob Peterson5407e242012-05-18 09:28:23 -0400550 if (ip->i_res == NULL)
551 return;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000552 gfs2_assert_warn(sdp, !test_bit(GIF_QD_LOCKED, &ip->i_flags));
553
Bob Peterson5407e242012-05-18 09:28:23 -0400554 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
555 qdsb_put(ip->i_res->rs_qa_qd[x]);
556 ip->i_res->rs_qa_qd[x] = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000557 }
Bob Peterson5407e242012-05-18 09:28:23 -0400558 ip->i_res->rs_qa_qd_num = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000559}
560
561static int sort_qd(const void *a, const void *b)
562{
Steven Whitehouse48fac172006-09-05 15:17:12 -0400563 const struct gfs2_quota_data *qd_a = *(const struct gfs2_quota_data **)a;
564 const struct gfs2_quota_data *qd_b = *(const struct gfs2_quota_data **)b;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000565
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800566 if (qid_lt(qd_a->qd_id, qd_b->qd_id))
Steven Whitehouse48fac172006-09-05 15:17:12 -0400567 return -1;
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800568 if (qid_lt(qd_b->qd_id, qd_a->qd_id))
Steven Whitehouse48fac172006-09-05 15:17:12 -0400569 return 1;
Steven Whitehouse48fac172006-09-05 15:17:12 -0400570 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000571}
572
Steven Whitehousecd915492006-09-04 12:49:07 -0400573static void do_qc(struct gfs2_quota_data *qd, s64 change)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000574{
575 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400576 struct gfs2_inode *ip = GFS2_I(sdp->sd_qc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000577 struct gfs2_quota_change *qc = qd->qd_bh_qc;
Steven Whitehousecd915492006-09-04 12:49:07 -0400578 s64 x;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000579
Steven Whitehousef55ab262006-02-21 12:51:39 +0000580 mutex_lock(&sdp->sd_quota_mutex);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000581 gfs2_trans_add_meta(ip->i_gl, qd->qd_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000582
583 if (!test_bit(QDF_CHANGE, &qd->qd_flags)) {
584 qc->qc_change = 0;
585 qc->qc_flags = 0;
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800586 if (qd->qd_id.type == USRQUOTA)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000587 qc->qc_flags = cpu_to_be32(GFS2_QCF_USER);
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800588 qc->qc_id = cpu_to_be32(from_kqid(&init_user_ns, qd->qd_id));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589 }
590
Al Virob44b84d2006-10-14 10:46:30 -0400591 x = be64_to_cpu(qc->qc_change) + change;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000592 qc->qc_change = cpu_to_be64(x);
593
Steven Whitehouse22077f52009-01-08 14:28:42 +0000594 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000595 qd->qd_change = x;
Steven Whitehouse22077f52009-01-08 14:28:42 +0000596 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000597
598 if (!x) {
599 gfs2_assert_warn(sdp, test_bit(QDF_CHANGE, &qd->qd_flags));
600 clear_bit(QDF_CHANGE, &qd->qd_flags);
601 qc->qc_flags = 0;
602 qc->qc_id = 0;
603 slot_put(qd);
604 qd_put(qd);
605 } else if (!test_and_set_bit(QDF_CHANGE, &qd->qd_flags)) {
606 qd_hold(qd);
607 slot_hold(qd);
608 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400609
Steven Whitehousef55ab262006-02-21 12:51:39 +0000610 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000611}
612
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000613/**
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100614 * gfs2_adjust_quota - adjust record of current block usage
615 * @ip: The quota inode
616 * @loc: Offset of the entry in the quota file
Steven Whitehousee285c102009-09-23 13:50:49 +0100617 * @change: The amount of usage change to record
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100618 * @qd: The quota data
Steven Whitehousee285c102009-09-23 13:50:49 +0100619 * @fdq: The updated limits to record
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000620 *
621 * This function was mostly borrowed from gfs2_block_truncate_page which was
622 * in turn mostly borrowed from ext3
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100623 *
624 * Returns: 0 or -ve on error
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000625 */
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100626
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000627static int gfs2_adjust_quota(struct gfs2_inode *ip, loff_t loc,
Steven Whitehousee285c102009-09-23 13:50:49 +0100628 s64 change, struct gfs2_quota_data *qd,
629 struct fs_disk_quota *fdq)
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000630{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400631 struct inode *inode = &ip->i_inode;
Abhijith Das14870b42010-11-18 11:24:24 -0500632 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000633 struct address_space *mapping = inode->i_mapping;
634 unsigned long index = loc >> PAGE_CACHE_SHIFT;
Abhijith Das1990e912007-05-31 17:52:02 -0500635 unsigned offset = loc & (PAGE_CACHE_SIZE - 1);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000636 unsigned blocksize, iblock, pos;
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100637 struct buffer_head *bh;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000638 struct page *page;
Abhijith Das7e619bc2010-05-07 17:50:18 -0400639 void *kaddr, *ptr;
640 struct gfs2_quota q, *qp;
641 int err, nbytes;
Steven Whitehousee285c102009-09-23 13:50:49 +0100642 u64 size;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000643
Steven Whitehouse891a8e92011-09-19 10:25:49 +0100644 if (gfs2_is_stuffed(ip)) {
645 err = gfs2_unstuff_dinode(ip, NULL);
646 if (err)
647 return err;
648 }
Abhijith Das7e619bc2010-05-07 17:50:18 -0400649
650 memset(&q, 0, sizeof(struct gfs2_quota));
Andrew Price43066292012-04-16 16:40:55 +0100651 err = gfs2_internal_read(ip, (char *)&q, &loc, sizeof(q));
Abhijith Das7e619bc2010-05-07 17:50:18 -0400652 if (err < 0)
653 return err;
654
655 err = -EIO;
656 qp = &q;
657 qp->qu_value = be64_to_cpu(qp->qu_value);
658 qp->qu_value += change;
659 qp->qu_value = cpu_to_be64(qp->qu_value);
660 qd->qd_qb.qb_value = qp->qu_value;
661 if (fdq) {
662 if (fdq->d_fieldmask & FS_DQ_BSOFT) {
Abhijith Das14870b42010-11-18 11:24:24 -0500663 qp->qu_warn = cpu_to_be64(fdq->d_blk_softlimit >> sdp->sd_fsb2bb_shift);
Abhijith Das7e619bc2010-05-07 17:50:18 -0400664 qd->qd_qb.qb_warn = qp->qu_warn;
665 }
666 if (fdq->d_fieldmask & FS_DQ_BHARD) {
Abhijith Das14870b42010-11-18 11:24:24 -0500667 qp->qu_limit = cpu_to_be64(fdq->d_blk_hardlimit >> sdp->sd_fsb2bb_shift);
Abhijith Das7e619bc2010-05-07 17:50:18 -0400668 qd->qd_qb.qb_limit = qp->qu_limit;
669 }
Abhijith Das802ec9b2010-11-18 11:26:46 -0500670 if (fdq->d_fieldmask & FS_DQ_BCOUNT) {
671 qp->qu_value = cpu_to_be64(fdq->d_bcount >> sdp->sd_fsb2bb_shift);
672 qd->qd_qb.qb_value = qp->qu_value;
673 }
Abhijith Das7e619bc2010-05-07 17:50:18 -0400674 }
675
676 /* Write the quota into the quota file on disk */
677 ptr = qp;
678 nbytes = sizeof(struct gfs2_quota);
679get_a_page:
Bob Peterson220cca22012-03-19 15:25:50 -0400680 page = find_or_create_page(mapping, index, GFP_NOFS);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000681 if (!page)
682 return -ENOMEM;
683
684 blocksize = inode->i_sb->s_blocksize;
685 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
686
687 if (!page_has_buffers(page))
688 create_empty_buffers(page, blocksize, 0);
689
690 bh = page_buffers(page);
691 pos = blocksize;
692 while (offset >= pos) {
693 bh = bh->b_this_page;
694 iblock++;
695 pos += blocksize;
696 }
697
698 if (!buffer_mapped(bh)) {
Bob Petersone9e1ef22007-12-10 14:13:27 -0600699 gfs2_block_map(inode, iblock, bh, 1);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000700 if (!buffer_mapped(bh))
Abhijith Das7e619bc2010-05-07 17:50:18 -0400701 goto unlock_out;
702 /* If it's a newly allocated disk block for quota, zero it */
Abhijith Das8b421602010-07-04 01:33:24 -0400703 if (buffer_new(bh))
704 zero_user(page, pos - blocksize, bh->b_size);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000705 }
706
707 if (PageUptodate(page))
708 set_buffer_uptodate(bh);
709
710 if (!buffer_uptodate(bh)) {
Steven Whitehouse20ed0532011-10-31 09:52:02 +0000711 ll_rw_block(READ | REQ_META, 1, &bh);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000712 wait_on_buffer(bh);
713 if (!buffer_uptodate(bh))
Abhijith Das7e619bc2010-05-07 17:50:18 -0400714 goto unlock_out;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000715 }
716
Bob Peterson37f71572013-05-10 11:59:18 -0400717 gfs2_trans_add_data(ip->i_gl, bh);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000718
Cong Wangd9349282011-11-25 23:14:30 +0800719 kaddr = kmap_atomic(page);
Abhijith Das7e619bc2010-05-07 17:50:18 -0400720 if (offset + sizeof(struct gfs2_quota) > PAGE_CACHE_SIZE)
721 nbytes = PAGE_CACHE_SIZE - offset;
722 memcpy(kaddr + offset, ptr, nbytes);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000723 flush_dcache_page(page);
Cong Wangd9349282011-11-25 23:14:30 +0800724 kunmap_atomic(kaddr);
Abhijith Das7e619bc2010-05-07 17:50:18 -0400725 unlock_page(page);
726 page_cache_release(page);
Steven Whitehousee285c102009-09-23 13:50:49 +0100727
Abhijith Das7e619bc2010-05-07 17:50:18 -0400728 /* If quota straddles page boundary, we need to update the rest of the
729 * quota at the beginning of the next page */
Abhijith Das8b421602010-07-04 01:33:24 -0400730 if ((offset + sizeof(struct gfs2_quota)) > PAGE_CACHE_SIZE) {
Abhijith Das7e619bc2010-05-07 17:50:18 -0400731 ptr = ptr + nbytes;
732 nbytes = sizeof(struct gfs2_quota) - nbytes;
733 offset = 0;
734 index++;
735 goto get_a_page;
736 }
737
Steven Whitehousee285c102009-09-23 13:50:49 +0100738 size = loc + sizeof(struct gfs2_quota);
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100739 if (size > inode->i_size)
Steven Whitehousee285c102009-09-23 13:50:49 +0100740 i_size_write(inode, size);
Steven Whitehousee285c102009-09-23 13:50:49 +0100741 inode->i_mtime = inode->i_atime = CURRENT_TIME;
Steven Whitehousee285c102009-09-23 13:50:49 +0100742 mark_inode_dirty(inode);
Bob Peterson500242a2012-05-15 14:51:54 -0400743 return 0;
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100744
Abhijith Das7e619bc2010-05-07 17:50:18 -0400745unlock_out:
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000746 unlock_page(page);
747 page_cache_release(page);
748 return err;
749}
750
David Teiglandb3b94fa2006-01-16 16:50:04 +0000751static int do_sync(unsigned int num_qd, struct gfs2_quota_data **qda)
752{
753 struct gfs2_sbd *sdp = (*qda)->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400754 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
Steven Whitehouse7b9cff42013-10-02 11:13:25 +0100755 struct gfs2_alloc_parms ap = { .aflags = 0, };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000756 unsigned int data_blocks, ind_blocks;
757 struct gfs2_holder *ghs, i_gh;
758 unsigned int qx, x;
759 struct gfs2_quota_data *qd;
Steven Whitehouse71f890f2012-07-30 14:53:19 +0100760 unsigned reserved;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000761 loff_t offset;
Abhijith Das20b95bf2008-03-06 17:43:52 -0600762 unsigned int nalloc = 0, blocks;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000763 int error;
764
Bob Peterson0a305e42012-06-06 11:17:59 +0100765 error = gfs2_rs_alloc(ip);
766 if (error)
767 return error;
768
David Teiglandb3b94fa2006-01-16 16:50:04 +0000769 gfs2_write_calc_reserv(ip, sizeof(struct gfs2_quota),
770 &data_blocks, &ind_blocks);
771
Josef Bacik16c5f062008-04-09 09:33:41 -0400772 ghs = kcalloc(num_qd, sizeof(struct gfs2_holder), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000773 if (!ghs)
774 return -ENOMEM;
775
776 sort(qda, num_qd, sizeof(struct gfs2_quota_data *), sort_qd, NULL);
Jan Kara56aa72d2012-09-05 16:55:11 -0400777 mutex_lock(&ip->i_inode.i_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000778 for (qx = 0; qx < num_qd; qx++) {
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100779 error = gfs2_glock_nq_init(qda[qx]->qd_gl, LM_ST_EXCLUSIVE,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000780 GL_NOCACHE, &ghs[qx]);
781 if (error)
782 goto out;
783 }
784
785 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
786 if (error)
787 goto out;
788
789 for (x = 0; x < num_qd; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000790 offset = qd2offset(qda[x]);
Bob Peterson461cb412010-06-24 19:21:20 -0400791 if (gfs2_write_alloc_required(ip, offset,
792 sizeof(struct gfs2_quota)))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000793 nalloc++;
794 }
795
Abhijith Das20b95bf2008-03-06 17:43:52 -0600796 /*
797 * 1 blk for unstuffing inode if stuffed. We add this extra
798 * block to the reservation unconditionally. If the inode
799 * doesn't need unstuffing, the block will be released to the
800 * rgrp since it won't be allocated during the transaction
801 */
Abhijith Das7e619bc2010-05-07 17:50:18 -0400802 /* +3 in the end for unstuffing block, inode size update block
803 * and another block in case quota straddles page boundary and
804 * two blocks need to be updated instead of 1 */
805 blocks = num_qd * data_blocks + RES_DINODE + num_qd + 3;
Abhijith Das20b95bf2008-03-06 17:43:52 -0600806
Steven Whitehouse71f890f2012-07-30 14:53:19 +0100807 reserved = 1 + (nalloc * (data_blocks + ind_blocks));
Steven Whitehouse7b9cff42013-10-02 11:13:25 +0100808 ap.target = reserved;
809 error = gfs2_inplace_reserve(ip, &ap);
Abhijith Das20b95bf2008-03-06 17:43:52 -0600810 if (error)
811 goto out_alloc;
812
813 if (nalloc)
Steven Whitehouse71f890f2012-07-30 14:53:19 +0100814 blocks += gfs2_rg_blocks(ip, reserved) + nalloc * ind_blocks + RES_STATFS;
Abhijith Das20b95bf2008-03-06 17:43:52 -0600815
816 error = gfs2_trans_begin(sdp, blocks, 0);
817 if (error)
818 goto out_ipres;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000819
820 for (x = 0; x < num_qd; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000821 qd = qda[x];
822 offset = qd2offset(qd);
Steven Whitehousee285c102009-09-23 13:50:49 +0100823 error = gfs2_adjust_quota(ip, offset, qd->qd_change_sync, qd, NULL);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000824 if (error)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000825 goto out_end_trans;
826
David Teiglandb3b94fa2006-01-16 16:50:04 +0000827 do_qc(qd, -qd->qd_change_sync);
Abhijith Das662e3a52011-03-08 10:40:42 -0500828 set_bit(QDF_REFRESH, &qd->qd_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000829 }
830
831 error = 0;
832
Steven Whitehousea91ea692006-09-04 12:04:26 -0400833out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000834 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400835out_ipres:
Abhijith Das20b95bf2008-03-06 17:43:52 -0600836 gfs2_inplace_release(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400837out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000838 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400839out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000840 while (qx--)
841 gfs2_glock_dq_uninit(&ghs[qx]);
Steven Whitehousee285c102009-09-23 13:50:49 +0100842 mutex_unlock(&ip->i_inode.i_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000843 kfree(ghs);
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400844 gfs2_log_flush(ip->i_gl->gl_sbd, ip->i_gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000845 return error;
846}
847
Steven Whitehousee285c102009-09-23 13:50:49 +0100848static int update_qd(struct gfs2_sbd *sdp, struct gfs2_quota_data *qd)
849{
850 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
851 struct gfs2_quota q;
852 struct gfs2_quota_lvb *qlvb;
853 loff_t pos;
854 int error;
855
856 memset(&q, 0, sizeof(struct gfs2_quota));
857 pos = qd2offset(qd);
Andrew Price43066292012-04-16 16:40:55 +0100858 error = gfs2_internal_read(ip, (char *)&q, &pos, sizeof(q));
Steven Whitehousee285c102009-09-23 13:50:49 +0100859 if (error < 0)
860 return error;
861
David Teigland4e2f8842012-11-14 13:47:37 -0500862 qlvb = (struct gfs2_quota_lvb *)qd->qd_gl->gl_lksb.sb_lvbptr;
Steven Whitehousee285c102009-09-23 13:50:49 +0100863 qlvb->qb_magic = cpu_to_be32(GFS2_MAGIC);
864 qlvb->__pad = 0;
865 qlvb->qb_limit = q.qu_limit;
866 qlvb->qb_warn = q.qu_warn;
867 qlvb->qb_value = q.qu_value;
868 qd->qd_qb = *qlvb;
869
870 return 0;
871}
872
David Teiglandb3b94fa2006-01-16 16:50:04 +0000873static int do_glock(struct gfs2_quota_data *qd, int force_refresh,
874 struct gfs2_holder *q_gh)
875{
876 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400877 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000878 struct gfs2_holder i_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879 int error;
880
Steven Whitehousea91ea692006-09-04 12:04:26 -0400881restart:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000882 error = gfs2_glock_nq_init(qd->qd_gl, LM_ST_SHARED, 0, q_gh);
883 if (error)
884 return error;
885
David Teigland4e2f8842012-11-14 13:47:37 -0500886 qd->qd_qb = *(struct gfs2_quota_lvb *)qd->qd_gl->gl_lksb.sb_lvbptr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000887
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400888 if (force_refresh || qd->qd_qb.qb_magic != cpu_to_be32(GFS2_MAGIC)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000889 gfs2_glock_dq_uninit(q_gh);
Steven Whitehouse91094d02009-09-11 15:21:56 +0100890 error = gfs2_glock_nq_init(qd->qd_gl, LM_ST_EXCLUSIVE,
891 GL_NOCACHE, q_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000892 if (error)
893 return error;
894
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400895 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000896 if (error)
897 goto fail;
898
Steven Whitehousee285c102009-09-23 13:50:49 +0100899 error = update_qd(sdp, qd);
900 if (error)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000901 goto fail_gunlock;
Steven Whitehousee285c102009-09-23 13:50:49 +0100902
David Teiglandb3b94fa2006-01-16 16:50:04 +0000903 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehouse91094d02009-09-11 15:21:56 +0100904 gfs2_glock_dq_uninit(q_gh);
905 force_refresh = 0;
906 goto restart;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000907 }
908
909 return 0;
910
Steven Whitehousea91ea692006-09-04 12:04:26 -0400911fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000912 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400913fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000914 gfs2_glock_dq_uninit(q_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000915 return error;
916}
917
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -0800918int gfs2_quota_lock(struct gfs2_inode *ip, kuid_t uid, kgid_t gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000919{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400920 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Abhijith Das662e3a52011-03-08 10:40:42 -0500921 struct gfs2_quota_data *qd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000922 unsigned int x;
923 int error = 0;
924
Steven Whitehouse891a8e92011-09-19 10:25:49 +0100925 error = gfs2_quota_hold(ip, uid, gid);
926 if (error)
927 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928
929 if (capable(CAP_SYS_RESOURCE) ||
930 sdp->sd_args.ar_quota != GFS2_QUOTA_ON)
931 return 0;
932
Bob Peterson5407e242012-05-18 09:28:23 -0400933 sort(ip->i_res->rs_qa_qd, ip->i_res->rs_qa_qd_num,
934 sizeof(struct gfs2_quota_data *), sort_qd, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000935
Bob Peterson5407e242012-05-18 09:28:23 -0400936 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
Abhijith Das662e3a52011-03-08 10:40:42 -0500937 int force = NO_FORCE;
Bob Peterson5407e242012-05-18 09:28:23 -0400938 qd = ip->i_res->rs_qa_qd[x];
Abhijith Das662e3a52011-03-08 10:40:42 -0500939 if (test_and_clear_bit(QDF_REFRESH, &qd->qd_flags))
940 force = FORCE;
Bob Peterson5407e242012-05-18 09:28:23 -0400941 error = do_glock(qd, force, &ip->i_res->rs_qa_qd_ghs[x]);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000942 if (error)
943 break;
944 }
945
946 if (!error)
947 set_bit(GIF_QD_LOCKED, &ip->i_flags);
948 else {
949 while (x--)
Bob Peterson5407e242012-05-18 09:28:23 -0400950 gfs2_glock_dq_uninit(&ip->i_res->rs_qa_qd_ghs[x]);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000951 gfs2_quota_unhold(ip);
952 }
953
954 return error;
955}
956
957static int need_sync(struct gfs2_quota_data *qd)
958{
959 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
960 struct gfs2_tune *gt = &sdp->sd_tune;
Steven Whitehousecd915492006-09-04 12:49:07 -0400961 s64 value;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962 unsigned int num, den;
963 int do_sync = 1;
964
965 if (!qd->qd_qb.qb_limit)
966 return 0;
967
Steven Whitehouse22077f52009-01-08 14:28:42 +0000968 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000969 value = qd->qd_change;
Steven Whitehouse22077f52009-01-08 14:28:42 +0000970 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000971
972 spin_lock(&gt->gt_spin);
973 num = gt->gt_quota_scale_num;
974 den = gt->gt_quota_scale_den;
975 spin_unlock(&gt->gt_spin);
976
977 if (value < 0)
978 do_sync = 0;
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400979 else if ((s64)be64_to_cpu(qd->qd_qb.qb_value) >=
980 (s64)be64_to_cpu(qd->qd_qb.qb_limit))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000981 do_sync = 0;
982 else {
983 value *= gfs2_jindex_size(sdp) * num;
David Howells4abaca172008-07-11 14:39:56 +0100984 value = div_s64(value, den);
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400985 value += (s64)be64_to_cpu(qd->qd_qb.qb_value);
Steven Whitehousecd915492006-09-04 12:49:07 -0400986 if (value < (s64)be64_to_cpu(qd->qd_qb.qb_limit))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000987 do_sync = 0;
988 }
989
990 return do_sync;
991}
992
993void gfs2_quota_unlock(struct gfs2_inode *ip)
994{
Steven Whitehouseaabd7c72013-10-04 11:31:05 +0100995 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000996 struct gfs2_quota_data *qda[4];
997 unsigned int count = 0;
998 unsigned int x;
Steven Whitehouseaabd7c72013-10-04 11:31:05 +0100999 int found;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001000
1001 if (!test_and_clear_bit(GIF_QD_LOCKED, &ip->i_flags))
1002 goto out;
1003
Bob Peterson5407e242012-05-18 09:28:23 -04001004 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001005 struct gfs2_quota_data *qd;
1006 int sync;
1007
Bob Peterson5407e242012-05-18 09:28:23 -04001008 qd = ip->i_res->rs_qa_qd[x];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001009 sync = need_sync(qd);
1010
Bob Peterson5407e242012-05-18 09:28:23 -04001011 gfs2_glock_dq_uninit(&ip->i_res->rs_qa_qd_ghs[x]);
Steven Whitehouseaabd7c72013-10-04 11:31:05 +01001012 if (!sync)
1013 continue;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001014
Steven Whitehouseaabd7c72013-10-04 11:31:05 +01001015 spin_lock(&qd_lru_lock);
1016 found = qd_check_sync(sdp, qd, NULL);
1017 spin_unlock(&qd_lru_lock);
1018
1019 if (!found)
1020 continue;
1021
1022 gfs2_assert_warn(sdp, qd->qd_change_sync);
1023 if (bh_get(qd)) {
1024 clear_bit(QDF_LOCKED, &qd->qd_flags);
1025 slot_put(qd);
1026 qd_put(qd);
1027 continue;
1028 }
1029
1030 qda[count++] = qd;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001031 }
1032
1033 if (count) {
1034 do_sync(count, qda);
1035 for (x = 0; x < count; x++)
1036 qd_unlock(qda[x]);
1037 }
1038
Steven Whitehousea91ea692006-09-04 12:04:26 -04001039out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001040 gfs2_quota_unhold(ip);
1041}
1042
1043#define MAX_LINE 256
1044
1045static int print_message(struct gfs2_quota_data *qd, char *type)
1046{
1047 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001048
Steven Whitehouse2ec46502009-09-28 12:49:15 +01001049 printk(KERN_INFO "GFS2: fsid=%s: quota %s for %s %u\n",
Steven Whitehouse02630a12006-07-03 11:20:06 -04001050 sdp->sd_fsname, type,
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001051 (qd->qd_id.type == USRQUOTA) ? "user" : "group",
1052 from_kqid(&init_user_ns, qd->qd_id));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001053
1054 return 0;
1055}
1056
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -08001057int gfs2_quota_check(struct gfs2_inode *ip, kuid_t uid, kgid_t gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001059 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001060 struct gfs2_quota_data *qd;
Steven Whitehousecd915492006-09-04 12:49:07 -04001061 s64 value;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001062 unsigned int x;
1063 int error = 0;
1064
1065 if (!test_bit(GIF_QD_LOCKED, &ip->i_flags))
1066 return 0;
1067
1068 if (sdp->sd_args.ar_quota != GFS2_QUOTA_ON)
1069 return 0;
1070
Bob Peterson5407e242012-05-18 09:28:23 -04001071 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
1072 qd = ip->i_res->rs_qa_qd[x];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001073
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001074 if (!(qid_eq(qd->qd_id, make_kqid_uid(uid)) ||
1075 qid_eq(qd->qd_id, make_kqid_gid(gid))))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001076 continue;
1077
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04001078 value = (s64)be64_to_cpu(qd->qd_qb.qb_value);
Steven Whitehouse22077f52009-01-08 14:28:42 +00001079 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001080 value += qd->qd_change;
Steven Whitehouse22077f52009-01-08 14:28:42 +00001081 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001082
Steven Whitehousecd915492006-09-04 12:49:07 -04001083 if (be64_to_cpu(qd->qd_qb.qb_limit) && (s64)be64_to_cpu(qd->qd_qb.qb_limit) < value) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001084 print_message(qd, "exceeded");
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001085 quota_send_warning(qd->qd_id,
Steven Whitehouse2ec46502009-09-28 12:49:15 +01001086 sdp->sd_vfs->s_dev, QUOTA_NL_BHARDWARN);
1087
David Teiglandb3b94fa2006-01-16 16:50:04 +00001088 error = -EDQUOT;
1089 break;
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04001090 } else if (be64_to_cpu(qd->qd_qb.qb_warn) &&
Steven Whitehousecd915492006-09-04 12:49:07 -04001091 (s64)be64_to_cpu(qd->qd_qb.qb_warn) < value &&
David Teiglandb3b94fa2006-01-16 16:50:04 +00001092 time_after_eq(jiffies, qd->qd_last_warn +
Steven Whitehouse568f4c92006-02-27 12:00:42 -05001093 gfs2_tune_get(sdp,
1094 gt_quota_warn_period) * HZ)) {
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001095 quota_send_warning(qd->qd_id,
Steven Whitehouse2ec46502009-09-28 12:49:15 +01001096 sdp->sd_vfs->s_dev, QUOTA_NL_BSOFTWARN);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001097 error = print_message(qd, "warning");
1098 qd->qd_last_warn = jiffies;
1099 }
1100 }
1101
1102 return error;
1103}
1104
Steven Whitehousecd915492006-09-04 12:49:07 -04001105void gfs2_quota_change(struct gfs2_inode *ip, s64 change,
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -08001106 kuid_t uid, kgid_t gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001107{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001108 struct gfs2_quota_data *qd;
1109 unsigned int x;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001110
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001111 if (gfs2_assert_warn(GFS2_SB(&ip->i_inode), change))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001112 return;
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001113 if (ip->i_diskflags & GFS2_DIF_SYSTEM)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001114 return;
1115
Bob Peterson5407e242012-05-18 09:28:23 -04001116 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
1117 qd = ip->i_res->rs_qa_qd[x];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001118
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001119 if (qid_eq(qd->qd_id, make_kqid_uid(uid)) ||
1120 qid_eq(qd->qd_id, make_kqid_gid(gid))) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001121 do_qc(qd, change);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001122 }
1123 }
1124}
1125
Jan Karaceed1722012-07-03 16:45:28 +02001126int gfs2_quota_sync(struct super_block *sb, int type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001127{
Steven Whitehouse8c42d632009-09-11 14:36:44 +01001128 struct gfs2_sbd *sdp = sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001129 struct gfs2_quota_data **qda;
Steven Whitehousebef292a2013-10-03 18:43:20 +01001130 unsigned int max_qd = PAGE_SIZE/sizeof(struct gfs2_holder);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001131 unsigned int num_qd;
1132 unsigned int x;
1133 int error = 0;
1134
1135 sdp->sd_quota_sync_gen++;
1136
1137 qda = kcalloc(max_qd, sizeof(struct gfs2_quota_data *), GFP_KERNEL);
1138 if (!qda)
1139 return -ENOMEM;
1140
1141 do {
1142 num_qd = 0;
1143
1144 for (;;) {
1145 error = qd_fish(sdp, qda + num_qd);
1146 if (error || !qda[num_qd])
1147 break;
1148 if (++num_qd == max_qd)
1149 break;
1150 }
1151
1152 if (num_qd) {
1153 if (!error)
1154 error = do_sync(num_qd, qda);
1155 if (!error)
1156 for (x = 0; x < num_qd; x++)
1157 qda[x]->qd_sync_gen =
1158 sdp->sd_quota_sync_gen;
1159
1160 for (x = 0; x < num_qd; x++)
1161 qd_unlock(qda[x]);
1162 }
1163 } while (!error && num_qd == max_qd);
1164
1165 kfree(qda);
1166
1167 return error;
1168}
1169
Eric W. Biedermaned87dab2013-01-31 19:42:40 -08001170int gfs2_quota_refresh(struct gfs2_sbd *sdp, struct kqid qid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001171{
1172 struct gfs2_quota_data *qd;
1173 struct gfs2_holder q_gh;
1174 int error;
1175
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001176 error = qd_get(sdp, qid, &qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001177 if (error)
1178 return error;
1179
1180 error = do_glock(qd, FORCE, &q_gh);
1181 if (!error)
1182 gfs2_glock_dq_uninit(&q_gh);
1183
1184 qd_put(qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001185 return error;
1186}
1187
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001188static void gfs2_quota_change_in(struct gfs2_quota_change_host *qc, const void *buf)
1189{
1190 const struct gfs2_quota_change *str = buf;
1191
1192 qc->qc_change = be64_to_cpu(str->qc_change);
1193 qc->qc_flags = be32_to_cpu(str->qc_flags);
Eric W. Biedermane08d8d72013-01-31 19:25:50 -08001194 qc->qc_id = make_kqid(&init_user_ns,
1195 (qc->qc_flags & GFS2_QCF_USER)?USRQUOTA:GRPQUOTA,
1196 be32_to_cpu(str->qc_id));
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001197}
1198
David Teiglandb3b94fa2006-01-16 16:50:04 +00001199int gfs2_quota_init(struct gfs2_sbd *sdp)
1200{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001201 struct gfs2_inode *ip = GFS2_I(sdp->sd_qc_inode);
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001202 u64 size = i_size_read(sdp->sd_qc_inode);
1203 unsigned int blocks = size >> sdp->sd_sb.sb_bsize_shift;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001204 unsigned int x, slot = 0;
1205 unsigned int found = 0;
Steven Whitehousecd915492006-09-04 12:49:07 -04001206 u64 dblock;
1207 u32 extlen = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001208 int error;
1209
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001210 if (gfs2_check_internal_file_size(sdp->sd_qc_inode, 1, 64 << 20))
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001211 return -EIO;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001212
David Teiglandb3b94fa2006-01-16 16:50:04 +00001213 sdp->sd_quota_slots = blocks * sdp->sd_qc_per_block;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001214 sdp->sd_quota_chunks = DIV_ROUND_UP(sdp->sd_quota_slots, 8 * PAGE_SIZE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001215
1216 error = -ENOMEM;
1217
1218 sdp->sd_quota_bitmap = kcalloc(sdp->sd_quota_chunks,
Josef Bacik16c5f062008-04-09 09:33:41 -04001219 sizeof(unsigned char *), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001220 if (!sdp->sd_quota_bitmap)
1221 return error;
1222
1223 for (x = 0; x < sdp->sd_quota_chunks; x++) {
Josef Bacik16c5f062008-04-09 09:33:41 -04001224 sdp->sd_quota_bitmap[x] = kzalloc(PAGE_SIZE, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001225 if (!sdp->sd_quota_bitmap[x])
1226 goto fail;
1227 }
1228
1229 for (x = 0; x < blocks; x++) {
1230 struct buffer_head *bh;
1231 unsigned int y;
1232
1233 if (!extlen) {
1234 int new = 0;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001235 error = gfs2_extent_map(&ip->i_inode, x, &new, &dblock, &extlen);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001236 if (error)
1237 goto fail;
1238 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001239 error = -EIO;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001240 bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
1241 if (!bh)
1242 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001243 if (gfs2_metatype_check(sdp, bh, GFS2_METATYPE_QC)) {
1244 brelse(bh);
1245 goto fail;
1246 }
1247
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001248 for (y = 0; y < sdp->sd_qc_per_block && slot < sdp->sd_quota_slots;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001249 y++, slot++) {
Al Virob62f9632006-10-13 23:46:46 -04001250 struct gfs2_quota_change_host qc;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001251 struct gfs2_quota_data *qd;
1252
1253 gfs2_quota_change_in(&qc, bh->b_data +
1254 sizeof(struct gfs2_meta_header) +
1255 y * sizeof(struct gfs2_quota_change));
1256 if (!qc.qc_change)
1257 continue;
1258
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001259 error = qd_alloc(sdp, qc.qc_id, &qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001260 if (error) {
1261 brelse(bh);
1262 goto fail;
1263 }
1264
1265 set_bit(QDF_CHANGE, &qd->qd_flags);
1266 qd->qd_change = qc.qc_change;
1267 qd->qd_slot = slot;
1268 qd->qd_slot_count = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001269
Abhijith Das0a7ab792009-01-07 16:03:37 -06001270 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001271 gfs2_icbit_munge(sdp, sdp->sd_quota_bitmap, slot, 1);
1272 list_add(&qd->qd_list, &sdp->sd_quota_list);
1273 atomic_inc(&sdp->sd_quota_count);
Abhijith Das0a7ab792009-01-07 16:03:37 -06001274 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001275
1276 found++;
1277 }
1278
1279 brelse(bh);
1280 dblock++;
1281 extlen--;
1282 }
1283
1284 if (found)
1285 fs_info(sdp, "found %u quota changes\n", found);
1286
1287 return 0;
1288
Steven Whitehousea91ea692006-09-04 12:04:26 -04001289fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001290 gfs2_quota_cleanup(sdp);
1291 return error;
1292}
1293
David Teiglandb3b94fa2006-01-16 16:50:04 +00001294void gfs2_quota_cleanup(struct gfs2_sbd *sdp)
1295{
1296 struct list_head *head = &sdp->sd_quota_list;
1297 struct gfs2_quota_data *qd;
1298 unsigned int x;
1299
Abhijith Das0a7ab792009-01-07 16:03:37 -06001300 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001301 while (!list_empty(head)) {
1302 qd = list_entry(head->prev, struct gfs2_quota_data, qd_list);
1303
Abhijith Das0a7ab792009-01-07 16:03:37 -06001304 if (atomic_read(&qd->qd_count) > 1 ||
1305 (atomic_read(&qd->qd_count) &&
1306 !test_bit(QDF_CHANGE, &qd->qd_flags))) {
Abhijith Das0a7ab792009-01-07 16:03:37 -06001307 list_move(&qd->qd_list, head);
1308 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001309 schedule();
Abhijith Das0a7ab792009-01-07 16:03:37 -06001310 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001311 continue;
1312 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001313
Abhijith Das0a7ab792009-01-07 16:03:37 -06001314 list_del(&qd->qd_list);
1315 /* Also remove if this qd exists in the reclaim list */
1316 if (!list_empty(&qd->qd_reclaim)) {
1317 list_del_init(&qd->qd_reclaim);
1318 atomic_dec(&qd_lru_count);
1319 }
1320 atomic_dec(&sdp->sd_quota_count);
1321 spin_unlock(&qd_lru_lock);
1322
1323 if (!atomic_read(&qd->qd_count)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001324 gfs2_assert_warn(sdp, !qd->qd_change);
1325 gfs2_assert_warn(sdp, !qd->qd_slot_count);
1326 } else
1327 gfs2_assert_warn(sdp, qd->qd_slot_count == 1);
1328 gfs2_assert_warn(sdp, !qd->qd_bh_count);
1329
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001330 gfs2_glock_put(qd->qd_gl);
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001331 kmem_cache_free(gfs2_quotad_cachep, qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001332
Abhijith Das0a7ab792009-01-07 16:03:37 -06001333 spin_lock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001334 }
Abhijith Das0a7ab792009-01-07 16:03:37 -06001335 spin_unlock(&qd_lru_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001336
1337 gfs2_assert_warn(sdp, !atomic_read(&sdp->sd_quota_count));
1338
1339 if (sdp->sd_quota_bitmap) {
1340 for (x = 0; x < sdp->sd_quota_chunks; x++)
1341 kfree(sdp->sd_quota_bitmap[x]);
1342 kfree(sdp->sd_quota_bitmap);
1343 }
1344}
1345
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001346static void quotad_error(struct gfs2_sbd *sdp, const char *msg, int error)
1347{
1348 if (error == 0 || error == -EROFS)
1349 return;
1350 if (!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))
1351 fs_err(sdp, "gfs2_quotad: %s error %d\n", msg, error);
1352}
1353
1354static void quotad_check_timeo(struct gfs2_sbd *sdp, const char *msg,
Steven Whitehouse8c42d632009-09-11 14:36:44 +01001355 int (*fxn)(struct super_block *sb, int type),
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001356 unsigned long t, unsigned long *timeo,
1357 unsigned int *new_timeo)
1358{
1359 if (t >= *timeo) {
Steven Whitehouse8c42d632009-09-11 14:36:44 +01001360 int error = fxn(sdp->sd_vfs, 0);
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001361 quotad_error(sdp, msg, error);
1362 *timeo = gfs2_tune_get_i(&sdp->sd_tune, new_timeo) * HZ;
1363 } else {
1364 *timeo -= t;
1365 }
1366}
1367
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001368static void quotad_check_trunc_list(struct gfs2_sbd *sdp)
1369{
1370 struct gfs2_inode *ip;
1371
1372 while(1) {
1373 ip = NULL;
1374 spin_lock(&sdp->sd_trunc_lock);
1375 if (!list_empty(&sdp->sd_trunc_list)) {
1376 ip = list_entry(sdp->sd_trunc_list.next,
1377 struct gfs2_inode, i_trunc_list);
1378 list_del_init(&ip->i_trunc_list);
1379 }
1380 spin_unlock(&sdp->sd_trunc_lock);
1381 if (ip == NULL)
1382 return;
1383 gfs2_glock_finish_truncate(ip);
1384 }
1385}
1386
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001387void gfs2_wake_up_statfs(struct gfs2_sbd *sdp) {
1388 if (!sdp->sd_statfs_force_sync) {
1389 sdp->sd_statfs_force_sync = 1;
1390 wake_up(&sdp->sd_quota_wait);
1391 }
1392}
1393
1394
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001395/**
1396 * gfs2_quotad - Write cached quota changes into the quota file
1397 * @sdp: Pointer to GFS2 superblock
1398 *
1399 */
1400
1401int gfs2_quotad(void *data)
1402{
1403 struct gfs2_sbd *sdp = data;
1404 struct gfs2_tune *tune = &sdp->sd_tune;
1405 unsigned long statfs_timeo = 0;
1406 unsigned long quotad_timeo = 0;
1407 unsigned long t = 0;
1408 DEFINE_WAIT(wait);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001409 int empty;
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001410
1411 while (!kthread_should_stop()) {
1412
1413 /* Update the master statfs file */
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001414 if (sdp->sd_statfs_force_sync) {
1415 int error = gfs2_statfs_sync(sdp->sd_vfs, 0);
1416 quotad_error(sdp, "statfs", error);
1417 statfs_timeo = gfs2_tune_get(sdp, gt_statfs_quantum) * HZ;
1418 }
1419 else
1420 quotad_check_timeo(sdp, "statfs", gfs2_statfs_sync, t,
1421 &statfs_timeo,
1422 &tune->gt_statfs_quantum);
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001423
1424 /* Update quota file */
Steven Whitehouseedd2e9a2013-06-03 11:12:59 +01001425 quotad_check_timeo(sdp, "sync", gfs2_quota_sync, t,
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001426 &quotad_timeo, &tune->gt_quota_quantum);
1427
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001428 /* Check for & recover partially truncated inodes */
1429 quotad_check_trunc_list(sdp);
1430
Tejun Heoa0acae02011-11-21 12:32:22 -08001431 try_to_freeze();
1432
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001433 t = min(quotad_timeo, statfs_timeo);
1434
Steven Whitehouse7fa5d202009-03-31 15:49:08 +01001435 prepare_to_wait(&sdp->sd_quota_wait, &wait, TASK_INTERRUPTIBLE);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001436 spin_lock(&sdp->sd_trunc_lock);
1437 empty = list_empty(&sdp->sd_trunc_list);
1438 spin_unlock(&sdp->sd_trunc_lock);
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001439 if (empty && !sdp->sd_statfs_force_sync)
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001440 t -= schedule_timeout(t);
1441 else
1442 t = 0;
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001443 finish_wait(&sdp->sd_quota_wait, &wait);
1444 }
1445
1446 return 0;
1447}
1448
Steven Whitehouse1d371b52009-09-11 15:57:27 +01001449static int gfs2_quota_get_xstate(struct super_block *sb,
1450 struct fs_quota_stat *fqs)
1451{
1452 struct gfs2_sbd *sdp = sb->s_fs_info;
1453
1454 memset(fqs, 0, sizeof(struct fs_quota_stat));
1455 fqs->qs_version = FS_QSTAT_VERSION;
Christoph Hellwigad6bb902010-05-05 00:10:56 +02001456
1457 switch (sdp->sd_args.ar_quota) {
1458 case GFS2_QUOTA_ON:
Christoph Hellwigade7ce32010-06-04 10:56:01 +02001459 fqs->qs_flags |= (FS_QUOTA_UDQ_ENFD | FS_QUOTA_GDQ_ENFD);
Christoph Hellwigad6bb902010-05-05 00:10:56 +02001460 /*FALLTHRU*/
1461 case GFS2_QUOTA_ACCOUNT:
Christoph Hellwigade7ce32010-06-04 10:56:01 +02001462 fqs->qs_flags |= (FS_QUOTA_UDQ_ACCT | FS_QUOTA_GDQ_ACCT);
Christoph Hellwigad6bb902010-05-05 00:10:56 +02001463 break;
1464 case GFS2_QUOTA_OFF:
1465 break;
1466 }
1467
Steven Whitehouse1d371b52009-09-11 15:57:27 +01001468 if (sdp->sd_quota_inode) {
1469 fqs->qs_uquota.qfs_ino = GFS2_I(sdp->sd_quota_inode)->i_no_addr;
1470 fqs->qs_uquota.qfs_nblks = sdp->sd_quota_inode->i_blocks;
1471 }
1472 fqs->qs_uquota.qfs_nextents = 1; /* unsupported */
1473 fqs->qs_gquota = fqs->qs_uquota; /* its the same inode in both cases */
1474 fqs->qs_incoredqs = atomic_read(&qd_lru_count);
1475 return 0;
1476}
1477
Eric W. Biederman74a8a102012-09-16 02:07:49 -07001478static int gfs2_get_dqblk(struct super_block *sb, struct kqid qid,
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -04001479 struct fs_disk_quota *fdq)
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001480{
1481 struct gfs2_sbd *sdp = sb->s_fs_info;
1482 struct gfs2_quota_lvb *qlvb;
1483 struct gfs2_quota_data *qd;
1484 struct gfs2_holder q_gh;
1485 int error;
1486
1487 memset(fdq, 0, sizeof(struct fs_disk_quota));
1488
1489 if (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
1490 return -ESRCH; /* Crazy XFS error code */
1491
Eric W. Biederman236c64e2013-01-31 20:09:30 -08001492 if ((qid.type != USRQUOTA) &&
1493 (qid.type != GRPQUOTA))
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001494 return -EINVAL;
1495
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001496 error = qd_get(sdp, qid, &qd);
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001497 if (error)
1498 return error;
1499 error = do_glock(qd, FORCE, &q_gh);
1500 if (error)
1501 goto out;
1502
David Teigland4e2f8842012-11-14 13:47:37 -05001503 qlvb = (struct gfs2_quota_lvb *)qd->qd_gl->gl_lksb.sb_lvbptr;
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001504 fdq->d_version = FS_DQUOT_VERSION;
Eric W. Biederman236c64e2013-01-31 20:09:30 -08001505 fdq->d_flags = (qid.type == USRQUOTA) ? FS_USER_QUOTA : FS_GROUP_QUOTA;
Eric W. Biederman558e8522013-01-31 18:15:33 -08001506 fdq->d_id = from_kqid_munged(current_user_ns(), qid);
Abhijith Das14870b42010-11-18 11:24:24 -05001507 fdq->d_blk_hardlimit = be64_to_cpu(qlvb->qb_limit) << sdp->sd_fsb2bb_shift;
1508 fdq->d_blk_softlimit = be64_to_cpu(qlvb->qb_warn) << sdp->sd_fsb2bb_shift;
1509 fdq->d_bcount = be64_to_cpu(qlvb->qb_value) << sdp->sd_fsb2bb_shift;
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001510
1511 gfs2_glock_dq_uninit(&q_gh);
1512out:
1513 qd_put(qd);
1514 return error;
1515}
1516
Steven Whitehousee285c102009-09-23 13:50:49 +01001517/* GFS2 only supports a subset of the XFS fields */
Abhijith Das802ec9b2010-11-18 11:26:46 -05001518#define GFS2_FIELDMASK (FS_DQ_BSOFT|FS_DQ_BHARD|FS_DQ_BCOUNT)
Steven Whitehousee285c102009-09-23 13:50:49 +01001519
Eric W. Biederman74a8a102012-09-16 02:07:49 -07001520static int gfs2_set_dqblk(struct super_block *sb, struct kqid qid,
Christoph Hellwigc472b432010-05-06 17:05:17 -04001521 struct fs_disk_quota *fdq)
Steven Whitehousee285c102009-09-23 13:50:49 +01001522{
1523 struct gfs2_sbd *sdp = sb->s_fs_info;
1524 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
1525 struct gfs2_quota_data *qd;
1526 struct gfs2_holder q_gh, i_gh;
1527 unsigned int data_blocks, ind_blocks;
1528 unsigned int blocks = 0;
1529 int alloc_required;
Steven Whitehousee285c102009-09-23 13:50:49 +01001530 loff_t offset;
1531 int error;
1532
1533 if (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
1534 return -ESRCH; /* Crazy XFS error code */
1535
Eric W. Biederman236c64e2013-01-31 20:09:30 -08001536 if ((qid.type != USRQUOTA) &&
1537 (qid.type != GRPQUOTA))
Steven Whitehousee285c102009-09-23 13:50:49 +01001538 return -EINVAL;
Steven Whitehousee285c102009-09-23 13:50:49 +01001539
1540 if (fdq->d_fieldmask & ~GFS2_FIELDMASK)
1541 return -EINVAL;
Steven Whitehousee285c102009-09-23 13:50:49 +01001542
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001543 error = qd_get(sdp, qid, &qd);
Steven Whitehousee285c102009-09-23 13:50:49 +01001544 if (error)
1545 return error;
1546
Bob Peterson0a305e42012-06-06 11:17:59 +01001547 error = gfs2_rs_alloc(ip);
1548 if (error)
1549 goto out_put;
1550
Steven Whitehousee285c102009-09-23 13:50:49 +01001551 mutex_lock(&ip->i_inode.i_mutex);
1552 error = gfs2_glock_nq_init(qd->qd_gl, LM_ST_EXCLUSIVE, 0, &q_gh);
1553 if (error)
Bob Peterson0a305e42012-06-06 11:17:59 +01001554 goto out_unlockput;
Steven Whitehousee285c102009-09-23 13:50:49 +01001555 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
1556 if (error)
1557 goto out_q;
1558
1559 /* Check for existing entry, if none then alloc new blocks */
1560 error = update_qd(sdp, qd);
1561 if (error)
1562 goto out_i;
1563
1564 /* If nothing has changed, this is a no-op */
1565 if ((fdq->d_fieldmask & FS_DQ_BSOFT) &&
Abhijith Das14870b42010-11-18 11:24:24 -05001566 ((fdq->d_blk_softlimit >> sdp->sd_fsb2bb_shift) == be64_to_cpu(qd->qd_qb.qb_warn)))
Steven Whitehousee285c102009-09-23 13:50:49 +01001567 fdq->d_fieldmask ^= FS_DQ_BSOFT;
Abhijith Das802ec9b2010-11-18 11:26:46 -05001568
Steven Whitehousee285c102009-09-23 13:50:49 +01001569 if ((fdq->d_fieldmask & FS_DQ_BHARD) &&
Abhijith Das14870b42010-11-18 11:24:24 -05001570 ((fdq->d_blk_hardlimit >> sdp->sd_fsb2bb_shift) == be64_to_cpu(qd->qd_qb.qb_limit)))
Steven Whitehousee285c102009-09-23 13:50:49 +01001571 fdq->d_fieldmask ^= FS_DQ_BHARD;
Abhijith Das802ec9b2010-11-18 11:26:46 -05001572
1573 if ((fdq->d_fieldmask & FS_DQ_BCOUNT) &&
1574 ((fdq->d_bcount >> sdp->sd_fsb2bb_shift) == be64_to_cpu(qd->qd_qb.qb_value)))
1575 fdq->d_fieldmask ^= FS_DQ_BCOUNT;
1576
Steven Whitehousee285c102009-09-23 13:50:49 +01001577 if (fdq->d_fieldmask == 0)
1578 goto out_i;
1579
1580 offset = qd2offset(qd);
Bob Peterson461cb412010-06-24 19:21:20 -04001581 alloc_required = gfs2_write_alloc_required(ip, offset, sizeof(struct gfs2_quota));
Abhijith Dase79a46a2011-02-07 11:22:41 -05001582 if (gfs2_is_stuffed(ip))
1583 alloc_required = 1;
Steven Whitehousee285c102009-09-23 13:50:49 +01001584 if (alloc_required) {
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01001585 struct gfs2_alloc_parms ap = { .aflags = 0, };
Steven Whitehousee285c102009-09-23 13:50:49 +01001586 gfs2_write_calc_reserv(ip, sizeof(struct gfs2_quota),
1587 &data_blocks, &ind_blocks);
Bob Peterson564e12b2011-11-21 13:36:17 -05001588 blocks = 1 + data_blocks + ind_blocks;
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01001589 ap.target = blocks;
1590 error = gfs2_inplace_reserve(ip, &ap);
Steven Whitehousee285c102009-09-23 13:50:49 +01001591 if (error)
Bob Peterson564e12b2011-11-21 13:36:17 -05001592 goto out_i;
Steven Whitehouse71f890f2012-07-30 14:53:19 +01001593 blocks += gfs2_rg_blocks(ip, blocks);
Steven Whitehousee285c102009-09-23 13:50:49 +01001594 }
1595
Abhijith Dase79a46a2011-02-07 11:22:41 -05001596 /* Some quotas span block boundaries and can update two blocks,
1597 adding an extra block to the transaction to handle such quotas */
1598 error = gfs2_trans_begin(sdp, blocks + RES_DINODE + 2, 0);
Steven Whitehousee285c102009-09-23 13:50:49 +01001599 if (error)
1600 goto out_release;
1601
1602 /* Apply changes */
1603 error = gfs2_adjust_quota(ip, offset, 0, qd, fdq);
1604
1605 gfs2_trans_end(sdp);
1606out_release:
Bob Peterson564e12b2011-11-21 13:36:17 -05001607 if (alloc_required)
Steven Whitehousee285c102009-09-23 13:50:49 +01001608 gfs2_inplace_release(ip);
Steven Whitehousee285c102009-09-23 13:50:49 +01001609out_i:
1610 gfs2_glock_dq_uninit(&i_gh);
1611out_q:
1612 gfs2_glock_dq_uninit(&q_gh);
Bob Peterson0a305e42012-06-06 11:17:59 +01001613out_unlockput:
Steven Whitehousee285c102009-09-23 13:50:49 +01001614 mutex_unlock(&ip->i_inode.i_mutex);
Bob Peterson0a305e42012-06-06 11:17:59 +01001615out_put:
Steven Whitehousee285c102009-09-23 13:50:49 +01001616 qd_put(qd);
1617 return error;
1618}
1619
Steven Whitehousecc632e72009-09-15 09:59:02 +01001620const struct quotactl_ops gfs2_quotactl_ops = {
1621 .quota_sync = gfs2_quota_sync,
Steven Whitehouse1d371b52009-09-11 15:57:27 +01001622 .get_xstate = gfs2_quota_get_xstate,
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -04001623 .get_dqblk = gfs2_get_dqblk,
Christoph Hellwigc472b432010-05-06 17:05:17 -04001624 .set_dqblk = gfs2_set_dqblk,
Steven Whitehousecc632e72009-09-15 09:59:02 +01001625};