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