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