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