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