blob: c8b148bbdc8b574f77660eb35c8feba4baec2e5e [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
Joe Perchesd77d1b52014-03-06 12:10:45 -080039#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
40
David Teiglandb3b94fa2006-01-16 16:50:04 +000041#include <linux/sched.h>
42#include <linux/slab.h>
Ying Han1495f232011-05-24 17:12:27 -070043#include <linux/mm.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000044#include <linux/spinlock.h>
45#include <linux/completion.h>
46#include <linux/buffer_head.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000047#include <linux/sort.h>
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000048#include <linux/fs.h>
Steven Whitehouse2e565bb2006-10-02 11:38:25 -040049#include <linux/bio.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050050#include <linux/gfs2_ondisk.h>
Steven Whitehouse37b2c832008-11-17 14:25:37 +000051#include <linux/kthread.h>
52#include <linux/freezer.h>
Steven Whitehouse2ec46502009-09-28 12:49:15 +010053#include <linux/quota.h>
Steven Whitehouse1d371b52009-09-11 15:57:27 +010054#include <linux/dqblk_xfs.h>
Steven Whitehouse9b9f0392013-11-01 14:52:06 -040055#include <linux/lockref.h>
Steven Whitehouse2147dbf2013-11-04 10:15:08 +000056#include <linux/list_lru.h>
Steven Whitehousec754fbb2013-12-12 10:47:59 +000057#include <linux/rcupdate.h>
58#include <linux/rculist_bl.h>
59#include <linux/bit_spinlock.h>
60#include <linux/jhash.h>
Steven Whitehouse1e3d3622014-01-15 12:57:25 +000061#include <linux/vmalloc.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000062
63#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050064#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000065#include "bmap.h"
66#include "glock.h"
67#include "glops.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000068#include "log.h"
69#include "meta_io.h"
70#include "quota.h"
71#include "rgrp.h"
72#include "super.h"
73#include "trans.h"
Steven Whitehouse18ec7d52006-02-08 11:50:51 +000074#include "inode.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050075#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000076
Steven Whitehousec754fbb2013-12-12 10:47:59 +000077#define GFS2_QD_HASH_SHIFT 12
78#define GFS2_QD_HASH_SIZE (1 << GFS2_QD_HASH_SHIFT)
79#define GFS2_QD_HASH_MASK (GFS2_QD_HASH_SIZE - 1)
80
81/* Lock order: qd_lock -> bucket lock -> qd->lockref.lock -> lru lock */
Steven Whitehouse2d9e7232013-12-13 11:46:28 +000082/* -> sd_bitmap_lock */
Steven Whitehouse7d808232013-11-01 14:52:08 -040083static DEFINE_SPINLOCK(qd_lock);
Steven Whitehouse2147dbf2013-11-04 10:15:08 +000084struct list_lru gfs2_qd_lru;
Abhijith Das0a7ab792009-01-07 16:03:37 -060085
Steven Whitehousec754fbb2013-12-12 10:47:59 +000086static struct hlist_bl_head qd_hash_table[GFS2_QD_HASH_SIZE];
87
88static unsigned int gfs2_qd_hash(const struct gfs2_sbd *sdp,
89 const struct kqid qid)
90{
91 unsigned int h;
92
93 h = jhash(&sdp, sizeof(struct gfs2_sbd *), 0);
94 h = jhash(&qid, sizeof(struct kqid), h);
95
96 return h & GFS2_QD_HASH_MASK;
97}
98
99static inline void spin_lock_bucket(unsigned int hash)
100{
101 hlist_bl_lock(&qd_hash_table[hash]);
102}
103
104static inline void spin_unlock_bucket(unsigned int hash)
105{
106 hlist_bl_unlock(&qd_hash_table[hash]);
107}
108
109static void gfs2_qd_dealloc(struct rcu_head *rcu)
110{
111 struct gfs2_quota_data *qd = container_of(rcu, struct gfs2_quota_data, qd_rcu);
112 kmem_cache_free(gfs2_quotad_cachep, qd);
113}
114
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000115static void gfs2_qd_dispose(struct list_head *list)
Abhijith Das0a7ab792009-01-07 16:03:37 -0600116{
117 struct gfs2_quota_data *qd;
118 struct gfs2_sbd *sdp;
Abhijith Das0a7ab792009-01-07 16:03:37 -0600119
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000120 while (!list_empty(list)) {
121 qd = list_entry(list->next, struct gfs2_quota_data, qd_lru);
Abhijith Das0a7ab792009-01-07 16:03:37 -0600122 sdp = qd->qd_gl->gl_sbd;
123
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000124 list_del(&qd->qd_lru);
125
Abhijith Das0a7ab792009-01-07 16:03:37 -0600126 /* Free from the filesystem-specific list */
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000127 spin_lock(&qd_lock);
Abhijith Das0a7ab792009-01-07 16:03:37 -0600128 list_del(&qd->qd_list);
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000129 spin_unlock(&qd_lock);
Abhijith Das0a7ab792009-01-07 16:03:37 -0600130
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000131 spin_lock_bucket(qd->qd_hash);
132 hlist_bl_del_rcu(&qd->qd_hlist);
133 spin_unlock_bucket(qd->qd_hash);
134
Abhijith Das0a7ab792009-01-07 16:03:37 -0600135 gfs2_assert_warn(sdp, !qd->qd_change);
136 gfs2_assert_warn(sdp, !qd->qd_slot_count);
137 gfs2_assert_warn(sdp, !qd->qd_bh_count);
138
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000139 gfs2_glock_put(qd->qd_gl);
Abhijith Das0a7ab792009-01-07 16:03:37 -0600140 atomic_dec(&sdp->sd_quota_count);
141
142 /* Delete it from the common reclaim list */
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000143 call_rcu(&qd->qd_rcu, gfs2_qd_dealloc);
Abhijith Das0a7ab792009-01-07 16:03:37 -0600144 }
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000145}
146
147
148static enum lru_status gfs2_qd_isolate(struct list_head *item, spinlock_t *lock, void *arg)
149{
150 struct list_head *dispose = arg;
151 struct gfs2_quota_data *qd = list_entry(item, struct gfs2_quota_data, qd_lru);
152
153 if (!spin_trylock(&qd->qd_lockref.lock))
154 return LRU_SKIP;
155
156 if (qd->qd_lockref.count == 0) {
157 lockref_mark_dead(&qd->qd_lockref);
158 list_move(&qd->qd_lru, dispose);
159 }
160
161 spin_unlock(&qd->qd_lockref.lock);
162 return LRU_REMOVED;
163}
164
165static unsigned long gfs2_qd_shrink_scan(struct shrinker *shrink,
166 struct shrink_control *sc)
167{
168 LIST_HEAD(dispose);
169 unsigned long freed;
170
171 if (!(sc->gfp_mask & __GFP_FS))
172 return SHRINK_STOP;
173
174 freed = list_lru_walk_node(&gfs2_qd_lru, sc->nid, gfs2_qd_isolate,
175 &dispose, &sc->nr_to_scan);
176
177 gfs2_qd_dispose(&dispose);
178
Dave Chinner1ab6c492013-08-28 10:18:09 +1000179 return freed;
180}
Abhijith Das0a7ab792009-01-07 16:03:37 -0600181
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000182static unsigned long gfs2_qd_shrink_count(struct shrinker *shrink,
183 struct shrink_control *sc)
Dave Chinner1ab6c492013-08-28 10:18:09 +1000184{
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000185 return vfs_pressure_ratio(list_lru_count_node(&gfs2_qd_lru, sc->nid));
Abhijith Das0a7ab792009-01-07 16:03:37 -0600186}
187
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000188struct shrinker gfs2_qd_shrinker = {
189 .count_objects = gfs2_qd_shrink_count,
190 .scan_objects = gfs2_qd_shrink_scan,
191 .seeks = DEFAULT_SEEKS,
192 .flags = SHRINKER_NUMA_AWARE,
193};
194
195
Eric W. Biederman2f6c9892013-01-31 18:33:38 -0800196static u64 qd2index(struct gfs2_quota_data *qd)
197{
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800198 struct kqid qid = qd->qd_id;
199 return (2 * (u64)from_kqid(&init_user_ns, qid)) +
Bob Peterson37f71572013-05-10 11:59:18 -0400200 ((qid.type == USRQUOTA) ? 0 : 1);
Eric W. Biederman2f6c9892013-01-31 18:33:38 -0800201}
202
Steven Whitehousecd915492006-09-04 12:49:07 -0400203static u64 qd2offset(struct gfs2_quota_data *qd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000204{
Steven Whitehousecd915492006-09-04 12:49:07 -0400205 u64 offset;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000206
Eric W. Biederman2f6c9892013-01-31 18:33:38 -0800207 offset = qd2index(qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000208 offset *= sizeof(struct gfs2_quota);
209
210 return offset;
211}
212
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000213static struct gfs2_quota_data *qd_alloc(unsigned hash, struct gfs2_sbd *sdp, struct kqid qid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000214{
215 struct gfs2_quota_data *qd;
216 int error;
217
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000218 qd = kmem_cache_zalloc(gfs2_quotad_cachep, GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000219 if (!qd)
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000220 return NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000221
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000222 qd->qd_sbd = sdp;
Steven Whitehouse9b9f0392013-11-01 14:52:06 -0400223 qd->qd_lockref.count = 1;
224 spin_lock_init(&qd->qd_lockref.lock);
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800225 qd->qd_id = qid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000226 qd->qd_slot = -1;
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000227 INIT_LIST_HEAD(&qd->qd_lru);
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000228 qd->qd_hash = hash;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000229
Eric W. Biederman2f6c9892013-01-31 18:33:38 -0800230 error = gfs2_glock_get(sdp, qd2index(qd),
David Teiglandb3b94fa2006-01-16 16:50:04 +0000231 &gfs2_quota_glops, CREATE, &qd->qd_gl);
232 if (error)
233 goto fail;
234
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000235 return qd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000236
Steven Whitehousea91ea692006-09-04 12:04:26 -0400237fail:
Steven Whitehouse37b2c832008-11-17 14:25:37 +0000238 kmem_cache_free(gfs2_quotad_cachep, qd);
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000239 return NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000240}
241
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000242static struct gfs2_quota_data *gfs2_qd_search_bucket(unsigned int hash,
243 const struct gfs2_sbd *sdp,
244 struct kqid qid)
245{
246 struct gfs2_quota_data *qd;
247 struct hlist_bl_node *h;
248
249 hlist_bl_for_each_entry_rcu(qd, h, &qd_hash_table[hash], qd_hlist) {
250 if (!qid_eq(qd->qd_id, qid))
251 continue;
252 if (qd->qd_sbd != sdp)
253 continue;
254 if (lockref_get_not_dead(&qd->qd_lockref)) {
255 list_lru_del(&gfs2_qd_lru, &qd->qd_lru);
256 return qd;
257 }
258 }
259
260 return NULL;
261}
262
263
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800264static int qd_get(struct gfs2_sbd *sdp, struct kqid qid,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000265 struct gfs2_quota_data **qdp)
266{
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000267 struct gfs2_quota_data *qd, *new_qd;
268 unsigned int hash = gfs2_qd_hash(sdp, qid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000269
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000270 rcu_read_lock();
271 *qdp = qd = gfs2_qd_search_bucket(hash, sdp, qid);
272 rcu_read_unlock();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000273
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000274 if (qd)
275 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000276
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000277 new_qd = qd_alloc(hash, sdp, qid);
278 if (!new_qd)
279 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000280
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000281 spin_lock(&qd_lock);
282 spin_lock_bucket(hash);
283 *qdp = qd = gfs2_qd_search_bucket(hash, sdp, qid);
284 if (qd == NULL) {
285 *qdp = new_qd;
286 list_add(&new_qd->qd_list, &sdp->sd_quota_list);
287 hlist_bl_add_head_rcu(&new_qd->qd_hlist, &qd_hash_table[hash]);
288 atomic_inc(&sdp->sd_quota_count);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000289 }
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000290 spin_unlock_bucket(hash);
291 spin_unlock(&qd_lock);
292
293 if (qd) {
294 gfs2_glock_put(new_qd->qd_gl);
295 kmem_cache_free(gfs2_quotad_cachep, new_qd);
296 }
297
298 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000299}
300
Steven Whitehousec754fbb2013-12-12 10:47:59 +0000301
David Teiglandb3b94fa2006-01-16 16:50:04 +0000302static void qd_hold(struct gfs2_quota_data *qd)
303{
304 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehouse9b9f0392013-11-01 14:52:06 -0400305 gfs2_assert(sdp, !__lockref_is_dead(&qd->qd_lockref));
306 lockref_get(&qd->qd_lockref);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000307}
308
309static void qd_put(struct gfs2_quota_data *qd)
310{
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000311 if (lockref_put_or_lock(&qd->qd_lockref))
312 return;
Steven Whitehouse9b9f0392013-11-01 14:52:06 -0400313
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000314 qd->qd_lockref.count = 0;
315 list_lru_add(&gfs2_qd_lru, &qd->qd_lru);
316 spin_unlock(&qd->qd_lockref.lock);
Steven Whitehouse9b9f0392013-11-01 14:52:06 -0400317
David Teiglandb3b94fa2006-01-16 16:50:04 +0000318}
319
320static int slot_get(struct gfs2_quota_data *qd)
321{
Steven Whitehouseee2411a2013-12-12 17:29:32 +0000322 struct gfs2_sbd *sdp = qd->qd_sbd;
323 unsigned int bit;
324 int error = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000325
Steven Whitehouse2d9e7232013-12-13 11:46:28 +0000326 spin_lock(&sdp->sd_bitmap_lock);
Steven Whitehouseee2411a2013-12-12 17:29:32 +0000327 if (qd->qd_slot_count != 0)
328 goto out;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000329
Steven Whitehouseee2411a2013-12-12 17:29:32 +0000330 error = -ENOSPC;
331 bit = find_first_zero_bit(sdp->sd_quota_bitmap, sdp->sd_quota_slots);
332 if (bit < sdp->sd_quota_slots) {
333 set_bit(bit, sdp->sd_quota_bitmap);
334 qd->qd_slot = bit;
Abhi Dase9fb7c72014-03-31 01:19:29 -0500335 error = 0;
Steven Whitehouseee2411a2013-12-12 17:29:32 +0000336out:
337 qd->qd_slot_count++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000338 }
Steven Whitehouse2d9e7232013-12-13 11:46:28 +0000339 spin_unlock(&sdp->sd_bitmap_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000340
Steven Whitehouseee2411a2013-12-12 17:29:32 +0000341 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000342}
343
344static void slot_hold(struct gfs2_quota_data *qd)
345{
Steven Whitehouseee2411a2013-12-12 17:29:32 +0000346 struct gfs2_sbd *sdp = qd->qd_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000347
Steven Whitehouse2d9e7232013-12-13 11:46:28 +0000348 spin_lock(&sdp->sd_bitmap_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000349 gfs2_assert(sdp, qd->qd_slot_count);
350 qd->qd_slot_count++;
Steven Whitehouse2d9e7232013-12-13 11:46:28 +0000351 spin_unlock(&sdp->sd_bitmap_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000352}
353
354static void slot_put(struct gfs2_quota_data *qd)
355{
Steven Whitehouseee2411a2013-12-12 17:29:32 +0000356 struct gfs2_sbd *sdp = qd->qd_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000357
Steven Whitehouse2d9e7232013-12-13 11:46:28 +0000358 spin_lock(&sdp->sd_bitmap_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000359 gfs2_assert(sdp, qd->qd_slot_count);
360 if (!--qd->qd_slot_count) {
Steven Whitehouseee2411a2013-12-12 17:29:32 +0000361 BUG_ON(!test_and_clear_bit(qd->qd_slot, sdp->sd_quota_bitmap));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000362 qd->qd_slot = -1;
363 }
Steven Whitehouse2d9e7232013-12-13 11:46:28 +0000364 spin_unlock(&sdp->sd_bitmap_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000365}
366
367static int bh_get(struct gfs2_quota_data *qd)
368{
369 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400370 struct gfs2_inode *ip = GFS2_I(sdp->sd_qc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000371 unsigned int block, offset;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000372 struct buffer_head *bh;
373 int error;
Steven Whitehouse23591252006-10-13 17:25:45 -0400374 struct buffer_head bh_map = { .b_state = 0, .b_blocknr = 0 };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000375
Steven Whitehousef55ab262006-02-21 12:51:39 +0000376 mutex_lock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000377
378 if (qd->qd_bh_count++) {
Steven Whitehousef55ab262006-02-21 12:51:39 +0000379 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000380 return 0;
381 }
382
383 block = qd->qd_slot / sdp->sd_qc_per_block;
Bob Peterson0d0868b2007-12-11 18:51:25 -0600384 offset = qd->qd_slot % sdp->sd_qc_per_block;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000385
Steven Whitehouse23591252006-10-13 17:25:45 -0400386 bh_map.b_size = 1 << ip->i_inode.i_blkbits;
Bob Petersone9e1ef22007-12-10 14:13:27 -0600387 error = gfs2_block_map(&ip->i_inode, block, &bh_map, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000388 if (error)
389 goto fail;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -0400390 error = gfs2_meta_read(ip->i_gl, bh_map.b_blocknr, DIO_WAIT, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000391 if (error)
392 goto fail;
393 error = -EIO;
394 if (gfs2_metatype_check(sdp, bh, GFS2_METATYPE_QC))
395 goto fail_brelse;
396
397 qd->qd_bh = bh;
398 qd->qd_bh_qc = (struct gfs2_quota_change *)
399 (bh->b_data + sizeof(struct gfs2_meta_header) +
400 offset * sizeof(struct gfs2_quota_change));
401
Josef Whiter2e95b662007-02-20 00:03:29 -0500402 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000403
404 return 0;
405
Steven Whitehousea91ea692006-09-04 12:04:26 -0400406fail_brelse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000407 brelse(bh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400408fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000409 qd->qd_bh_count--;
Steven Whitehousef55ab262006-02-21 12:51:39 +0000410 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000411 return error;
412}
413
414static void bh_put(struct gfs2_quota_data *qd)
415{
416 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
417
Steven Whitehousef55ab262006-02-21 12:51:39 +0000418 mutex_lock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000419 gfs2_assert(sdp, qd->qd_bh_count);
420 if (!--qd->qd_bh_count) {
421 brelse(qd->qd_bh);
422 qd->qd_bh = NULL;
423 qd->qd_bh_qc = NULL;
424 }
Steven Whitehousef55ab262006-02-21 12:51:39 +0000425 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000426}
427
Steven Whitehouse1bf59bf2013-10-04 11:14:46 +0100428static int qd_check_sync(struct gfs2_sbd *sdp, struct gfs2_quota_data *qd,
429 u64 *sync_gen)
430{
431 if (test_bit(QDF_LOCKED, &qd->qd_flags) ||
432 !test_bit(QDF_CHANGE, &qd->qd_flags) ||
433 (sync_gen && (qd->qd_sync_gen >= *sync_gen)))
434 return 0;
435
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000436 if (!lockref_get_not_dead(&qd->qd_lockref))
437 return 0;
Steven Whitehouse1bf59bf2013-10-04 11:14:46 +0100438
Steven Whitehouse2147dbf2013-11-04 10:15:08 +0000439 list_move_tail(&qd->qd_list, &sdp->sd_quota_list);
Steven Whitehouse1bf59bf2013-10-04 11:14:46 +0100440 set_bit(QDF_LOCKED, &qd->qd_flags);
Steven Whitehouse1bf59bf2013-10-04 11:14:46 +0100441 qd->qd_change_sync = qd->qd_change;
Steven Whitehouse2d9e7232013-12-13 11:46:28 +0000442 slot_hold(qd);
Steven Whitehouse1bf59bf2013-10-04 11:14:46 +0100443 return 1;
444}
445
David Teiglandb3b94fa2006-01-16 16:50:04 +0000446static int qd_fish(struct gfs2_sbd *sdp, struct gfs2_quota_data **qdp)
447{
448 struct gfs2_quota_data *qd = NULL;
449 int error;
450 int found = 0;
451
452 *qdp = NULL;
453
454 if (sdp->sd_vfs->s_flags & MS_RDONLY)
455 return 0;
456
Steven Whitehouse7d808232013-11-01 14:52:08 -0400457 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000458
459 list_for_each_entry(qd, &sdp->sd_quota_list, qd_list) {
Steven Whitehouse1bf59bf2013-10-04 11:14:46 +0100460 found = qd_check_sync(sdp, qd, &sdp->sd_quota_sync_gen);
461 if (found)
462 break;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000463 }
464
465 if (!found)
466 qd = NULL;
467
Steven Whitehouse7d808232013-11-01 14:52:08 -0400468 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000469
470 if (qd) {
471 gfs2_assert_warn(sdp, qd->qd_change_sync);
472 error = bh_get(qd);
473 if (error) {
474 clear_bit(QDF_LOCKED, &qd->qd_flags);
475 slot_put(qd);
476 qd_put(qd);
477 return error;
478 }
479 }
480
481 *qdp = qd;
482
483 return 0;
484}
485
David Teiglandb3b94fa2006-01-16 16:50:04 +0000486static void qd_unlock(struct gfs2_quota_data *qd)
487{
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500488 gfs2_assert_warn(qd->qd_gl->gl_sbd,
489 test_bit(QDF_LOCKED, &qd->qd_flags));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000490 clear_bit(QDF_LOCKED, &qd->qd_flags);
491 bh_put(qd);
492 slot_put(qd);
493 qd_put(qd);
494}
495
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800496static int qdsb_get(struct gfs2_sbd *sdp, struct kqid qid,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000497 struct gfs2_quota_data **qdp)
498{
499 int error;
500
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800501 error = qd_get(sdp, qid, qdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000502 if (error)
503 return error;
504
505 error = slot_get(*qdp);
506 if (error)
507 goto fail;
508
509 error = bh_get(*qdp);
510 if (error)
511 goto fail_slot;
512
513 return 0;
514
Steven Whitehousea91ea692006-09-04 12:04:26 -0400515fail_slot:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000516 slot_put(*qdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400517fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000518 qd_put(*qdp);
519 return error;
520}
521
522static void qdsb_put(struct gfs2_quota_data *qd)
523{
524 bh_put(qd);
525 slot_put(qd);
526 qd_put(qd);
527}
528
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -0800529int gfs2_quota_hold(struct gfs2_inode *ip, kuid_t uid, kgid_t gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000530{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400531 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Bob Peterson5407e242012-05-18 09:28:23 -0400532 struct gfs2_quota_data **qd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000533 int error;
534
Andrew Priceaaaf68c2012-10-12 16:45:08 +0100535 if (ip->i_res == NULL) {
536 error = gfs2_rs_alloc(ip);
537 if (error)
538 return error;
539 }
Bob Peterson5407e242012-05-18 09:28:23 -0400540
541 qd = ip->i_res->rs_qa_qd;
542
543 if (gfs2_assert_warn(sdp, !ip->i_res->rs_qa_qd_num) ||
David Teiglandb3b94fa2006-01-16 16:50:04 +0000544 gfs2_assert_warn(sdp, !test_bit(GIF_QD_LOCKED, &ip->i_flags)))
545 return -EIO;
546
547 if (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
548 return 0;
549
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800550 error = qdsb_get(sdp, make_kqid_uid(ip->i_inode.i_uid), qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000551 if (error)
552 goto out;
Bob Peterson5407e242012-05-18 09:28:23 -0400553 ip->i_res->rs_qa_qd_num++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000554 qd++;
555
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800556 error = qdsb_get(sdp, make_kqid_gid(ip->i_inode.i_gid), qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000557 if (error)
558 goto out;
Bob Peterson5407e242012-05-18 09:28:23 -0400559 ip->i_res->rs_qa_qd_num++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000560 qd++;
561
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -0800562 if (!uid_eq(uid, NO_UID_QUOTA_CHANGE) &&
563 !uid_eq(uid, ip->i_inode.i_uid)) {
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800564 error = qdsb_get(sdp, make_kqid_uid(uid), qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000565 if (error)
566 goto out;
Bob Peterson5407e242012-05-18 09:28:23 -0400567 ip->i_res->rs_qa_qd_num++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000568 qd++;
569 }
570
Eric W. Biederman6b24c0d2013-01-31 21:56:13 -0800571 if (!gid_eq(gid, NO_GID_QUOTA_CHANGE) &&
572 !gid_eq(gid, ip->i_inode.i_gid)) {
Eric W. Biedermanb59c8b62013-01-31 19:35:56 -0800573 error = qdsb_get(sdp, make_kqid_gid(gid), qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000574 if (error)
575 goto out;
Bob Peterson5407e242012-05-18 09:28:23 -0400576 ip->i_res->rs_qa_qd_num++;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000577 qd++;
578 }
579
Steven Whitehousea91ea692006-09-04 12:04:26 -0400580out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000581 if (error)
582 gfs2_quota_unhold(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000583 return error;
584}
585
586void gfs2_quota_unhold(struct gfs2_inode *ip)
587{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400588 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589 unsigned int x;
590
Bob Peterson5407e242012-05-18 09:28:23 -0400591 if (ip->i_res == NULL)
592 return;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000593 gfs2_assert_warn(sdp, !test_bit(GIF_QD_LOCKED, &ip->i_flags));
594
Bob Peterson5407e242012-05-18 09:28:23 -0400595 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
596 qdsb_put(ip->i_res->rs_qa_qd[x]);
597 ip->i_res->rs_qa_qd[x] = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000598 }
Bob Peterson5407e242012-05-18 09:28:23 -0400599 ip->i_res->rs_qa_qd_num = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000600}
601
602static int sort_qd(const void *a, const void *b)
603{
Steven Whitehouse48fac172006-09-05 15:17:12 -0400604 const struct gfs2_quota_data *qd_a = *(const struct gfs2_quota_data **)a;
605 const struct gfs2_quota_data *qd_b = *(const struct gfs2_quota_data **)b;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000606
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800607 if (qid_lt(qd_a->qd_id, qd_b->qd_id))
Steven Whitehouse48fac172006-09-05 15:17:12 -0400608 return -1;
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800609 if (qid_lt(qd_b->qd_id, qd_a->qd_id))
Steven Whitehouse48fac172006-09-05 15:17:12 -0400610 return 1;
Steven Whitehouse48fac172006-09-05 15:17:12 -0400611 return 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000612}
613
Steven Whitehousecd915492006-09-04 12:49:07 -0400614static void do_qc(struct gfs2_quota_data *qd, s64 change)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000615{
616 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400617 struct gfs2_inode *ip = GFS2_I(sdp->sd_qc_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000618 struct gfs2_quota_change *qc = qd->qd_bh_qc;
Steven Whitehousecd915492006-09-04 12:49:07 -0400619 s64 x;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000620
Steven Whitehousef55ab262006-02-21 12:51:39 +0000621 mutex_lock(&sdp->sd_quota_mutex);
Steven Whitehouse350a9b02012-12-14 12:36:02 +0000622 gfs2_trans_add_meta(ip->i_gl, qd->qd_bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000623
624 if (!test_bit(QDF_CHANGE, &qd->qd_flags)) {
625 qc->qc_change = 0;
626 qc->qc_flags = 0;
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800627 if (qd->qd_id.type == USRQUOTA)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000628 qc->qc_flags = cpu_to_be32(GFS2_QCF_USER);
Eric W. Biederman05e0a602013-01-31 19:52:08 -0800629 qc->qc_id = cpu_to_be32(from_kqid(&init_user_ns, qd->qd_id));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000630 }
631
Al Virob44b84d2006-10-14 10:46:30 -0400632 x = be64_to_cpu(qc->qc_change) + change;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000633 qc->qc_change = cpu_to_be64(x);
634
Steven Whitehouse7d808232013-11-01 14:52:08 -0400635 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000636 qd->qd_change = x;
Steven Whitehouse7d808232013-11-01 14:52:08 -0400637 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000638
639 if (!x) {
640 gfs2_assert_warn(sdp, test_bit(QDF_CHANGE, &qd->qd_flags));
641 clear_bit(QDF_CHANGE, &qd->qd_flags);
642 qc->qc_flags = 0;
643 qc->qc_id = 0;
644 slot_put(qd);
645 qd_put(qd);
646 } else if (!test_and_set_bit(QDF_CHANGE, &qd->qd_flags)) {
647 qd_hold(qd);
648 slot_hold(qd);
649 }
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400650
Steven Whitehousef55ab262006-02-21 12:51:39 +0000651 mutex_unlock(&sdp->sd_quota_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000652}
653
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000654/**
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100655 * gfs2_adjust_quota - adjust record of current block usage
656 * @ip: The quota inode
657 * @loc: Offset of the entry in the quota file
Steven Whitehousee285c102009-09-23 13:50:49 +0100658 * @change: The amount of usage change to record
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100659 * @qd: The quota data
Steven Whitehousee285c102009-09-23 13:50:49 +0100660 * @fdq: The updated limits to record
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000661 *
662 * This function was mostly borrowed from gfs2_block_truncate_page which was
663 * in turn mostly borrowed from ext3
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100664 *
665 * Returns: 0 or -ve on error
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000666 */
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100667
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000668static int gfs2_adjust_quota(struct gfs2_inode *ip, loff_t loc,
Steven Whitehousee285c102009-09-23 13:50:49 +0100669 s64 change, struct gfs2_quota_data *qd,
670 struct fs_disk_quota *fdq)
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000671{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400672 struct inode *inode = &ip->i_inode;
Abhijith Das14870b42010-11-18 11:24:24 -0500673 struct gfs2_sbd *sdp = GFS2_SB(inode);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000674 struct address_space *mapping = inode->i_mapping;
675 unsigned long index = loc >> PAGE_CACHE_SHIFT;
Abhijith Das1990e912007-05-31 17:52:02 -0500676 unsigned offset = loc & (PAGE_CACHE_SIZE - 1);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000677 unsigned blocksize, iblock, pos;
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100678 struct buffer_head *bh;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000679 struct page *page;
Abhijith Das7e619bc2010-05-07 17:50:18 -0400680 void *kaddr, *ptr;
Al Viro951b4bd2013-06-02 19:53:40 -0400681 struct gfs2_quota q;
Abhijith Das7e619bc2010-05-07 17:50:18 -0400682 int err, nbytes;
Steven Whitehousee285c102009-09-23 13:50:49 +0100683 u64 size;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000684
Steven Whitehouse891a8e92011-09-19 10:25:49 +0100685 if (gfs2_is_stuffed(ip)) {
686 err = gfs2_unstuff_dinode(ip, NULL);
687 if (err)
688 return err;
689 }
Abhijith Das7e619bc2010-05-07 17:50:18 -0400690
691 memset(&q, 0, sizeof(struct gfs2_quota));
Andrew Price43066292012-04-16 16:40:55 +0100692 err = gfs2_internal_read(ip, (char *)&q, &loc, sizeof(q));
Abhijith Das7e619bc2010-05-07 17:50:18 -0400693 if (err < 0)
694 return err;
695
696 err = -EIO;
Al Viro951b4bd2013-06-02 19:53:40 -0400697 be64_add_cpu(&q.qu_value, change);
698 qd->qd_qb.qb_value = q.qu_value;
Abhijith Das7e619bc2010-05-07 17:50:18 -0400699 if (fdq) {
700 if (fdq->d_fieldmask & FS_DQ_BSOFT) {
Al Viro951b4bd2013-06-02 19:53:40 -0400701 q.qu_warn = cpu_to_be64(fdq->d_blk_softlimit >> sdp->sd_fsb2bb_shift);
702 qd->qd_qb.qb_warn = q.qu_warn;
Abhijith Das7e619bc2010-05-07 17:50:18 -0400703 }
704 if (fdq->d_fieldmask & FS_DQ_BHARD) {
Al Viro951b4bd2013-06-02 19:53:40 -0400705 q.qu_limit = cpu_to_be64(fdq->d_blk_hardlimit >> sdp->sd_fsb2bb_shift);
706 qd->qd_qb.qb_limit = q.qu_limit;
Abhijith Das7e619bc2010-05-07 17:50:18 -0400707 }
Abhijith Das802ec9b2010-11-18 11:26:46 -0500708 if (fdq->d_fieldmask & FS_DQ_BCOUNT) {
Al Viro951b4bd2013-06-02 19:53:40 -0400709 q.qu_value = cpu_to_be64(fdq->d_bcount >> sdp->sd_fsb2bb_shift);
710 qd->qd_qb.qb_value = q.qu_value;
Abhijith Das802ec9b2010-11-18 11:26:46 -0500711 }
Abhijith Das7e619bc2010-05-07 17:50:18 -0400712 }
713
714 /* Write the quota into the quota file on disk */
Al Viro951b4bd2013-06-02 19:53:40 -0400715 ptr = &q;
Abhijith Das7e619bc2010-05-07 17:50:18 -0400716 nbytes = sizeof(struct gfs2_quota);
717get_a_page:
Bob Peterson220cca22012-03-19 15:25:50 -0400718 page = find_or_create_page(mapping, index, GFP_NOFS);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000719 if (!page)
720 return -ENOMEM;
721
722 blocksize = inode->i_sb->s_blocksize;
723 iblock = index << (PAGE_CACHE_SHIFT - inode->i_sb->s_blocksize_bits);
724
725 if (!page_has_buffers(page))
726 create_empty_buffers(page, blocksize, 0);
727
728 bh = page_buffers(page);
729 pos = blocksize;
730 while (offset >= pos) {
731 bh = bh->b_this_page;
732 iblock++;
733 pos += blocksize;
734 }
735
736 if (!buffer_mapped(bh)) {
Bob Petersone9e1ef22007-12-10 14:13:27 -0600737 gfs2_block_map(inode, iblock, bh, 1);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000738 if (!buffer_mapped(bh))
Abhijith Das7e619bc2010-05-07 17:50:18 -0400739 goto unlock_out;
740 /* If it's a newly allocated disk block for quota, zero it */
Abhijith Das8b421602010-07-04 01:33:24 -0400741 if (buffer_new(bh))
742 zero_user(page, pos - blocksize, bh->b_size);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000743 }
744
745 if (PageUptodate(page))
746 set_buffer_uptodate(bh);
747
748 if (!buffer_uptodate(bh)) {
Steven Whitehouse20ed0532011-10-31 09:52:02 +0000749 ll_rw_block(READ | REQ_META, 1, &bh);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000750 wait_on_buffer(bh);
751 if (!buffer_uptodate(bh))
Abhijith Das7e619bc2010-05-07 17:50:18 -0400752 goto unlock_out;
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000753 }
754
Bob Peterson37f71572013-05-10 11:59:18 -0400755 gfs2_trans_add_data(ip->i_gl, bh);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000756
Cong Wangd9349282011-11-25 23:14:30 +0800757 kaddr = kmap_atomic(page);
Abhijith Das7e619bc2010-05-07 17:50:18 -0400758 if (offset + sizeof(struct gfs2_quota) > PAGE_CACHE_SIZE)
759 nbytes = PAGE_CACHE_SIZE - offset;
760 memcpy(kaddr + offset, ptr, nbytes);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000761 flush_dcache_page(page);
Cong Wangd9349282011-11-25 23:14:30 +0800762 kunmap_atomic(kaddr);
Abhijith Das7e619bc2010-05-07 17:50:18 -0400763 unlock_page(page);
764 page_cache_release(page);
Steven Whitehousee285c102009-09-23 13:50:49 +0100765
Abhijith Das7e619bc2010-05-07 17:50:18 -0400766 /* If quota straddles page boundary, we need to update the rest of the
767 * quota at the beginning of the next page */
Abhijith Das8b421602010-07-04 01:33:24 -0400768 if ((offset + sizeof(struct gfs2_quota)) > PAGE_CACHE_SIZE) {
Abhijith Das7e619bc2010-05-07 17:50:18 -0400769 ptr = ptr + nbytes;
770 nbytes = sizeof(struct gfs2_quota) - nbytes;
771 offset = 0;
772 index++;
773 goto get_a_page;
774 }
775
Steven Whitehousee285c102009-09-23 13:50:49 +0100776 size = loc + sizeof(struct gfs2_quota);
Steven Whitehousea2e0f792010-08-11 09:53:11 +0100777 if (size > inode->i_size)
Steven Whitehousee285c102009-09-23 13:50:49 +0100778 i_size_write(inode, size);
Steven Whitehousee285c102009-09-23 13:50:49 +0100779 inode->i_mtime = inode->i_atime = CURRENT_TIME;
Steven Whitehousee285c102009-09-23 13:50:49 +0100780 mark_inode_dirty(inode);
Abhi Das991deec2014-04-17 00:55:04 -0500781 set_bit(QDF_REFRESH, &qd->qd_flags);
Bob Peterson500242a2012-05-15 14:51:54 -0400782 return 0;
Steven Whitehouseab9bbda2011-08-15 14:20:36 +0100783
Abhijith Das7e619bc2010-05-07 17:50:18 -0400784unlock_out:
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000785 unlock_page(page);
786 page_cache_release(page);
787 return err;
788}
789
David Teiglandb3b94fa2006-01-16 16:50:04 +0000790static int do_sync(unsigned int num_qd, struct gfs2_quota_data **qda)
791{
792 struct gfs2_sbd *sdp = (*qda)->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400793 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
Steven Whitehouse7b9cff42013-10-02 11:13:25 +0100794 struct gfs2_alloc_parms ap = { .aflags = 0, };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000795 unsigned int data_blocks, ind_blocks;
796 struct gfs2_holder *ghs, i_gh;
797 unsigned int qx, x;
798 struct gfs2_quota_data *qd;
Steven Whitehouse71f890f2012-07-30 14:53:19 +0100799 unsigned reserved;
Steven Whitehousef42faf42006-01-30 18:34:10 +0000800 loff_t offset;
Abhijith Das20b95bf2008-03-06 17:43:52 -0600801 unsigned int nalloc = 0, blocks;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000802 int error;
803
Bob Peterson0a305e42012-06-06 11:17:59 +0100804 error = gfs2_rs_alloc(ip);
805 if (error)
806 return error;
807
David Teiglandb3b94fa2006-01-16 16:50:04 +0000808 gfs2_write_calc_reserv(ip, sizeof(struct gfs2_quota),
809 &data_blocks, &ind_blocks);
810
Josef Bacik16c5f062008-04-09 09:33:41 -0400811 ghs = kcalloc(num_qd, sizeof(struct gfs2_holder), GFP_NOFS);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000812 if (!ghs)
813 return -ENOMEM;
814
815 sort(qda, num_qd, sizeof(struct gfs2_quota_data *), sort_qd, NULL);
Jan Kara56aa72d2012-09-05 16:55:11 -0400816 mutex_lock(&ip->i_inode.i_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000817 for (qx = 0; qx < num_qd; qx++) {
Steven Whitehouse1e72c0f2009-09-15 20:42:56 +0100818 error = gfs2_glock_nq_init(qda[qx]->qd_gl, LM_ST_EXCLUSIVE,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000819 GL_NOCACHE, &ghs[qx]);
820 if (error)
821 goto out;
822 }
823
824 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
825 if (error)
826 goto out;
827
828 for (x = 0; x < num_qd; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000829 offset = qd2offset(qda[x]);
Bob Peterson461cb412010-06-24 19:21:20 -0400830 if (gfs2_write_alloc_required(ip, offset,
831 sizeof(struct gfs2_quota)))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000832 nalloc++;
833 }
834
Abhijith Das20b95bf2008-03-06 17:43:52 -0600835 /*
836 * 1 blk for unstuffing inode if stuffed. We add this extra
837 * block to the reservation unconditionally. If the inode
838 * doesn't need unstuffing, the block will be released to the
839 * rgrp since it won't be allocated during the transaction
840 */
Abhijith Das7e619bc2010-05-07 17:50:18 -0400841 /* +3 in the end for unstuffing block, inode size update block
842 * and another block in case quota straddles page boundary and
843 * two blocks need to be updated instead of 1 */
844 blocks = num_qd * data_blocks + RES_DINODE + num_qd + 3;
Abhijith Das20b95bf2008-03-06 17:43:52 -0600845
Steven Whitehouse71f890f2012-07-30 14:53:19 +0100846 reserved = 1 + (nalloc * (data_blocks + ind_blocks));
Steven Whitehouse7b9cff42013-10-02 11:13:25 +0100847 ap.target = reserved;
848 error = gfs2_inplace_reserve(ip, &ap);
Abhijith Das20b95bf2008-03-06 17:43:52 -0600849 if (error)
850 goto out_alloc;
851
852 if (nalloc)
Steven Whitehouse71f890f2012-07-30 14:53:19 +0100853 blocks += gfs2_rg_blocks(ip, reserved) + nalloc * ind_blocks + RES_STATFS;
Abhijith Das20b95bf2008-03-06 17:43:52 -0600854
855 error = gfs2_trans_begin(sdp, blocks, 0);
856 if (error)
857 goto out_ipres;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000858
859 for (x = 0; x < num_qd; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000860 qd = qda[x];
861 offset = qd2offset(qd);
Steven Whitehousee285c102009-09-23 13:50:49 +0100862 error = gfs2_adjust_quota(ip, offset, qd->qd_change_sync, qd, NULL);
Steven Whitehouse18ec7d52006-02-08 11:50:51 +0000863 if (error)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000864 goto out_end_trans;
865
David Teiglandb3b94fa2006-01-16 16:50:04 +0000866 do_qc(qd, -qd->qd_change_sync);
Abhijith Das662e3a52011-03-08 10:40:42 -0500867 set_bit(QDF_REFRESH, &qd->qd_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000868 }
869
870 error = 0;
871
Steven Whitehousea91ea692006-09-04 12:04:26 -0400872out_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000873 gfs2_trans_end(sdp);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400874out_ipres:
Abhijith Das20b95bf2008-03-06 17:43:52 -0600875 gfs2_inplace_release(ip);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400876out_alloc:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000877 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400878out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000879 while (qx--)
880 gfs2_glock_dq_uninit(&ghs[qx]);
Steven Whitehousee285c102009-09-23 13:50:49 +0100881 mutex_unlock(&ip->i_inode.i_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000882 kfree(ghs);
Benjamin Marzinski24972552014-05-01 22:26:55 -0500883 gfs2_log_flush(ip->i_gl->gl_sbd, ip->i_gl, NORMAL_FLUSH);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000884 return error;
885}
886
Steven Whitehousee285c102009-09-23 13:50:49 +0100887static int update_qd(struct gfs2_sbd *sdp, struct gfs2_quota_data *qd)
888{
889 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
890 struct gfs2_quota q;
891 struct gfs2_quota_lvb *qlvb;
892 loff_t pos;
893 int error;
894
895 memset(&q, 0, sizeof(struct gfs2_quota));
896 pos = qd2offset(qd);
Andrew Price43066292012-04-16 16:40:55 +0100897 error = gfs2_internal_read(ip, (char *)&q, &pos, sizeof(q));
Steven Whitehousee285c102009-09-23 13:50:49 +0100898 if (error < 0)
899 return error;
900
David Teigland4e2f8842012-11-14 13:47:37 -0500901 qlvb = (struct gfs2_quota_lvb *)qd->qd_gl->gl_lksb.sb_lvbptr;
Steven Whitehousee285c102009-09-23 13:50:49 +0100902 qlvb->qb_magic = cpu_to_be32(GFS2_MAGIC);
903 qlvb->__pad = 0;
904 qlvb->qb_limit = q.qu_limit;
905 qlvb->qb_warn = q.qu_warn;
906 qlvb->qb_value = q.qu_value;
907 qd->qd_qb = *qlvb;
908
909 return 0;
910}
911
David Teiglandb3b94fa2006-01-16 16:50:04 +0000912static int do_glock(struct gfs2_quota_data *qd, int force_refresh,
913 struct gfs2_holder *q_gh)
914{
915 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400916 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000917 struct gfs2_holder i_gh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000918 int error;
919
Steven Whitehousea91ea692006-09-04 12:04:26 -0400920restart:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000921 error = gfs2_glock_nq_init(qd->qd_gl, LM_ST_SHARED, 0, q_gh);
922 if (error)
923 return error;
924
David Teigland4e2f8842012-11-14 13:47:37 -0500925 qd->qd_qb = *(struct gfs2_quota_lvb *)qd->qd_gl->gl_lksb.sb_lvbptr;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000926
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400927 if (force_refresh || qd->qd_qb.qb_magic != cpu_to_be32(GFS2_MAGIC)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928 gfs2_glock_dq_uninit(q_gh);
Steven Whitehouse91094d02009-09-11 15:21:56 +0100929 error = gfs2_glock_nq_init(qd->qd_gl, LM_ST_EXCLUSIVE,
930 GL_NOCACHE, q_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000931 if (error)
932 return error;
933
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -0400934 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_SHARED, 0, &i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000935 if (error)
936 goto fail;
937
Steven Whitehousee285c102009-09-23 13:50:49 +0100938 error = update_qd(sdp, qd);
939 if (error)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000940 goto fail_gunlock;
Steven Whitehousee285c102009-09-23 13:50:49 +0100941
David Teiglandb3b94fa2006-01-16 16:50:04 +0000942 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehouse91094d02009-09-11 15:21:56 +0100943 gfs2_glock_dq_uninit(q_gh);
944 force_refresh = 0;
945 goto restart;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000946 }
947
948 return 0;
949
Steven Whitehousea91ea692006-09-04 12:04:26 -0400950fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000951 gfs2_glock_dq_uninit(&i_gh);
Steven Whitehousea91ea692006-09-04 12:04:26 -0400952fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000953 gfs2_glock_dq_uninit(q_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000954 return error;
955}
956
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -0800957int gfs2_quota_lock(struct gfs2_inode *ip, kuid_t uid, kgid_t gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000958{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400959 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
Abhijith Das662e3a52011-03-08 10:40:42 -0500960 struct gfs2_quota_data *qd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000961 unsigned int x;
962 int error = 0;
963
Steven Whitehouse891a8e92011-09-19 10:25:49 +0100964 error = gfs2_quota_hold(ip, uid, gid);
965 if (error)
966 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000967
968 if (capable(CAP_SYS_RESOURCE) ||
969 sdp->sd_args.ar_quota != GFS2_QUOTA_ON)
970 return 0;
971
Bob Peterson5407e242012-05-18 09:28:23 -0400972 sort(ip->i_res->rs_qa_qd, ip->i_res->rs_qa_qd_num,
973 sizeof(struct gfs2_quota_data *), sort_qd, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000974
Bob Peterson5407e242012-05-18 09:28:23 -0400975 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
Abhijith Das662e3a52011-03-08 10:40:42 -0500976 int force = NO_FORCE;
Bob Peterson5407e242012-05-18 09:28:23 -0400977 qd = ip->i_res->rs_qa_qd[x];
Abhijith Das662e3a52011-03-08 10:40:42 -0500978 if (test_and_clear_bit(QDF_REFRESH, &qd->qd_flags))
979 force = FORCE;
Bob Peterson5407e242012-05-18 09:28:23 -0400980 error = do_glock(qd, force, &ip->i_res->rs_qa_qd_ghs[x]);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000981 if (error)
982 break;
983 }
984
985 if (!error)
986 set_bit(GIF_QD_LOCKED, &ip->i_flags);
987 else {
988 while (x--)
Bob Peterson5407e242012-05-18 09:28:23 -0400989 gfs2_glock_dq_uninit(&ip->i_res->rs_qa_qd_ghs[x]);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000990 gfs2_quota_unhold(ip);
991 }
992
993 return error;
994}
995
996static int need_sync(struct gfs2_quota_data *qd)
997{
998 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
999 struct gfs2_tune *gt = &sdp->sd_tune;
Steven Whitehousecd915492006-09-04 12:49:07 -04001000 s64 value;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001001 unsigned int num, den;
1002 int do_sync = 1;
1003
1004 if (!qd->qd_qb.qb_limit)
1005 return 0;
1006
Steven Whitehouse7d808232013-11-01 14:52:08 -04001007 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001008 value = qd->qd_change;
Steven Whitehouse7d808232013-11-01 14:52:08 -04001009 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001010
1011 spin_lock(&gt->gt_spin);
1012 num = gt->gt_quota_scale_num;
1013 den = gt->gt_quota_scale_den;
1014 spin_unlock(&gt->gt_spin);
1015
1016 if (value < 0)
1017 do_sync = 0;
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04001018 else if ((s64)be64_to_cpu(qd->qd_qb.qb_value) >=
1019 (s64)be64_to_cpu(qd->qd_qb.qb_limit))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001020 do_sync = 0;
1021 else {
1022 value *= gfs2_jindex_size(sdp) * num;
David Howells4abaca172008-07-11 14:39:56 +01001023 value = div_s64(value, den);
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04001024 value += (s64)be64_to_cpu(qd->qd_qb.qb_value);
Steven Whitehousecd915492006-09-04 12:49:07 -04001025 if (value < (s64)be64_to_cpu(qd->qd_qb.qb_limit))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001026 do_sync = 0;
1027 }
1028
1029 return do_sync;
1030}
1031
1032void gfs2_quota_unlock(struct gfs2_inode *ip)
1033{
Steven Whitehouseaabd7c72013-10-04 11:31:05 +01001034 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001035 struct gfs2_quota_data *qda[4];
1036 unsigned int count = 0;
1037 unsigned int x;
Steven Whitehouseaabd7c72013-10-04 11:31:05 +01001038 int found;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001039
1040 if (!test_and_clear_bit(GIF_QD_LOCKED, &ip->i_flags))
1041 goto out;
1042
Bob Peterson5407e242012-05-18 09:28:23 -04001043 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001044 struct gfs2_quota_data *qd;
1045 int sync;
1046
Bob Peterson5407e242012-05-18 09:28:23 -04001047 qd = ip->i_res->rs_qa_qd[x];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001048 sync = need_sync(qd);
1049
Bob Peterson5407e242012-05-18 09:28:23 -04001050 gfs2_glock_dq_uninit(&ip->i_res->rs_qa_qd_ghs[x]);
Steven Whitehouseaabd7c72013-10-04 11:31:05 +01001051 if (!sync)
1052 continue;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001053
Steven Whitehouse7d808232013-11-01 14:52:08 -04001054 spin_lock(&qd_lock);
Steven Whitehouseaabd7c72013-10-04 11:31:05 +01001055 found = qd_check_sync(sdp, qd, NULL);
Steven Whitehouse7d808232013-11-01 14:52:08 -04001056 spin_unlock(&qd_lock);
Steven Whitehouseaabd7c72013-10-04 11:31:05 +01001057
1058 if (!found)
1059 continue;
1060
1061 gfs2_assert_warn(sdp, qd->qd_change_sync);
1062 if (bh_get(qd)) {
1063 clear_bit(QDF_LOCKED, &qd->qd_flags);
1064 slot_put(qd);
1065 qd_put(qd);
1066 continue;
1067 }
1068
1069 qda[count++] = qd;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001070 }
1071
1072 if (count) {
1073 do_sync(count, qda);
1074 for (x = 0; x < count; x++)
1075 qd_unlock(qda[x]);
1076 }
1077
Steven Whitehousea91ea692006-09-04 12:04:26 -04001078out:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001079 gfs2_quota_unhold(ip);
1080}
1081
1082#define MAX_LINE 256
1083
1084static int print_message(struct gfs2_quota_data *qd, char *type)
1085{
1086 struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001087
Joe Perches8382e262014-03-06 12:10:46 -08001088 fs_info(sdp, "quota %s for %s %u\n",
1089 type,
Joe Perchesd77d1b52014-03-06 12:10:45 -08001090 (qd->qd_id.type == USRQUOTA) ? "user" : "group",
1091 from_kqid(&init_user_ns, qd->qd_id));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001092
1093 return 0;
1094}
1095
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -08001096int gfs2_quota_check(struct gfs2_inode *ip, kuid_t uid, kgid_t gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001097{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001098 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001099 struct gfs2_quota_data *qd;
Steven Whitehousecd915492006-09-04 12:49:07 -04001100 s64 value;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001101 unsigned int x;
1102 int error = 0;
1103
1104 if (!test_bit(GIF_QD_LOCKED, &ip->i_flags))
1105 return 0;
1106
1107 if (sdp->sd_args.ar_quota != GFS2_QUOTA_ON)
1108 return 0;
1109
Bob Peterson5407e242012-05-18 09:28:23 -04001110 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
1111 qd = ip->i_res->rs_qa_qd[x];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001112
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001113 if (!(qid_eq(qd->qd_id, make_kqid_uid(uid)) ||
1114 qid_eq(qd->qd_id, make_kqid_gid(gid))))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001115 continue;
1116
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04001117 value = (s64)be64_to_cpu(qd->qd_qb.qb_value);
Steven Whitehouse7d808232013-11-01 14:52:08 -04001118 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001119 value += qd->qd_change;
Steven Whitehouse7d808232013-11-01 14:52:08 -04001120 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001121
Steven Whitehousecd915492006-09-04 12:49:07 -04001122 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 +00001123 print_message(qd, "exceeded");
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001124 quota_send_warning(qd->qd_id,
Steven Whitehouse2ec46502009-09-28 12:49:15 +01001125 sdp->sd_vfs->s_dev, QUOTA_NL_BHARDWARN);
1126
David Teiglandb3b94fa2006-01-16 16:50:04 +00001127 error = -EDQUOT;
1128 break;
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04001129 } else if (be64_to_cpu(qd->qd_qb.qb_warn) &&
Steven Whitehousecd915492006-09-04 12:49:07 -04001130 (s64)be64_to_cpu(qd->qd_qb.qb_warn) < value &&
David Teiglandb3b94fa2006-01-16 16:50:04 +00001131 time_after_eq(jiffies, qd->qd_last_warn +
Steven Whitehouse568f4c92006-02-27 12:00:42 -05001132 gfs2_tune_get(sdp,
1133 gt_quota_warn_period) * HZ)) {
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001134 quota_send_warning(qd->qd_id,
Steven Whitehouse2ec46502009-09-28 12:49:15 +01001135 sdp->sd_vfs->s_dev, QUOTA_NL_BSOFTWARN);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001136 error = print_message(qd, "warning");
1137 qd->qd_last_warn = jiffies;
1138 }
1139 }
1140
1141 return error;
1142}
1143
Steven Whitehousecd915492006-09-04 12:49:07 -04001144void gfs2_quota_change(struct gfs2_inode *ip, s64 change,
Eric W. Biederman7c06b5d2013-01-31 20:27:54 -08001145 kuid_t uid, kgid_t gid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001146{
David Teiglandb3b94fa2006-01-16 16:50:04 +00001147 struct gfs2_quota_data *qd;
1148 unsigned int x;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001149
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001150 if (gfs2_assert_warn(GFS2_SB(&ip->i_inode), change))
David Teiglandb3b94fa2006-01-16 16:50:04 +00001151 return;
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001152 if (ip->i_diskflags & GFS2_DIF_SYSTEM)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001153 return;
1154
Bob Peterson5407e242012-05-18 09:28:23 -04001155 for (x = 0; x < ip->i_res->rs_qa_qd_num; x++) {
1156 qd = ip->i_res->rs_qa_qd[x];
David Teiglandb3b94fa2006-01-16 16:50:04 +00001157
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001158 if (qid_eq(qd->qd_id, make_kqid_uid(uid)) ||
1159 qid_eq(qd->qd_id, make_kqid_gid(gid))) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001160 do_qc(qd, change);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001161 }
1162 }
1163}
1164
Jan Karaceed1722012-07-03 16:45:28 +02001165int gfs2_quota_sync(struct super_block *sb, int type)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001166{
Steven Whitehouse8c42d632009-09-11 14:36:44 +01001167 struct gfs2_sbd *sdp = sb->s_fs_info;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001168 struct gfs2_quota_data **qda;
Steven Whitehousebef292a2013-10-03 18:43:20 +01001169 unsigned int max_qd = PAGE_SIZE/sizeof(struct gfs2_holder);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001170 unsigned int num_qd;
1171 unsigned int x;
1172 int error = 0;
1173
David Teiglandb3b94fa2006-01-16 16:50:04 +00001174 qda = kcalloc(max_qd, sizeof(struct gfs2_quota_data *), GFP_KERNEL);
1175 if (!qda)
1176 return -ENOMEM;
1177
Steven Whitehousee46c7722013-10-04 12:29:34 +01001178 mutex_lock(&sdp->sd_quota_sync_mutex);
1179 sdp->sd_quota_sync_gen++;
1180
David Teiglandb3b94fa2006-01-16 16:50:04 +00001181 do {
1182 num_qd = 0;
1183
1184 for (;;) {
1185 error = qd_fish(sdp, qda + num_qd);
1186 if (error || !qda[num_qd])
1187 break;
1188 if (++num_qd == max_qd)
1189 break;
1190 }
1191
1192 if (num_qd) {
1193 if (!error)
1194 error = do_sync(num_qd, qda);
1195 if (!error)
1196 for (x = 0; x < num_qd; x++)
1197 qda[x]->qd_sync_gen =
1198 sdp->sd_quota_sync_gen;
1199
1200 for (x = 0; x < num_qd; x++)
1201 qd_unlock(qda[x]);
1202 }
1203 } while (!error && num_qd == max_qd);
1204
Steven Whitehousee46c7722013-10-04 12:29:34 +01001205 mutex_unlock(&sdp->sd_quota_sync_mutex);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001206 kfree(qda);
1207
1208 return error;
1209}
1210
Eric W. Biedermaned87dab2013-01-31 19:42:40 -08001211int gfs2_quota_refresh(struct gfs2_sbd *sdp, struct kqid qid)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001212{
1213 struct gfs2_quota_data *qd;
1214 struct gfs2_holder q_gh;
1215 int error;
1216
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001217 error = qd_get(sdp, qid, &qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001218 if (error)
1219 return error;
1220
1221 error = do_glock(qd, FORCE, &q_gh);
1222 if (!error)
1223 gfs2_glock_dq_uninit(&q_gh);
1224
1225 qd_put(qd);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001226 return error;
1227}
1228
David Teiglandb3b94fa2006-01-16 16:50:04 +00001229int gfs2_quota_init(struct gfs2_sbd *sdp)
1230{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001231 struct gfs2_inode *ip = GFS2_I(sdp->sd_qc_inode);
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001232 u64 size = i_size_read(sdp->sd_qc_inode);
1233 unsigned int blocks = size >> sdp->sd_sb.sb_bsize_shift;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001234 unsigned int x, slot = 0;
1235 unsigned int found = 0;
Steven Whitehousec754fbb2013-12-12 10:47:59 +00001236 unsigned int hash;
Steven Whitehouseee2411a2013-12-12 17:29:32 +00001237 unsigned int bm_size;
Steven Whitehousecd915492006-09-04 12:49:07 -04001238 u64 dblock;
1239 u32 extlen = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001240 int error;
1241
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001242 if (gfs2_check_internal_file_size(sdp->sd_qc_inode, 1, 64 << 20))
Steven Whitehouse907b9bc2006-09-25 09:26:04 -04001243 return -EIO;
Steven Whitehousea2e0f792010-08-11 09:53:11 +01001244
David Teiglandb3b94fa2006-01-16 16:50:04 +00001245 sdp->sd_quota_slots = blocks * sdp->sd_qc_per_block;
Steven Whitehouseee2411a2013-12-12 17:29:32 +00001246 bm_size = DIV_ROUND_UP(sdp->sd_quota_slots, 8 * sizeof(unsigned long));
1247 bm_size *= sizeof(unsigned long);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001248 error = -ENOMEM;
Fabian Frederickfcf10d32014-02-26 19:07:56 +01001249 sdp->sd_quota_bitmap = kzalloc(bm_size, GFP_NOFS | __GFP_NOWARN);
Steven Whitehouseee2411a2013-12-12 17:29:32 +00001250 if (sdp->sd_quota_bitmap == NULL)
Fabian Frederickfcf10d32014-02-26 19:07:56 +01001251 sdp->sd_quota_bitmap = __vmalloc(bm_size, GFP_NOFS |
1252 __GFP_ZERO, PAGE_KERNEL);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001253 if (!sdp->sd_quota_bitmap)
1254 return error;
1255
David Teiglandb3b94fa2006-01-16 16:50:04 +00001256 for (x = 0; x < blocks; x++) {
1257 struct buffer_head *bh;
Steven Whitehouse7aed98f2013-11-26 15:17:09 +00001258 const struct gfs2_quota_change *qc;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001259 unsigned int y;
1260
1261 if (!extlen) {
1262 int new = 0;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001263 error = gfs2_extent_map(&ip->i_inode, x, &new, &dblock, &extlen);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001264 if (error)
1265 goto fail;
1266 }
David Teiglandb3b94fa2006-01-16 16:50:04 +00001267 error = -EIO;
Steven Whitehouse7276b3b2006-09-21 17:05:23 -04001268 bh = gfs2_meta_ra(ip->i_gl, dblock, extlen);
1269 if (!bh)
1270 goto fail;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001271 if (gfs2_metatype_check(sdp, bh, GFS2_METATYPE_QC)) {
1272 brelse(bh);
1273 goto fail;
1274 }
1275
Steven Whitehouse7aed98f2013-11-26 15:17:09 +00001276 qc = (const struct gfs2_quota_change *)(bh->b_data + sizeof(struct gfs2_meta_header));
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++) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001279 struct gfs2_quota_data *qd;
Steven Whitehouse7aed98f2013-11-26 15:17:09 +00001280 s64 qc_change = be64_to_cpu(qc->qc_change);
1281 u32 qc_flags = be32_to_cpu(qc->qc_flags);
1282 enum quota_type qtype = (qc_flags & GFS2_QCF_USER) ?
1283 USRQUOTA : GRPQUOTA;
1284 struct kqid qc_id = make_kqid(&init_user_ns, qtype,
1285 be32_to_cpu(qc->qc_id));
1286 qc++;
1287 if (!qc_change)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001288 continue;
1289
Steven Whitehousec754fbb2013-12-12 10:47:59 +00001290 hash = gfs2_qd_hash(sdp, qc_id);
1291 qd = qd_alloc(hash, sdp, qc_id);
1292 if (qd == NULL) {
David Teiglandb3b94fa2006-01-16 16:50:04 +00001293 brelse(bh);
1294 goto fail;
1295 }
1296
1297 set_bit(QDF_CHANGE, &qd->qd_flags);
Steven Whitehouse7aed98f2013-11-26 15:17:09 +00001298 qd->qd_change = qc_change;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001299 qd->qd_slot = slot;
1300 qd->qd_slot_count = 1;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001301
Steven Whitehouse7d808232013-11-01 14:52:08 -04001302 spin_lock(&qd_lock);
Steven Whitehouseee2411a2013-12-12 17:29:32 +00001303 BUG_ON(test_and_set_bit(slot, sdp->sd_quota_bitmap));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001304 list_add(&qd->qd_list, &sdp->sd_quota_list);
1305 atomic_inc(&sdp->sd_quota_count);
Steven Whitehouse7d808232013-11-01 14:52:08 -04001306 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001307
Steven Whitehousec754fbb2013-12-12 10:47:59 +00001308 spin_lock_bucket(hash);
1309 hlist_bl_add_head_rcu(&qd->qd_hlist, &qd_hash_table[hash]);
1310 spin_unlock_bucket(hash);
1311
David Teiglandb3b94fa2006-01-16 16:50:04 +00001312 found++;
1313 }
1314
1315 brelse(bh);
1316 dblock++;
1317 extlen--;
1318 }
1319
1320 if (found)
1321 fs_info(sdp, "found %u quota changes\n", found);
1322
1323 return 0;
1324
Steven Whitehousea91ea692006-09-04 12:04:26 -04001325fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +00001326 gfs2_quota_cleanup(sdp);
1327 return error;
1328}
1329
David Teiglandb3b94fa2006-01-16 16:50:04 +00001330void gfs2_quota_cleanup(struct gfs2_sbd *sdp)
1331{
1332 struct list_head *head = &sdp->sd_quota_list;
1333 struct gfs2_quota_data *qd;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001334
Steven Whitehouse7d808232013-11-01 14:52:08 -04001335 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001336 while (!list_empty(head)) {
1337 qd = list_entry(head->prev, struct gfs2_quota_data, qd_list);
1338
Abhijith Das0a7ab792009-01-07 16:03:37 -06001339 list_del(&qd->qd_list);
Steven Whitehousec754fbb2013-12-12 10:47:59 +00001340
Abhijith Das0a7ab792009-01-07 16:03:37 -06001341 /* Also remove if this qd exists in the reclaim list */
Steven Whitehouse2147dbf2013-11-04 10:15:08 +00001342 list_lru_del(&gfs2_qd_lru, &qd->qd_lru);
Abhijith Das0a7ab792009-01-07 16:03:37 -06001343 atomic_dec(&sdp->sd_quota_count);
Steven Whitehouse7d808232013-11-01 14:52:08 -04001344 spin_unlock(&qd_lock);
Abhijith Das0a7ab792009-01-07 16:03:37 -06001345
Steven Whitehousec754fbb2013-12-12 10:47:59 +00001346 spin_lock_bucket(qd->qd_hash);
1347 hlist_bl_del_rcu(&qd->qd_hlist);
1348 spin_unlock_bucket(qd->qd_hash);
1349
Steven Whitehouse8ad151c2013-12-12 11:34:09 +00001350 gfs2_assert_warn(sdp, !qd->qd_change);
1351 gfs2_assert_warn(sdp, !qd->qd_slot_count);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001352 gfs2_assert_warn(sdp, !qd->qd_bh_count);
1353
Steven Whitehousef057f6c2009-01-12 10:43:39 +00001354 gfs2_glock_put(qd->qd_gl);
Steven Whitehousec754fbb2013-12-12 10:47:59 +00001355 call_rcu(&qd->qd_rcu, gfs2_qd_dealloc);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001356
Steven Whitehouse7d808232013-11-01 14:52:08 -04001357 spin_lock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001358 }
Steven Whitehouse7d808232013-11-01 14:52:08 -04001359 spin_unlock(&qd_lock);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001360
1361 gfs2_assert_warn(sdp, !atomic_read(&sdp->sd_quota_count));
1362
Al Viro3cdcf632014-11-20 05:18:38 +00001363 kvfree(sdp->sd_quota_bitmap);
1364 sdp->sd_quota_bitmap = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +00001365}
1366
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001367static void quotad_error(struct gfs2_sbd *sdp, const char *msg, int error)
1368{
1369 if (error == 0 || error == -EROFS)
1370 return;
1371 if (!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))
1372 fs_err(sdp, "gfs2_quotad: %s error %d\n", msg, error);
1373}
1374
1375static void quotad_check_timeo(struct gfs2_sbd *sdp, const char *msg,
Steven Whitehouse8c42d632009-09-11 14:36:44 +01001376 int (*fxn)(struct super_block *sb, int type),
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001377 unsigned long t, unsigned long *timeo,
1378 unsigned int *new_timeo)
1379{
1380 if (t >= *timeo) {
Steven Whitehouse8c42d632009-09-11 14:36:44 +01001381 int error = fxn(sdp->sd_vfs, 0);
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001382 quotad_error(sdp, msg, error);
1383 *timeo = gfs2_tune_get_i(&sdp->sd_tune, new_timeo) * HZ;
1384 } else {
1385 *timeo -= t;
1386 }
1387}
1388
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001389static void quotad_check_trunc_list(struct gfs2_sbd *sdp)
1390{
1391 struct gfs2_inode *ip;
1392
1393 while(1) {
1394 ip = NULL;
1395 spin_lock(&sdp->sd_trunc_lock);
1396 if (!list_empty(&sdp->sd_trunc_list)) {
1397 ip = list_entry(sdp->sd_trunc_list.next,
1398 struct gfs2_inode, i_trunc_list);
1399 list_del_init(&ip->i_trunc_list);
1400 }
1401 spin_unlock(&sdp->sd_trunc_lock);
1402 if (ip == NULL)
1403 return;
1404 gfs2_glock_finish_truncate(ip);
1405 }
1406}
1407
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001408void gfs2_wake_up_statfs(struct gfs2_sbd *sdp) {
1409 if (!sdp->sd_statfs_force_sync) {
1410 sdp->sd_statfs_force_sync = 1;
1411 wake_up(&sdp->sd_quota_wait);
1412 }
1413}
1414
1415
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001416/**
1417 * gfs2_quotad - Write cached quota changes into the quota file
1418 * @sdp: Pointer to GFS2 superblock
1419 *
1420 */
1421
1422int gfs2_quotad(void *data)
1423{
1424 struct gfs2_sbd *sdp = data;
1425 struct gfs2_tune *tune = &sdp->sd_tune;
1426 unsigned long statfs_timeo = 0;
1427 unsigned long quotad_timeo = 0;
1428 unsigned long t = 0;
1429 DEFINE_WAIT(wait);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001430 int empty;
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001431
1432 while (!kthread_should_stop()) {
1433
1434 /* Update the master statfs file */
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001435 if (sdp->sd_statfs_force_sync) {
1436 int error = gfs2_statfs_sync(sdp->sd_vfs, 0);
1437 quotad_error(sdp, "statfs", error);
1438 statfs_timeo = gfs2_tune_get(sdp, gt_statfs_quantum) * HZ;
1439 }
1440 else
1441 quotad_check_timeo(sdp, "statfs", gfs2_statfs_sync, t,
1442 &statfs_timeo,
1443 &tune->gt_statfs_quantum);
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001444
1445 /* Update quota file */
Steven Whitehouseedd2e9a2013-06-03 11:12:59 +01001446 quotad_check_timeo(sdp, "sync", gfs2_quota_sync, t,
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001447 &quotad_timeo, &tune->gt_quota_quantum);
1448
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001449 /* Check for & recover partially truncated inodes */
1450 quotad_check_trunc_list(sdp);
1451
Tejun Heoa0acae02011-11-21 12:32:22 -08001452 try_to_freeze();
1453
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001454 t = min(quotad_timeo, statfs_timeo);
1455
Steven Whitehouse7fa5d202009-03-31 15:49:08 +01001456 prepare_to_wait(&sdp->sd_quota_wait, &wait, TASK_INTERRUPTIBLE);
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001457 spin_lock(&sdp->sd_trunc_lock);
1458 empty = list_empty(&sdp->sd_trunc_list);
1459 spin_unlock(&sdp->sd_trunc_lock);
Benjamin Marzinski3d3c10f2009-10-20 02:39:44 -05001460 if (empty && !sdp->sd_statfs_force_sync)
Steven Whitehouse813e0c42008-11-18 13:38:48 +00001461 t -= schedule_timeout(t);
1462 else
1463 t = 0;
Steven Whitehouse37b2c832008-11-17 14:25:37 +00001464 finish_wait(&sdp->sd_quota_wait, &wait);
1465 }
1466
1467 return 0;
1468}
1469
Steven Whitehouse1d371b52009-09-11 15:57:27 +01001470static int gfs2_quota_get_xstate(struct super_block *sb,
1471 struct fs_quota_stat *fqs)
1472{
1473 struct gfs2_sbd *sdp = sb->s_fs_info;
1474
1475 memset(fqs, 0, sizeof(struct fs_quota_stat));
1476 fqs->qs_version = FS_QSTAT_VERSION;
Christoph Hellwigad6bb902010-05-05 00:10:56 +02001477
1478 switch (sdp->sd_args.ar_quota) {
1479 case GFS2_QUOTA_ON:
Christoph Hellwigade7ce32010-06-04 10:56:01 +02001480 fqs->qs_flags |= (FS_QUOTA_UDQ_ENFD | FS_QUOTA_GDQ_ENFD);
Christoph Hellwigad6bb902010-05-05 00:10:56 +02001481 /*FALLTHRU*/
1482 case GFS2_QUOTA_ACCOUNT:
Christoph Hellwigade7ce32010-06-04 10:56:01 +02001483 fqs->qs_flags |= (FS_QUOTA_UDQ_ACCT | FS_QUOTA_GDQ_ACCT);
Christoph Hellwigad6bb902010-05-05 00:10:56 +02001484 break;
1485 case GFS2_QUOTA_OFF:
1486 break;
1487 }
1488
Steven Whitehouse1d371b52009-09-11 15:57:27 +01001489 if (sdp->sd_quota_inode) {
1490 fqs->qs_uquota.qfs_ino = GFS2_I(sdp->sd_quota_inode)->i_no_addr;
1491 fqs->qs_uquota.qfs_nblks = sdp->sd_quota_inode->i_blocks;
1492 }
1493 fqs->qs_uquota.qfs_nextents = 1; /* unsupported */
1494 fqs->qs_gquota = fqs->qs_uquota; /* its the same inode in both cases */
Steven Whitehouse2147dbf2013-11-04 10:15:08 +00001495 fqs->qs_incoredqs = list_lru_count(&gfs2_qd_lru);
Steven Whitehouse1d371b52009-09-11 15:57:27 +01001496 return 0;
1497}
1498
Eric W. Biederman74a8a102012-09-16 02:07:49 -07001499static int gfs2_get_dqblk(struct super_block *sb, struct kqid qid,
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -04001500 struct fs_disk_quota *fdq)
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001501{
1502 struct gfs2_sbd *sdp = sb->s_fs_info;
1503 struct gfs2_quota_lvb *qlvb;
1504 struct gfs2_quota_data *qd;
1505 struct gfs2_holder q_gh;
1506 int error;
1507
1508 memset(fdq, 0, sizeof(struct fs_disk_quota));
1509
1510 if (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
1511 return -ESRCH; /* Crazy XFS error code */
1512
Eric W. Biederman236c64e2013-01-31 20:09:30 -08001513 if ((qid.type != USRQUOTA) &&
1514 (qid.type != GRPQUOTA))
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001515 return -EINVAL;
1516
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001517 error = qd_get(sdp, qid, &qd);
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001518 if (error)
1519 return error;
1520 error = do_glock(qd, FORCE, &q_gh);
1521 if (error)
1522 goto out;
1523
David Teigland4e2f8842012-11-14 13:47:37 -05001524 qlvb = (struct gfs2_quota_lvb *)qd->qd_gl->gl_lksb.sb_lvbptr;
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001525 fdq->d_version = FS_DQUOT_VERSION;
Eric W. Biederman236c64e2013-01-31 20:09:30 -08001526 fdq->d_flags = (qid.type == USRQUOTA) ? FS_USER_QUOTA : FS_GROUP_QUOTA;
Eric W. Biederman558e8522013-01-31 18:15:33 -08001527 fdq->d_id = from_kqid_munged(current_user_ns(), qid);
Abhijith Das14870b42010-11-18 11:24:24 -05001528 fdq->d_blk_hardlimit = be64_to_cpu(qlvb->qb_limit) << sdp->sd_fsb2bb_shift;
1529 fdq->d_blk_softlimit = be64_to_cpu(qlvb->qb_warn) << sdp->sd_fsb2bb_shift;
1530 fdq->d_bcount = be64_to_cpu(qlvb->qb_value) << sdp->sd_fsb2bb_shift;
Steven Whitehouse113d6b32009-09-28 11:52:16 +01001531
1532 gfs2_glock_dq_uninit(&q_gh);
1533out:
1534 qd_put(qd);
1535 return error;
1536}
1537
Steven Whitehousee285c102009-09-23 13:50:49 +01001538/* GFS2 only supports a subset of the XFS fields */
Abhijith Das802ec9b2010-11-18 11:26:46 -05001539#define GFS2_FIELDMASK (FS_DQ_BSOFT|FS_DQ_BHARD|FS_DQ_BCOUNT)
Steven Whitehousee285c102009-09-23 13:50:49 +01001540
Eric W. Biederman74a8a102012-09-16 02:07:49 -07001541static int gfs2_set_dqblk(struct super_block *sb, struct kqid qid,
Christoph Hellwigc472b432010-05-06 17:05:17 -04001542 struct fs_disk_quota *fdq)
Steven Whitehousee285c102009-09-23 13:50:49 +01001543{
1544 struct gfs2_sbd *sdp = sb->s_fs_info;
1545 struct gfs2_inode *ip = GFS2_I(sdp->sd_quota_inode);
1546 struct gfs2_quota_data *qd;
1547 struct gfs2_holder q_gh, i_gh;
1548 unsigned int data_blocks, ind_blocks;
1549 unsigned int blocks = 0;
1550 int alloc_required;
Steven Whitehousee285c102009-09-23 13:50:49 +01001551 loff_t offset;
1552 int error;
1553
1554 if (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
1555 return -ESRCH; /* Crazy XFS error code */
1556
Eric W. Biederman236c64e2013-01-31 20:09:30 -08001557 if ((qid.type != USRQUOTA) &&
1558 (qid.type != GRPQUOTA))
Steven Whitehousee285c102009-09-23 13:50:49 +01001559 return -EINVAL;
Steven Whitehousee285c102009-09-23 13:50:49 +01001560
1561 if (fdq->d_fieldmask & ~GFS2_FIELDMASK)
1562 return -EINVAL;
Steven Whitehousee285c102009-09-23 13:50:49 +01001563
Eric W. Biederman05e0a602013-01-31 19:52:08 -08001564 error = qd_get(sdp, qid, &qd);
Steven Whitehousee285c102009-09-23 13:50:49 +01001565 if (error)
1566 return error;
1567
Bob Peterson0a305e42012-06-06 11:17:59 +01001568 error = gfs2_rs_alloc(ip);
1569 if (error)
1570 goto out_put;
1571
Steven Whitehousee285c102009-09-23 13:50:49 +01001572 mutex_lock(&ip->i_inode.i_mutex);
1573 error = gfs2_glock_nq_init(qd->qd_gl, LM_ST_EXCLUSIVE, 0, &q_gh);
1574 if (error)
Bob Peterson0a305e42012-06-06 11:17:59 +01001575 goto out_unlockput;
Steven Whitehousee285c102009-09-23 13:50:49 +01001576 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &i_gh);
1577 if (error)
1578 goto out_q;
1579
1580 /* Check for existing entry, if none then alloc new blocks */
1581 error = update_qd(sdp, qd);
1582 if (error)
1583 goto out_i;
1584
1585 /* If nothing has changed, this is a no-op */
1586 if ((fdq->d_fieldmask & FS_DQ_BSOFT) &&
Abhijith Das14870b42010-11-18 11:24:24 -05001587 ((fdq->d_blk_softlimit >> sdp->sd_fsb2bb_shift) == be64_to_cpu(qd->qd_qb.qb_warn)))
Steven Whitehousee285c102009-09-23 13:50:49 +01001588 fdq->d_fieldmask ^= FS_DQ_BSOFT;
Abhijith Das802ec9b2010-11-18 11:26:46 -05001589
Steven Whitehousee285c102009-09-23 13:50:49 +01001590 if ((fdq->d_fieldmask & FS_DQ_BHARD) &&
Abhijith Das14870b42010-11-18 11:24:24 -05001591 ((fdq->d_blk_hardlimit >> sdp->sd_fsb2bb_shift) == be64_to_cpu(qd->qd_qb.qb_limit)))
Steven Whitehousee285c102009-09-23 13:50:49 +01001592 fdq->d_fieldmask ^= FS_DQ_BHARD;
Abhijith Das802ec9b2010-11-18 11:26:46 -05001593
1594 if ((fdq->d_fieldmask & FS_DQ_BCOUNT) &&
1595 ((fdq->d_bcount >> sdp->sd_fsb2bb_shift) == be64_to_cpu(qd->qd_qb.qb_value)))
1596 fdq->d_fieldmask ^= FS_DQ_BCOUNT;
1597
Steven Whitehousee285c102009-09-23 13:50:49 +01001598 if (fdq->d_fieldmask == 0)
1599 goto out_i;
1600
1601 offset = qd2offset(qd);
Bob Peterson461cb412010-06-24 19:21:20 -04001602 alloc_required = gfs2_write_alloc_required(ip, offset, sizeof(struct gfs2_quota));
Abhijith Dase79a46a2011-02-07 11:22:41 -05001603 if (gfs2_is_stuffed(ip))
1604 alloc_required = 1;
Steven Whitehousee285c102009-09-23 13:50:49 +01001605 if (alloc_required) {
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01001606 struct gfs2_alloc_parms ap = { .aflags = 0, };
Steven Whitehousee285c102009-09-23 13:50:49 +01001607 gfs2_write_calc_reserv(ip, sizeof(struct gfs2_quota),
1608 &data_blocks, &ind_blocks);
Bob Peterson564e12b2011-11-21 13:36:17 -05001609 blocks = 1 + data_blocks + ind_blocks;
Steven Whitehouse7b9cff42013-10-02 11:13:25 +01001610 ap.target = blocks;
1611 error = gfs2_inplace_reserve(ip, &ap);
Steven Whitehousee285c102009-09-23 13:50:49 +01001612 if (error)
Bob Peterson564e12b2011-11-21 13:36:17 -05001613 goto out_i;
Steven Whitehouse71f890f2012-07-30 14:53:19 +01001614 blocks += gfs2_rg_blocks(ip, blocks);
Steven Whitehousee285c102009-09-23 13:50:49 +01001615 }
1616
Abhijith Dase79a46a2011-02-07 11:22:41 -05001617 /* Some quotas span block boundaries and can update two blocks,
1618 adding an extra block to the transaction to handle such quotas */
1619 error = gfs2_trans_begin(sdp, blocks + RES_DINODE + 2, 0);
Steven Whitehousee285c102009-09-23 13:50:49 +01001620 if (error)
1621 goto out_release;
1622
1623 /* Apply changes */
1624 error = gfs2_adjust_quota(ip, offset, 0, qd, fdq);
1625
1626 gfs2_trans_end(sdp);
1627out_release:
Bob Peterson564e12b2011-11-21 13:36:17 -05001628 if (alloc_required)
Steven Whitehousee285c102009-09-23 13:50:49 +01001629 gfs2_inplace_release(ip);
Steven Whitehousee285c102009-09-23 13:50:49 +01001630out_i:
1631 gfs2_glock_dq_uninit(&i_gh);
1632out_q:
1633 gfs2_glock_dq_uninit(&q_gh);
Bob Peterson0a305e42012-06-06 11:17:59 +01001634out_unlockput:
Steven Whitehousee285c102009-09-23 13:50:49 +01001635 mutex_unlock(&ip->i_inode.i_mutex);
Bob Peterson0a305e42012-06-06 11:17:59 +01001636out_put:
Steven Whitehousee285c102009-09-23 13:50:49 +01001637 qd_put(qd);
1638 return error;
1639}
1640
Steven Whitehousecc632e72009-09-15 09:59:02 +01001641const struct quotactl_ops gfs2_quotactl_ops = {
1642 .quota_sync = gfs2_quota_sync,
Steven Whitehouse1d371b52009-09-11 15:57:27 +01001643 .get_xstate = gfs2_quota_get_xstate,
Christoph Hellwigb9b2dd32010-05-06 17:04:58 -04001644 .get_dqblk = gfs2_get_dqblk,
Christoph Hellwigc472b432010-05-06 17:05:17 -04001645 .set_dqblk = gfs2_set_dqblk,
Steven Whitehousecc632e72009-09-15 09:59:02 +01001646};
Steven Whitehousec754fbb2013-12-12 10:47:59 +00001647
1648void __init gfs2_quota_hash_init(void)
1649{
1650 unsigned i;
1651
1652 for(i = 0; i < GFS2_QD_HASH_SIZE; i++)
1653 INIT_HLIST_BL_HEAD(&qd_hash_table[i]);
1654}