blob: 1ee26da314f2914b8f1d8cbc2e93521b08b834d2 [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>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070017#include <linux/stat.h>
18#include <linux/string.h>
19#include <linux/quotaops.h>
20#include <linux/buffer_head.h>
21#include <linux/random.h>
22#include <linux/bitops.h>
Mingming Cao3a5b2ec2006-10-11 01:21:05 -070023#include <linux/blkdev.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070024#include <asm/byteorder.h>
Theodore Ts'o9bffad12009-06-17 11:48:11 -040025
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"
30
Theodore Ts'o9bffad12009-06-17 11:48:11 -040031#include <trace/events/ext4.h>
32
Dave Kleikampac27a0e2006-10-11 01:20:50 -070033/*
34 * ialloc.c contains the inodes allocation and deallocation routines
35 */
36
37/*
38 * The free inodes are managed by bitmaps. A file system contains several
39 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
40 * block for inodes, N blocks for the inode table and data blocks.
41 *
42 * The file system contains group descriptors which are located after the
43 * super block. Each descriptor contains the number of the bitmap block and
44 * the free blocks count in the block.
45 */
46
Andreas Dilger717d50e2007-10-16 18:38:25 -040047/*
48 * To avoid calling the atomic setbit hundreds or thousands of times, we only
49 * need to use it within a single byte (to ensure we get endianness right).
50 * We can use memset for the rest of the bitmap as there are no other users.
51 */
Theodore Ts'o61d08672010-10-27 21:30:15 -040052void ext4_mark_bitmap_end(int start_bit, int end_bit, char *bitmap)
Andreas Dilger717d50e2007-10-16 18:38:25 -040053{
54 int i;
55
56 if (start_bit >= end_bit)
57 return;
58
59 ext4_debug("mark end bits +%d through +%d used\n", start_bit, end_bit);
60 for (i = start_bit; i < ((start_bit + 7) & ~7UL); i++)
61 ext4_set_bit(i, bitmap);
62 if (i < end_bit)
63 memset(bitmap + (i >> 3), 0xff, (end_bit - i) >> 3);
64}
65
Theodore Ts'o813e5722012-02-20 17:52:46 -050066void ext4_end_bitmap_read(struct buffer_head *bh, int uptodate)
67{
68 if (uptodate) {
69 set_buffer_uptodate(bh);
70 set_bitmap_uptodate(bh);
71 }
72 unlock_buffer(bh);
73 put_bh(bh);
74}
75
Darrick J. Wong9008a582015-10-17 21:33:24 -040076static int ext4_validate_inode_bitmap(struct super_block *sb,
77 struct ext4_group_desc *desc,
78 ext4_group_t block_group,
79 struct buffer_head *bh)
80{
81 ext4_fsblk_t blk;
82 struct ext4_group_info *grp = ext4_get_group_info(sb, block_group);
83 struct ext4_sb_info *sbi = EXT4_SB(sb);
84
85 if (buffer_verified(bh))
86 return 0;
87 if (EXT4_MB_GRP_IBITMAP_CORRUPT(grp))
88 return -EFSCORRUPTED;
89
90 ext4_lock_group(sb, block_group);
91 blk = ext4_inode_bitmap(sb, desc);
92 if (!ext4_inode_bitmap_csum_verify(sb, block_group, desc, bh,
93 EXT4_INODES_PER_GROUP(sb) / 8)) {
94 ext4_unlock_group(sb, block_group);
95 ext4_error(sb, "Corrupt inode bitmap - block_group = %u, "
96 "inode_bitmap = %llu", block_group, blk);
97 grp = ext4_get_group_info(sb, block_group);
98 if (!EXT4_MB_GRP_IBITMAP_CORRUPT(grp)) {
99 int count;
100 count = ext4_free_inodes_count(sb, desc);
101 percpu_counter_sub(&sbi->s_freeinodes_counter,
102 count);
103 }
104 set_bit(EXT4_GROUP_INFO_IBITMAP_CORRUPT_BIT, &grp->bb_state);
105 return -EFSBADCRC;
106 }
107 set_buffer_verified(bh);
108 ext4_unlock_group(sb, block_group);
109 return 0;
110}
111
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700112/*
113 * Read the inode allocation bitmap for a given block_group, reading
114 * into the specified slot in the superblock's bitmap cache.
115 *
116 * Return buffer_head of bitmap on success or NULL.
117 */
118static struct buffer_head *
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400119ext4_read_inode_bitmap(struct super_block *sb, ext4_group_t block_group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700120{
Mingming Cao617ba132006-10-11 01:20:53 -0700121 struct ext4_group_desc *desc;
Theodore Ts'o76964812018-03-26 23:54:10 -0400122 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700123 struct buffer_head *bh = NULL;
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400124 ext4_fsblk_t bitmap_blk;
Darrick J. Wong9008a582015-10-17 21:33:24 -0400125 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700126
Mingming Cao617ba132006-10-11 01:20:53 -0700127 desc = ext4_get_group_desc(sb, block_group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700128 if (!desc)
Darrick J. Wong9008a582015-10-17 21:33:24 -0400129 return ERR_PTR(-EFSCORRUPTED);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400130
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400131 bitmap_blk = ext4_inode_bitmap(sb, desc);
Theodore Ts'o76964812018-03-26 23:54:10 -0400132 if ((bitmap_blk <= le32_to_cpu(sbi->s_es->s_first_data_block)) ||
133 (bitmap_blk >= ext4_blocks_count(sbi->s_es))) {
134 ext4_error(sb, "Invalid inode bitmap blk %llu in "
135 "block_group %u", bitmap_blk, block_group);
136 return ERR_PTR(-EFSCORRUPTED);
137 }
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400138 bh = sb_getblk(sb, bitmap_blk);
139 if (unlikely(!bh)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500140 ext4_error(sb, "Cannot read inode bitmap - "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500141 "block_group = %u, inode_bitmap = %llu",
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400142 block_group, bitmap_blk);
Darrick J. Wong9008a582015-10-17 21:33:24 -0400143 return ERR_PTR(-EIO);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400144 }
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500145 if (bitmap_uptodate(bh))
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400146 goto verify;
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400147
Frederic Bohec806e682008-10-10 08:09:18 -0400148 lock_buffer(bh);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500149 if (bitmap_uptodate(bh)) {
150 unlock_buffer(bh);
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400151 goto verify;
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500152 }
Lukas Czernerbfff6872010-10-27 21:30:05 -0400153
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400154 ext4_lock_group(sb, block_group);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400155 if (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
Theodore Ts'oa06b7982018-02-19 14:16:47 -0500156 memset(bh->b_data, 0, (EXT4_INODES_PER_GROUP(sb) + 7) / 8);
157 ext4_mark_bitmap_end(EXT4_INODES_PER_GROUP(sb),
158 sb->s_blocksize * 8, bh->b_data);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500159 set_bitmap_uptodate(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400160 set_buffer_uptodate(bh);
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400161 set_buffer_verified(bh);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400162 ext4_unlock_group(sb, block_group);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500163 unlock_buffer(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400164 return bh;
165 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400166 ext4_unlock_group(sb, block_group);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400167
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500168 if (buffer_uptodate(bh)) {
169 /*
170 * if not uninit if bh is uptodate,
171 * bitmap is also uptodate
172 */
173 set_bitmap_uptodate(bh);
174 unlock_buffer(bh);
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400175 goto verify;
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500176 }
177 /*
Theodore Ts'o813e5722012-02-20 17:52:46 -0500178 * submit the buffer_head for reading
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500179 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -0400180 trace_ext4_load_inode_bitmap(sb, block_group);
Theodore Ts'o813e5722012-02-20 17:52:46 -0500181 bh->b_end_io = ext4_end_bitmap_read;
182 get_bh(bh);
Mike Christie2a222ca2016-06-05 14:31:43 -0500183 submit_bh(REQ_OP_READ, REQ_META | REQ_PRIO, bh);
Theodore Ts'o813e5722012-02-20 17:52:46 -0500184 wait_on_buffer(bh);
185 if (!buffer_uptodate(bh)) {
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400186 put_bh(bh);
Eric Sandeen12062dd2010-02-15 14:19:27 -0500187 ext4_error(sb, "Cannot read inode bitmap - "
Theodore Ts'o813e5722012-02-20 17:52:46 -0500188 "block_group = %u, inode_bitmap = %llu",
189 block_group, bitmap_blk);
Darrick J. Wong9008a582015-10-17 21:33:24 -0400190 return ERR_PTR(-EIO);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400191 }
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400192
193verify:
Darrick J. Wong9008a582015-10-17 21:33:24 -0400194 err = ext4_validate_inode_bitmap(sb, desc, block_group, bh);
195 if (err)
196 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700197 return bh;
Darrick J. Wong9008a582015-10-17 21:33:24 -0400198out:
199 put_bh(bh);
200 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700201}
202
203/*
204 * NOTE! When we get the inode, we're the only people
205 * that have access to it, and as such there are no
206 * race conditions we have to worry about. The inode
207 * is not on the hash-lists, and it cannot be reached
208 * through the filesystem because the directory entry
209 * has been deleted earlier.
210 *
211 * HOWEVER: we must make sure that we get no aliases,
212 * which means that we have to call "clear_inode()"
213 * _before_ we mark the inode not in use in the inode
214 * bitmaps. Otherwise a newly created file might use
215 * the same inode number (not actually the same pointer
216 * though), and then we'd have two inodes sharing the
217 * same inode number and space on the harddisk.
218 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400219void ext4_free_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700220{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400221 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700222 int is_directory;
223 unsigned long ino;
224 struct buffer_head *bitmap_bh = NULL;
225 struct buffer_head *bh2;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500226 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700227 unsigned long bit;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400228 struct ext4_group_desc *gdp;
229 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -0700230 struct ext4_sb_info *sbi;
Eric Sandeen7ce9d5d2009-03-04 18:38:18 -0500231 int fatal = 0, err, count, cleared;
Darrick J. Wong87a39382013-08-28 18:32:58 -0400232 struct ext4_group_info *grp;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700233
Theodore Ts'o92b97812012-03-19 23:41:49 -0400234 if (!sb) {
235 printk(KERN_ERR "EXT4-fs: %s:%d: inode on "
236 "nonexistent device\n", __func__, __LINE__);
237 return;
238 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700239 if (atomic_read(&inode->i_count) > 1) {
Theodore Ts'o92b97812012-03-19 23:41:49 -0400240 ext4_msg(sb, KERN_ERR, "%s:%d: inode #%lu: count=%d",
241 __func__, __LINE__, inode->i_ino,
242 atomic_read(&inode->i_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700243 return;
244 }
245 if (inode->i_nlink) {
Theodore Ts'o92b97812012-03-19 23:41:49 -0400246 ext4_msg(sb, KERN_ERR, "%s:%d: inode #%lu: nlink=%d\n",
247 __func__, __LINE__, inode->i_ino, inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700248 return;
249 }
Mingming Cao617ba132006-10-11 01:20:53 -0700250 sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700251
252 ino = inode->i_ino;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400253 ext4_debug("freeing inode %lu\n", ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400254 trace_ext4_free_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700255
256 /*
257 * Note: we must free any quota before locking the superblock,
258 * as writing the quota to disk may need the lock as well.
259 */
Christoph Hellwig871a2932010-03-03 09:05:07 -0500260 dquot_initialize(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700261 ext4_xattr_delete_inode(handle, inode);
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500262 dquot_free_inode(inode);
Christoph Hellwig9f754752010-03-03 09:05:05 -0500263 dquot_drop(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700264
265 is_directory = S_ISDIR(inode->i_mode);
266
267 /* Do this BEFORE marking the inode not in use or returning an error */
Al Viro0930fcc2010-06-07 13:16:22 -0400268 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700269
Mingming Cao617ba132006-10-11 01:20:53 -0700270 es = EXT4_SB(sb)->s_es;
271 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500272 ext4_error(sb, "reserved or nonexistent inode %lu", ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700273 goto error_return;
274 }
Mingming Cao617ba132006-10-11 01:20:53 -0700275 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
276 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400277 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Darrick J. Wong87a39382013-08-28 18:32:58 -0400278 /* Don't bother if the inode bitmap is corrupt. */
279 grp = ext4_get_group_info(sb, block_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -0400280 if (IS_ERR(bitmap_bh)) {
281 fatal = PTR_ERR(bitmap_bh);
282 bitmap_bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700283 goto error_return;
Darrick J. Wong9008a582015-10-17 21:33:24 -0400284 }
285 if (unlikely(EXT4_MB_GRP_IBITMAP_CORRUPT(grp))) {
286 fatal = -EFSCORRUPTED;
287 goto error_return;
288 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700289
290 BUFFER_TRACE(bitmap_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700291 fatal = ext4_journal_get_write_access(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700292 if (fatal)
293 goto error_return;
294
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400295 fatal = -ESRCH;
296 gdp = ext4_get_group_desc(sb, block_group, &bh2);
297 if (gdp) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700298 BUFFER_TRACE(bh2, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700299 fatal = ext4_journal_get_write_access(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700300 }
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400301 ext4_lock_group(sb, block_group);
Akinobu Mita597d5082011-12-28 20:32:07 -0500302 cleared = ext4_test_and_clear_bit(bit, bitmap_bh->b_data);
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400303 if (fatal || !cleared) {
304 ext4_unlock_group(sb, block_group);
305 goto out;
306 }
307
308 count = ext4_free_inodes_count(sb, gdp) + 1;
309 ext4_free_inodes_set(sb, gdp, count);
310 if (is_directory) {
311 count = ext4_used_dirs_count(sb, gdp) - 1;
312 ext4_used_dirs_set(sb, gdp, count);
313 percpu_counter_dec(&sbi->s_dirs_counter);
314 }
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400315 ext4_inode_bitmap_csum_set(sb, block_group, gdp, bitmap_bh,
316 EXT4_INODES_PER_GROUP(sb) / 8);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -0400317 ext4_group_desc_csum_set(sb, block_group, gdp);
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400318 ext4_unlock_group(sb, block_group);
319
320 percpu_counter_inc(&sbi->s_freeinodes_counter);
321 if (sbi->s_log_groups_per_flex) {
322 ext4_group_t f = ext4_flex_group(sbi, block_group);
323
324 atomic_inc(&sbi->s_flex_groups[f].free_inodes);
325 if (is_directory)
326 atomic_dec(&sbi->s_flex_groups[f].used_dirs);
327 }
328 BUFFER_TRACE(bh2, "call ext4_handle_dirty_metadata");
329 fatal = ext4_handle_dirty_metadata(handle, NULL, bh2);
330out:
331 if (cleared) {
332 BUFFER_TRACE(bitmap_bh, "call ext4_handle_dirty_metadata");
333 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
334 if (!fatal)
335 fatal = err;
Darrick J. Wong87a39382013-08-28 18:32:58 -0400336 } else {
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400337 ext4_error(sb, "bit already cleared for inode %lu", ino);
Namjae Jeonbf40c922014-07-12 16:11:42 -0400338 if (gdp && !EXT4_MB_GRP_IBITMAP_CORRUPT(grp)) {
Namjae Jeone43bb4e2014-06-26 10:11:53 -0400339 int count;
340 count = ext4_free_inodes_count(sb, gdp);
341 percpu_counter_sub(&sbi->s_freeinodes_counter,
342 count);
343 }
Darrick J. Wong87a39382013-08-28 18:32:58 -0400344 set_bit(EXT4_GROUP_INFO_IBITMAP_CORRUPT_BIT, &grp->bb_state);
345 }
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400346
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700347error_return:
348 brelse(bitmap_bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700349 ext4_std_error(sb, fatal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700350}
351
Theodore Ts'oa4912122009-03-12 12:18:34 -0400352struct orlov_stats {
Theodore Ts'o90ba9832013-03-11 23:39:59 -0400353 __u64 free_clusters;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400354 __u32 free_inodes;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400355 __u32 used_dirs;
356};
357
358/*
359 * Helper function for Orlov's allocator; returns critical information
360 * for a particular block group or flex_bg. If flex_size is 1, then g
361 * is a block group number; otherwise it is flex_bg number.
362 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -0400363static void get_orlov_stats(struct super_block *sb, ext4_group_t g,
364 int flex_size, struct orlov_stats *stats)
Theodore Ts'oa4912122009-03-12 12:18:34 -0400365{
366 struct ext4_group_desc *desc;
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500367 struct flex_groups *flex_group = EXT4_SB(sb)->s_flex_groups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400368
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500369 if (flex_size > 1) {
370 stats->free_inodes = atomic_read(&flex_group[g].free_inodes);
Theodore Ts'o90ba9832013-03-11 23:39:59 -0400371 stats->free_clusters = atomic64_read(&flex_group[g].free_clusters);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500372 stats->used_dirs = atomic_read(&flex_group[g].used_dirs);
373 return;
374 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400375
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500376 desc = ext4_get_group_desc(sb, g, NULL);
377 if (desc) {
378 stats->free_inodes = ext4_free_inodes_count(sb, desc);
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400379 stats->free_clusters = ext4_free_group_clusters(sb, desc);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500380 stats->used_dirs = ext4_used_dirs_count(sb, desc);
381 } else {
382 stats->free_inodes = 0;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400383 stats->free_clusters = 0;
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500384 stats->used_dirs = 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400385 }
386}
387
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700388/*
389 * Orlov's allocator for directories.
390 *
391 * We always try to spread first-level directories.
392 *
393 * If there are blockgroups with both free inodes and free blocks counts
394 * not worse than average we return one with smallest directory count.
395 * Otherwise we simply return a random group.
396 *
397 * For the rest rules look so:
398 *
399 * It's OK to put directory into a group unless
400 * it has too many directories already (max_dirs) or
401 * it has too few free inodes left (min_inodes) or
402 * it has too few free blocks left (min_blocks) or
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000403 * Parent's group is preferred, if it doesn't satisfy these
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700404 * conditions we search cyclically through the rest. If none
405 * of the groups look good we just look for a group with more
406 * free inodes than average (starting at parent's group).
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700407 */
408
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500409static int find_group_orlov(struct super_block *sb, struct inode *parent,
Al Virodcca3fe2011-07-26 02:48:06 -0400410 ext4_group_t *group, umode_t mode,
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400411 const struct qstr *qstr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700412{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500413 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Mingming Cao617ba132006-10-11 01:20:53 -0700414 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o8df96752009-05-01 08:50:38 -0400415 ext4_group_t real_ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700416 int inodes_per_group = EXT4_INODES_PER_GROUP(sb);
Theodore Ts'o14c83c92011-12-28 20:25:13 -0500417 unsigned int freei, avefreei, grp_free;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400418 ext4_fsblk_t freeb, avefreec;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700419 unsigned int ndirs;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400420 int max_dirs, min_inodes;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400421 ext4_grpblk_t min_clusters;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400422 ext4_group_t i, grp, g, ngroups;
Mingming Cao617ba132006-10-11 01:20:53 -0700423 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400424 struct orlov_stats stats;
425 int flex_size = ext4_flex_bg_size(sbi);
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400426 struct dx_hash_info hinfo;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400427
Theodore Ts'o8df96752009-05-01 08:50:38 -0400428 ngroups = real_ngroups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400429 if (flex_size > 1) {
Theodore Ts'o8df96752009-05-01 08:50:38 -0400430 ngroups = (real_ngroups + flex_size - 1) >>
Theodore Ts'oa4912122009-03-12 12:18:34 -0400431 sbi->s_log_groups_per_flex;
432 parent_group >>= sbi->s_log_groups_per_flex;
433 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700434
435 freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
436 avefreei = freei / ngroups;
Theodore Ts'o57042652011-09-09 18:56:51 -0400437 freeb = EXT4_C2B(sbi,
438 percpu_counter_read_positive(&sbi->s_freeclusters_counter));
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400439 avefreec = freeb;
440 do_div(avefreec, ngroups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700441 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
442
Theodore Ts'oa4912122009-03-12 12:18:34 -0400443 if (S_ISDIR(mode) &&
David Howells2b0143b2015-03-17 22:25:59 +0000444 ((parent == d_inode(sb->s_root)) ||
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400445 (ext4_test_inode_flag(parent, EXT4_INODE_TOPDIR)))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700446 int best_ndir = inodes_per_group;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500447 int ret = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700448
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400449 if (qstr) {
450 hinfo.hash_version = DX_HASH_HALF_MD4;
451 hinfo.seed = sbi->s_hash_seed;
452 ext4fs_dirhash(qstr->name, qstr->len, &hinfo);
453 grp = hinfo.hash;
454 } else
Theodore Ts'odd1f7232013-11-08 00:14:53 -0500455 grp = prandom_u32();
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500456 parent_group = (unsigned)grp % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700457 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400458 g = (parent_group + i) % ngroups;
459 get_orlov_stats(sb, g, flex_size, &stats);
460 if (!stats.free_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700461 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400462 if (stats.used_dirs >= best_ndir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700463 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400464 if (stats.free_inodes < avefreei)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700465 continue;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400466 if (stats.free_clusters < avefreec)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700467 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400468 grp = g;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500469 ret = 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400470 best_ndir = stats.used_dirs;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700471 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400472 if (ret)
473 goto fallback;
474 found_flex_bg:
475 if (flex_size == 1) {
476 *group = grp;
477 return 0;
478 }
479
480 /*
481 * We pack inodes at the beginning of the flexgroup's
482 * inode tables. Block allocation decisions will do
483 * something similar, although regular files will
484 * start at 2nd block group of the flexgroup. See
485 * ext4_ext_find_goal() and ext4_find_near().
486 */
487 grp *= flex_size;
488 for (i = 0; i < flex_size; i++) {
Theodore Ts'o8df96752009-05-01 08:50:38 -0400489 if (grp+i >= real_ngroups)
Theodore Ts'oa4912122009-03-12 12:18:34 -0400490 break;
491 desc = ext4_get_group_desc(sb, grp+i, NULL);
492 if (desc && ext4_free_inodes_count(sb, desc)) {
493 *group = grp+i;
494 return 0;
495 }
496 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700497 goto fallback;
498 }
499
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700500 max_dirs = ndirs / ngroups + inodes_per_group / 16;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400501 min_inodes = avefreei - inodes_per_group*flex_size / 4;
502 if (min_inodes < 1)
503 min_inodes = 1;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400504 min_clusters = avefreec - EXT4_CLUSTERS_PER_GROUP(sb)*flex_size / 4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700505
Theodore Ts'oa4912122009-03-12 12:18:34 -0400506 /*
507 * Start looking in the flex group where we last allocated an
508 * inode for this parent directory
509 */
510 if (EXT4_I(parent)->i_last_alloc_group != ~0) {
511 parent_group = EXT4_I(parent)->i_last_alloc_group;
512 if (flex_size > 1)
513 parent_group >>= sbi->s_log_groups_per_flex;
514 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700515
516 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400517 grp = (parent_group + i) % ngroups;
518 get_orlov_stats(sb, grp, flex_size, &stats);
519 if (stats.used_dirs >= max_dirs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700520 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400521 if (stats.free_inodes < min_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700522 continue;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400523 if (stats.free_clusters < min_clusters)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700524 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400525 goto found_flex_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700526 }
527
528fallback:
Theodore Ts'o8df96752009-05-01 08:50:38 -0400529 ngroups = real_ngroups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400530 avefreei = freei / ngroups;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400531fallback_retry:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400532 parent_group = EXT4_I(parent)->i_block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700533 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400534 grp = (parent_group + i) % ngroups;
535 desc = ext4_get_group_desc(sb, grp, NULL);
Dan Carpenterbb3d1322012-05-28 14:16:57 -0400536 if (desc) {
537 grp_free = ext4_free_inodes_count(sb, desc);
538 if (grp_free && grp_free >= avefreei) {
539 *group = grp;
540 return 0;
541 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400542 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700543 }
544
545 if (avefreei) {
546 /*
547 * The free-inodes counter is approximate, and for really small
548 * filesystems the above test can fail to find any blockgroups
549 */
550 avefreei = 0;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400551 goto fallback_retry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700552 }
553
554 return -1;
555}
556
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500557static int find_group_other(struct super_block *sb, struct inode *parent,
Al Virodcca3fe2011-07-26 02:48:06 -0400558 ext4_group_t *group, umode_t mode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700559{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500560 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400561 ext4_group_t i, last, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700562 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400563 int flex_size = ext4_flex_bg_size(EXT4_SB(sb));
564
565 /*
566 * Try to place the inode is the same flex group as its
567 * parent. If we can't find space, use the Orlov algorithm to
568 * find another flex group, and store that information in the
569 * parent directory's inode information so that use that flex
570 * group for future allocations.
571 */
572 if (flex_size > 1) {
573 int retry = 0;
574
575 try_again:
576 parent_group &= ~(flex_size-1);
577 last = parent_group + flex_size;
578 if (last > ngroups)
579 last = ngroups;
580 for (i = parent_group; i < last; i++) {
581 desc = ext4_get_group_desc(sb, i, NULL);
582 if (desc && ext4_free_inodes_count(sb, desc)) {
583 *group = i;
584 return 0;
585 }
586 }
587 if (!retry && EXT4_I(parent)->i_last_alloc_group != ~0) {
588 retry = 1;
589 parent_group = EXT4_I(parent)->i_last_alloc_group;
590 goto try_again;
591 }
592 /*
593 * If this didn't work, use the Orlov search algorithm
594 * to find a new flex group; we pass in the mode to
595 * avoid the topdir algorithms.
596 */
597 *group = parent_group + flex_size;
598 if (*group > ngroups)
599 *group = 0;
Peter Huewe7dc57612011-02-21 21:01:42 -0500600 return find_group_orlov(sb, parent, group, mode, NULL);
Theodore Ts'oa4912122009-03-12 12:18:34 -0400601 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700602
603 /*
604 * Try to place the inode in its parent directory
605 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500606 *group = parent_group;
607 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500608 if (desc && ext4_free_inodes_count(sb, desc) &&
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400609 ext4_free_group_clusters(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500610 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700611
612 /*
613 * We're going to place this inode in a different blockgroup from its
614 * parent. We want to cause files in a common directory to all land in
615 * the same blockgroup. But we want files which are in a different
616 * directory which shares a blockgroup with our parent to land in a
617 * different blockgroup.
618 *
619 * So add our directory's i_ino into the starting point for the hash.
620 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500621 *group = (*group + parent->i_ino) % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700622
623 /*
624 * Use a quadratic hash to find a group with a free inode and some free
625 * blocks.
626 */
627 for (i = 1; i < ngroups; i <<= 1) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500628 *group += i;
629 if (*group >= ngroups)
630 *group -= ngroups;
631 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500632 if (desc && ext4_free_inodes_count(sb, desc) &&
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400633 ext4_free_group_clusters(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500634 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700635 }
636
637 /*
638 * That failed: try linear search for a free inode, even if that group
639 * has no free blocks.
640 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500641 *group = parent_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700642 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500643 if (++*group >= ngroups)
644 *group = 0;
645 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500646 if (desc && ext4_free_inodes_count(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500647 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700648 }
649
650 return -1;
651}
652
653/*
Theodore Ts'o19883bd2013-08-16 22:06:55 -0400654 * In no journal mode, if an inode has recently been deleted, we want
655 * to avoid reusing it until we're reasonably sure the inode table
656 * block has been written back to disk. (Yes, these values are
657 * somewhat arbitrary...)
658 */
659#define RECENTCY_MIN 5
660#define RECENTCY_DIRTY 30
661
662static int recently_deleted(struct super_block *sb, ext4_group_t group, int ino)
663{
664 struct ext4_group_desc *gdp;
665 struct ext4_inode *raw_inode;
666 struct buffer_head *bh;
667 unsigned long dtime, now;
668 int inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
669 int offset, ret = 0, recentcy = RECENTCY_MIN;
670
671 gdp = ext4_get_group_desc(sb, group, NULL);
672 if (unlikely(!gdp))
673 return 0;
674
675 bh = sb_getblk(sb, ext4_inode_table(sb, gdp) +
676 (ino / inodes_per_block));
677 if (unlikely(!bh) || !buffer_uptodate(bh))
678 /*
679 * If the block is not in the buffer cache, then it
680 * must have been written out.
681 */
682 goto out;
683
684 offset = (ino % inodes_per_block) * EXT4_INODE_SIZE(sb);
685 raw_inode = (struct ext4_inode *) (bh->b_data + offset);
686 dtime = le32_to_cpu(raw_inode->i_dtime);
687 now = get_seconds();
688 if (buffer_dirty(bh))
689 recentcy += RECENTCY_DIRTY;
690
691 if (dtime && (dtime < now) && (now < dtime + recentcy))
692 ret = 1;
693out:
694 brelse(bh);
695 return ret;
696}
697
698/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700699 * There are two policies for allocating an inode. If the new inode is
700 * a directory, then a forward search is made for a block group with both
701 * free space and a low directory-to-inode ratio; if that fails, then of
702 * the groups with above-average free space, that group with the fewest
703 * directories already is chosen.
704 *
705 * For other inodes, search forward from the parent directory's block
706 * group to find a free inode.
707 */
Theodore Ts'o11395752013-02-09 16:27:09 -0500708struct inode *__ext4_new_inode(handle_t *handle, struct inode *dir,
709 umode_t mode, const struct qstr *qstr,
710 __u32 goal, uid_t *owner, int handle_type,
711 unsigned int line_no, int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700712{
713 struct super_block *sb;
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500714 struct buffer_head *inode_bitmap_bh = NULL;
715 struct buffer_head *group_desc_bh;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400716 ext4_group_t ngroups, group = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700717 unsigned long ino = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400718 struct inode *inode;
719 struct ext4_group_desc *gdp = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -0700720 struct ext4_inode_info *ei;
721 struct ext4_sb_info *sbi;
Jan Karaa7cdade2015-06-29 16:22:54 +0200722 int ret2, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700723 struct inode *ret;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500724 ext4_group_t i;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400725 ext4_group_t flex_group;
Darrick J. Wong87a39382013-08-28 18:32:58 -0400726 struct ext4_group_info *grp;
Theodore Ts'oe709e9d2015-05-31 13:35:02 -0400727 int encrypt = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700728
729 /* Cannot create files in a deleted directory */
730 if (!dir || !dir->i_nlink)
731 return ERR_PTR(-EPERM);
732
Theodore Ts'oe709e9d2015-05-31 13:35:02 -0400733 if ((ext4_encrypted_inode(dir) ||
734 DUMMY_ENCRYPTION_ENABLED(EXT4_SB(dir->i_sb))) &&
735 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
Jaegeuk Kima7550b32016-07-10 14:01:03 -0400736 err = fscrypt_get_encryption_info(dir);
Theodore Ts'oe709e9d2015-05-31 13:35:02 -0400737 if (err)
738 return ERR_PTR(err);
Jaegeuk Kima7550b32016-07-10 14:01:03 -0400739 if (!fscrypt_has_encryption_key(dir))
Hyojun Kim63da4202017-10-06 17:10:08 -0700740 return ERR_PTR(-ENOKEY);
Theodore Ts'oe709e9d2015-05-31 13:35:02 -0400741 if (!handle)
742 nblocks += EXT4_DATA_TRANS_BLOCKS(dir->i_sb);
743 encrypt = 1;
744 }
745
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700746 sb = dir->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400747 ngroups = ext4_get_groups_count(sb);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400748 trace_ext4_request_inode(dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700749 inode = new_inode(sb);
750 if (!inode)
751 return ERR_PTR(-ENOMEM);
Mingming Cao617ba132006-10-11 01:20:53 -0700752 ei = EXT4_I(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700753 sbi = EXT4_SB(sb);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400754
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400755 /*
Adam Buchbinderb8a074632016-03-09 23:49:05 -0500756 * Initialize owners and quota early so that we don't have to account
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400757 * for quota initialization worst case in standard inode creating
758 * transaction
759 */
760 if (owner) {
761 inode->i_mode = mode;
762 i_uid_write(inode, owner[0]);
763 i_gid_write(inode, owner[1]);
764 } else if (test_opt(sb, GRPID)) {
765 inode->i_mode = mode;
766 inode->i_uid = current_fsuid();
767 inode->i_gid = dir->i_gid;
768 } else
769 inode_init_owner(inode, dir, mode);
Li Xi040cb372016-01-08 16:01:21 -0500770
Kaho Ng0b7b7772016-09-05 23:11:58 -0400771 if (ext4_has_feature_project(sb) &&
Li Xi040cb372016-01-08 16:01:21 -0500772 ext4_test_inode_flag(dir, EXT4_INODE_PROJINHERIT))
773 ei->i_projid = EXT4_I(dir)->i_projid;
774 else
775 ei->i_projid = make_kprojid(&init_user_ns, EXT4_DEF_PROJID);
776
Jan Karaa7cdade2015-06-29 16:22:54 +0200777 err = dquot_initialize(inode);
778 if (err)
779 goto out;
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400780
Andreas Dilger11013912009-06-13 11:45:35 -0400781 if (!goal)
782 goal = sbi->s_inode_goal;
783
Johann Lombardie6462862009-07-05 23:45:11 -0400784 if (goal && goal <= le32_to_cpu(sbi->s_es->s_inodes_count)) {
Andreas Dilger11013912009-06-13 11:45:35 -0400785 group = (goal - 1) / EXT4_INODES_PER_GROUP(sb);
786 ino = (goal - 1) % EXT4_INODES_PER_GROUP(sb);
787 ret2 = 0;
788 goto got_group;
789 }
790
Lukas Czerner4113c4c2011-10-08 14:34:47 -0400791 if (S_ISDIR(mode))
792 ret2 = find_group_orlov(sb, dir, &group, mode, qstr);
793 else
Theodore Ts'oa4912122009-03-12 12:18:34 -0400794 ret2 = find_group_other(sb, dir, &group, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700795
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400796got_group:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400797 EXT4_I(dir)->i_last_alloc_group = group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700798 err = -ENOSPC;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500799 if (ret2 == -1)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700800 goto out;
801
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500802 /*
803 * Normally we will only go through one pass of this loop,
804 * unless we get unlucky and it turns out the group we selected
805 * had its last inode grabbed by someone else.
806 */
Andreas Dilger11013912009-06-13 11:45:35 -0400807 for (i = 0; i < ngroups; i++, ino = 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700808 err = -EIO;
809
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500810 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700811 if (!gdp)
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400812 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700813
Yongqiang Yangf2a09af2012-09-23 23:16:03 -0400814 /*
815 * Check free inodes count before loading bitmap.
816 */
817 if (ext4_free_inodes_count(sb, gdp) == 0) {
818 if (++group == ngroups)
819 group = 0;
820 continue;
821 }
822
Darrick J. Wong87a39382013-08-28 18:32:58 -0400823 grp = ext4_get_group_info(sb, group);
824 /* Skip groups with already-known suspicious inode tables */
825 if (EXT4_MB_GRP_IBITMAP_CORRUPT(grp)) {
826 if (++group == ngroups)
827 group = 0;
828 continue;
829 }
830
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500831 brelse(inode_bitmap_bh);
832 inode_bitmap_bh = ext4_read_inode_bitmap(sb, group);
Darrick J. Wong87a39382013-08-28 18:32:58 -0400833 /* Skip groups with suspicious inode tables */
Darrick J. Wong9008a582015-10-17 21:33:24 -0400834 if (EXT4_MB_GRP_IBITMAP_CORRUPT(grp) ||
835 IS_ERR(inode_bitmap_bh)) {
836 inode_bitmap_bh = NULL;
Darrick J. Wong87a39382013-08-28 18:32:58 -0400837 if (++group == ngroups)
838 group = 0;
839 continue;
840 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700841
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700842repeat_in_this_group:
Mingming Cao617ba132006-10-11 01:20:53 -0700843 ino = ext4_find_next_zero_bit((unsigned long *)
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500844 inode_bitmap_bh->b_data,
845 EXT4_INODES_PER_GROUP(sb), ino);
Theodore Ts'oa34eb502013-07-26 15:15:46 -0400846 if (ino >= EXT4_INODES_PER_GROUP(sb))
847 goto next_group;
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500848 if (group == 0 && (ino+1) < EXT4_FIRST_INO(sb)) {
849 ext4_error(sb, "reserved inode found cleared - "
850 "inode=%lu", ino + 1);
851 continue;
852 }
Theodore Ts'o19883bd2013-08-16 22:06:55 -0400853 if ((EXT4_SB(sb)->s_journal == NULL) &&
854 recently_deleted(sb, group, ino)) {
855 ino++;
856 goto next_inode;
857 }
Theodore Ts'o11395752013-02-09 16:27:09 -0500858 if (!handle) {
859 BUG_ON(nblocks <= 0);
860 handle = __ext4_journal_start_sb(dir->i_sb, line_no,
Jan Kara5fe2fe82013-06-04 12:37:50 -0400861 handle_type, nblocks,
862 0);
Theodore Ts'o11395752013-02-09 16:27:09 -0500863 if (IS_ERR(handle)) {
864 err = PTR_ERR(handle);
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400865 ext4_std_error(sb, err);
866 goto out;
Theodore Ts'o11395752013-02-09 16:27:09 -0500867 }
868 }
Eric Sandeenffb53872012-10-28 22:24:57 -0400869 BUFFER_TRACE(inode_bitmap_bh, "get_write_access");
870 err = ext4_journal_get_write_access(handle, inode_bitmap_bh);
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400871 if (err) {
872 ext4_std_error(sb, err);
873 goto out;
874 }
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500875 ext4_lock_group(sb, group);
876 ret2 = ext4_test_and_set_bit(ino, inode_bitmap_bh->b_data);
877 ext4_unlock_group(sb, group);
878 ino++; /* the inode bitmap is zero-based */
879 if (!ret2)
880 goto got; /* we grabbed the inode! */
Theodore Ts'o19883bd2013-08-16 22:06:55 -0400881next_inode:
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500882 if (ino < EXT4_INODES_PER_GROUP(sb))
883 goto repeat_in_this_group;
Theodore Ts'oa34eb502013-07-26 15:15:46 -0400884next_group:
885 if (++group == ngroups)
886 group = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700887 }
888 err = -ENOSPC;
889 goto out;
890
891got:
Eric Sandeenffb53872012-10-28 22:24:57 -0400892 BUFFER_TRACE(inode_bitmap_bh, "call ext4_handle_dirty_metadata");
893 err = ext4_handle_dirty_metadata(handle, NULL, inode_bitmap_bh);
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400894 if (err) {
895 ext4_std_error(sb, err);
896 goto out;
897 }
Eric Sandeenffb53872012-10-28 22:24:57 -0400898
Theodore Ts'o61c219f2014-07-05 16:28:35 -0400899 BUFFER_TRACE(group_desc_bh, "get_write_access");
900 err = ext4_journal_get_write_access(handle, group_desc_bh);
901 if (err) {
902 ext4_std_error(sb, err);
903 goto out;
904 }
905
Andreas Dilger717d50e2007-10-16 18:38:25 -0400906 /* We may have to initialize the block bitmap if it isn't already */
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -0400907 if (ext4_has_group_desc_csum(sb) &&
Andreas Dilger717d50e2007-10-16 18:38:25 -0400908 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500909 struct buffer_head *block_bitmap_bh;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400910
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500911 block_bitmap_bh = ext4_read_block_bitmap(sb, group);
Darrick J. Wong9008a582015-10-17 21:33:24 -0400912 if (IS_ERR(block_bitmap_bh)) {
913 err = PTR_ERR(block_bitmap_bh);
Jan Kara599a9b72014-10-30 10:53:16 -0400914 goto out;
915 }
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500916 BUFFER_TRACE(block_bitmap_bh, "get block bitmap access");
917 err = ext4_journal_get_write_access(handle, block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400918 if (err) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500919 brelse(block_bitmap_bh);
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400920 ext4_std_error(sb, err);
921 goto out;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400922 }
923
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400924 BUFFER_TRACE(block_bitmap_bh, "dirty block bitmap");
925 err = ext4_handle_dirty_metadata(handle, NULL, block_bitmap_bh);
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400926
Andreas Dilger717d50e2007-10-16 18:38:25 -0400927 /* recheck and clear flag under lock if we still need to */
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400928 ext4_lock_group(sb, group);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400929 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500930 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400931 ext4_free_group_clusters_set(sb, gdp,
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -0400932 ext4_free_clusters_after_init(sb, group, gdp));
Darrick J. Wongfa77dcf2012-04-29 18:35:10 -0400933 ext4_block_bitmap_csum_set(sb, group, gdp,
Tao Ma79f1ba42012-10-22 00:34:32 -0400934 block_bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -0400935 ext4_group_desc_csum_set(sb, group, gdp);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400936 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400937 ext4_unlock_group(sb, group);
Theodore Ts'oaeb1e5d62012-11-29 21:21:22 -0500938 brelse(block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400939
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400940 if (err) {
941 ext4_std_error(sb, err);
942 goto out;
943 }
Andreas Dilger717d50e2007-10-16 18:38:25 -0400944 }
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500945
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500946 /* Update the relevant bg descriptor fields */
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400947 if (ext4_has_group_desc_csum(sb)) {
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500948 int free;
949 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
950
951 down_read(&grp->alloc_sem); /* protect vs itable lazyinit */
952 ext4_lock_group(sb, group); /* while we modify the bg desc */
953 free = EXT4_INODES_PER_GROUP(sb) -
954 ext4_itable_unused_count(sb, gdp);
955 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
956 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT);
957 free = 0;
958 }
959 /*
960 * Check the relative inode number against the last used
961 * relative inode number in this group. if it is greater
962 * we need to update the bg_itable_unused count
963 */
964 if (ino > free)
965 ext4_itable_unused_set(sb, gdp,
966 (EXT4_INODES_PER_GROUP(sb) - ino));
967 up_read(&grp->alloc_sem);
Tao Ma6f2e9f02012-05-28 18:20:59 -0400968 } else {
969 ext4_lock_group(sb, group);
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500970 }
Tao Ma6f2e9f02012-05-28 18:20:59 -0400971
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500972 ext4_free_inodes_set(sb, gdp, ext4_free_inodes_count(sb, gdp) - 1);
973 if (S_ISDIR(mode)) {
974 ext4_used_dirs_set(sb, gdp, ext4_used_dirs_count(sb, gdp) + 1);
975 if (sbi->s_log_groups_per_flex) {
976 ext4_group_t f = ext4_flex_group(sbi, group);
977
978 atomic_inc(&sbi->s_flex_groups[f].used_dirs);
979 }
980 }
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400981 if (ext4_has_group_desc_csum(sb)) {
982 ext4_inode_bitmap_csum_set(sb, group, gdp, inode_bitmap_bh,
983 EXT4_INODES_PER_GROUP(sb) / 8);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -0400984 ext4_group_desc_csum_set(sb, group, gdp);
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500985 }
Tao Ma6f2e9f02012-05-28 18:20:59 -0400986 ext4_unlock_group(sb, group);
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500987
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500988 BUFFER_TRACE(group_desc_bh, "call ext4_handle_dirty_metadata");
989 err = ext4_handle_dirty_metadata(handle, NULL, group_desc_bh);
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400990 if (err) {
991 ext4_std_error(sb, err);
992 goto out;
993 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700994
995 percpu_counter_dec(&sbi->s_freeinodes_counter);
996 if (S_ISDIR(mode))
997 percpu_counter_inc(&sbi->s_dirs_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700998
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400999 if (sbi->s_log_groups_per_flex) {
1000 flex_group = ext4_flex_group(sbi, group);
Theodore Ts'o9f24e422009-03-04 19:09:10 -05001001 atomic_dec(&sbi->s_flex_groups[flex_group].free_inodes);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001002 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001003
Andreas Dilger717d50e2007-10-16 18:38:25 -04001004 inode->i_ino = ino + group * EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001005 /* This is the optimal IO size (for stat), not the fs block size */
1006 inode->i_blocks = 0;
Kalpak Shahef7f3832007-07-18 09:15:20 -04001007 inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
1008 ext4_current_time(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001009
1010 memset(ei->i_data, 0, sizeof(ei->i_data));
1011 ei->i_dir_start_lookup = 0;
1012 ei->i_disksize = 0;
1013
Eryu Guan4af83502011-10-31 18:21:29 -04001014 /* Don't inherit extent flag from directory, amongst others. */
Duane Griffin2dc6b0d2009-02-15 18:09:20 -05001015 ei->i_flags =
1016 ext4_mask_flags(mode, EXT4_I(dir)->i_flags & EXT4_FL_INHERITED);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001017 ei->i_file_acl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001018 ei->i_dtime = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001019 ei->i_block_group = group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04001020 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001021
Mingming Cao617ba132006-10-11 01:20:53 -07001022 ext4_set_inode_flags(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001023 if (IS_DIRSYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05001024 ext4_handle_sync(handle);
Al Viro6b38e842008-12-30 02:03:31 -05001025 if (insert_inode_locked(inode) < 0) {
Jan Karaacd6ad82011-12-18 17:37:02 -05001026 /*
1027 * Likely a bitmap corruption causing inode to be allocated
1028 * twice.
1029 */
1030 err = -EIO;
Jan Karaeb9cc7e2013-04-19 13:38:14 -04001031 ext4_error(sb, "failed to insert inode %lu: doubly allocated?",
1032 inode->i_ino);
1033 goto out;
Al Viro6b38e842008-12-30 02:03:31 -05001034 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001035 spin_lock(&sbi->s_next_gen_lock);
1036 inode->i_generation = sbi->s_next_generation++;
1037 spin_unlock(&sbi->s_next_gen_lock);
1038
Darrick J. Wong814525f2012-04-29 18:31:10 -04001039 /* Precompute checksum seed for inode metadata */
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001040 if (ext4_has_metadata_csum(sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -04001041 __u32 csum;
Darrick J. Wong814525f2012-04-29 18:31:10 -04001042 __le32 inum = cpu_to_le32(inode->i_ino);
1043 __le32 gen = cpu_to_le32(inode->i_generation);
1044 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
1045 sizeof(inum));
1046 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
1047 sizeof(gen));
1048 }
1049
Theodore Ts'o353eb832011-01-10 12:18:25 -05001050 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001051 ext4_set_inode_state(inode, EXT4_STATE_NEW);
Kalpak Shahef7f3832007-07-18 09:15:20 -04001052
1053 ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;
Tao Maf08225d2012-12-10 14:06:03 -05001054 ei->i_inline_off = 0;
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04001055 if (ext4_has_feature_inline_data(sb))
Tao Maf08225d2012-12-10 14:06:03 -05001056 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001057 ret = inode;
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001058 err = dquot_alloc_inode(inode);
1059 if (err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001060 goto fail_drop;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001061
Hyojun Kim63da4202017-10-06 17:10:08 -07001062 /*
1063 * Since the encryption xattr will always be unique, create it first so
1064 * that it's less likely to end up in an external xattr block and
1065 * prevent its deduplication.
1066 */
1067 if (encrypt) {
1068 err = fscrypt_inherit_context(dir, inode, handle, true);
1069 if (err)
1070 goto fail_free_drop;
1071 }
1072
Mingming Cao617ba132006-10-11 01:20:53 -07001073 err = ext4_init_acl(handle, inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001074 if (err)
1075 goto fail_free_drop;
1076
Eric Paris2a7dba32011-02-01 11:05:39 -05001077 err = ext4_init_security(handle, inode, dir, qstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001078 if (err)
1079 goto fail_free_drop;
1080
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04001081 if (ext4_has_feature_extents(sb)) {
Eric Sandeene4079a12008-07-11 19:27:31 -04001082 /* set extent flag only for directory, file and normal symlink*/
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -04001083 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) {
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001084 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001085 ext4_ext_tree_init(handle, inode);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001086 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001087 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001088
Theodore Ts'o688f8692011-03-16 17:16:31 -04001089 if (ext4_handle_valid(handle)) {
1090 ei->i_sync_tid = handle->h_transaction->t_tid;
1091 ei->i_datasync_tid = handle->h_transaction->t_tid;
1092 }
1093
Aneesh Kumar K.V8753e882008-04-29 22:00:36 -04001094 err = ext4_mark_inode_dirty(handle, inode);
1095 if (err) {
1096 ext4_std_error(sb, err);
1097 goto fail_free_drop;
1098 }
1099
Mingming Cao617ba132006-10-11 01:20:53 -07001100 ext4_debug("allocating inode %lu\n", inode->i_ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001101 trace_ext4_allocate_inode(inode, dir, mode);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -05001102 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001103 return ret;
1104
1105fail_free_drop:
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001106 dquot_free_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001107fail_drop:
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02001108 clear_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05001109 unlock_new_inode(inode);
Jan Karaeb9cc7e2013-04-19 13:38:14 -04001110out:
1111 dquot_drop(inode);
1112 inode->i_flags |= S_NOQUOTA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001113 iput(inode);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -05001114 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001115 return ERR_PTR(err);
1116}
1117
1118/* Verify that we are loading a valid orphan from disk */
Mingming Cao617ba132006-10-11 01:20:53 -07001119struct inode *ext4_orphan_get(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001120{
Mingming Cao617ba132006-10-11 01:20:53 -07001121 unsigned long max_ino = le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001122 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001123 int bit;
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001124 struct buffer_head *bitmap_bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001125 struct inode *inode = NULL;
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001126 int err = -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001127
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001128 if (ino < EXT4_FIRST_INO(sb) || ino > max_ino)
1129 goto bad_orphan;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001130
Mingming Cao617ba132006-10-11 01:20:53 -07001131 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
1132 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -04001133 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04001134 if (IS_ERR(bitmap_bh)) {
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001135 ext4_error(sb, "inode bitmap error %ld for orphan %lu",
1136 ino, PTR_ERR(bitmap_bh));
1137 return (struct inode *) bitmap_bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001138 }
1139
1140 /* Having the inode bit set should be a 100% indicator that this
1141 * is a valid orphan (no e2fsck run on fs). Orphans also include
1142 * inodes that were being truncated, so we can't check i_nlink==0.
1143 */
David Howells1d1fe1e2008-02-07 00:15:37 -08001144 if (!ext4_test_bit(bit, bitmap_bh->b_data))
1145 goto bad_orphan;
1146
1147 inode = ext4_iget(sb, ino);
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001148 if (IS_ERR(inode)) {
1149 err = PTR_ERR(inode);
1150 ext4_error(sb, "couldn't read orphan inode %lu (err %d)",
1151 ino, err);
1152 return inode;
1153 }
David Howells1d1fe1e2008-02-07 00:15:37 -08001154
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001155 /*
Theodore Ts'oc9eb13a2016-04-30 00:48:54 -04001156 * If the orphans has i_nlinks > 0 then it should be able to
1157 * be truncated, otherwise it won't be removed from the orphan
1158 * list during processing and an infinite loop will result.
1159 * Similarly, it must not be a bad inode.
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001160 */
Theodore Ts'oc9eb13a2016-04-30 00:48:54 -04001161 if ((inode->i_nlink && !ext4_can_truncate(inode)) ||
1162 is_bad_inode(inode))
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001163 goto bad_orphan;
1164
David Howells1d1fe1e2008-02-07 00:15:37 -08001165 if (NEXT_ORPHAN(inode) > max_ino)
1166 goto bad_orphan;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001167 brelse(bitmap_bh);
1168 return inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08001169
David Howells1d1fe1e2008-02-07 00:15:37 -08001170bad_orphan:
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001171 ext4_error(sb, "bad orphan inode %lu", ino);
1172 if (bitmap_bh)
1173 printk(KERN_ERR "ext4_test_bit(bit=%d, block=%llu) = %d\n",
1174 bit, (unsigned long long)bitmap_bh->b_blocknr,
1175 ext4_test_bit(bit, bitmap_bh->b_data));
David Howells1d1fe1e2008-02-07 00:15:37 -08001176 if (inode) {
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001177 printk(KERN_ERR "is_bad_inode(inode)=%d\n",
David Howells1d1fe1e2008-02-07 00:15:37 -08001178 is_bad_inode(inode));
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001179 printk(KERN_ERR "NEXT_ORPHAN(inode)=%u\n",
David Howells1d1fe1e2008-02-07 00:15:37 -08001180 NEXT_ORPHAN(inode));
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001181 printk(KERN_ERR "max_ino=%lu\n", max_ino);
1182 printk(KERN_ERR "i_nlink=%u\n", inode->i_nlink);
David Howells1d1fe1e2008-02-07 00:15:37 -08001183 /* Avoid freeing blocks if we got a bad deleted inode */
1184 if (inode->i_nlink == 0)
1185 inode->i_blocks = 0;
1186 iput(inode);
1187 }
1188 brelse(bitmap_bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08001189 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001190}
1191
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001192unsigned long ext4_count_free_inodes(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001193{
1194 unsigned long desc_count;
Mingming Cao617ba132006-10-11 01:20:53 -07001195 struct ext4_group_desc *gdp;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001196 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07001197#ifdef EXT4FS_DEBUG
1198 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001199 unsigned long bitmap_count, x;
1200 struct buffer_head *bitmap_bh = NULL;
1201
Mingming Cao617ba132006-10-11 01:20:53 -07001202 es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001203 desc_count = 0;
1204 bitmap_count = 0;
1205 gdp = NULL;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001206 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001207 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001208 if (!gdp)
1209 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001210 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001211 brelse(bitmap_bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -04001212 bitmap_bh = ext4_read_inode_bitmap(sb, i);
Darrick J. Wong9008a582015-10-17 21:33:24 -04001213 if (IS_ERR(bitmap_bh)) {
1214 bitmap_bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001215 continue;
Darrick J. Wong9008a582015-10-17 21:33:24 -04001216 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001217
Theodore Ts'of6fb99c2012-06-30 19:14:57 -04001218 x = ext4_count_free(bitmap_bh->b_data,
1219 EXT4_INODES_PER_GROUP(sb) / 8);
Eric Sandeenc549a952008-01-28 23:58:27 -05001220 printk(KERN_DEBUG "group %lu: stored = %d, counted = %lu\n",
Peng Tao785b4b32009-07-27 21:44:40 -04001221 (unsigned long) i, ext4_free_inodes_count(sb, gdp), x);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001222 bitmap_count += x;
1223 }
1224 brelse(bitmap_bh);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001225 printk(KERN_DEBUG "ext4_count_free_inodes: "
1226 "stored = %u, computed = %lu, %lu\n",
1227 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001228 return desc_count;
1229#else
1230 desc_count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001231 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001232 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001233 if (!gdp)
1234 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001235 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001236 cond_resched();
1237 }
1238 return desc_count;
1239#endif
1240}
1241
1242/* Called at mount-time, super-block is locked */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001243unsigned long ext4_count_dirs(struct super_block * sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001244{
1245 unsigned long count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001246 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001247
Theodore Ts'o8df96752009-05-01 08:50:38 -04001248 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001249 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001250 if (!gdp)
1251 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001252 count += ext4_used_dirs_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001253 }
1254 return count;
1255}
Lukas Czernerbfff6872010-10-27 21:30:05 -04001256
1257/*
1258 * Zeroes not yet zeroed inode table - just write zeroes through the whole
1259 * inode table. Must be called without any spinlock held. The only place
1260 * where it is called from on active part of filesystem is ext4lazyinit
1261 * thread, so we do not need any special locks, however we have to prevent
1262 * inode allocation from the current group, so we take alloc_sem lock, to
Theodore Ts'o119c0d42012-02-06 20:12:03 -05001263 * block ext4_new_inode() until we are finished.
Lukas Czernerbfff6872010-10-27 21:30:05 -04001264 */
H Hartley Sweetene0cbee32011-10-18 10:57:51 -04001265int ext4_init_inode_table(struct super_block *sb, ext4_group_t group,
Lukas Czernerbfff6872010-10-27 21:30:05 -04001266 int barrier)
1267{
1268 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
1269 struct ext4_sb_info *sbi = EXT4_SB(sb);
1270 struct ext4_group_desc *gdp = NULL;
1271 struct buffer_head *group_desc_bh;
1272 handle_t *handle;
1273 ext4_fsblk_t blk;
1274 int num, ret = 0, used_blks = 0;
Lukas Czernerbfff6872010-10-27 21:30:05 -04001275
1276 /* This should not happen, but just to be sure check this */
1277 if (sb->s_flags & MS_RDONLY) {
1278 ret = 1;
1279 goto out;
1280 }
1281
1282 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
1283 if (!gdp)
1284 goto out;
1285
1286 /*
1287 * We do not need to lock this, because we are the only one
1288 * handling this flag.
1289 */
1290 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED))
1291 goto out;
1292
Theodore Ts'o9924a922013-02-08 21:59:22 -05001293 handle = ext4_journal_start_sb(sb, EXT4_HT_MISC, 1);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001294 if (IS_ERR(handle)) {
1295 ret = PTR_ERR(handle);
1296 goto out;
1297 }
1298
1299 down_write(&grp->alloc_sem);
1300 /*
1301 * If inode bitmap was already initialized there may be some
1302 * used inodes so we need to skip blocks with used inodes in
1303 * inode table.
1304 */
1305 if (!(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)))
1306 used_blks = DIV_ROUND_UP((EXT4_INODES_PER_GROUP(sb) -
1307 ext4_itable_unused_count(sb, gdp)),
1308 sbi->s_inodes_per_block);
1309
Lukas Czerner857ac882010-10-27 21:30:05 -04001310 if ((used_blks < 0) || (used_blks > sbi->s_itb_per_group)) {
Theodore Ts'o1084f252012-03-19 23:13:43 -04001311 ext4_error(sb, "Something is wrong with group %u: "
1312 "used itable blocks: %d; "
1313 "itable unused count: %u",
Lukas Czerner857ac882010-10-27 21:30:05 -04001314 group, used_blks,
1315 ext4_itable_unused_count(sb, gdp));
1316 ret = 1;
Yongqiang Yang33853a02011-08-01 06:32:19 -04001317 goto err_out;
Lukas Czerner857ac882010-10-27 21:30:05 -04001318 }
1319
Lukas Czernerbfff6872010-10-27 21:30:05 -04001320 blk = ext4_inode_table(sb, gdp) + used_blks;
1321 num = sbi->s_itb_per_group - used_blks;
1322
1323 BUFFER_TRACE(group_desc_bh, "get_write_access");
1324 ret = ext4_journal_get_write_access(handle,
1325 group_desc_bh);
1326 if (ret)
1327 goto err_out;
1328
Lukas Czernerbfff6872010-10-27 21:30:05 -04001329 /*
1330 * Skip zeroout if the inode table is full. But we set the ZEROED
1331 * flag anyway, because obviously, when it is full it does not need
1332 * further zeroing.
1333 */
1334 if (unlikely(num == 0))
1335 goto skip_zeroout;
1336
1337 ext4_debug("going to zero out inode table in group %d\n",
1338 group);
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001339 ret = sb_issue_zeroout(sb, blk, num, GFP_NOFS);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001340 if (ret < 0)
1341 goto err_out;
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001342 if (barrier)
1343 blkdev_issue_flush(sb->s_bdev, GFP_NOFS, NULL);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001344
1345skip_zeroout:
1346 ext4_lock_group(sb, group);
1347 gdp->bg_flags |= cpu_to_le16(EXT4_BG_INODE_ZEROED);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04001348 ext4_group_desc_csum_set(sb, group, gdp);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001349 ext4_unlock_group(sb, group);
1350
1351 BUFFER_TRACE(group_desc_bh,
1352 "call ext4_handle_dirty_metadata");
1353 ret = ext4_handle_dirty_metadata(handle, NULL,
1354 group_desc_bh);
1355
1356err_out:
1357 up_write(&grp->alloc_sem);
1358 ext4_journal_stop(handle);
1359out:
1360 return ret;
1361}