2 * linux/fs/ext3/ialloc.c
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
9 * BSD ufs-inspired inode and directory allocation by
10 * Stephen Tweedie (sct@redhat.com), 1993
11 * Big-endian to little-endian byte-swapping/bitmaps by
12 * David S. Miller (davem@caip.rutgers.edu), 1995
15 #include <linux/time.h>
17 #include <linux/jbd.h>
18 #include <linux/ext3_fs.h>
19 #include <linux/ext3_jbd.h>
20 #include <linux/stat.h>
21 #include <linux/string.h>
22 #include <linux/quotaops.h>
23 #include <linux/buffer_head.h>
24 #include <linux/random.h>
25 #include <linux/bitops.h>
27 #include <asm/byteorder.h>
33 * ialloc.c contains the inodes allocation and deallocation routines
37 * The free inodes are managed by bitmaps. A file system contains several
38 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
39 * block for inodes, N blocks for the inode table and data blocks.
41 * The file system contains group descriptors which are located after the
42 * super block. Each descriptor contains the number of the bitmap block and
43 * the free blocks count in the block.
48 * Read the inode allocation bitmap for a given block_group, reading
49 * into the specified slot in the superblock's bitmap cache.
51 * Return buffer_head of bitmap on success or NULL.
53 static struct buffer_head
*
54 read_inode_bitmap(struct super_block
* sb
, unsigned long block_group
)
56 struct ext3_group_desc
*desc
;
57 struct buffer_head
*bh
= NULL
;
59 desc
= ext3_get_group_desc(sb
, block_group
, NULL
);
63 bh
= sb_bread(sb
, le32_to_cpu(desc
->bg_inode_bitmap
));
65 ext3_error(sb
, "read_inode_bitmap",
66 "Cannot read inode bitmap - "
67 "block_group = %lu, inode_bitmap = %u",
68 block_group
, le32_to_cpu(desc
->bg_inode_bitmap
));
74 * NOTE! When we get the inode, we're the only people
75 * that have access to it, and as such there are no
76 * race conditions we have to worry about. The inode
77 * is not on the hash-lists, and it cannot be reached
78 * through the filesystem because the directory entry
79 * has been deleted earlier.
81 * HOWEVER: we must make sure that we get no aliases,
82 * which means that we have to call "clear_inode()"
83 * _before_ we mark the inode not in use in the inode
84 * bitmaps. Otherwise a newly created file might use
85 * the same inode number (not actually the same pointer
86 * though), and then we'd have two inodes sharing the
87 * same inode number and space on the harddisk.
89 void ext3_free_inode (handle_t
*handle
, struct inode
* inode
)
91 struct super_block
* sb
= inode
->i_sb
;
94 struct buffer_head
*bitmap_bh
= NULL
;
95 struct buffer_head
*bh2
;
96 unsigned long block_group
;
98 struct ext3_group_desc
* gdp
;
99 struct ext3_super_block
* es
;
100 struct ext3_sb_info
*sbi
;
103 if (atomic_read(&inode
->i_count
) > 1) {
104 printk ("ext3_free_inode: inode has count=%d\n",
105 atomic_read(&inode
->i_count
));
108 if (inode
->i_nlink
) {
109 printk ("ext3_free_inode: inode has nlink=%d\n",
114 printk("ext3_free_inode: inode on nonexistent device\n");
120 ext3_debug ("freeing inode %lu\n", ino
);
122 is_directory
= S_ISDIR(inode
->i_mode
);
124 es
= EXT3_SB(sb
)->s_es
;
125 if (ino
< EXT3_FIRST_INO(sb
) || ino
> le32_to_cpu(es
->s_inodes_count
)) {
126 ext3_error (sb
, "ext3_free_inode",
127 "reserved or nonexistent inode %lu", ino
);
130 block_group
= (ino
- 1) / EXT3_INODES_PER_GROUP(sb
);
131 bit
= (ino
- 1) % EXT3_INODES_PER_GROUP(sb
);
132 bitmap_bh
= read_inode_bitmap(sb
, block_group
);
136 BUFFER_TRACE(bitmap_bh
, "get_write_access");
137 fatal
= ext3_journal_get_write_access(handle
, bitmap_bh
);
141 /* Ok, now we can actually update the inode bitmaps.. */
142 if (!ext3_clear_bit_atomic(sb_bgl_lock(sbi
, block_group
),
143 bit
, bitmap_bh
->b_data
))
144 ext3_error (sb
, "ext3_free_inode",
145 "bit already cleared for inode %lu", ino
);
147 gdp
= ext3_get_group_desc (sb
, block_group
, &bh2
);
149 BUFFER_TRACE(bh2
, "get_write_access");
150 fatal
= ext3_journal_get_write_access(handle
, bh2
);
151 if (fatal
) goto error_return
;
154 spin_lock(sb_bgl_lock(sbi
, block_group
));
155 le16_add_cpu(&gdp
->bg_free_inodes_count
, 1);
157 le16_add_cpu(&gdp
->bg_used_dirs_count
, -1);
158 spin_unlock(sb_bgl_lock(sbi
, block_group
));
159 percpu_counter_inc(&sbi
->s_freeinodes_counter
);
161 percpu_counter_dec(&sbi
->s_dirs_counter
);
164 BUFFER_TRACE(bh2
, "call ext3_journal_dirty_metadata");
165 err
= ext3_journal_dirty_metadata(handle
, bh2
);
166 if (!fatal
) fatal
= err
;
168 BUFFER_TRACE(bitmap_bh
, "call ext3_journal_dirty_metadata");
169 err
= ext3_journal_dirty_metadata(handle
, bitmap_bh
);
175 ext3_std_error(sb
, fatal
);
179 * There are two policies for allocating an inode. If the new inode is
180 * a directory, then a forward search is made for a block group with both
181 * free space and a low directory-to-inode ratio; if that fails, then of
182 * the groups with above-average free space, that group with the fewest
183 * directories already is chosen.
185 * For other inodes, search forward from the parent directory\'s block
186 * group to find a free inode.
188 static int find_group_dir(struct super_block
*sb
, struct inode
*parent
)
190 int ngroups
= EXT3_SB(sb
)->s_groups_count
;
191 unsigned int freei
, avefreei
;
192 struct ext3_group_desc
*desc
, *best_desc
= NULL
;
193 int group
, best_group
= -1;
195 freei
= percpu_counter_read_positive(&EXT3_SB(sb
)->s_freeinodes_counter
);
196 avefreei
= freei
/ ngroups
;
198 for (group
= 0; group
< ngroups
; group
++) {
199 desc
= ext3_get_group_desc (sb
, group
, NULL
);
200 if (!desc
|| !desc
->bg_free_inodes_count
)
202 if (le16_to_cpu(desc
->bg_free_inodes_count
) < avefreei
)
205 (le16_to_cpu(desc
->bg_free_blocks_count
) >
206 le16_to_cpu(best_desc
->bg_free_blocks_count
))) {
215 * Orlov's allocator for directories.
217 * We always try to spread first-level directories.
219 * If there are blockgroups with both free inodes and free blocks counts
220 * not worse than average we return one with smallest directory count.
221 * Otherwise we simply return a random group.
223 * For the rest rules look so:
225 * It's OK to put directory into a group unless
226 * it has too many directories already (max_dirs) or
227 * it has too few free inodes left (min_inodes) or
228 * it has too few free blocks left (min_blocks) or
229 * it's already running too large debt (max_debt).
230 * Parent's group is preferred, if it doesn't satisfy these
231 * conditions we search cyclically through the rest. If none
232 * of the groups look good we just look for a group with more
233 * free inodes than average (starting at parent's group).
235 * Debt is incremented each time we allocate a directory and decremented
236 * when we allocate an inode, within 0--255.
239 #define INODE_COST 64
240 #define BLOCK_COST 256
242 static int find_group_orlov(struct super_block
*sb
, struct inode
*parent
)
244 int parent_group
= EXT3_I(parent
)->i_block_group
;
245 struct ext3_sb_info
*sbi
= EXT3_SB(sb
);
246 struct ext3_super_block
*es
= sbi
->s_es
;
247 int ngroups
= sbi
->s_groups_count
;
248 int inodes_per_group
= EXT3_INODES_PER_GROUP(sb
);
249 unsigned int freei
, avefreei
;
250 ext3_fsblk_t freeb
, avefreeb
;
251 ext3_fsblk_t blocks_per_dir
;
253 int max_debt
, max_dirs
, min_inodes
;
254 ext3_grpblk_t min_blocks
;
256 struct ext3_group_desc
*desc
;
258 freei
= percpu_counter_read_positive(&sbi
->s_freeinodes_counter
);
259 avefreei
= freei
/ ngroups
;
260 freeb
= percpu_counter_read_positive(&sbi
->s_freeblocks_counter
);
261 avefreeb
= freeb
/ ngroups
;
262 ndirs
= percpu_counter_read_positive(&sbi
->s_dirs_counter
);
264 if ((parent
== sb
->s_root
->d_inode
) ||
265 (EXT3_I(parent
)->i_flags
& EXT3_TOPDIR_FL
)) {
266 int best_ndir
= inodes_per_group
;
269 get_random_bytes(&group
, sizeof(group
));
270 parent_group
= (unsigned)group
% ngroups
;
271 for (i
= 0; i
< ngroups
; i
++) {
272 group
= (parent_group
+ i
) % ngroups
;
273 desc
= ext3_get_group_desc (sb
, group
, NULL
);
274 if (!desc
|| !desc
->bg_free_inodes_count
)
276 if (le16_to_cpu(desc
->bg_used_dirs_count
) >= best_ndir
)
278 if (le16_to_cpu(desc
->bg_free_inodes_count
) < avefreei
)
280 if (le16_to_cpu(desc
->bg_free_blocks_count
) < avefreeb
)
283 best_ndir
= le16_to_cpu(desc
->bg_used_dirs_count
);
290 blocks_per_dir
= (le32_to_cpu(es
->s_blocks_count
) - freeb
) / ndirs
;
292 max_dirs
= ndirs
/ ngroups
+ inodes_per_group
/ 16;
293 min_inodes
= avefreei
- inodes_per_group
/ 4;
294 min_blocks
= avefreeb
- EXT3_BLOCKS_PER_GROUP(sb
) / 4;
296 max_debt
= EXT3_BLOCKS_PER_GROUP(sb
) / max(blocks_per_dir
, (ext3_fsblk_t
)BLOCK_COST
);
297 if (max_debt
* INODE_COST
> inodes_per_group
)
298 max_debt
= inodes_per_group
/ INODE_COST
;
304 for (i
= 0; i
< ngroups
; i
++) {
305 group
= (parent_group
+ i
) % ngroups
;
306 desc
= ext3_get_group_desc (sb
, group
, NULL
);
307 if (!desc
|| !desc
->bg_free_inodes_count
)
309 if (le16_to_cpu(desc
->bg_used_dirs_count
) >= max_dirs
)
311 if (le16_to_cpu(desc
->bg_free_inodes_count
) < min_inodes
)
313 if (le16_to_cpu(desc
->bg_free_blocks_count
) < min_blocks
)
319 for (i
= 0; i
< ngroups
; i
++) {
320 group
= (parent_group
+ i
) % ngroups
;
321 desc
= ext3_get_group_desc (sb
, group
, NULL
);
322 if (!desc
|| !desc
->bg_free_inodes_count
)
324 if (le16_to_cpu(desc
->bg_free_inodes_count
) >= avefreei
)
330 * The free-inodes counter is approximate, and for really small
331 * filesystems the above test can fail to find any blockgroups
340 static int find_group_other(struct super_block
*sb
, struct inode
*parent
)
342 int parent_group
= EXT3_I(parent
)->i_block_group
;
343 int ngroups
= EXT3_SB(sb
)->s_groups_count
;
344 struct ext3_group_desc
*desc
;
348 * Try to place the inode in its parent directory
350 group
= parent_group
;
351 desc
= ext3_get_group_desc (sb
, group
, NULL
);
352 if (desc
&& le16_to_cpu(desc
->bg_free_inodes_count
) &&
353 le16_to_cpu(desc
->bg_free_blocks_count
))
357 * We're going to place this inode in a different blockgroup from its
358 * parent. We want to cause files in a common directory to all land in
359 * the same blockgroup. But we want files which are in a different
360 * directory which shares a blockgroup with our parent to land in a
361 * different blockgroup.
363 * So add our directory's i_ino into the starting point for the hash.
365 group
= (group
+ parent
->i_ino
) % ngroups
;
368 * Use a quadratic hash to find a group with a free inode and some free
371 for (i
= 1; i
< ngroups
; i
<<= 1) {
373 if (group
>= ngroups
)
375 desc
= ext3_get_group_desc (sb
, group
, NULL
);
376 if (desc
&& le16_to_cpu(desc
->bg_free_inodes_count
) &&
377 le16_to_cpu(desc
->bg_free_blocks_count
))
382 * That failed: try linear search for a free inode, even if that group
383 * has no free blocks.
385 group
= parent_group
;
386 for (i
= 0; i
< ngroups
; i
++) {
387 if (++group
>= ngroups
)
389 desc
= ext3_get_group_desc (sb
, group
, NULL
);
390 if (desc
&& le16_to_cpu(desc
->bg_free_inodes_count
))
398 * There are two policies for allocating an inode. If the new inode is
399 * a directory, then a forward search is made for a block group with both
400 * free space and a low directory-to-inode ratio; if that fails, then of
401 * the groups with above-average free space, that group with the fewest
402 * directories already is chosen.
404 * For other inodes, search forward from the parent directory's block
405 * group to find a free inode.
407 struct inode
*ext3_new_inode(handle_t
*handle
, struct inode
* dir
, int mode
)
409 struct super_block
*sb
;
410 struct buffer_head
*bitmap_bh
= NULL
;
411 struct buffer_head
*bh2
;
413 unsigned long ino
= 0;
414 struct inode
* inode
;
415 struct ext3_group_desc
* gdp
= NULL
;
416 struct ext3_super_block
* es
;
417 struct ext3_inode_info
*ei
;
418 struct ext3_sb_info
*sbi
;
423 /* Cannot create files in a deleted directory */
424 if (!dir
|| !dir
->i_nlink
)
425 return ERR_PTR(-EPERM
);
428 inode
= new_inode(sb
);
430 return ERR_PTR(-ENOMEM
);
436 if (test_opt (sb
, OLDALLOC
))
437 group
= find_group_dir(sb
, dir
);
439 group
= find_group_orlov(sb
, dir
);
441 group
= find_group_other(sb
, dir
);
447 for (i
= 0; i
< sbi
->s_groups_count
; i
++) {
450 gdp
= ext3_get_group_desc(sb
, group
, &bh2
);
455 bitmap_bh
= read_inode_bitmap(sb
, group
);
461 repeat_in_this_group
:
462 ino
= ext3_find_next_zero_bit((unsigned long *)
463 bitmap_bh
->b_data
, EXT3_INODES_PER_GROUP(sb
), ino
);
464 if (ino
< EXT3_INODES_PER_GROUP(sb
)) {
466 BUFFER_TRACE(bitmap_bh
, "get_write_access");
467 err
= ext3_journal_get_write_access(handle
, bitmap_bh
);
471 if (!ext3_set_bit_atomic(sb_bgl_lock(sbi
, group
),
472 ino
, bitmap_bh
->b_data
)) {
474 BUFFER_TRACE(bitmap_bh
,
475 "call ext3_journal_dirty_metadata");
476 err
= ext3_journal_dirty_metadata(handle
,
483 journal_release_buffer(handle
, bitmap_bh
);
485 if (++ino
< EXT3_INODES_PER_GROUP(sb
))
486 goto repeat_in_this_group
;
490 * This case is possible in concurrent environment. It is very
491 * rare. We cannot repeat the find_group_xxx() call because
492 * that will simply return the same blockgroup, because the
493 * group descriptor metadata has not yet been updated.
494 * So we just go onto the next blockgroup.
496 if (++group
== sbi
->s_groups_count
)
503 ino
+= group
* EXT3_INODES_PER_GROUP(sb
) + 1;
504 if (ino
< EXT3_FIRST_INO(sb
) || ino
> le32_to_cpu(es
->s_inodes_count
)) {
505 ext3_error (sb
, "ext3_new_inode",
506 "reserved inode or inode > inodes count - "
507 "block_group = %d, inode=%lu", group
, ino
);
512 BUFFER_TRACE(bh2
, "get_write_access");
513 err
= ext3_journal_get_write_access(handle
, bh2
);
515 spin_lock(sb_bgl_lock(sbi
, group
));
516 le16_add_cpu(&gdp
->bg_free_inodes_count
, -1);
518 le16_add_cpu(&gdp
->bg_used_dirs_count
, 1);
520 spin_unlock(sb_bgl_lock(sbi
, group
));
521 BUFFER_TRACE(bh2
, "call ext3_journal_dirty_metadata");
522 err
= ext3_journal_dirty_metadata(handle
, bh2
);
525 percpu_counter_dec(&sbi
->s_freeinodes_counter
);
527 percpu_counter_inc(&sbi
->s_dirs_counter
);
530 if (test_opt(sb
, GRPID
)) {
531 inode
->i_mode
= mode
;
532 inode
->i_uid
= current_fsuid();
533 inode
->i_gid
= dir
->i_gid
;
535 inode_init_owner(inode
, dir
, mode
);
538 /* This is the optimal IO size (for stat), not the fs block size */
540 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= CURRENT_TIME_SEC
;
542 memset(ei
->i_data
, 0, sizeof(ei
->i_data
));
543 ei
->i_dir_start_lookup
= 0;
547 ext3_mask_flags(mode
, EXT3_I(dir
)->i_flags
& EXT3_FL_INHERITED
);
548 #ifdef EXT3_FRAGMENTS
556 ei
->i_block_alloc_info
= NULL
;
557 ei
->i_block_group
= group
;
559 ext3_set_inode_flags(inode
);
560 if (IS_DIRSYNC(inode
))
562 if (insert_inode_locked(inode
) < 0) {
566 spin_lock(&sbi
->s_next_gen_lock
);
567 inode
->i_generation
= sbi
->s_next_generation
++;
568 spin_unlock(&sbi
->s_next_gen_lock
);
570 ei
->i_state_flags
= 0;
571 ext3_set_inode_state(inode
, EXT3_STATE_NEW
);
573 /* See comment in ext3_iget for explanation */
574 if (ino
>= EXT3_FIRST_INO(sb
) + 1 &&
575 EXT3_INODE_SIZE(sb
) > EXT3_GOOD_OLD_INODE_SIZE
) {
577 sizeof(struct ext3_inode
) - EXT3_GOOD_OLD_INODE_SIZE
;
579 ei
->i_extra_isize
= 0;
583 dquot_initialize(inode
);
584 err
= dquot_alloc_inode(inode
);
588 err
= ext3_init_acl(handle
, inode
, dir
);
592 err
= ext3_init_security(handle
,inode
, dir
);
596 err
= ext3_mark_inode_dirty(handle
, inode
);
598 ext3_std_error(sb
, err
);
602 ext3_debug("allocating inode %lu\n", inode
->i_ino
);
605 ext3_std_error(sb
, err
);
614 dquot_free_inode(inode
);
618 inode
->i_flags
|= S_NOQUOTA
;
620 unlock_new_inode(inode
);
626 /* Verify that we are loading a valid orphan from disk */
627 struct inode
*ext3_orphan_get(struct super_block
*sb
, unsigned long ino
)
629 unsigned long max_ino
= le32_to_cpu(EXT3_SB(sb
)->s_es
->s_inodes_count
);
630 unsigned long block_group
;
632 struct buffer_head
*bitmap_bh
;
633 struct inode
*inode
= NULL
;
636 /* Error cases - e2fsck has already cleaned up for us */
638 ext3_warning(sb
, __func__
,
639 "bad orphan ino %lu! e2fsck was run?", ino
);
643 block_group
= (ino
- 1) / EXT3_INODES_PER_GROUP(sb
);
644 bit
= (ino
- 1) % EXT3_INODES_PER_GROUP(sb
);
645 bitmap_bh
= read_inode_bitmap(sb
, block_group
);
647 ext3_warning(sb
, __func__
,
648 "inode bitmap error for orphan %lu", ino
);
652 /* Having the inode bit set should be a 100% indicator that this
653 * is a valid orphan (no e2fsck run on fs). Orphans also include
654 * inodes that were being truncated, so we can't check i_nlink==0.
656 if (!ext3_test_bit(bit
, bitmap_bh
->b_data
))
659 inode
= ext3_iget(sb
, ino
);
664 * If the orphans has i_nlinks > 0 then it should be able to be
665 * truncated, otherwise it won't be removed from the orphan list
666 * during processing and an infinite loop will result.
668 if (inode
->i_nlink
&& !ext3_can_truncate(inode
))
671 if (NEXT_ORPHAN(inode
) > max_ino
)
677 err
= PTR_ERR(inode
);
680 ext3_warning(sb
, __func__
,
681 "bad orphan inode %lu! e2fsck was run?", ino
);
682 printk(KERN_NOTICE
"ext3_test_bit(bit=%d, block=%llu) = %d\n",
683 bit
, (unsigned long long)bitmap_bh
->b_blocknr
,
684 ext3_test_bit(bit
, bitmap_bh
->b_data
));
685 printk(KERN_NOTICE
"inode=%p\n", inode
);
687 printk(KERN_NOTICE
"is_bad_inode(inode)=%d\n",
688 is_bad_inode(inode
));
689 printk(KERN_NOTICE
"NEXT_ORPHAN(inode)=%u\n",
691 printk(KERN_NOTICE
"max_ino=%lu\n", max_ino
);
692 printk(KERN_NOTICE
"i_nlink=%u\n", inode
->i_nlink
);
693 /* Avoid freeing blocks if we got a bad deleted inode */
694 if (inode
->i_nlink
== 0)
703 unsigned long ext3_count_free_inodes (struct super_block
* sb
)
705 unsigned long desc_count
;
706 struct ext3_group_desc
*gdp
;
709 struct ext3_super_block
*es
;
710 unsigned long bitmap_count
, x
;
711 struct buffer_head
*bitmap_bh
= NULL
;
713 es
= EXT3_SB(sb
)->s_es
;
717 for (i
= 0; i
< EXT3_SB(sb
)->s_groups_count
; i
++) {
718 gdp
= ext3_get_group_desc (sb
, i
, NULL
);
721 desc_count
+= le16_to_cpu(gdp
->bg_free_inodes_count
);
723 bitmap_bh
= read_inode_bitmap(sb
, i
);
727 x
= ext3_count_free(bitmap_bh
, EXT3_INODES_PER_GROUP(sb
) / 8);
728 printk("group %d: stored = %d, counted = %lu\n",
729 i
, le16_to_cpu(gdp
->bg_free_inodes_count
), x
);
733 printk("ext3_count_free_inodes: stored = %u, computed = %lu, %lu\n",
734 le32_to_cpu(es
->s_free_inodes_count
), desc_count
, bitmap_count
);
738 for (i
= 0; i
< EXT3_SB(sb
)->s_groups_count
; i
++) {
739 gdp
= ext3_get_group_desc (sb
, i
, NULL
);
742 desc_count
+= le16_to_cpu(gdp
->bg_free_inodes_count
);
749 /* Called at mount-time, super-block is locked */
750 unsigned long ext3_count_dirs (struct super_block
* sb
)
752 unsigned long count
= 0;
755 for (i
= 0; i
< EXT3_SB(sb
)->s_groups_count
; i
++) {
756 struct ext3_group_desc
*gdp
= ext3_get_group_desc (sb
, i
, NULL
);
759 count
+= le16_to_cpu(gdp
->bg_used_dirs_count
);