blob: fb897ec183c8451e81ee9c780044629f86b819bd [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);
Darrick J. Wong41a246d2012-04-29 18:33:10 -040085 ext4_inode_bitmap_csum_set(sb, block_group, gdp, bh,
86 EXT4_INODES_PER_GROUP(sb) / 8);
Andreas Dilger717d50e2007-10-16 18:38:25 -040087 return 0;
88 }
89
90 memset(bh->b_data, 0, (EXT4_INODES_PER_GROUP(sb) + 7) / 8);
Theodore Ts'o61d08672010-10-27 21:30:15 -040091 ext4_mark_bitmap_end(EXT4_INODES_PER_GROUP(sb), sb->s_blocksize * 8,
Andreas Dilger717d50e2007-10-16 18:38:25 -040092 bh->b_data);
Darrick J. Wong41a246d2012-04-29 18:33:10 -040093 ext4_inode_bitmap_csum_set(sb, block_group, gdp, bh,
94 EXT4_INODES_PER_GROUP(sb) / 8);
95 gdp->bg_checksum = ext4_group_desc_csum(sbi, block_group, gdp);
Andreas Dilger717d50e2007-10-16 18:38:25 -040096
97 return EXT4_INODES_PER_GROUP(sb);
98}
Dave Kleikampac27a0e2006-10-11 01:20:50 -070099
Theodore Ts'o813e5722012-02-20 17:52:46 -0500100void ext4_end_bitmap_read(struct buffer_head *bh, int uptodate)
101{
102 if (uptodate) {
103 set_buffer_uptodate(bh);
104 set_bitmap_uptodate(bh);
105 }
106 unlock_buffer(bh);
107 put_bh(bh);
108}
109
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700110/*
111 * Read the inode allocation bitmap for a given block_group, reading
112 * into the specified slot in the superblock's bitmap cache.
113 *
114 * Return buffer_head of bitmap on success or NULL.
115 */
116static struct buffer_head *
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400117ext4_read_inode_bitmap(struct super_block *sb, ext4_group_t block_group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700118{
Mingming Cao617ba132006-10-11 01:20:53 -0700119 struct ext4_group_desc *desc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700120 struct buffer_head *bh = NULL;
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400121 ext4_fsblk_t bitmap_blk;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700122
Mingming Cao617ba132006-10-11 01:20:53 -0700123 desc = ext4_get_group_desc(sb, block_group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700124 if (!desc)
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400125 return NULL;
Lukas Czernerbfff6872010-10-27 21:30:05 -0400126
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400127 bitmap_blk = ext4_inode_bitmap(sb, desc);
128 bh = sb_getblk(sb, bitmap_blk);
129 if (unlikely(!bh)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500130 ext4_error(sb, "Cannot read inode bitmap - "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500131 "block_group = %u, inode_bitmap = %llu",
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400132 block_group, bitmap_blk);
133 return NULL;
134 }
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500135 if (bitmap_uptodate(bh))
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400136 goto verify;
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400137
Frederic Bohec806e682008-10-10 08:09:18 -0400138 lock_buffer(bh);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500139 if (bitmap_uptodate(bh)) {
140 unlock_buffer(bh);
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400141 goto verify;
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500142 }
Lukas Czernerbfff6872010-10-27 21:30:05 -0400143
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400144 ext4_lock_group(sb, block_group);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400145 if (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
146 ext4_init_inode_bitmap(sb, bh, block_group, desc);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500147 set_bitmap_uptodate(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400148 set_buffer_uptodate(bh);
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400149 set_buffer_verified(bh);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400150 ext4_unlock_group(sb, block_group);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500151 unlock_buffer(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400152 return bh;
153 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400154 ext4_unlock_group(sb, block_group);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400155
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500156 if (buffer_uptodate(bh)) {
157 /*
158 * if not uninit if bh is uptodate,
159 * bitmap is also uptodate
160 */
161 set_bitmap_uptodate(bh);
162 unlock_buffer(bh);
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400163 goto verify;
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500164 }
165 /*
Theodore Ts'o813e5722012-02-20 17:52:46 -0500166 * submit the buffer_head for reading
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500167 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -0400168 trace_ext4_load_inode_bitmap(sb, block_group);
Theodore Ts'o813e5722012-02-20 17:52:46 -0500169 bh->b_end_io = ext4_end_bitmap_read;
170 get_bh(bh);
171 submit_bh(READ, bh);
172 wait_on_buffer(bh);
173 if (!buffer_uptodate(bh)) {
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400174 put_bh(bh);
Eric Sandeen12062dd2010-02-15 14:19:27 -0500175 ext4_error(sb, "Cannot read inode bitmap - "
Theodore Ts'o813e5722012-02-20 17:52:46 -0500176 "block_group = %u, inode_bitmap = %llu",
177 block_group, bitmap_blk);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400178 return NULL;
179 }
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400180
181verify:
182 ext4_lock_group(sb, block_group);
183 if (!buffer_verified(bh) &&
184 !ext4_inode_bitmap_csum_verify(sb, block_group, desc, bh,
185 EXT4_INODES_PER_GROUP(sb) / 8)) {
186 ext4_unlock_group(sb, block_group);
187 put_bh(bh);
188 ext4_error(sb, "Corrupt inode bitmap - block_group = %u, "
189 "inode_bitmap = %llu", block_group, bitmap_blk);
190 return NULL;
191 }
192 ext4_unlock_group(sb, block_group);
193 set_buffer_verified(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700194 return bh;
195}
196
197/*
198 * NOTE! When we get the inode, we're the only people
199 * that have access to it, and as such there are no
200 * race conditions we have to worry about. The inode
201 * is not on the hash-lists, and it cannot be reached
202 * through the filesystem because the directory entry
203 * has been deleted earlier.
204 *
205 * HOWEVER: we must make sure that we get no aliases,
206 * which means that we have to call "clear_inode()"
207 * _before_ we mark the inode not in use in the inode
208 * bitmaps. Otherwise a newly created file might use
209 * the same inode number (not actually the same pointer
210 * though), and then we'd have two inodes sharing the
211 * same inode number and space on the harddisk.
212 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400213void ext4_free_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700214{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400215 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700216 int is_directory;
217 unsigned long ino;
218 struct buffer_head *bitmap_bh = NULL;
219 struct buffer_head *bh2;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500220 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700221 unsigned long bit;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400222 struct ext4_group_desc *gdp;
223 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -0700224 struct ext4_sb_info *sbi;
Eric Sandeen7ce9d5d2009-03-04 18:38:18 -0500225 int fatal = 0, err, count, cleared;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700226
Theodore Ts'o92b97812012-03-19 23:41:49 -0400227 if (!sb) {
228 printk(KERN_ERR "EXT4-fs: %s:%d: inode on "
229 "nonexistent device\n", __func__, __LINE__);
230 return;
231 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700232 if (atomic_read(&inode->i_count) > 1) {
Theodore Ts'o92b97812012-03-19 23:41:49 -0400233 ext4_msg(sb, KERN_ERR, "%s:%d: inode #%lu: count=%d",
234 __func__, __LINE__, inode->i_ino,
235 atomic_read(&inode->i_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700236 return;
237 }
238 if (inode->i_nlink) {
Theodore Ts'o92b97812012-03-19 23:41:49 -0400239 ext4_msg(sb, KERN_ERR, "%s:%d: inode #%lu: nlink=%d\n",
240 __func__, __LINE__, inode->i_ino, inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700241 return;
242 }
Mingming Cao617ba132006-10-11 01:20:53 -0700243 sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700244
245 ino = inode->i_ino;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400246 ext4_debug("freeing inode %lu\n", ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400247 trace_ext4_free_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700248
249 /*
250 * Note: we must free any quota before locking the superblock,
251 * as writing the quota to disk may need the lock as well.
252 */
Christoph Hellwig871a2932010-03-03 09:05:07 -0500253 dquot_initialize(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700254 ext4_xattr_delete_inode(handle, inode);
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500255 dquot_free_inode(inode);
Christoph Hellwig9f754752010-03-03 09:05:05 -0500256 dquot_drop(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700257
258 is_directory = S_ISDIR(inode->i_mode);
259
260 /* Do this BEFORE marking the inode not in use or returning an error */
Al Viro0930fcc2010-06-07 13:16:22 -0400261 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700262
Mingming Cao617ba132006-10-11 01:20:53 -0700263 es = EXT4_SB(sb)->s_es;
264 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500265 ext4_error(sb, "reserved or nonexistent inode %lu", ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700266 goto error_return;
267 }
Mingming Cao617ba132006-10-11 01:20:53 -0700268 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
269 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400270 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700271 if (!bitmap_bh)
272 goto error_return;
273
274 BUFFER_TRACE(bitmap_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700275 fatal = ext4_journal_get_write_access(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700276 if (fatal)
277 goto error_return;
278
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400279 fatal = -ESRCH;
280 gdp = ext4_get_group_desc(sb, block_group, &bh2);
281 if (gdp) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700282 BUFFER_TRACE(bh2, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700283 fatal = ext4_journal_get_write_access(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700284 }
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400285 ext4_lock_group(sb, block_group);
Akinobu Mita597d5082011-12-28 20:32:07 -0500286 cleared = ext4_test_and_clear_bit(bit, bitmap_bh->b_data);
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400287 if (fatal || !cleared) {
288 ext4_unlock_group(sb, block_group);
289 goto out;
290 }
291
292 count = ext4_free_inodes_count(sb, gdp) + 1;
293 ext4_free_inodes_set(sb, gdp, count);
294 if (is_directory) {
295 count = ext4_used_dirs_count(sb, gdp) - 1;
296 ext4_used_dirs_set(sb, gdp, count);
297 percpu_counter_dec(&sbi->s_dirs_counter);
298 }
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400299 ext4_inode_bitmap_csum_set(sb, block_group, gdp, bitmap_bh,
300 EXT4_INODES_PER_GROUP(sb) / 8);
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400301 gdp->bg_checksum = ext4_group_desc_csum(sbi, block_group, gdp);
302 ext4_unlock_group(sb, block_group);
303
304 percpu_counter_inc(&sbi->s_freeinodes_counter);
305 if (sbi->s_log_groups_per_flex) {
306 ext4_group_t f = ext4_flex_group(sbi, block_group);
307
308 atomic_inc(&sbi->s_flex_groups[f].free_inodes);
309 if (is_directory)
310 atomic_dec(&sbi->s_flex_groups[f].used_dirs);
311 }
312 BUFFER_TRACE(bh2, "call ext4_handle_dirty_metadata");
313 fatal = ext4_handle_dirty_metadata(handle, NULL, bh2);
314out:
315 if (cleared) {
316 BUFFER_TRACE(bitmap_bh, "call ext4_handle_dirty_metadata");
317 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
318 if (!fatal)
319 fatal = err;
Theodore Ts'oa0375152010-06-11 23:14:04 -0400320 ext4_mark_super_dirty(sb);
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400321 } else
322 ext4_error(sb, "bit already cleared for inode %lu", ino);
323
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700324error_return:
325 brelse(bitmap_bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700326 ext4_std_error(sb, fatal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700327}
328
Theodore Ts'oa4912122009-03-12 12:18:34 -0400329struct orlov_stats {
330 __u32 free_inodes;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400331 __u32 free_clusters;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400332 __u32 used_dirs;
333};
334
335/*
336 * Helper function for Orlov's allocator; returns critical information
337 * for a particular block group or flex_bg. If flex_size is 1, then g
338 * is a block group number; otherwise it is flex_bg number.
339 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -0400340static void get_orlov_stats(struct super_block *sb, ext4_group_t g,
341 int flex_size, struct orlov_stats *stats)
Theodore Ts'oa4912122009-03-12 12:18:34 -0400342{
343 struct ext4_group_desc *desc;
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500344 struct flex_groups *flex_group = EXT4_SB(sb)->s_flex_groups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400345
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500346 if (flex_size > 1) {
347 stats->free_inodes = atomic_read(&flex_group[g].free_inodes);
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400348 stats->free_clusters = atomic_read(&flex_group[g].free_clusters);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500349 stats->used_dirs = atomic_read(&flex_group[g].used_dirs);
350 return;
351 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400352
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500353 desc = ext4_get_group_desc(sb, g, NULL);
354 if (desc) {
355 stats->free_inodes = ext4_free_inodes_count(sb, desc);
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400356 stats->free_clusters = ext4_free_group_clusters(sb, desc);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500357 stats->used_dirs = ext4_used_dirs_count(sb, desc);
358 } else {
359 stats->free_inodes = 0;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400360 stats->free_clusters = 0;
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500361 stats->used_dirs = 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400362 }
363}
364
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700365/*
366 * Orlov's allocator for directories.
367 *
368 * We always try to spread first-level directories.
369 *
370 * If there are blockgroups with both free inodes and free blocks counts
371 * not worse than average we return one with smallest directory count.
372 * Otherwise we simply return a random group.
373 *
374 * For the rest rules look so:
375 *
376 * It's OK to put directory into a group unless
377 * it has too many directories already (max_dirs) or
378 * it has too few free inodes left (min_inodes) or
379 * it has too few free blocks left (min_blocks) or
Benoit Boissinot1cc8dcf2008-04-21 22:45:55 +0000380 * Parent's group is preferred, if it doesn't satisfy these
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700381 * conditions we search cyclically through the rest. If none
382 * of the groups look good we just look for a group with more
383 * free inodes than average (starting at parent's group).
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700384 */
385
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500386static int find_group_orlov(struct super_block *sb, struct inode *parent,
Al Virodcca3fe2011-07-26 02:48:06 -0400387 ext4_group_t *group, umode_t mode,
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400388 const struct qstr *qstr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700389{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500390 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Mingming Cao617ba132006-10-11 01:20:53 -0700391 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o8df96752009-05-01 08:50:38 -0400392 ext4_group_t real_ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700393 int inodes_per_group = EXT4_INODES_PER_GROUP(sb);
Theodore Ts'o14c83c92011-12-28 20:25:13 -0500394 unsigned int freei, avefreei, grp_free;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400395 ext4_fsblk_t freeb, avefreec;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700396 unsigned int ndirs;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400397 int max_dirs, min_inodes;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400398 ext4_grpblk_t min_clusters;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400399 ext4_group_t i, grp, g, ngroups;
Mingming Cao617ba132006-10-11 01:20:53 -0700400 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400401 struct orlov_stats stats;
402 int flex_size = ext4_flex_bg_size(sbi);
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400403 struct dx_hash_info hinfo;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400404
Theodore Ts'o8df96752009-05-01 08:50:38 -0400405 ngroups = real_ngroups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400406 if (flex_size > 1) {
Theodore Ts'o8df96752009-05-01 08:50:38 -0400407 ngroups = (real_ngroups + flex_size - 1) >>
Theodore Ts'oa4912122009-03-12 12:18:34 -0400408 sbi->s_log_groups_per_flex;
409 parent_group >>= sbi->s_log_groups_per_flex;
410 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700411
412 freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
413 avefreei = freei / ngroups;
Theodore Ts'o57042652011-09-09 18:56:51 -0400414 freeb = EXT4_C2B(sbi,
415 percpu_counter_read_positive(&sbi->s_freeclusters_counter));
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400416 avefreec = freeb;
417 do_div(avefreec, ngroups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700418 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
419
Theodore Ts'oa4912122009-03-12 12:18:34 -0400420 if (S_ISDIR(mode) &&
421 ((parent == sb->s_root->d_inode) ||
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400422 (ext4_test_inode_flag(parent, EXT4_INODE_TOPDIR)))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700423 int best_ndir = inodes_per_group;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500424 int ret = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700425
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400426 if (qstr) {
427 hinfo.hash_version = DX_HASH_HALF_MD4;
428 hinfo.seed = sbi->s_hash_seed;
429 ext4fs_dirhash(qstr->name, qstr->len, &hinfo);
430 grp = hinfo.hash;
431 } else
432 get_random_bytes(&grp, sizeof(grp));
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500433 parent_group = (unsigned)grp % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700434 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400435 g = (parent_group + i) % ngroups;
436 get_orlov_stats(sb, g, flex_size, &stats);
437 if (!stats.free_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700438 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400439 if (stats.used_dirs >= best_ndir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700440 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400441 if (stats.free_inodes < avefreei)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700442 continue;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400443 if (stats.free_clusters < avefreec)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700444 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400445 grp = g;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500446 ret = 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400447 best_ndir = stats.used_dirs;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700448 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400449 if (ret)
450 goto fallback;
451 found_flex_bg:
452 if (flex_size == 1) {
453 *group = grp;
454 return 0;
455 }
456
457 /*
458 * We pack inodes at the beginning of the flexgroup's
459 * inode tables. Block allocation decisions will do
460 * something similar, although regular files will
461 * start at 2nd block group of the flexgroup. See
462 * ext4_ext_find_goal() and ext4_find_near().
463 */
464 grp *= flex_size;
465 for (i = 0; i < flex_size; i++) {
Theodore Ts'o8df96752009-05-01 08:50:38 -0400466 if (grp+i >= real_ngroups)
Theodore Ts'oa4912122009-03-12 12:18:34 -0400467 break;
468 desc = ext4_get_group_desc(sb, grp+i, NULL);
469 if (desc && ext4_free_inodes_count(sb, desc)) {
470 *group = grp+i;
471 return 0;
472 }
473 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700474 goto fallback;
475 }
476
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700477 max_dirs = ndirs / ngroups + inodes_per_group / 16;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400478 min_inodes = avefreei - inodes_per_group*flex_size / 4;
479 if (min_inodes < 1)
480 min_inodes = 1;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400481 min_clusters = avefreec - EXT4_CLUSTERS_PER_GROUP(sb)*flex_size / 4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700482
Theodore Ts'oa4912122009-03-12 12:18:34 -0400483 /*
484 * Start looking in the flex group where we last allocated an
485 * inode for this parent directory
486 */
487 if (EXT4_I(parent)->i_last_alloc_group != ~0) {
488 parent_group = EXT4_I(parent)->i_last_alloc_group;
489 if (flex_size > 1)
490 parent_group >>= sbi->s_log_groups_per_flex;
491 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700492
493 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400494 grp = (parent_group + i) % ngroups;
495 get_orlov_stats(sb, grp, flex_size, &stats);
496 if (stats.used_dirs >= max_dirs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700497 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400498 if (stats.free_inodes < min_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700499 continue;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400500 if (stats.free_clusters < min_clusters)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700501 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400502 goto found_flex_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700503 }
504
505fallback:
Theodore Ts'o8df96752009-05-01 08:50:38 -0400506 ngroups = real_ngroups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400507 avefreei = freei / ngroups;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400508fallback_retry:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400509 parent_group = EXT4_I(parent)->i_block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700510 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400511 grp = (parent_group + i) % ngroups;
512 desc = ext4_get_group_desc(sb, grp, NULL);
Theodore Ts'o14c83c92011-12-28 20:25:13 -0500513 grp_free = ext4_free_inodes_count(sb, desc);
514 if (desc && grp_free && grp_free >= avefreei) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400515 *group = grp;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500516 return 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400517 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700518 }
519
520 if (avefreei) {
521 /*
522 * The free-inodes counter is approximate, and for really small
523 * filesystems the above test can fail to find any blockgroups
524 */
525 avefreei = 0;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400526 goto fallback_retry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700527 }
528
529 return -1;
530}
531
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500532static int find_group_other(struct super_block *sb, struct inode *parent,
Al Virodcca3fe2011-07-26 02:48:06 -0400533 ext4_group_t *group, umode_t mode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700534{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500535 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400536 ext4_group_t i, last, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700537 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400538 int flex_size = ext4_flex_bg_size(EXT4_SB(sb));
539
540 /*
541 * Try to place the inode is the same flex group as its
542 * parent. If we can't find space, use the Orlov algorithm to
543 * find another flex group, and store that information in the
544 * parent directory's inode information so that use that flex
545 * group for future allocations.
546 */
547 if (flex_size > 1) {
548 int retry = 0;
549
550 try_again:
551 parent_group &= ~(flex_size-1);
552 last = parent_group + flex_size;
553 if (last > ngroups)
554 last = ngroups;
555 for (i = parent_group; i < last; i++) {
556 desc = ext4_get_group_desc(sb, i, NULL);
557 if (desc && ext4_free_inodes_count(sb, desc)) {
558 *group = i;
559 return 0;
560 }
561 }
562 if (!retry && EXT4_I(parent)->i_last_alloc_group != ~0) {
563 retry = 1;
564 parent_group = EXT4_I(parent)->i_last_alloc_group;
565 goto try_again;
566 }
567 /*
568 * If this didn't work, use the Orlov search algorithm
569 * to find a new flex group; we pass in the mode to
570 * avoid the topdir algorithms.
571 */
572 *group = parent_group + flex_size;
573 if (*group > ngroups)
574 *group = 0;
Peter Huewe7dc57612011-02-21 21:01:42 -0500575 return find_group_orlov(sb, parent, group, mode, NULL);
Theodore Ts'oa4912122009-03-12 12:18:34 -0400576 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700577
578 /*
579 * Try to place the inode in its parent directory
580 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500581 *group = parent_group;
582 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500583 if (desc && ext4_free_inodes_count(sb, desc) &&
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400584 ext4_free_group_clusters(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500585 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700586
587 /*
588 * We're going to place this inode in a different blockgroup from its
589 * parent. We want to cause files in a common directory to all land in
590 * the same blockgroup. But we want files which are in a different
591 * directory which shares a blockgroup with our parent to land in a
592 * different blockgroup.
593 *
594 * So add our directory's i_ino into the starting point for the hash.
595 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500596 *group = (*group + parent->i_ino) % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700597
598 /*
599 * Use a quadratic hash to find a group with a free inode and some free
600 * blocks.
601 */
602 for (i = 1; i < ngroups; i <<= 1) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500603 *group += i;
604 if (*group >= ngroups)
605 *group -= ngroups;
606 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500607 if (desc && ext4_free_inodes_count(sb, desc) &&
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400608 ext4_free_group_clusters(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500609 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700610 }
611
612 /*
613 * That failed: try linear search for a free inode, even if that group
614 * has no free blocks.
615 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500616 *group = parent_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700617 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500618 if (++*group >= ngroups)
619 *group = 0;
620 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500621 if (desc && ext4_free_inodes_count(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500622 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700623 }
624
625 return -1;
626}
627
628/*
629 * There are two policies for allocating an inode. If the new inode is
630 * a directory, then a forward search is made for a block group with both
631 * free space and a low directory-to-inode ratio; if that fails, then of
632 * the groups with above-average free space, that group with the fewest
633 * directories already is chosen.
634 *
635 * For other inodes, search forward from the parent directory's block
636 * group to find a free inode.
637 */
Al Virodcca3fe2011-07-26 02:48:06 -0400638struct inode *ext4_new_inode(handle_t *handle, struct inode *dir, umode_t mode,
Dmitry Monakhov5cb81da2011-10-29 09:05:00 -0400639 const struct qstr *qstr, __u32 goal, uid_t *owner)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700640{
641 struct super_block *sb;
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500642 struct buffer_head *inode_bitmap_bh = NULL;
643 struct buffer_head *group_desc_bh;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400644 ext4_group_t ngroups, group = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700645 unsigned long ino = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400646 struct inode *inode;
647 struct ext4_group_desc *gdp = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -0700648 struct ext4_inode_info *ei;
649 struct ext4_sb_info *sbi;
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500650 int ret2, err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700651 struct inode *ret;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500652 ext4_group_t i;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400653 ext4_group_t flex_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700654
655 /* Cannot create files in a deleted directory */
656 if (!dir || !dir->i_nlink)
657 return ERR_PTR(-EPERM);
658
659 sb = dir->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400660 ngroups = ext4_get_groups_count(sb);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400661 trace_ext4_request_inode(dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700662 inode = new_inode(sb);
663 if (!inode)
664 return ERR_PTR(-ENOMEM);
Mingming Cao617ba132006-10-11 01:20:53 -0700665 ei = EXT4_I(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700666 sbi = EXT4_SB(sb);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400667
Andreas Dilger11013912009-06-13 11:45:35 -0400668 if (!goal)
669 goal = sbi->s_inode_goal;
670
Johann Lombardie6462862009-07-05 23:45:11 -0400671 if (goal && goal <= le32_to_cpu(sbi->s_es->s_inodes_count)) {
Andreas Dilger11013912009-06-13 11:45:35 -0400672 group = (goal - 1) / EXT4_INODES_PER_GROUP(sb);
673 ino = (goal - 1) % EXT4_INODES_PER_GROUP(sb);
674 ret2 = 0;
675 goto got_group;
676 }
677
Lukas Czerner4113c4c2011-10-08 14:34:47 -0400678 if (S_ISDIR(mode))
679 ret2 = find_group_orlov(sb, dir, &group, mode, qstr);
680 else
Theodore Ts'oa4912122009-03-12 12:18:34 -0400681 ret2 = find_group_other(sb, dir, &group, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700682
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400683got_group:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400684 EXT4_I(dir)->i_last_alloc_group = group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700685 err = -ENOSPC;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500686 if (ret2 == -1)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700687 goto out;
688
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500689 /*
690 * Normally we will only go through one pass of this loop,
691 * unless we get unlucky and it turns out the group we selected
692 * had its last inode grabbed by someone else.
693 */
Andreas Dilger11013912009-06-13 11:45:35 -0400694 for (i = 0; i < ngroups; i++, ino = 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700695 err = -EIO;
696
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500697 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700698 if (!gdp)
699 goto fail;
700
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500701 brelse(inode_bitmap_bh);
702 inode_bitmap_bh = ext4_read_inode_bitmap(sb, group);
703 if (!inode_bitmap_bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700704 goto fail;
705
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700706repeat_in_this_group:
Mingming Cao617ba132006-10-11 01:20:53 -0700707 ino = ext4_find_next_zero_bit((unsigned long *)
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500708 inode_bitmap_bh->b_data,
709 EXT4_INODES_PER_GROUP(sb), ino);
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500710 if (ino >= EXT4_INODES_PER_GROUP(sb)) {
711 if (++group == ngroups)
712 group = 0;
713 continue;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700714 }
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500715 if (group == 0 && (ino+1) < EXT4_FIRST_INO(sb)) {
716 ext4_error(sb, "reserved inode found cleared - "
717 "inode=%lu", ino + 1);
718 continue;
719 }
720 ext4_lock_group(sb, group);
721 ret2 = ext4_test_and_set_bit(ino, inode_bitmap_bh->b_data);
722 ext4_unlock_group(sb, group);
723 ino++; /* the inode bitmap is zero-based */
724 if (!ret2)
725 goto got; /* we grabbed the inode! */
726 if (ino < EXT4_INODES_PER_GROUP(sb))
727 goto repeat_in_this_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700728 }
729 err = -ENOSPC;
730 goto out;
731
732got:
Andreas Dilger717d50e2007-10-16 18:38:25 -0400733 /* We may have to initialize the block bitmap if it isn't already */
734 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM) &&
735 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500736 struct buffer_head *block_bitmap_bh;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400737
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500738 block_bitmap_bh = ext4_read_block_bitmap(sb, group);
739 BUFFER_TRACE(block_bitmap_bh, "get block bitmap access");
740 err = ext4_journal_get_write_access(handle, block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400741 if (err) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500742 brelse(block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400743 goto fail;
744 }
745
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400746 BUFFER_TRACE(block_bitmap_bh, "dirty block bitmap");
747 err = ext4_handle_dirty_metadata(handle, NULL, block_bitmap_bh);
748 brelse(block_bitmap_bh);
749
Andreas Dilger717d50e2007-10-16 18:38:25 -0400750 /* recheck and clear flag under lock if we still need to */
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400751 ext4_lock_group(sb, group);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400752 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500753 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400754 ext4_free_group_clusters_set(sb, gdp,
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -0400755 ext4_free_clusters_after_init(sb, group, gdp));
Frederic Bohe23712a92008-11-07 09:21:01 -0500756 gdp->bg_checksum = ext4_group_desc_csum(sbi, group,
757 gdp);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400758 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400759 ext4_unlock_group(sb, group);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400760
Andreas Dilger717d50e2007-10-16 18:38:25 -0400761 if (err)
762 goto fail;
763 }
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500764
765 BUFFER_TRACE(inode_bitmap_bh, "get_write_access");
766 err = ext4_journal_get_write_access(handle, inode_bitmap_bh);
767 if (err)
768 goto fail;
769
770 BUFFER_TRACE(group_desc_bh, "get_write_access");
771 err = ext4_journal_get_write_access(handle, group_desc_bh);
772 if (err)
773 goto fail;
774
775 /* Update the relevant bg descriptor fields */
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400776 if (ext4_has_group_desc_csum(sb)) {
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500777 int free;
778 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
779
780 down_read(&grp->alloc_sem); /* protect vs itable lazyinit */
781 ext4_lock_group(sb, group); /* while we modify the bg desc */
782 free = EXT4_INODES_PER_GROUP(sb) -
783 ext4_itable_unused_count(sb, gdp);
784 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
785 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT);
786 free = 0;
787 }
788 /*
789 * Check the relative inode number against the last used
790 * relative inode number in this group. if it is greater
791 * we need to update the bg_itable_unused count
792 */
793 if (ino > free)
794 ext4_itable_unused_set(sb, gdp,
795 (EXT4_INODES_PER_GROUP(sb) - ino));
796 up_read(&grp->alloc_sem);
797 }
798 ext4_free_inodes_set(sb, gdp, ext4_free_inodes_count(sb, gdp) - 1);
799 if (S_ISDIR(mode)) {
800 ext4_used_dirs_set(sb, gdp, ext4_used_dirs_count(sb, gdp) + 1);
801 if (sbi->s_log_groups_per_flex) {
802 ext4_group_t f = ext4_flex_group(sbi, group);
803
804 atomic_inc(&sbi->s_flex_groups[f].used_dirs);
805 }
806 }
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400807 if (ext4_has_group_desc_csum(sb)) {
808 ext4_inode_bitmap_csum_set(sb, group, gdp, inode_bitmap_bh,
809 EXT4_INODES_PER_GROUP(sb) / 8);
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500810 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
811 ext4_unlock_group(sb, group);
812 }
813
814 BUFFER_TRACE(inode_bitmap_bh, "call ext4_handle_dirty_metadata");
815 err = ext4_handle_dirty_metadata(handle, NULL, inode_bitmap_bh);
816 if (err)
817 goto fail;
818
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500819 BUFFER_TRACE(group_desc_bh, "call ext4_handle_dirty_metadata");
820 err = ext4_handle_dirty_metadata(handle, NULL, group_desc_bh);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500821 if (err)
822 goto fail;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700823
824 percpu_counter_dec(&sbi->s_freeinodes_counter);
825 if (S_ISDIR(mode))
826 percpu_counter_inc(&sbi->s_dirs_counter);
Theodore Ts'oa0375152010-06-11 23:14:04 -0400827 ext4_mark_super_dirty(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700828
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400829 if (sbi->s_log_groups_per_flex) {
830 flex_group = ext4_flex_group(sbi, group);
Theodore Ts'o9f24e422009-03-04 19:09:10 -0500831 atomic_dec(&sbi->s_flex_groups[flex_group].free_inodes);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400832 }
Dmitry Monakhov5cb81da2011-10-29 09:05:00 -0400833 if (owner) {
834 inode->i_mode = mode;
835 inode->i_uid = owner[0];
836 inode->i_gid = owner[1];
837 } else if (test_opt(sb, GRPID)) {
Dmitry Monakhovb10b8522010-03-04 17:31:51 +0300838 inode->i_mode = mode;
839 inode->i_uid = current_fsuid();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700840 inode->i_gid = dir->i_gid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700841 } else
Dmitry Monakhovb10b8522010-03-04 17:31:51 +0300842 inode_init_owner(inode, dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700843
Andreas Dilger717d50e2007-10-16 18:38:25 -0400844 inode->i_ino = ino + group * EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700845 /* This is the optimal IO size (for stat), not the fs block size */
846 inode->i_blocks = 0;
Kalpak Shahef7f3832007-07-18 09:15:20 -0400847 inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
848 ext4_current_time(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700849
850 memset(ei->i_data, 0, sizeof(ei->i_data));
851 ei->i_dir_start_lookup = 0;
852 ei->i_disksize = 0;
853
Eryu Guan4af83502011-10-31 18:21:29 -0400854 /* Don't inherit extent flag from directory, amongst others. */
Duane Griffin2dc6b0d2009-02-15 18:09:20 -0500855 ei->i_flags =
856 ext4_mask_flags(mode, EXT4_I(dir)->i_flags & EXT4_FL_INHERITED);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700857 ei->i_file_acl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700858 ei->i_dtime = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700859 ei->i_block_group = group;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400860 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700861
Mingming Cao617ba132006-10-11 01:20:53 -0700862 ext4_set_inode_flags(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700863 if (IS_DIRSYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500864 ext4_handle_sync(handle);
Al Viro6b38e842008-12-30 02:03:31 -0500865 if (insert_inode_locked(inode) < 0) {
Jan Karaacd6ad82011-12-18 17:37:02 -0500866 /*
867 * Likely a bitmap corruption causing inode to be allocated
868 * twice.
869 */
870 err = -EIO;
871 goto fail;
Al Viro6b38e842008-12-30 02:03:31 -0500872 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700873 spin_lock(&sbi->s_next_gen_lock);
874 inode->i_generation = sbi->s_next_generation++;
875 spin_unlock(&sbi->s_next_gen_lock);
876
Darrick J. Wong814525f2012-04-29 18:31:10 -0400877 /* Precompute checksum seed for inode metadata */
878 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
879 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM)) {
880 __u32 csum;
881 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
882 __le32 inum = cpu_to_le32(inode->i_ino);
883 __le32 gen = cpu_to_le32(inode->i_generation);
884 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
885 sizeof(inum));
886 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
887 sizeof(gen));
888 }
889
Theodore Ts'o353eb832011-01-10 12:18:25 -0500890 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -0500891 ext4_set_inode_state(inode, EXT4_STATE_NEW);
Kalpak Shahef7f3832007-07-18 09:15:20 -0400892
893 ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700894
895 ret = inode;
Christoph Hellwig871a2932010-03-03 09:05:07 -0500896 dquot_initialize(inode);
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500897 err = dquot_alloc_inode(inode);
898 if (err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700899 goto fail_drop;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700900
Mingming Cao617ba132006-10-11 01:20:53 -0700901 err = ext4_init_acl(handle, inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700902 if (err)
903 goto fail_free_drop;
904
Eric Paris2a7dba32011-02-01 11:05:39 -0500905 err = ext4_init_security(handle, inode, dir, qstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700906 if (err)
907 goto fail_free_drop;
908
Theodore Ts'o83982b62009-01-06 14:53:16 -0500909 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
Eric Sandeene4079a12008-07-11 19:27:31 -0400910 /* set extent flag only for directory, file and normal symlink*/
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -0400911 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) {
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400912 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -0500913 ext4_ext_tree_init(handle, inode);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -0500914 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700915 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700916
Theodore Ts'o688f8692011-03-16 17:16:31 -0400917 if (ext4_handle_valid(handle)) {
918 ei->i_sync_tid = handle->h_transaction->t_tid;
919 ei->i_datasync_tid = handle->h_transaction->t_tid;
920 }
921
Aneesh Kumar K.V8753e882008-04-29 22:00:36 -0400922 err = ext4_mark_inode_dirty(handle, inode);
923 if (err) {
924 ext4_std_error(sb, err);
925 goto fail_free_drop;
926 }
927
Mingming Cao617ba132006-10-11 01:20:53 -0700928 ext4_debug("allocating inode %lu\n", inode->i_ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400929 trace_ext4_allocate_inode(inode, dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700930 goto really_out;
931fail:
Mingming Cao617ba132006-10-11 01:20:53 -0700932 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700933out:
934 iput(inode);
935 ret = ERR_PTR(err);
936really_out:
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500937 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700938 return ret;
939
940fail_free_drop:
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500941 dquot_free_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700942
943fail_drop:
Christoph Hellwig9f754752010-03-03 09:05:05 -0500944 dquot_drop(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700945 inode->i_flags |= S_NOQUOTA;
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200946 clear_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -0500947 unlock_new_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700948 iput(inode);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500949 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700950 return ERR_PTR(err);
951}
952
953/* Verify that we are loading a valid orphan from disk */
Mingming Cao617ba132006-10-11 01:20:53 -0700954struct inode *ext4_orphan_get(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700955{
Mingming Cao617ba132006-10-11 01:20:53 -0700956 unsigned long max_ino = le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count);
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500957 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700958 int bit;
David Howells1d1fe1e2008-02-07 00:15:37 -0800959 struct buffer_head *bitmap_bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700960 struct inode *inode = NULL;
David Howells1d1fe1e2008-02-07 00:15:37 -0800961 long err = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700962
963 /* Error cases - e2fsck has already cleaned up for us */
964 if (ino > max_ino) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500965 ext4_warning(sb, "bad orphan ino %lu! e2fsck was run?", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -0800966 goto error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700967 }
968
Mingming Cao617ba132006-10-11 01:20:53 -0700969 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
970 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400971 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700972 if (!bitmap_bh) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500973 ext4_warning(sb, "inode bitmap error for orphan %lu", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -0800974 goto error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700975 }
976
977 /* Having the inode bit set should be a 100% indicator that this
978 * is a valid orphan (no e2fsck run on fs). Orphans also include
979 * inodes that were being truncated, so we can't check i_nlink==0.
980 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800981 if (!ext4_test_bit(bit, bitmap_bh->b_data))
982 goto bad_orphan;
983
984 inode = ext4_iget(sb, ino);
985 if (IS_ERR(inode))
986 goto iget_failed;
987
Duane Griffin91ef4ca2008-07-11 19:27:31 -0400988 /*
989 * If the orphans has i_nlinks > 0 then it should be able to be
990 * truncated, otherwise it won't be removed from the orphan list
991 * during processing and an infinite loop will result.
992 */
993 if (inode->i_nlink && !ext4_can_truncate(inode))
994 goto bad_orphan;
995
David Howells1d1fe1e2008-02-07 00:15:37 -0800996 if (NEXT_ORPHAN(inode) > max_ino)
997 goto bad_orphan;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700998 brelse(bitmap_bh);
999 return inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08001000
1001iget_failed:
1002 err = PTR_ERR(inode);
1003 inode = NULL;
1004bad_orphan:
Eric Sandeen12062dd2010-02-15 14:19:27 -05001005 ext4_warning(sb, "bad orphan inode %lu! e2fsck was run?", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -08001006 printk(KERN_NOTICE "ext4_test_bit(bit=%d, block=%llu) = %d\n",
1007 bit, (unsigned long long)bitmap_bh->b_blocknr,
1008 ext4_test_bit(bit, bitmap_bh->b_data));
1009 printk(KERN_NOTICE "inode=%p\n", inode);
1010 if (inode) {
1011 printk(KERN_NOTICE "is_bad_inode(inode)=%d\n",
1012 is_bad_inode(inode));
1013 printk(KERN_NOTICE "NEXT_ORPHAN(inode)=%u\n",
1014 NEXT_ORPHAN(inode));
1015 printk(KERN_NOTICE "max_ino=%lu\n", max_ino);
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001016 printk(KERN_NOTICE "i_nlink=%u\n", inode->i_nlink);
David Howells1d1fe1e2008-02-07 00:15:37 -08001017 /* Avoid freeing blocks if we got a bad deleted inode */
1018 if (inode->i_nlink == 0)
1019 inode->i_blocks = 0;
1020 iput(inode);
1021 }
1022 brelse(bitmap_bh);
1023error:
1024 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001025}
1026
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001027unsigned long ext4_count_free_inodes(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001028{
1029 unsigned long desc_count;
Mingming Cao617ba132006-10-11 01:20:53 -07001030 struct ext4_group_desc *gdp;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001031 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07001032#ifdef EXT4FS_DEBUG
1033 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001034 unsigned long bitmap_count, x;
1035 struct buffer_head *bitmap_bh = NULL;
1036
Mingming Cao617ba132006-10-11 01:20:53 -07001037 es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001038 desc_count = 0;
1039 bitmap_count = 0;
1040 gdp = NULL;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001041 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001042 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001043 if (!gdp)
1044 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001045 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001046 brelse(bitmap_bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -04001047 bitmap_bh = ext4_read_inode_bitmap(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001048 if (!bitmap_bh)
1049 continue;
1050
Mingming Cao617ba132006-10-11 01:20:53 -07001051 x = ext4_count_free(bitmap_bh, EXT4_INODES_PER_GROUP(sb) / 8);
Eric Sandeenc549a952008-01-28 23:58:27 -05001052 printk(KERN_DEBUG "group %lu: stored = %d, counted = %lu\n",
Peng Tao785b4b32009-07-27 21:44:40 -04001053 (unsigned long) i, ext4_free_inodes_count(sb, gdp), x);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001054 bitmap_count += x;
1055 }
1056 brelse(bitmap_bh);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001057 printk(KERN_DEBUG "ext4_count_free_inodes: "
1058 "stored = %u, computed = %lu, %lu\n",
1059 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001060 return desc_count;
1061#else
1062 desc_count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001063 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001064 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001065 if (!gdp)
1066 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001067 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001068 cond_resched();
1069 }
1070 return desc_count;
1071#endif
1072}
1073
1074/* Called at mount-time, super-block is locked */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001075unsigned long ext4_count_dirs(struct super_block * sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001076{
1077 unsigned long count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001078 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001079
Theodore Ts'o8df96752009-05-01 08:50:38 -04001080 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001081 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001082 if (!gdp)
1083 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001084 count += ext4_used_dirs_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001085 }
1086 return count;
1087}
Lukas Czernerbfff6872010-10-27 21:30:05 -04001088
1089/*
1090 * Zeroes not yet zeroed inode table - just write zeroes through the whole
1091 * inode table. Must be called without any spinlock held. The only place
1092 * where it is called from on active part of filesystem is ext4lazyinit
1093 * thread, so we do not need any special locks, however we have to prevent
1094 * inode allocation from the current group, so we take alloc_sem lock, to
Theodore Ts'o119c0d42012-02-06 20:12:03 -05001095 * block ext4_new_inode() until we are finished.
Lukas Czernerbfff6872010-10-27 21:30:05 -04001096 */
H Hartley Sweetene0cbee32011-10-18 10:57:51 -04001097int ext4_init_inode_table(struct super_block *sb, ext4_group_t group,
Lukas Czernerbfff6872010-10-27 21:30:05 -04001098 int barrier)
1099{
1100 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
1101 struct ext4_sb_info *sbi = EXT4_SB(sb);
1102 struct ext4_group_desc *gdp = NULL;
1103 struct buffer_head *group_desc_bh;
1104 handle_t *handle;
1105 ext4_fsblk_t blk;
1106 int num, ret = 0, used_blks = 0;
Lukas Czernerbfff6872010-10-27 21:30:05 -04001107
1108 /* This should not happen, but just to be sure check this */
1109 if (sb->s_flags & MS_RDONLY) {
1110 ret = 1;
1111 goto out;
1112 }
1113
1114 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
1115 if (!gdp)
1116 goto out;
1117
1118 /*
1119 * We do not need to lock this, because we are the only one
1120 * handling this flag.
1121 */
1122 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED))
1123 goto out;
1124
1125 handle = ext4_journal_start_sb(sb, 1);
1126 if (IS_ERR(handle)) {
1127 ret = PTR_ERR(handle);
1128 goto out;
1129 }
1130
1131 down_write(&grp->alloc_sem);
1132 /*
1133 * If inode bitmap was already initialized there may be some
1134 * used inodes so we need to skip blocks with used inodes in
1135 * inode table.
1136 */
1137 if (!(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)))
1138 used_blks = DIV_ROUND_UP((EXT4_INODES_PER_GROUP(sb) -
1139 ext4_itable_unused_count(sb, gdp)),
1140 sbi->s_inodes_per_block);
1141
Lukas Czerner857ac882010-10-27 21:30:05 -04001142 if ((used_blks < 0) || (used_blks > sbi->s_itb_per_group)) {
Theodore Ts'o1084f252012-03-19 23:13:43 -04001143 ext4_error(sb, "Something is wrong with group %u: "
1144 "used itable blocks: %d; "
1145 "itable unused count: %u",
Lukas Czerner857ac882010-10-27 21:30:05 -04001146 group, used_blks,
1147 ext4_itable_unused_count(sb, gdp));
1148 ret = 1;
Yongqiang Yang33853a02011-08-01 06:32:19 -04001149 goto err_out;
Lukas Czerner857ac882010-10-27 21:30:05 -04001150 }
1151
Lukas Czernerbfff6872010-10-27 21:30:05 -04001152 blk = ext4_inode_table(sb, gdp) + used_blks;
1153 num = sbi->s_itb_per_group - used_blks;
1154
1155 BUFFER_TRACE(group_desc_bh, "get_write_access");
1156 ret = ext4_journal_get_write_access(handle,
1157 group_desc_bh);
1158 if (ret)
1159 goto err_out;
1160
Lukas Czernerbfff6872010-10-27 21:30:05 -04001161 /*
1162 * Skip zeroout if the inode table is full. But we set the ZEROED
1163 * flag anyway, because obviously, when it is full it does not need
1164 * further zeroing.
1165 */
1166 if (unlikely(num == 0))
1167 goto skip_zeroout;
1168
1169 ext4_debug("going to zero out inode table in group %d\n",
1170 group);
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001171 ret = sb_issue_zeroout(sb, blk, num, GFP_NOFS);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001172 if (ret < 0)
1173 goto err_out;
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001174 if (barrier)
1175 blkdev_issue_flush(sb->s_bdev, GFP_NOFS, NULL);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001176
1177skip_zeroout:
1178 ext4_lock_group(sb, group);
1179 gdp->bg_flags |= cpu_to_le16(EXT4_BG_INODE_ZEROED);
1180 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
1181 ext4_unlock_group(sb, group);
1182
1183 BUFFER_TRACE(group_desc_bh,
1184 "call ext4_handle_dirty_metadata");
1185 ret = ext4_handle_dirty_metadata(handle, NULL,
1186 group_desc_bh);
1187
1188err_out:
1189 up_write(&grp->alloc_sem);
1190 ext4_journal_stop(handle);
1191out:
1192 return ret;
1193}