blob: 6e6052879aa2af27710993fd8cc367fef5c4fd84 [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>
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040026#include "ext4.h"
27#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070028#include "xattr.h"
29#include "acl.h"
Andreas Dilger717d50e2007-10-16 18:38:25 -040030#include "group.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070031
32/*
33 * ialloc.c contains the inodes allocation and deallocation routines
34 */
35
36/*
37 * The free inodes are managed by bitmaps. A file system contains several
38 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
39 * block for inodes, N blocks for the inode table and data blocks.
40 *
41 * The file system contains group descriptors which are located after the
42 * super block. Each descriptor contains the number of the bitmap block and
43 * the free blocks count in the block.
44 */
45
Andreas Dilger717d50e2007-10-16 18:38:25 -040046/*
47 * To avoid calling the atomic setbit hundreds or thousands of times, we only
48 * need to use it within a single byte (to ensure we get endianness right).
49 * We can use memset for the rest of the bitmap as there are no other users.
50 */
51void mark_bitmap_end(int start_bit, int end_bit, char *bitmap)
52{
53 int i;
54
55 if (start_bit >= end_bit)
56 return;
57
58 ext4_debug("mark end bits +%d through +%d used\n", start_bit, end_bit);
59 for (i = start_bit; i < ((start_bit + 7) & ~7UL); i++)
60 ext4_set_bit(i, bitmap);
61 if (i < end_bit)
62 memset(bitmap + (i >> 3), 0xff, (end_bit - i) >> 3);
63}
64
65/* Initializes an uninitialized inode bitmap */
Avantika Mathurfd2d4292008-01-28 23:58:27 -050066unsigned ext4_init_inode_bitmap(struct super_block *sb, struct buffer_head *bh,
67 ext4_group_t block_group,
Andreas Dilger717d50e2007-10-16 18:38:25 -040068 struct ext4_group_desc *gdp)
69{
70 struct ext4_sb_info *sbi = EXT4_SB(sb);
71
72 J_ASSERT_BH(bh, buffer_locked(bh));
73
74 /* If checksum is bad mark all blocks and inodes use to prevent
75 * allocation, essentially implementing a per-group read-only flag. */
76 if (!ext4_group_desc_csum_verify(sbi, block_group, gdp)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -040077 ext4_error(sb, __func__, "Checksum bad for group %lu\n",
Andreas Dilger717d50e2007-10-16 18:38:25 -040078 block_group);
79 gdp->bg_free_blocks_count = 0;
80 gdp->bg_free_inodes_count = 0;
81 gdp->bg_itable_unused = 0;
82 memset(bh->b_data, 0xff, sb->s_blocksize);
83 return 0;
84 }
85
86 memset(bh->b_data, 0, (EXT4_INODES_PER_GROUP(sb) + 7) / 8);
87 mark_bitmap_end(EXT4_INODES_PER_GROUP(sb), EXT4_BLOCKS_PER_GROUP(sb),
88 bh->b_data);
89
90 return EXT4_INODES_PER_GROUP(sb);
91}
Dave Kleikampac27a0e2006-10-11 01:20:50 -070092
93/*
94 * Read the inode allocation bitmap for a given block_group, reading
95 * into the specified slot in the superblock's bitmap cache.
96 *
97 * Return buffer_head of bitmap on success or NULL.
98 */
99static struct buffer_head *
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400100ext4_read_inode_bitmap(struct super_block *sb, ext4_group_t block_group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700101{
Mingming Cao617ba132006-10-11 01:20:53 -0700102 struct ext4_group_desc *desc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700103 struct buffer_head *bh = NULL;
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400104 ext4_fsblk_t bitmap_blk;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700105
Mingming Cao617ba132006-10-11 01:20:53 -0700106 desc = ext4_get_group_desc(sb, block_group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700107 if (!desc)
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400108 return NULL;
109 bitmap_blk = ext4_inode_bitmap(sb, desc);
110 bh = sb_getblk(sb, bitmap_blk);
111 if (unlikely(!bh)) {
112 ext4_error(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700113 "Cannot read inode bitmap - "
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700114 "block_group = %lu, inode_bitmap = %llu",
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400115 block_group, bitmap_blk);
116 return NULL;
117 }
Frederic Bohec806e682008-10-10 08:09:18 -0400118 if (buffer_uptodate(bh) &&
119 !(desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)))
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400120 return bh;
121
Frederic Bohec806e682008-10-10 08:09:18 -0400122 lock_buffer(bh);
Eric Sandeenb5f10ee2008-08-02 21:21:08 -0400123 spin_lock(sb_bgl_lock(EXT4_SB(sb), block_group));
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400124 if (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
125 ext4_init_inode_bitmap(sb, bh, block_group, desc);
126 set_buffer_uptodate(bh);
127 unlock_buffer(bh);
Eric Sandeenb5f10ee2008-08-02 21:21:08 -0400128 spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group));
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400129 return bh;
130 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -0400131 spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group));
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400132 if (bh_submit_read(bh) < 0) {
133 put_bh(bh);
134 ext4_error(sb, __func__,
135 "Cannot read inode bitmap - "
136 "block_group = %lu, inode_bitmap = %llu",
137 block_group, bitmap_blk);
138 return NULL;
139 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700140 return bh;
141}
142
143/*
144 * NOTE! When we get the inode, we're the only people
145 * that have access to it, and as such there are no
146 * race conditions we have to worry about. The inode
147 * is not on the hash-lists, and it cannot be reached
148 * through the filesystem because the directory entry
149 * has been deleted earlier.
150 *
151 * HOWEVER: we must make sure that we get no aliases,
152 * which means that we have to call "clear_inode()"
153 * _before_ we mark the inode not in use in the inode
154 * bitmaps. Otherwise a newly created file might use
155 * the same inode number (not actually the same pointer
156 * though), and then we'd have two inodes sharing the
157 * same inode number and space on the harddisk.
158 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400159void ext4_free_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700160{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400161 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700162 int is_directory;
163 unsigned long ino;
164 struct buffer_head *bitmap_bh = NULL;
165 struct buffer_head *bh2;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500166 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700167 unsigned long bit;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400168 struct ext4_group_desc *gdp;
169 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -0700170 struct ext4_sb_info *sbi;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700171 int fatal = 0, err;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400172 ext4_group_t flex_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700173
174 if (atomic_read(&inode->i_count) > 1) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400175 printk(KERN_ERR "ext4_free_inode: inode has count=%d\n",
176 atomic_read(&inode->i_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700177 return;
178 }
179 if (inode->i_nlink) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400180 printk(KERN_ERR "ext4_free_inode: inode has nlink=%d\n",
181 inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700182 return;
183 }
184 if (!sb) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400185 printk(KERN_ERR "ext4_free_inode: inode on "
186 "nonexistent device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700187 return;
188 }
Mingming Cao617ba132006-10-11 01:20:53 -0700189 sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700190
191 ino = inode->i_ino;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400192 ext4_debug("freeing inode %lu\n", ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700193
194 /*
195 * Note: we must free any quota before locking the superblock,
196 * as writing the quota to disk may need the lock as well.
197 */
198 DQUOT_INIT(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700199 ext4_xattr_delete_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700200 DQUOT_FREE_INODE(inode);
201 DQUOT_DROP(inode);
202
203 is_directory = S_ISDIR(inode->i_mode);
204
205 /* Do this BEFORE marking the inode not in use or returning an error */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400206 clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700207
Mingming Cao617ba132006-10-11 01:20:53 -0700208 es = EXT4_SB(sb)->s_es;
209 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400210 ext4_error(sb, "ext4_free_inode",
211 "reserved or nonexistent inode %lu", ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700212 goto error_return;
213 }
Mingming Cao617ba132006-10-11 01:20:53 -0700214 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
215 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400216 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700217 if (!bitmap_bh)
218 goto error_return;
219
220 BUFFER_TRACE(bitmap_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700221 fatal = ext4_journal_get_write_access(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700222 if (fatal)
223 goto error_return;
224
225 /* Ok, now we can actually update the inode bitmaps.. */
Mingming Cao617ba132006-10-11 01:20:53 -0700226 if (!ext4_clear_bit_atomic(sb_bgl_lock(sbi, block_group),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700227 bit, bitmap_bh->b_data))
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400228 ext4_error(sb, "ext4_free_inode",
229 "bit already cleared for inode %lu", ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700230 else {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400231 gdp = ext4_get_group_desc(sb, block_group, &bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700232
233 BUFFER_TRACE(bh2, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700234 fatal = ext4_journal_get_write_access(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700235 if (fatal) goto error_return;
236
237 if (gdp) {
238 spin_lock(sb_bgl_lock(sbi, block_group));
Marcin Slusarze8546d02008-04-17 10:38:59 -0400239 le16_add_cpu(&gdp->bg_free_inodes_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700240 if (is_directory)
Marcin Slusarze8546d02008-04-17 10:38:59 -0400241 le16_add_cpu(&gdp->bg_used_dirs_count, -1);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400242 gdp->bg_checksum = ext4_group_desc_csum(sbi,
243 block_group, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700244 spin_unlock(sb_bgl_lock(sbi, block_group));
245 percpu_counter_inc(&sbi->s_freeinodes_counter);
246 if (is_directory)
247 percpu_counter_dec(&sbi->s_dirs_counter);
248
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400249 if (sbi->s_log_groups_per_flex) {
250 flex_group = ext4_flex_group(sbi, block_group);
251 spin_lock(sb_bgl_lock(sbi, flex_group));
252 sbi->s_flex_groups[flex_group].free_inodes++;
253 spin_unlock(sb_bgl_lock(sbi, flex_group));
254 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700255 }
Mingming Cao617ba132006-10-11 01:20:53 -0700256 BUFFER_TRACE(bh2, "call ext4_journal_dirty_metadata");
257 err = ext4_journal_dirty_metadata(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700258 if (!fatal) fatal = err;
259 }
Mingming Cao617ba132006-10-11 01:20:53 -0700260 BUFFER_TRACE(bitmap_bh, "call ext4_journal_dirty_metadata");
261 err = ext4_journal_dirty_metadata(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700262 if (!fatal)
263 fatal = err;
264 sb->s_dirt = 1;
265error_return:
266 brelse(bitmap_bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700267 ext4_std_error(sb, fatal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700268}
269
270/*
271 * There are two policies for allocating an inode. If the new inode is
272 * a directory, then a forward search is made for a block group with both
273 * free space and a low directory-to-inode ratio; if that fails, then of
274 * the groups with above-average free space, that group with the fewest
275 * directories already is chosen.
276 *
277 * For other inodes, search forward from the parent directory\'s block
278 * group to find a free inode.
279 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500280static int find_group_dir(struct super_block *sb, struct inode *parent,
281 ext4_group_t *best_group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700282{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500283 ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700284 unsigned int freei, avefreei;
Mingming Cao617ba132006-10-11 01:20:53 -0700285 struct ext4_group_desc *desc, *best_desc = NULL;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500286 ext4_group_t group;
287 int ret = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700288
Mingming Cao617ba132006-10-11 01:20:53 -0700289 freei = percpu_counter_read_positive(&EXT4_SB(sb)->s_freeinodes_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700290 avefreei = freei / ngroups;
291
292 for (group = 0; group < ngroups; group++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400293 desc = ext4_get_group_desc(sb, group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700294 if (!desc || !desc->bg_free_inodes_count)
295 continue;
296 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
297 continue;
298 if (!best_desc ||
299 (le16_to_cpu(desc->bg_free_blocks_count) >
300 le16_to_cpu(best_desc->bg_free_blocks_count))) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500301 *best_group = group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700302 best_desc = desc;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500303 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700304 }
305 }
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500306 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700307}
308
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400309#define free_block_ratio 10
310
311static int find_group_flex(struct super_block *sb, struct inode *parent,
312 ext4_group_t *best_group)
313{
314 struct ext4_sb_info *sbi = EXT4_SB(sb);
315 struct ext4_group_desc *desc;
316 struct buffer_head *bh;
317 struct flex_groups *flex_group = sbi->s_flex_groups;
318 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
319 ext4_group_t parent_fbg_group = ext4_flex_group(sbi, parent_group);
320 ext4_group_t ngroups = sbi->s_groups_count;
321 int flex_size = ext4_flex_bg_size(sbi);
322 ext4_group_t best_flex = parent_fbg_group;
323 int blocks_per_flex = sbi->s_blocks_per_group * flex_size;
324 int flexbg_free_blocks;
325 int flex_freeb_ratio;
326 ext4_group_t n_fbg_groups;
327 ext4_group_t i;
328
329 n_fbg_groups = (sbi->s_groups_count + flex_size - 1) >>
330 sbi->s_log_groups_per_flex;
331
332find_close_to_parent:
333 flexbg_free_blocks = flex_group[best_flex].free_blocks;
334 flex_freeb_ratio = flexbg_free_blocks * 100 / blocks_per_flex;
335 if (flex_group[best_flex].free_inodes &&
336 flex_freeb_ratio > free_block_ratio)
337 goto found_flexbg;
338
339 if (best_flex && best_flex == parent_fbg_group) {
340 best_flex--;
341 goto find_close_to_parent;
342 }
343
344 for (i = 0; i < n_fbg_groups; i++) {
345 if (i == parent_fbg_group || i == parent_fbg_group - 1)
346 continue;
347
348 flexbg_free_blocks = flex_group[i].free_blocks;
349 flex_freeb_ratio = flexbg_free_blocks * 100 / blocks_per_flex;
350
351 if (flex_freeb_ratio > free_block_ratio &&
352 flex_group[i].free_inodes) {
353 best_flex = i;
354 goto found_flexbg;
355 }
356
Eric Sandeenc0010772008-08-19 22:19:50 -0400357 if (flex_group[best_flex].free_inodes == 0 ||
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400358 (flex_group[i].free_blocks >
359 flex_group[best_flex].free_blocks &&
360 flex_group[i].free_inodes))
361 best_flex = i;
362 }
363
364 if (!flex_group[best_flex].free_inodes ||
365 !flex_group[best_flex].free_blocks)
366 return -1;
367
368found_flexbg:
369 for (i = best_flex * flex_size; i < ngroups &&
370 i < (best_flex + 1) * flex_size; i++) {
371 desc = ext4_get_group_desc(sb, i, &bh);
372 if (le16_to_cpu(desc->bg_free_inodes_count)) {
373 *best_group = i;
374 goto out;
375 }
376 }
377
378 return -1;
379out:
380 return 0;
381}
382
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700383/*
384 * Orlov's allocator for directories.
385 *
386 * We always try to spread first-level directories.
387 *
388 * If there are blockgroups with both free inodes and free blocks counts
389 * not worse than average we return one with smallest directory count.
390 * Otherwise we simply return a random group.
391 *
392 * For the rest rules look so:
393 *
394 * It's OK to put directory into a group unless
395 * it has too many directories already (max_dirs) or
396 * it has too few free inodes left (min_inodes) or
397 * it has too few free blocks left (min_blocks) or
398 * it's already running too large debt (max_debt).
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000399 * Parent's group is preferred, if it doesn't satisfy these
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700400 * conditions we search cyclically through the rest. If none
401 * of the groups look good we just look for a group with more
402 * free inodes than average (starting at parent's group).
403 *
404 * Debt is incremented each time we allocate a directory and decremented
405 * when we allocate an inode, within 0--255.
406 */
407
408#define INODE_COST 64
409#define BLOCK_COST 256
410
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500411static int find_group_orlov(struct super_block *sb, struct inode *parent,
412 ext4_group_t *group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700413{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500414 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Mingming Cao617ba132006-10-11 01:20:53 -0700415 struct ext4_sb_info *sbi = EXT4_SB(sb);
416 struct ext4_super_block *es = sbi->s_es;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500417 ext4_group_t ngroups = sbi->s_groups_count;
Mingming Cao617ba132006-10-11 01:20:53 -0700418 int inodes_per_group = EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700419 unsigned int freei, avefreei;
Mingming Cao617ba132006-10-11 01:20:53 -0700420 ext4_fsblk_t freeb, avefreeb;
421 ext4_fsblk_t blocks_per_dir;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700422 unsigned int ndirs;
423 int max_debt, max_dirs, min_inodes;
Mingming Cao617ba132006-10-11 01:20:53 -0700424 ext4_grpblk_t min_blocks;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500425 ext4_group_t i;
Mingming Cao617ba132006-10-11 01:20:53 -0700426 struct ext4_group_desc *desc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700427
428 freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
429 avefreei = freei / ngroups;
430 freeb = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
Mingming Cao3a5b2ec2006-10-11 01:21:05 -0700431 avefreeb = freeb;
Andrew Mortonf4e5bc22006-10-11 01:21:19 -0700432 do_div(avefreeb, ngroups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700433 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
434
435 if ((parent == sb->s_root->d_inode) ||
Mingming Cao617ba132006-10-11 01:20:53 -0700436 (EXT4_I(parent)->i_flags & EXT4_TOPDIR_FL)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700437 int best_ndir = inodes_per_group;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500438 ext4_group_t grp;
439 int ret = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700440
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500441 get_random_bytes(&grp, sizeof(grp));
442 parent_group = (unsigned)grp % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700443 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500444 grp = (parent_group + i) % ngroups;
445 desc = ext4_get_group_desc(sb, grp, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700446 if (!desc || !desc->bg_free_inodes_count)
447 continue;
448 if (le16_to_cpu(desc->bg_used_dirs_count) >= best_ndir)
449 continue;
450 if (le16_to_cpu(desc->bg_free_inodes_count) < avefreei)
451 continue;
452 if (le16_to_cpu(desc->bg_free_blocks_count) < avefreeb)
453 continue;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500454 *group = grp;
455 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700456 best_ndir = le16_to_cpu(desc->bg_used_dirs_count);
457 }
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500458 if (ret == 0)
459 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700460 goto fallback;
461 }
462
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700463 blocks_per_dir = ext4_blocks_count(es) - freeb;
Andrew Mortonf4e5bc22006-10-11 01:21:19 -0700464 do_div(blocks_per_dir, ndirs);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700465
466 max_dirs = ndirs / ngroups + inodes_per_group / 16;
467 min_inodes = avefreei - inodes_per_group / 4;
Mingming Cao617ba132006-10-11 01:20:53 -0700468 min_blocks = avefreeb - EXT4_BLOCKS_PER_GROUP(sb) / 4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700469
Mingming Cao3a5b2ec2006-10-11 01:21:05 -0700470 max_debt = EXT4_BLOCKS_PER_GROUP(sb);
Andrew Mortonf4e5bc22006-10-11 01:21:19 -0700471 max_debt /= max_t(int, blocks_per_dir, BLOCK_COST);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700472 if (max_debt * INODE_COST > inodes_per_group)
473 max_debt = inodes_per_group / INODE_COST;
474 if (max_debt > 255)
475 max_debt = 255;
476 if (max_debt == 0)
477 max_debt = 1;
478
479 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500480 *group = (parent_group + i) % ngroups;
481 desc = ext4_get_group_desc(sb, *group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700482 if (!desc || !desc->bg_free_inodes_count)
483 continue;
484 if (le16_to_cpu(desc->bg_used_dirs_count) >= max_dirs)
485 continue;
486 if (le16_to_cpu(desc->bg_free_inodes_count) < min_inodes)
487 continue;
488 if (le16_to_cpu(desc->bg_free_blocks_count) < min_blocks)
489 continue;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500490 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700491 }
492
493fallback:
494 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500495 *group = (parent_group + i) % ngroups;
496 desc = ext4_get_group_desc(sb, *group, NULL);
497 if (desc && desc->bg_free_inodes_count &&
498 le16_to_cpu(desc->bg_free_inodes_count) >= avefreei)
499 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700500 }
501
502 if (avefreei) {
503 /*
504 * The free-inodes counter is approximate, and for really small
505 * filesystems the above test can fail to find any blockgroups
506 */
507 avefreei = 0;
508 goto fallback;
509 }
510
511 return -1;
512}
513
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500514static int find_group_other(struct super_block *sb, struct inode *parent,
515 ext4_group_t *group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700516{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500517 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
518 ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
Mingming Cao617ba132006-10-11 01:20:53 -0700519 struct ext4_group_desc *desc;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500520 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700521
522 /*
523 * Try to place the inode in its parent directory
524 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500525 *group = parent_group;
526 desc = ext4_get_group_desc(sb, *group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700527 if (desc && le16_to_cpu(desc->bg_free_inodes_count) &&
528 le16_to_cpu(desc->bg_free_blocks_count))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500529 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700530
531 /*
532 * We're going to place this inode in a different blockgroup from its
533 * parent. We want to cause files in a common directory to all land in
534 * the same blockgroup. But we want files which are in a different
535 * directory which shares a blockgroup with our parent to land in a
536 * different blockgroup.
537 *
538 * So add our directory's i_ino into the starting point for the hash.
539 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500540 *group = (*group + parent->i_ino) % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700541
542 /*
543 * Use a quadratic hash to find a group with a free inode and some free
544 * blocks.
545 */
546 for (i = 1; i < ngroups; i <<= 1) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500547 *group += i;
548 if (*group >= ngroups)
549 *group -= ngroups;
550 desc = ext4_get_group_desc(sb, *group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700551 if (desc && le16_to_cpu(desc->bg_free_inodes_count) &&
552 le16_to_cpu(desc->bg_free_blocks_count))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500553 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700554 }
555
556 /*
557 * That failed: try linear search for a free inode, even if that group
558 * has no free blocks.
559 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500560 *group = parent_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700561 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500562 if (++*group >= ngroups)
563 *group = 0;
564 desc = ext4_get_group_desc(sb, *group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700565 if (desc && le16_to_cpu(desc->bg_free_inodes_count))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500566 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700567 }
568
569 return -1;
570}
571
572/*
573 * There are two policies for allocating an inode. If the new inode is
574 * a directory, then a forward search is made for a block group with both
575 * free space and a low directory-to-inode ratio; if that fails, then of
576 * the groups with above-average free space, that group with the fewest
577 * directories already is chosen.
578 *
579 * For other inodes, search forward from the parent directory's block
580 * group to find a free inode.
581 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400582struct inode *ext4_new_inode(handle_t *handle, struct inode *dir, int mode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700583{
584 struct super_block *sb;
585 struct buffer_head *bitmap_bh = NULL;
586 struct buffer_head *bh2;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500587 ext4_group_t group = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700588 unsigned long ino = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400589 struct inode *inode;
590 struct ext4_group_desc *gdp = NULL;
591 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -0700592 struct ext4_inode_info *ei;
593 struct ext4_sb_info *sbi;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500594 int ret2, err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700595 struct inode *ret;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500596 ext4_group_t i;
597 int free = 0;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400598 ext4_group_t flex_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700599
600 /* Cannot create files in a deleted directory */
601 if (!dir || !dir->i_nlink)
602 return ERR_PTR(-EPERM);
603
604 sb = dir->i_sb;
605 inode = new_inode(sb);
606 if (!inode)
607 return ERR_PTR(-ENOMEM);
Mingming Cao617ba132006-10-11 01:20:53 -0700608 ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700609
Mingming Cao617ba132006-10-11 01:20:53 -0700610 sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700611 es = sbi->s_es;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400612
613 if (sbi->s_log_groups_per_flex) {
614 ret2 = find_group_flex(sb, dir, &group);
615 goto got_group;
616 }
617
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700618 if (S_ISDIR(mode)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400619 if (test_opt(sb, OLDALLOC))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500620 ret2 = find_group_dir(sb, dir, &group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700621 else
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500622 ret2 = find_group_orlov(sb, dir, &group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700623 } else
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500624 ret2 = find_group_other(sb, dir, &group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700625
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400626got_group:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700627 err = -ENOSPC;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500628 if (ret2 == -1)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700629 goto out;
630
631 for (i = 0; i < sbi->s_groups_count; i++) {
632 err = -EIO;
633
Mingming Cao617ba132006-10-11 01:20:53 -0700634 gdp = ext4_get_group_desc(sb, group, &bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700635 if (!gdp)
636 goto fail;
637
638 brelse(bitmap_bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400639 bitmap_bh = ext4_read_inode_bitmap(sb, group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700640 if (!bitmap_bh)
641 goto fail;
642
643 ino = 0;
644
645repeat_in_this_group:
Mingming Cao617ba132006-10-11 01:20:53 -0700646 ino = ext4_find_next_zero_bit((unsigned long *)
647 bitmap_bh->b_data, EXT4_INODES_PER_GROUP(sb), ino);
648 if (ino < EXT4_INODES_PER_GROUP(sb)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700649
650 BUFFER_TRACE(bitmap_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700651 err = ext4_journal_get_write_access(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700652 if (err)
653 goto fail;
654
Mingming Cao617ba132006-10-11 01:20:53 -0700655 if (!ext4_set_bit_atomic(sb_bgl_lock(sbi, group),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700656 ino, bitmap_bh->b_data)) {
657 /* we won it */
658 BUFFER_TRACE(bitmap_bh,
Mingming Cao617ba132006-10-11 01:20:53 -0700659 "call ext4_journal_dirty_metadata");
660 err = ext4_journal_dirty_metadata(handle,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700661 bitmap_bh);
662 if (err)
663 goto fail;
664 goto got;
665 }
666 /* we lost it */
Mingming Caodab291a2006-10-11 01:21:01 -0700667 jbd2_journal_release_buffer(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700668
Mingming Cao617ba132006-10-11 01:20:53 -0700669 if (++ino < EXT4_INODES_PER_GROUP(sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700670 goto repeat_in_this_group;
671 }
672
673 /*
674 * This case is possible in concurrent environment. It is very
675 * rare. We cannot repeat the find_group_xxx() call because
676 * that will simply return the same blockgroup, because the
677 * group descriptor metadata has not yet been updated.
678 * So we just go onto the next blockgroup.
679 */
680 if (++group == sbi->s_groups_count)
681 group = 0;
682 }
683 err = -ENOSPC;
684 goto out;
685
686got:
Andreas Dilger717d50e2007-10-16 18:38:25 -0400687 ino++;
688 if ((group == 0 && ino < EXT4_FIRST_INO(sb)) ||
689 ino > EXT4_INODES_PER_GROUP(sb)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -0400690 ext4_error(sb, __func__,
Andreas Dilger717d50e2007-10-16 18:38:25 -0400691 "reserved inode or inode > inodes count - "
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500692 "block_group = %lu, inode=%lu", group,
Andreas Dilger717d50e2007-10-16 18:38:25 -0400693 ino + group * EXT4_INODES_PER_GROUP(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700694 err = -EIO;
695 goto fail;
696 }
697
698 BUFFER_TRACE(bh2, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700699 err = ext4_journal_get_write_access(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700700 if (err) goto fail;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400701
702 /* We may have to initialize the block bitmap if it isn't already */
703 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM) &&
704 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Theodore Ts'o574ca172008-07-11 19:27:31 -0400705 struct buffer_head *block_bh = ext4_read_block_bitmap(sb, group);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400706
707 BUFFER_TRACE(block_bh, "get block bitmap access");
708 err = ext4_journal_get_write_access(handle, block_bh);
709 if (err) {
710 brelse(block_bh);
711 goto fail;
712 }
713
714 free = 0;
715 spin_lock(sb_bgl_lock(sbi, group));
716 /* recheck and clear flag under lock if we still need to */
717 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
718 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
719 free = ext4_free_blocks_after_init(sb, group, gdp);
720 gdp->bg_free_blocks_count = cpu_to_le16(free);
Frederic Bohe23712a92008-11-07 09:21:01 -0500721 gdp->bg_checksum = ext4_group_desc_csum(sbi, group,
722 gdp);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400723 }
724 spin_unlock(sb_bgl_lock(sbi, group));
725
726 /* Don't need to dirty bitmap block if we didn't change it */
727 if (free) {
728 BUFFER_TRACE(block_bh, "dirty block bitmap");
729 err = ext4_journal_dirty_metadata(handle, block_bh);
730 }
731
732 brelse(block_bh);
733 if (err)
734 goto fail;
735 }
736
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700737 spin_lock(sb_bgl_lock(sbi, group));
Andreas Dilger717d50e2007-10-16 18:38:25 -0400738 /* If we didn't allocate from within the initialized part of the inode
739 * table then we need to initialize up to this inode. */
740 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
741 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
742 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT);
743
744 /* When marking the block group with
745 * ~EXT4_BG_INODE_UNINIT we don't want to depend
Eric Sandeenb5f10ee2008-08-02 21:21:08 -0400746 * on the value of bg_itable_unused even though
Andreas Dilger717d50e2007-10-16 18:38:25 -0400747 * mke2fs could have initialized the same for us.
748 * Instead we calculated the value below
749 */
750
751 free = 0;
752 } else {
753 free = EXT4_INODES_PER_GROUP(sb) -
754 le16_to_cpu(gdp->bg_itable_unused);
755 }
756
757 /*
758 * Check the relative inode number against the last used
759 * relative inode number in this group. if it is greater
760 * we need to update the bg_itable_unused count
761 *
762 */
763 if (ino > free)
764 gdp->bg_itable_unused =
765 cpu_to_le16(EXT4_INODES_PER_GROUP(sb) - ino);
766 }
767
Marcin Slusarze8546d02008-04-17 10:38:59 -0400768 le16_add_cpu(&gdp->bg_free_inodes_count, -1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700769 if (S_ISDIR(mode)) {
Marcin Slusarze8546d02008-04-17 10:38:59 -0400770 le16_add_cpu(&gdp->bg_used_dirs_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700771 }
Andreas Dilger717d50e2007-10-16 18:38:25 -0400772 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700773 spin_unlock(sb_bgl_lock(sbi, group));
Mingming Cao617ba132006-10-11 01:20:53 -0700774 BUFFER_TRACE(bh2, "call ext4_journal_dirty_metadata");
775 err = ext4_journal_dirty_metadata(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700776 if (err) goto fail;
777
778 percpu_counter_dec(&sbi->s_freeinodes_counter);
779 if (S_ISDIR(mode))
780 percpu_counter_inc(&sbi->s_dirs_counter);
781 sb->s_dirt = 1;
782
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400783 if (sbi->s_log_groups_per_flex) {
784 flex_group = ext4_flex_group(sbi, group);
785 spin_lock(sb_bgl_lock(sbi, flex_group));
786 sbi->s_flex_groups[flex_group].free_inodes--;
787 spin_unlock(sb_bgl_lock(sbi, flex_group));
788 }
789
David Howells4c9c5442008-11-14 10:38:51 +1100790 inode->i_uid = current_fsuid();
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400791 if (test_opt(sb, GRPID))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700792 inode->i_gid = dir->i_gid;
793 else if (dir->i_mode & S_ISGID) {
794 inode->i_gid = dir->i_gid;
795 if (S_ISDIR(mode))
796 mode |= S_ISGID;
797 } else
David Howells4c9c5442008-11-14 10:38:51 +1100798 inode->i_gid = current_fsgid();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700799 inode->i_mode = mode;
800
Andreas Dilger717d50e2007-10-16 18:38:25 -0400801 inode->i_ino = ino + group * EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700802 /* This is the optimal IO size (for stat), not the fs block size */
803 inode->i_blocks = 0;
Kalpak Shahef7f3832007-07-18 09:15:20 -0400804 inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
805 ext4_current_time(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700806
807 memset(ei->i_data, 0, sizeof(ei->i_data));
808 ei->i_dir_start_lookup = 0;
809 ei->i_disksize = 0;
810
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -0500811 /*
812 * Don't inherit extent flag from directory. We set extent flag on
813 * newly created directory and file only if -o extent mount option is
814 * specified
815 */
816 ei->i_flags = EXT4_I(dir)->i_flags & ~(EXT4_INDEX_FL|EXT4_EXTENTS_FL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700817 if (S_ISLNK(mode))
Mingming Cao617ba132006-10-11 01:20:53 -0700818 ei->i_flags &= ~(EXT4_IMMUTABLE_FL|EXT4_APPEND_FL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700819 /* dirsync only applies to directories */
820 if (!S_ISDIR(mode))
Mingming Cao617ba132006-10-11 01:20:53 -0700821 ei->i_flags &= ~EXT4_DIRSYNC_FL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700822 ei->i_file_acl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700823 ei->i_dtime = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700824 ei->i_block_group = group;
825
Mingming Cao617ba132006-10-11 01:20:53 -0700826 ext4_set_inode_flags(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700827 if (IS_DIRSYNC(inode))
828 handle->h_sync = 1;
Al Viro6b38e842008-12-30 02:03:31 -0500829 if (insert_inode_locked(inode) < 0) {
830 err = -EINVAL;
831 goto fail_drop;
832 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700833 spin_lock(&sbi->s_next_gen_lock);
834 inode->i_generation = sbi->s_next_generation++;
835 spin_unlock(&sbi->s_next_gen_lock);
836
Mingming Cao617ba132006-10-11 01:20:53 -0700837 ei->i_state = EXT4_STATE_NEW;
Kalpak Shahef7f3832007-07-18 09:15:20 -0400838
839 ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700840
841 ret = inode;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400842 if (DQUOT_ALLOC_INODE(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700843 err = -EDQUOT;
844 goto fail_drop;
845 }
846
Mingming Cao617ba132006-10-11 01:20:53 -0700847 err = ext4_init_acl(handle, inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700848 if (err)
849 goto fail_free_drop;
850
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400851 err = ext4_init_security(handle, inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700852 if (err)
853 goto fail_free_drop;
854
Alex Tomasa86c6182006-10-11 01:21:03 -0700855 if (test_opt(sb, EXTENTS)) {
Eric Sandeene4079a12008-07-11 19:27:31 -0400856 /* set extent flag only for directory, file and normal symlink*/
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -0400857 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) {
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -0500858 EXT4_I(inode)->i_flags |= EXT4_EXTENTS_FL;
859 ext4_ext_tree_init(handle, inode);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -0500860 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700861 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700862
Aneesh Kumar K.V8753e882008-04-29 22:00:36 -0400863 err = ext4_mark_inode_dirty(handle, inode);
864 if (err) {
865 ext4_std_error(sb, err);
866 goto fail_free_drop;
867 }
868
Mingming Cao617ba132006-10-11 01:20:53 -0700869 ext4_debug("allocating inode %lu\n", inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700870 goto really_out;
871fail:
Mingming Cao617ba132006-10-11 01:20:53 -0700872 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700873out:
874 iput(inode);
875 ret = ERR_PTR(err);
876really_out:
877 brelse(bitmap_bh);
878 return ret;
879
880fail_free_drop:
881 DQUOT_FREE_INODE(inode);
882
883fail_drop:
884 DQUOT_DROP(inode);
885 inode->i_flags |= S_NOQUOTA;
886 inode->i_nlink = 0;
Al Viro6b38e842008-12-30 02:03:31 -0500887 unlock_new_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700888 iput(inode);
889 brelse(bitmap_bh);
890 return ERR_PTR(err);
891}
892
893/* Verify that we are loading a valid orphan from disk */
Mingming Cao617ba132006-10-11 01:20:53 -0700894struct inode *ext4_orphan_get(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700895{
Mingming Cao617ba132006-10-11 01:20:53 -0700896 unsigned long max_ino = le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count);
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500897 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700898 int bit;
David Howells1d1fe1e2008-02-07 00:15:37 -0800899 struct buffer_head *bitmap_bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700900 struct inode *inode = NULL;
David Howells1d1fe1e2008-02-07 00:15:37 -0800901 long err = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700902
903 /* Error cases - e2fsck has already cleaned up for us */
904 if (ino > max_ino) {
Harvey Harrison46e665e2008-04-17 10:38:59 -0400905 ext4_warning(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700906 "bad orphan ino %lu! e2fsck was run?", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -0800907 goto error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700908 }
909
Mingming Cao617ba132006-10-11 01:20:53 -0700910 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
911 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400912 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700913 if (!bitmap_bh) {
Harvey Harrison46e665e2008-04-17 10:38:59 -0400914 ext4_warning(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700915 "inode bitmap error for orphan %lu", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -0800916 goto error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700917 }
918
919 /* Having the inode bit set should be a 100% indicator that this
920 * is a valid orphan (no e2fsck run on fs). Orphans also include
921 * inodes that were being truncated, so we can't check i_nlink==0.
922 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800923 if (!ext4_test_bit(bit, bitmap_bh->b_data))
924 goto bad_orphan;
925
926 inode = ext4_iget(sb, ino);
927 if (IS_ERR(inode))
928 goto iget_failed;
929
Duane Griffin91ef4ca2008-07-11 19:27:31 -0400930 /*
931 * If the orphans has i_nlinks > 0 then it should be able to be
932 * truncated, otherwise it won't be removed from the orphan list
933 * during processing and an infinite loop will result.
934 */
935 if (inode->i_nlink && !ext4_can_truncate(inode))
936 goto bad_orphan;
937
David Howells1d1fe1e2008-02-07 00:15:37 -0800938 if (NEXT_ORPHAN(inode) > max_ino)
939 goto bad_orphan;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700940 brelse(bitmap_bh);
941 return inode;
David Howells1d1fe1e2008-02-07 00:15:37 -0800942
943iget_failed:
944 err = PTR_ERR(inode);
945 inode = NULL;
946bad_orphan:
Harvey Harrison46e665e2008-04-17 10:38:59 -0400947 ext4_warning(sb, __func__,
David Howells1d1fe1e2008-02-07 00:15:37 -0800948 "bad orphan inode %lu! e2fsck was run?", ino);
949 printk(KERN_NOTICE "ext4_test_bit(bit=%d, block=%llu) = %d\n",
950 bit, (unsigned long long)bitmap_bh->b_blocknr,
951 ext4_test_bit(bit, bitmap_bh->b_data));
952 printk(KERN_NOTICE "inode=%p\n", inode);
953 if (inode) {
954 printk(KERN_NOTICE "is_bad_inode(inode)=%d\n",
955 is_bad_inode(inode));
956 printk(KERN_NOTICE "NEXT_ORPHAN(inode)=%u\n",
957 NEXT_ORPHAN(inode));
958 printk(KERN_NOTICE "max_ino=%lu\n", max_ino);
Duane Griffin91ef4ca2008-07-11 19:27:31 -0400959 printk(KERN_NOTICE "i_nlink=%u\n", inode->i_nlink);
David Howells1d1fe1e2008-02-07 00:15:37 -0800960 /* Avoid freeing blocks if we got a bad deleted inode */
961 if (inode->i_nlink == 0)
962 inode->i_blocks = 0;
963 iput(inode);
964 }
965 brelse(bitmap_bh);
966error:
967 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700968}
969
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400970unsigned long ext4_count_free_inodes(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700971{
972 unsigned long desc_count;
Mingming Cao617ba132006-10-11 01:20:53 -0700973 struct ext4_group_desc *gdp;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500974 ext4_group_t i;
Mingming Cao617ba132006-10-11 01:20:53 -0700975#ifdef EXT4FS_DEBUG
976 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700977 unsigned long bitmap_count, x;
978 struct buffer_head *bitmap_bh = NULL;
979
Mingming Cao617ba132006-10-11 01:20:53 -0700980 es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700981 desc_count = 0;
982 bitmap_count = 0;
983 gdp = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -0700984 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400985 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700986 if (!gdp)
987 continue;
988 desc_count += le16_to_cpu(gdp->bg_free_inodes_count);
989 brelse(bitmap_bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400990 bitmap_bh = ext4_read_inode_bitmap(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700991 if (!bitmap_bh)
992 continue;
993
Mingming Cao617ba132006-10-11 01:20:53 -0700994 x = ext4_count_free(bitmap_bh, EXT4_INODES_PER_GROUP(sb) / 8);
Eric Sandeenc549a952008-01-28 23:58:27 -0500995 printk(KERN_DEBUG "group %lu: stored = %d, counted = %lu\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700996 i, le16_to_cpu(gdp->bg_free_inodes_count), x);
997 bitmap_count += x;
998 }
999 brelse(bitmap_bh);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001000 printk(KERN_DEBUG "ext4_count_free_inodes: "
1001 "stored = %u, computed = %lu, %lu\n",
1002 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001003 return desc_count;
1004#else
1005 desc_count = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07001006 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001007 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001008 if (!gdp)
1009 continue;
1010 desc_count += le16_to_cpu(gdp->bg_free_inodes_count);
1011 cond_resched();
1012 }
1013 return desc_count;
1014#endif
1015}
1016
1017/* Called at mount-time, super-block is locked */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001018unsigned long ext4_count_dirs(struct super_block * sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001019{
1020 unsigned long count = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001021 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001022
Mingming Cao617ba132006-10-11 01:20:53 -07001023 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001024 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001025 if (!gdp)
1026 continue;
1027 count += le16_to_cpu(gdp->bg_used_dirs_count);
1028 }
1029 return count;
1030}
1031