blob: 71a9c8f3dece6442dc8374e72f176112462c53e5 [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 */
Theodore Ts'o61d08672010-10-27 21:30:15 -040053void ext4_mark_bitmap_end(int start_bit, int end_bit, char *bitmap)
Andreas Dilger717d50e2007-10-16 18:38:25 -040054{
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 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -040068static unsigned ext4_init_inode_bitmap(struct super_block *sb,
69 struct buffer_head *bh,
70 ext4_group_t block_group,
71 struct ext4_group_desc *gdp)
Andreas Dilger717d50e2007-10-16 18:38:25 -040072{
73 struct ext4_sb_info *sbi = EXT4_SB(sb);
74
75 J_ASSERT_BH(bh, buffer_locked(bh));
76
77 /* If checksum is bad mark all blocks and inodes use to prevent
78 * allocation, essentially implementing a per-group read-only flag. */
79 if (!ext4_group_desc_csum_verify(sbi, block_group, gdp)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -050080 ext4_error(sb, "Checksum bad for group %u", block_group);
Theodore Ts'o021b65b2011-09-09 19:08:51 -040081 ext4_free_group_clusters_set(sb, gdp, 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -050082 ext4_free_inodes_set(sb, gdp, 0);
83 ext4_itable_unused_set(sb, gdp, 0);
Andreas Dilger717d50e2007-10-16 18:38:25 -040084 memset(bh->b_data, 0xff, sb->s_blocksize);
85 return 0;
86 }
87
88 memset(bh->b_data, 0, (EXT4_INODES_PER_GROUP(sb) + 7) / 8);
Theodore Ts'o61d08672010-10-27 21:30:15 -040089 ext4_mark_bitmap_end(EXT4_INODES_PER_GROUP(sb), sb->s_blocksize * 8,
Andreas Dilger717d50e2007-10-16 18:38:25 -040090 bh->b_data);
91
92 return EXT4_INODES_PER_GROUP(sb);
93}
Dave Kleikampac27a0e2006-10-11 01:20:50 -070094
95/*
96 * Read the inode allocation bitmap for a given block_group, reading
97 * into the specified slot in the superblock's bitmap cache.
98 *
99 * Return buffer_head of bitmap on success or NULL.
100 */
101static struct buffer_head *
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400102ext4_read_inode_bitmap(struct super_block *sb, ext4_group_t block_group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700103{
Mingming Cao617ba132006-10-11 01:20:53 -0700104 struct ext4_group_desc *desc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700105 struct buffer_head *bh = NULL;
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400106 ext4_fsblk_t bitmap_blk;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700107
Mingming Cao617ba132006-10-11 01:20:53 -0700108 desc = ext4_get_group_desc(sb, block_group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700109 if (!desc)
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400110 return NULL;
Lukas Czernerbfff6872010-10-27 21:30:05 -0400111
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400112 bitmap_blk = ext4_inode_bitmap(sb, desc);
113 bh = sb_getblk(sb, bitmap_blk);
114 if (unlikely(!bh)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500115 ext4_error(sb, "Cannot read inode bitmap - "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500116 "block_group = %u, inode_bitmap = %llu",
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400117 block_group, bitmap_blk);
118 return NULL;
119 }
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500120 if (bitmap_uptodate(bh))
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400121 return bh;
122
Frederic Bohec806e682008-10-10 08:09:18 -0400123 lock_buffer(bh);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500124 if (bitmap_uptodate(bh)) {
125 unlock_buffer(bh);
126 return bh;
127 }
Lukas Czernerbfff6872010-10-27 21:30:05 -0400128
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400129 ext4_lock_group(sb, block_group);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400130 if (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
131 ext4_init_inode_bitmap(sb, bh, block_group, desc);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500132 set_bitmap_uptodate(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400133 set_buffer_uptodate(bh);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400134 ext4_unlock_group(sb, block_group);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500135 unlock_buffer(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400136 return bh;
137 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400138 ext4_unlock_group(sb, block_group);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400139
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500140 if (buffer_uptodate(bh)) {
141 /*
142 * if not uninit if bh is uptodate,
143 * bitmap is also uptodate
144 */
145 set_bitmap_uptodate(bh);
146 unlock_buffer(bh);
147 return bh;
148 }
149 /*
150 * submit the buffer_head for read. We can
151 * safely mark the bitmap as uptodate now.
152 * We do it here so the bitmap uptodate bit
153 * get set with buffer lock held.
154 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -0400155 trace_ext4_load_inode_bitmap(sb, block_group);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500156 set_bitmap_uptodate(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400157 if (bh_submit_read(bh) < 0) {
158 put_bh(bh);
Eric Sandeen12062dd2010-02-15 14:19:27 -0500159 ext4_error(sb, "Cannot read inode bitmap - "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500160 "block_group = %u, inode_bitmap = %llu",
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400161 block_group, bitmap_blk);
162 return NULL;
163 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700164 return bh;
165}
166
167/*
168 * NOTE! When we get the inode, we're the only people
169 * that have access to it, and as such there are no
170 * race conditions we have to worry about. The inode
171 * is not on the hash-lists, and it cannot be reached
172 * through the filesystem because the directory entry
173 * has been deleted earlier.
174 *
175 * HOWEVER: we must make sure that we get no aliases,
176 * which means that we have to call "clear_inode()"
177 * _before_ we mark the inode not in use in the inode
178 * bitmaps. Otherwise a newly created file might use
179 * the same inode number (not actually the same pointer
180 * though), and then we'd have two inodes sharing the
181 * same inode number and space on the harddisk.
182 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400183void ext4_free_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700184{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400185 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700186 int is_directory;
187 unsigned long ino;
188 struct buffer_head *bitmap_bh = NULL;
189 struct buffer_head *bh2;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500190 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700191 unsigned long bit;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400192 struct ext4_group_desc *gdp;
193 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -0700194 struct ext4_sb_info *sbi;
Eric Sandeen7ce9d5d2009-03-04 18:38:18 -0500195 int fatal = 0, err, count, cleared;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700196
197 if (atomic_read(&inode->i_count) > 1) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400198 printk(KERN_ERR "ext4_free_inode: inode has count=%d\n",
199 atomic_read(&inode->i_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700200 return;
201 }
202 if (inode->i_nlink) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400203 printk(KERN_ERR "ext4_free_inode: inode has nlink=%d\n",
204 inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700205 return;
206 }
207 if (!sb) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400208 printk(KERN_ERR "ext4_free_inode: inode on "
209 "nonexistent device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700210 return;
211 }
Mingming Cao617ba132006-10-11 01:20:53 -0700212 sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700213
214 ino = inode->i_ino;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400215 ext4_debug("freeing inode %lu\n", ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400216 trace_ext4_free_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700217
218 /*
219 * Note: we must free any quota before locking the superblock,
220 * as writing the quota to disk may need the lock as well.
221 */
Christoph Hellwig871a2932010-03-03 09:05:07 -0500222 dquot_initialize(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700223 ext4_xattr_delete_inode(handle, inode);
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500224 dquot_free_inode(inode);
Christoph Hellwig9f754752010-03-03 09:05:05 -0500225 dquot_drop(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700226
227 is_directory = S_ISDIR(inode->i_mode);
228
229 /* Do this BEFORE marking the inode not in use or returning an error */
Al Viro0930fcc2010-06-07 13:16:22 -0400230 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700231
Mingming Cao617ba132006-10-11 01:20:53 -0700232 es = EXT4_SB(sb)->s_es;
233 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500234 ext4_error(sb, "reserved or nonexistent inode %lu", ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700235 goto error_return;
236 }
Mingming Cao617ba132006-10-11 01:20:53 -0700237 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
238 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400239 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700240 if (!bitmap_bh)
241 goto error_return;
242
243 BUFFER_TRACE(bitmap_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700244 fatal = ext4_journal_get_write_access(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700245 if (fatal)
246 goto error_return;
247
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400248 fatal = -ESRCH;
249 gdp = ext4_get_group_desc(sb, block_group, &bh2);
250 if (gdp) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700251 BUFFER_TRACE(bh2, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700252 fatal = ext4_journal_get_write_access(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700253 }
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400254 ext4_lock_group(sb, block_group);
255 cleared = ext4_clear_bit(bit, bitmap_bh->b_data);
256 if (fatal || !cleared) {
257 ext4_unlock_group(sb, block_group);
258 goto out;
259 }
260
261 count = ext4_free_inodes_count(sb, gdp) + 1;
262 ext4_free_inodes_set(sb, gdp, count);
263 if (is_directory) {
264 count = ext4_used_dirs_count(sb, gdp) - 1;
265 ext4_used_dirs_set(sb, gdp, count);
266 percpu_counter_dec(&sbi->s_dirs_counter);
267 }
268 gdp->bg_checksum = ext4_group_desc_csum(sbi, block_group, gdp);
269 ext4_unlock_group(sb, block_group);
270
271 percpu_counter_inc(&sbi->s_freeinodes_counter);
272 if (sbi->s_log_groups_per_flex) {
273 ext4_group_t f = ext4_flex_group(sbi, block_group);
274
275 atomic_inc(&sbi->s_flex_groups[f].free_inodes);
276 if (is_directory)
277 atomic_dec(&sbi->s_flex_groups[f].used_dirs);
278 }
279 BUFFER_TRACE(bh2, "call ext4_handle_dirty_metadata");
280 fatal = ext4_handle_dirty_metadata(handle, NULL, bh2);
281out:
282 if (cleared) {
283 BUFFER_TRACE(bitmap_bh, "call ext4_handle_dirty_metadata");
284 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
285 if (!fatal)
286 fatal = err;
Theodore Ts'oa0375152010-06-11 23:14:04 -0400287 ext4_mark_super_dirty(sb);
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400288 } else
289 ext4_error(sb, "bit already cleared for inode %lu", ino);
290
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700291error_return:
292 brelse(bitmap_bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700293 ext4_std_error(sb, fatal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700294}
295
296/*
297 * There are two policies for allocating an inode. If the new inode is
298 * a directory, then a forward search is made for a block group with both
299 * free space and a low directory-to-inode ratio; if that fails, then of
300 * the groups with above-average free space, that group with the fewest
301 * directories already is chosen.
302 *
303 * For other inodes, search forward from the parent directory\'s block
304 * group to find a free inode.
305 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500306static int find_group_dir(struct super_block *sb, struct inode *parent,
307 ext4_group_t *best_group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700308{
Theodore Ts'o8df96752009-05-01 08:50:38 -0400309 ext4_group_t ngroups = ext4_get_groups_count(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700310 unsigned int freei, avefreei;
Mingming Cao617ba132006-10-11 01:20:53 -0700311 struct ext4_group_desc *desc, *best_desc = NULL;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500312 ext4_group_t group;
313 int ret = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700314
Mingming Cao617ba132006-10-11 01:20:53 -0700315 freei = percpu_counter_read_positive(&EXT4_SB(sb)->s_freeinodes_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700316 avefreei = freei / ngroups;
317
318 for (group = 0; group < ngroups; group++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400319 desc = ext4_get_group_desc(sb, group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500320 if (!desc || !ext4_free_inodes_count(sb, desc))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700321 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500322 if (ext4_free_inodes_count(sb, desc) < avefreei)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700323 continue;
324 if (!best_desc ||
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400325 (ext4_free_group_clusters(sb, desc) >
326 ext4_free_group_clusters(sb, best_desc))) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500327 *best_group = group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700328 best_desc = desc;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500329 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700330 }
331 }
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500332 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700333}
334
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400335#define free_block_ratio 10
336
337static int find_group_flex(struct super_block *sb, struct inode *parent,
338 ext4_group_t *best_group)
339{
340 struct ext4_sb_info *sbi = EXT4_SB(sb);
341 struct ext4_group_desc *desc;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400342 struct flex_groups *flex_group = sbi->s_flex_groups;
343 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
344 ext4_group_t parent_fbg_group = ext4_flex_group(sbi, parent_group);
Theodore Ts'o8df96752009-05-01 08:50:38 -0400345 ext4_group_t ngroups = ext4_get_groups_count(sb);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400346 int flex_size = ext4_flex_bg_size(sbi);
347 ext4_group_t best_flex = parent_fbg_group;
348 int blocks_per_flex = sbi->s_blocks_per_group * flex_size;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400349 int flexbg_free_clusters;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400350 int flex_freeb_ratio;
351 ext4_group_t n_fbg_groups;
352 ext4_group_t i;
353
Theodore Ts'o8df96752009-05-01 08:50:38 -0400354 n_fbg_groups = (ngroups + flex_size - 1) >>
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400355 sbi->s_log_groups_per_flex;
356
357find_close_to_parent:
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400358 flexbg_free_clusters = atomic_read(&flex_group[best_flex].free_clusters);
359 flex_freeb_ratio = EXT4_C2B(sbi, flexbg_free_clusters) * 100 /
360 blocks_per_flex;
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500361 if (atomic_read(&flex_group[best_flex].free_inodes) &&
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400362 flex_freeb_ratio > free_block_ratio)
363 goto found_flexbg;
364
365 if (best_flex && best_flex == parent_fbg_group) {
366 best_flex--;
367 goto find_close_to_parent;
368 }
369
370 for (i = 0; i < n_fbg_groups; i++) {
371 if (i == parent_fbg_group || i == parent_fbg_group - 1)
372 continue;
373
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400374 flexbg_free_clusters = atomic_read(&flex_group[i].free_clusters);
375 flex_freeb_ratio = EXT4_C2B(sbi, flexbg_free_clusters) * 100 /
376 blocks_per_flex;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400377
378 if (flex_freeb_ratio > free_block_ratio &&
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500379 (atomic_read(&flex_group[i].free_inodes))) {
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400380 best_flex = i;
381 goto found_flexbg;
382 }
383
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500384 if ((atomic_read(&flex_group[best_flex].free_inodes) == 0) ||
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400385 ((atomic_read(&flex_group[i].free_clusters) >
386 atomic_read(&flex_group[best_flex].free_clusters)) &&
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500387 atomic_read(&flex_group[i].free_inodes)))
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400388 best_flex = i;
389 }
390
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500391 if (!atomic_read(&flex_group[best_flex].free_inodes) ||
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400392 !atomic_read(&flex_group[best_flex].free_clusters))
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400393 return -1;
394
395found_flexbg:
396 for (i = best_flex * flex_size; i < ngroups &&
397 i < (best_flex + 1) * flex_size; i++) {
Theodore Ts'o88b6edd2009-05-25 11:50:39 -0400398 desc = ext4_get_group_desc(sb, i, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500399 if (ext4_free_inodes_count(sb, desc)) {
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400400 *best_group = i;
401 goto out;
402 }
403 }
404
405 return -1;
406out:
407 return 0;
408}
409
Theodore Ts'oa4912122009-03-12 12:18:34 -0400410struct orlov_stats {
411 __u32 free_inodes;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400412 __u32 free_clusters;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400413 __u32 used_dirs;
414};
415
416/*
417 * Helper function for Orlov's allocator; returns critical information
418 * for a particular block group or flex_bg. If flex_size is 1, then g
419 * is a block group number; otherwise it is flex_bg number.
420 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -0400421static void get_orlov_stats(struct super_block *sb, ext4_group_t g,
422 int flex_size, struct orlov_stats *stats)
Theodore Ts'oa4912122009-03-12 12:18:34 -0400423{
424 struct ext4_group_desc *desc;
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500425 struct flex_groups *flex_group = EXT4_SB(sb)->s_flex_groups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400426
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500427 if (flex_size > 1) {
428 stats->free_inodes = atomic_read(&flex_group[g].free_inodes);
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400429 stats->free_clusters = atomic_read(&flex_group[g].free_clusters);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500430 stats->used_dirs = atomic_read(&flex_group[g].used_dirs);
431 return;
432 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400433
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500434 desc = ext4_get_group_desc(sb, g, NULL);
435 if (desc) {
436 stats->free_inodes = ext4_free_inodes_count(sb, desc);
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400437 stats->free_clusters = ext4_free_group_clusters(sb, desc);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500438 stats->used_dirs = ext4_used_dirs_count(sb, desc);
439 } else {
440 stats->free_inodes = 0;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400441 stats->free_clusters = 0;
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500442 stats->used_dirs = 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400443 }
444}
445
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700446/*
447 * Orlov's allocator for directories.
448 *
449 * We always try to spread first-level directories.
450 *
451 * If there are blockgroups with both free inodes and free blocks counts
452 * not worse than average we return one with smallest directory count.
453 * Otherwise we simply return a random group.
454 *
455 * For the rest rules look so:
456 *
457 * It's OK to put directory into a group unless
458 * it has too many directories already (max_dirs) or
459 * it has too few free inodes left (min_inodes) or
460 * it has too few free blocks left (min_blocks) or
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000461 * Parent's group is preferred, if it doesn't satisfy these
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700462 * conditions we search cyclically through the rest. If none
463 * of the groups look good we just look for a group with more
464 * free inodes than average (starting at parent's group).
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700465 */
466
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500467static int find_group_orlov(struct super_block *sb, struct inode *parent,
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400468 ext4_group_t *group, int mode,
469 const struct qstr *qstr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700470{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500471 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Mingming Cao617ba132006-10-11 01:20:53 -0700472 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o8df96752009-05-01 08:50:38 -0400473 ext4_group_t real_ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700474 int inodes_per_group = EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700475 unsigned int freei, avefreei;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400476 ext4_fsblk_t freeb, avefreec;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700477 unsigned int ndirs;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400478 int max_dirs, min_inodes;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400479 ext4_grpblk_t min_clusters;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400480 ext4_group_t i, grp, g, ngroups;
Mingming Cao617ba132006-10-11 01:20:53 -0700481 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400482 struct orlov_stats stats;
483 int flex_size = ext4_flex_bg_size(sbi);
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400484 struct dx_hash_info hinfo;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400485
Theodore Ts'o8df96752009-05-01 08:50:38 -0400486 ngroups = real_ngroups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400487 if (flex_size > 1) {
Theodore Ts'o8df96752009-05-01 08:50:38 -0400488 ngroups = (real_ngroups + flex_size - 1) >>
Theodore Ts'oa4912122009-03-12 12:18:34 -0400489 sbi->s_log_groups_per_flex;
490 parent_group >>= sbi->s_log_groups_per_flex;
491 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700492
493 freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
494 avefreei = freei / ngroups;
Theodore Ts'o57042652011-09-09 18:56:51 -0400495 freeb = EXT4_C2B(sbi,
496 percpu_counter_read_positive(&sbi->s_freeclusters_counter));
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400497 avefreec = freeb;
498 do_div(avefreec, ngroups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700499 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
500
Theodore Ts'oa4912122009-03-12 12:18:34 -0400501 if (S_ISDIR(mode) &&
502 ((parent == sb->s_root->d_inode) ||
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400503 (ext4_test_inode_flag(parent, EXT4_INODE_TOPDIR)))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700504 int best_ndir = inodes_per_group;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500505 int ret = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700506
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400507 if (qstr) {
508 hinfo.hash_version = DX_HASH_HALF_MD4;
509 hinfo.seed = sbi->s_hash_seed;
510 ext4fs_dirhash(qstr->name, qstr->len, &hinfo);
511 grp = hinfo.hash;
512 } else
513 get_random_bytes(&grp, sizeof(grp));
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500514 parent_group = (unsigned)grp % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700515 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400516 g = (parent_group + i) % ngroups;
517 get_orlov_stats(sb, g, flex_size, &stats);
518 if (!stats.free_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700519 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400520 if (stats.used_dirs >= best_ndir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700521 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400522 if (stats.free_inodes < avefreei)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700523 continue;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400524 if (stats.free_clusters < avefreec)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700525 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400526 grp = g;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500527 ret = 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400528 best_ndir = stats.used_dirs;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700529 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400530 if (ret)
531 goto fallback;
532 found_flex_bg:
533 if (flex_size == 1) {
534 *group = grp;
535 return 0;
536 }
537
538 /*
539 * We pack inodes at the beginning of the flexgroup's
540 * inode tables. Block allocation decisions will do
541 * something similar, although regular files will
542 * start at 2nd block group of the flexgroup. See
543 * ext4_ext_find_goal() and ext4_find_near().
544 */
545 grp *= flex_size;
546 for (i = 0; i < flex_size; i++) {
Theodore Ts'o8df96752009-05-01 08:50:38 -0400547 if (grp+i >= real_ngroups)
Theodore Ts'oa4912122009-03-12 12:18:34 -0400548 break;
549 desc = ext4_get_group_desc(sb, grp+i, NULL);
550 if (desc && ext4_free_inodes_count(sb, desc)) {
551 *group = grp+i;
552 return 0;
553 }
554 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700555 goto fallback;
556 }
557
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700558 max_dirs = ndirs / ngroups + inodes_per_group / 16;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400559 min_inodes = avefreei - inodes_per_group*flex_size / 4;
560 if (min_inodes < 1)
561 min_inodes = 1;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400562 min_clusters = avefreec - EXT4_CLUSTERS_PER_GROUP(sb)*flex_size / 4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700563
Theodore Ts'oa4912122009-03-12 12:18:34 -0400564 /*
565 * Start looking in the flex group where we last allocated an
566 * inode for this parent directory
567 */
568 if (EXT4_I(parent)->i_last_alloc_group != ~0) {
569 parent_group = EXT4_I(parent)->i_last_alloc_group;
570 if (flex_size > 1)
571 parent_group >>= sbi->s_log_groups_per_flex;
572 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700573
574 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400575 grp = (parent_group + i) % ngroups;
576 get_orlov_stats(sb, grp, flex_size, &stats);
577 if (stats.used_dirs >= max_dirs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700578 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400579 if (stats.free_inodes < min_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700580 continue;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400581 if (stats.free_clusters < min_clusters)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700582 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400583 goto found_flex_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700584 }
585
586fallback:
Theodore Ts'o8df96752009-05-01 08:50:38 -0400587 ngroups = real_ngroups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400588 avefreei = freei / ngroups;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400589fallback_retry:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400590 parent_group = EXT4_I(parent)->i_block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700591 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400592 grp = (parent_group + i) % ngroups;
593 desc = ext4_get_group_desc(sb, grp, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500594 if (desc && ext4_free_inodes_count(sb, desc) &&
Theodore Ts'oa4912122009-03-12 12:18:34 -0400595 ext4_free_inodes_count(sb, desc) >= avefreei) {
596 *group = grp;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500597 return 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400598 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700599 }
600
601 if (avefreei) {
602 /*
603 * The free-inodes counter is approximate, and for really small
604 * filesystems the above test can fail to find any blockgroups
605 */
606 avefreei = 0;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400607 goto fallback_retry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700608 }
609
610 return -1;
611}
612
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500613static int find_group_other(struct super_block *sb, struct inode *parent,
Theodore Ts'oa4912122009-03-12 12:18:34 -0400614 ext4_group_t *group, int mode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700615{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500616 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400617 ext4_group_t i, last, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700618 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400619 int flex_size = ext4_flex_bg_size(EXT4_SB(sb));
620
621 /*
622 * Try to place the inode is the same flex group as its
623 * parent. If we can't find space, use the Orlov algorithm to
624 * find another flex group, and store that information in the
625 * parent directory's inode information so that use that flex
626 * group for future allocations.
627 */
628 if (flex_size > 1) {
629 int retry = 0;
630
631 try_again:
632 parent_group &= ~(flex_size-1);
633 last = parent_group + flex_size;
634 if (last > ngroups)
635 last = ngroups;
636 for (i = parent_group; i < last; i++) {
637 desc = ext4_get_group_desc(sb, i, NULL);
638 if (desc && ext4_free_inodes_count(sb, desc)) {
639 *group = i;
640 return 0;
641 }
642 }
643 if (!retry && EXT4_I(parent)->i_last_alloc_group != ~0) {
644 retry = 1;
645 parent_group = EXT4_I(parent)->i_last_alloc_group;
646 goto try_again;
647 }
648 /*
649 * If this didn't work, use the Orlov search algorithm
650 * to find a new flex group; we pass in the mode to
651 * avoid the topdir algorithms.
652 */
653 *group = parent_group + flex_size;
654 if (*group > ngroups)
655 *group = 0;
Peter Huewe7dc57612011-02-21 21:01:42 -0500656 return find_group_orlov(sb, parent, group, mode, NULL);
Theodore Ts'oa4912122009-03-12 12:18:34 -0400657 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700658
659 /*
660 * Try to place the inode in its parent directory
661 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500662 *group = parent_group;
663 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500664 if (desc && ext4_free_inodes_count(sb, desc) &&
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400665 ext4_free_group_clusters(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500666 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700667
668 /*
669 * We're going to place this inode in a different blockgroup from its
670 * parent. We want to cause files in a common directory to all land in
671 * the same blockgroup. But we want files which are in a different
672 * directory which shares a blockgroup with our parent to land in a
673 * different blockgroup.
674 *
675 * So add our directory's i_ino into the starting point for the hash.
676 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500677 *group = (*group + parent->i_ino) % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700678
679 /*
680 * Use a quadratic hash to find a group with a free inode and some free
681 * blocks.
682 */
683 for (i = 1; i < ngroups; i <<= 1) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500684 *group += i;
685 if (*group >= ngroups)
686 *group -= ngroups;
687 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500688 if (desc && ext4_free_inodes_count(sb, desc) &&
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400689 ext4_free_group_clusters(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500690 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700691 }
692
693 /*
694 * That failed: try linear search for a free inode, even if that group
695 * has no free blocks.
696 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500697 *group = parent_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700698 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500699 if (++*group >= ngroups)
700 *group = 0;
701 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500702 if (desc && ext4_free_inodes_count(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500703 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700704 }
705
706 return -1;
707}
708
709/*
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500710 * claim the inode from the inode bitmap. If the group
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400711 * is uninit we need to take the groups's ext4_group_lock
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500712 * and clear the uninit flag. The inode bitmap update
713 * and group desc uninit flag clear should be done
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400714 * after holding ext4_group_lock so that ext4_read_inode_bitmap
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500715 * doesn't race with the ext4_claim_inode
716 */
717static int ext4_claim_inode(struct super_block *sb,
718 struct buffer_head *inode_bitmap_bh,
719 unsigned long ino, ext4_group_t group, int mode)
720{
721 int free = 0, retval = 0, count;
722 struct ext4_sb_info *sbi = EXT4_SB(sb);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400723 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500724 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, group, NULL);
725
Lukas Czernerbfff6872010-10-27 21:30:05 -0400726 /*
727 * We have to be sure that new inode allocation does not race with
728 * inode table initialization, because otherwise we may end up
729 * allocating and writing new inode right before sb_issue_zeroout
730 * takes place and overwriting our new inode with zeroes. So we
731 * take alloc_sem to prevent it.
732 */
733 down_read(&grp->alloc_sem);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400734 ext4_lock_group(sb, group);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500735 if (ext4_set_bit(ino, inode_bitmap_bh->b_data)) {
736 /* not a free inode */
737 retval = 1;
738 goto err_ret;
739 }
740 ino++;
741 if ((group == 0 && ino < EXT4_FIRST_INO(sb)) ||
742 ino > EXT4_INODES_PER_GROUP(sb)) {
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400743 ext4_unlock_group(sb, group);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400744 up_read(&grp->alloc_sem);
Eric Sandeen12062dd2010-02-15 14:19:27 -0500745 ext4_error(sb, "reserved inode or inode > inodes count - "
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500746 "block_group = %u, inode=%lu", group,
747 ino + group * EXT4_INODES_PER_GROUP(sb));
748 return 1;
749 }
750 /* If we didn't allocate from within the initialized part of the inode
751 * table then we need to initialize up to this inode. */
752 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
753
754 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
755 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT);
756 /* When marking the block group with
757 * ~EXT4_BG_INODE_UNINIT we don't want to depend
758 * on the value of bg_itable_unused even though
759 * mke2fs could have initialized the same for us.
760 * Instead we calculated the value below
761 */
762
763 free = 0;
764 } else {
765 free = EXT4_INODES_PER_GROUP(sb) -
766 ext4_itable_unused_count(sb, gdp);
767 }
768
769 /*
770 * Check the relative inode number against the last used
771 * relative inode number in this group. if it is greater
772 * we need to update the bg_itable_unused count
773 *
774 */
775 if (ino > free)
776 ext4_itable_unused_set(sb, gdp,
777 (EXT4_INODES_PER_GROUP(sb) - ino));
778 }
779 count = ext4_free_inodes_count(sb, gdp) - 1;
780 ext4_free_inodes_set(sb, gdp, count);
781 if (S_ISDIR(mode)) {
782 count = ext4_used_dirs_count(sb, gdp) + 1;
783 ext4_used_dirs_set(sb, gdp, count);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500784 if (sbi->s_log_groups_per_flex) {
785 ext4_group_t f = ext4_flex_group(sbi, group);
786
Eric Sandeenc4caae22010-03-23 21:32:00 -0400787 atomic_inc(&sbi->s_flex_groups[f].used_dirs);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500788 }
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500789 }
790 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
791err_ret:
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400792 ext4_unlock_group(sb, group);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400793 up_read(&grp->alloc_sem);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500794 return retval;
795}
796
797/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700798 * There are two policies for allocating an inode. If the new inode is
799 * a directory, then a forward search is made for a block group with both
800 * free space and a low directory-to-inode ratio; if that fails, then of
801 * the groups with above-average free space, that group with the fewest
802 * directories already is chosen.
803 *
804 * For other inodes, search forward from the parent directory's block
805 * group to find a free inode.
806 */
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400807struct inode *ext4_new_inode(handle_t *handle, struct inode *dir, int mode,
Andreas Dilger11013912009-06-13 11:45:35 -0400808 const struct qstr *qstr, __u32 goal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700809{
810 struct super_block *sb;
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500811 struct buffer_head *inode_bitmap_bh = NULL;
812 struct buffer_head *group_desc_bh;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400813 ext4_group_t ngroups, group = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700814 unsigned long ino = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400815 struct inode *inode;
816 struct ext4_group_desc *gdp = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -0700817 struct ext4_inode_info *ei;
818 struct ext4_sb_info *sbi;
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500819 int ret2, err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700820 struct inode *ret;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500821 ext4_group_t i;
Theodore Ts'o2842c3b2009-03-12 12:20:01 -0400822 static int once = 1;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400823 ext4_group_t flex_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700824
825 /* Cannot create files in a deleted directory */
826 if (!dir || !dir->i_nlink)
827 return ERR_PTR(-EPERM);
828
829 sb = dir->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400830 ngroups = ext4_get_groups_count(sb);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400831 trace_ext4_request_inode(dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700832 inode = new_inode(sb);
833 if (!inode)
834 return ERR_PTR(-ENOMEM);
Mingming Cao617ba132006-10-11 01:20:53 -0700835 ei = EXT4_I(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700836 sbi = EXT4_SB(sb);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400837
Andreas Dilger11013912009-06-13 11:45:35 -0400838 if (!goal)
839 goal = sbi->s_inode_goal;
840
Johann Lombardie6462862009-07-05 23:45:11 -0400841 if (goal && goal <= le32_to_cpu(sbi->s_es->s_inodes_count)) {
Andreas Dilger11013912009-06-13 11:45:35 -0400842 group = (goal - 1) / EXT4_INODES_PER_GROUP(sb);
843 ino = (goal - 1) % EXT4_INODES_PER_GROUP(sb);
844 ret2 = 0;
845 goto got_group;
846 }
847
Theodore Ts'oa4912122009-03-12 12:18:34 -0400848 if (sbi->s_log_groups_per_flex && test_opt(sb, OLDALLOC)) {
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400849 ret2 = find_group_flex(sb, dir, &group);
Theodore Ts'o05bf9e82009-02-21 12:13:24 -0500850 if (ret2 == -1) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400851 ret2 = find_group_other(sb, dir, &group, mode);
Chuck Ebbert6b82f3c2009-04-14 07:37:40 -0400852 if (ret2 == 0 && once) {
Theodore Ts'o2842c3b2009-03-12 12:20:01 -0400853 once = 0;
Theodore Ts'o05bf9e82009-02-21 12:13:24 -0500854 printk(KERN_NOTICE "ext4: find_group_flex "
855 "failed, fallback succeeded dir %lu\n",
856 dir->i_ino);
Chuck Ebbert6b82f3c2009-04-14 07:37:40 -0400857 }
Theodore Ts'o05bf9e82009-02-21 12:13:24 -0500858 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400859 goto got_group;
860 }
861
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700862 if (S_ISDIR(mode)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400863 if (test_opt(sb, OLDALLOC))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500864 ret2 = find_group_dir(sb, dir, &group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700865 else
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400866 ret2 = find_group_orlov(sb, dir, &group, mode, qstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700867 } else
Theodore Ts'oa4912122009-03-12 12:18:34 -0400868 ret2 = find_group_other(sb, dir, &group, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700869
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400870got_group:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400871 EXT4_I(dir)->i_last_alloc_group = group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700872 err = -ENOSPC;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500873 if (ret2 == -1)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700874 goto out;
875
Andreas Dilger11013912009-06-13 11:45:35 -0400876 for (i = 0; i < ngroups; i++, ino = 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700877 err = -EIO;
878
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500879 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700880 if (!gdp)
881 goto fail;
882
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500883 brelse(inode_bitmap_bh);
884 inode_bitmap_bh = ext4_read_inode_bitmap(sb, group);
885 if (!inode_bitmap_bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700886 goto fail;
887
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700888repeat_in_this_group:
Mingming Cao617ba132006-10-11 01:20:53 -0700889 ino = ext4_find_next_zero_bit((unsigned long *)
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500890 inode_bitmap_bh->b_data,
891 EXT4_INODES_PER_GROUP(sb), ino);
892
Mingming Cao617ba132006-10-11 01:20:53 -0700893 if (ino < EXT4_INODES_PER_GROUP(sb)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700894
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500895 BUFFER_TRACE(inode_bitmap_bh, "get_write_access");
896 err = ext4_journal_get_write_access(handle,
897 inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700898 if (err)
899 goto fail;
900
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500901 BUFFER_TRACE(group_desc_bh, "get_write_access");
902 err = ext4_journal_get_write_access(handle,
903 group_desc_bh);
904 if (err)
905 goto fail;
906 if (!ext4_claim_inode(sb, inode_bitmap_bh,
907 ino, group, mode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700908 /* we won it */
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500909 BUFFER_TRACE(inode_bitmap_bh,
Frank Mayhar03901312009-01-07 00:06:22 -0500910 "call ext4_handle_dirty_metadata");
911 err = ext4_handle_dirty_metadata(handle,
Curt Wohlgemuth73b50c12010-02-16 15:06:29 -0500912 NULL,
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500913 inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700914 if (err)
915 goto fail;
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500916 /* zero bit is inode number 1*/
917 ino++;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700918 goto got;
919 }
920 /* we lost it */
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500921 ext4_handle_release_buffer(handle, inode_bitmap_bh);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500922 ext4_handle_release_buffer(handle, group_desc_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700923
Mingming Cao617ba132006-10-11 01:20:53 -0700924 if (++ino < EXT4_INODES_PER_GROUP(sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700925 goto repeat_in_this_group;
926 }
927
928 /*
929 * This case is possible in concurrent environment. It is very
930 * rare. We cannot repeat the find_group_xxx() call because
931 * that will simply return the same blockgroup, because the
932 * group descriptor metadata has not yet been updated.
933 * So we just go onto the next blockgroup.
934 */
Theodore Ts'o8df96752009-05-01 08:50:38 -0400935 if (++group == ngroups)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700936 group = 0;
937 }
938 err = -ENOSPC;
939 goto out;
940
941got:
Andreas Dilger717d50e2007-10-16 18:38:25 -0400942 /* We may have to initialize the block bitmap if it isn't already */
943 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM) &&
944 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500945 struct buffer_head *block_bitmap_bh;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400946
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500947 block_bitmap_bh = ext4_read_block_bitmap(sb, group);
948 BUFFER_TRACE(block_bitmap_bh, "get block bitmap access");
949 err = ext4_journal_get_write_access(handle, block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400950 if (err) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500951 brelse(block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400952 goto fail;
953 }
954
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400955 BUFFER_TRACE(block_bitmap_bh, "dirty block bitmap");
956 err = ext4_handle_dirty_metadata(handle, NULL, block_bitmap_bh);
957 brelse(block_bitmap_bh);
958
Andreas Dilger717d50e2007-10-16 18:38:25 -0400959 /* recheck and clear flag under lock if we still need to */
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400960 ext4_lock_group(sb, group);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400961 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500962 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400963 ext4_free_group_clusters_set(sb, gdp,
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400964 ext4_free_blocks_after_init(sb, group, gdp));
Frederic Bohe23712a92008-11-07 09:21:01 -0500965 gdp->bg_checksum = ext4_group_desc_csum(sbi, group,
966 gdp);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400967 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400968 ext4_unlock_group(sb, group);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400969
Andreas Dilger717d50e2007-10-16 18:38:25 -0400970 if (err)
971 goto fail;
972 }
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500973 BUFFER_TRACE(group_desc_bh, "call ext4_handle_dirty_metadata");
974 err = ext4_handle_dirty_metadata(handle, NULL, group_desc_bh);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500975 if (err)
976 goto fail;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700977
978 percpu_counter_dec(&sbi->s_freeinodes_counter);
979 if (S_ISDIR(mode))
980 percpu_counter_inc(&sbi->s_dirs_counter);
Theodore Ts'oa0375152010-06-11 23:14:04 -0400981 ext4_mark_super_dirty(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700982
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400983 if (sbi->s_log_groups_per_flex) {
984 flex_group = ext4_flex_group(sbi, group);
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500985 atomic_dec(&sbi->s_flex_groups[flex_group].free_inodes);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400986 }
987
Dmitry Monakhovb10b8522010-03-04 17:31:51 +0300988 if (test_opt(sb, GRPID)) {
989 inode->i_mode = mode;
990 inode->i_uid = current_fsuid();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700991 inode->i_gid = dir->i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700992 } else
Dmitry Monakhovb10b8522010-03-04 17:31:51 +0300993 inode_init_owner(inode, dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700994
Andreas Dilger717d50e2007-10-16 18:38:25 -0400995 inode->i_ino = ino + group * EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700996 /* This is the optimal IO size (for stat), not the fs block size */
997 inode->i_blocks = 0;
Kalpak Shahef7f3832007-07-18 09:15:20 -0400998 inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
999 ext4_current_time(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001000
1001 memset(ei->i_data, 0, sizeof(ei->i_data));
1002 ei->i_dir_start_lookup = 0;
1003 ei->i_disksize = 0;
1004
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001005 /*
Duane Griffin2dc6b0d2009-02-15 18:09:20 -05001006 * Don't inherit extent flag from directory, amongst others. We set
1007 * extent flag on newly created directory and file only if -o extent
1008 * mount option is specified
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001009 */
Duane Griffin2dc6b0d2009-02-15 18:09:20 -05001010 ei->i_flags =
1011 ext4_mask_flags(mode, EXT4_I(dir)->i_flags & EXT4_FL_INHERITED);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001012 ei->i_file_acl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001013 ei->i_dtime = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001014 ei->i_block_group = group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04001015 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001016
Mingming Cao617ba132006-10-11 01:20:53 -07001017 ext4_set_inode_flags(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001018 if (IS_DIRSYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05001019 ext4_handle_sync(handle);
Al Viro6b38e842008-12-30 02:03:31 -05001020 if (insert_inode_locked(inode) < 0) {
1021 err = -EINVAL;
1022 goto fail_drop;
1023 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001024 spin_lock(&sbi->s_next_gen_lock);
1025 inode->i_generation = sbi->s_next_generation++;
1026 spin_unlock(&sbi->s_next_gen_lock);
1027
Theodore Ts'o353eb832011-01-10 12:18:25 -05001028 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001029 ext4_set_inode_state(inode, EXT4_STATE_NEW);
Kalpak Shahef7f3832007-07-18 09:15:20 -04001030
1031 ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001032
1033 ret = inode;
Christoph Hellwig871a2932010-03-03 09:05:07 -05001034 dquot_initialize(inode);
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001035 err = dquot_alloc_inode(inode);
1036 if (err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001037 goto fail_drop;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001038
Mingming Cao617ba132006-10-11 01:20:53 -07001039 err = ext4_init_acl(handle, inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001040 if (err)
1041 goto fail_free_drop;
1042
Eric Paris2a7dba32011-02-01 11:05:39 -05001043 err = ext4_init_security(handle, inode, dir, qstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001044 if (err)
1045 goto fail_free_drop;
1046
Theodore Ts'o83982b62009-01-06 14:53:16 -05001047 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
Eric Sandeene4079a12008-07-11 19:27:31 -04001048 /* set extent flag only for directory, file and normal symlink*/
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -04001049 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) {
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001050 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001051 ext4_ext_tree_init(handle, inode);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001052 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001053 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001054
Theodore Ts'o688f8692011-03-16 17:16:31 -04001055 if (ext4_handle_valid(handle)) {
1056 ei->i_sync_tid = handle->h_transaction->t_tid;
1057 ei->i_datasync_tid = handle->h_transaction->t_tid;
1058 }
1059
Aneesh Kumar K.V8753e882008-04-29 22:00:36 -04001060 err = ext4_mark_inode_dirty(handle, inode);
1061 if (err) {
1062 ext4_std_error(sb, err);
1063 goto fail_free_drop;
1064 }
1065
Mingming Cao617ba132006-10-11 01:20:53 -07001066 ext4_debug("allocating inode %lu\n", inode->i_ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001067 trace_ext4_allocate_inode(inode, dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001068 goto really_out;
1069fail:
Mingming Cao617ba132006-10-11 01:20:53 -07001070 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001071out:
1072 iput(inode);
1073 ret = ERR_PTR(err);
1074really_out:
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -05001075 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001076 return ret;
1077
1078fail_free_drop:
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001079 dquot_free_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001080
1081fail_drop:
Christoph Hellwig9f754752010-03-03 09:05:05 -05001082 dquot_drop(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001083 inode->i_flags |= S_NOQUOTA;
1084 inode->i_nlink = 0;
Al Viro6b38e842008-12-30 02:03:31 -05001085 unlock_new_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001086 iput(inode);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -05001087 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001088 return ERR_PTR(err);
1089}
1090
1091/* Verify that we are loading a valid orphan from disk */
Mingming Cao617ba132006-10-11 01:20:53 -07001092struct inode *ext4_orphan_get(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001093{
Mingming Cao617ba132006-10-11 01:20:53 -07001094 unsigned long max_ino = le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001095 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001096 int bit;
David Howells1d1fe1e2008-02-07 00:15:37 -08001097 struct buffer_head *bitmap_bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001098 struct inode *inode = NULL;
David Howells1d1fe1e2008-02-07 00:15:37 -08001099 long err = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001100
1101 /* Error cases - e2fsck has already cleaned up for us */
1102 if (ino > max_ino) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001103 ext4_warning(sb, "bad orphan ino %lu! e2fsck was run?", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001104 goto error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001105 }
1106
Mingming Cao617ba132006-10-11 01:20:53 -07001107 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
1108 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -04001109 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001110 if (!bitmap_bh) {
Eric Sandeen12062dd2010-02-15 14:19:27 -05001111 ext4_warning(sb, "inode bitmap error for orphan %lu", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001112 goto error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001113 }
1114
1115 /* Having the inode bit set should be a 100% indicator that this
1116 * is a valid orphan (no e2fsck run on fs). Orphans also include
1117 * inodes that were being truncated, so we can't check i_nlink==0.
1118 */
David Howells1d1fe1e2008-02-07 00:15:37 -08001119 if (!ext4_test_bit(bit, bitmap_bh->b_data))
1120 goto bad_orphan;
1121
1122 inode = ext4_iget(sb, ino);
1123 if (IS_ERR(inode))
1124 goto iget_failed;
1125
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001126 /*
1127 * If the orphans has i_nlinks > 0 then it should be able to be
1128 * truncated, otherwise it won't be removed from the orphan list
1129 * during processing and an infinite loop will result.
1130 */
1131 if (inode->i_nlink && !ext4_can_truncate(inode))
1132 goto bad_orphan;
1133
David Howells1d1fe1e2008-02-07 00:15:37 -08001134 if (NEXT_ORPHAN(inode) > max_ino)
1135 goto bad_orphan;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001136 brelse(bitmap_bh);
1137 return inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08001138
1139iget_failed:
1140 err = PTR_ERR(inode);
1141 inode = NULL;
1142bad_orphan:
Eric Sandeen12062dd2010-02-15 14:19:27 -05001143 ext4_warning(sb, "bad orphan inode %lu! e2fsck was run?", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001144 printk(KERN_NOTICE "ext4_test_bit(bit=%d, block=%llu) = %d\n",
1145 bit, (unsigned long long)bitmap_bh->b_blocknr,
1146 ext4_test_bit(bit, bitmap_bh->b_data));
1147 printk(KERN_NOTICE "inode=%p\n", inode);
1148 if (inode) {
1149 printk(KERN_NOTICE "is_bad_inode(inode)=%d\n",
1150 is_bad_inode(inode));
1151 printk(KERN_NOTICE "NEXT_ORPHAN(inode)=%u\n",
1152 NEXT_ORPHAN(inode));
1153 printk(KERN_NOTICE "max_ino=%lu\n", max_ino);
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001154 printk(KERN_NOTICE "i_nlink=%u\n", inode->i_nlink);
David Howells1d1fe1e2008-02-07 00:15:37 -08001155 /* Avoid freeing blocks if we got a bad deleted inode */
1156 if (inode->i_nlink == 0)
1157 inode->i_blocks = 0;
1158 iput(inode);
1159 }
1160 brelse(bitmap_bh);
1161error:
1162 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001163}
1164
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001165unsigned long ext4_count_free_inodes(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001166{
1167 unsigned long desc_count;
Mingming Cao617ba132006-10-11 01:20:53 -07001168 struct ext4_group_desc *gdp;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001169 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07001170#ifdef EXT4FS_DEBUG
1171 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001172 unsigned long bitmap_count, x;
1173 struct buffer_head *bitmap_bh = NULL;
1174
Mingming Cao617ba132006-10-11 01:20:53 -07001175 es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001176 desc_count = 0;
1177 bitmap_count = 0;
1178 gdp = NULL;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001179 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001180 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001181 if (!gdp)
1182 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001183 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001184 brelse(bitmap_bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -04001185 bitmap_bh = ext4_read_inode_bitmap(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001186 if (!bitmap_bh)
1187 continue;
1188
Mingming Cao617ba132006-10-11 01:20:53 -07001189 x = ext4_count_free(bitmap_bh, EXT4_INODES_PER_GROUP(sb) / 8);
Eric Sandeenc549a952008-01-28 23:58:27 -05001190 printk(KERN_DEBUG "group %lu: stored = %d, counted = %lu\n",
Peng Tao785b4b32009-07-27 21:44:40 -04001191 (unsigned long) i, ext4_free_inodes_count(sb, gdp), x);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001192 bitmap_count += x;
1193 }
1194 brelse(bitmap_bh);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001195 printk(KERN_DEBUG "ext4_count_free_inodes: "
1196 "stored = %u, computed = %lu, %lu\n",
1197 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001198 return desc_count;
1199#else
1200 desc_count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001201 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001202 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001203 if (!gdp)
1204 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001205 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001206 cond_resched();
1207 }
1208 return desc_count;
1209#endif
1210}
1211
1212/* Called at mount-time, super-block is locked */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001213unsigned long ext4_count_dirs(struct super_block * sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001214{
1215 unsigned long count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001216 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001217
Theodore Ts'o8df96752009-05-01 08:50:38 -04001218 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001219 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001220 if (!gdp)
1221 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001222 count += ext4_used_dirs_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001223 }
1224 return count;
1225}
Lukas Czernerbfff6872010-10-27 21:30:05 -04001226
1227/*
1228 * Zeroes not yet zeroed inode table - just write zeroes through the whole
1229 * inode table. Must be called without any spinlock held. The only place
1230 * where it is called from on active part of filesystem is ext4lazyinit
1231 * thread, so we do not need any special locks, however we have to prevent
1232 * inode allocation from the current group, so we take alloc_sem lock, to
1233 * block ext4_claim_inode until we are finished.
1234 */
1235extern int ext4_init_inode_table(struct super_block *sb, ext4_group_t group,
1236 int barrier)
1237{
1238 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
1239 struct ext4_sb_info *sbi = EXT4_SB(sb);
1240 struct ext4_group_desc *gdp = NULL;
1241 struct buffer_head *group_desc_bh;
1242 handle_t *handle;
1243 ext4_fsblk_t blk;
1244 int num, ret = 0, used_blks = 0;
Lukas Czernerbfff6872010-10-27 21:30:05 -04001245
1246 /* This should not happen, but just to be sure check this */
1247 if (sb->s_flags & MS_RDONLY) {
1248 ret = 1;
1249 goto out;
1250 }
1251
1252 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
1253 if (!gdp)
1254 goto out;
1255
1256 /*
1257 * We do not need to lock this, because we are the only one
1258 * handling this flag.
1259 */
1260 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED))
1261 goto out;
1262
1263 handle = ext4_journal_start_sb(sb, 1);
1264 if (IS_ERR(handle)) {
1265 ret = PTR_ERR(handle);
1266 goto out;
1267 }
1268
1269 down_write(&grp->alloc_sem);
1270 /*
1271 * If inode bitmap was already initialized there may be some
1272 * used inodes so we need to skip blocks with used inodes in
1273 * inode table.
1274 */
1275 if (!(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)))
1276 used_blks = DIV_ROUND_UP((EXT4_INODES_PER_GROUP(sb) -
1277 ext4_itable_unused_count(sb, gdp)),
1278 sbi->s_inodes_per_block);
1279
Lukas Czerner857ac882010-10-27 21:30:05 -04001280 if ((used_blks < 0) || (used_blks > sbi->s_itb_per_group)) {
1281 ext4_error(sb, "Something is wrong with group %u\n"
1282 "Used itable blocks: %d"
1283 "itable unused count: %u\n",
1284 group, used_blks,
1285 ext4_itable_unused_count(sb, gdp));
1286 ret = 1;
Yongqiang Yang33853a02011-08-01 06:32:19 -04001287 goto err_out;
Lukas Czerner857ac882010-10-27 21:30:05 -04001288 }
1289
Lukas Czernerbfff6872010-10-27 21:30:05 -04001290 blk = ext4_inode_table(sb, gdp) + used_blks;
1291 num = sbi->s_itb_per_group - used_blks;
1292
1293 BUFFER_TRACE(group_desc_bh, "get_write_access");
1294 ret = ext4_journal_get_write_access(handle,
1295 group_desc_bh);
1296 if (ret)
1297 goto err_out;
1298
Lukas Czernerbfff6872010-10-27 21:30:05 -04001299 /*
1300 * Skip zeroout if the inode table is full. But we set the ZEROED
1301 * flag anyway, because obviously, when it is full it does not need
1302 * further zeroing.
1303 */
1304 if (unlikely(num == 0))
1305 goto skip_zeroout;
1306
1307 ext4_debug("going to zero out inode table in group %d\n",
1308 group);
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001309 ret = sb_issue_zeroout(sb, blk, num, GFP_NOFS);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001310 if (ret < 0)
1311 goto err_out;
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001312 if (barrier)
1313 blkdev_issue_flush(sb->s_bdev, GFP_NOFS, NULL);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001314
1315skip_zeroout:
1316 ext4_lock_group(sb, group);
1317 gdp->bg_flags |= cpu_to_le16(EXT4_BG_INODE_ZEROED);
1318 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
1319 ext4_unlock_group(sb, group);
1320
1321 BUFFER_TRACE(group_desc_bh,
1322 "call ext4_handle_dirty_metadata");
1323 ret = ext4_handle_dirty_metadata(handle, NULL,
1324 group_desc_bh);
1325
1326err_out:
1327 up_write(&grp->alloc_sem);
1328 ext4_journal_stop(handle);
1329out:
1330 return ret;
1331}