Blame view

fs/quota/quota_v2.c 11.8 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
  /*
   *	vfsv0 quota IO operations on file
   */
  
  #include <linux/errno.h>
  #include <linux/fs.h>
  #include <linux/mount.h>
  #include <linux/dqblk_v2.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
10
11
12
  #include <linux/kernel.h>
  #include <linux/init.h>
  #include <linux/module.h>
  #include <linux/slab.h>
74abb9890   Jan Kara   quota: move funct...
13
  #include <linux/quotaops.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
  
  #include <asm/byteorder.h>
1ccd14b9c   Jan Kara   quota: Split off ...
16
  #include "quota_tree.h"
cf770c137   Jan Kara   quota: Move quota...
17
  #include "quotaio_v2.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
18
19
20
21
22
  MODULE_AUTHOR("Jan Kara");
  MODULE_DESCRIPTION("Quota format v2 support");
  MODULE_LICENSE("GPL");
  
  #define __QUOTA_V2_PARANOIA
498c60153   Jan Kara   quota: Implement ...
23
24
25
26
27
28
  static void v2r0_mem2diskdqb(void *dp, struct dquot *dquot);
  static void v2r0_disk2memdqb(struct dquot *dquot, void *dp);
  static int v2r0_is_id(void *dp, struct dquot *dquot);
  static void v2r1_mem2diskdqb(void *dp, struct dquot *dquot);
  static void v2r1_disk2memdqb(struct dquot *dquot, void *dp);
  static int v2r1_is_id(void *dp, struct dquot *dquot);
d1b98c23f   Julia Lawall   quota: constify q...
29
  static const struct qtree_fmt_operations v2r0_qtree_ops = {
498c60153   Jan Kara   quota: Implement ...
30
31
32
33
  	.mem2disk_dqblk = v2r0_mem2diskdqb,
  	.disk2mem_dqblk = v2r0_disk2memdqb,
  	.is_id = v2r0_is_id,
  };
