1 // SPDX-License-Identifier: GPL-2.0
2 /*
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.
12 *
13 * Author: Marco van Wieringen <mvw@planets.elm.net>
14 *
15 * Fixes: Dmitry Gorodchanin <pgmdsg@ibi.com>, 11 Feb 96
16 *
17 * Revised list management to avoid races
18 * -- Bill Hawes, <whawes@star.net>, 9/98
19 *
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
27 * quota files
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
32 *
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
40 *
41 * Added dynamic quota structure allocation
42 * Jan Kara <jack@suse.cz> 12/2000
43 *
44 * Rewritten quota interface. Implemented new quota format and
45 * formats registering.
46 * Jan Kara, <jack@suse.cz>, 2001,2002
47 *
48 * New SMP locking.
49 * Jan Kara, <jack@suse.cz>, 10/2002
50 *
51 * Added journalled quota support, fix lock inversion problems
52 * Jan Kara, <jack@suse.cz>, 2003,2004
53 *
54 * (C) Copyright 1994 - 1997 Marco van Wieringen
55 */
56
57 #include <linux/errno.h>
58 #include <linux/kernel.h>
59 #include <linux/fs.h>
60 #include <linux/mount.h>
61 #include <linux/mm.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 */
82
83 #include <linux/uaccess.h>
84
85 /*
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.
96 *
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
100 *
101 * Note that some things (eg. sb pointer, type, id) doesn't change during
102 * the life of the dquot structure and so needn't to be protected by a lock
103 *
104 * 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.
116 *
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().
122 *
123 * Lock ordering (including related VFS locks) is the following:
124 * s_umount > i_mutex > journal_lock > dquot->dq_lock > dqio_sem
125 */
126
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);
132
133 static DECLARE_WAIT_QUEUE_HEAD(dquot_ref_wq);
134
__quota_error(struct super_block * sb,const char * func,const char * fmt,...)135 void __quota_error(struct super_block *sb, const char *func,
136 const char *fmt, ...)
137 {
138 if (printk_ratelimit()) {
139 va_list args;
140 struct va_format vaf;
141
142 va_start(args, fmt);
143
144 vaf.fmt = fmt;
145 vaf.va = &args;
146
147 printk(KERN_ERR "Quota error (device %s): %s: %pV\n",
148 sb->s_id, func, &vaf);
149
150 va_end(args);
151 }
152 }
153 EXPORT_SYMBOL(__quota_error);
154
155 #if defined(CONFIG_QUOTA_DEBUG) || defined(CONFIG_PRINT_QUOTA_WARNING)
156 static char *quotatypes[] = INITQFNAMES;
157 #endif
158 static struct quota_format_type *quota_formats; /* List of registered formats */
159 static struct quota_module_name module_names[] = INIT_QUOTA_MODULE_NAMES;
160
161 /* SLAB cache for dquot structures */
162 static struct kmem_cache *dquot_cachep;
163
register_quota_format(struct quota_format_type * fmt)164 int register_quota_format(struct quota_format_type *fmt)
165 {
166 spin_lock(&dq_list_lock);
167 fmt->qf_next = quota_formats;
168 quota_formats = fmt;
169 spin_unlock(&dq_list_lock);
170 return 0;
171 }
172 EXPORT_SYMBOL(register_quota_format);
173
unregister_quota_format(struct quota_format_type * fmt)174 void unregister_quota_format(struct quota_format_type *fmt)
175 {
176 struct quota_format_type **actqf;
177
178 spin_lock(&dq_list_lock);
179 for (actqf = "a_formats; *actqf && *actqf != fmt;
180 actqf = &(*actqf)->qf_next)
181 ;
182 if (*actqf)
183 *actqf = (*actqf)->qf_next;
184 spin_unlock(&dq_list_lock);
185 }
186 EXPORT_SYMBOL(unregister_quota_format);
187
find_quota_format(int id)188 static struct quota_format_type *find_quota_format(int id)
189 {
190 struct quota_format_type *actqf;
191
192 spin_lock(&dq_list_lock);
193 for (actqf = quota_formats; actqf && actqf->qf_fmt_id != id;
194 actqf = actqf->qf_next)
195 ;
196 if (!actqf || !try_module_get(actqf->qf_owner)) {
197 int qm;
198
199 spin_unlock(&dq_list_lock);
200
201 for (qm = 0; module_names[qm].qm_fmt_id &&
202 module_names[qm].qm_fmt_id != id; qm++)
203 ;
204 if (!module_names[qm].qm_fmt_id ||
205 request_module(module_names[qm].qm_mod_name))
206 return NULL;
207
208 spin_lock(&dq_list_lock);
209 for (actqf = quota_formats; actqf && actqf->qf_fmt_id != id;
210 actqf = actqf->qf_next)
211 ;
212 if (actqf && !try_module_get(actqf->qf_owner))
213 actqf = NULL;
214 }
215 spin_unlock(&dq_list_lock);
216 return actqf;
217 }
218
put_quota_format(struct quota_format_type * fmt)219 static void put_quota_format(struct quota_format_type *fmt)
220 {
221 module_put(fmt->qf_owner);
222 }
223
224 /*
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.
229 *
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.
232 *
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.
238 *
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.
242 */
243
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;
248
249 struct dqstats dqstats;
250 EXPORT_SYMBOL(dqstats);
251
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);
255
256 static inline unsigned int
hashfn(const struct super_block * sb,struct kqid qid)257 hashfn(const struct super_block *sb, struct kqid qid)
258 {
259 unsigned int id = from_kqid(&init_user_ns, qid);
260 int type = qid.type;
261 unsigned long tmp;
262
263 tmp = (((unsigned long)sb>>L1_CACHE_SHIFT) ^ id) * (MAXQUOTAS - type);
264 return (tmp + (tmp >> dq_hash_bits)) & dq_hash_mask;
265 }
266
267 /*
268 * Following list functions expect dq_list_lock to be held
269 */
insert_dquot_hash(struct dquot * dquot)270 static inline void insert_dquot_hash(struct dquot *dquot)
271 {
272 struct hlist_head *head;
273 head = dquot_hash + hashfn(dquot->dq_sb, dquot->dq_id);
274 hlist_add_head(&dquot->dq_hash, head);
275 }
276
remove_dquot_hash(struct dquot * dquot)277 static inline void remove_dquot_hash(struct dquot *dquot)
278 {
279 hlist_del_init(&dquot->dq_hash);
280 }
281
find_dquot(unsigned int hashent,struct super_block * sb,struct kqid qid)282 static struct dquot *find_dquot(unsigned int hashent, struct super_block *sb,
283 struct kqid qid)
284 {
285 struct hlist_node *node;
286 struct dquot *dquot;
287
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))
291 return dquot;
292 }
293 return NULL;
294 }
295
296 /* Add a dquot to the tail of the free list */
put_dquot_last(struct dquot * dquot)297 static inline void put_dquot_last(struct dquot *dquot)
298 {
299 list_add_tail(&dquot->dq_free, &free_dquots);
300 dqstats_inc(DQST_FREE_DQUOTS);
301 }
302
remove_free_dquot(struct dquot * dquot)303 static inline void remove_free_dquot(struct dquot *dquot)
304 {
305 if (list_empty(&dquot->dq_free))
306 return;
307 list_del_init(&dquot->dq_free);
308 dqstats_dec(DQST_FREE_DQUOTS);
309 }
310
put_inuse(struct dquot * dquot)311 static inline void put_inuse(struct dquot *dquot)
312 {
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);
317 }
318
remove_inuse(struct dquot * dquot)319 static inline void remove_inuse(struct dquot *dquot)
320 {
321 dqstats_dec(DQST_ALLOC_DQUOTS);
322 list_del(&dquot->dq_inuse);
323 }
324 /*
325 * End of list functions needing dq_list_lock
326 */
327
wait_on_dquot(struct dquot * dquot)328 static void wait_on_dquot(struct dquot *dquot)
329 {
330 mutex_lock(&dquot->dq_lock);
331 mutex_unlock(&dquot->dq_lock);
332 }
333
dquot_dirty(struct dquot * dquot)334 static inline int dquot_dirty(struct dquot *dquot)
335 {
336 return test_bit(DQ_MOD_B, &dquot->dq_flags);
337 }
338
mark_dquot_dirty(struct dquot * dquot)339 static inline int mark_dquot_dirty(struct dquot *dquot)
340 {
341 return dquot->dq_sb->dq_op->mark_dirty(dquot);
342 }
343
344 /* Mark dquot dirty in atomic manner, and return it's old dirty flag state */
dquot_mark_dquot_dirty(struct dquot * dquot)345 int dquot_mark_dquot_dirty(struct dquot *dquot)
346 {
347 int ret = 1;
348
349 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags))
350 return 0;
351
352 if (sb_dqopt(dquot->dq_sb)->flags & DQUOT_NOLIST_DIRTY)
353 return test_and_set_bit(DQ_MOD_B, &dquot->dq_flags);
354
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))
357 return 1;
358
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);
363 ret = 0;
364 }
365 spin_unlock(&dq_list_lock);
366 return ret;
367 }
368 EXPORT_SYMBOL(dquot_mark_dquot_dirty);
369
370 /* Dirtify all the dquots - this can block when journalling */
mark_all_dquot_dirty(struct dquot * const * dquot)371 static inline int mark_all_dquot_dirty(struct dquot * const *dquot)
372 {
373 int ret, err, cnt;
374
375 ret = err = 0;
376 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
377 if (dquot[cnt])
378 /* Even in case of error we have to continue */
379 ret = mark_dquot_dirty(dquot[cnt]);
380 if (!err)
381 err = ret;
382 }
383 return err;
384 }
385
dqput_all(struct dquot ** dquot)386 static inline void dqput_all(struct dquot **dquot)
387 {
388 unsigned int cnt;
389
390 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
391 dqput(dquot[cnt]);
392 }
393
clear_dquot_dirty(struct dquot * dquot)394 static inline int clear_dquot_dirty(struct dquot *dquot)
395 {
396 if (sb_dqopt(dquot->dq_sb)->flags & DQUOT_NOLIST_DIRTY)
397 return test_and_clear_bit(DQ_MOD_B, &dquot->dq_flags);
398
399 spin_lock(&dq_list_lock);
400 if (!test_and_clear_bit(DQ_MOD_B, &dquot->dq_flags)) {
401 spin_unlock(&dq_list_lock);
402 return 0;
403 }
404 list_del_init(&dquot->dq_dirty);
405 spin_unlock(&dq_list_lock);
406 return 1;
407 }
408
mark_info_dirty(struct super_block * sb,int type)409 void mark_info_dirty(struct super_block *sb, int type)
410 {
411 spin_lock(&dq_data_lock);
412 sb_dqopt(sb)->info[type].dqi_flags |= DQF_INFO_DIRTY;
413 spin_unlock(&dq_data_lock);
414 }
415 EXPORT_SYMBOL(mark_info_dirty);
416
417 /*
418 * Read dquot from disk and alloc space for it
419 */
420
dquot_acquire(struct dquot * dquot)421 int dquot_acquire(struct dquot *dquot)
422 {
423 int ret = 0, ret2 = 0;
424 struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
425
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);
429 if (ret < 0)
430 goto out_iolock;
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);
441 }
442 if (ret < 0)
443 goto out_iolock;
444 if (ret2 < 0) {
445 ret = ret2;
446 goto out_iolock;
447 }
448 }
449 /*
450 * Make sure flags update is visible after on-disk struct has been
451 * allocated. Paired with smp_rmb() in dqget().
452 */
453 smp_mb__before_atomic();
454 set_bit(DQ_ACTIVE_B, &dquot->dq_flags);
455 out_iolock:
456 mutex_unlock(&dquot->dq_lock);
457 return ret;
458 }
459 EXPORT_SYMBOL(dquot_acquire);
460
461 /*
462 * Write dquot to disk
463 */
dquot_commit(struct dquot * dquot)464 int dquot_commit(struct dquot *dquot)
465 {
466 int ret = 0;
467 struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
468
469 mutex_lock(&dquot->dq_lock);
470 if (!clear_dquot_dirty(dquot))
471 goto out_lock;
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);
476 else
477 ret = -EIO;
478 out_lock:
479 mutex_unlock(&dquot->dq_lock);
480 return ret;
481 }
482 EXPORT_SYMBOL(dquot_commit);
483
484 /*
485 * Release dquot
486 */
dquot_release(struct dquot * dquot)487 int dquot_release(struct dquot *dquot)
488 {
489 int ret = 0, ret2 = 0;
490 struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
491
492 mutex_lock(&dquot->dq_lock);
493 /* Check whether we are not racing with some other dqget() */
494 if (dquot_is_busy(dquot))
495 goto out_dqlock;
496 if (dqopt->ops[dquot->dq_id.type]->release_dqblk) {
497 ret = dqopt->ops[dquot->dq_id.type]->release_dqblk(dquot);
498 /* Write the info */
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);
502 }
503 if (ret >= 0)
504 ret = ret2;
505 }
506 clear_bit(DQ_ACTIVE_B, &dquot->dq_flags);
507 out_dqlock:
508 mutex_unlock(&dquot->dq_lock);
509 return ret;
510 }
511 EXPORT_SYMBOL(dquot_release);
512
dquot_destroy(struct dquot * dquot)513 void dquot_destroy(struct dquot *dquot)
514 {
515 kmem_cache_free(dquot_cachep, dquot);
516 }
517 EXPORT_SYMBOL(dquot_destroy);
518
do_destroy_dquot(struct dquot * dquot)519 static inline void do_destroy_dquot(struct dquot *dquot)
520 {
521 dquot->dq_sb->dq_op->destroy_dquot(dquot);
522 }
523
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.
529 */
invalidate_dquots(struct super_block * sb,int type)530 static void invalidate_dquots(struct super_block *sb, int type)
531 {
532 struct dquot *dquot, *tmp;
533
534 restart:
535 spin_lock(&dq_list_lock);
536 list_for_each_entry_safe(dquot, tmp, &inuse_list, dq_inuse) {
537 if (dquot->dq_sb != sb)
538 continue;
539 if (dquot->dq_id.type != type)
540 continue;
541 /* Wait for dquot users */
542 if (atomic_read(&dquot->dq_count)) {
543 dqgrab(dquot);
544 spin_unlock(&dq_list_lock);
545 /*
546 * Once dqput() wakes us up, we know it's time to free
547 * the dquot.
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
551 * wake up.
552 */
553 wait_event(dquot_ref_wq,
554 atomic_read(&dquot->dq_count) == 1);
555 dqput(dquot);
556 /* At this moment dquot() need not exist (it could be
557 * reclaimed by prune_dqcache(). Hence we must
558 * restart. */
559 goto restart;
560 }
561 /*
562 * Quota now has no users and it has been written on last
563 * dqput()
564 */
565 remove_dquot_hash(dquot);
566 remove_free_dquot(dquot);
567 remove_inuse(dquot);
568 do_destroy_dquot(dquot);
569 }
570 spin_unlock(&dq_list_lock);
571 }
572
573 /* Call callback for every active dquot on given filesystem */
dquot_scan_active(struct super_block * sb,int (* fn)(struct dquot * dquot,unsigned long priv),unsigned long priv)574 int dquot_scan_active(struct super_block *sb,
575 int (*fn)(struct dquot *dquot, unsigned long priv),
576 unsigned long priv)
577 {
578 struct dquot *dquot, *old_dquot = NULL;
579 int ret = 0;
580
581 WARN_ON_ONCE(!rwsem_is_locked(&sb->s_umount));
582
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))
586 continue;
587 if (dquot->dq_sb != sb)
588 continue;
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);
593 dqput(old_dquot);
594 old_dquot = dquot;
595 /*
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.
599 */
600 wait_on_dquot(dquot);
601 if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) {
602 ret = fn(dquot, priv);
603 if (ret < 0)
604 goto out;
605 }
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 */
609 }
610 spin_unlock(&dq_list_lock);
611 out:
612 dqput(old_dquot);
613 return ret;
614 }
615 EXPORT_SYMBOL(dquot_scan_active);
616
617 /* Write all dquot structures to quota files */
dquot_writeback_dquots(struct super_block * sb,int type)618 int dquot_writeback_dquots(struct super_block *sb, int type)
619 {
620 struct list_head dirty;
621 struct dquot *dquot;
622 struct quota_info *dqopt = sb_dqopt(sb);
623 int cnt;
624 int err, ret = 0;
625
626 WARN_ON_ONCE(!rwsem_is_locked(&sb->s_umount));
627
628 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
629 if (type != -1 && cnt != type)
630 continue;
631 if (!sb_has_quota_active(sb, cnt))
632 continue;
633 spin_lock(&dq_list_lock);
634 /* Move list away to avoid livelock. */
635 list_replace_init(&dqopt->info[cnt].dqi_dirty_list, &dirty);
636 while (!list_empty(&dirty)) {
637 dquot = list_first_entry(&dirty, struct dquot,
638 dq_dirty);
639
640 WARN_ON(!test_bit(DQ_ACTIVE_B, &dquot->dq_flags));
641
642 /* Now we have active dquot from which someone is
643 * holding reference so we can safely just increase
644 * use count */
645 dqgrab(dquot);
646 spin_unlock(&dq_list_lock);
647 dqstats_inc(DQST_LOOKUPS);
648 err = sb->dq_op->write_dquot(dquot);
649 if (!ret && err)
650 ret = err;
651 dqput(dquot);
652 spin_lock(&dq_list_lock);
653 }
654 spin_unlock(&dq_list_lock);
655 }
656
657 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
658 if ((cnt == type || type == -1) && sb_has_quota_active(sb, cnt)
659 && info_dirty(&dqopt->info[cnt]))
660 sb->dq_op->write_info(sb, cnt);
661 dqstats_inc(DQST_SYNCS);
662
663 return ret;
664 }
665 EXPORT_SYMBOL(dquot_writeback_dquots);
666
667 /* Write all dquot structures to disk and make them visible from userspace */
dquot_quota_sync(struct super_block * sb,int type)668 int dquot_quota_sync(struct super_block *sb, int type)
669 {
670 struct quota_info *dqopt = sb_dqopt(sb);
671 int cnt;
672 int ret;
673
674 ret = dquot_writeback_dquots(sb, type);
675 if (ret)
676 return ret;
677 if (dqopt->flags & DQUOT_QUOTA_SYS_FILE)
678 return 0;
679
680 /* This is not very clever (and fast) but currently I don't know about
681 * any other simple way of getting quota data to disk and we must get
682 * them there for userspace to be visible... */
683 if (sb->s_op->sync_fs)
684 sb->s_op->sync_fs(sb, 1);
685 sync_blockdev(sb->s_bdev);
686
687 /*
688 * Now when everything is written we can discard the pagecache so
689 * that userspace sees the changes.
690 */
691 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
692 if (type != -1 && cnt != type)
693 continue;
694 if (!sb_has_quota_active(sb, cnt))
695 continue;
696 inode_lock(dqopt->files[cnt]);
697 truncate_inode_pages(&dqopt->files[cnt]->i_data, 0);
698 inode_unlock(dqopt->files[cnt]);
699 }
700
701 return 0;
702 }
703 EXPORT_SYMBOL(dquot_quota_sync);
704
705 static unsigned long
dqcache_shrink_scan(struct shrinker * shrink,struct shrink_control * sc)706 dqcache_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
707 {
708 struct list_head *head;
709 struct dquot *dquot;
710 unsigned long freed = 0;
711
712 spin_lock(&dq_list_lock);
713 head = free_dquots.prev;
714 while (head != &free_dquots && sc->nr_to_scan) {
715 dquot = list_entry(head, struct dquot, dq_free);
716 remove_dquot_hash(dquot);
717 remove_free_dquot(dquot);
718 remove_inuse(dquot);
719 do_destroy_dquot(dquot);
720 sc->nr_to_scan--;
721 freed++;
722 head = free_dquots.prev;
723 }
724 spin_unlock(&dq_list_lock);
725 return freed;
726 }
727
728 static unsigned long
dqcache_shrink_count(struct shrinker * shrink,struct shrink_control * sc)729 dqcache_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
730 {
731 return vfs_pressure_ratio(
732 percpu_counter_read_positive(&dqstats.counter[DQST_FREE_DQUOTS]));
733 }
734
735 static struct shrinker dqcache_shrinker = {
736 .count_objects = dqcache_shrink_count,
737 .scan_objects = dqcache_shrink_scan,
738 .seeks = DEFAULT_SEEKS,
739 };
740
741 /*
742 * Put reference to dquot
743 */
dqput(struct dquot * dquot)744 void dqput(struct dquot *dquot)
745 {
746 int ret;
747
748 if (!dquot)
749 return;
750 #ifdef CONFIG_QUOTA_DEBUG
751 if (!atomic_read(&dquot->dq_count)) {
752 quota_error(dquot->dq_sb, "trying to free free dquot of %s %d",
753 quotatypes[dquot->dq_id.type],
754 from_kqid(&init_user_ns, dquot->dq_id));
755 BUG();
756 }
757 #endif
758 dqstats_inc(DQST_DROPS);
759 we_slept:
760 spin_lock(&dq_list_lock);
761 if (atomic_read(&dquot->dq_count) > 1) {
762 /* We have more than one user... nothing to do */
763 atomic_dec(&dquot->dq_count);
764 /* Releasing dquot during quotaoff phase? */
765 if (!sb_has_quota_active(dquot->dq_sb, dquot->dq_id.type) &&
766 atomic_read(&dquot->dq_count) == 1)
767 wake_up(&dquot_ref_wq);
768 spin_unlock(&dq_list_lock);
769 return;
770 }
771 /* Need to release dquot? */
772 if (dquot_dirty(dquot)) {
773 spin_unlock(&dq_list_lock);
774 /* Commit dquot before releasing */
775 ret = dquot->dq_sb->dq_op->write_dquot(dquot);
776 if (ret < 0) {
777 quota_error(dquot->dq_sb, "Can't write quota structure"
778 " (error %d). Quota may get out of sync!",
779 ret);
780 /*
781 * We clear dirty bit anyway, so that we avoid
782 * infinite loop here
783 */
784 clear_dquot_dirty(dquot);
785 }
786 goto we_slept;
787 }
788 if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) {
789 spin_unlock(&dq_list_lock);
790 dquot->dq_sb->dq_op->release_dquot(dquot);
791 goto we_slept;
792 }
793 atomic_dec(&dquot->dq_count);
794 #ifdef CONFIG_QUOTA_DEBUG
795 /* sanity check */
796 BUG_ON(!list_empty(&dquot->dq_free));
797 #endif
798 put_dquot_last(dquot);
799 spin_unlock(&dq_list_lock);
800 }
801 EXPORT_SYMBOL(dqput);
802
dquot_alloc(struct super_block * sb,int type)803 struct dquot *dquot_alloc(struct super_block *sb, int type)
804 {
805 return kmem_cache_zalloc(dquot_cachep, GFP_NOFS);
806 }
807 EXPORT_SYMBOL(dquot_alloc);
808
get_empty_dquot(struct super_block * sb,int type)809 static struct dquot *get_empty_dquot(struct super_block *sb, int type)
810 {
811 struct dquot *dquot;
812
813 dquot = sb->dq_op->alloc_dquot(sb, type);
814 if(!dquot)
815 return NULL;
816
817 mutex_init(&dquot->dq_lock);
818 INIT_LIST_HEAD(&dquot->dq_free);
819 INIT_LIST_HEAD(&dquot->dq_inuse);
820 INIT_HLIST_NODE(&dquot->dq_hash);
821 INIT_LIST_HEAD(&dquot->dq_dirty);
822 dquot->dq_sb = sb;
823 dquot->dq_id = make_kqid_invalid(type);
824 atomic_set(&dquot->dq_count, 1);
825 spin_lock_init(&dquot->dq_dqb_lock);
826
827 return dquot;
828 }
829
830 /*
831 * Get reference to dquot
832 *
833 * Locking is slightly tricky here. We are guarded from parallel quotaoff()
834 * destroying our dquot by:
835 * a) checking for quota flags under dq_list_lock and
836 * b) getting a reference to dquot before we release dq_list_lock
837 */
dqget(struct super_block * sb,struct kqid qid)838 struct dquot *dqget(struct super_block *sb, struct kqid qid)
839 {
840 unsigned int hashent = hashfn(sb, qid);
841 struct dquot *dquot, *empty = NULL;
842
843 if (!qid_has_mapping(sb->s_user_ns, qid))
844 return ERR_PTR(-EINVAL);
845
846 if (!sb_has_quota_active(sb, qid.type))
847 return ERR_PTR(-ESRCH);
848 we_slept:
849 spin_lock(&dq_list_lock);
850 spin_lock(&dq_state_lock);
851 if (!sb_has_quota_active(sb, qid.type)) {
852 spin_unlock(&dq_state_lock);
853 spin_unlock(&dq_list_lock);
854 dquot = ERR_PTR(-ESRCH);
855 goto out;
856 }
857 spin_unlock(&dq_state_lock);
858
859 dquot = find_dquot(hashent, sb, qid);
860 if (!dquot) {
861 if (!empty) {
862 spin_unlock(&dq_list_lock);
863 empty = get_empty_dquot(sb, qid.type);
864 if (!empty)
865 schedule(); /* Try to wait for a moment... */
866 goto we_slept;
867 }
868 dquot = empty;
869 empty = NULL;
870 dquot->dq_id = qid;
871 /* all dquots go on the inuse_list */
872 put_inuse(dquot);
873 /* hash it first so it can be found */
874 insert_dquot_hash(dquot);
875 spin_unlock(&dq_list_lock);
876 dqstats_inc(DQST_LOOKUPS);
877 } else {
878 if (!atomic_read(&dquot->dq_count))
879 remove_free_dquot(dquot);
880 atomic_inc(&dquot->dq_count);
881 spin_unlock(&dq_list_lock);
882 dqstats_inc(DQST_CACHE_HITS);
883 dqstats_inc(DQST_LOOKUPS);
884 }
885 /* Wait for dq_lock - after this we know that either dquot_release() is
886 * already finished or it will be canceled due to dq_count > 1 test */
887 wait_on_dquot(dquot);
888 /* Read the dquot / allocate space in quota file */
889 if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) {
890 int err;
891
892 err = sb->dq_op->acquire_dquot(dquot);
893 if (err < 0) {
894 dqput(dquot);
895 dquot = ERR_PTR(err);
896 goto out;
897 }
898 }
899 /*
900 * Make sure following reads see filled structure - paired with
901 * smp_mb__before_atomic() in dquot_acquire().
902 */
903 smp_rmb();
904 #ifdef CONFIG_QUOTA_DEBUG
905 BUG_ON(!dquot->dq_sb); /* Has somebody invalidated entry under us? */
906 #endif
907 out:
908 if (empty)
909 do_destroy_dquot(empty);
910
911 return dquot;
912 }
913 EXPORT_SYMBOL(dqget);
914
i_dquot(struct inode * inode)915 static inline struct dquot **i_dquot(struct inode *inode)
916 {
917 return inode->i_sb->s_op->get_dquots(inode);
918 }
919
dqinit_needed(struct inode * inode,int type)920 static int dqinit_needed(struct inode *inode, int type)
921 {
922 struct dquot * const *dquots;
923 int cnt;
924
925 if (IS_NOQUOTA(inode))
926 return 0;
927
928 dquots = i_dquot(inode);
929 if (type != -1)
930 return !dquots[type];
931 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
932 if (!dquots[cnt])
933 return 1;
934 return 0;
935 }
936
937 /* This routine is guarded by s_umount semaphore */
add_dquot_ref(struct super_block * sb,int type)938 static int add_dquot_ref(struct super_block *sb, int type)
939 {
940 struct inode *inode, *old_inode = NULL;
941 #ifdef CONFIG_QUOTA_DEBUG
942 int reserved = 0;
943 #endif
944 int err = 0;
945
946 spin_lock(&sb->s_inode_list_lock);
947 list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
948 spin_lock(&inode->i_lock);
949 if ((inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW)) ||
950 !atomic_read(&inode->i_writecount) ||
951 !dqinit_needed(inode, type)) {
952 spin_unlock(&inode->i_lock);
953 continue;
954 }
955 __iget(inode);
956 spin_unlock(&inode->i_lock);
957 spin_unlock(&sb->s_inode_list_lock);
958
959 #ifdef CONFIG_QUOTA_DEBUG
960 if (unlikely(inode_get_rsv_space(inode) > 0))
961 reserved = 1;
962 #endif
963 iput(old_inode);
964 err = __dquot_initialize(inode, type);
965 if (err) {
966 iput(inode);
967 goto out;
968 }
969
970 /*
971 * We hold a reference to 'inode' so it couldn't have been
972 * removed from s_inodes list while we dropped the
973 * s_inode_list_lock. We cannot iput the inode now as we can be
974 * holding the last reference and we cannot iput it under
975 * s_inode_list_lock. So we keep the reference and iput it
976 * later.
977 */
978 old_inode = inode;
979 cond_resched();
980 spin_lock(&sb->s_inode_list_lock);
981 }
982 spin_unlock(&sb->s_inode_list_lock);
983 iput(old_inode);
984 out:
985 #ifdef CONFIG_QUOTA_DEBUG
986 if (reserved) {
987 quota_error(sb, "Writes happened before quota was turned on "
988 "thus quota information is probably inconsistent. "
989 "Please run quotacheck(8)");
990 }
991 #endif
992 return err;
993 }
994
995 /*
996 * Remove references to dquots from inode and add dquot to list for freeing
997 * if we have the last reference to dquot
998 */
remove_inode_dquot_ref(struct inode * inode,int type,struct list_head * tofree_head)999 static void remove_inode_dquot_ref(struct inode *inode, int type,
1000 struct list_head *tofree_head)
1001 {
1002 struct dquot **dquots = i_dquot(inode);
1003 struct dquot *dquot = dquots[type];
1004
1005 if (!dquot)
1006 return;
1007
1008 dquots[type] = NULL;
1009 if (list_empty(&dquot->dq_free)) {
1010 /*
1011 * The inode still has reference to dquot so it can't be in the
1012 * free list
1013 */
1014 spin_lock(&dq_list_lock);
1015 list_add(&dquot->dq_free, tofree_head);
1016 spin_unlock(&dq_list_lock);
1017 } else {
1018 /*
1019 * Dquot is already in a list to put so we won't drop the last
1020 * reference here.
1021 */
1022 dqput(dquot);
1023 }
1024 }
1025
1026 /*
1027 * Free list of dquots
1028 * Dquots are removed from inodes and no new references can be got so we are
1029 * the only ones holding reference
1030 */
put_dquot_list(struct list_head * tofree_head)1031 static void put_dquot_list(struct list_head *tofree_head)
1032 {
1033 struct list_head *act_head;
1034 struct dquot *dquot;
1035
1036 act_head = tofree_head->next;
1037 while (act_head != tofree_head) {
1038 dquot = list_entry(act_head, struct dquot, dq_free);
1039 act_head = act_head->next;
1040 /* Remove dquot from the list so we won't have problems... */
1041 list_del_init(&dquot->dq_free);
1042 dqput(dquot);
1043 }
1044 }
1045
remove_dquot_ref(struct super_block * sb,int type,struct list_head * tofree_head)1046 static void remove_dquot_ref(struct super_block *sb, int type,
1047 struct list_head *tofree_head)
1048 {
1049 struct inode *inode;
1050 int reserved = 0;
1051
1052 spin_lock(&sb->s_inode_list_lock);
1053 list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
1054 /*
1055 * We have to scan also I_NEW inodes because they can already
1056 * have quota pointer initialized. Luckily, we need to touch
1057 * only quota pointers and these have separate locking
1058 * (dq_data_lock).
1059 */
1060 spin_lock(&dq_data_lock);
1061 if (!IS_NOQUOTA(inode)) {
1062 if (unlikely(inode_get_rsv_space(inode) > 0))
1063 reserved = 1;
1064 remove_inode_dquot_ref(inode, type, tofree_head);
1065 }
1066 spin_unlock(&dq_data_lock);
1067 }
1068 spin_unlock(&sb->s_inode_list_lock);
1069 #ifdef CONFIG_QUOTA_DEBUG
1070 if (reserved) {
1071 printk(KERN_WARNING "VFS (%s): Writes happened after quota"
1072 " was disabled thus quota information is probably "
1073 "inconsistent. Please run quotacheck(8).\n", sb->s_id);
1074 }
1075 #endif
1076 }
1077
1078 /* Gather all references from inodes and drop them */
drop_dquot_ref(struct super_block * sb,int type)1079 static void drop_dquot_ref(struct super_block *sb, int type)
1080 {
1081 LIST_HEAD(tofree_head);
1082
1083 if (sb->dq_op) {
1084 remove_dquot_ref(sb, type, &tofree_head);
1085 synchronize_srcu(&dquot_srcu);
1086 put_dquot_list(&tofree_head);
1087 }
1088 }
1089
1090 static inline
dquot_free_reserved_space(struct dquot * dquot,qsize_t number)1091 void dquot_free_reserved_space(struct dquot *dquot, qsize_t number)
1092 {
1093 if (dquot->dq_dqb.dqb_rsvspace >= number)
1094 dquot->dq_dqb.dqb_rsvspace -= number;
1095 else {
1096 WARN_ON_ONCE(1);
1097 dquot->dq_dqb.dqb_rsvspace = 0;
1098 }
1099 if (dquot->dq_dqb.dqb_curspace + dquot->dq_dqb.dqb_rsvspace <=
1100 dquot->dq_dqb.dqb_bsoftlimit)
1101 dquot->dq_dqb.dqb_btime = (time64_t) 0;
1102 clear_bit(DQ_BLKS_B, &dquot->dq_flags);
1103 }
1104
dquot_decr_inodes(struct dquot * dquot,qsize_t number)1105 static void dquot_decr_inodes(struct dquot *dquot, qsize_t number)
1106 {
1107 if (sb_dqopt(dquot->dq_sb)->flags & DQUOT_NEGATIVE_USAGE ||
1108 dquot->dq_dqb.dqb_curinodes >= number)
1109 dquot->dq_dqb.dqb_curinodes -= number;
1110 else
1111 dquot->dq_dqb.dqb_curinodes = 0;
1112 if (dquot->dq_dqb.dqb_curinodes <= dquot->dq_dqb.dqb_isoftlimit)
1113 dquot->dq_dqb.dqb_itime = (time64_t) 0;
1114 clear_bit(DQ_INODES_B, &dquot->dq_flags);
1115 }
1116
dquot_decr_space(struct dquot * dquot,qsize_t number)1117 static void dquot_decr_space(struct dquot *dquot, qsize_t number)
1118 {
1119 if (sb_dqopt(dquot->dq_sb)->flags & DQUOT_NEGATIVE_USAGE ||
1120 dquot->dq_dqb.dqb_curspace >= number)
1121 dquot->dq_dqb.dqb_curspace -= number;
1122 else
1123 dquot->dq_dqb.dqb_curspace = 0;
1124 if (dquot->dq_dqb.dqb_curspace + dquot->dq_dqb.dqb_rsvspace <=
1125 dquot->dq_dqb.dqb_bsoftlimit)
1126 dquot->dq_dqb.dqb_btime = (time64_t) 0;
1127 clear_bit(DQ_BLKS_B, &dquot->dq_flags);
1128 }
1129
1130 struct dquot_warn {
1131 struct super_block *w_sb;
1132 struct kqid w_dq_id;
1133 short w_type;
1134 };
1135
warning_issued(struct dquot * dquot,const int warntype)1136 static int warning_issued(struct dquot *dquot, const int warntype)
1137 {
1138 int flag = (warntype == QUOTA_NL_BHARDWARN ||
1139 warntype == QUOTA_NL_BSOFTLONGWARN) ? DQ_BLKS_B :
1140 ((warntype == QUOTA_NL_IHARDWARN ||
1141 warntype == QUOTA_NL_ISOFTLONGWARN) ? DQ_INODES_B : 0);
1142
1143 if (!flag)
1144 return 0;
1145 return test_and_set_bit(flag, &dquot->dq_flags);
1146 }
1147
1148 #ifdef CONFIG_PRINT_QUOTA_WARNING
1149 static int flag_print_warnings = 1;
1150
need_print_warning(struct dquot_warn * warn)1151 static int need_print_warning(struct dquot_warn *warn)
1152 {
1153 if (!flag_print_warnings)
1154 return 0;
1155
1156 switch (warn->w_dq_id.type) {
1157 case USRQUOTA:
1158 return uid_eq(current_fsuid(), warn->w_dq_id.uid);
1159 case GRPQUOTA:
1160 return in_group_p(warn->w_dq_id.gid);
1161 case PRJQUOTA:
1162 return 1;
1163 }
1164 return 0;
1165 }
1166
1167 /* Print warning to user which exceeded quota */
print_warning(struct dquot_warn * warn)1168 static void print_warning(struct dquot_warn *warn)
1169 {
1170 char *msg = NULL;
1171 struct tty_struct *tty;
1172 int warntype = warn->w_type;
1173
1174 if (warntype == QUOTA_NL_IHARDBELOW ||
1175 warntype == QUOTA_NL_ISOFTBELOW ||
1176 warntype == QUOTA_NL_BHARDBELOW ||
1177 warntype == QUOTA_NL_BSOFTBELOW || !need_print_warning(warn))
1178 return;
1179
1180 tty = get_current_tty();
1181 if (!tty)
1182 return;
1183 tty_write_message(tty, warn->w_sb->s_id);
1184 if (warntype == QUOTA_NL_ISOFTWARN || warntype == QUOTA_NL_BSOFTWARN)
1185 tty_write_message(tty, ": warning, ");
1186 else
1187 tty_write_message(tty, ": write failed, ");
1188 tty_write_message(tty, quotatypes[warn->w_dq_id.type]);
1189 switch (warntype) {
1190 case QUOTA_NL_IHARDWARN:
1191 msg = " file limit reached.\r\n";
1192 break;
1193 case QUOTA_NL_ISOFTLONGWARN:
1194 msg = " file quota exceeded too long.\r\n";
1195 break;
1196 case QUOTA_NL_ISOFTWARN:
1197 msg = " file quota exceeded.\r\n";
1198 break;
1199 case QUOTA_NL_BHARDWARN:
1200 msg = " block limit reached.\r\n";
1201 break;
1202 case QUOTA_NL_BSOFTLONGWARN:
1203 msg = " block quota exceeded too long.\r\n";
1204 break;
1205 case QUOTA_NL_BSOFTWARN:
1206 msg = " block quota exceeded.\r\n";
1207 break;
1208 }
1209 tty_write_message(tty, msg);
1210 tty_kref_put(tty);
1211 }
1212 #endif
1213
prepare_warning(struct dquot_warn * warn,struct dquot * dquot,int warntype)1214 static void prepare_warning(struct dquot_warn *warn, struct dquot *dquot,
1215 int warntype)
1216 {
1217 if (warning_issued(dquot, warntype))
1218 return;
1219 warn->w_type = warntype;
1220 warn->w_sb = dquot->dq_sb;
1221 warn->w_dq_id = dquot->dq_id;
1222 }
1223
1224 /*
1225 * Write warnings to the console and send warning messages over netlink.
1226 *
1227 * Note that this function can call into tty and networking code.
1228 */
flush_warnings(struct dquot_warn * warn)1229 static void flush_warnings(struct dquot_warn *warn)
1230 {
1231 int i;
1232
1233 for (i = 0; i < MAXQUOTAS; i++) {
1234 if (warn[i].w_type == QUOTA_NL_NOWARN)
1235 continue;
1236 #ifdef CONFIG_PRINT_QUOTA_WARNING
1237 print_warning(&warn[i]);
1238 #endif
1239 quota_send_warning(warn[i].w_dq_id,
1240 warn[i].w_sb->s_dev, warn[i].w_type);
1241 }
1242 }
1243
ignore_hardlimit(struct dquot * dquot)1244 static int ignore_hardlimit(struct dquot *dquot)
1245 {
1246 struct mem_dqinfo *info = &sb_dqopt(dquot->dq_sb)->info[dquot->dq_id.type];
1247
1248 return capable(CAP_SYS_RESOURCE) &&
1249 (info->dqi_format->qf_fmt_id != QFMT_VFS_OLD ||
1250 !(info->dqi_flags & DQF_ROOT_SQUASH));
1251 }
1252
dquot_add_inodes(struct dquot * dquot,qsize_t inodes,struct dquot_warn * warn)1253 static int dquot_add_inodes(struct dquot *dquot, qsize_t inodes,
1254 struct dquot_warn *warn)
1255 {
1256 qsize_t newinodes;
1257 int ret = 0;
1258
1259 spin_lock(&dquot->dq_dqb_lock);
1260 newinodes = dquot->dq_dqb.dqb_curinodes + inodes;
1261 if (!sb_has_quota_limits_enabled(dquot->dq_sb, dquot->dq_id.type) ||
1262 test_bit(DQ_FAKE_B, &dquot->dq_flags))
1263 goto add;
1264
1265 if (dquot->dq_dqb.dqb_ihardlimit &&
1266 newinodes > dquot->dq_dqb.dqb_ihardlimit &&
1267 !ignore_hardlimit(dquot)) {
1268 prepare_warning(warn, dquot, QUOTA_NL_IHARDWARN);
1269 ret = -EDQUOT;
1270 goto out;
1271 }
1272
1273 if (dquot->dq_dqb.dqb_isoftlimit &&
1274 newinodes > dquot->dq_dqb.dqb_isoftlimit &&
1275 dquot->dq_dqb.dqb_itime &&
1276 ktime_get_real_seconds() >= dquot->dq_dqb.dqb_itime &&
1277 !ignore_hardlimit(dquot)) {
1278 prepare_warning(warn, dquot, QUOTA_NL_ISOFTLONGWARN);
1279 ret = -EDQUOT;
1280 goto out;
1281 }
1282
1283 if (dquot->dq_dqb.dqb_isoftlimit &&
1284 newinodes > dquot->dq_dqb.dqb_isoftlimit &&
1285 dquot->dq_dqb.dqb_itime == 0) {
1286 prepare_warning(warn, dquot, QUOTA_NL_ISOFTWARN);
1287 dquot->dq_dqb.dqb_itime = ktime_get_real_seconds() +
1288 sb_dqopt(dquot->dq_sb)->info[dquot->dq_id.type].dqi_igrace;
1289 }
1290 add:
1291 dquot->dq_dqb.dqb_curinodes = newinodes;
1292
1293 out:
1294 spin_unlock(&dquot->dq_dqb_lock);
1295 return ret;
1296 }
1297
dquot_add_space(struct dquot * dquot,qsize_t space,qsize_t rsv_space,unsigned int flags,struct dquot_warn * warn)1298 static int dquot_add_space(struct dquot *dquot, qsize_t space,
1299 qsize_t rsv_space, unsigned int flags,
1300 struct dquot_warn *warn)
1301 {
1302 qsize_t tspace;
1303 struct super_block *sb = dquot->dq_sb;
1304 int ret = 0;
1305
1306 spin_lock(&dquot->dq_dqb_lock);
1307 if (!sb_has_quota_limits_enabled(sb, dquot->dq_id.type) ||
1308 test_bit(DQ_FAKE_B, &dquot->dq_flags))
1309 goto finish;
1310
1311 tspace = dquot->dq_dqb.dqb_curspace + dquot->dq_dqb.dqb_rsvspace
1312 + space + rsv_space;
1313
1314 if (dquot->dq_dqb.dqb_bhardlimit &&
1315 tspace > dquot->dq_dqb.dqb_bhardlimit &&
1316 !ignore_hardlimit(dquot)) {
1317 if (flags & DQUOT_SPACE_WARN)
1318 prepare_warning(warn, dquot, QUOTA_NL_BHARDWARN);
1319 ret = -EDQUOT;
1320 goto finish;
1321 }
1322
1323 if (dquot->dq_dqb.dqb_bsoftlimit &&
1324 tspace > dquot->dq_dqb.dqb_bsoftlimit &&
1325 dquot->dq_dqb.dqb_btime &&
1326 ktime_get_real_seconds() >= dquot->dq_dqb.dqb_btime &&
1327 !ignore_hardlimit(dquot)) {
1328 if (flags & DQUOT_SPACE_WARN)
1329 prepare_warning(warn, dquot, QUOTA_NL_BSOFTLONGWARN);
1330 ret = -EDQUOT;
1331 goto finish;
1332 }
1333
1334 if (dquot->dq_dqb.dqb_bsoftlimit &&
1335 tspace > dquot->dq_dqb.dqb_bsoftlimit &&
1336 dquot->dq_dqb.dqb_btime == 0) {
1337 if (flags & DQUOT_SPACE_WARN) {
1338 prepare_warning(warn, dquot, QUOTA_NL_BSOFTWARN);
1339 dquot->dq_dqb.dqb_btime = ktime_get_real_seconds() +
1340 sb_dqopt(sb)->info[dquot->dq_id.type].dqi_bgrace;
1341 } else {
1342 /*
1343 * We don't allow preallocation to exceed softlimit so exceeding will
1344 * be always printed
1345 */
1346 ret = -EDQUOT;
1347 goto finish;
1348 }
1349 }
1350 finish:
1351 /*
1352 * We have to be careful and go through warning generation & grace time
1353 * setting even if DQUOT_SPACE_NOFAIL is set. That's why we check it
1354 * only here...
1355 */
1356 if (flags & DQUOT_SPACE_NOFAIL)
1357 ret = 0;
1358 if (!ret) {
1359 dquot->dq_dqb.dqb_rsvspace += rsv_space;
1360 dquot->dq_dqb.dqb_curspace += space;
1361 }
1362 spin_unlock(&dquot->dq_dqb_lock);
1363 return ret;
1364 }
1365
info_idq_free(struct dquot * dquot,qsize_t inodes)1366 static int info_idq_free(struct dquot *dquot, qsize_t inodes)
1367 {
1368 qsize_t newinodes;
1369
1370 if (test_bit(DQ_FAKE_B, &dquot->dq_flags) ||
1371 dquot->dq_dqb.dqb_curinodes <= dquot->dq_dqb.dqb_isoftlimit ||
1372 !sb_has_quota_limits_enabled(dquot->dq_sb, dquot->dq_id.type))
1373 return QUOTA_NL_NOWARN;
1374
1375 newinodes = dquot->dq_dqb.dqb_curinodes - inodes;
1376 if (newinodes <= dquot->dq_dqb.dqb_isoftlimit)
1377 return QUOTA_NL_ISOFTBELOW;
1378 if (dquot->dq_dqb.dqb_curinodes >= dquot->dq_dqb.dqb_ihardlimit &&
1379 newinodes < dquot->dq_dqb.dqb_ihardlimit)
1380 return QUOTA_NL_IHARDBELOW;
1381 return QUOTA_NL_NOWARN;
1382 }
1383
info_bdq_free(struct dquot * dquot,qsize_t space)1384 static int info_bdq_free(struct dquot *dquot, qsize_t space)
1385 {
1386 qsize_t tspace;
1387
1388 tspace = dquot->dq_dqb.dqb_curspace + dquot->dq_dqb.dqb_rsvspace;
1389
1390 if (test_bit(DQ_FAKE_B, &dquot->dq_flags) ||
1391 tspace <= dquot->dq_dqb.dqb_bsoftlimit)
1392 return QUOTA_NL_NOWARN;
1393
1394 if (tspace - space <= dquot->dq_dqb.dqb_bsoftlimit)
1395 return QUOTA_NL_BSOFTBELOW;
1396 if (tspace >= dquot->dq_dqb.dqb_bhardlimit &&
1397 tspace - space < dquot->dq_dqb.dqb_bhardlimit)
1398 return QUOTA_NL_BHARDBELOW;
1399 return QUOTA_NL_NOWARN;
1400 }
1401
dquot_active(const struct inode * inode)1402 static int dquot_active(const struct inode *inode)
1403 {
1404 struct super_block *sb = inode->i_sb;
1405
1406 if (IS_NOQUOTA(inode))
1407 return 0;
1408 return sb_any_quota_loaded(sb) & ~sb_any_quota_suspended(sb);
1409 }
1410
1411 /*
1412 * Initialize quota pointers in inode
1413 *
1414 * It is better to call this function outside of any transaction as it
1415 * might need a lot of space in journal for dquot structure allocation.
1416 */
__dquot_initialize(struct inode * inode,int type)1417 static int __dquot_initialize(struct inode *inode, int type)
1418 {
1419 int cnt, init_needed = 0;
1420 struct dquot **dquots, *got[MAXQUOTAS] = {};
1421 struct super_block *sb = inode->i_sb;
1422 qsize_t rsv;
1423 int ret = 0;
1424
1425 if (!dquot_active(inode))
1426 return 0;
1427
1428 dquots = i_dquot(inode);
1429
1430 /* First get references to structures we might need. */
1431 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1432 struct kqid qid;
1433 kprojid_t projid;
1434 int rc;
1435 struct dquot *dquot;
1436
1437 if (type != -1 && cnt != type)
1438 continue;
1439 /*
1440 * The i_dquot should have been initialized in most cases,
1441 * we check it without locking here to avoid unnecessary
1442 * dqget()/dqput() calls.
1443 */
1444 if (dquots[cnt])
1445 continue;
1446
1447 if (!sb_has_quota_active(sb, cnt))
1448 continue;
1449
1450 init_needed = 1;
1451
1452 switch (cnt) {
1453 case USRQUOTA:
1454 qid = make_kqid_uid(inode->i_uid);
1455 break;
1456 case GRPQUOTA:
1457 qid = make_kqid_gid(inode->i_gid);
1458 break;
1459 case PRJQUOTA:
1460 rc = inode->i_sb->dq_op->get_projid(inode, &projid);
1461 if (rc)
1462 continue;
1463 qid = make_kqid_projid(projid);
1464 break;
1465 }
1466 dquot = dqget(sb, qid);
1467 if (IS_ERR(dquot)) {
1468 /* We raced with somebody turning quotas off... */
1469 if (PTR_ERR(dquot) != -ESRCH) {
1470 ret = PTR_ERR(dquot);
1471 goto out_put;
1472 }
1473 dquot = NULL;
1474 }
1475 got[cnt] = dquot;
1476 }
1477
1478 /* All required i_dquot has been initialized */
1479 if (!init_needed)
1480 return 0;
1481
1482 spin_lock(&dq_data_lock);
1483 if (IS_NOQUOTA(inode))
1484 goto out_lock;
1485 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1486 if (type != -1 && cnt != type)
1487 continue;
1488 /* Avoid races with quotaoff() */
1489 if (!sb_has_quota_active(sb, cnt))
1490 continue;
1491 /* We could race with quotaon or dqget() could have failed */
1492 if (!got[cnt])
1493 continue;
1494 if (!dquots[cnt]) {
1495 dquots[cnt] = got[cnt];
1496 got[cnt] = NULL;
1497 /*
1498 * Make quota reservation system happy if someone
1499 * did a write before quota was turned on
1500 */
1501 rsv = inode_get_rsv_space(inode);
1502 if (unlikely(rsv)) {
1503 spin_lock(&inode->i_lock);
1504 /* Get reservation again under proper lock */
1505 rsv = __inode_get_rsv_space(inode);
1506 spin_lock(&dquots[cnt]->dq_dqb_lock);
1507 dquots[cnt]->dq_dqb.dqb_rsvspace += rsv;
1508 spin_unlock(&dquots[cnt]->dq_dqb_lock);
1509 spin_unlock(&inode->i_lock);
1510 }
1511 }
1512 }
1513 out_lock:
1514 spin_unlock(&dq_data_lock);
1515 out_put:
1516 /* Drop unused references */
1517 dqput_all(got);
1518
1519 return ret;
1520 }
1521
dquot_initialize(struct inode * inode)1522 int dquot_initialize(struct inode *inode)
1523 {
1524 return __dquot_initialize(inode, -1);
1525 }
1526 EXPORT_SYMBOL(dquot_initialize);
1527
dquot_initialize_needed(struct inode * inode)1528 bool dquot_initialize_needed(struct inode *inode)
1529 {
1530 struct dquot **dquots;
1531 int i;
1532
1533 if (!dquot_active(inode))
1534 return false;
1535
1536 dquots = i_dquot(inode);
1537 for (i = 0; i < MAXQUOTAS; i++)
1538 if (!dquots[i] && sb_has_quota_active(inode->i_sb, i))
1539 return true;
1540 return false;
1541 }
1542 EXPORT_SYMBOL(dquot_initialize_needed);
1543
1544 /*
1545 * Release all quotas referenced by inode.
1546 *
1547 * This function only be called on inode free or converting
1548 * a file to quota file, no other users for the i_dquot in
1549 * both cases, so we needn't call synchronize_srcu() after
1550 * clearing i_dquot.
1551 */
__dquot_drop(struct inode * inode)1552 static void __dquot_drop(struct inode *inode)
1553 {
1554 int cnt;
1555 struct dquot **dquots = i_dquot(inode);
1556 struct dquot *put[MAXQUOTAS];
1557
1558 spin_lock(&dq_data_lock);
1559 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1560 put[cnt] = dquots[cnt];
1561 dquots[cnt] = NULL;
1562 }
1563 spin_unlock(&dq_data_lock);
1564 dqput_all(put);
1565 }
1566
dquot_drop(struct inode * inode)1567 void dquot_drop(struct inode *inode)
1568 {
1569 struct dquot * const *dquots;
1570 int cnt;
1571
1572 if (IS_NOQUOTA(inode))
1573 return;
1574
1575 /*
1576 * Test before calling to rule out calls from proc and such
1577 * where we are not allowed to block. Note that this is
1578 * actually reliable test even without the lock - the caller
1579 * must assure that nobody can come after the DQUOT_DROP and
1580 * add quota pointers back anyway.
1581 */
1582 dquots = i_dquot(inode);
1583 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1584 if (dquots[cnt])
1585 break;
1586 }
1587
1588 if (cnt < MAXQUOTAS)
1589 __dquot_drop(inode);
1590 }
1591 EXPORT_SYMBOL(dquot_drop);
1592
1593 /*
1594 * inode_reserved_space is managed internally by quota, and protected by
1595 * i_lock similar to i_blocks+i_bytes.
1596 */
inode_reserved_space(struct inode * inode)1597 static qsize_t *inode_reserved_space(struct inode * inode)
1598 {
1599 /* Filesystem must explicitly define it's own method in order to use
1600 * quota reservation interface */
1601 BUG_ON(!inode->i_sb->dq_op->get_reserved_space);
1602 return inode->i_sb->dq_op->get_reserved_space(inode);
1603 }
1604
__inode_get_rsv_space(struct inode * inode)1605 static qsize_t __inode_get_rsv_space(struct inode *inode)
1606 {
1607 if (!inode->i_sb->dq_op->get_reserved_space)
1608 return 0;
1609 return *inode_reserved_space(inode);
1610 }
1611
inode_get_rsv_space(struct inode * inode)1612 static qsize_t inode_get_rsv_space(struct inode *inode)
1613 {
1614 qsize_t ret;
1615
1616 if (!inode->i_sb->dq_op->get_reserved_space)
1617 return 0;
1618 spin_lock(&inode->i_lock);
1619 ret = __inode_get_rsv_space(inode);
1620 spin_unlock(&inode->i_lock);
1621 return ret;
1622 }
1623
1624 /*
1625 * This functions updates i_blocks+i_bytes fields and quota information
1626 * (together with appropriate checks).
1627 *
1628 * NOTE: We absolutely rely on the fact that caller dirties the inode
1629 * (usually helpers in quotaops.h care about this) and holds a handle for
1630 * the current transaction so that dquot write and inode write go into the
1631 * same transaction.
1632 */
1633
1634 /*
1635 * This operation can block, but only after everything is updated
1636 */
__dquot_alloc_space(struct inode * inode,qsize_t number,int flags)1637 int __dquot_alloc_space(struct inode *inode, qsize_t number, int flags)
1638 {
1639 int cnt, ret = 0, index;
1640 struct dquot_warn warn[MAXQUOTAS];
1641 int reserve = flags & DQUOT_SPACE_RESERVE;
1642 struct dquot **dquots;
1643
1644 if (!dquot_active(inode)) {
1645 if (reserve) {
1646 spin_lock(&inode->i_lock);
1647 *inode_reserved_space(inode) += number;
1648 spin_unlock(&inode->i_lock);
1649 } else {
1650 inode_add_bytes(inode, number);
1651 }
1652 goto out;
1653 }
1654
1655 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1656 warn[cnt].w_type = QUOTA_NL_NOWARN;
1657
1658 dquots = i_dquot(inode);
1659 index = srcu_read_lock(&dquot_srcu);
1660 spin_lock(&inode->i_lock);
1661 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1662 if (!dquots[cnt])
1663 continue;
1664 if (flags & DQUOT_SPACE_RESERVE) {
1665 ret = dquot_add_space(dquots[cnt], 0, number, flags,
1666 &warn[cnt]);
1667 } else {
1668 ret = dquot_add_space(dquots[cnt], number, 0, flags,
1669 &warn[cnt]);
1670 }
1671 if (ret) {
1672 /* Back out changes we already did */
1673 for (cnt--; cnt >= 0; cnt--) {
1674 if (!dquots[cnt])
1675 continue;
1676 spin_lock(&dquots[cnt]->dq_dqb_lock);
1677 if (flags & DQUOT_SPACE_RESERVE) {
1678 dquots[cnt]->dq_dqb.dqb_rsvspace -=
1679 number;
1680 } else {
1681 dquots[cnt]->dq_dqb.dqb_curspace -=
1682 number;
1683 }
1684 spin_unlock(&dquots[cnt]->dq_dqb_lock);
1685 }
1686 spin_unlock(&inode->i_lock);
1687 goto out_flush_warn;
1688 }
1689 }
1690 if (reserve)
1691 *inode_reserved_space(inode) += number;
1692 else
1693 __inode_add_bytes(inode, number);
1694 spin_unlock(&inode->i_lock);
1695
1696 if (reserve)
1697 goto out_flush_warn;
1698 mark_all_dquot_dirty(dquots);
1699 out_flush_warn:
1700 srcu_read_unlock(&dquot_srcu, index);
1701 flush_warnings(warn);
1702 out:
1703 return ret;
1704 }
1705 EXPORT_SYMBOL(__dquot_alloc_space);
1706
1707 /*
1708 * This operation can block, but only after everything is updated
1709 */
dquot_alloc_inode(struct inode * inode)1710 int dquot_alloc_inode(struct inode *inode)
1711 {
1712 int cnt, ret = 0, index;
1713 struct dquot_warn warn[MAXQUOTAS];
1714 struct dquot * const *dquots;
1715
1716 if (!dquot_active(inode))
1717 return 0;
1718 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
1719 warn[cnt].w_type = QUOTA_NL_NOWARN;
1720
1721 dquots = i_dquot(inode);
1722 index = srcu_read_lock(&dquot_srcu);
1723 spin_lock(&inode->i_lock);
1724 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1725 if (!dquots[cnt])
1726 continue;
1727 ret = dquot_add_inodes(dquots[cnt], 1, &warn[cnt]);
1728 if (ret) {
1729 for (cnt--; cnt >= 0; cnt--) {
1730 if (!dquots[cnt])
1731 continue;
1732 /* Back out changes we already did */
1733 spin_lock(&dquots[cnt]->dq_dqb_lock);
1734 dquots[cnt]->dq_dqb.dqb_curinodes--;
1735 spin_unlock(&dquots[cnt]->dq_dqb_lock);
1736 }
1737 goto warn_put_all;
1738 }
1739 }
1740
1741 warn_put_all:
1742 spin_unlock(&inode->i_lock);
1743 if (ret == 0)
1744 mark_all_dquot_dirty(dquots);
1745 srcu_read_unlock(&dquot_srcu, index);
1746 flush_warnings(warn);
1747 return ret;
1748 }
1749 EXPORT_SYMBOL(dquot_alloc_inode);
1750
1751 /*
1752 * Convert in-memory reserved quotas to real consumed quotas
1753 */
dquot_claim_space_nodirty(struct inode * inode,qsize_t number)1754 int dquot_claim_space_nodirty(struct inode *inode, qsize_t number)
1755 {
1756 struct dquot **dquots;
1757 int cnt, index;
1758
1759 if (!dquot_active(inode)) {
1760 spin_lock(&inode->i_lock);
1761 *inode_reserved_space(inode) -= number;
1762 __inode_add_bytes(inode, number);
1763 spin_unlock(&inode->i_lock);
1764 return 0;
1765 }
1766
1767 dquots = i_dquot(inode);
1768 index = srcu_read_lock(&dquot_srcu);
1769 spin_lock(&inode->i_lock);
1770 /* Claim reserved quotas to allocated quotas */
1771 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1772 if (dquots[cnt]) {
1773 struct dquot *dquot = dquots[cnt];
1774
1775 spin_lock(&dquot->dq_dqb_lock);
1776 if (WARN_ON_ONCE(dquot->dq_dqb.dqb_rsvspace < number))
1777 number = dquot->dq_dqb.dqb_rsvspace;
1778 dquot->dq_dqb.dqb_curspace += number;
1779 dquot->dq_dqb.dqb_rsvspace -= number;
1780 spin_unlock(&dquot->dq_dqb_lock);
1781 }
1782 }
1783 /* Update inode bytes */
1784 *inode_reserved_space(inode) -= number;
1785 __inode_add_bytes(inode, number);
1786 spin_unlock(&inode->i_lock);
1787 mark_all_dquot_dirty(dquots);
1788 srcu_read_unlock(&dquot_srcu, index);
1789 return 0;
1790 }
1791 EXPORT_SYMBOL(dquot_claim_space_nodirty);
1792
1793 /*
1794 * Convert allocated space back to in-memory reserved quotas
1795 */
dquot_reclaim_space_nodirty(struct inode * inode,qsize_t number)1796 void dquot_reclaim_space_nodirty(struct inode *inode, qsize_t number)
1797 {
1798 struct dquot **dquots;
1799 int cnt, index;
1800
1801 if (!dquot_active(inode)) {
1802 spin_lock(&inode->i_lock);
1803 *inode_reserved_space(inode) += number;
1804 __inode_sub_bytes(inode, number);
1805 spin_unlock(&inode->i_lock);
1806 return;
1807 }
1808
1809 dquots = i_dquot(inode);
1810 index = srcu_read_lock(&dquot_srcu);
1811 spin_lock(&inode->i_lock);
1812 /* Claim reserved quotas to allocated quotas */
1813 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1814 if (dquots[cnt]) {
1815 struct dquot *dquot = dquots[cnt];
1816
1817 spin_lock(&dquot->dq_dqb_lock);
1818 if (WARN_ON_ONCE(dquot->dq_dqb.dqb_curspace < number))
1819 number = dquot->dq_dqb.dqb_curspace;
1820 dquot->dq_dqb.dqb_rsvspace += number;
1821 dquot->dq_dqb.dqb_curspace -= number;
1822 spin_unlock(&dquot->dq_dqb_lock);
1823 }
1824 }
1825 /* Update inode bytes */
1826 *inode_reserved_space(inode) += number;
1827 __inode_sub_bytes(inode, number);
1828 spin_unlock(&inode->i_lock);
1829 mark_all_dquot_dirty(dquots);
1830 srcu_read_unlock(&dquot_srcu, index);
1831 return;
1832 }
1833 EXPORT_SYMBOL(dquot_reclaim_space_nodirty);
1834
1835 /*
1836 * This operation can block, but only after everything is updated
1837 */
__dquot_free_space(struct inode * inode,qsize_t number,int flags)1838 void __dquot_free_space(struct inode *inode, qsize_t number, int flags)
1839 {
1840 unsigned int cnt;
1841 struct dquot_warn warn[MAXQUOTAS];
1842 struct dquot **dquots;
1843 int reserve = flags & DQUOT_SPACE_RESERVE, index;
1844
1845 if (!dquot_active(inode)) {
1846 if (reserve) {
1847 spin_lock(&inode->i_lock);
1848 *inode_reserved_space(inode) -= number;
1849 spin_unlock(&inode->i_lock);
1850 } else {
1851 inode_sub_bytes(inode, number);
1852 }
1853 return;
1854 }
1855
1856 dquots = i_dquot(inode);
1857 index = srcu_read_lock(&dquot_srcu);
1858 spin_lock(&inode->i_lock);
1859 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1860 int wtype;
1861
1862 warn[cnt].w_type = QUOTA_NL_NOWARN;
1863 if (!dquots[cnt])
1864 continue;
1865 spin_lock(&dquots[cnt]->dq_dqb_lock);
1866 wtype = info_bdq_free(dquots[cnt], number);
1867 if (wtype != QUOTA_NL_NOWARN)
1868 prepare_warning(&warn[cnt], dquots[cnt], wtype);
1869 if (reserve)
1870 dquot_free_reserved_space(dquots[cnt], number);
1871 else
1872 dquot_decr_space(dquots[cnt], number);
1873 spin_unlock(&dquots[cnt]->dq_dqb_lock);
1874 }
1875 if (reserve)
1876 *inode_reserved_space(inode) -= number;
1877 else
1878 __inode_sub_bytes(inode, number);
1879 spin_unlock(&inode->i_lock);
1880
1881 if (reserve)
1882 goto out_unlock;
1883 mark_all_dquot_dirty(dquots);
1884 out_unlock:
1885 srcu_read_unlock(&dquot_srcu, index);
1886 flush_warnings(warn);
1887 }
1888 EXPORT_SYMBOL(__dquot_free_space);
1889
1890 /*
1891 * This operation can block, but only after everything is updated
1892 */
dquot_free_inode(struct inode * inode)1893 void dquot_free_inode(struct inode *inode)
1894 {
1895 unsigned int cnt;
1896 struct dquot_warn warn[MAXQUOTAS];
1897 struct dquot * const *dquots;
1898 int index;
1899
1900 if (!dquot_active(inode))
1901 return;
1902
1903 dquots = i_dquot(inode);
1904 index = srcu_read_lock(&dquot_srcu);
1905 spin_lock(&inode->i_lock);
1906 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1907 int wtype;
1908
1909 warn[cnt].w_type = QUOTA_NL_NOWARN;
1910 if (!dquots[cnt])
1911 continue;
1912 spin_lock(&dquots[cnt]->dq_dqb_lock);
1913 wtype = info_idq_free(dquots[cnt], 1);
1914 if (wtype != QUOTA_NL_NOWARN)
1915 prepare_warning(&warn[cnt], dquots[cnt], wtype);
1916 dquot_decr_inodes(dquots[cnt], 1);
1917 spin_unlock(&dquots[cnt]->dq_dqb_lock);
1918 }
1919 spin_unlock(&inode->i_lock);
1920 mark_all_dquot_dirty(dquots);
1921 srcu_read_unlock(&dquot_srcu, index);
1922 flush_warnings(warn);
1923 }
1924 EXPORT_SYMBOL(dquot_free_inode);
1925
1926 /*
1927 * Transfer the number of inode and blocks from one diskquota to an other.
1928 * On success, dquot references in transfer_to are consumed and references
1929 * to original dquots that need to be released are placed there. On failure,
1930 * references are kept untouched.
1931 *
1932 * This operation can block, but only after everything is updated
1933 * A transaction must be started when entering this function.
1934 *
1935 * We are holding reference on transfer_from & transfer_to, no need to
1936 * protect them by srcu_read_lock().
1937 */
__dquot_transfer(struct inode * inode,struct dquot ** transfer_to)1938 int __dquot_transfer(struct inode *inode, struct dquot **transfer_to)
1939 {
1940 qsize_t cur_space;
1941 qsize_t rsv_space = 0;
1942 qsize_t inode_usage = 1;
1943 struct dquot *transfer_from[MAXQUOTAS] = {};
1944 int cnt, ret = 0;
1945 char is_valid[MAXQUOTAS] = {};
1946 struct dquot_warn warn_to[MAXQUOTAS];
1947 struct dquot_warn warn_from_inodes[MAXQUOTAS];
1948 struct dquot_warn warn_from_space[MAXQUOTAS];
1949
1950 if (IS_NOQUOTA(inode))
1951 return 0;
1952
1953 if (inode->i_sb->dq_op->get_inode_usage) {
1954 ret = inode->i_sb->dq_op->get_inode_usage(inode, &inode_usage);
1955 if (ret)
1956 return ret;
1957 }
1958
1959 /* Initialize the arrays */
1960 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1961 warn_to[cnt].w_type = QUOTA_NL_NOWARN;
1962 warn_from_inodes[cnt].w_type = QUOTA_NL_NOWARN;
1963 warn_from_space[cnt].w_type = QUOTA_NL_NOWARN;
1964 }
1965
1966 spin_lock(&dq_data_lock);
1967 spin_lock(&inode->i_lock);
1968 if (IS_NOQUOTA(inode)) { /* File without quota accounting? */
1969 spin_unlock(&inode->i_lock);
1970 spin_unlock(&dq_data_lock);
1971 return 0;
1972 }
1973 cur_space = __inode_get_bytes(inode);
1974 rsv_space = __inode_get_rsv_space(inode);
1975 /*
1976 * Build the transfer_from list, check limits, and update usage in
1977 * the target structures.
1978 */
1979 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
1980 /*
1981 * Skip changes for same uid or gid or for turned off quota-type.
1982 */
1983 if (!transfer_to[cnt])
1984 continue;
1985 /* Avoid races with quotaoff() */
1986 if (!sb_has_quota_active(inode->i_sb, cnt))
1987 continue;
1988 is_valid[cnt] = 1;
1989 transfer_from[cnt] = i_dquot(inode)[cnt];
1990 ret = dquot_add_inodes(transfer_to[cnt], inode_usage,
1991 &warn_to[cnt]);
1992 if (ret)
1993 goto over_quota;
1994 ret = dquot_add_space(transfer_to[cnt], cur_space, rsv_space,
1995 DQUOT_SPACE_WARN, &warn_to[cnt]);
1996 if (ret) {
1997 spin_lock(&transfer_to[cnt]->dq_dqb_lock);
1998 dquot_decr_inodes(transfer_to[cnt], inode_usage);
1999 spin_unlock(&transfer_to[cnt]->dq_dqb_lock);
2000 goto over_quota;
2001 }
2002 }
2003
2004 /* Decrease usage for source structures and update quota pointers */
2005 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
2006 if (!is_valid[cnt])
2007 continue;
2008 /* Due to IO error we might not have transfer_from[] structure */
2009 if (transfer_from[cnt]) {
2010 int wtype;
2011
2012 spin_lock(&transfer_from[cnt]->dq_dqb_lock);
2013 wtype = info_idq_free(transfer_from[cnt], inode_usage);
2014 if (wtype != QUOTA_NL_NOWARN)
2015 prepare_warning(&warn_from_inodes[cnt],
2016 transfer_from[cnt], wtype);
2017 wtype = info_bdq_free(transfer_from[cnt],
2018 cur_space + rsv_space);
2019 if (wtype != QUOTA_NL_NOWARN)
2020 prepare_warning(&warn_from_space[cnt],
2021 transfer_from[cnt], wtype);
2022 dquot_decr_inodes(transfer_from[cnt], inode_usage);
2023 dquot_decr_space(transfer_from[cnt], cur_space);
2024 dquot_free_reserved_space(transfer_from[cnt],
2025 rsv_space);
2026 spin_unlock(&transfer_from[cnt]->dq_dqb_lock);
2027 }
2028 i_dquot(inode)[cnt] = transfer_to[cnt];
2029 }
2030 spin_unlock(&inode->i_lock);
2031 spin_unlock(&dq_data_lock);
2032
2033 mark_all_dquot_dirty(transfer_from);
2034 mark_all_dquot_dirty(transfer_to);
2035 flush_warnings(warn_to);
2036 flush_warnings(warn_from_inodes);
2037 flush_warnings(warn_from_space);
2038 /* Pass back references to put */
2039 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
2040 if (is_valid[cnt])
2041 transfer_to[cnt] = transfer_from[cnt];
2042 return 0;
2043 over_quota:
2044 /* Back out changes we already did */
2045 for (cnt--; cnt >= 0; cnt--) {
2046 if (!is_valid[cnt])
2047 continue;
2048 spin_lock(&transfer_to[cnt]->dq_dqb_lock);
2049 dquot_decr_inodes(transfer_to[cnt], inode_usage);
2050 dquot_decr_space(transfer_to[cnt], cur_space);
2051 dquot_free_reserved_space(transfer_to[cnt], rsv_space);
2052 spin_unlock(&transfer_to[cnt]->dq_dqb_lock);
2053 }
2054 spin_unlock(&inode->i_lock);
2055 spin_unlock(&dq_data_lock);
2056 flush_warnings(warn_to);
2057 return ret;
2058 }
2059 EXPORT_SYMBOL(__dquot_transfer);
2060
2061 /* Wrapper for transferring ownership of an inode for uid/gid only
2062 * Called from FSXXX_setattr()
2063 */
dquot_transfer(struct inode * inode,struct iattr * iattr)2064 int dquot_transfer(struct inode *inode, struct iattr *iattr)
2065 {
2066 struct dquot *transfer_to[MAXQUOTAS] = {};
2067 struct dquot *dquot;
2068 struct super_block *sb = inode->i_sb;
2069 int ret;
2070
2071 if (!dquot_active(inode))
2072 return 0;
2073
2074 if (iattr->ia_valid & ATTR_UID && !uid_eq(iattr->ia_uid, inode->i_uid)){
2075 dquot = dqget(sb, make_kqid_uid(iattr->ia_uid));
2076 if (IS_ERR(dquot)) {
2077 if (PTR_ERR(dquot) != -ESRCH) {
2078 ret = PTR_ERR(dquot);
2079 goto out_put;
2080 }
2081 dquot = NULL;
2082 }
2083 transfer_to[USRQUOTA] = dquot;
2084 }
2085 if (iattr->ia_valid & ATTR_GID && !gid_eq(iattr->ia_gid, inode->i_gid)){
2086 dquot = dqget(sb, make_kqid_gid(iattr->ia_gid));
2087 if (IS_ERR(dquot)) {
2088 if (PTR_ERR(dquot) != -ESRCH) {
2089 ret = PTR_ERR(dquot);
2090 goto out_put;
2091 }
2092 dquot = NULL;
2093 }
2094 transfer_to[GRPQUOTA] = dquot;
2095 }
2096 ret = __dquot_transfer(inode, transfer_to);
2097 out_put:
2098 dqput_all(transfer_to);
2099 return ret;
2100 }
2101 EXPORT_SYMBOL(dquot_transfer);
2102
2103 /*
2104 * Write info of quota file to disk
2105 */
dquot_commit_info(struct super_block * sb,int type)2106 int dquot_commit_info(struct super_block *sb, int type)
2107 {
2108 struct quota_info *dqopt = sb_dqopt(sb);
2109
2110 return dqopt->ops[type]->write_file_info(sb, type);
2111 }
2112 EXPORT_SYMBOL(dquot_commit_info);
2113
dquot_get_next_id(struct super_block * sb,struct kqid * qid)2114 int dquot_get_next_id(struct super_block *sb, struct kqid *qid)
2115 {
2116 struct quota_info *dqopt = sb_dqopt(sb);
2117
2118 if (!sb_has_quota_active(sb, qid->type))
2119 return -ESRCH;
2120 if (!dqopt->ops[qid->type]->get_next_id)
2121 return -ENOSYS;
2122 return dqopt->ops[qid->type]->get_next_id(sb, qid);
2123 }
2124 EXPORT_SYMBOL(dquot_get_next_id);
2125
2126 /*
2127 * Definitions of diskquota operations.
2128 */
2129 const struct dquot_operations dquot_operations = {
2130 .write_dquot = dquot_commit,
2131 .acquire_dquot = dquot_acquire,
2132 .release_dquot = dquot_release,
2133 .mark_dirty = dquot_mark_dquot_dirty,
2134 .write_info = dquot_commit_info,
2135 .alloc_dquot = dquot_alloc,
2136 .destroy_dquot = dquot_destroy,
2137 .get_next_id = dquot_get_next_id,
2138 };
2139 EXPORT_SYMBOL(dquot_operations);
2140
2141 /*
2142 * Generic helper for ->open on filesystems supporting disk quotas.
2143 */
dquot_file_open(struct inode * inode,struct file * file)2144 int dquot_file_open(struct inode *inode, struct file *file)
2145 {
2146 int error;
2147
2148 error = generic_file_open(inode, file);
2149 if (!error && (file->f_mode & FMODE_WRITE))
2150 dquot_initialize(inode);
2151 return error;
2152 }
2153 EXPORT_SYMBOL(dquot_file_open);
2154
2155 /*
2156 * Turn quota off on a device. type == -1 ==> quotaoff for all types (umount)
2157 */
dquot_disable(struct super_block * sb,int type,unsigned int flags)2158 int dquot_disable(struct super_block *sb, int type, unsigned int flags)
2159 {
2160 int cnt, ret = 0;
2161 struct quota_info *dqopt = sb_dqopt(sb);
2162 struct inode *toputinode[MAXQUOTAS];
2163
2164 /* s_umount should be held in exclusive mode */
2165 if (WARN_ON_ONCE(down_read_trylock(&sb->s_umount)))
2166 up_read(&sb->s_umount);
2167
2168 /* Cannot turn off usage accounting without turning off limits, or
2169 * suspend quotas and simultaneously turn quotas off. */
2170 if ((flags & DQUOT_USAGE_ENABLED && !(flags & DQUOT_LIMITS_ENABLED))
2171 || (flags & DQUOT_SUSPENDED && flags & (DQUOT_LIMITS_ENABLED |
2172 DQUOT_USAGE_ENABLED)))
2173 return -EINVAL;
2174
2175 /*
2176 * Skip everything if there's nothing to do. We have to do this because
2177 * sometimes we are called when fill_super() failed and calling
2178 * sync_fs() in such cases does no good.
2179 */
2180 if (!sb_any_quota_loaded(sb))
2181 return 0;
2182
2183 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
2184 toputinode[cnt] = NULL;
2185 if (type != -1 && cnt != type)
2186 continue;
2187 if (!sb_has_quota_loaded(sb, cnt))
2188 continue;
2189
2190 if (flags & DQUOT_SUSPENDED) {
2191 spin_lock(&dq_state_lock);
2192 dqopt->flags |=
2193 dquot_state_flag(DQUOT_SUSPENDED, cnt);
2194 spin_unlock(&dq_state_lock);
2195 } else {
2196 spin_lock(&dq_state_lock);
2197 dqopt->flags &= ~dquot_state_flag(flags, cnt);
2198 /* Turning off suspended quotas? */
2199 if (!sb_has_quota_loaded(sb, cnt) &&
2200 sb_has_quota_suspended(sb, cnt)) {
2201 dqopt->flags &= ~dquot_state_flag(
2202 DQUOT_SUSPENDED, cnt);
2203 spin_unlock(&dq_state_lock);
2204 iput(dqopt->files[cnt]);
2205 dqopt->files[cnt] = NULL;
2206 continue;
2207 }
2208 spin_unlock(&dq_state_lock);
2209 }
2210
2211 /* We still have to keep quota loaded? */
2212 if (sb_has_quota_loaded(sb, cnt) && !(flags & DQUOT_SUSPENDED))
2213 continue;
2214
2215 /* Note: these are blocking operations */
2216 drop_dquot_ref(sb, cnt);
2217 invalidate_dquots(sb, cnt);
2218 /*
2219 * Now all dquots should be invalidated, all writes done so we
2220 * should be only users of the info. No locks needed.
2221 */
2222 if (info_dirty(&dqopt->info[cnt]))
2223 sb->dq_op->write_info(sb, cnt);
2224 if (dqopt->ops[cnt]->free_file_info)
2225 dqopt->ops[cnt]->free_file_info(sb, cnt);
2226 put_quota_format(dqopt->info[cnt].dqi_format);
2227
2228 toputinode[cnt] = dqopt->files[cnt];
2229 if (!sb_has_quota_loaded(sb, cnt))
2230 dqopt->files[cnt] = NULL;
2231 dqopt->info[cnt].dqi_flags = 0;
2232 dqopt->info[cnt].dqi_igrace = 0;
2233 dqopt->info[cnt].dqi_bgrace = 0;
2234 dqopt->ops[cnt] = NULL;
2235 }
2236
2237 /* Skip syncing and setting flags if quota files are hidden */
2238 if (dqopt->flags & DQUOT_QUOTA_SYS_FILE)
2239 goto put_inodes;
2240
2241 /* Sync the superblock so that buffers with quota data are written to
2242 * disk (and so userspace sees correct data afterwards). */
2243 if (sb->s_op->sync_fs)
2244 sb->s_op->sync_fs(sb, 1);
2245 sync_blockdev(sb->s_bdev);
2246 /* Now the quota files are just ordinary files and we can set the
2247 * inode flags back. Moreover we discard the pagecache so that
2248 * userspace sees the writes we did bypassing the pagecache. We
2249 * must also discard the blockdev buffers so that we see the
2250 * changes done by userspace on the next quotaon() */
2251 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
2252 /* This can happen when suspending quotas on remount-ro... */
2253 if (toputinode[cnt] && !sb_has_quota_loaded(sb, cnt)) {
2254 inode_lock(toputinode[cnt]);
2255 toputinode[cnt]->i_flags &= ~S_NOQUOTA;
2256 truncate_inode_pages(&toputinode[cnt]->i_data, 0);
2257 inode_unlock(toputinode[cnt]);
2258 mark_inode_dirty_sync(toputinode[cnt]);
2259 }
2260 if (sb->s_bdev)
2261 invalidate_bdev(sb->s_bdev);
2262 put_inodes:
2263 for (cnt = 0; cnt < MAXQUOTAS; cnt++)
2264 if (toputinode[cnt]) {
2265 /* On remount RO, we keep the inode pointer so that we
2266 * can reenable quota on the subsequent remount RW. We
2267 * have to check 'flags' variable and not use sb_has_
2268 * function because another quotaon / quotaoff could
2269 * change global state before we got here. We refuse
2270 * to suspend quotas when there is pending delete on
2271 * the quota file... */
2272 if (!(flags & DQUOT_SUSPENDED))
2273 iput(toputinode[cnt]);
2274 else if (!toputinode[cnt]->i_nlink)
2275 ret = -EBUSY;
2276 }
2277 return ret;
2278 }
2279 EXPORT_SYMBOL(dquot_disable);
2280
dquot_quota_off(struct super_block * sb,int type)2281 int dquot_quota_off(struct super_block *sb, int type)
2282 {
2283 return dquot_disable(sb, type,
2284 DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
2285 }
2286 EXPORT_SYMBOL(dquot_quota_off);
2287
2288 /*
2289 * Turn quotas on on a device
2290 */
2291
2292 /*
2293 * Helper function to turn quotas on when we already have the inode of
2294 * quota file and no quota information is loaded.
2295 */
vfs_load_quota_inode(struct inode * inode,int type,int format_id,unsigned int flags)2296 static int vfs_load_quota_inode(struct inode *inode, int type, int format_id,
2297 unsigned int flags)
2298 {
2299 struct quota_format_type *fmt = find_quota_format(format_id);
2300 struct super_block *sb = inode->i_sb;
2301 struct quota_info *dqopt = sb_dqopt(sb);
2302 int error;
2303
2304 if (!fmt)
2305 return -ESRCH;
2306 if (!S_ISREG(inode->i_mode)) {
2307 error = -EACCES;
2308 goto out_fmt;
2309 }
2310 if (IS_RDONLY(inode)) {
2311 error = -EROFS;
2312 goto out_fmt;
2313 }
2314 if (!sb->s_op->quota_write || !sb->s_op->quota_read ||
2315 (type == PRJQUOTA && sb->dq_op->get_projid == NULL)) {
2316 error = -EINVAL;
2317 goto out_fmt;
2318 }
2319 /* Filesystems outside of init_user_ns not yet supported */
2320 if (sb->s_user_ns != &init_user_ns) {
2321 error = -EINVAL;
2322 goto out_fmt;
2323 }
2324 /* Usage always has to be set... */
2325 if (!(flags & DQUOT_USAGE_ENABLED)) {
2326 error = -EINVAL;
2327 goto out_fmt;
2328 }
2329 if (sb_has_quota_loaded(sb, type)) {
2330 error = -EBUSY;
2331 goto out_fmt;
2332 }
2333
2334 if (!(dqopt->flags & DQUOT_QUOTA_SYS_FILE)) {
2335 /* As we bypass the pagecache we must now flush all the
2336 * dirty data and invalidate caches so that kernel sees
2337 * changes from userspace. It is not enough to just flush
2338 * the quota file since if blocksize < pagesize, invalidation
2339 * of the cache could fail because of other unrelated dirty
2340 * data */
2341 sync_filesystem(sb);
2342 invalidate_bdev(sb->s_bdev);
2343 }
2344
2345 if (!(dqopt->flags & DQUOT_QUOTA_SYS_FILE)) {
2346 /* We don't want quota and atime on quota files (deadlocks
2347 * possible) Also nobody should write to the file - we use
2348 * special IO operations which ignore the immutable bit. */
2349 inode_lock(inode);
2350 inode->i_flags |= S_NOQUOTA;
2351 inode_unlock(inode);
2352 /*
2353 * When S_NOQUOTA is set, remove dquot references as no more
2354 * references can be added
2355 */
2356 __dquot_drop(inode);
2357 }
2358
2359 error = -EIO;
2360 dqopt->files[type] = igrab(inode);
2361 if (!dqopt->files[type])
2362 goto out_file_flags;
2363 error = -EINVAL;
2364 if (!fmt->qf_ops->check_quota_file(sb, type))
2365 goto out_file_init;
2366
2367 dqopt->ops[type] = fmt->qf_ops;
2368 dqopt->info[type].dqi_format = fmt;
2369 dqopt->info[type].dqi_fmt_id = format_id;
2370 INIT_LIST_HEAD(&dqopt->info[type].dqi_dirty_list);
2371 error = dqopt->ops[type]->read_file_info(sb, type);
2372 if (error < 0)
2373 goto out_file_init;
2374 if (dqopt->flags & DQUOT_QUOTA_SYS_FILE) {
2375 spin_lock(&dq_data_lock);
2376 dqopt->info[type].dqi_flags |= DQF_SYS_FILE;
2377 spin_unlock(&dq_data_lock);
2378 }
2379 spin_lock(&dq_state_lock);
2380 dqopt->flags |= dquot_state_flag(flags, type);
2381 spin_unlock(&dq_state_lock);
2382
2383 error = add_dquot_ref(sb, type);
2384 if (error)
2385 dquot_disable(sb, type, flags);
2386
2387 return error;
2388 out_file_init:
2389 dqopt->files[type] = NULL;
2390 iput(inode);
2391 out_file_flags:
2392 inode_lock(inode);
2393 inode->i_flags &= ~S_NOQUOTA;
2394 inode_unlock(inode);
2395 out_fmt:
2396 put_quota_format(fmt);
2397
2398 return error;
2399 }
2400
2401 /* Reenable quotas on remount RW */
dquot_resume(struct super_block * sb,int type)2402 int dquot_resume(struct super_block *sb, int type)
2403 {
2404 struct quota_info *dqopt = sb_dqopt(sb);
2405 struct inode *inode;
2406 int ret = 0, cnt;
2407 unsigned int flags;
2408
2409 /* s_umount should be held in exclusive mode */
2410 if (WARN_ON_ONCE(down_read_trylock(&sb->s_umount)))
2411 up_read(&sb->s_umount);
2412
2413 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
2414 if (type != -1 && cnt != type)
2415 continue;
2416 if (!sb_has_quota_suspended(sb, cnt))
2417 continue;
2418
2419 inode = dqopt->files[cnt];
2420 dqopt->files[cnt] = NULL;
2421 spin_lock(&dq_state_lock);
2422 flags = dqopt->flags & dquot_state_flag(DQUOT_USAGE_ENABLED |
2423 DQUOT_LIMITS_ENABLED,
2424 cnt);
2425 dqopt->flags &= ~dquot_state_flag(DQUOT_STATE_FLAGS, cnt);
2426 spin_unlock(&dq_state_lock);
2427
2428 flags = dquot_generic_flag(flags, cnt);
2429 ret = vfs_load_quota_inode(inode, cnt,
2430 dqopt->info[cnt].dqi_fmt_id, flags);
2431 iput(inode);
2432 }
2433
2434 return ret;
2435 }
2436 EXPORT_SYMBOL(dquot_resume);
2437
dquot_quota_on(struct super_block * sb,int type,int format_id,const struct path * path)2438 int dquot_quota_on(struct super_block *sb, int type, int format_id,
2439 const struct path *path)
2440 {
2441 int error = security_quota_on(path->dentry);
2442 if (error)
2443 return error;
2444 /* Quota file not on the same filesystem? */
2445 if (path->dentry->d_sb != sb)
2446 error = -EXDEV;
2447 else
2448 error = vfs_load_quota_inode(d_inode(path->dentry), type,
2449 format_id, DQUOT_USAGE_ENABLED |
2450 DQUOT_LIMITS_ENABLED);
2451 return error;
2452 }
2453 EXPORT_SYMBOL(dquot_quota_on);
2454
2455 /*
2456 * More powerful function for turning on quotas allowing setting
2457 * of individual quota flags
2458 */
dquot_enable(struct inode * inode,int type,int format_id,unsigned int flags)2459 int dquot_enable(struct inode *inode, int type, int format_id,
2460 unsigned int flags)
2461 {
2462 struct super_block *sb = inode->i_sb;
2463
2464 /* Just unsuspend quotas? */
2465 BUG_ON(flags & DQUOT_SUSPENDED);
2466 /* s_umount should be held in exclusive mode */
2467 if (WARN_ON_ONCE(down_read_trylock(&sb->s_umount)))
2468 up_read(&sb->s_umount);
2469
2470 if (!flags)
2471 return 0;
2472 /* Just updating flags needed? */
2473 if (sb_has_quota_loaded(sb, type)) {
2474 if (flags & DQUOT_USAGE_ENABLED &&
2475 sb_has_quota_usage_enabled(sb, type))
2476 return -EBUSY;
2477 if (flags & DQUOT_LIMITS_ENABLED &&
2478 sb_has_quota_limits_enabled(sb, type))
2479 return -EBUSY;
2480 spin_lock(&dq_state_lock);
2481 sb_dqopt(sb)->flags |= dquot_state_flag(flags, type);
2482 spin_unlock(&dq_state_lock);
2483 return 0;
2484 }
2485
2486 return vfs_load_quota_inode(inode, type, format_id, flags);
2487 }
2488 EXPORT_SYMBOL(dquot_enable);
2489
2490 /*
2491 * This function is used when filesystem needs to initialize quotas
2492 * during mount time.
2493 */
dquot_quota_on_mount(struct super_block * sb,char * qf_name,int format_id,int type)2494 int dquot_quota_on_mount(struct super_block *sb, char *qf_name,
2495 int format_id, int type)
2496 {
2497 struct dentry *dentry;
2498 int error;
2499
2500 dentry = lookup_one_len_unlocked(qf_name, sb->s_root, strlen(qf_name));
2501 if (IS_ERR(dentry))
2502 return PTR_ERR(dentry);
2503
2504 if (d_really_is_negative(dentry)) {
2505 error = -ENOENT;
2506 goto out;
2507 }
2508
2509 error = security_quota_on(dentry);
2510 if (!error)
2511 error = vfs_load_quota_inode(d_inode(dentry), type, format_id,
2512 DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
2513
2514 out:
2515 dput(dentry);
2516 return error;
2517 }
2518 EXPORT_SYMBOL(dquot_quota_on_mount);
2519
dquot_quota_enable(struct super_block * sb,unsigned int flags)2520 static int dquot_quota_enable(struct super_block *sb, unsigned int flags)
2521 {
2522 int ret;
2523 int type;
2524 struct quota_info *dqopt = sb_dqopt(sb);
2525
2526 if (!(dqopt->flags & DQUOT_QUOTA_SYS_FILE))
2527 return -ENOSYS;
2528 /* Accounting cannot be turned on while fs is mounted */
2529 flags &= ~(FS_QUOTA_UDQ_ACCT | FS_QUOTA_GDQ_ACCT | FS_QUOTA_PDQ_ACCT);
2530 if (!flags)
2531 return -EINVAL;
2532 for (type = 0; type < MAXQUOTAS; type++) {
2533 if (!(flags & qtype_enforce_flag(type)))
2534 continue;
2535 /* Can't enforce without accounting */
2536 if (!sb_has_quota_usage_enabled(sb, type))
2537 return -EINVAL;
2538 ret = dquot_enable(dqopt->files[type], type,
2539 dqopt->info[type].dqi_fmt_id,
2540 DQUOT_LIMITS_ENABLED);
2541 if (ret < 0)
2542 goto out_err;
2543 }
2544 return 0;
2545 out_err:
2546 /* Backout enforcement enablement we already did */
2547 for (type--; type >= 0; type--) {
2548 if (flags & qtype_enforce_flag(type))
2549 dquot_disable(sb, type, DQUOT_LIMITS_ENABLED);
2550 }
2551 /* Error code translation for better compatibility with XFS */
2552 if (ret == -EBUSY)
2553 ret = -EEXIST;
2554 return ret;
2555 }
2556
dquot_quota_disable(struct super_block * sb,unsigned int flags)2557 static int dquot_quota_disable(struct super_block *sb, unsigned int flags)
2558 {
2559 int ret;
2560 int type;
2561 struct quota_info *dqopt = sb_dqopt(sb);
2562
2563 if (!(dqopt->flags & DQUOT_QUOTA_SYS_FILE))
2564 return -ENOSYS;
2565 /*
2566 * We don't support turning off accounting via quotactl. In principle
2567 * quota infrastructure can do this but filesystems don't expect
2568 * userspace to be able to do it.
2569 */
2570 if (flags &
2571 (FS_QUOTA_UDQ_ACCT | FS_QUOTA_GDQ_ACCT | FS_QUOTA_PDQ_ACCT))
2572 return -EOPNOTSUPP;
2573
2574 /* Filter out limits not enabled */
2575 for (type = 0; type < MAXQUOTAS; type++)
2576 if (!sb_has_quota_limits_enabled(sb, type))
2577 flags &= ~qtype_enforce_flag(type);
2578 /* Nothing left? */
2579 if (!flags)
2580 return -EEXIST;
2581 for (type = 0; type < MAXQUOTAS; type++) {
2582 if (flags & qtype_enforce_flag(type)) {
2583 ret = dquot_disable(sb, type, DQUOT_LIMITS_ENABLED);
2584 if (ret < 0)
2585 goto out_err;
2586 }
2587 }
2588 return 0;
2589 out_err:
2590 /* Backout enforcement disabling we already did */
2591 for (type--; type >= 0; type--) {
2592 if (flags & qtype_enforce_flag(type))
2593 dquot_enable(dqopt->files[type], type,
2594 dqopt->info[type].dqi_fmt_id,
2595 DQUOT_LIMITS_ENABLED);
2596 }
2597 return ret;
2598 }
2599
2600 /* Generic routine for getting common part of quota structure */
do_get_dqblk(struct dquot * dquot,struct qc_dqblk * di)2601 static void do_get_dqblk(struct dquot *dquot, struct qc_dqblk *di)
2602 {
2603 struct mem_dqblk *dm = &dquot->dq_dqb;
2604
2605 memset(di, 0, sizeof(*di));
2606 spin_lock(&dquot->dq_dqb_lock);
2607 di->d_spc_hardlimit = dm->dqb_bhardlimit;
2608 di->d_spc_softlimit = dm->dqb_bsoftlimit;
2609 di->d_ino_hardlimit = dm->dqb_ihardlimit;
2610 di->d_ino_softlimit = dm->dqb_isoftlimit;
2611 di->d_space = dm->dqb_curspace + dm->dqb_rsvspace;
2612 di->d_ino_count = dm->dqb_curinodes;
2613 di->d_spc_timer = dm->dqb_btime;
2614 di->d_ino_timer = dm->dqb_itime;
2615 spin_unlock(&dquot->dq_dqb_lock);
2616 }
2617
dquot_get_dqblk(struct super_block * sb,struct kqid qid,struct qc_dqblk * di)2618 int dquot_get_dqblk(struct super_block *sb, struct kqid qid,
2619 struct qc_dqblk *di)
2620 {
2621 struct dquot *dquot;
2622
2623 dquot = dqget(sb, qid);
2624 if (IS_ERR(dquot))
2625 return PTR_ERR(dquot);
2626 do_get_dqblk(dquot, di);
2627 dqput(dquot);
2628
2629 return 0;
2630 }
2631 EXPORT_SYMBOL(dquot_get_dqblk);
2632
dquot_get_next_dqblk(struct super_block * sb,struct kqid * qid,struct qc_dqblk * di)2633 int dquot_get_next_dqblk(struct super_block *sb, struct kqid *qid,
2634 struct qc_dqblk *di)
2635 {
2636 struct dquot *dquot;
2637 int err;
2638
2639 if (!sb->dq_op->get_next_id)
2640 return -ENOSYS;
2641 err = sb->dq_op->get_next_id(sb, qid);
2642 if (err < 0)
2643 return err;
2644 dquot = dqget(sb, *qid);
2645 if (IS_ERR(dquot))
2646 return PTR_ERR(dquot);
2647 do_get_dqblk(dquot, di);
2648 dqput(dquot);
2649
2650 return 0;
2651 }
2652 EXPORT_SYMBOL(dquot_get_next_dqblk);
2653
2654 #define VFS_QC_MASK \
2655 (QC_SPACE | QC_SPC_SOFT | QC_SPC_HARD | \
2656 QC_INO_COUNT | QC_INO_SOFT | QC_INO_HARD | \
2657 QC_SPC_TIMER | QC_INO_TIMER)
2658
2659 /* Generic routine for setting common part of quota structure */
do_set_dqblk(struct dquot * dquot,struct qc_dqblk * di)2660 static int do_set_dqblk(struct dquot *dquot, struct qc_dqblk *di)
2661 {
2662 struct mem_dqblk *dm = &dquot->dq_dqb;
2663 int check_blim = 0, check_ilim = 0;
2664 struct mem_dqinfo *dqi = &sb_dqopt(dquot->dq_sb)->info[dquot->dq_id.type];
2665
2666 if (di->d_fieldmask & ~VFS_QC_MASK)
2667 return -EINVAL;
2668
2669 if (((di->d_fieldmask & QC_SPC_SOFT) &&
2670 di->d_spc_softlimit > dqi->dqi_max_spc_limit) ||
2671 ((di->d_fieldmask & QC_SPC_HARD) &&
2672 di->d_spc_hardlimit > dqi->dqi_max_spc_limit) ||
2673 ((di->d_fieldmask & QC_INO_SOFT) &&
2674 (di->d_ino_softlimit > dqi->dqi_max_ino_limit)) ||
2675 ((di->d_fieldmask & QC_INO_HARD) &&
2676 (di->d_ino_hardlimit > dqi->dqi_max_ino_limit)))
2677 return -ERANGE;
2678
2679 spin_lock(&dquot->dq_dqb_lock);
2680 if (di->d_fieldmask & QC_SPACE) {
2681 dm->dqb_curspace = di->d_space - dm->dqb_rsvspace;
2682 check_blim = 1;
2683 set_bit(DQ_LASTSET_B + QIF_SPACE_B, &dquot->dq_flags);
2684 }
2685
2686 if (di->d_fieldmask & QC_SPC_SOFT)
2687 dm->dqb_bsoftlimit = di->d_spc_softlimit;
2688 if (di->d_fieldmask & QC_SPC_HARD)
2689 dm->dqb_bhardlimit = di->d_spc_hardlimit;
2690 if (di->d_fieldmask & (QC_SPC_SOFT | QC_SPC_HARD)) {
2691 check_blim = 1;
2692 set_bit(DQ_LASTSET_B + QIF_BLIMITS_B, &dquot->dq_flags);
2693 }
2694
2695 if (di->d_fieldmask & QC_INO_COUNT) {
2696 dm->dqb_curinodes = di->d_ino_count;
2697 check_ilim = 1;
2698 set_bit(DQ_LASTSET_B + QIF_INODES_B, &dquot->dq_flags);
2699 }
2700
2701 if (di->d_fieldmask & QC_INO_SOFT)
2702 dm->dqb_isoftlimit = di->d_ino_softlimit;
2703 if (di->d_fieldmask & QC_INO_HARD)
2704 dm->dqb_ihardlimit = di->d_ino_hardlimit;
2705 if (di->d_fieldmask & (QC_INO_SOFT | QC_INO_HARD)) {
2706 check_ilim = 1;
2707 set_bit(DQ_LASTSET_B + QIF_ILIMITS_B, &dquot->dq_flags);
2708 }
2709
2710 if (di->d_fieldmask & QC_SPC_TIMER) {
2711 dm->dqb_btime = di->d_spc_timer;
2712 check_blim = 1;
2713 set_bit(DQ_LASTSET_B + QIF_BTIME_B, &dquot->dq_flags);
2714 }
2715
2716 if (di->d_fieldmask & QC_INO_TIMER) {
2717 dm->dqb_itime = di->d_ino_timer;
2718 check_ilim = 1;
2719 set_bit(DQ_LASTSET_B + QIF_ITIME_B, &dquot->dq_flags);
2720 }
2721
2722 if (check_blim) {
2723 if (!dm->dqb_bsoftlimit ||
2724 dm->dqb_curspace + dm->dqb_rsvspace < dm->dqb_bsoftlimit) {
2725 dm->dqb_btime = 0;
2726 clear_bit(DQ_BLKS_B, &dquot->dq_flags);
2727 } else if (!(di->d_fieldmask & QC_SPC_TIMER))
2728 /* Set grace only if user hasn't provided his own... */
2729 dm->dqb_btime = ktime_get_real_seconds() + dqi->dqi_bgrace;
2730 }
2731 if (check_ilim) {
2732 if (!dm->dqb_isoftlimit ||
2733 dm->dqb_curinodes < dm->dqb_isoftlimit) {
2734 dm->dqb_itime = 0;
2735 clear_bit(DQ_INODES_B, &dquot->dq_flags);
2736 } else if (!(di->d_fieldmask & QC_INO_TIMER))
2737 /* Set grace only if user hasn't provided his own... */
2738 dm->dqb_itime = ktime_get_real_seconds() + dqi->dqi_igrace;
2739 }
2740 if (dm->dqb_bhardlimit || dm->dqb_bsoftlimit || dm->dqb_ihardlimit ||
2741 dm->dqb_isoftlimit)
2742 clear_bit(DQ_FAKE_B, &dquot->dq_flags);
2743 else
2744 set_bit(DQ_FAKE_B, &dquot->dq_flags);
2745 spin_unlock(&dquot->dq_dqb_lock);
2746 mark_dquot_dirty(dquot);
2747
2748 return 0;
2749 }
2750
dquot_set_dqblk(struct super_block * sb,struct kqid qid,struct qc_dqblk * di)2751 int dquot_set_dqblk(struct super_block *sb, struct kqid qid,
2752 struct qc_dqblk *di)
2753 {
2754 struct dquot *dquot;
2755 int rc;
2756
2757 dquot = dqget(sb, qid);
2758 if (IS_ERR(dquot)) {
2759 rc = PTR_ERR(dquot);
2760 goto out;
2761 }
2762 rc = do_set_dqblk(dquot, di);
2763 dqput(dquot);
2764 out:
2765 return rc;
2766 }
2767 EXPORT_SYMBOL(dquot_set_dqblk);
2768
2769 /* Generic routine for getting common part of quota file information */
dquot_get_state(struct super_block * sb,struct qc_state * state)2770 int dquot_get_state(struct super_block *sb, struct qc_state *state)
2771 {
2772 struct mem_dqinfo *mi;
2773 struct qc_type_state *tstate;
2774 struct quota_info *dqopt = sb_dqopt(sb);
2775 int type;
2776
2777 memset(state, 0, sizeof(*state));
2778 for (type = 0; type < MAXQUOTAS; type++) {
2779 if (!sb_has_quota_active(sb, type))
2780 continue;
2781 tstate = state->s_state + type;
2782 mi = sb_dqopt(sb)->info + type;
2783 tstate->flags = QCI_ACCT_ENABLED;
2784 spin_lock(&dq_data_lock);
2785 if (mi->dqi_flags & DQF_SYS_FILE)
2786 tstate->flags |= QCI_SYSFILE;
2787 if (mi->dqi_flags & DQF_ROOT_SQUASH)
2788 tstate->flags |= QCI_ROOT_SQUASH;
2789 if (sb_has_quota_limits_enabled(sb, type))
2790 tstate->flags |= QCI_LIMITS_ENFORCED;
2791 tstate->spc_timelimit = mi->dqi_bgrace;
2792 tstate->ino_timelimit = mi->dqi_igrace;
2793 tstate->ino = dqopt->files[type]->i_ino;
2794 tstate->blocks = dqopt->files[type]->i_blocks;
2795 tstate->nextents = 1; /* We don't know... */
2796 spin_unlock(&dq_data_lock);
2797 }
2798 return 0;
2799 }
2800 EXPORT_SYMBOL(dquot_get_state);
2801
2802 /* Generic routine for setting common part of quota file information */
dquot_set_dqinfo(struct super_block * sb,int type,struct qc_info * ii)2803 int dquot_set_dqinfo(struct super_block *sb, int type, struct qc_info *ii)
2804 {
2805 struct mem_dqinfo *mi;
2806 int err = 0;
2807
2808 if ((ii->i_fieldmask & QC_WARNS_MASK) ||
2809 (ii->i_fieldmask & QC_RT_SPC_TIMER))
2810 return -EINVAL;
2811 if (!sb_has_quota_active(sb, type))
2812 return -ESRCH;
2813 mi = sb_dqopt(sb)->info + type;
2814 if (ii->i_fieldmask & QC_FLAGS) {
2815 if ((ii->i_flags & QCI_ROOT_SQUASH &&
2816 mi->dqi_format->qf_fmt_id != QFMT_VFS_OLD))
2817 return -EINVAL;
2818 }
2819 spin_lock(&dq_data_lock);
2820 if (ii->i_fieldmask & QC_SPC_TIMER)
2821 mi->dqi_bgrace = ii->i_spc_timelimit;
2822 if (ii->i_fieldmask & QC_INO_TIMER)
2823 mi->dqi_igrace = ii->i_ino_timelimit;
2824 if (ii->i_fieldmask & QC_FLAGS) {
2825 if (ii->i_flags & QCI_ROOT_SQUASH)
2826 mi->dqi_flags |= DQF_ROOT_SQUASH;
2827 else
2828 mi->dqi_flags &= ~DQF_ROOT_SQUASH;
2829 }
2830 spin_unlock(&dq_data_lock);
2831 mark_info_dirty(sb, type);
2832 /* Force write to disk */
2833 sb->dq_op->write_info(sb, type);
2834 return err;
2835 }
2836 EXPORT_SYMBOL(dquot_set_dqinfo);
2837
2838 const struct quotactl_ops dquot_quotactl_sysfile_ops = {
2839 .quota_enable = dquot_quota_enable,
2840 .quota_disable = dquot_quota_disable,
2841 .quota_sync = dquot_quota_sync,
2842 .get_state = dquot_get_state,
2843 .set_info = dquot_set_dqinfo,
2844 .get_dqblk = dquot_get_dqblk,
2845 .get_nextdqblk = dquot_get_next_dqblk,
2846 .set_dqblk = dquot_set_dqblk
2847 };
2848 EXPORT_SYMBOL(dquot_quotactl_sysfile_ops);
2849
do_proc_dqstats(struct ctl_table * table,int write,void __user * buffer,size_t * lenp,loff_t * ppos)2850 static int do_proc_dqstats(struct ctl_table *table, int write,
2851 void __user *buffer, size_t *lenp, loff_t *ppos)
2852 {
2853 unsigned int type = (unsigned long *)table->data - dqstats.stat;
2854 s64 value = percpu_counter_sum(&dqstats.counter[type]);
2855
2856 /* Filter negative values for non-monotonic counters */
2857 if (value < 0 && (type == DQST_ALLOC_DQUOTS ||
2858 type == DQST_FREE_DQUOTS))
2859 value = 0;
2860
2861 /* Update global table */
2862 dqstats.stat[type] = value;
2863 return proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
2864 }
2865
2866 static struct ctl_table fs_dqstats_table[] = {
2867 {
2868 .procname = "lookups",
2869 .data = &dqstats.stat[DQST_LOOKUPS],
2870 .maxlen = sizeof(unsigned long),
2871 .mode = 0444,
2872 .proc_handler = do_proc_dqstats,
2873 },
2874 {
2875 .procname = "drops",
2876 .data = &dqstats.stat[DQST_DROPS],
2877 .maxlen = sizeof(unsigned long),
2878 .mode = 0444,
2879 .proc_handler = do_proc_dqstats,
2880 },
2881 {
2882 .procname = "reads",
2883 .data = &dqstats.stat[DQST_READS],
2884 .maxlen = sizeof(unsigned long),
2885 .mode = 0444,
2886 .proc_handler = do_proc_dqstats,
2887 },
2888 {
2889 .procname = "writes",
2890 .data = &dqstats.stat[DQST_WRITES],
2891 .maxlen = sizeof(unsigned long),
2892 .mode = 0444,
2893 .proc_handler = do_proc_dqstats,
2894 },
2895 {
2896 .procname = "cache_hits",
2897 .data = &dqstats.stat[DQST_CACHE_HITS],
2898 .maxlen = sizeof(unsigned long),
2899 .mode = 0444,
2900 .proc_handler = do_proc_dqstats,
2901 },
2902 {
2903 .procname = "allocated_dquots",
2904 .data = &dqstats.stat[DQST_ALLOC_DQUOTS],
2905 .maxlen = sizeof(unsigned long),
2906 .mode = 0444,
2907 .proc_handler = do_proc_dqstats,
2908 },
2909 {
2910 .procname = "free_dquots",
2911 .data = &dqstats.stat[DQST_FREE_DQUOTS],
2912 .maxlen = sizeof(unsigned long),
2913 .mode = 0444,
2914 .proc_handler = do_proc_dqstats,
2915 },
2916 {
2917 .procname = "syncs",
2918 .data = &dqstats.stat[DQST_SYNCS],
2919 .maxlen = sizeof(unsigned long),
2920 .mode = 0444,
2921 .proc_handler = do_proc_dqstats,
2922 },
2923 #ifdef CONFIG_PRINT_QUOTA_WARNING
2924 {
2925 .procname = "warnings",
2926 .data = &flag_print_warnings,
2927 .maxlen = sizeof(int),
2928 .mode = 0644,
2929 .proc_handler = proc_dointvec,
2930 },
2931 #endif
2932 { },
2933 };
2934
2935 static struct ctl_table fs_table[] = {
2936 {
2937 .procname = "quota",
2938 .mode = 0555,
2939 .child = fs_dqstats_table,
2940 },
2941 { },
2942 };
2943
2944 static struct ctl_table sys_table[] = {
2945 {
2946 .procname = "fs",
2947 .mode = 0555,
2948 .child = fs_table,
2949 },
2950 { },
2951 };
2952
dquot_init(void)2953 static int __init dquot_init(void)
2954 {
2955 int i, ret;
2956 unsigned long nr_hash, order;
2957
2958 printk(KERN_NOTICE "VFS: Disk quotas %s\n", __DQUOT_VERSION__);
2959
2960 register_sysctl_table(sys_table);
2961
2962 dquot_cachep = kmem_cache_create("dquot",
2963 sizeof(struct dquot), sizeof(unsigned long) * 4,
2964 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
2965 SLAB_MEM_SPREAD|SLAB_PANIC),
2966 NULL);
2967
2968 order = 0;
2969 dquot_hash = (struct hlist_head *)__get_free_pages(GFP_ATOMIC, order);
2970 if (!dquot_hash)
2971 panic("Cannot create dquot hash table");
2972
2973 for (i = 0; i < _DQST_DQSTAT_LAST; i++) {
2974 ret = percpu_counter_init(&dqstats.counter[i], 0, GFP_KERNEL);
2975 if (ret)
2976 panic("Cannot create dquot stat counters");
2977 }
2978
2979 /* Find power-of-two hlist_heads which can fit into allocation */
2980 nr_hash = (1UL << order) * PAGE_SIZE / sizeof(struct hlist_head);
2981 dq_hash_bits = 0;
2982 do {
2983 dq_hash_bits++;
2984 } while (nr_hash >> dq_hash_bits);
2985 dq_hash_bits--;
2986
2987 nr_hash = 1UL << dq_hash_bits;
2988 dq_hash_mask = nr_hash - 1;
2989 for (i = 0; i < nr_hash; i++)
2990 INIT_HLIST_HEAD(dquot_hash + i);
2991
2992 pr_info("VFS: Dquot-cache hash table entries: %ld (order %ld,"
2993 " %ld bytes)\n", nr_hash, order, (PAGE_SIZE << order));
2994
2995 if (register_shrinker(&dqcache_shrinker))
2996 panic("Cannot register dquot shrinker");
2997
2998 return 0;
2999 }
3000 fs_initcall(dquot_init);
3001