suppress warning: "quotatypes" defined but not used
[linux-2.6-block.git] / fs / quota / dquot.c
CommitLineData
1da177e4
LT
1/*
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 *
1da177e4
LT
12 * Author: Marco van Wieringen <mvw@planets.elm.net>
13 *
14 * Fixes: Dmitry Gorodchanin <pgmdsg@ibi.com>, 11 Feb 96
15 *
16 * Revised list management to avoid races
17 * -- Bill Hawes, <whawes@star.net>, 9/98
18 *
19 * Fixed races in dquot_transfer(), dqget() and dquot_alloc_...().
20 * As the consequence the locking was moved from dquot_decr_...(),
21 * dquot_incr_...() to calling functions.
22 * invalidate_dquots() now writes modified dquots.
23 * Serialized quota_off() and quota_on() for mount point.
24 * Fixed a few bugs in grow_dquots().
25 * Fixed deadlock in write_dquot() - we no longer account quotas on
26 * quota files
27 * remove_dquot_ref() moved to inode.c - it now traverses through inodes
28 * add_dquot_ref() restarts after blocking
29 * Added check for bogus uid and fixed check for group in quotactl.
30 * Jan Kara, <jack@suse.cz>, sponsored by SuSE CR, 10-11/99
31 *
32 * Used struct list_head instead of own list struct
33 * Invalidation of referenced dquots is no longer possible
34 * Improved free_dquots list management
35 * Quota and i_blocks are now updated in one place to avoid races
36 * Warnings are now delayed so we won't block in critical section
37 * Write updated not to require dquot lock
38 * Jan Kara, <jack@suse.cz>, 9/2000
39 *
40 * Added dynamic quota structure allocation
41 * Jan Kara <jack@suse.cz> 12/2000
42 *
43 * Rewritten quota interface. Implemented new quota format and
44 * formats registering.
45 * Jan Kara, <jack@suse.cz>, 2001,2002
46 *
47 * New SMP locking.
48 * Jan Kara, <jack@suse.cz>, 10/2002
49 *
50 * Added journalled quota support, fix lock inversion problems
51 * Jan Kara, <jack@suse.cz>, 2003,2004
52 *
53 * (C) Copyright 1994 - 1997 Marco van Wieringen
54 */
55
56#include <linux/errno.h>
57#include <linux/kernel.h>
58#include <linux/fs.h>
59#include <linux/mount.h>
60#include <linux/mm.h>
61#include <linux/time.h>
62#include <linux/types.h>
63#include <linux/string.h>
64#include <linux/fcntl.h>
65#include <linux/stat.h>
66#include <linux/tty.h>
67#include <linux/file.h>
68#include <linux/slab.h>
69#include <linux/sysctl.h>
1da177e4
LT
70#include <linux/init.h>
71#include <linux/module.h>
72#include <linux/proc_fs.h>
73#include <linux/security.h>
74#include <linux/kmod.h>
75#include <linux/namei.h>
76#include <linux/buffer_head.h>
16f7e0fe 77#include <linux/capability.h>
be586bab 78#include <linux/quotaops.h>
fb58b731 79#include <linux/writeback.h> /* for inode_lock, oddly enough.. */
1da177e4
LT
80
81#include <asm/uaccess.h>
82
1da177e4 83/*
cc33412f
JK
84 * There are three quota SMP locks. dq_list_lock protects all lists with quotas
85 * and quota formats, dqstats structure containing statistics about the lists
86 * dq_data_lock protects data from dq_dqb and also mem_dqinfo structures and
87 * also guards consistency of dquot->dq_dqb with inode->i_blocks, i_bytes.
1da177e4 88 * i_blocks and i_bytes updates itself are guarded by i_lock acquired directly
cc33412f
JK
89 * in inode_add_bytes() and inode_sub_bytes(). dq_state_lock protects
90 * modifications of quota state (on quotaon and quotaoff) and readers who care
91 * about latest values take it as well.
1da177e4 92 *
cc33412f
JK
93 * The spinlock ordering is hence: dq_data_lock > dq_list_lock > i_lock,
94 * dq_list_lock > dq_state_lock
1da177e4
LT
95 *
96 * Note that some things (eg. sb pointer, type, id) doesn't change during
97 * the life of the dquot structure and so needn't to be protected by a lock
98 *
99 * Any operation working on dquots via inode pointers must hold dqptr_sem. If
100 * operation is just reading pointers from inode (or not using them at all) the
26245c94
JK
101 * read lock is enough. If pointers are altered function must hold write lock.
102 * Special care needs to be taken about S_NOQUOTA inode flag (marking that
103 * inode is a quota file). Functions adding pointers from inode to dquots have
104 * to check this flag under dqptr_sem and then (if S_NOQUOTA is not set) they
105 * have to do all pointer modifications before dropping dqptr_sem. This makes
106 * sure they cannot race with quotaon which first sets S_NOQUOTA flag and
107 * then drops all pointers to dquots from an inode.
1da177e4 108 *
d3be915f 109 * Each dquot has its dq_lock mutex. Locked dquots might not be referenced
1da177e4
LT
110 * from inodes (dquot_alloc_space() and such don't check the dq_lock).
111 * Currently dquot is locked only when it is being read to memory (or space for
112 * it is being allocated) on the first dqget() and when it is being released on
113 * the last dqput(). The allocation and release oparations are serialized by
114 * the dq_lock and by checking the use count in dquot_release(). Write
115 * operations on dquots don't hold dq_lock as they copy data under dq_data_lock
116 * spinlock to internal buffers before writing.
117 *
118 * Lock ordering (including related VFS locks) is the following:
d3be915f
IM
119 * i_mutex > dqonoff_sem > journal_lock > dqptr_sem > dquot->dq_lock >
120 * dqio_mutex
cc33412f
JK
121 * The lock ordering of dqptr_sem imposed by quota code is only dqonoff_sem >
122 * dqptr_sem. But filesystem has to count with the fact that functions such as
123 * dquot_alloc_space() acquire dqptr_sem and they usually have to be called
124 * from inside a transaction to keep filesystem consistency after a crash. Also
125 * filesystems usually want to do some IO on dquot from ->mark_dirty which is
126 * called with dqptr_sem held.
d3be915f 127 * i_mutex on quota files is special (it's below dqio_mutex)
1da177e4
LT
128 */
129
c516610c
JK
130static __cacheline_aligned_in_smp DEFINE_SPINLOCK(dq_list_lock);
131static __cacheline_aligned_in_smp DEFINE_SPINLOCK(dq_state_lock);
132__cacheline_aligned_in_smp DEFINE_SPINLOCK(dq_data_lock);
08d0350c 133EXPORT_SYMBOL(dq_data_lock);
1da177e4 134
da8d1ba2 135#if defined(CONFIG_QUOTA_DEBUG) || defined(CONFIG_PRINT_QUOTA_WARNING)
1da177e4 136static char *quotatypes[] = INITQFNAMES;
da8d1ba2 137#endif
1da177e4
LT
138static struct quota_format_type *quota_formats; /* List of registered formats */
139static struct quota_module_name module_names[] = INIT_QUOTA_MODULE_NAMES;
140
141/* SLAB cache for dquot structures */
e18b890b 142static struct kmem_cache *dquot_cachep;
1da177e4
LT
143
144int register_quota_format(struct quota_format_type *fmt)
145{
146 spin_lock(&dq_list_lock);
147 fmt->qf_next = quota_formats;
148 quota_formats = fmt;
149 spin_unlock(&dq_list_lock);
150 return 0;
151}
08d0350c 152EXPORT_SYMBOL(register_quota_format);
1da177e4
LT
153
154void unregister_quota_format(struct quota_format_type *fmt)
155{
156 struct quota_format_type **actqf;
157
158 spin_lock(&dq_list_lock);
268157ba
JK
159 for (actqf = &quota_formats; *actqf && *actqf != fmt;
160 actqf = &(*actqf)->qf_next)
161 ;
1da177e4
LT
162 if (*actqf)
163 *actqf = (*actqf)->qf_next;
164 spin_unlock(&dq_list_lock);
165}
08d0350c 166EXPORT_SYMBOL(unregister_quota_format);
1da177e4
LT
167
168static struct quota_format_type *find_quota_format(int id)
169{
170 struct quota_format_type *actqf;
171
172 spin_lock(&dq_list_lock);
268157ba
JK
173 for (actqf = quota_formats; actqf && actqf->qf_fmt_id != id;
174 actqf = actqf->qf_next)
175 ;
1da177e4
LT
176 if (!actqf || !try_module_get(actqf->qf_owner)) {
177 int qm;
178
179 spin_unlock(&dq_list_lock);
180
268157ba
JK
181 for (qm = 0; module_names[qm].qm_fmt_id &&
182 module_names[qm].qm_fmt_id != id; qm++)
183 ;
184 if (!module_names[qm].qm_fmt_id ||
185 request_module(module_names[qm].qm_mod_name))
1da177e4
LT
186 return NULL;
187
188 spin_lock(&dq_list_lock);
268157ba
JK
189 for (actqf = quota_formats; actqf && actqf->qf_fmt_id != id;
190 actqf = actqf->qf_next)
191 ;
1da177e4
LT
192 if (actqf && !try_module_get(actqf->qf_owner))
193 actqf = NULL;
194 }
195 spin_unlock(&dq_list_lock);
196 return actqf;
197}
198
199static void put_quota_format(struct quota_format_type *fmt)
200{
201 module_put(fmt->qf_owner);
202}
203
204/*
205 * Dquot List Management:
206 * The quota code uses three lists for dquot management: the inuse_list,
207 * free_dquots, and dquot_hash[] array. A single dquot structure may be
208 * on all three lists, depending on its current state.
209 *
210 * All dquots are placed to the end of inuse_list when first created, and this
211 * list is used for invalidate operation, which must look at every dquot.
212 *
213 * Unused dquots (dq_count == 0) are added to the free_dquots list when freed,
214 * and this list is searched whenever we need an available dquot. Dquots are
215 * removed from the list as soon as they are used again, and
216 * dqstats.free_dquots gives the number of dquots on the list. When
217 * dquot is invalidated it's completely released from memory.
218 *
219 * Dquots with a specific identity (device, type and id) are placed on
220 * one of the dquot_hash[] hash chains. The provides an efficient search
221 * mechanism to locate a specific dquot.
222 */
223
224static LIST_HEAD(inuse_list);
225static LIST_HEAD(free_dquots);
226static unsigned int dq_hash_bits, dq_hash_mask;
227static struct hlist_head *dquot_hash;
228
229struct dqstats dqstats;
08d0350c 230EXPORT_SYMBOL(dqstats);
1da177e4 231
0a5a9c72 232static qsize_t inode_get_rsv_space(struct inode *inode);
871a2931 233static void __dquot_initialize(struct inode *inode, int type);
0a5a9c72 234
1da177e4
LT
235static inline unsigned int
236hashfn(const struct super_block *sb, unsigned int id, int type)
237{
238 unsigned long tmp;
239
240 tmp = (((unsigned long)sb>>L1_CACHE_SHIFT) ^ id) * (MAXQUOTAS - type);
241 return (tmp + (tmp >> dq_hash_bits)) & dq_hash_mask;
242}
243
244/*
245 * Following list functions expect dq_list_lock to be held
246 */
247static inline void insert_dquot_hash(struct dquot *dquot)
248{
268157ba
JK
249 struct hlist_head *head;
250 head = dquot_hash + hashfn(dquot->dq_sb, dquot->dq_id, dquot->dq_type);
1da177e4
LT
251 hlist_add_head(&dquot->dq_hash, head);
252}
253
254static inline void remove_dquot_hash(struct dquot *dquot)
255{
256 hlist_del_init(&dquot->dq_hash);
257}
258
7a2435d8
JK
259static struct dquot *find_dquot(unsigned int hashent, struct super_block *sb,
260 unsigned int id, int type)
1da177e4
LT
261{
262 struct hlist_node *node;
263 struct dquot *dquot;
264
265 hlist_for_each (node, dquot_hash+hashent) {
266 dquot = hlist_entry(node, struct dquot, dq_hash);
268157ba
JK
267 if (dquot->dq_sb == sb && dquot->dq_id == id &&
268 dquot->dq_type == type)
1da177e4
LT
269 return dquot;
270 }
dd6f3c6d 271 return NULL;
1da177e4
LT
272}
273
274/* Add a dquot to the tail of the free list */
275static inline void put_dquot_last(struct dquot *dquot)
276{
8e13059a 277 list_add_tail(&dquot->dq_free, &free_dquots);
1da177e4
LT
278 dqstats.free_dquots++;
279}
280
281static inline void remove_free_dquot(struct dquot *dquot)
282{
283 if (list_empty(&dquot->dq_free))
284 return;
285 list_del_init(&dquot->dq_free);
286 dqstats.free_dquots--;
287}
288
289static inline void put_inuse(struct dquot *dquot)
290{
291 /* We add to the back of inuse list so we don't have to restart
292 * when traversing this list and we block */
8e13059a 293 list_add_tail(&dquot->dq_inuse, &inuse_list);
1da177e4
LT
294 dqstats.allocated_dquots++;
295}
296
297static inline void remove_inuse(struct dquot *dquot)
298{
299 dqstats.allocated_dquots--;
300 list_del(&dquot->dq_inuse);
301}
302/*
303 * End of list functions needing dq_list_lock
304 */
305
306static void wait_on_dquot(struct dquot *dquot)
307{
d3be915f
IM
308 mutex_lock(&dquot->dq_lock);
309 mutex_unlock(&dquot->dq_lock);
1da177e4
LT
310}
311
03f6e92b
JK
312static inline int dquot_dirty(struct dquot *dquot)
313{
314 return test_bit(DQ_MOD_B, &dquot->dq_flags);
315}
316
317static inline int mark_dquot_dirty(struct dquot *dquot)
318{
319 return dquot->dq_sb->dq_op->mark_dirty(dquot);
320}
1da177e4 321
eabf290d 322/* Mark dquot dirty in atomic manner, and return it's old dirty flag state */
1da177e4
LT
323int dquot_mark_dquot_dirty(struct dquot *dquot)
324{
eabf290d
DM
325 int ret = 1;
326
327 /* If quota is dirty already, we don't have to acquire dq_list_lock */
328 if (test_bit(DQ_MOD_B, &dquot->dq_flags))
329 return 1;
330
1da177e4 331 spin_lock(&dq_list_lock);
eabf290d 332 if (!test_and_set_bit(DQ_MOD_B, &dquot->dq_flags)) {
1da177e4
LT
333 list_add(&dquot->dq_dirty, &sb_dqopt(dquot->dq_sb)->
334 info[dquot->dq_type].dqi_dirty_list);
eabf290d
DM
335 ret = 0;
336 }
1da177e4 337 spin_unlock(&dq_list_lock);
eabf290d 338 return ret;
1da177e4 339}
08d0350c 340EXPORT_SYMBOL(dquot_mark_dquot_dirty);
1da177e4 341
dc52dd3a
DM
342/* Dirtify all the dquots - this can block when journalling */
343static inline int mark_all_dquot_dirty(struct dquot * const *dquot)
344{
345 int ret, err, cnt;
346
347 ret = err = 0;
348 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
349 if (dquot[cnt])
350 /* Even in case of error we have to continue */
351 ret = mark_dquot_dirty(dquot[cnt]);
352 if (!err)
353 err = ret;
354 }
355 return err;
356}
357
358static inline void dqput_all(struct dquot **dquot)
359{
360 unsigned int cnt;
361
362 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
363 dqput(dquot[cnt]);
364}
365
1da177e4
LT
366/* This function needs dq_list_lock */
367static inline int clear_dquot_dirty(struct dquot *dquot)
368{
369 if (!test_and_clear_bit(DQ_MOD_B, &dquot->dq_flags))
370 return 0;
371 list_del_init(&dquot->dq_dirty);
372 return 1;
373}
374
375void mark_info_dirty(struct super_block *sb, int type)
376{
377 set_bit(DQF_INFO_DIRTY_B, &sb_dqopt(sb)->info[type].dqi_flags);
378}
379EXPORT_SYMBOL(mark_info_dirty);
380
381/*
382 * Read dquot from disk and alloc space for it
383 */
384
385int dquot_acquire(struct dquot *dquot)
386{
387 int ret = 0, ret2 = 0;
388 struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
389
d3be915f
IM
390 mutex_lock(&dquot->dq_lock);
391 mutex_lock(&dqopt->dqio_mutex);
1da177e4
LT
392 if (!test_bit(DQ_READ_B, &dquot->dq_flags))
393 ret = dqopt->ops[dquot->dq_type]->read_dqblk(dquot);
394 if (ret < 0)
395 goto out_iolock;
396 set_bit(DQ_READ_B, &dquot->dq_flags);
397 /* Instantiate dquot if needed */
398 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags) && !dquot->dq_off) {
399 ret = dqopt->ops[dquot->dq_type]->commit_dqblk(dquot);
400 /* Write the info if needed */
268157ba
JK
401 if (info_dirty(&dqopt->info[dquot->dq_type])) {
402 ret2 = dqopt->ops[dquot->dq_type]->write_file_info(
403 dquot->dq_sb, dquot->dq_type);
404 }
1da177e4
LT
405 if (ret < 0)
406 goto out_iolock;
407 if (ret2 < 0) {
408 ret = ret2;
409 goto out_iolock;
410 }
411 }
412 set_bit(DQ_ACTIVE_B, &dquot->dq_flags);
413out_iolock:
d3be915f
IM
414 mutex_unlock(&dqopt->dqio_mutex);
415 mutex_unlock(&dquot->dq_lock);
1da177e4
LT
416 return ret;
417}
08d0350c 418EXPORT_SYMBOL(dquot_acquire);
1da177e4
LT
419
420/*
421 * Write dquot to disk
422 */
423int dquot_commit(struct dquot *dquot)
424{
425 int ret = 0, ret2 = 0;
426 struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
427
d3be915f 428 mutex_lock(&dqopt->dqio_mutex);
1da177e4
LT
429 spin_lock(&dq_list_lock);
430 if (!clear_dquot_dirty(dquot)) {
431 spin_unlock(&dq_list_lock);
432 goto out_sem;
433 }
434 spin_unlock(&dq_list_lock);
435 /* Inactive dquot can be only if there was error during read/init
436 * => we have better not writing it */
437 if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) {
438 ret = dqopt->ops[dquot->dq_type]->commit_dqblk(dquot);
268157ba
JK
439 if (info_dirty(&dqopt->info[dquot->dq_type])) {
440 ret2 = dqopt->ops[dquot->dq_type]->write_file_info(
441 dquot->dq_sb, dquot->dq_type);
442 }
1da177e4
LT
443 if (ret >= 0)
444 ret = ret2;
445 }
446out_sem:
d3be915f 447 mutex_unlock(&dqopt->dqio_mutex);
1da177e4
LT
448 return ret;
449}
08d0350c 450EXPORT_SYMBOL(dquot_commit);
1da177e4
LT
451
452/*
453 * Release dquot
454 */
455int dquot_release(struct dquot *dquot)
456{
457 int ret = 0, ret2 = 0;
458 struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
459
d3be915f 460 mutex_lock(&dquot->dq_lock);
1da177e4
LT
461 /* Check whether we are not racing with some other dqget() */
462 if (atomic_read(&dquot->dq_count) > 1)
463 goto out_dqlock;
d3be915f 464 mutex_lock(&dqopt->dqio_mutex);
1da177e4
LT
465 if (dqopt->ops[dquot->dq_type]->release_dqblk) {
466 ret = dqopt->ops[dquot->dq_type]->release_dqblk(dquot);
467 /* Write the info */
268157ba
JK
468 if (info_dirty(&dqopt->info[dquot->dq_type])) {
469 ret2 = dqopt->ops[dquot->dq_type]->write_file_info(
470 dquot->dq_sb, dquot->dq_type);
471 }
1da177e4
LT
472 if (ret >= 0)
473 ret = ret2;
474 }
475 clear_bit(DQ_ACTIVE_B, &dquot->dq_flags);
d3be915f 476 mutex_unlock(&dqopt->dqio_mutex);
1da177e4 477out_dqlock:
d3be915f 478 mutex_unlock(&dquot->dq_lock);
1da177e4
LT
479 return ret;
480}
08d0350c 481EXPORT_SYMBOL(dquot_release);
1da177e4 482
7d9056ba 483void dquot_destroy(struct dquot *dquot)
74f783af
JK
484{
485 kmem_cache_free(dquot_cachep, dquot);
486}
7d9056ba 487EXPORT_SYMBOL(dquot_destroy);
74f783af
JK
488
489static inline void do_destroy_dquot(struct dquot *dquot)
490{
491 dquot->dq_sb->dq_op->destroy_dquot(dquot);
492}
493
1da177e4
LT
494/* Invalidate all dquots on the list. Note that this function is called after
495 * quota is disabled and pointers from inodes removed so there cannot be new
6362e4d4
JK
496 * quota users. There can still be some users of quotas due to inodes being
497 * just deleted or pruned by prune_icache() (those are not attached to any
cc33412f 498 * list) or parallel quotactl call. We have to wait for such users.
6362e4d4 499 */
1da177e4
LT
500static void invalidate_dquots(struct super_block *sb, int type)
501{
c33ed271 502 struct dquot *dquot, *tmp;
1da177e4 503
6362e4d4 504restart:
1da177e4 505 spin_lock(&dq_list_lock);
c33ed271 506 list_for_each_entry_safe(dquot, tmp, &inuse_list, dq_inuse) {
1da177e4
LT
507 if (dquot->dq_sb != sb)
508 continue;
509 if (dquot->dq_type != type)
510 continue;
6362e4d4
JK
511 /* Wait for dquot users */
512 if (atomic_read(&dquot->dq_count)) {
513 DEFINE_WAIT(wait);
514
515 atomic_inc(&dquot->dq_count);
516 prepare_to_wait(&dquot->dq_wait_unused, &wait,
517 TASK_UNINTERRUPTIBLE);
518 spin_unlock(&dq_list_lock);
519 /* Once dqput() wakes us up, we know it's time to free
520 * the dquot.
521 * IMPORTANT: we rely on the fact that there is always
522 * at most one process waiting for dquot to free.
523 * Otherwise dq_count would be > 1 and we would never
524 * wake up.
525 */
526 if (atomic_read(&dquot->dq_count) > 1)
527 schedule();
528 finish_wait(&dquot->dq_wait_unused, &wait);
529 dqput(dquot);
530 /* At this moment dquot() need not exist (it could be
531 * reclaimed by prune_dqcache(). Hence we must
532 * restart. */
533 goto restart;
534 }
535 /*
536 * Quota now has no users and it has been written on last
537 * dqput()
538 */
1da177e4
LT
539 remove_dquot_hash(dquot);
540 remove_free_dquot(dquot);
541 remove_inuse(dquot);
74f783af 542 do_destroy_dquot(dquot);
1da177e4
LT
543 }
544 spin_unlock(&dq_list_lock);
545}
546
12c77527
JK
547/* Call callback for every active dquot on given filesystem */
548int dquot_scan_active(struct super_block *sb,
549 int (*fn)(struct dquot *dquot, unsigned long priv),
550 unsigned long priv)
551{
552 struct dquot *dquot, *old_dquot = NULL;
553 int ret = 0;
554
555 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
556 spin_lock(&dq_list_lock);
557 list_for_each_entry(dquot, &inuse_list, dq_inuse) {
558 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags))
559 continue;
560 if (dquot->dq_sb != sb)
561 continue;
562 /* Now we have active dquot so we can just increase use count */
563 atomic_inc(&dquot->dq_count);
564 dqstats.lookups++;
565 spin_unlock(&dq_list_lock);
566 dqput(old_dquot);
567 old_dquot = dquot;
568 ret = fn(dquot, priv);
569 if (ret < 0)
570 goto out;
571 spin_lock(&dq_list_lock);
572 /* We are safe to continue now because our dquot could not
573 * be moved out of the inuse list while we hold the reference */
574 }
575 spin_unlock(&dq_list_lock);
576out:
577 dqput(old_dquot);
578 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
579 return ret;
580}
08d0350c 581EXPORT_SYMBOL(dquot_scan_active);
12c77527 582
5fb324ad 583int vfs_quota_sync(struct super_block *sb, int type, int wait)
1da177e4
LT
584{
585 struct list_head *dirty;
586 struct dquot *dquot;
587 struct quota_info *dqopt = sb_dqopt(sb);
588 int cnt;
589
d3be915f 590 mutex_lock(&dqopt->dqonoff_mutex);
1da177e4
LT
591 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
592 if (type != -1 && cnt != type)
593 continue;
f55abc0f 594 if (!sb_has_quota_active(sb, cnt))
1da177e4
LT
595 continue;
596 spin_lock(&dq_list_lock);
597 dirty = &dqopt->info[cnt].dqi_dirty_list;
598 while (!list_empty(dirty)) {
268157ba
JK
599 dquot = list_first_entry(dirty, struct dquot,
600 dq_dirty);
1da177e4
LT
601 /* Dirty and inactive can be only bad dquot... */
602 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) {
603 clear_dquot_dirty(dquot);
604 continue;
605 }
606 /* Now we have active dquot from which someone is
607 * holding reference so we can safely just increase
608 * use count */
609 atomic_inc(&dquot->dq_count);
610 dqstats.lookups++;
611 spin_unlock(&dq_list_lock);
612 sb->dq_op->write_dquot(dquot);
613 dqput(dquot);
614 spin_lock(&dq_list_lock);
615 }
616 spin_unlock(&dq_list_lock);
617 }
618
619 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
f55abc0f
JK
620 if ((cnt == type || type == -1) && sb_has_quota_active(sb, cnt)
621 && info_dirty(&dqopt->info[cnt]))
1da177e4
LT
622 sb->dq_op->write_info(sb, cnt);
623 spin_lock(&dq_list_lock);
624 dqstats.syncs++;
625 spin_unlock(&dq_list_lock);
d3be915f 626 mutex_unlock(&dqopt->dqonoff_mutex);
1da177e4 627
5fb324ad
CH
628 if (!wait || (sb_dqopt(sb)->flags & DQUOT_QUOTA_SYS_FILE))
629 return 0;
630
631 /* This is not very clever (and fast) but currently I don't know about
632 * any other simple way of getting quota data to disk and we must get
633 * them there for userspace to be visible... */
634 if (sb->s_op->sync_fs)
635 sb->s_op->sync_fs(sb, 1);
636 sync_blockdev(sb->s_bdev);
637
638 /*
639 * Now when everything is written we can discard the pagecache so
640 * that userspace sees the changes.
641 */
642 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
643 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
644 if (type != -1 && cnt != type)
645 continue;
646 if (!sb_has_quota_active(sb, cnt))
647 continue;
648 mutex_lock_nested(&sb_dqopt(sb)->files[cnt]->i_mutex,
649 I_MUTEX_QUOTA);
650 truncate_inode_pages(&sb_dqopt(sb)->files[cnt]->i_data, 0);
651 mutex_unlock(&sb_dqopt(sb)->files[cnt]->i_mutex);
652 }
653 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
654
1da177e4
LT
655 return 0;
656}
08d0350c 657EXPORT_SYMBOL(vfs_quota_sync);
1da177e4
LT
658
659/* Free unused dquots from cache */
660static void prune_dqcache(int count)
661{
662 struct list_head *head;
663 struct dquot *dquot;
664
665 head = free_dquots.prev;
666 while (head != &free_dquots && count) {
667 dquot = list_entry(head, struct dquot, dq_free);
668 remove_dquot_hash(dquot);
669 remove_free_dquot(dquot);
670 remove_inuse(dquot);
74f783af 671 do_destroy_dquot(dquot);
1da177e4
LT
672 count--;
673 head = free_dquots.prev;
674 }
675}
676
677/*
678 * This is called from kswapd when we think we need some
679 * more memory
680 */
681
27496a8c 682static int shrink_dqcache_memory(int nr, gfp_t gfp_mask)
1da177e4
LT
683{
684 if (nr) {
685 spin_lock(&dq_list_lock);
686 prune_dqcache(nr);
687 spin_unlock(&dq_list_lock);
688 }
689 return (dqstats.free_dquots / 100) * sysctl_vfs_cache_pressure;
690}
691
8e1f936b
RR
692static struct shrinker dqcache_shrinker = {
693 .shrink = shrink_dqcache_memory,
694 .seeks = DEFAULT_SEEKS,
695};
696
1da177e4
LT
697/*
698 * Put reference to dquot
699 * NOTE: If you change this function please check whether dqput_blocks() works right...
1da177e4 700 */
3d9ea253 701void dqput(struct dquot *dquot)
1da177e4 702{
b48d3805
JK
703 int ret;
704
1da177e4
LT
705 if (!dquot)
706 return;
62af9b52 707#ifdef CONFIG_QUOTA_DEBUG
1da177e4
LT
708 if (!atomic_read(&dquot->dq_count)) {
709 printk("VFS: dqput: trying to free free dquot\n");
710 printk("VFS: device %s, dquot of %s %d\n",
711 dquot->dq_sb->s_id,
712 quotatypes[dquot->dq_type],
713 dquot->dq_id);
714 BUG();
715 }
716#endif
717
718 spin_lock(&dq_list_lock);
719 dqstats.drops++;
720 spin_unlock(&dq_list_lock);
721we_slept:
722 spin_lock(&dq_list_lock);
723 if (atomic_read(&dquot->dq_count) > 1) {
724 /* We have more than one user... nothing to do */
725 atomic_dec(&dquot->dq_count);
6362e4d4 726 /* Releasing dquot during quotaoff phase? */
f55abc0f 727 if (!sb_has_quota_active(dquot->dq_sb, dquot->dq_type) &&
6362e4d4
JK
728 atomic_read(&dquot->dq_count) == 1)
729 wake_up(&dquot->dq_wait_unused);
1da177e4
LT
730 spin_unlock(&dq_list_lock);
731 return;
732 }
733 /* Need to release dquot? */
734 if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags) && dquot_dirty(dquot)) {
735 spin_unlock(&dq_list_lock);
736 /* Commit dquot before releasing */
b48d3805
JK
737 ret = dquot->dq_sb->dq_op->write_dquot(dquot);
738 if (ret < 0) {
739 printk(KERN_ERR "VFS: cannot write quota structure on "
740 "device %s (error %d). Quota may get out of "
741 "sync!\n", dquot->dq_sb->s_id, ret);
742 /*
743 * We clear dirty bit anyway, so that we avoid
744 * infinite loop here
745 */
746 spin_lock(&dq_list_lock);
747 clear_dquot_dirty(dquot);
748 spin_unlock(&dq_list_lock);
749 }
1da177e4
LT
750 goto we_slept;
751 }
752 /* Clear flag in case dquot was inactive (something bad happened) */
753 clear_dquot_dirty(dquot);
754 if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) {
755 spin_unlock(&dq_list_lock);
756 dquot->dq_sb->dq_op->release_dquot(dquot);
757 goto we_slept;
758 }
759 atomic_dec(&dquot->dq_count);
62af9b52 760#ifdef CONFIG_QUOTA_DEBUG
1da177e4 761 /* sanity check */
8abf6a47 762 BUG_ON(!list_empty(&dquot->dq_free));
1da177e4
LT
763#endif
764 put_dquot_last(dquot);
765 spin_unlock(&dq_list_lock);
766}
08d0350c 767EXPORT_SYMBOL(dqput);
1da177e4 768
7d9056ba 769struct dquot *dquot_alloc(struct super_block *sb, int type)
74f783af
JK
770{
771 return kmem_cache_zalloc(dquot_cachep, GFP_NOFS);
772}
7d9056ba 773EXPORT_SYMBOL(dquot_alloc);
74f783af 774
1da177e4
LT
775static struct dquot *get_empty_dquot(struct super_block *sb, int type)
776{
777 struct dquot *dquot;
778
74f783af 779 dquot = sb->dq_op->alloc_dquot(sb, type);
1da177e4 780 if(!dquot)
dd6f3c6d 781 return NULL;
1da177e4 782
d3be915f 783 mutex_init(&dquot->dq_lock);
1da177e4
LT
784 INIT_LIST_HEAD(&dquot->dq_free);
785 INIT_LIST_HEAD(&dquot->dq_inuse);
786 INIT_HLIST_NODE(&dquot->dq_hash);
787 INIT_LIST_HEAD(&dquot->dq_dirty);
6362e4d4 788 init_waitqueue_head(&dquot->dq_wait_unused);
1da177e4
LT
789 dquot->dq_sb = sb;
790 dquot->dq_type = type;
791 atomic_set(&dquot->dq_count, 1);
792
793 return dquot;
794}
795
796/*
797 * Get reference to dquot
cc33412f
JK
798 *
799 * Locking is slightly tricky here. We are guarded from parallel quotaoff()
800 * destroying our dquot by:
801 * a) checking for quota flags under dq_list_lock and
802 * b) getting a reference to dquot before we release dq_list_lock
1da177e4 803 */
3d9ea253 804struct dquot *dqget(struct super_block *sb, unsigned int id, int type)
1da177e4
LT
805{
806 unsigned int hashent = hashfn(sb, id, type);
dd6f3c6d 807 struct dquot *dquot = NULL, *empty = NULL;
1da177e4 808
f55abc0f 809 if (!sb_has_quota_active(sb, type))
dd6f3c6d 810 return NULL;
1da177e4
LT
811we_slept:
812 spin_lock(&dq_list_lock);
cc33412f
JK
813 spin_lock(&dq_state_lock);
814 if (!sb_has_quota_active(sb, type)) {
815 spin_unlock(&dq_state_lock);
816 spin_unlock(&dq_list_lock);
817 goto out;
818 }
819 spin_unlock(&dq_state_lock);
820
dd6f3c6d
JK
821 dquot = find_dquot(hashent, sb, id, type);
822 if (!dquot) {
823 if (!empty) {
1da177e4 824 spin_unlock(&dq_list_lock);
dd6f3c6d
JK
825 empty = get_empty_dquot(sb, type);
826 if (!empty)
1da177e4
LT
827 schedule(); /* Try to wait for a moment... */
828 goto we_slept;
829 }
830 dquot = empty;
dd6f3c6d 831 empty = NULL;
1da177e4
LT
832 dquot->dq_id = id;
833 /* all dquots go on the inuse_list */
834 put_inuse(dquot);
835 /* hash it first so it can be found */
836 insert_dquot_hash(dquot);
837 dqstats.lookups++;
838 spin_unlock(&dq_list_lock);
839 } else {
840 if (!atomic_read(&dquot->dq_count))
841 remove_free_dquot(dquot);
842 atomic_inc(&dquot->dq_count);
843 dqstats.cache_hits++;
844 dqstats.lookups++;
845 spin_unlock(&dq_list_lock);
1da177e4 846 }
268157ba
JK
847 /* Wait for dq_lock - after this we know that either dquot_release() is
848 * already finished or it will be canceled due to dq_count > 1 test */
1da177e4 849 wait_on_dquot(dquot);
268157ba
JK
850 /* Read the dquot / allocate space in quota file */
851 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags) &&
852 sb->dq_op->acquire_dquot(dquot) < 0) {
1da177e4 853 dqput(dquot);
dd6f3c6d 854 dquot = NULL;
cc33412f 855 goto out;
1da177e4 856 }
62af9b52 857#ifdef CONFIG_QUOTA_DEBUG
8abf6a47 858 BUG_ON(!dquot->dq_sb); /* Has somebody invalidated entry under us? */
1da177e4 859#endif
cc33412f
JK
860out:
861 if (empty)
862 do_destroy_dquot(empty);
1da177e4
LT
863
864 return dquot;
865}
08d0350c 866EXPORT_SYMBOL(dqget);
1da177e4
LT
867
868static int dqinit_needed(struct inode *inode, int type)
869{
870 int cnt;
871
872 if (IS_NOQUOTA(inode))
873 return 0;
874 if (type != -1)
dd6f3c6d 875 return !inode->i_dquot[type];
1da177e4 876 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
dd6f3c6d 877 if (!inode->i_dquot[cnt])
1da177e4
LT
878 return 1;
879 return 0;
880}
881
d3be915f 882/* This routine is guarded by dqonoff_mutex mutex */
1da177e4
LT
883static void add_dquot_ref(struct super_block *sb, int type)
884{
941d2380 885 struct inode *inode, *old_inode = NULL;
62af9b52 886#ifdef CONFIG_QUOTA_DEBUG
0a5a9c72 887 int reserved = 0;
4c5e6c0e 888#endif
1da177e4 889
d003fb70
CH
890 spin_lock(&inode_lock);
891 list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
b6fac63c 892 if (inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE|I_NEW))
aabb8fdb 893 continue;
62af9b52 894#ifdef CONFIG_QUOTA_DEBUG
0a5a9c72
JK
895 if (unlikely(inode_get_rsv_space(inode) > 0))
896 reserved = 1;
4c5e6c0e 897#endif
d003fb70
CH
898 if (!atomic_read(&inode->i_writecount))
899 continue;
900 if (!dqinit_needed(inode, type))
901 continue;
d003fb70
CH
902
903 __iget(inode);
904 spin_unlock(&inode_lock);
905
941d2380 906 iput(old_inode);
871a2931 907 __dquot_initialize(inode, type);
941d2380
JK
908 /* We hold a reference to 'inode' so it couldn't have been
909 * removed from s_inodes list while we dropped the inode_lock.
910 * We cannot iput the inode now as we can be holding the last
911 * reference and we cannot iput it under inode_lock. So we
912 * keep the reference and iput it later. */
913 old_inode = inode;
914 spin_lock(&inode_lock);
1da177e4 915 }
d003fb70 916 spin_unlock(&inode_lock);
941d2380 917 iput(old_inode);
0a5a9c72 918
62af9b52 919#ifdef CONFIG_QUOTA_DEBUG
0a5a9c72
JK
920 if (reserved) {
921 printk(KERN_WARNING "VFS (%s): Writes happened before quota"
922 " was turned on thus quota information is probably "
923 "inconsistent. Please run quotacheck(8).\n", sb->s_id);
924 }
4c5e6c0e 925#endif
1da177e4
LT
926}
927
268157ba
JK
928/*
929 * Return 0 if dqput() won't block.
930 * (note that 1 doesn't necessarily mean blocking)
931 */
1da177e4
LT
932static inline int dqput_blocks(struct dquot *dquot)
933{
934 if (atomic_read(&dquot->dq_count) <= 1)
935 return 1;
936 return 0;
937}
938
268157ba
JK
939/*
940 * Remove references to dquots from inode and add dquot to list for freeing
941 * if we have the last referece to dquot
942 * We can't race with anybody because we hold dqptr_sem for writing...
943 */
e5f00f42
AB
944static int remove_inode_dquot_ref(struct inode *inode, int type,
945 struct list_head *tofree_head)
1da177e4
LT
946{
947 struct dquot *dquot = inode->i_dquot[type];
948
dd6f3c6d
JK
949 inode->i_dquot[type] = NULL;
950 if (dquot) {
1da177e4 951 if (dqput_blocks(dquot)) {
62af9b52 952#ifdef CONFIG_QUOTA_DEBUG
1da177e4
LT
953 if (atomic_read(&dquot->dq_count) != 1)
954 printk(KERN_WARNING "VFS: Adding dquot with dq_count %d to dispose list.\n", atomic_read(&dquot->dq_count));
955#endif
956 spin_lock(&dq_list_lock);
268157ba
JK
957 /* As dquot must have currently users it can't be on
958 * the free list... */
959 list_add(&dquot->dq_free, tofree_head);
1da177e4
LT
960 spin_unlock(&dq_list_lock);
961 return 1;
962 }
963 else
964 dqput(dquot); /* We have guaranteed we won't block */
965 }
966 return 0;
967}
968
268157ba
JK
969/*
970 * Free list of dquots
971 * Dquots are removed from inodes and no new references can be got so we are
972 * the only ones holding reference
973 */
1da177e4
LT
974static void put_dquot_list(struct list_head *tofree_head)
975{
976 struct list_head *act_head;
977 struct dquot *dquot;
978
979 act_head = tofree_head->next;
1da177e4
LT
980 while (act_head != tofree_head) {
981 dquot = list_entry(act_head, struct dquot, dq_free);
982 act_head = act_head->next;
268157ba
JK
983 /* Remove dquot from the list so we won't have problems... */
984 list_del_init(&dquot->dq_free);
1da177e4
LT
985 dqput(dquot);
986 }
987}
988
fb58b731
CH
989static void remove_dquot_ref(struct super_block *sb, int type,
990 struct list_head *tofree_head)
991{
992 struct inode *inode;
993
994 spin_lock(&inode_lock);
995 list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
aabb8fdb
NP
996 /*
997 * We have to scan also I_NEW inodes because they can already
998 * have quota pointer initialized. Luckily, we need to touch
999 * only quota pointers and these have separate locking
1000 * (dqptr_sem).
1001 */
fb58b731
CH
1002 if (!IS_NOQUOTA(inode))
1003 remove_inode_dquot_ref(inode, type, tofree_head);
1004 }
1005 spin_unlock(&inode_lock);
1006}
1007
1da177e4
LT
1008/* Gather all references from inodes and drop them */
1009static void drop_dquot_ref(struct super_block *sb, int type)
1010{
1011 LIST_HEAD(tofree_head);
1012
fb58b731
CH
1013 if (sb->dq_op) {
1014 down_write(&sb_dqopt(sb)->dqptr_sem);
1015 remove_dquot_ref(sb, type, &tofree_head);
1016 up_write(&sb_dqopt(sb)->dqptr_sem);
1017 put_dquot_list(&tofree_head);
1018 }
1da177e4
LT
1019}
1020
12095460 1021static inline void dquot_incr_inodes(struct dquot *dquot, qsize_t number)
1da177e4
LT
1022{
1023 dquot->dq_dqb.dqb_curinodes += number;
1024}
1025
1026static inline void dquot_incr_space(struct dquot *dquot, qsize_t number)
1027{
1028 dquot->dq_dqb.dqb_curspace += number;
1029}
1030
f18df228
MC
1031static inline void dquot_resv_space(struct dquot *dquot, qsize_t number)
1032{
1033 dquot->dq_dqb.dqb_rsvspace += number;
1034}
1035
740d9dcd
MC
1036/*
1037 * Claim reserved quota space
1038 */
0a5a9c72 1039static void dquot_claim_reserved_space(struct dquot *dquot, qsize_t number)
740d9dcd 1040{
0a5a9c72
JK
1041 if (dquot->dq_dqb.dqb_rsvspace < number) {
1042 WARN_ON_ONCE(1);
1043 number = dquot->dq_dqb.dqb_rsvspace;
1044 }
740d9dcd
MC
1045 dquot->dq_dqb.dqb_curspace += number;
1046 dquot->dq_dqb.dqb_rsvspace -= number;
1047}
1048
1049static inline
1050void dquot_free_reserved_space(struct dquot *dquot, qsize_t number)
1051{
0a5a9c72
JK
1052 if (dquot->dq_dqb.dqb_rsvspace >= number)
1053 dquot->dq_dqb.dqb_rsvspace -= number;
1054 else {
1055 WARN_ON_ONCE(1);
1056 dquot->dq_dqb.dqb_rsvspace = 0;
1057 }
740d9dcd
MC
1058}
1059
7a2435d8 1060static void dquot_decr_inodes(struct dquot *dquot, qsize_t number)
1da177e4 1061{
db49d2df
JK
1062 if (sb_dqopt(dquot->dq_sb)->flags & DQUOT_NEGATIVE_USAGE ||
1063 dquot->dq_dqb.dqb_curinodes >= number)
1da177e4
LT
1064 dquot->dq_dqb.dqb_curinodes -= number;
1065 else
1066 dquot->dq_dqb.dqb_curinodes = 0;
1067 if (dquot->dq_dqb.dqb_curinodes <= dquot->dq_dqb.dqb_isoftlimit)
1068 dquot->dq_dqb.dqb_itime = (time_t) 0;
1069 clear_bit(DQ_INODES_B, &dquot->dq_flags);
1070}
1071
7a2435d8 1072static void dquot_decr_space(struct dquot *dquot, qsize_t number)
1da177e4 1073{
db49d2df
JK
1074 if (sb_dqopt(dquot->dq_sb)->flags & DQUOT_NEGATIVE_USAGE ||
1075 dquot->dq_dqb.dqb_curspace >= number)
1da177e4
LT
1076 dquot->dq_dqb.dqb_curspace -= number;
1077 else
1078 dquot->dq_dqb.dqb_curspace = 0;
12095460 1079 if (dquot->dq_dqb.dqb_curspace <= dquot->dq_dqb.dqb_bsoftlimit)
1da177e4
LT
1080 dquot->dq_dqb.dqb_btime = (time_t) 0;
1081 clear_bit(DQ_BLKS_B, &dquot->dq_flags);
1082}
1083
c525460e
JK
1084static int warning_issued(struct dquot *dquot, const int warntype)
1085{
1086 int flag = (warntype == QUOTA_NL_BHARDWARN ||
1087 warntype == QUOTA_NL_BSOFTLONGWARN) ? DQ_BLKS_B :
1088 ((warntype == QUOTA_NL_IHARDWARN ||
1089 warntype == QUOTA_NL_ISOFTLONGWARN) ? DQ_INODES_B : 0);
1090
1091 if (!flag)
1092 return 0;
1093 return test_and_set_bit(flag, &dquot->dq_flags);
1094}
1095
8e893469 1096#ifdef CONFIG_PRINT_QUOTA_WARNING
1da177e4
LT
1097static int flag_print_warnings = 1;
1098
7a2435d8 1099static int need_print_warning(struct dquot *dquot)
1da177e4
LT
1100{
1101 if (!flag_print_warnings)
1102 return 0;
1103
1104 switch (dquot->dq_type) {
1105 case USRQUOTA:
da9592ed 1106 return current_fsuid() == dquot->dq_id;
1da177e4
LT
1107 case GRPQUOTA:
1108 return in_group_p(dquot->dq_id);
1109 }
1110 return 0;
1111}
1112
1da177e4 1113/* Print warning to user which exceeded quota */
c525460e 1114static void print_warning(struct dquot *dquot, const int warntype)
1da177e4
LT
1115{
1116 char *msg = NULL;
24ec839c 1117 struct tty_struct *tty;
1da177e4 1118
657d3bfa
JK
1119 if (warntype == QUOTA_NL_IHARDBELOW ||
1120 warntype == QUOTA_NL_ISOFTBELOW ||
1121 warntype == QUOTA_NL_BHARDBELOW ||
1122 warntype == QUOTA_NL_BSOFTBELOW || !need_print_warning(dquot))
1da177e4
LT
1123 return;
1124
24ec839c
PZ
1125 tty = get_current_tty();
1126 if (!tty)
452a00d2 1127 return;
24ec839c 1128 tty_write_message(tty, dquot->dq_sb->s_id);
8e893469 1129 if (warntype == QUOTA_NL_ISOFTWARN || warntype == QUOTA_NL_BSOFTWARN)
24ec839c 1130 tty_write_message(tty, ": warning, ");
1da177e4 1131 else
24ec839c
PZ
1132 tty_write_message(tty, ": write failed, ");
1133 tty_write_message(tty, quotatypes[dquot->dq_type]);
1da177e4 1134 switch (warntype) {
8e893469 1135 case QUOTA_NL_IHARDWARN:
1da177e4
LT
1136 msg = " file limit reached.\r\n";
1137 break;
8e893469 1138 case QUOTA_NL_ISOFTLONGWARN:
1da177e4
LT
1139 msg = " file quota exceeded too long.\r\n";
1140 break;
8e893469 1141 case QUOTA_NL_ISOFTWARN:
1da177e4
LT
1142 msg = " file quota exceeded.\r\n";
1143 break;
8e893469 1144 case QUOTA_NL_BHARDWARN:
1da177e4
LT
1145 msg = " block limit reached.\r\n";
1146 break;
8e893469 1147 case QUOTA_NL_BSOFTLONGWARN:
1da177e4
LT
1148 msg = " block quota exceeded too long.\r\n";
1149 break;
8e893469 1150 case QUOTA_NL_BSOFTWARN:
1da177e4
LT
1151 msg = " block quota exceeded.\r\n";
1152 break;
1153 }
24ec839c 1154 tty_write_message(tty, msg);
452a00d2 1155 tty_kref_put(tty);
1da177e4 1156}
8e893469
JK
1157#endif
1158
f18df228
MC
1159/*
1160 * Write warnings to the console and send warning messages over netlink.
1161 *
1162 * Note that this function can sleep.
1163 */
7a2435d8 1164static void flush_warnings(struct dquot *const *dquots, char *warntype)
1da177e4 1165{
86e931a3 1166 struct dquot *dq;
1da177e4
LT
1167 int i;
1168
86e931a3
SW
1169 for (i = 0; i < MAXQUOTAS; i++) {
1170 dq = dquots[i];
1171 if (dq && warntype[i] != QUOTA_NL_NOWARN &&
1172 !warning_issued(dq, warntype[i])) {
8e893469 1173#ifdef CONFIG_PRINT_QUOTA_WARNING
86e931a3 1174 print_warning(dq, warntype[i]);
8e893469 1175#endif
86e931a3
SW
1176 quota_send_warning(dq->dq_type, dq->dq_id,
1177 dq->dq_sb->s_dev, warntype[i]);
8e893469 1178 }
86e931a3 1179 }
1da177e4
LT
1180}
1181
7a2435d8 1182static int ignore_hardlimit(struct dquot *dquot)
1da177e4
LT
1183{
1184 struct mem_dqinfo *info = &sb_dqopt(dquot->dq_sb)->info[dquot->dq_type];
1185
1186 return capable(CAP_SYS_RESOURCE) &&
268157ba
JK
1187 (info->dqi_format->qf_fmt_id != QFMT_VFS_OLD ||
1188 !(info->dqi_flags & V1_DQF_RSQUASH));
1da177e4
LT
1189}
1190
1191/* needs dq_data_lock */
12095460 1192static int check_idq(struct dquot *dquot, qsize_t inodes, char *warntype)
1da177e4 1193{
268157ba
JK
1194 qsize_t newinodes = dquot->dq_dqb.dqb_curinodes + inodes;
1195
8e893469 1196 *warntype = QUOTA_NL_NOWARN;
f55abc0f
JK
1197 if (!sb_has_quota_limits_enabled(dquot->dq_sb, dquot->dq_type) ||
1198 test_bit(DQ_FAKE_B, &dquot->dq_flags))
efd8f0e6 1199 return 0;
1da177e4
LT
1200
1201 if (dquot->dq_dqb.dqb_ihardlimit &&
268157ba 1202 newinodes > dquot->dq_dqb.dqb_ihardlimit &&
1da177e4 1203 !ignore_hardlimit(dquot)) {
8e893469 1204 *warntype = QUOTA_NL_IHARDWARN;
efd8f0e6 1205 return -EDQUOT;
1da177e4
LT
1206 }
1207
1208 if (dquot->dq_dqb.dqb_isoftlimit &&
268157ba
JK
1209 newinodes > dquot->dq_dqb.dqb_isoftlimit &&
1210 dquot->dq_dqb.dqb_itime &&
1211 get_seconds() >= dquot->dq_dqb.dqb_itime &&
1da177e4 1212 !ignore_hardlimit(dquot)) {
8e893469 1213 *warntype = QUOTA_NL_ISOFTLONGWARN;
efd8f0e6 1214 return -EDQUOT;
1da177e4
LT
1215 }
1216
1217 if (dquot->dq_dqb.dqb_isoftlimit &&
268157ba 1218 newinodes > dquot->dq_dqb.dqb_isoftlimit &&
1da177e4 1219 dquot->dq_dqb.dqb_itime == 0) {
8e893469 1220 *warntype = QUOTA_NL_ISOFTWARN;
268157ba
JK
1221 dquot->dq_dqb.dqb_itime = get_seconds() +
1222 sb_dqopt(dquot->dq_sb)->info[dquot->dq_type].dqi_igrace;
1da177e4
LT
1223 }
1224
efd8f0e6 1225 return 0;
1da177e4
LT
1226}
1227
1228/* needs dq_data_lock */
1229static int check_bdq(struct dquot *dquot, qsize_t space, int prealloc, char *warntype)
1230{
f18df228 1231 qsize_t tspace;
268157ba 1232 struct super_block *sb = dquot->dq_sb;
f18df228 1233
8e893469 1234 *warntype = QUOTA_NL_NOWARN;
268157ba 1235 if (!sb_has_quota_limits_enabled(sb, dquot->dq_type) ||
f55abc0f 1236 test_bit(DQ_FAKE_B, &dquot->dq_flags))
efd8f0e6 1237 return 0;
1da177e4 1238
f18df228
MC
1239 tspace = dquot->dq_dqb.dqb_curspace + dquot->dq_dqb.dqb_rsvspace
1240 + space;
1241
1da177e4 1242 if (dquot->dq_dqb.dqb_bhardlimit &&
f18df228 1243 tspace > dquot->dq_dqb.dqb_bhardlimit &&
1da177e4
LT
1244 !ignore_hardlimit(dquot)) {
1245 if (!prealloc)
8e893469 1246 *warntype = QUOTA_NL_BHARDWARN;
efd8f0e6 1247 return -EDQUOT;
1da177e4
LT
1248 }
1249
1250 if (dquot->dq_dqb.dqb_bsoftlimit &&
f18df228 1251 tspace > dquot->dq_dqb.dqb_bsoftlimit &&
268157ba
JK
1252 dquot->dq_dqb.dqb_btime &&
1253 get_seconds() >= dquot->dq_dqb.dqb_btime &&
1da177e4
LT
1254 !ignore_hardlimit(dquot)) {
1255 if (!prealloc)
8e893469 1256 *warntype = QUOTA_NL_BSOFTLONGWARN;
efd8f0e6 1257 return -EDQUOT;
1da177e4
LT
1258 }
1259
1260 if (dquot->dq_dqb.dqb_bsoftlimit &&
f18df228 1261 tspace > dquot->dq_dqb.dqb_bsoftlimit &&
1da177e4
LT
1262 dquot->dq_dqb.dqb_btime == 0) {
1263 if (!prealloc) {
8e893469 1264 *warntype = QUOTA_NL_BSOFTWARN;
268157ba
JK
1265 dquot->dq_dqb.dqb_btime = get_seconds() +
1266 sb_dqopt(sb)->info[dquot->dq_type].dqi_bgrace;
1da177e4
LT
1267 }
1268 else
1269 /*
1270 * We don't allow preallocation to exceed softlimit so exceeding will
1271 * be always printed
1272 */
efd8f0e6 1273 return -EDQUOT;
1da177e4
LT
1274 }
1275
efd8f0e6 1276 return 0;
1da177e4
LT
1277}
1278
12095460 1279static int info_idq_free(struct dquot *dquot, qsize_t inodes)
657d3bfa 1280{
268157ba
JK
1281 qsize_t newinodes;
1282
657d3bfa 1283 if (test_bit(DQ_FAKE_B, &dquot->dq_flags) ||
f55abc0f
JK
1284 dquot->dq_dqb.dqb_curinodes <= dquot->dq_dqb.dqb_isoftlimit ||
1285 !sb_has_quota_limits_enabled(dquot->dq_sb, dquot->dq_type))
657d3bfa
JK
1286 return QUOTA_NL_NOWARN;
1287
268157ba
JK
1288 newinodes = dquot->dq_dqb.dqb_curinodes - inodes;
1289 if (newinodes <= dquot->dq_dqb.dqb_isoftlimit)
657d3bfa
JK
1290 return QUOTA_NL_ISOFTBELOW;
1291 if (dquot->dq_dqb.dqb_curinodes >= dquot->dq_dqb.dqb_ihardlimit &&
268157ba 1292 newinodes < dquot->dq_dqb.dqb_ihardlimit)
657d3bfa
JK
1293 return QUOTA_NL_IHARDBELOW;
1294 return QUOTA_NL_NOWARN;
1295}
1296
1297static int info_bdq_free(struct dquot *dquot, qsize_t space)
1298{
1299 if (test_bit(DQ_FAKE_B, &dquot->dq_flags) ||
12095460 1300 dquot->dq_dqb.dqb_curspace <= dquot->dq_dqb.dqb_bsoftlimit)
657d3bfa
JK
1301 return QUOTA_NL_NOWARN;
1302
12095460 1303 if (dquot->dq_dqb.dqb_curspace - space <= dquot->dq_dqb.dqb_bsoftlimit)
657d3bfa 1304 return QUOTA_NL_BSOFTBELOW;
12095460
JK
1305 if (dquot->dq_dqb.dqb_curspace >= dquot->dq_dqb.dqb_bhardlimit &&
1306 dquot->dq_dqb.dqb_curspace - space < dquot->dq_dqb.dqb_bhardlimit)
657d3bfa
JK
1307 return QUOTA_NL_BHARDBELOW;
1308 return QUOTA_NL_NOWARN;
1309}
0a5a9c72 1310
1da177e4 1311/*
871a2931
CH
1312 * Initialize quota pointers in inode
1313 *
1314 * We do things in a bit complicated way but by that we avoid calling
1315 * dqget() and thus filesystem callbacks under dqptr_sem.
1316 *
1317 * It is better to call this function outside of any transaction as it
1318 * might need a lot of space in journal for dquot structure allocation.
1da177e4 1319 */
871a2931 1320static void __dquot_initialize(struct inode *inode, int type)
1da177e4
LT
1321{
1322 unsigned int id = 0;
871a2931 1323 int cnt;
ad1e6e8d 1324 struct dquot *got[MAXQUOTAS];
cc33412f 1325 struct super_block *sb = inode->i_sb;
0a5a9c72 1326 qsize_t rsv;
1da177e4 1327
d3be915f
IM
1328 /* First test before acquiring mutex - solves deadlocks when we
1329 * re-enter the quota code and are already holding the mutex */
871a2931
CH
1330 if (!sb_any_quota_active(inode->i_sb) || IS_NOQUOTA(inode))
1331 return;
cc33412f
JK
1332
1333 /* First get references to structures we might need. */
1334 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
ad1e6e8d 1335 got[cnt] = NULL;
cc33412f
JK
1336 if (type != -1 && cnt != type)
1337 continue;
1338 switch (cnt) {
1339 case USRQUOTA:
1340 id = inode->i_uid;
1341 break;
1342 case GRPQUOTA:
1343 id = inode->i_gid;
1344 break;
1345 }
1346 got[cnt] = dqget(sb, id, cnt);
1347 }
1348
1349 down_write(&sb_dqopt(sb)->dqptr_sem);
1da177e4
LT
1350 if (IS_NOQUOTA(inode))
1351 goto out_err;
1352 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1353 if (type != -1 && cnt != type)
1354 continue;
cc33412f
JK
1355 /* Avoid races with quotaoff() */
1356 if (!sb_has_quota_active(sb, cnt))
1357 continue;
dd6f3c6d 1358 if (!inode->i_dquot[cnt]) {
cc33412f 1359 inode->i_dquot[cnt] = got[cnt];
dd6f3c6d 1360 got[cnt] = NULL;
0a5a9c72
JK
1361 /*
1362 * Make quota reservation system happy if someone
1363 * did a write before quota was turned on
1364 */
1365 rsv = inode_get_rsv_space(inode);
1366 if (unlikely(rsv))
1367 dquot_resv_space(inode->i_dquot[cnt], rsv);
1da177e4
LT
1368 }
1369 }
1370out_err:
cc33412f
JK
1371 up_write(&sb_dqopt(sb)->dqptr_sem);
1372 /* Drop unused references */
dc52dd3a 1373 dqput_all(got);
871a2931
CH
1374}
1375
1376void dquot_initialize(struct inode *inode)
1377{
1378 __dquot_initialize(inode, -1);
1da177e4 1379}
08d0350c 1380EXPORT_SYMBOL(dquot_initialize);
1da177e4
LT
1381
1382/*
1383 * Release all quotas referenced by inode
1da177e4 1384 */
9f754758 1385static void __dquot_drop(struct inode *inode)
1da177e4
LT
1386{
1387 int cnt;
cc33412f 1388 struct dquot *put[MAXQUOTAS];
1da177e4 1389
cc33412f 1390 down_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1da177e4 1391 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
cc33412f 1392 put[cnt] = inode->i_dquot[cnt];
dd6f3c6d 1393 inode->i_dquot[cnt] = NULL;
1da177e4
LT
1394 }
1395 up_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
dc52dd3a 1396 dqput_all(put);
1da177e4
LT
1397}
1398
9f754758
CH
1399void dquot_drop(struct inode *inode)
1400{
1401 int cnt;
1402
1403 if (IS_NOQUOTA(inode))
1404 return;
1405
1406 /*
1407 * Test before calling to rule out calls from proc and such
1408 * where we are not allowed to block. Note that this is
1409 * actually reliable test even without the lock - the caller
1410 * must assure that nobody can come after the DQUOT_DROP and
1411 * add quota pointers back anyway.
1412 */
1413 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1414 if (inode->i_dquot[cnt])
1415 break;
1416 }
1417
1418 if (cnt < MAXQUOTAS)
1419 __dquot_drop(inode);
1420}
1421EXPORT_SYMBOL(dquot_drop);
b85f4b87 1422
fd8fbfc1
DM
1423/*
1424 * inode_reserved_space is managed internally by quota, and protected by
1425 * i_lock similar to i_blocks+i_bytes.
1426 */
1427static qsize_t *inode_reserved_space(struct inode * inode)
1428{
1429 /* Filesystem must explicitly define it's own method in order to use
1430 * quota reservation interface */
1431 BUG_ON(!inode->i_sb->dq_op->get_reserved_space);
1432 return inode->i_sb->dq_op->get_reserved_space(inode);
1433}
1434
c469070a 1435void inode_add_rsv_space(struct inode *inode, qsize_t number)
fd8fbfc1
DM
1436{
1437 spin_lock(&inode->i_lock);
1438 *inode_reserved_space(inode) += number;
1439 spin_unlock(&inode->i_lock);
1440}
c469070a 1441EXPORT_SYMBOL(inode_add_rsv_space);
fd8fbfc1 1442
c469070a 1443void inode_claim_rsv_space(struct inode *inode, qsize_t number)
fd8fbfc1
DM
1444{
1445 spin_lock(&inode->i_lock);
1446 *inode_reserved_space(inode) -= number;
1447 __inode_add_bytes(inode, number);
1448 spin_unlock(&inode->i_lock);
1449}
c469070a 1450EXPORT_SYMBOL(inode_claim_rsv_space);
fd8fbfc1 1451
c469070a 1452void inode_sub_rsv_space(struct inode *inode, qsize_t number)
fd8fbfc1
DM
1453{
1454 spin_lock(&inode->i_lock);
1455 *inode_reserved_space(inode) -= number;
1456 spin_unlock(&inode->i_lock);
1457}
c469070a 1458EXPORT_SYMBOL(inode_sub_rsv_space);
fd8fbfc1
DM
1459
1460static qsize_t inode_get_rsv_space(struct inode *inode)
1461{
1462 qsize_t ret;
05b5d898
JK
1463
1464 if (!inode->i_sb->dq_op->get_reserved_space)
1465 return 0;
fd8fbfc1
DM
1466 spin_lock(&inode->i_lock);
1467 ret = *inode_reserved_space(inode);
1468 spin_unlock(&inode->i_lock);
1469 return ret;
1470}
1471
1472static void inode_incr_space(struct inode *inode, qsize_t number,
1473 int reserve)
1474{
1475 if (reserve)
1476 inode_add_rsv_space(inode, number);
1477 else
1478 inode_add_bytes(inode, number);
1479}
1480
1481static void inode_decr_space(struct inode *inode, qsize_t number, int reserve)
1482{
1483 if (reserve)
1484 inode_sub_rsv_space(inode, number);
1485 else
1486 inode_sub_bytes(inode, number);
1487}
1488
1da177e4 1489/*
5dd4056d
CH
1490 * This functions updates i_blocks+i_bytes fields and quota information
1491 * (together with appropriate checks).
1492 *
1493 * NOTE: We absolutely rely on the fact that caller dirties the inode
1494 * (usually helpers in quotaops.h care about this) and holds a handle for
1495 * the current transaction so that dquot write and inode write go into the
1496 * same transaction.
1da177e4
LT
1497 */
1498
1499/*
1500 * This operation can block, but only after everything is updated
1501 */
f18df228 1502int __dquot_alloc_space(struct inode *inode, qsize_t number,
5dd4056d 1503 int warn, int reserve)
1da177e4 1504{
5dd4056d 1505 int cnt, ret = 0;
1da177e4
LT
1506 char warntype[MAXQUOTAS];
1507
fd8fbfc1
DM
1508 /*
1509 * First test before acquiring mutex - solves deadlocks when we
1510 * re-enter the quota code and are already holding the mutex
1511 */
5dd4056d 1512 if (!sb_any_quota_active(inode->i_sb) || IS_NOQUOTA(inode)) {
fd8fbfc1
DM
1513 inode_incr_space(inode, number, reserve);
1514 goto out;
1515 }
1516
1517 down_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1da177e4 1518 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
8e893469 1519 warntype[cnt] = QUOTA_NL_NOWARN;
1da177e4 1520
1da177e4
LT
1521 spin_lock(&dq_data_lock);
1522 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
dd6f3c6d 1523 if (!inode->i_dquot[cnt])
1da177e4 1524 continue;
efd8f0e6
CH
1525 ret = check_bdq(inode->i_dquot[cnt], number, !warn,
1526 warntype+cnt);
1527 if (ret) {
fd8fbfc1
DM
1528 spin_unlock(&dq_data_lock);
1529 goto out_flush_warn;
f18df228 1530 }
1da177e4
LT
1531 }
1532 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
dd6f3c6d 1533 if (!inode->i_dquot[cnt])
1da177e4 1534 continue;
f18df228
MC
1535 if (reserve)
1536 dquot_resv_space(inode->i_dquot[cnt], number);
1537 else
1538 dquot_incr_space(inode->i_dquot[cnt], number);
1da177e4 1539 }
fd8fbfc1 1540 inode_incr_space(inode, number, reserve);
1da177e4 1541 spin_unlock(&dq_data_lock);
f18df228 1542
fd8fbfc1
DM
1543 if (reserve)
1544 goto out_flush_warn;
dc52dd3a 1545 mark_all_dquot_dirty(inode->i_dquot);
fd8fbfc1
DM
1546out_flush_warn:
1547 flush_warnings(inode->i_dquot, warntype);
1da177e4 1548 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
f18df228
MC
1549out:
1550 return ret;
1551}
5dd4056d 1552EXPORT_SYMBOL(__dquot_alloc_space);
1da177e4
LT
1553
1554/*
1555 * This operation can block, but only after everything is updated
1556 */
63936dda 1557int dquot_alloc_inode(const struct inode *inode)
1da177e4 1558{
efd8f0e6 1559 int cnt, ret = 0;
1da177e4
LT
1560 char warntype[MAXQUOTAS];
1561
d3be915f
IM
1562 /* First test before acquiring mutex - solves deadlocks when we
1563 * re-enter the quota code and are already holding the mutex */
63936dda
CH
1564 if (!sb_any_quota_active(inode->i_sb) || IS_NOQUOTA(inode))
1565 return 0;
1da177e4 1566 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
8e893469 1567 warntype[cnt] = QUOTA_NL_NOWARN;
1da177e4 1568 down_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1da177e4
LT
1569 spin_lock(&dq_data_lock);
1570 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
dd6f3c6d 1571 if (!inode->i_dquot[cnt])
1da177e4 1572 continue;
efd8f0e6
CH
1573 ret = check_idq(inode->i_dquot[cnt], 1, warntype + cnt);
1574 if (ret)
1da177e4
LT
1575 goto warn_put_all;
1576 }
1577
1578 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
dd6f3c6d 1579 if (!inode->i_dquot[cnt])
1da177e4 1580 continue;
63936dda 1581 dquot_incr_inodes(inode->i_dquot[cnt], 1);
1da177e4 1582 }
efd8f0e6 1583
1da177e4
LT
1584warn_put_all:
1585 spin_unlock(&dq_data_lock);
63936dda 1586 if (ret == 0)
dc52dd3a 1587 mark_all_dquot_dirty(inode->i_dquot);
087ee8d5 1588 flush_warnings(inode->i_dquot, warntype);
1da177e4
LT
1589 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1590 return ret;
1591}
08d0350c 1592EXPORT_SYMBOL(dquot_alloc_inode);
1da177e4 1593
5dd4056d
CH
1594/*
1595 * Convert in-memory reserved quotas to real consumed quotas
1596 */
1597int dquot_claim_space_nodirty(struct inode *inode, qsize_t number)
740d9dcd
MC
1598{
1599 int cnt;
740d9dcd 1600
5dd4056d 1601 if (!sb_any_quota_active(inode->i_sb) || IS_NOQUOTA(inode)) {
fd8fbfc1 1602 inode_claim_rsv_space(inode, number);
5dd4056d 1603 return 0;
740d9dcd
MC
1604 }
1605
1606 down_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
740d9dcd
MC
1607 spin_lock(&dq_data_lock);
1608 /* Claim reserved quotas to allocated quotas */
1609 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
dd6f3c6d 1610 if (inode->i_dquot[cnt])
740d9dcd
MC
1611 dquot_claim_reserved_space(inode->i_dquot[cnt],
1612 number);
1613 }
1614 /* Update inode bytes */
fd8fbfc1 1615 inode_claim_rsv_space(inode, number);
740d9dcd 1616 spin_unlock(&dq_data_lock);
dc52dd3a 1617 mark_all_dquot_dirty(inode->i_dquot);
740d9dcd 1618 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
5dd4056d 1619 return 0;
740d9dcd 1620}
5dd4056d 1621EXPORT_SYMBOL(dquot_claim_space_nodirty);
740d9dcd 1622
1da177e4
LT
1623/*
1624 * This operation can block, but only after everything is updated
1625 */
5dd4056d 1626void __dquot_free_space(struct inode *inode, qsize_t number, int reserve)
1da177e4
LT
1627{
1628 unsigned int cnt;
657d3bfa 1629 char warntype[MAXQUOTAS];
1da177e4 1630
d3be915f
IM
1631 /* First test before acquiring mutex - solves deadlocks when we
1632 * re-enter the quota code and are already holding the mutex */
5dd4056d 1633 if (!sb_any_quota_active(inode->i_sb) || IS_NOQUOTA(inode)) {
fd8fbfc1 1634 inode_decr_space(inode, number, reserve);
5dd4056d 1635 return;
1da177e4 1636 }
657d3bfa 1637
1da177e4 1638 down_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1da177e4
LT
1639 spin_lock(&dq_data_lock);
1640 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
dd6f3c6d 1641 if (!inode->i_dquot[cnt])
1da177e4 1642 continue;
657d3bfa 1643 warntype[cnt] = info_bdq_free(inode->i_dquot[cnt], number);
fd8fbfc1
DM
1644 if (reserve)
1645 dquot_free_reserved_space(inode->i_dquot[cnt], number);
1646 else
1647 dquot_decr_space(inode->i_dquot[cnt], number);
1da177e4 1648 }
fd8fbfc1 1649 inode_decr_space(inode, number, reserve);
1da177e4 1650 spin_unlock(&dq_data_lock);
fd8fbfc1
DM
1651
1652 if (reserve)
1653 goto out_unlock;
dc52dd3a 1654 mark_all_dquot_dirty(inode->i_dquot);
fd8fbfc1 1655out_unlock:
657d3bfa 1656 flush_warnings(inode->i_dquot, warntype);
1da177e4 1657 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
fd8fbfc1 1658}
5dd4056d 1659EXPORT_SYMBOL(__dquot_free_space);
fd8fbfc1 1660
1da177e4
LT
1661/*
1662 * This operation can block, but only after everything is updated
1663 */
63936dda 1664void dquot_free_inode(const struct inode *inode)
1da177e4
LT
1665{
1666 unsigned int cnt;
657d3bfa 1667 char warntype[MAXQUOTAS];
1da177e4 1668
d3be915f
IM
1669 /* First test before acquiring mutex - solves deadlocks when we
1670 * re-enter the quota code and are already holding the mutex */
63936dda
CH
1671 if (!sb_any_quota_active(inode->i_sb) || IS_NOQUOTA(inode))
1672 return;
657d3bfa 1673
1da177e4 1674 down_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1da177e4
LT
1675 spin_lock(&dq_data_lock);
1676 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
dd6f3c6d 1677 if (!inode->i_dquot[cnt])
1da177e4 1678 continue;
63936dda
CH
1679 warntype[cnt] = info_idq_free(inode->i_dquot[cnt], 1);
1680 dquot_decr_inodes(inode->i_dquot[cnt], 1);
1da177e4
LT
1681 }
1682 spin_unlock(&dq_data_lock);
dc52dd3a 1683 mark_all_dquot_dirty(inode->i_dquot);
657d3bfa 1684 flush_warnings(inode->i_dquot, warntype);
1da177e4 1685 up_read(&sb_dqopt(inode->i_sb)->dqptr_sem);
1da177e4 1686}
08d0350c 1687EXPORT_SYMBOL(dquot_free_inode);
1da177e4
LT
1688
1689/*
1690 * Transfer the number of inode and blocks from one diskquota to an other.
1691 *
1692 * This operation can block, but only after everything is updated
1693 * A transaction must be started when entering this function.
1694 */
b43fa828 1695static int __dquot_transfer(struct inode *inode, qid_t *chid, unsigned long mask)
1da177e4 1696{
740d9dcd
MC
1697 qsize_t space, cur_space;
1698 qsize_t rsv_space = 0;
1da177e4
LT
1699 struct dquot *transfer_from[MAXQUOTAS];
1700 struct dquot *transfer_to[MAXQUOTAS];
efd8f0e6 1701 int cnt, ret = 0;
657d3bfa
JK
1702 char warntype_to[MAXQUOTAS];
1703 char warntype_from_inodes[MAXQUOTAS], warntype_from_space[MAXQUOTAS];
1da177e4 1704
d3be915f
IM
1705 /* First test before acquiring mutex - solves deadlocks when we
1706 * re-enter the quota code and are already holding the mutex */
1da177e4 1707 if (IS_NOQUOTA(inode))
efd8f0e6 1708 return 0;
cc33412f 1709 /* Initialize the arrays */
1da177e4 1710 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
dd6f3c6d
JK
1711 transfer_from[cnt] = NULL;
1712 transfer_to[cnt] = NULL;
657d3bfa 1713 warntype_to[cnt] = QUOTA_NL_NOWARN;
1da177e4 1714 }
8ddd69d6
DM
1715 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1716 if (mask & (1 << cnt))
1717 transfer_to[cnt] = dqget(inode->i_sb, chid[cnt], cnt);
1718 }
cc33412f 1719 down_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
cc33412f
JK
1720 if (IS_NOQUOTA(inode)) { /* File without quota accounting? */
1721 up_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1722 goto put_all;
1723 }
1da177e4 1724 spin_lock(&dq_data_lock);
740d9dcd 1725 cur_space = inode_get_bytes(inode);
fd8fbfc1 1726 rsv_space = inode_get_rsv_space(inode);
740d9dcd 1727 space = cur_space + rsv_space;
1da177e4
LT
1728 /* Build the transfer_from list and check the limits */
1729 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
dd6f3c6d 1730 if (!transfer_to[cnt])
1da177e4
LT
1731 continue;
1732 transfer_from[cnt] = inode->i_dquot[cnt];
efd8f0e6
CH
1733 ret = check_idq(transfer_to[cnt], 1, warntype_to + cnt);
1734 if (ret)
1735 goto over_quota;
1736 ret = check_bdq(transfer_to[cnt], space, 0, warntype_to + cnt);
1737 if (ret)
cc33412f 1738 goto over_quota;
1da177e4
LT
1739 }
1740
1741 /*
1742 * Finally perform the needed transfer from transfer_from to transfer_to
1743 */
1744 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1745 /*
1746 * Skip changes for same uid or gid or for turned off quota-type.
1747 */
dd6f3c6d 1748 if (!transfer_to[cnt])
1da177e4
LT
1749 continue;
1750
1751 /* Due to IO error we might not have transfer_from[] structure */
1752 if (transfer_from[cnt]) {
657d3bfa
JK
1753 warntype_from_inodes[cnt] =
1754 info_idq_free(transfer_from[cnt], 1);
1755 warntype_from_space[cnt] =
1756 info_bdq_free(transfer_from[cnt], space);
1da177e4 1757 dquot_decr_inodes(transfer_from[cnt], 1);
740d9dcd
MC
1758 dquot_decr_space(transfer_from[cnt], cur_space);
1759 dquot_free_reserved_space(transfer_from[cnt],
1760 rsv_space);
1da177e4
LT
1761 }
1762
1763 dquot_incr_inodes(transfer_to[cnt], 1);
740d9dcd
MC
1764 dquot_incr_space(transfer_to[cnt], cur_space);
1765 dquot_resv_space(transfer_to[cnt], rsv_space);
1da177e4
LT
1766
1767 inode->i_dquot[cnt] = transfer_to[cnt];
1768 }
1da177e4 1769 spin_unlock(&dq_data_lock);
cc33412f
JK
1770 up_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1771
dc52dd3a
DM
1772 mark_all_dquot_dirty(transfer_from);
1773 mark_all_dquot_dirty(transfer_to);
1774 /* The reference we got is transferred to the inode */
1775 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1776 transfer_to[cnt] = NULL;
cc33412f 1777warn_put_all:
657d3bfa
JK
1778 flush_warnings(transfer_to, warntype_to);
1779 flush_warnings(transfer_from, warntype_from_inodes);
1780 flush_warnings(transfer_from, warntype_from_space);
cc33412f 1781put_all:
dc52dd3a
DM
1782 dqput_all(transfer_from);
1783 dqput_all(transfer_to);
1da177e4 1784 return ret;
cc33412f
JK
1785over_quota:
1786 spin_unlock(&dq_data_lock);
1787 up_write(&sb_dqopt(inode->i_sb)->dqptr_sem);
1788 /* Clear dquot pointers we don't want to dqput() */
1789 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
dd6f3c6d 1790 transfer_from[cnt] = NULL;
cc33412f 1791 goto warn_put_all;
1da177e4
LT
1792}
1793
8ddd69d6
DM
1794/* Wrapper for transferring ownership of an inode for uid/gid only
1795 * Called from FSXXX_setattr()
1796 */
b43fa828 1797int dquot_transfer(struct inode *inode, struct iattr *iattr)
b85f4b87 1798{
8ddd69d6
DM
1799 qid_t chid[MAXQUOTAS];
1800 unsigned long mask = 0;
1801
1802 if (iattr->ia_valid & ATTR_UID && iattr->ia_uid != inode->i_uid) {
1803 mask |= 1 << USRQUOTA;
1804 chid[USRQUOTA] = iattr->ia_uid;
1805 }
1806 if (iattr->ia_valid & ATTR_GID && iattr->ia_gid != inode->i_gid) {
1807 mask |= 1 << GRPQUOTA;
1808 chid[GRPQUOTA] = iattr->ia_gid;
1809 }
f55abc0f 1810 if (sb_any_quota_active(inode->i_sb) && !IS_NOQUOTA(inode)) {
871a2931 1811 dquot_initialize(inode);
efd8f0e6 1812 return __dquot_transfer(inode, chid, mask);
b85f4b87
JK
1813 }
1814 return 0;
1815}
b43fa828 1816EXPORT_SYMBOL(dquot_transfer);
b85f4b87 1817
1da177e4
LT
1818/*
1819 * Write info of quota file to disk
1820 */
1821int dquot_commit_info(struct super_block *sb, int type)
1822{
1823 int ret;
1824 struct quota_info *dqopt = sb_dqopt(sb);
1825
d3be915f 1826 mutex_lock(&dqopt->dqio_mutex);
1da177e4 1827 ret = dqopt->ops[type]->write_file_info(sb, type);
d3be915f 1828 mutex_unlock(&dqopt->dqio_mutex);
1da177e4
LT
1829 return ret;
1830}
08d0350c 1831EXPORT_SYMBOL(dquot_commit_info);
1da177e4
LT
1832
1833/*
1834 * Definitions of diskquota operations.
1835 */
61e225dc 1836const struct dquot_operations dquot_operations = {
1da177e4
LT
1837 .write_dquot = dquot_commit,
1838 .acquire_dquot = dquot_acquire,
1839 .release_dquot = dquot_release,
1840 .mark_dirty = dquot_mark_dquot_dirty,
74f783af
JK
1841 .write_info = dquot_commit_info,
1842 .alloc_dquot = dquot_alloc,
1843 .destroy_dquot = dquot_destroy,
1da177e4
LT
1844};
1845
907f4554
CH
1846/*
1847 * Generic helper for ->open on filesystems supporting disk quotas.
1848 */
1849int dquot_file_open(struct inode *inode, struct file *file)
1850{
1851 int error;
1852
1853 error = generic_file_open(inode, file);
1854 if (!error && (file->f_mode & FMODE_WRITE))
871a2931 1855 dquot_initialize(inode);
907f4554
CH
1856 return error;
1857}
1858EXPORT_SYMBOL(dquot_file_open);
1859
1da177e4
LT
1860/*
1861 * Turn quota off on a device. type == -1 ==> quotaoff for all types (umount)
1862 */
f55abc0f 1863int vfs_quota_disable(struct super_block *sb, int type, unsigned int flags)
1da177e4 1864{
0ff5af83 1865 int cnt, ret = 0;
1da177e4
LT
1866 struct quota_info *dqopt = sb_dqopt(sb);
1867 struct inode *toputinode[MAXQUOTAS];
1da177e4 1868
f55abc0f
JK
1869 /* Cannot turn off usage accounting without turning off limits, or
1870 * suspend quotas and simultaneously turn quotas off. */
1871 if ((flags & DQUOT_USAGE_ENABLED && !(flags & DQUOT_LIMITS_ENABLED))
1872 || (flags & DQUOT_SUSPENDED && flags & (DQUOT_LIMITS_ENABLED |
1873 DQUOT_USAGE_ENABLED)))
1874 return -EINVAL;
1875
1da177e4 1876 /* We need to serialize quota_off() for device */
d3be915f 1877 mutex_lock(&dqopt->dqonoff_mutex);
9377abd0
JK
1878
1879 /*
1880 * Skip everything if there's nothing to do. We have to do this because
1881 * sometimes we are called when fill_super() failed and calling
1882 * sync_fs() in such cases does no good.
1883 */
f55abc0f 1884 if (!sb_any_quota_loaded(sb)) {
9377abd0
JK
1885 mutex_unlock(&dqopt->dqonoff_mutex);
1886 return 0;
1887 }
1da177e4
LT
1888 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1889 toputinode[cnt] = NULL;
1da177e4
LT
1890 if (type != -1 && cnt != type)
1891 continue;
f55abc0f 1892 if (!sb_has_quota_loaded(sb, cnt))
0ff5af83 1893 continue;
f55abc0f
JK
1894
1895 if (flags & DQUOT_SUSPENDED) {
cc33412f 1896 spin_lock(&dq_state_lock);
f55abc0f
JK
1897 dqopt->flags |=
1898 dquot_state_flag(DQUOT_SUSPENDED, cnt);
cc33412f 1899 spin_unlock(&dq_state_lock);
f55abc0f 1900 } else {
cc33412f 1901 spin_lock(&dq_state_lock);
f55abc0f
JK
1902 dqopt->flags &= ~dquot_state_flag(flags, cnt);
1903 /* Turning off suspended quotas? */
1904 if (!sb_has_quota_loaded(sb, cnt) &&
1905 sb_has_quota_suspended(sb, cnt)) {
1906 dqopt->flags &= ~dquot_state_flag(
1907 DQUOT_SUSPENDED, cnt);
cc33412f 1908 spin_unlock(&dq_state_lock);
f55abc0f
JK
1909 iput(dqopt->files[cnt]);
1910 dqopt->files[cnt] = NULL;
1911 continue;
1912 }
cc33412f 1913 spin_unlock(&dq_state_lock);
0ff5af83 1914 }
f55abc0f
JK
1915
1916 /* We still have to keep quota loaded? */
1917 if (sb_has_quota_loaded(sb, cnt) && !(flags & DQUOT_SUSPENDED))
1da177e4 1918 continue;
1da177e4
LT
1919
1920 /* Note: these are blocking operations */
1921 drop_dquot_ref(sb, cnt);
1922 invalidate_dquots(sb, cnt);
1923 /*
268157ba
JK
1924 * Now all dquots should be invalidated, all writes done so we
1925 * should be only users of the info. No locks needed.
1da177e4
LT
1926 */
1927 if (info_dirty(&dqopt->info[cnt]))
1928 sb->dq_op->write_info(sb, cnt);
1929 if (dqopt->ops[cnt]->free_file_info)
1930 dqopt->ops[cnt]->free_file_info(sb, cnt);
1931 put_quota_format(dqopt->info[cnt].dqi_format);
1932
1933 toputinode[cnt] = dqopt->files[cnt];
f55abc0f 1934 if (!sb_has_quota_loaded(sb, cnt))
0ff5af83 1935 dqopt->files[cnt] = NULL;
1da177e4
LT
1936 dqopt->info[cnt].dqi_flags = 0;
1937 dqopt->info[cnt].dqi_igrace = 0;
1938 dqopt->info[cnt].dqi_bgrace = 0;
1939 dqopt->ops[cnt] = NULL;
1940 }
d3be915f 1941 mutex_unlock(&dqopt->dqonoff_mutex);
ca785ec6
JK
1942
1943 /* Skip syncing and setting flags if quota files are hidden */
1944 if (dqopt->flags & DQUOT_QUOTA_SYS_FILE)
1945 goto put_inodes;
1946
1da177e4 1947 /* Sync the superblock so that buffers with quota data are written to
7b7b1ace 1948 * disk (and so userspace sees correct data afterwards). */
1da177e4
LT
1949 if (sb->s_op->sync_fs)
1950 sb->s_op->sync_fs(sb, 1);
1951 sync_blockdev(sb->s_bdev);
1952 /* Now the quota files are just ordinary files and we can set the
1953 * inode flags back. Moreover we discard the pagecache so that
1954 * userspace sees the writes we did bypassing the pagecache. We
1955 * must also discard the blockdev buffers so that we see the
1956 * changes done by userspace on the next quotaon() */
1957 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1958 if (toputinode[cnt]) {
d3be915f 1959 mutex_lock(&dqopt->dqonoff_mutex);
1da177e4
LT
1960 /* If quota was reenabled in the meantime, we have
1961 * nothing to do */
f55abc0f 1962 if (!sb_has_quota_loaded(sb, cnt)) {
268157ba
JK
1963 mutex_lock_nested(&toputinode[cnt]->i_mutex,
1964 I_MUTEX_QUOTA);
1da177e4
LT
1965 toputinode[cnt]->i_flags &= ~(S_IMMUTABLE |
1966 S_NOATIME | S_NOQUOTA);
268157ba
JK
1967 truncate_inode_pages(&toputinode[cnt]->i_data,
1968 0);
1b1dcc1b 1969 mutex_unlock(&toputinode[cnt]->i_mutex);
1da177e4 1970 mark_inode_dirty(toputinode[cnt]);
1da177e4 1971 }
d3be915f 1972 mutex_unlock(&dqopt->dqonoff_mutex);
ca785ec6
JK
1973 }
1974 if (sb->s_bdev)
1975 invalidate_bdev(sb->s_bdev);
1976put_inodes:
1977 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1978 if (toputinode[cnt]) {
0ff5af83 1979 /* On remount RO, we keep the inode pointer so that we
f55abc0f
JK
1980 * can reenable quota on the subsequent remount RW. We
1981 * have to check 'flags' variable and not use sb_has_
1982 * function because another quotaon / quotaoff could
1983 * change global state before we got here. We refuse
1984 * to suspend quotas when there is pending delete on
1985 * the quota file... */
1986 if (!(flags & DQUOT_SUSPENDED))
0ff5af83
JK
1987 iput(toputinode[cnt]);
1988 else if (!toputinode[cnt]->i_nlink)
1989 ret = -EBUSY;
1da177e4 1990 }
0ff5af83 1991 return ret;
1da177e4 1992}
08d0350c 1993EXPORT_SYMBOL(vfs_quota_disable);
1da177e4 1994
f55abc0f
JK
1995int vfs_quota_off(struct super_block *sb, int type, int remount)
1996{
1997 return vfs_quota_disable(sb, type, remount ? DQUOT_SUSPENDED :
1998 (DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED));
1999}
08d0350c 2000EXPORT_SYMBOL(vfs_quota_off);
1da177e4
LT
2001/*
2002 * Turn quotas on on a device
2003 */
2004
f55abc0f
JK
2005/*
2006 * Helper function to turn quotas on when we already have the inode of
2007 * quota file and no quota information is loaded.
2008 */
2009static int vfs_load_quota_inode(struct inode *inode, int type, int format_id,
2010 unsigned int flags)
1da177e4
LT
2011{
2012 struct quota_format_type *fmt = find_quota_format(format_id);
2013 struct super_block *sb = inode->i_sb;
2014 struct quota_info *dqopt = sb_dqopt(sb);
2015 int error;
2016 int oldflags = -1;
2017
2018 if (!fmt)
2019 return -ESRCH;
2020 if (!S_ISREG(inode->i_mode)) {
2021 error = -EACCES;
2022 goto out_fmt;
2023 }
2024 if (IS_RDONLY(inode)) {
2025 error = -EROFS;
2026 goto out_fmt;
2027 }
2028 if (!sb->s_op->quota_write || !sb->s_op->quota_read) {
2029 error = -EINVAL;
2030 goto out_fmt;
2031 }
f55abc0f
JK
2032 /* Usage always has to be set... */
2033 if (!(flags & DQUOT_USAGE_ENABLED)) {
2034 error = -EINVAL;
2035 goto out_fmt;
2036 }
1da177e4 2037
ca785ec6 2038 if (!(dqopt->flags & DQUOT_QUOTA_SYS_FILE)) {
ab94c39b
JK
2039 /* As we bypass the pagecache we must now flush all the
2040 * dirty data and invalidate caches so that kernel sees
2041 * changes from userspace. It is not enough to just flush
2042 * the quota file since if blocksize < pagesize, invalidation
2043 * of the cache could fail because of other unrelated dirty
2044 * data */
2045 sync_filesystem(sb);
ca785ec6
JK
2046 invalidate_bdev(sb->s_bdev);
2047 }
d3be915f 2048 mutex_lock(&dqopt->dqonoff_mutex);
f55abc0f 2049 if (sb_has_quota_loaded(sb, type)) {
1da177e4
LT
2050 error = -EBUSY;
2051 goto out_lock;
2052 }
ca785ec6
JK
2053
2054 if (!(dqopt->flags & DQUOT_QUOTA_SYS_FILE)) {
2055 /* We don't want quota and atime on quota files (deadlocks
2056 * possible) Also nobody should write to the file - we use
2057 * special IO operations which ignore the immutable bit. */
dee86565 2058 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
268157ba
JK
2059 oldflags = inode->i_flags & (S_NOATIME | S_IMMUTABLE |
2060 S_NOQUOTA);
ca785ec6 2061 inode->i_flags |= S_NOQUOTA | S_NOATIME | S_IMMUTABLE;
dee86565 2062 mutex_unlock(&inode->i_mutex);
26245c94
JK
2063 /*
2064 * When S_NOQUOTA is set, remove dquot references as no more
2065 * references can be added
2066 */
9f754758 2067 __dquot_drop(inode);
ca785ec6 2068 }
1da177e4
LT
2069
2070 error = -EIO;
2071 dqopt->files[type] = igrab(inode);
2072 if (!dqopt->files[type])
2073 goto out_lock;
2074 error = -EINVAL;
2075 if (!fmt->qf_ops->check_quota_file(sb, type))
2076 goto out_file_init;
2077
2078 dqopt->ops[type] = fmt->qf_ops;
2079 dqopt->info[type].dqi_format = fmt;
0ff5af83 2080 dqopt->info[type].dqi_fmt_id = format_id;
1da177e4 2081 INIT_LIST_HEAD(&dqopt->info[type].dqi_dirty_list);
d3be915f 2082 mutex_lock(&dqopt->dqio_mutex);
268157ba
JK
2083 error = dqopt->ops[type]->read_file_info(sb, type);
2084 if (error < 0) {
d3be915f 2085 mutex_unlock(&dqopt->dqio_mutex);
1da177e4
LT
2086 goto out_file_init;
2087 }
d3be915f 2088 mutex_unlock(&dqopt->dqio_mutex);
cc33412f 2089 spin_lock(&dq_state_lock);
f55abc0f 2090 dqopt->flags |= dquot_state_flag(flags, type);
cc33412f 2091 spin_unlock(&dq_state_lock);
1da177e4
LT
2092
2093 add_dquot_ref(sb, type);
d3be915f 2094 mutex_unlock(&dqopt->dqonoff_mutex);
1da177e4
LT
2095
2096 return 0;
2097
2098out_file_init:
2099 dqopt->files[type] = NULL;
2100 iput(inode);
2101out_lock:
1da177e4 2102 if (oldflags != -1) {
dee86565 2103 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
1da177e4
LT
2104 /* Set the flags back (in the case of accidental quotaon()
2105 * on a wrong file we don't want to mess up the flags) */
2106 inode->i_flags &= ~(S_NOATIME | S_NOQUOTA | S_IMMUTABLE);
2107 inode->i_flags |= oldflags;
dee86565 2108 mutex_unlock(&inode->i_mutex);
1da177e4 2109 }
d01730d7 2110 mutex_unlock(&dqopt->dqonoff_mutex);
1da177e4
LT
2111out_fmt:
2112 put_quota_format(fmt);
2113
2114 return error;
2115}
2116
0ff5af83
JK
2117/* Reenable quotas on remount RW */
2118static int vfs_quota_on_remount(struct super_block *sb, int type)
2119{
2120 struct quota_info *dqopt = sb_dqopt(sb);
2121 struct inode *inode;
2122 int ret;
f55abc0f 2123 unsigned int flags;
0ff5af83
JK
2124
2125 mutex_lock(&dqopt->dqonoff_mutex);
2126 if (!sb_has_quota_suspended(sb, type)) {
2127 mutex_unlock(&dqopt->dqonoff_mutex);
2128 return 0;
2129 }
0ff5af83
JK
2130 inode = dqopt->files[type];
2131 dqopt->files[type] = NULL;
cc33412f 2132 spin_lock(&dq_state_lock);
f55abc0f
JK
2133 flags = dqopt->flags & dquot_state_flag(DQUOT_USAGE_ENABLED |
2134 DQUOT_LIMITS_ENABLED, type);
2135 dqopt->flags &= ~dquot_state_flag(DQUOT_STATE_FLAGS, type);
cc33412f 2136 spin_unlock(&dq_state_lock);
0ff5af83
JK
2137 mutex_unlock(&dqopt->dqonoff_mutex);
2138
f55abc0f
JK
2139 flags = dquot_generic_flag(flags, type);
2140 ret = vfs_load_quota_inode(inode, type, dqopt->info[type].dqi_fmt_id,
2141 flags);
0ff5af83
JK
2142 iput(inode);
2143
2144 return ret;
2145}
2146
77e69dac
AV
2147int vfs_quota_on_path(struct super_block *sb, int type, int format_id,
2148 struct path *path)
2149{
2150 int error = security_quota_on(path->dentry);
2151 if (error)
2152 return error;
2153 /* Quota file not on the same filesystem? */
2154 if (path->mnt->mnt_sb != sb)
2155 error = -EXDEV;
2156 else
f55abc0f
JK
2157 error = vfs_load_quota_inode(path->dentry->d_inode, type,
2158 format_id, DQUOT_USAGE_ENABLED |
2159 DQUOT_LIMITS_ENABLED);
77e69dac
AV
2160 return error;
2161}
08d0350c 2162EXPORT_SYMBOL(vfs_quota_on_path);
77e69dac 2163
8264613d 2164int vfs_quota_on(struct super_block *sb, int type, int format_id, char *name,
0ff5af83 2165 int remount)
1da177e4 2166{
8264613d 2167 struct path path;
1da177e4
LT
2168 int error;
2169
0ff5af83
JK
2170 if (remount)
2171 return vfs_quota_on_remount(sb, type);
2172
8264613d 2173 error = kern_path(name, LOOKUP_FOLLOW, &path);
77e69dac 2174 if (!error) {
8264613d
AV
2175 error = vfs_quota_on_path(sb, type, format_id, &path);
2176 path_put(&path);
77e69dac 2177 }
1da177e4
LT
2178 return error;
2179}
08d0350c 2180EXPORT_SYMBOL(vfs_quota_on);
1da177e4 2181
f55abc0f
JK
2182/*
2183 * More powerful function for turning on quotas allowing setting
2184 * of individual quota flags
2185 */
2186int vfs_quota_enable(struct inode *inode, int type, int format_id,
2187 unsigned int flags)
2188{
2189 int ret = 0;
2190 struct super_block *sb = inode->i_sb;
2191 struct quota_info *dqopt = sb_dqopt(sb);
2192
2193 /* Just unsuspend quotas? */
2194 if (flags & DQUOT_SUSPENDED)
2195 return vfs_quota_on_remount(sb, type);
2196 if (!flags)
2197 return 0;
2198 /* Just updating flags needed? */
2199 if (sb_has_quota_loaded(sb, type)) {
2200 mutex_lock(&dqopt->dqonoff_mutex);
2201 /* Now do a reliable test... */
2202 if (!sb_has_quota_loaded(sb, type)) {
2203 mutex_unlock(&dqopt->dqonoff_mutex);
2204 goto load_quota;
2205 }
2206 if (flags & DQUOT_USAGE_ENABLED &&
2207 sb_has_quota_usage_enabled(sb, type)) {
2208 ret = -EBUSY;
2209 goto out_lock;
2210 }
2211 if (flags & DQUOT_LIMITS_ENABLED &&
2212 sb_has_quota_limits_enabled(sb, type)) {
2213 ret = -EBUSY;
2214 goto out_lock;
2215 }
cc33412f 2216 spin_lock(&dq_state_lock);
f55abc0f 2217 sb_dqopt(sb)->flags |= dquot_state_flag(flags, type);
cc33412f 2218 spin_unlock(&dq_state_lock);
f55abc0f
JK
2219out_lock:
2220 mutex_unlock(&dqopt->dqonoff_mutex);
2221 return ret;
2222 }
2223
2224load_quota:
2225 return vfs_load_quota_inode(inode, type, format_id, flags);
2226}
08d0350c 2227EXPORT_SYMBOL(vfs_quota_enable);
f55abc0f 2228
1da177e4
LT
2229/*
2230 * This function is used when filesystem needs to initialize quotas
2231 * during mount time.
2232 */
84de856e
CH
2233int vfs_quota_on_mount(struct super_block *sb, char *qf_name,
2234 int format_id, int type)
1da177e4 2235{
84de856e 2236 struct dentry *dentry;
1da177e4
LT
2237 int error;
2238
c56818d7 2239 mutex_lock(&sb->s_root->d_inode->i_mutex);
2fa389c5 2240 dentry = lookup_one_len(qf_name, sb->s_root, strlen(qf_name));
c56818d7 2241 mutex_unlock(&sb->s_root->d_inode->i_mutex);
84de856e
CH
2242 if (IS_ERR(dentry))
2243 return PTR_ERR(dentry);
2244
154f484b
JK
2245 if (!dentry->d_inode) {
2246 error = -ENOENT;
2247 goto out;
2248 }
2249
1da177e4 2250 error = security_quota_on(dentry);
84de856e 2251 if (!error)
f55abc0f
JK
2252 error = vfs_load_quota_inode(dentry->d_inode, type, format_id,
2253 DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
84de856e 2254
154f484b 2255out:
84de856e
CH
2256 dput(dentry);
2257 return error;
1da177e4 2258}
08d0350c 2259EXPORT_SYMBOL(vfs_quota_on_mount);
1da177e4 2260
b85f4b87
JK
2261/* Wrapper to turn on quotas when remounting rw */
2262int vfs_dq_quota_on_remount(struct super_block *sb)
2263{
2264 int cnt;
2265 int ret = 0, err;
2266
2267 if (!sb->s_qcop || !sb->s_qcop->quota_on)
2268 return -ENOSYS;
2269 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
2270 err = sb->s_qcop->quota_on(sb, cnt, 0, NULL, 1);
2271 if (err < 0 && !ret)
2272 ret = err;
2273 }
2274 return ret;
2275}
08d0350c 2276EXPORT_SYMBOL(vfs_dq_quota_on_remount);
b85f4b87 2277
12095460
JK
2278static inline qsize_t qbtos(qsize_t blocks)
2279{
2280 return blocks << QIF_DQBLKSIZE_BITS;
2281}
2282
2283static inline qsize_t stoqb(qsize_t space)
2284{
2285 return (space + QIF_DQBLKSIZE - 1) >> QIF_DQBLKSIZE_BITS;
2286}
2287
1da177e4
LT
2288/* Generic routine for getting common part of quota structure */
2289static void do_get_dqblk(struct dquot *dquot, struct if_dqblk *di)
2290{
2291 struct mem_dqblk *dm = &dquot->dq_dqb;
2292
2293 spin_lock(&dq_data_lock);
12095460
JK
2294 di->dqb_bhardlimit = stoqb(dm->dqb_bhardlimit);
2295 di->dqb_bsoftlimit = stoqb(dm->dqb_bsoftlimit);
f18df228 2296 di->dqb_curspace = dm->dqb_curspace + dm->dqb_rsvspace;
1da177e4
LT
2297 di->dqb_ihardlimit = dm->dqb_ihardlimit;
2298 di->dqb_isoftlimit = dm->dqb_isoftlimit;
2299 di->dqb_curinodes = dm->dqb_curinodes;
2300 di->dqb_btime = dm->dqb_btime;
2301 di->dqb_itime = dm->dqb_itime;
2302 di->dqb_valid = QIF_ALL;
2303 spin_unlock(&dq_data_lock);
2304}
2305
268157ba
JK
2306int vfs_get_dqblk(struct super_block *sb, int type, qid_t id,
2307 struct if_dqblk *di)
1da177e4
LT
2308{
2309 struct dquot *dquot;
2310
cc33412f 2311 dquot = dqget(sb, id, type);
dd6f3c6d 2312 if (!dquot)
1da177e4 2313 return -ESRCH;
1da177e4
LT
2314 do_get_dqblk(dquot, di);
2315 dqput(dquot);
cc33412f 2316
1da177e4
LT
2317 return 0;
2318}
08d0350c 2319EXPORT_SYMBOL(vfs_get_dqblk);
1da177e4
LT
2320
2321/* Generic routine for setting common part of quota structure */
338bf9af 2322static int do_set_dqblk(struct dquot *dquot, struct if_dqblk *di)
1da177e4
LT
2323{
2324 struct mem_dqblk *dm = &dquot->dq_dqb;
2325 int check_blim = 0, check_ilim = 0;
338bf9af
AP
2326 struct mem_dqinfo *dqi = &sb_dqopt(dquot->dq_sb)->info[dquot->dq_type];
2327
2328 if ((di->dqb_valid & QIF_BLIMITS &&
2329 (di->dqb_bhardlimit > dqi->dqi_maxblimit ||
2330 di->dqb_bsoftlimit > dqi->dqi_maxblimit)) ||
2331 (di->dqb_valid & QIF_ILIMITS &&
2332 (di->dqb_ihardlimit > dqi->dqi_maxilimit ||
2333 di->dqb_isoftlimit > dqi->dqi_maxilimit)))
2334 return -ERANGE;
1da177e4
LT
2335
2336 spin_lock(&dq_data_lock);
2337 if (di->dqb_valid & QIF_SPACE) {
f18df228 2338 dm->dqb_curspace = di->dqb_curspace - dm->dqb_rsvspace;
1da177e4 2339 check_blim = 1;
08261673 2340 set_bit(DQ_LASTSET_B + QIF_SPACE_B, &dquot->dq_flags);
1da177e4
LT
2341 }
2342 if (di->dqb_valid & QIF_BLIMITS) {
12095460
JK
2343 dm->dqb_bsoftlimit = qbtos(di->dqb_bsoftlimit);
2344 dm->dqb_bhardlimit = qbtos(di->dqb_bhardlimit);
1da177e4 2345 check_blim = 1;
08261673 2346 set_bit(DQ_LASTSET_B + QIF_BLIMITS_B, &dquot->dq_flags);
1da177e4
LT
2347 }
2348 if (di->dqb_valid & QIF_INODES) {
2349 dm->dqb_curinodes = di->dqb_curinodes;
2350 check_ilim = 1;
08261673 2351 set_bit(DQ_LASTSET_B + QIF_INODES_B, &dquot->dq_flags);
1da177e4
LT
2352 }
2353 if (di->dqb_valid & QIF_ILIMITS) {
2354 dm->dqb_isoftlimit = di->dqb_isoftlimit;
2355 dm->dqb_ihardlimit = di->dqb_ihardlimit;
2356 check_ilim = 1;
08261673 2357 set_bit(DQ_LASTSET_B + QIF_ILIMITS_B, &dquot->dq_flags);
1da177e4 2358 }
4d59bce4 2359 if (di->dqb_valid & QIF_BTIME) {
1da177e4 2360 dm->dqb_btime = di->dqb_btime;
e04a88a9 2361 check_blim = 1;
08261673 2362 set_bit(DQ_LASTSET_B + QIF_BTIME_B, &dquot->dq_flags);
4d59bce4
JK
2363 }
2364 if (di->dqb_valid & QIF_ITIME) {
1da177e4 2365 dm->dqb_itime = di->dqb_itime;
e04a88a9 2366 check_ilim = 1;
08261673 2367 set_bit(DQ_LASTSET_B + QIF_ITIME_B, &dquot->dq_flags);
4d59bce4 2368 }
1da177e4
LT
2369
2370 if (check_blim) {
268157ba
JK
2371 if (!dm->dqb_bsoftlimit ||
2372 dm->dqb_curspace < dm->dqb_bsoftlimit) {
1da177e4
LT
2373 dm->dqb_btime = 0;
2374 clear_bit(DQ_BLKS_B, &dquot->dq_flags);
268157ba
JK
2375 } else if (!(di->dqb_valid & QIF_BTIME))
2376 /* Set grace only if user hasn't provided his own... */
338bf9af 2377 dm->dqb_btime = get_seconds() + dqi->dqi_bgrace;
1da177e4
LT
2378 }
2379 if (check_ilim) {
268157ba
JK
2380 if (!dm->dqb_isoftlimit ||
2381 dm->dqb_curinodes < dm->dqb_isoftlimit) {
1da177e4
LT
2382 dm->dqb_itime = 0;
2383 clear_bit(DQ_INODES_B, &dquot->dq_flags);
268157ba
JK
2384 } else if (!(di->dqb_valid & QIF_ITIME))
2385 /* Set grace only if user hasn't provided his own... */
338bf9af 2386 dm->dqb_itime = get_seconds() + dqi->dqi_igrace;
1da177e4 2387 }
268157ba
JK
2388 if (dm->dqb_bhardlimit || dm->dqb_bsoftlimit || dm->dqb_ihardlimit ||
2389 dm->dqb_isoftlimit)
1da177e4
LT
2390 clear_bit(DQ_FAKE_B, &dquot->dq_flags);
2391 else
2392 set_bit(DQ_FAKE_B, &dquot->dq_flags);
2393 spin_unlock(&dq_data_lock);
2394 mark_dquot_dirty(dquot);
338bf9af
AP
2395
2396 return 0;
1da177e4
LT
2397}
2398
268157ba
JK
2399int vfs_set_dqblk(struct super_block *sb, int type, qid_t id,
2400 struct if_dqblk *di)
1da177e4
LT
2401{
2402 struct dquot *dquot;
338bf9af 2403 int rc;
1da177e4 2404
f55abc0f
JK
2405 dquot = dqget(sb, id, type);
2406 if (!dquot) {
2407 rc = -ESRCH;
2408 goto out;
1da177e4 2409 }
338bf9af 2410 rc = do_set_dqblk(dquot, di);
1da177e4 2411 dqput(dquot);
f55abc0f 2412out:
338bf9af 2413 return rc;
1da177e4 2414}
08d0350c 2415EXPORT_SYMBOL(vfs_set_dqblk);
1da177e4
LT
2416
2417/* Generic routine for getting common part of quota file information */
2418int vfs_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii)
2419{
2420 struct mem_dqinfo *mi;
2421
d3be915f 2422 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
f55abc0f 2423 if (!sb_has_quota_active(sb, type)) {
d3be915f 2424 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
1da177e4
LT
2425 return -ESRCH;
2426 }
2427 mi = sb_dqopt(sb)->info + type;
2428 spin_lock(&dq_data_lock);
2429 ii->dqi_bgrace = mi->dqi_bgrace;
2430 ii->dqi_igrace = mi->dqi_igrace;
2431 ii->dqi_flags = mi->dqi_flags & DQF_MASK;
2432 ii->dqi_valid = IIF_ALL;
2433 spin_unlock(&dq_data_lock);
d3be915f 2434 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
1da177e4
LT
2435 return 0;
2436}
08d0350c 2437EXPORT_SYMBOL(vfs_get_dqinfo);
1da177e4
LT
2438
2439/* Generic routine for setting common part of quota file information */
2440int vfs_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii)
2441{
2442 struct mem_dqinfo *mi;
f55abc0f 2443 int err = 0;
1da177e4 2444
d3be915f 2445 mutex_lock(&sb_dqopt(sb)->dqonoff_mutex);
f55abc0f
JK
2446 if (!sb_has_quota_active(sb, type)) {
2447 err = -ESRCH;
2448 goto out;
1da177e4
LT
2449 }
2450 mi = sb_dqopt(sb)->info + type;
2451 spin_lock(&dq_data_lock);
2452 if (ii->dqi_valid & IIF_BGRACE)
2453 mi->dqi_bgrace = ii->dqi_bgrace;
2454 if (ii->dqi_valid & IIF_IGRACE)
2455 mi->dqi_igrace = ii->dqi_igrace;
2456 if (ii->dqi_valid & IIF_FLAGS)
268157ba
JK
2457 mi->dqi_flags = (mi->dqi_flags & ~DQF_MASK) |
2458 (ii->dqi_flags & DQF_MASK);
1da177e4
LT
2459 spin_unlock(&dq_data_lock);
2460 mark_info_dirty(sb, type);
2461 /* Force write to disk */
2462 sb->dq_op->write_info(sb, type);
f55abc0f 2463out:
d3be915f 2464 mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
f55abc0f 2465 return err;
1da177e4 2466}
08d0350c 2467EXPORT_SYMBOL(vfs_set_dqinfo);
1da177e4 2468
0d54b217 2469const struct quotactl_ops vfs_quotactl_ops = {
1da177e4
LT
2470 .quota_on = vfs_quota_on,
2471 .quota_off = vfs_quota_off,
2472 .quota_sync = vfs_quota_sync,
2473 .get_info = vfs_get_dqinfo,
2474 .set_info = vfs_set_dqinfo,
2475 .get_dqblk = vfs_get_dqblk,
2476 .set_dqblk = vfs_set_dqblk
2477};
2478
2479static ctl_table fs_dqstats_table[] = {
2480 {
1da177e4
LT
2481 .procname = "lookups",
2482 .data = &dqstats.lookups,
2483 .maxlen = sizeof(int),
2484 .mode = 0444,
6d456111 2485 .proc_handler = proc_dointvec,
1da177e4
LT
2486 },
2487 {
1da177e4
LT
2488 .procname = "drops",
2489 .data = &dqstats.drops,
2490 .maxlen = sizeof(int),
2491 .mode = 0444,
6d456111 2492 .proc_handler = proc_dointvec,
1da177e4
LT
2493 },
2494 {
1da177e4
LT
2495 .procname = "reads",
2496 .data = &dqstats.reads,
2497 .maxlen = sizeof(int),
2498 .mode = 0444,
6d456111 2499 .proc_handler = proc_dointvec,
1da177e4
LT
2500 },
2501 {
1da177e4
LT
2502 .procname = "writes",
2503 .data = &dqstats.writes,
2504 .maxlen = sizeof(int),
2505 .mode = 0444,
6d456111 2506 .proc_handler = proc_dointvec,
1da177e4
LT
2507 },
2508 {
1da177e4
LT
2509 .procname = "cache_hits",
2510 .data = &dqstats.cache_hits,
2511 .maxlen = sizeof(int),
2512 .mode = 0444,
6d456111 2513 .proc_handler = proc_dointvec,
1da177e4
LT
2514 },
2515 {
1da177e4
LT
2516 .procname = "allocated_dquots",
2517 .data = &dqstats.allocated_dquots,
2518 .maxlen = sizeof(int),
2519 .mode = 0444,
6d456111 2520 .proc_handler = proc_dointvec,
1da177e4
LT
2521 },
2522 {
1da177e4
LT
2523 .procname = "free_dquots",
2524 .data = &dqstats.free_dquots,
2525 .maxlen = sizeof(int),
2526 .mode = 0444,
6d456111 2527 .proc_handler = proc_dointvec,
1da177e4
LT
2528 },
2529 {
1da177e4
LT
2530 .procname = "syncs",
2531 .data = &dqstats.syncs,
2532 .maxlen = sizeof(int),
2533 .mode = 0444,
6d456111 2534 .proc_handler = proc_dointvec,
1da177e4 2535 },
8e893469 2536#ifdef CONFIG_PRINT_QUOTA_WARNING
1da177e4 2537 {
1da177e4
LT
2538 .procname = "warnings",
2539 .data = &flag_print_warnings,
2540 .maxlen = sizeof(int),
2541 .mode = 0644,
6d456111 2542 .proc_handler = proc_dointvec,
1da177e4 2543 },
8e893469 2544#endif
ab09203e 2545 { },
1da177e4
LT
2546};
2547
2548static ctl_table fs_table[] = {
2549 {
1da177e4
LT
2550 .procname = "quota",
2551 .mode = 0555,
2552 .child = fs_dqstats_table,
2553 },
ab09203e 2554 { },
1da177e4
LT
2555};
2556
2557static ctl_table sys_table[] = {
2558 {
1da177e4
LT
2559 .procname = "fs",
2560 .mode = 0555,
2561 .child = fs_table,
2562 },
ab09203e 2563 { },
1da177e4
LT
2564};
2565
2566static int __init dquot_init(void)
2567{
2568 int i;
2569 unsigned long nr_hash, order;
2570
2571 printk(KERN_NOTICE "VFS: Disk quotas %s\n", __DQUOT_VERSION__);
2572
0b4d4147 2573 register_sysctl_table(sys_table);
1da177e4 2574
20c2df83 2575 dquot_cachep = kmem_cache_create("dquot",
1da177e4 2576 sizeof(struct dquot), sizeof(unsigned long) * 4,
fffb60f9
PJ
2577 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
2578 SLAB_MEM_SPREAD|SLAB_PANIC),
20c2df83 2579 NULL);
1da177e4
LT
2580
2581 order = 0;
2582 dquot_hash = (struct hlist_head *)__get_free_pages(GFP_ATOMIC, order);
2583 if (!dquot_hash)
2584 panic("Cannot create dquot hash table");
2585
2586 /* Find power-of-two hlist_heads which can fit into allocation */
2587 nr_hash = (1UL << order) * PAGE_SIZE / sizeof(struct hlist_head);
2588 dq_hash_bits = 0;
2589 do {
2590 dq_hash_bits++;
2591 } while (nr_hash >> dq_hash_bits);
2592 dq_hash_bits--;
2593
2594 nr_hash = 1UL << dq_hash_bits;
2595 dq_hash_mask = nr_hash - 1;
2596 for (i = 0; i < nr_hash; i++)
2597 INIT_HLIST_HEAD(dquot_hash + i);
2598
2599 printk("Dquot-cache hash table entries: %ld (order %ld, %ld bytes)\n",
2600 nr_hash, order, (PAGE_SIZE << order));
2601
8e1f936b 2602 register_shrinker(&dqcache_shrinker);
1da177e4
LT
2603
2604 return 0;
2605}
2606module_init(dquot_init);