blob: 4966c6d24ad2c934ff5d7138a1e5f751b4ec6ce1 [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);
Theodore Ts'o262a62c2018-07-12 19:08:05 -040091 if (buffer_verified(bh))
92 goto verified;
Darrick J. Wong9008a582015-10-17 21:33:24 -040093 blk = ext4_inode_bitmap(sb, desc);
94 if (!ext4_inode_bitmap_csum_verify(sb, block_group, desc, bh,
95 EXT4_INODES_PER_GROUP(sb) / 8)) {
96 ext4_unlock_group(sb, block_group);
97 ext4_error(sb, "Corrupt inode bitmap - block_group = %u, "
98 "inode_bitmap = %llu", block_group, blk);
99 grp = ext4_get_group_info(sb, block_group);
100 if (!EXT4_MB_GRP_IBITMAP_CORRUPT(grp)) {
101 int count;
102 count = ext4_free_inodes_count(sb, desc);
103 percpu_counter_sub(&sbi->s_freeinodes_counter,
104 count);
105 }
106 set_bit(EXT4_GROUP_INFO_IBITMAP_CORRUPT_BIT, &grp->bb_state);
107 return -EFSBADCRC;
108 }
109 set_buffer_verified(bh);
Theodore Ts'o262a62c2018-07-12 19:08:05 -0400110verified:
Darrick J. Wong9008a582015-10-17 21:33:24 -0400111 ext4_unlock_group(sb, block_group);
112 return 0;
113}
114
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700115/*
116 * Read the inode allocation bitmap for a given block_group, reading
117 * into the specified slot in the superblock's bitmap cache.
118 *
119 * Return buffer_head of bitmap on success or NULL.
120 */
121static struct buffer_head *
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400122ext4_read_inode_bitmap(struct super_block *sb, ext4_group_t block_group)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700123{
Mingming Cao617ba132006-10-11 01:20:53 -0700124 struct ext4_group_desc *desc;
Theodore Ts'o76964812018-03-26 23:54:10 -0400125 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700126 struct buffer_head *bh = NULL;
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400127 ext4_fsblk_t bitmap_blk;
Darrick J. Wong9008a582015-10-17 21:33:24 -0400128 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700129
Mingming Cao617ba132006-10-11 01:20:53 -0700130 desc = ext4_get_group_desc(sb, block_group, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700131 if (!desc)
Darrick J. Wong9008a582015-10-17 21:33:24 -0400132 return ERR_PTR(-EFSCORRUPTED);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400133
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400134 bitmap_blk = ext4_inode_bitmap(sb, desc);
Theodore Ts'o76964812018-03-26 23:54:10 -0400135 if ((bitmap_blk <= le32_to_cpu(sbi->s_es->s_first_data_block)) ||
136 (bitmap_blk >= ext4_blocks_count(sbi->s_es))) {
137 ext4_error(sb, "Invalid inode bitmap blk %llu in "
138 "block_group %u", bitmap_blk, block_group);
139 return ERR_PTR(-EFSCORRUPTED);
140 }
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400141 bh = sb_getblk(sb, bitmap_blk);
142 if (unlikely(!bh)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500143 ext4_error(sb, "Cannot read inode bitmap - "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -0500144 "block_group = %u, inode_bitmap = %llu",
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400145 block_group, bitmap_blk);
Darrick J. Wong9008a582015-10-17 21:33:24 -0400146 return ERR_PTR(-EIO);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400147 }
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500148 if (bitmap_uptodate(bh))
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400149 goto verify;
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400150
Frederic Bohec806e682008-10-10 08:09:18 -0400151 lock_buffer(bh);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500152 if (bitmap_uptodate(bh)) {
153 unlock_buffer(bh);
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400154 goto verify;
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500155 }
Lukas Czernerbfff6872010-10-27 21:30:05 -0400156
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400157 ext4_lock_group(sb, block_group);
Theodore Ts'o5ae57322018-06-14 00:58:00 -0400158 if (ext4_has_group_desc_csum(sb) &&
159 (desc->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT))) {
160 if (block_group == 0) {
161 ext4_unlock_group(sb, block_group);
162 unlock_buffer(bh);
163 ext4_error(sb, "Inode bitmap for bg 0 marked "
164 "uninitialized");
165 err = -EFSCORRUPTED;
166 goto out;
167 }
Theodore Ts'oa06b7982018-02-19 14:16:47 -0500168 memset(bh->b_data, 0, (EXT4_INODES_PER_GROUP(sb) + 7) / 8);
169 ext4_mark_bitmap_end(EXT4_INODES_PER_GROUP(sb),
170 sb->s_blocksize * 8, bh->b_data);
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500171 set_bitmap_uptodate(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400172 set_buffer_uptodate(bh);
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400173 set_buffer_verified(bh);
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400174 ext4_unlock_group(sb, block_group);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500175 unlock_buffer(bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400176 return bh;
177 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400178 ext4_unlock_group(sb, block_group);
Lukas Czernerbfff6872010-10-27 21:30:05 -0400179
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500180 if (buffer_uptodate(bh)) {
181 /*
182 * if not uninit if bh is uptodate,
183 * bitmap is also uptodate
184 */
185 set_bitmap_uptodate(bh);
186 unlock_buffer(bh);
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400187 goto verify;
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500188 }
189 /*
Theodore Ts'o813e5722012-02-20 17:52:46 -0500190 * submit the buffer_head for reading
Aneesh Kumar K.V2ccb5fb2009-01-05 21:49:55 -0500191 */
Jiaying Zhang0562e0b2011-03-21 21:38:05 -0400192 trace_ext4_load_inode_bitmap(sb, block_group);
Theodore Ts'o813e5722012-02-20 17:52:46 -0500193 bh->b_end_io = ext4_end_bitmap_read;
194 get_bh(bh);
Mike Christie2a222ca2016-06-05 14:31:43 -0500195 submit_bh(REQ_OP_READ, REQ_META | REQ_PRIO, bh);
Theodore Ts'o813e5722012-02-20 17:52:46 -0500196 wait_on_buffer(bh);
197 if (!buffer_uptodate(bh)) {
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400198 put_bh(bh);
Eric Sandeen12062dd2010-02-15 14:19:27 -0500199 ext4_error(sb, "Cannot read inode bitmap - "
Theodore Ts'o813e5722012-02-20 17:52:46 -0500200 "block_group = %u, inode_bitmap = %llu",
201 block_group, bitmap_blk);
Darrick J. Wong9008a582015-10-17 21:33:24 -0400202 return ERR_PTR(-EIO);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400203 }
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400204
205verify:
Darrick J. Wong9008a582015-10-17 21:33:24 -0400206 err = ext4_validate_inode_bitmap(sb, desc, block_group, bh);
207 if (err)
208 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700209 return bh;
Darrick J. Wong9008a582015-10-17 21:33:24 -0400210out:
211 put_bh(bh);
212 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700213}
214
215/*
216 * NOTE! When we get the inode, we're the only people
217 * that have access to it, and as such there are no
218 * race conditions we have to worry about. The inode
219 * is not on the hash-lists, and it cannot be reached
220 * through the filesystem because the directory entry
221 * has been deleted earlier.
222 *
223 * HOWEVER: we must make sure that we get no aliases,
224 * which means that we have to call "clear_inode()"
225 * _before_ we mark the inode not in use in the inode
226 * bitmaps. Otherwise a newly created file might use
227 * the same inode number (not actually the same pointer
228 * though), and then we'd have two inodes sharing the
229 * same inode number and space on the harddisk.
230 */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400231void ext4_free_inode(handle_t *handle, struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700232{
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400233 struct super_block *sb = inode->i_sb;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700234 int is_directory;
235 unsigned long ino;
236 struct buffer_head *bitmap_bh = NULL;
237 struct buffer_head *bh2;
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500238 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700239 unsigned long bit;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400240 struct ext4_group_desc *gdp;
241 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -0700242 struct ext4_sb_info *sbi;
Eric Sandeen7ce9d5d2009-03-04 18:38:18 -0500243 int fatal = 0, err, count, cleared;
Darrick J. Wong87a39382013-08-28 18:32:58 -0400244 struct ext4_group_info *grp;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700245
Theodore Ts'o92b97812012-03-19 23:41:49 -0400246 if (!sb) {
247 printk(KERN_ERR "EXT4-fs: %s:%d: inode on "
248 "nonexistent device\n", __func__, __LINE__);
249 return;
250 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700251 if (atomic_read(&inode->i_count) > 1) {
Theodore Ts'o92b97812012-03-19 23:41:49 -0400252 ext4_msg(sb, KERN_ERR, "%s:%d: inode #%lu: count=%d",
253 __func__, __LINE__, inode->i_ino,
254 atomic_read(&inode->i_count));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700255 return;
256 }
257 if (inode->i_nlink) {
Theodore Ts'o92b97812012-03-19 23:41:49 -0400258 ext4_msg(sb, KERN_ERR, "%s:%d: inode #%lu: nlink=%d\n",
259 __func__, __LINE__, inode->i_ino, inode->i_nlink);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700260 return;
261 }
Mingming Cao617ba132006-10-11 01:20:53 -0700262 sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700263
264 ino = inode->i_ino;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400265 ext4_debug("freeing inode %lu\n", ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400266 trace_ext4_free_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700267
268 /*
269 * Note: we must free any quota before locking the superblock,
270 * as writing the quota to disk may need the lock as well.
271 */
Christoph Hellwig871a2932010-03-03 09:05:07 -0500272 dquot_initialize(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700273 ext4_xattr_delete_inode(handle, inode);
Christoph Hellwig63936dd2010-03-03 09:05:01 -0500274 dquot_free_inode(inode);
Christoph Hellwig9f754752010-03-03 09:05:05 -0500275 dquot_drop(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700276
277 is_directory = S_ISDIR(inode->i_mode);
278
279 /* Do this BEFORE marking the inode not in use or returning an error */
Al Viro0930fcc2010-06-07 13:16:22 -0400280 ext4_clear_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700281
Mingming Cao617ba132006-10-11 01:20:53 -0700282 es = EXT4_SB(sb)->s_es;
283 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) {
Eric Sandeen12062dd2010-02-15 14:19:27 -0500284 ext4_error(sb, "reserved or nonexistent inode %lu", ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700285 goto error_return;
286 }
Mingming Cao617ba132006-10-11 01:20:53 -0700287 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
288 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -0400289 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Darrick J. Wong87a39382013-08-28 18:32:58 -0400290 /* Don't bother if the inode bitmap is corrupt. */
291 grp = ext4_get_group_info(sb, block_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -0400292 if (IS_ERR(bitmap_bh)) {
293 fatal = PTR_ERR(bitmap_bh);
294 bitmap_bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700295 goto error_return;
Darrick J. Wong9008a582015-10-17 21:33:24 -0400296 }
297 if (unlikely(EXT4_MB_GRP_IBITMAP_CORRUPT(grp))) {
298 fatal = -EFSCORRUPTED;
299 goto error_return;
300 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700301
302 BUFFER_TRACE(bitmap_bh, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700303 fatal = ext4_journal_get_write_access(handle, bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700304 if (fatal)
305 goto error_return;
306
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400307 fatal = -ESRCH;
308 gdp = ext4_get_group_desc(sb, block_group, &bh2);
309 if (gdp) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700310 BUFFER_TRACE(bh2, "get_write_access");
Mingming Cao617ba132006-10-11 01:20:53 -0700311 fatal = ext4_journal_get_write_access(handle, bh2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700312 }
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400313 ext4_lock_group(sb, block_group);
Akinobu Mita597d5082011-12-28 20:32:07 -0500314 cleared = ext4_test_and_clear_bit(bit, bitmap_bh->b_data);
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400315 if (fatal || !cleared) {
316 ext4_unlock_group(sb, block_group);
317 goto out;
318 }
319
320 count = ext4_free_inodes_count(sb, gdp) + 1;
321 ext4_free_inodes_set(sb, gdp, count);
322 if (is_directory) {
323 count = ext4_used_dirs_count(sb, gdp) - 1;
324 ext4_used_dirs_set(sb, gdp, count);
325 percpu_counter_dec(&sbi->s_dirs_counter);
326 }
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400327 ext4_inode_bitmap_csum_set(sb, block_group, gdp, bitmap_bh,
328 EXT4_INODES_PER_GROUP(sb) / 8);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -0400329 ext4_group_desc_csum_set(sb, block_group, gdp);
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400330 ext4_unlock_group(sb, block_group);
331
332 percpu_counter_inc(&sbi->s_freeinodes_counter);
333 if (sbi->s_log_groups_per_flex) {
Suraj Jitindar Singh277bc962020-02-28 16:51:19 -0800334 struct flex_groups *fg;
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400335
Suraj Jitindar Singh277bc962020-02-28 16:51:19 -0800336 fg = sbi_array_rcu_deref(sbi, s_flex_groups,
337 ext4_flex_group(sbi, block_group));
338 atomic_inc(&fg->free_inodes);
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400339 if (is_directory)
Suraj Jitindar Singh277bc962020-02-28 16:51:19 -0800340 atomic_dec(&fg->used_dirs);
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400341 }
342 BUFFER_TRACE(bh2, "call ext4_handle_dirty_metadata");
343 fatal = ext4_handle_dirty_metadata(handle, NULL, bh2);
344out:
345 if (cleared) {
346 BUFFER_TRACE(bitmap_bh, "call ext4_handle_dirty_metadata");
347 err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
348 if (!fatal)
349 fatal = err;
Darrick J. Wong87a39382013-08-28 18:32:58 -0400350 } else {
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400351 ext4_error(sb, "bit already cleared for inode %lu", ino);
Namjae Jeonbf40c922014-07-12 16:11:42 -0400352 if (gdp && !EXT4_MB_GRP_IBITMAP_CORRUPT(grp)) {
Namjae Jeone43bb4e2014-06-26 10:11:53 -0400353 int count;
354 count = ext4_free_inodes_count(sb, gdp);
355 percpu_counter_sub(&sbi->s_freeinodes_counter,
356 count);
357 }
Darrick J. Wong87a39382013-08-28 18:32:58 -0400358 set_bit(EXT4_GROUP_INFO_IBITMAP_CORRUPT_BIT, &grp->bb_state);
359 }
Dmitry Monakhovd17413c2010-05-16 07:00:00 -0400360
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700361error_return:
362 brelse(bitmap_bh);
Mingming Cao617ba132006-10-11 01:20:53 -0700363 ext4_std_error(sb, fatal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700364}
365
Theodore Ts'oa4912122009-03-12 12:18:34 -0400366struct orlov_stats {
Theodore Ts'o90ba9832013-03-11 23:39:59 -0400367 __u64 free_clusters;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400368 __u32 free_inodes;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400369 __u32 used_dirs;
370};
371
372/*
373 * Helper function for Orlov's allocator; returns critical information
374 * for a particular block group or flex_bg. If flex_size is 1, then g
375 * is a block group number; otherwise it is flex_bg number.
376 */
Theodore Ts'o1f109d52010-10-27 21:30:14 -0400377static void get_orlov_stats(struct super_block *sb, ext4_group_t g,
378 int flex_size, struct orlov_stats *stats)
Theodore Ts'oa4912122009-03-12 12:18:34 -0400379{
380 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400381
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500382 if (flex_size > 1) {
Suraj Jitindar Singh277bc962020-02-28 16:51:19 -0800383 struct flex_groups *fg = sbi_array_rcu_deref(EXT4_SB(sb),
384 s_flex_groups, g);
385 stats->free_inodes = atomic_read(&fg->free_inodes);
386 stats->free_clusters = atomic64_read(&fg->free_clusters);
387 stats->used_dirs = atomic_read(&fg->used_dirs);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500388 return;
389 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400390
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500391 desc = ext4_get_group_desc(sb, g, NULL);
392 if (desc) {
393 stats->free_inodes = ext4_free_inodes_count(sb, desc);
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400394 stats->free_clusters = ext4_free_group_clusters(sb, desc);
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500395 stats->used_dirs = ext4_used_dirs_count(sb, desc);
396 } else {
397 stats->free_inodes = 0;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400398 stats->free_clusters = 0;
Theodore Ts'o7d39db12009-03-04 19:31:53 -0500399 stats->used_dirs = 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400400 }
401}
402
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700403/*
404 * Orlov's allocator for directories.
405 *
406 * We always try to spread first-level directories.
407 *
Pan Dong7c6ae372021-05-25 15:36:56 +0800408 * If there are blockgroups with both free inodes and free clusters counts
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700409 * not worse than average we return one with smallest directory count.
410 * Otherwise we simply return a random group.
411 *
412 * For the rest rules look so:
413 *
414 * It's OK to put directory into a group unless
415 * it has too many directories already (max_dirs) or
416 * it has too few free inodes left (min_inodes) or
Pan Dong7c6ae372021-05-25 15:36:56 +0800417 * it has too few free clusters left (min_clusters) or
Benoit Boissinot1cc8dcf52008-04-21 22:45:55 +0000418 * Parent's group is preferred, if it doesn't satisfy these
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700419 * conditions we search cyclically through the rest. If none
420 * of the groups look good we just look for a group with more
421 * free inodes than average (starting at parent's group).
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700422 */
423
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500424static int find_group_orlov(struct super_block *sb, struct inode *parent,
Al Virodcca3fe2011-07-26 02:48:06 -0400425 ext4_group_t *group, umode_t mode,
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400426 const struct qstr *qstr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700427{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500428 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Mingming Cao617ba132006-10-11 01:20:53 -0700429 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o8df96752009-05-01 08:50:38 -0400430 ext4_group_t real_ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700431 int inodes_per_group = EXT4_INODES_PER_GROUP(sb);
Theodore Ts'o14c83c92011-12-28 20:25:13 -0500432 unsigned int freei, avefreei, grp_free;
Pan Dong7c6ae372021-05-25 15:36:56 +0800433 ext4_fsblk_t freec, avefreec;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700434 unsigned int ndirs;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400435 int max_dirs, min_inodes;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400436 ext4_grpblk_t min_clusters;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400437 ext4_group_t i, grp, g, ngroups;
Mingming Cao617ba132006-10-11 01:20:53 -0700438 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400439 struct orlov_stats stats;
440 int flex_size = ext4_flex_bg_size(sbi);
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400441 struct dx_hash_info hinfo;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400442
Theodore Ts'o8df96752009-05-01 08:50:38 -0400443 ngroups = real_ngroups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400444 if (flex_size > 1) {
Theodore Ts'o8df96752009-05-01 08:50:38 -0400445 ngroups = (real_ngroups + flex_size - 1) >>
Theodore Ts'oa4912122009-03-12 12:18:34 -0400446 sbi->s_log_groups_per_flex;
447 parent_group >>= sbi->s_log_groups_per_flex;
448 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700449
450 freei = percpu_counter_read_positive(&sbi->s_freeinodes_counter);
451 avefreei = freei / ngroups;
Pan Dong7c6ae372021-05-25 15:36:56 +0800452 freec = percpu_counter_read_positive(&sbi->s_freeclusters_counter);
453 avefreec = freec;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400454 do_div(avefreec, ngroups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700455 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
456
Theodore Ts'oa4912122009-03-12 12:18:34 -0400457 if (S_ISDIR(mode) &&
David Howells2b0143b2015-03-17 22:25:59 +0000458 ((parent == d_inode(sb->s_root)) ||
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400459 (ext4_test_inode_flag(parent, EXT4_INODE_TOPDIR)))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700460 int best_ndir = inodes_per_group;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500461 int ret = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700462
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400463 if (qstr) {
464 hinfo.hash_version = DX_HASH_HALF_MD4;
465 hinfo.seed = sbi->s_hash_seed;
466 ext4fs_dirhash(qstr->name, qstr->len, &hinfo);
467 grp = hinfo.hash;
468 } else
Theodore Ts'odd1f7232013-11-08 00:14:53 -0500469 grp = prandom_u32();
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500470 parent_group = (unsigned)grp % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700471 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400472 g = (parent_group + i) % ngroups;
473 get_orlov_stats(sb, g, flex_size, &stats);
474 if (!stats.free_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700475 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400476 if (stats.used_dirs >= best_ndir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700477 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400478 if (stats.free_inodes < avefreei)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700479 continue;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400480 if (stats.free_clusters < avefreec)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700481 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400482 grp = g;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500483 ret = 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400484 best_ndir = stats.used_dirs;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700485 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400486 if (ret)
487 goto fallback;
488 found_flex_bg:
489 if (flex_size == 1) {
490 *group = grp;
491 return 0;
492 }
493
494 /*
495 * We pack inodes at the beginning of the flexgroup's
496 * inode tables. Block allocation decisions will do
497 * something similar, although regular files will
498 * start at 2nd block group of the flexgroup. See
499 * ext4_ext_find_goal() and ext4_find_near().
500 */
501 grp *= flex_size;
502 for (i = 0; i < flex_size; i++) {
Theodore Ts'o8df96752009-05-01 08:50:38 -0400503 if (grp+i >= real_ngroups)
Theodore Ts'oa4912122009-03-12 12:18:34 -0400504 break;
505 desc = ext4_get_group_desc(sb, grp+i, NULL);
506 if (desc && ext4_free_inodes_count(sb, desc)) {
507 *group = grp+i;
508 return 0;
509 }
510 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700511 goto fallback;
512 }
513
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700514 max_dirs = ndirs / ngroups + inodes_per_group / 16;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400515 min_inodes = avefreei - inodes_per_group*flex_size / 4;
516 if (min_inodes < 1)
517 min_inodes = 1;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400518 min_clusters = avefreec - EXT4_CLUSTERS_PER_GROUP(sb)*flex_size / 4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700519
Theodore Ts'oa4912122009-03-12 12:18:34 -0400520 /*
521 * Start looking in the flex group where we last allocated an
522 * inode for this parent directory
523 */
524 if (EXT4_I(parent)->i_last_alloc_group != ~0) {
525 parent_group = EXT4_I(parent)->i_last_alloc_group;
526 if (flex_size > 1)
527 parent_group >>= sbi->s_log_groups_per_flex;
528 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700529
530 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400531 grp = (parent_group + i) % ngroups;
532 get_orlov_stats(sb, grp, flex_size, &stats);
533 if (stats.used_dirs >= max_dirs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700534 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400535 if (stats.free_inodes < min_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700536 continue;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400537 if (stats.free_clusters < min_clusters)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700538 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400539 goto found_flex_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700540 }
541
542fallback:
Theodore Ts'o8df96752009-05-01 08:50:38 -0400543 ngroups = real_ngroups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400544 avefreei = freei / ngroups;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400545fallback_retry:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400546 parent_group = EXT4_I(parent)->i_block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700547 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400548 grp = (parent_group + i) % ngroups;
549 desc = ext4_get_group_desc(sb, grp, NULL);
Dan Carpenterbb3d1322012-05-28 14:16:57 -0400550 if (desc) {
551 grp_free = ext4_free_inodes_count(sb, desc);
552 if (grp_free && grp_free >= avefreei) {
553 *group = grp;
554 return 0;
555 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400556 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700557 }
558
559 if (avefreei) {
560 /*
561 * The free-inodes counter is approximate, and for really small
562 * filesystems the above test can fail to find any blockgroups
563 */
564 avefreei = 0;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400565 goto fallback_retry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700566 }
567
568 return -1;
569}
570
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500571static int find_group_other(struct super_block *sb, struct inode *parent,
Al Virodcca3fe2011-07-26 02:48:06 -0400572 ext4_group_t *group, umode_t mode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700573{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500574 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400575 ext4_group_t i, last, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700576 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400577 int flex_size = ext4_flex_bg_size(EXT4_SB(sb));
578
579 /*
580 * Try to place the inode is the same flex group as its
581 * parent. If we can't find space, use the Orlov algorithm to
582 * find another flex group, and store that information in the
583 * parent directory's inode information so that use that flex
584 * group for future allocations.
585 */
586 if (flex_size > 1) {
587 int retry = 0;
588
589 try_again:
590 parent_group &= ~(flex_size-1);
591 last = parent_group + flex_size;
592 if (last > ngroups)
593 last = ngroups;
594 for (i = parent_group; i < last; i++) {
595 desc = ext4_get_group_desc(sb, i, NULL);
596 if (desc && ext4_free_inodes_count(sb, desc)) {
597 *group = i;
598 return 0;
599 }
600 }
601 if (!retry && EXT4_I(parent)->i_last_alloc_group != ~0) {
602 retry = 1;
603 parent_group = EXT4_I(parent)->i_last_alloc_group;
604 goto try_again;
605 }
606 /*
607 * If this didn't work, use the Orlov search algorithm
608 * to find a new flex group; we pass in the mode to
609 * avoid the topdir algorithms.
610 */
611 *group = parent_group + flex_size;
612 if (*group > ngroups)
613 *group = 0;
Peter Huewe7dc57612011-02-21 21:01:42 -0500614 return find_group_orlov(sb, parent, group, mode, NULL);
Theodore Ts'oa4912122009-03-12 12:18:34 -0400615 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700616
617 /*
618 * Try to place the inode in its parent directory
619 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500620 *group = parent_group;
621 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500622 if (desc && ext4_free_inodes_count(sb, desc) &&
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400623 ext4_free_group_clusters(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500624 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700625
626 /*
627 * We're going to place this inode in a different blockgroup from its
628 * parent. We want to cause files in a common directory to all land in
629 * the same blockgroup. But we want files which are in a different
630 * directory which shares a blockgroup with our parent to land in a
631 * different blockgroup.
632 *
633 * So add our directory's i_ino into the starting point for the hash.
634 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500635 *group = (*group + parent->i_ino) % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700636
637 /*
638 * Use a quadratic hash to find a group with a free inode and some free
639 * blocks.
640 */
641 for (i = 1; i < ngroups; i <<= 1) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500642 *group += i;
643 if (*group >= ngroups)
644 *group -= ngroups;
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) &&
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400647 ext4_free_group_clusters(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500648 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700649 }
650
651 /*
652 * That failed: try linear search for a free inode, even if that group
653 * has no free blocks.
654 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500655 *group = parent_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700656 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500657 if (++*group >= ngroups)
658 *group = 0;
659 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500660 if (desc && ext4_free_inodes_count(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500661 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700662 }
663
664 return -1;
665}
666
667/*
Theodore Ts'o19883bd2013-08-16 22:06:55 -0400668 * In no journal mode, if an inode has recently been deleted, we want
669 * to avoid reusing it until we're reasonably sure the inode table
670 * block has been written back to disk. (Yes, these values are
671 * somewhat arbitrary...)
672 */
673#define RECENTCY_MIN 5
674#define RECENTCY_DIRTY 30
675
676static int recently_deleted(struct super_block *sb, ext4_group_t group, int ino)
677{
678 struct ext4_group_desc *gdp;
679 struct ext4_inode *raw_inode;
680 struct buffer_head *bh;
681 unsigned long dtime, now;
682 int inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
683 int offset, ret = 0, recentcy = RECENTCY_MIN;
684
685 gdp = ext4_get_group_desc(sb, group, NULL);
686 if (unlikely(!gdp))
687 return 0;
688
689 bh = sb_getblk(sb, ext4_inode_table(sb, gdp) +
690 (ino / inodes_per_block));
691 if (unlikely(!bh) || !buffer_uptodate(bh))
692 /*
693 * If the block is not in the buffer cache, then it
694 * must have been written out.
695 */
696 goto out;
697
698 offset = (ino % inodes_per_block) * EXT4_INODE_SIZE(sb);
699 raw_inode = (struct ext4_inode *) (bh->b_data + offset);
700 dtime = le32_to_cpu(raw_inode->i_dtime);
701 now = get_seconds();
702 if (buffer_dirty(bh))
703 recentcy += RECENTCY_DIRTY;
704
705 if (dtime && (dtime < now) && (now < dtime + recentcy))
706 ret = 1;
707out:
708 brelse(bh);
709 return ret;
710}
711
712/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700713 * There are two policies for allocating an inode. If the new inode is
714 * a directory, then a forward search is made for a block group with both
715 * free space and a low directory-to-inode ratio; if that fails, then of
716 * the groups with above-average free space, that group with the fewest
717 * directories already is chosen.
718 *
719 * For other inodes, search forward from the parent directory's block
720 * group to find a free inode.
721 */
Theodore Ts'o11395752013-02-09 16:27:09 -0500722struct inode *__ext4_new_inode(handle_t *handle, struct inode *dir,
723 umode_t mode, const struct qstr *qstr,
724 __u32 goal, uid_t *owner, int handle_type,
725 unsigned int line_no, int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700726{
727 struct super_block *sb;
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500728 struct buffer_head *inode_bitmap_bh = NULL;
729 struct buffer_head *group_desc_bh;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400730 ext4_group_t ngroups, group = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700731 unsigned long ino = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400732 struct inode *inode;
733 struct ext4_group_desc *gdp = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -0700734 struct ext4_inode_info *ei;
735 struct ext4_sb_info *sbi;
Jan Karaa7cdade2015-06-29 16:22:54 +0200736 int ret2, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700737 struct inode *ret;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500738 ext4_group_t i;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400739 ext4_group_t flex_group;
Darrick J. Wong87a39382013-08-28 18:32:58 -0400740 struct ext4_group_info *grp;
Theodore Ts'oe709e9d2015-05-31 13:35:02 -0400741 int encrypt = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700742
743 /* Cannot create files in a deleted directory */
744 if (!dir || !dir->i_nlink)
745 return ERR_PTR(-EPERM);
746
Theodore Ts'oe709e9d2015-05-31 13:35:02 -0400747 if ((ext4_encrypted_inode(dir) ||
748 DUMMY_ENCRYPTION_ENABLED(EXT4_SB(dir->i_sb))) &&
749 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
Jaegeuk Kima7550b32016-07-10 14:01:03 -0400750 err = fscrypt_get_encryption_info(dir);
Theodore Ts'oe709e9d2015-05-31 13:35:02 -0400751 if (err)
752 return ERR_PTR(err);
Jaegeuk Kima7550b32016-07-10 14:01:03 -0400753 if (!fscrypt_has_encryption_key(dir))
Eric Biggersd612bee2016-12-05 11:12:44 -0800754 return ERR_PTR(-ENOKEY);
Theodore Ts'oe709e9d2015-05-31 13:35:02 -0400755 if (!handle)
756 nblocks += EXT4_DATA_TRANS_BLOCKS(dir->i_sb);
757 encrypt = 1;
758 }
759
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700760 sb = dir->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400761 ngroups = ext4_get_groups_count(sb);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400762 trace_ext4_request_inode(dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700763 inode = new_inode(sb);
764 if (!inode)
765 return ERR_PTR(-ENOMEM);
Mingming Cao617ba132006-10-11 01:20:53 -0700766 ei = EXT4_I(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700767 sbi = EXT4_SB(sb);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400768
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400769 /*
Adam Buchbinderb8a074632016-03-09 23:49:05 -0500770 * Initialize owners and quota early so that we don't have to account
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400771 * for quota initialization worst case in standard inode creating
772 * transaction
773 */
774 if (owner) {
775 inode->i_mode = mode;
776 i_uid_write(inode, owner[0]);
777 i_gid_write(inode, owner[1]);
778 } else if (test_opt(sb, GRPID)) {
779 inode->i_mode = mode;
780 inode->i_uid = current_fsuid();
781 inode->i_gid = dir->i_gid;
782 } else
783 inode_init_owner(inode, dir, mode);
Li Xi040cb372016-01-08 16:01:21 -0500784
Kaho Ng0b7b7772016-09-05 23:11:58 -0400785 if (ext4_has_feature_project(sb) &&
Li Xi040cb372016-01-08 16:01:21 -0500786 ext4_test_inode_flag(dir, EXT4_INODE_PROJINHERIT))
787 ei->i_projid = EXT4_I(dir)->i_projid;
788 else
789 ei->i_projid = make_kprojid(&init_user_ns, EXT4_DEF_PROJID);
790
Jan Karaa7cdade2015-06-29 16:22:54 +0200791 err = dquot_initialize(inode);
792 if (err)
793 goto out;
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400794
Andreas Dilger11013912009-06-13 11:45:35 -0400795 if (!goal)
796 goal = sbi->s_inode_goal;
797
Johann Lombardie6462862009-07-05 23:45:11 -0400798 if (goal && goal <= le32_to_cpu(sbi->s_es->s_inodes_count)) {
Andreas Dilger11013912009-06-13 11:45:35 -0400799 group = (goal - 1) / EXT4_INODES_PER_GROUP(sb);
800 ino = (goal - 1) % EXT4_INODES_PER_GROUP(sb);
801 ret2 = 0;
802 goto got_group;
803 }
804
Lukas Czerner4113c4c2011-10-08 14:34:47 -0400805 if (S_ISDIR(mode))
806 ret2 = find_group_orlov(sb, dir, &group, mode, qstr);
807 else
Theodore Ts'oa4912122009-03-12 12:18:34 -0400808 ret2 = find_group_other(sb, dir, &group, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700809
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400810got_group:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400811 EXT4_I(dir)->i_last_alloc_group = group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700812 err = -ENOSPC;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500813 if (ret2 == -1)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700814 goto out;
815
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500816 /*
817 * Normally we will only go through one pass of this loop,
818 * unless we get unlucky and it turns out the group we selected
819 * had its last inode grabbed by someone else.
820 */
Andreas Dilger11013912009-06-13 11:45:35 -0400821 for (i = 0; i < ngroups; i++, ino = 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700822 err = -EIO;
823
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500824 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700825 if (!gdp)
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400826 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700827
Yongqiang Yangf2a09af2012-09-23 23:16:03 -0400828 /*
829 * Check free inodes count before loading bitmap.
830 */
831 if (ext4_free_inodes_count(sb, gdp) == 0) {
832 if (++group == ngroups)
833 group = 0;
834 continue;
835 }
836
Darrick J. Wong87a39382013-08-28 18:32:58 -0400837 grp = ext4_get_group_info(sb, group);
838 /* Skip groups with already-known suspicious inode tables */
839 if (EXT4_MB_GRP_IBITMAP_CORRUPT(grp)) {
840 if (++group == ngroups)
841 group = 0;
842 continue;
843 }
844
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500845 brelse(inode_bitmap_bh);
846 inode_bitmap_bh = ext4_read_inode_bitmap(sb, group);
Darrick J. Wong87a39382013-08-28 18:32:58 -0400847 /* Skip groups with suspicious inode tables */
Darrick J. Wong9008a582015-10-17 21:33:24 -0400848 if (EXT4_MB_GRP_IBITMAP_CORRUPT(grp) ||
849 IS_ERR(inode_bitmap_bh)) {
850 inode_bitmap_bh = NULL;
Darrick J. Wong87a39382013-08-28 18:32:58 -0400851 if (++group == ngroups)
852 group = 0;
853 continue;
854 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700855
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700856repeat_in_this_group:
Mingming Cao617ba132006-10-11 01:20:53 -0700857 ino = ext4_find_next_zero_bit((unsigned long *)
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500858 inode_bitmap_bh->b_data,
859 EXT4_INODES_PER_GROUP(sb), ino);
Theodore Ts'oa34eb502013-07-26 15:15:46 -0400860 if (ino >= EXT4_INODES_PER_GROUP(sb))
861 goto next_group;
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500862 if (group == 0 && (ino+1) < EXT4_FIRST_INO(sb)) {
863 ext4_error(sb, "reserved inode found cleared - "
864 "inode=%lu", ino + 1);
865 continue;
866 }
Theodore Ts'o19883bd2013-08-16 22:06:55 -0400867 if ((EXT4_SB(sb)->s_journal == NULL) &&
868 recently_deleted(sb, group, ino)) {
869 ino++;
870 goto next_inode;
871 }
Theodore Ts'o11395752013-02-09 16:27:09 -0500872 if (!handle) {
873 BUG_ON(nblocks <= 0);
874 handle = __ext4_journal_start_sb(dir->i_sb, line_no,
Jan Kara5fe2fe82013-06-04 12:37:50 -0400875 handle_type, nblocks,
876 0);
Theodore Ts'o11395752013-02-09 16:27:09 -0500877 if (IS_ERR(handle)) {
878 err = PTR_ERR(handle);
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400879 ext4_std_error(sb, err);
880 goto out;
Theodore Ts'o11395752013-02-09 16:27:09 -0500881 }
882 }
Eric Sandeenffb53872012-10-28 22:24:57 -0400883 BUFFER_TRACE(inode_bitmap_bh, "get_write_access");
884 err = ext4_journal_get_write_access(handle, inode_bitmap_bh);
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400885 if (err) {
886 ext4_std_error(sb, err);
887 goto out;
888 }
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500889 ext4_lock_group(sb, group);
890 ret2 = ext4_test_and_set_bit(ino, inode_bitmap_bh->b_data);
891 ext4_unlock_group(sb, group);
892 ino++; /* the inode bitmap is zero-based */
893 if (!ret2)
894 goto got; /* we grabbed the inode! */
Theodore Ts'o19883bd2013-08-16 22:06:55 -0400895next_inode:
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500896 if (ino < EXT4_INODES_PER_GROUP(sb))
897 goto repeat_in_this_group;
Theodore Ts'oa34eb502013-07-26 15:15:46 -0400898next_group:
899 if (++group == ngroups)
900 group = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700901 }
902 err = -ENOSPC;
903 goto out;
904
905got:
Eric Sandeenffb53872012-10-28 22:24:57 -0400906 BUFFER_TRACE(inode_bitmap_bh, "call ext4_handle_dirty_metadata");
907 err = ext4_handle_dirty_metadata(handle, NULL, inode_bitmap_bh);
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400908 if (err) {
909 ext4_std_error(sb, err);
910 goto out;
911 }
Eric Sandeenffb53872012-10-28 22:24:57 -0400912
Theodore Ts'o61c219f2014-07-05 16:28:35 -0400913 BUFFER_TRACE(group_desc_bh, "get_write_access");
914 err = ext4_journal_get_write_access(handle, group_desc_bh);
915 if (err) {
916 ext4_std_error(sb, err);
917 goto out;
918 }
919
Andreas Dilger717d50e2007-10-16 18:38:25 -0400920 /* We may have to initialize the block bitmap if it isn't already */
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -0400921 if (ext4_has_group_desc_csum(sb) &&
Andreas Dilger717d50e2007-10-16 18:38:25 -0400922 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500923 struct buffer_head *block_bitmap_bh;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400924
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500925 block_bitmap_bh = ext4_read_block_bitmap(sb, group);
Darrick J. Wong9008a582015-10-17 21:33:24 -0400926 if (IS_ERR(block_bitmap_bh)) {
927 err = PTR_ERR(block_bitmap_bh);
Jan Kara599a9b72014-10-30 10:53:16 -0400928 goto out;
929 }
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500930 BUFFER_TRACE(block_bitmap_bh, "get block bitmap access");
931 err = ext4_journal_get_write_access(handle, block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400932 if (err) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500933 brelse(block_bitmap_bh);
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400934 ext4_std_error(sb, err);
935 goto out;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400936 }
937
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400938 BUFFER_TRACE(block_bitmap_bh, "dirty block bitmap");
939 err = ext4_handle_dirty_metadata(handle, NULL, block_bitmap_bh);
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400940
Andreas Dilger717d50e2007-10-16 18:38:25 -0400941 /* recheck and clear flag under lock if we still need to */
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400942 ext4_lock_group(sb, group);
Theodore Ts'o5ae57322018-06-14 00:58:00 -0400943 if (ext4_has_group_desc_csum(sb) &&
944 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500945 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400946 ext4_free_group_clusters_set(sb, gdp,
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -0400947 ext4_free_clusters_after_init(sb, group, gdp));
Darrick J. Wongfa77dcf2012-04-29 18:35:10 -0400948 ext4_block_bitmap_csum_set(sb, group, gdp,
Tao Ma79f1ba42012-10-22 00:34:32 -0400949 block_bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -0400950 ext4_group_desc_csum_set(sb, group, gdp);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400951 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400952 ext4_unlock_group(sb, group);
Theodore Ts'oaeb1e5d62012-11-29 21:21:22 -0500953 brelse(block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400954
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400955 if (err) {
956 ext4_std_error(sb, err);
957 goto out;
958 }
Andreas Dilger717d50e2007-10-16 18:38:25 -0400959 }
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500960
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500961 /* Update the relevant bg descriptor fields */
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400962 if (ext4_has_group_desc_csum(sb)) {
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500963 int free;
964 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
965
966 down_read(&grp->alloc_sem); /* protect vs itable lazyinit */
967 ext4_lock_group(sb, group); /* while we modify the bg desc */
968 free = EXT4_INODES_PER_GROUP(sb) -
969 ext4_itable_unused_count(sb, gdp);
970 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
971 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT);
972 free = 0;
973 }
974 /*
975 * Check the relative inode number against the last used
976 * relative inode number in this group. if it is greater
977 * we need to update the bg_itable_unused count
978 */
979 if (ino > free)
980 ext4_itable_unused_set(sb, gdp,
981 (EXT4_INODES_PER_GROUP(sb) - ino));
982 up_read(&grp->alloc_sem);
Tao Ma6f2e9f02012-05-28 18:20:59 -0400983 } else {
984 ext4_lock_group(sb, group);
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500985 }
Tao Ma6f2e9f02012-05-28 18:20:59 -0400986
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500987 ext4_free_inodes_set(sb, gdp, ext4_free_inodes_count(sb, gdp) - 1);
988 if (S_ISDIR(mode)) {
989 ext4_used_dirs_set(sb, gdp, ext4_used_dirs_count(sb, gdp) + 1);
990 if (sbi->s_log_groups_per_flex) {
991 ext4_group_t f = ext4_flex_group(sbi, group);
992
Suraj Jitindar Singh277bc962020-02-28 16:51:19 -0800993 atomic_inc(&sbi_array_rcu_deref(sbi, s_flex_groups,
994 f)->used_dirs);
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500995 }
996 }
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400997 if (ext4_has_group_desc_csum(sb)) {
998 ext4_inode_bitmap_csum_set(sb, group, gdp, inode_bitmap_bh,
999 EXT4_INODES_PER_GROUP(sb) / 8);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04001000 ext4_group_desc_csum_set(sb, group, gdp);
Theodore Ts'o119c0d42012-02-06 20:12:03 -05001001 }
Tao Ma6f2e9f02012-05-28 18:20:59 -04001002 ext4_unlock_group(sb, group);
Theodore Ts'o119c0d42012-02-06 20:12:03 -05001003
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -05001004 BUFFER_TRACE(group_desc_bh, "call ext4_handle_dirty_metadata");
1005 err = ext4_handle_dirty_metadata(handle, NULL, group_desc_bh);
Jan Karaeb9cc7e2013-04-19 13:38:14 -04001006 if (err) {
1007 ext4_std_error(sb, err);
1008 goto out;
1009 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001010
1011 percpu_counter_dec(&sbi->s_freeinodes_counter);
1012 if (S_ISDIR(mode))
1013 percpu_counter_inc(&sbi->s_dirs_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001014
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001015 if (sbi->s_log_groups_per_flex) {
1016 flex_group = ext4_flex_group(sbi, group);
Suraj Jitindar Singh277bc962020-02-28 16:51:19 -08001017 atomic_dec(&sbi_array_rcu_deref(sbi, s_flex_groups,
1018 flex_group)->free_inodes);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001019 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001020
Andreas Dilger717d50e2007-10-16 18:38:25 -04001021 inode->i_ino = ino + group * EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001022 /* This is the optimal IO size (for stat), not the fs block size */
1023 inode->i_blocks = 0;
Kalpak Shahef7f3832007-07-18 09:15:20 -04001024 inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
1025 ext4_current_time(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001026
1027 memset(ei->i_data, 0, sizeof(ei->i_data));
1028 ei->i_dir_start_lookup = 0;
1029 ei->i_disksize = 0;
1030
Eryu Guan4af83502011-10-31 18:21:29 -04001031 /* Don't inherit extent flag from directory, amongst others. */
Duane Griffin2dc6b0d2009-02-15 18:09:20 -05001032 ei->i_flags =
1033 ext4_mask_flags(mode, EXT4_I(dir)->i_flags & EXT4_FL_INHERITED);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001034 ei->i_file_acl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001035 ei->i_dtime = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001036 ei->i_block_group = group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04001037 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001038
Mingming Cao617ba132006-10-11 01:20:53 -07001039 ext4_set_inode_flags(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001040 if (IS_DIRSYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05001041 ext4_handle_sync(handle);
Al Viro6b38e842008-12-30 02:03:31 -05001042 if (insert_inode_locked(inode) < 0) {
Jan Karaacd6ad82011-12-18 17:37:02 -05001043 /*
1044 * Likely a bitmap corruption causing inode to be allocated
1045 * twice.
1046 */
1047 err = -EIO;
Jan Karaeb9cc7e2013-04-19 13:38:14 -04001048 ext4_error(sb, "failed to insert inode %lu: doubly allocated?",
1049 inode->i_ino);
1050 goto out;
Al Viro6b38e842008-12-30 02:03:31 -05001051 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001052 spin_lock(&sbi->s_next_gen_lock);
1053 inode->i_generation = sbi->s_next_generation++;
1054 spin_unlock(&sbi->s_next_gen_lock);
1055
Darrick J. Wong814525f2012-04-29 18:31:10 -04001056 /* Precompute checksum seed for inode metadata */
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001057 if (ext4_has_metadata_csum(sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -04001058 __u32 csum;
Darrick J. Wong814525f2012-04-29 18:31:10 -04001059 __le32 inum = cpu_to_le32(inode->i_ino);
1060 __le32 gen = cpu_to_le32(inode->i_generation);
1061 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
1062 sizeof(inum));
1063 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
1064 sizeof(gen));
1065 }
1066
Theodore Ts'o353eb832011-01-10 12:18:25 -05001067 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001068 ext4_set_inode_state(inode, EXT4_STATE_NEW);
Kalpak Shahef7f3832007-07-18 09:15:20 -04001069
1070 ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;
Tao Maf08225d2012-12-10 14:06:03 -05001071 ei->i_inline_off = 0;
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04001072 if (ext4_has_feature_inline_data(sb))
Tao Maf08225d2012-12-10 14:06:03 -05001073 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001074 ret = inode;
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001075 err = dquot_alloc_inode(inode);
1076 if (err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001077 goto fail_drop;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001078
Mingming Cao617ba132006-10-11 01:20:53 -07001079 err = ext4_init_acl(handle, inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001080 if (err)
1081 goto fail_free_drop;
1082
Eric Paris2a7dba32011-02-01 11:05:39 -05001083 err = ext4_init_security(handle, inode, dir, qstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001084 if (err)
1085 goto fail_free_drop;
1086
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04001087 if (ext4_has_feature_extents(sb)) {
Eric Sandeene4079a12008-07-11 19:27:31 -04001088 /* set extent flag only for directory, file and normal symlink*/
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -04001089 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) {
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001090 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001091 ext4_ext_tree_init(handle, inode);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001092 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001093 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001094
Theodore Ts'o688f8692011-03-16 17:16:31 -04001095 if (ext4_handle_valid(handle)) {
1096 ei->i_sync_tid = handle->h_transaction->t_tid;
1097 ei->i_datasync_tid = handle->h_transaction->t_tid;
1098 }
1099
Theodore Ts'oe709e9d2015-05-31 13:35:02 -04001100 if (encrypt) {
Jaegeuk Kima7550b32016-07-10 14:01:03 -04001101 /* give pointer to avoid set_context with journal ops. */
1102 err = fscrypt_inherit_context(dir, inode, &encrypt, true);
Theodore Ts'oe709e9d2015-05-31 13:35:02 -04001103 if (err)
1104 goto fail_free_drop;
1105 }
1106
Aneesh Kumar K.V8753e882008-04-29 22:00:36 -04001107 err = ext4_mark_inode_dirty(handle, inode);
1108 if (err) {
1109 ext4_std_error(sb, err);
1110 goto fail_free_drop;
1111 }
1112
Mingming Cao617ba132006-10-11 01:20:53 -07001113 ext4_debug("allocating inode %lu\n", inode->i_ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001114 trace_ext4_allocate_inode(inode, dir, mode);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -05001115 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001116 return ret;
1117
1118fail_free_drop:
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001119 dquot_free_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001120fail_drop:
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02001121 clear_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05001122 unlock_new_inode(inode);
Jan Karaeb9cc7e2013-04-19 13:38:14 -04001123out:
1124 dquot_drop(inode);
1125 inode->i_flags |= S_NOQUOTA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001126 iput(inode);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -05001127 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001128 return ERR_PTR(err);
1129}
1130
1131/* Verify that we are loading a valid orphan from disk */
Mingming Cao617ba132006-10-11 01:20:53 -07001132struct inode *ext4_orphan_get(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001133{
Mingming Cao617ba132006-10-11 01:20:53 -07001134 unsigned long max_ino = le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001135 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001136 int bit;
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001137 struct buffer_head *bitmap_bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001138 struct inode *inode = NULL;
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001139 int err = -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001140
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001141 if (ino < EXT4_FIRST_INO(sb) || ino > max_ino)
1142 goto bad_orphan;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001143
Mingming Cao617ba132006-10-11 01:20:53 -07001144 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
1145 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -04001146 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04001147 if (IS_ERR(bitmap_bh)) {
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001148 ext4_error(sb, "inode bitmap error %ld for orphan %lu",
1149 ino, PTR_ERR(bitmap_bh));
1150 return (struct inode *) bitmap_bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001151 }
1152
1153 /* Having the inode bit set should be a 100% indicator that this
1154 * is a valid orphan (no e2fsck run on fs). Orphans also include
1155 * inodes that were being truncated, so we can't check i_nlink==0.
1156 */
David Howells1d1fe1e2008-02-07 00:15:37 -08001157 if (!ext4_test_bit(bit, bitmap_bh->b_data))
1158 goto bad_orphan;
1159
Theodore Ts'o553f7c02018-12-19 12:29:13 -05001160 inode = ext4_iget(sb, ino, EXT4_IGET_NORMAL);
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001161 if (IS_ERR(inode)) {
1162 err = PTR_ERR(inode);
1163 ext4_error(sb, "couldn't read orphan inode %lu (err %d)",
1164 ino, err);
1165 return inode;
1166 }
David Howells1d1fe1e2008-02-07 00:15:37 -08001167
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001168 /*
Theodore Ts'oc9eb13a2016-04-30 00:48:54 -04001169 * If the orphans has i_nlinks > 0 then it should be able to
1170 * be truncated, otherwise it won't be removed from the orphan
1171 * list during processing and an infinite loop will result.
1172 * Similarly, it must not be a bad inode.
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001173 */
Theodore Ts'oc9eb13a2016-04-30 00:48:54 -04001174 if ((inode->i_nlink && !ext4_can_truncate(inode)) ||
1175 is_bad_inode(inode))
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001176 goto bad_orphan;
1177
David Howells1d1fe1e2008-02-07 00:15:37 -08001178 if (NEXT_ORPHAN(inode) > max_ino)
1179 goto bad_orphan;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001180 brelse(bitmap_bh);
1181 return inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08001182
David Howells1d1fe1e2008-02-07 00:15:37 -08001183bad_orphan:
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001184 ext4_error(sb, "bad orphan inode %lu", ino);
1185 if (bitmap_bh)
1186 printk(KERN_ERR "ext4_test_bit(bit=%d, block=%llu) = %d\n",
1187 bit, (unsigned long long)bitmap_bh->b_blocknr,
1188 ext4_test_bit(bit, bitmap_bh->b_data));
David Howells1d1fe1e2008-02-07 00:15:37 -08001189 if (inode) {
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001190 printk(KERN_ERR "is_bad_inode(inode)=%d\n",
David Howells1d1fe1e2008-02-07 00:15:37 -08001191 is_bad_inode(inode));
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001192 printk(KERN_ERR "NEXT_ORPHAN(inode)=%u\n",
David Howells1d1fe1e2008-02-07 00:15:37 -08001193 NEXT_ORPHAN(inode));
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001194 printk(KERN_ERR "max_ino=%lu\n", max_ino);
1195 printk(KERN_ERR "i_nlink=%u\n", inode->i_nlink);
David Howells1d1fe1e2008-02-07 00:15:37 -08001196 /* Avoid freeing blocks if we got a bad deleted inode */
1197 if (inode->i_nlink == 0)
1198 inode->i_blocks = 0;
1199 iput(inode);
1200 }
1201 brelse(bitmap_bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08001202 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001203}
1204
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001205unsigned long ext4_count_free_inodes(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001206{
1207 unsigned long desc_count;
Mingming Cao617ba132006-10-11 01:20:53 -07001208 struct ext4_group_desc *gdp;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001209 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07001210#ifdef EXT4FS_DEBUG
1211 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001212 unsigned long bitmap_count, x;
1213 struct buffer_head *bitmap_bh = NULL;
1214
Mingming Cao617ba132006-10-11 01:20:53 -07001215 es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001216 desc_count = 0;
1217 bitmap_count = 0;
1218 gdp = NULL;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001219 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001220 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001221 if (!gdp)
1222 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001223 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001224 brelse(bitmap_bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -04001225 bitmap_bh = ext4_read_inode_bitmap(sb, i);
Darrick J. Wong9008a582015-10-17 21:33:24 -04001226 if (IS_ERR(bitmap_bh)) {
1227 bitmap_bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001228 continue;
Darrick J. Wong9008a582015-10-17 21:33:24 -04001229 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001230
Theodore Ts'of6fb99c2012-06-30 19:14:57 -04001231 x = ext4_count_free(bitmap_bh->b_data,
1232 EXT4_INODES_PER_GROUP(sb) / 8);
Eric Sandeenc549a952008-01-28 23:58:27 -05001233 printk(KERN_DEBUG "group %lu: stored = %d, counted = %lu\n",
Peng Tao785b4b32009-07-27 21:44:40 -04001234 (unsigned long) i, ext4_free_inodes_count(sb, gdp), x);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001235 bitmap_count += x;
1236 }
1237 brelse(bitmap_bh);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001238 printk(KERN_DEBUG "ext4_count_free_inodes: "
1239 "stored = %u, computed = %lu, %lu\n",
1240 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001241 return desc_count;
1242#else
1243 desc_count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001244 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001245 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001246 if (!gdp)
1247 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001248 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001249 cond_resched();
1250 }
1251 return desc_count;
1252#endif
1253}
1254
1255/* Called at mount-time, super-block is locked */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001256unsigned long ext4_count_dirs(struct super_block * sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001257{
1258 unsigned long count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001259 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001260
Theodore Ts'o8df96752009-05-01 08:50:38 -04001261 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001262 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001263 if (!gdp)
1264 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001265 count += ext4_used_dirs_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001266 }
1267 return count;
1268}
Lukas Czernerbfff6872010-10-27 21:30:05 -04001269
1270/*
1271 * Zeroes not yet zeroed inode table - just write zeroes through the whole
1272 * inode table. Must be called without any spinlock held. The only place
1273 * where it is called from on active part of filesystem is ext4lazyinit
1274 * thread, so we do not need any special locks, however we have to prevent
1275 * inode allocation from the current group, so we take alloc_sem lock, to
Theodore Ts'o119c0d42012-02-06 20:12:03 -05001276 * block ext4_new_inode() until we are finished.
Lukas Czernerbfff6872010-10-27 21:30:05 -04001277 */
H Hartley Sweetene0cbee32011-10-18 10:57:51 -04001278int ext4_init_inode_table(struct super_block *sb, ext4_group_t group,
Lukas Czernerbfff6872010-10-27 21:30:05 -04001279 int barrier)
1280{
1281 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
1282 struct ext4_sb_info *sbi = EXT4_SB(sb);
1283 struct ext4_group_desc *gdp = NULL;
1284 struct buffer_head *group_desc_bh;
1285 handle_t *handle;
1286 ext4_fsblk_t blk;
1287 int num, ret = 0, used_blks = 0;
Zhang Yid2e121b2021-03-31 20:15:16 +08001288 unsigned long used_inos = 0;
Lukas Czernerbfff6872010-10-27 21:30:05 -04001289
1290 /* This should not happen, but just to be sure check this */
1291 if (sb->s_flags & MS_RDONLY) {
1292 ret = 1;
1293 goto out;
1294 }
1295
1296 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
1297 if (!gdp)
1298 goto out;
1299
1300 /*
1301 * We do not need to lock this, because we are the only one
1302 * handling this flag.
1303 */
1304 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED))
1305 goto out;
1306
Theodore Ts'o9924a922013-02-08 21:59:22 -05001307 handle = ext4_journal_start_sb(sb, EXT4_HT_MISC, 1);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001308 if (IS_ERR(handle)) {
1309 ret = PTR_ERR(handle);
1310 goto out;
1311 }
1312
1313 down_write(&grp->alloc_sem);
1314 /*
1315 * If inode bitmap was already initialized there may be some
1316 * used inodes so we need to skip blocks with used inodes in
1317 * inode table.
1318 */
Zhang Yid2e121b2021-03-31 20:15:16 +08001319 if (!(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT))) {
1320 used_inos = EXT4_INODES_PER_GROUP(sb) -
1321 ext4_itable_unused_count(sb, gdp);
1322 used_blks = DIV_ROUND_UP(used_inos, sbi->s_inodes_per_block);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001323
Zhang Yid2e121b2021-03-31 20:15:16 +08001324 /* Bogus inode unused count? */
1325 if (used_blks < 0 || used_blks > sbi->s_itb_per_group) {
1326 ext4_error(sb, "Something is wrong with group %u: "
1327 "used itable blocks: %d; "
1328 "itable unused count: %u",
1329 group, used_blks,
1330 ext4_itable_unused_count(sb, gdp));
1331 ret = 1;
1332 goto err_out;
1333 }
1334
1335 used_inos += group * EXT4_INODES_PER_GROUP(sb);
1336 /*
1337 * Are there some uninitialized inodes in the inode table
1338 * before the first normal inode?
1339 */
1340 if ((used_blks != sbi->s_itb_per_group) &&
1341 (used_inos < EXT4_FIRST_INO(sb))) {
1342 ext4_error(sb, "Something is wrong with group %u: "
1343 "itable unused count: %u; "
1344 "itables initialized count: %ld",
1345 group, ext4_itable_unused_count(sb, gdp),
1346 used_inos);
1347 ret = 1;
1348 goto err_out;
1349 }
Lukas Czerner857ac882010-10-27 21:30:05 -04001350 }
1351
Lukas Czernerbfff6872010-10-27 21:30:05 -04001352 blk = ext4_inode_table(sb, gdp) + used_blks;
1353 num = sbi->s_itb_per_group - used_blks;
1354
1355 BUFFER_TRACE(group_desc_bh, "get_write_access");
1356 ret = ext4_journal_get_write_access(handle,
1357 group_desc_bh);
1358 if (ret)
1359 goto err_out;
1360
Lukas Czernerbfff6872010-10-27 21:30:05 -04001361 /*
1362 * Skip zeroout if the inode table is full. But we set the ZEROED
1363 * flag anyway, because obviously, when it is full it does not need
1364 * further zeroing.
1365 */
1366 if (unlikely(num == 0))
1367 goto skip_zeroout;
1368
1369 ext4_debug("going to zero out inode table in group %d\n",
1370 group);
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001371 ret = sb_issue_zeroout(sb, blk, num, GFP_NOFS);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001372 if (ret < 0)
1373 goto err_out;
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001374 if (barrier)
1375 blkdev_issue_flush(sb->s_bdev, GFP_NOFS, NULL);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001376
1377skip_zeroout:
1378 ext4_lock_group(sb, group);
1379 gdp->bg_flags |= cpu_to_le16(EXT4_BG_INODE_ZEROED);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04001380 ext4_group_desc_csum_set(sb, group, gdp);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001381 ext4_unlock_group(sb, group);
1382
1383 BUFFER_TRACE(group_desc_bh,
1384 "call ext4_handle_dirty_metadata");
1385 ret = ext4_handle_dirty_metadata(handle, NULL,
1386 group_desc_bh);
1387
1388err_out:
1389 up_write(&grp->alloc_sem);
1390 ext4_journal_stop(handle);
1391out:
1392 return ret;
1393}