ext4: Make the extent validity check more paranoid
[deliverable/linux.git] / fs / ext4 / ialloc.c
CommitLineData
ac27a0ec 1/*
617ba13b 2 * linux/fs/ext4/ialloc.c
ac27a0ec
DK
3 *
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)
8 *
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
13 */
14
15#include <linux/time.h>
16#include <linux/fs.h>
dab291af 17#include <linux/jbd2.h>
ac27a0ec
DK
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>
3a5b2ecd 24#include <linux/blkdev.h>
ac27a0ec 25#include <asm/byteorder.h>
3dcf5451
CH
26#include "ext4.h"
27#include "ext4_jbd2.h"
ac27a0ec
DK
28#include "xattr.h"
29#include "acl.h"
717d50e4 30#include "group.h"
ac27a0ec
DK
31
32/*
33 * ialloc.c contains the inodes allocation and deallocation routines
34 */
35
36/*
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.
40 *
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.
44 */
45
717d50e4
AD
46/*
47 * To avoid calling the atomic setbit hundreds or thousands of times, we only
48 * need to use it within a single byte (to ensure we get endianness right).
49 * We can use memset for the rest of the bitmap as there are no other users.
50 */
51void mark_bitmap_end(int start_bit, int end_bit, char *bitmap)
52{
53 int i;
54
55 if (start_bit >= end_bit)
56 return;
57
58 ext4_debug("mark end bits +%d through +%d used\n", start_bit, end_bit);
59 for (i = start_bit; i < ((start_bit + 7) & ~7UL); i++)
60 ext4_set_bit(i, bitmap);
61 if (i < end_bit)
62 memset(bitmap + (i >> 3), 0xff, (end_bit - i) >> 3);
63}
64
65/* Initializes an uninitialized inode bitmap */
fd2d4291
AM
66unsigned ext4_init_inode_bitmap(struct super_block *sb, struct buffer_head *bh,
67 ext4_group_t block_group,
717d50e4
AD
68 struct ext4_group_desc *gdp)
69{
70 struct ext4_sb_info *sbi = EXT4_SB(sb);
71
72 J_ASSERT_BH(bh, buffer_locked(bh));
73
74 /* If checksum is bad mark all blocks and inodes use to prevent
75 * allocation, essentially implementing a per-group read-only flag. */
76 if (!ext4_group_desc_csum_verify(sbi, block_group, gdp)) {
a9df9a49 77 ext4_error(sb, __func__, "Checksum bad for group %u",
717d50e4 78 block_group);
560671a0
AK
79 ext4_free_blks_set(sb, gdp, 0);
80 ext4_free_inodes_set(sb, gdp, 0);
81 ext4_itable_unused_set(sb, gdp, 0);
717d50e4
AD
82 memset(bh->b_data, 0xff, sb->s_blocksize);
83 return 0;
84 }
85
86 memset(bh->b_data, 0, (EXT4_INODES_PER_GROUP(sb) + 7) / 8);
648f5879 87 mark_bitmap_end(EXT4_INODES_PER_GROUP(sb), sb->s_blocksize * 8,
717d50e4
AD
88 bh->b_data);
89
90 return EXT4_INODES_PER_GROUP(sb);
91}
ac27a0ec
DK
92
93/*
94 * Read the inode allocation bitmap for a given block_group, reading
95 * into the specified slot in the superblock's bitmap cache.
96 *
97 * Return buffer_head of bitmap on success or NULL.
98 */
99static struct buffer_head *
e29d1cde 100ext4_read_inode_bitmap(struct super_block *sb, ext4_group_t block_group)
ac27a0ec 101{
617ba13b 102 struct ext4_group_desc *desc;
ac27a0ec 103 struct buffer_head *bh = NULL;
e29d1cde 104 ext4_fsblk_t bitmap_blk;
ac27a0ec 105
617ba13b 106 desc = ext4_get_group_desc(sb, block_group, NULL);
ac27a0ec 107 if (!desc)
e29d1cde
ES
108 return NULL;
109 bitmap_blk = ext4_inode_bitmap(sb, desc);
110 bh = sb_getblk(sb, bitmap_blk);
111 if (unlikely(!bh)) {
112 ext4_error(sb, __func__,
113 "Cannot read inode bitmap - "
a9df9a49 114 "block_group = %u, inode_bitmap = %llu",
e29d1cde
ES
115 block_group, bitmap_blk);
116 return NULL;
117 }
2ccb5fb9 118 if (bitmap_uptodate(bh))
e29d1cde
ES
119 return bh;
120
c806e68f 121 lock_buffer(bh);
2ccb5fb9
AK
122 if (bitmap_uptodate(bh)) {
123 unlock_buffer(bh);
124 return bh;
125 }
b5f10eed 126 spin_lock(sb_bgl_lock(EXT4_SB(sb), block_group));
717d50e4 127 if (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
e29d1cde 128 ext4_init_inode_bitmap(sb, bh, block_group, desc);
2ccb5fb9 129 set_bitmap_uptodate(bh);
e29d1cde 130 set_buffer_uptodate(bh);
b5f10eed 131 spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group));
3300beda 132 unlock_buffer(bh);
e29d1cde 133 return bh;
717d50e4 134 }
b5f10eed 135 spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group));
2ccb5fb9
AK
136 if (buffer_uptodate(bh)) {
137 /*
138 * if not uninit if bh is uptodate,
139 * bitmap is also uptodate
140 */
141 set_bitmap_uptodate(bh);
142 unlock_buffer(bh);
143 return bh;
144 }
145 /*
146 * submit the buffer_head for read. We can
147 * safely mark the bitmap as uptodate now.
148 * We do it here so the bitmap uptodate bit
149 * get set with buffer lock held.
150 */
151 set_bitmap_uptodate(bh);
e29d1cde
ES
152 if (bh_submit_read(bh) < 0) {
153 put_bh(bh);
154 ext4_error(sb, __func__,
ac27a0ec 155 "Cannot read inode bitmap - "
a9df9a49 156 "block_group = %u, inode_bitmap = %llu",
e29d1cde
ES
157 block_group, bitmap_blk);
158 return NULL;
159 }
ac27a0ec
DK
160 return bh;
161}
162
163/*
164 * NOTE! When we get the inode, we're the only people
165 * that have access to it, and as such there are no
166 * race conditions we have to worry about. The inode
167 * is not on the hash-lists, and it cannot be reached
168 * through the filesystem because the directory entry
169 * has been deleted earlier.
170 *
171 * HOWEVER: we must make sure that we get no aliases,
172 * which means that we have to call "clear_inode()"
173 * _before_ we mark the inode not in use in the inode
174 * bitmaps. Otherwise a newly created file might use
175 * the same inode number (not actually the same pointer
176 * though), and then we'd have two inodes sharing the
177 * same inode number and space on the harddisk.
178 */
af5bc92d 179void ext4_free_inode(handle_t *handle, struct inode *inode)
ac27a0ec 180{
af5bc92d 181 struct super_block *sb = inode->i_sb;
ac27a0ec
DK
182 int is_directory;
183 unsigned long ino;
184 struct buffer_head *bitmap_bh = NULL;
185 struct buffer_head *bh2;
fd2d4291 186 ext4_group_t block_group;
ac27a0ec 187 unsigned long bit;
af5bc92d
TT
188 struct ext4_group_desc *gdp;
189 struct ext4_super_block *es;
617ba13b 190 struct ext4_sb_info *sbi;
7ce9d5d1 191 int fatal = 0, err, count, cleared;
ac27a0ec
DK
192
193 if (atomic_read(&inode->i_count) > 1) {
4776004f
TT
194 printk(KERN_ERR "ext4_free_inode: inode has count=%d\n",
195 atomic_read(&inode->i_count));
ac27a0ec
DK
196 return;
197 }
198 if (inode->i_nlink) {
4776004f
TT
199 printk(KERN_ERR "ext4_free_inode: inode has nlink=%d\n",
200 inode->i_nlink);
ac27a0ec
DK
201 return;
202 }
203 if (!sb) {
4776004f
TT
204 printk(KERN_ERR "ext4_free_inode: inode on "
205 "nonexistent device\n");
ac27a0ec
DK
206 return;
207 }
617ba13b 208 sbi = EXT4_SB(sb);
ac27a0ec
DK
209
210 ino = inode->i_ino;
af5bc92d 211 ext4_debug("freeing inode %lu\n", ino);
ba80b101
TT
212 trace_mark(ext4_free_inode,
213 "dev %s ino %lu mode %d uid %lu gid %lu bocks %llu",
214 sb->s_id, inode->i_ino, inode->i_mode,
215 (unsigned long) inode->i_uid, (unsigned long) inode->i_gid,
216 (unsigned long long) inode->i_blocks);
ac27a0ec
DK
217
218 /*
219 * Note: we must free any quota before locking the superblock,
220 * as writing the quota to disk may need the lock as well.
221 */
a269eb18 222 vfs_dq_init(inode);
617ba13b 223 ext4_xattr_delete_inode(handle, inode);
a269eb18
JK
224 vfs_dq_free_inode(inode);
225 vfs_dq_drop(inode);
ac27a0ec
DK
226
227 is_directory = S_ISDIR(inode->i_mode);
228
229 /* Do this BEFORE marking the inode not in use or returning an error */
af5bc92d 230 clear_inode(inode);
ac27a0ec 231
617ba13b
MC
232 es = EXT4_SB(sb)->s_es;
233 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
af5bc92d
TT
234 ext4_error(sb, "ext4_free_inode",
235 "reserved or nonexistent inode %lu", ino);
ac27a0ec
DK
236 goto error_return;
237 }
617ba13b
MC
238 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
239 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
e29d1cde 240 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
ac27a0ec
DK
241 if (!bitmap_bh)
242 goto error_return;
243
244 BUFFER_TRACE(bitmap_bh, "get_write_access");
617ba13b 245 fatal = ext4_journal_get_write_access(handle, bitmap_bh);
ac27a0ec
DK
246 if (fatal)
247 goto error_return;
248
249 /* Ok, now we can actually update the inode bitmaps.. */
7ce9d5d1
ES
250 spin_lock(sb_bgl_lock(sbi, block_group));
251 cleared = ext4_clear_bit(bit, bitmap_bh->b_data);
252 spin_unlock(sb_bgl_lock(sbi, block_group));
253 if (!cleared)
af5bc92d
TT
254 ext4_error(sb, "ext4_free_inode",
255 "bit already cleared for inode %lu", ino);
ac27a0ec 256 else {
af5bc92d 257 gdp = ext4_get_group_desc(sb, block_group, &bh2);
ac27a0ec
DK
258
259 BUFFER_TRACE(bh2, "get_write_access");
617ba13b 260 fatal = ext4_journal_get_write_access(handle, bh2);
ac27a0ec
DK
261 if (fatal) goto error_return;
262
263 if (gdp) {
264 spin_lock(sb_bgl_lock(sbi, block_group));
560671a0
AK
265 count = ext4_free_inodes_count(sb, gdp) + 1;
266 ext4_free_inodes_set(sb, gdp, count);
267 if (is_directory) {
268 count = ext4_used_dirs_count(sb, gdp) - 1;
269 ext4_used_dirs_set(sb, gdp, count);
7d39db14
TT
270 if (sbi->s_log_groups_per_flex) {
271 ext4_group_t f;
272
273 f = ext4_flex_group(sbi, block_group);
274 atomic_dec(&sbi->s_flex_groups[f].free_inodes);
275 }
276
560671a0 277 }
717d50e4
AD
278 gdp->bg_checksum = ext4_group_desc_csum(sbi,
279 block_group, gdp);
ac27a0ec
DK
280 spin_unlock(sb_bgl_lock(sbi, block_group));
281 percpu_counter_inc(&sbi->s_freeinodes_counter);
282 if (is_directory)
283 percpu_counter_dec(&sbi->s_dirs_counter);
284
772cb7c8 285 if (sbi->s_log_groups_per_flex) {
9f24e420
TT
286 ext4_group_t f;
287
288 f = ext4_flex_group(sbi, block_group);
289 atomic_inc(&sbi->s_flex_groups[f].free_inodes);
772cb7c8 290 }
ac27a0ec 291 }
0390131b
FM
292 BUFFER_TRACE(bh2, "call ext4_handle_dirty_metadata");
293 err = ext4_handle_dirty_metadata(handle, NULL, bh2);
ac27a0ec
DK
294 if (!fatal) fatal = err;
295 }
0390131b
FM
296 BUFFER_TRACE(bitmap_bh, "call ext4_handle_dirty_metadata");
297 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
ac27a0ec
DK
298 if (!fatal)
299 fatal = err;
300 sb->s_dirt = 1;
301error_return:
302 brelse(bitmap_bh);
617ba13b 303 ext4_std_error(sb, fatal);
ac27a0ec
DK
304}
305
306/*
307 * There are two policies for allocating an inode. If the new inode is
308 * a directory, then a forward search is made for a block group with both
309 * free space and a low directory-to-inode ratio; if that fails, then of
310 * the groups with above-average free space, that group with the fewest
311 * directories already is chosen.
312 *
313 * For other inodes, search forward from the parent directory\'s block
314 * group to find a free inode.
315 */
2aa9fc4c
AM
316static int find_group_dir(struct super_block *sb, struct inode *parent,
317 ext4_group_t *best_group)
ac27a0ec 318{
fd2d4291 319 ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
ac27a0ec 320 unsigned int freei, avefreei;
617ba13b 321 struct ext4_group_desc *desc, *best_desc = NULL;
2aa9fc4c
AM
322 ext4_group_t group;
323 int ret = -1;
ac27a0ec 324
617ba13b 325 freei = percpu_counter_read_positive(&EXT4_SB(sb)->s_freeinodes_counter);
ac27a0ec
DK
326 avefreei = freei / ngroups;
327
328 for (group = 0; group < ngroups; group++) {
af5bc92d 329 desc = ext4_get_group_desc(sb, group, NULL);
560671a0 330 if (!desc || !ext4_free_inodes_count(sb, desc))
ac27a0ec 331 continue;
560671a0 332 if (ext4_free_inodes_count(sb, desc) < avefreei)
ac27a0ec
DK
333 continue;
334 if (!best_desc ||
560671a0
AK
335 (ext4_free_blks_count(sb, desc) >
336 ext4_free_blks_count(sb, best_desc))) {
2aa9fc4c 337 *best_group = group;
ac27a0ec 338 best_desc = desc;
2aa9fc4c 339 ret = 0;
ac27a0ec
DK
340 }
341 }
2aa9fc4c 342 return ret;
ac27a0ec
DK
343}
344
772cb7c8
JS
345#define free_block_ratio 10
346
347static int find_group_flex(struct super_block *sb, struct inode *parent,
348 ext4_group_t *best_group)
349{
350 struct ext4_sb_info *sbi = EXT4_SB(sb);
351 struct ext4_group_desc *desc;
352 struct buffer_head *bh;
353 struct flex_groups *flex_group = sbi->s_flex_groups;
354 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
355 ext4_group_t parent_fbg_group = ext4_flex_group(sbi, parent_group);
356 ext4_group_t ngroups = sbi->s_groups_count;
357 int flex_size = ext4_flex_bg_size(sbi);
358 ext4_group_t best_flex = parent_fbg_group;
359 int blocks_per_flex = sbi->s_blocks_per_group * flex_size;
360 int flexbg_free_blocks;
361 int flex_freeb_ratio;
362 ext4_group_t n_fbg_groups;
363 ext4_group_t i;
364
365 n_fbg_groups = (sbi->s_groups_count + flex_size - 1) >>
366 sbi->s_log_groups_per_flex;
367
368find_close_to_parent:
9f24e420 369 flexbg_free_blocks = atomic_read(&flex_group[best_flex].free_blocks);
772cb7c8 370 flex_freeb_ratio = flexbg_free_blocks * 100 / blocks_per_flex;
9f24e420 371 if (atomic_read(&flex_group[best_flex].free_inodes) &&
772cb7c8
JS
372 flex_freeb_ratio > free_block_ratio)
373 goto found_flexbg;
374
375 if (best_flex && best_flex == parent_fbg_group) {
376 best_flex--;
377 goto find_close_to_parent;
378 }
379
380 for (i = 0; i < n_fbg_groups; i++) {
381 if (i == parent_fbg_group || i == parent_fbg_group - 1)
382 continue;
383
9f24e420 384 flexbg_free_blocks = atomic_read(&flex_group[i].free_blocks);
772cb7c8
JS
385 flex_freeb_ratio = flexbg_free_blocks * 100 / blocks_per_flex;
386
387 if (flex_freeb_ratio > free_block_ratio &&
9f24e420 388 (atomic_read(&flex_group[i].free_inodes))) {
772cb7c8
JS
389 best_flex = i;
390 goto found_flexbg;
391 }
392
9f24e420
TT
393 if ((atomic_read(&flex_group[best_flex].free_inodes) == 0) ||
394 ((atomic_read(&flex_group[i].free_blocks) >
395 atomic_read(&flex_group[best_flex].free_blocks)) &&
396 atomic_read(&flex_group[i].free_inodes)))
772cb7c8
JS
397 best_flex = i;
398 }
399
9f24e420
TT
400 if (!atomic_read(&flex_group[best_flex].free_inodes) ||
401 !atomic_read(&flex_group[best_flex].free_blocks))
772cb7c8
JS
402 return -1;
403
404found_flexbg:
405 for (i = best_flex * flex_size; i < ngroups &&
406 i < (best_flex + 1) * flex_size; i++) {
407 desc = ext4_get_group_desc(sb, i, &bh);
560671a0 408 if (ext4_free_inodes_count(sb, desc)) {
772cb7c8
JS
409 *best_group = i;
410 goto out;
411 }
412 }
413
414 return -1;
415out:
416 return 0;
417}
418
a4912123
TT
419struct orlov_stats {
420 __u32 free_inodes;
421 __u32 free_blocks;
422 __u32 used_dirs;
423};
424
425/*
426 * Helper function for Orlov's allocator; returns critical information
427 * for a particular block group or flex_bg. If flex_size is 1, then g
428 * is a block group number; otherwise it is flex_bg number.
429 */
430void get_orlov_stats(struct super_block *sb, ext4_group_t g,
431 int flex_size, struct orlov_stats *stats)
432{
433 struct ext4_group_desc *desc;
7d39db14 434 struct flex_groups *flex_group = EXT4_SB(sb)->s_flex_groups;
a4912123 435
7d39db14
TT
436 if (flex_size > 1) {
437 stats->free_inodes = atomic_read(&flex_group[g].free_inodes);
438 stats->free_blocks = atomic_read(&flex_group[g].free_blocks);
439 stats->used_dirs = atomic_read(&flex_group[g].used_dirs);
440 return;
441 }
a4912123 442
7d39db14
TT
443 desc = ext4_get_group_desc(sb, g, NULL);
444 if (desc) {
445 stats->free_inodes = ext4_free_inodes_count(sb, desc);
446 stats->free_blocks = ext4_free_blks_count(sb, desc);
447 stats->used_dirs = ext4_used_dirs_count(sb, desc);
448 } else {
449 stats->free_inodes = 0;
450 stats->free_blocks = 0;
451 stats->used_dirs = 0;
a4912123
TT
452 }
453}
454
ac27a0ec
DK
455/*
456 * Orlov's allocator for directories.
457 *
458 * We always try to spread first-level directories.
459 *
460 * If there are blockgroups with both free inodes and free blocks counts
461 * not worse than average we return one with smallest directory count.
462 * Otherwise we simply return a random group.
463 *
464 * For the rest rules look so:
465 *
466 * It's OK to put directory into a group unless
467 * it has too many directories already (max_dirs) or
468 * it has too few free inodes left (min_inodes) or
469 * it has too few free blocks left (min_blocks) or
1cc8dcf5 470 * Parent's group is preferred, if it doesn't satisfy these
ac27a0ec
DK
471 * conditions we search cyclically through the rest. If none
472 * of the groups look good we just look for a group with more
473 * free inodes than average (starting at parent's group).
ac27a0ec
DK
474 */
475
2aa9fc4c 476static int find_group_orlov(struct super_block *sb, struct inode *parent,
a4912123 477 ext4_group_t *group, int mode)
ac27a0ec 478{
fd2d4291 479 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
617ba13b 480 struct ext4_sb_info *sbi = EXT4_SB(sb);
fd2d4291 481 ext4_group_t ngroups = sbi->s_groups_count;
617ba13b 482 int inodes_per_group = EXT4_INODES_PER_GROUP(sb);
ac27a0ec 483 unsigned int freei, avefreei;
617ba13b 484 ext4_fsblk_t freeb, avefreeb;
ac27a0ec 485 unsigned int ndirs;
a4912123 486 int max_dirs, min_inodes;
617ba13b 487 ext4_grpblk_t min_blocks;
a4912123 488 ext4_group_t i, grp, g;
617ba13b 489 struct ext4_group_desc *desc;
a4912123
TT
490 struct orlov_stats stats;
491 int flex_size = ext4_flex_bg_size(sbi);
492
493 if (flex_size > 1) {
494 ngroups = (ngroups + flex_size - 1) >>
495 sbi->s_log_groups_per_flex;
496 parent_group >>= sbi->s_log_groups_per_flex;
497 }
ac27a0ec
DK
498
499 freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
500 avefreei = freei / ngroups;
501 freeb = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
3a5b2ecd 502 avefreeb = freeb;
f4e5bc24 503 do_div(avefreeb, ngroups);
ac27a0ec
DK
504 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
505
a4912123
TT
506 if (S_ISDIR(mode) &&
507 ((parent == sb->s_root->d_inode) ||
508 (EXT4_I(parent)->i_flags & EXT4_TOPDIR_FL))) {
ac27a0ec 509 int best_ndir = inodes_per_group;
2aa9fc4c 510 int ret = -1;
ac27a0ec 511
2aa9fc4c
AM
512 get_random_bytes(&grp, sizeof(grp));
513 parent_group = (unsigned)grp % ngroups;
ac27a0ec 514 for (i = 0; i < ngroups; i++) {
a4912123
TT
515 g = (parent_group + i) % ngroups;
516 get_orlov_stats(sb, g, flex_size, &stats);
517 if (!stats.free_inodes)
ac27a0ec 518 continue;
a4912123 519 if (stats.used_dirs >= best_ndir)
ac27a0ec 520 continue;
a4912123 521 if (stats.free_inodes < avefreei)
ac27a0ec 522 continue;
a4912123 523 if (stats.free_blocks < avefreeb)
ac27a0ec 524 continue;
a4912123 525 grp = g;
2aa9fc4c 526 ret = 0;
a4912123
TT
527 best_ndir = stats.used_dirs;
528 }
529 if (ret)
530 goto fallback;
531 found_flex_bg:
532 if (flex_size == 1) {
533 *group = grp;
534 return 0;
535 }
536
537 /*
538 * We pack inodes at the beginning of the flexgroup's
539 * inode tables. Block allocation decisions will do
540 * something similar, although regular files will
541 * start at 2nd block group of the flexgroup. See
542 * ext4_ext_find_goal() and ext4_find_near().
543 */
544 grp *= flex_size;
545 for (i = 0; i < flex_size; i++) {
546 if (grp+i >= sbi->s_groups_count)
547 break;
548 desc = ext4_get_group_desc(sb, grp+i, NULL);
549 if (desc && ext4_free_inodes_count(sb, desc)) {
550 *group = grp+i;
551 return 0;
552 }
ac27a0ec 553 }
ac27a0ec
DK
554 goto fallback;
555 }
556
ac27a0ec 557 max_dirs = ndirs / ngroups + inodes_per_group / 16;
a4912123
TT
558 min_inodes = avefreei - inodes_per_group*flex_size / 4;
559 if (min_inodes < 1)
560 min_inodes = 1;
561 min_blocks = avefreeb - EXT4_BLOCKS_PER_GROUP(sb)*flex_size / 4;
562
563 /*
564 * Start looking in the flex group where we last allocated an
565 * inode for this parent directory
566 */
567 if (EXT4_I(parent)->i_last_alloc_group != ~0) {
568 parent_group = EXT4_I(parent)->i_last_alloc_group;
569 if (flex_size > 1)
570 parent_group >>= sbi->s_log_groups_per_flex;
571 }
ac27a0ec
DK
572
573 for (i = 0; i < ngroups; i++) {
a4912123
TT
574 grp = (parent_group + i) % ngroups;
575 get_orlov_stats(sb, grp, flex_size, &stats);
576 if (stats.used_dirs >= max_dirs)
ac27a0ec 577 continue;
a4912123 578 if (stats.free_inodes < min_inodes)
ac27a0ec 579 continue;
a4912123 580 if (stats.free_blocks < min_blocks)
ac27a0ec 581 continue;
a4912123 582 goto found_flex_bg;
ac27a0ec
DK
583 }
584
585fallback:
a4912123
TT
586 ngroups = sbi->s_groups_count;
587 avefreei = freei / ngroups;
588 parent_group = EXT4_I(parent)->i_block_group;
ac27a0ec 589 for (i = 0; i < ngroups; i++) {
a4912123
TT
590 grp = (parent_group + i) % ngroups;
591 desc = ext4_get_group_desc(sb, grp, NULL);
560671a0 592 if (desc && ext4_free_inodes_count(sb, desc) &&
a4912123
TT
593 ext4_free_inodes_count(sb, desc) >= avefreei) {
594 *group = grp;
2aa9fc4c 595 return 0;
a4912123 596 }
ac27a0ec
DK
597 }
598
599 if (avefreei) {
600 /*
601 * The free-inodes counter is approximate, and for really small
602 * filesystems the above test can fail to find any blockgroups
603 */
604 avefreei = 0;
605 goto fallback;
606 }
607
608 return -1;
609}
610
2aa9fc4c 611static int find_group_other(struct super_block *sb, struct inode *parent,
a4912123 612 ext4_group_t *group, int mode)
ac27a0ec 613{
fd2d4291
AM
614 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
615 ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
617ba13b 616 struct ext4_group_desc *desc;
a4912123
TT
617 ext4_group_t i, last;
618 int flex_size = ext4_flex_bg_size(EXT4_SB(sb));
619
620 /*
621 * Try to place the inode is the same flex group as its
622 * parent. If we can't find space, use the Orlov algorithm to
623 * find another flex group, and store that information in the
624 * parent directory's inode information so that use that flex
625 * group for future allocations.
626 */
627 if (flex_size > 1) {
628 int retry = 0;
629
630 try_again:
631 parent_group &= ~(flex_size-1);
632 last = parent_group + flex_size;
633 if (last > ngroups)
634 last = ngroups;
635 for (i = parent_group; i < last; i++) {
636 desc = ext4_get_group_desc(sb, i, NULL);
637 if (desc && ext4_free_inodes_count(sb, desc)) {
638 *group = i;
639 return 0;
640 }
641 }
642 if (!retry && EXT4_I(parent)->i_last_alloc_group != ~0) {
643 retry = 1;
644 parent_group = EXT4_I(parent)->i_last_alloc_group;
645 goto try_again;
646 }
647 /*
648 * If this didn't work, use the Orlov search algorithm
649 * to find a new flex group; we pass in the mode to
650 * avoid the topdir algorithms.
651 */
652 *group = parent_group + flex_size;
653 if (*group > ngroups)
654 *group = 0;
655 return find_group_orlov(sb, parent, group, mode);
656 }
ac27a0ec
DK
657
658 /*
659 * Try to place the inode in its parent directory
660 */
2aa9fc4c
AM
661 *group = parent_group;
662 desc = ext4_get_group_desc(sb, *group, NULL);
560671a0
AK
663 if (desc && ext4_free_inodes_count(sb, desc) &&
664 ext4_free_blks_count(sb, desc))
2aa9fc4c 665 return 0;
ac27a0ec
DK
666
667 /*
668 * We're going to place this inode in a different blockgroup from its
669 * parent. We want to cause files in a common directory to all land in
670 * the same blockgroup. But we want files which are in a different
671 * directory which shares a blockgroup with our parent to land in a
672 * different blockgroup.
673 *
674 * So add our directory's i_ino into the starting point for the hash.
675 */
2aa9fc4c 676 *group = (*group + parent->i_ino) % ngroups;
ac27a0ec
DK
677
678 /*
679 * Use a quadratic hash to find a group with a free inode and some free
680 * blocks.
681 */
682 for (i = 1; i < ngroups; i <<= 1) {
2aa9fc4c
AM
683 *group += i;
684 if (*group >= ngroups)
685 *group -= ngroups;
686 desc = ext4_get_group_desc(sb, *group, NULL);
560671a0
AK
687 if (desc && ext4_free_inodes_count(sb, desc) &&
688 ext4_free_blks_count(sb, desc))
2aa9fc4c 689 return 0;
ac27a0ec
DK
690 }
691
692 /*
693 * That failed: try linear search for a free inode, even if that group
694 * has no free blocks.
695 */
2aa9fc4c 696 *group = parent_group;
ac27a0ec 697 for (i = 0; i < ngroups; i++) {
2aa9fc4c
AM
698 if (++*group >= ngroups)
699 *group = 0;
700 desc = ext4_get_group_desc(sb, *group, NULL);
560671a0 701 if (desc && ext4_free_inodes_count(sb, desc))
2aa9fc4c 702 return 0;
ac27a0ec
DK
703 }
704
705 return -1;
706}
707
39341867
AK
708/*
709 * claim the inode from the inode bitmap. If the group
710 * is uninit we need to take the groups's sb_bgl_lock
711 * and clear the uninit flag. The inode bitmap update
712 * and group desc uninit flag clear should be done
713 * after holding sb_bgl_lock so that ext4_read_inode_bitmap
714 * doesn't race with the ext4_claim_inode
715 */
716static int ext4_claim_inode(struct super_block *sb,
717 struct buffer_head *inode_bitmap_bh,
718 unsigned long ino, ext4_group_t group, int mode)
719{
720 int free = 0, retval = 0, count;
721 struct ext4_sb_info *sbi = EXT4_SB(sb);
722 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, group, NULL);
723
724 spin_lock(sb_bgl_lock(sbi, group));
725 if (ext4_set_bit(ino, inode_bitmap_bh->b_data)) {
726 /* not a free inode */
727 retval = 1;
728 goto err_ret;
729 }
730 ino++;
731 if ((group == 0 && ino < EXT4_FIRST_INO(sb)) ||
732 ino > EXT4_INODES_PER_GROUP(sb)) {
733 spin_unlock(sb_bgl_lock(sbi, group));
734 ext4_error(sb, __func__,
735 "reserved inode or inode > inodes count - "
736 "block_group = %u, inode=%lu", group,
737 ino + group * EXT4_INODES_PER_GROUP(sb));
738 return 1;
739 }
740 /* If we didn't allocate from within the initialized part of the inode
741 * table then we need to initialize up to this inode. */
742 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
743
744 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
745 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT);
746 /* When marking the block group with
747 * ~EXT4_BG_INODE_UNINIT we don't want to depend
748 * on the value of bg_itable_unused even though
749 * mke2fs could have initialized the same for us.
750 * Instead we calculated the value below
751 */
752
753 free = 0;
754 } else {
755 free = EXT4_INODES_PER_GROUP(sb) -
756 ext4_itable_unused_count(sb, gdp);
757 }
758
759 /*
760 * Check the relative inode number against the last used
761 * relative inode number in this group. if it is greater
762 * we need to update the bg_itable_unused count
763 *
764 */
765 if (ino > free)
766 ext4_itable_unused_set(sb, gdp,
767 (EXT4_INODES_PER_GROUP(sb) - ino));
768 }
769 count = ext4_free_inodes_count(sb, gdp) - 1;
770 ext4_free_inodes_set(sb, gdp, count);
771 if (S_ISDIR(mode)) {
772 count = ext4_used_dirs_count(sb, gdp) + 1;
773 ext4_used_dirs_set(sb, gdp, count);
7d39db14
TT
774 if (sbi->s_log_groups_per_flex) {
775 ext4_group_t f = ext4_flex_group(sbi, group);
776
777 atomic_inc(&sbi->s_flex_groups[f].free_inodes);
778 }
39341867
AK
779 }
780 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
781err_ret:
782 spin_unlock(sb_bgl_lock(sbi, group));
783 return retval;
784}
785
ac27a0ec
DK
786/*
787 * There are two policies for allocating an inode. If the new inode is
788 * a directory, then a forward search is made for a block group with both
789 * free space and a low directory-to-inode ratio; if that fails, then of
790 * the groups with above-average free space, that group with the fewest
791 * directories already is chosen.
792 *
793 * For other inodes, search forward from the parent directory's block
794 * group to find a free inode.
795 */
af5bc92d 796struct inode *ext4_new_inode(handle_t *handle, struct inode *dir, int mode)
ac27a0ec
DK
797{
798 struct super_block *sb;
3300beda
AK
799 struct buffer_head *inode_bitmap_bh = NULL;
800 struct buffer_head *group_desc_bh;
2aa9fc4c 801 ext4_group_t group = 0;
ac27a0ec 802 unsigned long ino = 0;
af5bc92d
TT
803 struct inode *inode;
804 struct ext4_group_desc *gdp = NULL;
805 struct ext4_super_block *es;
617ba13b
MC
806 struct ext4_inode_info *ei;
807 struct ext4_sb_info *sbi;
39341867 808 int ret2, err = 0;
ac27a0ec 809 struct inode *ret;
2aa9fc4c
AM
810 ext4_group_t i;
811 int free = 0;
2842c3b5 812 static int once = 1;
772cb7c8 813 ext4_group_t flex_group;
ac27a0ec
DK
814
815 /* Cannot create files in a deleted directory */
816 if (!dir || !dir->i_nlink)
817 return ERR_PTR(-EPERM);
818
819 sb = dir->i_sb;
ba80b101
TT
820 trace_mark(ext4_request_inode, "dev %s dir %lu mode %d", sb->s_id,
821 dir->i_ino, mode);
ac27a0ec
DK
822 inode = new_inode(sb);
823 if (!inode)
824 return ERR_PTR(-ENOMEM);
617ba13b 825 ei = EXT4_I(inode);
ac27a0ec 826
617ba13b 827 sbi = EXT4_SB(sb);
ac27a0ec 828 es = sbi->s_es;
772cb7c8 829
a4912123 830 if (sbi->s_log_groups_per_flex && test_opt(sb, OLDALLOC)) {
772cb7c8 831 ret2 = find_group_flex(sb, dir, &group);
05bf9e83 832 if (ret2 == -1) {
a4912123 833 ret2 = find_group_other(sb, dir, &group, mode);
6b82f3cb 834 if (ret2 == 0 && once) {
2842c3b5 835 once = 0;
05bf9e83
TT
836 printk(KERN_NOTICE "ext4: find_group_flex "
837 "failed, fallback succeeded dir %lu\n",
838 dir->i_ino);
6b82f3cb 839 }
05bf9e83 840 }
772cb7c8
JS
841 goto got_group;
842 }
843
ac27a0ec 844 if (S_ISDIR(mode)) {
af5bc92d 845 if (test_opt(sb, OLDALLOC))
2aa9fc4c 846 ret2 = find_group_dir(sb, dir, &group);
ac27a0ec 847 else
a4912123 848 ret2 = find_group_orlov(sb, dir, &group, mode);
ac27a0ec 849 } else
a4912123 850 ret2 = find_group_other(sb, dir, &group, mode);
ac27a0ec 851
772cb7c8 852got_group:
a4912123 853 EXT4_I(dir)->i_last_alloc_group = group;
ac27a0ec 854 err = -ENOSPC;
2aa9fc4c 855 if (ret2 == -1)
ac27a0ec
DK
856 goto out;
857
858 for (i = 0; i < sbi->s_groups_count; i++) {
859 err = -EIO;
860
3300beda 861 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
ac27a0ec
DK
862 if (!gdp)
863 goto fail;
864
3300beda
AK
865 brelse(inode_bitmap_bh);
866 inode_bitmap_bh = ext4_read_inode_bitmap(sb, group);
867 if (!inode_bitmap_bh)
ac27a0ec
DK
868 goto fail;
869
870 ino = 0;
871
872repeat_in_this_group:
617ba13b 873 ino = ext4_find_next_zero_bit((unsigned long *)
3300beda
AK
874 inode_bitmap_bh->b_data,
875 EXT4_INODES_PER_GROUP(sb), ino);
876
617ba13b 877 if (ino < EXT4_INODES_PER_GROUP(sb)) {
ac27a0ec 878
3300beda
AK
879 BUFFER_TRACE(inode_bitmap_bh, "get_write_access");
880 err = ext4_journal_get_write_access(handle,
881 inode_bitmap_bh);
ac27a0ec
DK
882 if (err)
883 goto fail;
884
39341867
AK
885 BUFFER_TRACE(group_desc_bh, "get_write_access");
886 err = ext4_journal_get_write_access(handle,
887 group_desc_bh);
888 if (err)
889 goto fail;
890 if (!ext4_claim_inode(sb, inode_bitmap_bh,
891 ino, group, mode)) {
ac27a0ec 892 /* we won it */
3300beda 893 BUFFER_TRACE(inode_bitmap_bh,
0390131b
FM
894 "call ext4_handle_dirty_metadata");
895 err = ext4_handle_dirty_metadata(handle,
3300beda
AK
896 inode,
897 inode_bitmap_bh);
ac27a0ec
DK
898 if (err)
899 goto fail;
39341867
AK
900 /* zero bit is inode number 1*/
901 ino++;
ac27a0ec
DK
902 goto got;
903 }
904 /* we lost it */
3300beda 905 ext4_handle_release_buffer(handle, inode_bitmap_bh);
39341867 906 ext4_handle_release_buffer(handle, group_desc_bh);
ac27a0ec 907
617ba13b 908 if (++ino < EXT4_INODES_PER_GROUP(sb))
ac27a0ec
DK
909 goto repeat_in_this_group;
910 }
911
912 /*
913 * This case is possible in concurrent environment. It is very
914 * rare. We cannot repeat the find_group_xxx() call because
915 * that will simply return the same blockgroup, because the
916 * group descriptor metadata has not yet been updated.
917 * So we just go onto the next blockgroup.
918 */
919 if (++group == sbi->s_groups_count)
920 group = 0;
921 }
922 err = -ENOSPC;
923 goto out;
924
925got:
717d50e4
AD
926 /* We may have to initialize the block bitmap if it isn't already */
927 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM) &&
928 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
3300beda 929 struct buffer_head *block_bitmap_bh;
717d50e4 930
3300beda
AK
931 block_bitmap_bh = ext4_read_block_bitmap(sb, group);
932 BUFFER_TRACE(block_bitmap_bh, "get block bitmap access");
933 err = ext4_journal_get_write_access(handle, block_bitmap_bh);
717d50e4 934 if (err) {
3300beda 935 brelse(block_bitmap_bh);
717d50e4
AD
936 goto fail;
937 }
938
939 free = 0;
940 spin_lock(sb_bgl_lock(sbi, group));
941 /* recheck and clear flag under lock if we still need to */
942 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
717d50e4 943 free = ext4_free_blocks_after_init(sb, group, gdp);
3300beda 944 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
560671a0 945 ext4_free_blks_set(sb, gdp, free);
23712a9c
FB
946 gdp->bg_checksum = ext4_group_desc_csum(sbi, group,
947 gdp);
717d50e4
AD
948 }
949 spin_unlock(sb_bgl_lock(sbi, group));
950
951 /* Don't need to dirty bitmap block if we didn't change it */
952 if (free) {
3300beda 953 BUFFER_TRACE(block_bitmap_bh, "dirty block bitmap");
0390131b 954 err = ext4_handle_dirty_metadata(handle,
3300beda 955 NULL, block_bitmap_bh);
717d50e4
AD
956 }
957
3300beda 958 brelse(block_bitmap_bh);
717d50e4
AD
959 if (err)
960 goto fail;
961 }
3300beda
AK
962 BUFFER_TRACE(group_desc_bh, "call ext4_handle_dirty_metadata");
963 err = ext4_handle_dirty_metadata(handle, NULL, group_desc_bh);
39341867
AK
964 if (err)
965 goto fail;
ac27a0ec
DK
966
967 percpu_counter_dec(&sbi->s_freeinodes_counter);
968 if (S_ISDIR(mode))
969 percpu_counter_inc(&sbi->s_dirs_counter);
970 sb->s_dirt = 1;
971
772cb7c8
JS
972 if (sbi->s_log_groups_per_flex) {
973 flex_group = ext4_flex_group(sbi, group);
9f24e420 974 atomic_dec(&sbi->s_flex_groups[flex_group].free_inodes);
772cb7c8
JS
975 }
976
4c9c544e 977 inode->i_uid = current_fsuid();
af5bc92d 978 if (test_opt(sb, GRPID))
ac27a0ec
DK
979 inode->i_gid = dir->i_gid;
980 else if (dir->i_mode & S_ISGID) {
981 inode->i_gid = dir->i_gid;
982 if (S_ISDIR(mode))
983 mode |= S_ISGID;
984 } else
4c9c544e 985 inode->i_gid = current_fsgid();
ac27a0ec
DK
986 inode->i_mode = mode;
987
717d50e4 988 inode->i_ino = ino + group * EXT4_INODES_PER_GROUP(sb);
ac27a0ec
DK
989 /* This is the optimal IO size (for stat), not the fs block size */
990 inode->i_blocks = 0;
ef7f3835
KS
991 inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
992 ext4_current_time(inode);
ac27a0ec
DK
993
994 memset(ei->i_data, 0, sizeof(ei->i_data));
995 ei->i_dir_start_lookup = 0;
996 ei->i_disksize = 0;
997
42bf0383 998 /*
2dc6b0d4
DG
999 * Don't inherit extent flag from directory, amongst others. We set
1000 * extent flag on newly created directory and file only if -o extent
1001 * mount option is specified
42bf0383 1002 */
2dc6b0d4
DG
1003 ei->i_flags =
1004 ext4_mask_flags(mode, EXT4_I(dir)->i_flags & EXT4_FL_INHERITED);
ac27a0ec 1005 ei->i_file_acl = 0;
ac27a0ec 1006 ei->i_dtime = 0;
ac27a0ec 1007 ei->i_block_group = group;
a4912123 1008 ei->i_last_alloc_group = ~0;
ac27a0ec 1009
617ba13b 1010 ext4_set_inode_flags(inode);
ac27a0ec 1011 if (IS_DIRSYNC(inode))
0390131b 1012 ext4_handle_sync(handle);
6b38e842
AV
1013 if (insert_inode_locked(inode) < 0) {
1014 err = -EINVAL;
1015 goto fail_drop;
1016 }
ac27a0ec
DK
1017 spin_lock(&sbi->s_next_gen_lock);
1018 inode->i_generation = sbi->s_next_generation++;
1019 spin_unlock(&sbi->s_next_gen_lock);
1020
617ba13b 1021 ei->i_state = EXT4_STATE_NEW;
ef7f3835
KS
1022
1023 ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;
ac27a0ec
DK
1024
1025 ret = inode;
a269eb18 1026 if (vfs_dq_alloc_inode(inode)) {
ac27a0ec
DK
1027 err = -EDQUOT;
1028 goto fail_drop;
1029 }
1030
617ba13b 1031 err = ext4_init_acl(handle, inode, dir);
ac27a0ec
DK
1032 if (err)
1033 goto fail_free_drop;
1034
af5bc92d 1035 err = ext4_init_security(handle, inode, dir);
ac27a0ec
DK
1036 if (err)
1037 goto fail_free_drop;
1038
83982b6f 1039 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
e4079a11 1040 /* set extent flag only for directory, file and normal symlink*/
e65187e6 1041 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) {
42bf0383
AK
1042 EXT4_I(inode)->i_flags |= EXT4_EXTENTS_FL;
1043 ext4_ext_tree_init(handle, inode);
42bf0383 1044 }
a86c6181 1045 }
ac27a0ec 1046
8753e88f
AK
1047 err = ext4_mark_inode_dirty(handle, inode);
1048 if (err) {
1049 ext4_std_error(sb, err);
1050 goto fail_free_drop;
1051 }
1052
617ba13b 1053 ext4_debug("allocating inode %lu\n", inode->i_ino);
ba80b101
TT
1054 trace_mark(ext4_allocate_inode, "dev %s ino %lu dir %lu mode %d",
1055 sb->s_id, inode->i_ino, dir->i_ino, mode);
ac27a0ec
DK
1056 goto really_out;
1057fail:
617ba13b 1058 ext4_std_error(sb, err);
ac27a0ec
DK
1059out:
1060 iput(inode);
1061 ret = ERR_PTR(err);
1062really_out:
3300beda 1063 brelse(inode_bitmap_bh);
ac27a0ec
DK
1064 return ret;
1065
1066fail_free_drop:
a269eb18 1067 vfs_dq_free_inode(inode);
ac27a0ec
DK
1068
1069fail_drop:
a269eb18 1070 vfs_dq_drop(inode);
ac27a0ec
DK
1071 inode->i_flags |= S_NOQUOTA;
1072 inode->i_nlink = 0;
6b38e842 1073 unlock_new_inode(inode);
ac27a0ec 1074 iput(inode);
3300beda 1075 brelse(inode_bitmap_bh);
ac27a0ec
DK
1076 return ERR_PTR(err);
1077}
1078
1079/* Verify that we are loading a valid orphan from disk */
617ba13b 1080struct inode *ext4_orphan_get(struct super_block *sb, unsigned long ino)
ac27a0ec 1081{
617ba13b 1082 unsigned long max_ino = le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count);
fd2d4291 1083 ext4_group_t block_group;
ac27a0ec 1084 int bit;
1d1fe1ee 1085 struct buffer_head *bitmap_bh;
ac27a0ec 1086 struct inode *inode = NULL;
1d1fe1ee 1087 long err = -EIO;
ac27a0ec
DK
1088
1089 /* Error cases - e2fsck has already cleaned up for us */
1090 if (ino > max_ino) {
46e665e9 1091 ext4_warning(sb, __func__,
ac27a0ec 1092 "bad orphan ino %lu! e2fsck was run?", ino);
1d1fe1ee 1093 goto error;
ac27a0ec
DK
1094 }
1095
617ba13b
MC
1096 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
1097 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
e29d1cde 1098 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
ac27a0ec 1099 if (!bitmap_bh) {
46e665e9 1100 ext4_warning(sb, __func__,
ac27a0ec 1101 "inode bitmap error for orphan %lu", ino);
1d1fe1ee 1102 goto error;
ac27a0ec
DK
1103 }
1104
1105 /* Having the inode bit set should be a 100% indicator that this
1106 * is a valid orphan (no e2fsck run on fs). Orphans also include
1107 * inodes that were being truncated, so we can't check i_nlink==0.
1108 */
1d1fe1ee
DH
1109 if (!ext4_test_bit(bit, bitmap_bh->b_data))
1110 goto bad_orphan;
1111
1112 inode = ext4_iget(sb, ino);
1113 if (IS_ERR(inode))
1114 goto iget_failed;
1115
91ef4caf
DG
1116 /*
1117 * If the orphans has i_nlinks > 0 then it should be able to be
1118 * truncated, otherwise it won't be removed from the orphan list
1119 * during processing and an infinite loop will result.
1120 */
1121 if (inode->i_nlink && !ext4_can_truncate(inode))
1122 goto bad_orphan;
1123
1d1fe1ee
DH
1124 if (NEXT_ORPHAN(inode) > max_ino)
1125 goto bad_orphan;
1126 brelse(bitmap_bh);
1127 return inode;
1128
1129iget_failed:
1130 err = PTR_ERR(inode);
1131 inode = NULL;
1132bad_orphan:
46e665e9 1133 ext4_warning(sb, __func__,
1d1fe1ee
DH
1134 "bad orphan inode %lu! e2fsck was run?", ino);
1135 printk(KERN_NOTICE "ext4_test_bit(bit=%d, block=%llu) = %d\n",
1136 bit, (unsigned long long)bitmap_bh->b_blocknr,
1137 ext4_test_bit(bit, bitmap_bh->b_data));
1138 printk(KERN_NOTICE "inode=%p\n", inode);
1139 if (inode) {
1140 printk(KERN_NOTICE "is_bad_inode(inode)=%d\n",
1141 is_bad_inode(inode));
1142 printk(KERN_NOTICE "NEXT_ORPHAN(inode)=%u\n",
1143 NEXT_ORPHAN(inode));
1144 printk(KERN_NOTICE "max_ino=%lu\n", max_ino);
91ef4caf 1145 printk(KERN_NOTICE "i_nlink=%u\n", inode->i_nlink);
ac27a0ec 1146 /* Avoid freeing blocks if we got a bad deleted inode */
1d1fe1ee 1147 if (inode->i_nlink == 0)
ac27a0ec
DK
1148 inode->i_blocks = 0;
1149 iput(inode);
ac27a0ec 1150 }
ac27a0ec 1151 brelse(bitmap_bh);
1d1fe1ee
DH
1152error:
1153 return ERR_PTR(err);
ac27a0ec
DK
1154}
1155
af5bc92d 1156unsigned long ext4_count_free_inodes(struct super_block *sb)
ac27a0ec
DK
1157{
1158 unsigned long desc_count;
617ba13b 1159 struct ext4_group_desc *gdp;
fd2d4291 1160 ext4_group_t i;
617ba13b
MC
1161#ifdef EXT4FS_DEBUG
1162 struct ext4_super_block *es;
ac27a0ec
DK
1163 unsigned long bitmap_count, x;
1164 struct buffer_head *bitmap_bh = NULL;
1165
617ba13b 1166 es = EXT4_SB(sb)->s_es;
ac27a0ec
DK
1167 desc_count = 0;
1168 bitmap_count = 0;
1169 gdp = NULL;
617ba13b 1170 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
af5bc92d 1171 gdp = ext4_get_group_desc(sb, i, NULL);
ac27a0ec
DK
1172 if (!gdp)
1173 continue;
560671a0 1174 desc_count += ext4_free_inodes_count(sb, gdp);
ac27a0ec 1175 brelse(bitmap_bh);
e29d1cde 1176 bitmap_bh = ext4_read_inode_bitmap(sb, i);
ac27a0ec
DK
1177 if (!bitmap_bh)
1178 continue;
1179
617ba13b 1180 x = ext4_count_free(bitmap_bh, EXT4_INODES_PER_GROUP(sb) / 8);
c549a95d 1181 printk(KERN_DEBUG "group %lu: stored = %d, counted = %lu\n",
560671a0 1182 i, ext4_free_inodes_count(sb, gdp), x);
ac27a0ec
DK
1183 bitmap_count += x;
1184 }
1185 brelse(bitmap_bh);
4776004f
TT
1186 printk(KERN_DEBUG "ext4_count_free_inodes: "
1187 "stored = %u, computed = %lu, %lu\n",
1188 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
ac27a0ec
DK
1189 return desc_count;
1190#else
1191 desc_count = 0;
617ba13b 1192 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
af5bc92d 1193 gdp = ext4_get_group_desc(sb, i, NULL);
ac27a0ec
DK
1194 if (!gdp)
1195 continue;
560671a0 1196 desc_count += ext4_free_inodes_count(sb, gdp);
ac27a0ec
DK
1197 cond_resched();
1198 }
1199 return desc_count;
1200#endif
1201}
1202
1203/* Called at mount-time, super-block is locked */
af5bc92d 1204unsigned long ext4_count_dirs(struct super_block * sb)
ac27a0ec
DK
1205{
1206 unsigned long count = 0;
fd2d4291 1207 ext4_group_t i;
ac27a0ec 1208
617ba13b 1209 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
af5bc92d 1210 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
ac27a0ec
DK
1211 if (!gdp)
1212 continue;
560671a0 1213 count += ext4_used_dirs_count(sb, gdp);
ac27a0ec
DK
1214 }
1215 return count;
1216}
This page took 0.303049 seconds and 5 git commands to generate.