blob: 87d228aae6b0954847682a03d0fe8939b39c3d8b [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/ialloc.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
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>
Mingming Caodab291a2006-10-11 01:21:01 -070017#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070018#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>
Mingming Cao3a5b2ec2006-10-11 01:21:05 -070024#include <linux/blkdev.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070025#include <asm/byteorder.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040026
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040027#include "ext4.h"
28#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070029#include "xattr.h"
30#include "acl.h"
31
Theodore Ts'o9bffad12009-06-17 11:48:11 -040032#include <trace/events/ext4.h>
33
Dave Kleikampac27a0e2006-10-11 01:20:50 -070034/*
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
Andreas Dilger717d50e2007-10-16 18:38:25 -040048/*
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 */
53void mark_bitmap_end(int start_bit, int end_bit, char *bitmap)
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 */
Avantika Mathurfd2d4292008-01-28 23:58:27 -050068unsigned ext4_init_inode_bitmap(struct super_block *sb, struct buffer_head *bh,
69 ext4_group_t block_group,
Andreas Dilger717d50e2007-10-16 18:38:25 -040070 struct ext4_group_desc *gdp)
71{
72 struct ext4_sb_info *sbi = EXT4_SB(sb);
73
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. */
78 if (!ext4_group_desc_csum_verify(sbi, block_group, gdp)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -050079 ext4_error(sb, "Checksum bad for group %u", block_group);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -050080 ext4_free_blks_set(sb, gdp, 0);
81 ext4_free_inodes_set(sb, gdp, 0);
82 ext4_itable_unused_set(sb, gdp, 0);
Andreas Dilger717d50e2007-10-16 18:38:25 -040083 memset(bh->b_data, 0xff, sb->s_blocksize);
84 return 0;
85 }
86
87 memset(bh->b_data, 0, (EXT4_INODES_PER_GROUP(sb) + 7) / 8);
Aneesh Kumar K.V648f5872009-01-05 21:46:04 -050088 mark_bitmap_end(EXT4_INODES_PER_GROUP(sb), sb->s_blocksize * 8,
Andreas Dilger717d50e2007-10-16 18:38:25 -040089 bh->b_data);
90
91 return EXT4_INODES_PER_GROUP(sb);
92}
Dave Kleikampac27a0e2006-10-11 01:20:50 -070093
94/*
95 * Read the inode allocation bitmap for a given block_group, reading
96 * into the specified slot in the superblock's bitmap cache.
97 *
98 * Return buffer_head of bitmap on success or NULL.
99 */
100static struct buffer_head *
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400101ext4_read_inode_bitmap(struct super_block *sb, ext4_group_t block_group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700102{
Mingming Cao617ba132006-10-11 01:20:53 -0700103 struct ext4_group_desc *desc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700104 struct buffer_head *bh = NULL;
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400105 ext4_fsblk_t bitmap_blk;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700106
Mingming Cao617ba132006-10-11 01:20:53 -0700107 desc = ext4_get_group_desc(sb, block_group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700108 if (!desc)
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400109 return NULL;
Lukas Czernerbfff6872010-10-27 21:30:05 -0400110
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400111 bitmap_blk = ext4_inode_bitmap(sb, desc);
112 bh = sb_getblk(sb, bitmap_blk);
113 if (unlikely(!bh)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500114 ext4_error(sb, "Cannot read inode bitmap - "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500115 "block_group = %u, inode_bitmap = %llu",
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400116 block_group, bitmap_blk);
117 return NULL;
118 }
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500119 if (bitmap_uptodate(bh))
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400120 return bh;
121
Frederic Bohec806e682008-10-10 08:09:18 -0400122 lock_buffer(bh);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500123 if (bitmap_uptodate(bh)) {
124 unlock_buffer(bh);
125 return bh;
126 }
Lukas Czernerbfff6872010-10-27 21:30:05 -0400127
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400128 ext4_lock_group(sb, block_group);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400129 if (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
130 ext4_init_inode_bitmap(sb, bh, block_group, desc);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500131 set_bitmap_uptodate(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400132 set_buffer_uptodate(bh);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400133 ext4_unlock_group(sb, block_group);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500134 unlock_buffer(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400135 return bh;
136 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400137 ext4_unlock_group(sb, block_group);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400138
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500139 if (buffer_uptodate(bh)) {
140 /*
141 * if not uninit if bh is uptodate,
142 * bitmap is also uptodate
143 */
144 set_bitmap_uptodate(bh);
145 unlock_buffer(bh);
146 return bh;
147 }
148 /*
149 * submit the buffer_head for read. We can
150 * safely mark the bitmap as uptodate now.
151 * We do it here so the bitmap uptodate bit
152 * get set with buffer lock held.
153 */
154 set_bitmap_uptodate(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400155 if (bh_submit_read(bh) < 0) {
156 put_bh(bh);
Eric Sandeen12062dd2010-02-15 14:19:27 -0500157 ext4_error(sb, "Cannot read inode bitmap - "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500158 "block_group = %u, inode_bitmap = %llu",
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400159 block_group, bitmap_blk);
160 return NULL;
161 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700162 return bh;
163}
164
165/*
166 * NOTE! When we get the inode, we're the only people
167 * that have access to it, and as such there are no
168 * race conditions we have to worry about. The inode
169 * is not on the hash-lists, and it cannot be reached
170 * through the filesystem because the directory entry
171 * has been deleted earlier.
172 *
173 * HOWEVER: we must make sure that we get no aliases,
174 * which means that we have to call "clear_inode()"
175 * _before_ we mark the inode not in use in the inode
176 * bitmaps. Otherwise a newly created file might use
177 * the same inode number (not actually the same pointer
178 * though), and then we'd have two inodes sharing the
179 * same inode number and space on the harddisk.
180 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400181void ext4_free_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700182{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400183 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700184 int is_directory;
185 unsigned long ino;
186 struct buffer_head *bitmap_bh = NULL;
187 struct buffer_head *bh2;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500188 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700189 unsigned long bit;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400190 struct ext4_group_desc *gdp;
191 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -0700192 struct ext4_sb_info *sbi;
Eric Sandeen7ce9d5d2009-03-04 18:38:18 -0500193 int fatal = 0, err, count, cleared;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700194
195 if (atomic_read(&inode->i_count) > 1) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400196 printk(KERN_ERR "ext4_free_inode: inode has count=%d\n",
197 atomic_read(&inode->i_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700198 return;
199 }
200 if (inode->i_nlink) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400201 printk(KERN_ERR "ext4_free_inode: inode has nlink=%d\n",
202 inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700203 return;
204 }
205 if (!sb) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400206 printk(KERN_ERR "ext4_free_inode: inode on "
207 "nonexistent device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700208 return;
209 }
Mingming Cao617ba132006-10-11 01:20:53 -0700210 sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700211
212 ino = inode->i_ino;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400213 ext4_debug("freeing inode %lu\n", ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400214 trace_ext4_free_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700215
216 /*
217 * Note: we must free any quota before locking the superblock,
218 * as writing the quota to disk may need the lock as well.
219 */
Christoph Hellwig871a2932010-03-03 09:05:07 -0500220 dquot_initialize(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700221 ext4_xattr_delete_inode(handle, inode);
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500222 dquot_free_inode(inode);
Christoph Hellwig9f754752010-03-03 09:05:05 -0500223 dquot_drop(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700224
225 is_directory = S_ISDIR(inode->i_mode);
226
227 /* Do this BEFORE marking the inode not in use or returning an error */
Al Viro0930fcc2010-06-07 13:16:22 -0400228 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700229
Mingming Cao617ba132006-10-11 01:20:53 -0700230 es = EXT4_SB(sb)->s_es;
231 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500232 ext4_error(sb, "reserved or nonexistent inode %lu", ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700233 goto error_return;
234 }
Mingming Cao617ba132006-10-11 01:20:53 -0700235 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
236 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400237 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700238 if (!bitmap_bh)
239 goto error_return;
240
241 BUFFER_TRACE(bitmap_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700242 fatal = ext4_journal_get_write_access(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700243 if (fatal)
244 goto error_return;
245
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400246 fatal = -ESRCH;
247 gdp = ext4_get_group_desc(sb, block_group, &bh2);
248 if (gdp) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700249 BUFFER_TRACE(bh2, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700250 fatal = ext4_journal_get_write_access(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700251 }
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400252 ext4_lock_group(sb, block_group);
253 cleared = ext4_clear_bit(bit, bitmap_bh->b_data);
254 if (fatal || !cleared) {
255 ext4_unlock_group(sb, block_group);
256 goto out;
257 }
258
259 count = ext4_free_inodes_count(sb, gdp) + 1;
260 ext4_free_inodes_set(sb, gdp, count);
261 if (is_directory) {
262 count = ext4_used_dirs_count(sb, gdp) - 1;
263 ext4_used_dirs_set(sb, gdp, count);
264 percpu_counter_dec(&sbi->s_dirs_counter);
265 }
266 gdp->bg_checksum = ext4_group_desc_csum(sbi, block_group, gdp);
267 ext4_unlock_group(sb, block_group);
268
269 percpu_counter_inc(&sbi->s_freeinodes_counter);
270 if (sbi->s_log_groups_per_flex) {
271 ext4_group_t f = ext4_flex_group(sbi, block_group);
272
273 atomic_inc(&sbi->s_flex_groups[f].free_inodes);
274 if (is_directory)
275 atomic_dec(&sbi->s_flex_groups[f].used_dirs);
276 }
277 BUFFER_TRACE(bh2, "call ext4_handle_dirty_metadata");
278 fatal = ext4_handle_dirty_metadata(handle, NULL, bh2);
279out:
280 if (cleared) {
281 BUFFER_TRACE(bitmap_bh, "call ext4_handle_dirty_metadata");
282 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
283 if (!fatal)
284 fatal = err;
Theodore Ts'oa0375152010-06-11 23:14:04 -0400285 ext4_mark_super_dirty(sb);
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400286 } else
287 ext4_error(sb, "bit already cleared for inode %lu", ino);
288
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700289error_return:
290 brelse(bitmap_bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700291 ext4_std_error(sb, fatal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700292}
293
294/*
295 * There are two policies for allocating an inode. If the new inode is
296 * a directory, then a forward search is made for a block group with both
297 * free space and a low directory-to-inode ratio; if that fails, then of
298 * the groups with above-average free space, that group with the fewest
299 * directories already is chosen.
300 *
301 * For other inodes, search forward from the parent directory\'s block
302 * group to find a free inode.
303 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500304static int find_group_dir(struct super_block *sb, struct inode *parent,
305 ext4_group_t *best_group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700306{
Theodore Ts'o8df96752009-05-01 08:50:38 -0400307 ext4_group_t ngroups = ext4_get_groups_count(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700308 unsigned int freei, avefreei;
Mingming Cao617ba132006-10-11 01:20:53 -0700309 struct ext4_group_desc *desc, *best_desc = NULL;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500310 ext4_group_t group;
311 int ret = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700312
Mingming Cao617ba132006-10-11 01:20:53 -0700313 freei = percpu_counter_read_positive(&EXT4_SB(sb)->s_freeinodes_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700314 avefreei = freei / ngroups;
315
316 for (group = 0; group < ngroups; group++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400317 desc = ext4_get_group_desc(sb, group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500318 if (!desc || !ext4_free_inodes_count(sb, desc))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700319 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500320 if (ext4_free_inodes_count(sb, desc) < avefreei)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700321 continue;
322 if (!best_desc ||
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500323 (ext4_free_blks_count(sb, desc) >
324 ext4_free_blks_count(sb, best_desc))) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500325 *best_group = group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700326 best_desc = desc;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500327 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700328 }
329 }
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500330 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700331}
332
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400333#define free_block_ratio 10
334
335static int find_group_flex(struct super_block *sb, struct inode *parent,
336 ext4_group_t *best_group)
337{
338 struct ext4_sb_info *sbi = EXT4_SB(sb);
339 struct ext4_group_desc *desc;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400340 struct flex_groups *flex_group = sbi->s_flex_groups;
341 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
342 ext4_group_t parent_fbg_group = ext4_flex_group(sbi, parent_group);
Theodore Ts'o8df96752009-05-01 08:50:38 -0400343 ext4_group_t ngroups = ext4_get_groups_count(sb);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400344 int flex_size = ext4_flex_bg_size(sbi);
345 ext4_group_t best_flex = parent_fbg_group;
346 int blocks_per_flex = sbi->s_blocks_per_group * flex_size;
347 int flexbg_free_blocks;
348 int flex_freeb_ratio;
349 ext4_group_t n_fbg_groups;
350 ext4_group_t i;
351
Theodore Ts'o8df96752009-05-01 08:50:38 -0400352 n_fbg_groups = (ngroups + flex_size - 1) >>
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400353 sbi->s_log_groups_per_flex;
354
355find_close_to_parent:
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500356 flexbg_free_blocks = atomic_read(&flex_group[best_flex].free_blocks);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400357 flex_freeb_ratio = flexbg_free_blocks * 100 / blocks_per_flex;
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500358 if (atomic_read(&flex_group[best_flex].free_inodes) &&
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400359 flex_freeb_ratio > free_block_ratio)
360 goto found_flexbg;
361
362 if (best_flex && best_flex == parent_fbg_group) {
363 best_flex--;
364 goto find_close_to_parent;
365 }
366
367 for (i = 0; i < n_fbg_groups; i++) {
368 if (i == parent_fbg_group || i == parent_fbg_group - 1)
369 continue;
370
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500371 flexbg_free_blocks = atomic_read(&flex_group[i].free_blocks);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400372 flex_freeb_ratio = flexbg_free_blocks * 100 / blocks_per_flex;
373
374 if (flex_freeb_ratio > free_block_ratio &&
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500375 (atomic_read(&flex_group[i].free_inodes))) {
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400376 best_flex = i;
377 goto found_flexbg;
378 }
379
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500380 if ((atomic_read(&flex_group[best_flex].free_inodes) == 0) ||
381 ((atomic_read(&flex_group[i].free_blocks) >
382 atomic_read(&flex_group[best_flex].free_blocks)) &&
383 atomic_read(&flex_group[i].free_inodes)))
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400384 best_flex = i;
385 }
386
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500387 if (!atomic_read(&flex_group[best_flex].free_inodes) ||
388 !atomic_read(&flex_group[best_flex].free_blocks))
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400389 return -1;
390
391found_flexbg:
392 for (i = best_flex * flex_size; i < ngroups &&
393 i < (best_flex + 1) * flex_size; i++) {
Theodore Ts'o88b6edd2009-05-25 11:50:39 -0400394 desc = ext4_get_group_desc(sb, i, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500395 if (ext4_free_inodes_count(sb, desc)) {
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400396 *best_group = i;
397 goto out;
398 }
399 }
400
401 return -1;
402out:
403 return 0;
404}
405
Theodore Ts'oa4912122009-03-12 12:18:34 -0400406struct orlov_stats {
407 __u32 free_inodes;
408 __u32 free_blocks;
409 __u32 used_dirs;
410};
411
412/*
413 * Helper function for Orlov's allocator; returns critical information
414 * for a particular block group or flex_bg. If flex_size is 1, then g
415 * is a block group number; otherwise it is flex_bg number.
416 */
417void get_orlov_stats(struct super_block *sb, ext4_group_t g,
418 int flex_size, struct orlov_stats *stats)
419{
420 struct ext4_group_desc *desc;
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500421 struct flex_groups *flex_group = EXT4_SB(sb)->s_flex_groups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400422
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500423 if (flex_size > 1) {
424 stats->free_inodes = atomic_read(&flex_group[g].free_inodes);
425 stats->free_blocks = atomic_read(&flex_group[g].free_blocks);
426 stats->used_dirs = atomic_read(&flex_group[g].used_dirs);
427 return;
428 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400429
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500430 desc = ext4_get_group_desc(sb, g, NULL);
431 if (desc) {
432 stats->free_inodes = ext4_free_inodes_count(sb, desc);
433 stats->free_blocks = ext4_free_blks_count(sb, desc);
434 stats->used_dirs = ext4_used_dirs_count(sb, desc);
435 } else {
436 stats->free_inodes = 0;
437 stats->free_blocks = 0;
438 stats->used_dirs = 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400439 }
440}
441
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700442/*
443 * Orlov's allocator for directories.
444 *
445 * We always try to spread first-level directories.
446 *
447 * If there are blockgroups with both free inodes and free blocks counts
448 * not worse than average we return one with smallest directory count.
449 * Otherwise we simply return a random group.
450 *
451 * For the rest rules look so:
452 *
453 * It's OK to put directory into a group unless
454 * it has too many directories already (max_dirs) or
455 * it has too few free inodes left (min_inodes) or
456 * it has too few free blocks left (min_blocks) or
Benoit Boissinot1cc8dcf2008-04-21 22:45:55 +0000457 * Parent's group is preferred, if it doesn't satisfy these
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700458 * conditions we search cyclically through the rest. If none
459 * of the groups look good we just look for a group with more
460 * free inodes than average (starting at parent's group).
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700461 */
462
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500463static int find_group_orlov(struct super_block *sb, struct inode *parent,
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400464 ext4_group_t *group, int mode,
465 const struct qstr *qstr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700466{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500467 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Mingming Cao617ba132006-10-11 01:20:53 -0700468 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o8df96752009-05-01 08:50:38 -0400469 ext4_group_t real_ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700470 int inodes_per_group = EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700471 unsigned int freei, avefreei;
Mingming Cao617ba132006-10-11 01:20:53 -0700472 ext4_fsblk_t freeb, avefreeb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700473 unsigned int ndirs;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400474 int max_dirs, min_inodes;
Mingming Cao617ba132006-10-11 01:20:53 -0700475 ext4_grpblk_t min_blocks;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400476 ext4_group_t i, grp, g, ngroups;
Mingming Cao617ba132006-10-11 01:20:53 -0700477 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400478 struct orlov_stats stats;
479 int flex_size = ext4_flex_bg_size(sbi);
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400480 struct dx_hash_info hinfo;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400481
Theodore Ts'o8df96752009-05-01 08:50:38 -0400482 ngroups = real_ngroups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400483 if (flex_size > 1) {
Theodore Ts'o8df96752009-05-01 08:50:38 -0400484 ngroups = (real_ngroups + flex_size - 1) >>
Theodore Ts'oa4912122009-03-12 12:18:34 -0400485 sbi->s_log_groups_per_flex;
486 parent_group >>= sbi->s_log_groups_per_flex;
487 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700488
489 freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
490 avefreei = freei / ngroups;
491 freeb = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
Mingming Cao3a5b2ec2006-10-11 01:21:05 -0700492 avefreeb = freeb;
Andrew Mortonf4e5bc22006-10-11 01:21:19 -0700493 do_div(avefreeb, ngroups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700494 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
495
Theodore Ts'oa4912122009-03-12 12:18:34 -0400496 if (S_ISDIR(mode) &&
497 ((parent == sb->s_root->d_inode) ||
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400498 (ext4_test_inode_flag(parent, EXT4_INODE_TOPDIR)))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700499 int best_ndir = inodes_per_group;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500500 int ret = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700501
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400502 if (qstr) {
503 hinfo.hash_version = DX_HASH_HALF_MD4;
504 hinfo.seed = sbi->s_hash_seed;
505 ext4fs_dirhash(qstr->name, qstr->len, &hinfo);
506 grp = hinfo.hash;
507 } else
508 get_random_bytes(&grp, sizeof(grp));
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500509 parent_group = (unsigned)grp % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700510 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400511 g = (parent_group + i) % ngroups;
512 get_orlov_stats(sb, g, flex_size, &stats);
513 if (!stats.free_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700514 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400515 if (stats.used_dirs >= best_ndir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700516 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400517 if (stats.free_inodes < avefreei)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700518 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400519 if (stats.free_blocks < avefreeb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700520 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400521 grp = g;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500522 ret = 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400523 best_ndir = stats.used_dirs;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700524 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400525 if (ret)
526 goto fallback;
527 found_flex_bg:
528 if (flex_size == 1) {
529 *group = grp;
530 return 0;
531 }
532
533 /*
534 * We pack inodes at the beginning of the flexgroup's
535 * inode tables. Block allocation decisions will do
536 * something similar, although regular files will
537 * start at 2nd block group of the flexgroup. See
538 * ext4_ext_find_goal() and ext4_find_near().
539 */
540 grp *= flex_size;
541 for (i = 0; i < flex_size; i++) {
Theodore Ts'o8df96752009-05-01 08:50:38 -0400542 if (grp+i >= real_ngroups)
Theodore Ts'oa4912122009-03-12 12:18:34 -0400543 break;
544 desc = ext4_get_group_desc(sb, grp+i, NULL);
545 if (desc && ext4_free_inodes_count(sb, desc)) {
546 *group = grp+i;
547 return 0;
548 }
549 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700550 goto fallback;
551 }
552
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700553 max_dirs = ndirs / ngroups + inodes_per_group / 16;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400554 min_inodes = avefreei - inodes_per_group*flex_size / 4;
555 if (min_inodes < 1)
556 min_inodes = 1;
557 min_blocks = avefreeb - EXT4_BLOCKS_PER_GROUP(sb)*flex_size / 4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700558
Theodore Ts'oa4912122009-03-12 12:18:34 -0400559 /*
560 * Start looking in the flex group where we last allocated an
561 * inode for this parent directory
562 */
563 if (EXT4_I(parent)->i_last_alloc_group != ~0) {
564 parent_group = EXT4_I(parent)->i_last_alloc_group;
565 if (flex_size > 1)
566 parent_group >>= sbi->s_log_groups_per_flex;
567 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700568
569 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400570 grp = (parent_group + i) % ngroups;
571 get_orlov_stats(sb, grp, flex_size, &stats);
572 if (stats.used_dirs >= max_dirs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700573 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400574 if (stats.free_inodes < min_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700575 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400576 if (stats.free_blocks < min_blocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700577 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400578 goto found_flex_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700579 }
580
581fallback:
Theodore Ts'o8df96752009-05-01 08:50:38 -0400582 ngroups = real_ngroups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400583 avefreei = freei / ngroups;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400584fallback_retry:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400585 parent_group = EXT4_I(parent)->i_block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700586 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400587 grp = (parent_group + i) % ngroups;
588 desc = ext4_get_group_desc(sb, grp, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500589 if (desc && ext4_free_inodes_count(sb, desc) &&
Theodore Ts'oa4912122009-03-12 12:18:34 -0400590 ext4_free_inodes_count(sb, desc) >= avefreei) {
591 *group = grp;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500592 return 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400593 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700594 }
595
596 if (avefreei) {
597 /*
598 * The free-inodes counter is approximate, and for really small
599 * filesystems the above test can fail to find any blockgroups
600 */
601 avefreei = 0;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400602 goto fallback_retry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700603 }
604
605 return -1;
606}
607
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500608static int find_group_other(struct super_block *sb, struct inode *parent,
Theodore Ts'oa4912122009-03-12 12:18:34 -0400609 ext4_group_t *group, int mode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700610{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500611 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400612 ext4_group_t i, last, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700613 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400614 int flex_size = ext4_flex_bg_size(EXT4_SB(sb));
615
616 /*
617 * Try to place the inode is the same flex group as its
618 * parent. If we can't find space, use the Orlov algorithm to
619 * find another flex group, and store that information in the
620 * parent directory's inode information so that use that flex
621 * group for future allocations.
622 */
623 if (flex_size > 1) {
624 int retry = 0;
625
626 try_again:
627 parent_group &= ~(flex_size-1);
628 last = parent_group + flex_size;
629 if (last > ngroups)
630 last = ngroups;
631 for (i = parent_group; i < last; i++) {
632 desc = ext4_get_group_desc(sb, i, NULL);
633 if (desc && ext4_free_inodes_count(sb, desc)) {
634 *group = i;
635 return 0;
636 }
637 }
638 if (!retry && EXT4_I(parent)->i_last_alloc_group != ~0) {
639 retry = 1;
640 parent_group = EXT4_I(parent)->i_last_alloc_group;
641 goto try_again;
642 }
643 /*
644 * If this didn't work, use the Orlov search algorithm
645 * to find a new flex group; we pass in the mode to
646 * avoid the topdir algorithms.
647 */
648 *group = parent_group + flex_size;
649 if (*group > ngroups)
650 *group = 0;
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400651 return find_group_orlov(sb, parent, group, mode, 0);
Theodore Ts'oa4912122009-03-12 12:18:34 -0400652 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700653
654 /*
655 * Try to place the inode in its parent directory
656 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500657 *group = parent_group;
658 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500659 if (desc && ext4_free_inodes_count(sb, desc) &&
660 ext4_free_blks_count(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500661 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700662
663 /*
664 * We're going to place this inode in a different blockgroup from its
665 * parent. We want to cause files in a common directory to all land in
666 * the same blockgroup. But we want files which are in a different
667 * directory which shares a blockgroup with our parent to land in a
668 * different blockgroup.
669 *
670 * So add our directory's i_ino into the starting point for the hash.
671 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500672 *group = (*group + parent->i_ino) % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700673
674 /*
675 * Use a quadratic hash to find a group with a free inode and some free
676 * blocks.
677 */
678 for (i = 1; i < ngroups; i <<= 1) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500679 *group += i;
680 if (*group >= ngroups)
681 *group -= ngroups;
682 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500683 if (desc && ext4_free_inodes_count(sb, desc) &&
684 ext4_free_blks_count(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500685 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700686 }
687
688 /*
689 * That failed: try linear search for a free inode, even if that group
690 * has no free blocks.
691 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500692 *group = parent_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700693 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500694 if (++*group >= ngroups)
695 *group = 0;
696 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500697 if (desc && ext4_free_inodes_count(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500698 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700699 }
700
701 return -1;
702}
703
704/*
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500705 * claim the inode from the inode bitmap. If the group
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400706 * is uninit we need to take the groups's ext4_group_lock
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500707 * and clear the uninit flag. The inode bitmap update
708 * and group desc uninit flag clear should be done
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400709 * after holding ext4_group_lock so that ext4_read_inode_bitmap
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500710 * doesn't race with the ext4_claim_inode
711 */
712static int ext4_claim_inode(struct super_block *sb,
713 struct buffer_head *inode_bitmap_bh,
714 unsigned long ino, ext4_group_t group, int mode)
715{
716 int free = 0, retval = 0, count;
717 struct ext4_sb_info *sbi = EXT4_SB(sb);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400718 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500719 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, group, NULL);
720
Lukas Czernerbfff6872010-10-27 21:30:05 -0400721 /*
722 * We have to be sure that new inode allocation does not race with
723 * inode table initialization, because otherwise we may end up
724 * allocating and writing new inode right before sb_issue_zeroout
725 * takes place and overwriting our new inode with zeroes. So we
726 * take alloc_sem to prevent it.
727 */
728 down_read(&grp->alloc_sem);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400729 ext4_lock_group(sb, group);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500730 if (ext4_set_bit(ino, inode_bitmap_bh->b_data)) {
731 /* not a free inode */
732 retval = 1;
733 goto err_ret;
734 }
735 ino++;
736 if ((group == 0 && ino < EXT4_FIRST_INO(sb)) ||
737 ino > EXT4_INODES_PER_GROUP(sb)) {
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400738 ext4_unlock_group(sb, group);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400739 up_read(&grp->alloc_sem);
Eric Sandeen12062dd2010-02-15 14:19:27 -0500740 ext4_error(sb, "reserved inode or inode > inodes count - "
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500741 "block_group = %u, inode=%lu", group,
742 ino + group * EXT4_INODES_PER_GROUP(sb));
743 return 1;
744 }
745 /* If we didn't allocate from within the initialized part of the inode
746 * table then we need to initialize up to this inode. */
747 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
748
749 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
750 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT);
751 /* When marking the block group with
752 * ~EXT4_BG_INODE_UNINIT we don't want to depend
753 * on the value of bg_itable_unused even though
754 * mke2fs could have initialized the same for us.
755 * Instead we calculated the value below
756 */
757
758 free = 0;
759 } else {
760 free = EXT4_INODES_PER_GROUP(sb) -
761 ext4_itable_unused_count(sb, gdp);
762 }
763
764 /*
765 * Check the relative inode number against the last used
766 * relative inode number in this group. if it is greater
767 * we need to update the bg_itable_unused count
768 *
769 */
770 if (ino > free)
771 ext4_itable_unused_set(sb, gdp,
772 (EXT4_INODES_PER_GROUP(sb) - ino));
773 }
774 count = ext4_free_inodes_count(sb, gdp) - 1;
775 ext4_free_inodes_set(sb, gdp, count);
776 if (S_ISDIR(mode)) {
777 count = ext4_used_dirs_count(sb, gdp) + 1;
778 ext4_used_dirs_set(sb, gdp, count);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500779 if (sbi->s_log_groups_per_flex) {
780 ext4_group_t f = ext4_flex_group(sbi, group);
781
Eric Sandeenc4caae22010-03-23 21:32:00 -0400782 atomic_inc(&sbi->s_flex_groups[f].used_dirs);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500783 }
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500784 }
785 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
786err_ret:
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400787 ext4_unlock_group(sb, group);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400788 up_read(&grp->alloc_sem);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500789 return retval;
790}
791
792/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700793 * There are two policies for allocating an inode. If the new inode is
794 * a directory, then a forward search is made for a block group with both
795 * free space and a low directory-to-inode ratio; if that fails, then of
796 * the groups with above-average free space, that group with the fewest
797 * directories already is chosen.
798 *
799 * For other inodes, search forward from the parent directory's block
800 * group to find a free inode.
801 */
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400802struct inode *ext4_new_inode(handle_t *handle, struct inode *dir, int mode,
Andreas Dilger11013912009-06-13 11:45:35 -0400803 const struct qstr *qstr, __u32 goal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700804{
805 struct super_block *sb;
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500806 struct buffer_head *inode_bitmap_bh = NULL;
807 struct buffer_head *group_desc_bh;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400808 ext4_group_t ngroups, group = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700809 unsigned long ino = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400810 struct inode *inode;
811 struct ext4_group_desc *gdp = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -0700812 struct ext4_inode_info *ei;
813 struct ext4_sb_info *sbi;
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500814 int ret2, err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700815 struct inode *ret;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500816 ext4_group_t i;
817 int free = 0;
Theodore Ts'o2842c3b2009-03-12 12:20:01 -0400818 static int once = 1;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400819 ext4_group_t flex_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700820
821 /* Cannot create files in a deleted directory */
822 if (!dir || !dir->i_nlink)
823 return ERR_PTR(-EPERM);
824
825 sb = dir->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400826 ngroups = ext4_get_groups_count(sb);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400827 trace_ext4_request_inode(dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700828 inode = new_inode(sb);
829 if (!inode)
830 return ERR_PTR(-ENOMEM);
Mingming Cao617ba132006-10-11 01:20:53 -0700831 ei = EXT4_I(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700832 sbi = EXT4_SB(sb);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400833
Andreas Dilger11013912009-06-13 11:45:35 -0400834 if (!goal)
835 goal = sbi->s_inode_goal;
836
Johann Lombardie6462862009-07-05 23:45:11 -0400837 if (goal && goal <= le32_to_cpu(sbi->s_es->s_inodes_count)) {
Andreas Dilger11013912009-06-13 11:45:35 -0400838 group = (goal - 1) / EXT4_INODES_PER_GROUP(sb);
839 ino = (goal - 1) % EXT4_INODES_PER_GROUP(sb);
840 ret2 = 0;
841 goto got_group;
842 }
843
Theodore Ts'oa4912122009-03-12 12:18:34 -0400844 if (sbi->s_log_groups_per_flex && test_opt(sb, OLDALLOC)) {
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400845 ret2 = find_group_flex(sb, dir, &group);
Theodore Ts'o05bf9e82009-02-21 12:13:24 -0500846 if (ret2 == -1) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400847 ret2 = find_group_other(sb, dir, &group, mode);
Chuck Ebbert6b82f3c2009-04-14 07:37:40 -0400848 if (ret2 == 0 && once) {
Theodore Ts'o2842c3b2009-03-12 12:20:01 -0400849 once = 0;
Theodore Ts'o05bf9e82009-02-21 12:13:24 -0500850 printk(KERN_NOTICE "ext4: find_group_flex "
851 "failed, fallback succeeded dir %lu\n",
852 dir->i_ino);
Chuck Ebbert6b82f3c2009-04-14 07:37:40 -0400853 }
Theodore Ts'o05bf9e82009-02-21 12:13:24 -0500854 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400855 goto got_group;
856 }
857
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700858 if (S_ISDIR(mode)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400859 if (test_opt(sb, OLDALLOC))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500860 ret2 = find_group_dir(sb, dir, &group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700861 else
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400862 ret2 = find_group_orlov(sb, dir, &group, mode, qstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700863 } else
Theodore Ts'oa4912122009-03-12 12:18:34 -0400864 ret2 = find_group_other(sb, dir, &group, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700865
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400866got_group:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400867 EXT4_I(dir)->i_last_alloc_group = group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700868 err = -ENOSPC;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500869 if (ret2 == -1)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700870 goto out;
871
Andreas Dilger11013912009-06-13 11:45:35 -0400872 for (i = 0; i < ngroups; i++, ino = 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700873 err = -EIO;
874
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500875 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700876 if (!gdp)
877 goto fail;
878
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500879 brelse(inode_bitmap_bh);
880 inode_bitmap_bh = ext4_read_inode_bitmap(sb, group);
881 if (!inode_bitmap_bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700882 goto fail;
883
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700884repeat_in_this_group:
Mingming Cao617ba132006-10-11 01:20:53 -0700885 ino = ext4_find_next_zero_bit((unsigned long *)
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500886 inode_bitmap_bh->b_data,
887 EXT4_INODES_PER_GROUP(sb), ino);
888
Mingming Cao617ba132006-10-11 01:20:53 -0700889 if (ino < EXT4_INODES_PER_GROUP(sb)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700890
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500891 BUFFER_TRACE(inode_bitmap_bh, "get_write_access");
892 err = ext4_journal_get_write_access(handle,
893 inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700894 if (err)
895 goto fail;
896
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500897 BUFFER_TRACE(group_desc_bh, "get_write_access");
898 err = ext4_journal_get_write_access(handle,
899 group_desc_bh);
900 if (err)
901 goto fail;
902 if (!ext4_claim_inode(sb, inode_bitmap_bh,
903 ino, group, mode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700904 /* we won it */
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500905 BUFFER_TRACE(inode_bitmap_bh,
Frank Mayhar03901312009-01-07 00:06:22 -0500906 "call ext4_handle_dirty_metadata");
907 err = ext4_handle_dirty_metadata(handle,
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -0500908 NULL,
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500909 inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700910 if (err)
911 goto fail;
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500912 /* zero bit is inode number 1*/
913 ino++;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700914 goto got;
915 }
916 /* we lost it */
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500917 ext4_handle_release_buffer(handle, inode_bitmap_bh);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500918 ext4_handle_release_buffer(handle, group_desc_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700919
Mingming Cao617ba132006-10-11 01:20:53 -0700920 if (++ino < EXT4_INODES_PER_GROUP(sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700921 goto repeat_in_this_group;
922 }
923
924 /*
925 * This case is possible in concurrent environment. It is very
926 * rare. We cannot repeat the find_group_xxx() call because
927 * that will simply return the same blockgroup, because the
928 * group descriptor metadata has not yet been updated.
929 * So we just go onto the next blockgroup.
930 */
Theodore Ts'o8df96752009-05-01 08:50:38 -0400931 if (++group == ngroups)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700932 group = 0;
933 }
934 err = -ENOSPC;
935 goto out;
936
937got:
Andreas Dilger717d50e2007-10-16 18:38:25 -0400938 /* We may have to initialize the block bitmap if it isn't already */
939 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM) &&
940 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500941 struct buffer_head *block_bitmap_bh;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400942
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500943 block_bitmap_bh = ext4_read_block_bitmap(sb, group);
944 BUFFER_TRACE(block_bitmap_bh, "get block bitmap access");
945 err = ext4_journal_get_write_access(handle, block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400946 if (err) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500947 brelse(block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400948 goto fail;
949 }
950
951 free = 0;
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400952 ext4_lock_group(sb, group);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400953 /* recheck and clear flag under lock if we still need to */
954 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Andreas Dilger717d50e2007-10-16 18:38:25 -0400955 free = ext4_free_blocks_after_init(sb, group, gdp);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500956 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500957 ext4_free_blks_set(sb, gdp, free);
Frederic Bohe23712a92008-11-07 09:21:01 -0500958 gdp->bg_checksum = ext4_group_desc_csum(sbi, group,
959 gdp);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400960 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400961 ext4_unlock_group(sb, group);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400962
963 /* Don't need to dirty bitmap block if we didn't change it */
964 if (free) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500965 BUFFER_TRACE(block_bitmap_bh, "dirty block bitmap");
Frank Mayhar03901312009-01-07 00:06:22 -0500966 err = ext4_handle_dirty_metadata(handle,
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500967 NULL, block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400968 }
969
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500970 brelse(block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400971 if (err)
972 goto fail;
973 }
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500974 BUFFER_TRACE(group_desc_bh, "call ext4_handle_dirty_metadata");
975 err = ext4_handle_dirty_metadata(handle, NULL, group_desc_bh);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500976 if (err)
977 goto fail;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700978
979 percpu_counter_dec(&sbi->s_freeinodes_counter);
980 if (S_ISDIR(mode))
981 percpu_counter_inc(&sbi->s_dirs_counter);
Theodore Ts'oa0375152010-06-11 23:14:04 -0400982 ext4_mark_super_dirty(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700983
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400984 if (sbi->s_log_groups_per_flex) {
985 flex_group = ext4_flex_group(sbi, group);
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500986 atomic_dec(&sbi->s_flex_groups[flex_group].free_inodes);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400987 }
988
Dmitry Monakhovb10b8522010-03-04 17:31:51 +0300989 if (test_opt(sb, GRPID)) {
990 inode->i_mode = mode;
991 inode->i_uid = current_fsuid();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700992 inode->i_gid = dir->i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700993 } else
Dmitry Monakhovb10b8522010-03-04 17:31:51 +0300994 inode_init_owner(inode, dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700995
Andreas Dilger717d50e2007-10-16 18:38:25 -0400996 inode->i_ino = ino + group * EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700997 /* This is the optimal IO size (for stat), not the fs block size */
998 inode->i_blocks = 0;
Kalpak Shahef7f3832007-07-18 09:15:20 -0400999 inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
1000 ext4_current_time(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001001
1002 memset(ei->i_data, 0, sizeof(ei->i_data));
1003 ei->i_dir_start_lookup = 0;
1004 ei->i_disksize = 0;
1005
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001006 /*
Duane Griffin2dc6b0d2009-02-15 18:09:20 -05001007 * Don't inherit extent flag from directory, amongst others. We set
1008 * extent flag on newly created directory and file only if -o extent
1009 * mount option is specified
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001010 */
Duane Griffin2dc6b0d2009-02-15 18:09:20 -05001011 ei->i_flags =
1012 ext4_mask_flags(mode, EXT4_I(dir)->i_flags & EXT4_FL_INHERITED);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001013 ei->i_file_acl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001014 ei->i_dtime = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001015 ei->i_block_group = group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04001016 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001017
Mingming Cao617ba132006-10-11 01:20:53 -07001018 ext4_set_inode_flags(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001019 if (IS_DIRSYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05001020 ext4_handle_sync(handle);
Al Viro6b38e842008-12-30 02:03:31 -05001021 if (insert_inode_locked(inode) < 0) {
1022 err = -EINVAL;
1023 goto fail_drop;
1024 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001025 spin_lock(&sbi->s_next_gen_lock);
1026 inode->i_generation = sbi->s_next_generation++;
1027 spin_unlock(&sbi->s_next_gen_lock);
1028
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001029 ei->i_state_flags = 0;
1030 ext4_set_inode_state(inode, EXT4_STATE_NEW);
Kalpak Shahef7f3832007-07-18 09:15:20 -04001031
1032 ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001033
1034 ret = inode;
Christoph Hellwig871a2932010-03-03 09:05:07 -05001035 dquot_initialize(inode);
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001036 err = dquot_alloc_inode(inode);
1037 if (err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001038 goto fail_drop;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001039
Mingming Cao617ba132006-10-11 01:20:53 -07001040 err = ext4_init_acl(handle, inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001041 if (err)
1042 goto fail_free_drop;
1043
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001044 err = ext4_init_security(handle, inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001045 if (err)
1046 goto fail_free_drop;
1047
Theodore Ts'o83982b62009-01-06 14:53:16 -05001048 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
Eric Sandeene4079a12008-07-11 19:27:31 -04001049 /* set extent flag only for directory, file and normal symlink*/
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -04001050 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) {
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001051 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001052 ext4_ext_tree_init(handle, inode);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001053 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001054 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001055
Aneesh Kumar K.V8753e882008-04-29 22:00:36 -04001056 err = ext4_mark_inode_dirty(handle, inode);
1057 if (err) {
1058 ext4_std_error(sb, err);
1059 goto fail_free_drop;
1060 }
1061
Mingming Cao617ba132006-10-11 01:20:53 -07001062 ext4_debug("allocating inode %lu\n", inode->i_ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001063 trace_ext4_allocate_inode(inode, dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001064 goto really_out;
1065fail:
Mingming Cao617ba132006-10-11 01:20:53 -07001066 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001067out:
1068 iput(inode);
1069 ret = ERR_PTR(err);
1070really_out:
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -05001071 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001072 return ret;
1073
1074fail_free_drop:
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001075 dquot_free_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001076
1077fail_drop:
Christoph Hellwig9f754752010-03-03 09:05:05 -05001078 dquot_drop(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001079 inode->i_flags |= S_NOQUOTA;
1080 inode->i_nlink = 0;
Al Viro6b38e842008-12-30 02:03:31 -05001081 unlock_new_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001082 iput(inode);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -05001083 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001084 return ERR_PTR(err);
1085}
1086
1087/* Verify that we are loading a valid orphan from disk */
Mingming Cao617ba132006-10-11 01:20:53 -07001088struct inode *ext4_orphan_get(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001089{
Mingming Cao617ba132006-10-11 01:20:53 -07001090 unsigned long max_ino = le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001091 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001092 int bit;
David Howells1d1fe1e2008-02-07 00:15:37 -08001093 struct buffer_head *bitmap_bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001094 struct inode *inode = NULL;
David Howells1d1fe1e2008-02-07 00:15:37 -08001095 long err = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001096
1097 /* Error cases - e2fsck has already cleaned up for us */
1098 if (ino > max_ino) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001099 ext4_warning(sb, "bad orphan ino %lu! e2fsck was run?", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001100 goto error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001101 }
1102
Mingming Cao617ba132006-10-11 01:20:53 -07001103 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
1104 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -04001105 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001106 if (!bitmap_bh) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001107 ext4_warning(sb, "inode bitmap error for orphan %lu", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001108 goto error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001109 }
1110
1111 /* Having the inode bit set should be a 100% indicator that this
1112 * is a valid orphan (no e2fsck run on fs). Orphans also include
1113 * inodes that were being truncated, so we can't check i_nlink==0.
1114 */
David Howells1d1fe1e2008-02-07 00:15:37 -08001115 if (!ext4_test_bit(bit, bitmap_bh->b_data))
1116 goto bad_orphan;
1117
1118 inode = ext4_iget(sb, ino);
1119 if (IS_ERR(inode))
1120 goto iget_failed;
1121
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001122 /*
1123 * If the orphans has i_nlinks > 0 then it should be able to be
1124 * truncated, otherwise it won't be removed from the orphan list
1125 * during processing and an infinite loop will result.
1126 */
1127 if (inode->i_nlink && !ext4_can_truncate(inode))
1128 goto bad_orphan;
1129
David Howells1d1fe1e2008-02-07 00:15:37 -08001130 if (NEXT_ORPHAN(inode) > max_ino)
1131 goto bad_orphan;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001132 brelse(bitmap_bh);
1133 return inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08001134
1135iget_failed:
1136 err = PTR_ERR(inode);
1137 inode = NULL;
1138bad_orphan:
Eric Sandeen12062dd2010-02-15 14:19:27 -05001139 ext4_warning(sb, "bad orphan inode %lu! e2fsck was run?", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001140 printk(KERN_NOTICE "ext4_test_bit(bit=%d, block=%llu) = %d\n",
1141 bit, (unsigned long long)bitmap_bh->b_blocknr,
1142 ext4_test_bit(bit, bitmap_bh->b_data));
1143 printk(KERN_NOTICE "inode=%p\n", inode);
1144 if (inode) {
1145 printk(KERN_NOTICE "is_bad_inode(inode)=%d\n",
1146 is_bad_inode(inode));
1147 printk(KERN_NOTICE "NEXT_ORPHAN(inode)=%u\n",
1148 NEXT_ORPHAN(inode));
1149 printk(KERN_NOTICE "max_ino=%lu\n", max_ino);
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001150 printk(KERN_NOTICE "i_nlink=%u\n", inode->i_nlink);
David Howells1d1fe1e2008-02-07 00:15:37 -08001151 /* Avoid freeing blocks if we got a bad deleted inode */
1152 if (inode->i_nlink == 0)
1153 inode->i_blocks = 0;
1154 iput(inode);
1155 }
1156 brelse(bitmap_bh);
1157error:
1158 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001159}
1160
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001161unsigned long ext4_count_free_inodes(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001162{
1163 unsigned long desc_count;
Mingming Cao617ba132006-10-11 01:20:53 -07001164 struct ext4_group_desc *gdp;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001165 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07001166#ifdef EXT4FS_DEBUG
1167 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001168 unsigned long bitmap_count, x;
1169 struct buffer_head *bitmap_bh = NULL;
1170
Mingming Cao617ba132006-10-11 01:20:53 -07001171 es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001172 desc_count = 0;
1173 bitmap_count = 0;
1174 gdp = NULL;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001175 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001176 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001177 if (!gdp)
1178 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001179 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001180 brelse(bitmap_bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -04001181 bitmap_bh = ext4_read_inode_bitmap(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001182 if (!bitmap_bh)
1183 continue;
1184
Mingming Cao617ba132006-10-11 01:20:53 -07001185 x = ext4_count_free(bitmap_bh, EXT4_INODES_PER_GROUP(sb) / 8);
Eric Sandeenc549a952008-01-28 23:58:27 -05001186 printk(KERN_DEBUG "group %lu: stored = %d, counted = %lu\n",
Peng Tao785b4b32009-07-27 21:44:40 -04001187 (unsigned long) i, ext4_free_inodes_count(sb, gdp), x);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001188 bitmap_count += x;
1189 }
1190 brelse(bitmap_bh);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001191 printk(KERN_DEBUG "ext4_count_free_inodes: "
1192 "stored = %u, computed = %lu, %lu\n",
1193 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001194 return desc_count;
1195#else
1196 desc_count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001197 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001198 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001199 if (!gdp)
1200 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001201 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001202 cond_resched();
1203 }
1204 return desc_count;
1205#endif
1206}
1207
1208/* Called at mount-time, super-block is locked */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001209unsigned long ext4_count_dirs(struct super_block * sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001210{
1211 unsigned long count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001212 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001213
Theodore Ts'o8df96752009-05-01 08:50:38 -04001214 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001215 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001216 if (!gdp)
1217 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001218 count += ext4_used_dirs_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001219 }
1220 return count;
1221}
Lukas Czernerbfff6872010-10-27 21:30:05 -04001222
1223/*
1224 * Zeroes not yet zeroed inode table - just write zeroes through the whole
1225 * inode table. Must be called without any spinlock held. The only place
1226 * where it is called from on active part of filesystem is ext4lazyinit
1227 * thread, so we do not need any special locks, however we have to prevent
1228 * inode allocation from the current group, so we take alloc_sem lock, to
1229 * block ext4_claim_inode until we are finished.
1230 */
1231extern int ext4_init_inode_table(struct super_block *sb, ext4_group_t group,
1232 int barrier)
1233{
1234 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
1235 struct ext4_sb_info *sbi = EXT4_SB(sb);
1236 struct ext4_group_desc *gdp = NULL;
1237 struct buffer_head *group_desc_bh;
1238 handle_t *handle;
1239 ext4_fsblk_t blk;
1240 int num, ret = 0, used_blks = 0;
1241 unsigned long flags = BLKDEV_IFL_WAIT;
1242
1243 /* This should not happen, but just to be sure check this */
1244 if (sb->s_flags & MS_RDONLY) {
1245 ret = 1;
1246 goto out;
1247 }
1248
1249 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
1250 if (!gdp)
1251 goto out;
1252
1253 /*
1254 * We do not need to lock this, because we are the only one
1255 * handling this flag.
1256 */
1257 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED))
1258 goto out;
1259
1260 handle = ext4_journal_start_sb(sb, 1);
1261 if (IS_ERR(handle)) {
1262 ret = PTR_ERR(handle);
1263 goto out;
1264 }
1265
1266 down_write(&grp->alloc_sem);
1267 /*
1268 * If inode bitmap was already initialized there may be some
1269 * used inodes so we need to skip blocks with used inodes in
1270 * inode table.
1271 */
1272 if (!(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)))
1273 used_blks = DIV_ROUND_UP((EXT4_INODES_PER_GROUP(sb) -
1274 ext4_itable_unused_count(sb, gdp)),
1275 sbi->s_inodes_per_block);
1276
Lukas Czerner857ac882010-10-27 21:30:05 -04001277 if ((used_blks < 0) || (used_blks > sbi->s_itb_per_group)) {
1278 ext4_error(sb, "Something is wrong with group %u\n"
1279 "Used itable blocks: %d"
1280 "itable unused count: %u\n",
1281 group, used_blks,
1282 ext4_itable_unused_count(sb, gdp));
1283 ret = 1;
1284 goto out;
1285 }
1286
Lukas Czernerbfff6872010-10-27 21:30:05 -04001287 blk = ext4_inode_table(sb, gdp) + used_blks;
1288 num = sbi->s_itb_per_group - used_blks;
1289
1290 BUFFER_TRACE(group_desc_bh, "get_write_access");
1291 ret = ext4_journal_get_write_access(handle,
1292 group_desc_bh);
1293 if (ret)
1294 goto err_out;
1295
Lukas Czernerbfff6872010-10-27 21:30:05 -04001296 /*
1297 * Skip zeroout if the inode table is full. But we set the ZEROED
1298 * flag anyway, because obviously, when it is full it does not need
1299 * further zeroing.
1300 */
1301 if (unlikely(num == 0))
1302 goto skip_zeroout;
1303
1304 ext4_debug("going to zero out inode table in group %d\n",
1305 group);
1306 if (barrier)
1307 flags |= BLKDEV_IFL_BARRIER;
1308 ret = sb_issue_zeroout(sb, blk, num, GFP_NOFS, flags);
1309 if (ret < 0)
1310 goto err_out;
1311
1312skip_zeroout:
1313 ext4_lock_group(sb, group);
1314 gdp->bg_flags |= cpu_to_le16(EXT4_BG_INODE_ZEROED);
1315 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
1316 ext4_unlock_group(sb, group);
1317
1318 BUFFER_TRACE(group_desc_bh,
1319 "call ext4_handle_dirty_metadata");
1320 ret = ext4_handle_dirty_metadata(handle, NULL,
1321 group_desc_bh);
1322
1323err_out:
1324 up_write(&grp->alloc_sem);
1325 ext4_journal_stop(handle);
1326out:
1327 return ret;
1328}