blob: ca40bfc5cccc0bf46d7e80c7a5b9118ce65f1016 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Implementation of the diskquota system for the LINUX operating system. QUOTA
3 * is implemented using the BSD system call interface as the means of
4 * communication with the user level. This file contains the generic routines
5 * called by the different filesystems on allocation of an inode or block.
6 * These routines take care of the administration needed to have a consistent
7 * diskquota tracking system. The ideas of both user and group quotas are based
8 * on the Melbourne quota system as used on BSD derived systems. The internal
9 * implementation is based on one of the several variants of the LINUX
10 * inode-subsystem with added complexity of the diskquota system.
11 *
12 * Version: $Id: dquot.c,v 6.3 1996/11/17 18:35:34 mvw Exp mvw $
13 *
14 * Author: Marco van Wieringen <mvw@planets.elm.net>
15 *
16 * Fixes: Dmitry Gorodchanin <pgmdsg@ibi.com>, 11 Feb 96
17 *
18 * Revised list management to avoid races
19 * -- Bill Hawes, <whawes@star.net>, 9/98
20 *
21 * Fixed races in dquot_transfer(), dqget() and dquot_alloc_...().
22 * As the consequence the locking was moved from dquot_decr_...(),
23 * dquot_incr_...() to calling functions.
24 * invalidate_dquots() now writes modified dquots.
25 * Serialized quota_off() and quota_on() for mount point.
26 * Fixed a few bugs in grow_dquots().
27 * Fixed deadlock in write_dquot() - we no longer account quotas on
28 * quota files
29 * remove_dquot_ref() moved to inode.c - it now traverses through inodes
30 * add_dquot_ref() restarts after blocking
31 * Added check for bogus uid and fixed check for group in quotactl.
32 * Jan Kara, <jack@suse.cz>, sponsored by SuSE CR, 10-11/99
33 *
34 * Used struct list_head instead of own list struct
35 * Invalidation of referenced dquots is no longer possible
36 * Improved free_dquots list management
37 * Quota and i_blocks are now updated in one place to avoid races
38 * Warnings are now delayed so we won't block in critical section
39 * Write updated not to require dquot lock
40 * Jan Kara, <jack@suse.cz>, 9/2000
41 *
42 * Added dynamic quota structure allocation
43 * Jan Kara <jack@suse.cz> 12/2000
44 *
45 * Rewritten quota interface. Implemented new quota format and
46 * formats registering.
47 * Jan Kara, <jack@suse.cz>, 2001,2002
48 *
49 * New SMP locking.
50 * Jan Kara, <jack@suse.cz>, 10/2002
51 *
52 * Added journalled quota support, fix lock inversion problems
53 * Jan Kara, <jack@suse.cz>, 2003,2004
54 *
55 * (C) Copyright 1994 - 1997 Marco van Wieringen
56 */
57
58#include <linux/errno.h>
59#include <linux/kernel.h>
60#include <linux/fs.h>
61#include <linux/mount.h>
62#include <linux/mm.h>
63#include <linux/time.h>
64#include <linux/types.h>
65#include <linux/string.h>
66#include <linux/fcntl.h>
67#include <linux/stat.h>
68#include <linux/tty.h>
69#include <linux/file.h>
70#include <linux/slab.h>
71#include <linux/sysctl.h>
72#include <linux/smp_lock.h>
73#include <linux/init.h>
74#include <linux/module.h>
75#include <linux/proc_fs.h>
76#include <linux/security.h>
77#include <linux/kmod.h>
78#include <linux/namei.h>
79#include <linux/buffer_head.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080080#include <linux/capability.h>
Adrian Bunkbe586ba2005-11-07 00:59:35 -080081#include <linux/quotaops.h>
Christoph Hellwigfb58b732007-02-12 00:51:57 -080082#include <linux/writeback.h> /* for inode_lock, oddly enough.. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84#include <asm/uaccess.h>
85
86#define __DQUOT_PARANOIA
87
88/*
89 * There are two quota SMP locks. dq_list_lock protects all lists with quotas
90 * and quota formats and also dqstats structure containing statistics about the
91 * lists. dq_data_lock protects data from dq_dqb and also mem_dqinfo structures
92 * and also guards consistency of dquot->dq_dqb with inode->i_blocks, i_bytes.
93 * i_blocks and i_bytes updates itself are guarded by i_lock acquired directly
94 * in inode_add_bytes() and inode_sub_bytes().
95 *
96 * The spinlock ordering is hence: dq_data_lock > dq_list_lock > i_lock
97 *
98 * Note that some things (eg. sb pointer, type, id) doesn't change during
99 * the life of the dquot structure and so needn't to be protected by a lock
100 *
101 * Any operation working on dquots via inode pointers must hold dqptr_sem. If
102 * operation is just reading pointers from inode (or not using them at all) the
103 * read lock is enough. If pointers are altered function must hold write lock
104 * (these locking rules also apply for S_NOQUOTA flag in the inode - note that
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800105 * for altering the flag i_mutex is also needed). If operation is holding
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * reference to dquot in other way (e.g. quotactl ops) it must be guarded by
Ingo Molnard3be9152006-03-23 03:00:29 -0800107 * dqonoff_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * This locking assures that:
109 * a) update/access to dquot pointers in inode is serialized
110 * b) everyone is guarded against invalidate_dquots()
111 *
Ingo Molnard3be9152006-03-23 03:00:29 -0800112 * Each dquot has its dq_lock mutex. Locked dquots might not be referenced
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * from inodes (dquot_alloc_space() and such don't check the dq_lock).
114 * Currently dquot is locked only when it is being read to memory (or space for
115 * it is being allocated) on the first dqget() and when it is being released on
116 * the last dqput(). The allocation and release oparations are serialized by
117 * the dq_lock and by checking the use count in dquot_release(). Write
118 * operations on dquots don't hold dq_lock as they copy data under dq_data_lock
119 * spinlock to internal buffers before writing.
120 *
121 * Lock ordering (including related VFS locks) is the following:
Ingo Molnard3be9152006-03-23 03:00:29 -0800122 * i_mutex > dqonoff_sem > journal_lock > dqptr_sem > dquot->dq_lock >
123 * dqio_mutex
124 * i_mutex on quota files is special (it's below dqio_mutex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 */
126
127static DEFINE_SPINLOCK(dq_list_lock);
128DEFINE_SPINLOCK(dq_data_lock);
129
130static char *quotatypes[] = INITQFNAMES;
131static struct quota_format_type *quota_formats; /* List of registered formats */
132static struct quota_module_name module_names[] = INIT_QUOTA_MODULE_NAMES;
133
134/* SLAB cache for dquot structures */
Christoph Lametere18b8902006-12-06 20:33:20 -0800135static struct kmem_cache *dquot_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137int register_quota_format(struct quota_format_type *fmt)
138{
139 spin_lock(&dq_list_lock);
140 fmt->qf_next = quota_formats;
141 quota_formats = fmt;
142 spin_unlock(&dq_list_lock);
143 return 0;
144}
145
146void unregister_quota_format(struct quota_format_type *fmt)
147{
148 struct quota_format_type **actqf;
149
150 spin_lock(&dq_list_lock);
151 for (actqf = &quota_formats; *actqf && *actqf != fmt; actqf = &(*actqf)->qf_next);
152 if (*actqf)
153 *actqf = (*actqf)->qf_next;
154 spin_unlock(&dq_list_lock);
155}
156
157static struct quota_format_type *find_quota_format(int id)
158{
159 struct quota_format_type *actqf;
160
161 spin_lock(&dq_list_lock);
162 for (actqf = quota_formats; actqf && actqf->qf_fmt_id != id; actqf = actqf->qf_next);
163 if (!actqf || !try_module_get(actqf->qf_owner)) {
164 int qm;
165
166 spin_unlock(&dq_list_lock);
167
168 for (qm = 0; module_names[qm].qm_fmt_id && module_names[qm].qm_fmt_id != id; qm++);
169 if (!module_names[qm].qm_fmt_id || request_module(module_names[qm].qm_mod_name))
170 return NULL;
171
172 spin_lock(&dq_list_lock);
173 for (actqf = quota_formats; actqf && actqf->qf_fmt_id != id; actqf = actqf->qf_next);
174 if (actqf && !try_module_get(actqf->qf_owner))
175 actqf = NULL;
176 }
177 spin_unlock(&dq_list_lock);
178 return actqf;
179}
180
181static void put_quota_format(struct quota_format_type *fmt)
182{
183 module_put(fmt->qf_owner);
184}
185
186/*
187 * Dquot List Management:
188 * The quota code uses three lists for dquot management: the inuse_list,
189 * free_dquots, and dquot_hash[] array. A single dquot structure may be
190 * on all three lists, depending on its current state.
191 *
192 * All dquots are placed to the end of inuse_list when first created, and this
193 * list is used for invalidate operation, which must look at every dquot.
194 *
195 * Unused dquots (dq_count == 0) are added to the free_dquots list when freed,
196 * and this list is searched whenever we need an available dquot. Dquots are
197 * removed from the list as soon as they are used again, and
198 * dqstats.free_dquots gives the number of dquots on the list. When
199 * dquot is invalidated it's completely released from memory.
200 *
201 * Dquots with a specific identity (device, type and id) are placed on
202 * one of the dquot_hash[] hash chains. The provides an efficient search
203 * mechanism to locate a specific dquot.
204 */
205
206static LIST_HEAD(inuse_list);
207static LIST_HEAD(free_dquots);
208static unsigned int dq_hash_bits, dq_hash_mask;
209static struct hlist_head *dquot_hash;
210
211struct dqstats dqstats;
212
213static void dqput(struct dquot *dquot);
214
215static inline unsigned int
216hashfn(const struct super_block *sb, unsigned int id, int type)
217{
218 unsigned long tmp;
219
220 tmp = (((unsigned long)sb>>L1_CACHE_SHIFT) ^ id) * (MAXQUOTAS - type);
221 return (tmp + (tmp >> dq_hash_bits)) & dq_hash_mask;
222}
223
224/*
225 * Following list functions expect dq_list_lock to be held
226 */
227static inline void insert_dquot_hash(struct dquot *dquot)
228{
229 struct hlist_head *head = dquot_hash + hashfn(dquot->dq_sb, dquot->dq_id, dquot->dq_type);
230 hlist_add_head(&dquot->dq_hash, head);
231}
232
233static inline void remove_dquot_hash(struct dquot *dquot)
234{
235 hlist_del_init(&dquot->dq_hash);
236}
237
238static inline struct dquot *find_dquot(unsigned int hashent, struct super_block *sb, unsigned int id, int type)
239{
240 struct hlist_node *node;
241 struct dquot *dquot;
242
243 hlist_for_each (node, dquot_hash+hashent) {
244 dquot = hlist_entry(node, struct dquot, dq_hash);
245 if (dquot->dq_sb == sb && dquot->dq_id == id && dquot->dq_type == type)
246 return dquot;
247 }
248 return NODQUOT;
249}
250
251/* Add a dquot to the tail of the free list */
252static inline void put_dquot_last(struct dquot *dquot)
253{
Akinobu Mita8e130592006-06-26 00:24:37 -0700254 list_add_tail(&dquot->dq_free, &free_dquots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 dqstats.free_dquots++;
256}
257
258static inline void remove_free_dquot(struct dquot *dquot)
259{
260 if (list_empty(&dquot->dq_free))
261 return;
262 list_del_init(&dquot->dq_free);
263 dqstats.free_dquots--;
264}
265
266static inline void put_inuse(struct dquot *dquot)
267{
268 /* We add to the back of inuse list so we don't have to restart
269 * when traversing this list and we block */
Akinobu Mita8e130592006-06-26 00:24:37 -0700270 list_add_tail(&dquot->dq_inuse, &inuse_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 dqstats.allocated_dquots++;
272}
273
274static inline void remove_inuse(struct dquot *dquot)
275{
276 dqstats.allocated_dquots--;
277 list_del(&dquot->dq_inuse);
278}
279/*
280 * End of list functions needing dq_list_lock
281 */
282
283static void wait_on_dquot(struct dquot *dquot)
284{
Ingo Molnard3be9152006-03-23 03:00:29 -0800285 mutex_lock(&dquot->dq_lock);
286 mutex_unlock(&dquot->dq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289#define mark_dquot_dirty(dquot) ((dquot)->dq_sb->dq_op->mark_dirty(dquot))
290
291int dquot_mark_dquot_dirty(struct dquot *dquot)
292{
293 spin_lock(&dq_list_lock);
294 if (!test_and_set_bit(DQ_MOD_B, &dquot->dq_flags))
295 list_add(&dquot->dq_dirty, &sb_dqopt(dquot->dq_sb)->
296 info[dquot->dq_type].dqi_dirty_list);
297 spin_unlock(&dq_list_lock);
298 return 0;
299}
300
301/* This function needs dq_list_lock */
302static inline int clear_dquot_dirty(struct dquot *dquot)
303{
304 if (!test_and_clear_bit(DQ_MOD_B, &dquot->dq_flags))
305 return 0;
306 list_del_init(&dquot->dq_dirty);
307 return 1;
308}
309
310void mark_info_dirty(struct super_block *sb, int type)
311{
312 set_bit(DQF_INFO_DIRTY_B, &sb_dqopt(sb)->info[type].dqi_flags);
313}
314EXPORT_SYMBOL(mark_info_dirty);
315
316/*
317 * Read dquot from disk and alloc space for it
318 */
319
320int dquot_acquire(struct dquot *dquot)
321{
322 int ret = 0, ret2 = 0;
323 struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
324
Ingo Molnard3be9152006-03-23 03:00:29 -0800325 mutex_lock(&dquot->dq_lock);
326 mutex_lock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (!test_bit(DQ_READ_B, &dquot->dq_flags))
328 ret = dqopt->ops[dquot->dq_type]->read_dqblk(dquot);
329 if (ret < 0)
330 goto out_iolock;
331 set_bit(DQ_READ_B, &dquot->dq_flags);
332 /* Instantiate dquot if needed */
333 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags) && !dquot->dq_off) {
334 ret = dqopt->ops[dquot->dq_type]->commit_dqblk(dquot);
335 /* Write the info if needed */
336 if (info_dirty(&dqopt->info[dquot->dq_type]))
337 ret2 = dqopt->ops[dquot->dq_type]->write_file_info(dquot->dq_sb, dquot->dq_type);
338 if (ret < 0)
339 goto out_iolock;
340 if (ret2 < 0) {
341 ret = ret2;
342 goto out_iolock;
343 }
344 }
345 set_bit(DQ_ACTIVE_B, &dquot->dq_flags);
346out_iolock:
Ingo Molnard3be9152006-03-23 03:00:29 -0800347 mutex_unlock(&dqopt->dqio_mutex);
348 mutex_unlock(&dquot->dq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return ret;
350}
351
352/*
353 * Write dquot to disk
354 */
355int dquot_commit(struct dquot *dquot)
356{
357 int ret = 0, ret2 = 0;
358 struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
359
Ingo Molnard3be9152006-03-23 03:00:29 -0800360 mutex_lock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 spin_lock(&dq_list_lock);
362 if (!clear_dquot_dirty(dquot)) {
363 spin_unlock(&dq_list_lock);
364 goto out_sem;
365 }
366 spin_unlock(&dq_list_lock);
367 /* Inactive dquot can be only if there was error during read/init
368 * => we have better not writing it */
369 if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) {
370 ret = dqopt->ops[dquot->dq_type]->commit_dqblk(dquot);
371 if (info_dirty(&dqopt->info[dquot->dq_type]))
372 ret2 = dqopt->ops[dquot->dq_type]->write_file_info(dquot->dq_sb, dquot->dq_type);
373 if (ret >= 0)
374 ret = ret2;
375 }
376out_sem:
Ingo Molnard3be9152006-03-23 03:00:29 -0800377 mutex_unlock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return ret;
379}
380
381/*
382 * Release dquot
383 */
384int dquot_release(struct dquot *dquot)
385{
386 int ret = 0, ret2 = 0;
387 struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
388
Ingo Molnard3be9152006-03-23 03:00:29 -0800389 mutex_lock(&dquot->dq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /* Check whether we are not racing with some other dqget() */
391 if (atomic_read(&dquot->dq_count) > 1)
392 goto out_dqlock;
Ingo Molnard3be9152006-03-23 03:00:29 -0800393 mutex_lock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (dqopt->ops[dquot->dq_type]->release_dqblk) {
395 ret = dqopt->ops[dquot->dq_type]->release_dqblk(dquot);
396 /* Write the info */
397 if (info_dirty(&dqopt->info[dquot->dq_type]))
398 ret2 = dqopt->ops[dquot->dq_type]->write_file_info(dquot->dq_sb, dquot->dq_type);
399 if (ret >= 0)
400 ret = ret2;
401 }
402 clear_bit(DQ_ACTIVE_B, &dquot->dq_flags);
Ingo Molnard3be9152006-03-23 03:00:29 -0800403 mutex_unlock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404out_dqlock:
Ingo Molnard3be9152006-03-23 03:00:29 -0800405 mutex_unlock(&dquot->dq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return ret;
407}
408
409/* Invalidate all dquots on the list. Note that this function is called after
410 * quota is disabled and pointers from inodes removed so there cannot be new
Jan Kara6362e4d2006-03-23 03:00:17 -0800411 * quota users. There can still be some users of quotas due to inodes being
412 * just deleted or pruned by prune_icache() (those are not attached to any
413 * list). We have to wait for such users.
414 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415static void invalidate_dquots(struct super_block *sb, int type)
416{
Domen Puncerc33ed272005-06-25 14:59:36 -0700417 struct dquot *dquot, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Jan Kara6362e4d2006-03-23 03:00:17 -0800419restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 spin_lock(&dq_list_lock);
Domen Puncerc33ed272005-06-25 14:59:36 -0700421 list_for_each_entry_safe(dquot, tmp, &inuse_list, dq_inuse) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (dquot->dq_sb != sb)
423 continue;
424 if (dquot->dq_type != type)
425 continue;
Jan Kara6362e4d2006-03-23 03:00:17 -0800426 /* Wait for dquot users */
427 if (atomic_read(&dquot->dq_count)) {
428 DEFINE_WAIT(wait);
429
430 atomic_inc(&dquot->dq_count);
431 prepare_to_wait(&dquot->dq_wait_unused, &wait,
432 TASK_UNINTERRUPTIBLE);
433 spin_unlock(&dq_list_lock);
434 /* Once dqput() wakes us up, we know it's time to free
435 * the dquot.
436 * IMPORTANT: we rely on the fact that there is always
437 * at most one process waiting for dquot to free.
438 * Otherwise dq_count would be > 1 and we would never
439 * wake up.
440 */
441 if (atomic_read(&dquot->dq_count) > 1)
442 schedule();
443 finish_wait(&dquot->dq_wait_unused, &wait);
444 dqput(dquot);
445 /* At this moment dquot() need not exist (it could be
446 * reclaimed by prune_dqcache(). Hence we must
447 * restart. */
448 goto restart;
449 }
450 /*
451 * Quota now has no users and it has been written on last
452 * dqput()
453 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 remove_dquot_hash(dquot);
455 remove_free_dquot(dquot);
456 remove_inuse(dquot);
457 kmem_cache_free(dquot_cachep, dquot);
458 }
459 spin_unlock(&dq_list_lock);
460}
461
462int vfs_quota_sync(struct super_block *sb, int type)
463{
464 struct list_head *dirty;
465 struct dquot *dquot;
466 struct quota_info *dqopt = sb_dqopt(sb);
467 int cnt;
468
Ingo Molnard3be9152006-03-23 03:00:29 -0800469 mutex_lock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
471 if (type != -1 && cnt != type)
472 continue;
473 if (!sb_has_quota_enabled(sb, cnt))
474 continue;
475 spin_lock(&dq_list_lock);
476 dirty = &dqopt->info[cnt].dqi_dirty_list;
477 while (!list_empty(dirty)) {
478 dquot = list_entry(dirty->next, struct dquot, dq_dirty);
479 /* Dirty and inactive can be only bad dquot... */
480 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) {
481 clear_dquot_dirty(dquot);
482 continue;
483 }
484 /* Now we have active dquot from which someone is
485 * holding reference so we can safely just increase
486 * use count */
487 atomic_inc(&dquot->dq_count);
488 dqstats.lookups++;
489 spin_unlock(&dq_list_lock);
490 sb->dq_op->write_dquot(dquot);
491 dqput(dquot);
492 spin_lock(&dq_list_lock);
493 }
494 spin_unlock(&dq_list_lock);
495 }
496
497 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
498 if ((cnt == type || type == -1) && sb_has_quota_enabled(sb, cnt)
499 && info_dirty(&dqopt->info[cnt]))
500 sb->dq_op->write_info(sb, cnt);
501 spin_lock(&dq_list_lock);
502 dqstats.syncs++;
503 spin_unlock(&dq_list_lock);
Ingo Molnard3be9152006-03-23 03:00:29 -0800504 mutex_unlock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 return 0;
507}
508
509/* Free unused dquots from cache */
510static void prune_dqcache(int count)
511{
512 struct list_head *head;
513 struct dquot *dquot;
514
515 head = free_dquots.prev;
516 while (head != &free_dquots && count) {
517 dquot = list_entry(head, struct dquot, dq_free);
518 remove_dquot_hash(dquot);
519 remove_free_dquot(dquot);
520 remove_inuse(dquot);
521 kmem_cache_free(dquot_cachep, dquot);
522 count--;
523 head = free_dquots.prev;
524 }
525}
526
527/*
528 * This is called from kswapd when we think we need some
529 * more memory
530 */
531
Al Viro27496a82005-10-21 03:20:48 -0400532static int shrink_dqcache_memory(int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 if (nr) {
535 spin_lock(&dq_list_lock);
536 prune_dqcache(nr);
537 spin_unlock(&dq_list_lock);
538 }
539 return (dqstats.free_dquots / 100) * sysctl_vfs_cache_pressure;
540}
541
542/*
543 * Put reference to dquot
544 * NOTE: If you change this function please check whether dqput_blocks() works right...
Ingo Molnard3be9152006-03-23 03:00:29 -0800545 * MUST be called with either dqptr_sem or dqonoff_mutex held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 */
547static void dqput(struct dquot *dquot)
548{
549 if (!dquot)
550 return;
551#ifdef __DQUOT_PARANOIA
552 if (!atomic_read(&dquot->dq_count)) {
553 printk("VFS: dqput: trying to free free dquot\n");
554 printk("VFS: device %s, dquot of %s %d\n",
555 dquot->dq_sb->s_id,
556 quotatypes[dquot->dq_type],
557 dquot->dq_id);
558 BUG();
559 }
560#endif
561
562 spin_lock(&dq_list_lock);
563 dqstats.drops++;
564 spin_unlock(&dq_list_lock);
565we_slept:
566 spin_lock(&dq_list_lock);
567 if (atomic_read(&dquot->dq_count) > 1) {
568 /* We have more than one user... nothing to do */
569 atomic_dec(&dquot->dq_count);
Jan Kara6362e4d2006-03-23 03:00:17 -0800570 /* Releasing dquot during quotaoff phase? */
571 if (!sb_has_quota_enabled(dquot->dq_sb, dquot->dq_type) &&
572 atomic_read(&dquot->dq_count) == 1)
573 wake_up(&dquot->dq_wait_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 spin_unlock(&dq_list_lock);
575 return;
576 }
577 /* Need to release dquot? */
578 if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags) && dquot_dirty(dquot)) {
579 spin_unlock(&dq_list_lock);
580 /* Commit dquot before releasing */
581 dquot->dq_sb->dq_op->write_dquot(dquot);
582 goto we_slept;
583 }
584 /* Clear flag in case dquot was inactive (something bad happened) */
585 clear_dquot_dirty(dquot);
586 if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) {
587 spin_unlock(&dq_list_lock);
588 dquot->dq_sb->dq_op->release_dquot(dquot);
589 goto we_slept;
590 }
591 atomic_dec(&dquot->dq_count);
592#ifdef __DQUOT_PARANOIA
593 /* sanity check */
Eric Sesterhenn8abf6a42006-04-02 13:36:13 +0200594 BUG_ON(!list_empty(&dquot->dq_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595#endif
596 put_dquot_last(dquot);
597 spin_unlock(&dq_list_lock);
598}
599
600static struct dquot *get_empty_dquot(struct super_block *sb, int type)
601{
602 struct dquot *dquot;
603
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800604 dquot = kmem_cache_zalloc(dquot_cachep, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if(!dquot)
606 return NODQUOT;
607
Ingo Molnard3be9152006-03-23 03:00:29 -0800608 mutex_init(&dquot->dq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 INIT_LIST_HEAD(&dquot->dq_free);
610 INIT_LIST_HEAD(&dquot->dq_inuse);
611 INIT_HLIST_NODE(&dquot->dq_hash);
612 INIT_LIST_HEAD(&dquot->dq_dirty);
Jan Kara6362e4d2006-03-23 03:00:17 -0800613 init_waitqueue_head(&dquot->dq_wait_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 dquot->dq_sb = sb;
615 dquot->dq_type = type;
616 atomic_set(&dquot->dq_count, 1);
617
618 return dquot;
619}
620
621/*
622 * Get reference to dquot
Ingo Molnard3be9152006-03-23 03:00:29 -0800623 * MUST be called with either dqptr_sem or dqonoff_mutex held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 */
625static struct dquot *dqget(struct super_block *sb, unsigned int id, int type)
626{
627 unsigned int hashent = hashfn(sb, id, type);
628 struct dquot *dquot, *empty = NODQUOT;
629
630 if (!sb_has_quota_enabled(sb, type))
631 return NODQUOT;
632we_slept:
633 spin_lock(&dq_list_lock);
634 if ((dquot = find_dquot(hashent, sb, id, type)) == NODQUOT) {
635 if (empty == NODQUOT) {
636 spin_unlock(&dq_list_lock);
637 if ((empty = get_empty_dquot(sb, type)) == NODQUOT)
638 schedule(); /* Try to wait for a moment... */
639 goto we_slept;
640 }
641 dquot = empty;
642 dquot->dq_id = id;
643 /* all dquots go on the inuse_list */
644 put_inuse(dquot);
645 /* hash it first so it can be found */
646 insert_dquot_hash(dquot);
647 dqstats.lookups++;
648 spin_unlock(&dq_list_lock);
649 } else {
650 if (!atomic_read(&dquot->dq_count))
651 remove_free_dquot(dquot);
652 atomic_inc(&dquot->dq_count);
653 dqstats.cache_hits++;
654 dqstats.lookups++;
655 spin_unlock(&dq_list_lock);
656 if (empty)
657 kmem_cache_free(dquot_cachep, empty);
658 }
659 /* Wait for dq_lock - after this we know that either dquot_release() is already
660 * finished or it will be canceled due to dq_count > 1 test */
661 wait_on_dquot(dquot);
662 /* Read the dquot and instantiate it (everything done only if needed) */
663 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags) && sb->dq_op->acquire_dquot(dquot) < 0) {
664 dqput(dquot);
665 return NODQUOT;
666 }
667#ifdef __DQUOT_PARANOIA
Eric Sesterhenn8abf6a42006-04-02 13:36:13 +0200668 BUG_ON(!dquot->dq_sb); /* Has somebody invalidated entry under us? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669#endif
670
671 return dquot;
672}
673
674static int dqinit_needed(struct inode *inode, int type)
675{
676 int cnt;
677
678 if (IS_NOQUOTA(inode))
679 return 0;
680 if (type != -1)
681 return inode->i_dquot[type] == NODQUOT;
682 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
683 if (inode->i_dquot[cnt] == NODQUOT)
684 return 1;
685 return 0;
686}
687
Ingo Molnard3be9152006-03-23 03:00:29 -0800688/* This routine is guarded by dqonoff_mutex mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689static void add_dquot_ref(struct super_block *sb, int type)
690{
Christoph Hellwigd003fb72007-02-12 00:51:58 -0800691 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693restart:
Christoph Hellwigd003fb72007-02-12 00:51:58 -0800694 spin_lock(&inode_lock);
695 list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
696 if (!atomic_read(&inode->i_writecount))
697 continue;
698 if (!dqinit_needed(inode, type))
699 continue;
700 if (inode->i_state & (I_FREEING|I_WILL_FREE))
701 continue;
702
703 __iget(inode);
704 spin_unlock(&inode_lock);
705
706 sb->dq_op->initialize(inode, type);
707 iput(inode);
708 /* As we may have blocked we had better restart... */
709 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
Christoph Hellwigd003fb72007-02-12 00:51:58 -0800711 spin_unlock(&inode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714/* Return 0 if dqput() won't block (note that 1 doesn't necessarily mean blocking) */
715static inline int dqput_blocks(struct dquot *dquot)
716{
717 if (atomic_read(&dquot->dq_count) <= 1)
718 return 1;
719 return 0;
720}
721
722/* Remove references to dquots from inode - add dquot to list for freeing if needed */
723/* We can't race with anybody because we hold dqptr_sem for writing... */
Adrian Bunke5f00f42007-05-08 00:27:22 -0700724static int remove_inode_dquot_ref(struct inode *inode, int type,
725 struct list_head *tofree_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 struct dquot *dquot = inode->i_dquot[type];
728
729 inode->i_dquot[type] = NODQUOT;
730 if (dquot != NODQUOT) {
731 if (dqput_blocks(dquot)) {
732#ifdef __DQUOT_PARANOIA
733 if (atomic_read(&dquot->dq_count) != 1)
734 printk(KERN_WARNING "VFS: Adding dquot with dq_count %d to dispose list.\n", atomic_read(&dquot->dq_count));
735#endif
736 spin_lock(&dq_list_lock);
737 list_add(&dquot->dq_free, tofree_head); /* As dquot must have currently users it can't be on the free list... */
738 spin_unlock(&dq_list_lock);
739 return 1;
740 }
741 else
742 dqput(dquot); /* We have guaranteed we won't block */
743 }
744 return 0;
745}
746
747/* Free list of dquots - called from inode.c */
748/* dquots are removed from inodes, no new references can be got so we are the only ones holding reference */
749static void put_dquot_list(struct list_head *tofree_head)
750{
751 struct list_head *act_head;
752 struct dquot *dquot;
753
754 act_head = tofree_head->next;
755 /* So now we have dquots on the list... Just free them */
756 while (act_head != tofree_head) {
757 dquot = list_entry(act_head, struct dquot, dq_free);
758 act_head = act_head->next;
759 list_del_init(&dquot->dq_free); /* Remove dquot from the list so we won't have problems... */
760 dqput(dquot);
761 }
762}
763
Christoph Hellwigfb58b732007-02-12 00:51:57 -0800764static void remove_dquot_ref(struct super_block *sb, int type,
765 struct list_head *tofree_head)
766{
767 struct inode *inode;
768
769 spin_lock(&inode_lock);
770 list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
771 if (!IS_NOQUOTA(inode))
772 remove_inode_dquot_ref(inode, type, tofree_head);
773 }
774 spin_unlock(&inode_lock);
775}
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777/* Gather all references from inodes and drop them */
778static void drop_dquot_ref(struct super_block *sb, int type)
779{
780 LIST_HEAD(tofree_head);
781
Christoph Hellwigfb58b732007-02-12 00:51:57 -0800782 if (sb->dq_op) {
783 down_write(&sb_dqopt(sb)->dqptr_sem);
784 remove_dquot_ref(sb, type, &tofree_head);
785 up_write(&sb_dqopt(sb)->dqptr_sem);
786 put_dquot_list(&tofree_head);
787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
790static inline void dquot_incr_inodes(struct dquot *dquot, unsigned long number)
791{
792 dquot->dq_dqb.dqb_curinodes += number;
793}
794
795static inline void dquot_incr_space(struct dquot *dquot, qsize_t number)
796{
797 dquot->dq_dqb.dqb_curspace += number;
798}
799
800static inline void dquot_decr_inodes(struct dquot *dquot, unsigned long number)
801{
802 if (dquot->dq_dqb.dqb_curinodes > number)
803 dquot->dq_dqb.dqb_curinodes -= number;
804 else
805 dquot->dq_dqb.dqb_curinodes = 0;
806 if (dquot->dq_dqb.dqb_curinodes <= dquot->dq_dqb.dqb_isoftlimit)
807 dquot->dq_dqb.dqb_itime = (time_t) 0;
808 clear_bit(DQ_INODES_B, &dquot->dq_flags);
809}
810
811static inline void dquot_decr_space(struct dquot *dquot, qsize_t number)
812{
813 if (dquot->dq_dqb.dqb_curspace > number)
814 dquot->dq_dqb.dqb_curspace -= number;
815 else
816 dquot->dq_dqb.dqb_curspace = 0;
817 if (toqb(dquot->dq_dqb.dqb_curspace) <= dquot->dq_dqb.dqb_bsoftlimit)
818 dquot->dq_dqb.dqb_btime = (time_t) 0;
819 clear_bit(DQ_BLKS_B, &dquot->dq_flags);
820}
821
822static int flag_print_warnings = 1;
823
824static inline int need_print_warning(struct dquot *dquot)
825{
826 if (!flag_print_warnings)
827 return 0;
828
829 switch (dquot->dq_type) {
830 case USRQUOTA:
831 return current->fsuid == dquot->dq_id;
832 case GRPQUOTA:
833 return in_group_p(dquot->dq_id);
834 }
835 return 0;
836}
837
838/* Values of warnings */
839#define NOWARN 0
840#define IHARDWARN 1
841#define ISOFTLONGWARN 2
842#define ISOFTWARN 3
843#define BHARDWARN 4
844#define BSOFTLONGWARN 5
845#define BSOFTWARN 6
846
847/* Print warning to user which exceeded quota */
848static void print_warning(struct dquot *dquot, const char warntype)
849{
850 char *msg = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800851 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 int flag = (warntype == BHARDWARN || warntype == BSOFTLONGWARN) ? DQ_BLKS_B :
853 ((warntype == IHARDWARN || warntype == ISOFTLONGWARN) ? DQ_INODES_B : 0);
854
855 if (!need_print_warning(dquot) || (flag && test_and_set_bit(flag, &dquot->dq_flags)))
856 return;
857
Jan Karab525a7e2006-09-29 02:00:26 -0700858 mutex_lock(&tty_mutex);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800859 tty = get_current_tty();
860 if (!tty)
Jan Karab525a7e2006-09-29 02:00:26 -0700861 goto out_lock;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800862 tty_write_message(tty, dquot->dq_sb->s_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (warntype == ISOFTWARN || warntype == BSOFTWARN)
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800864 tty_write_message(tty, ": warning, ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 else
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800866 tty_write_message(tty, ": write failed, ");
867 tty_write_message(tty, quotatypes[dquot->dq_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 switch (warntype) {
869 case IHARDWARN:
870 msg = " file limit reached.\r\n";
871 break;
872 case ISOFTLONGWARN:
873 msg = " file quota exceeded too long.\r\n";
874 break;
875 case ISOFTWARN:
876 msg = " file quota exceeded.\r\n";
877 break;
878 case BHARDWARN:
879 msg = " block limit reached.\r\n";
880 break;
881 case BSOFTLONGWARN:
882 msg = " block quota exceeded too long.\r\n";
883 break;
884 case BSOFTWARN:
885 msg = " block quota exceeded.\r\n";
886 break;
887 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800888 tty_write_message(tty, msg);
Jan Karab525a7e2006-09-29 02:00:26 -0700889out_lock:
890 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892
893static inline void flush_warnings(struct dquot **dquots, char *warntype)
894{
895 int i;
896
897 for (i = 0; i < MAXQUOTAS; i++)
898 if (dquots[i] != NODQUOT && warntype[i] != NOWARN)
899 print_warning(dquots[i], warntype[i]);
900}
901
902static inline char ignore_hardlimit(struct dquot *dquot)
903{
904 struct mem_dqinfo *info = &sb_dqopt(dquot->dq_sb)->info[dquot->dq_type];
905
906 return capable(CAP_SYS_RESOURCE) &&
907 (info->dqi_format->qf_fmt_id != QFMT_VFS_OLD || !(info->dqi_flags & V1_DQF_RSQUASH));
908}
909
910/* needs dq_data_lock */
911static int check_idq(struct dquot *dquot, ulong inodes, char *warntype)
912{
913 *warntype = NOWARN;
914 if (inodes <= 0 || test_bit(DQ_FAKE_B, &dquot->dq_flags))
915 return QUOTA_OK;
916
917 if (dquot->dq_dqb.dqb_ihardlimit &&
918 (dquot->dq_dqb.dqb_curinodes + inodes) > dquot->dq_dqb.dqb_ihardlimit &&
919 !ignore_hardlimit(dquot)) {
920 *warntype = IHARDWARN;
921 return NO_QUOTA;
922 }
923
924 if (dquot->dq_dqb.dqb_isoftlimit &&
925 (dquot->dq_dqb.dqb_curinodes + inodes) > dquot->dq_dqb.dqb_isoftlimit &&
926 dquot->dq_dqb.dqb_itime && get_seconds() >= dquot->dq_dqb.dqb_itime &&
927 !ignore_hardlimit(dquot)) {
928 *warntype = ISOFTLONGWARN;
929 return NO_QUOTA;
930 }
931
932 if (dquot->dq_dqb.dqb_isoftlimit &&
933 (dquot->dq_dqb.dqb_curinodes + inodes) > dquot->dq_dqb.dqb_isoftlimit &&
934 dquot->dq_dqb.dqb_itime == 0) {
935 *warntype = ISOFTWARN;
936 dquot->dq_dqb.dqb_itime = get_seconds() + sb_dqopt(dquot->dq_sb)->info[dquot->dq_type].dqi_igrace;
937 }
938
939 return QUOTA_OK;
940}
941
942/* needs dq_data_lock */
943static int check_bdq(struct dquot *dquot, qsize_t space, int prealloc, char *warntype)
944{
945 *warntype = 0;
946 if (space <= 0 || test_bit(DQ_FAKE_B, &dquot->dq_flags))
947 return QUOTA_OK;
948
949 if (dquot->dq_dqb.dqb_bhardlimit &&
950 toqb(dquot->dq_dqb.dqb_curspace + space) > dquot->dq_dqb.dqb_bhardlimit &&
951 !ignore_hardlimit(dquot)) {
952 if (!prealloc)
953 *warntype = BHARDWARN;
954 return NO_QUOTA;
955 }
956
957 if (dquot->dq_dqb.dqb_bsoftlimit &&
958 toqb(dquot->dq_dqb.dqb_curspace + space) > dquot->dq_dqb.dqb_bsoftlimit &&
959 dquot->dq_dqb.dqb_btime && get_seconds() >= dquot->dq_dqb.dqb_btime &&
960 !ignore_hardlimit(dquot)) {
961 if (!prealloc)
962 *warntype = BSOFTLONGWARN;
963 return NO_QUOTA;
964 }
965
966 if (dquot->dq_dqb.dqb_bsoftlimit &&
967 toqb(dquot->dq_dqb.dqb_curspace + space) > dquot->dq_dqb.dqb_bsoftlimit &&
968 dquot->dq_dqb.dqb_btime == 0) {
969 if (!prealloc) {
970 *warntype = BSOFTWARN;
971 dquot->dq_dqb.dqb_btime = get_seconds() + sb_dqopt(dquot->dq_sb)->info[dquot->dq_type].dqi_bgrace;
972 }
973 else
974 /*
975 * We don't allow preallocation to exceed softlimit so exceeding will
976 * be always printed
977 */
978 return NO_QUOTA;
979 }
980
981 return QUOTA_OK;
982}
983
984/*
985 * Initialize quota pointers in inode
986 * Transaction must be started at entry
987 */
988int dquot_initialize(struct inode *inode, int type)
989{
990 unsigned int id = 0;
991 int cnt, ret = 0;
992
Ingo Molnard3be9152006-03-23 03:00:29 -0800993 /* First test before acquiring mutex - solves deadlocks when we
994 * re-enter the quota code and are already holding the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (IS_NOQUOTA(inode))
996 return 0;
997 down_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
998 /* Having dqptr_sem we know NOQUOTA flags can't be altered... */
999 if (IS_NOQUOTA(inode))
1000 goto out_err;
1001 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1002 if (type != -1 && cnt != type)
1003 continue;
1004 if (inode->i_dquot[cnt] == NODQUOT) {
1005 switch (cnt) {
1006 case USRQUOTA:
1007 id = inode->i_uid;
1008 break;
1009 case GRPQUOTA:
1010 id = inode->i_gid;
1011 break;
1012 }
1013 inode->i_dquot[cnt] = dqget(inode->i_sb, id, cnt);
1014 }
1015 }
1016out_err:
1017 up_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1018 return ret;
1019}
1020
1021/*
1022 * Release all quotas referenced by inode
1023 * Transaction must be started at an entry
1024 */
1025int dquot_drop(struct inode *inode)
1026{
1027 int cnt;
1028
1029 down_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1030 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1031 if (inode->i_dquot[cnt] != NODQUOT) {
1032 dqput(inode->i_dquot[cnt]);
1033 inode->i_dquot[cnt] = NODQUOT;
1034 }
1035 }
1036 up_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1037 return 0;
1038}
1039
1040/*
1041 * Following four functions update i_blocks+i_bytes fields and
1042 * quota information (together with appropriate checks)
1043 * NOTE: We absolutely rely on the fact that caller dirties
1044 * the inode (usually macros in quotaops.h care about this) and
1045 * holds a handle for the current transaction so that dquot write and
1046 * inode write go into the same transaction.
1047 */
1048
1049/*
1050 * This operation can block, but only after everything is updated
1051 */
1052int dquot_alloc_space(struct inode *inode, qsize_t number, int warn)
1053{
1054 int cnt, ret = NO_QUOTA;
1055 char warntype[MAXQUOTAS];
1056
Ingo Molnard3be9152006-03-23 03:00:29 -08001057 /* First test before acquiring mutex - solves deadlocks when we
1058 * re-enter the quota code and are already holding the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 if (IS_NOQUOTA(inode)) {
1060out_add:
1061 inode_add_bytes(inode, number);
1062 return QUOTA_OK;
1063 }
1064 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1065 warntype[cnt] = NOWARN;
1066
1067 down_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1068 if (IS_NOQUOTA(inode)) { /* Now we can do reliable test... */
1069 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1070 goto out_add;
1071 }
1072 spin_lock(&dq_data_lock);
1073 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1074 if (inode->i_dquot[cnt] == NODQUOT)
1075 continue;
1076 if (check_bdq(inode->i_dquot[cnt], number, warn, warntype+cnt) == NO_QUOTA)
1077 goto warn_put_all;
1078 }
1079 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1080 if (inode->i_dquot[cnt] == NODQUOT)
1081 continue;
1082 dquot_incr_space(inode->i_dquot[cnt], number);
1083 }
1084 inode_add_bytes(inode, number);
1085 ret = QUOTA_OK;
1086warn_put_all:
1087 spin_unlock(&dq_data_lock);
1088 if (ret == QUOTA_OK)
1089 /* Dirtify all the dquots - this can block when journalling */
1090 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1091 if (inode->i_dquot[cnt])
1092 mark_dquot_dirty(inode->i_dquot[cnt]);
1093 flush_warnings(inode->i_dquot, warntype);
1094 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1095 return ret;
1096}
1097
1098/*
1099 * This operation can block, but only after everything is updated
1100 */
1101int dquot_alloc_inode(const struct inode *inode, unsigned long number)
1102{
1103 int cnt, ret = NO_QUOTA;
1104 char warntype[MAXQUOTAS];
1105
Ingo Molnard3be9152006-03-23 03:00:29 -08001106 /* First test before acquiring mutex - solves deadlocks when we
1107 * re-enter the quota code and are already holding the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (IS_NOQUOTA(inode))
1109 return QUOTA_OK;
1110 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1111 warntype[cnt] = NOWARN;
1112 down_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1113 if (IS_NOQUOTA(inode)) {
1114 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1115 return QUOTA_OK;
1116 }
1117 spin_lock(&dq_data_lock);
1118 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1119 if (inode->i_dquot[cnt] == NODQUOT)
1120 continue;
1121 if (check_idq(inode->i_dquot[cnt], number, warntype+cnt) == NO_QUOTA)
1122 goto warn_put_all;
1123 }
1124
1125 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1126 if (inode->i_dquot[cnt] == NODQUOT)
1127 continue;
1128 dquot_incr_inodes(inode->i_dquot[cnt], number);
1129 }
1130 ret = QUOTA_OK;
1131warn_put_all:
1132 spin_unlock(&dq_data_lock);
1133 if (ret == QUOTA_OK)
1134 /* Dirtify all the dquots - this can block when journalling */
1135 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1136 if (inode->i_dquot[cnt])
1137 mark_dquot_dirty(inode->i_dquot[cnt]);
1138 flush_warnings((struct dquot **)inode->i_dquot, warntype);
1139 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1140 return ret;
1141}
1142
1143/*
1144 * This operation can block, but only after everything is updated
1145 */
1146int dquot_free_space(struct inode *inode, qsize_t number)
1147{
1148 unsigned int cnt;
1149
Ingo Molnard3be9152006-03-23 03:00:29 -08001150 /* First test before acquiring mutex - solves deadlocks when we
1151 * re-enter the quota code and are already holding the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 if (IS_NOQUOTA(inode)) {
1153out_sub:
1154 inode_sub_bytes(inode, number);
1155 return QUOTA_OK;
1156 }
1157 down_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1158 /* Now recheck reliably when holding dqptr_sem */
1159 if (IS_NOQUOTA(inode)) {
1160 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1161 goto out_sub;
1162 }
1163 spin_lock(&dq_data_lock);
1164 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1165 if (inode->i_dquot[cnt] == NODQUOT)
1166 continue;
1167 dquot_decr_space(inode->i_dquot[cnt], number);
1168 }
1169 inode_sub_bytes(inode, number);
1170 spin_unlock(&dq_data_lock);
1171 /* Dirtify all the dquots - this can block when journalling */
1172 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1173 if (inode->i_dquot[cnt])
1174 mark_dquot_dirty(inode->i_dquot[cnt]);
1175 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1176 return QUOTA_OK;
1177}
1178
1179/*
1180 * This operation can block, but only after everything is updated
1181 */
1182int dquot_free_inode(const struct inode *inode, unsigned long number)
1183{
1184 unsigned int cnt;
1185
Ingo Molnard3be9152006-03-23 03:00:29 -08001186 /* First test before acquiring mutex - solves deadlocks when we
1187 * re-enter the quota code and are already holding the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (IS_NOQUOTA(inode))
1189 return QUOTA_OK;
1190 down_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1191 /* Now recheck reliably when holding dqptr_sem */
1192 if (IS_NOQUOTA(inode)) {
1193 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1194 return QUOTA_OK;
1195 }
1196 spin_lock(&dq_data_lock);
1197 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1198 if (inode->i_dquot[cnt] == NODQUOT)
1199 continue;
1200 dquot_decr_inodes(inode->i_dquot[cnt], number);
1201 }
1202 spin_unlock(&dq_data_lock);
1203 /* Dirtify all the dquots - this can block when journalling */
1204 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1205 if (inode->i_dquot[cnt])
1206 mark_dquot_dirty(inode->i_dquot[cnt]);
1207 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1208 return QUOTA_OK;
1209}
1210
1211/*
1212 * Transfer the number of inode and blocks from one diskquota to an other.
1213 *
1214 * This operation can block, but only after everything is updated
1215 * A transaction must be started when entering this function.
1216 */
1217int dquot_transfer(struct inode *inode, struct iattr *iattr)
1218{
1219 qsize_t space;
1220 struct dquot *transfer_from[MAXQUOTAS];
1221 struct dquot *transfer_to[MAXQUOTAS];
1222 int cnt, ret = NO_QUOTA, chuid = (iattr->ia_valid & ATTR_UID) && inode->i_uid != iattr->ia_uid,
1223 chgid = (iattr->ia_valid & ATTR_GID) && inode->i_gid != iattr->ia_gid;
1224 char warntype[MAXQUOTAS];
1225
Ingo Molnard3be9152006-03-23 03:00:29 -08001226 /* First test before acquiring mutex - solves deadlocks when we
1227 * re-enter the quota code and are already holding the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (IS_NOQUOTA(inode))
1229 return QUOTA_OK;
1230 /* Clear the arrays */
1231 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1232 transfer_to[cnt] = transfer_from[cnt] = NODQUOT;
1233 warntype[cnt] = NOWARN;
1234 }
1235 down_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1236 /* Now recheck reliably when holding dqptr_sem */
1237 if (IS_NOQUOTA(inode)) { /* File without quota accounting? */
1238 up_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1239 return QUOTA_OK;
1240 }
1241 /* First build the transfer_to list - here we can block on
1242 * reading/instantiating of dquots. We know that the transaction for
1243 * us was already started so we don't violate lock ranking here */
1244 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1245 switch (cnt) {
1246 case USRQUOTA:
1247 if (!chuid)
1248 continue;
1249 transfer_to[cnt] = dqget(inode->i_sb, iattr->ia_uid, cnt);
1250 break;
1251 case GRPQUOTA:
1252 if (!chgid)
1253 continue;
1254 transfer_to[cnt] = dqget(inode->i_sb, iattr->ia_gid, cnt);
1255 break;
1256 }
1257 }
1258 spin_lock(&dq_data_lock);
1259 space = inode_get_bytes(inode);
1260 /* Build the transfer_from list and check the limits */
1261 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1262 if (transfer_to[cnt] == NODQUOT)
1263 continue;
1264 transfer_from[cnt] = inode->i_dquot[cnt];
1265 if (check_idq(transfer_to[cnt], 1, warntype+cnt) == NO_QUOTA ||
1266 check_bdq(transfer_to[cnt], space, 0, warntype+cnt) == NO_QUOTA)
1267 goto warn_put_all;
1268 }
1269
1270 /*
1271 * Finally perform the needed transfer from transfer_from to transfer_to
1272 */
1273 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1274 /*
1275 * Skip changes for same uid or gid or for turned off quota-type.
1276 */
1277 if (transfer_to[cnt] == NODQUOT)
1278 continue;
1279
1280 /* Due to IO error we might not have transfer_from[] structure */
1281 if (transfer_from[cnt]) {
1282 dquot_decr_inodes(transfer_from[cnt], 1);
1283 dquot_decr_space(transfer_from[cnt], space);
1284 }
1285
1286 dquot_incr_inodes(transfer_to[cnt], 1);
1287 dquot_incr_space(transfer_to[cnt], space);
1288
1289 inode->i_dquot[cnt] = transfer_to[cnt];
1290 }
1291 ret = QUOTA_OK;
1292warn_put_all:
1293 spin_unlock(&dq_data_lock);
1294 /* Dirtify all the dquots - this can block when journalling */
1295 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1296 if (transfer_from[cnt])
1297 mark_dquot_dirty(transfer_from[cnt]);
1298 if (transfer_to[cnt])
1299 mark_dquot_dirty(transfer_to[cnt]);
1300 }
1301 flush_warnings(transfer_to, warntype);
1302
1303 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1304 if (ret == QUOTA_OK && transfer_from[cnt] != NODQUOT)
1305 dqput(transfer_from[cnt]);
1306 if (ret == NO_QUOTA && transfer_to[cnt] != NODQUOT)
1307 dqput(transfer_to[cnt]);
1308 }
1309 up_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1310 return ret;
1311}
1312
1313/*
1314 * Write info of quota file to disk
1315 */
1316int dquot_commit_info(struct super_block *sb, int type)
1317{
1318 int ret;
1319 struct quota_info *dqopt = sb_dqopt(sb);
1320
Ingo Molnard3be9152006-03-23 03:00:29 -08001321 mutex_lock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 ret = dqopt->ops[type]->write_file_info(sb, type);
Ingo Molnard3be9152006-03-23 03:00:29 -08001323 mutex_unlock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 return ret;
1325}
1326
1327/*
1328 * Definitions of diskquota operations.
1329 */
1330struct dquot_operations dquot_operations = {
1331 .initialize = dquot_initialize,
1332 .drop = dquot_drop,
1333 .alloc_space = dquot_alloc_space,
1334 .alloc_inode = dquot_alloc_inode,
1335 .free_space = dquot_free_space,
1336 .free_inode = dquot_free_inode,
1337 .transfer = dquot_transfer,
1338 .write_dquot = dquot_commit,
1339 .acquire_dquot = dquot_acquire,
1340 .release_dquot = dquot_release,
1341 .mark_dirty = dquot_mark_dquot_dirty,
1342 .write_info = dquot_commit_info
1343};
1344
1345static inline void set_enable_flags(struct quota_info *dqopt, int type)
1346{
1347 switch (type) {
1348 case USRQUOTA:
1349 dqopt->flags |= DQUOT_USR_ENABLED;
1350 break;
1351 case GRPQUOTA:
1352 dqopt->flags |= DQUOT_GRP_ENABLED;
1353 break;
1354 }
1355}
1356
1357static inline void reset_enable_flags(struct quota_info *dqopt, int type)
1358{
1359 switch (type) {
1360 case USRQUOTA:
1361 dqopt->flags &= ~DQUOT_USR_ENABLED;
1362 break;
1363 case GRPQUOTA:
1364 dqopt->flags &= ~DQUOT_GRP_ENABLED;
1365 break;
1366 }
1367}
1368
1369/*
1370 * Turn quota off on a device. type == -1 ==> quotaoff for all types (umount)
1371 */
1372int vfs_quota_off(struct super_block *sb, int type)
1373{
1374 int cnt;
1375 struct quota_info *dqopt = sb_dqopt(sb);
1376 struct inode *toputinode[MAXQUOTAS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 /* We need to serialize quota_off() for device */
Ingo Molnard3be9152006-03-23 03:00:29 -08001379 mutex_lock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1381 toputinode[cnt] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (type != -1 && cnt != type)
1383 continue;
1384 if (!sb_has_quota_enabled(sb, cnt))
1385 continue;
1386 reset_enable_flags(dqopt, cnt);
1387
1388 /* Note: these are blocking operations */
1389 drop_dquot_ref(sb, cnt);
1390 invalidate_dquots(sb, cnt);
1391 /*
1392 * Now all dquots should be invalidated, all writes done so we should be only
1393 * users of the info. No locks needed.
1394 */
1395 if (info_dirty(&dqopt->info[cnt]))
1396 sb->dq_op->write_info(sb, cnt);
1397 if (dqopt->ops[cnt]->free_file_info)
1398 dqopt->ops[cnt]->free_file_info(sb, cnt);
1399 put_quota_format(dqopt->info[cnt].dqi_format);
1400
1401 toputinode[cnt] = dqopt->files[cnt];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 dqopt->files[cnt] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 dqopt->info[cnt].dqi_flags = 0;
1404 dqopt->info[cnt].dqi_igrace = 0;
1405 dqopt->info[cnt].dqi_bgrace = 0;
1406 dqopt->ops[cnt] = NULL;
1407 }
Ingo Molnard3be9152006-03-23 03:00:29 -08001408 mutex_unlock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 /* Sync the superblock so that buffers with quota data are written to
Al Viro7b7b1ac2005-11-07 17:13:39 -05001410 * disk (and so userspace sees correct data afterwards). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if (sb->s_op->sync_fs)
1412 sb->s_op->sync_fs(sb, 1);
1413 sync_blockdev(sb->s_bdev);
1414 /* Now the quota files are just ordinary files and we can set the
1415 * inode flags back. Moreover we discard the pagecache so that
1416 * userspace sees the writes we did bypassing the pagecache. We
1417 * must also discard the blockdev buffers so that we see the
1418 * changes done by userspace on the next quotaon() */
1419 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1420 if (toputinode[cnt]) {
Ingo Molnard3be9152006-03-23 03:00:29 -08001421 mutex_lock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 /* If quota was reenabled in the meantime, we have
1423 * nothing to do */
1424 if (!sb_has_quota_enabled(sb, cnt)) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001425 mutex_lock(&toputinode[cnt]->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 toputinode[cnt]->i_flags &= ~(S_IMMUTABLE |
1427 S_NOATIME | S_NOQUOTA);
1428 truncate_inode_pages(&toputinode[cnt]->i_data, 0);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001429 mutex_unlock(&toputinode[cnt]->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 mark_inode_dirty(toputinode[cnt]);
1431 iput(toputinode[cnt]);
1432 }
Ingo Molnard3be9152006-03-23 03:00:29 -08001433 mutex_unlock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 }
1435 if (sb->s_bdev)
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001436 invalidate_bdev(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 return 0;
1438}
1439
1440/*
1441 * Turn quotas on on a device
1442 */
1443
1444/* Helper function when we already have the inode */
1445static int vfs_quota_on_inode(struct inode *inode, int type, int format_id)
1446{
1447 struct quota_format_type *fmt = find_quota_format(format_id);
1448 struct super_block *sb = inode->i_sb;
1449 struct quota_info *dqopt = sb_dqopt(sb);
1450 int error;
1451 int oldflags = -1;
1452
1453 if (!fmt)
1454 return -ESRCH;
1455 if (!S_ISREG(inode->i_mode)) {
1456 error = -EACCES;
1457 goto out_fmt;
1458 }
1459 if (IS_RDONLY(inode)) {
1460 error = -EROFS;
1461 goto out_fmt;
1462 }
1463 if (!sb->s_op->quota_write || !sb->s_op->quota_read) {
1464 error = -EINVAL;
1465 goto out_fmt;
1466 }
1467
1468 /* As we bypass the pagecache we must now flush the inode so that
1469 * we see all the changes from userspace... */
1470 write_inode_now(inode, 1);
1471 /* And now flush the block cache so that kernel sees the changes */
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001472 invalidate_bdev(sb->s_bdev);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001473 mutex_lock(&inode->i_mutex);
Ingo Molnard3be9152006-03-23 03:00:29 -08001474 mutex_lock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 if (sb_has_quota_enabled(sb, type)) {
1476 error = -EBUSY;
1477 goto out_lock;
1478 }
1479 /* We don't want quota and atime on quota files (deadlocks possible)
1480 * Also nobody should write to the file - we use special IO operations
1481 * which ignore the immutable bit. */
1482 down_write(&dqopt->dqptr_sem);
1483 oldflags = inode->i_flags & (S_NOATIME | S_IMMUTABLE | S_NOQUOTA);
1484 inode->i_flags |= S_NOQUOTA | S_NOATIME | S_IMMUTABLE;
1485 up_write(&dqopt->dqptr_sem);
Jan Kara31e7ad62005-04-16 15:25:46 -07001486 sb->dq_op->drop(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488 error = -EIO;
1489 dqopt->files[type] = igrab(inode);
1490 if (!dqopt->files[type])
1491 goto out_lock;
1492 error = -EINVAL;
1493 if (!fmt->qf_ops->check_quota_file(sb, type))
1494 goto out_file_init;
1495
1496 dqopt->ops[type] = fmt->qf_ops;
1497 dqopt->info[type].dqi_format = fmt;
1498 INIT_LIST_HEAD(&dqopt->info[type].dqi_dirty_list);
Ingo Molnard3be9152006-03-23 03:00:29 -08001499 mutex_lock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 if ((error = dqopt->ops[type]->read_file_info(sb, type)) < 0) {
Ingo Molnard3be9152006-03-23 03:00:29 -08001501 mutex_unlock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 goto out_file_init;
1503 }
Ingo Molnard3be9152006-03-23 03:00:29 -08001504 mutex_unlock(&dqopt->dqio_mutex);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001505 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 set_enable_flags(dqopt, type);
1507
1508 add_dquot_ref(sb, type);
Ingo Molnard3be9152006-03-23 03:00:29 -08001509 mutex_unlock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 return 0;
1512
1513out_file_init:
1514 dqopt->files[type] = NULL;
1515 iput(inode);
1516out_lock:
Ingo Molnard3be9152006-03-23 03:00:29 -08001517 mutex_unlock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 if (oldflags != -1) {
1519 down_write(&dqopt->dqptr_sem);
1520 /* Set the flags back (in the case of accidental quotaon()
1521 * on a wrong file we don't want to mess up the flags) */
1522 inode->i_flags &= ~(S_NOATIME | S_NOQUOTA | S_IMMUTABLE);
1523 inode->i_flags |= oldflags;
1524 up_write(&dqopt->dqptr_sem);
1525 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001526 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527out_fmt:
1528 put_quota_format(fmt);
1529
1530 return error;
1531}
1532
1533/* Actual function called from quotactl() */
1534int vfs_quota_on(struct super_block *sb, int type, int format_id, char *path)
1535{
1536 struct nameidata nd;
1537 int error;
1538
1539 error = path_lookup(path, LOOKUP_FOLLOW, &nd);
1540 if (error < 0)
1541 return error;
1542 error = security_quota_on(nd.dentry);
1543 if (error)
1544 goto out_path;
1545 /* Quota file not on the same filesystem? */
1546 if (nd.mnt->mnt_sb != sb)
1547 error = -EXDEV;
Al Viro7b7b1ac2005-11-07 17:13:39 -05001548 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 error = vfs_quota_on_inode(nd.dentry->d_inode, type, format_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550out_path:
1551 path_release(&nd);
1552 return error;
1553}
1554
1555/*
1556 * This function is used when filesystem needs to initialize quotas
1557 * during mount time.
1558 */
Christoph Hellwig84de8562005-06-23 00:09:16 -07001559int vfs_quota_on_mount(struct super_block *sb, char *qf_name,
1560 int format_id, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561{
Christoph Hellwig84de8562005-06-23 00:09:16 -07001562 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 int error;
1564
Christoph Hellwig2fa389c2005-06-23 00:09:16 -07001565 dentry = lookup_one_len(qf_name, sb->s_root, strlen(qf_name));
Christoph Hellwig84de8562005-06-23 00:09:16 -07001566 if (IS_ERR(dentry))
1567 return PTR_ERR(dentry);
1568
Jan Kara154f4842005-11-28 13:44:14 -08001569 if (!dentry->d_inode) {
1570 error = -ENOENT;
1571 goto out;
1572 }
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 error = security_quota_on(dentry);
Christoph Hellwig84de8562005-06-23 00:09:16 -07001575 if (!error)
1576 error = vfs_quota_on_inode(dentry->d_inode, type, format_id);
1577
Jan Kara154f4842005-11-28 13:44:14 -08001578out:
Christoph Hellwig84de8562005-06-23 00:09:16 -07001579 dput(dentry);
1580 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
1583/* Generic routine for getting common part of quota structure */
1584static void do_get_dqblk(struct dquot *dquot, struct if_dqblk *di)
1585{
1586 struct mem_dqblk *dm = &dquot->dq_dqb;
1587
1588 spin_lock(&dq_data_lock);
1589 di->dqb_bhardlimit = dm->dqb_bhardlimit;
1590 di->dqb_bsoftlimit = dm->dqb_bsoftlimit;
1591 di->dqb_curspace = dm->dqb_curspace;
1592 di->dqb_ihardlimit = dm->dqb_ihardlimit;
1593 di->dqb_isoftlimit = dm->dqb_isoftlimit;
1594 di->dqb_curinodes = dm->dqb_curinodes;
1595 di->dqb_btime = dm->dqb_btime;
1596 di->dqb_itime = dm->dqb_itime;
1597 di->dqb_valid = QIF_ALL;
1598 spin_unlock(&dq_data_lock);
1599}
1600
1601int vfs_get_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di)
1602{
1603 struct dquot *dquot;
1604
Ingo Molnard3be9152006-03-23 03:00:29 -08001605 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (!(dquot = dqget(sb, id, type))) {
Ingo Molnard3be9152006-03-23 03:00:29 -08001607 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return -ESRCH;
1609 }
1610 do_get_dqblk(dquot, di);
1611 dqput(dquot);
Ingo Molnard3be9152006-03-23 03:00:29 -08001612 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 return 0;
1614}
1615
1616/* Generic routine for setting common part of quota structure */
1617static void do_set_dqblk(struct dquot *dquot, struct if_dqblk *di)
1618{
1619 struct mem_dqblk *dm = &dquot->dq_dqb;
1620 int check_blim = 0, check_ilim = 0;
1621
1622 spin_lock(&dq_data_lock);
1623 if (di->dqb_valid & QIF_SPACE) {
1624 dm->dqb_curspace = di->dqb_curspace;
1625 check_blim = 1;
1626 }
1627 if (di->dqb_valid & QIF_BLIMITS) {
1628 dm->dqb_bsoftlimit = di->dqb_bsoftlimit;
1629 dm->dqb_bhardlimit = di->dqb_bhardlimit;
1630 check_blim = 1;
1631 }
1632 if (di->dqb_valid & QIF_INODES) {
1633 dm->dqb_curinodes = di->dqb_curinodes;
1634 check_ilim = 1;
1635 }
1636 if (di->dqb_valid & QIF_ILIMITS) {
1637 dm->dqb_isoftlimit = di->dqb_isoftlimit;
1638 dm->dqb_ihardlimit = di->dqb_ihardlimit;
1639 check_ilim = 1;
1640 }
1641 if (di->dqb_valid & QIF_BTIME)
1642 dm->dqb_btime = di->dqb_btime;
1643 if (di->dqb_valid & QIF_ITIME)
1644 dm->dqb_itime = di->dqb_itime;
1645
1646 if (check_blim) {
1647 if (!dm->dqb_bsoftlimit || toqb(dm->dqb_curspace) < dm->dqb_bsoftlimit) {
1648 dm->dqb_btime = 0;
1649 clear_bit(DQ_BLKS_B, &dquot->dq_flags);
1650 }
1651 else if (!(di->dqb_valid & QIF_BTIME)) /* Set grace only if user hasn't provided his own... */
1652 dm->dqb_btime = get_seconds() + sb_dqopt(dquot->dq_sb)->info[dquot->dq_type].dqi_bgrace;
1653 }
1654 if (check_ilim) {
1655 if (!dm->dqb_isoftlimit || dm->dqb_curinodes < dm->dqb_isoftlimit) {
1656 dm->dqb_itime = 0;
1657 clear_bit(DQ_INODES_B, &dquot->dq_flags);
1658 }
1659 else if (!(di->dqb_valid & QIF_ITIME)) /* Set grace only if user hasn't provided his own... */
1660 dm->dqb_itime = get_seconds() + sb_dqopt(dquot->dq_sb)->info[dquot->dq_type].dqi_igrace;
1661 }
1662 if (dm->dqb_bhardlimit || dm->dqb_bsoftlimit || dm->dqb_ihardlimit || dm->dqb_isoftlimit)
1663 clear_bit(DQ_FAKE_B, &dquot->dq_flags);
1664 else
1665 set_bit(DQ_FAKE_B, &dquot->dq_flags);
1666 spin_unlock(&dq_data_lock);
1667 mark_dquot_dirty(dquot);
1668}
1669
1670int vfs_set_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di)
1671{
1672 struct dquot *dquot;
1673
Ingo Molnard3be9152006-03-23 03:00:29 -08001674 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 if (!(dquot = dqget(sb, id, type))) {
Ingo Molnard3be9152006-03-23 03:00:29 -08001676 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 return -ESRCH;
1678 }
1679 do_set_dqblk(dquot, di);
1680 dqput(dquot);
Ingo Molnard3be9152006-03-23 03:00:29 -08001681 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return 0;
1683}
1684
1685/* Generic routine for getting common part of quota file information */
1686int vfs_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii)
1687{
1688 struct mem_dqinfo *mi;
1689
Ingo Molnard3be9152006-03-23 03:00:29 -08001690 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (!sb_has_quota_enabled(sb, type)) {
Ingo Molnard3be9152006-03-23 03:00:29 -08001692 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return -ESRCH;
1694 }
1695 mi = sb_dqopt(sb)->info + type;
1696 spin_lock(&dq_data_lock);
1697 ii->dqi_bgrace = mi->dqi_bgrace;
1698 ii->dqi_igrace = mi->dqi_igrace;
1699 ii->dqi_flags = mi->dqi_flags & DQF_MASK;
1700 ii->dqi_valid = IIF_ALL;
1701 spin_unlock(&dq_data_lock);
Ingo Molnard3be9152006-03-23 03:00:29 -08001702 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 return 0;
1704}
1705
1706/* Generic routine for setting common part of quota file information */
1707int vfs_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii)
1708{
1709 struct mem_dqinfo *mi;
1710
Ingo Molnard3be9152006-03-23 03:00:29 -08001711 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 if (!sb_has_quota_enabled(sb, type)) {
Ingo Molnard3be9152006-03-23 03:00:29 -08001713 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 return -ESRCH;
1715 }
1716 mi = sb_dqopt(sb)->info + type;
1717 spin_lock(&dq_data_lock);
1718 if (ii->dqi_valid & IIF_BGRACE)
1719 mi->dqi_bgrace = ii->dqi_bgrace;
1720 if (ii->dqi_valid & IIF_IGRACE)
1721 mi->dqi_igrace = ii->dqi_igrace;
1722 if (ii->dqi_valid & IIF_FLAGS)
1723 mi->dqi_flags = (mi->dqi_flags & ~DQF_MASK) | (ii->dqi_flags & DQF_MASK);
1724 spin_unlock(&dq_data_lock);
1725 mark_info_dirty(sb, type);
1726 /* Force write to disk */
1727 sb->dq_op->write_info(sb, type);
Ingo Molnard3be9152006-03-23 03:00:29 -08001728 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 return 0;
1730}
1731
1732struct quotactl_ops vfs_quotactl_ops = {
1733 .quota_on = vfs_quota_on,
1734 .quota_off = vfs_quota_off,
1735 .quota_sync = vfs_quota_sync,
1736 .get_info = vfs_get_dqinfo,
1737 .set_info = vfs_set_dqinfo,
1738 .get_dqblk = vfs_get_dqblk,
1739 .set_dqblk = vfs_set_dqblk
1740};
1741
1742static ctl_table fs_dqstats_table[] = {
1743 {
1744 .ctl_name = FS_DQ_LOOKUPS,
1745 .procname = "lookups",
1746 .data = &dqstats.lookups,
1747 .maxlen = sizeof(int),
1748 .mode = 0444,
1749 .proc_handler = &proc_dointvec,
1750 },
1751 {
1752 .ctl_name = FS_DQ_DROPS,
1753 .procname = "drops",
1754 .data = &dqstats.drops,
1755 .maxlen = sizeof(int),
1756 .mode = 0444,
1757 .proc_handler = &proc_dointvec,
1758 },
1759 {
1760 .ctl_name = FS_DQ_READS,
1761 .procname = "reads",
1762 .data = &dqstats.reads,
1763 .maxlen = sizeof(int),
1764 .mode = 0444,
1765 .proc_handler = &proc_dointvec,
1766 },
1767 {
1768 .ctl_name = FS_DQ_WRITES,
1769 .procname = "writes",
1770 .data = &dqstats.writes,
1771 .maxlen = sizeof(int),
1772 .mode = 0444,
1773 .proc_handler = &proc_dointvec,
1774 },
1775 {
1776 .ctl_name = FS_DQ_CACHE_HITS,
1777 .procname = "cache_hits",
1778 .data = &dqstats.cache_hits,
1779 .maxlen = sizeof(int),
1780 .mode = 0444,
1781 .proc_handler = &proc_dointvec,
1782 },
1783 {
1784 .ctl_name = FS_DQ_ALLOCATED,
1785 .procname = "allocated_dquots",
1786 .data = &dqstats.allocated_dquots,
1787 .maxlen = sizeof(int),
1788 .mode = 0444,
1789 .proc_handler = &proc_dointvec,
1790 },
1791 {
1792 .ctl_name = FS_DQ_FREE,
1793 .procname = "free_dquots",
1794 .data = &dqstats.free_dquots,
1795 .maxlen = sizeof(int),
1796 .mode = 0444,
1797 .proc_handler = &proc_dointvec,
1798 },
1799 {
1800 .ctl_name = FS_DQ_SYNCS,
1801 .procname = "syncs",
1802 .data = &dqstats.syncs,
1803 .maxlen = sizeof(int),
1804 .mode = 0444,
1805 .proc_handler = &proc_dointvec,
1806 },
1807 {
1808 .ctl_name = FS_DQ_WARNINGS,
1809 .procname = "warnings",
1810 .data = &flag_print_warnings,
1811 .maxlen = sizeof(int),
1812 .mode = 0644,
1813 .proc_handler = &proc_dointvec,
1814 },
1815 { .ctl_name = 0 },
1816};
1817
1818static ctl_table fs_table[] = {
1819 {
1820 .ctl_name = FS_DQSTATS,
1821 .procname = "quota",
1822 .mode = 0555,
1823 .child = fs_dqstats_table,
1824 },
1825 { .ctl_name = 0 },
1826};
1827
1828static ctl_table sys_table[] = {
1829 {
1830 .ctl_name = CTL_FS,
1831 .procname = "fs",
1832 .mode = 0555,
1833 .child = fs_table,
1834 },
1835 { .ctl_name = 0 },
1836};
1837
1838static int __init dquot_init(void)
1839{
1840 int i;
1841 unsigned long nr_hash, order;
1842
1843 printk(KERN_NOTICE "VFS: Disk quotas %s\n", __DQUOT_VERSION__);
1844
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08001845 register_sysctl_table(sys_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
1847 dquot_cachep = kmem_cache_create("dquot",
1848 sizeof(struct dquot), sizeof(unsigned long) * 4,
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001849 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1850 SLAB_MEM_SPREAD|SLAB_PANIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 NULL, NULL);
1852
1853 order = 0;
1854 dquot_hash = (struct hlist_head *)__get_free_pages(GFP_ATOMIC, order);
1855 if (!dquot_hash)
1856 panic("Cannot create dquot hash table");
1857
1858 /* Find power-of-two hlist_heads which can fit into allocation */
1859 nr_hash = (1UL << order) * PAGE_SIZE / sizeof(struct hlist_head);
1860 dq_hash_bits = 0;
1861 do {
1862 dq_hash_bits++;
1863 } while (nr_hash >> dq_hash_bits);
1864 dq_hash_bits--;
1865
1866 nr_hash = 1UL << dq_hash_bits;
1867 dq_hash_mask = nr_hash - 1;
1868 for (i = 0; i < nr_hash; i++)
1869 INIT_HLIST_HEAD(dquot_hash + i);
1870
1871 printk("Dquot-cache hash table entries: %ld (order %ld, %ld bytes)\n",
1872 nr_hash, order, (PAGE_SIZE << order));
1873
1874 set_shrinker(DEFAULT_SEEKS, shrink_dqcache_memory);
1875
1876 return 0;
1877}
1878module_init(dquot_init);
1879
1880EXPORT_SYMBOL(register_quota_format);
1881EXPORT_SYMBOL(unregister_quota_format);
1882EXPORT_SYMBOL(dqstats);
1883EXPORT_SYMBOL(dq_data_lock);
1884EXPORT_SYMBOL(vfs_quota_on);
1885EXPORT_SYMBOL(vfs_quota_on_mount);
1886EXPORT_SYMBOL(vfs_quota_off);
1887EXPORT_SYMBOL(vfs_quota_sync);
1888EXPORT_SYMBOL(vfs_get_dqinfo);
1889EXPORT_SYMBOL(vfs_set_dqinfo);
1890EXPORT_SYMBOL(vfs_get_dqblk);
1891EXPORT_SYMBOL(vfs_set_dqblk);
1892EXPORT_SYMBOL(dquot_commit);
1893EXPORT_SYMBOL(dquot_commit_info);
1894EXPORT_SYMBOL(dquot_acquire);
1895EXPORT_SYMBOL(dquot_release);
1896EXPORT_SYMBOL(dquot_mark_dquot_dirty);
1897EXPORT_SYMBOL(dquot_initialize);
1898EXPORT_SYMBOL(dquot_drop);
1899EXPORT_SYMBOL(dquot_alloc_space);
1900EXPORT_SYMBOL(dquot_alloc_inode);
1901EXPORT_SYMBOL(dquot_free_space);
1902EXPORT_SYMBOL(dquot_free_inode);
1903EXPORT_SYMBOL(dquot_transfer);