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