1 // SPDX-License-Identifier: GPL-2.0
3 * Implementation of the diskquota system for the LINUX operating system. QUOTA
4 * is implemented using the BSD system call interface as the means of
5 * communication with the user level. This file contains the generic routines
6 * called by the different filesystems on allocation of an inode or block.
7 * These routines take care of the administration needed to have a consistent
8 * diskquota tracking system. The ideas of both user and group quotas are based
9 * on the Melbourne quota system as used on BSD derived systems. The internal
10 * implementation is based on one of the several variants of the LINUX
11 * inode-subsystem with added complexity of the diskquota system.
13 * Author: Marco van Wieringen <mvw@planets.elm.net>
15 * Fixes: Dmitry Gorodchanin <pgmdsg@ibi.com>, 11 Feb 96
17 * Revised list management to avoid races
18 * -- Bill Hawes, <whawes@star.net>, 9/98
20 * Fixed races in dquot_transfer(), dqget() and dquot_alloc_...().
21 * As the consequence the locking was moved from dquot_decr_...(),
22 * dquot_incr_...() to calling functions.
23 * invalidate_dquots() now writes modified dquots.
24 * Serialized quota_off() and quota_on() for mount point.
25 * Fixed a few bugs in grow_dquots().
26 * Fixed deadlock in write_dquot() - we no longer account quotas on
28 * remove_dquot_ref() moved to inode.c - it now traverses through inodes
29 * add_dquot_ref() restarts after blocking
30 * Added check for bogus uid and fixed check for group in quotactl.
31 * Jan Kara, <jack@suse.cz>, sponsored by SuSE CR, 10-11/99
33 * Used struct list_head instead of own list struct
34 * Invalidation of referenced dquots is no longer possible
35 * Improved free_dquots list management
36 * Quota and i_blocks are now updated in one place to avoid races
37 * Warnings are now delayed so we won't block in critical section
38 * Write updated not to require dquot lock
39 * Jan Kara, <jack@suse.cz>, 9/2000
41 * Added dynamic quota structure allocation
42 * Jan Kara <jack@suse.cz> 12/2000
44 * Rewritten quota interface. Implemented new quota format and
45 * formats registering.
46 * Jan Kara, <jack@suse.cz>, 2001,2002
49 * Jan Kara, <jack@suse.cz>, 10/2002
51 * Added journalled quota support, fix lock inversion problems
52 * Jan Kara, <jack@suse.cz>, 2003,2004
54 * (C) Copyright 1994 - 1997 Marco van Wieringen
57 #include <linux/errno.h>
58 #include <linux/kernel.h>
60 #include <linux/mount.h>
62 #include <linux/time.h>
63 #include <linux/types.h>
64 #include <linux/string.h>
65 #include <linux/fcntl.h>
66 #include <linux/stat.h>
67 #include <linux/tty.h>
68 #include <linux/file.h>
69 #include <linux/slab.h>
70 #include <linux/sysctl.h>
71 #include <linux/init.h>
72 #include <linux/module.h>
73 #include <linux/proc_fs.h>
74 #include <linux/security.h>
75 #include <linux/sched.h>
76 #include <linux/cred.h>
77 #include <linux/kmod.h>
78 #include <linux/namei.h>
79 #include <linux/capability.h>
80 #include <linux/quotaops.h>
81 #include "../internal.h" /* ugh */
83 #include <linux/uaccess.h>
86 * There are five quota SMP locks:
87 * * dq_list_lock protects all lists with quotas and quota formats.
88 * * dquot->dq_dqb_lock protects data from dq_dqb
89 * * inode->i_lock protects inode->i_blocks, i_bytes and also guards
90 * consistency of dquot->dq_dqb with inode->i_blocks, i_bytes so that
91 * dquot_transfer() can stabilize amount it transfers
92 * * dq_data_lock protects mem_dqinfo structures and modifications of dquot
93 * pointers in the inode
94 * * dq_state_lock protects modifications of quota state (on quotaon and
95 * quotaoff) and readers who care about latest values take it as well.
97 * The spinlock ordering is hence:
98 * dq_data_lock > dq_list_lock > i_lock > dquot->dq_dqb_lock,
99 * dq_list_lock > dq_state_lock
101 * Note that some things (eg. sb pointer, type, id) doesn't change during
102 * the life of the dquot structure and so needn't to be protected by a lock
104 * Operation accessing dquots via inode pointers are protected by dquot_srcu.
105 * Operation of reading pointer needs srcu_read_lock(&dquot_srcu), and
106 * synchronize_srcu(&dquot_srcu) is called after clearing pointers from
107 * inode and before dropping dquot references to avoid use of dquots after
108 * they are freed. dq_data_lock is used to serialize the pointer setting and
109 * clearing operations.
110 * Special care needs to be taken about S_NOQUOTA inode flag (marking that
111 * inode is a quota file). Functions adding pointers from inode to dquots have
112 * to check this flag under dq_data_lock and then (if S_NOQUOTA is not set) they
113 * have to do all pointer modifications before dropping dq_data_lock. This makes
114 * sure they cannot race with quotaon which first sets S_NOQUOTA flag and
115 * then drops all pointers to dquots from an inode.
117 * Each dquot has its dq_lock mutex. Dquot is locked when it is being read to
118 * memory (or space for it is being allocated) on the first dqget(), when it is
119 * being written out, and when it is being released on the last dqput(). The
120 * allocation and release operations are serialized by the dq_lock and by
121 * checking the use count in dquot_release().
123 * Lock ordering (including related VFS locks) is the following:
124 * s_umount > i_mutex > journal_lock > dquot->dq_lock > dqio_sem
127 static __cacheline_aligned_in_smp
DEFINE_SPINLOCK(dq_list_lock
);
128 static __cacheline_aligned_in_smp
DEFINE_SPINLOCK(dq_state_lock
);
129 __cacheline_aligned_in_smp
DEFINE_SPINLOCK(dq_data_lock
);
130 EXPORT_SYMBOL(dq_data_lock
);
131 DEFINE_STATIC_SRCU(dquot_srcu
);
133 static DECLARE_WAIT_QUEUE_HEAD(dquot_ref_wq
);
135 void __quota_error(struct super_block
*sb
, const char *func
,
136 const char *fmt
, ...)
138 if (printk_ratelimit()) {
140 struct va_format vaf
;
147 printk(KERN_ERR
"Quota error (device %s): %s: %pV\n",
148 sb
->s_id
, func
, &vaf
);
153 EXPORT_SYMBOL(__quota_error
);
155 #if defined(CONFIG_QUOTA_DEBUG) || defined(CONFIG_PRINT_QUOTA_WARNING)
156 static char *quotatypes
[] = INITQFNAMES
;
158 static struct quota_format_type
*quota_formats
; /* List of registered formats */
159 static struct quota_module_name module_names
[] = INIT_QUOTA_MODULE_NAMES
;
161 /* SLAB cache for dquot structures */
162 static struct kmem_cache
*dquot_cachep
;
164 int register_quota_format(struct quota_format_type
*fmt
)
166 spin_lock(&dq_list_lock
);
167 fmt
->qf_next
= quota_formats
;
169 spin_unlock(&dq_list_lock
);
172 EXPORT_SYMBOL(register_quota_format
);
174 void unregister_quota_format(struct quota_format_type
*fmt
)
176 struct quota_format_type
**actqf
;
178 spin_lock(&dq_list_lock
);
179 for (actqf
= "a_formats
; *actqf
&& *actqf
!= fmt
;
180 actqf
= &(*actqf
)->qf_next
)
183 *actqf
= (*actqf
)->qf_next
;
184 spin_unlock(&dq_list_lock
);
186 EXPORT_SYMBOL(unregister_quota_format
);
188 static struct quota_format_type
*find_quota_format(int id
)
190 struct quota_format_type
*actqf
;
192 spin_lock(&dq_list_lock
);
193 for (actqf
= quota_formats
; actqf
&& actqf
->qf_fmt_id
!= id
;
194 actqf
= actqf
->qf_next
)
196 if (!actqf
|| !try_module_get(actqf
->qf_owner
)) {
199 spin_unlock(&dq_list_lock
);
201 for (qm
= 0; module_names
[qm
].qm_fmt_id
&&
202 module_names
[qm
].qm_fmt_id
!= id
; qm
++)
204 if (!module_names
[qm
].qm_fmt_id
||
205 request_module(module_names
[qm
].qm_mod_name
))
208 spin_lock(&dq_list_lock
);
209 for (actqf
= quota_formats
; actqf
&& actqf
->qf_fmt_id
!= id
;
210 actqf
= actqf
->qf_next
)
212 if (actqf
&& !try_module_get(actqf
->qf_owner
))
215 spin_unlock(&dq_list_lock
);
219 static void put_quota_format(struct quota_format_type
*fmt
)
221 module_put(fmt
->qf_owner
);
225 * Dquot List Management:
226 * The quota code uses three lists for dquot management: the inuse_list,
227 * free_dquots, and dquot_hash[] array. A single dquot structure may be
228 * on all three lists, depending on its current state.
230 * All dquots are placed to the end of inuse_list when first created, and this
231 * list is used for invalidate operation, which must look at every dquot.
233 * Unused dquots (dq_count == 0) are added to the free_dquots list when freed,
234 * and this list is searched whenever we need an available dquot. Dquots are
235 * removed from the list as soon as they are used again, and
236 * dqstats.free_dquots gives the number of dquots on the list. When
237 * dquot is invalidated it's completely released from memory.
239 * Dquots with a specific identity (device, type and id) are placed on
240 * one of the dquot_hash[] hash chains. The provides an efficient search
241 * mechanism to locate a specific dquot.
244 static LIST_HEAD(inuse_list
);
245 static LIST_HEAD(free_dquots
);
246 static unsigned int dq_hash_bits
, dq_hash_mask
;
247 static struct hlist_head
*dquot_hash
;
249 struct dqstats dqstats
;
250 EXPORT_SYMBOL(dqstats
);
252 static qsize_t
inode_get_rsv_space(struct inode
*inode
);
253 static qsize_t
__inode_get_rsv_space(struct inode
*inode
);
254 static int __dquot_initialize(struct inode
*inode
, int type
);
256 static inline unsigned int
257 hashfn(const struct super_block
*sb
, struct kqid qid
)
259 unsigned int id
= from_kqid(&init_user_ns
, qid
);
263 tmp
= (((unsigned long)sb
>>L1_CACHE_SHIFT
) ^ id
) * (MAXQUOTAS
- type
);
264 return (tmp
+ (tmp
>> dq_hash_bits
)) & dq_hash_mask
;
268 * Following list functions expect dq_list_lock to be held
270 static inline void insert_dquot_hash(struct dquot
*dquot
)
272 struct hlist_head
*head
;
273 head
= dquot_hash
+ hashfn(dquot
->dq_sb
, dquot
->dq_id
);
274 hlist_add_head(&dquot
->dq_hash
, head
);
277 static inline void remove_dquot_hash(struct dquot
*dquot
)
279 hlist_del_init(&dquot
->dq_hash
);
282 static struct dquot
*find_dquot(unsigned int hashent
, struct super_block
*sb
,
285 struct hlist_node
*node
;
288 hlist_for_each (node
, dquot_hash
+hashent
) {
289 dquot
= hlist_entry(node
, struct dquot
, dq_hash
);
290 if (dquot
->dq_sb
== sb
&& qid_eq(dquot
->dq_id
, qid
))
296 /* Add a dquot to the tail of the free list */
297 static inline void put_dquot_last(struct dquot
*dquot
)
299 list_add_tail(&dquot
->dq_free
, &free_dquots
);
300 dqstats_inc(DQST_FREE_DQUOTS
);
303 static inline void remove_free_dquot(struct dquot
*dquot
)
305 if (list_empty(&dquot
->dq_free
))
307 list_del_init(&dquot
->dq_free
);
308 dqstats_dec(DQST_FREE_DQUOTS
);
311 static inline void put_inuse(struct dquot
*dquot
)
313 /* We add to the back of inuse list so we don't have to restart
314 * when traversing this list and we block */
315 list_add_tail(&dquot
->dq_inuse
, &inuse_list
);
316 dqstats_inc(DQST_ALLOC_DQUOTS
);
319 static inline void remove_inuse(struct dquot
*dquot
)
321 dqstats_dec(DQST_ALLOC_DQUOTS
);
322 list_del(&dquot
->dq_inuse
);
325 * End of list functions needing dq_list_lock
328 static void wait_on_dquot(struct dquot
*dquot
)
330 mutex_lock(&dquot
->dq_lock
);
331 mutex_unlock(&dquot
->dq_lock
);
334 static inline int dquot_dirty(struct dquot
*dquot
)
336 return test_bit(DQ_MOD_B
, &dquot
->dq_flags
);
339 static inline int mark_dquot_dirty(struct dquot
*dquot
)
341 return dquot
->dq_sb
->dq_op
->mark_dirty(dquot
);
344 /* Mark dquot dirty in atomic manner, and return it's old dirty flag state */
345 int dquot_mark_dquot_dirty(struct dquot
*dquot
)
349 if (!test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
))
352 if (sb_dqopt(dquot
->dq_sb
)->flags
& DQUOT_NOLIST_DIRTY
)
353 return test_and_set_bit(DQ_MOD_B
, &dquot
->dq_flags
);
355 /* If quota is dirty already, we don't have to acquire dq_list_lock */
356 if (test_bit(DQ_MOD_B
, &dquot
->dq_flags
))
359 spin_lock(&dq_list_lock
);
360 if (!test_and_set_bit(DQ_MOD_B
, &dquot
->dq_flags
)) {
361 list_add(&dquot
->dq_dirty
, &sb_dqopt(dquot
->dq_sb
)->
362 info
[dquot
->dq_id
.type
].dqi_dirty_list
);
365 spin_unlock(&dq_list_lock
);
368 EXPORT_SYMBOL(dquot_mark_dquot_dirty
);
370 /* Dirtify all the dquots - this can block when journalling */
371 static inline int mark_all_dquot_dirty(struct dquot
* const *dquot
)
376 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
378 /* Even in case of error we have to continue */
379 ret
= mark_dquot_dirty(dquot
[cnt
]);
386 static inline void dqput_all(struct dquot
**dquot
)
390 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
394 static inline int clear_dquot_dirty(struct dquot
*dquot
)
396 if (sb_dqopt(dquot
->dq_sb
)->flags
& DQUOT_NOLIST_DIRTY
)
397 return test_and_clear_bit(DQ_MOD_B
, &dquot
->dq_flags
);
399 spin_lock(&dq_list_lock
);
400 if (!test_and_clear_bit(DQ_MOD_B
, &dquot
->dq_flags
)) {
401 spin_unlock(&dq_list_lock
);
404 list_del_init(&dquot
->dq_dirty
);
405 spin_unlock(&dq_list_lock
);
409 void mark_info_dirty(struct super_block
*sb
, int type
)
411 spin_lock(&dq_data_lock
);
412 sb_dqopt(sb
)->info
[type
].dqi_flags
|= DQF_INFO_DIRTY
;
413 spin_unlock(&dq_data_lock
);
415 EXPORT_SYMBOL(mark_info_dirty
);
418 * Read dquot from disk and alloc space for it
421 int dquot_acquire(struct dquot
*dquot
)
423 int ret
= 0, ret2
= 0;
424 struct quota_info
*dqopt
= sb_dqopt(dquot
->dq_sb
);
426 mutex_lock(&dquot
->dq_lock
);
427 if (!test_bit(DQ_READ_B
, &dquot
->dq_flags
))
428 ret
= dqopt
->ops
[dquot
->dq_id
.type
]->read_dqblk(dquot
);
431 /* Make sure flags update is visible after dquot has been filled */
432 smp_mb__before_atomic();
433 set_bit(DQ_READ_B
, &dquot
->dq_flags
);
434 /* Instantiate dquot if needed */
435 if (!test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
) && !dquot
->dq_off
) {
436 ret
= dqopt
->ops
[dquot
->dq_id
.type
]->commit_dqblk(dquot
);
437 /* Write the info if needed */
438 if (info_dirty(&dqopt
->info
[dquot
->dq_id
.type
])) {
439 ret2
= dqopt
->ops
[dquot
->dq_id
.type
]->write_file_info(
440 dquot
->dq_sb
, dquot
->dq_id
.type
);
450 * Make sure flags update is visible after on-disk struct has been
451 * allocated. Paired with smp_rmb() in dqget().
453 smp_mb__before_atomic();
454 set_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
);
456 mutex_unlock(&dquot
->dq_lock
);
459 EXPORT_SYMBOL(dquot_acquire
);
462 * Write dquot to disk
464 int dquot_commit(struct dquot
*dquot
)
467 struct quota_info
*dqopt
= sb_dqopt(dquot
->dq_sb
);
469 mutex_lock(&dquot
->dq_lock
);
470 if (!clear_dquot_dirty(dquot
))
472 /* Inactive dquot can be only if there was error during read/init
473 * => we have better not writing it */
474 if (test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
))
475 ret
= dqopt
->ops
[dquot
->dq_id
.type
]->commit_dqblk(dquot
);
479 mutex_unlock(&dquot
->dq_lock
);
482 EXPORT_SYMBOL(dquot_commit
);
487 int dquot_release(struct dquot
*dquot
)
489 int ret
= 0, ret2
= 0;
490 struct quota_info
*dqopt
= sb_dqopt(dquot
->dq_sb
);
492 mutex_lock(&dquot
->dq_lock
);
493 /* Check whether we are not racing with some other dqget() */
494 if (atomic_read(&dquot
->dq_count
) > 1)
496 if (dqopt
->ops
[dquot
->dq_id
.type
]->release_dqblk
) {
497 ret
= dqopt
->ops
[dquot
->dq_id
.type
]->release_dqblk(dquot
);
499 if (info_dirty(&dqopt
->info
[dquot
->dq_id
.type
])) {
500 ret2
= dqopt
->ops
[dquot
->dq_id
.type
]->write_file_info(
501 dquot
->dq_sb
, dquot
->dq_id
.type
);
506 clear_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
);
508 mutex_unlock(&dquot
->dq_lock
);
511 EXPORT_SYMBOL(dquot_release
);
513 void dquot_destroy(struct dquot
*dquot
)
515 kmem_cache_free(dquot_cachep
, dquot
);
517 EXPORT_SYMBOL(dquot_destroy
);
519 static inline void do_destroy_dquot(struct dquot
*dquot
)
521 dquot
->dq_sb
->dq_op
->destroy_dquot(dquot
);
524 /* Invalidate all dquots on the list. Note that this function is called after
525 * quota is disabled and pointers from inodes removed so there cannot be new
526 * quota users. There can still be some users of quotas due to inodes being
527 * just deleted or pruned by prune_icache() (those are not attached to any
528 * list) or parallel quotactl call. We have to wait for such users.
530 static void invalidate_dquots(struct super_block
*sb
, int type
)
532 struct dquot
*dquot
, *tmp
;
535 spin_lock(&dq_list_lock
);
536 list_for_each_entry_safe(dquot
, tmp
, &inuse_list
, dq_inuse
) {
537 if (dquot
->dq_sb
!= sb
)
539 if (dquot
->dq_id
.type
!= type
)
541 /* Wait for dquot users */
542 if (atomic_read(&dquot
->dq_count
)) {
544 spin_unlock(&dq_list_lock
);
546 * Once dqput() wakes us up, we know it's time to free
548 * IMPORTANT: we rely on the fact that there is always
549 * at most one process waiting for dquot to free.
550 * Otherwise dq_count would be > 1 and we would never
553 wait_event(dquot_ref_wq
,
554 atomic_read(&dquot
->dq_count
) == 1);
556 /* At this moment dquot() need not exist (it could be
557 * reclaimed by prune_dqcache(). Hence we must
562 * Quota now has no users and it has been written on last
565 remove_dquot_hash(dquot
);
566 remove_free_dquot(dquot
);
568 do_destroy_dquot(dquot
);
570 spin_unlock(&dq_list_lock
);
573 /* Call callback for every active dquot on given filesystem */
574 int dquot_scan_active(struct super_block
*sb
,
575 int (*fn
)(struct dquot
*dquot
, unsigned long priv
),
578 struct dquot
*dquot
, *old_dquot
= NULL
;
581 WARN_ON_ONCE(!rwsem_is_locked(&sb
->s_umount
));
583 spin_lock(&dq_list_lock
);
584 list_for_each_entry(dquot
, &inuse_list
, dq_inuse
) {
585 if (!test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
))
587 if (dquot
->dq_sb
!= sb
)
589 /* Now we have active dquot so we can just increase use count */
590 atomic_inc(&dquot
->dq_count
);
591 spin_unlock(&dq_list_lock
);
592 dqstats_inc(DQST_LOOKUPS
);
596 * ->release_dquot() can be racing with us. Our reference
597 * protects us from new calls to it so just wait for any
598 * outstanding call and recheck the DQ_ACTIVE_B after that.
600 wait_on_dquot(dquot
);
601 if (test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
)) {
602 ret
= fn(dquot
, priv
);
606 spin_lock(&dq_list_lock
);
607 /* We are safe to continue now because our dquot could not
608 * be moved out of the inuse list while we hold the reference */
610 spin_unlock(&dq_list_lock
);
615 EXPORT_SYMBOL(dquot_scan_active
);
617 /* Write all dquot structures to quota files */
618 int dquot_writeback_dquots(struct super_block
*sb
, int type
)
620 struct list_head
*dirty
;
622 struct quota_info
*dqopt
= sb_dqopt(sb
);
626 WARN_ON_ONCE(!rwsem_is_locked(&sb
->s_umount
));
628 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
629 if (type
!= -1 && cnt
!= type
)
631 if (!sb_has_quota_active(sb
, cnt
))
633 spin_lock(&dq_list_lock
);
634 dirty
= &dqopt
->info
[cnt
].dqi_dirty_list
;
635 while (!list_empty(dirty
)) {
636 dquot
= list_first_entry(dirty
, struct dquot
,
639 WARN_ON(!test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
));
641 /* Now we have active dquot from which someone is
642 * holding reference so we can safely just increase
645 spin_unlock(&dq_list_lock
);
646 dqstats_inc(DQST_LOOKUPS
);
647 err
= sb
->dq_op
->write_dquot(dquot
);
650 * Clear dirty bit anyway to avoid infinite
653 clear_dquot_dirty(dquot
);
658 spin_lock(&dq_list_lock
);
660 spin_unlock(&dq_list_lock
);
663 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
664 if ((cnt
== type
|| type
== -1) && sb_has_quota_active(sb
, cnt
)
665 && info_dirty(&dqopt
->info
[cnt
]))
666 sb
->dq_op
->write_info(sb
, cnt
);
667 dqstats_inc(DQST_SYNCS
);
671 EXPORT_SYMBOL(dquot_writeback_dquots
);
673 /* Write all dquot structures to disk and make them visible from userspace */
674 int dquot_quota_sync(struct super_block
*sb
, int type
)
676 struct quota_info
*dqopt
= sb_dqopt(sb
);
680 ret
= dquot_writeback_dquots(sb
, type
);
683 if (dqopt
->flags
& DQUOT_QUOTA_SYS_FILE
)
686 /* This is not very clever (and fast) but currently I don't know about
687 * any other simple way of getting quota data to disk and we must get
688 * them there for userspace to be visible... */
689 if (sb
->s_op
->sync_fs
)
690 sb
->s_op
->sync_fs(sb
, 1);
691 sync_blockdev(sb
->s_bdev
);
694 * Now when everything is written we can discard the pagecache so
695 * that userspace sees the changes.
697 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
698 if (type
!= -1 && cnt
!= type
)
700 if (!sb_has_quota_active(sb
, cnt
))
702 inode_lock(dqopt
->files
[cnt
]);
703 truncate_inode_pages(&dqopt
->files
[cnt
]->i_data
, 0);
704 inode_unlock(dqopt
->files
[cnt
]);
709 EXPORT_SYMBOL(dquot_quota_sync
);
712 dqcache_shrink_scan(struct shrinker
*shrink
, struct shrink_control
*sc
)
715 unsigned long freed
= 0;
717 spin_lock(&dq_list_lock
);
718 while (!list_empty(&free_dquots
) && sc
->nr_to_scan
) {
719 dquot
= list_first_entry(&free_dquots
, struct dquot
, dq_free
);
720 remove_dquot_hash(dquot
);
721 remove_free_dquot(dquot
);
723 do_destroy_dquot(dquot
);
727 spin_unlock(&dq_list_lock
);
732 dqcache_shrink_count(struct shrinker
*shrink
, struct shrink_control
*sc
)
734 return vfs_pressure_ratio(
735 percpu_counter_read_positive(&dqstats
.counter
[DQST_FREE_DQUOTS
]));
738 static struct shrinker dqcache_shrinker
= {
739 .count_objects
= dqcache_shrink_count
,
740 .scan_objects
= dqcache_shrink_scan
,
741 .seeks
= DEFAULT_SEEKS
,
745 * Put reference to dquot
747 void dqput(struct dquot
*dquot
)
753 #ifdef CONFIG_QUOTA_DEBUG
754 if (!atomic_read(&dquot
->dq_count
)) {
755 quota_error(dquot
->dq_sb
, "trying to free free dquot of %s %d",
756 quotatypes
[dquot
->dq_id
.type
],
757 from_kqid(&init_user_ns
, dquot
->dq_id
));
761 dqstats_inc(DQST_DROPS
);
763 spin_lock(&dq_list_lock
);
764 if (atomic_read(&dquot
->dq_count
) > 1) {
765 /* We have more than one user... nothing to do */
766 atomic_dec(&dquot
->dq_count
);
767 /* Releasing dquot during quotaoff phase? */
768 if (!sb_has_quota_active(dquot
->dq_sb
, dquot
->dq_id
.type
) &&
769 atomic_read(&dquot
->dq_count
) == 1)
770 wake_up(&dquot_ref_wq
);
771 spin_unlock(&dq_list_lock
);
774 /* Need to release dquot? */
775 if (dquot_dirty(dquot
)) {
776 spin_unlock(&dq_list_lock
);
777 /* Commit dquot before releasing */
778 ret
= dquot
->dq_sb
->dq_op
->write_dquot(dquot
);
780 quota_error(dquot
->dq_sb
, "Can't write quota structure"
781 " (error %d). Quota may get out of sync!",
784 * We clear dirty bit anyway, so that we avoid
787 clear_dquot_dirty(dquot
);
791 if (test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
)) {
792 spin_unlock(&dq_list_lock
);
793 dquot
->dq_sb
->dq_op
->release_dquot(dquot
);
796 atomic_dec(&dquot
->dq_count
);
797 #ifdef CONFIG_QUOTA_DEBUG
799 BUG_ON(!list_empty(&dquot
->dq_free
));
801 put_dquot_last(dquot
);
802 spin_unlock(&dq_list_lock
);
804 EXPORT_SYMBOL(dqput
);
806 struct dquot
*dquot_alloc(struct super_block
*sb
, int type
)
808 return kmem_cache_zalloc(dquot_cachep
, GFP_NOFS
);
810 EXPORT_SYMBOL(dquot_alloc
);
812 static struct dquot
*get_empty_dquot(struct super_block
*sb
, int type
)
816 dquot
= sb
->dq_op
->alloc_dquot(sb
, type
);
820 mutex_init(&dquot
->dq_lock
);
821 INIT_LIST_HEAD(&dquot
->dq_free
);
822 INIT_LIST_HEAD(&dquot
->dq_inuse
);
823 INIT_HLIST_NODE(&dquot
->dq_hash
);
824 INIT_LIST_HEAD(&dquot
->dq_dirty
);
826 dquot
->dq_id
= make_kqid_invalid(type
);
827 atomic_set(&dquot
->dq_count
, 1);
828 spin_lock_init(&dquot
->dq_dqb_lock
);
834 * Get reference to dquot
836 * Locking is slightly tricky here. We are guarded from parallel quotaoff()
837 * destroying our dquot by:
838 * a) checking for quota flags under dq_list_lock and
839 * b) getting a reference to dquot before we release dq_list_lock
841 struct dquot
*dqget(struct super_block
*sb
, struct kqid qid
)
843 unsigned int hashent
= hashfn(sb
, qid
);
844 struct dquot
*dquot
, *empty
= NULL
;
846 if (!qid_has_mapping(sb
->s_user_ns
, qid
))
847 return ERR_PTR(-EINVAL
);
849 if (!sb_has_quota_active(sb
, qid
.type
))
850 return ERR_PTR(-ESRCH
);
852 spin_lock(&dq_list_lock
);
853 spin_lock(&dq_state_lock
);
854 if (!sb_has_quota_active(sb
, qid
.type
)) {
855 spin_unlock(&dq_state_lock
);
856 spin_unlock(&dq_list_lock
);
857 dquot
= ERR_PTR(-ESRCH
);
860 spin_unlock(&dq_state_lock
);
862 dquot
= find_dquot(hashent
, sb
, qid
);
865 spin_unlock(&dq_list_lock
);
866 empty
= get_empty_dquot(sb
, qid
.type
);
868 schedule(); /* Try to wait for a moment... */
874 /* all dquots go on the inuse_list */
876 /* hash it first so it can be found */
877 insert_dquot_hash(dquot
);
878 spin_unlock(&dq_list_lock
);
879 dqstats_inc(DQST_LOOKUPS
);
881 if (!atomic_read(&dquot
->dq_count
))
882 remove_free_dquot(dquot
);
883 atomic_inc(&dquot
->dq_count
);
884 spin_unlock(&dq_list_lock
);
885 dqstats_inc(DQST_CACHE_HITS
);
886 dqstats_inc(DQST_LOOKUPS
);
888 /* Wait for dq_lock - after this we know that either dquot_release() is
889 * already finished or it will be canceled due to dq_count > 1 test */
890 wait_on_dquot(dquot
);
891 /* Read the dquot / allocate space in quota file */
892 if (!test_bit(DQ_ACTIVE_B
, &dquot
->dq_flags
)) {
895 err
= sb
->dq_op
->acquire_dquot(dquot
);
898 dquot
= ERR_PTR(err
);
903 * Make sure following reads see filled structure - paired with
904 * smp_mb__before_atomic() in dquot_acquire().
907 #ifdef CONFIG_QUOTA_DEBUG
908 BUG_ON(!dquot
->dq_sb
); /* Has somebody invalidated entry under us? */
912 do_destroy_dquot(empty
);
916 EXPORT_SYMBOL(dqget
);
918 static inline struct dquot
**i_dquot(struct inode
*inode
)
920 return inode
->i_sb
->s_op
->get_dquots(inode
);
923 static int dqinit_needed(struct inode
*inode
, int type
)
925 struct dquot
* const *dquots
;
928 if (IS_NOQUOTA(inode
))
931 dquots
= i_dquot(inode
);
933 return !dquots
[type
];
934 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
940 /* This routine is guarded by s_umount semaphore */
941 static int add_dquot_ref(struct super_block
*sb
, int type
)
943 struct inode
*inode
, *old_inode
= NULL
;
944 #ifdef CONFIG_QUOTA_DEBUG
949 spin_lock(&sb
->s_inode_list_lock
);
950 list_for_each_entry(inode
, &sb
->s_inodes
, i_sb_list
) {
951 spin_lock(&inode
->i_lock
);
952 if ((inode
->i_state
& (I_FREEING
|I_WILL_FREE
|I_NEW
)) ||
953 !atomic_read(&inode
->i_writecount
) ||
954 !dqinit_needed(inode
, type
)) {
955 spin_unlock(&inode
->i_lock
);
959 spin_unlock(&inode
->i_lock
);
960 spin_unlock(&sb
->s_inode_list_lock
);
962 #ifdef CONFIG_QUOTA_DEBUG
963 if (unlikely(inode_get_rsv_space(inode
) > 0))
967 err
= __dquot_initialize(inode
, type
);
974 * We hold a reference to 'inode' so it couldn't have been
975 * removed from s_inodes list while we dropped the
976 * s_inode_list_lock. We cannot iput the inode now as we can be
977 * holding the last reference and we cannot iput it under
978 * s_inode_list_lock. So we keep the reference and iput it
982 spin_lock(&sb
->s_inode_list_lock
);
984 spin_unlock(&sb
->s_inode_list_lock
);
987 #ifdef CONFIG_QUOTA_DEBUG
989 quota_error(sb
, "Writes happened before quota was turned on "
990 "thus quota information is probably inconsistent. "
991 "Please run quotacheck(8)");
998 * Remove references to dquots from inode and add dquot to list for freeing
999 * if we have the last reference to dquot
1001 static void remove_inode_dquot_ref(struct inode
*inode
, int type
,
1002 struct list_head
*tofree_head
)
1004 struct dquot
**dquots
= i_dquot(inode
);
1005 struct dquot
*dquot
= dquots
[type
];
1010 dquots
[type
] = NULL
;
1011 if (list_empty(&dquot
->dq_free
)) {
1013 * The inode still has reference to dquot so it can't be in the
1016 spin_lock(&dq_list_lock
);
1017 list_add(&dquot
->dq_free
, tofree_head
);
1018 spin_unlock(&dq_list_lock
);
1021 * Dquot is already in a list to put so we won't drop the last
1029 * Free list of dquots
1030 * Dquots are removed from inodes and no new references can be got so we are
1031 * the only ones holding reference
1033 static void put_dquot_list(struct list_head
*tofree_head
)
1035 struct list_head
*act_head
;
1036 struct dquot
*dquot
;
1038 act_head
= tofree_head
->next
;
1039 while (act_head
!= tofree_head
) {
1040 dquot
= list_entry(act_head
, struct dquot
, dq_free
);
1041 act_head
= act_head
->next
;
1042 /* Remove dquot from the list so we won't have problems... */
1043 list_del_init(&dquot
->dq_free
);
1048 static void remove_dquot_ref(struct super_block
*sb
, int type
,
1049 struct list_head
*tofree_head
)
1051 struct inode
*inode
;
1054 spin_lock(&sb
->s_inode_list_lock
);
1055 list_for_each_entry(inode
, &sb
->s_inodes
, i_sb_list
) {
1057 * We have to scan also I_NEW inodes because they can already
1058 * have quota pointer initialized. Luckily, we need to touch
1059 * only quota pointers and these have separate locking
1062 spin_lock(&dq_data_lock
);
1063 if (!IS_NOQUOTA(inode
)) {
1064 if (unlikely(inode_get_rsv_space(inode
) > 0))
1066 remove_inode_dquot_ref(inode
, type
, tofree_head
);
1068 spin_unlock(&dq_data_lock
);
1070 spin_unlock(&sb
->s_inode_list_lock
);
1071 #ifdef CONFIG_QUOTA_DEBUG
1073 printk(KERN_WARNING
"VFS (%s): Writes happened after quota"
1074 " was disabled thus quota information is probably "
1075 "inconsistent. Please run quotacheck(8).\n", sb
->s_id
);
1080 /* Gather all references from inodes and drop them */
1081 static void drop_dquot_ref(struct super_block
*sb
, int type
)
1083 LIST_HEAD(tofree_head
);
1086 remove_dquot_ref(sb
, type
, &tofree_head
);
1087 synchronize_srcu(&dquot_srcu
);
1088 put_dquot_list(&tofree_head
);
1093 void dquot_free_reserved_space(struct dquot
*dquot
, qsize_t number
)
1095 if (dquot
->dq_dqb
.dqb_rsvspace
>= number
)
1096 dquot
->dq_dqb
.dqb_rsvspace
-= number
;
1099 dquot
->dq_dqb
.dqb_rsvspace
= 0;
1101 if (dquot
->dq_dqb
.dqb_curspace
+ dquot
->dq_dqb
.dqb_rsvspace
<=
1102 dquot
->dq_dqb
.dqb_bsoftlimit
)
1103 dquot
->dq_dqb
.dqb_btime
= (time64_t
) 0;
1104 clear_bit(DQ_BLKS_B
, &dquot
->dq_flags
);
1107 static void dquot_decr_inodes(struct dquot
*dquot
, qsize_t number
)
1109 if (sb_dqopt(dquot
->dq_sb
)->flags
& DQUOT_NEGATIVE_USAGE
||
1110 dquot
->dq_dqb
.dqb_curinodes
>= number
)
1111 dquot
->dq_dqb
.dqb_curinodes
-= number
;
1113 dquot
->dq_dqb
.dqb_curinodes
= 0;
1114 if (dquot
->dq_dqb
.dqb_curinodes
<= dquot
->dq_dqb
.dqb_isoftlimit
)
1115 dquot
->dq_dqb
.dqb_itime
= (time64_t
) 0;
1116 clear_bit(DQ_INODES_B
, &dquot
->dq_flags
);
1119 static void dquot_decr_space(struct dquot
*dquot
, qsize_t number
)
1121 if (sb_dqopt(dquot
->dq_sb
)->flags
& DQUOT_NEGATIVE_USAGE
||
1122 dquot
->dq_dqb
.dqb_curspace
>= number
)
1123 dquot
->dq_dqb
.dqb_curspace
-= number
;
1125 dquot
->dq_dqb
.dqb_curspace
= 0;
1126 if (dquot
->dq_dqb
.dqb_curspace
+ dquot
->dq_dqb
.dqb_rsvspace
<=
1127 dquot
->dq_dqb
.dqb_bsoftlimit
)
1128 dquot
->dq_dqb
.dqb_btime
= (time64_t
) 0;
1129 clear_bit(DQ_BLKS_B
, &dquot
->dq_flags
);
1133 struct super_block
*w_sb
;
1134 struct kqid w_dq_id
;
1138 static int warning_issued(struct dquot
*dquot
, const int warntype
)
1140 int flag
= (warntype
== QUOTA_NL_BHARDWARN
||
1141 warntype
== QUOTA_NL_BSOFTLONGWARN
) ? DQ_BLKS_B
:
1142 ((warntype
== QUOTA_NL_IHARDWARN
||
1143 warntype
== QUOTA_NL_ISOFTLONGWARN
) ? DQ_INODES_B
: 0);
1147 return test_and_set_bit(flag
, &dquot
->dq_flags
);
1150 #ifdef CONFIG_PRINT_QUOTA_WARNING
1151 static int flag_print_warnings
= 1;
1153 static int need_print_warning(struct dquot_warn
*warn
)
1155 if (!flag_print_warnings
)
1158 switch (warn
->w_dq_id
.type
) {
1160 return uid_eq(current_fsuid(), warn
->w_dq_id
.uid
);
1162 return in_group_p(warn
->w_dq_id
.gid
);
1169 /* Print warning to user which exceeded quota */
1170 static void print_warning(struct dquot_warn
*warn
)
1173 struct tty_struct
*tty
;
1174 int warntype
= warn
->w_type
;
1176 if (warntype
== QUOTA_NL_IHARDBELOW
||
1177 warntype
== QUOTA_NL_ISOFTBELOW
||
1178 warntype
== QUOTA_NL_BHARDBELOW
||
1179 warntype
== QUOTA_NL_BSOFTBELOW
|| !need_print_warning(warn
))
1182 tty
= get_current_tty();
1185 tty_write_message(tty
, warn
->w_sb
->s_id
);
1186 if (warntype
== QUOTA_NL_ISOFTWARN
|| warntype
== QUOTA_NL_BSOFTWARN
)
1187 tty_write_message(tty
, ": warning, ");
1189 tty_write_message(tty
, ": write failed, ");
1190 tty_write_message(tty
, quotatypes
[warn
->w_dq_id
.type
]);
1192 case QUOTA_NL_IHARDWARN
:
1193 msg
= " file limit reached.\r\n";
1195 case QUOTA_NL_ISOFTLONGWARN
:
1196 msg
= " file quota exceeded too long.\r\n";
1198 case QUOTA_NL_ISOFTWARN
:
1199 msg
= " file quota exceeded.\r\n";
1201 case QUOTA_NL_BHARDWARN
:
1202 msg
= " block limit reached.\r\n";
1204 case QUOTA_NL_BSOFTLONGWARN
:
1205 msg
= " block quota exceeded too long.\r\n";
1207 case QUOTA_NL_BSOFTWARN
:
1208 msg
= " block quota exceeded.\r\n";
1211 tty_write_message(tty
, msg
);
1216 static void prepare_warning(struct dquot_warn
*warn
, struct dquot
*dquot
,
1219 if (warning_issued(dquot
, warntype
))
1221 warn
->w_type
= warntype
;
1222 warn
->w_sb
= dquot
->dq_sb
;
1223 warn
->w_dq_id
= dquot
->dq_id
;
1227 * Write warnings to the console and send warning messages over netlink.
1229 * Note that this function can call into tty and networking code.
1231 static void flush_warnings(struct dquot_warn
*warn
)
1235 for (i
= 0; i
< MAXQUOTAS
; i
++) {
1236 if (warn
[i
].w_type
== QUOTA_NL_NOWARN
)
1238 #ifdef CONFIG_PRINT_QUOTA_WARNING
1239 print_warning(&warn
[i
]);
1241 quota_send_warning(warn
[i
].w_dq_id
,
1242 warn
[i
].w_sb
->s_dev
, warn
[i
].w_type
);
1246 static int ignore_hardlimit(struct dquot
*dquot
)
1248 struct mem_dqinfo
*info
= &sb_dqopt(dquot
->dq_sb
)->info
[dquot
->dq_id
.type
];
1250 return capable(CAP_SYS_RESOURCE
) &&
1251 (info
->dqi_format
->qf_fmt_id
!= QFMT_VFS_OLD
||
1252 !(info
->dqi_flags
& DQF_ROOT_SQUASH
));
1255 static int dquot_add_inodes(struct dquot
*dquot
, qsize_t inodes
,
1256 struct dquot_warn
*warn
)
1261 spin_lock(&dquot
->dq_dqb_lock
);
1262 newinodes
= dquot
->dq_dqb
.dqb_curinodes
+ inodes
;
1263 if (!sb_has_quota_limits_enabled(dquot
->dq_sb
, dquot
->dq_id
.type
) ||
1264 test_bit(DQ_FAKE_B
, &dquot
->dq_flags
))
1267 if (dquot
->dq_dqb
.dqb_ihardlimit
&&
1268 newinodes
> dquot
->dq_dqb
.dqb_ihardlimit
&&
1269 !ignore_hardlimit(dquot
)) {
1270 prepare_warning(warn
, dquot
, QUOTA_NL_IHARDWARN
);
1275 if (dquot
->dq_dqb
.dqb_isoftlimit
&&
1276 newinodes
> dquot
->dq_dqb
.dqb_isoftlimit
&&
1277 dquot
->dq_dqb
.dqb_itime
&&
1278 ktime_get_real_seconds() >= dquot
->dq_dqb
.dqb_itime
&&
1279 !ignore_hardlimit(dquot
)) {
1280 prepare_warning(warn
, dquot
, QUOTA_NL_ISOFTLONGWARN
);
1285 if (dquot
->dq_dqb
.dqb_isoftlimit
&&
1286 newinodes
> dquot
->dq_dqb
.dqb_isoftlimit
&&
1287 dquot
->dq_dqb
.dqb_itime
== 0) {
1288 prepare_warning(warn
, dquot
, QUOTA_NL_ISOFTWARN
);
1289 dquot
->dq_dqb
.dqb_itime
= ktime_get_real_seconds() +
1290 sb_dqopt(dquot
->dq_sb
)->info
[dquot
->dq_id
.type
].dqi_igrace
;
1293 dquot
->dq_dqb
.dqb_curinodes
= newinodes
;
1296 spin_unlock(&dquot
->dq_dqb_lock
);
1300 static int dquot_add_space(struct dquot
*dquot
, qsize_t space
,
1301 qsize_t rsv_space
, unsigned int flags
,
1302 struct dquot_warn
*warn
)
1305 struct super_block
*sb
= dquot
->dq_sb
;
1308 spin_lock(&dquot
->dq_dqb_lock
);
1309 if (!sb_has_quota_limits_enabled(sb
, dquot
->dq_id
.type
) ||
1310 test_bit(DQ_FAKE_B
, &dquot
->dq_flags
))
1313 tspace
= dquot
->dq_dqb
.dqb_curspace
+ dquot
->dq_dqb
.dqb_rsvspace
1314 + space
+ rsv_space
;
1316 if (dquot
->dq_dqb
.dqb_bhardlimit
&&
1317 tspace
> dquot
->dq_dqb
.dqb_bhardlimit
&&
1318 !ignore_hardlimit(dquot
)) {
1319 if (flags
& DQUOT_SPACE_WARN
)
1320 prepare_warning(warn
, dquot
, QUOTA_NL_BHARDWARN
);
1325 if (dquot
->dq_dqb
.dqb_bsoftlimit
&&
1326 tspace
> dquot
->dq_dqb
.dqb_bsoftlimit
&&
1327 dquot
->dq_dqb
.dqb_btime
&&
1328 ktime_get_real_seconds() >= dquot
->dq_dqb
.dqb_btime
&&
1329 !ignore_hardlimit(dquot
)) {
1330 if (flags
& DQUOT_SPACE_WARN
)
1331 prepare_warning(warn
, dquot
, QUOTA_NL_BSOFTLONGWARN
);
1336 if (dquot
->dq_dqb
.dqb_bsoftlimit
&&
1337 tspace
> dquot
->dq_dqb
.dqb_bsoftlimit
&&
1338 dquot
->dq_dqb
.dqb_btime
== 0) {
1339 if (flags
& DQUOT_SPACE_WARN
) {
1340 prepare_warning(warn
, dquot
, QUOTA_NL_BSOFTWARN
);
1341 dquot
->dq_dqb
.dqb_btime
= ktime_get_real_seconds() +
1342 sb_dqopt(sb
)->info
[dquot
->dq_id
.type
].dqi_bgrace
;
1345 * We don't allow preallocation to exceed softlimit so exceeding will
1354 * We have to be careful and go through warning generation & grace time
1355 * setting even if DQUOT_SPACE_NOFAIL is set. That's why we check it
1358 if (flags
& DQUOT_SPACE_NOFAIL
)
1361 dquot
->dq_dqb
.dqb_rsvspace
+= rsv_space
;
1362 dquot
->dq_dqb
.dqb_curspace
+= space
;
1364 spin_unlock(&dquot
->dq_dqb_lock
);
1368 static int info_idq_free(struct dquot
*dquot
, qsize_t inodes
)
1372 if (test_bit(DQ_FAKE_B
, &dquot
->dq_flags
) ||
1373 dquot
->dq_dqb
.dqb_curinodes
<= dquot
->dq_dqb
.dqb_isoftlimit
||
1374 !sb_has_quota_limits_enabled(dquot
->dq_sb
, dquot
->dq_id
.type
))
1375 return QUOTA_NL_NOWARN
;
1377 newinodes
= dquot
->dq_dqb
.dqb_curinodes
- inodes
;
1378 if (newinodes
<= dquot
->dq_dqb
.dqb_isoftlimit
)
1379 return QUOTA_NL_ISOFTBELOW
;
1380 if (dquot
->dq_dqb
.dqb_curinodes
>= dquot
->dq_dqb
.dqb_ihardlimit
&&
1381 newinodes
< dquot
->dq_dqb
.dqb_ihardlimit
)
1382 return QUOTA_NL_IHARDBELOW
;
1383 return QUOTA_NL_NOWARN
;
1386 static int info_bdq_free(struct dquot
*dquot
, qsize_t space
)
1390 tspace
= dquot
->dq_dqb
.dqb_curspace
+ dquot
->dq_dqb
.dqb_rsvspace
;
1392 if (test_bit(DQ_FAKE_B
, &dquot
->dq_flags
) ||
1393 tspace
<= dquot
->dq_dqb
.dqb_bsoftlimit
)
1394 return QUOTA_NL_NOWARN
;
1396 if (tspace
- space
<= dquot
->dq_dqb
.dqb_bsoftlimit
)
1397 return QUOTA_NL_BSOFTBELOW
;
1398 if (tspace
>= dquot
->dq_dqb
.dqb_bhardlimit
&&
1399 tspace
- space
< dquot
->dq_dqb
.dqb_bhardlimit
)
1400 return QUOTA_NL_BHARDBELOW
;
1401 return QUOTA_NL_NOWARN
;
1404 static int dquot_active(const struct inode
*inode
)
1406 struct super_block
*sb
= inode
->i_sb
;
1408 if (IS_NOQUOTA(inode
))
1410 return sb_any_quota_loaded(sb
) & ~sb_any_quota_suspended(sb
);
1414 * Initialize quota pointers in inode
1416 * It is better to call this function outside of any transaction as it
1417 * might need a lot of space in journal for dquot structure allocation.
1419 static int __dquot_initialize(struct inode
*inode
, int type
)
1421 int cnt
, init_needed
= 0;
1422 struct dquot
**dquots
, *got
[MAXQUOTAS
] = {};
1423 struct super_block
*sb
= inode
->i_sb
;
1427 if (!dquot_active(inode
))
1430 dquots
= i_dquot(inode
);
1432 /* First get references to structures we might need. */
1433 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1437 struct dquot
*dquot
;
1439 if (type
!= -1 && cnt
!= type
)
1442 * The i_dquot should have been initialized in most cases,
1443 * we check it without locking here to avoid unnecessary
1444 * dqget()/dqput() calls.
1449 if (!sb_has_quota_active(sb
, cnt
))
1456 qid
= make_kqid_uid(inode
->i_uid
);
1459 qid
= make_kqid_gid(inode
->i_gid
);
1462 rc
= inode
->i_sb
->dq_op
->get_projid(inode
, &projid
);
1465 qid
= make_kqid_projid(projid
);
1468 dquot
= dqget(sb
, qid
);
1469 if (IS_ERR(dquot
)) {
1470 /* We raced with somebody turning quotas off... */
1471 if (PTR_ERR(dquot
) != -ESRCH
) {
1472 ret
= PTR_ERR(dquot
);
1480 /* All required i_dquot has been initialized */
1484 spin_lock(&dq_data_lock
);
1485 if (IS_NOQUOTA(inode
))
1487 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1488 if (type
!= -1 && cnt
!= type
)
1490 /* Avoid races with quotaoff() */
1491 if (!sb_has_quota_active(sb
, cnt
))
1493 /* We could race with quotaon or dqget() could have failed */
1497 dquots
[cnt
] = got
[cnt
];
1500 * Make quota reservation system happy if someone
1501 * did a write before quota was turned on
1503 rsv
= inode_get_rsv_space(inode
);
1504 if (unlikely(rsv
)) {
1505 spin_lock(&inode
->i_lock
);
1506 /* Get reservation again under proper lock */
1507 rsv
= __inode_get_rsv_space(inode
);
1508 spin_lock(&dquots
[cnt
]->dq_dqb_lock
);
1509 dquots
[cnt
]->dq_dqb
.dqb_rsvspace
+= rsv
;
1510 spin_unlock(&dquots
[cnt
]->dq_dqb_lock
);
1511 spin_unlock(&inode
->i_lock
);
1516 spin_unlock(&dq_data_lock
);
1518 /* Drop unused references */
1524 int dquot_initialize(struct inode
*inode
)
1526 return __dquot_initialize(inode
, -1);
1528 EXPORT_SYMBOL(dquot_initialize
);
1530 bool dquot_initialize_needed(struct inode
*inode
)
1532 struct dquot
**dquots
;
1535 if (!dquot_active(inode
))
1538 dquots
= i_dquot(inode
);
1539 for (i
= 0; i
< MAXQUOTAS
; i
++)
1540 if (!dquots
[i
] && sb_has_quota_active(inode
->i_sb
, i
))
1544 EXPORT_SYMBOL(dquot_initialize_needed
);
1547 * Release all quotas referenced by inode.
1549 * This function only be called on inode free or converting
1550 * a file to quota file, no other users for the i_dquot in
1551 * both cases, so we needn't call synchronize_srcu() after
1554 static void __dquot_drop(struct inode
*inode
)
1557 struct dquot
**dquots
= i_dquot(inode
);
1558 struct dquot
*put
[MAXQUOTAS
];
1560 spin_lock(&dq_data_lock
);
1561 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1562 put
[cnt
] = dquots
[cnt
];
1565 spin_unlock(&dq_data_lock
);
1569 void dquot_drop(struct inode
*inode
)
1571 struct dquot
* const *dquots
;
1574 if (IS_NOQUOTA(inode
))
1578 * Test before calling to rule out calls from proc and such
1579 * where we are not allowed to block. Note that this is
1580 * actually reliable test even without the lock - the caller
1581 * must assure that nobody can come after the DQUOT_DROP and
1582 * add quota pointers back anyway.
1584 dquots
= i_dquot(inode
);
1585 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1590 if (cnt
< MAXQUOTAS
)
1591 __dquot_drop(inode
);
1593 EXPORT_SYMBOL(dquot_drop
);
1596 * inode_reserved_space is managed internally by quota, and protected by
1597 * i_lock similar to i_blocks+i_bytes.
1599 static qsize_t
*inode_reserved_space(struct inode
* inode
)
1601 /* Filesystem must explicitly define it's own method in order to use
1602 * quota reservation interface */
1603 BUG_ON(!inode
->i_sb
->dq_op
->get_reserved_space
);
1604 return inode
->i_sb
->dq_op
->get_reserved_space(inode
);
1607 static qsize_t
__inode_get_rsv_space(struct inode
*inode
)
1609 if (!inode
->i_sb
->dq_op
->get_reserved_space
)
1611 return *inode_reserved_space(inode
);
1614 static qsize_t
inode_get_rsv_space(struct inode
*inode
)
1618 if (!inode
->i_sb
->dq_op
->get_reserved_space
)
1620 spin_lock(&inode
->i_lock
);
1621 ret
= __inode_get_rsv_space(inode
);
1622 spin_unlock(&inode
->i_lock
);
1627 * This functions updates i_blocks+i_bytes fields and quota information
1628 * (together with appropriate checks).
1630 * NOTE: We absolutely rely on the fact that caller dirties the inode
1631 * (usually helpers in quotaops.h care about this) and holds a handle for
1632 * the current transaction so that dquot write and inode write go into the
1637 * This operation can block, but only after everything is updated
1639 int __dquot_alloc_space(struct inode
*inode
, qsize_t number
, int flags
)
1641 int cnt
, ret
= 0, index
;
1642 struct dquot_warn warn
[MAXQUOTAS
];
1643 int reserve
= flags
& DQUOT_SPACE_RESERVE
;
1644 struct dquot
**dquots
;
1646 if (!dquot_active(inode
)) {
1648 spin_lock(&inode
->i_lock
);
1649 *inode_reserved_space(inode
) += number
;
1650 spin_unlock(&inode
->i_lock
);
1652 inode_add_bytes(inode
, number
);
1657 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1658 warn
[cnt
].w_type
= QUOTA_NL_NOWARN
;
1660 dquots
= i_dquot(inode
);
1661 index
= srcu_read_lock(&dquot_srcu
);
1662 spin_lock(&inode
->i_lock
);
1663 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1666 if (flags
& DQUOT_SPACE_RESERVE
) {
1667 ret
= dquot_add_space(dquots
[cnt
], 0, number
, flags
,
1670 ret
= dquot_add_space(dquots
[cnt
], number
, 0, flags
,
1674 /* Back out changes we already did */
1675 for (cnt
--; cnt
>= 0; cnt
--) {
1678 spin_lock(&dquots
[cnt
]->dq_dqb_lock
);
1679 if (flags
& DQUOT_SPACE_RESERVE
) {
1680 dquots
[cnt
]->dq_dqb
.dqb_rsvspace
-=
1683 dquots
[cnt
]->dq_dqb
.dqb_curspace
-=
1686 spin_unlock(&dquots
[cnt
]->dq_dqb_lock
);
1688 spin_unlock(&inode
->i_lock
);
1689 goto out_flush_warn
;
1693 *inode_reserved_space(inode
) += number
;
1695 __inode_add_bytes(inode
, number
);
1696 spin_unlock(&inode
->i_lock
);
1699 goto out_flush_warn
;
1700 mark_all_dquot_dirty(dquots
);
1702 srcu_read_unlock(&dquot_srcu
, index
);
1703 flush_warnings(warn
);
1707 EXPORT_SYMBOL(__dquot_alloc_space
);
1710 * This operation can block, but only after everything is updated
1712 int dquot_alloc_inode(struct inode
*inode
)
1714 int cnt
, ret
= 0, index
;
1715 struct dquot_warn warn
[MAXQUOTAS
];
1716 struct dquot
* const *dquots
;
1718 if (!dquot_active(inode
))
1720 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
1721 warn
[cnt
].w_type
= QUOTA_NL_NOWARN
;
1723 dquots
= i_dquot(inode
);
1724 index
= srcu_read_lock(&dquot_srcu
);
1725 spin_lock(&inode
->i_lock
);
1726 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1729 ret
= dquot_add_inodes(dquots
[cnt
], 1, &warn
[cnt
]);
1731 for (cnt
--; cnt
>= 0; cnt
--) {
1734 /* Back out changes we already did */
1735 spin_lock(&dquots
[cnt
]->dq_dqb_lock
);
1736 dquots
[cnt
]->dq_dqb
.dqb_curinodes
--;
1737 spin_unlock(&dquots
[cnt
]->dq_dqb_lock
);
1744 spin_unlock(&inode
->i_lock
);
1746 mark_all_dquot_dirty(dquots
);
1747 srcu_read_unlock(&dquot_srcu
, index
);
1748 flush_warnings(warn
);
1751 EXPORT_SYMBOL(dquot_alloc_inode
);
1754 * Convert in-memory reserved quotas to real consumed quotas
1756 int dquot_claim_space_nodirty(struct inode
*inode
, qsize_t number
)
1758 struct dquot
**dquots
;
1761 if (!dquot_active(inode
)) {
1762 spin_lock(&inode
->i_lock
);
1763 *inode_reserved_space(inode
) -= number
;
1764 __inode_add_bytes(inode
, number
);
1765 spin_unlock(&inode
->i_lock
);
1769 dquots
= i_dquot(inode
);
1770 index
= srcu_read_lock(&dquot_srcu
);
1771 spin_lock(&inode
->i_lock
);
1772 /* Claim reserved quotas to allocated quotas */
1773 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1775 struct dquot
*dquot
= dquots
[cnt
];
1777 spin_lock(&dquot
->dq_dqb_lock
);
1778 if (WARN_ON_ONCE(dquot
->dq_dqb
.dqb_rsvspace
< number
))
1779 number
= dquot
->dq_dqb
.dqb_rsvspace
;
1780 dquot
->dq_dqb
.dqb_curspace
+= number
;
1781 dquot
->dq_dqb
.dqb_rsvspace
-= number
;
1782 spin_unlock(&dquot
->dq_dqb_lock
);
1785 /* Update inode bytes */
1786 *inode_reserved_space(inode
) -= number
;
1787 __inode_add_bytes(inode
, number
);
1788 spin_unlock(&inode
->i_lock
);
1789 mark_all_dquot_dirty(dquots
);
1790 srcu_read_unlock(&dquot_srcu
, index
);
1793 EXPORT_SYMBOL(dquot_claim_space_nodirty
);
1796 * Convert allocated space back to in-memory reserved quotas
1798 void dquot_reclaim_space_nodirty(struct inode
*inode
, qsize_t number
)
1800 struct dquot
**dquots
;
1803 if (!dquot_active(inode
)) {
1804 spin_lock(&inode
->i_lock
);
1805 *inode_reserved_space(inode
) += number
;
1806 __inode_sub_bytes(inode
, number
);
1807 spin_unlock(&inode
->i_lock
);
1811 dquots
= i_dquot(inode
);
1812 index
= srcu_read_lock(&dquot_srcu
);
1813 spin_lock(&inode
->i_lock
);
1814 /* Claim reserved quotas to allocated quotas */
1815 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1817 struct dquot
*dquot
= dquots
[cnt
];
1819 spin_lock(&dquot
->dq_dqb_lock
);
1820 if (WARN_ON_ONCE(dquot
->dq_dqb
.dqb_curspace
< number
))
1821 number
= dquot
->dq_dqb
.dqb_curspace
;
1822 dquot
->dq_dqb
.dqb_rsvspace
+= number
;
1823 dquot
->dq_dqb
.dqb_curspace
-= number
;
1824 spin_unlock(&dquot
->dq_dqb_lock
);
1827 /* Update inode bytes */
1828 *inode_reserved_space(inode
) += number
;
1829 __inode_sub_bytes(inode
, number
);
1830 spin_unlock(&inode
->i_lock
);
1831 mark_all_dquot_dirty(dquots
);
1832 srcu_read_unlock(&dquot_srcu
, index
);
1835 EXPORT_SYMBOL(dquot_reclaim_space_nodirty
);
1838 * This operation can block, but only after everything is updated
1840 void __dquot_free_space(struct inode
*inode
, qsize_t number
, int flags
)
1843 struct dquot_warn warn
[MAXQUOTAS
];
1844 struct dquot
**dquots
;
1845 int reserve
= flags
& DQUOT_SPACE_RESERVE
, index
;
1847 if (!dquot_active(inode
)) {
1849 spin_lock(&inode
->i_lock
);
1850 *inode_reserved_space(inode
) -= number
;
1851 spin_unlock(&inode
->i_lock
);
1853 inode_sub_bytes(inode
, number
);
1858 dquots
= i_dquot(inode
);
1859 index
= srcu_read_lock(&dquot_srcu
);
1860 spin_lock(&inode
->i_lock
);
1861 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1864 warn
[cnt
].w_type
= QUOTA_NL_NOWARN
;
1867 spin_lock(&dquots
[cnt
]->dq_dqb_lock
);
1868 wtype
= info_bdq_free(dquots
[cnt
], number
);
1869 if (wtype
!= QUOTA_NL_NOWARN
)
1870 prepare_warning(&warn
[cnt
], dquots
[cnt
], wtype
);
1872 dquot_free_reserved_space(dquots
[cnt
], number
);
1874 dquot_decr_space(dquots
[cnt
], number
);
1875 spin_unlock(&dquots
[cnt
]->dq_dqb_lock
);
1878 *inode_reserved_space(inode
) -= number
;
1880 __inode_sub_bytes(inode
, number
);
1881 spin_unlock(&inode
->i_lock
);
1885 mark_all_dquot_dirty(dquots
);
1887 srcu_read_unlock(&dquot_srcu
, index
);
1888 flush_warnings(warn
);
1890 EXPORT_SYMBOL(__dquot_free_space
);
1893 * This operation can block, but only after everything is updated
1895 void dquot_free_inode(struct inode
*inode
)
1898 struct dquot_warn warn
[MAXQUOTAS
];
1899 struct dquot
* const *dquots
;
1902 if (!dquot_active(inode
))
1905 dquots
= i_dquot(inode
);
1906 index
= srcu_read_lock(&dquot_srcu
);
1907 spin_lock(&inode
->i_lock
);
1908 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1911 warn
[cnt
].w_type
= QUOTA_NL_NOWARN
;
1914 spin_lock(&dquots
[cnt
]->dq_dqb_lock
);
1915 wtype
= info_idq_free(dquots
[cnt
], 1);
1916 if (wtype
!= QUOTA_NL_NOWARN
)
1917 prepare_warning(&warn
[cnt
], dquots
[cnt
], wtype
);
1918 dquot_decr_inodes(dquots
[cnt
], 1);
1919 spin_unlock(&dquots
[cnt
]->dq_dqb_lock
);
1921 spin_unlock(&inode
->i_lock
);
1922 mark_all_dquot_dirty(dquots
);
1923 srcu_read_unlock(&dquot_srcu
, index
);
1924 flush_warnings(warn
);
1926 EXPORT_SYMBOL(dquot_free_inode
);
1929 * Transfer the number of inode and blocks from one diskquota to an other.
1930 * On success, dquot references in transfer_to are consumed and references
1931 * to original dquots that need to be released are placed there. On failure,
1932 * references are kept untouched.
1934 * This operation can block, but only after everything is updated
1935 * A transaction must be started when entering this function.
1937 * We are holding reference on transfer_from & transfer_to, no need to
1938 * protect them by srcu_read_lock().
1940 int __dquot_transfer(struct inode
*inode
, struct dquot
**transfer_to
)
1943 qsize_t rsv_space
= 0;
1944 qsize_t inode_usage
= 1;
1945 struct dquot
*transfer_from
[MAXQUOTAS
] = {};
1947 char is_valid
[MAXQUOTAS
] = {};
1948 struct dquot_warn warn_to
[MAXQUOTAS
];
1949 struct dquot_warn warn_from_inodes
[MAXQUOTAS
];
1950 struct dquot_warn warn_from_space
[MAXQUOTAS
];
1952 if (IS_NOQUOTA(inode
))
1955 if (inode
->i_sb
->dq_op
->get_inode_usage
) {
1956 ret
= inode
->i_sb
->dq_op
->get_inode_usage(inode
, &inode_usage
);
1961 /* Initialize the arrays */
1962 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1963 warn_to
[cnt
].w_type
= QUOTA_NL_NOWARN
;
1964 warn_from_inodes
[cnt
].w_type
= QUOTA_NL_NOWARN
;
1965 warn_from_space
[cnt
].w_type
= QUOTA_NL_NOWARN
;
1968 spin_lock(&dq_data_lock
);
1969 spin_lock(&inode
->i_lock
);
1970 if (IS_NOQUOTA(inode
)) { /* File without quota accounting? */
1971 spin_unlock(&inode
->i_lock
);
1972 spin_unlock(&dq_data_lock
);
1975 cur_space
= __inode_get_bytes(inode
);
1976 rsv_space
= __inode_get_rsv_space(inode
);
1978 * Build the transfer_from list, check limits, and update usage in
1979 * the target structures.
1981 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
1983 * Skip changes for same uid or gid or for turned off quota-type.
1985 if (!transfer_to
[cnt
])
1987 /* Avoid races with quotaoff() */
1988 if (!sb_has_quota_active(inode
->i_sb
, cnt
))
1991 transfer_from
[cnt
] = i_dquot(inode
)[cnt
];
1992 ret
= dquot_add_inodes(transfer_to
[cnt
], inode_usage
,
1996 ret
= dquot_add_space(transfer_to
[cnt
], cur_space
, rsv_space
, 0,
1999 spin_lock(&transfer_to
[cnt
]->dq_dqb_lock
);
2000 dquot_decr_inodes(transfer_to
[cnt
], inode_usage
);
2001 spin_unlock(&transfer_to
[cnt
]->dq_dqb_lock
);
2006 /* Decrease usage for source structures and update quota pointers */
2007 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
2010 /* Due to IO error we might not have transfer_from[] structure */
2011 if (transfer_from
[cnt
]) {
2014 spin_lock(&transfer_from
[cnt
]->dq_dqb_lock
);
2015 wtype
= info_idq_free(transfer_from
[cnt
], inode_usage
);
2016 if (wtype
!= QUOTA_NL_NOWARN
)
2017 prepare_warning(&warn_from_inodes
[cnt
],
2018 transfer_from
[cnt
], wtype
);
2019 wtype
= info_bdq_free(transfer_from
[cnt
],
2020 cur_space
+ rsv_space
);
2021 if (wtype
!= QUOTA_NL_NOWARN
)
2022 prepare_warning(&warn_from_space
[cnt
],
2023 transfer_from
[cnt
], wtype
);
2024 dquot_decr_inodes(transfer_from
[cnt
], inode_usage
);
2025 dquot_decr_space(transfer_from
[cnt
], cur_space
);
2026 dquot_free_reserved_space(transfer_from
[cnt
],
2028 spin_unlock(&transfer_from
[cnt
]->dq_dqb_lock
);
2030 i_dquot(inode
)[cnt
] = transfer_to
[cnt
];
2032 spin_unlock(&inode
->i_lock
);
2033 spin_unlock(&dq_data_lock
);
2035 mark_all_dquot_dirty(transfer_from
);
2036 mark_all_dquot_dirty(transfer_to
);
2037 flush_warnings(warn_to
);
2038 flush_warnings(warn_from_inodes
);
2039 flush_warnings(warn_from_space
);
2040 /* Pass back references to put */
2041 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
2043 transfer_to
[cnt
] = transfer_from
[cnt
];
2046 /* Back out changes we already did */
2047 for (cnt
--; cnt
>= 0; cnt
--) {
2050 spin_lock(&transfer_to
[cnt
]->dq_dqb_lock
);
2051 dquot_decr_inodes(transfer_to
[cnt
], inode_usage
);
2052 dquot_decr_space(transfer_to
[cnt
], cur_space
);
2053 dquot_free_reserved_space(transfer_to
[cnt
], rsv_space
);
2054 spin_unlock(&transfer_to
[cnt
]->dq_dqb_lock
);
2056 spin_unlock(&inode
->i_lock
);
2057 spin_unlock(&dq_data_lock
);
2058 flush_warnings(warn_to
);
2061 EXPORT_SYMBOL(__dquot_transfer
);
2063 /* Wrapper for transferring ownership of an inode for uid/gid only
2064 * Called from FSXXX_setattr()
2066 int dquot_transfer(struct inode
*inode
, struct iattr
*iattr
)
2068 struct dquot
*transfer_to
[MAXQUOTAS
] = {};
2069 struct dquot
*dquot
;
2070 struct super_block
*sb
= inode
->i_sb
;
2073 if (!dquot_active(inode
))
2076 if (iattr
->ia_valid
& ATTR_UID
&& !uid_eq(iattr
->ia_uid
, inode
->i_uid
)){
2077 dquot
= dqget(sb
, make_kqid_uid(iattr
->ia_uid
));
2078 if (IS_ERR(dquot
)) {
2079 if (PTR_ERR(dquot
) != -ESRCH
) {
2080 ret
= PTR_ERR(dquot
);
2085 transfer_to
[USRQUOTA
] = dquot
;
2087 if (iattr
->ia_valid
& ATTR_GID
&& !gid_eq(iattr
->ia_gid
, inode
->i_gid
)){
2088 dquot
= dqget(sb
, make_kqid_gid(iattr
->ia_gid
));
2089 if (IS_ERR(dquot
)) {
2090 if (PTR_ERR(dquot
) != -ESRCH
) {
2091 ret
= PTR_ERR(dquot
);
2096 transfer_to
[GRPQUOTA
] = dquot
;
2098 ret
= __dquot_transfer(inode
, transfer_to
);
2100 dqput_all(transfer_to
);
2103 EXPORT_SYMBOL(dquot_transfer
);
2106 * Write info of quota file to disk
2108 int dquot_commit_info(struct super_block
*sb
, int type
)
2110 struct quota_info
*dqopt
= sb_dqopt(sb
);
2112 return dqopt
->ops
[type
]->write_file_info(sb
, type
);
2114 EXPORT_SYMBOL(dquot_commit_info
);
2116 int dquot_get_next_id(struct super_block
*sb
, struct kqid
*qid
)
2118 struct quota_info
*dqopt
= sb_dqopt(sb
);
2120 if (!sb_has_quota_active(sb
, qid
->type
))
2122 if (!dqopt
->ops
[qid
->type
]->get_next_id
)
2124 return dqopt
->ops
[qid
->type
]->get_next_id(sb
, qid
);
2126 EXPORT_SYMBOL(dquot_get_next_id
);
2129 * Definitions of diskquota operations.
2131 const struct dquot_operations dquot_operations
= {
2132 .write_dquot
= dquot_commit
,
2133 .acquire_dquot
= dquot_acquire
,
2134 .release_dquot
= dquot_release
,
2135 .mark_dirty
= dquot_mark_dquot_dirty
,
2136 .write_info
= dquot_commit_info
,
2137 .alloc_dquot
= dquot_alloc
,
2138 .destroy_dquot
= dquot_destroy
,
2139 .get_next_id
= dquot_get_next_id
,
2141 EXPORT_SYMBOL(dquot_operations
);
2144 * Generic helper for ->open on filesystems supporting disk quotas.
2146 int dquot_file_open(struct inode
*inode
, struct file
*file
)
2150 error
= generic_file_open(inode
, file
);
2151 if (!error
&& (file
->f_mode
& FMODE_WRITE
))
2152 error
= dquot_initialize(inode
);
2155 EXPORT_SYMBOL(dquot_file_open
);
2158 * Turn quota off on a device. type == -1 ==> quotaoff for all types (umount)
2160 int dquot_disable(struct super_block
*sb
, int type
, unsigned int flags
)
2163 struct quota_info
*dqopt
= sb_dqopt(sb
);
2164 struct inode
*toputinode
[MAXQUOTAS
];
2166 /* s_umount should be held in exclusive mode */
2167 if (WARN_ON_ONCE(down_read_trylock(&sb
->s_umount
)))
2168 up_read(&sb
->s_umount
);
2170 /* Cannot turn off usage accounting without turning off limits, or
2171 * suspend quotas and simultaneously turn quotas off. */
2172 if ((flags
& DQUOT_USAGE_ENABLED
&& !(flags
& DQUOT_LIMITS_ENABLED
))
2173 || (flags
& DQUOT_SUSPENDED
&& flags
& (DQUOT_LIMITS_ENABLED
|
2174 DQUOT_USAGE_ENABLED
)))
2178 * Skip everything if there's nothing to do. We have to do this because
2179 * sometimes we are called when fill_super() failed and calling
2180 * sync_fs() in such cases does no good.
2182 if (!sb_any_quota_loaded(sb
))
2185 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
2186 toputinode
[cnt
] = NULL
;
2187 if (type
!= -1 && cnt
!= type
)
2189 if (!sb_has_quota_loaded(sb
, cnt
))
2192 if (flags
& DQUOT_SUSPENDED
) {
2193 spin_lock(&dq_state_lock
);
2195 dquot_state_flag(DQUOT_SUSPENDED
, cnt
);
2196 spin_unlock(&dq_state_lock
);
2198 spin_lock(&dq_state_lock
);
2199 dqopt
->flags
&= ~dquot_state_flag(flags
, cnt
);
2200 /* Turning off suspended quotas? */
2201 if (!sb_has_quota_loaded(sb
, cnt
) &&
2202 sb_has_quota_suspended(sb
, cnt
)) {
2203 dqopt
->flags
&= ~dquot_state_flag(
2204 DQUOT_SUSPENDED
, cnt
);
2205 spin_unlock(&dq_state_lock
);
2206 iput(dqopt
->files
[cnt
]);
2207 dqopt
->files
[cnt
] = NULL
;
2210 spin_unlock(&dq_state_lock
);
2213 /* We still have to keep quota loaded? */
2214 if (sb_has_quota_loaded(sb
, cnt
) && !(flags
& DQUOT_SUSPENDED
))
2217 /* Note: these are blocking operations */
2218 drop_dquot_ref(sb
, cnt
);
2219 invalidate_dquots(sb
, cnt
);
2221 * Now all dquots should be invalidated, all writes done so we
2222 * should be only users of the info. No locks needed.
2224 if (info_dirty(&dqopt
->info
[cnt
]))
2225 sb
->dq_op
->write_info(sb
, cnt
);
2226 if (dqopt
->ops
[cnt
]->free_file_info
)
2227 dqopt
->ops
[cnt
]->free_file_info(sb
, cnt
);
2228 put_quota_format(dqopt
->info
[cnt
].dqi_format
);
2230 toputinode
[cnt
] = dqopt
->files
[cnt
];
2231 if (!sb_has_quota_loaded(sb
, cnt
))
2232 dqopt
->files
[cnt
] = NULL
;
2233 dqopt
->info
[cnt
].dqi_flags
= 0;
2234 dqopt
->info
[cnt
].dqi_igrace
= 0;
2235 dqopt
->info
[cnt
].dqi_bgrace
= 0;
2236 dqopt
->ops
[cnt
] = NULL
;
2239 /* Skip syncing and setting flags if quota files are hidden */
2240 if (dqopt
->flags
& DQUOT_QUOTA_SYS_FILE
)
2243 /* Sync the superblock so that buffers with quota data are written to
2244 * disk (and so userspace sees correct data afterwards). */
2245 if (sb
->s_op
->sync_fs
)
2246 sb
->s_op
->sync_fs(sb
, 1);
2247 sync_blockdev(sb
->s_bdev
);
2248 /* Now the quota files are just ordinary files and we can set the
2249 * inode flags back. Moreover we discard the pagecache so that
2250 * userspace sees the writes we did bypassing the pagecache. We
2251 * must also discard the blockdev buffers so that we see the
2252 * changes done by userspace on the next quotaon() */
2253 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
2254 /* This can happen when suspending quotas on remount-ro... */
2255 if (toputinode
[cnt
] && !sb_has_quota_loaded(sb
, cnt
)) {
2256 inode_lock(toputinode
[cnt
]);
2257 toputinode
[cnt
]->i_flags
&= ~S_NOQUOTA
;
2258 truncate_inode_pages(&toputinode
[cnt
]->i_data
, 0);
2259 inode_unlock(toputinode
[cnt
]);
2260 mark_inode_dirty_sync(toputinode
[cnt
]);
2263 invalidate_bdev(sb
->s_bdev
);
2265 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++)
2266 if (toputinode
[cnt
]) {
2267 /* On remount RO, we keep the inode pointer so that we
2268 * can reenable quota on the subsequent remount RW. We
2269 * have to check 'flags' variable and not use sb_has_
2270 * function because another quotaon / quotaoff could
2271 * change global state before we got here. We refuse
2272 * to suspend quotas when there is pending delete on
2273 * the quota file... */
2274 if (!(flags
& DQUOT_SUSPENDED
))
2275 iput(toputinode
[cnt
]);
2276 else if (!toputinode
[cnt
]->i_nlink
)
2281 EXPORT_SYMBOL(dquot_disable
);
2283 int dquot_quota_off(struct super_block
*sb
, int type
)
2285 return dquot_disable(sb
, type
,
2286 DQUOT_USAGE_ENABLED
| DQUOT_LIMITS_ENABLED
);
2288 EXPORT_SYMBOL(dquot_quota_off
);
2291 * Turn quotas on on a device
2295 * Helper function to turn quotas on when we already have the inode of
2296 * quota file and no quota information is loaded.
2298 static int vfs_load_quota_inode(struct inode
*inode
, int type
, int format_id
,
2301 struct quota_format_type
*fmt
= find_quota_format(format_id
);
2302 struct super_block
*sb
= inode
->i_sb
;
2303 struct quota_info
*dqopt
= sb_dqopt(sb
);
2308 if (!S_ISREG(inode
->i_mode
)) {
2312 if (IS_RDONLY(inode
)) {
2316 if (!sb
->s_op
->quota_write
|| !sb
->s_op
->quota_read
||
2317 (type
== PRJQUOTA
&& sb
->dq_op
->get_projid
== NULL
)) {
2321 /* Filesystems outside of init_user_ns not yet supported */
2322 if (sb
->s_user_ns
!= &init_user_ns
) {
2326 /* Usage always has to be set... */
2327 if (!(flags
& DQUOT_USAGE_ENABLED
)) {
2331 if (sb_has_quota_loaded(sb
, type
)) {
2336 if (!(dqopt
->flags
& DQUOT_QUOTA_SYS_FILE
)) {
2337 /* As we bypass the pagecache we must now flush all the
2338 * dirty data and invalidate caches so that kernel sees
2339 * changes from userspace. It is not enough to just flush
2340 * the quota file since if blocksize < pagesize, invalidation
2341 * of the cache could fail because of other unrelated dirty
2343 sync_filesystem(sb
);
2344 invalidate_bdev(sb
->s_bdev
);
2347 if (!(dqopt
->flags
& DQUOT_QUOTA_SYS_FILE
)) {
2348 /* We don't want quota and atime on quota files (deadlocks
2349 * possible) Also nobody should write to the file - we use
2350 * special IO operations which ignore the immutable bit. */
2352 inode
->i_flags
|= S_NOQUOTA
;
2353 inode_unlock(inode
);
2355 * When S_NOQUOTA is set, remove dquot references as no more
2356 * references can be added
2358 __dquot_drop(inode
);
2362 dqopt
->files
[type
] = igrab(inode
);
2363 if (!dqopt
->files
[type
])
2364 goto out_file_flags
;
2366 if (!fmt
->qf_ops
->check_quota_file(sb
, type
))
2369 dqopt
->ops
[type
] = fmt
->qf_ops
;
2370 dqopt
->info
[type
].dqi_format
= fmt
;
2371 dqopt
->info
[type
].dqi_fmt_id
= format_id
;
2372 INIT_LIST_HEAD(&dqopt
->info
[type
].dqi_dirty_list
);
2373 error
= dqopt
->ops
[type
]->read_file_info(sb
, type
);
2376 if (dqopt
->flags
& DQUOT_QUOTA_SYS_FILE
) {
2377 spin_lock(&dq_data_lock
);
2378 dqopt
->info
[type
].dqi_flags
|= DQF_SYS_FILE
;
2379 spin_unlock(&dq_data_lock
);
2381 spin_lock(&dq_state_lock
);
2382 dqopt
->flags
|= dquot_state_flag(flags
, type
);
2383 spin_unlock(&dq_state_lock
);
2385 error
= add_dquot_ref(sb
, type
);
2387 dquot_disable(sb
, type
, flags
);
2391 dqopt
->files
[type
] = NULL
;
2395 inode
->i_flags
&= ~S_NOQUOTA
;
2396 inode_unlock(inode
);
2398 put_quota_format(fmt
);
2403 /* Reenable quotas on remount RW */
2404 int dquot_resume(struct super_block
*sb
, int type
)
2406 struct quota_info
*dqopt
= sb_dqopt(sb
);
2407 struct inode
*inode
;
2411 /* s_umount should be held in exclusive mode */
2412 if (WARN_ON_ONCE(down_read_trylock(&sb
->s_umount
)))
2413 up_read(&sb
->s_umount
);
2415 for (cnt
= 0; cnt
< MAXQUOTAS
; cnt
++) {
2416 if (type
!= -1 && cnt
!= type
)
2418 if (!sb_has_quota_suspended(sb
, cnt
))
2421 inode
= dqopt
->files
[cnt
];
2422 dqopt
->files
[cnt
] = NULL
;
2423 spin_lock(&dq_state_lock
);
2424 flags
= dqopt
->flags
& dquot_state_flag(DQUOT_USAGE_ENABLED
|
2425 DQUOT_LIMITS_ENABLED
,
2427 dqopt
->flags
&= ~dquot_state_flag(DQUOT_STATE_FLAGS
, cnt
);
2428 spin_unlock(&dq_state_lock
);
2430 flags
= dquot_generic_flag(flags
, cnt
);
2431 ret
= vfs_load_quota_inode(inode
, cnt
,
2432 dqopt
->info
[cnt
].dqi_fmt_id
, flags
);
2438 EXPORT_SYMBOL(dquot_resume
);
2440 int dquot_quota_on(struct super_block
*sb
, int type
, int format_id
,
2441 const struct path
*path
)
2443 int error
= security_quota_on(path
->dentry
);
2446 /* Quota file not on the same filesystem? */
2447 if (path
->dentry
->d_sb
!= sb
)
2450 error
= vfs_load_quota_inode(d_inode(path
->dentry
), type
,
2451 format_id
, DQUOT_USAGE_ENABLED
|
2452 DQUOT_LIMITS_ENABLED
);
2455 EXPORT_SYMBOL(dquot_quota_on
);
2458 * More powerful function for turning on quotas allowing setting
2459 * of individual quota flags
2461 int dquot_enable(struct inode
*inode
, int type
, int format_id
,
2464 struct super_block
*sb
= inode
->i_sb
;
2466 /* Just unsuspend quotas? */
2467 BUG_ON(flags
& DQUOT_SUSPENDED
);
2468 /* s_umount should be held in exclusive mode */
2469 if (WARN_ON_ONCE(down_read_trylock(&sb
->s_umount
)))
2470 up_read(&sb
->s_umount
);
2474 /* Just updating flags needed? */
2475 if (sb_has_quota_loaded(sb
, type
)) {
2476 if (flags
& DQUOT_USAGE_ENABLED
&&
2477 sb_has_quota_usage_enabled(sb
, type
))
2479 if (flags
& DQUOT_LIMITS_ENABLED
&&
2480 sb_has_quota_limits_enabled(sb
, type
))
2482 spin_lock(&dq_state_lock
);
2483 sb_dqopt(sb
)->flags
|= dquot_state_flag(flags
, type
);
2484 spin_unlock(&dq_state_lock
);
2488 return vfs_load_quota_inode(inode
, type
, format_id
, flags
);
2490 EXPORT_SYMBOL(dquot_enable
);
2493 * This function is used when filesystem needs to initialize quotas
2494 * during mount time.
2496 int dquot_quota_on_mount(struct super_block
*sb
, char *qf_name
,
2497 int format_id
, int type
)
2499 struct dentry
*dentry
;
2502 dentry
= lookup_one_len_unlocked(qf_name
, sb
->s_root
, strlen(qf_name
));
2504 return PTR_ERR(dentry
);
2506 if (d_really_is_negative(dentry
)) {
2511 error
= security_quota_on(dentry
);
2513 error
= vfs_load_quota_inode(d_inode(dentry
), type
, format_id
,
2514 DQUOT_USAGE_ENABLED
| DQUOT_LIMITS_ENABLED
);
2520 EXPORT_SYMBOL(dquot_quota_on_mount
);
2522 static int dquot_quota_enable(struct super_block
*sb
, unsigned int flags
)
2526 struct quota_info
*dqopt
= sb_dqopt(sb
);
2528 if (!(dqopt
->flags
& DQUOT_QUOTA_SYS_FILE
))
2530 /* Accounting cannot be turned on while fs is mounted */
2531 flags
&= ~(FS_QUOTA_UDQ_ACCT
| FS_QUOTA_GDQ_ACCT
| FS_QUOTA_PDQ_ACCT
);
2534 for (type
= 0; type
< MAXQUOTAS
; type
++) {
2535 if (!(flags
& qtype_enforce_flag(type
)))
2537 /* Can't enforce without accounting */
2538 if (!sb_has_quota_usage_enabled(sb
, type
))
2540 ret
= dquot_enable(dqopt
->files
[type
], type
,
2541 dqopt
->info
[type
].dqi_fmt_id
,
2542 DQUOT_LIMITS_ENABLED
);
2548 /* Backout enforcement enablement we already did */
2549 for (type
--; type
>= 0; type
--) {
2550 if (flags
& qtype_enforce_flag(type
))
2551 dquot_disable(sb
, type
, DQUOT_LIMITS_ENABLED
);
2553 /* Error code translation for better compatibility with XFS */
2559 static int dquot_quota_disable(struct super_block
*sb
, unsigned int flags
)
2563 struct quota_info
*dqopt
= sb_dqopt(sb
);
2565 if (!(dqopt
->flags
& DQUOT_QUOTA_SYS_FILE
))
2568 * We don't support turning off accounting via quotactl. In principle
2569 * quota infrastructure can do this but filesystems don't expect
2570 * userspace to be able to do it.
2573 (FS_QUOTA_UDQ_ACCT
| FS_QUOTA_GDQ_ACCT
| FS_QUOTA_PDQ_ACCT
))
2576 /* Filter out limits not enabled */
2577 for (type
= 0; type
< MAXQUOTAS
; type
++)
2578 if (!sb_has_quota_limits_enabled(sb
, type
))
2579 flags
&= ~qtype_enforce_flag(type
);
2583 for (type
= 0; type
< MAXQUOTAS
; type
++) {
2584 if (flags
& qtype_enforce_flag(type
)) {
2585 ret
= dquot_disable(sb
, type
, DQUOT_LIMITS_ENABLED
);
2592 /* Backout enforcement disabling we already did */
2593 for (type
--; type
>= 0; type
--) {
2594 if (flags
& qtype_enforce_flag(type
))
2595 dquot_enable(dqopt
->files
[type
], type
,
2596 dqopt
->info
[type
].dqi_fmt_id
,
2597 DQUOT_LIMITS_ENABLED
);
2602 /* Generic routine for getting common part of quota structure */
2603 static void do_get_dqblk(struct dquot
*dquot
, struct qc_dqblk
*di
)
2605 struct mem_dqblk
*dm
= &dquot
->dq_dqb
;
2607 memset(di
, 0, sizeof(*di
));
2608 spin_lock(&dquot
->dq_dqb_lock
);
2609 di
->d_spc_hardlimit
= dm
->dqb_bhardlimit
;
2610 di
->d_spc_softlimit
= dm
->dqb_bsoftlimit
;
2611 di
->d_ino_hardlimit
= dm
->dqb_ihardlimit
;
2612 di
->d_ino_softlimit
= dm
->dqb_isoftlimit
;
2613 di
->d_space
= dm
->dqb_curspace
+ dm
->dqb_rsvspace
;
2614 di
->d_ino_count
= dm
->dqb_curinodes
;
2615 di
->d_spc_timer
= dm
->dqb_btime
;
2616 di
->d_ino_timer
= dm
->dqb_itime
;
2617 spin_unlock(&dquot
->dq_dqb_lock
);
2620 int dquot_get_dqblk(struct super_block
*sb
, struct kqid qid
,
2621 struct qc_dqblk
*di
)
2623 struct dquot
*dquot
;
2625 dquot
= dqget(sb
, qid
);
2627 return PTR_ERR(dquot
);
2628 do_get_dqblk(dquot
, di
);
2633 EXPORT_SYMBOL(dquot_get_dqblk
);
2635 int dquot_get_next_dqblk(struct super_block
*sb
, struct kqid
*qid
,
2636 struct qc_dqblk
*di
)
2638 struct dquot
*dquot
;
2641 if (!sb
->dq_op
->get_next_id
)
2643 err
= sb
->dq_op
->get_next_id(sb
, qid
);
2646 dquot
= dqget(sb
, *qid
);
2648 return PTR_ERR(dquot
);
2649 do_get_dqblk(dquot
, di
);
2654 EXPORT_SYMBOL(dquot_get_next_dqblk
);
2656 #define VFS_QC_MASK \
2657 (QC_SPACE | QC_SPC_SOFT | QC_SPC_HARD | \
2658 QC_INO_COUNT | QC_INO_SOFT | QC_INO_HARD | \
2659 QC_SPC_TIMER | QC_INO_TIMER)
2661 /* Generic routine for setting common part of quota structure */
2662 static int do_set_dqblk(struct dquot
*dquot
, struct qc_dqblk
*di
)
2664 struct mem_dqblk
*dm
= &dquot
->dq_dqb
;
2665 int check_blim
= 0, check_ilim
= 0;
2666 struct mem_dqinfo
*dqi
= &sb_dqopt(dquot
->dq_sb
)->info
[dquot
->dq_id
.type
];
2668 if (di
->d_fieldmask
& ~VFS_QC_MASK
)
2671 if (((di
->d_fieldmask
& QC_SPC_SOFT
) &&
2672 di
->d_spc_softlimit
> dqi
->dqi_max_spc_limit
) ||
2673 ((di
->d_fieldmask
& QC_SPC_HARD
) &&
2674 di
->d_spc_hardlimit
> dqi
->dqi_max_spc_limit
) ||
2675 ((di
->d_fieldmask
& QC_INO_SOFT
) &&
2676 (di
->d_ino_softlimit
> dqi
->dqi_max_ino_limit
)) ||
2677 ((di
->d_fieldmask
& QC_INO_HARD
) &&
2678 (di
->d_ino_hardlimit
> dqi
->dqi_max_ino_limit
)))
2681 spin_lock(&dquot
->dq_dqb_lock
);
2682 if (di
->d_fieldmask
& QC_SPACE
) {
2683 dm
->dqb_curspace
= di
->d_space
- dm
->dqb_rsvspace
;
2685 set_bit(DQ_LASTSET_B
+ QIF_SPACE_B
, &dquot
->dq_flags
);
2688 if (di
->d_fieldmask
& QC_SPC_SOFT
)
2689 dm
->dqb_bsoftlimit
= di
->d_spc_softlimit
;
2690 if (di
->d_fieldmask
& QC_SPC_HARD
)
2691 dm
->dqb_bhardlimit
= di
->d_spc_hardlimit
;
2692 if (di
->d_fieldmask
& (QC_SPC_SOFT
| QC_SPC_HARD
)) {
2694 set_bit(DQ_LASTSET_B
+ QIF_BLIMITS_B
, &dquot
->dq_flags
);
2697 if (di
->d_fieldmask
& QC_INO_COUNT
) {
2698 dm
->dqb_curinodes
= di
->d_ino_count
;
2700 set_bit(DQ_LASTSET_B
+ QIF_INODES_B
, &dquot
->dq_flags
);
2703 if (di
->d_fieldmask
& QC_INO_SOFT
)
2704 dm
->dqb_isoftlimit
= di
->d_ino_softlimit
;
2705 if (di
->d_fieldmask
& QC_INO_HARD
)
2706 dm
->dqb_ihardlimit
= di
->d_ino_hardlimit
;
2707 if (di
->d_fieldmask
& (QC_INO_SOFT
| QC_INO_HARD
)) {
2709 set_bit(DQ_LASTSET_B
+ QIF_ILIMITS_B
, &dquot
->dq_flags
);
2712 if (di
->d_fieldmask
& QC_SPC_TIMER
) {
2713 dm
->dqb_btime
= di
->d_spc_timer
;
2715 set_bit(DQ_LASTSET_B
+ QIF_BTIME_B
, &dquot
->dq_flags
);
2718 if (di
->d_fieldmask
& QC_INO_TIMER
) {
2719 dm
->dqb_itime
= di
->d_ino_timer
;
2721 set_bit(DQ_LASTSET_B
+ QIF_ITIME_B
, &dquot
->dq_flags
);
2725 if (!dm
->dqb_bsoftlimit
||
2726 dm
->dqb_curspace
+ dm
->dqb_rsvspace
< dm
->dqb_bsoftlimit
) {
2728 clear_bit(DQ_BLKS_B
, &dquot
->dq_flags
);
2729 } else if (!(di
->d_fieldmask
& QC_SPC_TIMER
))
2730 /* Set grace only if user hasn't provided his own... */
2731 dm
->dqb_btime
= ktime_get_real_seconds() + dqi
->dqi_bgrace
;
2734 if (!dm
->dqb_isoftlimit
||
2735 dm
->dqb_curinodes
< dm
->dqb_isoftlimit
) {
2737 clear_bit(DQ_INODES_B
, &dquot
->dq_flags
);
2738 } else if (!(di
->d_fieldmask
& QC_INO_TIMER
))
2739 /* Set grace only if user hasn't provided his own... */
2740 dm
->dqb_itime
= ktime_get_real_seconds() + dqi
->dqi_igrace
;
2742 if (dm
->dqb_bhardlimit
|| dm
->dqb_bsoftlimit
|| dm
->dqb_ihardlimit
||
2744 clear_bit(DQ_FAKE_B
, &dquot
->dq_flags
);
2746 set_bit(DQ_FAKE_B
, &dquot
->dq_flags
);
2747 spin_unlock(&dquot
->dq_dqb_lock
);
2748 mark_dquot_dirty(dquot
);
2753 int dquot_set_dqblk(struct super_block
*sb
, struct kqid qid
,
2754 struct qc_dqblk
*di
)
2756 struct dquot
*dquot
;
2759 dquot
= dqget(sb
, qid
);
2760 if (IS_ERR(dquot
)) {
2761 rc
= PTR_ERR(dquot
);
2764 rc
= do_set_dqblk(dquot
, di
);
2769 EXPORT_SYMBOL(dquot_set_dqblk
);
2771 /* Generic routine for getting common part of quota file information */
2772 int dquot_get_state(struct super_block
*sb
, struct qc_state
*state
)
2774 struct mem_dqinfo
*mi
;
2775 struct qc_type_state
*tstate
;
2776 struct quota_info
*dqopt
= sb_dqopt(sb
);
2779 memset(state
, 0, sizeof(*state
));
2780 for (type
= 0; type
< MAXQUOTAS
; type
++) {
2781 if (!sb_has_quota_active(sb
, type
))
2783 tstate
= state
->s_state
+ type
;
2784 mi
= sb_dqopt(sb
)->info
+ type
;
2785 tstate
->flags
= QCI_ACCT_ENABLED
;
2786 spin_lock(&dq_data_lock
);
2787 if (mi
->dqi_flags
& DQF_SYS_FILE
)
2788 tstate
->flags
|= QCI_SYSFILE
;
2789 if (mi
->dqi_flags
& DQF_ROOT_SQUASH
)
2790 tstate
->flags
|= QCI_ROOT_SQUASH
;
2791 if (sb_has_quota_limits_enabled(sb
, type
))
2792 tstate
->flags
|= QCI_LIMITS_ENFORCED
;
2793 tstate
->spc_timelimit
= mi
->dqi_bgrace
;
2794 tstate
->ino_timelimit
= mi
->dqi_igrace
;
2795 tstate
->ino
= dqopt
->files
[type
]->i_ino
;
2796 tstate
->blocks
= dqopt
->files
[type
]->i_blocks
;
2797 tstate
->nextents
= 1; /* We don't know... */
2798 spin_unlock(&dq_data_lock
);
2802 EXPORT_SYMBOL(dquot_get_state
);
2804 /* Generic routine for setting common part of quota file information */
2805 int dquot_set_dqinfo(struct super_block
*sb
, int type
, struct qc_info
*ii
)
2807 struct mem_dqinfo
*mi
;
2810 if ((ii
->i_fieldmask
& QC_WARNS_MASK
) ||
2811 (ii
->i_fieldmask
& QC_RT_SPC_TIMER
))
2813 if (!sb_has_quota_active(sb
, type
))
2815 mi
= sb_dqopt(sb
)->info
+ type
;
2816 if (ii
->i_fieldmask
& QC_FLAGS
) {
2817 if ((ii
->i_flags
& QCI_ROOT_SQUASH
&&
2818 mi
->dqi_format
->qf_fmt_id
!= QFMT_VFS_OLD
))
2821 spin_lock(&dq_data_lock
);
2822 if (ii
->i_fieldmask
& QC_SPC_TIMER
)
2823 mi
->dqi_bgrace
= ii
->i_spc_timelimit
;
2824 if (ii
->i_fieldmask
& QC_INO_TIMER
)
2825 mi
->dqi_igrace
= ii
->i_ino_timelimit
;
2826 if (ii
->i_fieldmask
& QC_FLAGS
) {
2827 if (ii
->i_flags
& QCI_ROOT_SQUASH
)
2828 mi
->dqi_flags
|= DQF_ROOT_SQUASH
;
2830 mi
->dqi_flags
&= ~DQF_ROOT_SQUASH
;
2832 spin_unlock(&dq_data_lock
);
2833 mark_info_dirty(sb
, type
);
2834 /* Force write to disk */
2835 sb
->dq_op
->write_info(sb
, type
);
2838 EXPORT_SYMBOL(dquot_set_dqinfo
);
2840 const struct quotactl_ops dquot_quotactl_sysfile_ops
= {
2841 .quota_enable
= dquot_quota_enable
,
2842 .quota_disable
= dquot_quota_disable
,
2843 .quota_sync
= dquot_quota_sync
,
2844 .get_state
= dquot_get_state
,
2845 .set_info
= dquot_set_dqinfo
,
2846 .get_dqblk
= dquot_get_dqblk
,
2847 .get_nextdqblk
= dquot_get_next_dqblk
,
2848 .set_dqblk
= dquot_set_dqblk
2850 EXPORT_SYMBOL(dquot_quotactl_sysfile_ops
);
2852 static int do_proc_dqstats(struct ctl_table
*table
, int write
,
2853 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
2855 unsigned int type
= (int *)table
->data
- dqstats
.stat
;
2857 /* Update global table */
2858 dqstats
.stat
[type
] =
2859 percpu_counter_sum_positive(&dqstats
.counter
[type
]);
2860 return proc_dointvec(table
, write
, buffer
, lenp
, ppos
);
2863 static struct ctl_table fs_dqstats_table
[] = {
2865 .procname
= "lookups",
2866 .data
= &dqstats
.stat
[DQST_LOOKUPS
],
2867 .maxlen
= sizeof(int),
2869 .proc_handler
= do_proc_dqstats
,
2872 .procname
= "drops",
2873 .data
= &dqstats
.stat
[DQST_DROPS
],
2874 .maxlen
= sizeof(int),
2876 .proc_handler
= do_proc_dqstats
,
2879 .procname
= "reads",
2880 .data
= &dqstats
.stat
[DQST_READS
],
2881 .maxlen
= sizeof(int),
2883 .proc_handler
= do_proc_dqstats
,
2886 .procname
= "writes",
2887 .data
= &dqstats
.stat
[DQST_WRITES
],
2888 .maxlen
= sizeof(int),
2890 .proc_handler
= do_proc_dqstats
,
2893 .procname
= "cache_hits",
2894 .data
= &dqstats
.stat
[DQST_CACHE_HITS
],
2895 .maxlen
= sizeof(int),
2897 .proc_handler
= do_proc_dqstats
,
2900 .procname
= "allocated_dquots",
2901 .data
= &dqstats
.stat
[DQST_ALLOC_DQUOTS
],
2902 .maxlen
= sizeof(int),
2904 .proc_handler
= do_proc_dqstats
,
2907 .procname
= "free_dquots",
2908 .data
= &dqstats
.stat
[DQST_FREE_DQUOTS
],
2909 .maxlen
= sizeof(int),
2911 .proc_handler
= do_proc_dqstats
,
2914 .procname
= "syncs",
2915 .data
= &dqstats
.stat
[DQST_SYNCS
],
2916 .maxlen
= sizeof(int),
2918 .proc_handler
= do_proc_dqstats
,
2920 #ifdef CONFIG_PRINT_QUOTA_WARNING
2922 .procname
= "warnings",
2923 .data
= &flag_print_warnings
,
2924 .maxlen
= sizeof(int),
2926 .proc_handler
= proc_dointvec
,
2932 static struct ctl_table fs_table
[] = {
2934 .procname
= "quota",
2936 .child
= fs_dqstats_table
,
2941 static struct ctl_table sys_table
[] = {
2950 static int __init
dquot_init(void)
2953 unsigned long nr_hash
, order
;
2955 printk(KERN_NOTICE
"VFS: Disk quotas %s\n", __DQUOT_VERSION__
);
2957 register_sysctl_table(sys_table
);
2959 dquot_cachep
= kmem_cache_create("dquot",
2960 sizeof(struct dquot
), sizeof(unsigned long) * 4,
2961 (SLAB_HWCACHE_ALIGN
|SLAB_RECLAIM_ACCOUNT
|
2962 SLAB_MEM_SPREAD
|SLAB_PANIC
),
2966 dquot_hash
= (struct hlist_head
*)__get_free_pages(GFP_KERNEL
, order
);
2968 panic("Cannot create dquot hash table");
2970 for (i
= 0; i
< _DQST_DQSTAT_LAST
; i
++) {
2971 ret
= percpu_counter_init(&dqstats
.counter
[i
], 0, GFP_KERNEL
);
2973 panic("Cannot create dquot stat counters");
2976 /* Find power-of-two hlist_heads which can fit into allocation */
2977 nr_hash
= (1UL << order
) * PAGE_SIZE
/ sizeof(struct hlist_head
);
2981 } while (nr_hash
>> dq_hash_bits
);
2984 nr_hash
= 1UL << dq_hash_bits
;
2985 dq_hash_mask
= nr_hash
- 1;
2986 for (i
= 0; i
< nr_hash
; i
++)
2987 INIT_HLIST_HEAD(dquot_hash
+ i
);
2989 pr_info("VFS: Dquot-cache hash table entries: %ld (order %ld,"
2990 " %ld bytes)\n", nr_hash
, order
, (PAGE_SIZE
<< order
));
2992 if (register_shrinker(&dqcache_shrinker
))
2993 panic("Cannot register dquot shrinker");
2997 fs_initcall(dquot_init
);