blob: 627f8c3337a3a24314624683ceac71ed30c72e95 [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)) {
Theodore Ts'oa9df9a42009-01-05 22:18:16 -050077 ext4_error(sb, __func__, "Checksum bad for group %u",
Andreas Dilger717d50e2007-10-16 18:38:25 -040078 block_group);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -050079 ext4_free_blks_set(sb, gdp, 0);
80 ext4_free_inodes_set(sb, gdp, 0);
81 ext4_itable_unused_set(sb, gdp, 0);
Andreas Dilger717d50e2007-10-16 18:38:25 -040082 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);
Aneesh Kumar K.V648f5872009-01-05 21:46:04 -050087 mark_bitmap_end(EXT4_INODES_PER_GROUP(sb), sb->s_blocksize * 8,
Andreas Dilger717d50e2007-10-16 18:38:25 -040088 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 - "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500114 "block_group = %u, inode_bitmap = %llu",
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400115 block_group, bitmap_blk);
116 return NULL;
117 }
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500118 if (bitmap_uptodate(bh))
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400119 return bh;
120
Frederic Bohec806e682008-10-10 08:09:18 -0400121 lock_buffer(bh);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500122 if (bitmap_uptodate(bh)) {
123 unlock_buffer(bh);
124 return bh;
125 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -0400126 spin_lock(sb_bgl_lock(EXT4_SB(sb), block_group));
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400127 if (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
128 ext4_init_inode_bitmap(sb, bh, block_group, desc);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500129 set_bitmap_uptodate(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400130 set_buffer_uptodate(bh);
Eric Sandeenb5f10ee2008-08-02 21:21:08 -0400131 spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group));
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500132 unlock_buffer(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400133 return bh;
134 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -0400135 spin_unlock(sb_bgl_lock(EXT4_SB(sb), block_group));
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500136 if (buffer_uptodate(bh)) {
137 /*
138 * if not uninit if bh is uptodate,
139 * bitmap is also uptodate
140 */
141 set_bitmap_uptodate(bh);
142 unlock_buffer(bh);
143 return bh;
144 }
145 /*
146 * submit the buffer_head for read. We can
147 * safely mark the bitmap as uptodate now.
148 * We do it here so the bitmap uptodate bit
149 * get set with buffer lock held.
150 */
151 set_bitmap_uptodate(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400152 if (bh_submit_read(bh) < 0) {
153 put_bh(bh);
154 ext4_error(sb, __func__,
155 "Cannot read inode bitmap - "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500156 "block_group = %u, inode_bitmap = %llu",
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400157 block_group, bitmap_blk);
158 return NULL;
159 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700160 return bh;
161}
162
163/*
164 * NOTE! When we get the inode, we're the only people
165 * that have access to it, and as such there are no
166 * race conditions we have to worry about. The inode
167 * is not on the hash-lists, and it cannot be reached
168 * through the filesystem because the directory entry
169 * has been deleted earlier.
170 *
171 * HOWEVER: we must make sure that we get no aliases,
172 * which means that we have to call "clear_inode()"
173 * _before_ we mark the inode not in use in the inode
174 * bitmaps. Otherwise a newly created file might use
175 * the same inode number (not actually the same pointer
176 * though), and then we'd have two inodes sharing the
177 * same inode number and space on the harddisk.
178 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400179void ext4_free_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700180{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400181 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700182 int is_directory;
183 unsigned long ino;
184 struct buffer_head *bitmap_bh = NULL;
185 struct buffer_head *bh2;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500186 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700187 unsigned long bit;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400188 struct ext4_group_desc *gdp;
189 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -0700190 struct ext4_sb_info *sbi;
Eric Sandeen7ce9d5d2009-03-04 18:38:18 -0500191 int fatal = 0, err, count, cleared;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400192 ext4_group_t flex_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700193
194 if (atomic_read(&inode->i_count) > 1) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400195 printk(KERN_ERR "ext4_free_inode: inode has count=%d\n",
196 atomic_read(&inode->i_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700197 return;
198 }
199 if (inode->i_nlink) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400200 printk(KERN_ERR "ext4_free_inode: inode has nlink=%d\n",
201 inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700202 return;
203 }
204 if (!sb) {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400205 printk(KERN_ERR "ext4_free_inode: inode on "
206 "nonexistent device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700207 return;
208 }
Mingming Cao617ba132006-10-11 01:20:53 -0700209 sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700210
211 ino = inode->i_ino;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400212 ext4_debug("freeing inode %lu\n", ino);
Theodore Ts'oba80b102009-01-03 20:03:21 -0500213 trace_mark(ext4_free_inode,
214 "dev %s ino %lu mode %d uid %lu gid %lu bocks %llu",
215 sb->s_id, inode->i_ino, inode->i_mode,
216 (unsigned long) inode->i_uid, (unsigned long) inode->i_gid,
217 (unsigned long long) inode->i_blocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700218
219 /*
220 * Note: we must free any quota before locking the superblock,
221 * as writing the quota to disk may need the lock as well.
222 */
223 DQUOT_INIT(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700224 ext4_xattr_delete_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700225 DQUOT_FREE_INODE(inode);
226 DQUOT_DROP(inode);
227
228 is_directory = S_ISDIR(inode->i_mode);
229
230 /* Do this BEFORE marking the inode not in use or returning an error */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400231 clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700232
Mingming Cao617ba132006-10-11 01:20:53 -0700233 es = EXT4_SB(sb)->s_es;
234 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400235 ext4_error(sb, "ext4_free_inode",
236 "reserved or nonexistent inode %lu", ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700237 goto error_return;
238 }
Mingming Cao617ba132006-10-11 01:20:53 -0700239 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
240 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400241 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700242 if (!bitmap_bh)
243 goto error_return;
244
245 BUFFER_TRACE(bitmap_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700246 fatal = ext4_journal_get_write_access(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700247 if (fatal)
248 goto error_return;
249
250 /* Ok, now we can actually update the inode bitmaps.. */
Eric Sandeen7ce9d5d2009-03-04 18:38:18 -0500251 spin_lock(sb_bgl_lock(sbi, block_group));
252 cleared = ext4_clear_bit(bit, bitmap_bh->b_data);
253 spin_unlock(sb_bgl_lock(sbi, block_group));
254 if (!cleared)
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400255 ext4_error(sb, "ext4_free_inode",
256 "bit already cleared for inode %lu", ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700257 else {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400258 gdp = ext4_get_group_desc(sb, block_group, &bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700259
260 BUFFER_TRACE(bh2, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700261 fatal = ext4_journal_get_write_access(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700262 if (fatal) goto error_return;
263
264 if (gdp) {
265 spin_lock(sb_bgl_lock(sbi, block_group));
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500266 count = ext4_free_inodes_count(sb, gdp) + 1;
267 ext4_free_inodes_set(sb, gdp, count);
268 if (is_directory) {
269 count = ext4_used_dirs_count(sb, gdp) - 1;
270 ext4_used_dirs_set(sb, gdp, count);
271 }
Andreas Dilger717d50e2007-10-16 18:38:25 -0400272 gdp->bg_checksum = ext4_group_desc_csum(sbi,
273 block_group, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700274 spin_unlock(sb_bgl_lock(sbi, block_group));
275 percpu_counter_inc(&sbi->s_freeinodes_counter);
276 if (is_directory)
277 percpu_counter_dec(&sbi->s_dirs_counter);
278
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400279 if (sbi->s_log_groups_per_flex) {
280 flex_group = ext4_flex_group(sbi, block_group);
281 spin_lock(sb_bgl_lock(sbi, flex_group));
282 sbi->s_flex_groups[flex_group].free_inodes++;
283 spin_unlock(sb_bgl_lock(sbi, flex_group));
284 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700285 }
Frank Mayhar03901312009-01-07 00:06:22 -0500286 BUFFER_TRACE(bh2, "call ext4_handle_dirty_metadata");
287 err = ext4_handle_dirty_metadata(handle, NULL, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700288 if (!fatal) fatal = err;
289 }
Frank Mayhar03901312009-01-07 00:06:22 -0500290 BUFFER_TRACE(bitmap_bh, "call ext4_handle_dirty_metadata");
291 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700292 if (!fatal)
293 fatal = err;
294 sb->s_dirt = 1;
295error_return:
296 brelse(bitmap_bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700297 ext4_std_error(sb, fatal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700298}
299
300/*
301 * There are two policies for allocating an inode. If the new inode is
302 * a directory, then a forward search is made for a block group with both
303 * free space and a low directory-to-inode ratio; if that fails, then of
304 * the groups with above-average free space, that group with the fewest
305 * directories already is chosen.
306 *
307 * For other inodes, search forward from the parent directory\'s block
308 * group to find a free inode.
309 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500310static int find_group_dir(struct super_block *sb, struct inode *parent,
311 ext4_group_t *best_group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700312{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500313 ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700314 unsigned int freei, avefreei;
Mingming Cao617ba132006-10-11 01:20:53 -0700315 struct ext4_group_desc *desc, *best_desc = NULL;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500316 ext4_group_t group;
317 int ret = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700318
Mingming Cao617ba132006-10-11 01:20:53 -0700319 freei = percpu_counter_read_positive(&EXT4_SB(sb)->s_freeinodes_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700320 avefreei = freei / ngroups;
321
322 for (group = 0; group < ngroups; group++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400323 desc = ext4_get_group_desc(sb, group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500324 if (!desc || !ext4_free_inodes_count(sb, desc))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700325 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500326 if (ext4_free_inodes_count(sb, desc) < avefreei)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700327 continue;
328 if (!best_desc ||
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500329 (ext4_free_blks_count(sb, desc) >
330 ext4_free_blks_count(sb, best_desc))) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500331 *best_group = group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700332 best_desc = desc;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500333 ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700334 }
335 }
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500336 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700337}
338
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400339#define free_block_ratio 10
340
341static int find_group_flex(struct super_block *sb, struct inode *parent,
342 ext4_group_t *best_group)
343{
344 struct ext4_sb_info *sbi = EXT4_SB(sb);
345 struct ext4_group_desc *desc;
346 struct buffer_head *bh;
347 struct flex_groups *flex_group = sbi->s_flex_groups;
348 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
349 ext4_group_t parent_fbg_group = ext4_flex_group(sbi, parent_group);
350 ext4_group_t ngroups = sbi->s_groups_count;
351 int flex_size = ext4_flex_bg_size(sbi);
352 ext4_group_t best_flex = parent_fbg_group;
353 int blocks_per_flex = sbi->s_blocks_per_group * flex_size;
354 int flexbg_free_blocks;
355 int flex_freeb_ratio;
356 ext4_group_t n_fbg_groups;
357 ext4_group_t i;
358
359 n_fbg_groups = (sbi->s_groups_count + flex_size - 1) >>
360 sbi->s_log_groups_per_flex;
361
362find_close_to_parent:
363 flexbg_free_blocks = flex_group[best_flex].free_blocks;
364 flex_freeb_ratio = flexbg_free_blocks * 100 / blocks_per_flex;
365 if (flex_group[best_flex].free_inodes &&
366 flex_freeb_ratio > free_block_ratio)
367 goto found_flexbg;
368
369 if (best_flex && best_flex == parent_fbg_group) {
370 best_flex--;
371 goto find_close_to_parent;
372 }
373
374 for (i = 0; i < n_fbg_groups; i++) {
375 if (i == parent_fbg_group || i == parent_fbg_group - 1)
376 continue;
377
378 flexbg_free_blocks = flex_group[i].free_blocks;
379 flex_freeb_ratio = flexbg_free_blocks * 100 / blocks_per_flex;
380
381 if (flex_freeb_ratio > free_block_ratio &&
382 flex_group[i].free_inodes) {
383 best_flex = i;
384 goto found_flexbg;
385 }
386
Eric Sandeenc0010772008-08-19 22:19:50 -0400387 if (flex_group[best_flex].free_inodes == 0 ||
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400388 (flex_group[i].free_blocks >
389 flex_group[best_flex].free_blocks &&
390 flex_group[i].free_inodes))
391 best_flex = i;
392 }
393
394 if (!flex_group[best_flex].free_inodes ||
395 !flex_group[best_flex].free_blocks)
396 return -1;
397
398found_flexbg:
399 for (i = best_flex * flex_size; i < ngroups &&
400 i < (best_flex + 1) * flex_size; i++) {
401 desc = ext4_get_group_desc(sb, i, &bh);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500402 if (ext4_free_inodes_count(sb, desc)) {
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400403 *best_group = i;
404 goto out;
405 }
406 }
407
408 return -1;
409out:
410 return 0;
411}
412
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700413/*
414 * Orlov's allocator for directories.
415 *
416 * We always try to spread first-level directories.
417 *
418 * If there are blockgroups with both free inodes and free blocks counts
419 * not worse than average we return one with smallest directory count.
420 * Otherwise we simply return a random group.
421 *
422 * For the rest rules look so:
423 *
424 * It's OK to put directory into a group unless
425 * it has too many directories already (max_dirs) or
426 * it has too few free inodes left (min_inodes) or
427 * it has too few free blocks left (min_blocks) or
428 * it's already running too large debt (max_debt).
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000429 * Parent's group is preferred, if it doesn't satisfy these
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700430 * conditions we search cyclically through the rest. If none
431 * of the groups look good we just look for a group with more
432 * free inodes than average (starting at parent's group).
433 *
434 * Debt is incremented each time we allocate a directory and decremented
435 * when we allocate an inode, within 0--255.
436 */
437
438#define INODE_COST 64
439#define BLOCK_COST 256
440
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500441static int find_group_orlov(struct super_block *sb, struct inode *parent,
442 ext4_group_t *group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700443{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500444 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Mingming Cao617ba132006-10-11 01:20:53 -0700445 struct ext4_sb_info *sbi = EXT4_SB(sb);
446 struct ext4_super_block *es = sbi->s_es;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500447 ext4_group_t ngroups = sbi->s_groups_count;
Mingming Cao617ba132006-10-11 01:20:53 -0700448 int inodes_per_group = EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700449 unsigned int freei, avefreei;
Mingming Cao617ba132006-10-11 01:20:53 -0700450 ext4_fsblk_t freeb, avefreeb;
451 ext4_fsblk_t blocks_per_dir;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700452 unsigned int ndirs;
453 int max_debt, max_dirs, min_inodes;
Mingming Cao617ba132006-10-11 01:20:53 -0700454 ext4_grpblk_t min_blocks;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500455 ext4_group_t i;
Mingming Cao617ba132006-10-11 01:20:53 -0700456 struct ext4_group_desc *desc;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700457
458 freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
459 avefreei = freei / ngroups;
460 freeb = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
Mingming Cao3a5b2ec2006-10-11 01:21:05 -0700461 avefreeb = freeb;
Andrew Mortonf4e5bc22006-10-11 01:21:19 -0700462 do_div(avefreeb, ngroups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700463 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
464
465 if ((parent == sb->s_root->d_inode) ||
Mingming Cao617ba132006-10-11 01:20:53 -0700466 (EXT4_I(parent)->i_flags & EXT4_TOPDIR_FL)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700467 int best_ndir = inodes_per_group;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500468 ext4_group_t grp;
469 int ret = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700470
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500471 get_random_bytes(&grp, sizeof(grp));
472 parent_group = (unsigned)grp % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700473 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500474 grp = (parent_group + i) % ngroups;
475 desc = ext4_get_group_desc(sb, grp, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500476 if (!desc || !ext4_free_inodes_count(sb, desc))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700477 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500478 if (ext4_used_dirs_count(sb, desc) >= best_ndir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700479 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500480 if (ext4_free_inodes_count(sb, desc) < avefreei)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700481 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500482 if (ext4_free_blks_count(sb, desc) < avefreeb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700483 continue;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500484 *group = grp;
485 ret = 0;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500486 best_ndir = ext4_used_dirs_count(sb, desc);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700487 }
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500488 if (ret == 0)
489 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700490 goto fallback;
491 }
492
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700493 blocks_per_dir = ext4_blocks_count(es) - freeb;
Andrew Mortonf4e5bc22006-10-11 01:21:19 -0700494 do_div(blocks_per_dir, ndirs);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700495
496 max_dirs = ndirs / ngroups + inodes_per_group / 16;
497 min_inodes = avefreei - inodes_per_group / 4;
Mingming Cao617ba132006-10-11 01:20:53 -0700498 min_blocks = avefreeb - EXT4_BLOCKS_PER_GROUP(sb) / 4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700499
Mingming Cao3a5b2ec2006-10-11 01:21:05 -0700500 max_debt = EXT4_BLOCKS_PER_GROUP(sb);
Andrew Mortonf4e5bc22006-10-11 01:21:19 -0700501 max_debt /= max_t(int, blocks_per_dir, BLOCK_COST);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700502 if (max_debt * INODE_COST > inodes_per_group)
503 max_debt = inodes_per_group / INODE_COST;
504 if (max_debt > 255)
505 max_debt = 255;
506 if (max_debt == 0)
507 max_debt = 1;
508
509 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500510 *group = (parent_group + i) % ngroups;
511 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500512 if (!desc || !ext4_free_inodes_count(sb, desc))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700513 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500514 if (ext4_used_dirs_count(sb, desc) >= max_dirs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700515 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500516 if (ext4_free_inodes_count(sb, desc) < min_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700517 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500518 if (ext4_free_blks_count(sb, desc) < min_blocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700519 continue;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500520 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700521 }
522
523fallback:
524 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500525 *group = (parent_group + i) % ngroups;
526 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500527 if (desc && ext4_free_inodes_count(sb, desc) &&
528 ext4_free_inodes_count(sb, desc) >= avefreei)
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500529 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700530 }
531
532 if (avefreei) {
533 /*
534 * The free-inodes counter is approximate, and for really small
535 * filesystems the above test can fail to find any blockgroups
536 */
537 avefreei = 0;
538 goto fallback;
539 }
540
541 return -1;
542}
543
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500544static int find_group_other(struct super_block *sb, struct inode *parent,
545 ext4_group_t *group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700546{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500547 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
548 ext4_group_t ngroups = EXT4_SB(sb)->s_groups_count;
Mingming Cao617ba132006-10-11 01:20:53 -0700549 struct ext4_group_desc *desc;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500550 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700551
552 /*
553 * Try to place the inode in its parent directory
554 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500555 *group = parent_group;
556 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500557 if (desc && ext4_free_inodes_count(sb, desc) &&
558 ext4_free_blks_count(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500559 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700560
561 /*
562 * We're going to place this inode in a different blockgroup from its
563 * parent. We want to cause files in a common directory to all land in
564 * the same blockgroup. But we want files which are in a different
565 * directory which shares a blockgroup with our parent to land in a
566 * different blockgroup.
567 *
568 * So add our directory's i_ino into the starting point for the hash.
569 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500570 *group = (*group + parent->i_ino) % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700571
572 /*
573 * Use a quadratic hash to find a group with a free inode and some free
574 * blocks.
575 */
576 for (i = 1; i < ngroups; i <<= 1) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500577 *group += i;
578 if (*group >= ngroups)
579 *group -= ngroups;
580 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500581 if (desc && ext4_free_inodes_count(sb, desc) &&
582 ext4_free_blks_count(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500583 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700584 }
585
586 /*
587 * That failed: try linear search for a free inode, even if that group
588 * has no free blocks.
589 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500590 *group = parent_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700591 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500592 if (++*group >= ngroups)
593 *group = 0;
594 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500595 if (desc && ext4_free_inodes_count(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500596 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700597 }
598
599 return -1;
600}
601
602/*
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500603 * claim the inode from the inode bitmap. If the group
604 * is uninit we need to take the groups's sb_bgl_lock
605 * and clear the uninit flag. The inode bitmap update
606 * and group desc uninit flag clear should be done
607 * after holding sb_bgl_lock so that ext4_read_inode_bitmap
608 * doesn't race with the ext4_claim_inode
609 */
610static int ext4_claim_inode(struct super_block *sb,
611 struct buffer_head *inode_bitmap_bh,
612 unsigned long ino, ext4_group_t group, int mode)
613{
614 int free = 0, retval = 0, count;
615 struct ext4_sb_info *sbi = EXT4_SB(sb);
616 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, group, NULL);
617
618 spin_lock(sb_bgl_lock(sbi, group));
619 if (ext4_set_bit(ino, inode_bitmap_bh->b_data)) {
620 /* not a free inode */
621 retval = 1;
622 goto err_ret;
623 }
624 ino++;
625 if ((group == 0 && ino < EXT4_FIRST_INO(sb)) ||
626 ino > EXT4_INODES_PER_GROUP(sb)) {
627 spin_unlock(sb_bgl_lock(sbi, group));
628 ext4_error(sb, __func__,
629 "reserved inode or inode > inodes count - "
630 "block_group = %u, inode=%lu", group,
631 ino + group * EXT4_INODES_PER_GROUP(sb));
632 return 1;
633 }
634 /* If we didn't allocate from within the initialized part of the inode
635 * table then we need to initialize up to this inode. */
636 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
637
638 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
639 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT);
640 /* When marking the block group with
641 * ~EXT4_BG_INODE_UNINIT we don't want to depend
642 * on the value of bg_itable_unused even though
643 * mke2fs could have initialized the same for us.
644 * Instead we calculated the value below
645 */
646
647 free = 0;
648 } else {
649 free = EXT4_INODES_PER_GROUP(sb) -
650 ext4_itable_unused_count(sb, gdp);
651 }
652
653 /*
654 * Check the relative inode number against the last used
655 * relative inode number in this group. if it is greater
656 * we need to update the bg_itable_unused count
657 *
658 */
659 if (ino > free)
660 ext4_itable_unused_set(sb, gdp,
661 (EXT4_INODES_PER_GROUP(sb) - ino));
662 }
663 count = ext4_free_inodes_count(sb, gdp) - 1;
664 ext4_free_inodes_set(sb, gdp, count);
665 if (S_ISDIR(mode)) {
666 count = ext4_used_dirs_count(sb, gdp) + 1;
667 ext4_used_dirs_set(sb, gdp, count);
668 }
669 gdp->bg_checksum = ext4_group_desc_csum(sbi, group, gdp);
670err_ret:
671 spin_unlock(sb_bgl_lock(sbi, group));
672 return retval;
673}
674
675/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700676 * There are two policies for allocating an inode. If the new inode is
677 * a directory, then a forward search is made for a block group with both
678 * free space and a low directory-to-inode ratio; if that fails, then of
679 * the groups with above-average free space, that group with the fewest
680 * directories already is chosen.
681 *
682 * For other inodes, search forward from the parent directory's block
683 * group to find a free inode.
684 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400685struct inode *ext4_new_inode(handle_t *handle, struct inode *dir, int mode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700686{
687 struct super_block *sb;
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500688 struct buffer_head *inode_bitmap_bh = NULL;
689 struct buffer_head *group_desc_bh;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500690 ext4_group_t group = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700691 unsigned long ino = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400692 struct inode *inode;
693 struct ext4_group_desc *gdp = NULL;
694 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -0700695 struct ext4_inode_info *ei;
696 struct ext4_sb_info *sbi;
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500697 int ret2, err = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700698 struct inode *ret;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500699 ext4_group_t i;
700 int free = 0;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400701 ext4_group_t flex_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700702
703 /* Cannot create files in a deleted directory */
704 if (!dir || !dir->i_nlink)
705 return ERR_PTR(-EPERM);
706
707 sb = dir->i_sb;
Theodore Ts'oba80b102009-01-03 20:03:21 -0500708 trace_mark(ext4_request_inode, "dev %s dir %lu mode %d", sb->s_id,
709 dir->i_ino, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700710 inode = new_inode(sb);
711 if (!inode)
712 return ERR_PTR(-ENOMEM);
Mingming Cao617ba132006-10-11 01:20:53 -0700713 ei = EXT4_I(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700714
Mingming Cao617ba132006-10-11 01:20:53 -0700715 sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700716 es = sbi->s_es;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400717
718 if (sbi->s_log_groups_per_flex) {
719 ret2 = find_group_flex(sb, dir, &group);
Theodore Ts'o05bf9e82009-02-21 12:13:24 -0500720 if (ret2 == -1) {
721 ret2 = find_group_other(sb, dir, &group);
722 if (ret2 == 0 && printk_ratelimit())
723 printk(KERN_NOTICE "ext4: find_group_flex "
724 "failed, fallback succeeded dir %lu\n",
725 dir->i_ino);
726 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400727 goto got_group;
728 }
729
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700730 if (S_ISDIR(mode)) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400731 if (test_opt(sb, OLDALLOC))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500732 ret2 = find_group_dir(sb, dir, &group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700733 else
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500734 ret2 = find_group_orlov(sb, dir, &group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700735 } else
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500736 ret2 = find_group_other(sb, dir, &group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700737
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400738got_group:
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700739 err = -ENOSPC;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500740 if (ret2 == -1)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700741 goto out;
742
743 for (i = 0; i < sbi->s_groups_count; i++) {
744 err = -EIO;
745
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500746 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700747 if (!gdp)
748 goto fail;
749
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500750 brelse(inode_bitmap_bh);
751 inode_bitmap_bh = ext4_read_inode_bitmap(sb, group);
752 if (!inode_bitmap_bh)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700753 goto fail;
754
755 ino = 0;
756
757repeat_in_this_group:
Mingming Cao617ba132006-10-11 01:20:53 -0700758 ino = ext4_find_next_zero_bit((unsigned long *)
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500759 inode_bitmap_bh->b_data,
760 EXT4_INODES_PER_GROUP(sb), ino);
761
Mingming Cao617ba132006-10-11 01:20:53 -0700762 if (ino < EXT4_INODES_PER_GROUP(sb)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700763
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500764 BUFFER_TRACE(inode_bitmap_bh, "get_write_access");
765 err = ext4_journal_get_write_access(handle,
766 inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700767 if (err)
768 goto fail;
769
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500770 BUFFER_TRACE(group_desc_bh, "get_write_access");
771 err = ext4_journal_get_write_access(handle,
772 group_desc_bh);
773 if (err)
774 goto fail;
775 if (!ext4_claim_inode(sb, inode_bitmap_bh,
776 ino, group, mode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700777 /* we won it */
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500778 BUFFER_TRACE(inode_bitmap_bh,
Frank Mayhar03901312009-01-07 00:06:22 -0500779 "call ext4_handle_dirty_metadata");
780 err = ext4_handle_dirty_metadata(handle,
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500781 inode,
782 inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700783 if (err)
784 goto fail;
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500785 /* zero bit is inode number 1*/
786 ino++;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700787 goto got;
788 }
789 /* we lost it */
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500790 ext4_handle_release_buffer(handle, inode_bitmap_bh);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500791 ext4_handle_release_buffer(handle, group_desc_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700792
Mingming Cao617ba132006-10-11 01:20:53 -0700793 if (++ino < EXT4_INODES_PER_GROUP(sb))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700794 goto repeat_in_this_group;
795 }
796
797 /*
798 * This case is possible in concurrent environment. It is very
799 * rare. We cannot repeat the find_group_xxx() call because
800 * that will simply return the same blockgroup, because the
801 * group descriptor metadata has not yet been updated.
802 * So we just go onto the next blockgroup.
803 */
804 if (++group == sbi->s_groups_count)
805 group = 0;
806 }
807 err = -ENOSPC;
808 goto out;
809
810got:
Andreas Dilger717d50e2007-10-16 18:38:25 -0400811 /* We may have to initialize the block bitmap if it isn't already */
812 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_GDT_CSUM) &&
813 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500814 struct buffer_head *block_bitmap_bh;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400815
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500816 block_bitmap_bh = ext4_read_block_bitmap(sb, group);
817 BUFFER_TRACE(block_bitmap_bh, "get block bitmap access");
818 err = ext4_journal_get_write_access(handle, block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400819 if (err) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500820 brelse(block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400821 goto fail;
822 }
823
824 free = 0;
825 spin_lock(sb_bgl_lock(sbi, group));
826 /* recheck and clear flag under lock if we still need to */
827 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Andreas Dilger717d50e2007-10-16 18:38:25 -0400828 free = ext4_free_blocks_after_init(sb, group, gdp);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500829 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500830 ext4_free_blks_set(sb, gdp, free);
Frederic Bohe23712a92008-11-07 09:21:01 -0500831 gdp->bg_checksum = ext4_group_desc_csum(sbi, group,
832 gdp);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400833 }
834 spin_unlock(sb_bgl_lock(sbi, group));
835
836 /* Don't need to dirty bitmap block if we didn't change it */
837 if (free) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500838 BUFFER_TRACE(block_bitmap_bh, "dirty block bitmap");
Frank Mayhar03901312009-01-07 00:06:22 -0500839 err = ext4_handle_dirty_metadata(handle,
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500840 NULL, block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400841 }
842
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500843 brelse(block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400844 if (err)
845 goto fail;
846 }
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500847 BUFFER_TRACE(group_desc_bh, "call ext4_handle_dirty_metadata");
848 err = ext4_handle_dirty_metadata(handle, NULL, group_desc_bh);
Aneesh Kumar K.V39341862009-01-05 21:38:14 -0500849 if (err)
850 goto fail;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700851
852 percpu_counter_dec(&sbi->s_freeinodes_counter);
853 if (S_ISDIR(mode))
854 percpu_counter_inc(&sbi->s_dirs_counter);
855 sb->s_dirt = 1;
856
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400857 if (sbi->s_log_groups_per_flex) {
858 flex_group = ext4_flex_group(sbi, group);
859 spin_lock(sb_bgl_lock(sbi, flex_group));
860 sbi->s_flex_groups[flex_group].free_inodes--;
861 spin_unlock(sb_bgl_lock(sbi, flex_group));
862 }
863
David Howells4c9c5442008-11-14 10:38:51 +1100864 inode->i_uid = current_fsuid();
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400865 if (test_opt(sb, GRPID))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700866 inode->i_gid = dir->i_gid;
867 else if (dir->i_mode & S_ISGID) {
868 inode->i_gid = dir->i_gid;
869 if (S_ISDIR(mode))
870 mode |= S_ISGID;
871 } else
David Howells4c9c5442008-11-14 10:38:51 +1100872 inode->i_gid = current_fsgid();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700873 inode->i_mode = mode;
874
Andreas Dilger717d50e2007-10-16 18:38:25 -0400875 inode->i_ino = ino + group * EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700876 /* This is the optimal IO size (for stat), not the fs block size */
877 inode->i_blocks = 0;
Kalpak Shahef7f3832007-07-18 09:15:20 -0400878 inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
879 ext4_current_time(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700880
881 memset(ei->i_data, 0, sizeof(ei->i_data));
882 ei->i_dir_start_lookup = 0;
883 ei->i_disksize = 0;
884
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -0500885 /*
886 * Don't inherit extent flag from directory. We set extent flag on
887 * newly created directory and file only if -o extent mount option is
888 * specified
889 */
890 ei->i_flags = EXT4_I(dir)->i_flags & ~(EXT4_INDEX_FL|EXT4_EXTENTS_FL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700891 if (S_ISLNK(mode))
Mingming Cao617ba132006-10-11 01:20:53 -0700892 ei->i_flags &= ~(EXT4_IMMUTABLE_FL|EXT4_APPEND_FL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700893 /* dirsync only applies to directories */
894 if (!S_ISDIR(mode))
Mingming Cao617ba132006-10-11 01:20:53 -0700895 ei->i_flags &= ~EXT4_DIRSYNC_FL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700896 ei->i_file_acl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700897 ei->i_dtime = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700898 ei->i_block_group = group;
899
Mingming Cao617ba132006-10-11 01:20:53 -0700900 ext4_set_inode_flags(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901 if (IS_DIRSYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -0500902 ext4_handle_sync(handle);
Al Viro6b38e842008-12-30 02:03:31 -0500903 if (insert_inode_locked(inode) < 0) {
904 err = -EINVAL;
905 goto fail_drop;
906 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700907 spin_lock(&sbi->s_next_gen_lock);
908 inode->i_generation = sbi->s_next_generation++;
909 spin_unlock(&sbi->s_next_gen_lock);
910
Mingming Cao617ba132006-10-11 01:20:53 -0700911 ei->i_state = EXT4_STATE_NEW;
Kalpak Shahef7f3832007-07-18 09:15:20 -0400912
913 ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700914
915 ret = inode;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400916 if (DQUOT_ALLOC_INODE(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700917 err = -EDQUOT;
918 goto fail_drop;
919 }
920
Mingming Cao617ba132006-10-11 01:20:53 -0700921 err = ext4_init_acl(handle, inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700922 if (err)
923 goto fail_free_drop;
924
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400925 err = ext4_init_security(handle, inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700926 if (err)
927 goto fail_free_drop;
928
Theodore Ts'o83982b62009-01-06 14:53:16 -0500929 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS)) {
Eric Sandeene4079a12008-07-11 19:27:31 -0400930 /* set extent flag only for directory, file and normal symlink*/
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -0400931 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) {
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -0500932 EXT4_I(inode)->i_flags |= EXT4_EXTENTS_FL;
933 ext4_ext_tree_init(handle, inode);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -0500934 }
Alex Tomasa86c6182006-10-11 01:21:03 -0700935 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700936
Aneesh Kumar K.V8753e882008-04-29 22:00:36 -0400937 err = ext4_mark_inode_dirty(handle, inode);
938 if (err) {
939 ext4_std_error(sb, err);
940 goto fail_free_drop;
941 }
942
Mingming Cao617ba132006-10-11 01:20:53 -0700943 ext4_debug("allocating inode %lu\n", inode->i_ino);
Theodore Ts'oba80b102009-01-03 20:03:21 -0500944 trace_mark(ext4_allocate_inode, "dev %s ino %lu dir %lu mode %d",
945 sb->s_id, inode->i_ino, dir->i_ino, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700946 goto really_out;
947fail:
Mingming Cao617ba132006-10-11 01:20:53 -0700948 ext4_std_error(sb, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700949out:
950 iput(inode);
951 ret = ERR_PTR(err);
952really_out:
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500953 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700954 return ret;
955
956fail_free_drop:
957 DQUOT_FREE_INODE(inode);
958
959fail_drop:
960 DQUOT_DROP(inode);
961 inode->i_flags |= S_NOQUOTA;
962 inode->i_nlink = 0;
Al Viro6b38e842008-12-30 02:03:31 -0500963 unlock_new_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700964 iput(inode);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500965 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700966 return ERR_PTR(err);
967}
968
969/* Verify that we are loading a valid orphan from disk */
Mingming Cao617ba132006-10-11 01:20:53 -0700970struct inode *ext4_orphan_get(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700971{
Mingming Cao617ba132006-10-11 01:20:53 -0700972 unsigned long max_ino = le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count);
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500973 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700974 int bit;
David Howells1d1fe1e2008-02-07 00:15:37 -0800975 struct buffer_head *bitmap_bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700976 struct inode *inode = NULL;
David Howells1d1fe1e2008-02-07 00:15:37 -0800977 long err = -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700978
979 /* Error cases - e2fsck has already cleaned up for us */
980 if (ino > max_ino) {
Harvey Harrison46e665e2008-04-17 10:38:59 -0400981 ext4_warning(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700982 "bad orphan ino %lu! e2fsck was run?", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -0800983 goto error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700984 }
985
Mingming Cao617ba132006-10-11 01:20:53 -0700986 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
987 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400988 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700989 if (!bitmap_bh) {
Harvey Harrison46e665e2008-04-17 10:38:59 -0400990 ext4_warning(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700991 "inode bitmap error for orphan %lu", ino);
David Howells1d1fe1e2008-02-07 00:15:37 -0800992 goto error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700993 }
994
995 /* Having the inode bit set should be a 100% indicator that this
996 * is a valid orphan (no e2fsck run on fs). Orphans also include
997 * inodes that were being truncated, so we can't check i_nlink==0.
998 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800999 if (!ext4_test_bit(bit, bitmap_bh->b_data))
1000 goto bad_orphan;
1001
1002 inode = ext4_iget(sb, ino);
1003 if (IS_ERR(inode))
1004 goto iget_failed;
1005
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001006 /*
1007 * If the orphans has i_nlinks > 0 then it should be able to be
1008 * truncated, otherwise it won't be removed from the orphan list
1009 * during processing and an infinite loop will result.
1010 */
1011 if (inode->i_nlink && !ext4_can_truncate(inode))
1012 goto bad_orphan;
1013
David Howells1d1fe1e2008-02-07 00:15:37 -08001014 if (NEXT_ORPHAN(inode) > max_ino)
1015 goto bad_orphan;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001016 brelse(bitmap_bh);
1017 return inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08001018
1019iget_failed:
1020 err = PTR_ERR(inode);
1021 inode = NULL;
1022bad_orphan:
Harvey Harrison46e665e2008-04-17 10:38:59 -04001023 ext4_warning(sb, __func__,
David Howells1d1fe1e2008-02-07 00:15:37 -08001024 "bad orphan inode %lu! e2fsck was run?", ino);
1025 printk(KERN_NOTICE "ext4_test_bit(bit=%d, block=%llu) = %d\n",
1026 bit, (unsigned long long)bitmap_bh->b_blocknr,
1027 ext4_test_bit(bit, bitmap_bh->b_data));
1028 printk(KERN_NOTICE "inode=%p\n", inode);
1029 if (inode) {
1030 printk(KERN_NOTICE "is_bad_inode(inode)=%d\n",
1031 is_bad_inode(inode));
1032 printk(KERN_NOTICE "NEXT_ORPHAN(inode)=%u\n",
1033 NEXT_ORPHAN(inode));
1034 printk(KERN_NOTICE "max_ino=%lu\n", max_ino);
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001035 printk(KERN_NOTICE "i_nlink=%u\n", inode->i_nlink);
David Howells1d1fe1e2008-02-07 00:15:37 -08001036 /* Avoid freeing blocks if we got a bad deleted inode */
1037 if (inode->i_nlink == 0)
1038 inode->i_blocks = 0;
1039 iput(inode);
1040 }
1041 brelse(bitmap_bh);
1042error:
1043 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001044}
1045
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001046unsigned long ext4_count_free_inodes(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001047{
1048 unsigned long desc_count;
Mingming Cao617ba132006-10-11 01:20:53 -07001049 struct ext4_group_desc *gdp;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001050 ext4_group_t i;
Mingming Cao617ba132006-10-11 01:20:53 -07001051#ifdef EXT4FS_DEBUG
1052 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001053 unsigned long bitmap_count, x;
1054 struct buffer_head *bitmap_bh = NULL;
1055
Mingming Cao617ba132006-10-11 01:20:53 -07001056 es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001057 desc_count = 0;
1058 bitmap_count = 0;
1059 gdp = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -07001060 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001061 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001062 if (!gdp)
1063 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001064 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001065 brelse(bitmap_bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -04001066 bitmap_bh = ext4_read_inode_bitmap(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001067 if (!bitmap_bh)
1068 continue;
1069
Mingming Cao617ba132006-10-11 01:20:53 -07001070 x = ext4_count_free(bitmap_bh, EXT4_INODES_PER_GROUP(sb) / 8);
Eric Sandeenc549a952008-01-28 23:58:27 -05001071 printk(KERN_DEBUG "group %lu: stored = %d, counted = %lu\n",
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001072 i, ext4_free_inodes_count(sb, gdp), x);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001073 bitmap_count += x;
1074 }
1075 brelse(bitmap_bh);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001076 printk(KERN_DEBUG "ext4_count_free_inodes: "
1077 "stored = %u, computed = %lu, %lu\n",
1078 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001079 return desc_count;
1080#else
1081 desc_count = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07001082 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001083 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001084 if (!gdp)
1085 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001086 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001087 cond_resched();
1088 }
1089 return desc_count;
1090#endif
1091}
1092
1093/* Called at mount-time, super-block is locked */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001094unsigned long ext4_count_dirs(struct super_block * sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001095{
1096 unsigned long count = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001097 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001098
Mingming Cao617ba132006-10-11 01:20:53 -07001099 for (i = 0; i < EXT4_SB(sb)->s_groups_count; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001100 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001101 if (!gdp)
1102 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001103 count += ext4_used_dirs_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001104 }
1105 return count;
1106}