blob: ca6b9b5c8d5271b430a534fe59969a09af85c997 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Definitions for diskquota-operations. When diskquota is configured these
3 * macros expand to the right source-code.
4 *
5 * Author: Marco van Wieringen <mvw@planets.elm.net>
6 *
7 * Version: $Id: quotaops.h,v 1.2 1998/01/15 16:22:26 ecd Exp $
8 *
9 */
10#ifndef _LINUX_QUOTAOPS_
11#define _LINUX_QUOTAOPS_
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/fs.h>
15
Jan Kara03b06342008-07-25 01:46:52 -070016static inline struct quota_info *sb_dqopt(struct super_block *sb)
17{
18 return &sb->s_dquot;
19}
Jan Kara74abb982008-07-25 01:46:51 -070020
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#if defined(CONFIG_QUOTA)
22
23/*
24 * declaration of quota_function calls in kernel.
25 */
Jan Karab85f4b82008-07-25 01:46:50 -070026void sync_dquots(struct super_block *sb, int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Jan Karab85f4b82008-07-25 01:46:50 -070028int dquot_initialize(struct inode *inode, int type);
29int dquot_drop(struct inode *inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Jan Karab85f4b82008-07-25 01:46:50 -070031int dquot_alloc_space(struct inode *inode, qsize_t number, int prealloc);
32int dquot_alloc_inode(const struct inode *inode, unsigned long number);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Jan Karab85f4b82008-07-25 01:46:50 -070034int dquot_free_space(struct inode *inode, qsize_t number);
35int dquot_free_inode(const struct inode *inode, unsigned long number);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Jan Karab85f4b82008-07-25 01:46:50 -070037int dquot_transfer(struct inode *inode, struct iattr *iattr);
38int dquot_commit(struct dquot *dquot);
39int dquot_acquire(struct dquot *dquot);
40int dquot_release(struct dquot *dquot);
41int dquot_commit_info(struct super_block *sb, int type);
42int dquot_mark_dquot_dirty(struct dquot *dquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Jan Karab85f4b82008-07-25 01:46:50 -070044int vfs_quota_on(struct super_block *sb, int type, int format_id,
45 char *path, int remount);
Al Viro77e69da2008-08-01 04:29:18 -040046int vfs_quota_on_path(struct super_block *sb, int type, int format_id,
47 struct path *path);
Jan Karab85f4b82008-07-25 01:46:50 -070048int vfs_quota_on_mount(struct super_block *sb, char *qf_name,
49 int format_id, int type);
50int vfs_quota_off(struct super_block *sb, int type, int remount);
51int vfs_quota_sync(struct super_block *sb, int type);
52int vfs_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii);
53int vfs_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii);
54int vfs_get_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di);
55int vfs_set_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di);
56
57void vfs_dq_drop(struct inode *inode);
58int vfs_dq_transfer(struct inode *inode, struct iattr *iattr);
59int vfs_dq_quota_on_remount(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Jan Kara03b06342008-07-25 01:46:52 -070061static inline struct mem_dqinfo *sb_dqinfo(struct super_block *sb, int type)
62{
63 return sb_dqopt(sb)->info + type;
64}
Jan Kara74abb982008-07-25 01:46:51 -070065
66/*
67 * Functions for checking status of quota
68 */
69
Jan Kara03b06342008-07-25 01:46:52 -070070static inline int sb_has_quota_enabled(struct super_block *sb, int type)
71{
72 if (type == USRQUOTA)
73 return sb_dqopt(sb)->flags & DQUOT_USR_ENABLED;
74 return sb_dqopt(sb)->flags & DQUOT_GRP_ENABLED;
75}
Jan Kara74abb982008-07-25 01:46:51 -070076
Jan Kara03b06342008-07-25 01:46:52 -070077static inline int sb_any_quota_enabled(struct super_block *sb)
78{
79 return sb_has_quota_enabled(sb, USRQUOTA) ||
80 sb_has_quota_enabled(sb, GRPQUOTA);
81}
Jan Kara74abb982008-07-25 01:46:51 -070082
Jan Kara03b06342008-07-25 01:46:52 -070083static inline int sb_has_quota_suspended(struct super_block *sb, int type)
84{
85 if (type == USRQUOTA)
86 return sb_dqopt(sb)->flags & DQUOT_USR_SUSPENDED;
87 return sb_dqopt(sb)->flags & DQUOT_GRP_SUSPENDED;
88}
Jan Kara74abb982008-07-25 01:46:51 -070089
Jan Kara03b06342008-07-25 01:46:52 -070090static inline int sb_any_quota_suspended(struct super_block *sb)
91{
92 return sb_has_quota_suspended(sb, USRQUOTA) ||
93 sb_has_quota_suspended(sb, GRPQUOTA);
94}
Jan Kara74abb982008-07-25 01:46:51 -070095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/*
97 * Operations supported for diskquotas.
98 */
99extern struct dquot_operations dquot_operations;
100extern struct quotactl_ops vfs_quotactl_ops;
101
102#define sb_dquot_ops (&dquot_operations)
103#define sb_quotactl_ops (&vfs_quotactl_ops)
104
105/* It is better to call this function outside of any transaction as it might
106 * need a lot of space in journal for dquot structure allocation. */
Jan Karab85f4b82008-07-25 01:46:50 -0700107static inline void vfs_dq_init(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 BUG_ON(!inode->i_sb);
110 if (sb_any_quota_enabled(inode->i_sb) && !IS_NOQUOTA(inode))
111 inode->i_sb->dq_op->initialize(inode, -1);
112}
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/* The following allocation/freeing/transfer functions *must* be called inside
115 * a transaction (deadlocks possible otherwise) */
Jan Karab85f4b82008-07-25 01:46:50 -0700116static inline int vfs_dq_prealloc_space_nodirty(struct inode *inode, qsize_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 if (sb_any_quota_enabled(inode->i_sb)) {
119 /* Used space is updated in alloc_space() */
120 if (inode->i_sb->dq_op->alloc_space(inode, nr, 1) == NO_QUOTA)
121 return 1;
122 }
123 else
124 inode_add_bytes(inode, nr);
125 return 0;
126}
127
Jan Karab85f4b82008-07-25 01:46:50 -0700128static inline int vfs_dq_prealloc_space(struct inode *inode, qsize_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 int ret;
Jan Karab85f4b82008-07-25 01:46:50 -0700131 if (!(ret = vfs_dq_prealloc_space_nodirty(inode, nr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 mark_inode_dirty(inode);
133 return ret;
134}
135
Jan Karab85f4b82008-07-25 01:46:50 -0700136static inline int vfs_dq_alloc_space_nodirty(struct inode *inode, qsize_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 if (sb_any_quota_enabled(inode->i_sb)) {
139 /* Used space is updated in alloc_space() */
140 if (inode->i_sb->dq_op->alloc_space(inode, nr, 0) == NO_QUOTA)
141 return 1;
142 }
143 else
144 inode_add_bytes(inode, nr);
145 return 0;
146}
147
Jan Karab85f4b82008-07-25 01:46:50 -0700148static inline int vfs_dq_alloc_space(struct inode *inode, qsize_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 int ret;
Jan Karab85f4b82008-07-25 01:46:50 -0700151 if (!(ret = vfs_dq_alloc_space_nodirty(inode, nr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 mark_inode_dirty(inode);
153 return ret;
154}
155
Jan Karab85f4b82008-07-25 01:46:50 -0700156static inline int vfs_dq_alloc_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
158 if (sb_any_quota_enabled(inode->i_sb)) {
Jan Karab85f4b82008-07-25 01:46:50 -0700159 vfs_dq_init(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (inode->i_sb->dq_op->alloc_inode(inode, 1) == NO_QUOTA)
161 return 1;
162 }
163 return 0;
164}
165
Jan Karab85f4b82008-07-25 01:46:50 -0700166static inline void vfs_dq_free_space_nodirty(struct inode *inode, qsize_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 if (sb_any_quota_enabled(inode->i_sb))
169 inode->i_sb->dq_op->free_space(inode, nr);
170 else
171 inode_sub_bytes(inode, nr);
172}
173
Jan Karab85f4b82008-07-25 01:46:50 -0700174static inline void vfs_dq_free_space(struct inode *inode, qsize_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175{
Jan Karab85f4b82008-07-25 01:46:50 -0700176 vfs_dq_free_space_nodirty(inode, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 mark_inode_dirty(inode);
178}
179
Jan Karab85f4b82008-07-25 01:46:50 -0700180static inline void vfs_dq_free_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
182 if (sb_any_quota_enabled(inode->i_sb))
183 inode->i_sb->dq_op->free_inode(inode, 1);
184}
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/* The following two functions cannot be called inside a transaction */
Jan Karab85f4b82008-07-25 01:46:50 -0700187static inline void vfs_dq_sync(struct super_block *sb)
Jan Kara03f6e922008-04-28 02:14:32 -0700188{
189 sync_dquots(sb, -1);
190}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Jan Karab85f4b82008-07-25 01:46:50 -0700192static inline int vfs_dq_off(struct super_block *sb, int remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
194 int ret = -ENOSYS;
195
Jan Kara0ff5af82008-04-28 02:14:33 -0700196 if (sb->s_qcop && sb->s_qcop->quota_off)
197 ret = sb->s_qcop->quota_off(sb, -1, remount);
198 return ret;
199}
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#else
202
Jan Kara03b06342008-07-25 01:46:52 -0700203static inline int sb_has_quota_enabled(struct super_block *sb, int type)
204{
205 return 0;
206}
207
208static inline int sb_any_quota_enabled(struct super_block *sb)
209{
210 return 0;
211}
212
213static inline int sb_has_quota_suspended(struct super_block *sb, int type)
214{
215 return 0;
216}
217
218static inline int sb_any_quota_suspended(struct super_block *sb)
219{
220 return 0;
221}
Jan Kara74abb982008-07-25 01:46:51 -0700222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223/*
224 * NO-OP when quota not configured.
225 */
226#define sb_dquot_ops (NULL)
227#define sb_quotactl_ops (NULL)
Andrew Morton50f8c372008-04-28 02:14:35 -0700228
Jan Karab85f4b82008-07-25 01:46:50 -0700229static inline void vfs_dq_init(struct inode *inode)
Andrew Morton50f8c372008-04-28 02:14:35 -0700230{
231}
232
Jan Karab85f4b82008-07-25 01:46:50 -0700233static inline void vfs_dq_drop(struct inode *inode)
Andrew Morton50f8c372008-04-28 02:14:35 -0700234{
235}
236
Jan Karab85f4b82008-07-25 01:46:50 -0700237static inline int vfs_dq_alloc_inode(struct inode *inode)
Andrew Morton50f8c372008-04-28 02:14:35 -0700238{
239 return 0;
240}
241
Jan Karab85f4b82008-07-25 01:46:50 -0700242static inline void vfs_dq_free_inode(struct inode *inode)
Andrew Morton50f8c372008-04-28 02:14:35 -0700243{
244}
245
Jan Karab85f4b82008-07-25 01:46:50 -0700246static inline void vfs_dq_sync(struct super_block *sb)
Andrew Morton50f8c372008-04-28 02:14:35 -0700247{
248}
249
Jan Karab85f4b82008-07-25 01:46:50 -0700250static inline int vfs_dq_off(struct super_block *sb, int remount)
Andrew Morton50f8c372008-04-28 02:14:35 -0700251{
252 return 0;
253}
254
Jan Karab85f4b82008-07-25 01:46:50 -0700255static inline int vfs_dq_quota_on_remount(struct super_block *sb)
Andrew Morton50f8c372008-04-28 02:14:35 -0700256{
257 return 0;
258}
259
Jan Karab85f4b82008-07-25 01:46:50 -0700260static inline int vfs_dq_transfer(struct inode *inode, struct iattr *iattr)
Andrew Morton50f8c372008-04-28 02:14:35 -0700261{
262 return 0;
263}
264
Jan Karab85f4b82008-07-25 01:46:50 -0700265static inline int vfs_dq_prealloc_space_nodirty(struct inode *inode, qsize_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 inode_add_bytes(inode, nr);
268 return 0;
269}
270
Jan Karab85f4b82008-07-25 01:46:50 -0700271static inline int vfs_dq_prealloc_space(struct inode *inode, qsize_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Jan Karab85f4b82008-07-25 01:46:50 -0700273 vfs_dq_prealloc_space_nodirty(inode, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 mark_inode_dirty(inode);
275 return 0;
276}
277
Jan Karab85f4b82008-07-25 01:46:50 -0700278static inline int vfs_dq_alloc_space_nodirty(struct inode *inode, qsize_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 inode_add_bytes(inode, nr);
281 return 0;
282}
283
Jan Karab85f4b82008-07-25 01:46:50 -0700284static inline int vfs_dq_alloc_space(struct inode *inode, qsize_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Jan Karab85f4b82008-07-25 01:46:50 -0700286 vfs_dq_alloc_space_nodirty(inode, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 mark_inode_dirty(inode);
288 return 0;
289}
290
Jan Karab85f4b82008-07-25 01:46:50 -0700291static inline void vfs_dq_free_space_nodirty(struct inode *inode, qsize_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 inode_sub_bytes(inode, nr);
294}
295
Jan Karab85f4b82008-07-25 01:46:50 -0700296static inline void vfs_dq_free_space(struct inode *inode, qsize_t nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Jan Karab85f4b82008-07-25 01:46:50 -0700298 vfs_dq_free_space_nodirty(inode, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 mark_inode_dirty(inode);
300}
301
302#endif /* CONFIG_QUOTA */
303
Jan Karab85f4b82008-07-25 01:46:50 -0700304static inline int vfs_dq_prealloc_block_nodirty(struct inode *inode, qsize_t nr)
Jan Kara03f6e922008-04-28 02:14:32 -0700305{
Jan Karab85f4b82008-07-25 01:46:50 -0700306 return vfs_dq_prealloc_space_nodirty(inode,
Jan Kara03f6e922008-04-28 02:14:32 -0700307 nr << inode->i_sb->s_blocksize_bits);
308}
309
Jan Karab85f4b82008-07-25 01:46:50 -0700310static inline int vfs_dq_prealloc_block(struct inode *inode, qsize_t nr)
Jan Kara03f6e922008-04-28 02:14:32 -0700311{
Jan Karab85f4b82008-07-25 01:46:50 -0700312 return vfs_dq_prealloc_space(inode,
Jan Kara03f6e922008-04-28 02:14:32 -0700313 nr << inode->i_sb->s_blocksize_bits);
314}
315
Jan Karab85f4b82008-07-25 01:46:50 -0700316static inline int vfs_dq_alloc_block_nodirty(struct inode *inode, qsize_t nr)
Jan Kara03f6e922008-04-28 02:14:32 -0700317{
Jan Karab85f4b82008-07-25 01:46:50 -0700318 return vfs_dq_alloc_space_nodirty(inode,
Jan Kara03f6e922008-04-28 02:14:32 -0700319 nr << inode->i_sb->s_blocksize_bits);
320}
321
Jan Karab85f4b82008-07-25 01:46:50 -0700322static inline int vfs_dq_alloc_block(struct inode *inode, qsize_t nr)
Jan Kara03f6e922008-04-28 02:14:32 -0700323{
Jan Karab85f4b82008-07-25 01:46:50 -0700324 return vfs_dq_alloc_space(inode,
Jan Kara03f6e922008-04-28 02:14:32 -0700325 nr << inode->i_sb->s_blocksize_bits);
326}
327
Jan Karab85f4b82008-07-25 01:46:50 -0700328static inline void vfs_dq_free_block_nodirty(struct inode *inode, qsize_t nr)
Jan Kara03f6e922008-04-28 02:14:32 -0700329{
Jan Karab85f4b82008-07-25 01:46:50 -0700330 vfs_dq_free_space_nodirty(inode, nr << inode->i_sb->s_blocksize_bits);
Jan Kara03f6e922008-04-28 02:14:32 -0700331}
332
Jan Karab85f4b82008-07-25 01:46:50 -0700333static inline void vfs_dq_free_block(struct inode *inode, qsize_t nr)
Jan Kara03f6e922008-04-28 02:14:32 -0700334{
Jan Karab85f4b82008-07-25 01:46:50 -0700335 vfs_dq_free_space(inode, nr << inode->i_sb->s_blocksize_bits);
Jan Kara03f6e922008-04-28 02:14:32 -0700336}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Jan Karab85f4b82008-07-25 01:46:50 -0700338/*
339 * Define uppercase equivalents for compatibility with old function names
340 * Can go away when we think all users have been converted (15/04/2008)
341 */
342#define DQUOT_INIT(inode) vfs_dq_init(inode)
343#define DQUOT_DROP(inode) vfs_dq_drop(inode)
344#define DQUOT_PREALLOC_SPACE_NODIRTY(inode, nr) \
345 vfs_dq_prealloc_space_nodirty(inode, nr)
346#define DQUOT_PREALLOC_SPACE(inode, nr) vfs_dq_prealloc_space(inode, nr)
347#define DQUOT_ALLOC_SPACE_NODIRTY(inode, nr) \
348 vfs_dq_alloc_space_nodirty(inode, nr)
349#define DQUOT_ALLOC_SPACE(inode, nr) vfs_dq_alloc_space(inode, nr)
350#define DQUOT_PREALLOC_BLOCK_NODIRTY(inode, nr) \
351 vfs_dq_prealloc_block_nodirty(inode, nr)
352#define DQUOT_PREALLOC_BLOCK(inode, nr) vfs_dq_prealloc_block(inode, nr)
353#define DQUOT_ALLOC_BLOCK_NODIRTY(inode, nr) \
354 vfs_dq_alloc_block_nodirty(inode, nr)
355#define DQUOT_ALLOC_BLOCK(inode, nr) vfs_dq_alloc_block(inode, nr)
356#define DQUOT_ALLOC_INODE(inode) vfs_dq_alloc_inode(inode)
357#define DQUOT_FREE_SPACE_NODIRTY(inode, nr) \
358 vfs_dq_free_space_nodirty(inode, nr)
359#define DQUOT_FREE_SPACE(inode, nr) vfs_dq_free_space(inode, nr)
360#define DQUOT_FREE_BLOCK_NODIRTY(inode, nr) \
361 vfs_dq_free_block_nodirty(inode, nr)
362#define DQUOT_FREE_BLOCK(inode, nr) vfs_dq_free_block(inode, nr)
363#define DQUOT_FREE_INODE(inode) vfs_dq_free_inode(inode)
364#define DQUOT_TRANSFER(inode, iattr) vfs_dq_transfer(inode, iattr)
365#define DQUOT_SYNC(sb) vfs_dq_sync(sb)
366#define DQUOT_OFF(sb, remount) vfs_dq_off(sb, remount)
367#define DQUOT_ON_REMOUNT(sb) vfs_dq_quota_on_remount(sb)
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369#endif /* _LINUX_QUOTAOPS_ */