2 * linux/fs/ext4/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/jbd2.h>
18 #include <linux/stat.h>
19 #include <linux/string.h>
20 #include <linux/quotaops.h>
21 #include <linux/buffer_head.h>
22 #include <linux/random.h>
23 #include <linux/bitops.h>
24 #include <linux/blkdev.h>
25 #include <asm/byteorder.h>
28 #include "ext4_jbd2.h"
32 #include <trace/events/ext4.h>
35 * ialloc.c contains the inodes allocation and deallocation routines
39 * The free inodes are managed by bitmaps. A file system contains several
40 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
41 * block for inodes, N blocks for the inode table and data blocks.
43 * The file system contains group descriptors which are located after the
44 * super block. Each descriptor contains the number of the bitmap block and
45 * the free blocks count in the block.
49 * To avoid calling the atomic setbit hundreds or thousands of times, we only
50 * need to use it within a single byte (to ensure we get endianness right).
51 * We can use memset for the rest of the bitmap as there are no other users.
53 void ext4_mark_bitmap_end(int start_bit
, int end_bit
, char *bitmap
)
57 if (start_bit
>= end_bit
)
60 ext4_debug("mark end bits +%d through +%d used\n", start_bit
, end_bit
);
61 for (i
= start_bit
; i
< ((start_bit
+ 7) & ~7UL); i
++)
62 ext4_set_bit(i
, bitmap
);
64 memset(bitmap
+ (i
>> 3), 0xff, (end_bit
- i
) >> 3);
67 /* Initializes an uninitialized inode bitmap */
68 static unsigned ext4_init_inode_bitmap(struct super_block
*sb
,
69 struct buffer_head
*bh
,
70 ext4_group_t block_group
,
71 struct ext4_group_desc
*gdp
)
73 struct ext4_group_info
*grp
;
74 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
75 J_ASSERT_BH(bh
, buffer_locked(bh
));
77 /* If checksum is bad mark all blocks and inodes use to prevent
78 * allocation, essentially implementing a per-group read-only flag. */
79 if (!ext4_group_desc_csum_verify(sb
, block_group
, gdp
)) {
80 ext4_error(sb
, "Checksum bad for group %u", block_group
);
81 grp
= ext4_get_group_info(sb
, block_group
);
82 if (!EXT4_MB_GRP_BBITMAP_CORRUPT(grp
))
83 percpu_counter_sub(&sbi
->s_freeclusters_counter
,
85 set_bit(EXT4_GROUP_INFO_BBITMAP_CORRUPT_BIT
, &grp
->bb_state
);
86 if (!EXT4_MB_GRP_IBITMAP_CORRUPT(grp
)) {
88 count
= ext4_free_inodes_count(sb
, gdp
);
89 percpu_counter_sub(&sbi
->s_freeinodes_counter
,
92 set_bit(EXT4_GROUP_INFO_IBITMAP_CORRUPT_BIT
, &grp
->bb_state
);
96 memset(bh
->b_data
, 0, (EXT4_INODES_PER_GROUP(sb
) + 7) / 8);
97 ext4_mark_bitmap_end(EXT4_INODES_PER_GROUP(sb
), sb
->s_blocksize
* 8,
99 ext4_inode_bitmap_csum_set(sb
, block_group
, gdp
, bh
,
100 EXT4_INODES_PER_GROUP(sb
) / 8);
101 ext4_group_desc_csum_set(sb
, block_group
, gdp
);
103 return EXT4_INODES_PER_GROUP(sb
);
106 void ext4_end_bitmap_read(struct buffer_head
*bh
, int uptodate
)
109 set_buffer_uptodate(bh
);
110 set_bitmap_uptodate(bh
);
117 * Read the inode allocation bitmap for a given block_group, reading
118 * into the specified slot in the superblock's bitmap cache.
120 * Return buffer_head of bitmap on success or NULL.
122 static struct buffer_head
*
123 ext4_read_inode_bitmap(struct super_block
*sb
, ext4_group_t block_group
)
125 struct ext4_group_desc
*desc
;
126 struct buffer_head
*bh
= NULL
;
127 ext4_fsblk_t bitmap_blk
;
128 struct ext4_group_info
*grp
;
129 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
131 desc
= ext4_get_group_desc(sb
, block_group
, NULL
);
135 bitmap_blk
= ext4_inode_bitmap(sb
, desc
);
136 bh
= sb_getblk(sb
, bitmap_blk
);
138 ext4_error(sb
, "Cannot read inode bitmap - "
139 "block_group = %u, inode_bitmap = %llu",
140 block_group
, bitmap_blk
);
143 if (bitmap_uptodate(bh
))
147 if (bitmap_uptodate(bh
)) {
152 ext4_lock_group(sb
, block_group
);
153 if (desc
->bg_flags
& cpu_to_le16(EXT4_BG_INODE_UNINIT
)) {
154 ext4_init_inode_bitmap(sb
, bh
, block_group
, desc
);
155 set_bitmap_uptodate(bh
);
156 set_buffer_uptodate(bh
);
157 set_buffer_verified(bh
);
158 ext4_unlock_group(sb
, block_group
);
162 ext4_unlock_group(sb
, block_group
);
164 if (buffer_uptodate(bh
)) {
166 * if not uninit if bh is uptodate,
167 * bitmap is also uptodate
169 set_bitmap_uptodate(bh
);
174 * submit the buffer_head for reading
176 trace_ext4_load_inode_bitmap(sb
, block_group
);
177 bh
->b_end_io
= ext4_end_bitmap_read
;
179 submit_bh(READ
| REQ_META
| REQ_PRIO
, bh
);
181 if (!buffer_uptodate(bh
)) {
183 ext4_error(sb
, "Cannot read inode bitmap - "
184 "block_group = %u, inode_bitmap = %llu",
185 block_group
, bitmap_blk
);
190 ext4_lock_group(sb
, block_group
);
191 if (!buffer_verified(bh
) &&
192 !ext4_inode_bitmap_csum_verify(sb
, block_group
, desc
, bh
,
193 EXT4_INODES_PER_GROUP(sb
) / 8)) {
194 ext4_unlock_group(sb
, block_group
);
196 ext4_error(sb
, "Corrupt inode bitmap - block_group = %u, "
197 "inode_bitmap = %llu", block_group
, bitmap_blk
);
198 grp
= ext4_get_group_info(sb
, block_group
);
199 if (!EXT4_MB_GRP_IBITMAP_CORRUPT(grp
)) {
201 count
= ext4_free_inodes_count(sb
, desc
);
202 percpu_counter_sub(&sbi
->s_freeinodes_counter
,
205 set_bit(EXT4_GROUP_INFO_IBITMAP_CORRUPT_BIT
, &grp
->bb_state
);
208 ext4_unlock_group(sb
, block_group
);
209 set_buffer_verified(bh
);
214 * NOTE! When we get the inode, we're the only people
215 * that have access to it, and as such there are no
216 * race conditions we have to worry about. The inode
217 * is not on the hash-lists, and it cannot be reached
218 * through the filesystem because the directory entry
219 * has been deleted earlier.
221 * HOWEVER: we must make sure that we get no aliases,
222 * which means that we have to call "clear_inode()"
223 * _before_ we mark the inode not in use in the inode
224 * bitmaps. Otherwise a newly created file might use
225 * the same inode number (not actually the same pointer
226 * though), and then we'd have two inodes sharing the
227 * same inode number and space on the harddisk.
229 void ext4_free_inode(handle_t
*handle
, struct inode
*inode
)
231 struct super_block
*sb
= inode
->i_sb
;
234 struct buffer_head
*bitmap_bh
= NULL
;
235 struct buffer_head
*bh2
;
236 ext4_group_t block_group
;
238 struct ext4_group_desc
*gdp
;
239 struct ext4_super_block
*es
;
240 struct ext4_sb_info
*sbi
;
241 int fatal
= 0, err
, count
, cleared
;
242 struct ext4_group_info
*grp
;
245 printk(KERN_ERR
"EXT4-fs: %s:%d: inode on "
246 "nonexistent device\n", __func__
, __LINE__
);
249 if (atomic_read(&inode
->i_count
) > 1) {
250 ext4_msg(sb
, KERN_ERR
, "%s:%d: inode #%lu: count=%d",
251 __func__
, __LINE__
, inode
->i_ino
,
252 atomic_read(&inode
->i_count
));
255 if (inode
->i_nlink
) {
256 ext4_msg(sb
, KERN_ERR
, "%s:%d: inode #%lu: nlink=%d\n",
257 __func__
, __LINE__
, inode
->i_ino
, inode
->i_nlink
);
263 ext4_debug("freeing inode %lu\n", ino
);
264 trace_ext4_free_inode(inode
);
267 * Note: we must free any quota before locking the superblock,
268 * as writing the quota to disk may need the lock as well.
270 dquot_initialize(inode
);
271 ext4_xattr_delete_inode(handle
, inode
);
272 dquot_free_inode(inode
);
275 is_directory
= S_ISDIR(inode
->i_mode
);
277 /* Do this BEFORE marking the inode not in use or returning an error */
278 ext4_clear_inode(inode
);
280 es
= EXT4_SB(sb
)->s_es
;
281 if (ino
< EXT4_FIRST_INO(sb
) || ino
> le32_to_cpu(es
->s_inodes_count
)) {
282 ext4_error(sb
, "reserved or nonexistent inode %lu", ino
);
285 block_group
= (ino
- 1) / EXT4_INODES_PER_GROUP(sb
);
286 bit
= (ino
- 1) % EXT4_INODES_PER_GROUP(sb
);
287 bitmap_bh
= ext4_read_inode_bitmap(sb
, block_group
);
288 /* Don't bother if the inode bitmap is corrupt. */
289 grp
= ext4_get_group_info(sb
, block_group
);
290 if (unlikely(EXT4_MB_GRP_IBITMAP_CORRUPT(grp
)) || !bitmap_bh
)
293 BUFFER_TRACE(bitmap_bh
, "get_write_access");
294 fatal
= ext4_journal_get_write_access(handle
, bitmap_bh
);
299 gdp
= ext4_get_group_desc(sb
, block_group
, &bh2
);
301 BUFFER_TRACE(bh2
, "get_write_access");
302 fatal
= ext4_journal_get_write_access(handle
, bh2
);
304 ext4_lock_group(sb
, block_group
);
305 cleared
= ext4_test_and_clear_bit(bit
, bitmap_bh
->b_data
);
306 if (fatal
|| !cleared
) {
307 ext4_unlock_group(sb
, block_group
);
311 count
= ext4_free_inodes_count(sb
, gdp
) + 1;
312 ext4_free_inodes_set(sb
, gdp
, count
);
314 count
= ext4_used_dirs_count(sb
, gdp
) - 1;
315 ext4_used_dirs_set(sb
, gdp
, count
);
316 percpu_counter_dec(&sbi
->s_dirs_counter
);
318 ext4_inode_bitmap_csum_set(sb
, block_group
, gdp
, bitmap_bh
,
319 EXT4_INODES_PER_GROUP(sb
) / 8);
320 ext4_group_desc_csum_set(sb
, block_group
, gdp
);
321 ext4_unlock_group(sb
, block_group
);
323 percpu_counter_inc(&sbi
->s_freeinodes_counter
);
324 if (sbi
->s_log_groups_per_flex
) {
325 ext4_group_t f
= ext4_flex_group(sbi
, block_group
);
327 atomic_inc(&sbi
->s_flex_groups
[f
].free_inodes
);
329 atomic_dec(&sbi
->s_flex_groups
[f
].used_dirs
);
331 BUFFER_TRACE(bh2
, "call ext4_handle_dirty_metadata");
332 fatal
= ext4_handle_dirty_metadata(handle
, NULL
, bh2
);
335 BUFFER_TRACE(bitmap_bh
, "call ext4_handle_dirty_metadata");
336 err
= ext4_handle_dirty_metadata(handle
, NULL
, bitmap_bh
);
340 ext4_error(sb
, "bit already cleared for inode %lu", ino
);
341 if (gdp
&& !EXT4_MB_GRP_IBITMAP_CORRUPT(grp
)) {
343 count
= ext4_free_inodes_count(sb
, gdp
);
344 percpu_counter_sub(&sbi
->s_freeinodes_counter
,
347 set_bit(EXT4_GROUP_INFO_IBITMAP_CORRUPT_BIT
, &grp
->bb_state
);
352 ext4_std_error(sb
, fatal
);
362 * Helper function for Orlov's allocator; returns critical information
363 * for a particular block group or flex_bg. If flex_size is 1, then g
364 * is a block group number; otherwise it is flex_bg number.
366 static void get_orlov_stats(struct super_block
*sb
, ext4_group_t g
,
367 int flex_size
, struct orlov_stats
*stats
)
369 struct ext4_group_desc
*desc
;
370 struct flex_groups
*flex_group
= EXT4_SB(sb
)->s_flex_groups
;
373 stats
->free_inodes
= atomic_read(&flex_group
[g
].free_inodes
);
374 stats
->free_clusters
= atomic64_read(&flex_group
[g
].free_clusters
);
375 stats
->used_dirs
= atomic_read(&flex_group
[g
].used_dirs
);
379 desc
= ext4_get_group_desc(sb
, g
, NULL
);
381 stats
->free_inodes
= ext4_free_inodes_count(sb
, desc
);
382 stats
->free_clusters
= ext4_free_group_clusters(sb
, desc
);
383 stats
->used_dirs
= ext4_used_dirs_count(sb
, desc
);
385 stats
->free_inodes
= 0;
386 stats
->free_clusters
= 0;
387 stats
->used_dirs
= 0;
392 * Orlov's allocator for directories.
394 * We always try to spread first-level directories.
396 * If there are blockgroups with both free inodes and free blocks counts
397 * not worse than average we return one with smallest directory count.
398 * Otherwise we simply return a random group.
400 * For the rest rules look so:
402 * It's OK to put directory into a group unless
403 * it has too many directories already (max_dirs) or
404 * it has too few free inodes left (min_inodes) or
405 * it has too few free blocks left (min_blocks) or
406 * Parent's group is preferred, if it doesn't satisfy these
407 * conditions we search cyclically through the rest. If none
408 * of the groups look good we just look for a group with more
409 * free inodes than average (starting at parent's group).
412 static int find_group_orlov(struct super_block
*sb
, struct inode
*parent
,
413 ext4_group_t
*group
, umode_t mode
,
414 const struct qstr
*qstr
)
416 ext4_group_t parent_group
= EXT4_I(parent
)->i_block_group
;
417 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
418 ext4_group_t real_ngroups
= ext4_get_groups_count(sb
);
419 int inodes_per_group
= EXT4_INODES_PER_GROUP(sb
);
420 unsigned int freei
, avefreei
, grp_free
;
421 ext4_fsblk_t freeb
, avefreec
;
423 int max_dirs
, min_inodes
;
424 ext4_grpblk_t min_clusters
;
425 ext4_group_t i
, grp
, g
, ngroups
;
426 struct ext4_group_desc
*desc
;
427 struct orlov_stats stats
;
428 int flex_size
= ext4_flex_bg_size(sbi
);
429 struct dx_hash_info hinfo
;
431 ngroups
= real_ngroups
;
433 ngroups
= (real_ngroups
+ flex_size
- 1) >>
434 sbi
->s_log_groups_per_flex
;
435 parent_group
>>= sbi
->s_log_groups_per_flex
;
438 freei
= percpu_counter_read_positive(&sbi
->s_freeinodes_counter
);
439 avefreei
= freei
/ ngroups
;
440 freeb
= EXT4_C2B(sbi
,
441 percpu_counter_read_positive(&sbi
->s_freeclusters_counter
));
443 do_div(avefreec
, ngroups
);
444 ndirs
= percpu_counter_read_positive(&sbi
->s_dirs_counter
);
447 ((parent
== sb
->s_root
->d_inode
) ||
448 (ext4_test_inode_flag(parent
, EXT4_INODE_TOPDIR
)))) {
449 int best_ndir
= inodes_per_group
;
453 hinfo
.hash_version
= DX_HASH_HALF_MD4
;
454 hinfo
.seed
= sbi
->s_hash_seed
;
455 ext4fs_dirhash(qstr
->name
, qstr
->len
, &hinfo
);
459 parent_group
= (unsigned)grp
% ngroups
;
460 for (i
= 0; i
< ngroups
; i
++) {
461 g
= (parent_group
+ i
) % ngroups
;
462 get_orlov_stats(sb
, g
, flex_size
, &stats
);
463 if (!stats
.free_inodes
)
465 if (stats
.used_dirs
>= best_ndir
)
467 if (stats
.free_inodes
< avefreei
)
469 if (stats
.free_clusters
< avefreec
)
473 best_ndir
= stats
.used_dirs
;
478 if (flex_size
== 1) {
484 * We pack inodes at the beginning of the flexgroup's
485 * inode tables. Block allocation decisions will do
486 * something similar, although regular files will
487 * start at 2nd block group of the flexgroup. See
488 * ext4_ext_find_goal() and ext4_find_near().
491 for (i
= 0; i
< flex_size
; i
++) {
492 if (grp
+i
>= real_ngroups
)
494 desc
= ext4_get_group_desc(sb
, grp
+i
, NULL
);
495 if (desc
&& ext4_free_inodes_count(sb
, desc
)) {
503 max_dirs
= ndirs
/ ngroups
+ inodes_per_group
/ 16;
504 min_inodes
= avefreei
- inodes_per_group
*flex_size
/ 4;
507 min_clusters
= avefreec
- EXT4_CLUSTERS_PER_GROUP(sb
)*flex_size
/ 4;
510 * Start looking in the flex group where we last allocated an
511 * inode for this parent directory
513 if (EXT4_I(parent
)->i_last_alloc_group
!= ~0) {
514 parent_group
= EXT4_I(parent
)->i_last_alloc_group
;
516 parent_group
>>= sbi
->s_log_groups_per_flex
;
519 for (i
= 0; i
< ngroups
; i
++) {
520 grp
= (parent_group
+ i
) % ngroups
;
521 get_orlov_stats(sb
, grp
, flex_size
, &stats
);
522 if (stats
.used_dirs
>= max_dirs
)
524 if (stats
.free_inodes
< min_inodes
)
526 if (stats
.free_clusters
< min_clusters
)
532 ngroups
= real_ngroups
;
533 avefreei
= freei
/ ngroups
;
535 parent_group
= EXT4_I(parent
)->i_block_group
;
536 for (i
= 0; i
< ngroups
; i
++) {
537 grp
= (parent_group
+ i
) % ngroups
;
538 desc
= ext4_get_group_desc(sb
, grp
, NULL
);
540 grp_free
= ext4_free_inodes_count(sb
, desc
);
541 if (grp_free
&& grp_free
>= avefreei
) {
550 * The free-inodes counter is approximate, and for really small
551 * filesystems the above test can fail to find any blockgroups
560 static int find_group_other(struct super_block
*sb
, struct inode
*parent
,
561 ext4_group_t
*group
, umode_t mode
)
563 ext4_group_t parent_group
= EXT4_I(parent
)->i_block_group
;
564 ext4_group_t i
, last
, ngroups
= ext4_get_groups_count(sb
);
565 struct ext4_group_desc
*desc
;
566 int flex_size
= ext4_flex_bg_size(EXT4_SB(sb
));
569 * Try to place the inode is the same flex group as its
570 * parent. If we can't find space, use the Orlov algorithm to
571 * find another flex group, and store that information in the
572 * parent directory's inode information so that use that flex
573 * group for future allocations.
579 parent_group
&= ~(flex_size
-1);
580 last
= parent_group
+ flex_size
;
583 for (i
= parent_group
; i
< last
; i
++) {
584 desc
= ext4_get_group_desc(sb
, i
, NULL
);
585 if (desc
&& ext4_free_inodes_count(sb
, desc
)) {
590 if (!retry
&& EXT4_I(parent
)->i_last_alloc_group
!= ~0) {
592 parent_group
= EXT4_I(parent
)->i_last_alloc_group
;
596 * If this didn't work, use the Orlov search algorithm
597 * to find a new flex group; we pass in the mode to
598 * avoid the topdir algorithms.
600 *group
= parent_group
+ flex_size
;
601 if (*group
> ngroups
)
603 return find_group_orlov(sb
, parent
, group
, mode
, NULL
);
607 * Try to place the inode in its parent directory
609 *group
= parent_group
;
610 desc
= ext4_get_group_desc(sb
, *group
, NULL
);
611 if (desc
&& ext4_free_inodes_count(sb
, desc
) &&
612 ext4_free_group_clusters(sb
, desc
))
616 * We're going to place this inode in a different blockgroup from its
617 * parent. We want to cause files in a common directory to all land in
618 * the same blockgroup. But we want files which are in a different
619 * directory which shares a blockgroup with our parent to land in a
620 * different blockgroup.
622 * So add our directory's i_ino into the starting point for the hash.
624 *group
= (*group
+ parent
->i_ino
) % ngroups
;
627 * Use a quadratic hash to find a group with a free inode and some free
630 for (i
= 1; i
< ngroups
; i
<<= 1) {
632 if (*group
>= ngroups
)
634 desc
= ext4_get_group_desc(sb
, *group
, NULL
);
635 if (desc
&& ext4_free_inodes_count(sb
, desc
) &&
636 ext4_free_group_clusters(sb
, desc
))
641 * That failed: try linear search for a free inode, even if that group
642 * has no free blocks.
644 *group
= parent_group
;
645 for (i
= 0; i
< ngroups
; i
++) {
646 if (++*group
>= ngroups
)
648 desc
= ext4_get_group_desc(sb
, *group
, NULL
);
649 if (desc
&& ext4_free_inodes_count(sb
, desc
))
657 * In no journal mode, if an inode has recently been deleted, we want
658 * to avoid reusing it until we're reasonably sure the inode table
659 * block has been written back to disk. (Yes, these values are
660 * somewhat arbitrary...)
662 #define RECENTCY_MIN 5
663 #define RECENTCY_DIRTY 30
665 static int recently_deleted(struct super_block
*sb
, ext4_group_t group
, int ino
)
667 struct ext4_group_desc
*gdp
;
668 struct ext4_inode
*raw_inode
;
669 struct buffer_head
*bh
;
670 unsigned long dtime
, now
;
671 int inodes_per_block
= EXT4_SB(sb
)->s_inodes_per_block
;
672 int offset
, ret
= 0, recentcy
= RECENTCY_MIN
;
674 gdp
= ext4_get_group_desc(sb
, group
, NULL
);
678 bh
= sb_getblk(sb
, ext4_inode_table(sb
, gdp
) +
679 (ino
/ inodes_per_block
));
680 if (unlikely(!bh
) || !buffer_uptodate(bh
))
682 * If the block is not in the buffer cache, then it
683 * must have been written out.
687 offset
= (ino
% inodes_per_block
) * EXT4_INODE_SIZE(sb
);
688 raw_inode
= (struct ext4_inode
*) (bh
->b_data
+ offset
);
689 dtime
= le32_to_cpu(raw_inode
->i_dtime
);
691 if (buffer_dirty(bh
))
692 recentcy
+= RECENTCY_DIRTY
;
694 if (dtime
&& (dtime
< now
) && (now
< dtime
+ recentcy
))
702 * There are two policies for allocating an inode. If the new inode is
703 * a directory, then a forward search is made for a block group with both
704 * free space and a low directory-to-inode ratio; if that fails, then of
705 * the groups with above-average free space, that group with the fewest
706 * directories already is chosen.
708 * For other inodes, search forward from the parent directory's block
709 * group to find a free inode.
711 struct inode
*__ext4_new_inode(handle_t
*handle
, struct inode
*dir
,
712 umode_t mode
, const struct qstr
*qstr
,
713 __u32 goal
, uid_t
*owner
, int handle_type
,
714 unsigned int line_no
, int nblocks
)
716 struct super_block
*sb
;
717 struct buffer_head
*inode_bitmap_bh
= NULL
;
718 struct buffer_head
*group_desc_bh
;
719 ext4_group_t ngroups
, group
= 0;
720 unsigned long ino
= 0;
722 struct ext4_group_desc
*gdp
= NULL
;
723 struct ext4_inode_info
*ei
;
724 struct ext4_sb_info
*sbi
;
728 ext4_group_t flex_group
;
729 struct ext4_group_info
*grp
;
731 /* Cannot create files in a deleted directory */
732 if (!dir
|| !dir
->i_nlink
)
733 return ERR_PTR(-EPERM
);
736 ngroups
= ext4_get_groups_count(sb
);
737 trace_ext4_request_inode(dir
, mode
);
738 inode
= new_inode(sb
);
740 return ERR_PTR(-ENOMEM
);
745 * Initalize owners and quota early so that we don't have to account
746 * for quota initialization worst case in standard inode creating
750 inode
->i_mode
= mode
;
751 i_uid_write(inode
, owner
[0]);
752 i_gid_write(inode
, owner
[1]);
753 } else if (test_opt(sb
, GRPID
)) {
754 inode
->i_mode
= mode
;
755 inode
->i_uid
= current_fsuid();
756 inode
->i_gid
= dir
->i_gid
;
758 inode_init_owner(inode
, dir
, mode
);
759 dquot_initialize(inode
);
762 goal
= sbi
->s_inode_goal
;
764 if (goal
&& goal
<= le32_to_cpu(sbi
->s_es
->s_inodes_count
)) {
765 group
= (goal
- 1) / EXT4_INODES_PER_GROUP(sb
);
766 ino
= (goal
- 1) % EXT4_INODES_PER_GROUP(sb
);
772 ret2
= find_group_orlov(sb
, dir
, &group
, mode
, qstr
);
774 ret2
= find_group_other(sb
, dir
, &group
, mode
);
777 EXT4_I(dir
)->i_last_alloc_group
= group
;
783 * Normally we will only go through one pass of this loop,
784 * unless we get unlucky and it turns out the group we selected
785 * had its last inode grabbed by someone else.
787 for (i
= 0; i
< ngroups
; i
++, ino
= 0) {
790 gdp
= ext4_get_group_desc(sb
, group
, &group_desc_bh
);
795 * Check free inodes count before loading bitmap.
797 if (ext4_free_inodes_count(sb
, gdp
) == 0) {
798 if (++group
== ngroups
)
803 grp
= ext4_get_group_info(sb
, group
);
804 /* Skip groups with already-known suspicious inode tables */
805 if (EXT4_MB_GRP_IBITMAP_CORRUPT(grp
)) {
806 if (++group
== ngroups
)
811 brelse(inode_bitmap_bh
);
812 inode_bitmap_bh
= ext4_read_inode_bitmap(sb
, group
);
813 /* Skip groups with suspicious inode tables */
814 if (EXT4_MB_GRP_IBITMAP_CORRUPT(grp
) || !inode_bitmap_bh
) {
815 if (++group
== ngroups
)
820 repeat_in_this_group
:
821 ino
= ext4_find_next_zero_bit((unsigned long *)
822 inode_bitmap_bh
->b_data
,
823 EXT4_INODES_PER_GROUP(sb
), ino
);
824 if (ino
>= EXT4_INODES_PER_GROUP(sb
))
826 if (group
== 0 && (ino
+1) < EXT4_FIRST_INO(sb
)) {
827 ext4_error(sb
, "reserved inode found cleared - "
828 "inode=%lu", ino
+ 1);
831 if ((EXT4_SB(sb
)->s_journal
== NULL
) &&
832 recently_deleted(sb
, group
, ino
)) {
837 BUG_ON(nblocks
<= 0);
838 handle
= __ext4_journal_start_sb(dir
->i_sb
, line_no
,
839 handle_type
, nblocks
,
841 if (IS_ERR(handle
)) {
842 err
= PTR_ERR(handle
);
843 ext4_std_error(sb
, err
);
847 BUFFER_TRACE(inode_bitmap_bh
, "get_write_access");
848 err
= ext4_journal_get_write_access(handle
, inode_bitmap_bh
);
850 ext4_std_error(sb
, err
);
853 ext4_lock_group(sb
, group
);
854 ret2
= ext4_test_and_set_bit(ino
, inode_bitmap_bh
->b_data
);
855 ext4_unlock_group(sb
, group
);
856 ino
++; /* the inode bitmap is zero-based */
858 goto got
; /* we grabbed the inode! */
860 if (ino
< EXT4_INODES_PER_GROUP(sb
))
861 goto repeat_in_this_group
;
863 if (++group
== ngroups
)
870 BUFFER_TRACE(inode_bitmap_bh
, "call ext4_handle_dirty_metadata");
871 err
= ext4_handle_dirty_metadata(handle
, NULL
, inode_bitmap_bh
);
873 ext4_std_error(sb
, err
);
877 BUFFER_TRACE(group_desc_bh
, "get_write_access");
878 err
= ext4_journal_get_write_access(handle
, group_desc_bh
);
880 ext4_std_error(sb
, err
);
884 /* We may have to initialize the block bitmap if it isn't already */
885 if (ext4_has_group_desc_csum(sb
) &&
886 gdp
->bg_flags
& cpu_to_le16(EXT4_BG_BLOCK_UNINIT
)) {
887 struct buffer_head
*block_bitmap_bh
;
889 block_bitmap_bh
= ext4_read_block_bitmap(sb
, group
);
890 if (!block_bitmap_bh
) {
894 BUFFER_TRACE(block_bitmap_bh
, "get block bitmap access");
895 err
= ext4_journal_get_write_access(handle
, block_bitmap_bh
);
897 brelse(block_bitmap_bh
);
898 ext4_std_error(sb
, err
);
902 BUFFER_TRACE(block_bitmap_bh
, "dirty block bitmap");
903 err
= ext4_handle_dirty_metadata(handle
, NULL
, block_bitmap_bh
);
905 /* recheck and clear flag under lock if we still need to */
906 ext4_lock_group(sb
, group
);
907 if (gdp
->bg_flags
& cpu_to_le16(EXT4_BG_BLOCK_UNINIT
)) {
908 gdp
->bg_flags
&= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT
);
909 ext4_free_group_clusters_set(sb
, gdp
,
910 ext4_free_clusters_after_init(sb
, group
, gdp
));
911 ext4_block_bitmap_csum_set(sb
, group
, gdp
,
913 ext4_group_desc_csum_set(sb
, group
, gdp
);
915 ext4_unlock_group(sb
, group
);
916 brelse(block_bitmap_bh
);
919 ext4_std_error(sb
, err
);
924 /* Update the relevant bg descriptor fields */
925 if (ext4_has_group_desc_csum(sb
)) {
927 struct ext4_group_info
*grp
= ext4_get_group_info(sb
, group
);
929 down_read(&grp
->alloc_sem
); /* protect vs itable lazyinit */
930 ext4_lock_group(sb
, group
); /* while we modify the bg desc */
931 free
= EXT4_INODES_PER_GROUP(sb
) -
932 ext4_itable_unused_count(sb
, gdp
);
933 if (gdp
->bg_flags
& cpu_to_le16(EXT4_BG_INODE_UNINIT
)) {
934 gdp
->bg_flags
&= cpu_to_le16(~EXT4_BG_INODE_UNINIT
);
938 * Check the relative inode number against the last used
939 * relative inode number in this group. if it is greater
940 * we need to update the bg_itable_unused count
943 ext4_itable_unused_set(sb
, gdp
,
944 (EXT4_INODES_PER_GROUP(sb
) - ino
));
945 up_read(&grp
->alloc_sem
);
947 ext4_lock_group(sb
, group
);
950 ext4_free_inodes_set(sb
, gdp
, ext4_free_inodes_count(sb
, gdp
) - 1);
952 ext4_used_dirs_set(sb
, gdp
, ext4_used_dirs_count(sb
, gdp
) + 1);
953 if (sbi
->s_log_groups_per_flex
) {
954 ext4_group_t f
= ext4_flex_group(sbi
, group
);
956 atomic_inc(&sbi
->s_flex_groups
[f
].used_dirs
);
959 if (ext4_has_group_desc_csum(sb
)) {
960 ext4_inode_bitmap_csum_set(sb
, group
, gdp
, inode_bitmap_bh
,
961 EXT4_INODES_PER_GROUP(sb
) / 8);
962 ext4_group_desc_csum_set(sb
, group
, gdp
);
964 ext4_unlock_group(sb
, group
);
966 BUFFER_TRACE(group_desc_bh
, "call ext4_handle_dirty_metadata");
967 err
= ext4_handle_dirty_metadata(handle
, NULL
, group_desc_bh
);
969 ext4_std_error(sb
, err
);
973 percpu_counter_dec(&sbi
->s_freeinodes_counter
);
975 percpu_counter_inc(&sbi
->s_dirs_counter
);
977 if (sbi
->s_log_groups_per_flex
) {
978 flex_group
= ext4_flex_group(sbi
, group
);
979 atomic_dec(&sbi
->s_flex_groups
[flex_group
].free_inodes
);
982 inode
->i_ino
= ino
+ group
* EXT4_INODES_PER_GROUP(sb
);
983 /* This is the optimal IO size (for stat), not the fs block size */
985 inode
->i_mtime
= inode
->i_atime
= inode
->i_ctime
= ei
->i_crtime
=
986 ext4_current_time(inode
);
988 memset(ei
->i_data
, 0, sizeof(ei
->i_data
));
989 ei
->i_dir_start_lookup
= 0;
992 /* Don't inherit extent flag from directory, amongst others. */
994 ext4_mask_flags(mode
, EXT4_I(dir
)->i_flags
& EXT4_FL_INHERITED
);
997 ei
->i_block_group
= group
;
998 ei
->i_last_alloc_group
= ~0;
1000 ext4_set_inode_flags(inode
);
1001 if (IS_DIRSYNC(inode
))
1002 ext4_handle_sync(handle
);
1003 if (insert_inode_locked(inode
) < 0) {
1005 * Likely a bitmap corruption causing inode to be allocated
1009 ext4_error(sb
, "failed to insert inode %lu: doubly allocated?",
1013 spin_lock(&sbi
->s_next_gen_lock
);
1014 inode
->i_generation
= sbi
->s_next_generation
++;
1015 spin_unlock(&sbi
->s_next_gen_lock
);
1017 /* Precompute checksum seed for inode metadata */
1018 if (ext4_has_metadata_csum(sb
)) {
1020 __le32 inum
= cpu_to_le32(inode
->i_ino
);
1021 __le32 gen
= cpu_to_le32(inode
->i_generation
);
1022 csum
= ext4_chksum(sbi
, sbi
->s_csum_seed
, (__u8
*)&inum
,
1024 ei
->i_csum_seed
= ext4_chksum(sbi
, csum
, (__u8
*)&gen
,
1028 ext4_clear_state_flags(ei
); /* Only relevant on 32-bit archs */
1029 ext4_set_inode_state(inode
, EXT4_STATE_NEW
);
1031 ei
->i_extra_isize
= EXT4_SB(sb
)->s_want_extra_isize
;
1033 ei
->i_inline_off
= 0;
1034 if (EXT4_HAS_INCOMPAT_FEATURE(sb
, EXT4_FEATURE_INCOMPAT_INLINE_DATA
))
1035 ext4_set_inode_state(inode
, EXT4_STATE_MAY_INLINE_DATA
);
1038 err
= dquot_alloc_inode(inode
);
1042 err
= ext4_init_acl(handle
, inode
, dir
);
1044 goto fail_free_drop
;
1046 err
= ext4_init_security(handle
, inode
, dir
, qstr
);
1048 goto fail_free_drop
;
1050 if (EXT4_HAS_INCOMPAT_FEATURE(sb
, EXT4_FEATURE_INCOMPAT_EXTENTS
)) {
1051 /* set extent flag only for directory, file and normal symlink*/
1052 if (S_ISDIR(mode
) || S_ISREG(mode
) || S_ISLNK(mode
)) {
1053 ext4_set_inode_flag(inode
, EXT4_INODE_EXTENTS
);
1054 ext4_ext_tree_init(handle
, inode
);
1058 if (ext4_handle_valid(handle
)) {
1059 ei
->i_sync_tid
= handle
->h_transaction
->t_tid
;
1060 ei
->i_datasync_tid
= handle
->h_transaction
->t_tid
;
1063 err
= ext4_mark_inode_dirty(handle
, inode
);
1065 ext4_std_error(sb
, err
);
1066 goto fail_free_drop
;
1069 ext4_debug("allocating inode %lu\n", inode
->i_ino
);
1070 trace_ext4_allocate_inode(inode
, dir
, mode
);
1071 brelse(inode_bitmap_bh
);
1075 dquot_free_inode(inode
);
1078 unlock_new_inode(inode
);
1081 inode
->i_flags
|= S_NOQUOTA
;
1083 brelse(inode_bitmap_bh
);
1084 return ERR_PTR(err
);
1087 /* Verify that we are loading a valid orphan from disk */
1088 struct inode
*ext4_orphan_get(struct super_block
*sb
, unsigned long ino
)
1090 unsigned long max_ino
= le32_to_cpu(EXT4_SB(sb
)->s_es
->s_inodes_count
);
1091 ext4_group_t block_group
;
1093 struct buffer_head
*bitmap_bh
;
1094 struct inode
*inode
= NULL
;
1097 /* Error cases - e2fsck has already cleaned up for us */
1098 if (ino
> max_ino
) {
1099 ext4_warning(sb
, "bad orphan ino %lu! e2fsck was run?", ino
);
1103 block_group
= (ino
- 1) / EXT4_INODES_PER_GROUP(sb
);
1104 bit
= (ino
- 1) % EXT4_INODES_PER_GROUP(sb
);
1105 bitmap_bh
= ext4_read_inode_bitmap(sb
, block_group
);
1107 ext4_warning(sb
, "inode bitmap error for orphan %lu", ino
);
1111 /* Having the inode bit set should be a 100% indicator that this
1112 * is a valid orphan (no e2fsck run on fs). Orphans also include
1113 * inodes that were being truncated, so we can't check i_nlink==0.
1115 if (!ext4_test_bit(bit
, bitmap_bh
->b_data
))
1118 inode
= ext4_iget(sb
, ino
);
1123 * If the orphans has i_nlinks > 0 then it should be able to be
1124 * truncated, otherwise it won't be removed from the orphan list
1125 * during processing and an infinite loop will result.
1127 if (inode
->i_nlink
&& !ext4_can_truncate(inode
))
1130 if (NEXT_ORPHAN(inode
) > max_ino
)
1136 err
= PTR_ERR(inode
);
1139 ext4_warning(sb
, "bad orphan inode %lu! e2fsck was run?", ino
);
1140 printk(KERN_WARNING
"ext4_test_bit(bit=%d, block=%llu) = %d\n",
1141 bit
, (unsigned long long)bitmap_bh
->b_blocknr
,
1142 ext4_test_bit(bit
, bitmap_bh
->b_data
));
1143 printk(KERN_WARNING
"inode=%p\n", inode
);
1145 printk(KERN_WARNING
"is_bad_inode(inode)=%d\n",
1146 is_bad_inode(inode
));
1147 printk(KERN_WARNING
"NEXT_ORPHAN(inode)=%u\n",
1148 NEXT_ORPHAN(inode
));
1149 printk(KERN_WARNING
"max_ino=%lu\n", max_ino
);
1150 printk(KERN_WARNING
"i_nlink=%u\n", inode
->i_nlink
);
1151 /* Avoid freeing blocks if we got a bad deleted inode */
1152 if (inode
->i_nlink
== 0)
1153 inode
->i_blocks
= 0;
1158 return ERR_PTR(err
);
1161 unsigned long ext4_count_free_inodes(struct super_block
*sb
)
1163 unsigned long desc_count
;
1164 struct ext4_group_desc
*gdp
;
1165 ext4_group_t i
, ngroups
= ext4_get_groups_count(sb
);
1167 struct ext4_super_block
*es
;
1168 unsigned long bitmap_count
, x
;
1169 struct buffer_head
*bitmap_bh
= NULL
;
1171 es
= EXT4_SB(sb
)->s_es
;
1175 for (i
= 0; i
< ngroups
; i
++) {
1176 gdp
= ext4_get_group_desc(sb
, i
, NULL
);
1179 desc_count
+= ext4_free_inodes_count(sb
, gdp
);
1181 bitmap_bh
= ext4_read_inode_bitmap(sb
, i
);
1185 x
= ext4_count_free(bitmap_bh
->b_data
,
1186 EXT4_INODES_PER_GROUP(sb
) / 8);
1187 printk(KERN_DEBUG
"group %lu: stored = %d, counted = %lu\n",
1188 (unsigned long) i
, ext4_free_inodes_count(sb
, gdp
), x
);
1192 printk(KERN_DEBUG
"ext4_count_free_inodes: "
1193 "stored = %u, computed = %lu, %lu\n",
1194 le32_to_cpu(es
->s_free_inodes_count
), desc_count
, bitmap_count
);
1198 for (i
= 0; i
< ngroups
; i
++) {
1199 gdp
= ext4_get_group_desc(sb
, i
, NULL
);
1202 desc_count
+= ext4_free_inodes_count(sb
, gdp
);
1209 /* Called at mount-time, super-block is locked */
1210 unsigned long ext4_count_dirs(struct super_block
* sb
)
1212 unsigned long count
= 0;
1213 ext4_group_t i
, ngroups
= ext4_get_groups_count(sb
);
1215 for (i
= 0; i
< ngroups
; i
++) {
1216 struct ext4_group_desc
*gdp
= ext4_get_group_desc(sb
, i
, NULL
);
1219 count
+= ext4_used_dirs_count(sb
, gdp
);
1225 * Zeroes not yet zeroed inode table - just write zeroes through the whole
1226 * inode table. Must be called without any spinlock held. The only place
1227 * where it is called from on active part of filesystem is ext4lazyinit
1228 * thread, so we do not need any special locks, however we have to prevent
1229 * inode allocation from the current group, so we take alloc_sem lock, to
1230 * block ext4_new_inode() until we are finished.
1232 int ext4_init_inode_table(struct super_block
*sb
, ext4_group_t group
,
1235 struct ext4_group_info
*grp
= ext4_get_group_info(sb
, group
);
1236 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
1237 struct ext4_group_desc
*gdp
= NULL
;
1238 struct buffer_head
*group_desc_bh
;
1241 int num
, ret
= 0, used_blks
= 0;
1243 /* This should not happen, but just to be sure check this */
1244 if (sb
->s_flags
& MS_RDONLY
) {
1249 gdp
= ext4_get_group_desc(sb
, group
, &group_desc_bh
);
1254 * We do not need to lock this, because we are the only one
1255 * handling this flag.
1257 if (gdp
->bg_flags
& cpu_to_le16(EXT4_BG_INODE_ZEROED
))
1260 handle
= ext4_journal_start_sb(sb
, EXT4_HT_MISC
, 1);
1261 if (IS_ERR(handle
)) {
1262 ret
= PTR_ERR(handle
);
1266 down_write(&grp
->alloc_sem
);
1268 * If inode bitmap was already initialized there may be some
1269 * used inodes so we need to skip blocks with used inodes in
1272 if (!(gdp
->bg_flags
& cpu_to_le16(EXT4_BG_INODE_UNINIT
)))
1273 used_blks
= DIV_ROUND_UP((EXT4_INODES_PER_GROUP(sb
) -
1274 ext4_itable_unused_count(sb
, gdp
)),
1275 sbi
->s_inodes_per_block
);
1277 if ((used_blks
< 0) || (used_blks
> sbi
->s_itb_per_group
)) {
1278 ext4_error(sb
, "Something is wrong with group %u: "
1279 "used itable blocks: %d; "
1280 "itable unused count: %u",
1282 ext4_itable_unused_count(sb
, gdp
));
1287 blk
= ext4_inode_table(sb
, gdp
) + used_blks
;
1288 num
= sbi
->s_itb_per_group
- used_blks
;
1290 BUFFER_TRACE(group_desc_bh
, "get_write_access");
1291 ret
= ext4_journal_get_write_access(handle
,
1297 * Skip zeroout if the inode table is full. But we set the ZEROED
1298 * flag anyway, because obviously, when it is full it does not need
1301 if (unlikely(num
== 0))
1304 ext4_debug("going to zero out inode table in group %d\n",
1306 ret
= sb_issue_zeroout(sb
, blk
, num
, GFP_NOFS
);
1310 blkdev_issue_flush(sb
->s_bdev
, GFP_NOFS
, NULL
);
1313 ext4_lock_group(sb
, group
);
1314 gdp
->bg_flags
|= cpu_to_le16(EXT4_BG_INODE_ZEROED
);
1315 ext4_group_desc_csum_set(sb
, group
, gdp
);
1316 ext4_unlock_group(sb
, group
);
1318 BUFFER_TRACE(group_desc_bh
,
1319 "call ext4_handle_dirty_metadata");
1320 ret
= ext4_handle_dirty_metadata(handle
, NULL
,
1324 up_write(&grp
->alloc_sem
);
1325 ext4_journal_stop(handle
);