blob: 98236d0df3cae7ce7666a10dc7fc907590b873b0 [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>
Steven Whitehouse9b9f0392013-11-01 14:52:06 -040053#include <linux/lockref.h>
Steven Whitehouse2147dbf2013-11-04 10:15:08 +000054#include <linux/list_lru.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000055
56#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050057#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000058#include "bmap.h"
59#include "glock.h"
60#include "glops.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000061#include "log.h"
62#include "meta_io.h"
63#include "quota.h"
64#include "rgrp.h"
65#include "super.h"
66#include "trans.h"
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000067#include "inode.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050068#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000069
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010070struct gfs2_quota_change_host {
71 u64 qc_change;
72 u32 qc_flags; /* GFS2_QCF_... */
Eric W. Biedermane08d8d72013-01-31 19:25:50 -080073 struct kqid qc_id;
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010074};
75
Steven Whitehouse2147dbf2013-11-04 10:15:08 +000076/* Lock order: qd_lock -> qd->lockref.lock -> lru lock */
Steven Whitehouse7d808232013-11-01 14:52:08 -040077static DEFINE_SPINLOCK(qd_lock);
Steven Whitehouse2147dbf2013-11-04 10:15:08 +000078struct list_lru gfs2_qd_lru;
Abhijith Das0a7ab792009-01-07 16:03:37 -060079
Steven Whitehouse2147dbf2013-11-04 10:15:08 +000080static void gfs2_qd_dispose(struct list_head *list)
Abhijith Das0a7ab792009-01-07 16:03:37 -060081{
82 struct gfs2_quota_data *qd;
83 struct gfs2_sbd *sdp;
Abhijith Das0a7ab792009-01-07 16:03:37 -060084
Steven Whitehouse2147dbf2013-11-04 10:15:08 +000085 while (!list_empty(list)) {
86 qd = list_entry(list->next, struct gfs2_quota_data, qd_lru);
Abhijith Das0a7ab792009-01-07 16:03:37 -060087 sdp = qd->qd_gl->gl_sbd;
88
Steven Whitehouse2147dbf2013-11-04 10:15:08 +000089 list_del(&qd->qd_lru);
90
Abhijith Das0a7ab792009-01-07 16:03:37 -060091 /* Free from the filesystem-specific list */
Steven Whitehouse2147dbf2013-11-04 10:15:08 +000092 spin_lock(&qd_lock);
Abhijith Das0a7ab792009-01-07 16:03:37 -060093 list_del(&qd->qd_list);
Steven Whitehouse2147dbf2013-11-04 10:15:08 +000094 spin_unlock(&qd_lock);
Abhijith Das0a7ab792009-01-07 16:03:37 -060095
Abhijith Das0a7ab792009-01-07 16:03:37 -060096 gfs2_assert_warn(sdp, !qd->qd_change);
97 gfs2_assert_warn(sdp, !qd->qd_slot_count);
98 gfs2_assert_warn(sdp, !qd->qd_bh_count);
99
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000100 gfs2_glock_put(qd->qd_gl);
Abhijith Das0a7ab792009-01-07 16:03:37 -0600101 atomic_dec(&sdp->sd_quota_count);
102
103 /* Delete it from the common reclaim list */
Abhijith Das0a7ab792009-01-07 16:03:37 -0600104 kmem_cache_free(gfs2_quotad_cachep, qd);
Abhijith Das0a7ab792009-01-07 16:03:37 -0600105 }
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000106}
107
108
109static enum lru_status gfs2_qd_isolate(struct list_head *item, spinlock_t *lock, void *arg)
110{
111 struct list_head *dispose = arg;
112 struct gfs2_quota_data *qd = list_entry(item, struct gfs2_quota_data, qd_lru);
113
114 if (!spin_trylock(&qd->qd_lockref.lock))
115 return LRU_SKIP;
116
117 if (qd->qd_lockref.count == 0) {
118 lockref_mark_dead(&qd->qd_lockref);
119 list_move(&qd->qd_lru, dispose);
120 }
121
122 spin_unlock(&qd->qd_lockref.lock);
123 return LRU_REMOVED;
124}
125
126static unsigned long gfs2_qd_shrink_scan(struct shrinker *shrink,
127 struct shrink_control *sc)
128{
129 LIST_HEAD(dispose);
130 unsigned long freed;
131
132 if (!(sc->gfp_mask & __GFP_FS))
133 return SHRINK_STOP;
134
135 freed = list_lru_walk_node(&gfs2_qd_lru, sc->nid, gfs2_qd_isolate,
136 &dispose, &sc->nr_to_scan);
137
138 gfs2_qd_dispose(&dispose);
139
Dave Chinner1ab6c492013-08-28 10:18:09 +1000140 return freed;
141}
Abhijith Das0a7ab792009-01-07 16:03:37 -0600142
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000143static unsigned long gfs2_qd_shrink_count(struct shrinker *shrink,
144 struct shrink_control *sc)
Dave Chinner1ab6c492013-08-28 10:18:09 +1000145{
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000146 return vfs_pressure_ratio(list_lru_count_node(&gfs2_qd_lru, sc->nid));
Abhijith Das0a7ab792009-01-07 16:03:37 -0600147}
148
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000149struct shrinker gfs2_qd_shrinker = {
150 .count_objects = gfs2_qd_shrink_count,
151 .scan_objects = gfs2_qd_shrink_scan,
152 .seeks = DEFAULT_SEEKS,
153 .flags = SHRINKER_NUMA_AWARE,
154};
155
156
Eric W. Biederman2f6c9892013-01-31 18:33:38 -0800157static u64 qd2index(struct gfs2_quota_data *qd)
158{
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800159 struct kqid qid = qd->qd_id;
160 return (2 * (u64)from_kqid(&init_user_ns, qid)) +
Bob Peterson37f71572013-05-10 11:59:18 -0400161 ((qid.type == USRQUOTA) ? 0 : 1);
Eric W. Biederman2f6c9892013-01-31 18:33:38 -0800162}
163
Steven Whitehousecd915492006-09-04 12:49:07 -0400164static u64 qd2offset(struct gfs2_quota_data *qd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000165{
Steven Whitehousecd915492006-09-04 12:49:07 -0400166 u64 offset;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000167
Eric W. Biederman2f6c9892013-01-31 18:33:38 -0800168 offset = qd2index(qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000169 offset *= sizeof(struct gfs2_quota);
170
171 return offset;
172}
173
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800174static int qd_alloc(struct gfs2_sbd *sdp, struct kqid qid,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000175 struct gfs2_quota_data **qdp)
176{
177 struct gfs2_quota_data *qd;
178 int error;
179
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000180 qd = kmem_cache_zalloc(gfs2_quotad_cachep, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000181 if (!qd)
182 return -ENOMEM;
183
Steven Whitehouse9b9f0392013-11-01 14:52:06 -0400184 qd->qd_lockref.count = 1;
185 spin_lock_init(&qd->qd_lockref.lock);
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800186 qd->qd_id = qid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000187 qd->qd_slot = -1;
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000188 INIT_LIST_HEAD(&qd->qd_lru);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000189
Eric W. Biederman2f6c9892013-01-31 18:33:38 -0800190 error = gfs2_glock_get(sdp, qd2index(qd),
David Teiglandb3b94fa2006-01-16 16:50:04 +0000191 &gfs2_quota_glops, CREATE, &qd->qd_gl);
192 if (error)
193 goto fail;
194
David Teiglandb3b94fa2006-01-16 16:50:04 +0000195 *qdp = qd;
196
197 return 0;
198
Steven Whitehousea91ea692006-09-04 12:04:26 -0400199fail:
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000200 kmem_cache_free(gfs2_quotad_cachep, qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000201 return error;
202}
203
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800204static int qd_get(struct gfs2_sbd *sdp, struct kqid qid,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000205 struct gfs2_quota_data **qdp)
206{
207 struct gfs2_quota_data *qd = NULL, *new_qd = NULL;
208 int error, found;
209
210 *qdp = NULL;
211
212 for (;;) {
213 found = 0;
Steven Whitehouse7d808232013-11-01 14:52:08 -0400214 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000215 list_for_each_entry(qd, &sdp->sd_quota_list, qd_list) {
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000216 if (qid_eq(qd->qd_id, qid) &&
217 lockref_get_not_dead(&qd->qd_lockref)) {
218 list_lru_del(&gfs2_qd_lru, &qd->qd_lru);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000219 found = 1;
220 break;
221 }
222 }
223
224 if (!found)
225 qd = NULL;
226
227 if (!qd && new_qd) {
228 qd = new_qd;
229 list_add(&qd->qd_list, &sdp->sd_quota_list);
230 atomic_inc(&sdp->sd_quota_count);
231 new_qd = NULL;
232 }
233
Steven Whitehouse7d808232013-11-01 14:52:08 -0400234 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000235
Steven Whitehouse6a6ada82009-09-15 16:30:38 +0100236 if (qd) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000237 if (new_qd) {
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000238 gfs2_glock_put(new_qd->qd_gl);
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000239 kmem_cache_free(gfs2_quotad_cachep, new_qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000240 }
241 *qdp = qd;
242 return 0;
243 }
244
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800245 error = qd_alloc(sdp, qid, &new_qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000246 if (error)
247 return error;
248 }
249}
250
251static void qd_hold(struct gfs2_quota_data *qd)
252{
253 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehouse9b9f0392013-11-01 14:52:06 -0400254 gfs2_assert(sdp, !__lockref_is_dead(&qd->qd_lockref));
255 lockref_get(&qd->qd_lockref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000256}
257
258static void qd_put(struct gfs2_quota_data *qd)
259{
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000260 if (lockref_put_or_lock(&qd->qd_lockref))
261 return;
Steven Whitehouse9b9f0392013-11-01 14:52:06 -0400262
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000263 qd->qd_lockref.count = 0;
264 list_lru_add(&gfs2_qd_lru, &qd->qd_lru);
265 spin_unlock(&qd->qd_lockref.lock);
Steven Whitehouse9b9f0392013-11-01 14:52:06 -0400266
David Teiglandb3b94fa2006-01-16 16:50:04 +0000267}
268
269static int slot_get(struct gfs2_quota_data *qd)
270{
271 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
272 unsigned int c, o = 0, b;
273 unsigned char byte = 0;
274
Steven Whitehouse7d808232013-11-01 14:52:08 -0400275 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000276
277 if (qd->qd_slot_count++) {
Steven Whitehouse7d808232013-11-01 14:52:08 -0400278 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000279 return 0;
280 }
281
282 for (c = 0; c < sdp->sd_quota_chunks; c++)
283 for (o = 0; o < PAGE_SIZE; o++) {
284 byte = sdp->sd_quota_bitmap[c][o];
285 if (byte != 0xFF)
286 goto found;
287 }
288
289 goto fail;
290
Steven Whitehousea91ea692006-09-04 12:04:26 -0400291found:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000292 for (b = 0; b < 8; b++)
293 if (!(byte & (1 << b)))
294 break;
295 qd->qd_slot = c * (8 * PAGE_SIZE) + o * 8 + b;
296
297 if (qd->qd_slot >= sdp->sd_quota_slots)
298 goto fail;
299
300 sdp->sd_quota_bitmap[c][o] |= 1 << b;
301
Steven Whitehouse7d808232013-11-01 14:52:08 -0400302 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000303
304 return 0;
305
Steven Whitehousea91ea692006-09-04 12:04:26 -0400306fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000307 qd->qd_slot_count--;
Steven Whitehouse7d808232013-11-01 14:52:08 -0400308 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000309 return -ENOSPC;
310}
311
312static void slot_hold(struct gfs2_quota_data *qd)
313{
314 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
315
Steven Whitehouse7d808232013-11-01 14:52:08 -0400316 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000317 gfs2_assert(sdp, qd->qd_slot_count);
318 qd->qd_slot_count++;
Steven Whitehouse7d808232013-11-01 14:52:08 -0400319 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000320}
321
Steven Whitehouse26e43a12013-10-02 14:47:02 +0100322static void gfs2_icbit_munge(struct gfs2_sbd *sdp, unsigned char **bitmap,
323 unsigned int bit, int new_value)
324{
325 unsigned int c, o, b = bit;
326 int old_value;
327
328 c = b / (8 * PAGE_SIZE);
329 b %= 8 * PAGE_SIZE;
330 o = b / 8;
331 b %= 8;
332
333 old_value = (bitmap[c][o] & (1 << b));
334 gfs2_assert_withdraw(sdp, !old_value != !new_value);
335
336 if (new_value)
337 bitmap[c][o] |= 1 << b;
338 else
339 bitmap[c][o] &= ~(1 << b);
340}
341
David Teiglandb3b94fa2006-01-16 16:50:04 +0000342static void slot_put(struct gfs2_quota_data *qd)
343{
344 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
345
Steven Whitehouse7d808232013-11-01 14:52:08 -0400346 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000347 gfs2_assert(sdp, qd->qd_slot_count);
348 if (!--qd->qd_slot_count) {
349 gfs2_icbit_munge(sdp, sdp->sd_quota_bitmap, qd->qd_slot, 0);
350 qd->qd_slot = -1;
351 }
Steven Whitehouse7d808232013-11-01 14:52:08 -0400352 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000353}
354
355static int bh_get(struct gfs2_quota_data *qd)
356{
357 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400358 struct gfs2_inode *ip = GFS2_I(sdp->sd_qc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000359 unsigned int block, offset;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000360 struct buffer_head *bh;
361 int error;
Steven Whitehouse23591252006-10-13 17:25:45 -0400362 struct buffer_head bh_map = { .b_state = 0, .b_blocknr = 0 };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000363
Steven Whitehousef55ab262006-02-21 12:51:39 +0000364 mutex_lock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000365
366 if (qd->qd_bh_count++) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000367 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000368 return 0;
369 }
370
371 block = qd->qd_slot / sdp->sd_qc_per_block;
Bob Peterson0d0868b2007-12-11 18:51:25 -0600372 offset = qd->qd_slot % sdp->sd_qc_per_block;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000373
Steven Whitehouse23591252006-10-13 17:25:45 -0400374 bh_map.b_size = 1 << ip->i_inode.i_blkbits;
Bob Petersone9e1ef22007-12-10 14:13:27 -0600375 error = gfs2_block_map(&ip->i_inode, block, &bh_map, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000376 if (error)
377 goto fail;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400378 error = gfs2_meta_read(ip->i_gl, bh_map.b_blocknr, DIO_WAIT, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000379 if (error)
380 goto fail;
381 error = -EIO;
382 if (gfs2_metatype_check(sdp, bh, GFS2_METATYPE_QC))
383 goto fail_brelse;
384
385 qd->qd_bh = bh;
386 qd->qd_bh_qc = (struct gfs2_quota_change *)
387 (bh->b_data + sizeof(struct gfs2_meta_header) +
388 offset * sizeof(struct gfs2_quota_change));
389
Josef Whiter2e95b662007-02-20 00:03:29 -0500390 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000391
392 return 0;
393
Steven Whitehousea91ea692006-09-04 12:04:26 -0400394fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000395 brelse(bh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400396fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000397 qd->qd_bh_count--;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000398 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000399 return error;
400}
401
402static void bh_put(struct gfs2_quota_data *qd)
403{
404 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
405
Steven Whitehousef55ab262006-02-21 12:51:39 +0000406 mutex_lock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000407 gfs2_assert(sdp, qd->qd_bh_count);
408 if (!--qd->qd_bh_count) {
409 brelse(qd->qd_bh);
410 qd->qd_bh = NULL;
411 qd->qd_bh_qc = NULL;
412 }
Steven Whitehousef55ab262006-02-21 12:51:39 +0000413 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000414}
415
Steven Whitehouse1bf59bf2013-10-04 11:14:46 +0100416static int qd_check_sync(struct gfs2_sbd *sdp, struct gfs2_quota_data *qd,
417 u64 *sync_gen)
418{
419 if (test_bit(QDF_LOCKED, &qd->qd_flags) ||
420 !test_bit(QDF_CHANGE, &qd->qd_flags) ||
421 (sync_gen && (qd->qd_sync_gen >= *sync_gen)))
422 return 0;
423
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000424 if (!lockref_get_not_dead(&qd->qd_lockref))
425 return 0;
Steven Whitehouse1bf59bf2013-10-04 11:14:46 +0100426
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000427 list_move_tail(&qd->qd_list, &sdp->sd_quota_list);
Steven Whitehouse1bf59bf2013-10-04 11:14:46 +0100428 set_bit(QDF_LOCKED, &qd->qd_flags);
Steven Whitehouse1bf59bf2013-10-04 11:14:46 +0100429 qd->qd_change_sync = qd->qd_change;
430 gfs2_assert_warn(sdp, qd->qd_slot_count);
431 qd->qd_slot_count++;
432 return 1;
433}
434
David Teiglandb3b94fa2006-01-16 16:50:04 +0000435static int qd_fish(struct gfs2_sbd *sdp, struct gfs2_quota_data **qdp)
436{
437 struct gfs2_quota_data *qd = NULL;
438 int error;
439 int found = 0;
440
441 *qdp = NULL;
442
443 if (sdp->sd_vfs->s_flags & MS_RDONLY)
444 return 0;
445
Steven Whitehouse7d808232013-11-01 14:52:08 -0400446 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000447
448 list_for_each_entry(qd, &sdp->sd_quota_list, qd_list) {
Steven Whitehouse1bf59bf2013-10-04 11:14:46 +0100449 found = qd_check_sync(sdp, qd, &sdp->sd_quota_sync_gen);
450 if (found)
451 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000452 }
453
454 if (!found)
455 qd = NULL;
456
Steven Whitehouse7d808232013-11-01 14:52:08 -0400457 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000458
459 if (qd) {
460 gfs2_assert_warn(sdp, qd->qd_change_sync);
461 error = bh_get(qd);
462 if (error) {
463 clear_bit(QDF_LOCKED, &qd->qd_flags);
464 slot_put(qd);
465 qd_put(qd);
466 return error;
467 }
468 }
469
470 *qdp = qd;
471
472 return 0;
473}
474
David Teiglandb3b94fa2006-01-16 16:50:04 +0000475static void qd_unlock(struct gfs2_quota_data *qd)
476{
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500477 gfs2_assert_warn(qd->qd_gl->gl_sbd,
478 test_bit(QDF_LOCKED, &qd->qd_flags));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000479 clear_bit(QDF_LOCKED, &qd->qd_flags);
480 bh_put(qd);
481 slot_put(qd);
482 qd_put(qd);
483}
484
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800485static int qdsb_get(struct gfs2_sbd *sdp, struct kqid qid,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000486 struct gfs2_quota_data **qdp)
487{
488 int error;
489
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800490 error = qd_get(sdp, qid, qdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000491 if (error)
492 return error;
493
494 error = slot_get(*qdp);
495 if (error)
496 goto fail;
497
498 error = bh_get(*qdp);
499 if (error)
500 goto fail_slot;
501
502 return 0;
503
Steven Whitehousea91ea692006-09-04 12:04:26 -0400504fail_slot:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000505 slot_put(*qdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400506fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000507 qd_put(*qdp);
508 return error;
509}
510
511static void qdsb_put(struct gfs2_quota_data *qd)
512{
513 bh_put(qd);
514 slot_put(qd);
515 qd_put(qd);
516}
517
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -0800518int gfs2_quota_hold(struct gfs2_inode *ip, kuid_t uid, kgid_t gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000519{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400520 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Bob Peterson5407e242012-05-18 09:28:23 -0400521 struct gfs2_quota_data **qd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000522 int error;
523
Andrew Priceaaaf68c2012-10-12 16:45:08 +0100524 if (ip->i_res == NULL) {
525 error = gfs2_rs_alloc(ip);
526 if (error)
527 return error;
528 }
Bob Peterson5407e242012-05-18 09:28:23 -0400529
530 qd = ip->i_res->rs_qa_qd;
531
532 if (gfs2_assert_warn(sdp, !ip->i_res->rs_qa_qd_num) ||
David Teiglandb3b94fa2006-01-16 16:50:04 +0000533 gfs2_assert_warn(sdp, !test_bit(GIF_QD_LOCKED, &ip->i_flags)))
534 return -EIO;
535
536 if (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
537 return 0;
538
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800539 error = qdsb_get(sdp, make_kqid_uid(ip->i_inode.i_uid), qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000540 if (error)
541 goto out;
Bob Peterson5407e242012-05-18 09:28:23 -0400542 ip->i_res->rs_qa_qd_num++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000543 qd++;
544
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800545 error = qdsb_get(sdp, make_kqid_gid(ip->i_inode.i_gid), qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000546 if (error)
547 goto out;
Bob Peterson5407e242012-05-18 09:28:23 -0400548 ip->i_res->rs_qa_qd_num++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000549 qd++;
550
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -0800551 if (!uid_eq(uid, NO_UID_QUOTA_CHANGE) &&
552 !uid_eq(uid, ip->i_inode.i_uid)) {
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800553 error = qdsb_get(sdp, make_kqid_uid(uid), qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000554 if (error)
555 goto out;
Bob Peterson5407e242012-05-18 09:28:23 -0400556 ip->i_res->rs_qa_qd_num++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000557 qd++;
558 }
559
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -0800560 if (!gid_eq(gid, NO_GID_QUOTA_CHANGE) &&
561 !gid_eq(gid, ip->i_inode.i_gid)) {
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800562 error = qdsb_get(sdp, make_kqid_gid(gid), qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000563 if (error)
564 goto out;
Bob Peterson5407e242012-05-18 09:28:23 -0400565 ip->i_res->rs_qa_qd_num++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000566 qd++;
567 }
568
Steven Whitehousea91ea692006-09-04 12:04:26 -0400569out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000570 if (error)
571 gfs2_quota_unhold(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000572 return error;
573}
574
575void gfs2_quota_unhold(struct gfs2_inode *ip)
576{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400577 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000578 unsigned int x;
579
Bob Peterson5407e242012-05-18 09:28:23 -0400580 if (ip->i_res == NULL)
581 return;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000582 gfs2_assert_warn(sdp, !test_bit(GIF_QD_LOCKED, &ip->i_flags));
583
Bob Peterson5407e242012-05-18 09:28:23 -0400584 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
585 qdsb_put(ip->i_res->rs_qa_qd[x]);
586 ip->i_res->rs_qa_qd[x] = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000587 }
Bob Peterson5407e242012-05-18 09:28:23 -0400588 ip->i_res->rs_qa_qd_num = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589}
590
591static int sort_qd(const void *a, const void *b)
592{
Steven Whitehouse48fac172006-09-05 15:17:12 -0400593 const struct gfs2_quota_data *qd_a = *(const struct gfs2_quota_data **)a;
594 const struct gfs2_quota_data *qd_b = *(const struct gfs2_quota_data **)b;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000595
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800596 if (qid_lt(qd_a->qd_id, qd_b->qd_id))
Steven Whitehouse48fac172006-09-05 15:17:12 -0400597 return -1;
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800598 if (qid_lt(qd_b->qd_id, qd_a->qd_id))
Steven Whitehouse48fac172006-09-05 15:17:12 -0400599 return 1;
Steven Whitehouse48fac172006-09-05 15:17:12 -0400600 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000601}
602
Steven Whitehousecd915492006-09-04 12:49:07 -0400603static void do_qc(struct gfs2_quota_data *qd, s64 change)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000604{
605 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400606 struct gfs2_inode *ip = GFS2_I(sdp->sd_qc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000607 struct gfs2_quota_change *qc = qd->qd_bh_qc;
Steven Whitehousecd915492006-09-04 12:49:07 -0400608 s64 x;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000609
Steven Whitehousef55ab262006-02-21 12:51:39 +0000610 mutex_lock(&sdp->sd_quota_mutex);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000611 gfs2_trans_add_meta(ip->i_gl, qd->qd_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000612
613 if (!test_bit(QDF_CHANGE, &qd->qd_flags)) {
614 qc->qc_change = 0;
615 qc->qc_flags = 0;
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800616 if (qd->qd_id.type == USRQUOTA)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000617 qc->qc_flags = cpu_to_be32(GFS2_QCF_USER);
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800618 qc->qc_id = cpu_to_be32(from_kqid(&init_user_ns, qd->qd_id));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000619 }
620
Al Virob44b84d2006-10-14 10:46:30 -0400621 x = be64_to_cpu(qc->qc_change) + change;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000622 qc->qc_change = cpu_to_be64(x);
623
Steven Whitehouse7d808232013-11-01 14:52:08 -0400624 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000625 qd->qd_change = x;
Steven Whitehouse7d808232013-11-01 14:52:08 -0400626 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000627
628 if (!x) {
629 gfs2_assert_warn(sdp, test_bit(QDF_CHANGE, &qd->qd_flags));
630 clear_bit(QDF_CHANGE, &qd->qd_flags);
631 qc->qc_flags = 0;
632 qc->qc_id = 0;
633 slot_put(qd);
634 qd_put(qd);
635 } else if (!test_and_set_bit(QDF_CHANGE, &qd->qd_flags)) {
636 qd_hold(qd);
637 slot_hold(qd);
638 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400639
Steven Whitehousef55ab262006-02-21 12:51:39 +0000640 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000641}
642
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000643/**
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100644 * gfs2_adjust_quota - adjust record of current block usage
645 * @ip: The quota inode
646 * @loc: Offset of the entry in the quota file
Steven Whitehousee285c102009-09-23 13:50:49 +0100647 * @change: The amount of usage change to record
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100648 * @qd: The quota data
Steven Whitehousee285c102009-09-23 13:50:49 +0100649 * @fdq: The updated limits to record
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000650 *
651 * This function was mostly borrowed from gfs2_block_truncate_page which was
652 * in turn mostly borrowed from ext3
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100653 *
654 * Returns: 0 or -ve on error
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000655 */
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100656
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000657static int gfs2_adjust_quota(struct gfs2_inode *ip, loff_t loc,
Steven Whitehousee285c102009-09-23 13:50:49 +0100658 s64 change, struct gfs2_quota_data *qd,
659 struct fs_disk_quota *fdq)
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000660{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400661 struct inode *inode = &ip->i_inode;
Abhijith Das14870b42010-11-18 11:24:24 -0500662 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000663 struct address_space *mapping = inode->i_mapping;
664 unsigned long index = loc >> PAGE_CACHE_SHIFT;
Abhijith Das1990e912007-05-31 17:52:02 -0500665 unsigned offset = loc & (PAGE_CACHE_SIZE - 1);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000666 unsigned blocksize, iblock, pos;
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100667 struct buffer_head *bh;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000668 struct page *page;
Abhijith Das7e619bc2010-05-07 17:50:18 -0400669 void *kaddr, *ptr;
Al Viro951b4bd2013-06-02 19:53:40 -0400670 struct gfs2_quota q;
Abhijith Das7e619bc2010-05-07 17:50:18 -0400671 int err, nbytes;
Steven Whitehousee285c102009-09-23 13:50:49 +0100672 u64 size;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000673
Steven Whitehouse891a8e92011-09-19 10:25:49 +0100674 if (gfs2_is_stuffed(ip)) {
675 err = gfs2_unstuff_dinode(ip, NULL);
676 if (err)
677 return err;
678 }
Abhijith Das7e619bc2010-05-07 17:50:18 -0400679
680 memset(&q, 0, sizeof(struct gfs2_quota));
Andrew Price43066292012-04-16 16:40:55 +0100681 err = gfs2_internal_read(ip, (char *)&q, &loc, sizeof(q));
Abhijith Das7e619bc2010-05-07 17:50:18 -0400682 if (err < 0)
683 return err;
684
685 err = -EIO;
Al Viro951b4bd2013-06-02 19:53:40 -0400686 be64_add_cpu(&q.qu_value, change);
687 qd->qd_qb.qb_value = q.qu_value;
Abhijith Das7e619bc2010-05-07 17:50:18 -0400688 if (fdq) {
689 if (fdq->d_fieldmask & FS_DQ_BSOFT) {
Al Viro951b4bd2013-06-02 19:53:40 -0400690 q.qu_warn = cpu_to_be64(fdq->d_blk_softlimit >> sdp->sd_fsb2bb_shift);
691 qd->qd_qb.qb_warn = q.qu_warn;
Abhijith Das7e619bc2010-05-07 17:50:18 -0400692 }
693 if (fdq->d_fieldmask & FS_DQ_BHARD) {
Al Viro951b4bd2013-06-02 19:53:40 -0400694 q.qu_limit = cpu_to_be64(fdq->d_blk_hardlimit >> sdp->sd_fsb2bb_shift);
695 qd->qd_qb.qb_limit = q.qu_limit;
Abhijith Das7e619bc2010-05-07 17:50:18 -0400696 }
Abhijith Das802ec9b2010-11-18 11:26:46 -0500697 if (fdq->d_fieldmask & FS_DQ_BCOUNT) {
Al Viro951b4bd2013-06-02 19:53:40 -0400698 q.qu_value = cpu_to_be64(fdq->d_bcount >> sdp->sd_fsb2bb_shift);
699 qd->qd_qb.qb_value = q.qu_value;
Abhijith Das802ec9b2010-11-18 11:26:46 -0500700 }
Abhijith Das7e619bc2010-05-07 17:50:18 -0400701 }
702
703 /* Write the quota into the quota file on disk */
Al Viro951b4bd2013-06-02 19:53:40 -0400704 ptr = &q;
Abhijith Das7e619bc2010-05-07 17:50:18 -0400705 nbytes = sizeof(struct gfs2_quota);
706get_a_page:
Bob Peterson220cca22012-03-19 15:25:50 -0400707 page = find_or_create_page(mapping, index, GFP_NOFS);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000708 if (!page)
709 return -ENOMEM;
710
711 blocksize = inode->i_sb->s_blocksize;
712 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
713
714 if (!page_has_buffers(page))
715 create_empty_buffers(page, blocksize, 0);
716
717 bh = page_buffers(page);
718 pos = blocksize;
719 while (offset >= pos) {
720 bh = bh->b_this_page;
721 iblock++;
722 pos += blocksize;
723 }
724
725 if (!buffer_mapped(bh)) {
Bob Petersone9e1ef22007-12-10 14:13:27 -0600726 gfs2_block_map(inode, iblock, bh, 1);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000727 if (!buffer_mapped(bh))
Abhijith Das7e619bc2010-05-07 17:50:18 -0400728 goto unlock_out;
729 /* If it's a newly allocated disk block for quota, zero it */
Abhijith Das8b421602010-07-04 01:33:24 -0400730 if (buffer_new(bh))
731 zero_user(page, pos - blocksize, bh->b_size);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000732 }
733
734 if (PageUptodate(page))
735 set_buffer_uptodate(bh);
736
737 if (!buffer_uptodate(bh)) {
Steven Whitehouse20ed0532011-10-31 09:52:02 +0000738 ll_rw_block(READ | REQ_META, 1, &bh);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000739 wait_on_buffer(bh);
740 if (!buffer_uptodate(bh))
Abhijith Das7e619bc2010-05-07 17:50:18 -0400741 goto unlock_out;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000742 }
743
Bob Peterson37f71572013-05-10 11:59:18 -0400744 gfs2_trans_add_data(ip->i_gl, bh);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000745
Cong Wangd9349282011-11-25 23:14:30 +0800746 kaddr = kmap_atomic(page);
Abhijith Das7e619bc2010-05-07 17:50:18 -0400747 if (offset + sizeof(struct gfs2_quota) > PAGE_CACHE_SIZE)
748 nbytes = PAGE_CACHE_SIZE - offset;
749 memcpy(kaddr + offset, ptr, nbytes);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000750 flush_dcache_page(page);
Cong Wangd9349282011-11-25 23:14:30 +0800751 kunmap_atomic(kaddr);
Abhijith Das7e619bc2010-05-07 17:50:18 -0400752 unlock_page(page);
753 page_cache_release(page);
Steven Whitehousee285c102009-09-23 13:50:49 +0100754
Abhijith Das7e619bc2010-05-07 17:50:18 -0400755 /* If quota straddles page boundary, we need to update the rest of the
756 * quota at the beginning of the next page */
Abhijith Das8b421602010-07-04 01:33:24 -0400757 if ((offset + sizeof(struct gfs2_quota)) > PAGE_CACHE_SIZE) {
Abhijith Das7e619bc2010-05-07 17:50:18 -0400758 ptr = ptr + nbytes;
759 nbytes = sizeof(struct gfs2_quota) - nbytes;
760 offset = 0;
761 index++;
762 goto get_a_page;
763 }
764
Steven Whitehousee285c102009-09-23 13:50:49 +0100765 size = loc + sizeof(struct gfs2_quota);
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100766 if (size > inode->i_size)
Steven Whitehousee285c102009-09-23 13:50:49 +0100767 i_size_write(inode, size);
Steven Whitehousee285c102009-09-23 13:50:49 +0100768 inode->i_mtime = inode->i_atime = CURRENT_TIME;
Steven Whitehousee285c102009-09-23 13:50:49 +0100769 mark_inode_dirty(inode);
Bob Peterson500242a2012-05-15 14:51:54 -0400770 return 0;
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100771
Abhijith Das7e619bc2010-05-07 17:50:18 -0400772unlock_out:
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000773 unlock_page(page);
774 page_cache_release(page);
775 return err;
776}
777
David Teiglandb3b94fa2006-01-16 16:50:04 +0000778static int do_sync(unsigned int num_qd, struct gfs2_quota_data **qda)
779{
780 struct gfs2_sbd *sdp = (*qda)->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400781 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
Steven Whitehouse7b9cff42013-10-02 11:13:25 +0100782 struct gfs2_alloc_parms ap = { .aflags = 0, };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000783 unsigned int data_blocks, ind_blocks;
784 struct gfs2_holder *ghs, i_gh;
785 unsigned int qx, x;
786 struct gfs2_quota_data *qd;
Steven Whitehouse71f890f2012-07-30 14:53:19 +0100787 unsigned reserved;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000788 loff_t offset;
Abhijith Das20b95bf2008-03-06 17:43:52 -0600789 unsigned int nalloc = 0, blocks;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000790 int error;
791
Bob Peterson0a305e42012-06-06 11:17:59 +0100792 error = gfs2_rs_alloc(ip);
793 if (error)
794 return error;
795
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796 gfs2_write_calc_reserv(ip, sizeof(struct gfs2_quota),
797 &data_blocks, &ind_blocks);
798
Josef Bacik16c5f062008-04-09 09:33:41 -0400799 ghs = kcalloc(num_qd, sizeof(struct gfs2_holder), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000800 if (!ghs)
801 return -ENOMEM;
802
803 sort(qda, num_qd, sizeof(struct gfs2_quota_data *), sort_qd, NULL);
Jan Kara56aa72d2012-09-05 16:55:11 -0400804 mutex_lock(&ip->i_inode.i_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000805 for (qx = 0; qx < num_qd; qx++) {
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100806 error = gfs2_glock_nq_init(qda[qx]->qd_gl, LM_ST_EXCLUSIVE,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000807 GL_NOCACHE, &ghs[qx]);
808 if (error)
809 goto out;
810 }
811
812 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
813 if (error)
814 goto out;
815
816 for (x = 0; x < num_qd; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000817 offset = qd2offset(qda[x]);
Bob Peterson461cb412010-06-24 19:21:20 -0400818 if (gfs2_write_alloc_required(ip, offset,
819 sizeof(struct gfs2_quota)))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000820 nalloc++;
821 }
822
Abhijith Das20b95bf2008-03-06 17:43:52 -0600823 /*
824 * 1 blk for unstuffing inode if stuffed. We add this extra
825 * block to the reservation unconditionally. If the inode
826 * doesn't need unstuffing, the block will be released to the
827 * rgrp since it won't be allocated during the transaction
828 */
Abhijith Das7e619bc2010-05-07 17:50:18 -0400829 /* +3 in the end for unstuffing block, inode size update block
830 * and another block in case quota straddles page boundary and
831 * two blocks need to be updated instead of 1 */
832 blocks = num_qd * data_blocks + RES_DINODE + num_qd + 3;
Abhijith Das20b95bf2008-03-06 17:43:52 -0600833
Steven Whitehouse71f890f2012-07-30 14:53:19 +0100834 reserved = 1 + (nalloc * (data_blocks + ind_blocks));
Steven Whitehouse7b9cff42013-10-02 11:13:25 +0100835 ap.target = reserved;
836 error = gfs2_inplace_reserve(ip, &ap);
Abhijith Das20b95bf2008-03-06 17:43:52 -0600837 if (error)
838 goto out_alloc;
839
840 if (nalloc)
Steven Whitehouse71f890f2012-07-30 14:53:19 +0100841 blocks += gfs2_rg_blocks(ip, reserved) + nalloc * ind_blocks + RES_STATFS;
Abhijith Das20b95bf2008-03-06 17:43:52 -0600842
843 error = gfs2_trans_begin(sdp, blocks, 0);
844 if (error)
845 goto out_ipres;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000846
847 for (x = 0; x < num_qd; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000848 qd = qda[x];
849 offset = qd2offset(qd);
Steven Whitehousee285c102009-09-23 13:50:49 +0100850 error = gfs2_adjust_quota(ip, offset, qd->qd_change_sync, qd, NULL);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000851 if (error)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000852 goto out_end_trans;
853
David Teiglandb3b94fa2006-01-16 16:50:04 +0000854 do_qc(qd, -qd->qd_change_sync);
Abhijith Das662e3a52011-03-08 10:40:42 -0500855 set_bit(QDF_REFRESH, &qd->qd_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000856 }
857
858 error = 0;
859
Steven Whitehousea91ea692006-09-04 12:04:26 -0400860out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000861 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400862out_ipres:
Abhijith Das20b95bf2008-03-06 17:43:52 -0600863 gfs2_inplace_release(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400864out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000865 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400866out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000867 while (qx--)
868 gfs2_glock_dq_uninit(&ghs[qx]);
Steven Whitehousee285c102009-09-23 13:50:49 +0100869 mutex_unlock(&ip->i_inode.i_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000870 kfree(ghs);
Steven Whitehouseb09e5932006-04-07 11:17:32 -0400871 gfs2_log_flush(ip->i_gl->gl_sbd, ip->i_gl);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000872 return error;
873}
874
Steven Whitehousee285c102009-09-23 13:50:49 +0100875static int update_qd(struct gfs2_sbd *sdp, struct gfs2_quota_data *qd)
876{
877 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
878 struct gfs2_quota q;
879 struct gfs2_quota_lvb *qlvb;
880 loff_t pos;
881 int error;
882
883 memset(&q, 0, sizeof(struct gfs2_quota));
884 pos = qd2offset(qd);
Andrew Price43066292012-04-16 16:40:55 +0100885 error = gfs2_internal_read(ip, (char *)&q, &pos, sizeof(q));
Steven Whitehousee285c102009-09-23 13:50:49 +0100886 if (error < 0)
887 return error;
888
David Teigland4e2f8842012-11-14 13:47:37 -0500889 qlvb = (struct gfs2_quota_lvb *)qd->qd_gl->gl_lksb.sb_lvbptr;
Steven Whitehousee285c102009-09-23 13:50:49 +0100890 qlvb->qb_magic = cpu_to_be32(GFS2_MAGIC);
891 qlvb->__pad = 0;
892 qlvb->qb_limit = q.qu_limit;
893 qlvb->qb_warn = q.qu_warn;
894 qlvb->qb_value = q.qu_value;
895 qd->qd_qb = *qlvb;
896
897 return 0;
898}
899
David Teiglandb3b94fa2006-01-16 16:50:04 +0000900static int do_glock(struct gfs2_quota_data *qd, int force_refresh,
901 struct gfs2_holder *q_gh)
902{
903 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400904 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000905 struct gfs2_holder i_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000906 int error;
907
Steven Whitehousea91ea692006-09-04 12:04:26 -0400908restart:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000909 error = gfs2_glock_nq_init(qd->qd_gl, LM_ST_SHARED, 0, q_gh);
910 if (error)
911 return error;
912
David Teigland4e2f8842012-11-14 13:47:37 -0500913 qd->qd_qb = *(struct gfs2_quota_lvb *)qd->qd_gl->gl_lksb.sb_lvbptr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000914
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400915 if (force_refresh || qd->qd_qb.qb_magic != cpu_to_be32(GFS2_MAGIC)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000916 gfs2_glock_dq_uninit(q_gh);
Steven Whitehouse91094d02009-09-11 15:21:56 +0100917 error = gfs2_glock_nq_init(qd->qd_gl, LM_ST_EXCLUSIVE,
918 GL_NOCACHE, q_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000919 if (error)
920 return error;
921
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400922 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000923 if (error)
924 goto fail;
925
Steven Whitehousee285c102009-09-23 13:50:49 +0100926 error = update_qd(sdp, qd);
927 if (error)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928 goto fail_gunlock;
Steven Whitehousee285c102009-09-23 13:50:49 +0100929
David Teiglandb3b94fa2006-01-16 16:50:04 +0000930 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehouse91094d02009-09-11 15:21:56 +0100931 gfs2_glock_dq_uninit(q_gh);
932 force_refresh = 0;
933 goto restart;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000934 }
935
936 return 0;
937
Steven Whitehousea91ea692006-09-04 12:04:26 -0400938fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000939 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400940fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000941 gfs2_glock_dq_uninit(q_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000942 return error;
943}
944
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -0800945int gfs2_quota_lock(struct gfs2_inode *ip, kuid_t uid, kgid_t gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000946{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400947 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Abhijith Das662e3a52011-03-08 10:40:42 -0500948 struct gfs2_quota_data *qd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000949 unsigned int x;
950 int error = 0;
951
Steven Whitehouse891a8e92011-09-19 10:25:49 +0100952 error = gfs2_quota_hold(ip, uid, gid);
953 if (error)
954 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000955
956 if (capable(CAP_SYS_RESOURCE) ||
957 sdp->sd_args.ar_quota != GFS2_QUOTA_ON)
958 return 0;
959
Bob Peterson5407e242012-05-18 09:28:23 -0400960 sort(ip->i_res->rs_qa_qd, ip->i_res->rs_qa_qd_num,
961 sizeof(struct gfs2_quota_data *), sort_qd, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000962
Bob Peterson5407e242012-05-18 09:28:23 -0400963 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
Abhijith Das662e3a52011-03-08 10:40:42 -0500964 int force = NO_FORCE;
Bob Peterson5407e242012-05-18 09:28:23 -0400965 qd = ip->i_res->rs_qa_qd[x];
Abhijith Das662e3a52011-03-08 10:40:42 -0500966 if (test_and_clear_bit(QDF_REFRESH, &qd->qd_flags))
967 force = FORCE;
Bob Peterson5407e242012-05-18 09:28:23 -0400968 error = do_glock(qd, force, &ip->i_res->rs_qa_qd_ghs[x]);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000969 if (error)
970 break;
971 }
972
973 if (!error)
974 set_bit(GIF_QD_LOCKED, &ip->i_flags);
975 else {
976 while (x--)
Bob Peterson5407e242012-05-18 09:28:23 -0400977 gfs2_glock_dq_uninit(&ip->i_res->rs_qa_qd_ghs[x]);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000978 gfs2_quota_unhold(ip);
979 }
980
981 return error;
982}
983
984static int need_sync(struct gfs2_quota_data *qd)
985{
986 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
987 struct gfs2_tune *gt = &sdp->sd_tune;
Steven Whitehousecd915492006-09-04 12:49:07 -0400988 s64 value;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000989 unsigned int num, den;
990 int do_sync = 1;
991
992 if (!qd->qd_qb.qb_limit)
993 return 0;
994
Steven Whitehouse7d808232013-11-01 14:52:08 -0400995 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000996 value = qd->qd_change;
Steven Whitehouse7d808232013-11-01 14:52:08 -0400997 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000998
999 spin_lock(&gt->gt_spin);
1000 num = gt->gt_quota_scale_num;
1001 den = gt->gt_quota_scale_den;
1002 spin_unlock(&gt->gt_spin);
1003
1004 if (value < 0)
1005 do_sync = 0;
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04001006 else if ((s64)be64_to_cpu(qd->qd_qb.qb_value) >=
1007 (s64)be64_to_cpu(qd->qd_qb.qb_limit))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001008 do_sync = 0;
1009 else {
1010 value *= gfs2_jindex_size(sdp) * num;
David Howells4abaca172008-07-11 14:39:56 +01001011 value = div_s64(value, den);
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04001012 value += (s64)be64_to_cpu(qd->qd_qb.qb_value);
Steven Whitehousecd915492006-09-04 12:49:07 -04001013 if (value < (s64)be64_to_cpu(qd->qd_qb.qb_limit))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001014 do_sync = 0;
1015 }
1016
1017 return do_sync;
1018}
1019
1020void gfs2_quota_unlock(struct gfs2_inode *ip)
1021{
Steven Whitehouseaabd7c72013-10-04 11:31:05 +01001022 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001023 struct gfs2_quota_data *qda[4];
1024 unsigned int count = 0;
1025 unsigned int x;
Steven Whitehouseaabd7c72013-10-04 11:31:05 +01001026 int found;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001027
1028 if (!test_and_clear_bit(GIF_QD_LOCKED, &ip->i_flags))
1029 goto out;
1030
Bob Peterson5407e242012-05-18 09:28:23 -04001031 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001032 struct gfs2_quota_data *qd;
1033 int sync;
1034
Bob Peterson5407e242012-05-18 09:28:23 -04001035 qd = ip->i_res->rs_qa_qd[x];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001036 sync = need_sync(qd);
1037
Bob Peterson5407e242012-05-18 09:28:23 -04001038 gfs2_glock_dq_uninit(&ip->i_res->rs_qa_qd_ghs[x]);
Steven Whitehouseaabd7c72013-10-04 11:31:05 +01001039 if (!sync)
1040 continue;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001041
Steven Whitehouse7d808232013-11-01 14:52:08 -04001042 spin_lock(&qd_lock);
Steven Whitehouseaabd7c72013-10-04 11:31:05 +01001043 found = qd_check_sync(sdp, qd, NULL);
Steven Whitehouse7d808232013-11-01 14:52:08 -04001044 spin_unlock(&qd_lock);
Steven Whitehouseaabd7c72013-10-04 11:31:05 +01001045
1046 if (!found)
1047 continue;
1048
1049 gfs2_assert_warn(sdp, qd->qd_change_sync);
1050 if (bh_get(qd)) {
1051 clear_bit(QDF_LOCKED, &qd->qd_flags);
1052 slot_put(qd);
1053 qd_put(qd);
1054 continue;
1055 }
1056
1057 qda[count++] = qd;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001058 }
1059
1060 if (count) {
1061 do_sync(count, qda);
1062 for (x = 0; x < count; x++)
1063 qd_unlock(qda[x]);
1064 }
1065
Steven Whitehousea91ea692006-09-04 12:04:26 -04001066out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001067 gfs2_quota_unhold(ip);
1068}
1069
1070#define MAX_LINE 256
1071
1072static int print_message(struct gfs2_quota_data *qd, char *type)
1073{
1074 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001075
Steven Whitehouse2ec46502009-09-28 12:49:15 +01001076 printk(KERN_INFO "GFS2: fsid=%s: quota %s for %s %u\n",
Steven Whitehouse02630a12006-07-03 11:20:06 -04001077 sdp->sd_fsname, type,
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001078 (qd->qd_id.type == USRQUOTA) ? "user" : "group",
1079 from_kqid(&init_user_ns, qd->qd_id));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001080
1081 return 0;
1082}
1083
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -08001084int gfs2_quota_check(struct gfs2_inode *ip, kuid_t uid, kgid_t gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001085{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001086 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001087 struct gfs2_quota_data *qd;
Steven Whitehousecd915492006-09-04 12:49:07 -04001088 s64 value;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001089 unsigned int x;
1090 int error = 0;
1091
1092 if (!test_bit(GIF_QD_LOCKED, &ip->i_flags))
1093 return 0;
1094
1095 if (sdp->sd_args.ar_quota != GFS2_QUOTA_ON)
1096 return 0;
1097
Bob Peterson5407e242012-05-18 09:28:23 -04001098 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
1099 qd = ip->i_res->rs_qa_qd[x];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001100
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001101 if (!(qid_eq(qd->qd_id, make_kqid_uid(uid)) ||
1102 qid_eq(qd->qd_id, make_kqid_gid(gid))))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001103 continue;
1104
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04001105 value = (s64)be64_to_cpu(qd->qd_qb.qb_value);
Steven Whitehouse7d808232013-11-01 14:52:08 -04001106 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001107 value += qd->qd_change;
Steven Whitehouse7d808232013-11-01 14:52:08 -04001108 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001109
Steven Whitehousecd915492006-09-04 12:49:07 -04001110 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 +00001111 print_message(qd, "exceeded");
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001112 quota_send_warning(qd->qd_id,
Steven Whitehouse2ec46502009-09-28 12:49:15 +01001113 sdp->sd_vfs->s_dev, QUOTA_NL_BHARDWARN);
1114
David Teiglandb3b94fa2006-01-16 16:50:04 +00001115 error = -EDQUOT;
1116 break;
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04001117 } else if (be64_to_cpu(qd->qd_qb.qb_warn) &&
Steven Whitehousecd915492006-09-04 12:49:07 -04001118 (s64)be64_to_cpu(qd->qd_qb.qb_warn) < value &&
David Teiglandb3b94fa2006-01-16 16:50:04 +00001119 time_after_eq(jiffies, qd->qd_last_warn +
Steven Whitehouse568f4c92006-02-27 12:00:42 -05001120 gfs2_tune_get(sdp,
1121 gt_quota_warn_period) * HZ)) {
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001122 quota_send_warning(qd->qd_id,
Steven Whitehouse2ec46502009-09-28 12:49:15 +01001123 sdp->sd_vfs->s_dev, QUOTA_NL_BSOFTWARN);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001124 error = print_message(qd, "warning");
1125 qd->qd_last_warn = jiffies;
1126 }
1127 }
1128
1129 return error;
1130}
1131
Steven Whitehousecd915492006-09-04 12:49:07 -04001132void gfs2_quota_change(struct gfs2_inode *ip, s64 change,
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -08001133 kuid_t uid, kgid_t gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001134{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001135 struct gfs2_quota_data *qd;
1136 unsigned int x;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001137
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001138 if (gfs2_assert_warn(GFS2_SB(&ip->i_inode), change))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001139 return;
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001140 if (ip->i_diskflags & GFS2_DIF_SYSTEM)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001141 return;
1142
Bob Peterson5407e242012-05-18 09:28:23 -04001143 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
1144 qd = ip->i_res->rs_qa_qd[x];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001145
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001146 if (qid_eq(qd->qd_id, make_kqid_uid(uid)) ||
1147 qid_eq(qd->qd_id, make_kqid_gid(gid))) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001148 do_qc(qd, change);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001149 }
1150 }
1151}
1152
Jan Karaceed1722012-07-03 16:45:28 +02001153int gfs2_quota_sync(struct super_block *sb, int type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001154{
Steven Whitehouse8c42d632009-09-11 14:36:44 +01001155 struct gfs2_sbd *sdp = sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001156 struct gfs2_quota_data **qda;
Steven Whitehousebef292a2013-10-03 18:43:20 +01001157 unsigned int max_qd = PAGE_SIZE/sizeof(struct gfs2_holder);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001158 unsigned int num_qd;
1159 unsigned int x;
1160 int error = 0;
1161
David Teiglandb3b94fa2006-01-16 16:50:04 +00001162 qda = kcalloc(max_qd, sizeof(struct gfs2_quota_data *), GFP_KERNEL);
1163 if (!qda)
1164 return -ENOMEM;
1165
Steven Whitehousee46c7722013-10-04 12:29:34 +01001166 mutex_lock(&sdp->sd_quota_sync_mutex);
1167 sdp->sd_quota_sync_gen++;
1168
David Teiglandb3b94fa2006-01-16 16:50:04 +00001169 do {
1170 num_qd = 0;
1171
1172 for (;;) {
1173 error = qd_fish(sdp, qda + num_qd);
1174 if (error || !qda[num_qd])
1175 break;
1176 if (++num_qd == max_qd)
1177 break;
1178 }
1179
1180 if (num_qd) {
1181 if (!error)
1182 error = do_sync(num_qd, qda);
1183 if (!error)
1184 for (x = 0; x < num_qd; x++)
1185 qda[x]->qd_sync_gen =
1186 sdp->sd_quota_sync_gen;
1187
1188 for (x = 0; x < num_qd; x++)
1189 qd_unlock(qda[x]);
1190 }
1191 } while (!error && num_qd == max_qd);
1192
Steven Whitehousee46c7722013-10-04 12:29:34 +01001193 mutex_unlock(&sdp->sd_quota_sync_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001194 kfree(qda);
1195
1196 return error;
1197}
1198
Eric W. Biedermaned87dab2013-01-31 19:42:40 -08001199int gfs2_quota_refresh(struct gfs2_sbd *sdp, struct kqid qid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001200{
1201 struct gfs2_quota_data *qd;
1202 struct gfs2_holder q_gh;
1203 int error;
1204
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001205 error = qd_get(sdp, qid, &qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001206 if (error)
1207 return error;
1208
1209 error = do_glock(qd, FORCE, &q_gh);
1210 if (!error)
1211 gfs2_glock_dq_uninit(&q_gh);
1212
1213 qd_put(qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001214 return error;
1215}
1216
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001217static void gfs2_quota_change_in(struct gfs2_quota_change_host *qc, const void *buf)
1218{
1219 const struct gfs2_quota_change *str = buf;
1220
1221 qc->qc_change = be64_to_cpu(str->qc_change);
1222 qc->qc_flags = be32_to_cpu(str->qc_flags);
Eric W. Biedermane08d8d72013-01-31 19:25:50 -08001223 qc->qc_id = make_kqid(&init_user_ns,
1224 (qc->qc_flags & GFS2_QCF_USER)?USRQUOTA:GRPQUOTA,
1225 be32_to_cpu(str->qc_id));
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001226}
1227
David Teiglandb3b94fa2006-01-16 16:50:04 +00001228int gfs2_quota_init(struct gfs2_sbd *sdp)
1229{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001230 struct gfs2_inode *ip = GFS2_I(sdp->sd_qc_inode);
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001231 u64 size = i_size_read(sdp->sd_qc_inode);
1232 unsigned int blocks = size >> sdp->sd_sb.sb_bsize_shift;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001233 unsigned int x, slot = 0;
1234 unsigned int found = 0;
Steven Whitehousecd915492006-09-04 12:49:07 -04001235 u64 dblock;
1236 u32 extlen = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001237 int error;
1238
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001239 if (gfs2_check_internal_file_size(sdp->sd_qc_inode, 1, 64 << 20))
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001240 return -EIO;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001241
David Teiglandb3b94fa2006-01-16 16:50:04 +00001242 sdp->sd_quota_slots = blocks * sdp->sd_qc_per_block;
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001243 sdp->sd_quota_chunks = DIV_ROUND_UP(sdp->sd_quota_slots, 8 * PAGE_SIZE);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001244
1245 error = -ENOMEM;
1246
1247 sdp->sd_quota_bitmap = kcalloc(sdp->sd_quota_chunks,
Josef Bacik16c5f062008-04-09 09:33:41 -04001248 sizeof(unsigned char *), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001249 if (!sdp->sd_quota_bitmap)
1250 return error;
1251
1252 for (x = 0; x < sdp->sd_quota_chunks; x++) {
Josef Bacik16c5f062008-04-09 09:33:41 -04001253 sdp->sd_quota_bitmap[x] = kzalloc(PAGE_SIZE, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001254 if (!sdp->sd_quota_bitmap[x])
1255 goto fail;
1256 }
1257
1258 for (x = 0; x < blocks; x++) {
1259 struct buffer_head *bh;
1260 unsigned int y;
1261
1262 if (!extlen) {
1263 int new = 0;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001264 error = gfs2_extent_map(&ip->i_inode, x, &new, &dblock, &extlen);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001265 if (error)
1266 goto fail;
1267 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001268 error = -EIO;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001269 bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
1270 if (!bh)
1271 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001272 if (gfs2_metatype_check(sdp, bh, GFS2_METATYPE_QC)) {
1273 brelse(bh);
1274 goto fail;
1275 }
1276
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001277 for (y = 0; y < sdp->sd_qc_per_block && slot < sdp->sd_quota_slots;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001278 y++, slot++) {
Al Virob62f9632006-10-13 23:46:46 -04001279 struct gfs2_quota_change_host qc;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001280 struct gfs2_quota_data *qd;
1281
1282 gfs2_quota_change_in(&qc, bh->b_data +
1283 sizeof(struct gfs2_meta_header) +
1284 y * sizeof(struct gfs2_quota_change));
1285 if (!qc.qc_change)
1286 continue;
1287
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001288 error = qd_alloc(sdp, qc.qc_id, &qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001289 if (error) {
1290 brelse(bh);
1291 goto fail;
1292 }
1293
1294 set_bit(QDF_CHANGE, &qd->qd_flags);
1295 qd->qd_change = qc.qc_change;
1296 qd->qd_slot = slot;
1297 qd->qd_slot_count = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001298
Steven Whitehouse7d808232013-11-01 14:52:08 -04001299 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001300 gfs2_icbit_munge(sdp, sdp->sd_quota_bitmap, slot, 1);
1301 list_add(&qd->qd_list, &sdp->sd_quota_list);
1302 atomic_inc(&sdp->sd_quota_count);
Steven Whitehouse7d808232013-11-01 14:52:08 -04001303 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001304
1305 found++;
1306 }
1307
1308 brelse(bh);
1309 dblock++;
1310 extlen--;
1311 }
1312
1313 if (found)
1314 fs_info(sdp, "found %u quota changes\n", found);
1315
1316 return 0;
1317
Steven Whitehousea91ea692006-09-04 12:04:26 -04001318fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001319 gfs2_quota_cleanup(sdp);
1320 return error;
1321}
1322
David Teiglandb3b94fa2006-01-16 16:50:04 +00001323void gfs2_quota_cleanup(struct gfs2_sbd *sdp)
1324{
1325 struct list_head *head = &sdp->sd_quota_list;
1326 struct gfs2_quota_data *qd;
1327 unsigned int x;
1328
Steven Whitehouse7d808232013-11-01 14:52:08 -04001329 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001330 while (!list_empty(head)) {
1331 qd = list_entry(head->prev, struct gfs2_quota_data, qd_list);
1332
Steven Whitehouse9b9f0392013-11-01 14:52:06 -04001333 /*
1334 * To be removed in due course... we should be able to
1335 * ensure that all refs to the qd have done by this point
1336 * so that this rather odd test is not required
1337 */
1338 spin_lock(&qd->qd_lockref.lock);
1339 if (qd->qd_lockref.count > 1 ||
1340 (qd->qd_lockref.count && !test_bit(QDF_CHANGE, &qd->qd_flags))) {
1341 spin_unlock(&qd->qd_lockref.lock);
Abhijith Das0a7ab792009-01-07 16:03:37 -06001342 list_move(&qd->qd_list, head);
Steven Whitehouse7d808232013-11-01 14:52:08 -04001343 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001344 schedule();
Steven Whitehouse7d808232013-11-01 14:52:08 -04001345 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001346 continue;
1347 }
Steven Whitehouse9b9f0392013-11-01 14:52:06 -04001348 spin_unlock(&qd->qd_lockref.lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001349
Abhijith Das0a7ab792009-01-07 16:03:37 -06001350 list_del(&qd->qd_list);
1351 /* Also remove if this qd exists in the reclaim list */
Steven Whitehouse2147dbf2013-11-04 10:15:08 +00001352 list_lru_del(&gfs2_qd_lru, &qd->qd_lru);
Abhijith Das0a7ab792009-01-07 16:03:37 -06001353 atomic_dec(&sdp->sd_quota_count);
Steven Whitehouse7d808232013-11-01 14:52:08 -04001354 spin_unlock(&qd_lock);
Abhijith Das0a7ab792009-01-07 16:03:37 -06001355
Steven Whitehouse9b9f0392013-11-01 14:52:06 -04001356 if (!qd->qd_lockref.count) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001357 gfs2_assert_warn(sdp, !qd->qd_change);
1358 gfs2_assert_warn(sdp, !qd->qd_slot_count);
1359 } else
1360 gfs2_assert_warn(sdp, qd->qd_slot_count == 1);
1361 gfs2_assert_warn(sdp, !qd->qd_bh_count);
1362
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001363 gfs2_glock_put(qd->qd_gl);
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001364 kmem_cache_free(gfs2_quotad_cachep, qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001365
Steven Whitehouse7d808232013-11-01 14:52:08 -04001366 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001367 }
Steven Whitehouse7d808232013-11-01 14:52:08 -04001368 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001369
1370 gfs2_assert_warn(sdp, !atomic_read(&sdp->sd_quota_count));
1371
1372 if (sdp->sd_quota_bitmap) {
1373 for (x = 0; x < sdp->sd_quota_chunks; x++)
1374 kfree(sdp->sd_quota_bitmap[x]);
1375 kfree(sdp->sd_quota_bitmap);
1376 }
1377}
1378
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001379static void quotad_error(struct gfs2_sbd *sdp, const char *msg, int error)
1380{
1381 if (error == 0 || error == -EROFS)
1382 return;
1383 if (!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))
1384 fs_err(sdp, "gfs2_quotad: %s error %d\n", msg, error);
1385}
1386
1387static void quotad_check_timeo(struct gfs2_sbd *sdp, const char *msg,
Steven Whitehouse8c42d632009-09-11 14:36:44 +01001388 int (*fxn)(struct super_block *sb, int type),
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001389 unsigned long t, unsigned long *timeo,
1390 unsigned int *new_timeo)
1391{
1392 if (t >= *timeo) {
Steven Whitehouse8c42d632009-09-11 14:36:44 +01001393 int error = fxn(sdp->sd_vfs, 0);
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001394 quotad_error(sdp, msg, error);
1395 *timeo = gfs2_tune_get_i(&sdp->sd_tune, new_timeo) * HZ;
1396 } else {
1397 *timeo -= t;
1398 }
1399}
1400
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001401static void quotad_check_trunc_list(struct gfs2_sbd *sdp)
1402{
1403 struct gfs2_inode *ip;
1404
1405 while(1) {
1406 ip = NULL;
1407 spin_lock(&sdp->sd_trunc_lock);
1408 if (!list_empty(&sdp->sd_trunc_list)) {
1409 ip = list_entry(sdp->sd_trunc_list.next,
1410 struct gfs2_inode, i_trunc_list);
1411 list_del_init(&ip->i_trunc_list);
1412 }
1413 spin_unlock(&sdp->sd_trunc_lock);
1414 if (ip == NULL)
1415 return;
1416 gfs2_glock_finish_truncate(ip);
1417 }
1418}
1419
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001420void gfs2_wake_up_statfs(struct gfs2_sbd *sdp) {
1421 if (!sdp->sd_statfs_force_sync) {
1422 sdp->sd_statfs_force_sync = 1;
1423 wake_up(&sdp->sd_quota_wait);
1424 }
1425}
1426
1427
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001428/**
1429 * gfs2_quotad - Write cached quota changes into the quota file
1430 * @sdp: Pointer to GFS2 superblock
1431 *
1432 */
1433
1434int gfs2_quotad(void *data)
1435{
1436 struct gfs2_sbd *sdp = data;
1437 struct gfs2_tune *tune = &sdp->sd_tune;
1438 unsigned long statfs_timeo = 0;
1439 unsigned long quotad_timeo = 0;
1440 unsigned long t = 0;
1441 DEFINE_WAIT(wait);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001442 int empty;
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001443
1444 while (!kthread_should_stop()) {
1445
1446 /* Update the master statfs file */
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001447 if (sdp->sd_statfs_force_sync) {
1448 int error = gfs2_statfs_sync(sdp->sd_vfs, 0);
1449 quotad_error(sdp, "statfs", error);
1450 statfs_timeo = gfs2_tune_get(sdp, gt_statfs_quantum) * HZ;
1451 }
1452 else
1453 quotad_check_timeo(sdp, "statfs", gfs2_statfs_sync, t,
1454 &statfs_timeo,
1455 &tune->gt_statfs_quantum);
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001456
1457 /* Update quota file */
Steven Whitehouseedd2e9a2013-06-03 11:12:59 +01001458 quotad_check_timeo(sdp, "sync", gfs2_quota_sync, t,
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001459 &quotad_timeo, &tune->gt_quota_quantum);
1460
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001461 /* Check for & recover partially truncated inodes */
1462 quotad_check_trunc_list(sdp);
1463
Tejun Heoa0acae02011-11-21 12:32:22 -08001464 try_to_freeze();
1465
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001466 t = min(quotad_timeo, statfs_timeo);
1467
Steven Whitehouse7fa5d202009-03-31 15:49:08 +01001468 prepare_to_wait(&sdp->sd_quota_wait, &wait, TASK_INTERRUPTIBLE);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001469 spin_lock(&sdp->sd_trunc_lock);
1470 empty = list_empty(&sdp->sd_trunc_list);
1471 spin_unlock(&sdp->sd_trunc_lock);
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001472 if (empty && !sdp->sd_statfs_force_sync)
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001473 t -= schedule_timeout(t);
1474 else
1475 t = 0;
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001476 finish_wait(&sdp->sd_quota_wait, &wait);
1477 }
1478
1479 return 0;
1480}
1481
Steven Whitehouse1d371b52009-09-11 15:57:27 +01001482static int gfs2_quota_get_xstate(struct super_block *sb,
1483 struct fs_quota_stat *fqs)
1484{
1485 struct gfs2_sbd *sdp = sb->s_fs_info;
1486
1487 memset(fqs, 0, sizeof(struct fs_quota_stat));
1488 fqs->qs_version = FS_QSTAT_VERSION;
Christoph Hellwigad6bb902010-05-05 00:10:56 +02001489
1490 switch (sdp->sd_args.ar_quota) {
1491 case GFS2_QUOTA_ON:
Christoph Hellwigade7ce32010-06-04 10:56:01 +02001492 fqs->qs_flags |= (FS_QUOTA_UDQ_ENFD | FS_QUOTA_GDQ_ENFD);
Christoph Hellwigad6bb902010-05-05 00:10:56 +02001493 /*FALLTHRU*/
1494 case GFS2_QUOTA_ACCOUNT:
Christoph Hellwigade7ce32010-06-04 10:56:01 +02001495 fqs->qs_flags |= (FS_QUOTA_UDQ_ACCT | FS_QUOTA_GDQ_ACCT);
Christoph Hellwigad6bb902010-05-05 00:10:56 +02001496 break;
1497 case GFS2_QUOTA_OFF:
1498 break;
1499 }
1500
Steven Whitehouse1d371b52009-09-11 15:57:27 +01001501 if (sdp->sd_quota_inode) {
1502 fqs->qs_uquota.qfs_ino = GFS2_I(sdp->sd_quota_inode)->i_no_addr;
1503 fqs->qs_uquota.qfs_nblks = sdp->sd_quota_inode->i_blocks;
1504 }
1505 fqs->qs_uquota.qfs_nextents = 1; /* unsupported */
1506 fqs->qs_gquota = fqs->qs_uquota; /* its the same inode in both cases */
Steven Whitehouse2147dbf2013-11-04 10:15:08 +00001507 fqs->qs_incoredqs = list_lru_count(&gfs2_qd_lru);
Steven Whitehouse1d371b52009-09-11 15:57:27 +01001508 return 0;
1509}
1510
Eric W. Biederman74a8a102012-09-16 02:07:49 -07001511static int gfs2_get_dqblk(struct super_block *sb, struct kqid qid,
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -04001512 struct fs_disk_quota *fdq)
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001513{
1514 struct gfs2_sbd *sdp = sb->s_fs_info;
1515 struct gfs2_quota_lvb *qlvb;
1516 struct gfs2_quota_data *qd;
1517 struct gfs2_holder q_gh;
1518 int error;
1519
1520 memset(fdq, 0, sizeof(struct fs_disk_quota));
1521
1522 if (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
1523 return -ESRCH; /* Crazy XFS error code */
1524
Eric W. Biederman236c64e2013-01-31 20:09:30 -08001525 if ((qid.type != USRQUOTA) &&
1526 (qid.type != GRPQUOTA))
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001527 return -EINVAL;
1528
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001529 error = qd_get(sdp, qid, &qd);
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001530 if (error)
1531 return error;
1532 error = do_glock(qd, FORCE, &q_gh);
1533 if (error)
1534 goto out;
1535
David Teigland4e2f8842012-11-14 13:47:37 -05001536 qlvb = (struct gfs2_quota_lvb *)qd->qd_gl->gl_lksb.sb_lvbptr;
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001537 fdq->d_version = FS_DQUOT_VERSION;
Eric W. Biederman236c64e2013-01-31 20:09:30 -08001538 fdq->d_flags = (qid.type == USRQUOTA) ? FS_USER_QUOTA : FS_GROUP_QUOTA;
Eric W. Biederman558e8522013-01-31 18:15:33 -08001539 fdq->d_id = from_kqid_munged(current_user_ns(), qid);
Abhijith Das14870b42010-11-18 11:24:24 -05001540 fdq->d_blk_hardlimit = be64_to_cpu(qlvb->qb_limit) << sdp->sd_fsb2bb_shift;
1541 fdq->d_blk_softlimit = be64_to_cpu(qlvb->qb_warn) << sdp->sd_fsb2bb_shift;
1542 fdq->d_bcount = be64_to_cpu(qlvb->qb_value) << sdp->sd_fsb2bb_shift;
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001543
1544 gfs2_glock_dq_uninit(&q_gh);
1545out:
1546 qd_put(qd);
1547 return error;
1548}
1549
Steven Whitehousee285c102009-09-23 13:50:49 +01001550/* GFS2 only supports a subset of the XFS fields */
Abhijith Das802ec9b2010-11-18 11:26:46 -05001551#define GFS2_FIELDMASK (FS_DQ_BSOFT|FS_DQ_BHARD|FS_DQ_BCOUNT)
Steven Whitehousee285c102009-09-23 13:50:49 +01001552
Eric W. Biederman74a8a102012-09-16 02:07:49 -07001553static int gfs2_set_dqblk(struct super_block *sb, struct kqid qid,
Christoph Hellwigc472b432010-05-06 17:05:17 -04001554 struct fs_disk_quota *fdq)
Steven Whitehousee285c102009-09-23 13:50:49 +01001555{
1556 struct gfs2_sbd *sdp = sb->s_fs_info;
1557 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
1558 struct gfs2_quota_data *qd;
1559 struct gfs2_holder q_gh, i_gh;
1560 unsigned int data_blocks, ind_blocks;
1561 unsigned int blocks = 0;
1562 int alloc_required;
Steven Whitehousee285c102009-09-23 13:50:49 +01001563 loff_t offset;
1564 int error;
1565
1566 if (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
1567 return -ESRCH; /* Crazy XFS error code */
1568
Eric W. Biederman236c64e2013-01-31 20:09:30 -08001569 if ((qid.type != USRQUOTA) &&
1570 (qid.type != GRPQUOTA))
Steven Whitehousee285c102009-09-23 13:50:49 +01001571 return -EINVAL;
Steven Whitehousee285c102009-09-23 13:50:49 +01001572
1573 if (fdq->d_fieldmask & ~GFS2_FIELDMASK)
1574 return -EINVAL;
Steven Whitehousee285c102009-09-23 13:50:49 +01001575
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001576 error = qd_get(sdp, qid, &qd);
Steven Whitehousee285c102009-09-23 13:50:49 +01001577 if (error)
1578 return error;
1579
Bob Peterson0a305e42012-06-06 11:17:59 +01001580 error = gfs2_rs_alloc(ip);
1581 if (error)
1582 goto out_put;
1583
Steven Whitehousee285c102009-09-23 13:50:49 +01001584 mutex_lock(&ip->i_inode.i_mutex);
1585 error = gfs2_glock_nq_init(qd->qd_gl, LM_ST_EXCLUSIVE, 0, &q_gh);
1586 if (error)
Bob Peterson0a305e42012-06-06 11:17:59 +01001587 goto out_unlockput;
Steven Whitehousee285c102009-09-23 13:50:49 +01001588 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
1589 if (error)
1590 goto out_q;
1591
1592 /* Check for existing entry, if none then alloc new blocks */
1593 error = update_qd(sdp, qd);
1594 if (error)
1595 goto out_i;
1596
1597 /* If nothing has changed, this is a no-op */
1598 if ((fdq->d_fieldmask & FS_DQ_BSOFT) &&
Abhijith Das14870b42010-11-18 11:24:24 -05001599 ((fdq->d_blk_softlimit >> sdp->sd_fsb2bb_shift) == be64_to_cpu(qd->qd_qb.qb_warn)))
Steven Whitehousee285c102009-09-23 13:50:49 +01001600 fdq->d_fieldmask ^= FS_DQ_BSOFT;
Abhijith Das802ec9b2010-11-18 11:26:46 -05001601
Steven Whitehousee285c102009-09-23 13:50:49 +01001602 if ((fdq->d_fieldmask & FS_DQ_BHARD) &&
Abhijith Das14870b42010-11-18 11:24:24 -05001603 ((fdq->d_blk_hardlimit >> sdp->sd_fsb2bb_shift) == be64_to_cpu(qd->qd_qb.qb_limit)))
Steven Whitehousee285c102009-09-23 13:50:49 +01001604 fdq->d_fieldmask ^= FS_DQ_BHARD;
Abhijith Das802ec9b2010-11-18 11:26:46 -05001605
1606 if ((fdq->d_fieldmask & FS_DQ_BCOUNT) &&
1607 ((fdq->d_bcount >> sdp->sd_fsb2bb_shift) == be64_to_cpu(qd->qd_qb.qb_value)))
1608 fdq->d_fieldmask ^= FS_DQ_BCOUNT;
1609
Steven Whitehousee285c102009-09-23 13:50:49 +01001610 if (fdq->d_fieldmask == 0)
1611 goto out_i;
1612
1613 offset = qd2offset(qd);
Bob Peterson461cb412010-06-24 19:21:20 -04001614 alloc_required = gfs2_write_alloc_required(ip, offset, sizeof(struct gfs2_quota));
Abhijith Dase79a46a2011-02-07 11:22:41 -05001615 if (gfs2_is_stuffed(ip))
1616 alloc_required = 1;
Steven Whitehousee285c102009-09-23 13:50:49 +01001617 if (alloc_required) {
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01001618 struct gfs2_alloc_parms ap = { .aflags = 0, };
Steven Whitehousee285c102009-09-23 13:50:49 +01001619 gfs2_write_calc_reserv(ip, sizeof(struct gfs2_quota),
1620 &data_blocks, &ind_blocks);
Bob Peterson564e12b2011-11-21 13:36:17 -05001621 blocks = 1 + data_blocks + ind_blocks;
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01001622 ap.target = blocks;
1623 error = gfs2_inplace_reserve(ip, &ap);
Steven Whitehousee285c102009-09-23 13:50:49 +01001624 if (error)
Bob Peterson564e12b2011-11-21 13:36:17 -05001625 goto out_i;
Steven Whitehouse71f890f2012-07-30 14:53:19 +01001626 blocks += gfs2_rg_blocks(ip, blocks);
Steven Whitehousee285c102009-09-23 13:50:49 +01001627 }
1628
Abhijith Dase79a46a2011-02-07 11:22:41 -05001629 /* Some quotas span block boundaries and can update two blocks,
1630 adding an extra block to the transaction to handle such quotas */
1631 error = gfs2_trans_begin(sdp, blocks + RES_DINODE + 2, 0);
Steven Whitehousee285c102009-09-23 13:50:49 +01001632 if (error)
1633 goto out_release;
1634
1635 /* Apply changes */
1636 error = gfs2_adjust_quota(ip, offset, 0, qd, fdq);
1637
1638 gfs2_trans_end(sdp);
1639out_release:
Bob Peterson564e12b2011-11-21 13:36:17 -05001640 if (alloc_required)
Steven Whitehousee285c102009-09-23 13:50:49 +01001641 gfs2_inplace_release(ip);
Steven Whitehousee285c102009-09-23 13:50:49 +01001642out_i:
1643 gfs2_glock_dq_uninit(&i_gh);
1644out_q:
1645 gfs2_glock_dq_uninit(&q_gh);
Bob Peterson0a305e42012-06-06 11:17:59 +01001646out_unlockput:
Steven Whitehousee285c102009-09-23 13:50:49 +01001647 mutex_unlock(&ip->i_inode.i_mutex);
Bob Peterson0a305e42012-06-06 11:17:59 +01001648out_put:
Steven Whitehousee285c102009-09-23 13:50:49 +01001649 qd_put(qd);
1650 return error;
1651}
1652
Steven Whitehousecc632e72009-09-15 09:59:02 +01001653const struct quotactl_ops gfs2_quotactl_ops = {
1654 .quota_sync = gfs2_quota_sync,
Steven Whitehouse1d371b52009-09-11 15:57:27 +01001655 .get_xstate = gfs2_quota_get_xstate,
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -04001656 .get_dqblk = gfs2_get_dqblk,
Christoph Hellwigc472b432010-05-06 17:05:17 -04001657 .set_dqblk = gfs2_set_dqblk,
Steven Whitehousecc632e72009-09-15 09:59:02 +01001658};