2 * vfsv0 quota IO operations on file
5 #include <linux/errno.h>
7 #include <linux/mount.h>
8 #include <linux/dqblk_v2.h>
9 #include <linux/kernel.h>
10 #include <linux/init.h>
11 #include <linux/module.h>
12 #include <linux/slab.h>
13 #include <linux/quotaops.h>
15 #include <asm/byteorder.h>
17 #include "quota_tree.h"
19 MODULE_AUTHOR("Jan Kara");
20 MODULE_DESCRIPTION("Quota trie support");
21 MODULE_LICENSE("GPL");
23 #define __QUOTA_QT_PARANOIA
25 static int get_index(struct qtree_mem_dqinfo
*info
, qid_t id
, int depth
)
27 unsigned int epb
= info
->dqi_usable_bs
>> 2;
29 depth
= info
->dqi_qtree_depth
- depth
- 1;
35 /* Number of entries in one blocks */
36 static int qtree_dqstr_in_blk(struct qtree_mem_dqinfo
*info
)
38 return (info
->dqi_usable_bs
- sizeof(struct qt_disk_dqdbheader
))
39 / info
->dqi_entry_size
;
42 static char *getdqbuf(size_t size
)
44 char *buf
= kmalloc(size
, GFP_NOFS
);
47 "VFS: Not enough memory for quota buffers.\n");
51 static ssize_t
read_blk(struct qtree_mem_dqinfo
*info
, uint blk
, char *buf
)
53 struct super_block
*sb
= info
->dqi_sb
;
55 memset(buf
, 0, info
->dqi_usable_bs
);
56 return sb
->s_op
->quota_read(sb
, info
->dqi_type
, buf
,
57 info
->dqi_usable_bs
, blk
<< info
->dqi_blocksize_bits
);
60 static ssize_t
write_blk(struct qtree_mem_dqinfo
*info
, uint blk
, char *buf
)
62 struct super_block
*sb
= info
->dqi_sb
;
65 ret
= sb
->s_op
->quota_write(sb
, info
->dqi_type
, buf
,
66 info
->dqi_usable_bs
, blk
<< info
->dqi_blocksize_bits
);
67 if (ret
!= info
->dqi_usable_bs
) {
68 quota_error(sb
, "dquota write failed");
75 /* Remove empty block from list and return it */
76 static int get_free_dqblk(struct qtree_mem_dqinfo
*info
)
78 char *buf
= getdqbuf(info
->dqi_usable_bs
);
79 struct qt_disk_dqdbheader
*dh
= (struct qt_disk_dqdbheader
*)buf
;
84 if (info
->dqi_free_blk
) {
85 blk
= info
->dqi_free_blk
;
86 ret
= read_blk(info
, blk
, buf
);
89 info
->dqi_free_blk
= le32_to_cpu(dh
->dqdh_next_free
);
92 memset(buf
, 0, info
->dqi_usable_bs
);
93 /* Assure block allocation... */
94 ret
= write_blk(info
, info
->dqi_blocks
, buf
);
97 blk
= info
->dqi_blocks
++;
99 mark_info_dirty(info
->dqi_sb
, info
->dqi_type
);
106 /* Insert empty block to the list */
107 static int put_free_dqblk(struct qtree_mem_dqinfo
*info
, char *buf
, uint blk
)
109 struct qt_disk_dqdbheader
*dh
= (struct qt_disk_dqdbheader
*)buf
;
112 dh
->dqdh_next_free
= cpu_to_le32(info
->dqi_free_blk
);
113 dh
->dqdh_prev_free
= cpu_to_le32(0);
114 dh
->dqdh_entries
= cpu_to_le16(0);
115 err
= write_blk(info
, blk
, buf
);
118 info
->dqi_free_blk
= blk
;
119 mark_info_dirty(info
->dqi_sb
, info
->dqi_type
);
123 /* Remove given block from the list of blocks with free entries */
124 static int remove_free_dqentry(struct qtree_mem_dqinfo
*info
, char *buf
,
127 char *tmpbuf
= getdqbuf(info
->dqi_usable_bs
);
128 struct qt_disk_dqdbheader
*dh
= (struct qt_disk_dqdbheader
*)buf
;
129 uint nextblk
= le32_to_cpu(dh
->dqdh_next_free
);
130 uint prevblk
= le32_to_cpu(dh
->dqdh_prev_free
);
136 err
= read_blk(info
, nextblk
, tmpbuf
);
139 ((struct qt_disk_dqdbheader
*)tmpbuf
)->dqdh_prev_free
=
141 err
= write_blk(info
, nextblk
, tmpbuf
);
146 err
= read_blk(info
, prevblk
, tmpbuf
);
149 ((struct qt_disk_dqdbheader
*)tmpbuf
)->dqdh_next_free
=
151 err
= write_blk(info
, prevblk
, tmpbuf
);
155 info
->dqi_free_entry
= nextblk
;
156 mark_info_dirty(info
->dqi_sb
, info
->dqi_type
);
159 dh
->dqdh_next_free
= dh
->dqdh_prev_free
= cpu_to_le32(0);
160 /* No matter whether write succeeds block is out of list */
161 if (write_blk(info
, blk
, buf
) < 0)
162 quota_error(info
->dqi_sb
, "Can't write block (%u) "
163 "with free entries", blk
);
170 /* Insert given block to the beginning of list with free entries */
171 static int insert_free_dqentry(struct qtree_mem_dqinfo
*info
, char *buf
,
174 char *tmpbuf
= getdqbuf(info
->dqi_usable_bs
);
175 struct qt_disk_dqdbheader
*dh
= (struct qt_disk_dqdbheader
*)buf
;
180 dh
->dqdh_next_free
= cpu_to_le32(info
->dqi_free_entry
);
181 dh
->dqdh_prev_free
= cpu_to_le32(0);
182 err
= write_blk(info
, blk
, buf
);
185 if (info
->dqi_free_entry
) {
186 err
= read_blk(info
, info
->dqi_free_entry
, tmpbuf
);
189 ((struct qt_disk_dqdbheader
*)tmpbuf
)->dqdh_prev_free
=
191 err
= write_blk(info
, info
->dqi_free_entry
, tmpbuf
);
196 info
->dqi_free_entry
= blk
;
197 mark_info_dirty(info
->dqi_sb
, info
->dqi_type
);
204 /* Is the entry in the block free? */
205 int qtree_entry_unused(struct qtree_mem_dqinfo
*info
, char *disk
)
209 for (i
= 0; i
< info
->dqi_entry_size
; i
++)
214 EXPORT_SYMBOL(qtree_entry_unused
);
216 /* Find space for dquot */
217 static uint
find_free_dqentry(struct qtree_mem_dqinfo
*info
,
218 struct dquot
*dquot
, int *err
)
221 struct qt_disk_dqdbheader
*dh
;
222 char *buf
= getdqbuf(info
->dqi_usable_bs
);
230 dh
= (struct qt_disk_dqdbheader
*)buf
;
231 if (info
->dqi_free_entry
) {
232 blk
= info
->dqi_free_entry
;
233 *err
= read_blk(info
, blk
, buf
);
237 blk
= get_free_dqblk(info
);
243 memset(buf
, 0, info
->dqi_usable_bs
);
244 /* This is enough as the block is already zeroed and the entry
245 * list is empty... */
246 info
->dqi_free_entry
= blk
;
247 mark_info_dirty(dquot
->dq_sb
, dquot
->dq_type
);
249 /* Block will be full? */
250 if (le16_to_cpu(dh
->dqdh_entries
) + 1 >= qtree_dqstr_in_blk(info
)) {
251 *err
= remove_free_dqentry(info
, buf
, blk
);
253 quota_error(dquot
->dq_sb
, "Can't remove block (%u) "
254 "from entry free list", blk
);
258 le16_add_cpu(&dh
->dqdh_entries
, 1);
259 /* Find free structure in block */
260 ddquot
= buf
+ sizeof(struct qt_disk_dqdbheader
);
261 for (i
= 0; i
< qtree_dqstr_in_blk(info
); i
++) {
262 if (qtree_entry_unused(info
, ddquot
))
264 ddquot
+= info
->dqi_entry_size
;
266 #ifdef __QUOTA_QT_PARANOIA
267 if (i
== qtree_dqstr_in_blk(info
)) {
268 quota_error(dquot
->dq_sb
, "Data block full but it shouldn't");
273 *err
= write_blk(info
, blk
, buf
);
275 quota_error(dquot
->dq_sb
, "Can't write quota data block %u",
279 dquot
->dq_off
= (blk
<< info
->dqi_blocksize_bits
) +
280 sizeof(struct qt_disk_dqdbheader
) +
281 i
* info
->dqi_entry_size
;
289 /* Insert reference to structure into the trie */
290 static int do_insert_tree(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
,
291 uint
*treeblk
, int depth
)
293 char *buf
= getdqbuf(info
->dqi_usable_bs
);
294 int ret
= 0, newson
= 0, newact
= 0;
301 ret
= get_free_dqblk(info
);
305 memset(buf
, 0, info
->dqi_usable_bs
);
308 ret
= read_blk(info
, *treeblk
, buf
);
310 quota_error(dquot
->dq_sb
, "Can't read tree quota "
311 "block %u", *treeblk
);
316 newblk
= le32_to_cpu(ref
[get_index(info
, dquot
->dq_id
, depth
)]);
319 if (depth
== info
->dqi_qtree_depth
- 1) {
320 #ifdef __QUOTA_QT_PARANOIA
322 quota_error(dquot
->dq_sb
, "Inserting already present "
323 "quota entry (block %u)",
324 le32_to_cpu(ref
[get_index(info
,
325 dquot
->dq_id
, depth
)]));
330 newblk
= find_free_dqentry(info
, dquot
, &ret
);
332 ret
= do_insert_tree(info
, dquot
, &newblk
, depth
+1);
334 if (newson
&& ret
>= 0) {
335 ref
[get_index(info
, dquot
->dq_id
, depth
)] =
337 ret
= write_blk(info
, *treeblk
, buf
);
338 } else if (newact
&& ret
< 0) {
339 put_free_dqblk(info
, buf
, *treeblk
);
346 /* Wrapper for inserting quota structure into tree */
347 static inline int dq_insert_tree(struct qtree_mem_dqinfo
*info
,
350 int tmp
= QT_TREEOFF
;
351 return do_insert_tree(info
, dquot
, &tmp
, 0);
355 * We don't have to be afraid of deadlocks as we never have quotas on quota
358 int qtree_write_dquot(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
)
360 int type
= dquot
->dq_type
;
361 struct super_block
*sb
= dquot
->dq_sb
;
363 char *ddquot
= getdqbuf(info
->dqi_entry_size
);
368 /* dq_off is guarded by dqio_mutex */
369 if (!dquot
->dq_off
) {
370 ret
= dq_insert_tree(info
, dquot
);
372 quota_error(sb
, "Error %zd occurred while creating "
378 spin_lock(&dq_data_lock
);
379 info
->dqi_ops
->mem2disk_dqblk(ddquot
, dquot
);
380 spin_unlock(&dq_data_lock
);
381 ret
= sb
->s_op
->quota_write(sb
, type
, ddquot
, info
->dqi_entry_size
,
383 if (ret
!= info
->dqi_entry_size
) {
384 quota_error(sb
, "dquota write failed");
390 dqstats_inc(DQST_WRITES
);
395 EXPORT_SYMBOL(qtree_write_dquot
);
397 /* Free dquot entry in data block */
398 static int free_dqentry(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
,
401 struct qt_disk_dqdbheader
*dh
;
402 char *buf
= getdqbuf(info
->dqi_usable_bs
);
407 if (dquot
->dq_off
>> info
->dqi_blocksize_bits
!= blk
) {
408 quota_error(dquot
->dq_sb
, "Quota structure has offset to "
409 "other block (%u) than it should (%u)", blk
,
410 (uint
)(dquot
->dq_off
>> info
->dqi_blocksize_bits
));
413 ret
= read_blk(info
, blk
, buf
);
415 quota_error(dquot
->dq_sb
, "Can't read quota data block %u",
419 dh
= (struct qt_disk_dqdbheader
*)buf
;
420 le16_add_cpu(&dh
->dqdh_entries
, -1);
421 if (!le16_to_cpu(dh
->dqdh_entries
)) { /* Block got free? */
422 ret
= remove_free_dqentry(info
, buf
, blk
);
424 ret
= put_free_dqblk(info
, buf
, blk
);
426 quota_error(dquot
->dq_sb
, "Can't move quota data block "
427 "(%u) to free list", blk
);
432 (dquot
->dq_off
& ((1 << info
->dqi_blocksize_bits
) - 1)),
433 0, info
->dqi_entry_size
);
434 if (le16_to_cpu(dh
->dqdh_entries
) ==
435 qtree_dqstr_in_blk(info
) - 1) {
436 /* Insert will write block itself */
437 ret
= insert_free_dqentry(info
, buf
, blk
);
439 quota_error(dquot
->dq_sb
, "Can't insert quota "
440 "data block (%u) to free entry list", blk
);
444 ret
= write_blk(info
, blk
, buf
);
446 quota_error(dquot
->dq_sb
, "Can't write quota "
447 "data block %u", blk
);
452 dquot
->dq_off
= 0; /* Quota is now unattached */
458 /* Remove reference to dquot from tree */
459 static int remove_tree(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
,
460 uint
*blk
, int depth
)
462 char *buf
= getdqbuf(info
->dqi_usable_bs
);
465 __le32
*ref
= (__le32
*)buf
;
469 ret
= read_blk(info
, *blk
, buf
);
471 quota_error(dquot
->dq_sb
, "Can't read quota data block %u",
475 newblk
= le32_to_cpu(ref
[get_index(info
, dquot
->dq_id
, depth
)]);
476 if (depth
== info
->dqi_qtree_depth
- 1) {
477 ret
= free_dqentry(info
, dquot
, newblk
);
480 ret
= remove_tree(info
, dquot
, &newblk
, depth
+1);
482 if (ret
>= 0 && !newblk
) {
484 ref
[get_index(info
, dquot
->dq_id
, depth
)] = cpu_to_le32(0);
485 /* Block got empty? */
486 for (i
= 0; i
< (info
->dqi_usable_bs
>> 2) && !ref
[i
]; i
++)
488 /* Don't put the root block into the free block list */
489 if (i
== (info
->dqi_usable_bs
>> 2)
490 && *blk
!= QT_TREEOFF
) {
491 put_free_dqblk(info
, buf
, *blk
);
494 ret
= write_blk(info
, *blk
, buf
);
496 quota_error(dquot
->dq_sb
,
497 "Can't write quota tree block %u",
506 /* Delete dquot from tree */
507 int qtree_delete_dquot(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
)
509 uint tmp
= QT_TREEOFF
;
511 if (!dquot
->dq_off
) /* Even not allocated? */
513 return remove_tree(info
, dquot
, &tmp
, 0);
515 EXPORT_SYMBOL(qtree_delete_dquot
);
517 /* Find entry in block */
518 static loff_t
find_block_dqentry(struct qtree_mem_dqinfo
*info
,
519 struct dquot
*dquot
, uint blk
)
521 char *buf
= getdqbuf(info
->dqi_usable_bs
);
528 ret
= read_blk(info
, blk
, buf
);
530 quota_error(dquot
->dq_sb
, "Can't read quota tree "
534 ddquot
= buf
+ sizeof(struct qt_disk_dqdbheader
);
535 for (i
= 0; i
< qtree_dqstr_in_blk(info
); i
++) {
536 if (info
->dqi_ops
->is_id(ddquot
, dquot
))
538 ddquot
+= info
->dqi_entry_size
;
540 if (i
== qtree_dqstr_in_blk(info
)) {
541 quota_error(dquot
->dq_sb
, "Quota for id %u referenced "
542 "but not present", dquot
->dq_id
);
546 ret
= (blk
<< info
->dqi_blocksize_bits
) + sizeof(struct
547 qt_disk_dqdbheader
) + i
* info
->dqi_entry_size
;
554 /* Find entry for given id in the tree */
555 static loff_t
find_tree_dqentry(struct qtree_mem_dqinfo
*info
,
556 struct dquot
*dquot
, uint blk
, int depth
)
558 char *buf
= getdqbuf(info
->dqi_usable_bs
);
560 __le32
*ref
= (__le32
*)buf
;
564 ret
= read_blk(info
, blk
, buf
);
566 quota_error(dquot
->dq_sb
, "Can't read quota tree block %u",
571 blk
= le32_to_cpu(ref
[get_index(info
, dquot
->dq_id
, depth
)]);
572 if (!blk
) /* No reference? */
574 if (depth
< info
->dqi_qtree_depth
- 1)
575 ret
= find_tree_dqentry(info
, dquot
, blk
, depth
+1);
577 ret
= find_block_dqentry(info
, dquot
, blk
);
583 /* Find entry for given id in the tree - wrapper function */
584 static inline loff_t
find_dqentry(struct qtree_mem_dqinfo
*info
,
587 return find_tree_dqentry(info
, dquot
, QT_TREEOFF
, 0);
590 int qtree_read_dquot(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
)
592 int type
= dquot
->dq_type
;
593 struct super_block
*sb
= dquot
->dq_sb
;
598 #ifdef __QUOTA_QT_PARANOIA
599 /* Invalidated quota? */
600 if (!sb_dqopt(dquot
->dq_sb
)->files
[type
]) {
601 quota_error(sb
, "Quota invalidated while reading!");
605 /* Do we know offset of the dquot entry in the quota file? */
606 if (!dquot
->dq_off
) {
607 offset
= find_dqentry(info
, dquot
);
608 if (offset
<= 0) { /* Entry not present? */
610 quota_error(sb
, "Can't read quota structure "
611 "for id %u", dquot
->dq_id
);
613 set_bit(DQ_FAKE_B
, &dquot
->dq_flags
);
614 memset(&dquot
->dq_dqb
, 0, sizeof(struct mem_dqblk
));
618 dquot
->dq_off
= offset
;
620 ddquot
= getdqbuf(info
->dqi_entry_size
);
623 ret
= sb
->s_op
->quota_read(sb
, type
, ddquot
, info
->dqi_entry_size
,
625 if (ret
!= info
->dqi_entry_size
) {
628 quota_error(sb
, "Error while reading quota structure for id %u",
630 set_bit(DQ_FAKE_B
, &dquot
->dq_flags
);
631 memset(&dquot
->dq_dqb
, 0, sizeof(struct mem_dqblk
));
635 spin_lock(&dq_data_lock
);
636 info
->dqi_ops
->disk2mem_dqblk(dquot
, ddquot
);
637 if (!dquot
->dq_dqb
.dqb_bhardlimit
&&
638 !dquot
->dq_dqb
.dqb_bsoftlimit
&&
639 !dquot
->dq_dqb
.dqb_ihardlimit
&&
640 !dquot
->dq_dqb
.dqb_isoftlimit
)
641 set_bit(DQ_FAKE_B
, &dquot
->dq_flags
);
642 spin_unlock(&dq_data_lock
);
645 dqstats_inc(DQST_READS
);
648 EXPORT_SYMBOL(qtree_read_dquot
);
650 /* Check whether dquot should not be deleted. We know we are
651 * the only one operating on dquot (thanks to dq_lock) */
652 int qtree_release_dquot(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
)
654 if (test_bit(DQ_FAKE_B
, &dquot
->dq_flags
) &&
655 !(dquot
->dq_dqb
.dqb_curinodes
| dquot
->dq_dqb
.dqb_curspace
))
656 return qtree_delete_dquot(info
, dquot
);
659 EXPORT_SYMBOL(qtree_release_dquot
);