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
, struct kqid qid
, int depth
)
27 unsigned int epb
= info
->dqi_usable_bs
>> 2;
28 qid_t id
= from_kqid(&init_user_ns
, qid
);
30 depth
= info
->dqi_qtree_depth
- depth
- 1;
36 /* Number of entries in one blocks */
37 static int qtree_dqstr_in_blk(struct qtree_mem_dqinfo
*info
)
39 return (info
->dqi_usable_bs
- sizeof(struct qt_disk_dqdbheader
))
40 / info
->dqi_entry_size
;
43 static char *getdqbuf(size_t size
)
45 char *buf
= kmalloc(size
, GFP_NOFS
);
48 "VFS: Not enough memory for quota buffers.\n");
52 static ssize_t
read_blk(struct qtree_mem_dqinfo
*info
, uint blk
, char *buf
)
54 struct super_block
*sb
= info
->dqi_sb
;
56 memset(buf
, 0, info
->dqi_usable_bs
);
57 return sb
->s_op
->quota_read(sb
, info
->dqi_type
, buf
,
58 info
->dqi_usable_bs
, blk
<< info
->dqi_blocksize_bits
);
61 static ssize_t
write_blk(struct qtree_mem_dqinfo
*info
, uint blk
, char *buf
)
63 struct super_block
*sb
= info
->dqi_sb
;
66 ret
= sb
->s_op
->quota_write(sb
, info
->dqi_type
, buf
,
67 info
->dqi_usable_bs
, blk
<< info
->dqi_blocksize_bits
);
68 if (ret
!= info
->dqi_usable_bs
) {
69 quota_error(sb
, "dquota write failed");
76 /* Remove empty block from list and return it */
77 static int get_free_dqblk(struct qtree_mem_dqinfo
*info
)
79 char *buf
= getdqbuf(info
->dqi_usable_bs
);
80 struct qt_disk_dqdbheader
*dh
= (struct qt_disk_dqdbheader
*)buf
;
85 if (info
->dqi_free_blk
) {
86 blk
= info
->dqi_free_blk
;
87 ret
= read_blk(info
, blk
, buf
);
90 info
->dqi_free_blk
= le32_to_cpu(dh
->dqdh_next_free
);
93 memset(buf
, 0, info
->dqi_usable_bs
);
94 /* Assure block allocation... */
95 ret
= write_blk(info
, info
->dqi_blocks
, buf
);
98 blk
= info
->dqi_blocks
++;
100 mark_info_dirty(info
->dqi_sb
, info
->dqi_type
);
107 /* Insert empty block to the list */
108 static int put_free_dqblk(struct qtree_mem_dqinfo
*info
, char *buf
, uint blk
)
110 struct qt_disk_dqdbheader
*dh
= (struct qt_disk_dqdbheader
*)buf
;
113 dh
->dqdh_next_free
= cpu_to_le32(info
->dqi_free_blk
);
114 dh
->dqdh_prev_free
= cpu_to_le32(0);
115 dh
->dqdh_entries
= cpu_to_le16(0);
116 err
= write_blk(info
, blk
, buf
);
119 info
->dqi_free_blk
= blk
;
120 mark_info_dirty(info
->dqi_sb
, info
->dqi_type
);
124 /* Remove given block from the list of blocks with free entries */
125 static int remove_free_dqentry(struct qtree_mem_dqinfo
*info
, char *buf
,
128 char *tmpbuf
= getdqbuf(info
->dqi_usable_bs
);
129 struct qt_disk_dqdbheader
*dh
= (struct qt_disk_dqdbheader
*)buf
;
130 uint nextblk
= le32_to_cpu(dh
->dqdh_next_free
);
131 uint prevblk
= le32_to_cpu(dh
->dqdh_prev_free
);
137 err
= read_blk(info
, nextblk
, tmpbuf
);
140 ((struct qt_disk_dqdbheader
*)tmpbuf
)->dqdh_prev_free
=
142 err
= write_blk(info
, nextblk
, tmpbuf
);
147 err
= read_blk(info
, prevblk
, tmpbuf
);
150 ((struct qt_disk_dqdbheader
*)tmpbuf
)->dqdh_next_free
=
152 err
= write_blk(info
, prevblk
, tmpbuf
);
156 info
->dqi_free_entry
= nextblk
;
157 mark_info_dirty(info
->dqi_sb
, info
->dqi_type
);
160 dh
->dqdh_next_free
= dh
->dqdh_prev_free
= cpu_to_le32(0);
161 /* No matter whether write succeeds block is out of list */
162 if (write_blk(info
, blk
, buf
) < 0)
163 quota_error(info
->dqi_sb
, "Can't write block (%u) "
164 "with free entries", blk
);
171 /* Insert given block to the beginning of list with free entries */
172 static int insert_free_dqentry(struct qtree_mem_dqinfo
*info
, char *buf
,
175 char *tmpbuf
= getdqbuf(info
->dqi_usable_bs
);
176 struct qt_disk_dqdbheader
*dh
= (struct qt_disk_dqdbheader
*)buf
;
181 dh
->dqdh_next_free
= cpu_to_le32(info
->dqi_free_entry
);
182 dh
->dqdh_prev_free
= cpu_to_le32(0);
183 err
= write_blk(info
, blk
, buf
);
186 if (info
->dqi_free_entry
) {
187 err
= read_blk(info
, info
->dqi_free_entry
, tmpbuf
);
190 ((struct qt_disk_dqdbheader
*)tmpbuf
)->dqdh_prev_free
=
192 err
= write_blk(info
, info
->dqi_free_entry
, tmpbuf
);
197 info
->dqi_free_entry
= blk
;
198 mark_info_dirty(info
->dqi_sb
, info
->dqi_type
);
205 /* Is the entry in the block free? */
206 int qtree_entry_unused(struct qtree_mem_dqinfo
*info
, char *disk
)
210 for (i
= 0; i
< info
->dqi_entry_size
; i
++)
215 EXPORT_SYMBOL(qtree_entry_unused
);
217 /* Find space for dquot */
218 static uint
find_free_dqentry(struct qtree_mem_dqinfo
*info
,
219 struct dquot
*dquot
, int *err
)
222 struct qt_disk_dqdbheader
*dh
;
223 char *buf
= getdqbuf(info
->dqi_usable_bs
);
231 dh
= (struct qt_disk_dqdbheader
*)buf
;
232 if (info
->dqi_free_entry
) {
233 blk
= info
->dqi_free_entry
;
234 *err
= read_blk(info
, blk
, buf
);
238 blk
= get_free_dqblk(info
);
244 memset(buf
, 0, info
->dqi_usable_bs
);
245 /* This is enough as the block is already zeroed and the entry
246 * list is empty... */
247 info
->dqi_free_entry
= blk
;
248 mark_info_dirty(dquot
->dq_sb
, dquot
->dq_id
.type
);
250 /* Block will be full? */
251 if (le16_to_cpu(dh
->dqdh_entries
) + 1 >= qtree_dqstr_in_blk(info
)) {
252 *err
= remove_free_dqentry(info
, buf
, blk
);
254 quota_error(dquot
->dq_sb
, "Can't remove block (%u) "
255 "from entry free list", blk
);
259 le16_add_cpu(&dh
->dqdh_entries
, 1);
260 /* Find free structure in block */
261 ddquot
= buf
+ sizeof(struct qt_disk_dqdbheader
);
262 for (i
= 0; i
< qtree_dqstr_in_blk(info
); i
++) {
263 if (qtree_entry_unused(info
, ddquot
))
265 ddquot
+= info
->dqi_entry_size
;
267 #ifdef __QUOTA_QT_PARANOIA
268 if (i
== qtree_dqstr_in_blk(info
)) {
269 quota_error(dquot
->dq_sb
, "Data block full but it shouldn't");
274 *err
= write_blk(info
, blk
, buf
);
276 quota_error(dquot
->dq_sb
, "Can't write quota data block %u",
280 dquot
->dq_off
= (blk
<< info
->dqi_blocksize_bits
) +
281 sizeof(struct qt_disk_dqdbheader
) +
282 i
* info
->dqi_entry_size
;
290 /* Insert reference to structure into the trie */
291 static int do_insert_tree(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
,
292 uint
*treeblk
, int depth
)
294 char *buf
= getdqbuf(info
->dqi_usable_bs
);
295 int ret
= 0, newson
= 0, newact
= 0;
302 ret
= get_free_dqblk(info
);
306 memset(buf
, 0, info
->dqi_usable_bs
);
309 ret
= read_blk(info
, *treeblk
, buf
);
311 quota_error(dquot
->dq_sb
, "Can't read tree quota "
312 "block %u", *treeblk
);
317 newblk
= le32_to_cpu(ref
[get_index(info
, dquot
->dq_id
, depth
)]);
320 if (depth
== info
->dqi_qtree_depth
- 1) {
321 #ifdef __QUOTA_QT_PARANOIA
323 quota_error(dquot
->dq_sb
, "Inserting already present "
324 "quota entry (block %u)",
325 le32_to_cpu(ref
[get_index(info
,
326 dquot
->dq_id
, depth
)]));
331 newblk
= find_free_dqentry(info
, dquot
, &ret
);
333 ret
= do_insert_tree(info
, dquot
, &newblk
, depth
+1);
335 if (newson
&& ret
>= 0) {
336 ref
[get_index(info
, dquot
->dq_id
, depth
)] =
338 ret
= write_blk(info
, *treeblk
, buf
);
339 } else if (newact
&& ret
< 0) {
340 put_free_dqblk(info
, buf
, *treeblk
);
347 /* Wrapper for inserting quota structure into tree */
348 static inline int dq_insert_tree(struct qtree_mem_dqinfo
*info
,
351 int tmp
= QT_TREEOFF
;
352 return do_insert_tree(info
, dquot
, &tmp
, 0);
356 * We don't have to be afraid of deadlocks as we never have quotas on quota
359 int qtree_write_dquot(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
)
361 int type
= dquot
->dq_id
.type
;
362 struct super_block
*sb
= dquot
->dq_sb
;
364 char *ddquot
= getdqbuf(info
->dqi_entry_size
);
369 /* dq_off is guarded by dqio_mutex */
370 if (!dquot
->dq_off
) {
371 ret
= dq_insert_tree(info
, dquot
);
373 quota_error(sb
, "Error %zd occurred while creating "
379 spin_lock(&dq_data_lock
);
380 info
->dqi_ops
->mem2disk_dqblk(ddquot
, dquot
);
381 spin_unlock(&dq_data_lock
);
382 ret
= sb
->s_op
->quota_write(sb
, type
, ddquot
, info
->dqi_entry_size
,
384 if (ret
!= info
->dqi_entry_size
) {
385 quota_error(sb
, "dquota write failed");
391 dqstats_inc(DQST_WRITES
);
396 EXPORT_SYMBOL(qtree_write_dquot
);
398 /* Free dquot entry in data block */
399 static int free_dqentry(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
,
402 struct qt_disk_dqdbheader
*dh
;
403 char *buf
= getdqbuf(info
->dqi_usable_bs
);
408 if (dquot
->dq_off
>> info
->dqi_blocksize_bits
!= blk
) {
409 quota_error(dquot
->dq_sb
, "Quota structure has offset to "
410 "other block (%u) than it should (%u)", blk
,
411 (uint
)(dquot
->dq_off
>> info
->dqi_blocksize_bits
));
414 ret
= read_blk(info
, blk
, buf
);
416 quota_error(dquot
->dq_sb
, "Can't read quota data block %u",
420 dh
= (struct qt_disk_dqdbheader
*)buf
;
421 le16_add_cpu(&dh
->dqdh_entries
, -1);
422 if (!le16_to_cpu(dh
->dqdh_entries
)) { /* Block got free? */
423 ret
= remove_free_dqentry(info
, buf
, blk
);
425 ret
= put_free_dqblk(info
, buf
, blk
);
427 quota_error(dquot
->dq_sb
, "Can't move quota data block "
428 "(%u) to free list", blk
);
433 (dquot
->dq_off
& ((1 << info
->dqi_blocksize_bits
) - 1)),
434 0, info
->dqi_entry_size
);
435 if (le16_to_cpu(dh
->dqdh_entries
) ==
436 qtree_dqstr_in_blk(info
) - 1) {
437 /* Insert will write block itself */
438 ret
= insert_free_dqentry(info
, buf
, blk
);
440 quota_error(dquot
->dq_sb
, "Can't insert quota "
441 "data block (%u) to free entry list", blk
);
445 ret
= write_blk(info
, blk
, buf
);
447 quota_error(dquot
->dq_sb
, "Can't write quota "
448 "data block %u", blk
);
453 dquot
->dq_off
= 0; /* Quota is now unattached */
459 /* Remove reference to dquot from tree */
460 static int remove_tree(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
,
461 uint
*blk
, int depth
)
463 char *buf
= getdqbuf(info
->dqi_usable_bs
);
466 __le32
*ref
= (__le32
*)buf
;
470 ret
= read_blk(info
, *blk
, buf
);
472 quota_error(dquot
->dq_sb
, "Can't read quota data block %u",
476 newblk
= le32_to_cpu(ref
[get_index(info
, dquot
->dq_id
, depth
)]);
477 if (depth
== info
->dqi_qtree_depth
- 1) {
478 ret
= free_dqentry(info
, dquot
, newblk
);
481 ret
= remove_tree(info
, dquot
, &newblk
, depth
+1);
483 if (ret
>= 0 && !newblk
) {
485 ref
[get_index(info
, dquot
->dq_id
, depth
)] = cpu_to_le32(0);
486 /* Block got empty? */
487 for (i
= 0; i
< (info
->dqi_usable_bs
>> 2) && !ref
[i
]; i
++)
489 /* Don't put the root block into the free block list */
490 if (i
== (info
->dqi_usable_bs
>> 2)
491 && *blk
!= QT_TREEOFF
) {
492 put_free_dqblk(info
, buf
, *blk
);
495 ret
= write_blk(info
, *blk
, buf
);
497 quota_error(dquot
->dq_sb
,
498 "Can't write quota tree block %u",
507 /* Delete dquot from tree */
508 int qtree_delete_dquot(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
)
510 uint tmp
= QT_TREEOFF
;
512 if (!dquot
->dq_off
) /* Even not allocated? */
514 return remove_tree(info
, dquot
, &tmp
, 0);
516 EXPORT_SYMBOL(qtree_delete_dquot
);
518 /* Find entry in block */
519 static loff_t
find_block_dqentry(struct qtree_mem_dqinfo
*info
,
520 struct dquot
*dquot
, uint blk
)
522 char *buf
= getdqbuf(info
->dqi_usable_bs
);
529 ret
= read_blk(info
, blk
, buf
);
531 quota_error(dquot
->dq_sb
, "Can't read quota tree "
535 ddquot
= buf
+ sizeof(struct qt_disk_dqdbheader
);
536 for (i
= 0; i
< qtree_dqstr_in_blk(info
); i
++) {
537 if (info
->dqi_ops
->is_id(ddquot
, dquot
))
539 ddquot
+= info
->dqi_entry_size
;
541 if (i
== qtree_dqstr_in_blk(info
)) {
542 quota_error(dquot
->dq_sb
,
543 "Quota for id %u referenced but not present",
544 from_kqid(&init_user_ns
, dquot
->dq_id
));
548 ret
= (blk
<< info
->dqi_blocksize_bits
) + sizeof(struct
549 qt_disk_dqdbheader
) + i
* info
->dqi_entry_size
;
556 /* Find entry for given id in the tree */
557 static loff_t
find_tree_dqentry(struct qtree_mem_dqinfo
*info
,
558 struct dquot
*dquot
, uint blk
, int depth
)
560 char *buf
= getdqbuf(info
->dqi_usable_bs
);
562 __le32
*ref
= (__le32
*)buf
;
566 ret
= read_blk(info
, blk
, buf
);
568 quota_error(dquot
->dq_sb
, "Can't read quota tree block %u",
573 blk
= le32_to_cpu(ref
[get_index(info
, dquot
->dq_id
, depth
)]);
574 if (!blk
) /* No reference? */
576 if (depth
< info
->dqi_qtree_depth
- 1)
577 ret
= find_tree_dqentry(info
, dquot
, blk
, depth
+1);
579 ret
= find_block_dqentry(info
, dquot
, blk
);
585 /* Find entry for given id in the tree - wrapper function */
586 static inline loff_t
find_dqentry(struct qtree_mem_dqinfo
*info
,
589 return find_tree_dqentry(info
, dquot
, QT_TREEOFF
, 0);
592 int qtree_read_dquot(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
)
594 int type
= dquot
->dq_id
.type
;
595 struct super_block
*sb
= dquot
->dq_sb
;
600 #ifdef __QUOTA_QT_PARANOIA
601 /* Invalidated quota? */
602 if (!sb_dqopt(dquot
->dq_sb
)->files
[type
]) {
603 quota_error(sb
, "Quota invalidated while reading!");
607 /* Do we know offset of the dquot entry in the quota file? */
608 if (!dquot
->dq_off
) {
609 offset
= find_dqentry(info
, dquot
);
610 if (offset
<= 0) { /* Entry not present? */
612 quota_error(sb
,"Can't read quota structure "
614 from_kqid(&init_user_ns
,
617 set_bit(DQ_FAKE_B
, &dquot
->dq_flags
);
618 memset(&dquot
->dq_dqb
, 0, sizeof(struct mem_dqblk
));
622 dquot
->dq_off
= offset
;
624 ddquot
= getdqbuf(info
->dqi_entry_size
);
627 ret
= sb
->s_op
->quota_read(sb
, type
, ddquot
, info
->dqi_entry_size
,
629 if (ret
!= info
->dqi_entry_size
) {
632 quota_error(sb
, "Error while reading quota structure for id %u",
633 from_kqid(&init_user_ns
, dquot
->dq_id
));
634 set_bit(DQ_FAKE_B
, &dquot
->dq_flags
);
635 memset(&dquot
->dq_dqb
, 0, sizeof(struct mem_dqblk
));
639 spin_lock(&dq_data_lock
);
640 info
->dqi_ops
->disk2mem_dqblk(dquot
, ddquot
);
641 if (!dquot
->dq_dqb
.dqb_bhardlimit
&&
642 !dquot
->dq_dqb
.dqb_bsoftlimit
&&
643 !dquot
->dq_dqb
.dqb_ihardlimit
&&
644 !dquot
->dq_dqb
.dqb_isoftlimit
)
645 set_bit(DQ_FAKE_B
, &dquot
->dq_flags
);
646 spin_unlock(&dq_data_lock
);
649 dqstats_inc(DQST_READS
);
652 EXPORT_SYMBOL(qtree_read_dquot
);
654 /* Check whether dquot should not be deleted. We know we are
655 * the only one operating on dquot (thanks to dq_lock) */
656 int qtree_release_dquot(struct qtree_mem_dqinfo
*info
, struct dquot
*dquot
)
658 if (test_bit(DQ_FAKE_B
, &dquot
->dq_flags
) &&
659 !(dquot
->dq_dqb
.dqb_curinodes
| dquot
->dq_dqb
.dqb_curspace
))
660 return qtree_delete_dquot(info
, dquot
);
663 EXPORT_SYMBOL(qtree_release_dquot
);