Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * Author: Marco van Wieringen <mvw@planets.elm.net> |
| 13 | * |
| 14 | * Fixes: Dmitry Gorodchanin <pgmdsg@ibi.com>, 11 Feb 96 |
| 15 | * |
| 16 | * Revised list management to avoid races |
| 17 | * -- Bill Hawes, <whawes@star.net>, 9/98 |
| 18 | * |
| 19 | * Fixed races in dquot_transfer(), dqget() and dquot_alloc_...(). |
| 20 | * As the consequence the locking was moved from dquot_decr_...(), |
| 21 | * dquot_incr_...() to calling functions. |
| 22 | * invalidate_dquots() now writes modified dquots. |
| 23 | * Serialized quota_off() and quota_on() for mount point. |
| 24 | * Fixed a few bugs in grow_dquots(). |
| 25 | * Fixed deadlock in write_dquot() - we no longer account quotas on |
| 26 | * quota files |
| 27 | * remove_dquot_ref() moved to inode.c - it now traverses through inodes |
| 28 | * add_dquot_ref() restarts after blocking |
| 29 | * Added check for bogus uid and fixed check for group in quotactl. |
| 30 | * Jan Kara, <jack@suse.cz>, sponsored by SuSE CR, 10-11/99 |
| 31 | * |
| 32 | * Used struct list_head instead of own list struct |
| 33 | * Invalidation of referenced dquots is no longer possible |
| 34 | * Improved free_dquots list management |
| 35 | * Quota and i_blocks are now updated in one place to avoid races |
| 36 | * Warnings are now delayed so we won't block in critical section |
| 37 | * Write updated not to require dquot lock |
| 38 | * Jan Kara, <jack@suse.cz>, 9/2000 |
| 39 | * |
| 40 | * Added dynamic quota structure allocation |
| 41 | * Jan Kara <jack@suse.cz> 12/2000 |
| 42 | * |
| 43 | * Rewritten quota interface. Implemented new quota format and |
| 44 | * formats registering. |
| 45 | * Jan Kara, <jack@suse.cz>, 2001,2002 |
| 46 | * |
| 47 | * New SMP locking. |
| 48 | * Jan Kara, <jack@suse.cz>, 10/2002 |
| 49 | * |
| 50 | * Added journalled quota support, fix lock inversion problems |
| 51 | * Jan Kara, <jack@suse.cz>, 2003,2004 |
| 52 | * |
| 53 | * (C) Copyright 1994 - 1997 Marco van Wieringen |
| 54 | */ |
| 55 | |
| 56 | #include <linux/errno.h> |
| 57 | #include <linux/kernel.h> |
| 58 | #include <linux/fs.h> |
| 59 | #include <linux/mount.h> |
| 60 | #include <linux/mm.h> |
| 61 | #include <linux/time.h> |
| 62 | #include <linux/types.h> |
| 63 | #include <linux/string.h> |
| 64 | #include <linux/fcntl.h> |
| 65 | #include <linux/stat.h> |
| 66 | #include <linux/tty.h> |
| 67 | #include <linux/file.h> |
| 68 | #include <linux/slab.h> |
| 69 | #include <linux/sysctl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | #include <linux/init.h> |
| 71 | #include <linux/module.h> |
| 72 | #include <linux/proc_fs.h> |
| 73 | #include <linux/security.h> |
| 74 | #include <linux/kmod.h> |
| 75 | #include <linux/namei.h> |
| 76 | #include <linux/buffer_head.h> |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 77 | #include <linux/capability.h> |
Adrian Bunk | be586ba | 2005-11-07 00:59:35 -0800 | [diff] [blame] | 78 | #include <linux/quotaops.h> |
Christoph Hellwig | fb58b73 | 2007-02-12 00:51:57 -0800 | [diff] [blame] | 79 | #include <linux/writeback.h> /* for inode_lock, oddly enough.. */ |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 80 | #ifdef CONFIG_QUOTA_NETLINK_INTERFACE |
| 81 | #include <net/netlink.h> |
| 82 | #include <net/genetlink.h> |
| 83 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | #include <asm/uaccess.h> |
| 86 | |
| 87 | #define __DQUOT_PARANOIA |
| 88 | |
| 89 | /* |
| 90 | * There are two quota SMP locks. dq_list_lock protects all lists with quotas |
| 91 | * and quota formats and also dqstats structure containing statistics about the |
| 92 | * lists. dq_data_lock protects data from dq_dqb and also mem_dqinfo structures |
| 93 | * and also guards consistency of dquot->dq_dqb with inode->i_blocks, i_bytes. |
| 94 | * i_blocks and i_bytes updates itself are guarded by i_lock acquired directly |
| 95 | * in inode_add_bytes() and inode_sub_bytes(). |
| 96 | * |
| 97 | * The spinlock ordering is hence: dq_data_lock > dq_list_lock > i_lock |
| 98 | * |
| 99 | * Note that some things (eg. sb pointer, type, id) doesn't change during |
| 100 | * the life of the dquot structure and so needn't to be protected by a lock |
| 101 | * |
| 102 | * Any operation working on dquots via inode pointers must hold dqptr_sem. If |
| 103 | * operation is just reading pointers from inode (or not using them at all) the |
| 104 | * read lock is enough. If pointers are altered function must hold write lock |
| 105 | * (these locking rules also apply for S_NOQUOTA flag in the inode - note that |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 106 | * for altering the flag i_mutex is also needed). If operation is holding |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | * reference to dquot in other way (e.g. quotactl ops) it must be guarded by |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 108 | * dqonoff_mutex. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | * This locking assures that: |
| 110 | * a) update/access to dquot pointers in inode is serialized |
| 111 | * b) everyone is guarded against invalidate_dquots() |
| 112 | * |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 113 | * Each dquot has its dq_lock mutex. Locked dquots might not be referenced |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | * from inodes (dquot_alloc_space() and such don't check the dq_lock). |
| 115 | * Currently dquot is locked only when it is being read to memory (or space for |
| 116 | * it is being allocated) on the first dqget() and when it is being released on |
| 117 | * the last dqput(). The allocation and release oparations are serialized by |
| 118 | * the dq_lock and by checking the use count in dquot_release(). Write |
| 119 | * operations on dquots don't hold dq_lock as they copy data under dq_data_lock |
| 120 | * spinlock to internal buffers before writing. |
| 121 | * |
| 122 | * Lock ordering (including related VFS locks) is the following: |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 123 | * i_mutex > dqonoff_sem > journal_lock > dqptr_sem > dquot->dq_lock > |
| 124 | * dqio_mutex |
| 125 | * i_mutex on quota files is special (it's below dqio_mutex) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | */ |
| 127 | |
| 128 | static DEFINE_SPINLOCK(dq_list_lock); |
| 129 | DEFINE_SPINLOCK(dq_data_lock); |
| 130 | |
| 131 | static char *quotatypes[] = INITQFNAMES; |
| 132 | static struct quota_format_type *quota_formats; /* List of registered formats */ |
| 133 | static struct quota_module_name module_names[] = INIT_QUOTA_MODULE_NAMES; |
| 134 | |
| 135 | /* SLAB cache for dquot structures */ |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 136 | static struct kmem_cache *dquot_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
| 138 | int register_quota_format(struct quota_format_type *fmt) |
| 139 | { |
| 140 | spin_lock(&dq_list_lock); |
| 141 | fmt->qf_next = quota_formats; |
| 142 | quota_formats = fmt; |
| 143 | spin_unlock(&dq_list_lock); |
| 144 | return 0; |
| 145 | } |
| 146 | |
| 147 | void unregister_quota_format(struct quota_format_type *fmt) |
| 148 | { |
| 149 | struct quota_format_type **actqf; |
| 150 | |
| 151 | spin_lock(&dq_list_lock); |
| 152 | for (actqf = "a_formats; *actqf && *actqf != fmt; actqf = &(*actqf)->qf_next); |
| 153 | if (*actqf) |
| 154 | *actqf = (*actqf)->qf_next; |
| 155 | spin_unlock(&dq_list_lock); |
| 156 | } |
| 157 | |
| 158 | static struct quota_format_type *find_quota_format(int id) |
| 159 | { |
| 160 | struct quota_format_type *actqf; |
| 161 | |
| 162 | spin_lock(&dq_list_lock); |
| 163 | for (actqf = quota_formats; actqf && actqf->qf_fmt_id != id; actqf = actqf->qf_next); |
| 164 | if (!actqf || !try_module_get(actqf->qf_owner)) { |
| 165 | int qm; |
| 166 | |
| 167 | spin_unlock(&dq_list_lock); |
| 168 | |
| 169 | for (qm = 0; module_names[qm].qm_fmt_id && module_names[qm].qm_fmt_id != id; qm++); |
| 170 | if (!module_names[qm].qm_fmt_id || request_module(module_names[qm].qm_mod_name)) |
| 171 | return NULL; |
| 172 | |
| 173 | spin_lock(&dq_list_lock); |
| 174 | for (actqf = quota_formats; actqf && actqf->qf_fmt_id != id; actqf = actqf->qf_next); |
| 175 | if (actqf && !try_module_get(actqf->qf_owner)) |
| 176 | actqf = NULL; |
| 177 | } |
| 178 | spin_unlock(&dq_list_lock); |
| 179 | return actqf; |
| 180 | } |
| 181 | |
| 182 | static void put_quota_format(struct quota_format_type *fmt) |
| 183 | { |
| 184 | module_put(fmt->qf_owner); |
| 185 | } |
| 186 | |
| 187 | /* |
| 188 | * Dquot List Management: |
| 189 | * The quota code uses three lists for dquot management: the inuse_list, |
| 190 | * free_dquots, and dquot_hash[] array. A single dquot structure may be |
| 191 | * on all three lists, depending on its current state. |
| 192 | * |
| 193 | * All dquots are placed to the end of inuse_list when first created, and this |
| 194 | * list is used for invalidate operation, which must look at every dquot. |
| 195 | * |
| 196 | * Unused dquots (dq_count == 0) are added to the free_dquots list when freed, |
| 197 | * and this list is searched whenever we need an available dquot. Dquots are |
| 198 | * removed from the list as soon as they are used again, and |
| 199 | * dqstats.free_dquots gives the number of dquots on the list. When |
| 200 | * dquot is invalidated it's completely released from memory. |
| 201 | * |
| 202 | * Dquots with a specific identity (device, type and id) are placed on |
| 203 | * one of the dquot_hash[] hash chains. The provides an efficient search |
| 204 | * mechanism to locate a specific dquot. |
| 205 | */ |
| 206 | |
| 207 | static LIST_HEAD(inuse_list); |
| 208 | static LIST_HEAD(free_dquots); |
| 209 | static unsigned int dq_hash_bits, dq_hash_mask; |
| 210 | static struct hlist_head *dquot_hash; |
| 211 | |
| 212 | struct dqstats dqstats; |
| 213 | |
| 214 | static void dqput(struct dquot *dquot); |
| 215 | |
| 216 | static inline unsigned int |
| 217 | hashfn(const struct super_block *sb, unsigned int id, int type) |
| 218 | { |
| 219 | unsigned long tmp; |
| 220 | |
| 221 | tmp = (((unsigned long)sb>>L1_CACHE_SHIFT) ^ id) * (MAXQUOTAS - type); |
| 222 | return (tmp + (tmp >> dq_hash_bits)) & dq_hash_mask; |
| 223 | } |
| 224 | |
| 225 | /* |
| 226 | * Following list functions expect dq_list_lock to be held |
| 227 | */ |
| 228 | static inline void insert_dquot_hash(struct dquot *dquot) |
| 229 | { |
| 230 | struct hlist_head *head = dquot_hash + hashfn(dquot->dq_sb, dquot->dq_id, dquot->dq_type); |
| 231 | hlist_add_head(&dquot->dq_hash, head); |
| 232 | } |
| 233 | |
| 234 | static inline void remove_dquot_hash(struct dquot *dquot) |
| 235 | { |
| 236 | hlist_del_init(&dquot->dq_hash); |
| 237 | } |
| 238 | |
| 239 | static inline struct dquot *find_dquot(unsigned int hashent, struct super_block *sb, unsigned int id, int type) |
| 240 | { |
| 241 | struct hlist_node *node; |
| 242 | struct dquot *dquot; |
| 243 | |
| 244 | hlist_for_each (node, dquot_hash+hashent) { |
| 245 | dquot = hlist_entry(node, struct dquot, dq_hash); |
| 246 | if (dquot->dq_sb == sb && dquot->dq_id == id && dquot->dq_type == type) |
| 247 | return dquot; |
| 248 | } |
| 249 | return NODQUOT; |
| 250 | } |
| 251 | |
| 252 | /* Add a dquot to the tail of the free list */ |
| 253 | static inline void put_dquot_last(struct dquot *dquot) |
| 254 | { |
Akinobu Mita | 8e13059 | 2006-06-26 00:24:37 -0700 | [diff] [blame] | 255 | list_add_tail(&dquot->dq_free, &free_dquots); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | dqstats.free_dquots++; |
| 257 | } |
| 258 | |
| 259 | static inline void remove_free_dquot(struct dquot *dquot) |
| 260 | { |
| 261 | if (list_empty(&dquot->dq_free)) |
| 262 | return; |
| 263 | list_del_init(&dquot->dq_free); |
| 264 | dqstats.free_dquots--; |
| 265 | } |
| 266 | |
| 267 | static inline void put_inuse(struct dquot *dquot) |
| 268 | { |
| 269 | /* We add to the back of inuse list so we don't have to restart |
| 270 | * when traversing this list and we block */ |
Akinobu Mita | 8e13059 | 2006-06-26 00:24:37 -0700 | [diff] [blame] | 271 | list_add_tail(&dquot->dq_inuse, &inuse_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | dqstats.allocated_dquots++; |
| 273 | } |
| 274 | |
| 275 | static inline void remove_inuse(struct dquot *dquot) |
| 276 | { |
| 277 | dqstats.allocated_dquots--; |
| 278 | list_del(&dquot->dq_inuse); |
| 279 | } |
| 280 | /* |
| 281 | * End of list functions needing dq_list_lock |
| 282 | */ |
| 283 | |
| 284 | static void wait_on_dquot(struct dquot *dquot) |
| 285 | { |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 286 | mutex_lock(&dquot->dq_lock); |
| 287 | mutex_unlock(&dquot->dq_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | } |
| 289 | |
Jan Kara | 03f6e92 | 2008-04-28 02:14:32 -0700 | [diff] [blame] | 290 | static inline int dquot_dirty(struct dquot *dquot) |
| 291 | { |
| 292 | return test_bit(DQ_MOD_B, &dquot->dq_flags); |
| 293 | } |
| 294 | |
| 295 | static inline int mark_dquot_dirty(struct dquot *dquot) |
| 296 | { |
| 297 | return dquot->dq_sb->dq_op->mark_dirty(dquot); |
| 298 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
| 300 | int dquot_mark_dquot_dirty(struct dquot *dquot) |
| 301 | { |
| 302 | spin_lock(&dq_list_lock); |
| 303 | if (!test_and_set_bit(DQ_MOD_B, &dquot->dq_flags)) |
| 304 | list_add(&dquot->dq_dirty, &sb_dqopt(dquot->dq_sb)-> |
| 305 | info[dquot->dq_type].dqi_dirty_list); |
| 306 | spin_unlock(&dq_list_lock); |
| 307 | return 0; |
| 308 | } |
| 309 | |
| 310 | /* This function needs dq_list_lock */ |
| 311 | static inline int clear_dquot_dirty(struct dquot *dquot) |
| 312 | { |
| 313 | if (!test_and_clear_bit(DQ_MOD_B, &dquot->dq_flags)) |
| 314 | return 0; |
| 315 | list_del_init(&dquot->dq_dirty); |
| 316 | return 1; |
| 317 | } |
| 318 | |
| 319 | void mark_info_dirty(struct super_block *sb, int type) |
| 320 | { |
| 321 | set_bit(DQF_INFO_DIRTY_B, &sb_dqopt(sb)->info[type].dqi_flags); |
| 322 | } |
| 323 | EXPORT_SYMBOL(mark_info_dirty); |
| 324 | |
| 325 | /* |
| 326 | * Read dquot from disk and alloc space for it |
| 327 | */ |
| 328 | |
| 329 | int dquot_acquire(struct dquot *dquot) |
| 330 | { |
| 331 | int ret = 0, ret2 = 0; |
| 332 | struct quota_info *dqopt = sb_dqopt(dquot->dq_sb); |
| 333 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 334 | mutex_lock(&dquot->dq_lock); |
| 335 | mutex_lock(&dqopt->dqio_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | if (!test_bit(DQ_READ_B, &dquot->dq_flags)) |
| 337 | ret = dqopt->ops[dquot->dq_type]->read_dqblk(dquot); |
| 338 | if (ret < 0) |
| 339 | goto out_iolock; |
| 340 | set_bit(DQ_READ_B, &dquot->dq_flags); |
| 341 | /* Instantiate dquot if needed */ |
| 342 | if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags) && !dquot->dq_off) { |
| 343 | ret = dqopt->ops[dquot->dq_type]->commit_dqblk(dquot); |
| 344 | /* Write the info if needed */ |
| 345 | if (info_dirty(&dqopt->info[dquot->dq_type])) |
| 346 | ret2 = dqopt->ops[dquot->dq_type]->write_file_info(dquot->dq_sb, dquot->dq_type); |
| 347 | if (ret < 0) |
| 348 | goto out_iolock; |
| 349 | if (ret2 < 0) { |
| 350 | ret = ret2; |
| 351 | goto out_iolock; |
| 352 | } |
| 353 | } |
| 354 | set_bit(DQ_ACTIVE_B, &dquot->dq_flags); |
| 355 | out_iolock: |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 356 | mutex_unlock(&dqopt->dqio_mutex); |
| 357 | mutex_unlock(&dquot->dq_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | return ret; |
| 359 | } |
| 360 | |
| 361 | /* |
| 362 | * Write dquot to disk |
| 363 | */ |
| 364 | int dquot_commit(struct dquot *dquot) |
| 365 | { |
| 366 | int ret = 0, ret2 = 0; |
| 367 | struct quota_info *dqopt = sb_dqopt(dquot->dq_sb); |
| 368 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 369 | mutex_lock(&dqopt->dqio_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | spin_lock(&dq_list_lock); |
| 371 | if (!clear_dquot_dirty(dquot)) { |
| 372 | spin_unlock(&dq_list_lock); |
| 373 | goto out_sem; |
| 374 | } |
| 375 | spin_unlock(&dq_list_lock); |
| 376 | /* Inactive dquot can be only if there was error during read/init |
| 377 | * => we have better not writing it */ |
| 378 | if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) { |
| 379 | ret = dqopt->ops[dquot->dq_type]->commit_dqblk(dquot); |
| 380 | if (info_dirty(&dqopt->info[dquot->dq_type])) |
| 381 | ret2 = dqopt->ops[dquot->dq_type]->write_file_info(dquot->dq_sb, dquot->dq_type); |
| 382 | if (ret >= 0) |
| 383 | ret = ret2; |
| 384 | } |
| 385 | out_sem: |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 386 | mutex_unlock(&dqopt->dqio_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | return ret; |
| 388 | } |
| 389 | |
| 390 | /* |
| 391 | * Release dquot |
| 392 | */ |
| 393 | int dquot_release(struct dquot *dquot) |
| 394 | { |
| 395 | int ret = 0, ret2 = 0; |
| 396 | struct quota_info *dqopt = sb_dqopt(dquot->dq_sb); |
| 397 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 398 | mutex_lock(&dquot->dq_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | /* Check whether we are not racing with some other dqget() */ |
| 400 | if (atomic_read(&dquot->dq_count) > 1) |
| 401 | goto out_dqlock; |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 402 | mutex_lock(&dqopt->dqio_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | if (dqopt->ops[dquot->dq_type]->release_dqblk) { |
| 404 | ret = dqopt->ops[dquot->dq_type]->release_dqblk(dquot); |
| 405 | /* Write the info */ |
| 406 | if (info_dirty(&dqopt->info[dquot->dq_type])) |
| 407 | ret2 = dqopt->ops[dquot->dq_type]->write_file_info(dquot->dq_sb, dquot->dq_type); |
| 408 | if (ret >= 0) |
| 409 | ret = ret2; |
| 410 | } |
| 411 | clear_bit(DQ_ACTIVE_B, &dquot->dq_flags); |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 412 | mutex_unlock(&dqopt->dqio_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | out_dqlock: |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 414 | mutex_unlock(&dquot->dq_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | return ret; |
| 416 | } |
| 417 | |
Jan Kara | 74f783a | 2008-08-19 14:51:22 +0200 | [diff] [blame] | 418 | static void dquot_destroy(struct dquot *dquot) |
| 419 | { |
| 420 | kmem_cache_free(dquot_cachep, dquot); |
| 421 | } |
| 422 | |
| 423 | static inline void do_destroy_dquot(struct dquot *dquot) |
| 424 | { |
| 425 | dquot->dq_sb->dq_op->destroy_dquot(dquot); |
| 426 | } |
| 427 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | /* Invalidate all dquots on the list. Note that this function is called after |
| 429 | * quota is disabled and pointers from inodes removed so there cannot be new |
Jan Kara | 6362e4d | 2006-03-23 03:00:17 -0800 | [diff] [blame] | 430 | * quota users. There can still be some users of quotas due to inodes being |
| 431 | * just deleted or pruned by prune_icache() (those are not attached to any |
| 432 | * list). We have to wait for such users. |
| 433 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | static void invalidate_dquots(struct super_block *sb, int type) |
| 435 | { |
Domen Puncer | c33ed27 | 2005-06-25 14:59:36 -0700 | [diff] [blame] | 436 | struct dquot *dquot, *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
Jan Kara | 6362e4d | 2006-03-23 03:00:17 -0800 | [diff] [blame] | 438 | restart: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | spin_lock(&dq_list_lock); |
Domen Puncer | c33ed27 | 2005-06-25 14:59:36 -0700 | [diff] [blame] | 440 | list_for_each_entry_safe(dquot, tmp, &inuse_list, dq_inuse) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | if (dquot->dq_sb != sb) |
| 442 | continue; |
| 443 | if (dquot->dq_type != type) |
| 444 | continue; |
Jan Kara | 6362e4d | 2006-03-23 03:00:17 -0800 | [diff] [blame] | 445 | /* Wait for dquot users */ |
| 446 | if (atomic_read(&dquot->dq_count)) { |
| 447 | DEFINE_WAIT(wait); |
| 448 | |
| 449 | atomic_inc(&dquot->dq_count); |
| 450 | prepare_to_wait(&dquot->dq_wait_unused, &wait, |
| 451 | TASK_UNINTERRUPTIBLE); |
| 452 | spin_unlock(&dq_list_lock); |
| 453 | /* Once dqput() wakes us up, we know it's time to free |
| 454 | * the dquot. |
| 455 | * IMPORTANT: we rely on the fact that there is always |
| 456 | * at most one process waiting for dquot to free. |
| 457 | * Otherwise dq_count would be > 1 and we would never |
| 458 | * wake up. |
| 459 | */ |
| 460 | if (atomic_read(&dquot->dq_count) > 1) |
| 461 | schedule(); |
| 462 | finish_wait(&dquot->dq_wait_unused, &wait); |
| 463 | dqput(dquot); |
| 464 | /* At this moment dquot() need not exist (it could be |
| 465 | * reclaimed by prune_dqcache(). Hence we must |
| 466 | * restart. */ |
| 467 | goto restart; |
| 468 | } |
| 469 | /* |
| 470 | * Quota now has no users and it has been written on last |
| 471 | * dqput() |
| 472 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | remove_dquot_hash(dquot); |
| 474 | remove_free_dquot(dquot); |
| 475 | remove_inuse(dquot); |
Jan Kara | 74f783a | 2008-08-19 14:51:22 +0200 | [diff] [blame] | 476 | do_destroy_dquot(dquot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | } |
| 478 | spin_unlock(&dq_list_lock); |
| 479 | } |
| 480 | |
| 481 | int vfs_quota_sync(struct super_block *sb, int type) |
| 482 | { |
| 483 | struct list_head *dirty; |
| 484 | struct dquot *dquot; |
| 485 | struct quota_info *dqopt = sb_dqopt(sb); |
| 486 | int cnt; |
| 487 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 488 | mutex_lock(&dqopt->dqonoff_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 490 | if (type != -1 && cnt != type) |
| 491 | continue; |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 492 | if (!sb_has_quota_active(sb, cnt)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | continue; |
| 494 | spin_lock(&dq_list_lock); |
| 495 | dirty = &dqopt->info[cnt].dqi_dirty_list; |
| 496 | while (!list_empty(dirty)) { |
Pavel Emelianov | b5e6181 | 2007-05-08 00:30:19 -0700 | [diff] [blame] | 497 | dquot = list_first_entry(dirty, struct dquot, dq_dirty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | /* Dirty and inactive can be only bad dquot... */ |
| 499 | if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) { |
| 500 | clear_dquot_dirty(dquot); |
| 501 | continue; |
| 502 | } |
| 503 | /* Now we have active dquot from which someone is |
| 504 | * holding reference so we can safely just increase |
| 505 | * use count */ |
| 506 | atomic_inc(&dquot->dq_count); |
| 507 | dqstats.lookups++; |
| 508 | spin_unlock(&dq_list_lock); |
| 509 | sb->dq_op->write_dquot(dquot); |
| 510 | dqput(dquot); |
| 511 | spin_lock(&dq_list_lock); |
| 512 | } |
| 513 | spin_unlock(&dq_list_lock); |
| 514 | } |
| 515 | |
| 516 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 517 | if ((cnt == type || type == -1) && sb_has_quota_active(sb, cnt) |
| 518 | && info_dirty(&dqopt->info[cnt])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | sb->dq_op->write_info(sb, cnt); |
| 520 | spin_lock(&dq_list_lock); |
| 521 | dqstats.syncs++; |
| 522 | spin_unlock(&dq_list_lock); |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 523 | mutex_unlock(&dqopt->dqonoff_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
| 525 | return 0; |
| 526 | } |
| 527 | |
| 528 | /* Free unused dquots from cache */ |
| 529 | static void prune_dqcache(int count) |
| 530 | { |
| 531 | struct list_head *head; |
| 532 | struct dquot *dquot; |
| 533 | |
| 534 | head = free_dquots.prev; |
| 535 | while (head != &free_dquots && count) { |
| 536 | dquot = list_entry(head, struct dquot, dq_free); |
| 537 | remove_dquot_hash(dquot); |
| 538 | remove_free_dquot(dquot); |
| 539 | remove_inuse(dquot); |
Jan Kara | 74f783a | 2008-08-19 14:51:22 +0200 | [diff] [blame] | 540 | do_destroy_dquot(dquot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | count--; |
| 542 | head = free_dquots.prev; |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | /* |
| 547 | * This is called from kswapd when we think we need some |
| 548 | * more memory |
| 549 | */ |
| 550 | |
Al Viro | 27496a8 | 2005-10-21 03:20:48 -0400 | [diff] [blame] | 551 | static int shrink_dqcache_memory(int nr, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | { |
| 553 | if (nr) { |
| 554 | spin_lock(&dq_list_lock); |
| 555 | prune_dqcache(nr); |
| 556 | spin_unlock(&dq_list_lock); |
| 557 | } |
| 558 | return (dqstats.free_dquots / 100) * sysctl_vfs_cache_pressure; |
| 559 | } |
| 560 | |
Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 561 | static struct shrinker dqcache_shrinker = { |
| 562 | .shrink = shrink_dqcache_memory, |
| 563 | .seeks = DEFAULT_SEEKS, |
| 564 | }; |
| 565 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | /* |
| 567 | * Put reference to dquot |
| 568 | * NOTE: If you change this function please check whether dqput_blocks() works right... |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 569 | * MUST be called with either dqptr_sem or dqonoff_mutex held |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | */ |
| 571 | static void dqput(struct dquot *dquot) |
| 572 | { |
Jan Kara | b48d380 | 2008-07-25 01:46:49 -0700 | [diff] [blame] | 573 | int ret; |
| 574 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | if (!dquot) |
| 576 | return; |
| 577 | #ifdef __DQUOT_PARANOIA |
| 578 | if (!atomic_read(&dquot->dq_count)) { |
| 579 | printk("VFS: dqput: trying to free free dquot\n"); |
| 580 | printk("VFS: device %s, dquot of %s %d\n", |
| 581 | dquot->dq_sb->s_id, |
| 582 | quotatypes[dquot->dq_type], |
| 583 | dquot->dq_id); |
| 584 | BUG(); |
| 585 | } |
| 586 | #endif |
| 587 | |
| 588 | spin_lock(&dq_list_lock); |
| 589 | dqstats.drops++; |
| 590 | spin_unlock(&dq_list_lock); |
| 591 | we_slept: |
| 592 | spin_lock(&dq_list_lock); |
| 593 | if (atomic_read(&dquot->dq_count) > 1) { |
| 594 | /* We have more than one user... nothing to do */ |
| 595 | atomic_dec(&dquot->dq_count); |
Jan Kara | 6362e4d | 2006-03-23 03:00:17 -0800 | [diff] [blame] | 596 | /* Releasing dquot during quotaoff phase? */ |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 597 | if (!sb_has_quota_active(dquot->dq_sb, dquot->dq_type) && |
Jan Kara | 6362e4d | 2006-03-23 03:00:17 -0800 | [diff] [blame] | 598 | atomic_read(&dquot->dq_count) == 1) |
| 599 | wake_up(&dquot->dq_wait_unused); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | spin_unlock(&dq_list_lock); |
| 601 | return; |
| 602 | } |
| 603 | /* Need to release dquot? */ |
| 604 | if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags) && dquot_dirty(dquot)) { |
| 605 | spin_unlock(&dq_list_lock); |
| 606 | /* Commit dquot before releasing */ |
Jan Kara | b48d380 | 2008-07-25 01:46:49 -0700 | [diff] [blame] | 607 | ret = dquot->dq_sb->dq_op->write_dquot(dquot); |
| 608 | if (ret < 0) { |
| 609 | printk(KERN_ERR "VFS: cannot write quota structure on " |
| 610 | "device %s (error %d). Quota may get out of " |
| 611 | "sync!\n", dquot->dq_sb->s_id, ret); |
| 612 | /* |
| 613 | * We clear dirty bit anyway, so that we avoid |
| 614 | * infinite loop here |
| 615 | */ |
| 616 | spin_lock(&dq_list_lock); |
| 617 | clear_dquot_dirty(dquot); |
| 618 | spin_unlock(&dq_list_lock); |
| 619 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | goto we_slept; |
| 621 | } |
| 622 | /* Clear flag in case dquot was inactive (something bad happened) */ |
| 623 | clear_dquot_dirty(dquot); |
| 624 | if (test_bit(DQ_ACTIVE_B, &dquot->dq_flags)) { |
| 625 | spin_unlock(&dq_list_lock); |
| 626 | dquot->dq_sb->dq_op->release_dquot(dquot); |
| 627 | goto we_slept; |
| 628 | } |
| 629 | atomic_dec(&dquot->dq_count); |
| 630 | #ifdef __DQUOT_PARANOIA |
| 631 | /* sanity check */ |
Eric Sesterhenn | 8abf6a4 | 2006-04-02 13:36:13 +0200 | [diff] [blame] | 632 | BUG_ON(!list_empty(&dquot->dq_free)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | #endif |
| 634 | put_dquot_last(dquot); |
| 635 | spin_unlock(&dq_list_lock); |
| 636 | } |
| 637 | |
Jan Kara | 74f783a | 2008-08-19 14:51:22 +0200 | [diff] [blame] | 638 | static struct dquot *dquot_alloc(struct super_block *sb, int type) |
| 639 | { |
| 640 | return kmem_cache_zalloc(dquot_cachep, GFP_NOFS); |
| 641 | } |
| 642 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | static struct dquot *get_empty_dquot(struct super_block *sb, int type) |
| 644 | { |
| 645 | struct dquot *dquot; |
| 646 | |
Jan Kara | 74f783a | 2008-08-19 14:51:22 +0200 | [diff] [blame] | 647 | dquot = sb->dq_op->alloc_dquot(sb, type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | if(!dquot) |
| 649 | return NODQUOT; |
| 650 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 651 | mutex_init(&dquot->dq_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | INIT_LIST_HEAD(&dquot->dq_free); |
| 653 | INIT_LIST_HEAD(&dquot->dq_inuse); |
| 654 | INIT_HLIST_NODE(&dquot->dq_hash); |
| 655 | INIT_LIST_HEAD(&dquot->dq_dirty); |
Jan Kara | 6362e4d | 2006-03-23 03:00:17 -0800 | [diff] [blame] | 656 | init_waitqueue_head(&dquot->dq_wait_unused); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | dquot->dq_sb = sb; |
| 658 | dquot->dq_type = type; |
| 659 | atomic_set(&dquot->dq_count, 1); |
| 660 | |
| 661 | return dquot; |
| 662 | } |
| 663 | |
| 664 | /* |
| 665 | * Get reference to dquot |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 666 | * MUST be called with either dqptr_sem or dqonoff_mutex held |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | */ |
| 668 | static struct dquot *dqget(struct super_block *sb, unsigned int id, int type) |
| 669 | { |
| 670 | unsigned int hashent = hashfn(sb, id, type); |
| 671 | struct dquot *dquot, *empty = NODQUOT; |
| 672 | |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 673 | if (!sb_has_quota_active(sb, type)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | return NODQUOT; |
| 675 | we_slept: |
| 676 | spin_lock(&dq_list_lock); |
| 677 | if ((dquot = find_dquot(hashent, sb, id, type)) == NODQUOT) { |
| 678 | if (empty == NODQUOT) { |
| 679 | spin_unlock(&dq_list_lock); |
| 680 | if ((empty = get_empty_dquot(sb, type)) == NODQUOT) |
| 681 | schedule(); /* Try to wait for a moment... */ |
| 682 | goto we_slept; |
| 683 | } |
| 684 | dquot = empty; |
| 685 | dquot->dq_id = id; |
| 686 | /* all dquots go on the inuse_list */ |
| 687 | put_inuse(dquot); |
| 688 | /* hash it first so it can be found */ |
| 689 | insert_dquot_hash(dquot); |
| 690 | dqstats.lookups++; |
| 691 | spin_unlock(&dq_list_lock); |
| 692 | } else { |
| 693 | if (!atomic_read(&dquot->dq_count)) |
| 694 | remove_free_dquot(dquot); |
| 695 | atomic_inc(&dquot->dq_count); |
| 696 | dqstats.cache_hits++; |
| 697 | dqstats.lookups++; |
| 698 | spin_unlock(&dq_list_lock); |
| 699 | if (empty) |
Jan Kara | 74f783a | 2008-08-19 14:51:22 +0200 | [diff] [blame] | 700 | do_destroy_dquot(empty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | } |
| 702 | /* Wait for dq_lock - after this we know that either dquot_release() is already |
| 703 | * finished or it will be canceled due to dq_count > 1 test */ |
| 704 | wait_on_dquot(dquot); |
| 705 | /* Read the dquot and instantiate it (everything done only if needed) */ |
| 706 | if (!test_bit(DQ_ACTIVE_B, &dquot->dq_flags) && sb->dq_op->acquire_dquot(dquot) < 0) { |
| 707 | dqput(dquot); |
| 708 | return NODQUOT; |
| 709 | } |
| 710 | #ifdef __DQUOT_PARANOIA |
Eric Sesterhenn | 8abf6a4 | 2006-04-02 13:36:13 +0200 | [diff] [blame] | 711 | BUG_ON(!dquot->dq_sb); /* Has somebody invalidated entry under us? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | #endif |
| 713 | |
| 714 | return dquot; |
| 715 | } |
| 716 | |
| 717 | static int dqinit_needed(struct inode *inode, int type) |
| 718 | { |
| 719 | int cnt; |
| 720 | |
| 721 | if (IS_NOQUOTA(inode)) |
| 722 | return 0; |
| 723 | if (type != -1) |
| 724 | return inode->i_dquot[type] == NODQUOT; |
| 725 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) |
| 726 | if (inode->i_dquot[cnt] == NODQUOT) |
| 727 | return 1; |
| 728 | return 0; |
| 729 | } |
| 730 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 731 | /* This routine is guarded by dqonoff_mutex mutex */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | static void add_dquot_ref(struct super_block *sb, int type) |
| 733 | { |
Jan Kara | 941d238 | 2008-02-06 01:37:36 -0800 | [diff] [blame] | 734 | struct inode *inode, *old_inode = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | |
Christoph Hellwig | d003fb7 | 2007-02-12 00:51:58 -0800 | [diff] [blame] | 736 | spin_lock(&inode_lock); |
| 737 | list_for_each_entry(inode, &sb->s_inodes, i_sb_list) { |
| 738 | if (!atomic_read(&inode->i_writecount)) |
| 739 | continue; |
| 740 | if (!dqinit_needed(inode, type)) |
| 741 | continue; |
| 742 | if (inode->i_state & (I_FREEING|I_WILL_FREE)) |
| 743 | continue; |
| 744 | |
| 745 | __iget(inode); |
| 746 | spin_unlock(&inode_lock); |
| 747 | |
Jan Kara | 941d238 | 2008-02-06 01:37:36 -0800 | [diff] [blame] | 748 | iput(old_inode); |
Christoph Hellwig | d003fb7 | 2007-02-12 00:51:58 -0800 | [diff] [blame] | 749 | sb->dq_op->initialize(inode, type); |
Jan Kara | 941d238 | 2008-02-06 01:37:36 -0800 | [diff] [blame] | 750 | /* We hold a reference to 'inode' so it couldn't have been |
| 751 | * removed from s_inodes list while we dropped the inode_lock. |
| 752 | * We cannot iput the inode now as we can be holding the last |
| 753 | * reference and we cannot iput it under inode_lock. So we |
| 754 | * keep the reference and iput it later. */ |
| 755 | old_inode = inode; |
| 756 | spin_lock(&inode_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | } |
Christoph Hellwig | d003fb7 | 2007-02-12 00:51:58 -0800 | [diff] [blame] | 758 | spin_unlock(&inode_lock); |
Jan Kara | 941d238 | 2008-02-06 01:37:36 -0800 | [diff] [blame] | 759 | iput(old_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | } |
| 761 | |
| 762 | /* Return 0 if dqput() won't block (note that 1 doesn't necessarily mean blocking) */ |
| 763 | static inline int dqput_blocks(struct dquot *dquot) |
| 764 | { |
| 765 | if (atomic_read(&dquot->dq_count) <= 1) |
| 766 | return 1; |
| 767 | return 0; |
| 768 | } |
| 769 | |
| 770 | /* Remove references to dquots from inode - add dquot to list for freeing if needed */ |
| 771 | /* We can't race with anybody because we hold dqptr_sem for writing... */ |
Adrian Bunk | e5f00f4 | 2007-05-08 00:27:22 -0700 | [diff] [blame] | 772 | static int remove_inode_dquot_ref(struct inode *inode, int type, |
| 773 | struct list_head *tofree_head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | { |
| 775 | struct dquot *dquot = inode->i_dquot[type]; |
| 776 | |
| 777 | inode->i_dquot[type] = NODQUOT; |
| 778 | if (dquot != NODQUOT) { |
| 779 | if (dqput_blocks(dquot)) { |
| 780 | #ifdef __DQUOT_PARANOIA |
| 781 | if (atomic_read(&dquot->dq_count) != 1) |
| 782 | printk(KERN_WARNING "VFS: Adding dquot with dq_count %d to dispose list.\n", atomic_read(&dquot->dq_count)); |
| 783 | #endif |
| 784 | spin_lock(&dq_list_lock); |
| 785 | list_add(&dquot->dq_free, tofree_head); /* As dquot must have currently users it can't be on the free list... */ |
| 786 | spin_unlock(&dq_list_lock); |
| 787 | return 1; |
| 788 | } |
| 789 | else |
| 790 | dqput(dquot); /* We have guaranteed we won't block */ |
| 791 | } |
| 792 | return 0; |
| 793 | } |
| 794 | |
| 795 | /* Free list of dquots - called from inode.c */ |
| 796 | /* dquots are removed from inodes, no new references can be got so we are the only ones holding reference */ |
| 797 | static void put_dquot_list(struct list_head *tofree_head) |
| 798 | { |
| 799 | struct list_head *act_head; |
| 800 | struct dquot *dquot; |
| 801 | |
| 802 | act_head = tofree_head->next; |
| 803 | /* So now we have dquots on the list... Just free them */ |
| 804 | while (act_head != tofree_head) { |
| 805 | dquot = list_entry(act_head, struct dquot, dq_free); |
| 806 | act_head = act_head->next; |
| 807 | list_del_init(&dquot->dq_free); /* Remove dquot from the list so we won't have problems... */ |
| 808 | dqput(dquot); |
| 809 | } |
| 810 | } |
| 811 | |
Christoph Hellwig | fb58b73 | 2007-02-12 00:51:57 -0800 | [diff] [blame] | 812 | static void remove_dquot_ref(struct super_block *sb, int type, |
| 813 | struct list_head *tofree_head) |
| 814 | { |
| 815 | struct inode *inode; |
| 816 | |
| 817 | spin_lock(&inode_lock); |
| 818 | list_for_each_entry(inode, &sb->s_inodes, i_sb_list) { |
| 819 | if (!IS_NOQUOTA(inode)) |
| 820 | remove_inode_dquot_ref(inode, type, tofree_head); |
| 821 | } |
| 822 | spin_unlock(&inode_lock); |
| 823 | } |
| 824 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | /* Gather all references from inodes and drop them */ |
| 826 | static void drop_dquot_ref(struct super_block *sb, int type) |
| 827 | { |
| 828 | LIST_HEAD(tofree_head); |
| 829 | |
Christoph Hellwig | fb58b73 | 2007-02-12 00:51:57 -0800 | [diff] [blame] | 830 | if (sb->dq_op) { |
| 831 | down_write(&sb_dqopt(sb)->dqptr_sem); |
| 832 | remove_dquot_ref(sb, type, &tofree_head); |
| 833 | up_write(&sb_dqopt(sb)->dqptr_sem); |
| 834 | put_dquot_list(&tofree_head); |
| 835 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | } |
| 837 | |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 838 | static inline void dquot_incr_inodes(struct dquot *dquot, qsize_t number) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | { |
| 840 | dquot->dq_dqb.dqb_curinodes += number; |
| 841 | } |
| 842 | |
| 843 | static inline void dquot_incr_space(struct dquot *dquot, qsize_t number) |
| 844 | { |
| 845 | dquot->dq_dqb.dqb_curspace += number; |
| 846 | } |
| 847 | |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 848 | static inline void dquot_decr_inodes(struct dquot *dquot, qsize_t number) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | { |
| 850 | if (dquot->dq_dqb.dqb_curinodes > number) |
| 851 | dquot->dq_dqb.dqb_curinodes -= number; |
| 852 | else |
| 853 | dquot->dq_dqb.dqb_curinodes = 0; |
| 854 | if (dquot->dq_dqb.dqb_curinodes <= dquot->dq_dqb.dqb_isoftlimit) |
| 855 | dquot->dq_dqb.dqb_itime = (time_t) 0; |
| 856 | clear_bit(DQ_INODES_B, &dquot->dq_flags); |
| 857 | } |
| 858 | |
| 859 | static inline void dquot_decr_space(struct dquot *dquot, qsize_t number) |
| 860 | { |
| 861 | if (dquot->dq_dqb.dqb_curspace > number) |
| 862 | dquot->dq_dqb.dqb_curspace -= number; |
| 863 | else |
| 864 | dquot->dq_dqb.dqb_curspace = 0; |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 865 | if (dquot->dq_dqb.dqb_curspace <= dquot->dq_dqb.dqb_bsoftlimit) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | dquot->dq_dqb.dqb_btime = (time_t) 0; |
| 867 | clear_bit(DQ_BLKS_B, &dquot->dq_flags); |
| 868 | } |
| 869 | |
Jan Kara | c525460 | 2007-12-22 14:03:25 -0800 | [diff] [blame] | 870 | static int warning_issued(struct dquot *dquot, const int warntype) |
| 871 | { |
| 872 | int flag = (warntype == QUOTA_NL_BHARDWARN || |
| 873 | warntype == QUOTA_NL_BSOFTLONGWARN) ? DQ_BLKS_B : |
| 874 | ((warntype == QUOTA_NL_IHARDWARN || |
| 875 | warntype == QUOTA_NL_ISOFTLONGWARN) ? DQ_INODES_B : 0); |
| 876 | |
| 877 | if (!flag) |
| 878 | return 0; |
| 879 | return test_and_set_bit(flag, &dquot->dq_flags); |
| 880 | } |
| 881 | |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 882 | #ifdef CONFIG_PRINT_QUOTA_WARNING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | static int flag_print_warnings = 1; |
| 884 | |
| 885 | static inline int need_print_warning(struct dquot *dquot) |
| 886 | { |
| 887 | if (!flag_print_warnings) |
| 888 | return 0; |
| 889 | |
| 890 | switch (dquot->dq_type) { |
| 891 | case USRQUOTA: |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 892 | return current_fsuid() == dquot->dq_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | case GRPQUOTA: |
| 894 | return in_group_p(dquot->dq_id); |
| 895 | } |
| 896 | return 0; |
| 897 | } |
| 898 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | /* Print warning to user which exceeded quota */ |
Jan Kara | c525460 | 2007-12-22 14:03:25 -0800 | [diff] [blame] | 900 | static void print_warning(struct dquot *dquot, const int warntype) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | { |
| 902 | char *msg = NULL; |
Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 903 | struct tty_struct *tty; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 905 | if (warntype == QUOTA_NL_IHARDBELOW || |
| 906 | warntype == QUOTA_NL_ISOFTBELOW || |
| 907 | warntype == QUOTA_NL_BHARDBELOW || |
| 908 | warntype == QUOTA_NL_BSOFTBELOW || !need_print_warning(dquot)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | return; |
| 910 | |
Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 911 | tty = get_current_tty(); |
| 912 | if (!tty) |
Alan Cox | 452a00d | 2008-10-13 10:39:13 +0100 | [diff] [blame] | 913 | return; |
Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 914 | tty_write_message(tty, dquot->dq_sb->s_id); |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 915 | if (warntype == QUOTA_NL_ISOFTWARN || warntype == QUOTA_NL_BSOFTWARN) |
Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 916 | tty_write_message(tty, ": warning, "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | else |
Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 918 | tty_write_message(tty, ": write failed, "); |
| 919 | tty_write_message(tty, quotatypes[dquot->dq_type]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | switch (warntype) { |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 921 | case QUOTA_NL_IHARDWARN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | msg = " file limit reached.\r\n"; |
| 923 | break; |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 924 | case QUOTA_NL_ISOFTLONGWARN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | msg = " file quota exceeded too long.\r\n"; |
| 926 | break; |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 927 | case QUOTA_NL_ISOFTWARN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | msg = " file quota exceeded.\r\n"; |
| 929 | break; |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 930 | case QUOTA_NL_BHARDWARN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | msg = " block limit reached.\r\n"; |
| 932 | break; |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 933 | case QUOTA_NL_BSOFTLONGWARN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | msg = " block quota exceeded too long.\r\n"; |
| 935 | break; |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 936 | case QUOTA_NL_BSOFTWARN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | msg = " block quota exceeded.\r\n"; |
| 938 | break; |
| 939 | } |
Peter Zijlstra | 24ec839 | 2006-12-08 02:36:04 -0800 | [diff] [blame] | 940 | tty_write_message(tty, msg); |
Alan Cox | 452a00d | 2008-10-13 10:39:13 +0100 | [diff] [blame] | 941 | tty_kref_put(tty); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | } |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 943 | #endif |
| 944 | |
| 945 | #ifdef CONFIG_QUOTA_NETLINK_INTERFACE |
| 946 | |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 947 | /* Netlink family structure for quota */ |
| 948 | static struct genl_family quota_genl_family = { |
| 949 | .id = GENL_ID_GENERATE, |
| 950 | .hdrsize = 0, |
| 951 | .name = "VFS_DQUOT", |
| 952 | .version = 1, |
| 953 | .maxattr = QUOTA_NL_A_MAX, |
| 954 | }; |
| 955 | |
| 956 | /* Send warning to userspace about user which exceeded quota */ |
| 957 | static void send_warning(const struct dquot *dquot, const char warntype) |
| 958 | { |
| 959 | static atomic_t seq; |
| 960 | struct sk_buff *skb; |
| 961 | void *msg_head; |
| 962 | int ret; |
Jan Kara | 22dd483 | 2007-12-22 14:03:25 -0800 | [diff] [blame] | 963 | int msg_size = 4 * nla_total_size(sizeof(u32)) + |
| 964 | 2 * nla_total_size(sizeof(u64)); |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 965 | |
| 966 | /* We have to allocate using GFP_NOFS as we are called from a |
| 967 | * filesystem performing write and thus further recursion into |
| 968 | * the fs to free some data could cause deadlocks. */ |
Jan Kara | 22dd483 | 2007-12-22 14:03:25 -0800 | [diff] [blame] | 969 | skb = genlmsg_new(msg_size, GFP_NOFS); |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 970 | if (!skb) { |
| 971 | printk(KERN_ERR |
| 972 | "VFS: Not enough memory to send quota warning.\n"); |
| 973 | return; |
| 974 | } |
| 975 | msg_head = genlmsg_put(skb, 0, atomic_add_return(1, &seq), |
| 976 | "a_genl_family, 0, QUOTA_NL_C_WARNING); |
| 977 | if (!msg_head) { |
| 978 | printk(KERN_ERR |
| 979 | "VFS: Cannot store netlink header in quota warning.\n"); |
| 980 | goto err_out; |
| 981 | } |
| 982 | ret = nla_put_u32(skb, QUOTA_NL_A_QTYPE, dquot->dq_type); |
| 983 | if (ret) |
| 984 | goto attr_err_out; |
| 985 | ret = nla_put_u64(skb, QUOTA_NL_A_EXCESS_ID, dquot->dq_id); |
| 986 | if (ret) |
| 987 | goto attr_err_out; |
| 988 | ret = nla_put_u32(skb, QUOTA_NL_A_WARNING, warntype); |
| 989 | if (ret) |
| 990 | goto attr_err_out; |
| 991 | ret = nla_put_u32(skb, QUOTA_NL_A_DEV_MAJOR, |
| 992 | MAJOR(dquot->dq_sb->s_dev)); |
| 993 | if (ret) |
| 994 | goto attr_err_out; |
| 995 | ret = nla_put_u32(skb, QUOTA_NL_A_DEV_MINOR, |
| 996 | MINOR(dquot->dq_sb->s_dev)); |
| 997 | if (ret) |
| 998 | goto attr_err_out; |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 999 | ret = nla_put_u64(skb, QUOTA_NL_A_CAUSED_ID, current_uid()); |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1000 | if (ret) |
| 1001 | goto attr_err_out; |
| 1002 | genlmsg_end(skb, msg_head); |
| 1003 | |
| 1004 | ret = genlmsg_multicast(skb, 0, quota_genl_family.id, GFP_NOFS); |
| 1005 | if (ret < 0 && ret != -ESRCH) |
| 1006 | printk(KERN_ERR |
| 1007 | "VFS: Failed to send notification message: %d\n", ret); |
| 1008 | return; |
| 1009 | attr_err_out: |
Jan Kara | 22dd483 | 2007-12-22 14:03:25 -0800 | [diff] [blame] | 1010 | printk(KERN_ERR "VFS: Not enough space to compose quota message!\n"); |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1011 | err_out: |
| 1012 | kfree_skb(skb); |
| 1013 | } |
| 1014 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | |
Jan Kara | 087ee8d | 2007-12-17 16:20:26 -0800 | [diff] [blame] | 1016 | static inline void flush_warnings(struct dquot * const *dquots, char *warntype) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | { |
| 1018 | int i; |
| 1019 | |
| 1020 | for (i = 0; i < MAXQUOTAS; i++) |
Jan Kara | c525460 | 2007-12-22 14:03:25 -0800 | [diff] [blame] | 1021 | if (dquots[i] != NODQUOT && warntype[i] != QUOTA_NL_NOWARN && |
| 1022 | !warning_issued(dquots[i], warntype[i])) { |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1023 | #ifdef CONFIG_PRINT_QUOTA_WARNING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | print_warning(dquots[i], warntype[i]); |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1025 | #endif |
| 1026 | #ifdef CONFIG_QUOTA_NETLINK_INTERFACE |
| 1027 | send_warning(dquots[i], warntype[i]); |
| 1028 | #endif |
| 1029 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | } |
| 1031 | |
| 1032 | static inline char ignore_hardlimit(struct dquot *dquot) |
| 1033 | { |
| 1034 | struct mem_dqinfo *info = &sb_dqopt(dquot->dq_sb)->info[dquot->dq_type]; |
| 1035 | |
| 1036 | return capable(CAP_SYS_RESOURCE) && |
| 1037 | (info->dqi_format->qf_fmt_id != QFMT_VFS_OLD || !(info->dqi_flags & V1_DQF_RSQUASH)); |
| 1038 | } |
| 1039 | |
| 1040 | /* needs dq_data_lock */ |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 1041 | static int check_idq(struct dquot *dquot, qsize_t inodes, char *warntype) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | { |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1043 | *warntype = QUOTA_NL_NOWARN; |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1044 | if (!sb_has_quota_limits_enabled(dquot->dq_sb, dquot->dq_type) || |
| 1045 | test_bit(DQ_FAKE_B, &dquot->dq_flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | return QUOTA_OK; |
| 1047 | |
| 1048 | if (dquot->dq_dqb.dqb_ihardlimit && |
| 1049 | (dquot->dq_dqb.dqb_curinodes + inodes) > dquot->dq_dqb.dqb_ihardlimit && |
| 1050 | !ignore_hardlimit(dquot)) { |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1051 | *warntype = QUOTA_NL_IHARDWARN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | return NO_QUOTA; |
| 1053 | } |
| 1054 | |
| 1055 | if (dquot->dq_dqb.dqb_isoftlimit && |
| 1056 | (dquot->dq_dqb.dqb_curinodes + inodes) > dquot->dq_dqb.dqb_isoftlimit && |
| 1057 | dquot->dq_dqb.dqb_itime && get_seconds() >= dquot->dq_dqb.dqb_itime && |
| 1058 | !ignore_hardlimit(dquot)) { |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1059 | *warntype = QUOTA_NL_ISOFTLONGWARN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | return NO_QUOTA; |
| 1061 | } |
| 1062 | |
| 1063 | if (dquot->dq_dqb.dqb_isoftlimit && |
| 1064 | (dquot->dq_dqb.dqb_curinodes + inodes) > dquot->dq_dqb.dqb_isoftlimit && |
| 1065 | dquot->dq_dqb.dqb_itime == 0) { |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1066 | *warntype = QUOTA_NL_ISOFTWARN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | dquot->dq_dqb.dqb_itime = get_seconds() + sb_dqopt(dquot->dq_sb)->info[dquot->dq_type].dqi_igrace; |
| 1068 | } |
| 1069 | |
| 1070 | return QUOTA_OK; |
| 1071 | } |
| 1072 | |
| 1073 | /* needs dq_data_lock */ |
| 1074 | static int check_bdq(struct dquot *dquot, qsize_t space, int prealloc, char *warntype) |
| 1075 | { |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1076 | *warntype = QUOTA_NL_NOWARN; |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1077 | if (!sb_has_quota_limits_enabled(dquot->dq_sb, dquot->dq_type) || |
| 1078 | test_bit(DQ_FAKE_B, &dquot->dq_flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | return QUOTA_OK; |
| 1080 | |
| 1081 | if (dquot->dq_dqb.dqb_bhardlimit && |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 1082 | dquot->dq_dqb.dqb_curspace + space > dquot->dq_dqb.dqb_bhardlimit && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | !ignore_hardlimit(dquot)) { |
| 1084 | if (!prealloc) |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1085 | *warntype = QUOTA_NL_BHARDWARN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | return NO_QUOTA; |
| 1087 | } |
| 1088 | |
| 1089 | if (dquot->dq_dqb.dqb_bsoftlimit && |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 1090 | dquot->dq_dqb.dqb_curspace + space > dquot->dq_dqb.dqb_bsoftlimit && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | dquot->dq_dqb.dqb_btime && get_seconds() >= dquot->dq_dqb.dqb_btime && |
| 1092 | !ignore_hardlimit(dquot)) { |
| 1093 | if (!prealloc) |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1094 | *warntype = QUOTA_NL_BSOFTLONGWARN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | return NO_QUOTA; |
| 1096 | } |
| 1097 | |
| 1098 | if (dquot->dq_dqb.dqb_bsoftlimit && |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 1099 | dquot->dq_dqb.dqb_curspace + space > dquot->dq_dqb.dqb_bsoftlimit && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | dquot->dq_dqb.dqb_btime == 0) { |
| 1101 | if (!prealloc) { |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1102 | *warntype = QUOTA_NL_BSOFTWARN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | dquot->dq_dqb.dqb_btime = get_seconds() + sb_dqopt(dquot->dq_sb)->info[dquot->dq_type].dqi_bgrace; |
| 1104 | } |
| 1105 | else |
| 1106 | /* |
| 1107 | * We don't allow preallocation to exceed softlimit so exceeding will |
| 1108 | * be always printed |
| 1109 | */ |
| 1110 | return NO_QUOTA; |
| 1111 | } |
| 1112 | |
| 1113 | return QUOTA_OK; |
| 1114 | } |
| 1115 | |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 1116 | static int info_idq_free(struct dquot *dquot, qsize_t inodes) |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1117 | { |
| 1118 | if (test_bit(DQ_FAKE_B, &dquot->dq_flags) || |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1119 | dquot->dq_dqb.dqb_curinodes <= dquot->dq_dqb.dqb_isoftlimit || |
| 1120 | !sb_has_quota_limits_enabled(dquot->dq_sb, dquot->dq_type)) |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1121 | return QUOTA_NL_NOWARN; |
| 1122 | |
| 1123 | if (dquot->dq_dqb.dqb_curinodes - inodes <= dquot->dq_dqb.dqb_isoftlimit) |
| 1124 | return QUOTA_NL_ISOFTBELOW; |
| 1125 | if (dquot->dq_dqb.dqb_curinodes >= dquot->dq_dqb.dqb_ihardlimit && |
| 1126 | dquot->dq_dqb.dqb_curinodes - inodes < dquot->dq_dqb.dqb_ihardlimit) |
| 1127 | return QUOTA_NL_IHARDBELOW; |
| 1128 | return QUOTA_NL_NOWARN; |
| 1129 | } |
| 1130 | |
| 1131 | static int info_bdq_free(struct dquot *dquot, qsize_t space) |
| 1132 | { |
| 1133 | if (test_bit(DQ_FAKE_B, &dquot->dq_flags) || |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 1134 | dquot->dq_dqb.dqb_curspace <= dquot->dq_dqb.dqb_bsoftlimit) |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1135 | return QUOTA_NL_NOWARN; |
| 1136 | |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 1137 | if (dquot->dq_dqb.dqb_curspace - space <= dquot->dq_dqb.dqb_bsoftlimit) |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1138 | return QUOTA_NL_BSOFTBELOW; |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 1139 | if (dquot->dq_dqb.dqb_curspace >= dquot->dq_dqb.dqb_bhardlimit && |
| 1140 | dquot->dq_dqb.dqb_curspace - space < dquot->dq_dqb.dqb_bhardlimit) |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1141 | return QUOTA_NL_BHARDBELOW; |
| 1142 | return QUOTA_NL_NOWARN; |
| 1143 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | /* |
| 1145 | * Initialize quota pointers in inode |
| 1146 | * Transaction must be started at entry |
| 1147 | */ |
| 1148 | int dquot_initialize(struct inode *inode, int type) |
| 1149 | { |
| 1150 | unsigned int id = 0; |
| 1151 | int cnt, ret = 0; |
| 1152 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1153 | /* First test before acquiring mutex - solves deadlocks when we |
| 1154 | * re-enter the quota code and are already holding the mutex */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | if (IS_NOQUOTA(inode)) |
| 1156 | return 0; |
| 1157 | down_write(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1158 | /* Having dqptr_sem we know NOQUOTA flags can't be altered... */ |
| 1159 | if (IS_NOQUOTA(inode)) |
| 1160 | goto out_err; |
| 1161 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1162 | if (type != -1 && cnt != type) |
| 1163 | continue; |
| 1164 | if (inode->i_dquot[cnt] == NODQUOT) { |
| 1165 | switch (cnt) { |
| 1166 | case USRQUOTA: |
| 1167 | id = inode->i_uid; |
| 1168 | break; |
| 1169 | case GRPQUOTA: |
| 1170 | id = inode->i_gid; |
| 1171 | break; |
| 1172 | } |
| 1173 | inode->i_dquot[cnt] = dqget(inode->i_sb, id, cnt); |
| 1174 | } |
| 1175 | } |
| 1176 | out_err: |
| 1177 | up_write(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1178 | return ret; |
| 1179 | } |
| 1180 | |
| 1181 | /* |
| 1182 | * Release all quotas referenced by inode |
| 1183 | * Transaction must be started at an entry |
| 1184 | */ |
| 1185 | int dquot_drop(struct inode *inode) |
| 1186 | { |
| 1187 | int cnt; |
| 1188 | |
| 1189 | down_write(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1190 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1191 | if (inode->i_dquot[cnt] != NODQUOT) { |
| 1192 | dqput(inode->i_dquot[cnt]); |
| 1193 | inode->i_dquot[cnt] = NODQUOT; |
| 1194 | } |
| 1195 | } |
| 1196 | up_write(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1197 | return 0; |
| 1198 | } |
| 1199 | |
Jan Kara | b85f4b8 | 2008-07-25 01:46:50 -0700 | [diff] [blame] | 1200 | /* Wrapper to remove references to quota structures from inode */ |
| 1201 | void vfs_dq_drop(struct inode *inode) |
| 1202 | { |
| 1203 | /* Here we can get arbitrary inode from clear_inode() so we have |
| 1204 | * to be careful. OTOH we don't need locking as quota operations |
| 1205 | * are allowed to change only at mount time */ |
| 1206 | if (!IS_NOQUOTA(inode) && inode->i_sb && inode->i_sb->dq_op |
| 1207 | && inode->i_sb->dq_op->drop) { |
| 1208 | int cnt; |
| 1209 | /* Test before calling to rule out calls from proc and such |
| 1210 | * where we are not allowed to block. Note that this is |
| 1211 | * actually reliable test even without the lock - the caller |
| 1212 | * must assure that nobody can come after the DQUOT_DROP and |
| 1213 | * add quota pointers back anyway */ |
| 1214 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) |
| 1215 | if (inode->i_dquot[cnt] != NODQUOT) |
| 1216 | break; |
| 1217 | if (cnt < MAXQUOTAS) |
| 1218 | inode->i_sb->dq_op->drop(inode); |
| 1219 | } |
| 1220 | } |
| 1221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | /* |
| 1223 | * Following four functions update i_blocks+i_bytes fields and |
| 1224 | * quota information (together with appropriate checks) |
| 1225 | * NOTE: We absolutely rely on the fact that caller dirties |
| 1226 | * the inode (usually macros in quotaops.h care about this) and |
| 1227 | * holds a handle for the current transaction so that dquot write and |
| 1228 | * inode write go into the same transaction. |
| 1229 | */ |
| 1230 | |
| 1231 | /* |
| 1232 | * This operation can block, but only after everything is updated |
| 1233 | */ |
| 1234 | int dquot_alloc_space(struct inode *inode, qsize_t number, int warn) |
| 1235 | { |
| 1236 | int cnt, ret = NO_QUOTA; |
| 1237 | char warntype[MAXQUOTAS]; |
| 1238 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1239 | /* First test before acquiring mutex - solves deadlocks when we |
| 1240 | * re-enter the quota code and are already holding the mutex */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | if (IS_NOQUOTA(inode)) { |
| 1242 | out_add: |
| 1243 | inode_add_bytes(inode, number); |
| 1244 | return QUOTA_OK; |
| 1245 | } |
| 1246 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1247 | warntype[cnt] = QUOTA_NL_NOWARN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | |
| 1249 | down_read(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1250 | if (IS_NOQUOTA(inode)) { /* Now we can do reliable test... */ |
| 1251 | up_read(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1252 | goto out_add; |
| 1253 | } |
| 1254 | spin_lock(&dq_data_lock); |
| 1255 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1256 | if (inode->i_dquot[cnt] == NODQUOT) |
| 1257 | continue; |
| 1258 | if (check_bdq(inode->i_dquot[cnt], number, warn, warntype+cnt) == NO_QUOTA) |
| 1259 | goto warn_put_all; |
| 1260 | } |
| 1261 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1262 | if (inode->i_dquot[cnt] == NODQUOT) |
| 1263 | continue; |
| 1264 | dquot_incr_space(inode->i_dquot[cnt], number); |
| 1265 | } |
| 1266 | inode_add_bytes(inode, number); |
| 1267 | ret = QUOTA_OK; |
| 1268 | warn_put_all: |
| 1269 | spin_unlock(&dq_data_lock); |
| 1270 | if (ret == QUOTA_OK) |
| 1271 | /* Dirtify all the dquots - this can block when journalling */ |
| 1272 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) |
| 1273 | if (inode->i_dquot[cnt]) |
| 1274 | mark_dquot_dirty(inode->i_dquot[cnt]); |
| 1275 | flush_warnings(inode->i_dquot, warntype); |
| 1276 | up_read(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1277 | return ret; |
| 1278 | } |
| 1279 | |
| 1280 | /* |
| 1281 | * This operation can block, but only after everything is updated |
| 1282 | */ |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 1283 | int dquot_alloc_inode(const struct inode *inode, qsize_t number) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | { |
| 1285 | int cnt, ret = NO_QUOTA; |
| 1286 | char warntype[MAXQUOTAS]; |
| 1287 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1288 | /* First test before acquiring mutex - solves deadlocks when we |
| 1289 | * re-enter the quota code and are already holding the mutex */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | if (IS_NOQUOTA(inode)) |
| 1291 | return QUOTA_OK; |
| 1292 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 1293 | warntype[cnt] = QUOTA_NL_NOWARN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | down_read(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1295 | if (IS_NOQUOTA(inode)) { |
| 1296 | up_read(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1297 | return QUOTA_OK; |
| 1298 | } |
| 1299 | spin_lock(&dq_data_lock); |
| 1300 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1301 | if (inode->i_dquot[cnt] == NODQUOT) |
| 1302 | continue; |
| 1303 | if (check_idq(inode->i_dquot[cnt], number, warntype+cnt) == NO_QUOTA) |
| 1304 | goto warn_put_all; |
| 1305 | } |
| 1306 | |
| 1307 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1308 | if (inode->i_dquot[cnt] == NODQUOT) |
| 1309 | continue; |
| 1310 | dquot_incr_inodes(inode->i_dquot[cnt], number); |
| 1311 | } |
| 1312 | ret = QUOTA_OK; |
| 1313 | warn_put_all: |
| 1314 | spin_unlock(&dq_data_lock); |
| 1315 | if (ret == QUOTA_OK) |
| 1316 | /* Dirtify all the dquots - this can block when journalling */ |
| 1317 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) |
| 1318 | if (inode->i_dquot[cnt]) |
| 1319 | mark_dquot_dirty(inode->i_dquot[cnt]); |
Jan Kara | 087ee8d | 2007-12-17 16:20:26 -0800 | [diff] [blame] | 1320 | flush_warnings(inode->i_dquot, warntype); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | up_read(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1322 | return ret; |
| 1323 | } |
| 1324 | |
| 1325 | /* |
| 1326 | * This operation can block, but only after everything is updated |
| 1327 | */ |
| 1328 | int dquot_free_space(struct inode *inode, qsize_t number) |
| 1329 | { |
| 1330 | unsigned int cnt; |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1331 | char warntype[MAXQUOTAS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1333 | /* First test before acquiring mutex - solves deadlocks when we |
| 1334 | * re-enter the quota code and are already holding the mutex */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | if (IS_NOQUOTA(inode)) { |
| 1336 | out_sub: |
| 1337 | inode_sub_bytes(inode, number); |
| 1338 | return QUOTA_OK; |
| 1339 | } |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | down_read(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1342 | /* Now recheck reliably when holding dqptr_sem */ |
| 1343 | if (IS_NOQUOTA(inode)) { |
| 1344 | up_read(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1345 | goto out_sub; |
| 1346 | } |
| 1347 | spin_lock(&dq_data_lock); |
| 1348 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1349 | if (inode->i_dquot[cnt] == NODQUOT) |
| 1350 | continue; |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1351 | warntype[cnt] = info_bdq_free(inode->i_dquot[cnt], number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | dquot_decr_space(inode->i_dquot[cnt], number); |
| 1353 | } |
| 1354 | inode_sub_bytes(inode, number); |
| 1355 | spin_unlock(&dq_data_lock); |
| 1356 | /* Dirtify all the dquots - this can block when journalling */ |
| 1357 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) |
| 1358 | if (inode->i_dquot[cnt]) |
| 1359 | mark_dquot_dirty(inode->i_dquot[cnt]); |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1360 | flush_warnings(inode->i_dquot, warntype); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | up_read(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1362 | return QUOTA_OK; |
| 1363 | } |
| 1364 | |
| 1365 | /* |
| 1366 | * This operation can block, but only after everything is updated |
| 1367 | */ |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 1368 | int dquot_free_inode(const struct inode *inode, qsize_t number) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | { |
| 1370 | unsigned int cnt; |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1371 | char warntype[MAXQUOTAS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1373 | /* First test before acquiring mutex - solves deadlocks when we |
| 1374 | * re-enter the quota code and are already holding the mutex */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | if (IS_NOQUOTA(inode)) |
| 1376 | return QUOTA_OK; |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | down_read(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1379 | /* Now recheck reliably when holding dqptr_sem */ |
| 1380 | if (IS_NOQUOTA(inode)) { |
| 1381 | up_read(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1382 | return QUOTA_OK; |
| 1383 | } |
| 1384 | spin_lock(&dq_data_lock); |
| 1385 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1386 | if (inode->i_dquot[cnt] == NODQUOT) |
| 1387 | continue; |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1388 | warntype[cnt] = info_idq_free(inode->i_dquot[cnt], number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | dquot_decr_inodes(inode->i_dquot[cnt], number); |
| 1390 | } |
| 1391 | spin_unlock(&dq_data_lock); |
| 1392 | /* Dirtify all the dquots - this can block when journalling */ |
| 1393 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) |
| 1394 | if (inode->i_dquot[cnt]) |
| 1395 | mark_dquot_dirty(inode->i_dquot[cnt]); |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1396 | flush_warnings(inode->i_dquot, warntype); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | up_read(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1398 | return QUOTA_OK; |
| 1399 | } |
| 1400 | |
| 1401 | /* |
| 1402 | * Transfer the number of inode and blocks from one diskquota to an other. |
| 1403 | * |
| 1404 | * This operation can block, but only after everything is updated |
| 1405 | * A transaction must be started when entering this function. |
| 1406 | */ |
| 1407 | int dquot_transfer(struct inode *inode, struct iattr *iattr) |
| 1408 | { |
| 1409 | qsize_t space; |
| 1410 | struct dquot *transfer_from[MAXQUOTAS]; |
| 1411 | struct dquot *transfer_to[MAXQUOTAS]; |
| 1412 | int cnt, ret = NO_QUOTA, chuid = (iattr->ia_valid & ATTR_UID) && inode->i_uid != iattr->ia_uid, |
| 1413 | chgid = (iattr->ia_valid & ATTR_GID) && inode->i_gid != iattr->ia_gid; |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1414 | char warntype_to[MAXQUOTAS]; |
| 1415 | char warntype_from_inodes[MAXQUOTAS], warntype_from_space[MAXQUOTAS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1417 | /* First test before acquiring mutex - solves deadlocks when we |
| 1418 | * re-enter the quota code and are already holding the mutex */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | if (IS_NOQUOTA(inode)) |
| 1420 | return QUOTA_OK; |
| 1421 | /* Clear the arrays */ |
| 1422 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1423 | transfer_to[cnt] = transfer_from[cnt] = NODQUOT; |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1424 | warntype_to[cnt] = QUOTA_NL_NOWARN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | } |
| 1426 | down_write(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1427 | /* Now recheck reliably when holding dqptr_sem */ |
| 1428 | if (IS_NOQUOTA(inode)) { /* File without quota accounting? */ |
| 1429 | up_write(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1430 | return QUOTA_OK; |
| 1431 | } |
| 1432 | /* First build the transfer_to list - here we can block on |
| 1433 | * reading/instantiating of dquots. We know that the transaction for |
| 1434 | * us was already started so we don't violate lock ranking here */ |
| 1435 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1436 | switch (cnt) { |
| 1437 | case USRQUOTA: |
| 1438 | if (!chuid) |
| 1439 | continue; |
| 1440 | transfer_to[cnt] = dqget(inode->i_sb, iattr->ia_uid, cnt); |
| 1441 | break; |
| 1442 | case GRPQUOTA: |
| 1443 | if (!chgid) |
| 1444 | continue; |
| 1445 | transfer_to[cnt] = dqget(inode->i_sb, iattr->ia_gid, cnt); |
| 1446 | break; |
| 1447 | } |
| 1448 | } |
| 1449 | spin_lock(&dq_data_lock); |
| 1450 | space = inode_get_bytes(inode); |
| 1451 | /* Build the transfer_from list and check the limits */ |
| 1452 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1453 | if (transfer_to[cnt] == NODQUOT) |
| 1454 | continue; |
| 1455 | transfer_from[cnt] = inode->i_dquot[cnt]; |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1456 | if (check_idq(transfer_to[cnt], 1, warntype_to + cnt) == |
| 1457 | NO_QUOTA || check_bdq(transfer_to[cnt], space, 0, |
| 1458 | warntype_to + cnt) == NO_QUOTA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | goto warn_put_all; |
| 1460 | } |
| 1461 | |
| 1462 | /* |
| 1463 | * Finally perform the needed transfer from transfer_from to transfer_to |
| 1464 | */ |
| 1465 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1466 | /* |
| 1467 | * Skip changes for same uid or gid or for turned off quota-type. |
| 1468 | */ |
| 1469 | if (transfer_to[cnt] == NODQUOT) |
| 1470 | continue; |
| 1471 | |
| 1472 | /* Due to IO error we might not have transfer_from[] structure */ |
| 1473 | if (transfer_from[cnt]) { |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1474 | warntype_from_inodes[cnt] = |
| 1475 | info_idq_free(transfer_from[cnt], 1); |
| 1476 | warntype_from_space[cnt] = |
| 1477 | info_bdq_free(transfer_from[cnt], space); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | dquot_decr_inodes(transfer_from[cnt], 1); |
| 1479 | dquot_decr_space(transfer_from[cnt], space); |
| 1480 | } |
| 1481 | |
| 1482 | dquot_incr_inodes(transfer_to[cnt], 1); |
| 1483 | dquot_incr_space(transfer_to[cnt], space); |
| 1484 | |
| 1485 | inode->i_dquot[cnt] = transfer_to[cnt]; |
| 1486 | } |
| 1487 | ret = QUOTA_OK; |
| 1488 | warn_put_all: |
| 1489 | spin_unlock(&dq_data_lock); |
| 1490 | /* Dirtify all the dquots - this can block when journalling */ |
| 1491 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1492 | if (transfer_from[cnt]) |
| 1493 | mark_dquot_dirty(transfer_from[cnt]); |
| 1494 | if (transfer_to[cnt]) |
| 1495 | mark_dquot_dirty(transfer_to[cnt]); |
| 1496 | } |
Jan Kara | 657d3bf | 2008-07-25 01:46:52 -0700 | [diff] [blame] | 1497 | flush_warnings(transfer_to, warntype_to); |
| 1498 | flush_warnings(transfer_from, warntype_from_inodes); |
| 1499 | flush_warnings(transfer_from, warntype_from_space); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | |
| 1501 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1502 | if (ret == QUOTA_OK && transfer_from[cnt] != NODQUOT) |
| 1503 | dqput(transfer_from[cnt]); |
| 1504 | if (ret == NO_QUOTA && transfer_to[cnt] != NODQUOT) |
| 1505 | dqput(transfer_to[cnt]); |
| 1506 | } |
| 1507 | up_write(&sb_dqopt(inode->i_sb)->dqptr_sem); |
| 1508 | return ret; |
| 1509 | } |
| 1510 | |
Jan Kara | b85f4b8 | 2008-07-25 01:46:50 -0700 | [diff] [blame] | 1511 | /* Wrapper for transferring ownership of an inode */ |
| 1512 | int vfs_dq_transfer(struct inode *inode, struct iattr *iattr) |
| 1513 | { |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1514 | if (sb_any_quota_active(inode->i_sb) && !IS_NOQUOTA(inode)) { |
Jan Kara | b85f4b8 | 2008-07-25 01:46:50 -0700 | [diff] [blame] | 1515 | vfs_dq_init(inode); |
| 1516 | if (inode->i_sb->dq_op->transfer(inode, iattr) == NO_QUOTA) |
| 1517 | return 1; |
| 1518 | } |
| 1519 | return 0; |
| 1520 | } |
| 1521 | |
| 1522 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | /* |
| 1524 | * Write info of quota file to disk |
| 1525 | */ |
| 1526 | int dquot_commit_info(struct super_block *sb, int type) |
| 1527 | { |
| 1528 | int ret; |
| 1529 | struct quota_info *dqopt = sb_dqopt(sb); |
| 1530 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1531 | mutex_lock(&dqopt->dqio_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | ret = dqopt->ops[type]->write_file_info(sb, type); |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1533 | mutex_unlock(&dqopt->dqio_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | return ret; |
| 1535 | } |
| 1536 | |
| 1537 | /* |
| 1538 | * Definitions of diskquota operations. |
| 1539 | */ |
| 1540 | struct dquot_operations dquot_operations = { |
| 1541 | .initialize = dquot_initialize, |
| 1542 | .drop = dquot_drop, |
| 1543 | .alloc_space = dquot_alloc_space, |
| 1544 | .alloc_inode = dquot_alloc_inode, |
| 1545 | .free_space = dquot_free_space, |
| 1546 | .free_inode = dquot_free_inode, |
| 1547 | .transfer = dquot_transfer, |
| 1548 | .write_dquot = dquot_commit, |
| 1549 | .acquire_dquot = dquot_acquire, |
| 1550 | .release_dquot = dquot_release, |
| 1551 | .mark_dirty = dquot_mark_dquot_dirty, |
Jan Kara | 74f783a | 2008-08-19 14:51:22 +0200 | [diff] [blame] | 1552 | .write_info = dquot_commit_info, |
| 1553 | .alloc_dquot = dquot_alloc, |
| 1554 | .destroy_dquot = dquot_destroy, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | }; |
| 1556 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | /* |
| 1558 | * Turn quota off on a device. type == -1 ==> quotaoff for all types (umount) |
| 1559 | */ |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1560 | int vfs_quota_disable(struct super_block *sb, int type, unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1561 | { |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1562 | int cnt, ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | struct quota_info *dqopt = sb_dqopt(sb); |
| 1564 | struct inode *toputinode[MAXQUOTAS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1565 | |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1566 | /* Cannot turn off usage accounting without turning off limits, or |
| 1567 | * suspend quotas and simultaneously turn quotas off. */ |
| 1568 | if ((flags & DQUOT_USAGE_ENABLED && !(flags & DQUOT_LIMITS_ENABLED)) |
| 1569 | || (flags & DQUOT_SUSPENDED && flags & (DQUOT_LIMITS_ENABLED | |
| 1570 | DQUOT_USAGE_ENABLED))) |
| 1571 | return -EINVAL; |
| 1572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | /* We need to serialize quota_off() for device */ |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1574 | mutex_lock(&dqopt->dqonoff_mutex); |
Jan Kara | 9377abd | 2008-05-12 14:02:08 -0700 | [diff] [blame] | 1575 | |
| 1576 | /* |
| 1577 | * Skip everything if there's nothing to do. We have to do this because |
| 1578 | * sometimes we are called when fill_super() failed and calling |
| 1579 | * sync_fs() in such cases does no good. |
| 1580 | */ |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1581 | if (!sb_any_quota_loaded(sb)) { |
Jan Kara | 9377abd | 2008-05-12 14:02:08 -0700 | [diff] [blame] | 1582 | mutex_unlock(&dqopt->dqonoff_mutex); |
| 1583 | return 0; |
| 1584 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1586 | toputinode[cnt] = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | if (type != -1 && cnt != type) |
| 1588 | continue; |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1589 | if (!sb_has_quota_loaded(sb, cnt)) |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1590 | continue; |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1591 | |
| 1592 | if (flags & DQUOT_SUSPENDED) { |
| 1593 | dqopt->flags |= |
| 1594 | dquot_state_flag(DQUOT_SUSPENDED, cnt); |
| 1595 | } else { |
| 1596 | dqopt->flags &= ~dquot_state_flag(flags, cnt); |
| 1597 | /* Turning off suspended quotas? */ |
| 1598 | if (!sb_has_quota_loaded(sb, cnt) && |
| 1599 | sb_has_quota_suspended(sb, cnt)) { |
| 1600 | dqopt->flags &= ~dquot_state_flag( |
| 1601 | DQUOT_SUSPENDED, cnt); |
| 1602 | iput(dqopt->files[cnt]); |
| 1603 | dqopt->files[cnt] = NULL; |
| 1604 | continue; |
| 1605 | } |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1606 | } |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1607 | |
| 1608 | /* We still have to keep quota loaded? */ |
| 1609 | if (sb_has_quota_loaded(sb, cnt) && !(flags & DQUOT_SUSPENDED)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1610 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | |
| 1612 | /* Note: these are blocking operations */ |
| 1613 | drop_dquot_ref(sb, cnt); |
| 1614 | invalidate_dquots(sb, cnt); |
| 1615 | /* |
| 1616 | * Now all dquots should be invalidated, all writes done so we should be only |
| 1617 | * users of the info. No locks needed. |
| 1618 | */ |
| 1619 | if (info_dirty(&dqopt->info[cnt])) |
| 1620 | sb->dq_op->write_info(sb, cnt); |
| 1621 | if (dqopt->ops[cnt]->free_file_info) |
| 1622 | dqopt->ops[cnt]->free_file_info(sb, cnt); |
| 1623 | put_quota_format(dqopt->info[cnt].dqi_format); |
| 1624 | |
| 1625 | toputinode[cnt] = dqopt->files[cnt]; |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1626 | if (!sb_has_quota_loaded(sb, cnt)) |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1627 | dqopt->files[cnt] = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | dqopt->info[cnt].dqi_flags = 0; |
| 1629 | dqopt->info[cnt].dqi_igrace = 0; |
| 1630 | dqopt->info[cnt].dqi_bgrace = 0; |
| 1631 | dqopt->ops[cnt] = NULL; |
| 1632 | } |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1633 | mutex_unlock(&dqopt->dqonoff_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | /* Sync the superblock so that buffers with quota data are written to |
Al Viro | 7b7b1ac | 2005-11-07 17:13:39 -0500 | [diff] [blame] | 1635 | * disk (and so userspace sees correct data afterwards). */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | if (sb->s_op->sync_fs) |
| 1637 | sb->s_op->sync_fs(sb, 1); |
| 1638 | sync_blockdev(sb->s_bdev); |
| 1639 | /* Now the quota files are just ordinary files and we can set the |
| 1640 | * inode flags back. Moreover we discard the pagecache so that |
| 1641 | * userspace sees the writes we did bypassing the pagecache. We |
| 1642 | * must also discard the blockdev buffers so that we see the |
| 1643 | * changes done by userspace on the next quotaon() */ |
| 1644 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) |
| 1645 | if (toputinode[cnt]) { |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1646 | mutex_lock(&dqopt->dqonoff_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | /* If quota was reenabled in the meantime, we have |
| 1648 | * nothing to do */ |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1649 | if (!sb_has_quota_loaded(sb, cnt)) { |
Jan Kara | 7925409 | 2007-05-16 22:11:19 -0700 | [diff] [blame] | 1650 | mutex_lock_nested(&toputinode[cnt]->i_mutex, I_MUTEX_QUOTA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | toputinode[cnt]->i_flags &= ~(S_IMMUTABLE | |
| 1652 | S_NOATIME | S_NOQUOTA); |
| 1653 | truncate_inode_pages(&toputinode[cnt]->i_data, 0); |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1654 | mutex_unlock(&toputinode[cnt]->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | mark_inode_dirty(toputinode[cnt]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | } |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1657 | mutex_unlock(&dqopt->dqonoff_mutex); |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1658 | /* On remount RO, we keep the inode pointer so that we |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1659 | * can reenable quota on the subsequent remount RW. We |
| 1660 | * have to check 'flags' variable and not use sb_has_ |
| 1661 | * function because another quotaon / quotaoff could |
| 1662 | * change global state before we got here. We refuse |
| 1663 | * to suspend quotas when there is pending delete on |
| 1664 | * the quota file... */ |
| 1665 | if (!(flags & DQUOT_SUSPENDED)) |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1666 | iput(toputinode[cnt]); |
| 1667 | else if (!toputinode[cnt]->i_nlink) |
| 1668 | ret = -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | } |
| 1670 | if (sb->s_bdev) |
Peter Zijlstra | f98393a | 2007-05-06 14:49:54 -0700 | [diff] [blame] | 1671 | invalidate_bdev(sb->s_bdev); |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1672 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1673 | } |
| 1674 | |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1675 | int vfs_quota_off(struct super_block *sb, int type, int remount) |
| 1676 | { |
| 1677 | return vfs_quota_disable(sb, type, remount ? DQUOT_SUSPENDED : |
| 1678 | (DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED)); |
| 1679 | } |
| 1680 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | /* |
| 1682 | * Turn quotas on on a device |
| 1683 | */ |
| 1684 | |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1685 | /* |
| 1686 | * Helper function to turn quotas on when we already have the inode of |
| 1687 | * quota file and no quota information is loaded. |
| 1688 | */ |
| 1689 | static int vfs_load_quota_inode(struct inode *inode, int type, int format_id, |
| 1690 | unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1691 | { |
| 1692 | struct quota_format_type *fmt = find_quota_format(format_id); |
| 1693 | struct super_block *sb = inode->i_sb; |
| 1694 | struct quota_info *dqopt = sb_dqopt(sb); |
| 1695 | int error; |
| 1696 | int oldflags = -1; |
| 1697 | |
| 1698 | if (!fmt) |
| 1699 | return -ESRCH; |
| 1700 | if (!S_ISREG(inode->i_mode)) { |
| 1701 | error = -EACCES; |
| 1702 | goto out_fmt; |
| 1703 | } |
| 1704 | if (IS_RDONLY(inode)) { |
| 1705 | error = -EROFS; |
| 1706 | goto out_fmt; |
| 1707 | } |
| 1708 | if (!sb->s_op->quota_write || !sb->s_op->quota_read) { |
| 1709 | error = -EINVAL; |
| 1710 | goto out_fmt; |
| 1711 | } |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1712 | /* Usage always has to be set... */ |
| 1713 | if (!(flags & DQUOT_USAGE_ENABLED)) { |
| 1714 | error = -EINVAL; |
| 1715 | goto out_fmt; |
| 1716 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | |
| 1718 | /* As we bypass the pagecache we must now flush the inode so that |
| 1719 | * we see all the changes from userspace... */ |
| 1720 | write_inode_now(inode, 1); |
| 1721 | /* And now flush the block cache so that kernel sees the changes */ |
Peter Zijlstra | f98393a | 2007-05-06 14:49:54 -0700 | [diff] [blame] | 1722 | invalidate_bdev(sb->s_bdev); |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1723 | mutex_lock(&inode->i_mutex); |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1724 | mutex_lock(&dqopt->dqonoff_mutex); |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1725 | if (sb_has_quota_loaded(sb, type)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1726 | error = -EBUSY; |
| 1727 | goto out_lock; |
| 1728 | } |
| 1729 | /* We don't want quota and atime on quota files (deadlocks possible) |
| 1730 | * Also nobody should write to the file - we use special IO operations |
| 1731 | * which ignore the immutable bit. */ |
| 1732 | down_write(&dqopt->dqptr_sem); |
| 1733 | oldflags = inode->i_flags & (S_NOATIME | S_IMMUTABLE | S_NOQUOTA); |
| 1734 | inode->i_flags |= S_NOQUOTA | S_NOATIME | S_IMMUTABLE; |
| 1735 | up_write(&dqopt->dqptr_sem); |
Jan Kara | 31e7ad6 | 2005-04-16 15:25:46 -0700 | [diff] [blame] | 1736 | sb->dq_op->drop(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | |
| 1738 | error = -EIO; |
| 1739 | dqopt->files[type] = igrab(inode); |
| 1740 | if (!dqopt->files[type]) |
| 1741 | goto out_lock; |
| 1742 | error = -EINVAL; |
| 1743 | if (!fmt->qf_ops->check_quota_file(sb, type)) |
| 1744 | goto out_file_init; |
| 1745 | |
| 1746 | dqopt->ops[type] = fmt->qf_ops; |
| 1747 | dqopt->info[type].dqi_format = fmt; |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1748 | dqopt->info[type].dqi_fmt_id = format_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | INIT_LIST_HEAD(&dqopt->info[type].dqi_dirty_list); |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1750 | mutex_lock(&dqopt->dqio_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | if ((error = dqopt->ops[type]->read_file_info(sb, type)) < 0) { |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1752 | mutex_unlock(&dqopt->dqio_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | goto out_file_init; |
| 1754 | } |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1755 | mutex_unlock(&dqopt->dqio_mutex); |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1756 | mutex_unlock(&inode->i_mutex); |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1757 | dqopt->flags |= dquot_state_flag(flags, type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | |
| 1759 | add_dquot_ref(sb, type); |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1760 | mutex_unlock(&dqopt->dqonoff_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1761 | |
| 1762 | return 0; |
| 1763 | |
| 1764 | out_file_init: |
| 1765 | dqopt->files[type] = NULL; |
| 1766 | iput(inode); |
| 1767 | out_lock: |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1768 | mutex_unlock(&dqopt->dqonoff_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | if (oldflags != -1) { |
| 1770 | down_write(&dqopt->dqptr_sem); |
| 1771 | /* Set the flags back (in the case of accidental quotaon() |
| 1772 | * on a wrong file we don't want to mess up the flags) */ |
| 1773 | inode->i_flags &= ~(S_NOATIME | S_NOQUOTA | S_IMMUTABLE); |
| 1774 | inode->i_flags |= oldflags; |
| 1775 | up_write(&dqopt->dqptr_sem); |
| 1776 | } |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 1777 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | out_fmt: |
| 1779 | put_quota_format(fmt); |
| 1780 | |
| 1781 | return error; |
| 1782 | } |
| 1783 | |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1784 | /* Reenable quotas on remount RW */ |
| 1785 | static int vfs_quota_on_remount(struct super_block *sb, int type) |
| 1786 | { |
| 1787 | struct quota_info *dqopt = sb_dqopt(sb); |
| 1788 | struct inode *inode; |
| 1789 | int ret; |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1790 | unsigned int flags; |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1791 | |
| 1792 | mutex_lock(&dqopt->dqonoff_mutex); |
| 1793 | if (!sb_has_quota_suspended(sb, type)) { |
| 1794 | mutex_unlock(&dqopt->dqonoff_mutex); |
| 1795 | return 0; |
| 1796 | } |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1797 | inode = dqopt->files[type]; |
| 1798 | dqopt->files[type] = NULL; |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1799 | flags = dqopt->flags & dquot_state_flag(DQUOT_USAGE_ENABLED | |
| 1800 | DQUOT_LIMITS_ENABLED, type); |
| 1801 | dqopt->flags &= ~dquot_state_flag(DQUOT_STATE_FLAGS, type); |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1802 | mutex_unlock(&dqopt->dqonoff_mutex); |
| 1803 | |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1804 | flags = dquot_generic_flag(flags, type); |
| 1805 | ret = vfs_load_quota_inode(inode, type, dqopt->info[type].dqi_fmt_id, |
| 1806 | flags); |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1807 | iput(inode); |
| 1808 | |
| 1809 | return ret; |
| 1810 | } |
| 1811 | |
Al Viro | 77e69da | 2008-08-01 04:29:18 -0400 | [diff] [blame] | 1812 | int vfs_quota_on_path(struct super_block *sb, int type, int format_id, |
| 1813 | struct path *path) |
| 1814 | { |
| 1815 | int error = security_quota_on(path->dentry); |
| 1816 | if (error) |
| 1817 | return error; |
| 1818 | /* Quota file not on the same filesystem? */ |
| 1819 | if (path->mnt->mnt_sb != sb) |
| 1820 | error = -EXDEV; |
| 1821 | else |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1822 | error = vfs_load_quota_inode(path->dentry->d_inode, type, |
| 1823 | format_id, DQUOT_USAGE_ENABLED | |
| 1824 | DQUOT_LIMITS_ENABLED); |
Al Viro | 77e69da | 2008-08-01 04:29:18 -0400 | [diff] [blame] | 1825 | return error; |
| 1826 | } |
| 1827 | |
Al Viro | 8264613 | 2008-08-02 00:57:06 -0400 | [diff] [blame] | 1828 | int vfs_quota_on(struct super_block *sb, int type, int format_id, char *name, |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1829 | int remount) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | { |
Al Viro | 8264613 | 2008-08-02 00:57:06 -0400 | [diff] [blame] | 1831 | struct path path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | int error; |
| 1833 | |
Jan Kara | 0ff5af8 | 2008-04-28 02:14:33 -0700 | [diff] [blame] | 1834 | if (remount) |
| 1835 | return vfs_quota_on_remount(sb, type); |
| 1836 | |
Al Viro | 8264613 | 2008-08-02 00:57:06 -0400 | [diff] [blame] | 1837 | error = kern_path(name, LOOKUP_FOLLOW, &path); |
Al Viro | 77e69da | 2008-08-01 04:29:18 -0400 | [diff] [blame] | 1838 | if (!error) { |
Al Viro | 8264613 | 2008-08-02 00:57:06 -0400 | [diff] [blame] | 1839 | error = vfs_quota_on_path(sb, type, format_id, &path); |
| 1840 | path_put(&path); |
Al Viro | 77e69da | 2008-08-01 04:29:18 -0400 | [diff] [blame] | 1841 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | return error; |
| 1843 | } |
| 1844 | |
| 1845 | /* |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1846 | * More powerful function for turning on quotas allowing setting |
| 1847 | * of individual quota flags |
| 1848 | */ |
| 1849 | int vfs_quota_enable(struct inode *inode, int type, int format_id, |
| 1850 | unsigned int flags) |
| 1851 | { |
| 1852 | int ret = 0; |
| 1853 | struct super_block *sb = inode->i_sb; |
| 1854 | struct quota_info *dqopt = sb_dqopt(sb); |
| 1855 | |
| 1856 | /* Just unsuspend quotas? */ |
| 1857 | if (flags & DQUOT_SUSPENDED) |
| 1858 | return vfs_quota_on_remount(sb, type); |
| 1859 | if (!flags) |
| 1860 | return 0; |
| 1861 | /* Just updating flags needed? */ |
| 1862 | if (sb_has_quota_loaded(sb, type)) { |
| 1863 | mutex_lock(&dqopt->dqonoff_mutex); |
| 1864 | /* Now do a reliable test... */ |
| 1865 | if (!sb_has_quota_loaded(sb, type)) { |
| 1866 | mutex_unlock(&dqopt->dqonoff_mutex); |
| 1867 | goto load_quota; |
| 1868 | } |
| 1869 | if (flags & DQUOT_USAGE_ENABLED && |
| 1870 | sb_has_quota_usage_enabled(sb, type)) { |
| 1871 | ret = -EBUSY; |
| 1872 | goto out_lock; |
| 1873 | } |
| 1874 | if (flags & DQUOT_LIMITS_ENABLED && |
| 1875 | sb_has_quota_limits_enabled(sb, type)) { |
| 1876 | ret = -EBUSY; |
| 1877 | goto out_lock; |
| 1878 | } |
| 1879 | sb_dqopt(sb)->flags |= dquot_state_flag(flags, type); |
| 1880 | out_lock: |
| 1881 | mutex_unlock(&dqopt->dqonoff_mutex); |
| 1882 | return ret; |
| 1883 | } |
| 1884 | |
| 1885 | load_quota: |
| 1886 | return vfs_load_quota_inode(inode, type, format_id, flags); |
| 1887 | } |
| 1888 | |
| 1889 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | * This function is used when filesystem needs to initialize quotas |
| 1891 | * during mount time. |
| 1892 | */ |
Christoph Hellwig | 84de856 | 2005-06-23 00:09:16 -0700 | [diff] [blame] | 1893 | int vfs_quota_on_mount(struct super_block *sb, char *qf_name, |
| 1894 | int format_id, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1895 | { |
Christoph Hellwig | 84de856 | 2005-06-23 00:09:16 -0700 | [diff] [blame] | 1896 | struct dentry *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | int error; |
| 1898 | |
Christoph Hellwig | 2fa389c | 2005-06-23 00:09:16 -0700 | [diff] [blame] | 1899 | dentry = lookup_one_len(qf_name, sb->s_root, strlen(qf_name)); |
Christoph Hellwig | 84de856 | 2005-06-23 00:09:16 -0700 | [diff] [blame] | 1900 | if (IS_ERR(dentry)) |
| 1901 | return PTR_ERR(dentry); |
| 1902 | |
Jan Kara | 154f484 | 2005-11-28 13:44:14 -0800 | [diff] [blame] | 1903 | if (!dentry->d_inode) { |
| 1904 | error = -ENOENT; |
| 1905 | goto out; |
| 1906 | } |
| 1907 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | error = security_quota_on(dentry); |
Christoph Hellwig | 84de856 | 2005-06-23 00:09:16 -0700 | [diff] [blame] | 1909 | if (!error) |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 1910 | error = vfs_load_quota_inode(dentry->d_inode, type, format_id, |
| 1911 | DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED); |
Christoph Hellwig | 84de856 | 2005-06-23 00:09:16 -0700 | [diff] [blame] | 1912 | |
Jan Kara | 154f484 | 2005-11-28 13:44:14 -0800 | [diff] [blame] | 1913 | out: |
Christoph Hellwig | 84de856 | 2005-06-23 00:09:16 -0700 | [diff] [blame] | 1914 | dput(dentry); |
| 1915 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | } |
| 1917 | |
Jan Kara | b85f4b8 | 2008-07-25 01:46:50 -0700 | [diff] [blame] | 1918 | /* Wrapper to turn on quotas when remounting rw */ |
| 1919 | int vfs_dq_quota_on_remount(struct super_block *sb) |
| 1920 | { |
| 1921 | int cnt; |
| 1922 | int ret = 0, err; |
| 1923 | |
| 1924 | if (!sb->s_qcop || !sb->s_qcop->quota_on) |
| 1925 | return -ENOSYS; |
| 1926 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { |
| 1927 | err = sb->s_qcop->quota_on(sb, cnt, 0, NULL, 1); |
| 1928 | if (err < 0 && !ret) |
| 1929 | ret = err; |
| 1930 | } |
| 1931 | return ret; |
| 1932 | } |
| 1933 | |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 1934 | static inline qsize_t qbtos(qsize_t blocks) |
| 1935 | { |
| 1936 | return blocks << QIF_DQBLKSIZE_BITS; |
| 1937 | } |
| 1938 | |
| 1939 | static inline qsize_t stoqb(qsize_t space) |
| 1940 | { |
| 1941 | return (space + QIF_DQBLKSIZE - 1) >> QIF_DQBLKSIZE_BITS; |
| 1942 | } |
| 1943 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | /* Generic routine for getting common part of quota structure */ |
| 1945 | static void do_get_dqblk(struct dquot *dquot, struct if_dqblk *di) |
| 1946 | { |
| 1947 | struct mem_dqblk *dm = &dquot->dq_dqb; |
| 1948 | |
| 1949 | spin_lock(&dq_data_lock); |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 1950 | di->dqb_bhardlimit = stoqb(dm->dqb_bhardlimit); |
| 1951 | di->dqb_bsoftlimit = stoqb(dm->dqb_bsoftlimit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1952 | di->dqb_curspace = dm->dqb_curspace; |
| 1953 | di->dqb_ihardlimit = dm->dqb_ihardlimit; |
| 1954 | di->dqb_isoftlimit = dm->dqb_isoftlimit; |
| 1955 | di->dqb_curinodes = dm->dqb_curinodes; |
| 1956 | di->dqb_btime = dm->dqb_btime; |
| 1957 | di->dqb_itime = dm->dqb_itime; |
| 1958 | di->dqb_valid = QIF_ALL; |
| 1959 | spin_unlock(&dq_data_lock); |
| 1960 | } |
| 1961 | |
| 1962 | int vfs_get_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di) |
| 1963 | { |
| 1964 | struct dquot *dquot; |
| 1965 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1966 | mutex_lock(&sb_dqopt(sb)->dqonoff_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1967 | if (!(dquot = dqget(sb, id, type))) { |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1968 | mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1969 | return -ESRCH; |
| 1970 | } |
| 1971 | do_get_dqblk(dquot, di); |
| 1972 | dqput(dquot); |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 1973 | mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1974 | return 0; |
| 1975 | } |
| 1976 | |
| 1977 | /* Generic routine for setting common part of quota structure */ |
Andrew Perepechko | 338bf9a | 2008-04-28 02:14:31 -0700 | [diff] [blame] | 1978 | static int do_set_dqblk(struct dquot *dquot, struct if_dqblk *di) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | { |
| 1980 | struct mem_dqblk *dm = &dquot->dq_dqb; |
| 1981 | int check_blim = 0, check_ilim = 0; |
Andrew Perepechko | 338bf9a | 2008-04-28 02:14:31 -0700 | [diff] [blame] | 1982 | struct mem_dqinfo *dqi = &sb_dqopt(dquot->dq_sb)->info[dquot->dq_type]; |
| 1983 | |
| 1984 | if ((di->dqb_valid & QIF_BLIMITS && |
| 1985 | (di->dqb_bhardlimit > dqi->dqi_maxblimit || |
| 1986 | di->dqb_bsoftlimit > dqi->dqi_maxblimit)) || |
| 1987 | (di->dqb_valid & QIF_ILIMITS && |
| 1988 | (di->dqb_ihardlimit > dqi->dqi_maxilimit || |
| 1989 | di->dqb_isoftlimit > dqi->dqi_maxilimit))) |
| 1990 | return -ERANGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | |
| 1992 | spin_lock(&dq_data_lock); |
| 1993 | if (di->dqb_valid & QIF_SPACE) { |
| 1994 | dm->dqb_curspace = di->dqb_curspace; |
| 1995 | check_blim = 1; |
| 1996 | } |
| 1997 | if (di->dqb_valid & QIF_BLIMITS) { |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 1998 | dm->dqb_bsoftlimit = qbtos(di->dqb_bsoftlimit); |
| 1999 | dm->dqb_bhardlimit = qbtos(di->dqb_bhardlimit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2000 | check_blim = 1; |
| 2001 | } |
| 2002 | if (di->dqb_valid & QIF_INODES) { |
| 2003 | dm->dqb_curinodes = di->dqb_curinodes; |
| 2004 | check_ilim = 1; |
| 2005 | } |
| 2006 | if (di->dqb_valid & QIF_ILIMITS) { |
| 2007 | dm->dqb_isoftlimit = di->dqb_isoftlimit; |
| 2008 | dm->dqb_ihardlimit = di->dqb_ihardlimit; |
| 2009 | check_ilim = 1; |
| 2010 | } |
| 2011 | if (di->dqb_valid & QIF_BTIME) |
| 2012 | dm->dqb_btime = di->dqb_btime; |
| 2013 | if (di->dqb_valid & QIF_ITIME) |
| 2014 | dm->dqb_itime = di->dqb_itime; |
| 2015 | |
| 2016 | if (check_blim) { |
Jan Kara | 1209546 | 2008-08-20 14:45:12 +0200 | [diff] [blame] | 2017 | if (!dm->dqb_bsoftlimit || dm->dqb_curspace < dm->dqb_bsoftlimit) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2018 | dm->dqb_btime = 0; |
| 2019 | clear_bit(DQ_BLKS_B, &dquot->dq_flags); |
| 2020 | } |
| 2021 | else if (!(di->dqb_valid & QIF_BTIME)) /* Set grace only if user hasn't provided his own... */ |
Andrew Perepechko | 338bf9a | 2008-04-28 02:14:31 -0700 | [diff] [blame] | 2022 | dm->dqb_btime = get_seconds() + dqi->dqi_bgrace; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2023 | } |
| 2024 | if (check_ilim) { |
| 2025 | if (!dm->dqb_isoftlimit || dm->dqb_curinodes < dm->dqb_isoftlimit) { |
| 2026 | dm->dqb_itime = 0; |
| 2027 | clear_bit(DQ_INODES_B, &dquot->dq_flags); |
| 2028 | } |
| 2029 | else if (!(di->dqb_valid & QIF_ITIME)) /* Set grace only if user hasn't provided his own... */ |
Andrew Perepechko | 338bf9a | 2008-04-28 02:14:31 -0700 | [diff] [blame] | 2030 | dm->dqb_itime = get_seconds() + dqi->dqi_igrace; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2031 | } |
| 2032 | if (dm->dqb_bhardlimit || dm->dqb_bsoftlimit || dm->dqb_ihardlimit || dm->dqb_isoftlimit) |
| 2033 | clear_bit(DQ_FAKE_B, &dquot->dq_flags); |
| 2034 | else |
| 2035 | set_bit(DQ_FAKE_B, &dquot->dq_flags); |
| 2036 | spin_unlock(&dq_data_lock); |
| 2037 | mark_dquot_dirty(dquot); |
Andrew Perepechko | 338bf9a | 2008-04-28 02:14:31 -0700 | [diff] [blame] | 2038 | |
| 2039 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2040 | } |
| 2041 | |
| 2042 | int vfs_set_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di) |
| 2043 | { |
| 2044 | struct dquot *dquot; |
Andrew Perepechko | 338bf9a | 2008-04-28 02:14:31 -0700 | [diff] [blame] | 2045 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2046 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 2047 | mutex_lock(&sb_dqopt(sb)->dqonoff_mutex); |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 2048 | dquot = dqget(sb, id, type); |
| 2049 | if (!dquot) { |
| 2050 | rc = -ESRCH; |
| 2051 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | } |
Andrew Perepechko | 338bf9a | 2008-04-28 02:14:31 -0700 | [diff] [blame] | 2053 | rc = do_set_dqblk(dquot, di); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | dqput(dquot); |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 2055 | out: |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 2056 | mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex); |
Andrew Perepechko | 338bf9a | 2008-04-28 02:14:31 -0700 | [diff] [blame] | 2057 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | } |
| 2059 | |
| 2060 | /* Generic routine for getting common part of quota file information */ |
| 2061 | int vfs_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii) |
| 2062 | { |
| 2063 | struct mem_dqinfo *mi; |
| 2064 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 2065 | mutex_lock(&sb_dqopt(sb)->dqonoff_mutex); |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 2066 | if (!sb_has_quota_active(sb, type)) { |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 2067 | mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2068 | return -ESRCH; |
| 2069 | } |
| 2070 | mi = sb_dqopt(sb)->info + type; |
| 2071 | spin_lock(&dq_data_lock); |
| 2072 | ii->dqi_bgrace = mi->dqi_bgrace; |
| 2073 | ii->dqi_igrace = mi->dqi_igrace; |
| 2074 | ii->dqi_flags = mi->dqi_flags & DQF_MASK; |
| 2075 | ii->dqi_valid = IIF_ALL; |
| 2076 | spin_unlock(&dq_data_lock); |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 2077 | mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | return 0; |
| 2079 | } |
| 2080 | |
| 2081 | /* Generic routine for setting common part of quota file information */ |
| 2082 | int vfs_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii) |
| 2083 | { |
| 2084 | struct mem_dqinfo *mi; |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 2085 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 2087 | mutex_lock(&sb_dqopt(sb)->dqonoff_mutex); |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 2088 | if (!sb_has_quota_active(sb, type)) { |
| 2089 | err = -ESRCH; |
| 2090 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2091 | } |
| 2092 | mi = sb_dqopt(sb)->info + type; |
| 2093 | spin_lock(&dq_data_lock); |
| 2094 | if (ii->dqi_valid & IIF_BGRACE) |
| 2095 | mi->dqi_bgrace = ii->dqi_bgrace; |
| 2096 | if (ii->dqi_valid & IIF_IGRACE) |
| 2097 | mi->dqi_igrace = ii->dqi_igrace; |
| 2098 | if (ii->dqi_valid & IIF_FLAGS) |
| 2099 | mi->dqi_flags = (mi->dqi_flags & ~DQF_MASK) | (ii->dqi_flags & DQF_MASK); |
| 2100 | spin_unlock(&dq_data_lock); |
| 2101 | mark_info_dirty(sb, type); |
| 2102 | /* Force write to disk */ |
| 2103 | sb->dq_op->write_info(sb, type); |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 2104 | out: |
Ingo Molnar | d3be915 | 2006-03-23 03:00:29 -0800 | [diff] [blame] | 2105 | mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex); |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 2106 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2107 | } |
| 2108 | |
| 2109 | struct quotactl_ops vfs_quotactl_ops = { |
| 2110 | .quota_on = vfs_quota_on, |
| 2111 | .quota_off = vfs_quota_off, |
| 2112 | .quota_sync = vfs_quota_sync, |
| 2113 | .get_info = vfs_get_dqinfo, |
| 2114 | .set_info = vfs_set_dqinfo, |
| 2115 | .get_dqblk = vfs_get_dqblk, |
| 2116 | .set_dqblk = vfs_set_dqblk |
| 2117 | }; |
| 2118 | |
| 2119 | static ctl_table fs_dqstats_table[] = { |
| 2120 | { |
| 2121 | .ctl_name = FS_DQ_LOOKUPS, |
| 2122 | .procname = "lookups", |
| 2123 | .data = &dqstats.lookups, |
| 2124 | .maxlen = sizeof(int), |
| 2125 | .mode = 0444, |
| 2126 | .proc_handler = &proc_dointvec, |
| 2127 | }, |
| 2128 | { |
| 2129 | .ctl_name = FS_DQ_DROPS, |
| 2130 | .procname = "drops", |
| 2131 | .data = &dqstats.drops, |
| 2132 | .maxlen = sizeof(int), |
| 2133 | .mode = 0444, |
| 2134 | .proc_handler = &proc_dointvec, |
| 2135 | }, |
| 2136 | { |
| 2137 | .ctl_name = FS_DQ_READS, |
| 2138 | .procname = "reads", |
| 2139 | .data = &dqstats.reads, |
| 2140 | .maxlen = sizeof(int), |
| 2141 | .mode = 0444, |
| 2142 | .proc_handler = &proc_dointvec, |
| 2143 | }, |
| 2144 | { |
| 2145 | .ctl_name = FS_DQ_WRITES, |
| 2146 | .procname = "writes", |
| 2147 | .data = &dqstats.writes, |
| 2148 | .maxlen = sizeof(int), |
| 2149 | .mode = 0444, |
| 2150 | .proc_handler = &proc_dointvec, |
| 2151 | }, |
| 2152 | { |
| 2153 | .ctl_name = FS_DQ_CACHE_HITS, |
| 2154 | .procname = "cache_hits", |
| 2155 | .data = &dqstats.cache_hits, |
| 2156 | .maxlen = sizeof(int), |
| 2157 | .mode = 0444, |
| 2158 | .proc_handler = &proc_dointvec, |
| 2159 | }, |
| 2160 | { |
| 2161 | .ctl_name = FS_DQ_ALLOCATED, |
| 2162 | .procname = "allocated_dquots", |
| 2163 | .data = &dqstats.allocated_dquots, |
| 2164 | .maxlen = sizeof(int), |
| 2165 | .mode = 0444, |
| 2166 | .proc_handler = &proc_dointvec, |
| 2167 | }, |
| 2168 | { |
| 2169 | .ctl_name = FS_DQ_FREE, |
| 2170 | .procname = "free_dquots", |
| 2171 | .data = &dqstats.free_dquots, |
| 2172 | .maxlen = sizeof(int), |
| 2173 | .mode = 0444, |
| 2174 | .proc_handler = &proc_dointvec, |
| 2175 | }, |
| 2176 | { |
| 2177 | .ctl_name = FS_DQ_SYNCS, |
| 2178 | .procname = "syncs", |
| 2179 | .data = &dqstats.syncs, |
| 2180 | .maxlen = sizeof(int), |
| 2181 | .mode = 0444, |
| 2182 | .proc_handler = &proc_dointvec, |
| 2183 | }, |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 2184 | #ifdef CONFIG_PRINT_QUOTA_WARNING |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2185 | { |
| 2186 | .ctl_name = FS_DQ_WARNINGS, |
| 2187 | .procname = "warnings", |
| 2188 | .data = &flag_print_warnings, |
| 2189 | .maxlen = sizeof(int), |
| 2190 | .mode = 0644, |
| 2191 | .proc_handler = &proc_dointvec, |
| 2192 | }, |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 2193 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | { .ctl_name = 0 }, |
| 2195 | }; |
| 2196 | |
| 2197 | static ctl_table fs_table[] = { |
| 2198 | { |
| 2199 | .ctl_name = FS_DQSTATS, |
| 2200 | .procname = "quota", |
| 2201 | .mode = 0555, |
| 2202 | .child = fs_dqstats_table, |
| 2203 | }, |
| 2204 | { .ctl_name = 0 }, |
| 2205 | }; |
| 2206 | |
| 2207 | static ctl_table sys_table[] = { |
| 2208 | { |
| 2209 | .ctl_name = CTL_FS, |
| 2210 | .procname = "fs", |
| 2211 | .mode = 0555, |
| 2212 | .child = fs_table, |
| 2213 | }, |
| 2214 | { .ctl_name = 0 }, |
| 2215 | }; |
| 2216 | |
| 2217 | static int __init dquot_init(void) |
| 2218 | { |
| 2219 | int i; |
| 2220 | unsigned long nr_hash, order; |
| 2221 | |
| 2222 | printk(KERN_NOTICE "VFS: Disk quotas %s\n", __DQUOT_VERSION__); |
| 2223 | |
Eric W. Biederman | 0b4d414 | 2007-02-14 00:34:09 -0800 | [diff] [blame] | 2224 | register_sysctl_table(sys_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2225 | |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 2226 | dquot_cachep = kmem_cache_create("dquot", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2227 | sizeof(struct dquot), sizeof(unsigned long) * 4, |
Paul Jackson | fffb60f | 2006-03-24 03:16:06 -0800 | [diff] [blame] | 2228 | (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT| |
| 2229 | SLAB_MEM_SPREAD|SLAB_PANIC), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 2230 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2231 | |
| 2232 | order = 0; |
| 2233 | dquot_hash = (struct hlist_head *)__get_free_pages(GFP_ATOMIC, order); |
| 2234 | if (!dquot_hash) |
| 2235 | panic("Cannot create dquot hash table"); |
| 2236 | |
| 2237 | /* Find power-of-two hlist_heads which can fit into allocation */ |
| 2238 | nr_hash = (1UL << order) * PAGE_SIZE / sizeof(struct hlist_head); |
| 2239 | dq_hash_bits = 0; |
| 2240 | do { |
| 2241 | dq_hash_bits++; |
| 2242 | } while (nr_hash >> dq_hash_bits); |
| 2243 | dq_hash_bits--; |
| 2244 | |
| 2245 | nr_hash = 1UL << dq_hash_bits; |
| 2246 | dq_hash_mask = nr_hash - 1; |
| 2247 | for (i = 0; i < nr_hash; i++) |
| 2248 | INIT_HLIST_HEAD(dquot_hash + i); |
| 2249 | |
| 2250 | printk("Dquot-cache hash table entries: %ld (order %ld, %ld bytes)\n", |
| 2251 | nr_hash, order, (PAGE_SIZE << order)); |
| 2252 | |
Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 2253 | register_shrinker(&dqcache_shrinker); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2254 | |
Jan Kara | 8e89346 | 2007-10-16 23:29:31 -0700 | [diff] [blame] | 2255 | #ifdef CONFIG_QUOTA_NETLINK_INTERFACE |
| 2256 | if (genl_register_family("a_genl_family) != 0) |
| 2257 | printk(KERN_ERR "VFS: Failed to create quota netlink interface.\n"); |
| 2258 | #endif |
| 2259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2260 | return 0; |
| 2261 | } |
| 2262 | module_init(dquot_init); |
| 2263 | |
| 2264 | EXPORT_SYMBOL(register_quota_format); |
| 2265 | EXPORT_SYMBOL(unregister_quota_format); |
| 2266 | EXPORT_SYMBOL(dqstats); |
| 2267 | EXPORT_SYMBOL(dq_data_lock); |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 2268 | EXPORT_SYMBOL(vfs_quota_enable); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2269 | EXPORT_SYMBOL(vfs_quota_on); |
Al Viro | 77e69da | 2008-08-01 04:29:18 -0400 | [diff] [blame] | 2270 | EXPORT_SYMBOL(vfs_quota_on_path); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | EXPORT_SYMBOL(vfs_quota_on_mount); |
Jan Kara | f55abc0 | 2008-08-20 17:50:32 +0200 | [diff] [blame^] | 2272 | EXPORT_SYMBOL(vfs_quota_disable); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 | EXPORT_SYMBOL(vfs_quota_off); |
| 2274 | EXPORT_SYMBOL(vfs_quota_sync); |
| 2275 | EXPORT_SYMBOL(vfs_get_dqinfo); |
| 2276 | EXPORT_SYMBOL(vfs_set_dqinfo); |
| 2277 | EXPORT_SYMBOL(vfs_get_dqblk); |
| 2278 | EXPORT_SYMBOL(vfs_set_dqblk); |
| 2279 | EXPORT_SYMBOL(dquot_commit); |
| 2280 | EXPORT_SYMBOL(dquot_commit_info); |
| 2281 | EXPORT_SYMBOL(dquot_acquire); |
| 2282 | EXPORT_SYMBOL(dquot_release); |
| 2283 | EXPORT_SYMBOL(dquot_mark_dquot_dirty); |
| 2284 | EXPORT_SYMBOL(dquot_initialize); |
| 2285 | EXPORT_SYMBOL(dquot_drop); |
Jan Kara | b85f4b8 | 2008-07-25 01:46:50 -0700 | [diff] [blame] | 2286 | EXPORT_SYMBOL(vfs_dq_drop); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | EXPORT_SYMBOL(dquot_alloc_space); |
| 2288 | EXPORT_SYMBOL(dquot_alloc_inode); |
| 2289 | EXPORT_SYMBOL(dquot_free_space); |
| 2290 | EXPORT_SYMBOL(dquot_free_inode); |
| 2291 | EXPORT_SYMBOL(dquot_transfer); |
Jan Kara | b85f4b8 | 2008-07-25 01:46:50 -0700 | [diff] [blame] | 2292 | EXPORT_SYMBOL(vfs_dq_transfer); |
| 2293 | EXPORT_SYMBOL(vfs_dq_quota_on_remount); |