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