blob: 358ad1f5704f6e1d840fb69433b75eb7894ca91f [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 *
408 * If there are blockgroups with both free inodes and free blocks counts
409 * 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
417 * it has too few free blocks left (min_blocks) 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;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400433 ext4_fsblk_t freeb, 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;
Theodore Ts'o57042652011-09-09 18:56:51 -0400452 freeb = EXT4_C2B(sbi,
453 percpu_counter_read_positive(&sbi->s_freeclusters_counter));
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400454 avefreec = freeb;
455 do_div(avefreec, ngroups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700456 ndirs = percpu_counter_read_positive(&sbi->s_dirs_counter);
457
Theodore Ts'oa4912122009-03-12 12:18:34 -0400458 if (S_ISDIR(mode) &&
David Howells2b0143b2015-03-17 22:25:59 +0000459 ((parent == d_inode(sb->s_root)) ||
Dmitry Monakhov12e9b892010-05-16 22:00:00 -0400460 (ext4_test_inode_flag(parent, EXT4_INODE_TOPDIR)))) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700461 int best_ndir = inodes_per_group;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500462 int ret = -1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700463
Theodore Ts'of157a4a2009-06-13 11:09:42 -0400464 if (qstr) {
465 hinfo.hash_version = DX_HASH_HALF_MD4;
466 hinfo.seed = sbi->s_hash_seed;
467 ext4fs_dirhash(qstr->name, qstr->len, &hinfo);
468 grp = hinfo.hash;
469 } else
Theodore Ts'odd1f7232013-11-08 00:14:53 -0500470 grp = prandom_u32();
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500471 parent_group = (unsigned)grp % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700472 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400473 g = (parent_group + i) % ngroups;
474 get_orlov_stats(sb, g, flex_size, &stats);
475 if (!stats.free_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700476 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400477 if (stats.used_dirs >= best_ndir)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700478 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400479 if (stats.free_inodes < avefreei)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700480 continue;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400481 if (stats.free_clusters < avefreec)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700482 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400483 grp = g;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500484 ret = 0;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400485 best_ndir = stats.used_dirs;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700486 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400487 if (ret)
488 goto fallback;
489 found_flex_bg:
490 if (flex_size == 1) {
491 *group = grp;
492 return 0;
493 }
494
495 /*
496 * We pack inodes at the beginning of the flexgroup's
497 * inode tables. Block allocation decisions will do
498 * something similar, although regular files will
499 * start at 2nd block group of the flexgroup. See
500 * ext4_ext_find_goal() and ext4_find_near().
501 */
502 grp *= flex_size;
503 for (i = 0; i < flex_size; i++) {
Theodore Ts'o8df96752009-05-01 08:50:38 -0400504 if (grp+i >= real_ngroups)
Theodore Ts'oa4912122009-03-12 12:18:34 -0400505 break;
506 desc = ext4_get_group_desc(sb, grp+i, NULL);
507 if (desc && ext4_free_inodes_count(sb, desc)) {
508 *group = grp+i;
509 return 0;
510 }
511 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700512 goto fallback;
513 }
514
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700515 max_dirs = ndirs / ngroups + inodes_per_group / 16;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400516 min_inodes = avefreei - inodes_per_group*flex_size / 4;
517 if (min_inodes < 1)
518 min_inodes = 1;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400519 min_clusters = avefreec - EXT4_CLUSTERS_PER_GROUP(sb)*flex_size / 4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700520
Theodore Ts'oa4912122009-03-12 12:18:34 -0400521 /*
522 * Start looking in the flex group where we last allocated an
523 * inode for this parent directory
524 */
525 if (EXT4_I(parent)->i_last_alloc_group != ~0) {
526 parent_group = EXT4_I(parent)->i_last_alloc_group;
527 if (flex_size > 1)
528 parent_group >>= sbi->s_log_groups_per_flex;
529 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700530
531 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400532 grp = (parent_group + i) % ngroups;
533 get_orlov_stats(sb, grp, flex_size, &stats);
534 if (stats.used_dirs >= max_dirs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700535 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400536 if (stats.free_inodes < min_inodes)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700537 continue;
Theodore Ts'o24aaa8e2011-09-09 18:58:51 -0400538 if (stats.free_clusters < min_clusters)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700539 continue;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400540 goto found_flex_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700541 }
542
543fallback:
Theodore Ts'o8df96752009-05-01 08:50:38 -0400544 ngroups = real_ngroups;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400545 avefreei = freei / ngroups;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400546fallback_retry:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400547 parent_group = EXT4_I(parent)->i_block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700548 for (i = 0; i < ngroups; i++) {
Theodore Ts'oa4912122009-03-12 12:18:34 -0400549 grp = (parent_group + i) % ngroups;
550 desc = ext4_get_group_desc(sb, grp, NULL);
Dan Carpenterbb3d1322012-05-28 14:16:57 -0400551 if (desc) {
552 grp_free = ext4_free_inodes_count(sb, desc);
553 if (grp_free && grp_free >= avefreei) {
554 *group = grp;
555 return 0;
556 }
Theodore Ts'oa4912122009-03-12 12:18:34 -0400557 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700558 }
559
560 if (avefreei) {
561 /*
562 * The free-inodes counter is approximate, and for really small
563 * filesystems the above test can fail to find any blockgroups
564 */
565 avefreei = 0;
Theodore Ts'ob5451f72009-04-22 21:00:36 -0400566 goto fallback_retry;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700567 }
568
569 return -1;
570}
571
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500572static int find_group_other(struct super_block *sb, struct inode *parent,
Al Virodcca3fe2011-07-26 02:48:06 -0400573 ext4_group_t *group, umode_t mode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700574{
Avantika Mathurfd2d4292008-01-28 23:58:27 -0500575 ext4_group_t parent_group = EXT4_I(parent)->i_block_group;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400576 ext4_group_t i, last, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700577 struct ext4_group_desc *desc;
Theodore Ts'oa4912122009-03-12 12:18:34 -0400578 int flex_size = ext4_flex_bg_size(EXT4_SB(sb));
579
580 /*
581 * Try to place the inode is the same flex group as its
582 * parent. If we can't find space, use the Orlov algorithm to
583 * find another flex group, and store that information in the
584 * parent directory's inode information so that use that flex
585 * group for future allocations.
586 */
587 if (flex_size > 1) {
588 int retry = 0;
589
590 try_again:
591 parent_group &= ~(flex_size-1);
592 last = parent_group + flex_size;
593 if (last > ngroups)
594 last = ngroups;
595 for (i = parent_group; i < last; i++) {
596 desc = ext4_get_group_desc(sb, i, NULL);
597 if (desc && ext4_free_inodes_count(sb, desc)) {
598 *group = i;
599 return 0;
600 }
601 }
602 if (!retry && EXT4_I(parent)->i_last_alloc_group != ~0) {
603 retry = 1;
604 parent_group = EXT4_I(parent)->i_last_alloc_group;
605 goto try_again;
606 }
607 /*
608 * If this didn't work, use the Orlov search algorithm
609 * to find a new flex group; we pass in the mode to
610 * avoid the topdir algorithms.
611 */
612 *group = parent_group + flex_size;
613 if (*group > ngroups)
614 *group = 0;
Peter Huewe7dc57612011-02-21 21:01:42 -0500615 return find_group_orlov(sb, parent, group, mode, NULL);
Theodore Ts'oa4912122009-03-12 12:18:34 -0400616 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700617
618 /*
619 * Try to place the inode in its parent directory
620 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500621 *group = parent_group;
622 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500623 if (desc && ext4_free_inodes_count(sb, desc) &&
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400624 ext4_free_group_clusters(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500625 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700626
627 /*
628 * We're going to place this inode in a different blockgroup from its
629 * parent. We want to cause files in a common directory to all land in
630 * the same blockgroup. But we want files which are in a different
631 * directory which shares a blockgroup with our parent to land in a
632 * different blockgroup.
633 *
634 * So add our directory's i_ino into the starting point for the hash.
635 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500636 *group = (*group + parent->i_ino) % ngroups;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700637
638 /*
639 * Use a quadratic hash to find a group with a free inode and some free
640 * blocks.
641 */
642 for (i = 1; i < ngroups; i <<= 1) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500643 *group += i;
644 if (*group >= ngroups)
645 *group -= ngroups;
646 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500647 if (desc && ext4_free_inodes_count(sb, desc) &&
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400648 ext4_free_group_clusters(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500649 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700650 }
651
652 /*
653 * That failed: try linear search for a free inode, even if that group
654 * has no free blocks.
655 */
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500656 *group = parent_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700657 for (i = 0; i < ngroups; i++) {
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500658 if (++*group >= ngroups)
659 *group = 0;
660 desc = ext4_get_group_desc(sb, *group, NULL);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500661 if (desc && ext4_free_inodes_count(sb, desc))
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500662 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700663 }
664
665 return -1;
666}
667
668/*
Theodore Ts'o19883bd2013-08-16 22:06:55 -0400669 * In no journal mode, if an inode has recently been deleted, we want
670 * to avoid reusing it until we're reasonably sure the inode table
671 * block has been written back to disk. (Yes, these values are
672 * somewhat arbitrary...)
673 */
674#define RECENTCY_MIN 5
675#define RECENTCY_DIRTY 30
676
677static int recently_deleted(struct super_block *sb, ext4_group_t group, int ino)
678{
679 struct ext4_group_desc *gdp;
680 struct ext4_inode *raw_inode;
681 struct buffer_head *bh;
682 unsigned long dtime, now;
683 int inodes_per_block = EXT4_SB(sb)->s_inodes_per_block;
684 int offset, ret = 0, recentcy = RECENTCY_MIN;
685
686 gdp = ext4_get_group_desc(sb, group, NULL);
687 if (unlikely(!gdp))
688 return 0;
689
690 bh = sb_getblk(sb, ext4_inode_table(sb, gdp) +
691 (ino / inodes_per_block));
692 if (unlikely(!bh) || !buffer_uptodate(bh))
693 /*
694 * If the block is not in the buffer cache, then it
695 * must have been written out.
696 */
697 goto out;
698
699 offset = (ino % inodes_per_block) * EXT4_INODE_SIZE(sb);
700 raw_inode = (struct ext4_inode *) (bh->b_data + offset);
701 dtime = le32_to_cpu(raw_inode->i_dtime);
702 now = get_seconds();
703 if (buffer_dirty(bh))
704 recentcy += RECENTCY_DIRTY;
705
706 if (dtime && (dtime < now) && (now < dtime + recentcy))
707 ret = 1;
708out:
709 brelse(bh);
710 return ret;
711}
712
713/*
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700714 * There are two policies for allocating an inode. If the new inode is
715 * a directory, then a forward search is made for a block group with both
716 * free space and a low directory-to-inode ratio; if that fails, then of
717 * the groups with above-average free space, that group with the fewest
718 * directories already is chosen.
719 *
720 * For other inodes, search forward from the parent directory's block
721 * group to find a free inode.
722 */
Theodore Ts'o11395752013-02-09 16:27:09 -0500723struct inode *__ext4_new_inode(handle_t *handle, struct inode *dir,
724 umode_t mode, const struct qstr *qstr,
725 __u32 goal, uid_t *owner, int handle_type,
726 unsigned int line_no, int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700727{
728 struct super_block *sb;
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500729 struct buffer_head *inode_bitmap_bh = NULL;
730 struct buffer_head *group_desc_bh;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400731 ext4_group_t ngroups, group = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700732 unsigned long ino = 0;
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400733 struct inode *inode;
734 struct ext4_group_desc *gdp = NULL;
Mingming Cao617ba132006-10-11 01:20:53 -0700735 struct ext4_inode_info *ei;
736 struct ext4_sb_info *sbi;
Jan Karaa7cdade2015-06-29 16:22:54 +0200737 int ret2, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700738 struct inode *ret;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500739 ext4_group_t i;
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400740 ext4_group_t flex_group;
Darrick J. Wong87a39382013-08-28 18:32:58 -0400741 struct ext4_group_info *grp;
Theodore Ts'oe709e9d2015-05-31 13:35:02 -0400742 int encrypt = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700743
744 /* Cannot create files in a deleted directory */
745 if (!dir || !dir->i_nlink)
746 return ERR_PTR(-EPERM);
747
Chandan Rajendrae68f6b82018-12-12 15:20:10 +0530748 if ((IS_ENCRYPTED(dir) ||
Theodore Ts'oe709e9d2015-05-31 13:35:02 -0400749 DUMMY_ENCRYPTION_ENABLED(EXT4_SB(dir->i_sb))) &&
Chandan Rajendrae68f6b82018-12-12 15:20:10 +0530750 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
Jaegeuk Kima7550b32016-07-10 14:01:03 -0400751 err = fscrypt_get_encryption_info(dir);
Theodore Ts'oe709e9d2015-05-31 13:35:02 -0400752 if (err)
753 return ERR_PTR(err);
Jaegeuk Kima7550b32016-07-10 14:01:03 -0400754 if (!fscrypt_has_encryption_key(dir))
Hyojun Kim63da4202017-10-06 17:10:08 -0700755 return ERR_PTR(-ENOKEY);
Theodore Ts'oe709e9d2015-05-31 13:35:02 -0400756 if (!handle)
757 nblocks += EXT4_DATA_TRANS_BLOCKS(dir->i_sb);
758 encrypt = 1;
759 }
760
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700761 sb = dir->i_sb;
Theodore Ts'o8df96752009-05-01 08:50:38 -0400762 ngroups = ext4_get_groups_count(sb);
Theodore Ts'o9bffad12009-06-17 11:48:11 -0400763 trace_ext4_request_inode(dir, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700764 inode = new_inode(sb);
765 if (!inode)
766 return ERR_PTR(-ENOMEM);
Mingming Cao617ba132006-10-11 01:20:53 -0700767 ei = EXT4_I(inode);
Mingming Cao617ba132006-10-11 01:20:53 -0700768 sbi = EXT4_SB(sb);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400769
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400770 /*
Adam Buchbinderb8a074632016-03-09 23:49:05 -0500771 * Initialize owners and quota early so that we don't have to account
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400772 * for quota initialization worst case in standard inode creating
773 * transaction
774 */
775 if (owner) {
776 inode->i_mode = mode;
777 i_uid_write(inode, owner[0]);
778 i_gid_write(inode, owner[1]);
779 } else if (test_opt(sb, GRPID)) {
780 inode->i_mode = mode;
781 inode->i_uid = current_fsuid();
782 inode->i_gid = dir->i_gid;
783 } else
784 inode_init_owner(inode, dir, mode);
Li Xi040cb372016-01-08 16:01:21 -0500785
Kaho Ng0b7b7772016-09-05 23:11:58 -0400786 if (ext4_has_feature_project(sb) &&
Li Xi040cb372016-01-08 16:01:21 -0500787 ext4_test_inode_flag(dir, EXT4_INODE_PROJINHERIT))
788 ei->i_projid = EXT4_I(dir)->i_projid;
789 else
790 ei->i_projid = make_kprojid(&init_user_ns, EXT4_DEF_PROJID);
791
Jan Karaa7cdade2015-06-29 16:22:54 +0200792 err = dquot_initialize(inode);
793 if (err)
794 goto out;
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400795
Andreas Dilger11013912009-06-13 11:45:35 -0400796 if (!goal)
797 goal = sbi->s_inode_goal;
798
Johann Lombardie6462862009-07-05 23:45:11 -0400799 if (goal && goal <= le32_to_cpu(sbi->s_es->s_inodes_count)) {
Andreas Dilger11013912009-06-13 11:45:35 -0400800 group = (goal - 1) / EXT4_INODES_PER_GROUP(sb);
801 ino = (goal - 1) % EXT4_INODES_PER_GROUP(sb);
802 ret2 = 0;
803 goto got_group;
804 }
805
Lukas Czerner4113c4c2011-10-08 14:34:47 -0400806 if (S_ISDIR(mode))
807 ret2 = find_group_orlov(sb, dir, &group, mode, qstr);
808 else
Theodore Ts'oa4912122009-03-12 12:18:34 -0400809 ret2 = find_group_other(sb, dir, &group, mode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700810
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400811got_group:
Theodore Ts'oa4912122009-03-12 12:18:34 -0400812 EXT4_I(dir)->i_last_alloc_group = group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700813 err = -ENOSPC;
Avantika Mathur2aa9fc42008-01-28 23:58:27 -0500814 if (ret2 == -1)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700815 goto out;
816
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500817 /*
818 * Normally we will only go through one pass of this loop,
819 * unless we get unlucky and it turns out the group we selected
820 * had its last inode grabbed by someone else.
821 */
Andreas Dilger11013912009-06-13 11:45:35 -0400822 for (i = 0; i < ngroups; i++, ino = 0) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700823 err = -EIO;
824
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500825 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700826 if (!gdp)
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400827 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700828
Yongqiang Yangf2a09af2012-09-23 23:16:03 -0400829 /*
830 * Check free inodes count before loading bitmap.
831 */
832 if (ext4_free_inodes_count(sb, gdp) == 0) {
833 if (++group == ngroups)
834 group = 0;
835 continue;
836 }
837
Darrick J. Wong87a39382013-08-28 18:32:58 -0400838 grp = ext4_get_group_info(sb, group);
839 /* Skip groups with already-known suspicious inode tables */
840 if (EXT4_MB_GRP_IBITMAP_CORRUPT(grp)) {
841 if (++group == ngroups)
842 group = 0;
843 continue;
844 }
845
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500846 brelse(inode_bitmap_bh);
847 inode_bitmap_bh = ext4_read_inode_bitmap(sb, group);
Darrick J. Wong87a39382013-08-28 18:32:58 -0400848 /* Skip groups with suspicious inode tables */
Darrick J. Wong9008a582015-10-17 21:33:24 -0400849 if (EXT4_MB_GRP_IBITMAP_CORRUPT(grp) ||
850 IS_ERR(inode_bitmap_bh)) {
851 inode_bitmap_bh = NULL;
Darrick J. Wong87a39382013-08-28 18:32:58 -0400852 if (++group == ngroups)
853 group = 0;
854 continue;
855 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700856
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700857repeat_in_this_group:
Mingming Cao617ba132006-10-11 01:20:53 -0700858 ino = ext4_find_next_zero_bit((unsigned long *)
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500859 inode_bitmap_bh->b_data,
860 EXT4_INODES_PER_GROUP(sb), ino);
Theodore Ts'oa34eb502013-07-26 15:15:46 -0400861 if (ino >= EXT4_INODES_PER_GROUP(sb))
862 goto next_group;
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500863 if (group == 0 && (ino+1) < EXT4_FIRST_INO(sb)) {
864 ext4_error(sb, "reserved inode found cleared - "
865 "inode=%lu", ino + 1);
866 continue;
867 }
Theodore Ts'o19883bd2013-08-16 22:06:55 -0400868 if ((EXT4_SB(sb)->s_journal == NULL) &&
869 recently_deleted(sb, group, ino)) {
870 ino++;
871 goto next_inode;
872 }
Theodore Ts'o11395752013-02-09 16:27:09 -0500873 if (!handle) {
874 BUG_ON(nblocks <= 0);
875 handle = __ext4_journal_start_sb(dir->i_sb, line_no,
Jan Kara5fe2fe82013-06-04 12:37:50 -0400876 handle_type, nblocks,
877 0);
Theodore Ts'o11395752013-02-09 16:27:09 -0500878 if (IS_ERR(handle)) {
879 err = PTR_ERR(handle);
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400880 ext4_std_error(sb, err);
881 goto out;
Theodore Ts'o11395752013-02-09 16:27:09 -0500882 }
883 }
Eric Sandeenffb53872012-10-28 22:24:57 -0400884 BUFFER_TRACE(inode_bitmap_bh, "get_write_access");
885 err = ext4_journal_get_write_access(handle, inode_bitmap_bh);
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400886 if (err) {
887 ext4_std_error(sb, err);
888 goto out;
889 }
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500890 ext4_lock_group(sb, group);
891 ret2 = ext4_test_and_set_bit(ino, inode_bitmap_bh->b_data);
892 ext4_unlock_group(sb, group);
893 ino++; /* the inode bitmap is zero-based */
894 if (!ret2)
895 goto got; /* we grabbed the inode! */
Theodore Ts'o19883bd2013-08-16 22:06:55 -0400896next_inode:
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500897 if (ino < EXT4_INODES_PER_GROUP(sb))
898 goto repeat_in_this_group;
Theodore Ts'oa34eb502013-07-26 15:15:46 -0400899next_group:
900 if (++group == ngroups)
901 group = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700902 }
903 err = -ENOSPC;
904 goto out;
905
906got:
Eric Sandeenffb53872012-10-28 22:24:57 -0400907 BUFFER_TRACE(inode_bitmap_bh, "call ext4_handle_dirty_metadata");
908 err = ext4_handle_dirty_metadata(handle, NULL, inode_bitmap_bh);
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400909 if (err) {
910 ext4_std_error(sb, err);
911 goto out;
912 }
Eric Sandeenffb53872012-10-28 22:24:57 -0400913
Theodore Ts'o61c219f2014-07-05 16:28:35 -0400914 BUFFER_TRACE(group_desc_bh, "get_write_access");
915 err = ext4_journal_get_write_access(handle, group_desc_bh);
916 if (err) {
917 ext4_std_error(sb, err);
918 goto out;
919 }
920
Andreas Dilger717d50e2007-10-16 18:38:25 -0400921 /* We may have to initialize the block bitmap if it isn't already */
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -0400922 if (ext4_has_group_desc_csum(sb) &&
Andreas Dilger717d50e2007-10-16 18:38:25 -0400923 gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500924 struct buffer_head *block_bitmap_bh;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400925
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500926 block_bitmap_bh = ext4_read_block_bitmap(sb, group);
Darrick J. Wong9008a582015-10-17 21:33:24 -0400927 if (IS_ERR(block_bitmap_bh)) {
928 err = PTR_ERR(block_bitmap_bh);
Jan Kara599a9b72014-10-30 10:53:16 -0400929 goto out;
930 }
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500931 BUFFER_TRACE(block_bitmap_bh, "get block bitmap access");
932 err = ext4_journal_get_write_access(handle, block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400933 if (err) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500934 brelse(block_bitmap_bh);
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400935 ext4_std_error(sb, err);
936 goto out;
Andreas Dilger717d50e2007-10-16 18:38:25 -0400937 }
938
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400939 BUFFER_TRACE(block_bitmap_bh, "dirty block bitmap");
940 err = ext4_handle_dirty_metadata(handle, NULL, block_bitmap_bh);
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400941
Andreas Dilger717d50e2007-10-16 18:38:25 -0400942 /* recheck and clear flag under lock if we still need to */
Theodore Ts'ofd034a82011-09-09 18:42:51 -0400943 ext4_lock_group(sb, group);
Theodore Ts'o5ae57322018-06-14 00:58:00 -0400944 if (ext4_has_group_desc_csum(sb) &&
945 (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT))) {
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -0500946 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
Theodore Ts'o021b65b2011-09-09 19:08:51 -0400947 ext4_free_group_clusters_set(sb, gdp,
Theodore Ts'ocff1dfd72011-09-09 19:12:51 -0400948 ext4_free_clusters_after_init(sb, group, gdp));
Darrick J. Wongfa77dcf2012-04-29 18:35:10 -0400949 ext4_block_bitmap_csum_set(sb, group, gdp,
Tao Ma79f1ba42012-10-22 00:34:32 -0400950 block_bitmap_bh);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -0400951 ext4_group_desc_csum_set(sb, group, gdp);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400952 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -0400953 ext4_unlock_group(sb, group);
Theodore Ts'oaeb1e5d62012-11-29 21:21:22 -0500954 brelse(block_bitmap_bh);
Andreas Dilger717d50e2007-10-16 18:38:25 -0400955
Jan Karaeb9cc7e2013-04-19 13:38:14 -0400956 if (err) {
957 ext4_std_error(sb, err);
958 goto out;
959 }
Andreas Dilger717d50e2007-10-16 18:38:25 -0400960 }
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500961
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500962 /* Update the relevant bg descriptor fields */
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400963 if (ext4_has_group_desc_csum(sb)) {
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500964 int free;
965 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
966
967 down_read(&grp->alloc_sem); /* protect vs itable lazyinit */
968 ext4_lock_group(sb, group); /* while we modify the bg desc */
969 free = EXT4_INODES_PER_GROUP(sb) -
970 ext4_itable_unused_count(sb, gdp);
971 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)) {
972 gdp->bg_flags &= cpu_to_le16(~EXT4_BG_INODE_UNINIT);
973 free = 0;
974 }
975 /*
976 * Check the relative inode number against the last used
977 * relative inode number in this group. if it is greater
978 * we need to update the bg_itable_unused count
979 */
980 if (ino > free)
981 ext4_itable_unused_set(sb, gdp,
982 (EXT4_INODES_PER_GROUP(sb) - ino));
983 up_read(&grp->alloc_sem);
Tao Ma6f2e9f02012-05-28 18:20:59 -0400984 } else {
985 ext4_lock_group(sb, group);
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500986 }
Tao Ma6f2e9f02012-05-28 18:20:59 -0400987
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500988 ext4_free_inodes_set(sb, gdp, ext4_free_inodes_count(sb, gdp) - 1);
989 if (S_ISDIR(mode)) {
990 ext4_used_dirs_set(sb, gdp, ext4_used_dirs_count(sb, gdp) + 1);
991 if (sbi->s_log_groups_per_flex) {
992 ext4_group_t f = ext4_flex_group(sbi, group);
993
Suraj Jitindar Singh277bc962020-02-28 16:51:19 -0800994 atomic_inc(&sbi_array_rcu_deref(sbi, s_flex_groups,
995 f)->used_dirs);
Theodore Ts'o119c0d42012-02-06 20:12:03 -0500996 }
997 }
Darrick J. Wong41a246d2012-04-29 18:33:10 -0400998 if (ext4_has_group_desc_csum(sb)) {
999 ext4_inode_bitmap_csum_set(sb, group, gdp, inode_bitmap_bh,
1000 EXT4_INODES_PER_GROUP(sb) / 8);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04001001 ext4_group_desc_csum_set(sb, group, gdp);
Theodore Ts'o119c0d42012-02-06 20:12:03 -05001002 }
Tao Ma6f2e9f02012-05-28 18:20:59 -04001003 ext4_unlock_group(sb, group);
Theodore Ts'o119c0d42012-02-06 20:12:03 -05001004
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -05001005 BUFFER_TRACE(group_desc_bh, "call ext4_handle_dirty_metadata");
1006 err = ext4_handle_dirty_metadata(handle, NULL, group_desc_bh);
Jan Karaeb9cc7e2013-04-19 13:38:14 -04001007 if (err) {
1008 ext4_std_error(sb, err);
1009 goto out;
1010 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001011
1012 percpu_counter_dec(&sbi->s_freeinodes_counter);
1013 if (S_ISDIR(mode))
1014 percpu_counter_inc(&sbi->s_dirs_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001015
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001016 if (sbi->s_log_groups_per_flex) {
1017 flex_group = ext4_flex_group(sbi, group);
Suraj Jitindar Singh277bc962020-02-28 16:51:19 -08001018 atomic_dec(&sbi_array_rcu_deref(sbi, s_flex_groups,
1019 flex_group)->free_inodes);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001020 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001021
Andreas Dilger717d50e2007-10-16 18:38:25 -04001022 inode->i_ino = ino + group * EXT4_INODES_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001023 /* This is the optimal IO size (for stat), not the fs block size */
1024 inode->i_blocks = 0;
Kalpak Shahef7f3832007-07-18 09:15:20 -04001025 inode->i_mtime = inode->i_atime = inode->i_ctime = ei->i_crtime =
1026 ext4_current_time(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001027
1028 memset(ei->i_data, 0, sizeof(ei->i_data));
1029 ei->i_dir_start_lookup = 0;
1030 ei->i_disksize = 0;
1031
Eryu Guan4af83502011-10-31 18:21:29 -04001032 /* Don't inherit extent flag from directory, amongst others. */
Duane Griffin2dc6b0d2009-02-15 18:09:20 -05001033 ei->i_flags =
1034 ext4_mask_flags(mode, EXT4_I(dir)->i_flags & EXT4_FL_INHERITED);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001035 ei->i_file_acl = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001036 ei->i_dtime = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001037 ei->i_block_group = group;
Theodore Ts'oa4912122009-03-12 12:18:34 -04001038 ei->i_last_alloc_group = ~0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001039
Mingming Cao617ba132006-10-11 01:20:53 -07001040 ext4_set_inode_flags(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001041 if (IS_DIRSYNC(inode))
Frank Mayhar03901312009-01-07 00:06:22 -05001042 ext4_handle_sync(handle);
Al Viro6b38e842008-12-30 02:03:31 -05001043 if (insert_inode_locked(inode) < 0) {
Jan Karaacd6ad82011-12-18 17:37:02 -05001044 /*
1045 * Likely a bitmap corruption causing inode to be allocated
1046 * twice.
1047 */
1048 err = -EIO;
Jan Karaeb9cc7e2013-04-19 13:38:14 -04001049 ext4_error(sb, "failed to insert inode %lu: doubly allocated?",
1050 inode->i_ino);
1051 goto out;
Al Viro6b38e842008-12-30 02:03:31 -05001052 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001053 spin_lock(&sbi->s_next_gen_lock);
1054 inode->i_generation = sbi->s_next_generation++;
1055 spin_unlock(&sbi->s_next_gen_lock);
1056
Darrick J. Wong814525f2012-04-29 18:31:10 -04001057 /* Precompute checksum seed for inode metadata */
Dmitry Monakhov9aa5d322014-10-13 03:36:16 -04001058 if (ext4_has_metadata_csum(sb)) {
Darrick J. Wong814525f2012-04-29 18:31:10 -04001059 __u32 csum;
Darrick J. Wong814525f2012-04-29 18:31:10 -04001060 __le32 inum = cpu_to_le32(inode->i_ino);
1061 __le32 gen = cpu_to_le32(inode->i_generation);
1062 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum,
1063 sizeof(inum));
1064 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen,
1065 sizeof(gen));
1066 }
1067
Theodore Ts'o353eb832011-01-10 12:18:25 -05001068 ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */
Theodore Ts'o19f5fb72010-01-24 14:34:07 -05001069 ext4_set_inode_state(inode, EXT4_STATE_NEW);
Kalpak Shahef7f3832007-07-18 09:15:20 -04001070
1071 ei->i_extra_isize = EXT4_SB(sb)->s_want_extra_isize;
Tao Maf08225d2012-12-10 14:06:03 -05001072 ei->i_inline_off = 0;
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04001073 if (ext4_has_feature_inline_data(sb))
Tao Maf08225d2012-12-10 14:06:03 -05001074 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001075 ret = inode;
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001076 err = dquot_alloc_inode(inode);
1077 if (err)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001078 goto fail_drop;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001079
Hyojun Kim63da4202017-10-06 17:10:08 -07001080 /*
1081 * Since the encryption xattr will always be unique, create it first so
1082 * that it's less likely to end up in an external xattr block and
1083 * prevent its deduplication.
1084 */
1085 if (encrypt) {
1086 err = fscrypt_inherit_context(dir, inode, handle, true);
1087 if (err)
1088 goto fail_free_drop;
1089 }
1090
Mingming Cao617ba132006-10-11 01:20:53 -07001091 err = ext4_init_acl(handle, inode, dir);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001092 if (err)
1093 goto fail_free_drop;
1094
Eric Paris2a7dba32011-02-01 11:05:39 -05001095 err = ext4_init_security(handle, inode, dir, qstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001096 if (err)
1097 goto fail_free_drop;
1098
Darrick J. Wonge2b911c2015-10-17 16:18:43 -04001099 if (ext4_has_feature_extents(sb)) {
Eric Sandeene4079a12008-07-11 19:27:31 -04001100 /* set extent flag only for directory, file and normal symlink*/
Aneesh Kumar K.Ve65187e2008-04-29 08:11:12 -04001101 if (S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode)) {
Dmitry Monakhov12e9b892010-05-16 22:00:00 -04001102 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001103 ext4_ext_tree_init(handle, inode);
Aneesh Kumar K.V42bf0382008-02-25 16:38:03 -05001104 }
Alex Tomasa86c6182006-10-11 01:21:03 -07001105 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001106
Theodore Ts'o688f8692011-03-16 17:16:31 -04001107 if (ext4_handle_valid(handle)) {
1108 ei->i_sync_tid = handle->h_transaction->t_tid;
1109 ei->i_datasync_tid = handle->h_transaction->t_tid;
1110 }
1111
Aneesh Kumar K.V8753e882008-04-29 22:00:36 -04001112 err = ext4_mark_inode_dirty(handle, inode);
1113 if (err) {
1114 ext4_std_error(sb, err);
1115 goto fail_free_drop;
1116 }
1117
Mingming Cao617ba132006-10-11 01:20:53 -07001118 ext4_debug("allocating inode %lu\n", inode->i_ino);
Theodore Ts'o9bffad12009-06-17 11:48:11 -04001119 trace_ext4_allocate_inode(inode, dir, mode);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -05001120 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001121 return ret;
1122
1123fail_free_drop:
Christoph Hellwig63936dd2010-03-03 09:05:01 -05001124 dquot_free_inode(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001125fail_drop:
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +02001126 clear_nlink(inode);
Al Viro6b38e842008-12-30 02:03:31 -05001127 unlock_new_inode(inode);
Jan Karaeb9cc7e2013-04-19 13:38:14 -04001128out:
1129 dquot_drop(inode);
1130 inode->i_flags |= S_NOQUOTA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001131 iput(inode);
Aneesh Kumar K.V3300bed2009-01-03 22:33:39 -05001132 brelse(inode_bitmap_bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001133 return ERR_PTR(err);
1134}
1135
1136/* Verify that we are loading a valid orphan from disk */
Mingming Cao617ba132006-10-11 01:20:53 -07001137struct inode *ext4_orphan_get(struct super_block *sb, unsigned long ino)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001138{
Mingming Cao617ba132006-10-11 01:20:53 -07001139 unsigned long max_ino = le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001140 ext4_group_t block_group;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001141 int bit;
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001142 struct buffer_head *bitmap_bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001143 struct inode *inode = NULL;
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001144 int err = -EFSCORRUPTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001145
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001146 if (ino < EXT4_FIRST_INO(sb) || ino > max_ino)
1147 goto bad_orphan;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001148
Mingming Cao617ba132006-10-11 01:20:53 -07001149 block_group = (ino - 1) / EXT4_INODES_PER_GROUP(sb);
1150 bit = (ino - 1) % EXT4_INODES_PER_GROUP(sb);
Eric Sandeene29d1cd2008-08-02 21:21:02 -04001151 bitmap_bh = ext4_read_inode_bitmap(sb, block_group);
Darrick J. Wong9008a582015-10-17 21:33:24 -04001152 if (IS_ERR(bitmap_bh)) {
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001153 ext4_error(sb, "inode bitmap error %ld for orphan %lu",
1154 ino, PTR_ERR(bitmap_bh));
1155 return (struct inode *) bitmap_bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001156 }
1157
1158 /* Having the inode bit set should be a 100% indicator that this
1159 * is a valid orphan (no e2fsck run on fs). Orphans also include
1160 * inodes that were being truncated, so we can't check i_nlink==0.
1161 */
David Howells1d1fe1e2008-02-07 00:15:37 -08001162 if (!ext4_test_bit(bit, bitmap_bh->b_data))
1163 goto bad_orphan;
1164
1165 inode = ext4_iget(sb, ino);
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001166 if (IS_ERR(inode)) {
1167 err = PTR_ERR(inode);
1168 ext4_error(sb, "couldn't read orphan inode %lu (err %d)",
1169 ino, err);
1170 return inode;
1171 }
David Howells1d1fe1e2008-02-07 00:15:37 -08001172
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001173 /*
Theodore Ts'oc9eb13a2016-04-30 00:48:54 -04001174 * If the orphans has i_nlinks > 0 then it should be able to
1175 * be truncated, otherwise it won't be removed from the orphan
1176 * list during processing and an infinite loop will result.
1177 * Similarly, it must not be a bad inode.
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001178 */
Theodore Ts'oc9eb13a2016-04-30 00:48:54 -04001179 if ((inode->i_nlink && !ext4_can_truncate(inode)) ||
1180 is_bad_inode(inode))
Duane Griffin91ef4ca2008-07-11 19:27:31 -04001181 goto bad_orphan;
1182
David Howells1d1fe1e2008-02-07 00:15:37 -08001183 if (NEXT_ORPHAN(inode) > max_ino)
1184 goto bad_orphan;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001185 brelse(bitmap_bh);
1186 return inode;
David Howells1d1fe1e2008-02-07 00:15:37 -08001187
David Howells1d1fe1e2008-02-07 00:15:37 -08001188bad_orphan:
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001189 ext4_error(sb, "bad orphan inode %lu", ino);
1190 if (bitmap_bh)
1191 printk(KERN_ERR "ext4_test_bit(bit=%d, block=%llu) = %d\n",
1192 bit, (unsigned long long)bitmap_bh->b_blocknr,
1193 ext4_test_bit(bit, bitmap_bh->b_data));
David Howells1d1fe1e2008-02-07 00:15:37 -08001194 if (inode) {
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001195 printk(KERN_ERR "is_bad_inode(inode)=%d\n",
David Howells1d1fe1e2008-02-07 00:15:37 -08001196 is_bad_inode(inode));
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001197 printk(KERN_ERR "NEXT_ORPHAN(inode)=%u\n",
David Howells1d1fe1e2008-02-07 00:15:37 -08001198 NEXT_ORPHAN(inode));
Theodore Ts'o7827a7f2016-04-30 00:49:54 -04001199 printk(KERN_ERR "max_ino=%lu\n", max_ino);
1200 printk(KERN_ERR "i_nlink=%u\n", inode->i_nlink);
David Howells1d1fe1e2008-02-07 00:15:37 -08001201 /* Avoid freeing blocks if we got a bad deleted inode */
1202 if (inode->i_nlink == 0)
1203 inode->i_blocks = 0;
1204 iput(inode);
1205 }
1206 brelse(bitmap_bh);
David Howells1d1fe1e2008-02-07 00:15:37 -08001207 return ERR_PTR(err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001208}
1209
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001210unsigned long ext4_count_free_inodes(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001211{
1212 unsigned long desc_count;
Mingming Cao617ba132006-10-11 01:20:53 -07001213 struct ext4_group_desc *gdp;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001214 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07001215#ifdef EXT4FS_DEBUG
1216 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001217 unsigned long bitmap_count, x;
1218 struct buffer_head *bitmap_bh = NULL;
1219
Mingming Cao617ba132006-10-11 01:20:53 -07001220 es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001221 desc_count = 0;
1222 bitmap_count = 0;
1223 gdp = NULL;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001224 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001225 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001226 if (!gdp)
1227 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001228 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001229 brelse(bitmap_bh);
Eric Sandeene29d1cd2008-08-02 21:21:02 -04001230 bitmap_bh = ext4_read_inode_bitmap(sb, i);
Darrick J. Wong9008a582015-10-17 21:33:24 -04001231 if (IS_ERR(bitmap_bh)) {
1232 bitmap_bh = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001233 continue;
Darrick J. Wong9008a582015-10-17 21:33:24 -04001234 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001235
Theodore Ts'of6fb99c2012-06-30 19:14:57 -04001236 x = ext4_count_free(bitmap_bh->b_data,
1237 EXT4_INODES_PER_GROUP(sb) / 8);
Eric Sandeenc549a952008-01-28 23:58:27 -05001238 printk(KERN_DEBUG "group %lu: stored = %d, counted = %lu\n",
Peng Tao785b4b32009-07-27 21:44:40 -04001239 (unsigned long) i, ext4_free_inodes_count(sb, gdp), x);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001240 bitmap_count += x;
1241 }
1242 brelse(bitmap_bh);
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001243 printk(KERN_DEBUG "ext4_count_free_inodes: "
1244 "stored = %u, computed = %lu, %lu\n",
1245 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001246 return desc_count;
1247#else
1248 desc_count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001249 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001250 gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001251 if (!gdp)
1252 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001253 desc_count += ext4_free_inodes_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001254 cond_resched();
1255 }
1256 return desc_count;
1257#endif
1258}
1259
1260/* Called at mount-time, super-block is locked */
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001261unsigned long ext4_count_dirs(struct super_block * sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001262{
1263 unsigned long count = 0;
Theodore Ts'o8df96752009-05-01 08:50:38 -04001264 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001265
Theodore Ts'o8df96752009-05-01 08:50:38 -04001266 for (i = 0; i < ngroups; i++) {
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001267 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001268 if (!gdp)
1269 continue;
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001270 count += ext4_used_dirs_count(sb, gdp);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001271 }
1272 return count;
1273}
Lukas Czernerbfff6872010-10-27 21:30:05 -04001274
1275/*
1276 * Zeroes not yet zeroed inode table - just write zeroes through the whole
1277 * inode table. Must be called without any spinlock held. The only place
1278 * where it is called from on active part of filesystem is ext4lazyinit
1279 * thread, so we do not need any special locks, however we have to prevent
1280 * inode allocation from the current group, so we take alloc_sem lock, to
Theodore Ts'o119c0d42012-02-06 20:12:03 -05001281 * block ext4_new_inode() until we are finished.
Lukas Czernerbfff6872010-10-27 21:30:05 -04001282 */
H Hartley Sweetene0cbee32011-10-18 10:57:51 -04001283int ext4_init_inode_table(struct super_block *sb, ext4_group_t group,
Lukas Czernerbfff6872010-10-27 21:30:05 -04001284 int barrier)
1285{
1286 struct ext4_group_info *grp = ext4_get_group_info(sb, group);
1287 struct ext4_sb_info *sbi = EXT4_SB(sb);
1288 struct ext4_group_desc *gdp = NULL;
1289 struct buffer_head *group_desc_bh;
1290 handle_t *handle;
1291 ext4_fsblk_t blk;
1292 int num, ret = 0, used_blks = 0;
Lukas Czernerbfff6872010-10-27 21:30:05 -04001293
1294 /* This should not happen, but just to be sure check this */
1295 if (sb->s_flags & MS_RDONLY) {
1296 ret = 1;
1297 goto out;
1298 }
1299
1300 gdp = ext4_get_group_desc(sb, group, &group_desc_bh);
1301 if (!gdp)
1302 goto out;
1303
1304 /*
1305 * We do not need to lock this, because we are the only one
1306 * handling this flag.
1307 */
1308 if (gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_ZEROED))
1309 goto out;
1310
Theodore Ts'o9924a922013-02-08 21:59:22 -05001311 handle = ext4_journal_start_sb(sb, EXT4_HT_MISC, 1);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001312 if (IS_ERR(handle)) {
1313 ret = PTR_ERR(handle);
1314 goto out;
1315 }
1316
1317 down_write(&grp->alloc_sem);
1318 /*
1319 * If inode bitmap was already initialized there may be some
1320 * used inodes so we need to skip blocks with used inodes in
1321 * inode table.
1322 */
1323 if (!(gdp->bg_flags & cpu_to_le16(EXT4_BG_INODE_UNINIT)))
1324 used_blks = DIV_ROUND_UP((EXT4_INODES_PER_GROUP(sb) -
1325 ext4_itable_unused_count(sb, gdp)),
1326 sbi->s_inodes_per_block);
1327
Theodore Ts'o954e5722018-07-28 08:12:04 -04001328 if ((used_blks < 0) || (used_blks > sbi->s_itb_per_group) ||
1329 ((group == 0) && ((EXT4_INODES_PER_GROUP(sb) -
1330 ext4_itable_unused_count(sb, gdp)) <
1331 EXT4_FIRST_INO(sb)))) {
Theodore Ts'o1084f252012-03-19 23:13:43 -04001332 ext4_error(sb, "Something is wrong with group %u: "
1333 "used itable blocks: %d; "
1334 "itable unused count: %u",
Lukas Czerner857ac882010-10-27 21:30:05 -04001335 group, used_blks,
1336 ext4_itable_unused_count(sb, gdp));
1337 ret = 1;
Yongqiang Yang33853a02011-08-01 06:32:19 -04001338 goto err_out;
Lukas Czerner857ac882010-10-27 21:30:05 -04001339 }
1340
Lukas Czernerbfff6872010-10-27 21:30:05 -04001341 blk = ext4_inode_table(sb, gdp) + used_blks;
1342 num = sbi->s_itb_per_group - used_blks;
1343
1344 BUFFER_TRACE(group_desc_bh, "get_write_access");
1345 ret = ext4_journal_get_write_access(handle,
1346 group_desc_bh);
1347 if (ret)
1348 goto err_out;
1349
Lukas Czernerbfff6872010-10-27 21:30:05 -04001350 /*
1351 * Skip zeroout if the inode table is full. But we set the ZEROED
1352 * flag anyway, because obviously, when it is full it does not need
1353 * further zeroing.
1354 */
1355 if (unlikely(num == 0))
1356 goto skip_zeroout;
1357
1358 ext4_debug("going to zero out inode table in group %d\n",
1359 group);
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001360 ret = sb_issue_zeroout(sb, blk, num, GFP_NOFS);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001361 if (ret < 0)
1362 goto err_out;
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001363 if (barrier)
1364 blkdev_issue_flush(sb->s_bdev, GFP_NOFS, NULL);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001365
1366skip_zeroout:
1367 ext4_lock_group(sb, group);
1368 gdp->bg_flags |= cpu_to_le16(EXT4_BG_INODE_ZEROED);
Darrick J. Wongfeb0ab32012-04-29 18:45:10 -04001369 ext4_group_desc_csum_set(sb, group, gdp);
Lukas Czernerbfff6872010-10-27 21:30:05 -04001370 ext4_unlock_group(sb, group);
1371
1372 BUFFER_TRACE(group_desc_bh,
1373 "call ext4_handle_dirty_metadata");
1374 ret = ext4_handle_dirty_metadata(handle, NULL,
1375 group_desc_bh);
1376
1377err_out:
1378 up_write(&grp->alloc_sem);
1379 ext4_journal_stop(handle);
1380out:
1381 return ret;
1382}