d1b98c23f   Julia Lawall   quota: constify q...
34
  static const struct qtree_fmt_operations v2r1_qtree_ops = {
498c60153   Jan Kara   quota: Implement ...
35
36
37
  	.mem2disk_dqblk = v2r1_mem2diskdqb,
  	.disk2mem_dqblk = v2r1_disk2memdqb,
  	.is_id = v2r1_is_id,
1ccd14b9c   Jan Kara   quota: Split off ...
38
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39

12095460f   Jan Kara   quota: Increase s...
40
41
42
43
44
45
46
47
48
49
50
51
  #define QUOTABLOCK_BITS 10
  #define QUOTABLOCK_SIZE (1 << QUOTABLOCK_BITS)
  
  static inline qsize_t v2_stoqb(qsize_t space)
  {
  	return (space + QUOTABLOCK_SIZE - 1) >> QUOTABLOCK_BITS;
  }
  
  static inline qsize_t v2_qbtos(qsize_t blocks)
  {
  	return blocks << QUOTABLOCK_BITS;
  }
498c60153   Jan Kara   quota: Implement ...
52
53
54
55
56
57
58
59
  static int v2_read_header(struct super_block *sb, int type,
  			  struct v2_disk_dqheader *dqhead)
  {
  	ssize_t size;
  
  	size = sb->s_op->quota_read(sb, type, (char *)dqhead,
  				    sizeof(struct v2_disk_dqheader), 0);
  	if (size != sizeof(struct v2_disk_dqheader)) {
fb5ffb0e1   Jiaying Zhang   quota: Change quo...
60
61
  		quota_error(sb, "Failed header read: expected=%zd got=%zd",
  			    sizeof(struct v2_disk_dqheader), size);
f98bbe37a   Jan Kara   quota: Propagate ...
62
63
64
  		if (size < 0)
  			return size;
  		return -EIO;
498c60153   Jan Kara   quota: Implement ...
65
  	}
f98bbe37a   Jan Kara   quota: Propagate ...
66
  	return 0;
498c60153   Jan Kara   quota: Implement ...
67
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
68
69
70
71
  /* Check whether given file is really vfsv0 quotafile */
  static int v2_check_quota_file(struct super_block *sb, int type)
  {
  	struct v2_disk_dqheader dqhead;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
72
73
74
  	static const uint quota_magics[] = V2_INITQMAGICS;
  	static const uint quota_versions[] = V2_INITQVERSIONS;
   
f98bbe37a   Jan Kara   quota: Propagate ...
75
  	if (v2_read_header(sb, type, &dqhead))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
76
  		return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
77
  	if (le32_to_cpu(dqhead.dqh_magic) != quota_magics[type] ||
498c60153   Jan Kara   quota: Implement ...
78
  	    le32_to_cpu(dqhead.dqh_version) > quota_versions[type])
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
79
80
81
82
83
84
85
86
  		return 0;
  	return 1;
  }
  
  /* Read information header from quota file */
  static int v2_read_file_info(struct super_block *sb, int type)
  {
  	struct v2_disk_dqinfo dinfo;
498c60153   Jan Kara   quota: Implement ...
87
  	struct v2_disk_dqheader dqhead;
42fdb8583   Jan Kara   quota: Push dqio_...
88
89
  	struct quota_info *dqopt = sb_dqopt(sb);
  	struct mem_dqinfo *info = &dqopt->info[type];
e3d4d56b9   Jan Kara   quota: Convert un...
90
  	struct qtree_mem_dqinfo *qinfo;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
91
  	ssize_t size;
498c60153   Jan Kara   quota: Implement ...
92
  	unsigned int version;
42fdb8583   Jan Kara   quota: Push dqio_...
93
  	int ret;
498c60153   Jan Kara   quota: Implement ...
94

42fdb8583   Jan Kara   quota: Push dqio_...
95
  	down_read(&dqopt->dqio_sem);
f98bbe37a   Jan Kara   quota: Propagate ...
96
97
  	ret = v2_read_header(sb, type, &dqhead);
  	if (ret < 0)
42fdb8583   Jan Kara   quota: Push dqio_...
98
  		goto out;
498c60153   Jan Kara   quota: Implement ...
99
  	version = le32_to_cpu(dqhead.dqh_version);
869835dfa   Jan Kara   quota: Improve ch...
100
  	if ((info->dqi_fmt_id == QFMT_VFS_V0 && version != 0) ||
42fdb8583   Jan Kara   quota: Push dqio_...
101
  	    (info->dqi_fmt_id == QFMT_VFS_V1 && version != 1)) {
cb8d01b4f   Jan Kara   quota: Fix error ...
102
  		ret = -EINVAL;
42fdb8583   Jan Kara   quota: Push dqio_...
103
104
  		goto out;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
105
106
107
108
  
  	size = sb->s_op->quota_read(sb, type, (char *)&dinfo,
  	       sizeof(struct v2_disk_dqinfo), V2_DQINFOOFF);
  	if (size != sizeof(struct v2_disk_dqinfo)) {
fb5ffb0e1   Jiaying Zhang   quota: Change quo...
109
  		quota_error(sb, "Can't read info structure");
f98bbe37a   Jan Kara   quota: Propagate ...
110
111
112
113
  		if (size < 0)
  			ret = size;
  		else
  			ret = -EIO;
42fdb8583   Jan Kara   quota: Push dqio_...
114
  		goto out;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
115
  	}
e3d4d56b9   Jan Kara   quota: Convert un...
116
117
  	info->dqi_priv = kmalloc(sizeof(struct qtree_mem_dqinfo), GFP_NOFS);
  	if (!info->dqi_priv) {
42fdb8583   Jan Kara   quota: Push dqio_...
118
119
  		ret = -ENOMEM;
  		goto out;
e3d4d56b9   Jan Kara   quota: Convert un...
120
121
  	}
  	qinfo = info->dqi_priv;
498c60153   Jan Kara   quota: Implement ...
122
123
  	if (version == 0) {
  		/* limits are stored as unsigned 32-bit data */
7e08da50c   Jan Kara   quota: Fix maximu...
124
  		info->dqi_max_spc_limit = 0xffffffffLL << QUOTABLOCK_BITS;
b10a08194   Jan Kara   quota: Store maxi...
125
  		info->dqi_max_ino_limit = 0xffffffff;
498c60153   Jan Kara   quota: Implement ...
126
  	} else {
7e08da50c   Jan Kara   quota: Fix maximu...
127
128
129
130
131
132
133
  		/*
  		 * Used space is stored as unsigned 64-bit value in bytes but
  		 * quota core supports only signed 64-bit values so use that
  		 * as a limit
  		 */
  		info->dqi_max_spc_limit = 0x7fffffffffffffffLL; /* 2^63-1 */
  		info->dqi_max_ino_limit = 0x7fffffffffffffffLL;
498c60153   Jan Kara   quota: Implement ...
134
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
135
136
  	info->dqi_bgrace = le32_to_cpu(dinfo.dqi_bgrace);
  	info->dqi_igrace = le32_to_cpu(dinfo.dqi_igrace);
c119c5b97   Jan Kara   quota: Don't stor...
137
138
  	/* No flags currently supported */
  	info->dqi_flags = 0;
e3d4d56b9   Jan Kara   quota: Convert un...
139
140
141
142
143
144
145
146
  	qinfo->dqi_sb = sb;
  	qinfo->dqi_type = type;
  	qinfo->dqi_blocks = le32_to_cpu(dinfo.dqi_blocks);
  	qinfo->dqi_free_blk = le32_to_cpu(dinfo.dqi_free_blk);
  	qinfo->dqi_free_entry = le32_to_cpu(dinfo.dqi_free_entry);
  	qinfo->dqi_blocksize_bits = V2_DQBLKSIZE_BITS;
  	qinfo->dqi_usable_bs = 1 << V2_DQBLKSIZE_BITS;
  	qinfo->dqi_qtree_depth = qtree_depth(qinfo);
498c60153   Jan Kara   quota: Implement ...
147
148
149
150
151
152
153
  	if (version == 0) {
  		qinfo->dqi_entry_size = sizeof(struct v2r0_disk_dqblk);
  		qinfo->dqi_ops = &v2r0_qtree_ops;
  	} else {
  		qinfo->dqi_entry_size = sizeof(struct v2r1_disk_dqblk);
  		qinfo->dqi_ops = &v2r1_qtree_ops;
  	}
42fdb8583   Jan Kara   quota: Push dqio_...
154
155
156
157
  	ret = 0;
  out:
  	up_read(&dqopt->dqio_sem);
  	return ret;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
158
159
160
161
162
163
  }
  
  /* Write information header to quota file */
  static int v2_write_file_info(struct super_block *sb, int type)
  {
  	struct v2_disk_dqinfo dinfo;
9a8ae30e7   Jan Kara   quota: Push dqio_...
164
165
  	struct quota_info *dqopt = sb_dqopt(sb);
  	struct mem_dqinfo *info = &dqopt->info[type];
e3d4d56b9   Jan Kara   quota: Convert un...
166
  	struct qtree_mem_dqinfo *qinfo = info->dqi_priv;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
167
  	ssize_t size;
9a8ae30e7   Jan Kara   quota: Push dqio_...
168
  	down_write(&dqopt->dqio_sem);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
169
170
171
172
  	spin_lock(&dq_data_lock);
  	info->dqi_flags &= ~DQF_INFO_DIRTY;
  	dinfo.dqi_bgrace = cpu_to_le32(info->dqi_bgrace);
  	dinfo.dqi_igrace = cpu_to_le32(info->dqi_igrace);
c119c5b97   Jan Kara   quota: Don't stor...
173
174
  	/* No flags currently supported */
  	dinfo.dqi_flags = cpu_to_le32(0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
175
  	spin_unlock(&dq_data_lock);
e3d4d56b9   Jan Kara   quota: Convert un...
176
177
178
  	dinfo.dqi_blocks = cpu_to_le32(qinfo->dqi_blocks);
  	dinfo.dqi_free_blk = cpu_to_le32(qinfo->dqi_free_blk);
  	dinfo.dqi_free_entry = cpu_to_le32(qinfo->dqi_free_entry);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
179
180
  	size = sb->s_op->quota_write(sb, type, (char *)&dinfo,
  	       sizeof(struct v2_disk_dqinfo), V2_DQINFOOFF);
9a8ae30e7   Jan Kara   quota: Push dqio_...
181
  	up_write(&dqopt->dqio_sem);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
182
  	if (size != sizeof(struct v2_disk_dqinfo)) {
fb5ffb0e1   Jiaying Zhang   quota: Change quo...
183
  		quota_error(sb, "Can't write info structure");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
184
185
186
187
  		return -1;
  	}
  	return 0;
  }
498c60153   Jan Kara   quota: Implement ...
188
  static void v2r0_disk2memdqb(struct dquot *dquot, void *dp)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
189
  {
498c60153   Jan Kara   quota: Implement ...
190
  	struct v2r0_disk_dqblk *d = dp, empty;
1ccd14b9c   Jan Kara   quota: Split off ...
191
  	struct mem_dqblk *m = &dquot->dq_dqb;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
192
193
194
195
  	m->dqb_ihardlimit = le32_to_cpu(d->dqb_ihardlimit);
  	m->dqb_isoftlimit = le32_to_cpu(d->dqb_isoftlimit);
  	m->dqb_curinodes = le32_to_cpu(d->dqb_curinodes);
  	m->dqb_itime = le64_to_cpu(d->dqb_itime);
12095460f   Jan Kara   quota: Increase s...
196
197
  	m->dqb_bhardlimit = v2_qbtos(le32_to_cpu(d->dqb_bhardlimit));
  	m->dqb_bsoftlimit = v2_qbtos(le32_to_cpu(d->dqb_bsoftlimit));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
198
199
  	m->dqb_curspace = le64_to_cpu(d->dqb_curspace);
  	m->dqb_btime = le64_to_cpu(d->dqb_btime);
1ccd14b9c   Jan Kara   quota: Split off ...
200
  	/* We need to escape back all-zero structure */
498c60153   Jan Kara   quota: Implement ...
201
  	memset(&empty, 0, sizeof(struct v2r0_disk_dqblk));
1ccd14b9c   Jan Kara   quota: Split off ...
202
  	empty.dqb_itime = cpu_to_le64(1);
498c60153   Jan Kara   quota: Implement ...
203
  	if (!memcmp(&empty, dp, sizeof(struct v2r0_disk_dqblk)))
1ccd14b9c   Jan Kara   quota: Split off ...
204
  		m->dqb_itime = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
205
  }
498c60153   Jan Kara   quota: Implement ...
206
  static void v2r0_mem2diskdqb(void *dp, struct dquot *dquot)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
207
  {
498c60153   Jan Kara   quota: Implement ...
208
  	struct v2r0_disk_dqblk *d = dp;
1ccd14b9c   Jan Kara   quota: Split off ...
209
210
  	struct mem_dqblk *m = &dquot->dq_dqb;
  	struct qtree_mem_dqinfo *info =
4c376dcae   Eric W. Biederman   userns: Convert s...
211
  			sb_dqinfo(dquot->dq_sb, dquot->dq_id.type)->dqi_priv;
1ccd14b9c   Jan Kara   quota: Split off ...
212

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
213
214
215
216
  	d->dqb_ihardlimit = cpu_to_le32(m->dqb_ihardlimit);
  	d->dqb_isoftlimit = cpu_to_le32(m->dqb_isoftlimit);
  	d->dqb_curinodes = cpu_to_le32(m->dqb_curinodes);
  	d->dqb_itime = cpu_to_le64(m->dqb_itime);
cf770c137   Jan Kara   quota: Move quota...
217
218
  	d->dqb_bhardlimit = cpu_to_le32(v2_stoqb(m->dqb_bhardlimit));
  	d->dqb_bsoftlimit = cpu_to_le32(v2_stoqb(m->dqb_bsoftlimit));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
219
220
  	d->dqb_curspace = cpu_to_le64(m->dqb_curspace);
  	d->dqb_btime = cpu_to_le64(m->dqb_btime);
4c376dcae   Eric W. Biederman   userns: Convert s...
221
  	d->dqb_id = cpu_to_le32(from_kqid(&init_user_ns, dquot->dq_id));
1ccd14b9c   Jan Kara   quota: Split off ...
222
223
  	if (qtree_entry_unused(info, dp))
  		d->dqb_itime = cpu_to_le64(1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
224
  }
498c60153   Jan Kara   quota: Implement ...
225
226
227
228
  static int v2r0_is_id(void *dp, struct dquot *dquot)
  {
  	struct v2r0_disk_dqblk *d = dp;
  	struct qtree_mem_dqinfo *info =
4c376dcae   Eric W. Biederman   userns: Convert s...
229
  			sb_dqinfo(dquot->dq_sb, dquot->dq_id.type)->dqi_priv;
498c60153   Jan Kara   quota: Implement ...
230
231
232
  
  	if (qtree_entry_unused(info, dp))
  		return 0;
4c376dcae   Eric W. Biederman   userns: Convert s...
233
234
235
  	return qid_eq(make_kqid(&init_user_ns, dquot->dq_id.type,
  				le32_to_cpu(d->dqb_id)),
  		      dquot->dq_id);
498c60153   Jan Kara   quota: Implement ...
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
  }
  
  static void v2r1_disk2memdqb(struct dquot *dquot, void *dp)
  {
  	struct v2r1_disk_dqblk *d = dp, empty;
  	struct mem_dqblk *m = &dquot->dq_dqb;
  
  	m->dqb_ihardlimit = le64_to_cpu(d->dqb_ihardlimit);
  	m->dqb_isoftlimit = le64_to_cpu(d->dqb_isoftlimit);
  	m->dqb_curinodes = le64_to_cpu(d->dqb_curinodes);
  	m->dqb_itime = le64_to_cpu(d->dqb_itime);
  	m->dqb_bhardlimit = v2_qbtos(le64_to_cpu(d->dqb_bhardlimit));
  	m->dqb_bsoftlimit = v2_qbtos(le64_to_cpu(d->dqb_bsoftlimit));
  	m->dqb_curspace = le64_to_cpu(d->dqb_curspace);
  	m->dqb_btime = le64_to_cpu(d->dqb_btime);
  	/* We need to escape back all-zero structure */
  	memset(&empty, 0, sizeof(struct v2r1_disk_dqblk));
  	empty.dqb_itime = cpu_to_le64(1);
  	if (!memcmp(&empty, dp, sizeof(struct v2r1_disk_dqblk)))
  		m->dqb_itime = 0;
  }
  
  static void v2r1_mem2diskdqb(void *dp, struct dquot *dquot)
  {
  	struct v2r1_disk_dqblk *d = dp;
  	struct mem_dqblk *m = &dquot->dq_dqb;
  	struct qtree_mem_dqinfo *info =
4c376dcae   Eric W. Biederman   userns: Convert s...
263
  			sb_dqinfo(dquot->dq_sb, dquot->dq_id.type)->dqi_priv;
498c60153   Jan Kara   quota: Implement ...
264
265
266
267
268
269
270
271
272
  
  	d->dqb_ihardlimit = cpu_to_le64(m->dqb_ihardlimit);
  	d->dqb_isoftlimit = cpu_to_le64(m->dqb_isoftlimit);
  	d->dqb_curinodes = cpu_to_le64(m->dqb_curinodes);
  	d->dqb_itime = cpu_to_le64(m->dqb_itime);
  	d->dqb_bhardlimit = cpu_to_le64(v2_stoqb(m->dqb_bhardlimit));
  	d->dqb_bsoftlimit = cpu_to_le64(v2_stoqb(m->dqb_bsoftlimit));
  	d->dqb_curspace = cpu_to_le64(m->dqb_curspace);
  	d->dqb_btime = cpu_to_le64(m->dqb_btime);
4c376dcae   Eric W. Biederman   userns: Convert s...
273
  	d->dqb_id = cpu_to_le32(from_kqid(&init_user_ns, dquot->dq_id));
498c60153   Jan Kara   quota: Implement ...
274
275
276
277
278
  	if (qtree_entry_unused(info, dp))
  		d->dqb_itime = cpu_to_le64(1);
  }
  
  static int v2r1_is_id(void *dp, struct dquot *dquot)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
279
  {
498c60153   Jan Kara   quota: Implement ...
280
  	struct v2r1_disk_dqblk *d = dp;
1ccd14b9c   Jan Kara   quota: Split off ...
281
  	struct qtree_mem_dqinfo *info =
4c376dcae   Eric W. Biederman   userns: Convert s...
282
  			sb_dqinfo(dquot->dq_sb, dquot->dq_id.type)->dqi_priv;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
283

1ccd14b9c   Jan Kara   quota: Split off ...
284
  	if (qtree_entry_unused(info, dp))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
285
  		return 0;
4c376dcae   Eric W. Biederman   userns: Convert s...
286
287
288
  	return qid_eq(make_kqid(&init_user_ns, dquot->dq_id.type,
  				le32_to_cpu(d->dqb_id)),
  		      dquot->dq_id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
289
  }
1ccd14b9c   Jan Kara   quota: Split off ...
290
  static int v2_read_dquot(struct dquot *dquot)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
291
  {
e342e38df   Jan Kara   quota: Push dqio_...
292
293
294
295
296
297
298
299
300
  	struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
  	int ret;
  
  	down_read(&dqopt->dqio_sem);
  	ret = qtree_read_dquot(
  			sb_dqinfo(dquot->dq_sb, dquot->dq_id.type)->dqi_priv,
  			dquot);
  	up_read(&dqopt->dqio_sem);
  	return ret;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
301
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
302
303
  static int v2_write_dquot(struct dquot *dquot)
  {
8fc32c2b0   Jan Kara   quota: Push dqio_...
304
305
  	struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
  	int ret;
d2faa4151   Jan Kara   quota: Do not acq...
306
307
308
309
310
311
312
313
314
315
316
  	bool alloc = false;
  
  	/*
  	 * If space for dquot is already allocated, we don't need any
  	 * protection as we'll only overwrite the place of dquot. We are
  	 * still protected by concurrent writes of the same dquot by
  	 * dquot->dq_lock.
  	 */
  	if (!dquot->dq_off) {
  		alloc = true;
  		down_write(&dqopt->dqio_sem);
4c6bb6966   Jan Kara   quota: Fix quota ...
317
318
  	} else {
  		down_read(&dqopt->dqio_sem);
d2faa4151   Jan Kara   quota: Do not acq...
319
  	}
8fc32c2b0   Jan Kara   quota: Push dqio_...
320
321
322
  	ret = qtree_write_dquot(
  			sb_dqinfo(dquot->dq_sb, dquot->dq_id.type)->dqi_priv,
  			dquot);
d2faa4151   Jan Kara   quota: Do not acq...
323
324
  	if (alloc)
  		up_write(&dqopt->dqio_sem);
4c6bb6966   Jan Kara   quota: Fix quota ...
325
326
  	else
  		up_read(&dqopt->dqio_sem);
8fc32c2b0   Jan Kara   quota: Push dqio_...
327
  	return ret;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
328
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
329
330
  static int v2_release_dquot(struct dquot *dquot)
  {
b9a1a7f4b   Jan Kara   quota: Push dqio_...
331
332
333
334
335
336
337
338
  	struct quota_info *dqopt = sb_dqopt(dquot->dq_sb);
  	int ret;
  
  	down_write(&dqopt->dqio_sem);
  	ret = qtree_release_dquot(sb_dqinfo(dquot->dq_sb, dquot->dq_id.type)->dqi_priv, dquot);
  	up_write(&dqopt->dqio_sem);
  
  	return ret;
e3d4d56b9   Jan Kara   quota: Convert un...
339
340
341
342
343
344
  }
  
  static int v2_free_file_info(struct super_block *sb, int type)
  {
  	kfree(sb_dqinfo(sb, type)->dqi_priv);
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
345
  }
0066373d9   Jan Kara   quota_v2: Impleme...
346
347
  static int v2_get_next_id(struct super_block *sb, struct kqid *qid)
  {
f14618c68   Jan Kara   quota: Push dqio_...
348
349
350
351
352
353
354
  	struct quota_info *dqopt = sb_dqopt(sb);
  	int ret;
  
  	down_read(&dqopt->dqio_sem);
  	ret = qtree_get_next_id(sb_dqinfo(sb, qid->type)->dqi_priv, qid);
  	up_read(&dqopt->dqio_sem);
  	return ret;
0066373d9   Jan Kara   quota_v2: Impleme...
355
  }
1472da5fd   Alexey Dobriyan   const: struct quo...
356
  static const struct quota_format_ops v2_format_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
357
358
359
  	.check_quota_file	= v2_check_quota_file,
  	.read_file_info		= v2_read_file_info,
  	.write_file_info	= v2_write_file_info,
e3d4d56b9   Jan Kara   quota: Convert un...
360
  	.free_file_info		= v2_free_file_info,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
361
362
363
  	.read_dqblk		= v2_read_dquot,
  	.commit_dqblk		= v2_write_dquot,
  	.release_dqblk		= v2_release_dquot,
0066373d9   Jan Kara   quota_v2: Impleme...
364
  	.get_next_id		= v2_get_next_id,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
365
  };
498c60153   Jan Kara   quota: Implement ...
366
  static struct quota_format_type v2r0_quota_format = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
367
368
369
370
  	.qf_fmt_id	= QFMT_VFS_V0,
  	.qf_ops		= &v2_format_ops,
  	.qf_owner	= THIS_MODULE
  };
498c60153   Jan Kara   quota: Implement ...
371
372
373
374
375
  static struct quota_format_type v2r1_quota_format = {
  	.qf_fmt_id	= QFMT_VFS_V1,
  	.qf_ops		= &v2_format_ops,
  	.qf_owner	= THIS_MODULE
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
376
377
  static int __init init_v2_quota_format(void)
  {
498c60153   Jan Kara   quota: Implement ...
378
379
380
381
382
383
  	int ret;
  
  	ret = register_quota_format(&v2r0_quota_format);
  	if (ret)
  		return ret;
  	return register_quota_format(&v2r1_quota_format);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
384
385
386
387
  }
  
  static void __exit exit_v2_quota_format(void)
  {
498c60153   Jan Kara   quota: Implement ...
388
389
  	unregister_quota_format(&v2r0_quota_format);
  	unregister_quota_format(&v2r1_quota_format);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
390
391
392
393
  }
  
  module_init(init_v2_quota_format);
  module_exit(exit_v2_quota_format);