blob: ad88cf6fcbaf7b3fc6d6a95db45c49fe1ddbdb21 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <linux/init.h>
73#include <linux/module.h>
74#include <linux/proc_fs.h>
75#include <linux/security.h>
76#include <linux/kmod.h>
77#include <linux/namei.h>
78#include <linux/buffer_head.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080079#include <linux/capability.h>
Adrian Bunkbe586ba2005-11-07 00:59:35 -080080#include <linux/quotaops.h>
Christoph Hellwigfb58b732007-02-12 00:51:57 -080081#include <linux/writeback.h> /* for inode_lock, oddly enough.. */
Jan Kara8e893462007-10-16 23:29:31 -070082#ifdef CONFIG_QUOTA_NETLINK_INTERFACE
83#include <net/netlink.h>
84#include <net/genetlink.h>
85#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87#include <asm/uaccess.h>
88
89#define __DQUOT_PARANOIA
90
91/*
92 * There are two quota SMP locks. dq_list_lock protects all lists with quotas
93 * and quota formats and also dqstats structure containing statistics about the
94 * lists. dq_data_lock protects data from dq_dqb and also mem_dqinfo structures
95 * and also guards consistency of dquot->dq_dqb with inode->i_blocks, i_bytes.
96 * i_blocks and i_bytes updates itself are guarded by i_lock acquired directly
97 * in inode_add_bytes() and inode_sub_bytes().
98 *
99 * The spinlock ordering is hence: dq_data_lock > dq_list_lock > i_lock
100 *
101 * Note that some things (eg. sb pointer, type, id) doesn't change during
102 * the life of the dquot structure and so needn't to be protected by a lock
103 *
104 * Any operation working on dquots via inode pointers must hold dqptr_sem. If
105 * operation is just reading pointers from inode (or not using them at all) the
106 * read lock is enough. If pointers are altered function must hold write lock
107 * (these locking rules also apply for S_NOQUOTA flag in the inode - note that
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800108 * for altering the flag i_mutex is also needed). If operation is holding
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * reference to dquot in other way (e.g. quotactl ops) it must be guarded by
Ingo Molnard3be9152006-03-23 03:00:29 -0800110 * dqonoff_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * This locking assures that:
112 * a) update/access to dquot pointers in inode is serialized
113 * b) everyone is guarded against invalidate_dquots()
114 *
Ingo Molnard3be9152006-03-23 03:00:29 -0800115 * Each dquot has its dq_lock mutex. Locked dquots might not be referenced
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 * from inodes (dquot_alloc_space() and such don't check the dq_lock).
117 * Currently dquot is locked only when it is being read to memory (or space for
118 * it is being allocated) on the first dqget() and when it is being released on
119 * the last dqput(). The allocation and release oparations are serialized by
120 * the dq_lock and by checking the use count in dquot_release(). Write
121 * operations on dquots don't hold dq_lock as they copy data under dq_data_lock
122 * spinlock to internal buffers before writing.
123 *
124 * Lock ordering (including related VFS locks) is the following:
Ingo Molnard3be9152006-03-23 03:00:29 -0800125 * i_mutex > dqonoff_sem > journal_lock > dqptr_sem > dquot->dq_lock >
126 * dqio_mutex
127 * i_mutex on quota files is special (it's below dqio_mutex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 */
129
130static DEFINE_SPINLOCK(dq_list_lock);
131DEFINE_SPINLOCK(dq_data_lock);
132
133static char *quotatypes[] = INITQFNAMES;
134static struct quota_format_type *quota_formats; /* List of registered formats */
135static struct quota_module_name module_names[] = INIT_QUOTA_MODULE_NAMES;
136
137/* SLAB cache for dquot structures */
Christoph Lametere18b8902006-12-06 20:33:20 -0800138static struct kmem_cache *dquot_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140int register_quota_format(struct quota_format_type *fmt)
141{
142 spin_lock(&dq_list_lock);
143 fmt->qf_next = quota_formats;
144 quota_formats = fmt;
145 spin_unlock(&dq_list_lock);
146 return 0;
147}
148
149void unregister_quota_format(struct quota_format_type *fmt)
150{
151 struct quota_format_type **actqf;
152
153 spin_lock(&dq_list_lock);
154 for (actqf = &quota_formats; *actqf && *actqf != fmt; actqf = &(*actqf)->qf_next);
155 if (*actqf)
156 *actqf = (*actqf)->qf_next;
157 spin_unlock(&dq_list_lock);
158}
159
160static struct quota_format_type *find_quota_format(int id)
161{
162 struct quota_format_type *actqf;
163
164 spin_lock(&dq_list_lock);
165 for (actqf = quota_formats; actqf && actqf->qf_fmt_id != id; actqf = actqf->qf_next);
166 if (!actqf || !try_module_get(actqf->qf_owner)) {
167 int qm;
168
169 spin_unlock(&dq_list_lock);
170
171 for (qm = 0; module_names[qm].qm_fmt_id && module_names[qm].qm_fmt_id != id; qm++);
172 if (!module_names[qm].qm_fmt_id || request_module(module_names[qm].qm_mod_name))
173 return NULL;
174
175 spin_lock(&dq_list_lock);
176 for (actqf = quota_formats; actqf && actqf->qf_fmt_id != id; actqf = actqf->qf_next);
177 if (actqf && !try_module_get(actqf->qf_owner))
178 actqf = NULL;
179 }
180 spin_unlock(&dq_list_lock);
181 return actqf;
182}
183
184static void put_quota_format(struct quota_format_type *fmt)
185{
186 module_put(fmt->qf_owner);
187}
188
189/*
190 * Dquot List Management:
191 * The quota code uses three lists for dquot management: the inuse_list,
192 * free_dquots, and dquot_hash[] array. A single dquot structure may be
193 * on all three lists, depending on its current state.
194 *
195 * All dquots are placed to the end of inuse_list when first created, and this
196 * list is used for invalidate operation, which must look at every dquot.
197 *
198 * Unused dquots (dq_count == 0) are added to the free_dquots list when freed,
199 * and this list is searched whenever we need an available dquot. Dquots are
200 * removed from the list as soon as they are used again, and
201 * dqstats.free_dquots gives the number of dquots on the list. When
202 * dquot is invalidated it's completely released from memory.
203 *
204 * Dquots with a specific identity (device, type and id) are placed on
205 * one of the dquot_hash[] hash chains. The provides an efficient search
206 * mechanism to locate a specific dquot.
207 */
208
209static LIST_HEAD(inuse_list);
210static LIST_HEAD(free_dquots);
211static unsigned int dq_hash_bits, dq_hash_mask;
212static struct hlist_head *dquot_hash;
213
214struct dqstats dqstats;
215
216static void dqput(struct dquot *dquot);
217
218static inline unsigned int
219hashfn(const struct super_block *sb, unsigned int id, int type)
220{
221 unsigned long tmp;
222
223 tmp = (((unsigned long)sb>>L1_CACHE_SHIFT) ^ id) * (MAXQUOTAS - type);
224 return (tmp + (tmp >> dq_hash_bits)) & dq_hash_mask;
225}
226
227/*
228 * Following list functions expect dq_list_lock to be held
229 */
230static inline void insert_dquot_hash(struct dquot *dquot)
231{
232 struct hlist_head *head = dquot_hash + hashfn(dquot->dq_sb, dquot->dq_id, dquot->dq_type);
233 hlist_add_head(&dquot->dq_hash, head);
234}
235
236static inline void remove_dquot_hash(struct dquot *dquot)
237{
238 hlist_del_init(&dquot->dq_hash);
239}
240
241static inline struct dquot *find_dquot(unsigned int hashent, struct super_block *sb, unsigned int id, int type)
242{
243 struct hlist_node *node;
244 struct dquot *dquot;
245
246 hlist_for_each (node, dquot_hash+hashent) {
247 dquot = hlist_entry(node, struct dquot, dq_hash);
248 if (dquot->dq_sb == sb && dquot->dq_id == id && dquot->dq_type == type)
249 return dquot;
250 }
251 return NODQUOT;
252}
253
254/* Add a dquot to the tail of the free list */
255static inline void put_dquot_last(struct dquot *dquot)
256{
Akinobu Mita8e130592006-06-26 00:24:37 -0700257 list_add_tail(&dquot->dq_free, &free_dquots);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 dqstats.free_dquots++;
259}
260
261static inline void remove_free_dquot(struct dquot *dquot)
262{
263 if (list_empty(&dquot->dq_free))
264 return;
265 list_del_init(&dquot->dq_free);
266 dqstats.free_dquots--;
267}
268
269static inline void put_inuse(struct dquot *dquot)
270{
271 /* We add to the back of inuse list so we don't have to restart
272 * when traversing this list and we block */
Akinobu Mita8e130592006-06-26 00:24:37 -0700273 list_add_tail(&dquot->dq_inuse, &inuse_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 dqstats.allocated_dquots++;
275}
276
277static inline void remove_inuse(struct dquot *dquot)
278{
279 dqstats.allocated_dquots--;
280 list_del(&dquot->dq_inuse);
281}
282/*
283 * End of list functions needing dq_list_lock
284 */
285
286static void wait_on_dquot(struct dquot *dquot)
287{
Ingo Molnard3be9152006-03-23 03:00:29 -0800288 mutex_lock(&dquot->dq_lock);
289 mutex_unlock(&dquot->dq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Jan Kara03f6e922008-04-28 02:14:32 -0700292static inline int dquot_dirty(struct dquot *dquot)
293{
294 return test_bit(DQ_MOD_B, &dquot->dq_flags);
295}
296
297static inline int mark_dquot_dirty(struct dquot *dquot)
298{
299 return dquot->dq_sb->dq_op->mark_dirty(dquot);
300}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302int dquot_mark_dquot_dirty(struct dquot *dquot)
303{
304 spin_lock(&dq_list_lock);
305 if (!test_and_set_bit(DQ_MOD_B, &dquot->dq_flags))
306 list_add(&dquot->dq_dirty, &sb_dqopt(dquot->dq_sb)->
307 info[dquot->dq_type].dqi_dirty_list);
308 spin_unlock(&dq_list_lock);
309 return 0;
310}
311
312/* This function needs dq_list_lock */
313static inline int clear_dquot_dirty(struct dquot *dquot)
314{
315 if (!test_and_clear_bit(DQ_MOD_B, &dquot->dq_flags))
316 return 0;
317 list_del_init(&dquot->dq_dirty);
318 return 1;
319}
320
321void mark_info_dirty(struct super_block *sb, int type)
322{
323 set_bit(DQF_INFO_DIRTY_B, &sb_dqopt(sb)->info[type].dqi_flags);
324}
325EXPORT_SYMBOL(mark_info_dirty);
326
327/*
328 * Read dquot from disk and alloc space for it
329 */
330
331int dquot_acquire(struct dquot *dquot)
332{
333 int ret = 0, ret2 = 0;
334 struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
335
Ingo Molnard3be9152006-03-23 03:00:29 -0800336 mutex_lock(&dquot->dq_lock);
337 mutex_lock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (!test_bit(DQ_READ_B, &dquot->dq_flags))
339 ret = dqopt->ops[dquot->dq_type]->read_dqblk(dquot);
340 if (ret < 0)
341 goto out_iolock;
342 set_bit(DQ_READ_B, &dquot->dq_flags);
343 /* Instantiate dquot if needed */
344 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags) && !dquot->dq_off) {
345 ret = dqopt->ops[dquot->dq_type]->commit_dqblk(dquot);
346 /* Write the info if needed */
347 if (info_dirty(&dqopt->info[dquot->dq_type]))
348 ret2 = dqopt->ops[dquot->dq_type]->write_file_info(dquot->dq_sb, dquot->dq_type);
349 if (ret < 0)
350 goto out_iolock;
351 if (ret2 < 0) {
352 ret = ret2;
353 goto out_iolock;
354 }
355 }
356 set_bit(DQ_ACTIVE_B, &dquot->dq_flags);
357out_iolock:
Ingo Molnard3be9152006-03-23 03:00:29 -0800358 mutex_unlock(&dqopt->dqio_mutex);
359 mutex_unlock(&dquot->dq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return ret;
361}
362
363/*
364 * Write dquot to disk
365 */
366int dquot_commit(struct dquot *dquot)
367{
368 int ret = 0, ret2 = 0;
369 struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
370
Ingo Molnard3be9152006-03-23 03:00:29 -0800371 mutex_lock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 spin_lock(&dq_list_lock);
373 if (!clear_dquot_dirty(dquot)) {
374 spin_unlock(&dq_list_lock);
375 goto out_sem;
376 }
377 spin_unlock(&dq_list_lock);
378 /* Inactive dquot can be only if there was error during read/init
379 * => we have better not writing it */
380 if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) {
381 ret = dqopt->ops[dquot->dq_type]->commit_dqblk(dquot);
382 if (info_dirty(&dqopt->info[dquot->dq_type]))
383 ret2 = dqopt->ops[dquot->dq_type]->write_file_info(dquot->dq_sb, dquot->dq_type);
384 if (ret >= 0)
385 ret = ret2;
386 }
387out_sem:
Ingo Molnard3be9152006-03-23 03:00:29 -0800388 mutex_unlock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return ret;
390}
391
392/*
393 * Release dquot
394 */
395int dquot_release(struct dquot *dquot)
396{
397 int ret = 0, ret2 = 0;
398 struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
399
Ingo Molnard3be9152006-03-23 03:00:29 -0800400 mutex_lock(&dquot->dq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /* Check whether we are not racing with some other dqget() */
402 if (atomic_read(&dquot->dq_count) > 1)
403 goto out_dqlock;
Ingo Molnard3be9152006-03-23 03:00:29 -0800404 mutex_lock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (dqopt->ops[dquot->dq_type]->release_dqblk) {
406 ret = dqopt->ops[dquot->dq_type]->release_dqblk(dquot);
407 /* Write the info */
408 if (info_dirty(&dqopt->info[dquot->dq_type]))
409 ret2 = dqopt->ops[dquot->dq_type]->write_file_info(dquot->dq_sb, dquot->dq_type);
410 if (ret >= 0)
411 ret = ret2;
412 }
413 clear_bit(DQ_ACTIVE_B, &dquot->dq_flags);
Ingo Molnard3be9152006-03-23 03:00:29 -0800414 mutex_unlock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415out_dqlock:
Ingo Molnard3be9152006-03-23 03:00:29 -0800416 mutex_unlock(&dquot->dq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return ret;
418}
419
420/* Invalidate all dquots on the list. Note that this function is called after
421 * quota is disabled and pointers from inodes removed so there cannot be new
Jan Kara6362e4d2006-03-23 03:00:17 -0800422 * quota users. There can still be some users of quotas due to inodes being
423 * just deleted or pruned by prune_icache() (those are not attached to any
424 * list). We have to wait for such users.
425 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426static void invalidate_dquots(struct super_block *sb, int type)
427{
Domen Puncerc33ed272005-06-25 14:59:36 -0700428 struct dquot *dquot, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Jan Kara6362e4d2006-03-23 03:00:17 -0800430restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 spin_lock(&dq_list_lock);
Domen Puncerc33ed272005-06-25 14:59:36 -0700432 list_for_each_entry_safe(dquot, tmp, &inuse_list, dq_inuse) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (dquot->dq_sb != sb)
434 continue;
435 if (dquot->dq_type != type)
436 continue;
Jan Kara6362e4d2006-03-23 03:00:17 -0800437 /* Wait for dquot users */
438 if (atomic_read(&dquot->dq_count)) {
439 DEFINE_WAIT(wait);
440
441 atomic_inc(&dquot->dq_count);
442 prepare_to_wait(&dquot->dq_wait_unused, &wait,
443 TASK_UNINTERRUPTIBLE);
444 spin_unlock(&dq_list_lock);
445 /* Once dqput() wakes us up, we know it's time to free
446 * the dquot.
447 * IMPORTANT: we rely on the fact that there is always
448 * at most one process waiting for dquot to free.
449 * Otherwise dq_count would be > 1 and we would never
450 * wake up.
451 */
452 if (atomic_read(&dquot->dq_count) > 1)
453 schedule();
454 finish_wait(&dquot->dq_wait_unused, &wait);
455 dqput(dquot);
456 /* At this moment dquot() need not exist (it could be
457 * reclaimed by prune_dqcache(). Hence we must
458 * restart. */
459 goto restart;
460 }
461 /*
462 * Quota now has no users and it has been written on last
463 * dqput()
464 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 remove_dquot_hash(dquot);
466 remove_free_dquot(dquot);
467 remove_inuse(dquot);
468 kmem_cache_free(dquot_cachep, dquot);
469 }
470 spin_unlock(&dq_list_lock);
471}
472
473int vfs_quota_sync(struct super_block *sb, int type)
474{
475 struct list_head *dirty;
476 struct dquot *dquot;
477 struct quota_info *dqopt = sb_dqopt(sb);
478 int cnt;
479
Ingo Molnard3be9152006-03-23 03:00:29 -0800480 mutex_lock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
482 if (type != -1 && cnt != type)
483 continue;
484 if (!sb_has_quota_enabled(sb, cnt))
485 continue;
486 spin_lock(&dq_list_lock);
487 dirty = &dqopt->info[cnt].dqi_dirty_list;
488 while (!list_empty(dirty)) {
Pavel Emelianovb5e61812007-05-08 00:30:19 -0700489 dquot = list_first_entry(dirty, struct dquot, dq_dirty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 /* Dirty and inactive can be only bad dquot... */
491 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) {
492 clear_dquot_dirty(dquot);
493 continue;
494 }
495 /* Now we have active dquot from which someone is
496 * holding reference so we can safely just increase
497 * use count */
498 atomic_inc(&dquot->dq_count);
499 dqstats.lookups++;
500 spin_unlock(&dq_list_lock);
501 sb->dq_op->write_dquot(dquot);
502 dqput(dquot);
503 spin_lock(&dq_list_lock);
504 }
505 spin_unlock(&dq_list_lock);
506 }
507
508 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
509 if ((cnt == type || type == -1) && sb_has_quota_enabled(sb, cnt)
510 && info_dirty(&dqopt->info[cnt]))
511 sb->dq_op->write_info(sb, cnt);
512 spin_lock(&dq_list_lock);
513 dqstats.syncs++;
514 spin_unlock(&dq_list_lock);
Ingo Molnard3be9152006-03-23 03:00:29 -0800515 mutex_unlock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 return 0;
518}
519
520/* Free unused dquots from cache */
521static void prune_dqcache(int count)
522{
523 struct list_head *head;
524 struct dquot *dquot;
525
526 head = free_dquots.prev;
527 while (head != &free_dquots && count) {
528 dquot = list_entry(head, struct dquot, dq_free);
529 remove_dquot_hash(dquot);
530 remove_free_dquot(dquot);
531 remove_inuse(dquot);
532 kmem_cache_free(dquot_cachep, dquot);
533 count--;
534 head = free_dquots.prev;
535 }
536}
537
538/*
539 * This is called from kswapd when we think we need some
540 * more memory
541 */
542
Al Viro27496a82005-10-21 03:20:48 -0400543static int shrink_dqcache_memory(int nr, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
545 if (nr) {
546 spin_lock(&dq_list_lock);
547 prune_dqcache(nr);
548 spin_unlock(&dq_list_lock);
549 }
550 return (dqstats.free_dquots / 100) * sysctl_vfs_cache_pressure;
551}
552
Rusty Russell8e1f9362007-07-17 04:03:17 -0700553static struct shrinker dqcache_shrinker = {
554 .shrink = shrink_dqcache_memory,
555 .seeks = DEFAULT_SEEKS,
556};
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558/*
559 * Put reference to dquot
560 * NOTE: If you change this function please check whether dqput_blocks() works right...
Ingo Molnard3be9152006-03-23 03:00:29 -0800561 * MUST be called with either dqptr_sem or dqonoff_mutex held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 */
563static void dqput(struct dquot *dquot)
564{
Jan Karab48d3802008-07-25 01:46:49 -0700565 int ret;
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 if (!dquot)
568 return;
569#ifdef __DQUOT_PARANOIA
570 if (!atomic_read(&dquot->dq_count)) {
571 printk("VFS: dqput: trying to free free dquot\n");
572 printk("VFS: device %s, dquot of %s %d\n",
573 dquot->dq_sb->s_id,
574 quotatypes[dquot->dq_type],
575 dquot->dq_id);
576 BUG();
577 }
578#endif
579
580 spin_lock(&dq_list_lock);
581 dqstats.drops++;
582 spin_unlock(&dq_list_lock);
583we_slept:
584 spin_lock(&dq_list_lock);
585 if (atomic_read(&dquot->dq_count) > 1) {
586 /* We have more than one user... nothing to do */
587 atomic_dec(&dquot->dq_count);
Jan Kara6362e4d2006-03-23 03:00:17 -0800588 /* Releasing dquot during quotaoff phase? */
589 if (!sb_has_quota_enabled(dquot->dq_sb, dquot->dq_type) &&
590 atomic_read(&dquot->dq_count) == 1)
591 wake_up(&dquot->dq_wait_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 spin_unlock(&dq_list_lock);
593 return;
594 }
595 /* Need to release dquot? */
596 if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags) && dquot_dirty(dquot)) {
597 spin_unlock(&dq_list_lock);
598 /* Commit dquot before releasing */
Jan Karab48d3802008-07-25 01:46:49 -0700599 ret = dquot->dq_sb->dq_op->write_dquot(dquot);
600 if (ret < 0) {
601 printk(KERN_ERR "VFS: cannot write quota structure on "
602 "device %s (error %d). Quota may get out of "
603 "sync!\n", dquot->dq_sb->s_id, ret);
604 /*
605 * We clear dirty bit anyway, so that we avoid
606 * infinite loop here
607 */
608 spin_lock(&dq_list_lock);
609 clear_dquot_dirty(dquot);
610 spin_unlock(&dq_list_lock);
611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 goto we_slept;
613 }
614 /* Clear flag in case dquot was inactive (something bad happened) */
615 clear_dquot_dirty(dquot);
616 if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) {
617 spin_unlock(&dq_list_lock);
618 dquot->dq_sb->dq_op->release_dquot(dquot);
619 goto we_slept;
620 }
621 atomic_dec(&dquot->dq_count);
622#ifdef __DQUOT_PARANOIA
623 /* sanity check */
Eric Sesterhenn8abf6a42006-04-02 13:36:13 +0200624 BUG_ON(!list_empty(&dquot->dq_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625#endif
626 put_dquot_last(dquot);
627 spin_unlock(&dq_list_lock);
628}
629
630static struct dquot *get_empty_dquot(struct super_block *sb, int type)
631{
632 struct dquot *dquot;
633
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800634 dquot = kmem_cache_zalloc(dquot_cachep, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if(!dquot)
636 return NODQUOT;
637
Ingo Molnard3be9152006-03-23 03:00:29 -0800638 mutex_init(&dquot->dq_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 INIT_LIST_HEAD(&dquot->dq_free);
640 INIT_LIST_HEAD(&dquot->dq_inuse);
641 INIT_HLIST_NODE(&dquot->dq_hash);
642 INIT_LIST_HEAD(&dquot->dq_dirty);
Jan Kara6362e4d2006-03-23 03:00:17 -0800643 init_waitqueue_head(&dquot->dq_wait_unused);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 dquot->dq_sb = sb;
645 dquot->dq_type = type;
646 atomic_set(&dquot->dq_count, 1);
647
648 return dquot;
649}
650
651/*
652 * Get reference to dquot
Ingo Molnard3be9152006-03-23 03:00:29 -0800653 * MUST be called with either dqptr_sem or dqonoff_mutex held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 */
655static struct dquot *dqget(struct super_block *sb, unsigned int id, int type)
656{
657 unsigned int hashent = hashfn(sb, id, type);
658 struct dquot *dquot, *empty = NODQUOT;
659
660 if (!sb_has_quota_enabled(sb, type))
661 return NODQUOT;
662we_slept:
663 spin_lock(&dq_list_lock);
664 if ((dquot = find_dquot(hashent, sb, id, type)) == NODQUOT) {
665 if (empty == NODQUOT) {
666 spin_unlock(&dq_list_lock);
667 if ((empty = get_empty_dquot(sb, type)) == NODQUOT)
668 schedule(); /* Try to wait for a moment... */
669 goto we_slept;
670 }
671 dquot = empty;
672 dquot->dq_id = id;
673 /* all dquots go on the inuse_list */
674 put_inuse(dquot);
675 /* hash it first so it can be found */
676 insert_dquot_hash(dquot);
677 dqstats.lookups++;
678 spin_unlock(&dq_list_lock);
679 } else {
680 if (!atomic_read(&dquot->dq_count))
681 remove_free_dquot(dquot);
682 atomic_inc(&dquot->dq_count);
683 dqstats.cache_hits++;
684 dqstats.lookups++;
685 spin_unlock(&dq_list_lock);
686 if (empty)
687 kmem_cache_free(dquot_cachep, empty);
688 }
689 /* Wait for dq_lock - after this we know that either dquot_release() is already
690 * finished or it will be canceled due to dq_count > 1 test */
691 wait_on_dquot(dquot);
692 /* Read the dquot and instantiate it (everything done only if needed) */
693 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags) && sb->dq_op->acquire_dquot(dquot) < 0) {
694 dqput(dquot);
695 return NODQUOT;
696 }
697#ifdef __DQUOT_PARANOIA
Eric Sesterhenn8abf6a42006-04-02 13:36:13 +0200698 BUG_ON(!dquot->dq_sb); /* Has somebody invalidated entry under us? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699#endif
700
701 return dquot;
702}
703
704static int dqinit_needed(struct inode *inode, int type)
705{
706 int cnt;
707
708 if (IS_NOQUOTA(inode))
709 return 0;
710 if (type != -1)
711 return inode->i_dquot[type] == NODQUOT;
712 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
713 if (inode->i_dquot[cnt] == NODQUOT)
714 return 1;
715 return 0;
716}
717
Ingo Molnard3be9152006-03-23 03:00:29 -0800718/* This routine is guarded by dqonoff_mutex mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719static void add_dquot_ref(struct super_block *sb, int type)
720{
Jan Kara941d2382008-02-06 01:37:36 -0800721 struct inode *inode, *old_inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Christoph Hellwigd003fb72007-02-12 00:51:58 -0800723 spin_lock(&inode_lock);
724 list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
725 if (!atomic_read(&inode->i_writecount))
726 continue;
727 if (!dqinit_needed(inode, type))
728 continue;
729 if (inode->i_state & (I_FREEING|I_WILL_FREE))
730 continue;
731
732 __iget(inode);
733 spin_unlock(&inode_lock);
734
Jan Kara941d2382008-02-06 01:37:36 -0800735 iput(old_inode);
Christoph Hellwigd003fb72007-02-12 00:51:58 -0800736 sb->dq_op->initialize(inode, type);
Jan Kara941d2382008-02-06 01:37:36 -0800737 /* We hold a reference to 'inode' so it couldn't have been
738 * removed from s_inodes list while we dropped the inode_lock.
739 * We cannot iput the inode now as we can be holding the last
740 * reference and we cannot iput it under inode_lock. So we
741 * keep the reference and iput it later. */
742 old_inode = inode;
743 spin_lock(&inode_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
Christoph Hellwigd003fb72007-02-12 00:51:58 -0800745 spin_unlock(&inode_lock);
Jan Kara941d2382008-02-06 01:37:36 -0800746 iput(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
749/* Return 0 if dqput() won't block (note that 1 doesn't necessarily mean blocking) */
750static inline int dqput_blocks(struct dquot *dquot)
751{
752 if (atomic_read(&dquot->dq_count) <= 1)
753 return 1;
754 return 0;
755}
756
757/* Remove references to dquots from inode - add dquot to list for freeing if needed */
758/* We can't race with anybody because we hold dqptr_sem for writing... */
Adrian Bunke5f00f42007-05-08 00:27:22 -0700759static int remove_inode_dquot_ref(struct inode *inode, int type,
760 struct list_head *tofree_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
762 struct dquot *dquot = inode->i_dquot[type];
763
764 inode->i_dquot[type] = NODQUOT;
765 if (dquot != NODQUOT) {
766 if (dqput_blocks(dquot)) {
767#ifdef __DQUOT_PARANOIA
768 if (atomic_read(&dquot->dq_count) != 1)
769 printk(KERN_WARNING "VFS: Adding dquot with dq_count %d to dispose list.\n", atomic_read(&dquot->dq_count));
770#endif
771 spin_lock(&dq_list_lock);
772 list_add(&dquot->dq_free, tofree_head); /* As dquot must have currently users it can't be on the free list... */
773 spin_unlock(&dq_list_lock);
774 return 1;
775 }
776 else
777 dqput(dquot); /* We have guaranteed we won't block */
778 }
779 return 0;
780}
781
782/* Free list of dquots - called from inode.c */
783/* dquots are removed from inodes, no new references can be got so we are the only ones holding reference */
784static void put_dquot_list(struct list_head *tofree_head)
785{
786 struct list_head *act_head;
787 struct dquot *dquot;
788
789 act_head = tofree_head->next;
790 /* So now we have dquots on the list... Just free them */
791 while (act_head != tofree_head) {
792 dquot = list_entry(act_head, struct dquot, dq_free);
793 act_head = act_head->next;
794 list_del_init(&dquot->dq_free); /* Remove dquot from the list so we won't have problems... */
795 dqput(dquot);
796 }
797}
798
Christoph Hellwigfb58b732007-02-12 00:51:57 -0800799static void remove_dquot_ref(struct super_block *sb, int type,
800 struct list_head *tofree_head)
801{
802 struct inode *inode;
803
804 spin_lock(&inode_lock);
805 list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
806 if (!IS_NOQUOTA(inode))
807 remove_inode_dquot_ref(inode, type, tofree_head);
808 }
809 spin_unlock(&inode_lock);
810}
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812/* Gather all references from inodes and drop them */
813static void drop_dquot_ref(struct super_block *sb, int type)
814{
815 LIST_HEAD(tofree_head);
816
Christoph Hellwigfb58b732007-02-12 00:51:57 -0800817 if (sb->dq_op) {
818 down_write(&sb_dqopt(sb)->dqptr_sem);
819 remove_dquot_ref(sb, type, &tofree_head);
820 up_write(&sb_dqopt(sb)->dqptr_sem);
821 put_dquot_list(&tofree_head);
822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
825static inline void dquot_incr_inodes(struct dquot *dquot, unsigned long number)
826{
827 dquot->dq_dqb.dqb_curinodes += number;
828}
829
830static inline void dquot_incr_space(struct dquot *dquot, qsize_t number)
831{
832 dquot->dq_dqb.dqb_curspace += number;
833}
834
835static inline void dquot_decr_inodes(struct dquot *dquot, unsigned long number)
836{
837 if (dquot->dq_dqb.dqb_curinodes > number)
838 dquot->dq_dqb.dqb_curinodes -= number;
839 else
840 dquot->dq_dqb.dqb_curinodes = 0;
841 if (dquot->dq_dqb.dqb_curinodes <= dquot->dq_dqb.dqb_isoftlimit)
842 dquot->dq_dqb.dqb_itime = (time_t) 0;
843 clear_bit(DQ_INODES_B, &dquot->dq_flags);
844}
845
846static inline void dquot_decr_space(struct dquot *dquot, qsize_t number)
847{
848 if (dquot->dq_dqb.dqb_curspace > number)
849 dquot->dq_dqb.dqb_curspace -= number;
850 else
851 dquot->dq_dqb.dqb_curspace = 0;
852 if (toqb(dquot->dq_dqb.dqb_curspace) <= dquot->dq_dqb.dqb_bsoftlimit)
853 dquot->dq_dqb.dqb_btime = (time_t) 0;
854 clear_bit(DQ_BLKS_B, &dquot->dq_flags);
855}
856
Jan Karac5254602007-12-22 14:03:25 -0800857static int warning_issued(struct dquot *dquot, const int warntype)
858{
859 int flag = (warntype == QUOTA_NL_BHARDWARN ||
860 warntype == QUOTA_NL_BSOFTLONGWARN) ? DQ_BLKS_B :
861 ((warntype == QUOTA_NL_IHARDWARN ||
862 warntype == QUOTA_NL_ISOFTLONGWARN) ? DQ_INODES_B : 0);
863
864 if (!flag)
865 return 0;
866 return test_and_set_bit(flag, &dquot->dq_flags);
867}
868
Jan Kara8e893462007-10-16 23:29:31 -0700869#ifdef CONFIG_PRINT_QUOTA_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870static int flag_print_warnings = 1;
871
872static inline int need_print_warning(struct dquot *dquot)
873{
874 if (!flag_print_warnings)
875 return 0;
876
877 switch (dquot->dq_type) {
878 case USRQUOTA:
879 return current->fsuid == dquot->dq_id;
880 case GRPQUOTA:
881 return in_group_p(dquot->dq_id);
882 }
883 return 0;
884}
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886/* Print warning to user which exceeded quota */
Jan Karac5254602007-12-22 14:03:25 -0800887static void print_warning(struct dquot *dquot, const int warntype)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
889 char *msg = NULL;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800890 struct tty_struct *tty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Jan Karac5254602007-12-22 14:03:25 -0800892 if (!need_print_warning(dquot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return;
894
Jan Karab525a7e2006-09-29 02:00:26 -0700895 mutex_lock(&tty_mutex);
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800896 tty = get_current_tty();
897 if (!tty)
Jan Karab525a7e2006-09-29 02:00:26 -0700898 goto out_lock;
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800899 tty_write_message(tty, dquot->dq_sb->s_id);
Jan Kara8e893462007-10-16 23:29:31 -0700900 if (warntype == QUOTA_NL_ISOFTWARN || warntype == QUOTA_NL_BSOFTWARN)
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800901 tty_write_message(tty, ": warning, ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 else
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800903 tty_write_message(tty, ": write failed, ");
904 tty_write_message(tty, quotatypes[dquot->dq_type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 switch (warntype) {
Jan Kara8e893462007-10-16 23:29:31 -0700906 case QUOTA_NL_IHARDWARN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 msg = " file limit reached.\r\n";
908 break;
Jan Kara8e893462007-10-16 23:29:31 -0700909 case QUOTA_NL_ISOFTLONGWARN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 msg = " file quota exceeded too long.\r\n";
911 break;
Jan Kara8e893462007-10-16 23:29:31 -0700912 case QUOTA_NL_ISOFTWARN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 msg = " file quota exceeded.\r\n";
914 break;
Jan Kara8e893462007-10-16 23:29:31 -0700915 case QUOTA_NL_BHARDWARN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 msg = " block limit reached.\r\n";
917 break;
Jan Kara8e893462007-10-16 23:29:31 -0700918 case QUOTA_NL_BSOFTLONGWARN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 msg = " block quota exceeded too long.\r\n";
920 break;
Jan Kara8e893462007-10-16 23:29:31 -0700921 case QUOTA_NL_BSOFTWARN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 msg = " block quota exceeded.\r\n";
923 break;
924 }
Peter Zijlstra24ec8392006-12-08 02:36:04 -0800925 tty_write_message(tty, msg);
Jan Karab525a7e2006-09-29 02:00:26 -0700926out_lock:
927 mutex_unlock(&tty_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928}
Jan Kara8e893462007-10-16 23:29:31 -0700929#endif
930
931#ifdef CONFIG_QUOTA_NETLINK_INTERFACE
932
Jan Kara8e893462007-10-16 23:29:31 -0700933/* Netlink family structure for quota */
934static struct genl_family quota_genl_family = {
935 .id = GENL_ID_GENERATE,
936 .hdrsize = 0,
937 .name = "VFS_DQUOT",
938 .version = 1,
939 .maxattr = QUOTA_NL_A_MAX,
940};
941
942/* Send warning to userspace about user which exceeded quota */
943static void send_warning(const struct dquot *dquot, const char warntype)
944{
945 static atomic_t seq;
946 struct sk_buff *skb;
947 void *msg_head;
948 int ret;
Jan Kara22dd4832007-12-22 14:03:25 -0800949 int msg_size = 4 * nla_total_size(sizeof(u32)) +
950 2 * nla_total_size(sizeof(u64));
Jan Kara8e893462007-10-16 23:29:31 -0700951
952 /* We have to allocate using GFP_NOFS as we are called from a
953 * filesystem performing write and thus further recursion into
954 * the fs to free some data could cause deadlocks. */
Jan Kara22dd4832007-12-22 14:03:25 -0800955 skb = genlmsg_new(msg_size, GFP_NOFS);
Jan Kara8e893462007-10-16 23:29:31 -0700956 if (!skb) {
957 printk(KERN_ERR
958 "VFS: Not enough memory to send quota warning.\n");
959 return;
960 }
961 msg_head = genlmsg_put(skb, 0, atomic_add_return(1, &seq),
962 &quota_genl_family, 0, QUOTA_NL_C_WARNING);
963 if (!msg_head) {
964 printk(KERN_ERR
965 "VFS: Cannot store netlink header in quota warning.\n");
966 goto err_out;
967 }
968 ret = nla_put_u32(skb, QUOTA_NL_A_QTYPE, dquot->dq_type);
969 if (ret)
970 goto attr_err_out;
971 ret = nla_put_u64(skb, QUOTA_NL_A_EXCESS_ID, dquot->dq_id);
972 if (ret)
973 goto attr_err_out;
974 ret = nla_put_u32(skb, QUOTA_NL_A_WARNING, warntype);
975 if (ret)
976 goto attr_err_out;
977 ret = nla_put_u32(skb, QUOTA_NL_A_DEV_MAJOR,
978 MAJOR(dquot->dq_sb->s_dev));
979 if (ret)
980 goto attr_err_out;
981 ret = nla_put_u32(skb, QUOTA_NL_A_DEV_MINOR,
982 MINOR(dquot->dq_sb->s_dev));
983 if (ret)
984 goto attr_err_out;
985 ret = nla_put_u64(skb, QUOTA_NL_A_CAUSED_ID, current->user->uid);
986 if (ret)
987 goto attr_err_out;
988 genlmsg_end(skb, msg_head);
989
990 ret = genlmsg_multicast(skb, 0, quota_genl_family.id, GFP_NOFS);
991 if (ret < 0 && ret != -ESRCH)
992 printk(KERN_ERR
993 "VFS: Failed to send notification message: %d\n", ret);
994 return;
995attr_err_out:
Jan Kara22dd4832007-12-22 14:03:25 -0800996 printk(KERN_ERR "VFS: Not enough space to compose quota message!\n");
Jan Kara8e893462007-10-16 23:29:31 -0700997err_out:
998 kfree_skb(skb);
999}
1000#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Jan Kara087ee8d2007-12-17 16:20:26 -08001002static inline void flush_warnings(struct dquot * const *dquots, char *warntype)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
1004 int i;
1005
1006 for (i = 0; i < MAXQUOTAS; i++)
Jan Karac5254602007-12-22 14:03:25 -08001007 if (dquots[i] != NODQUOT && warntype[i] != QUOTA_NL_NOWARN &&
1008 !warning_issued(dquots[i], warntype[i])) {
Jan Kara8e893462007-10-16 23:29:31 -07001009#ifdef CONFIG_PRINT_QUOTA_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 print_warning(dquots[i], warntype[i]);
Jan Kara8e893462007-10-16 23:29:31 -07001011#endif
1012#ifdef CONFIG_QUOTA_NETLINK_INTERFACE
1013 send_warning(dquots[i], warntype[i]);
1014#endif
1015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
1018static inline char ignore_hardlimit(struct dquot *dquot)
1019{
1020 struct mem_dqinfo *info = &sb_dqopt(dquot->dq_sb)->info[dquot->dq_type];
1021
1022 return capable(CAP_SYS_RESOURCE) &&
1023 (info->dqi_format->qf_fmt_id != QFMT_VFS_OLD || !(info->dqi_flags & V1_DQF_RSQUASH));
1024}
1025
1026/* needs dq_data_lock */
1027static int check_idq(struct dquot *dquot, ulong inodes, char *warntype)
1028{
Jan Kara8e893462007-10-16 23:29:31 -07001029 *warntype = QUOTA_NL_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 if (inodes <= 0 || test_bit(DQ_FAKE_B, &dquot->dq_flags))
1031 return QUOTA_OK;
1032
1033 if (dquot->dq_dqb.dqb_ihardlimit &&
1034 (dquot->dq_dqb.dqb_curinodes + inodes) > dquot->dq_dqb.dqb_ihardlimit &&
1035 !ignore_hardlimit(dquot)) {
Jan Kara8e893462007-10-16 23:29:31 -07001036 *warntype = QUOTA_NL_IHARDWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 return NO_QUOTA;
1038 }
1039
1040 if (dquot->dq_dqb.dqb_isoftlimit &&
1041 (dquot->dq_dqb.dqb_curinodes + inodes) > dquot->dq_dqb.dqb_isoftlimit &&
1042 dquot->dq_dqb.dqb_itime && get_seconds() >= dquot->dq_dqb.dqb_itime &&
1043 !ignore_hardlimit(dquot)) {
Jan Kara8e893462007-10-16 23:29:31 -07001044 *warntype = QUOTA_NL_ISOFTLONGWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return NO_QUOTA;
1046 }
1047
1048 if (dquot->dq_dqb.dqb_isoftlimit &&
1049 (dquot->dq_dqb.dqb_curinodes + inodes) > dquot->dq_dqb.dqb_isoftlimit &&
1050 dquot->dq_dqb.dqb_itime == 0) {
Jan Kara8e893462007-10-16 23:29:31 -07001051 *warntype = QUOTA_NL_ISOFTWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 dquot->dq_dqb.dqb_itime = get_seconds() + sb_dqopt(dquot->dq_sb)->info[dquot->dq_type].dqi_igrace;
1053 }
1054
1055 return QUOTA_OK;
1056}
1057
1058/* needs dq_data_lock */
1059static int check_bdq(struct dquot *dquot, qsize_t space, int prealloc, char *warntype)
1060{
Jan Kara8e893462007-10-16 23:29:31 -07001061 *warntype = QUOTA_NL_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (space <= 0 || test_bit(DQ_FAKE_B, &dquot->dq_flags))
1063 return QUOTA_OK;
1064
1065 if (dquot->dq_dqb.dqb_bhardlimit &&
1066 toqb(dquot->dq_dqb.dqb_curspace + space) > dquot->dq_dqb.dqb_bhardlimit &&
1067 !ignore_hardlimit(dquot)) {
1068 if (!prealloc)
Jan Kara8e893462007-10-16 23:29:31 -07001069 *warntype = QUOTA_NL_BHARDWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 return NO_QUOTA;
1071 }
1072
1073 if (dquot->dq_dqb.dqb_bsoftlimit &&
1074 toqb(dquot->dq_dqb.dqb_curspace + space) > dquot->dq_dqb.dqb_bsoftlimit &&
1075 dquot->dq_dqb.dqb_btime && get_seconds() >= dquot->dq_dqb.dqb_btime &&
1076 !ignore_hardlimit(dquot)) {
1077 if (!prealloc)
Jan Kara8e893462007-10-16 23:29:31 -07001078 *warntype = QUOTA_NL_BSOFTLONGWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return NO_QUOTA;
1080 }
1081
1082 if (dquot->dq_dqb.dqb_bsoftlimit &&
1083 toqb(dquot->dq_dqb.dqb_curspace + space) > dquot->dq_dqb.dqb_bsoftlimit &&
1084 dquot->dq_dqb.dqb_btime == 0) {
1085 if (!prealloc) {
Jan Kara8e893462007-10-16 23:29:31 -07001086 *warntype = QUOTA_NL_BSOFTWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 dquot->dq_dqb.dqb_btime = get_seconds() + sb_dqopt(dquot->dq_sb)->info[dquot->dq_type].dqi_bgrace;
1088 }
1089 else
1090 /*
1091 * We don't allow preallocation to exceed softlimit so exceeding will
1092 * be always printed
1093 */
1094 return NO_QUOTA;
1095 }
1096
1097 return QUOTA_OK;
1098}
1099
1100/*
1101 * Initialize quota pointers in inode
1102 * Transaction must be started at entry
1103 */
1104int dquot_initialize(struct inode *inode, int type)
1105{
1106 unsigned int id = 0;
1107 int cnt, ret = 0;
1108
Ingo Molnard3be9152006-03-23 03:00:29 -08001109 /* First test before acquiring mutex - solves deadlocks when we
1110 * re-enter the quota code and are already holding the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (IS_NOQUOTA(inode))
1112 return 0;
1113 down_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1114 /* Having dqptr_sem we know NOQUOTA flags can't be altered... */
1115 if (IS_NOQUOTA(inode))
1116 goto out_err;
1117 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1118 if (type != -1 && cnt != type)
1119 continue;
1120 if (inode->i_dquot[cnt] == NODQUOT) {
1121 switch (cnt) {
1122 case USRQUOTA:
1123 id = inode->i_uid;
1124 break;
1125 case GRPQUOTA:
1126 id = inode->i_gid;
1127 break;
1128 }
1129 inode->i_dquot[cnt] = dqget(inode->i_sb, id, cnt);
1130 }
1131 }
1132out_err:
1133 up_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1134 return ret;
1135}
1136
1137/*
1138 * Release all quotas referenced by inode
1139 * Transaction must be started at an entry
1140 */
1141int dquot_drop(struct inode *inode)
1142{
1143 int cnt;
1144
1145 down_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1146 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1147 if (inode->i_dquot[cnt] != NODQUOT) {
1148 dqput(inode->i_dquot[cnt]);
1149 inode->i_dquot[cnt] = NODQUOT;
1150 }
1151 }
1152 up_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1153 return 0;
1154}
1155
1156/*
1157 * Following four functions update i_blocks+i_bytes fields and
1158 * quota information (together with appropriate checks)
1159 * NOTE: We absolutely rely on the fact that caller dirties
1160 * the inode (usually macros in quotaops.h care about this) and
1161 * holds a handle for the current transaction so that dquot write and
1162 * inode write go into the same transaction.
1163 */
1164
1165/*
1166 * This operation can block, but only after everything is updated
1167 */
1168int dquot_alloc_space(struct inode *inode, qsize_t number, int warn)
1169{
1170 int cnt, ret = NO_QUOTA;
1171 char warntype[MAXQUOTAS];
1172
Ingo Molnard3be9152006-03-23 03:00:29 -08001173 /* First test before acquiring mutex - solves deadlocks when we
1174 * re-enter the quota code and are already holding the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (IS_NOQUOTA(inode)) {
1176out_add:
1177 inode_add_bytes(inode, number);
1178 return QUOTA_OK;
1179 }
1180 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
Jan Kara8e893462007-10-16 23:29:31 -07001181 warntype[cnt] = QUOTA_NL_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 down_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1184 if (IS_NOQUOTA(inode)) { /* Now we can do reliable test... */
1185 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1186 goto out_add;
1187 }
1188 spin_lock(&dq_data_lock);
1189 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1190 if (inode->i_dquot[cnt] == NODQUOT)
1191 continue;
1192 if (check_bdq(inode->i_dquot[cnt], number, warn, warntype+cnt) == NO_QUOTA)
1193 goto warn_put_all;
1194 }
1195 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1196 if (inode->i_dquot[cnt] == NODQUOT)
1197 continue;
1198 dquot_incr_space(inode->i_dquot[cnt], number);
1199 }
1200 inode_add_bytes(inode, number);
1201 ret = QUOTA_OK;
1202warn_put_all:
1203 spin_unlock(&dq_data_lock);
1204 if (ret == QUOTA_OK)
1205 /* Dirtify all the dquots - this can block when journalling */
1206 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1207 if (inode->i_dquot[cnt])
1208 mark_dquot_dirty(inode->i_dquot[cnt]);
1209 flush_warnings(inode->i_dquot, warntype);
1210 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1211 return ret;
1212}
1213
1214/*
1215 * This operation can block, but only after everything is updated
1216 */
1217int dquot_alloc_inode(const struct inode *inode, unsigned long number)
1218{
1219 int cnt, ret = NO_QUOTA;
1220 char warntype[MAXQUOTAS];
1221
Ingo Molnard3be9152006-03-23 03:00:29 -08001222 /* First test before acquiring mutex - solves deadlocks when we
1223 * re-enter the quota code and are already holding the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (IS_NOQUOTA(inode))
1225 return QUOTA_OK;
1226 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
Jan Kara8e893462007-10-16 23:29:31 -07001227 warntype[cnt] = QUOTA_NL_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 down_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1229 if (IS_NOQUOTA(inode)) {
1230 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1231 return QUOTA_OK;
1232 }
1233 spin_lock(&dq_data_lock);
1234 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1235 if (inode->i_dquot[cnt] == NODQUOT)
1236 continue;
1237 if (check_idq(inode->i_dquot[cnt], number, warntype+cnt) == NO_QUOTA)
1238 goto warn_put_all;
1239 }
1240
1241 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1242 if (inode->i_dquot[cnt] == NODQUOT)
1243 continue;
1244 dquot_incr_inodes(inode->i_dquot[cnt], number);
1245 }
1246 ret = QUOTA_OK;
1247warn_put_all:
1248 spin_unlock(&dq_data_lock);
1249 if (ret == QUOTA_OK)
1250 /* Dirtify all the dquots - this can block when journalling */
1251 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1252 if (inode->i_dquot[cnt])
1253 mark_dquot_dirty(inode->i_dquot[cnt]);
Jan Kara087ee8d2007-12-17 16:20:26 -08001254 flush_warnings(inode->i_dquot, warntype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1256 return ret;
1257}
1258
1259/*
1260 * This operation can block, but only after everything is updated
1261 */
1262int dquot_free_space(struct inode *inode, qsize_t number)
1263{
1264 unsigned int cnt;
1265
Ingo Molnard3be9152006-03-23 03:00:29 -08001266 /* First test before acquiring mutex - solves deadlocks when we
1267 * re-enter the quota code and are already holding the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (IS_NOQUOTA(inode)) {
1269out_sub:
1270 inode_sub_bytes(inode, number);
1271 return QUOTA_OK;
1272 }
1273 down_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1274 /* Now recheck reliably when holding dqptr_sem */
1275 if (IS_NOQUOTA(inode)) {
1276 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1277 goto out_sub;
1278 }
1279 spin_lock(&dq_data_lock);
1280 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1281 if (inode->i_dquot[cnt] == NODQUOT)
1282 continue;
1283 dquot_decr_space(inode->i_dquot[cnt], number);
1284 }
1285 inode_sub_bytes(inode, number);
1286 spin_unlock(&dq_data_lock);
1287 /* Dirtify all the dquots - this can block when journalling */
1288 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1289 if (inode->i_dquot[cnt])
1290 mark_dquot_dirty(inode->i_dquot[cnt]);
1291 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1292 return QUOTA_OK;
1293}
1294
1295/*
1296 * This operation can block, but only after everything is updated
1297 */
1298int dquot_free_inode(const struct inode *inode, unsigned long number)
1299{
1300 unsigned int cnt;
1301
Ingo Molnard3be9152006-03-23 03:00:29 -08001302 /* First test before acquiring mutex - solves deadlocks when we
1303 * re-enter the quota code and are already holding the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 if (IS_NOQUOTA(inode))
1305 return QUOTA_OK;
1306 down_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1307 /* Now recheck reliably when holding dqptr_sem */
1308 if (IS_NOQUOTA(inode)) {
1309 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1310 return QUOTA_OK;
1311 }
1312 spin_lock(&dq_data_lock);
1313 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1314 if (inode->i_dquot[cnt] == NODQUOT)
1315 continue;
1316 dquot_decr_inodes(inode->i_dquot[cnt], number);
1317 }
1318 spin_unlock(&dq_data_lock);
1319 /* Dirtify all the dquots - this can block when journalling */
1320 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1321 if (inode->i_dquot[cnt])
1322 mark_dquot_dirty(inode->i_dquot[cnt]);
1323 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1324 return QUOTA_OK;
1325}
1326
1327/*
1328 * Transfer the number of inode and blocks from one diskquota to an other.
1329 *
1330 * This operation can block, but only after everything is updated
1331 * A transaction must be started when entering this function.
1332 */
1333int dquot_transfer(struct inode *inode, struct iattr *iattr)
1334{
1335 qsize_t space;
1336 struct dquot *transfer_from[MAXQUOTAS];
1337 struct dquot *transfer_to[MAXQUOTAS];
1338 int cnt, ret = NO_QUOTA, chuid = (iattr->ia_valid & ATTR_UID) && inode->i_uid != iattr->ia_uid,
1339 chgid = (iattr->ia_valid & ATTR_GID) && inode->i_gid != iattr->ia_gid;
1340 char warntype[MAXQUOTAS];
1341
Ingo Molnard3be9152006-03-23 03:00:29 -08001342 /* First test before acquiring mutex - solves deadlocks when we
1343 * re-enter the quota code and are already holding the mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 if (IS_NOQUOTA(inode))
1345 return QUOTA_OK;
1346 /* Clear the arrays */
1347 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1348 transfer_to[cnt] = transfer_from[cnt] = NODQUOT;
Jan Kara8e893462007-10-16 23:29:31 -07001349 warntype[cnt] = QUOTA_NL_NOWARN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
1351 down_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1352 /* Now recheck reliably when holding dqptr_sem */
1353 if (IS_NOQUOTA(inode)) { /* File without quota accounting? */
1354 up_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1355 return QUOTA_OK;
1356 }
1357 /* First build the transfer_to list - here we can block on
1358 * reading/instantiating of dquots. We know that the transaction for
1359 * us was already started so we don't violate lock ranking here */
1360 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1361 switch (cnt) {
1362 case USRQUOTA:
1363 if (!chuid)
1364 continue;
1365 transfer_to[cnt] = dqget(inode->i_sb, iattr->ia_uid, cnt);
1366 break;
1367 case GRPQUOTA:
1368 if (!chgid)
1369 continue;
1370 transfer_to[cnt] = dqget(inode->i_sb, iattr->ia_gid, cnt);
1371 break;
1372 }
1373 }
1374 spin_lock(&dq_data_lock);
1375 space = inode_get_bytes(inode);
1376 /* Build the transfer_from list and check the limits */
1377 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1378 if (transfer_to[cnt] == NODQUOT)
1379 continue;
1380 transfer_from[cnt] = inode->i_dquot[cnt];
1381 if (check_idq(transfer_to[cnt], 1, warntype+cnt) == NO_QUOTA ||
1382 check_bdq(transfer_to[cnt], space, 0, warntype+cnt) == NO_QUOTA)
1383 goto warn_put_all;
1384 }
1385
1386 /*
1387 * Finally perform the needed transfer from transfer_from to transfer_to
1388 */
1389 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1390 /*
1391 * Skip changes for same uid or gid or for turned off quota-type.
1392 */
1393 if (transfer_to[cnt] == NODQUOT)
1394 continue;
1395
1396 /* Due to IO error we might not have transfer_from[] structure */
1397 if (transfer_from[cnt]) {
1398 dquot_decr_inodes(transfer_from[cnt], 1);
1399 dquot_decr_space(transfer_from[cnt], space);
1400 }
1401
1402 dquot_incr_inodes(transfer_to[cnt], 1);
1403 dquot_incr_space(transfer_to[cnt], space);
1404
1405 inode->i_dquot[cnt] = transfer_to[cnt];
1406 }
1407 ret = QUOTA_OK;
1408warn_put_all:
1409 spin_unlock(&dq_data_lock);
1410 /* Dirtify all the dquots - this can block when journalling */
1411 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1412 if (transfer_from[cnt])
1413 mark_dquot_dirty(transfer_from[cnt]);
1414 if (transfer_to[cnt])
1415 mark_dquot_dirty(transfer_to[cnt]);
1416 }
1417 flush_warnings(transfer_to, warntype);
1418
1419 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1420 if (ret == QUOTA_OK && transfer_from[cnt] != NODQUOT)
1421 dqput(transfer_from[cnt]);
1422 if (ret == NO_QUOTA && transfer_to[cnt] != NODQUOT)
1423 dqput(transfer_to[cnt]);
1424 }
1425 up_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1426 return ret;
1427}
1428
1429/*
1430 * Write info of quota file to disk
1431 */
1432int dquot_commit_info(struct super_block *sb, int type)
1433{
1434 int ret;
1435 struct quota_info *dqopt = sb_dqopt(sb);
1436
Ingo Molnard3be9152006-03-23 03:00:29 -08001437 mutex_lock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 ret = dqopt->ops[type]->write_file_info(sb, type);
Ingo Molnard3be9152006-03-23 03:00:29 -08001439 mutex_unlock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return ret;
1441}
1442
1443/*
1444 * Definitions of diskquota operations.
1445 */
1446struct dquot_operations dquot_operations = {
1447 .initialize = dquot_initialize,
1448 .drop = dquot_drop,
1449 .alloc_space = dquot_alloc_space,
1450 .alloc_inode = dquot_alloc_inode,
1451 .free_space = dquot_free_space,
1452 .free_inode = dquot_free_inode,
1453 .transfer = dquot_transfer,
1454 .write_dquot = dquot_commit,
1455 .acquire_dquot = dquot_acquire,
1456 .release_dquot = dquot_release,
1457 .mark_dirty = dquot_mark_dquot_dirty,
1458 .write_info = dquot_commit_info
1459};
1460
1461static inline void set_enable_flags(struct quota_info *dqopt, int type)
1462{
1463 switch (type) {
1464 case USRQUOTA:
1465 dqopt->flags |= DQUOT_USR_ENABLED;
Jan Kara0ff5af82008-04-28 02:14:33 -07001466 dqopt->flags &= ~DQUOT_USR_SUSPENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 break;
1468 case GRPQUOTA:
1469 dqopt->flags |= DQUOT_GRP_ENABLED;
Jan Kara0ff5af82008-04-28 02:14:33 -07001470 dqopt->flags &= ~DQUOT_GRP_SUSPENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 break;
1472 }
1473}
1474
Jan Kara0ff5af82008-04-28 02:14:33 -07001475static inline void reset_enable_flags(struct quota_info *dqopt, int type,
1476 int remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477{
1478 switch (type) {
1479 case USRQUOTA:
1480 dqopt->flags &= ~DQUOT_USR_ENABLED;
Jan Kara0ff5af82008-04-28 02:14:33 -07001481 if (remount)
1482 dqopt->flags |= DQUOT_USR_SUSPENDED;
1483 else
1484 dqopt->flags &= ~DQUOT_USR_SUSPENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 break;
1486 case GRPQUOTA:
1487 dqopt->flags &= ~DQUOT_GRP_ENABLED;
Jan Kara0ff5af82008-04-28 02:14:33 -07001488 if (remount)
1489 dqopt->flags |= DQUOT_GRP_SUSPENDED;
1490 else
1491 dqopt->flags &= ~DQUOT_GRP_SUSPENDED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 break;
1493 }
1494}
1495
Jan Kara0ff5af82008-04-28 02:14:33 -07001496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497/*
1498 * Turn quota off on a device. type == -1 ==> quotaoff for all types (umount)
1499 */
Jan Kara0ff5af82008-04-28 02:14:33 -07001500int vfs_quota_off(struct super_block *sb, int type, int remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
Jan Kara0ff5af82008-04-28 02:14:33 -07001502 int cnt, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 struct quota_info *dqopt = sb_dqopt(sb);
1504 struct inode *toputinode[MAXQUOTAS];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
1506 /* We need to serialize quota_off() for device */
Ingo Molnard3be9152006-03-23 03:00:29 -08001507 mutex_lock(&dqopt->dqonoff_mutex);
Jan Kara9377abd2008-05-12 14:02:08 -07001508
1509 /*
1510 * Skip everything if there's nothing to do. We have to do this because
1511 * sometimes we are called when fill_super() failed and calling
1512 * sync_fs() in such cases does no good.
1513 */
1514 if (!sb_any_quota_enabled(sb) && !sb_any_quota_suspended(sb)) {
1515 mutex_unlock(&dqopt->dqonoff_mutex);
1516 return 0;
1517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1519 toputinode[cnt] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 if (type != -1 && cnt != type)
1521 continue;
Jan Kara0ff5af82008-04-28 02:14:33 -07001522 /* If we keep inodes of quota files after remount and quotaoff
1523 * is called, drop kept inodes. */
1524 if (!remount && sb_has_quota_suspended(sb, cnt)) {
1525 iput(dqopt->files[cnt]);
1526 dqopt->files[cnt] = NULL;
1527 reset_enable_flags(dqopt, cnt, 0);
1528 continue;
1529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 if (!sb_has_quota_enabled(sb, cnt))
1531 continue;
Jan Kara0ff5af82008-04-28 02:14:33 -07001532 reset_enable_flags(dqopt, cnt, remount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 /* Note: these are blocking operations */
1535 drop_dquot_ref(sb, cnt);
1536 invalidate_dquots(sb, cnt);
1537 /*
1538 * Now all dquots should be invalidated, all writes done so we should be only
1539 * users of the info. No locks needed.
1540 */
1541 if (info_dirty(&dqopt->info[cnt]))
1542 sb->dq_op->write_info(sb, cnt);
1543 if (dqopt->ops[cnt]->free_file_info)
1544 dqopt->ops[cnt]->free_file_info(sb, cnt);
1545 put_quota_format(dqopt->info[cnt].dqi_format);
1546
1547 toputinode[cnt] = dqopt->files[cnt];
Jan Kara0ff5af82008-04-28 02:14:33 -07001548 if (!remount)
1549 dqopt->files[cnt] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 dqopt->info[cnt].dqi_flags = 0;
1551 dqopt->info[cnt].dqi_igrace = 0;
1552 dqopt->info[cnt].dqi_bgrace = 0;
1553 dqopt->ops[cnt] = NULL;
1554 }
Ingo Molnard3be9152006-03-23 03:00:29 -08001555 mutex_unlock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 /* Sync the superblock so that buffers with quota data are written to
Al Viro7b7b1ac2005-11-07 17:13:39 -05001557 * disk (and so userspace sees correct data afterwards). */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 if (sb->s_op->sync_fs)
1559 sb->s_op->sync_fs(sb, 1);
1560 sync_blockdev(sb->s_bdev);
1561 /* Now the quota files are just ordinary files and we can set the
1562 * inode flags back. Moreover we discard the pagecache so that
1563 * userspace sees the writes we did bypassing the pagecache. We
1564 * must also discard the blockdev buffers so that we see the
1565 * changes done by userspace on the next quotaon() */
1566 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1567 if (toputinode[cnt]) {
Ingo Molnard3be9152006-03-23 03:00:29 -08001568 mutex_lock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 /* If quota was reenabled in the meantime, we have
1570 * nothing to do */
1571 if (!sb_has_quota_enabled(sb, cnt)) {
Jan Kara79254092007-05-16 22:11:19 -07001572 mutex_lock_nested(&toputinode[cnt]->i_mutex, I_MUTEX_QUOTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 toputinode[cnt]->i_flags &= ~(S_IMMUTABLE |
1574 S_NOATIME | S_NOQUOTA);
1575 truncate_inode_pages(&toputinode[cnt]->i_data, 0);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001576 mutex_unlock(&toputinode[cnt]->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 mark_inode_dirty(toputinode[cnt]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 }
Ingo Molnard3be9152006-03-23 03:00:29 -08001579 mutex_unlock(&dqopt->dqonoff_mutex);
Jan Kara0ff5af82008-04-28 02:14:33 -07001580 /* On remount RO, we keep the inode pointer so that we
1581 * can reenable quota on the subsequent remount RW.
1582 * But we have better not keep inode pointer when there
1583 * is pending delete on the quota file... */
1584 if (!remount)
1585 iput(toputinode[cnt]);
1586 else if (!toputinode[cnt]->i_nlink)
1587 ret = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 }
1589 if (sb->s_bdev)
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001590 invalidate_bdev(sb->s_bdev);
Jan Kara0ff5af82008-04-28 02:14:33 -07001591 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592}
1593
1594/*
1595 * Turn quotas on on a device
1596 */
1597
1598/* Helper function when we already have the inode */
1599static int vfs_quota_on_inode(struct inode *inode, int type, int format_id)
1600{
1601 struct quota_format_type *fmt = find_quota_format(format_id);
1602 struct super_block *sb = inode->i_sb;
1603 struct quota_info *dqopt = sb_dqopt(sb);
1604 int error;
1605 int oldflags = -1;
1606
1607 if (!fmt)
1608 return -ESRCH;
1609 if (!S_ISREG(inode->i_mode)) {
1610 error = -EACCES;
1611 goto out_fmt;
1612 }
1613 if (IS_RDONLY(inode)) {
1614 error = -EROFS;
1615 goto out_fmt;
1616 }
1617 if (!sb->s_op->quota_write || !sb->s_op->quota_read) {
1618 error = -EINVAL;
1619 goto out_fmt;
1620 }
1621
1622 /* As we bypass the pagecache we must now flush the inode so that
1623 * we see all the changes from userspace... */
1624 write_inode_now(inode, 1);
1625 /* And now flush the block cache so that kernel sees the changes */
Peter Zijlstraf98393a2007-05-06 14:49:54 -07001626 invalidate_bdev(sb->s_bdev);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001627 mutex_lock(&inode->i_mutex);
Ingo Molnard3be9152006-03-23 03:00:29 -08001628 mutex_lock(&dqopt->dqonoff_mutex);
Jan Kara0ff5af82008-04-28 02:14:33 -07001629 if (sb_has_quota_enabled(sb, type) ||
1630 sb_has_quota_suspended(sb, type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 error = -EBUSY;
1632 goto out_lock;
1633 }
1634 /* We don't want quota and atime on quota files (deadlocks possible)
1635 * Also nobody should write to the file - we use special IO operations
1636 * which ignore the immutable bit. */
1637 down_write(&dqopt->dqptr_sem);
1638 oldflags = inode->i_flags & (S_NOATIME | S_IMMUTABLE | S_NOQUOTA);
1639 inode->i_flags |= S_NOQUOTA | S_NOATIME | S_IMMUTABLE;
1640 up_write(&dqopt->dqptr_sem);
Jan Kara31e7ad62005-04-16 15:25:46 -07001641 sb->dq_op->drop(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643 error = -EIO;
1644 dqopt->files[type] = igrab(inode);
1645 if (!dqopt->files[type])
1646 goto out_lock;
1647 error = -EINVAL;
1648 if (!fmt->qf_ops->check_quota_file(sb, type))
1649 goto out_file_init;
1650
1651 dqopt->ops[type] = fmt->qf_ops;
1652 dqopt->info[type].dqi_format = fmt;
Jan Kara0ff5af82008-04-28 02:14:33 -07001653 dqopt->info[type].dqi_fmt_id = format_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 INIT_LIST_HEAD(&dqopt->info[type].dqi_dirty_list);
Ingo Molnard3be9152006-03-23 03:00:29 -08001655 mutex_lock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if ((error = dqopt->ops[type]->read_file_info(sb, type)) < 0) {
Ingo Molnard3be9152006-03-23 03:00:29 -08001657 mutex_unlock(&dqopt->dqio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 goto out_file_init;
1659 }
Ingo Molnard3be9152006-03-23 03:00:29 -08001660 mutex_unlock(&dqopt->dqio_mutex);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001661 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 set_enable_flags(dqopt, type);
1663
1664 add_dquot_ref(sb, type);
Ingo Molnard3be9152006-03-23 03:00:29 -08001665 mutex_unlock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667 return 0;
1668
1669out_file_init:
1670 dqopt->files[type] = NULL;
1671 iput(inode);
1672out_lock:
Ingo Molnard3be9152006-03-23 03:00:29 -08001673 mutex_unlock(&dqopt->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 if (oldflags != -1) {
1675 down_write(&dqopt->dqptr_sem);
1676 /* Set the flags back (in the case of accidental quotaon()
1677 * on a wrong file we don't want to mess up the flags) */
1678 inode->i_flags &= ~(S_NOATIME | S_NOQUOTA | S_IMMUTABLE);
1679 inode->i_flags |= oldflags;
1680 up_write(&dqopt->dqptr_sem);
1681 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001682 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683out_fmt:
1684 put_quota_format(fmt);
1685
1686 return error;
1687}
1688
Jan Kara0ff5af82008-04-28 02:14:33 -07001689/* Reenable quotas on remount RW */
1690static int vfs_quota_on_remount(struct super_block *sb, int type)
1691{
1692 struct quota_info *dqopt = sb_dqopt(sb);
1693 struct inode *inode;
1694 int ret;
1695
1696 mutex_lock(&dqopt->dqonoff_mutex);
1697 if (!sb_has_quota_suspended(sb, type)) {
1698 mutex_unlock(&dqopt->dqonoff_mutex);
1699 return 0;
1700 }
1701 BUG_ON(sb_has_quota_enabled(sb, type));
1702
1703 inode = dqopt->files[type];
1704 dqopt->files[type] = NULL;
1705 reset_enable_flags(dqopt, type, 0);
1706 mutex_unlock(&dqopt->dqonoff_mutex);
1707
1708 ret = vfs_quota_on_inode(inode, type, dqopt->info[type].dqi_fmt_id);
1709 iput(inode);
1710
1711 return ret;
1712}
1713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714/* Actual function called from quotactl() */
Jan Kara0ff5af82008-04-28 02:14:33 -07001715int vfs_quota_on(struct super_block *sb, int type, int format_id, char *path,
1716 int remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717{
1718 struct nameidata nd;
1719 int error;
1720
Jan Kara0ff5af82008-04-28 02:14:33 -07001721 if (remount)
1722 return vfs_quota_on_remount(sb, type);
1723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 error = path_lookup(path, LOOKUP_FOLLOW, &nd);
1725 if (error < 0)
1726 return error;
Jan Blunck4ac91372008-02-14 19:34:32 -08001727 error = security_quota_on(nd.path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 if (error)
1729 goto out_path;
1730 /* Quota file not on the same filesystem? */
Jan Blunck4ac91372008-02-14 19:34:32 -08001731 if (nd.path.mnt->mnt_sb != sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 error = -EXDEV;
Al Viro7b7b1ac2005-11-07 17:13:39 -05001733 else
Jan Blunck4ac91372008-02-14 19:34:32 -08001734 error = vfs_quota_on_inode(nd.path.dentry->d_inode, type,
1735 format_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736out_path:
Jan Blunck1d957f92008-02-14 19:34:35 -08001737 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return error;
1739}
1740
1741/*
1742 * This function is used when filesystem needs to initialize quotas
1743 * during mount time.
1744 */
Christoph Hellwig84de8562005-06-23 00:09:16 -07001745int vfs_quota_on_mount(struct super_block *sb, char *qf_name,
1746 int format_id, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
Christoph Hellwig84de8562005-06-23 00:09:16 -07001748 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 int error;
1750
Christoph Hellwig2fa389c2005-06-23 00:09:16 -07001751 dentry = lookup_one_len(qf_name, sb->s_root, strlen(qf_name));
Christoph Hellwig84de8562005-06-23 00:09:16 -07001752 if (IS_ERR(dentry))
1753 return PTR_ERR(dentry);
1754
Jan Kara154f4842005-11-28 13:44:14 -08001755 if (!dentry->d_inode) {
1756 error = -ENOENT;
1757 goto out;
1758 }
1759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 error = security_quota_on(dentry);
Christoph Hellwig84de8562005-06-23 00:09:16 -07001761 if (!error)
1762 error = vfs_quota_on_inode(dentry->d_inode, type, format_id);
1763
Jan Kara154f4842005-11-28 13:44:14 -08001764out:
Christoph Hellwig84de8562005-06-23 00:09:16 -07001765 dput(dentry);
1766 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767}
1768
1769/* Generic routine for getting common part of quota structure */
1770static void do_get_dqblk(struct dquot *dquot, struct if_dqblk *di)
1771{
1772 struct mem_dqblk *dm = &dquot->dq_dqb;
1773
1774 spin_lock(&dq_data_lock);
1775 di->dqb_bhardlimit = dm->dqb_bhardlimit;
1776 di->dqb_bsoftlimit = dm->dqb_bsoftlimit;
1777 di->dqb_curspace = dm->dqb_curspace;
1778 di->dqb_ihardlimit = dm->dqb_ihardlimit;
1779 di->dqb_isoftlimit = dm->dqb_isoftlimit;
1780 di->dqb_curinodes = dm->dqb_curinodes;
1781 di->dqb_btime = dm->dqb_btime;
1782 di->dqb_itime = dm->dqb_itime;
1783 di->dqb_valid = QIF_ALL;
1784 spin_unlock(&dq_data_lock);
1785}
1786
1787int vfs_get_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di)
1788{
1789 struct dquot *dquot;
1790
Ingo Molnard3be9152006-03-23 03:00:29 -08001791 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 if (!(dquot = dqget(sb, id, type))) {
Ingo Molnard3be9152006-03-23 03:00:29 -08001793 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 return -ESRCH;
1795 }
1796 do_get_dqblk(dquot, di);
1797 dqput(dquot);
Ingo Molnard3be9152006-03-23 03:00:29 -08001798 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return 0;
1800}
1801
1802/* Generic routine for setting common part of quota structure */
Andrew Perepechko338bf9a2008-04-28 02:14:31 -07001803static int do_set_dqblk(struct dquot *dquot, struct if_dqblk *di)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
1805 struct mem_dqblk *dm = &dquot->dq_dqb;
1806 int check_blim = 0, check_ilim = 0;
Andrew Perepechko338bf9a2008-04-28 02:14:31 -07001807 struct mem_dqinfo *dqi = &sb_dqopt(dquot->dq_sb)->info[dquot->dq_type];
1808
1809 if ((di->dqb_valid & QIF_BLIMITS &&
1810 (di->dqb_bhardlimit > dqi->dqi_maxblimit ||
1811 di->dqb_bsoftlimit > dqi->dqi_maxblimit)) ||
1812 (di->dqb_valid & QIF_ILIMITS &&
1813 (di->dqb_ihardlimit > dqi->dqi_maxilimit ||
1814 di->dqb_isoftlimit > dqi->dqi_maxilimit)))
1815 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 spin_lock(&dq_data_lock);
1818 if (di->dqb_valid & QIF_SPACE) {
1819 dm->dqb_curspace = di->dqb_curspace;
1820 check_blim = 1;
1821 }
1822 if (di->dqb_valid & QIF_BLIMITS) {
1823 dm->dqb_bsoftlimit = di->dqb_bsoftlimit;
1824 dm->dqb_bhardlimit = di->dqb_bhardlimit;
1825 check_blim = 1;
1826 }
1827 if (di->dqb_valid & QIF_INODES) {
1828 dm->dqb_curinodes = di->dqb_curinodes;
1829 check_ilim = 1;
1830 }
1831 if (di->dqb_valid & QIF_ILIMITS) {
1832 dm->dqb_isoftlimit = di->dqb_isoftlimit;
1833 dm->dqb_ihardlimit = di->dqb_ihardlimit;
1834 check_ilim = 1;
1835 }
1836 if (di->dqb_valid & QIF_BTIME)
1837 dm->dqb_btime = di->dqb_btime;
1838 if (di->dqb_valid & QIF_ITIME)
1839 dm->dqb_itime = di->dqb_itime;
1840
1841 if (check_blim) {
1842 if (!dm->dqb_bsoftlimit || toqb(dm->dqb_curspace) < dm->dqb_bsoftlimit) {
1843 dm->dqb_btime = 0;
1844 clear_bit(DQ_BLKS_B, &dquot->dq_flags);
1845 }
1846 else if (!(di->dqb_valid & QIF_BTIME)) /* Set grace only if user hasn't provided his own... */
Andrew Perepechko338bf9a2008-04-28 02:14:31 -07001847 dm->dqb_btime = get_seconds() + dqi->dqi_bgrace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 }
1849 if (check_ilim) {
1850 if (!dm->dqb_isoftlimit || dm->dqb_curinodes < dm->dqb_isoftlimit) {
1851 dm->dqb_itime = 0;
1852 clear_bit(DQ_INODES_B, &dquot->dq_flags);
1853 }
1854 else if (!(di->dqb_valid & QIF_ITIME)) /* Set grace only if user hasn't provided his own... */
Andrew Perepechko338bf9a2008-04-28 02:14:31 -07001855 dm->dqb_itime = get_seconds() + dqi->dqi_igrace;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 }
1857 if (dm->dqb_bhardlimit || dm->dqb_bsoftlimit || dm->dqb_ihardlimit || dm->dqb_isoftlimit)
1858 clear_bit(DQ_FAKE_B, &dquot->dq_flags);
1859 else
1860 set_bit(DQ_FAKE_B, &dquot->dq_flags);
1861 spin_unlock(&dq_data_lock);
1862 mark_dquot_dirty(dquot);
Andrew Perepechko338bf9a2008-04-28 02:14:31 -07001863
1864 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865}
1866
1867int vfs_set_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di)
1868{
1869 struct dquot *dquot;
Andrew Perepechko338bf9a2008-04-28 02:14:31 -07001870 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Ingo Molnard3be9152006-03-23 03:00:29 -08001872 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 if (!(dquot = dqget(sb, id, type))) {
Ingo Molnard3be9152006-03-23 03:00:29 -08001874 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return -ESRCH;
1876 }
Andrew Perepechko338bf9a2008-04-28 02:14:31 -07001877 rc = do_set_dqblk(dquot, di);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 dqput(dquot);
Ingo Molnard3be9152006-03-23 03:00:29 -08001879 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Andrew Perepechko338bf9a2008-04-28 02:14:31 -07001880 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
1882
1883/* Generic routine for getting common part of quota file information */
1884int vfs_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii)
1885{
1886 struct mem_dqinfo *mi;
1887
Ingo Molnard3be9152006-03-23 03:00:29 -08001888 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 if (!sb_has_quota_enabled(sb, type)) {
Ingo Molnard3be9152006-03-23 03:00:29 -08001890 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 return -ESRCH;
1892 }
1893 mi = sb_dqopt(sb)->info + type;
1894 spin_lock(&dq_data_lock);
1895 ii->dqi_bgrace = mi->dqi_bgrace;
1896 ii->dqi_igrace = mi->dqi_igrace;
1897 ii->dqi_flags = mi->dqi_flags & DQF_MASK;
1898 ii->dqi_valid = IIF_ALL;
1899 spin_unlock(&dq_data_lock);
Ingo Molnard3be9152006-03-23 03:00:29 -08001900 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 return 0;
1902}
1903
1904/* Generic routine for setting common part of quota file information */
1905int vfs_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii)
1906{
1907 struct mem_dqinfo *mi;
1908
Ingo Molnard3be9152006-03-23 03:00:29 -08001909 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 if (!sb_has_quota_enabled(sb, type)) {
Ingo Molnard3be9152006-03-23 03:00:29 -08001911 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return -ESRCH;
1913 }
1914 mi = sb_dqopt(sb)->info + type;
1915 spin_lock(&dq_data_lock);
1916 if (ii->dqi_valid & IIF_BGRACE)
1917 mi->dqi_bgrace = ii->dqi_bgrace;
1918 if (ii->dqi_valid & IIF_IGRACE)
1919 mi->dqi_igrace = ii->dqi_igrace;
1920 if (ii->dqi_valid & IIF_FLAGS)
1921 mi->dqi_flags = (mi->dqi_flags & ~DQF_MASK) | (ii->dqi_flags & DQF_MASK);
1922 spin_unlock(&dq_data_lock);
1923 mark_info_dirty(sb, type);
1924 /* Force write to disk */
1925 sb->dq_op->write_info(sb, type);
Ingo Molnard3be9152006-03-23 03:00:29 -08001926 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 return 0;
1928}
1929
1930struct quotactl_ops vfs_quotactl_ops = {
1931 .quota_on = vfs_quota_on,
1932 .quota_off = vfs_quota_off,
1933 .quota_sync = vfs_quota_sync,
1934 .get_info = vfs_get_dqinfo,
1935 .set_info = vfs_set_dqinfo,
1936 .get_dqblk = vfs_get_dqblk,
1937 .set_dqblk = vfs_set_dqblk
1938};
1939
1940static ctl_table fs_dqstats_table[] = {
1941 {
1942 .ctl_name = FS_DQ_LOOKUPS,
1943 .procname = "lookups",
1944 .data = &dqstats.lookups,
1945 .maxlen = sizeof(int),
1946 .mode = 0444,
1947 .proc_handler = &proc_dointvec,
1948 },
1949 {
1950 .ctl_name = FS_DQ_DROPS,
1951 .procname = "drops",
1952 .data = &dqstats.drops,
1953 .maxlen = sizeof(int),
1954 .mode = 0444,
1955 .proc_handler = &proc_dointvec,
1956 },
1957 {
1958 .ctl_name = FS_DQ_READS,
1959 .procname = "reads",
1960 .data = &dqstats.reads,
1961 .maxlen = sizeof(int),
1962 .mode = 0444,
1963 .proc_handler = &proc_dointvec,
1964 },
1965 {
1966 .ctl_name = FS_DQ_WRITES,
1967 .procname = "writes",
1968 .data = &dqstats.writes,
1969 .maxlen = sizeof(int),
1970 .mode = 0444,
1971 .proc_handler = &proc_dointvec,
1972 },
1973 {
1974 .ctl_name = FS_DQ_CACHE_HITS,
1975 .procname = "cache_hits",
1976 .data = &dqstats.cache_hits,
1977 .maxlen = sizeof(int),
1978 .mode = 0444,
1979 .proc_handler = &proc_dointvec,
1980 },
1981 {
1982 .ctl_name = FS_DQ_ALLOCATED,
1983 .procname = "allocated_dquots",
1984 .data = &dqstats.allocated_dquots,
1985 .maxlen = sizeof(int),
1986 .mode = 0444,
1987 .proc_handler = &proc_dointvec,
1988 },
1989 {
1990 .ctl_name = FS_DQ_FREE,
1991 .procname = "free_dquots",
1992 .data = &dqstats.free_dquots,
1993 .maxlen = sizeof(int),
1994 .mode = 0444,
1995 .proc_handler = &proc_dointvec,
1996 },
1997 {
1998 .ctl_name = FS_DQ_SYNCS,
1999 .procname = "syncs",
2000 .data = &dqstats.syncs,
2001 .maxlen = sizeof(int),
2002 .mode = 0444,
2003 .proc_handler = &proc_dointvec,
2004 },
Jan Kara8e893462007-10-16 23:29:31 -07002005#ifdef CONFIG_PRINT_QUOTA_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 {
2007 .ctl_name = FS_DQ_WARNINGS,
2008 .procname = "warnings",
2009 .data = &flag_print_warnings,
2010 .maxlen = sizeof(int),
2011 .mode = 0644,
2012 .proc_handler = &proc_dointvec,
2013 },
Jan Kara8e893462007-10-16 23:29:31 -07002014#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 { .ctl_name = 0 },
2016};
2017
2018static ctl_table fs_table[] = {
2019 {
2020 .ctl_name = FS_DQSTATS,
2021 .procname = "quota",
2022 .mode = 0555,
2023 .child = fs_dqstats_table,
2024 },
2025 { .ctl_name = 0 },
2026};
2027
2028static ctl_table sys_table[] = {
2029 {
2030 .ctl_name = CTL_FS,
2031 .procname = "fs",
2032 .mode = 0555,
2033 .child = fs_table,
2034 },
2035 { .ctl_name = 0 },
2036};
2037
2038static int __init dquot_init(void)
2039{
2040 int i;
2041 unsigned long nr_hash, order;
2042
2043 printk(KERN_NOTICE "VFS: Disk quotas %s\n", __DQUOT_VERSION__);
2044
Eric W. Biederman0b4d4142007-02-14 00:34:09 -08002045 register_sysctl_table(sys_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Paul Mundt20c2df82007-07-20 10:11:58 +09002047 dquot_cachep = kmem_cache_create("dquot",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 sizeof(struct dquot), sizeof(unsigned long) * 4,
Paul Jacksonfffb60f2006-03-24 03:16:06 -08002049 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
2050 SLAB_MEM_SPREAD|SLAB_PANIC),
Paul Mundt20c2df82007-07-20 10:11:58 +09002051 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053 order = 0;
2054 dquot_hash = (struct hlist_head *)__get_free_pages(GFP_ATOMIC, order);
2055 if (!dquot_hash)
2056 panic("Cannot create dquot hash table");
2057
2058 /* Find power-of-two hlist_heads which can fit into allocation */
2059 nr_hash = (1UL << order) * PAGE_SIZE / sizeof(struct hlist_head);
2060 dq_hash_bits = 0;
2061 do {
2062 dq_hash_bits++;
2063 } while (nr_hash >> dq_hash_bits);
2064 dq_hash_bits--;
2065
2066 nr_hash = 1UL << dq_hash_bits;
2067 dq_hash_mask = nr_hash - 1;
2068 for (i = 0; i < nr_hash; i++)
2069 INIT_HLIST_HEAD(dquot_hash + i);
2070
2071 printk("Dquot-cache hash table entries: %ld (order %ld, %ld bytes)\n",
2072 nr_hash, order, (PAGE_SIZE << order));
2073
Rusty Russell8e1f9362007-07-17 04:03:17 -07002074 register_shrinker(&dqcache_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Jan Kara8e893462007-10-16 23:29:31 -07002076#ifdef CONFIG_QUOTA_NETLINK_INTERFACE
2077 if (genl_register_family(&quota_genl_family) != 0)
2078 printk(KERN_ERR "VFS: Failed to create quota netlink interface.\n");
2079#endif
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 return 0;
2082}
2083module_init(dquot_init);
2084
2085EXPORT_SYMBOL(register_quota_format);
2086EXPORT_SYMBOL(unregister_quota_format);
2087EXPORT_SYMBOL(dqstats);
2088EXPORT_SYMBOL(dq_data_lock);
2089EXPORT_SYMBOL(vfs_quota_on);
2090EXPORT_SYMBOL(vfs_quota_on_mount);
2091EXPORT_SYMBOL(vfs_quota_off);
2092EXPORT_SYMBOL(vfs_quota_sync);
2093EXPORT_SYMBOL(vfs_get_dqinfo);
2094EXPORT_SYMBOL(vfs_set_dqinfo);
2095EXPORT_SYMBOL(vfs_get_dqblk);
2096EXPORT_SYMBOL(vfs_set_dqblk);
2097EXPORT_SYMBOL(dquot_commit);
2098EXPORT_SYMBOL(dquot_commit_info);
2099EXPORT_SYMBOL(dquot_acquire);
2100EXPORT_SYMBOL(dquot_release);
2101EXPORT_SYMBOL(dquot_mark_dquot_dirty);
2102EXPORT_SYMBOL(dquot_initialize);
2103EXPORT_SYMBOL(dquot_drop);
2104EXPORT_SYMBOL(dquot_alloc_space);
2105EXPORT_SYMBOL(dquot_alloc_inode);
2106EXPORT_SYMBOL(dquot_free_space);
2107EXPORT_SYMBOL(dquot_free_inode);
2108EXPORT_SYMBOL(dquot_transfer);