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