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.
12 * Author: Marco van Wieringen <mvw@planets.elm.net>
14 * Fixes: Dmitry Gorodchanin <pgmdsg@ibi.com>, 11 Feb 96
16 * Revised list management to avoid races
17 * -- Bill Hawes, <whawes@star.net>, 9/98
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
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
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
40 * Added dynamic quota structure allocation
41 * Jan Kara <jack@suse.cz> 12/2000
43 * Rewritten quota interface. Implemented new quota format and
44 * formats registering.
45 * Jan Kara, <jack@suse.cz>, 2001,2002
48 * Jan Kara, <jack@suse.cz>, 10/2002
50 * Added journalled quota support, fix lock inversion problems
51 * Jan Kara, <jack@suse.cz>, 2003,2004
53 * (C) Copyright 1994 - 1997 Marco van Wieringen
56 #include <linux/errno.h>
57 #include <linux/kernel.h>
59 #include <linux/mount.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>
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>
77 #include <linux/capability.h>
78 #include <linux/quotaops.h>
79 #include <linux/writeback.h> /* for inode_lock, oddly enough.. */
80 #ifdef CONFIG_QUOTA_NETLINK_INTERFACE
81 #include <net/netlink.h>
82 #include <net/genetlink.h>
85 #include <asm/uaccess.h>
87 #define __DQUOT_PARANOIA
90 * There are three quota SMP locks. dq_list_lock protects all lists with quotas
91 * and quota formats, dqstats structure containing statistics about the lists
92 * dq_data_lock protects data from dq_dqb and also mem_dqinfo structures and
93 * also guards consistency of dquot->dq_dqb with inode->i_blocks, i_bytes.
94 * i_blocks and i_bytes updates itself are guarded by i_lock acquired directly
95 * in inode_add_bytes() and inode_sub_bytes(). dq_state_lock protects
96 * modifications of quota state (on quotaon and quotaoff) and readers who care
97 * about latest values take it as well.
99 * The spinlock ordering is hence: dq_data_lock > dq_list_lock > i_lock,
100 * dq_list_lock > dq_state_lock
102 * Note that some things (eg. sb pointer, type, id) doesn't change during
103 * the life of the dquot structure and so needn't to be protected by a lock
105 * Any operation working on dquots via inode pointers must hold dqptr_sem. If
106 * operation is just reading pointers from inode (or not using them at all) the
107 * read lock is enough. If pointers are altered function must hold write lock
108 * (these locking rules also apply for S_NOQUOTA flag in the inode - note that
109 * for altering the flag i_mutex is also needed).
111 * Each dquot has its dq_lock mutex. Locked dquots might not be referenced
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.
120 * Lock ordering (including related VFS locks) is the following:
121 * i_mutex > dqonoff_sem > journal_lock > dqptr_sem > dquot->dq_lock >
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.
129 * i_mutex on quota files is special (it's below dqio_mutex)
132 static DEFINE_SPINLOCK(dq_list_lock
);
133 static DEFINE_SPINLOCK(dq_state_lock
);
134 DEFINE_SPINLOCK(dq_data_lock
);
136 static char *quotatypes
[] = INITQFNAMES
;
137 static struct quota_format_type
*quota_formats
; /* List of registered formats */
138 static struct quota_module_name module_names
[] = INIT_QUOTA_MODULE_NAMES
;
140 /* SLAB cache for dquot structures */
141 static struct kmem_cache
*dquot_cachep
;
143 int register_quota_format(struct quota_format_type
*fmt
)
145 spin_lock(&dq_list_lock
);
146 fmt
->qf_next
= quota_formats
;
148 spin_unlock(&dq_list_lock
);
152 void unregister_quota_format(struct quota_format_type
*fmt
)
154 struct quota_format_type
**actqf
;
156 spin_lock(&dq_list_lock
);
157 for (actqf
= "a_formats
; *actqf
&& *actqf
!= fmt
; actqf
= &(*actqf
)->qf_next
);
159 *actqf
= (*actqf
)->qf_next
;
160 spin_unlock(&dq_list_lock
);
163 static struct quota_format_type
*find_quota_format(int id
)
165 struct quota_format_type
*actqf
;
167 spin_lock(&dq_list_lock
);
168 for (actqf
= quota_formats
; actqf
&& actqf
->qf_fmt_id
!= id
; actqf
= actqf
->qf_next
);
169 if (!actqf
|| !try_module_get(actqf
->qf_owner
)) {
172 spin_unlock(&dq_list_lock
);
174 for (qm
= 0; module_names
[qm
].qm_fmt_id
&& module_names
[qm
].qm_fmt_id
!= id
; qm
++);
175 if (!module_names
[qm
].qm_fmt_id
|| request_module(module_names
[qm
].qm_mod_name
))
178 spin_lock(&dq_list_lock
);
179 for (actqf
= quota_formats
; actqf
&& actqf
->qf_fmt_id
!= id
; actqf
= actqf
->qf_next
);
180 if (actqf
&& !try_module_get(actqf
->qf_owner
))
183 spin_unlock(&dq_list_lock
);
187 static void put_quota_format(struct quota_format_type
*fmt
)
189 module_put(fmt
->qf_owner
);
193 * Dquot List Management:
194 * The quota code uses three lists for dquot management: the inuse_list,
195 * free_dquots, and dquot_hash[] array. A single dquot structure may be
196 * on all three lists, depending on its current state.
198 * All dquots are placed to the end of inuse_list when first created, and this
199 * list is used for invalidate operation, which must look at every dquot.
201 * Unused dquots (dq_count == 0) are added to the free_dquots list when freed,
202 * and this list is searched whenever we need an available dquot. Dquots are
203 * removed from the list as soon as they are used again, and
204 * dqstats.free_dquots gives the number of dquots on the list. When
205 * dquot is invalidated it's completely released from memory.
207 * Dquots with a specific identity (device, type and id) are placed on
208 * one of the dquot_hash[] hash chains. The provides an efficient search
209 * mechanism to locate a specific dquot.
212 static LIST_HEAD(inuse_list
);
213 static LIST_HEAD(free_dquots
);
214 static unsigned int dq_hash_bits
, dq_hash_mask
;
215 static struct hlist_head
*dquot_hash
;
217 struct dqstats dqstats
;
219 static inline unsigned int
220 hashfn(const struct super_block
*sb
, unsigned int id
, int type
)
224 tmp
= (((unsigned long)sb
>>L1_CACHE_SHIFT
) ^ id
) * (MAXQUOTAS
- type
);
225 return (tmp
+ (tmp
>> dq_hash_bits
)) & dq_hash_mask
;
229 * Following list functions expect dq_list_lock to be held
231 static inline void insert_dquot_hash(struct dquot
*dquot
)
233 struct hlist_head
*head
= dquot_hash
+ hashfn(dquot
->dq_sb
, dquot
->dq_id
, dquot
->dq_type
);
234 hlist_add_head(&dquot
->dq_hash
, head
);
237 static inline void remove_dquot_hash(struct dquot
*dquot
)
239 hlist_del_init(&dquot
->dq_hash
);
242 static inline struct dquot
*find_dquot(unsigned int hashent
, struct super_block
*sb
, unsigned int id
, int type
)
244 struct hlist_node
*node
;
247 hlist_for_each (node
, dquot_hash
+hashent
) {
248 dquot
= hlist_entry(node
, struct dquot
, dq_hash
);
249 if (dquot
->dq_sb
== sb
&& dquot
->dq_id
== id
&& dquot
->dq_type
== type
)
255 /* Add a dquot to the tail of the free list */
256 static inline void put_dquot_last(struct dquot
*dquot
)
258 list_add_tail(&dquot
->dq_free
, &free_dquots
);
259 dqstats
.free_dquots
++;
262 static inline void remove_free_dquot(struct dquot
*dquot
)
264 if (list_empty(&dquot
->dq_free
))
266 list_del_init(&dquot
->dq_free
);
267 dqstats
.free_dquots
--;
270 static inline void put_inuse(struct dquot
*dquot
)
272 /* We add to the back of inuse list so we don't have to restart
273 * when traversing this list and we block */
274 list_add_tail(&dquot
->dq_inuse
, &inuse_list
);
275 dqstats
.allocated_dquots
++;
278 static inline void remove_inuse(struct dquot
*dquot
)
280 dqstats
.allocated_dquots
--;
281 list_del(&dquot
->dq_inuse
);
284 * End of list functions needing dq_list_lock
287 static void wait_on_dquot(struct dquot
*dquot
)
289 mutex_lock(&dquot
->dq_lock
);
290 mutex_unlock(&dquot
->dq_lock
);
293 static inline int dquot_dirty(struct dquot
*dquot
)
295 return test_bit(DQ_MOD_B
, &dquot
->dq_flags
);
298 static inline int mark_dquot_dirty(struct dquot
*dquot
)
300 return dquot
->dq_sb
->dq_op
->mark_dirty(dquot
);
303 int dquot_mark_dquot_dirty(struct dquot
*dquot
)
305 spin_lock(&dq_list_lock
);
306 if (!test_and_set_bit(DQ_MOD_B
, &dquot
->dq_flags
))
307 list_add(&dquot
->dq_dirty
, &sb_dqopt(dquot
->dq_sb
)->
308 info
[dquot
->dq_type
].dqi_dirty_list
);
309 spin_unlock(&dq_list_lock
);
313 /* This function needs dq_list_lock */
314 static inline int clear_dquot_dirty(struct dquot
*dquot
)
316 if (!test_and_clear_bit(DQ_MOD_B
, &dquot
->dq_flags
))
318 list_del_init(&dquot
->dq_dirty
);
322 void mark_info_dirty(struct super_block
*sb
, int type
)
324 set_bit(DQF_INFO_DIRTY_B
, &sb_dqopt(sb
)->info
[type
].dqi_flags
);
326 EXPORT_SYMBOL(mark_info_dirty
);
329 * Read dquot from disk and alloc space for it
332 int dquot_acquire(struct dquot
*dquot
)
334 int ret
= 0, ret2
= 0;
335 struct quota_info
*dqopt
= sb_dqopt(dquot
->dq_sb
);
337 mutex_lock(&dquot
->dq_lock
);
338 mutex_lock(&dqopt
->dqio_mutex
);
339 if (!test_bit(DQ_READ_B
, &dquot
->dq_flags
))
340 ret
= dqopt
->ops
[dquot
->dq_type
]->read_dqblk(dquot
);
343 set_bit(DQ_READ_B
, &dquot
->dq_flags
);
344 /* Instantiate dquot if needed */
345 if (!test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
) && !dquot
->dq_off
) {
346 ret
= dqopt
->ops
[dquot
->dq_type
]->commit_dqblk(dquot
);
347 /* Write the info if needed */
348 if (info_dirty(&dqopt
->info
[dquot
->dq_type
]))
349 ret2
= dqopt
->ops
[dquot
->dq_type
]->write_file_info(dquot
->dq_sb
, dquot
->dq_type
);
357 set_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
);
359 mutex_unlock(&dqopt
->dqio_mutex
);
360 mutex_unlock(&dquot
->dq_lock
);
365 * Write dquot to disk
367 int dquot_commit(struct dquot
*dquot
)
369 int ret
= 0, ret2
= 0;
370 struct quota_info
*dqopt
= sb_dqopt(dquot
->dq_sb
);
372 mutex_lock(&dqopt
->dqio_mutex
);
373 spin_lock(&dq_list_lock
);
374 if (!clear_dquot_dirty(dquot
)) {
375 spin_unlock(&dq_list_lock
);
378 spin_unlock(&dq_list_lock
);
379 /* Inactive dquot can be only if there was error during read/init
380 * => we have better not writing it */
381 if (test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
)) {
382 ret
= dqopt
->ops
[dquot
->dq_type
]->commit_dqblk(dquot
);
383 if (info_dirty(&dqopt
->info
[dquot
->dq_type
]))
384 ret2
= dqopt
->ops
[dquot
->dq_type
]->write_file_info(dquot
->dq_sb
, dquot
->dq_type
);
389 mutex_unlock(&dqopt
->dqio_mutex
);
396 int dquot_release(struct dquot
*dquot
)
398 int ret
= 0, ret2
= 0;
399 struct quota_info
*dqopt
= sb_dqopt(dquot
->dq_sb
);
401 mutex_lock(&dquot
->dq_lock
);
402 /* Check whether we are not racing with some other dqget() */
403 if (atomic_read(&dquot
->dq_count
) > 1)
405 mutex_lock(&dqopt
->dqio_mutex
);
406 if (dqopt
->ops
[dquot
->dq_type
]->release_dqblk
) {
407 ret
= dqopt
->ops
[dquot
->dq_type
]->release_dqblk(dquot
);
409 if (info_dirty(&dqopt
->info
[dquot
->dq_type
]))
410 ret2
= dqopt
->ops
[dquot
->dq_type
]->write_file_info(dquot
->dq_sb
, dquot
->dq_type
);
414 clear_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
);
415 mutex_unlock(&dqopt
->dqio_mutex
);
417 mutex_unlock(&dquot
->dq_lock
);
421 void dquot_destroy(struct dquot
*dquot
)
423 kmem_cache_free(dquot_cachep
, dquot
);
425 EXPORT_SYMBOL(dquot_destroy
);
427 static inline void do_destroy_dquot(struct dquot
*dquot
)
429 dquot
->dq_sb
->dq_op
->destroy_dquot(dquot
);
432 /* Invalidate all dquots on the list. Note that this function is called after
433 * quota is disabled and pointers from inodes removed so there cannot be new
434 * quota users. There can still be some users of quotas due to inodes being
435 * just deleted or pruned by prune_icache() (those are not attached to any
436 * list) or parallel quotactl call. We have to wait for such users.
438 static void invalidate_dquots(struct super_block
*sb
, int type
)
440 struct dquot
*dquot
, *tmp
;
443 spin_lock(&dq_list_lock
);
444 list_for_each_entry_safe(dquot
, tmp
, &inuse_list
, dq_inuse
) {
445 if (dquot
->dq_sb
!= sb
)
447 if (dquot
->dq_type
!= type
)
449 /* Wait for dquot users */
450 if (atomic_read(&dquot
->dq_count
)) {
453 atomic_inc(&dquot
->dq_count
);
454 prepare_to_wait(&dquot
->dq_wait_unused
, &wait
,
455 TASK_UNINTERRUPTIBLE
);
456 spin_unlock(&dq_list_lock
);
457 /* Once dqput() wakes us up, we know it's time to free
459 * IMPORTANT: we rely on the fact that there is always
460 * at most one process waiting for dquot to free.
461 * Otherwise dq_count would be > 1 and we would never
464 if (atomic_read(&dquot
->dq_count
) > 1)
466 finish_wait(&dquot
->dq_wait_unused
, &wait
);
468 /* At this moment dquot() need not exist (it could be
469 * reclaimed by prune_dqcache(). Hence we must
474 * Quota now has no users and it has been written on last
477 remove_dquot_hash(dquot
);
478 remove_free_dquot(dquot
);
480 do_destroy_dquot(dquot
);
482 spin_unlock(&dq_list_lock
);
485 /* Call callback for every active dquot on given filesystem */
486 int dquot_scan_active(struct super_block
*sb
,
487 int (*fn
)(struct dquot
*dquot
, unsigned long priv
),
490 struct dquot
*dquot
, *old_dquot
= NULL
;
493 mutex_lock(&sb_dqopt(sb
)->dqonoff_mutex
);
494 spin_lock(&dq_list_lock
);
495 list_for_each_entry(dquot
, &inuse_list
, dq_inuse
) {
496 if (!test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
))
498 if (dquot
->dq_sb
!= sb
)
500 /* Now we have active dquot so we can just increase use count */
501 atomic_inc(&dquot
->dq_count
);
503 spin_unlock(&dq_list_lock
);
506 ret
= fn(dquot
, priv
);
509 spin_lock(&dq_list_lock
);
510 /* We are safe to continue now because our dquot could not
511 * be moved out of the inuse list while we hold the reference */
513 spin_unlock(&dq_list_lock
);
516 mutex_unlock(&sb_dqopt(sb
)->dqonoff_mutex
);
520 int vfs_quota_sync(struct super_block
*sb
, int type
)
522 struct list_head
*dirty
;
524 struct quota_info
*dqopt
= sb_dqopt(sb
);
527 mutex_lock(&dqopt
->dqonoff_mutex
);
528 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
529 if (type
!= -1 && cnt
!= type
)
531 if (!sb_has_quota_active(sb
, cnt
))
533 spin_lock(&dq_list_lock
);
534 dirty
= &dqopt
->info
[cnt
].dqi_dirty_list
;
535 while (!list_empty(dirty
)) {
536 dquot
= list_first_entry(dirty
, struct dquot
, dq_dirty
);
537 /* Dirty and inactive can be only bad dquot... */
538 if (!test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
)) {
539 clear_dquot_dirty(dquot
);
542 /* Now we have active dquot from which someone is
543 * holding reference so we can safely just increase
545 atomic_inc(&dquot
->dq_count
);
547 spin_unlock(&dq_list_lock
);
548 sb
->dq_op
->write_dquot(dquot
);
550 spin_lock(&dq_list_lock
);
552 spin_unlock(&dq_list_lock
);
555 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
556 if ((cnt
== type
|| type
== -1) && sb_has_quota_active(sb
, cnt
)
557 && info_dirty(&dqopt
->info
[cnt
]))
558 sb
->dq_op
->write_info(sb
, cnt
);
559 spin_lock(&dq_list_lock
);
561 spin_unlock(&dq_list_lock
);
562 mutex_unlock(&dqopt
->dqonoff_mutex
);
567 /* Free unused dquots from cache */
568 static void prune_dqcache(int count
)
570 struct list_head
*head
;
573 head
= free_dquots
.prev
;
574 while (head
!= &free_dquots
&& count
) {
575 dquot
= list_entry(head
, struct dquot
, dq_free
);
576 remove_dquot_hash(dquot
);
577 remove_free_dquot(dquot
);
579 do_destroy_dquot(dquot
);
581 head
= free_dquots
.prev
;
586 * This is called from kswapd when we think we need some
590 static int shrink_dqcache_memory(int nr
, gfp_t gfp_mask
)
593 spin_lock(&dq_list_lock
);
595 spin_unlock(&dq_list_lock
);
597 return (dqstats
.free_dquots
/ 100) * sysctl_vfs_cache_pressure
;
600 static struct shrinker dqcache_shrinker
= {
601 .shrink
= shrink_dqcache_memory
,
602 .seeks
= DEFAULT_SEEKS
,
606 * Put reference to dquot
607 * NOTE: If you change this function please check whether dqput_blocks() works right...
609 void dqput(struct dquot
*dquot
)
615 #ifdef __DQUOT_PARANOIA
616 if (!atomic_read(&dquot
->dq_count
)) {
617 printk("VFS: dqput: trying to free free dquot\n");
618 printk("VFS: device %s, dquot of %s %d\n",
620 quotatypes
[dquot
->dq_type
],
626 spin_lock(&dq_list_lock
);
628 spin_unlock(&dq_list_lock
);
630 spin_lock(&dq_list_lock
);
631 if (atomic_read(&dquot
->dq_count
) > 1) {
632 /* We have more than one user... nothing to do */
633 atomic_dec(&dquot
->dq_count
);
634 /* Releasing dquot during quotaoff phase? */
635 if (!sb_has_quota_active(dquot
->dq_sb
, dquot
->dq_type
) &&
636 atomic_read(&dquot
->dq_count
) == 1)
637 wake_up(&dquot
->dq_wait_unused
);
638 spin_unlock(&dq_list_lock
);
641 /* Need to release dquot? */
642 if (test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
) && dquot_dirty(dquot
)) {
643 spin_unlock(&dq_list_lock
);
644 /* Commit dquot before releasing */
645 ret
= dquot
->dq_sb
->dq_op
->write_dquot(dquot
);
647 printk(KERN_ERR
"VFS: cannot write quota structure on "
648 "device %s (error %d). Quota may get out of "
649 "sync!\n", dquot
->dq_sb
->s_id
, ret
);
651 * We clear dirty bit anyway, so that we avoid
654 spin_lock(&dq_list_lock
);
655 clear_dquot_dirty(dquot
);
656 spin_unlock(&dq_list_lock
);
660 /* Clear flag in case dquot was inactive (something bad happened) */
661 clear_dquot_dirty(dquot
);
662 if (test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
)) {
663 spin_unlock(&dq_list_lock
);
664 dquot
->dq_sb
->dq_op
->release_dquot(dquot
);
667 atomic_dec(&dquot
->dq_count
);
668 #ifdef __DQUOT_PARANOIA
670 BUG_ON(!list_empty(&dquot
->dq_free
));
672 put_dquot_last(dquot
);
673 spin_unlock(&dq_list_lock
);
676 struct dquot
*dquot_alloc(struct super_block
*sb
, int type
)
678 return kmem_cache_zalloc(dquot_cachep
, GFP_NOFS
);
680 EXPORT_SYMBOL(dquot_alloc
);
682 static struct dquot
*get_empty_dquot(struct super_block
*sb
, int type
)
686 dquot
= sb
->dq_op
->alloc_dquot(sb
, type
);
690 mutex_init(&dquot
->dq_lock
);
691 INIT_LIST_HEAD(&dquot
->dq_free
);
692 INIT_LIST_HEAD(&dquot
->dq_inuse
);
693 INIT_HLIST_NODE(&dquot
->dq_hash
);
694 INIT_LIST_HEAD(&dquot
->dq_dirty
);
695 init_waitqueue_head(&dquot
->dq_wait_unused
);
697 dquot
->dq_type
= type
;
698 atomic_set(&dquot
->dq_count
, 1);
704 * Get reference to dquot
706 * Locking is slightly tricky here. We are guarded from parallel quotaoff()
707 * destroying our dquot by:
708 * a) checking for quota flags under dq_list_lock and
709 * b) getting a reference to dquot before we release dq_list_lock
711 struct dquot
*dqget(struct super_block
*sb
, unsigned int id
, int type
)
713 unsigned int hashent
= hashfn(sb
, id
, type
);
714 struct dquot
*dquot
= NODQUOT
, *empty
= NODQUOT
;
716 if (!sb_has_quota_active(sb
, type
))
719 spin_lock(&dq_list_lock
);
720 spin_lock(&dq_state_lock
);
721 if (!sb_has_quota_active(sb
, type
)) {
722 spin_unlock(&dq_state_lock
);
723 spin_unlock(&dq_list_lock
);
726 spin_unlock(&dq_state_lock
);
728 if ((dquot
= find_dquot(hashent
, sb
, id
, type
)) == NODQUOT
) {
729 if (empty
== NODQUOT
) {
730 spin_unlock(&dq_list_lock
);
731 if ((empty
= get_empty_dquot(sb
, type
)) == NODQUOT
)
732 schedule(); /* Try to wait for a moment... */
738 /* all dquots go on the inuse_list */
740 /* hash it first so it can be found */
741 insert_dquot_hash(dquot
);
743 spin_unlock(&dq_list_lock
);
745 if (!atomic_read(&dquot
->dq_count
))
746 remove_free_dquot(dquot
);
747 atomic_inc(&dquot
->dq_count
);
748 dqstats
.cache_hits
++;
750 spin_unlock(&dq_list_lock
);
752 /* Wait for dq_lock - after this we know that either dquot_release() is already
753 * finished or it will be canceled due to dq_count > 1 test */
754 wait_on_dquot(dquot
);
755 /* Read the dquot and instantiate it (everything done only if needed) */
756 if (!test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
) && sb
->dq_op
->acquire_dquot(dquot
) < 0) {
761 #ifdef __DQUOT_PARANOIA
762 BUG_ON(!dquot
->dq_sb
); /* Has somebody invalidated entry under us? */
766 do_destroy_dquot(empty
);
771 static int dqinit_needed(struct inode
*inode
, int type
)
775 if (IS_NOQUOTA(inode
))
778 return inode
->i_dquot
[type
] == NODQUOT
;
779 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
780 if (inode
->i_dquot
[cnt
] == NODQUOT
)
785 /* This routine is guarded by dqonoff_mutex mutex */
786 static void add_dquot_ref(struct super_block
*sb
, int type
)
788 struct inode
*inode
, *old_inode
= NULL
;
790 spin_lock(&inode_lock
);
791 list_for_each_entry(inode
, &sb
->s_inodes
, i_sb_list
) {
792 if (!atomic_read(&inode
->i_writecount
))
794 if (!dqinit_needed(inode
, type
))
796 if (inode
->i_state
& (I_FREEING
|I_WILL_FREE
))
800 spin_unlock(&inode_lock
);
803 sb
->dq_op
->initialize(inode
, type
);
804 /* We hold a reference to 'inode' so it couldn't have been
805 * removed from s_inodes list while we dropped the inode_lock.
806 * We cannot iput the inode now as we can be holding the last
807 * reference and we cannot iput it under inode_lock. So we
808 * keep the reference and iput it later. */
810 spin_lock(&inode_lock
);
812 spin_unlock(&inode_lock
);
816 /* Return 0 if dqput() won't block (note that 1 doesn't necessarily mean blocking) */
817 static inline int dqput_blocks(struct dquot
*dquot
)
819 if (atomic_read(&dquot
->dq_count
) <= 1)
824 /* Remove references to dquots from inode - add dquot to list for freeing if needed */
825 /* We can't race with anybody because we hold dqptr_sem for writing... */
826 static int remove_inode_dquot_ref(struct inode
*inode
, int type
,
827 struct list_head
*tofree_head
)
829 struct dquot
*dquot
= inode
->i_dquot
[type
];
831 inode
->i_dquot
[type
] = NODQUOT
;
832 if (dquot
!= NODQUOT
) {
833 if (dqput_blocks(dquot
)) {
834 #ifdef __DQUOT_PARANOIA
835 if (atomic_read(&dquot
->dq_count
) != 1)
836 printk(KERN_WARNING
"VFS: Adding dquot with dq_count %d to dispose list.\n", atomic_read(&dquot
->dq_count
));
838 spin_lock(&dq_list_lock
);
839 list_add(&dquot
->dq_free
, tofree_head
); /* As dquot must have currently users it can't be on the free list... */
840 spin_unlock(&dq_list_lock
);
844 dqput(dquot
); /* We have guaranteed we won't block */
849 /* Free list of dquots - called from inode.c */
850 /* dquots are removed from inodes, no new references can be got so we are the only ones holding reference */
851 static void put_dquot_list(struct list_head
*tofree_head
)
853 struct list_head
*act_head
;
856 act_head
= tofree_head
->next
;
857 /* So now we have dquots on the list... Just free them */
858 while (act_head
!= tofree_head
) {
859 dquot
= list_entry(act_head
, struct dquot
, dq_free
);
860 act_head
= act_head
->next
;
861 list_del_init(&dquot
->dq_free
); /* Remove dquot from the list so we won't have problems... */
866 static void remove_dquot_ref(struct super_block
*sb
, int type
,
867 struct list_head
*tofree_head
)
871 spin_lock(&inode_lock
);
872 list_for_each_entry(inode
, &sb
->s_inodes
, i_sb_list
) {
873 if (!IS_NOQUOTA(inode
))
874 remove_inode_dquot_ref(inode
, type
, tofree_head
);
876 spin_unlock(&inode_lock
);
879 /* Gather all references from inodes and drop them */
880 static void drop_dquot_ref(struct super_block
*sb
, int type
)
882 LIST_HEAD(tofree_head
);
885 down_write(&sb_dqopt(sb
)->dqptr_sem
);
886 remove_dquot_ref(sb
, type
, &tofree_head
);
887 up_write(&sb_dqopt(sb
)->dqptr_sem
);
888 put_dquot_list(&tofree_head
);
892 static inline void dquot_incr_inodes(struct dquot
*dquot
, qsize_t number
)
894 dquot
->dq_dqb
.dqb_curinodes
+= number
;
897 static inline void dquot_incr_space(struct dquot
*dquot
, qsize_t number
)
899 dquot
->dq_dqb
.dqb_curspace
+= number
;
902 static inline void dquot_decr_inodes(struct dquot
*dquot
, qsize_t number
)
904 if (sb_dqopt(dquot
->dq_sb
)->flags
& DQUOT_NEGATIVE_USAGE
||
905 dquot
->dq_dqb
.dqb_curinodes
>= number
)
906 dquot
->dq_dqb
.dqb_curinodes
-= number
;
908 dquot
->dq_dqb
.dqb_curinodes
= 0;
909 if (dquot
->dq_dqb
.dqb_curinodes
<= dquot
->dq_dqb
.dqb_isoftlimit
)
910 dquot
->dq_dqb
.dqb_itime
= (time_t) 0;
911 clear_bit(DQ_INODES_B
, &dquot
->dq_flags
);
914 static inline void dquot_decr_space(struct dquot
*dquot
, qsize_t number
)
916 if (sb_dqopt(dquot
->dq_sb
)->flags
& DQUOT_NEGATIVE_USAGE
||
917 dquot
->dq_dqb
.dqb_curspace
>= number
)
918 dquot
->dq_dqb
.dqb_curspace
-= number
;
920 dquot
->dq_dqb
.dqb_curspace
= 0;
921 if (dquot
->dq_dqb
.dqb_curspace
<= dquot
->dq_dqb
.dqb_bsoftlimit
)
922 dquot
->dq_dqb
.dqb_btime
= (time_t) 0;
923 clear_bit(DQ_BLKS_B
, &dquot
->dq_flags
);
926 static int warning_issued(struct dquot
*dquot
, const int warntype
)
928 int flag
= (warntype
== QUOTA_NL_BHARDWARN
||
929 warntype
== QUOTA_NL_BSOFTLONGWARN
) ? DQ_BLKS_B
:
930 ((warntype
== QUOTA_NL_IHARDWARN
||
931 warntype
== QUOTA_NL_ISOFTLONGWARN
) ? DQ_INODES_B
: 0);
935 return test_and_set_bit(flag
, &dquot
->dq_flags
);
938 #ifdef CONFIG_PRINT_QUOTA_WARNING
939 static int flag_print_warnings
= 1;
941 static inline int need_print_warning(struct dquot
*dquot
)
943 if (!flag_print_warnings
)
946 switch (dquot
->dq_type
) {
948 return current_fsuid() == dquot
->dq_id
;
950 return in_group_p(dquot
->dq_id
);
955 /* Print warning to user which exceeded quota */
956 static void print_warning(struct dquot
*dquot
, const int warntype
)
959 struct tty_struct
*tty
;
961 if (warntype
== QUOTA_NL_IHARDBELOW
||
962 warntype
== QUOTA_NL_ISOFTBELOW
||
963 warntype
== QUOTA_NL_BHARDBELOW
||
964 warntype
== QUOTA_NL_BSOFTBELOW
|| !need_print_warning(dquot
))
967 tty
= get_current_tty();
970 tty_write_message(tty
, dquot
->dq_sb
->s_id
);
971 if (warntype
== QUOTA_NL_ISOFTWARN
|| warntype
== QUOTA_NL_BSOFTWARN
)
972 tty_write_message(tty
, ": warning, ");
974 tty_write_message(tty
, ": write failed, ");
975 tty_write_message(tty
, quotatypes
[dquot
->dq_type
]);
977 case QUOTA_NL_IHARDWARN
:
978 msg
= " file limit reached.\r\n";
980 case QUOTA_NL_ISOFTLONGWARN
:
981 msg
= " file quota exceeded too long.\r\n";
983 case QUOTA_NL_ISOFTWARN
:
984 msg
= " file quota exceeded.\r\n";
986 case QUOTA_NL_BHARDWARN
:
987 msg
= " block limit reached.\r\n";
989 case QUOTA_NL_BSOFTLONGWARN
:
990 msg
= " block quota exceeded too long.\r\n";
992 case QUOTA_NL_BSOFTWARN
:
993 msg
= " block quota exceeded.\r\n";
996 tty_write_message(tty
, msg
);
1001 #ifdef CONFIG_QUOTA_NETLINK_INTERFACE
1003 /* Netlink family structure for quota */
1004 static struct genl_family quota_genl_family
= {
1005 .id
= GENL_ID_GENERATE
,
1007 .name
= "VFS_DQUOT",
1009 .maxattr
= QUOTA_NL_A_MAX
,
1012 /* Send warning to userspace about user which exceeded quota */
1013 static void send_warning(const struct dquot
*dquot
, const char warntype
)
1015 static atomic_t seq
;
1016 struct sk_buff
*skb
;
1019 int msg_size
= 4 * nla_total_size(sizeof(u32
)) +
1020 2 * nla_total_size(sizeof(u64
));
1022 /* We have to allocate using GFP_NOFS as we are called from a
1023 * filesystem performing write and thus further recursion into
1024 * the fs to free some data could cause deadlocks. */
1025 skb
= genlmsg_new(msg_size
, GFP_NOFS
);
1028 "VFS: Not enough memory to send quota warning.\n");
1031 msg_head
= genlmsg_put(skb
, 0, atomic_add_return(1, &seq
),
1032 "a_genl_family
, 0, QUOTA_NL_C_WARNING
);
1035 "VFS: Cannot store netlink header in quota warning.\n");
1038 ret
= nla_put_u32(skb
, QUOTA_NL_A_QTYPE
, dquot
->dq_type
);
1041 ret
= nla_put_u64(skb
, QUOTA_NL_A_EXCESS_ID
, dquot
->dq_id
);
1044 ret
= nla_put_u32(skb
, QUOTA_NL_A_WARNING
, warntype
);
1047 ret
= nla_put_u32(skb
, QUOTA_NL_A_DEV_MAJOR
,
1048 MAJOR(dquot
->dq_sb
->s_dev
));
1051 ret
= nla_put_u32(skb
, QUOTA_NL_A_DEV_MINOR
,
1052 MINOR(dquot
->dq_sb
->s_dev
));
1055 ret
= nla_put_u64(skb
, QUOTA_NL_A_CAUSED_ID
, current_uid());
1058 genlmsg_end(skb
, msg_head
);
1060 genlmsg_multicast(skb
, 0, quota_genl_family
.id
, GFP_NOFS
);
1063 printk(KERN_ERR
"VFS: Not enough space to compose quota message!\n");
1069 static inline void flush_warnings(struct dquot
* const *dquots
, char *warntype
)
1073 for (i
= 0; i
< MAXQUOTAS
; i
++)
1074 if (dquots
[i
] != NODQUOT
&& warntype
[i
] != QUOTA_NL_NOWARN
&&
1075 !warning_issued(dquots
[i
], warntype
[i
])) {
1076 #ifdef CONFIG_PRINT_QUOTA_WARNING
1077 print_warning(dquots
[i
], warntype
[i
]);
1079 #ifdef CONFIG_QUOTA_NETLINK_INTERFACE
1080 send_warning(dquots
[i
], warntype
[i
]);
1085 static inline char ignore_hardlimit(struct dquot
*dquot
)
1087 struct mem_dqinfo
*info
= &sb_dqopt(dquot
->dq_sb
)->info
[dquot
->dq_type
];
1089 return capable(CAP_SYS_RESOURCE
) &&
1090 (info
->dqi_format
->qf_fmt_id
!= QFMT_VFS_OLD
|| !(info
->dqi_flags
& V1_DQF_RSQUASH
));
1093 /* needs dq_data_lock */
1094 static int check_idq(struct dquot
*dquot
, qsize_t inodes
, char *warntype
)
1096 *warntype
= QUOTA_NL_NOWARN
;
1097 if (!sb_has_quota_limits_enabled(dquot
->dq_sb
, dquot
->dq_type
) ||
1098 test_bit(DQ_FAKE_B
, &dquot
->dq_flags
))
1101 if (dquot
->dq_dqb
.dqb_ihardlimit
&&
1102 (dquot
->dq_dqb
.dqb_curinodes
+ inodes
) > dquot
->dq_dqb
.dqb_ihardlimit
&&
1103 !ignore_hardlimit(dquot
)) {
1104 *warntype
= QUOTA_NL_IHARDWARN
;
1108 if (dquot
->dq_dqb
.dqb_isoftlimit
&&
1109 (dquot
->dq_dqb
.dqb_curinodes
+ inodes
) > dquot
->dq_dqb
.dqb_isoftlimit
&&
1110 dquot
->dq_dqb
.dqb_itime
&& get_seconds() >= dquot
->dq_dqb
.dqb_itime
&&
1111 !ignore_hardlimit(dquot
)) {
1112 *warntype
= QUOTA_NL_ISOFTLONGWARN
;
1116 if (dquot
->dq_dqb
.dqb_isoftlimit
&&
1117 (dquot
->dq_dqb
.dqb_curinodes
+ inodes
) > dquot
->dq_dqb
.dqb_isoftlimit
&&
1118 dquot
->dq_dqb
.dqb_itime
== 0) {
1119 *warntype
= QUOTA_NL_ISOFTWARN
;
1120 dquot
->dq_dqb
.dqb_itime
= get_seconds() + sb_dqopt(dquot
->dq_sb
)->info
[dquot
->dq_type
].dqi_igrace
;
1126 /* needs dq_data_lock */
1127 static int check_bdq(struct dquot
*dquot
, qsize_t space
, int prealloc
, char *warntype
)
1129 *warntype
= QUOTA_NL_NOWARN
;
1130 if (!sb_has_quota_limits_enabled(dquot
->dq_sb
, dquot
->dq_type
) ||
1131 test_bit(DQ_FAKE_B
, &dquot
->dq_flags
))
1134 if (dquot
->dq_dqb
.dqb_bhardlimit
&&
1135 dquot
->dq_dqb
.dqb_curspace
+ space
> dquot
->dq_dqb
.dqb_bhardlimit
&&
1136 !ignore_hardlimit(dquot
)) {
1138 *warntype
= QUOTA_NL_BHARDWARN
;
1142 if (dquot
->dq_dqb
.dqb_bsoftlimit
&&
1143 dquot
->dq_dqb
.dqb_curspace
+ space
> dquot
->dq_dqb
.dqb_bsoftlimit
&&
1144 dquot
->dq_dqb
.dqb_btime
&& get_seconds() >= dquot
->dq_dqb
.dqb_btime
&&
1145 !ignore_hardlimit(dquot
)) {
1147 *warntype
= QUOTA_NL_BSOFTLONGWARN
;
1151 if (dquot
->dq_dqb
.dqb_bsoftlimit
&&
1152 dquot
->dq_dqb
.dqb_curspace
+ space
> dquot
->dq_dqb
.dqb_bsoftlimit
&&
1153 dquot
->dq_dqb
.dqb_btime
== 0) {
1155 *warntype
= QUOTA_NL_BSOFTWARN
;
1156 dquot
->dq_dqb
.dqb_btime
= get_seconds() + sb_dqopt(dquot
->dq_sb
)->info
[dquot
->dq_type
].dqi_bgrace
;
1160 * We don't allow preallocation to exceed softlimit so exceeding will
1169 static int info_idq_free(struct dquot
*dquot
, qsize_t inodes
)
1171 if (test_bit(DQ_FAKE_B
, &dquot
->dq_flags
) ||
1172 dquot
->dq_dqb
.dqb_curinodes
<= dquot
->dq_dqb
.dqb_isoftlimit
||
1173 !sb_has_quota_limits_enabled(dquot
->dq_sb
, dquot
->dq_type
))
1174 return QUOTA_NL_NOWARN
;
1176 if (dquot
->dq_dqb
.dqb_curinodes
- inodes
<= dquot
->dq_dqb
.dqb_isoftlimit
)
1177 return QUOTA_NL_ISOFTBELOW
;
1178 if (dquot
->dq_dqb
.dqb_curinodes
>= dquot
->dq_dqb
.dqb_ihardlimit
&&
1179 dquot
->dq_dqb
.dqb_curinodes
- inodes
< dquot
->dq_dqb
.dqb_ihardlimit
)
1180 return QUOTA_NL_IHARDBELOW
;
1181 return QUOTA_NL_NOWARN
;
1184 static int info_bdq_free(struct dquot
*dquot
, qsize_t space
)
1186 if (test_bit(DQ_FAKE_B
, &dquot
->dq_flags
) ||
1187 dquot
->dq_dqb
.dqb_curspace
<= dquot
->dq_dqb
.dqb_bsoftlimit
)
1188 return QUOTA_NL_NOWARN
;
1190 if (dquot
->dq_dqb
.dqb_curspace
- space
<= dquot
->dq_dqb
.dqb_bsoftlimit
)
1191 return QUOTA_NL_BSOFTBELOW
;
1192 if (dquot
->dq_dqb
.dqb_curspace
>= dquot
->dq_dqb
.dqb_bhardlimit
&&
1193 dquot
->dq_dqb
.dqb_curspace
- space
< dquot
->dq_dqb
.dqb_bhardlimit
)
1194 return QUOTA_NL_BHARDBELOW
;
1195 return QUOTA_NL_NOWARN
;
1198 * Initialize quota pointers in inode
1199 * We do things in a bit complicated way but by that we avoid calling
1200 * dqget() and thus filesystem callbacks under dqptr_sem.
1202 int dquot_initialize(struct inode
*inode
, int type
)
1204 unsigned int id
= 0;
1206 struct dquot
*got
[MAXQUOTAS
] = { NODQUOT
, NODQUOT
};
1207 struct super_block
*sb
= inode
->i_sb
;
1209 /* First test before acquiring mutex - solves deadlocks when we
1210 * re-enter the quota code and are already holding the mutex */
1211 if (IS_NOQUOTA(inode
))
1214 /* First get references to structures we might need. */
1215 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1216 if (type
!= -1 && cnt
!= type
)
1226 got
[cnt
] = dqget(sb
, id
, cnt
);
1229 down_write(&sb_dqopt(sb
)->dqptr_sem
);
1230 /* Having dqptr_sem we know NOQUOTA flags can't be altered... */
1231 if (IS_NOQUOTA(inode
))
1233 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1234 if (type
!= -1 && cnt
!= type
)
1236 /* Avoid races with quotaoff() */
1237 if (!sb_has_quota_active(sb
, cnt
))
1239 if (inode
->i_dquot
[cnt
] == NODQUOT
) {
1240 inode
->i_dquot
[cnt
] = got
[cnt
];
1245 up_write(&sb_dqopt(sb
)->dqptr_sem
);
1246 /* Drop unused references */
1247 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1253 * Release all quotas referenced by inode
1255 int dquot_drop(struct inode
*inode
)
1258 struct dquot
*put
[MAXQUOTAS
];
1260 down_write(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1261 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1262 put
[cnt
] = inode
->i_dquot
[cnt
];
1263 inode
->i_dquot
[cnt
] = NODQUOT
;
1265 up_write(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1267 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1272 /* Wrapper to remove references to quota structures from inode */
1273 void vfs_dq_drop(struct inode
*inode
)
1275 /* Here we can get arbitrary inode from clear_inode() so we have
1276 * to be careful. OTOH we don't need locking as quota operations
1277 * are allowed to change only at mount time */
1278 if (!IS_NOQUOTA(inode
) && inode
->i_sb
&& inode
->i_sb
->dq_op
1279 && inode
->i_sb
->dq_op
->drop
) {
1281 /* Test before calling to rule out calls from proc and such
1282 * where we are not allowed to block. Note that this is
1283 * actually reliable test even without the lock - the caller
1284 * must assure that nobody can come after the DQUOT_DROP and
1285 * add quota pointers back anyway */
1286 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1287 if (inode
->i_dquot
[cnt
] != NODQUOT
)
1289 if (cnt
< MAXQUOTAS
)
1290 inode
->i_sb
->dq_op
->drop(inode
);
1295 * Following four functions update i_blocks+i_bytes fields and
1296 * quota information (together with appropriate checks)
1297 * NOTE: We absolutely rely on the fact that caller dirties
1298 * the inode (usually macros in quotaops.h care about this) and
1299 * holds a handle for the current transaction so that dquot write and
1300 * inode write go into the same transaction.
1304 * This operation can block, but only after everything is updated
1306 int dquot_alloc_space(struct inode
*inode
, qsize_t number
, int warn
)
1308 int cnt
, ret
= NO_QUOTA
;
1309 char warntype
[MAXQUOTAS
];
1311 /* First test before acquiring mutex - solves deadlocks when we
1312 * re-enter the quota code and are already holding the mutex */
1313 if (IS_NOQUOTA(inode
)) {
1315 inode_add_bytes(inode
, number
);
1318 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1319 warntype
[cnt
] = QUOTA_NL_NOWARN
;
1321 down_read(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1322 if (IS_NOQUOTA(inode
)) { /* Now we can do reliable test... */
1323 up_read(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1326 spin_lock(&dq_data_lock
);
1327 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1328 if (inode
->i_dquot
[cnt
] == NODQUOT
)
1330 if (check_bdq(inode
->i_dquot
[cnt
], number
, warn
, warntype
+cnt
) == NO_QUOTA
)
1333 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1334 if (inode
->i_dquot
[cnt
] == NODQUOT
)
1336 dquot_incr_space(inode
->i_dquot
[cnt
], number
);
1338 inode_add_bytes(inode
, number
);
1341 spin_unlock(&dq_data_lock
);
1342 if (ret
== QUOTA_OK
)
1343 /* Dirtify all the dquots - this can block when journalling */
1344 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1345 if (inode
->i_dquot
[cnt
])
1346 mark_dquot_dirty(inode
->i_dquot
[cnt
]);
1347 flush_warnings(inode
->i_dquot
, warntype
);
1348 up_read(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1353 * This operation can block, but only after everything is updated
1355 int dquot_alloc_inode(const struct inode
*inode
, qsize_t number
)
1357 int cnt
, ret
= NO_QUOTA
;
1358 char warntype
[MAXQUOTAS
];
1360 /* First test before acquiring mutex - solves deadlocks when we
1361 * re-enter the quota code and are already holding the mutex */
1362 if (IS_NOQUOTA(inode
))
1364 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1365 warntype
[cnt
] = QUOTA_NL_NOWARN
;
1366 down_read(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1367 if (IS_NOQUOTA(inode
)) {
1368 up_read(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1371 spin_lock(&dq_data_lock
);
1372 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1373 if (inode
->i_dquot
[cnt
] == NODQUOT
)
1375 if (check_idq(inode
->i_dquot
[cnt
], number
, warntype
+cnt
) == NO_QUOTA
)
1379 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1380 if (inode
->i_dquot
[cnt
] == NODQUOT
)
1382 dquot_incr_inodes(inode
->i_dquot
[cnt
], number
);
1386 spin_unlock(&dq_data_lock
);
1387 if (ret
== QUOTA_OK
)
1388 /* Dirtify all the dquots - this can block when journalling */
1389 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1390 if (inode
->i_dquot
[cnt
])
1391 mark_dquot_dirty(inode
->i_dquot
[cnt
]);
1392 flush_warnings(inode
->i_dquot
, warntype
);
1393 up_read(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1398 * This operation can block, but only after everything is updated
1400 int dquot_free_space(struct inode
*inode
, qsize_t number
)
1403 char warntype
[MAXQUOTAS
];
1405 /* First test before acquiring mutex - solves deadlocks when we
1406 * re-enter the quota code and are already holding the mutex */
1407 if (IS_NOQUOTA(inode
)) {
1409 inode_sub_bytes(inode
, number
);
1413 down_read(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1414 /* Now recheck reliably when holding dqptr_sem */
1415 if (IS_NOQUOTA(inode
)) {
1416 up_read(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1419 spin_lock(&dq_data_lock
);
1420 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1421 if (inode
->i_dquot
[cnt
] == NODQUOT
)
1423 warntype
[cnt
] = info_bdq_free(inode
->i_dquot
[cnt
], number
);
1424 dquot_decr_space(inode
->i_dquot
[cnt
], number
);
1426 inode_sub_bytes(inode
, number
);
1427 spin_unlock(&dq_data_lock
);
1428 /* Dirtify all the dquots - this can block when journalling */
1429 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1430 if (inode
->i_dquot
[cnt
])
1431 mark_dquot_dirty(inode
->i_dquot
[cnt
]);
1432 flush_warnings(inode
->i_dquot
, warntype
);
1433 up_read(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1438 * This operation can block, but only after everything is updated
1440 int dquot_free_inode(const struct inode
*inode
, qsize_t number
)
1443 char warntype
[MAXQUOTAS
];
1445 /* First test before acquiring mutex - solves deadlocks when we
1446 * re-enter the quota code and are already holding the mutex */
1447 if (IS_NOQUOTA(inode
))
1450 down_read(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1451 /* Now recheck reliably when holding dqptr_sem */
1452 if (IS_NOQUOTA(inode
)) {
1453 up_read(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1456 spin_lock(&dq_data_lock
);
1457 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1458 if (inode
->i_dquot
[cnt
] == NODQUOT
)
1460 warntype
[cnt
] = info_idq_free(inode
->i_dquot
[cnt
], number
);
1461 dquot_decr_inodes(inode
->i_dquot
[cnt
], number
);
1463 spin_unlock(&dq_data_lock
);
1464 /* Dirtify all the dquots - this can block when journalling */
1465 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1466 if (inode
->i_dquot
[cnt
])
1467 mark_dquot_dirty(inode
->i_dquot
[cnt
]);
1468 flush_warnings(inode
->i_dquot
, warntype
);
1469 up_read(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1474 * Transfer the number of inode and blocks from one diskquota to an other.
1476 * This operation can block, but only after everything is updated
1477 * A transaction must be started when entering this function.
1479 int dquot_transfer(struct inode
*inode
, struct iattr
*iattr
)
1482 struct dquot
*transfer_from
[MAXQUOTAS
];
1483 struct dquot
*transfer_to
[MAXQUOTAS
];
1484 int cnt
, ret
= QUOTA_OK
;
1485 int chuid
= iattr
->ia_valid
& ATTR_UID
&& inode
->i_uid
!= iattr
->ia_uid
,
1486 chgid
= iattr
->ia_valid
& ATTR_GID
&& inode
->i_gid
!= iattr
->ia_gid
;
1487 char warntype_to
[MAXQUOTAS
];
1488 char warntype_from_inodes
[MAXQUOTAS
], warntype_from_space
[MAXQUOTAS
];
1490 /* First test before acquiring mutex - solves deadlocks when we
1491 * re-enter the quota code and are already holding the mutex */
1492 if (IS_NOQUOTA(inode
))
1494 /* Initialize the arrays */
1495 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1496 transfer_from
[cnt
] = NODQUOT
;
1497 transfer_to
[cnt
] = NODQUOT
;
1498 warntype_to
[cnt
] = QUOTA_NL_NOWARN
;
1503 transfer_to
[cnt
] = dqget(inode
->i_sb
, iattr
->ia_uid
, cnt
);
1508 transfer_to
[cnt
] = dqget(inode
->i_sb
, iattr
->ia_gid
, cnt
);
1513 down_write(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1514 /* Now recheck reliably when holding dqptr_sem */
1515 if (IS_NOQUOTA(inode
)) { /* File without quota accounting? */
1516 up_write(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1519 spin_lock(&dq_data_lock
);
1520 space
= inode_get_bytes(inode
);
1521 /* Build the transfer_from list and check the limits */
1522 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1523 if (transfer_to
[cnt
] == NODQUOT
)
1525 transfer_from
[cnt
] = inode
->i_dquot
[cnt
];
1526 if (check_idq(transfer_to
[cnt
], 1, warntype_to
+ cnt
) ==
1527 NO_QUOTA
|| check_bdq(transfer_to
[cnt
], space
, 0,
1528 warntype_to
+ cnt
) == NO_QUOTA
)
1533 * Finally perform the needed transfer from transfer_from to transfer_to
1535 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1537 * Skip changes for same uid or gid or for turned off quota-type.
1539 if (transfer_to
[cnt
] == NODQUOT
)
1542 /* Due to IO error we might not have transfer_from[] structure */
1543 if (transfer_from
[cnt
]) {
1544 warntype_from_inodes
[cnt
] =
1545 info_idq_free(transfer_from
[cnt
], 1);
1546 warntype_from_space
[cnt
] =
1547 info_bdq_free(transfer_from
[cnt
], space
);
1548 dquot_decr_inodes(transfer_from
[cnt
], 1);
1549 dquot_decr_space(transfer_from
[cnt
], space
);
1552 dquot_incr_inodes(transfer_to
[cnt
], 1);
1553 dquot_incr_space(transfer_to
[cnt
], space
);
1555 inode
->i_dquot
[cnt
] = transfer_to
[cnt
];
1557 spin_unlock(&dq_data_lock
);
1558 up_write(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1560 /* Dirtify all the dquots - this can block when journalling */
1561 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1562 if (transfer_from
[cnt
])
1563 mark_dquot_dirty(transfer_from
[cnt
]);
1564 if (transfer_to
[cnt
]) {
1565 mark_dquot_dirty(transfer_to
[cnt
]);
1566 /* The reference we got is transferred to the inode */
1567 transfer_to
[cnt
] = NODQUOT
;
1571 flush_warnings(transfer_to
, warntype_to
);
1572 flush_warnings(transfer_from
, warntype_from_inodes
);
1573 flush_warnings(transfer_from
, warntype_from_space
);
1575 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1576 dqput(transfer_from
[cnt
]);
1577 dqput(transfer_to
[cnt
]);
1581 spin_unlock(&dq_data_lock
);
1582 up_write(&sb_dqopt(inode
->i_sb
)->dqptr_sem
);
1583 /* Clear dquot pointers we don't want to dqput() */
1584 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1585 transfer_from
[cnt
] = NODQUOT
;
1590 /* Wrapper for transferring ownership of an inode */
1591 int vfs_dq_transfer(struct inode
*inode
, struct iattr
*iattr
)
1593 if (sb_any_quota_active(inode
->i_sb
) && !IS_NOQUOTA(inode
)) {
1595 if (inode
->i_sb
->dq_op
->transfer(inode
, iattr
) == NO_QUOTA
)
1603 * Write info of quota file to disk
1605 int dquot_commit_info(struct super_block
*sb
, int type
)
1608 struct quota_info
*dqopt
= sb_dqopt(sb
);
1610 mutex_lock(&dqopt
->dqio_mutex
);
1611 ret
= dqopt
->ops
[type
]->write_file_info(sb
, type
);
1612 mutex_unlock(&dqopt
->dqio_mutex
);
1617 * Definitions of diskquota operations.
1619 struct dquot_operations dquot_operations
= {
1620 .initialize
= dquot_initialize
,
1622 .alloc_space
= dquot_alloc_space
,
1623 .alloc_inode
= dquot_alloc_inode
,
1624 .free_space
= dquot_free_space
,
1625 .free_inode
= dquot_free_inode
,
1626 .transfer
= dquot_transfer
,
1627 .write_dquot
= dquot_commit
,
1628 .acquire_dquot
= dquot_acquire
,
1629 .release_dquot
= dquot_release
,
1630 .mark_dirty
= dquot_mark_dquot_dirty
,
1631 .write_info
= dquot_commit_info
,
1632 .alloc_dquot
= dquot_alloc
,
1633 .destroy_dquot
= dquot_destroy
,
1637 * Turn quota off on a device. type == -1 ==> quotaoff for all types (umount)
1639 int vfs_quota_disable(struct super_block
*sb
, int type
, unsigned int flags
)
1642 struct quota_info
*dqopt
= sb_dqopt(sb
);
1643 struct inode
*toputinode
[MAXQUOTAS
];
1645 /* Cannot turn off usage accounting without turning off limits, or
1646 * suspend quotas and simultaneously turn quotas off. */
1647 if ((flags
& DQUOT_USAGE_ENABLED
&& !(flags
& DQUOT_LIMITS_ENABLED
))
1648 || (flags
& DQUOT_SUSPENDED
&& flags
& (DQUOT_LIMITS_ENABLED
|
1649 DQUOT_USAGE_ENABLED
)))
1652 /* We need to serialize quota_off() for device */
1653 mutex_lock(&dqopt
->dqonoff_mutex
);
1656 * Skip everything if there's nothing to do. We have to do this because
1657 * sometimes we are called when fill_super() failed and calling
1658 * sync_fs() in such cases does no good.
1660 if (!sb_any_quota_loaded(sb
)) {
1661 mutex_unlock(&dqopt
->dqonoff_mutex
);
1664 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1665 toputinode
[cnt
] = NULL
;
1666 if (type
!= -1 && cnt
!= type
)
1668 if (!sb_has_quota_loaded(sb
, cnt
))
1671 if (flags
& DQUOT_SUSPENDED
) {
1672 spin_lock(&dq_state_lock
);
1674 dquot_state_flag(DQUOT_SUSPENDED
, cnt
);
1675 spin_unlock(&dq_state_lock
);
1677 spin_lock(&dq_state_lock
);
1678 dqopt
->flags
&= ~dquot_state_flag(flags
, cnt
);
1679 /* Turning off suspended quotas? */
1680 if (!sb_has_quota_loaded(sb
, cnt
) &&
1681 sb_has_quota_suspended(sb
, cnt
)) {
1682 dqopt
->flags
&= ~dquot_state_flag(
1683 DQUOT_SUSPENDED
, cnt
);
1684 spin_unlock(&dq_state_lock
);
1685 iput(dqopt
->files
[cnt
]);
1686 dqopt
->files
[cnt
] = NULL
;
1689 spin_unlock(&dq_state_lock
);
1692 /* We still have to keep quota loaded? */
1693 if (sb_has_quota_loaded(sb
, cnt
) && !(flags
& DQUOT_SUSPENDED
))
1696 /* Note: these are blocking operations */
1697 drop_dquot_ref(sb
, cnt
);
1698 invalidate_dquots(sb
, cnt
);
1700 * Now all dquots should be invalidated, all writes done so we should be only
1701 * users of the info. No locks needed.
1703 if (info_dirty(&dqopt
->info
[cnt
]))
1704 sb
->dq_op
->write_info(sb
, cnt
);
1705 if (dqopt
->ops
[cnt
]->free_file_info
)
1706 dqopt
->ops
[cnt
]->free_file_info(sb
, cnt
);
1707 put_quota_format(dqopt
->info
[cnt
].dqi_format
);
1709 toputinode
[cnt
] = dqopt
->files
[cnt
];
1710 if (!sb_has_quota_loaded(sb
, cnt
))
1711 dqopt
->files
[cnt
] = NULL
;
1712 dqopt
->info
[cnt
].dqi_flags
= 0;
1713 dqopt
->info
[cnt
].dqi_igrace
= 0;
1714 dqopt
->info
[cnt
].dqi_bgrace
= 0;
1715 dqopt
->ops
[cnt
] = NULL
;
1717 mutex_unlock(&dqopt
->dqonoff_mutex
);
1719 /* Skip syncing and setting flags if quota files are hidden */
1720 if (dqopt
->flags
& DQUOT_QUOTA_SYS_FILE
)
1723 /* Sync the superblock so that buffers with quota data are written to
1724 * disk (and so userspace sees correct data afterwards). */
1725 if (sb
->s_op
->sync_fs
)
1726 sb
->s_op
->sync_fs(sb
, 1);
1727 sync_blockdev(sb
->s_bdev
);
1728 /* Now the quota files are just ordinary files and we can set the
1729 * inode flags back. Moreover we discard the pagecache so that
1730 * userspace sees the writes we did bypassing the pagecache. We
1731 * must also discard the blockdev buffers so that we see the
1732 * changes done by userspace on the next quotaon() */
1733 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1734 if (toputinode
[cnt
]) {
1735 mutex_lock(&dqopt
->dqonoff_mutex
);
1736 /* If quota was reenabled in the meantime, we have
1738 if (!sb_has_quota_loaded(sb
, cnt
)) {
1739 mutex_lock_nested(&toputinode
[cnt
]->i_mutex
, I_MUTEX_QUOTA
);
1740 toputinode
[cnt
]->i_flags
&= ~(S_IMMUTABLE
|
1741 S_NOATIME
| S_NOQUOTA
);
1742 truncate_inode_pages(&toputinode
[cnt
]->i_data
, 0);
1743 mutex_unlock(&toputinode
[cnt
]->i_mutex
);
1744 mark_inode_dirty(toputinode
[cnt
]);
1746 mutex_unlock(&dqopt
->dqonoff_mutex
);
1749 invalidate_bdev(sb
->s_bdev
);
1751 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1752 if (toputinode
[cnt
]) {
1753 /* On remount RO, we keep the inode pointer so that we
1754 * can reenable quota on the subsequent remount RW. We
1755 * have to check 'flags' variable and not use sb_has_
1756 * function because another quotaon / quotaoff could
1757 * change global state before we got here. We refuse
1758 * to suspend quotas when there is pending delete on
1759 * the quota file... */
1760 if (!(flags
& DQUOT_SUSPENDED
))
1761 iput(toputinode
[cnt
]);
1762 else if (!toputinode
[cnt
]->i_nlink
)
1768 int vfs_quota_off(struct super_block
*sb
, int type
, int remount
)
1770 return vfs_quota_disable(sb
, type
, remount
? DQUOT_SUSPENDED
:
1771 (DQUOT_USAGE_ENABLED
| DQUOT_LIMITS_ENABLED
));
1775 * Turn quotas on on a device
1779 * Helper function to turn quotas on when we already have the inode of
1780 * quota file and no quota information is loaded.
1782 static int vfs_load_quota_inode(struct inode
*inode
, int type
, int format_id
,
1785 struct quota_format_type
*fmt
= find_quota_format(format_id
);
1786 struct super_block
*sb
= inode
->i_sb
;
1787 struct quota_info
*dqopt
= sb_dqopt(sb
);
1793 if (!S_ISREG(inode
->i_mode
)) {
1797 if (IS_RDONLY(inode
)) {
1801 if (!sb
->s_op
->quota_write
|| !sb
->s_op
->quota_read
) {
1805 /* Usage always has to be set... */
1806 if (!(flags
& DQUOT_USAGE_ENABLED
)) {
1811 if (!(dqopt
->flags
& DQUOT_QUOTA_SYS_FILE
)) {
1812 /* As we bypass the pagecache we must now flush the inode so
1813 * that we see all the changes from userspace... */
1814 write_inode_now(inode
, 1);
1815 /* And now flush the block cache so that kernel sees the
1817 invalidate_bdev(sb
->s_bdev
);
1819 mutex_lock(&inode
->i_mutex
);
1820 mutex_lock(&dqopt
->dqonoff_mutex
);
1821 if (sb_has_quota_loaded(sb
, type
)) {
1826 if (!(dqopt
->flags
& DQUOT_QUOTA_SYS_FILE
)) {
1827 /* We don't want quota and atime on quota files (deadlocks
1828 * possible) Also nobody should write to the file - we use
1829 * special IO operations which ignore the immutable bit. */
1830 down_write(&dqopt
->dqptr_sem
);
1831 oldflags
= inode
->i_flags
& (S_NOATIME
| S_IMMUTABLE
| S_NOQUOTA
);
1832 inode
->i_flags
|= S_NOQUOTA
| S_NOATIME
| S_IMMUTABLE
;
1833 up_write(&dqopt
->dqptr_sem
);
1834 sb
->dq_op
->drop(inode
);
1838 dqopt
->files
[type
] = igrab(inode
);
1839 if (!dqopt
->files
[type
])
1842 if (!fmt
->qf_ops
->check_quota_file(sb
, type
))
1845 dqopt
->ops
[type
] = fmt
->qf_ops
;
1846 dqopt
->info
[type
].dqi_format
= fmt
;
1847 dqopt
->info
[type
].dqi_fmt_id
= format_id
;
1848 INIT_LIST_HEAD(&dqopt
->info
[type
].dqi_dirty_list
);
1849 mutex_lock(&dqopt
->dqio_mutex
);
1850 if ((error
= dqopt
->ops
[type
]->read_file_info(sb
, type
)) < 0) {
1851 mutex_unlock(&dqopt
->dqio_mutex
);
1854 mutex_unlock(&dqopt
->dqio_mutex
);
1855 mutex_unlock(&inode
->i_mutex
);
1856 spin_lock(&dq_state_lock
);
1857 dqopt
->flags
|= dquot_state_flag(flags
, type
);
1858 spin_unlock(&dq_state_lock
);
1860 add_dquot_ref(sb
, type
);
1861 mutex_unlock(&dqopt
->dqonoff_mutex
);
1866 dqopt
->files
[type
] = NULL
;
1869 mutex_unlock(&dqopt
->dqonoff_mutex
);
1870 if (oldflags
!= -1) {
1871 down_write(&dqopt
->dqptr_sem
);
1872 /* Set the flags back (in the case of accidental quotaon()
1873 * on a wrong file we don't want to mess up the flags) */
1874 inode
->i_flags
&= ~(S_NOATIME
| S_NOQUOTA
| S_IMMUTABLE
);
1875 inode
->i_flags
|= oldflags
;
1876 up_write(&dqopt
->dqptr_sem
);
1878 mutex_unlock(&inode
->i_mutex
);
1880 put_quota_format(fmt
);
1885 /* Reenable quotas on remount RW */
1886 static int vfs_quota_on_remount(struct super_block
*sb
, int type
)
1888 struct quota_info
*dqopt
= sb_dqopt(sb
);
1889 struct inode
*inode
;
1893 mutex_lock(&dqopt
->dqonoff_mutex
);
1894 if (!sb_has_quota_suspended(sb
, type
)) {
1895 mutex_unlock(&dqopt
->dqonoff_mutex
);
1898 inode
= dqopt
->files
[type
];
1899 dqopt
->files
[type
] = NULL
;
1900 spin_lock(&dq_state_lock
);
1901 flags
= dqopt
->flags
& dquot_state_flag(DQUOT_USAGE_ENABLED
|
1902 DQUOT_LIMITS_ENABLED
, type
);
1903 dqopt
->flags
&= ~dquot_state_flag(DQUOT_STATE_FLAGS
, type
);
1904 spin_unlock(&dq_state_lock
);
1905 mutex_unlock(&dqopt
->dqonoff_mutex
);
1907 flags
= dquot_generic_flag(flags
, type
);
1908 ret
= vfs_load_quota_inode(inode
, type
, dqopt
->info
[type
].dqi_fmt_id
,
1915 int vfs_quota_on_path(struct super_block
*sb
, int type
, int format_id
,
1918 int error
= security_quota_on(path
->dentry
);
1921 /* Quota file not on the same filesystem? */
1922 if (path
->mnt
->mnt_sb
!= sb
)
1925 error
= vfs_load_quota_inode(path
->dentry
->d_inode
, type
,
1926 format_id
, DQUOT_USAGE_ENABLED
|
1927 DQUOT_LIMITS_ENABLED
);
1931 int vfs_quota_on(struct super_block
*sb
, int type
, int format_id
, char *name
,
1938 return vfs_quota_on_remount(sb
, type
);
1940 error
= kern_path(name
, LOOKUP_FOLLOW
, &path
);
1942 error
= vfs_quota_on_path(sb
, type
, format_id
, &path
);
1949 * More powerful function for turning on quotas allowing setting
1950 * of individual quota flags
1952 int vfs_quota_enable(struct inode
*inode
, int type
, int format_id
,
1956 struct super_block
*sb
= inode
->i_sb
;
1957 struct quota_info
*dqopt
= sb_dqopt(sb
);
1959 /* Just unsuspend quotas? */
1960 if (flags
& DQUOT_SUSPENDED
)
1961 return vfs_quota_on_remount(sb
, type
);
1964 /* Just updating flags needed? */
1965 if (sb_has_quota_loaded(sb
, type
)) {
1966 mutex_lock(&dqopt
->dqonoff_mutex
);
1967 /* Now do a reliable test... */
1968 if (!sb_has_quota_loaded(sb
, type
)) {
1969 mutex_unlock(&dqopt
->dqonoff_mutex
);
1972 if (flags
& DQUOT_USAGE_ENABLED
&&
1973 sb_has_quota_usage_enabled(sb
, type
)) {
1977 if (flags
& DQUOT_LIMITS_ENABLED
&&
1978 sb_has_quota_limits_enabled(sb
, type
)) {
1982 spin_lock(&dq_state_lock
);
1983 sb_dqopt(sb
)->flags
|= dquot_state_flag(flags
, type
);
1984 spin_unlock(&dq_state_lock
);
1986 mutex_unlock(&dqopt
->dqonoff_mutex
);
1991 return vfs_load_quota_inode(inode
, type
, format_id
, flags
);
1995 * This function is used when filesystem needs to initialize quotas
1996 * during mount time.
1998 int vfs_quota_on_mount(struct super_block
*sb
, char *qf_name
,
1999 int format_id
, int type
)
2001 struct dentry
*dentry
;
2004 dentry
= lookup_one_len(qf_name
, sb
->s_root
, strlen(qf_name
));
2006 return PTR_ERR(dentry
);
2008 if (!dentry
->d_inode
) {
2013 error
= security_quota_on(dentry
);
2015 error
= vfs_load_quota_inode(dentry
->d_inode
, type
, format_id
,
2016 DQUOT_USAGE_ENABLED
| DQUOT_LIMITS_ENABLED
);
2023 /* Wrapper to turn on quotas when remounting rw */
2024 int vfs_dq_quota_on_remount(struct super_block
*sb
)
2029 if (!sb
->s_qcop
|| !sb
->s_qcop
->quota_on
)
2031 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
2032 err
= sb
->s_qcop
->quota_on(sb
, cnt
, 0, NULL
, 1);
2033 if (err
< 0 && !ret
)
2039 static inline qsize_t
qbtos(qsize_t blocks
)
2041 return blocks
<< QIF_DQBLKSIZE_BITS
;
2044 static inline qsize_t
stoqb(qsize_t space
)
2046 return (space
+ QIF_DQBLKSIZE
- 1) >> QIF_DQBLKSIZE_BITS
;
2049 /* Generic routine for getting common part of quota structure */
2050 static void do_get_dqblk(struct dquot
*dquot
, struct if_dqblk
*di
)
2052 struct mem_dqblk
*dm
= &dquot
->dq_dqb
;
2054 spin_lock(&dq_data_lock
);
2055 di
->dqb_bhardlimit
= stoqb(dm
->dqb_bhardlimit
);
2056 di
->dqb_bsoftlimit
= stoqb(dm
->dqb_bsoftlimit
);
2057 di
->dqb_curspace
= dm
->dqb_curspace
;
2058 di
->dqb_ihardlimit
= dm
->dqb_ihardlimit
;
2059 di
->dqb_isoftlimit
= dm
->dqb_isoftlimit
;
2060 di
->dqb_curinodes
= dm
->dqb_curinodes
;
2061 di
->dqb_btime
= dm
->dqb_btime
;
2062 di
->dqb_itime
= dm
->dqb_itime
;
2063 di
->dqb_valid
= QIF_ALL
;
2064 spin_unlock(&dq_data_lock
);
2067 int vfs_get_dqblk(struct super_block
*sb
, int type
, qid_t id
, struct if_dqblk
*di
)
2069 struct dquot
*dquot
;
2071 dquot
= dqget(sb
, id
, type
);
2072 if (dquot
== NODQUOT
)
2074 do_get_dqblk(dquot
, di
);
2080 /* Generic routine for setting common part of quota structure */
2081 static int do_set_dqblk(struct dquot
*dquot
, struct if_dqblk
*di
)
2083 struct mem_dqblk
*dm
= &dquot
->dq_dqb
;
2084 int check_blim
= 0, check_ilim
= 0;
2085 struct mem_dqinfo
*dqi
= &sb_dqopt(dquot
->dq_sb
)->info
[dquot
->dq_type
];
2087 if ((di
->dqb_valid
& QIF_BLIMITS
&&
2088 (di
->dqb_bhardlimit
> dqi
->dqi_maxblimit
||
2089 di
->dqb_bsoftlimit
> dqi
->dqi_maxblimit
)) ||
2090 (di
->dqb_valid
& QIF_ILIMITS
&&
2091 (di
->dqb_ihardlimit
> dqi
->dqi_maxilimit
||
2092 di
->dqb_isoftlimit
> dqi
->dqi_maxilimit
)))
2095 spin_lock(&dq_data_lock
);
2096 if (di
->dqb_valid
& QIF_SPACE
) {
2097 dm
->dqb_curspace
= di
->dqb_curspace
;
2099 __set_bit(DQ_LASTSET_B
+ QIF_SPACE_B
, &dquot
->dq_flags
);
2101 if (di
->dqb_valid
& QIF_BLIMITS
) {
2102 dm
->dqb_bsoftlimit
= qbtos(di
->dqb_bsoftlimit
);
2103 dm
->dqb_bhardlimit
= qbtos(di
->dqb_bhardlimit
);
2105 __set_bit(DQ_LASTSET_B
+ QIF_BLIMITS_B
, &dquot
->dq_flags
);
2107 if (di
->dqb_valid
& QIF_INODES
) {
2108 dm
->dqb_curinodes
= di
->dqb_curinodes
;
2110 __set_bit(DQ_LASTSET_B
+ QIF_INODES_B
, &dquot
->dq_flags
);
2112 if (di
->dqb_valid
& QIF_ILIMITS
) {
2113 dm
->dqb_isoftlimit
= di
->dqb_isoftlimit
;
2114 dm
->dqb_ihardlimit
= di
->dqb_ihardlimit
;
2116 __set_bit(DQ_LASTSET_B
+ QIF_ILIMITS_B
, &dquot
->dq_flags
);
2118 if (di
->dqb_valid
& QIF_BTIME
) {
2119 dm
->dqb_btime
= di
->dqb_btime
;
2121 __set_bit(DQ_LASTSET_B
+ QIF_BTIME_B
, &dquot
->dq_flags
);
2123 if (di
->dqb_valid
& QIF_ITIME
) {
2124 dm
->dqb_itime
= di
->dqb_itime
;
2126 __set_bit(DQ_LASTSET_B
+ QIF_ITIME_B
, &dquot
->dq_flags
);
2130 if (!dm
->dqb_bsoftlimit
|| dm
->dqb_curspace
< dm
->dqb_bsoftlimit
) {
2132 clear_bit(DQ_BLKS_B
, &dquot
->dq_flags
);
2134 else if (!(di
->dqb_valid
& QIF_BTIME
)) /* Set grace only if user hasn't provided his own... */
2135 dm
->dqb_btime
= get_seconds() + dqi
->dqi_bgrace
;
2138 if (!dm
->dqb_isoftlimit
|| dm
->dqb_curinodes
< dm
->dqb_isoftlimit
) {
2140 clear_bit(DQ_INODES_B
, &dquot
->dq_flags
);
2142 else if (!(di
->dqb_valid
& QIF_ITIME
)) /* Set grace only if user hasn't provided his own... */
2143 dm
->dqb_itime
= get_seconds() + dqi
->dqi_igrace
;
2145 if (dm
->dqb_bhardlimit
|| dm
->dqb_bsoftlimit
|| dm
->dqb_ihardlimit
|| dm
->dqb_isoftlimit
)
2146 clear_bit(DQ_FAKE_B
, &dquot
->dq_flags
);
2148 set_bit(DQ_FAKE_B
, &dquot
->dq_flags
);
2149 spin_unlock(&dq_data_lock
);
2150 mark_dquot_dirty(dquot
);
2155 int vfs_set_dqblk(struct super_block
*sb
, int type
, qid_t id
, struct if_dqblk
*di
)
2157 struct dquot
*dquot
;
2160 dquot
= dqget(sb
, id
, type
);
2165 rc
= do_set_dqblk(dquot
, di
);
2171 /* Generic routine for getting common part of quota file information */
2172 int vfs_get_dqinfo(struct super_block
*sb
, int type
, struct if_dqinfo
*ii
)
2174 struct mem_dqinfo
*mi
;
2176 mutex_lock(&sb_dqopt(sb
)->dqonoff_mutex
);
2177 if (!sb_has_quota_active(sb
, type
)) {
2178 mutex_unlock(&sb_dqopt(sb
)->dqonoff_mutex
);
2181 mi
= sb_dqopt(sb
)->info
+ type
;
2182 spin_lock(&dq_data_lock
);
2183 ii
->dqi_bgrace
= mi
->dqi_bgrace
;
2184 ii
->dqi_igrace
= mi
->dqi_igrace
;
2185 ii
->dqi_flags
= mi
->dqi_flags
& DQF_MASK
;
2186 ii
->dqi_valid
= IIF_ALL
;
2187 spin_unlock(&dq_data_lock
);
2188 mutex_unlock(&sb_dqopt(sb
)->dqonoff_mutex
);
2192 /* Generic routine for setting common part of quota file information */
2193 int vfs_set_dqinfo(struct super_block
*sb
, int type
, struct if_dqinfo
*ii
)
2195 struct mem_dqinfo
*mi
;
2198 mutex_lock(&sb_dqopt(sb
)->dqonoff_mutex
);
2199 if (!sb_has_quota_active(sb
, type
)) {
2203 mi
= sb_dqopt(sb
)->info
+ type
;
2204 spin_lock(&dq_data_lock
);
2205 if (ii
->dqi_valid
& IIF_BGRACE
)
2206 mi
->dqi_bgrace
= ii
->dqi_bgrace
;
2207 if (ii
->dqi_valid
& IIF_IGRACE
)
2208 mi
->dqi_igrace
= ii
->dqi_igrace
;
2209 if (ii
->dqi_valid
& IIF_FLAGS
)
2210 mi
->dqi_flags
= (mi
->dqi_flags
& ~DQF_MASK
) | (ii
->dqi_flags
& DQF_MASK
);
2211 spin_unlock(&dq_data_lock
);
2212 mark_info_dirty(sb
, type
);
2213 /* Force write to disk */
2214 sb
->dq_op
->write_info(sb
, type
);
2216 mutex_unlock(&sb_dqopt(sb
)->dqonoff_mutex
);
2220 struct quotactl_ops vfs_quotactl_ops
= {
2221 .quota_on
= vfs_quota_on
,
2222 .quota_off
= vfs_quota_off
,
2223 .quota_sync
= vfs_quota_sync
,
2224 .get_info
= vfs_get_dqinfo
,
2225 .set_info
= vfs_set_dqinfo
,
2226 .get_dqblk
= vfs_get_dqblk
,
2227 .set_dqblk
= vfs_set_dqblk
2230 static ctl_table fs_dqstats_table
[] = {
2232 .ctl_name
= FS_DQ_LOOKUPS
,
2233 .procname
= "lookups",
2234 .data
= &dqstats
.lookups
,
2235 .maxlen
= sizeof(int),
2237 .proc_handler
= &proc_dointvec
,
2240 .ctl_name
= FS_DQ_DROPS
,
2241 .procname
= "drops",
2242 .data
= &dqstats
.drops
,
2243 .maxlen
= sizeof(int),
2245 .proc_handler
= &proc_dointvec
,
2248 .ctl_name
= FS_DQ_READS
,
2249 .procname
= "reads",
2250 .data
= &dqstats
.reads
,
2251 .maxlen
= sizeof(int),
2253 .proc_handler
= &proc_dointvec
,
2256 .ctl_name
= FS_DQ_WRITES
,
2257 .procname
= "writes",
2258 .data
= &dqstats
.writes
,
2259 .maxlen
= sizeof(int),
2261 .proc_handler
= &proc_dointvec
,
2264 .ctl_name
= FS_DQ_CACHE_HITS
,
2265 .procname
= "cache_hits",
2266 .data
= &dqstats
.cache_hits
,
2267 .maxlen
= sizeof(int),
2269 .proc_handler
= &proc_dointvec
,
2272 .ctl_name
= FS_DQ_ALLOCATED
,
2273 .procname
= "allocated_dquots",
2274 .data
= &dqstats
.allocated_dquots
,
2275 .maxlen
= sizeof(int),
2277 .proc_handler
= &proc_dointvec
,
2280 .ctl_name
= FS_DQ_FREE
,
2281 .procname
= "free_dquots",
2282 .data
= &dqstats
.free_dquots
,
2283 .maxlen
= sizeof(int),
2285 .proc_handler
= &proc_dointvec
,
2288 .ctl_name
= FS_DQ_SYNCS
,
2289 .procname
= "syncs",
2290 .data
= &dqstats
.syncs
,
2291 .maxlen
= sizeof(int),
2293 .proc_handler
= &proc_dointvec
,
2295 #ifdef CONFIG_PRINT_QUOTA_WARNING
2297 .ctl_name
= FS_DQ_WARNINGS
,
2298 .procname
= "warnings",
2299 .data
= &flag_print_warnings
,
2300 .maxlen
= sizeof(int),
2302 .proc_handler
= &proc_dointvec
,
2308 static ctl_table fs_table
[] = {
2310 .ctl_name
= FS_DQSTATS
,
2311 .procname
= "quota",
2313 .child
= fs_dqstats_table
,
2318 static ctl_table sys_table
[] = {
2328 static int __init
dquot_init(void)
2331 unsigned long nr_hash
, order
;
2333 printk(KERN_NOTICE
"VFS: Disk quotas %s\n", __DQUOT_VERSION__
);
2335 register_sysctl_table(sys_table
);
2337 dquot_cachep
= kmem_cache_create("dquot",
2338 sizeof(struct dquot
), sizeof(unsigned long) * 4,
2339 (SLAB_HWCACHE_ALIGN
|SLAB_RECLAIM_ACCOUNT
|
2340 SLAB_MEM_SPREAD
|SLAB_PANIC
),
2344 dquot_hash
= (struct hlist_head
*)__get_free_pages(GFP_ATOMIC
, order
);
2346 panic("Cannot create dquot hash table");
2348 /* Find power-of-two hlist_heads which can fit into allocation */
2349 nr_hash
= (1UL << order
) * PAGE_SIZE
/ sizeof(struct hlist_head
);
2353 } while (nr_hash
>> dq_hash_bits
);
2356 nr_hash
= 1UL << dq_hash_bits
;
2357 dq_hash_mask
= nr_hash
- 1;
2358 for (i
= 0; i
< nr_hash
; i
++)
2359 INIT_HLIST_HEAD(dquot_hash
+ i
);
2361 printk("Dquot-cache hash table entries: %ld (order %ld, %ld bytes)\n",
2362 nr_hash
, order
, (PAGE_SIZE
<< order
));
2364 register_shrinker(&dqcache_shrinker
);
2366 #ifdef CONFIG_QUOTA_NETLINK_INTERFACE
2367 if (genl_register_family("a_genl_family
) != 0)
2368 printk(KERN_ERR
"VFS: Failed to create quota netlink interface.\n");
2373 module_init(dquot_init
);
2375 EXPORT_SYMBOL(register_quota_format
);
2376 EXPORT_SYMBOL(unregister_quota_format
);
2377 EXPORT_SYMBOL(dqstats
);
2378 EXPORT_SYMBOL(dq_data_lock
);
2379 EXPORT_SYMBOL(vfs_quota_enable
);
2380 EXPORT_SYMBOL(vfs_quota_on
);
2381 EXPORT_SYMBOL(vfs_quota_on_path
);
2382 EXPORT_SYMBOL(vfs_quota_on_mount
);
2383 EXPORT_SYMBOL(vfs_quota_disable
);
2384 EXPORT_SYMBOL(vfs_quota_off
);
2385 EXPORT_SYMBOL(dquot_scan_active
);
2386 EXPORT_SYMBOL(vfs_quota_sync
);
2387 EXPORT_SYMBOL(vfs_get_dqinfo
);
2388 EXPORT_SYMBOL(vfs_set_dqinfo
);
2389 EXPORT_SYMBOL(vfs_get_dqblk
);
2390 EXPORT_SYMBOL(vfs_set_dqblk
);
2391 EXPORT_SYMBOL(dquot_commit
);
2392 EXPORT_SYMBOL(dquot_commit_info
);
2393 EXPORT_SYMBOL(dquot_acquire
);
2394 EXPORT_SYMBOL(dquot_release
);
2395 EXPORT_SYMBOL(dquot_mark_dquot_dirty
);
2396 EXPORT_SYMBOL(dquot_initialize
);
2397 EXPORT_SYMBOL(dquot_drop
);
2398 EXPORT_SYMBOL(vfs_dq_drop
);
2399 EXPORT_SYMBOL(dqget
);
2400 EXPORT_SYMBOL(dqput
);
2401 EXPORT_SYMBOL(dquot_alloc_space
);
2402 EXPORT_SYMBOL(dquot_alloc_inode
);
2403 EXPORT_SYMBOL(dquot_free_space
);
2404 EXPORT_SYMBOL(dquot_free_inode
);
2405 EXPORT_SYMBOL(dquot_transfer
);
2406 EXPORT_SYMBOL(vfs_dq_transfer
);
2407 EXPORT_SYMBOL(vfs_dq_quota_on_remount
);