]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/ext4/ialloc.c
ext4: Fix long long checkpatch warnings
[net-next-2.6.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)) {
46e665e9 77 ext4_error(sb, __func__, "Checksum bad for group %lu\n",
717d50e4
AD
78 block_group);
79 gdp->bg_free_blocks_count = 0;
80 gdp->bg_free_inodes_count = 0;
81 gdp->bg_itable_unused = 0;
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);
87 mark_bitmap_end(EXT4_INODES_PER_GROUP(sb), EXT4_BLOCKS_PER_GROUP(sb),
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 - "
114 "block_group = %lu, inode_bitmap = %llu",
115 block_group, bitmap_blk);
116 return NULL;
117 }
118 if (bh_uptodate_or_lock(bh))
119 return bh;
120
b5f10eed 121 spin_lock(sb_bgl_lock(EXT4_SB(sb), block_group));
717d50e4 122 if (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
e29d1cde
ES
123 ext4_init_inode_bitmap(sb, bh, block_group, desc);
124 set_buffer_uptodate(bh);
125 unlock_buffer(bh);
b5f10eed 126 spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group));
e29d1cde 127 return bh;
717d50e4 128 }
b5f10eed 129 spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group));
e29d1cde
ES
130 if (bh_submit_read(bh) < 0) {
131 put_bh(bh);
132 ext4_error(sb, __func__,
ac27a0ec 133 "Cannot read inode bitmap - "
bd81d8ee 134 "block_group = %lu, inode_bitmap = %llu",
e29d1cde
ES
135 block_group, bitmap_blk);
136 return NULL;
137 }
ac27a0ec
DK
138 return bh;
139}
140
141/*
142 * NOTE! When we get the inode, we're the only people
143 * that have access to it, and as such there are no
144 * race conditions we have to worry about. The inode
145 * is not on the hash-lists, and it cannot be reached
146 * through the filesystem because the directory entry
147 * has been deleted earlier.
148 *
149 * HOWEVER: we must make sure that we get no aliases,
150 * which means that we have to call "clear_inode()"
151 * _before_ we mark the inode not in use in the inode
152 * bitmaps. Otherwise a newly created file might use
153 * the same inode number (not actually the same pointer
154 * though), and then we'd have two inodes sharing the
155 * same inode number and space on the harddisk.
156 */
617ba13b 157void ext4_free_inode (handle_t *handle, struct inode * inode)
ac27a0ec
DK
158{
159 struct super_block * sb = inode->i_sb;
160 int is_directory;
161 unsigned long ino;
162 struct buffer_head *bitmap_bh = NULL;
163 struct buffer_head *bh2;
fd2d4291 164 ext4_group_t block_group;
ac27a0ec 165 unsigned long bit;
617ba13b
MC
166 struct ext4_group_desc * gdp;
167 struct ext4_super_block * es;
168 struct ext4_sb_info *sbi;
ac27a0ec 169 int fatal = 0, err;
772cb7c8 170 ext4_group_t flex_group;
ac27a0ec
DK
171
172 if (atomic_read(&inode->i_count) > 1) {
4776004f
TT
173 printk(KERN_ERR "ext4_free_inode: inode has count=%d\n",
174 atomic_read(&inode->i_count));
ac27a0ec
DK
175 return;
176 }
177 if (inode->i_nlink) {
4776004f
TT
178 printk(KERN_ERR "ext4_free_inode: inode has nlink=%d\n",
179 inode->i_nlink);
ac27a0ec
DK
180 return;
181 }
182 if (!sb) {
4776004f
TT
183 printk(KERN_ERR "ext4_free_inode: inode on "
184 "nonexistent device\n");
ac27a0ec
DK
185 return;
186 }
617ba13b 187 sbi = EXT4_SB(sb);
ac27a0ec
DK
188
189 ino = inode->i_ino;
617ba13b 190 ext4_debug ("freeing inode %lu\n", ino);
ac27a0ec
DK
191
192 /*
193 * Note: we must free any quota before locking the superblock,
194 * as writing the quota to disk may need the lock as well.
195 */
196 DQUOT_INIT(inode);
617ba13b 197 ext4_xattr_delete_inode(handle, inode);
ac27a0ec
DK
198 DQUOT_FREE_INODE(inode);
199 DQUOT_DROP(inode);
200
201 is_directory = S_ISDIR(inode->i_mode);
202
203 /* Do this BEFORE marking the inode not in use or returning an error */
204 clear_inode (inode);
205
617ba13b
MC
206 es = EXT4_SB(sb)->s_es;
207 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
208 ext4_error (sb, "ext4_free_inode",
ac27a0ec
DK
209 "reserved or nonexistent inode %lu", ino);
210 goto error_return;
211 }
617ba13b
MC
212 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
213 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
e29d1cde 214 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
ac27a0ec
DK
215 if (!bitmap_bh)
216 goto error_return;
217
218 BUFFER_TRACE(bitmap_bh, "get_write_access");
617ba13b 219 fatal = ext4_journal_get_write_access(handle, bitmap_bh);
ac27a0ec
DK
220 if (fatal)
221 goto error_return;
222
223 /* Ok, now we can actually update the inode bitmaps.. */
617ba13b 224 if (!ext4_clear_bit_atomic(sb_bgl_lock(sbi, block_group),
ac27a0ec 225 bit, bitmap_bh->b_data))
617ba13b 226 ext4_error (sb, "ext4_free_inode",
ac27a0ec
DK
227 "bit already cleared for inode %lu", ino);
228 else {
617ba13b 229 gdp = ext4_get_group_desc (sb, block_group, &bh2);
ac27a0ec
DK
230
231 BUFFER_TRACE(bh2, "get_write_access");
617ba13b 232 fatal = ext4_journal_get_write_access(handle, bh2);
ac27a0ec
DK
233 if (fatal) goto error_return;
234
235 if (gdp) {
236 spin_lock(sb_bgl_lock(sbi, block_group));
e8546d06 237 le16_add_cpu(&gdp->bg_free_inodes_count, 1);
ac27a0ec 238 if (is_directory)
e8546d06 239 le16_add_cpu(&gdp->bg_used_dirs_count, -1);
717d50e4
AD
240 gdp->bg_checksum = ext4_group_desc_csum(sbi,
241 block_group, gdp);
ac27a0ec
DK
242 spin_unlock(sb_bgl_lock(sbi, block_group));
243 percpu_counter_inc(&sbi->s_freeinodes_counter);
244 if (is_directory)
245 percpu_counter_dec(&sbi->s_dirs_counter);
246
772cb7c8
JS
247 if (sbi->s_log_groups_per_flex) {
248 flex_group = ext4_flex_group(sbi, block_group);
249 spin_lock(sb_bgl_lock(sbi, flex_group));
250 sbi->s_flex_groups[flex_group].free_inodes++;
251 spin_unlock(sb_bgl_lock(sbi, flex_group));
252 }
ac27a0ec 253 }
617ba13b
MC
254 BUFFER_TRACE(bh2, "call ext4_journal_dirty_metadata");
255 err = ext4_journal_dirty_metadata(handle, bh2);
ac27a0ec
DK
256 if (!fatal) fatal = err;
257 }
617ba13b
MC
258 BUFFER_TRACE(bitmap_bh, "call ext4_journal_dirty_metadata");
259 err = ext4_journal_dirty_metadata(handle, bitmap_bh);
ac27a0ec
DK
260 if (!fatal)
261 fatal = err;
262 sb->s_dirt = 1;
263error_return:
264 brelse(bitmap_bh);
617ba13b 265 ext4_std_error(sb, fatal);
ac27a0ec
DK
266}
267
268/*
269 * There are two policies for allocating an inode. If the new inode is
270 * a directory, then a forward search is made for a block group with both
271 * free space and a low directory-to-inode ratio; if that fails, then of
272 * the groups with above-average free space, that group with the fewest
273 * directories already is chosen.
274 *
275 * For other inodes, search forward from the parent directory\'s block
276 * group to find a free inode.
277 */
2aa9fc4c
AM
278static int find_group_dir(struct super_block *sb, struct inode *parent,
279 ext4_group_t *best_group)
ac27a0ec 280{
fd2d4291 281 ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
ac27a0ec 282 unsigned int freei, avefreei;
617ba13b 283 struct ext4_group_desc *desc, *best_desc = NULL;
2aa9fc4c
AM
284 ext4_group_t group;
285 int ret = -1;
ac27a0ec 286
617ba13b 287 freei = percpu_counter_read_positive(&EXT4_SB(sb)->s_freeinodes_counter);
ac27a0ec
DK
288 avefreei = freei / ngroups;
289
290 for (group = 0; group < ngroups; group++) {
ef2fb679 291 desc = ext4_get_group_desc (sb, group, NULL);
ac27a0ec
DK
292 if (!desc || !desc->bg_free_inodes_count)
293 continue;
294 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
295 continue;
296 if (!best_desc ||
297 (le16_to_cpu(desc->bg_free_blocks_count) >
298 le16_to_cpu(best_desc->bg_free_blocks_count))) {
2aa9fc4c 299 *best_group = group;
ac27a0ec 300 best_desc = desc;
2aa9fc4c 301 ret = 0;
ac27a0ec
DK
302 }
303 }
2aa9fc4c 304 return ret;
ac27a0ec
DK
305}
306
772cb7c8
JS
307#define free_block_ratio 10
308
309static int find_group_flex(struct super_block *sb, struct inode *parent,
310 ext4_group_t *best_group)
311{
312 struct ext4_sb_info *sbi = EXT4_SB(sb);
313 struct ext4_group_desc *desc;
314 struct buffer_head *bh;
315 struct flex_groups *flex_group = sbi->s_flex_groups;
316 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
317 ext4_group_t parent_fbg_group = ext4_flex_group(sbi, parent_group);
318 ext4_group_t ngroups = sbi->s_groups_count;
319 int flex_size = ext4_flex_bg_size(sbi);
320 ext4_group_t best_flex = parent_fbg_group;
321 int blocks_per_flex = sbi->s_blocks_per_group * flex_size;
322 int flexbg_free_blocks;
323 int flex_freeb_ratio;
324 ext4_group_t n_fbg_groups;
325 ext4_group_t i;
326
327 n_fbg_groups = (sbi->s_groups_count + flex_size - 1) >>
328 sbi->s_log_groups_per_flex;
329
330find_close_to_parent:
331 flexbg_free_blocks = flex_group[best_flex].free_blocks;
332 flex_freeb_ratio = flexbg_free_blocks * 100 / blocks_per_flex;
333 if (flex_group[best_flex].free_inodes &&
334 flex_freeb_ratio > free_block_ratio)
335 goto found_flexbg;
336
337 if (best_flex && best_flex == parent_fbg_group) {
338 best_flex--;
339 goto find_close_to_parent;
340 }
341
342 for (i = 0; i < n_fbg_groups; i++) {
343 if (i == parent_fbg_group || i == parent_fbg_group - 1)
344 continue;
345
346 flexbg_free_blocks = flex_group[i].free_blocks;
347 flex_freeb_ratio = flexbg_free_blocks * 100 / blocks_per_flex;
348
349 if (flex_freeb_ratio > free_block_ratio &&
350 flex_group[i].free_inodes) {
351 best_flex = i;
352 goto found_flexbg;
353 }
354
c001077f 355 if (flex_group[best_flex].free_inodes == 0 ||
772cb7c8
JS
356 (flex_group[i].free_blocks >
357 flex_group[best_flex].free_blocks &&
358 flex_group[i].free_inodes))
359 best_flex = i;
360 }
361
362 if (!flex_group[best_flex].free_inodes ||
363 !flex_group[best_flex].free_blocks)
364 return -1;
365
366found_flexbg:
367 for (i = best_flex * flex_size; i < ngroups &&
368 i < (best_flex + 1) * flex_size; i++) {
369 desc = ext4_get_group_desc(sb, i, &bh);
370 if (le16_to_cpu(desc->bg_free_inodes_count)) {
371 *best_group = i;
372 goto out;
373 }
374 }
375
376 return -1;
377out:
378 return 0;
379}
380
ac27a0ec
DK
381/*
382 * Orlov's allocator for directories.
383 *
384 * We always try to spread first-level directories.
385 *
386 * If there are blockgroups with both free inodes and free blocks counts
387 * not worse than average we return one with smallest directory count.
388 * Otherwise we simply return a random group.
389 *
390 * For the rest rules look so:
391 *
392 * It's OK to put directory into a group unless
393 * it has too many directories already (max_dirs) or
394 * it has too few free inodes left (min_inodes) or
395 * it has too few free blocks left (min_blocks) or
396 * it's already running too large debt (max_debt).
1cc8dcf5 397 * Parent's group is preferred, if it doesn't satisfy these
ac27a0ec
DK
398 * conditions we search cyclically through the rest. If none
399 * of the groups look good we just look for a group with more
400 * free inodes than average (starting at parent's group).
401 *
402 * Debt is incremented each time we allocate a directory and decremented
403 * when we allocate an inode, within 0--255.
404 */
405
406#define INODE_COST 64
407#define BLOCK_COST 256
408
2aa9fc4c
AM
409static int find_group_orlov(struct super_block *sb, struct inode *parent,
410 ext4_group_t *group)
ac27a0ec 411{
fd2d4291 412 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
617ba13b
MC
413 struct ext4_sb_info *sbi = EXT4_SB(sb);
414 struct ext4_super_block *es = sbi->s_es;
fd2d4291 415 ext4_group_t ngroups = sbi->s_groups_count;
617ba13b 416 int inodes_per_group = EXT4_INODES_PER_GROUP(sb);
ac27a0ec 417 unsigned int freei, avefreei;
617ba13b
MC
418 ext4_fsblk_t freeb, avefreeb;
419 ext4_fsblk_t blocks_per_dir;
ac27a0ec
DK
420 unsigned int ndirs;
421 int max_debt, max_dirs, min_inodes;
617ba13b 422 ext4_grpblk_t min_blocks;
2aa9fc4c 423 ext4_group_t i;
617ba13b 424 struct ext4_group_desc *desc;
ac27a0ec
DK
425
426 freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
427 avefreei = freei / ngroups;
428 freeb = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
3a5b2ecd 429 avefreeb = freeb;
f4e5bc24 430 do_div(avefreeb, ngroups);
ac27a0ec
DK
431 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
432
433 if ((parent == sb->s_root->d_inode) ||
617ba13b 434 (EXT4_I(parent)->i_flags & EXT4_TOPDIR_FL)) {
ac27a0ec 435 int best_ndir = inodes_per_group;
2aa9fc4c
AM
436 ext4_group_t grp;
437 int ret = -1;
ac27a0ec 438
2aa9fc4c
AM
439 get_random_bytes(&grp, sizeof(grp));
440 parent_group = (unsigned)grp % ngroups;
ac27a0ec 441 for (i = 0; i < ngroups; i++) {
2aa9fc4c
AM
442 grp = (parent_group + i) % ngroups;
443 desc = ext4_get_group_desc(sb, grp, NULL);
ac27a0ec
DK
444 if (!desc || !desc->bg_free_inodes_count)
445 continue;
446 if (le16_to_cpu(desc->bg_used_dirs_count) >= best_ndir)
447 continue;
448 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
449 continue;
450 if (le16_to_cpu(desc->bg_free_blocks_count) < avefreeb)
451 continue;
2aa9fc4c
AM
452 *group = grp;
453 ret = 0;
ac27a0ec
DK
454 best_ndir = le16_to_cpu(desc->bg_used_dirs_count);
455 }
2aa9fc4c
AM
456 if (ret == 0)
457 return ret;
ac27a0ec
DK
458 goto fallback;
459 }
460
bd81d8ee 461 blocks_per_dir = ext4_blocks_count(es) - freeb;
f4e5bc24 462 do_div(blocks_per_dir, ndirs);
ac27a0ec
DK
463
464 max_dirs = ndirs / ngroups + inodes_per_group / 16;
465 min_inodes = avefreei - inodes_per_group / 4;
617ba13b 466 min_blocks = avefreeb - EXT4_BLOCKS_PER_GROUP(sb) / 4;
ac27a0ec 467
3a5b2ecd 468 max_debt = EXT4_BLOCKS_PER_GROUP(sb);
f4e5bc24 469 max_debt /= max_t(int, blocks_per_dir, BLOCK_COST);
ac27a0ec
DK
470 if (max_debt * INODE_COST > inodes_per_group)
471 max_debt = inodes_per_group / INODE_COST;
472 if (max_debt > 255)
473 max_debt = 255;
474 if (max_debt == 0)
475 max_debt = 1;
476
477 for (i = 0; i < ngroups; i++) {
2aa9fc4c
AM
478 *group = (parent_group + i) % ngroups;
479 desc = ext4_get_group_desc(sb, *group, NULL);
ac27a0ec
DK
480 if (!desc || !desc->bg_free_inodes_count)
481 continue;
482 if (le16_to_cpu(desc->bg_used_dirs_count) >= max_dirs)
483 continue;
484 if (le16_to_cpu(desc->bg_free_inodes_count) < min_inodes)
485 continue;
486 if (le16_to_cpu(desc->bg_free_blocks_count) < min_blocks)
487 continue;
2aa9fc4c 488 return 0;
ac27a0ec
DK
489 }
490
491fallback:
492 for (i = 0; i < ngroups; i++) {
2aa9fc4c
AM
493 *group = (parent_group + i) % ngroups;
494 desc = ext4_get_group_desc(sb, *group, NULL);
495 if (desc && desc->bg_free_inodes_count &&
496 le16_to_cpu(desc->bg_free_inodes_count) >= avefreei)
497 return 0;
ac27a0ec
DK
498 }
499
500 if (avefreei) {
501 /*
502 * The free-inodes counter is approximate, and for really small
503 * filesystems the above test can fail to find any blockgroups
504 */
505 avefreei = 0;
506 goto fallback;
507 }
508
509 return -1;
510}
511
2aa9fc4c
AM
512static int find_group_other(struct super_block *sb, struct inode *parent,
513 ext4_group_t *group)
ac27a0ec 514{
fd2d4291
AM
515 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
516 ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
617ba13b 517 struct ext4_group_desc *desc;
2aa9fc4c 518 ext4_group_t i;
ac27a0ec
DK
519
520 /*
521 * Try to place the inode in its parent directory
522 */
2aa9fc4c
AM
523 *group = parent_group;
524 desc = ext4_get_group_desc(sb, *group, NULL);
ac27a0ec
DK
525 if (desc && le16_to_cpu(desc->bg_free_inodes_count) &&
526 le16_to_cpu(desc->bg_free_blocks_count))
2aa9fc4c 527 return 0;
ac27a0ec
DK
528
529 /*
530 * We're going to place this inode in a different blockgroup from its
531 * parent. We want to cause files in a common directory to all land in
532 * the same blockgroup. But we want files which are in a different
533 * directory which shares a blockgroup with our parent to land in a
534 * different blockgroup.
535 *
536 * So add our directory's i_ino into the starting point for the hash.
537 */
2aa9fc4c 538 *group = (*group + parent->i_ino) % ngroups;
ac27a0ec
DK
539
540 /*
541 * Use a quadratic hash to find a group with a free inode and some free
542 * blocks.
543 */
544 for (i = 1; i < ngroups; i <<= 1) {
2aa9fc4c
AM
545 *group += i;
546 if (*group >= ngroups)
547 *group -= ngroups;
548 desc = ext4_get_group_desc(sb, *group, NULL);
ac27a0ec
DK
549 if (desc && le16_to_cpu(desc->bg_free_inodes_count) &&
550 le16_to_cpu(desc->bg_free_blocks_count))
2aa9fc4c 551 return 0;
ac27a0ec
DK
552 }
553
554 /*
555 * That failed: try linear search for a free inode, even if that group
556 * has no free blocks.
557 */
2aa9fc4c 558 *group = parent_group;
ac27a0ec 559 for (i = 0; i < ngroups; i++) {
2aa9fc4c
AM
560 if (++*group >= ngroups)
561 *group = 0;
562 desc = ext4_get_group_desc(sb, *group, NULL);
ac27a0ec 563 if (desc && le16_to_cpu(desc->bg_free_inodes_count))
2aa9fc4c 564 return 0;
ac27a0ec
DK
565 }
566
567 return -1;
568}
569
570/*
571 * There are two policies for allocating an inode. If the new inode is
572 * a directory, then a forward search is made for a block group with both
573 * free space and a low directory-to-inode ratio; if that fails, then of
574 * the groups with above-average free space, that group with the fewest
575 * directories already is chosen.
576 *
577 * For other inodes, search forward from the parent directory's block
578 * group to find a free inode.
579 */
617ba13b 580struct inode *ext4_new_inode(handle_t *handle, struct inode * dir, int mode)
ac27a0ec
DK
581{
582 struct super_block *sb;
583 struct buffer_head *bitmap_bh = NULL;
584 struct buffer_head *bh2;
2aa9fc4c 585 ext4_group_t group = 0;
ac27a0ec
DK
586 unsigned long ino = 0;
587 struct inode * inode;
617ba13b
MC
588 struct ext4_group_desc * gdp = NULL;
589 struct ext4_super_block * es;
590 struct ext4_inode_info *ei;
591 struct ext4_sb_info *sbi;
2aa9fc4c 592 int ret2, err = 0;
ac27a0ec 593 struct inode *ret;
2aa9fc4c
AM
594 ext4_group_t i;
595 int free = 0;
772cb7c8 596 ext4_group_t flex_group;
ac27a0ec
DK
597
598 /* Cannot create files in a deleted directory */
599 if (!dir || !dir->i_nlink)
600 return ERR_PTR(-EPERM);
601
602 sb = dir->i_sb;
603 inode = new_inode(sb);
604 if (!inode)
605 return ERR_PTR(-ENOMEM);
617ba13b 606 ei = EXT4_I(inode);
ac27a0ec 607
617ba13b 608 sbi = EXT4_SB(sb);
ac27a0ec 609 es = sbi->s_es;
772cb7c8
JS
610
611 if (sbi->s_log_groups_per_flex) {
612 ret2 = find_group_flex(sb, dir, &group);
613 goto got_group;
614 }
615
ac27a0ec
DK
616 if (S_ISDIR(mode)) {
617 if (test_opt (sb, OLDALLOC))
2aa9fc4c 618 ret2 = find_group_dir(sb, dir, &group);
ac27a0ec 619 else
2aa9fc4c 620 ret2 = find_group_orlov(sb, dir, &group);
ac27a0ec 621 } else
2aa9fc4c 622 ret2 = find_group_other(sb, dir, &group);
ac27a0ec 623
772cb7c8 624got_group:
ac27a0ec 625 err = -ENOSPC;
2aa9fc4c 626 if (ret2 == -1)
ac27a0ec
DK
627 goto out;
628
629 for (i = 0; i < sbi->s_groups_count; i++) {
630 err = -EIO;
631
617ba13b 632 gdp = ext4_get_group_desc(sb, group, &bh2);
ac27a0ec
DK
633 if (!gdp)
634 goto fail;
635
636 brelse(bitmap_bh);
e29d1cde 637 bitmap_bh = ext4_read_inode_bitmap(sb, group);
ac27a0ec
DK
638 if (!bitmap_bh)
639 goto fail;
640
641 ino = 0;
642
643repeat_in_this_group:
617ba13b
MC
644 ino = ext4_find_next_zero_bit((unsigned long *)
645 bitmap_bh->b_data, EXT4_INODES_PER_GROUP(sb), ino);
646 if (ino < EXT4_INODES_PER_GROUP(sb)) {
ac27a0ec
DK
647
648 BUFFER_TRACE(bitmap_bh, "get_write_access");
617ba13b 649 err = ext4_journal_get_write_access(handle, bitmap_bh);
ac27a0ec
DK
650 if (err)
651 goto fail;
652
617ba13b 653 if (!ext4_set_bit_atomic(sb_bgl_lock(sbi, group),
ac27a0ec
DK
654 ino, bitmap_bh->b_data)) {
655 /* we won it */
656 BUFFER_TRACE(bitmap_bh,
617ba13b
MC
657 "call ext4_journal_dirty_metadata");
658 err = ext4_journal_dirty_metadata(handle,
ac27a0ec
DK
659 bitmap_bh);
660 if (err)
661 goto fail;
662 goto got;
663 }
664 /* we lost it */
dab291af 665 jbd2_journal_release_buffer(handle, bitmap_bh);
ac27a0ec 666
617ba13b 667 if (++ino < EXT4_INODES_PER_GROUP(sb))
ac27a0ec
DK
668 goto repeat_in_this_group;
669 }
670
671 /*
672 * This case is possible in concurrent environment. It is very
673 * rare. We cannot repeat the find_group_xxx() call because
674 * that will simply return the same blockgroup, because the
675 * group descriptor metadata has not yet been updated.
676 * So we just go onto the next blockgroup.
677 */
678 if (++group == sbi->s_groups_count)
679 group = 0;
680 }
681 err = -ENOSPC;
682 goto out;
683
684got:
717d50e4
AD
685 ino++;
686 if ((group == 0 && ino < EXT4_FIRST_INO(sb)) ||
687 ino > EXT4_INODES_PER_GROUP(sb)) {
46e665e9 688 ext4_error(sb, __func__,
717d50e4 689 "reserved inode or inode > inodes count - "
fd2d4291 690 "block_group = %lu, inode=%lu", group,
717d50e4 691 ino + group * EXT4_INODES_PER_GROUP(sb));
ac27a0ec
DK
692 err = -EIO;
693 goto fail;
694 }
695
696 BUFFER_TRACE(bh2, "get_write_access");
617ba13b 697 err = ext4_journal_get_write_access(handle, bh2);
ac27a0ec 698 if (err) goto fail;
717d50e4
AD
699
700 /* We may have to initialize the block bitmap if it isn't already */
701 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM) &&
702 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
574ca174 703 struct buffer_head *block_bh = ext4_read_block_bitmap(sb, group);
717d50e4
AD
704
705 BUFFER_TRACE(block_bh, "get block bitmap access");
706 err = ext4_journal_get_write_access(handle, block_bh);
707 if (err) {
708 brelse(block_bh);
709 goto fail;
710 }
711
712 free = 0;
713 spin_lock(sb_bgl_lock(sbi, group));
714 /* recheck and clear flag under lock if we still need to */
715 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
716 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
717 free = ext4_free_blocks_after_init(sb, group, gdp);
718 gdp->bg_free_blocks_count = cpu_to_le16(free);
719 }
720 spin_unlock(sb_bgl_lock(sbi, group));
721
722 /* Don't need to dirty bitmap block if we didn't change it */
723 if (free) {
724 BUFFER_TRACE(block_bh, "dirty block bitmap");
725 err = ext4_journal_dirty_metadata(handle, block_bh);
726 }
727
728 brelse(block_bh);
729 if (err)
730 goto fail;
731 }
732
ac27a0ec 733 spin_lock(sb_bgl_lock(sbi, group));
717d50e4
AD
734 /* If we didn't allocate from within the initialized part of the inode
735 * table then we need to initialize up to this inode. */
736 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
737 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
738 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT);
739
740 /* When marking the block group with
741 * ~EXT4_BG_INODE_UNINIT we don't want to depend
b5f10eed 742 * on the value of bg_itable_unused even though
717d50e4
AD
743 * mke2fs could have initialized the same for us.
744 * Instead we calculated the value below
745 */
746
747 free = 0;
748 } else {
749 free = EXT4_INODES_PER_GROUP(sb) -
750 le16_to_cpu(gdp->bg_itable_unused);
751 }
752
753 /*
754 * Check the relative inode number against the last used
755 * relative inode number in this group. if it is greater
756 * we need to update the bg_itable_unused count
757 *
758 */
759 if (ino > free)
760 gdp->bg_itable_unused =
761 cpu_to_le16(EXT4_INODES_PER_GROUP(sb) - ino);
762 }
763
e8546d06 764 le16_add_cpu(&gdp->bg_free_inodes_count, -1);
ac27a0ec 765 if (S_ISDIR(mode)) {
e8546d06 766 le16_add_cpu(&gdp->bg_used_dirs_count, 1);
ac27a0ec 767 }
717d50e4 768 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
ac27a0ec 769 spin_unlock(sb_bgl_lock(sbi, group));
617ba13b
MC
770 BUFFER_TRACE(bh2, "call ext4_journal_dirty_metadata");
771 err = ext4_journal_dirty_metadata(handle, bh2);
ac27a0ec
DK
772 if (err) goto fail;
773
774 percpu_counter_dec(&sbi->s_freeinodes_counter);
775 if (S_ISDIR(mode))
776 percpu_counter_inc(&sbi->s_dirs_counter);
777 sb->s_dirt = 1;
778
772cb7c8
JS
779 if (sbi->s_log_groups_per_flex) {
780 flex_group = ext4_flex_group(sbi, group);
781 spin_lock(sb_bgl_lock(sbi, flex_group));
782 sbi->s_flex_groups[flex_group].free_inodes--;
783 spin_unlock(sb_bgl_lock(sbi, flex_group));
784 }
785
ac27a0ec
DK
786 inode->i_uid = current->fsuid;
787 if (test_opt (sb, GRPID))
788 inode->i_gid = dir->i_gid;
789 else if (dir->i_mode & S_ISGID) {
790 inode->i_gid = dir->i_gid;
791 if (S_ISDIR(mode))
792 mode |= S_ISGID;
793 } else
794 inode->i_gid = current->fsgid;
795 inode->i_mode = mode;
796
717d50e4 797 inode->i_ino = ino + group * EXT4_INODES_PER_GROUP(sb);
ac27a0ec
DK
798 /* This is the optimal IO size (for stat), not the fs block size */
799 inode->i_blocks = 0;
ef7f3835
KS
800 inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
801 ext4_current_time(inode);
ac27a0ec
DK
802
803 memset(ei->i_data, 0, sizeof(ei->i_data));
804 ei->i_dir_start_lookup = 0;
805 ei->i_disksize = 0;
806
42bf0383
AK
807 /*
808 * Don't inherit extent flag from directory. We set extent flag on
809 * newly created directory and file only if -o extent mount option is
810 * specified
811 */
812 ei->i_flags = EXT4_I(dir)->i_flags & ~(EXT4_INDEX_FL|EXT4_EXTENTS_FL);
ac27a0ec 813 if (S_ISLNK(mode))
617ba13b 814 ei->i_flags &= ~(EXT4_IMMUTABLE_FL|EXT4_APPEND_FL);
ac27a0ec
DK
815 /* dirsync only applies to directories */
816 if (!S_ISDIR(mode))
617ba13b 817 ei->i_flags &= ~EXT4_DIRSYNC_FL;
ac27a0ec 818 ei->i_file_acl = 0;
ac27a0ec
DK
819 ei->i_dtime = 0;
820 ei->i_block_alloc_info = NULL;
821 ei->i_block_group = group;
822
617ba13b 823 ext4_set_inode_flags(inode);
ac27a0ec
DK
824 if (IS_DIRSYNC(inode))
825 handle->h_sync = 1;
826 insert_inode_hash(inode);
827 spin_lock(&sbi->s_next_gen_lock);
828 inode->i_generation = sbi->s_next_generation++;
829 spin_unlock(&sbi->s_next_gen_lock);
830
617ba13b 831 ei->i_state = EXT4_STATE_NEW;
ef7f3835
KS
832
833 ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;
ac27a0ec
DK
834
835 ret = inode;
836 if(DQUOT_ALLOC_INODE(inode)) {
837 err = -EDQUOT;
838 goto fail_drop;
839 }
840
617ba13b 841 err = ext4_init_acl(handle, inode, dir);
ac27a0ec
DK
842 if (err)
843 goto fail_free_drop;
844
617ba13b 845 err = ext4_init_security(handle,inode, dir);
ac27a0ec
DK
846 if (err)
847 goto fail_free_drop;
848
a86c6181 849 if (test_opt(sb, EXTENTS)) {
e4079a11 850 /* set extent flag only for directory, file and normal symlink*/
e65187e6 851 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) {
42bf0383
AK
852 EXT4_I(inode)->i_flags |= EXT4_EXTENTS_FL;
853 ext4_ext_tree_init(handle, inode);
42bf0383 854 }
a86c6181 855 }
ac27a0ec 856
8753e88f
AK
857 err = ext4_mark_inode_dirty(handle, inode);
858 if (err) {
859 ext4_std_error(sb, err);
860 goto fail_free_drop;
861 }
862
617ba13b 863 ext4_debug("allocating inode %lu\n", inode->i_ino);
ac27a0ec
DK
864 goto really_out;
865fail:
617ba13b 866 ext4_std_error(sb, err);
ac27a0ec
DK
867out:
868 iput(inode);
869 ret = ERR_PTR(err);
870really_out:
871 brelse(bitmap_bh);
872 return ret;
873
874fail_free_drop:
875 DQUOT_FREE_INODE(inode);
876
877fail_drop:
878 DQUOT_DROP(inode);
879 inode->i_flags |= S_NOQUOTA;
880 inode->i_nlink = 0;
881 iput(inode);
882 brelse(bitmap_bh);
883 return ERR_PTR(err);
884}
885
886/* Verify that we are loading a valid orphan from disk */
617ba13b 887struct inode *ext4_orphan_get(struct super_block *sb, unsigned long ino)
ac27a0ec 888{
617ba13b 889 unsigned long max_ino = le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count);
fd2d4291 890 ext4_group_t block_group;
ac27a0ec 891 int bit;
1d1fe1ee 892 struct buffer_head *bitmap_bh;
ac27a0ec 893 struct inode *inode = NULL;
1d1fe1ee 894 long err = -EIO;
ac27a0ec
DK
895
896 /* Error cases - e2fsck has already cleaned up for us */
897 if (ino > max_ino) {
46e665e9 898 ext4_warning(sb, __func__,
ac27a0ec 899 "bad orphan ino %lu! e2fsck was run?", ino);
1d1fe1ee 900 goto error;
ac27a0ec
DK
901 }
902
617ba13b
MC
903 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
904 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
e29d1cde 905 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
ac27a0ec 906 if (!bitmap_bh) {
46e665e9 907 ext4_warning(sb, __func__,
ac27a0ec 908 "inode bitmap error for orphan %lu", ino);
1d1fe1ee 909 goto error;
ac27a0ec
DK
910 }
911
912 /* Having the inode bit set should be a 100% indicator that this
913 * is a valid orphan (no e2fsck run on fs). Orphans also include
914 * inodes that were being truncated, so we can't check i_nlink==0.
915 */
1d1fe1ee
DH
916 if (!ext4_test_bit(bit, bitmap_bh->b_data))
917 goto bad_orphan;
918
919 inode = ext4_iget(sb, ino);
920 if (IS_ERR(inode))
921 goto iget_failed;
922
91ef4caf
DG
923 /*
924 * If the orphans has i_nlinks > 0 then it should be able to be
925 * truncated, otherwise it won't be removed from the orphan list
926 * during processing and an infinite loop will result.
927 */
928 if (inode->i_nlink && !ext4_can_truncate(inode))
929 goto bad_orphan;
930
1d1fe1ee
DH
931 if (NEXT_ORPHAN(inode) > max_ino)
932 goto bad_orphan;
933 brelse(bitmap_bh);
934 return inode;
935
936iget_failed:
937 err = PTR_ERR(inode);
938 inode = NULL;
939bad_orphan:
46e665e9 940 ext4_warning(sb, __func__,
1d1fe1ee
DH
941 "bad orphan inode %lu! e2fsck was run?", ino);
942 printk(KERN_NOTICE "ext4_test_bit(bit=%d, block=%llu) = %d\n",
943 bit, (unsigned long long)bitmap_bh->b_blocknr,
944 ext4_test_bit(bit, bitmap_bh->b_data));
945 printk(KERN_NOTICE "inode=%p\n", inode);
946 if (inode) {
947 printk(KERN_NOTICE "is_bad_inode(inode)=%d\n",
948 is_bad_inode(inode));
949 printk(KERN_NOTICE "NEXT_ORPHAN(inode)=%u\n",
950 NEXT_ORPHAN(inode));
951 printk(KERN_NOTICE "max_ino=%lu\n", max_ino);
91ef4caf 952 printk(KERN_NOTICE "i_nlink=%u\n", inode->i_nlink);
ac27a0ec 953 /* Avoid freeing blocks if we got a bad deleted inode */
1d1fe1ee 954 if (inode->i_nlink == 0)
ac27a0ec
DK
955 inode->i_blocks = 0;
956 iput(inode);
ac27a0ec 957 }
ac27a0ec 958 brelse(bitmap_bh);
1d1fe1ee
DH
959error:
960 return ERR_PTR(err);
ac27a0ec
DK
961}
962
617ba13b 963unsigned long ext4_count_free_inodes (struct super_block * sb)
ac27a0ec
DK
964{
965 unsigned long desc_count;
617ba13b 966 struct ext4_group_desc *gdp;
fd2d4291 967 ext4_group_t i;
617ba13b
MC
968#ifdef EXT4FS_DEBUG
969 struct ext4_super_block *es;
ac27a0ec
DK
970 unsigned long bitmap_count, x;
971 struct buffer_head *bitmap_bh = NULL;
972
617ba13b 973 es = EXT4_SB(sb)->s_es;
ac27a0ec
DK
974 desc_count = 0;
975 bitmap_count = 0;
976 gdp = NULL;
617ba13b
MC
977 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
978 gdp = ext4_get_group_desc (sb, i, NULL);
ac27a0ec
DK
979 if (!gdp)
980 continue;
981 desc_count += le16_to_cpu(gdp->bg_free_inodes_count);
982 brelse(bitmap_bh);
e29d1cde 983 bitmap_bh = ext4_read_inode_bitmap(sb, i);
ac27a0ec
DK
984 if (!bitmap_bh)
985 continue;
986
617ba13b 987 x = ext4_count_free(bitmap_bh, EXT4_INODES_PER_GROUP(sb) / 8);
c549a95d 988 printk(KERN_DEBUG "group %lu: stored = %d, counted = %lu\n",
ac27a0ec
DK
989 i, le16_to_cpu(gdp->bg_free_inodes_count), x);
990 bitmap_count += x;
991 }
992 brelse(bitmap_bh);
4776004f
TT
993 printk(KERN_DEBUG "ext4_count_free_inodes: "
994 "stored = %u, computed = %lu, %lu\n",
995 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
ac27a0ec
DK
996 return desc_count;
997#else
998 desc_count = 0;
617ba13b
MC
999 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
1000 gdp = ext4_get_group_desc (sb, i, NULL);
ac27a0ec
DK
1001 if (!gdp)
1002 continue;
1003 desc_count += le16_to_cpu(gdp->bg_free_inodes_count);
1004 cond_resched();
1005 }
1006 return desc_count;
1007#endif
1008}
1009
1010/* Called at mount-time, super-block is locked */
617ba13b 1011unsigned long ext4_count_dirs (struct super_block * sb)
ac27a0ec
DK
1012{
1013 unsigned long count = 0;
fd2d4291 1014 ext4_group_t i;
ac27a0ec 1015
617ba13b
MC
1016 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
1017 struct ext4_group_desc *gdp = ext4_get_group_desc (sb, i, NULL);
ac27a0ec
DK
1018 if (!gdp)
1019 continue;
1020 count += le16_to_cpu(gdp->bg_used_dirs_count);
1021 }
1022 return count;
1023}
1024