xref: /openbmc/linux/fs/ext4/ext4.h (revision 4c0cfebd)
1f5166768STheodore Ts'o // SPDX-License-Identifier: GPL-2.0
23dcf5451SChristoph Hellwig /*
33dcf5451SChristoph Hellwig  *  ext4.h
43dcf5451SChristoph Hellwig  *
53dcf5451SChristoph Hellwig  * Copyright (C) 1992, 1993, 1994, 1995
63dcf5451SChristoph Hellwig  * Remy Card (card@masi.ibp.fr)
73dcf5451SChristoph Hellwig  * Laboratoire MASI - Institut Blaise Pascal
83dcf5451SChristoph Hellwig  * Universite Pierre et Marie Curie (Paris VI)
93dcf5451SChristoph Hellwig  *
103dcf5451SChristoph Hellwig  *  from
113dcf5451SChristoph Hellwig  *
123dcf5451SChristoph Hellwig  *  linux/include/linux/minix_fs.h
133dcf5451SChristoph Hellwig  *
143dcf5451SChristoph Hellwig  *  Copyright (C) 1991, 1992  Linus Torvalds
153dcf5451SChristoph Hellwig  */
163dcf5451SChristoph Hellwig 
173dcf5451SChristoph Hellwig #ifndef _EXT4_H
183dcf5451SChristoph Hellwig #define _EXT4_H
193dcf5451SChristoph Hellwig 
2031d21d21SXiyu Yang #include <linux/refcount.h>
213dcf5451SChristoph Hellwig #include <linux/types.h>
223dcf5451SChristoph Hellwig #include <linux/blkdev.h>
233dcf5451SChristoph Hellwig #include <linux/magic.h>
242ccb5fb9SAneesh Kumar K.V #include <linux/jbd2.h>
2560e58e0fSMingming Cao #include <linux/quota.h>
26d444c3c3STheodore Ts'o #include <linux/rwsem.h>
27d444c3c3STheodore Ts'o #include <linux/rbtree.h>
28d444c3c3STheodore Ts'o #include <linux/seqlock.h>
29d444c3c3STheodore Ts'o #include <linux/mutex.h>
30ca0faba0STheodore Ts'o #include <linux/timer.h>
31ca0faba0STheodore Ts'o #include <linux/wait.h>
32174cd4b1SIngo Molnar #include <linux/sched/signal.h>
33ca0faba0STheodore Ts'o #include <linux/blockgroup_lock.h>
34ca0faba0STheodore Ts'o #include <linux/percpu_counter.h>
35efbed4dcSTheodore Ts'o #include <linux/ratelimit.h>
360441984aSDarrick J. Wong #include <crypto/hash.h>
37a633f5a3SLukas Czerner #include <linux/falloc.h>
38c8585c6fSDaeho Jeong #include <linux/percpu-rwsem.h>
3910c5db28SChristoph Hellwig #include <linux/fiemap.h>
404d92dc0fSBen Hutchings #ifdef __KERNEL__
414d92dc0fSBen Hutchings #include <linux/compat.h>
424d92dc0fSBen Hutchings #endif
43519fe1baSJosh Triplett #include <uapi/linux/ext4.h>
443dcf5451SChristoph Hellwig 
45734f0d24SDave Chinner #include <linux/fscrypt.h>
46c93d8f88SEric Biggers #include <linux/fsverity.h>
47734f0d24SDave Chinner 
48072ebb3bSTheodore Ts'o #include <linux/compiler.h>
49072ebb3bSTheodore Ts'o 
503dcf5451SChristoph Hellwig /*
518a35694eSShen Feng  * The fourth extended filesystem constants/structures
523dcf5451SChristoph Hellwig  */
533dcf5451SChristoph Hellwig 
543dcf5451SChristoph Hellwig /*
55a2821e34SAihua Zhang  * with AGGRESSIVE_CHECK allocator runs consistency checks over
56a2821e34SAihua Zhang  * structures. these checks slow things down a lot
57a2821e34SAihua Zhang  */
58a2821e34SAihua Zhang #define AGGRESSIVE_CHECK__
59a2821e34SAihua Zhang 
60a2821e34SAihua Zhang /*
61a2821e34SAihua Zhang  * with DOUBLE_CHECK defined mballoc creates persistent in-core
62a2821e34SAihua Zhang  * bitmaps, maintains and uses them to check for double allocations
63a2821e34SAihua Zhang  */
64a2821e34SAihua Zhang #define DOUBLE_CHECK__
65a2821e34SAihua Zhang 
66a2821e34SAihua Zhang /*
673dcf5451SChristoph Hellwig  * Define EXT4FS_DEBUG to produce debug messages
683dcf5451SChristoph Hellwig  */
693dcf5451SChristoph Hellwig #undef EXT4FS_DEBUG
703dcf5451SChristoph Hellwig 
713dcf5451SChristoph Hellwig /*
723dcf5451SChristoph Hellwig  * Debug code
733dcf5451SChristoph Hellwig  */
743dcf5451SChristoph Hellwig #ifdef EXT4FS_DEBUG
753dcf5451SChristoph Hellwig #define ext4_debug(f, a...)						\
763dcf5451SChristoph Hellwig 	do {								\
773dcf5451SChristoph Hellwig 		printk(KERN_DEBUG "EXT4-fs DEBUG (%s, %d): %s:",	\
784db9c54aSStoyan Gaydarov 			__FILE__, __LINE__, __func__);			\
793dcf5451SChristoph Hellwig 		printk(KERN_DEBUG f, ## a);				\
803dcf5451SChristoph Hellwig 	} while (0)
813dcf5451SChristoph Hellwig #else
82ace36ad4SJoe Perches #define ext4_debug(fmt, ...)	no_printk(fmt, ##__VA_ARGS__)
833dcf5451SChristoph Hellwig #endif
843dcf5451SChristoph Hellwig 
854a092d73STheodore Ts'o  /*
8670aa1554SRitesh Harjani   * Turn on EXT_DEBUG to enable ext4_ext_show_path/leaf/move in extents.c
874a092d73STheodore Ts'o   */
884a092d73STheodore Ts'o #define EXT_DEBUG__
8970aa1554SRitesh Harjani 
9070aa1554SRitesh Harjani /*
9170aa1554SRitesh Harjani  * Dynamic printk for controlled extents debugging.
9270aa1554SRitesh Harjani  */
9370aa1554SRitesh Harjani #ifdef CONFIG_EXT4_DEBUG
9470aa1554SRitesh Harjani #define ext_debug(ino, fmt, ...)					\
9570aa1554SRitesh Harjani 	pr_debug("[%s/%d] EXT4-fs (%s): ino %lu: (%s, %d): %s:" fmt,	\
9670aa1554SRitesh Harjani 		 current->comm, task_pid_nr(current),			\
9770aa1554SRitesh Harjani 		 ino->i_sb->s_id, ino->i_ino, __FILE__, __LINE__,	\
9870aa1554SRitesh Harjani 		 __func__, ##__VA_ARGS__)
994a092d73STheodore Ts'o #else
10070aa1554SRitesh Harjani #define ext_debug(ino, fmt, ...)	no_printk(fmt, ##__VA_ARGS__)
1014a092d73STheodore Ts'o #endif
1024a092d73STheodore Ts'o 
103837c23fbSChunguang Xu #define ASSERT(assert)						\
104837c23fbSChunguang Xu do {									\
105837c23fbSChunguang Xu 	if (unlikely(!(assert))) {					\
106837c23fbSChunguang Xu 		printk(KERN_EMERG					\
107837c23fbSChunguang Xu 		       "Assertion failure in %s() at %s:%d: '%s'\n",	\
108837c23fbSChunguang Xu 		       __func__, __FILE__, __LINE__, #assert);		\
109837c23fbSChunguang Xu 		BUG();							\
110837c23fbSChunguang Xu 	}								\
111837c23fbSChunguang Xu } while (0)
112837c23fbSChunguang Xu 
113d444c3c3STheodore Ts'o /* data type for block offset of block group */
114d444c3c3STheodore Ts'o typedef int ext4_grpblk_t;
115d444c3c3STheodore Ts'o 
116d444c3c3STheodore Ts'o /* data type for filesystem-wide blocks number */
117d444c3c3STheodore Ts'o typedef unsigned long long ext4_fsblk_t;
118d444c3c3STheodore Ts'o 
119d444c3c3STheodore Ts'o /* data type for file logical block number */
120d444c3c3STheodore Ts'o typedef __u32 ext4_lblk_t;
121d444c3c3STheodore Ts'o 
122d444c3c3STheodore Ts'o /* data type for block group number */
123d444c3c3STheodore Ts'o typedef unsigned int ext4_group_t;
124d444c3c3STheodore Ts'o 
125331573feSNamjae Jeon enum SHIFT_DIRECTION {
126331573feSNamjae Jeon 	SHIFT_LEFT = 0,
127331573feSNamjae Jeon 	SHIFT_RIGHT,
128331573feSNamjae Jeon };
129331573feSNamjae Jeon 
130296c355cSTheodore Ts'o /*
131*4c0cfebdSTheodore Ts'o  * For each criteria, mballoc has slightly different way of finding
132*4c0cfebdSTheodore Ts'o  * the required blocks nad usually, higher the criteria the slower the
133*4c0cfebdSTheodore Ts'o  * allocation.  We start at lower criterias and keep falling back to
134*4c0cfebdSTheodore Ts'o  * higher ones if we are not able to find any blocks.  Lower (earlier)
135*4c0cfebdSTheodore Ts'o  * criteria are faster.
1364eb7a4a1SOjaswin Mujoo  */
1374eb7a4a1SOjaswin Mujoo enum criteria {
138f52f3d2bSOjaswin Mujoo 	/*
139*4c0cfebdSTheodore Ts'o 	 * Used when number of blocks needed is a power of 2. This
140*4c0cfebdSTheodore Ts'o 	 * doesn't trigger any disk IO except prefetch and is the
141*4c0cfebdSTheodore Ts'o 	 * fastest criteria.
142f52f3d2bSOjaswin Mujoo 	 */
143f52f3d2bSOjaswin Mujoo 	CR_POWER2_ALIGNED,
144f52f3d2bSOjaswin Mujoo 
145f52f3d2bSOjaswin Mujoo 	/*
146*4c0cfebdSTheodore Ts'o 	 * Tries to lookup in-memory data structures to find the most
147*4c0cfebdSTheodore Ts'o 	 * suitable group that satisfies goal request. No disk IO
148*4c0cfebdSTheodore Ts'o 	 * except block prefetch.
149f52f3d2bSOjaswin Mujoo 	 */
150f52f3d2bSOjaswin Mujoo 	CR_GOAL_LEN_FAST,
151f52f3d2bSOjaswin Mujoo 
152f52f3d2bSOjaswin Mujoo         /*
153*4c0cfebdSTheodore Ts'o 	 * Same as CR_GOAL_LEN_FAST but is allowed to reduce the goal
154*4c0cfebdSTheodore Ts'o          * length to the best available length for faster allocation.
155f52f3d2bSOjaswin Mujoo 	 */
156f52f3d2bSOjaswin Mujoo 	CR_BEST_AVAIL_LEN,
157f52f3d2bSOjaswin Mujoo 
158f52f3d2bSOjaswin Mujoo 	/*
159*4c0cfebdSTheodore Ts'o 	 * Reads each block group sequentially, performing disk IO if
160*4c0cfebdSTheodore Ts'o 	 * necessary, to find find_suitable block group. Tries to
161*4c0cfebdSTheodore Ts'o 	 * allocate goal length but might trim the request if nothing
162*4c0cfebdSTheodore Ts'o 	 * is found after enough tries.
163f52f3d2bSOjaswin Mujoo 	 */
164f52f3d2bSOjaswin Mujoo 	CR_GOAL_LEN_SLOW,
165f52f3d2bSOjaswin Mujoo 
166f52f3d2bSOjaswin Mujoo 	/*
167*4c0cfebdSTheodore Ts'o 	 * Finds the first free set of blocks and allocates
168*4c0cfebdSTheodore Ts'o 	 * those. This is only used in rare cases when
169*4c0cfebdSTheodore Ts'o 	 * CR_GOAL_LEN_SLOW also fails to allocate anything.
170f52f3d2bSOjaswin Mujoo 	 */
171f52f3d2bSOjaswin Mujoo 	CR_ANY_FREE,
172*4c0cfebdSTheodore Ts'o 
173*4c0cfebdSTheodore Ts'o 	/*
174*4c0cfebdSTheodore Ts'o 	 * Number of criterias defined.
175*4c0cfebdSTheodore Ts'o 	 */
176*4c0cfebdSTheodore Ts'o 	EXT4_MB_NUM_CRS
1774eb7a4a1SOjaswin Mujoo };
1784eb7a4a1SOjaswin Mujoo 
179f52f3d2bSOjaswin Mujoo /* criteria below which we use fast block scanning and avoid unnecessary IO */
180f52f3d2bSOjaswin Mujoo #define CR_FAST CR_GOAL_LEN_SLOW
181f52f3d2bSOjaswin Mujoo 
1824eb7a4a1SOjaswin Mujoo /*
183296c355cSTheodore Ts'o  * Flags used in mballoc's allocation_context flags field.
184296c355cSTheodore Ts'o  *
185296c355cSTheodore Ts'o  * Also used to show what's going on for debugging purposes when the
186296c355cSTheodore Ts'o  * flag field is exported via the traceport interface
187296c355cSTheodore Ts'o  */
188d444c3c3STheodore Ts'o 
1893dcf5451SChristoph Hellwig /* prefer goal again. length */
1900ef90db9STheodore Ts'o #define EXT4_MB_HINT_MERGE		0x0001
1913dcf5451SChristoph Hellwig /* blocks already reserved */
1920ef90db9STheodore Ts'o #define EXT4_MB_HINT_RESERVED		0x0002
1933dcf5451SChristoph Hellwig /* metadata is being allocated */
1940ef90db9STheodore Ts'o #define EXT4_MB_HINT_METADATA		0x0004
1953dcf5451SChristoph Hellwig /* first blocks in the file */
1960ef90db9STheodore Ts'o #define EXT4_MB_HINT_FIRST		0x0008
1973dcf5451SChristoph Hellwig /* search for the best chunk */
1980ef90db9STheodore Ts'o #define EXT4_MB_HINT_BEST		0x0010
1993dcf5451SChristoph Hellwig /* data is being allocated */
2000ef90db9STheodore Ts'o #define EXT4_MB_HINT_DATA		0x0020
2013dcf5451SChristoph Hellwig /* don't preallocate (for tails) */
2020ef90db9STheodore Ts'o #define EXT4_MB_HINT_NOPREALLOC		0x0040
2033dcf5451SChristoph Hellwig /* allocate for locality group */
2040ef90db9STheodore Ts'o #define EXT4_MB_HINT_GROUP_ALLOC	0x0080
2053dcf5451SChristoph Hellwig /* allocate goal blocks or none */
2060ef90db9STheodore Ts'o #define EXT4_MB_HINT_GOAL_ONLY		0x0100
2073dcf5451SChristoph Hellwig /* goal is meaningful */
2080ef90db9STheodore Ts'o #define EXT4_MB_HINT_TRY_GOAL		0x0200
209d2a17637SMingming Cao /* blocks already pre-reserved by delayed allocation */
2100ef90db9STheodore Ts'o #define EXT4_MB_DELALLOC_RESERVED	0x0400
2114ba74d00STheodore Ts'o /* We are doing stream allocation */
2124ba74d00STheodore Ts'o #define EXT4_MB_STREAM_ALLOC		0x0800
21355f020dbSAllison Henderson /* Use reserved root blocks if needed */
21455f020dbSAllison Henderson #define EXT4_MB_USE_ROOT_BLOCKS		0x1000
21527dd4385SLukas Czerner /* Use blocks from reserved pool */
21627dd4385SLukas Czerner #define EXT4_MB_USE_RESERVED		0x2000
21799377830SRitesh Harjani /* Do strict check for free blocks while retrying block allocation */
21899377830SRitesh Harjani #define EXT4_MB_STRICT_CHECK		0x4000
219196e402aSHarshad Shirwadkar /* Large fragment size list lookup succeeded at least once for cr = 0 */
220f52f3d2bSOjaswin Mujoo #define EXT4_MB_CR_POWER2_ALIGNED_OPTIMIZED		0x8000
221196e402aSHarshad Shirwadkar /* Avg fragment size rb tree lookup succeeded at least once for cr = 1 */
222f52f3d2bSOjaswin Mujoo #define EXT4_MB_CR_GOAL_LEN_FAST_OPTIMIZED		0x00010000
2237e170922SOjaswin Mujoo /* Avg fragment size rb tree lookup succeeded at least once for cr = 1.5 */
224f52f3d2bSOjaswin Mujoo #define EXT4_MB_CR_BEST_AVAIL_LEN_OPTIMIZED		0x00020000
2257e170922SOjaswin Mujoo 
2263dcf5451SChristoph Hellwig struct ext4_allocation_request {
2273dcf5451SChristoph Hellwig 	/* target inode for block we're allocating */
2283dcf5451SChristoph Hellwig 	struct inode *inode;
2293dcf5451SChristoph Hellwig 	/* how many blocks we want to allocate */
230498e5f24STheodore Ts'o 	unsigned int len;
231726447d8SEric Sandeen 	/* logical block in target inode */
232726447d8SEric Sandeen 	ext4_lblk_t logical;
233726447d8SEric Sandeen 	/* the closest logical allocated block to the left */
234726447d8SEric Sandeen 	ext4_lblk_t lleft;
235726447d8SEric Sandeen 	/* the closest logical allocated block to the right */
236726447d8SEric Sandeen 	ext4_lblk_t lright;
237726447d8SEric Sandeen 	/* phys. target (a hint) */
238726447d8SEric Sandeen 	ext4_fsblk_t goal;
239726447d8SEric Sandeen 	/* phys. block for the closest logical allocated block to the left */
240726447d8SEric Sandeen 	ext4_fsblk_t pleft;
241726447d8SEric Sandeen 	/* phys. block for the closest logical allocated block to the right */
242726447d8SEric Sandeen 	ext4_fsblk_t pright;
2433dcf5451SChristoph Hellwig 	/* flags. see above EXT4_MB_HINT_* */
244498e5f24STheodore Ts'o 	unsigned int flags;
2453dcf5451SChristoph Hellwig };
2463dcf5451SChristoph Hellwig 
2473dcf5451SChristoph Hellwig /*
248e35fd660STheodore Ts'o  * Logical to physical block mapping, used by ext4_map_blocks()
249e35fd660STheodore Ts'o  *
250e35fd660STheodore Ts'o  * This structure is used to pass requests into ext4_map_blocks() as
251e35fd660STheodore Ts'o  * well as to store the information returned by ext4_map_blocks().  It
252e35fd660STheodore Ts'o  * takes less room on the stack than a struct buffer_head.
253e35fd660STheodore Ts'o  */
2546db07461SRitesh Harjani #define EXT4_MAP_NEW		BIT(BH_New)
2556db07461SRitesh Harjani #define EXT4_MAP_MAPPED		BIT(BH_Mapped)
2566db07461SRitesh Harjani #define EXT4_MAP_UNWRITTEN	BIT(BH_Unwritten)
2576db07461SRitesh Harjani #define EXT4_MAP_BOUNDARY	BIT(BH_Boundary)
258e35fd660STheodore Ts'o #define EXT4_MAP_FLAGS		(EXT4_MAP_NEW | EXT4_MAP_MAPPED |\
259cbd7584eSJan Kara 				 EXT4_MAP_UNWRITTEN | EXT4_MAP_BOUNDARY)
260e35fd660STheodore Ts'o 
261e35fd660STheodore Ts'o struct ext4_map_blocks {
262e35fd660STheodore Ts'o 	ext4_fsblk_t m_pblk;
263e35fd660STheodore Ts'o 	ext4_lblk_t m_lblk;
264e35fd660STheodore Ts'o 	unsigned int m_len;
265e35fd660STheodore Ts'o 	unsigned int m_flags;
266e35fd660STheodore Ts'o };
267e35fd660STheodore Ts'o 
268e35fd660STheodore Ts'o /*
2697727ae52Szhangyi (F)  * Block validity checking, system zone rbtree.
2707727ae52Szhangyi (F)  */
2717727ae52Szhangyi (F) struct ext4_system_blocks {
2727727ae52Szhangyi (F) 	struct rb_root root;
2737727ae52Szhangyi (F) 	struct rcu_head rcu;
2747727ae52Szhangyi (F) };
2757727ae52Szhangyi (F) 
2767727ae52Szhangyi (F) /*
277bd2d0210STheodore Ts'o  * Flags for ext4_io_end->flags
278bd2d0210STheodore Ts'o  */
279bd2d0210STheodore Ts'o #define	EXT4_IO_END_UNWRITTEN	0x0001
280bd2d0210STheodore Ts'o 
281c8cc8816SRitesh Harjani struct ext4_io_end_vec {
282c8cc8816SRitesh Harjani 	struct list_head list;		/* list of io_end_vec */
283c8cc8816SRitesh Harjani 	loff_t offset;			/* offset in the file */
284c8cc8816SRitesh Harjani 	ssize_t size;			/* size of the extent */
285c8cc8816SRitesh Harjani };
286c8cc8816SRitesh Harjani 
2874188188bSCurt Wohlgemuth /*
288556615dcSLukas Czerner  * For converting unwritten extents on a work queue. 'handle' is used for
2896b523df4SJan Kara  * buffered writeback.
2904188188bSCurt Wohlgemuth  */
2910031462bSMingming Cao typedef struct ext4_io_end {
2925b3ff237Sjiayingz@google.com (Jiaying Zhang) 	struct list_head	list;		/* per-file finished IO list */
2936b523df4SJan Kara 	handle_t		*handle;	/* handle reserved for extent
2946b523df4SJan Kara 						 * conversion */
2950031462bSMingming Cao 	struct inode		*inode;		/* file being written to */
296b0857d30SJan Kara 	struct bio		*bio;		/* Linked list of completed
297b0857d30SJan Kara 						 * bios covering the extent */
2988d5d02e6SMingming Cao 	unsigned int		flag;		/* unwritten or not */
29931d21d21SXiyu Yang 	refcount_t		count;		/* reference counter */
300c8cc8816SRitesh Harjani 	struct list_head	list_vec;	/* list of ext4_io_end_vec */
3010031462bSMingming Cao } ext4_io_end_t;
3020031462bSMingming Cao 
303bd2d0210STheodore Ts'o struct ext4_io_submit {
3045a33911fSTejun Heo 	struct writeback_control *io_wbc;
305bd2d0210STheodore Ts'o 	struct bio		*io_bio;
306bd2d0210STheodore Ts'o 	ext4_io_end_t		*io_end;
307bd2d0210STheodore Ts'o 	sector_t		io_next_block;
308bd2d0210STheodore Ts'o };
309bd2d0210STheodore Ts'o 
310b3a3ca8cSTheodore Ts'o /*
3113dcf5451SChristoph Hellwig  * Special inodes numbers
3123dcf5451SChristoph Hellwig  */
3133dcf5451SChristoph Hellwig #define	EXT4_BAD_INO		 1	/* Bad blocks inode */
3143dcf5451SChristoph Hellwig #define EXT4_ROOT_INO		 2	/* Root inode */
315ae812306SAditya Kali #define EXT4_USR_QUOTA_INO	 3	/* User quota inode */
316ae812306SAditya Kali #define EXT4_GRP_QUOTA_INO	 4	/* Group quota inode */
3173dcf5451SChristoph Hellwig #define EXT4_BOOT_LOADER_INO	 5	/* Boot loader inode */
3183dcf5451SChristoph Hellwig #define EXT4_UNDEL_DIR_INO	 6	/* Undelete directory inode */
3193dcf5451SChristoph Hellwig #define EXT4_RESIZE_INO		 7	/* Reserved group descriptors inode */
3203dcf5451SChristoph Hellwig #define EXT4_JOURNAL_INO	 8	/* Journal inode */
3213dcf5451SChristoph Hellwig 
3223dcf5451SChristoph Hellwig /* First non-reserved inode for old ext4 filesystems */
3233dcf5451SChristoph Hellwig #define EXT4_GOOD_OLD_FIRST_INO	11
3243dcf5451SChristoph Hellwig 
3253dcf5451SChristoph Hellwig /*
3263dcf5451SChristoph Hellwig  * Maximal count of links to a file
3273dcf5451SChristoph Hellwig  */
3283dcf5451SChristoph Hellwig #define EXT4_LINK_MAX		65000
3293dcf5451SChristoph Hellwig 
3303dcf5451SChristoph Hellwig /*
3313dcf5451SChristoph Hellwig  * Macro-instructions used to manage several block sizes
3323dcf5451SChristoph Hellwig  */
3333dcf5451SChristoph Hellwig #define EXT4_MIN_BLOCK_SIZE		1024
3343dcf5451SChristoph Hellwig #define	EXT4_MAX_BLOCK_SIZE		65536
3353dcf5451SChristoph Hellwig #define EXT4_MIN_BLOCK_LOG_SIZE		10
336fb1813f4SCurt Wohlgemuth #define EXT4_MAX_BLOCK_LOG_SIZE		16
3379e47a4c9STheodore Ts'o #define EXT4_MAX_CLUSTER_LOG_SIZE	30
3383dcf5451SChristoph Hellwig #ifdef __KERNEL__
3393dcf5451SChristoph Hellwig # define EXT4_BLOCK_SIZE(s)		((s)->s_blocksize)
3403dcf5451SChristoph Hellwig #else
3413dcf5451SChristoph Hellwig # define EXT4_BLOCK_SIZE(s)		(EXT4_MIN_BLOCK_SIZE << (s)->s_log_block_size)
3423dcf5451SChristoph Hellwig #endif
3433dcf5451SChristoph Hellwig #define	EXT4_ADDR_PER_BLOCK(s)		(EXT4_BLOCK_SIZE(s) / sizeof(__u32))
344281b5995STheodore Ts'o #define EXT4_CLUSTER_SIZE(s)		(EXT4_BLOCK_SIZE(s) << \
345281b5995STheodore Ts'o 					 EXT4_SB(s)->s_cluster_bits)
3463dcf5451SChristoph Hellwig #ifdef __KERNEL__
3473dcf5451SChristoph Hellwig # define EXT4_BLOCK_SIZE_BITS(s)	((s)->s_blocksize_bits)
348281b5995STheodore Ts'o # define EXT4_CLUSTER_BITS(s)		(EXT4_SB(s)->s_cluster_bits)
3493dcf5451SChristoph Hellwig #else
3503dcf5451SChristoph Hellwig # define EXT4_BLOCK_SIZE_BITS(s)	((s)->s_log_block_size + 10)
3513dcf5451SChristoph Hellwig #endif
3523dcf5451SChristoph Hellwig #ifdef __KERNEL__
3533dcf5451SChristoph Hellwig #define	EXT4_ADDR_PER_BLOCK_BITS(s)	(EXT4_SB(s)->s_addr_per_block_bits)
3543dcf5451SChristoph Hellwig #define EXT4_INODE_SIZE(s)		(EXT4_SB(s)->s_inode_size)
3553dcf5451SChristoph Hellwig #define EXT4_FIRST_INO(s)		(EXT4_SB(s)->s_first_ino)
3563dcf5451SChristoph Hellwig #else
3573dcf5451SChristoph Hellwig #define EXT4_INODE_SIZE(s)	(((s)->s_rev_level == EXT4_GOOD_OLD_REV) ? \
3583dcf5451SChristoph Hellwig 				 EXT4_GOOD_OLD_INODE_SIZE : \
3593dcf5451SChristoph Hellwig 				 (s)->s_inode_size)
3603dcf5451SChristoph Hellwig #define EXT4_FIRST_INO(s)	(((s)->s_rev_level == EXT4_GOOD_OLD_REV) ? \
3613dcf5451SChristoph Hellwig 				 EXT4_GOOD_OLD_FIRST_INO : \
3623dcf5451SChristoph Hellwig 				 (s)->s_first_ino)
3633dcf5451SChristoph Hellwig #endif
3643dcf5451SChristoph Hellwig #define EXT4_BLOCK_ALIGN(size, blkbits)		ALIGN((size), (1 << (blkbits)))
365518eaa63SFabian Frederick #define EXT4_MAX_BLOCKS(size, offset, blkbits) \
366518eaa63SFabian Frederick 	((EXT4_BLOCK_ALIGN(size + offset, blkbits) >> blkbits) - (offset >> \
367518eaa63SFabian Frederick 								  blkbits))
3683dcf5451SChristoph Hellwig 
369d5b8f310STheodore Ts'o /* Translate a block number to a cluster number */
370d5b8f310STheodore Ts'o #define EXT4_B2C(sbi, blk)	((blk) >> (sbi)->s_cluster_bits)
371d5b8f310STheodore Ts'o /* Translate a cluster number to a block number */
372d5b8f310STheodore Ts'o #define EXT4_C2B(sbi, cluster)	((cluster) << (sbi)->s_cluster_bits)
373d5b8f310STheodore Ts'o /* Translate # of blks to # of clusters */
374d5b8f310STheodore Ts'o #define EXT4_NUM_B2C(sbi, blks)	(((blks) + (sbi)->s_cluster_ratio - 1) >> \
375d5b8f310STheodore Ts'o 				 (sbi)->s_cluster_bits)
376f5a44db5STheodore Ts'o /* Mask out the low bits to get the starting block of the cluster */
377f5a44db5STheodore Ts'o #define EXT4_PBLK_CMASK(s, pblk) ((pblk) &				\
378f5a44db5STheodore Ts'o 				  ~((ext4_fsblk_t) (s)->s_cluster_ratio - 1))
379f5a44db5STheodore Ts'o #define EXT4_LBLK_CMASK(s, lblk) ((lblk) &				\
380f5a44db5STheodore Ts'o 				  ~((ext4_lblk_t) (s)->s_cluster_ratio - 1))
3818fcc3a58SEric Whitney /* Fill in the low bits to get the last block of the cluster */
3828fcc3a58SEric Whitney #define EXT4_LBLK_CFILL(sbi, lblk) ((lblk) |				\
3838fcc3a58SEric Whitney 				    ((ext4_lblk_t) (sbi)->s_cluster_ratio - 1))
384f5a44db5STheodore Ts'o /* Get the cluster offset */
385f5a44db5STheodore Ts'o #define EXT4_PBLK_COFF(s, pblk) ((pblk) &				\
386f5a44db5STheodore Ts'o 				 ((ext4_fsblk_t) (s)->s_cluster_ratio - 1))
387f5a44db5STheodore Ts'o #define EXT4_LBLK_COFF(s, lblk) ((lblk) &				\
388f5a44db5STheodore Ts'o 				 ((ext4_lblk_t) (s)->s_cluster_ratio - 1))
389d5b8f310STheodore Ts'o 
3903dcf5451SChristoph Hellwig /*
3913dcf5451SChristoph Hellwig  * Structure of a blocks group descriptor
3923dcf5451SChristoph Hellwig  */
3933dcf5451SChristoph Hellwig struct ext4_group_desc
3943dcf5451SChristoph Hellwig {
3953dcf5451SChristoph Hellwig 	__le32	bg_block_bitmap_lo;	/* Blocks bitmap block */
3963dcf5451SChristoph Hellwig 	__le32	bg_inode_bitmap_lo;	/* Inodes bitmap block */
3973dcf5451SChristoph Hellwig 	__le32	bg_inode_table_lo;	/* Inodes table block */
398560671a0SAneesh Kumar K.V 	__le16	bg_free_blocks_count_lo;/* Free blocks count */
399560671a0SAneesh Kumar K.V 	__le16	bg_free_inodes_count_lo;/* Free inodes count */
400560671a0SAneesh Kumar K.V 	__le16	bg_used_dirs_count_lo;	/* Directories count */
4013dcf5451SChristoph Hellwig 	__le16	bg_flags;		/* EXT4_BG_flags (INODE_UNINIT, etc) */
402e6153918SDarrick J. Wong 	__le32  bg_exclude_bitmap_lo;   /* Exclude bitmap for snapshots */
403e6153918SDarrick J. Wong 	__le16  bg_block_bitmap_csum_lo;/* crc32c(s_uuid+grp_num+bbitmap) LE */
404e6153918SDarrick J. Wong 	__le16  bg_inode_bitmap_csum_lo;/* crc32c(s_uuid+grp_num+ibitmap) LE */
405560671a0SAneesh Kumar K.V 	__le16  bg_itable_unused_lo;	/* Unused inodes count */
4063dcf5451SChristoph Hellwig 	__le16  bg_checksum;		/* crc16(sb_uuid+group+desc) */
4073dcf5451SChristoph Hellwig 	__le32	bg_block_bitmap_hi;	/* Blocks bitmap block MSB */
4083dcf5451SChristoph Hellwig 	__le32	bg_inode_bitmap_hi;	/* Inodes bitmap block MSB */
4093dcf5451SChristoph Hellwig 	__le32	bg_inode_table_hi;	/* Inodes table block MSB */
4103dcf5451SChristoph Hellwig 	__le16	bg_free_blocks_count_hi;/* Free blocks count MSB */
4113dcf5451SChristoph Hellwig 	__le16	bg_free_inodes_count_hi;/* Free inodes count MSB */
4123dcf5451SChristoph Hellwig 	__le16	bg_used_dirs_count_hi;	/* Directories count MSB */
4133dcf5451SChristoph Hellwig 	__le16  bg_itable_unused_hi;    /* Unused inodes count MSB */
414e6153918SDarrick J. Wong 	__le32  bg_exclude_bitmap_hi;   /* Exclude bitmap block MSB */
415e6153918SDarrick J. Wong 	__le16  bg_block_bitmap_csum_hi;/* crc32c(s_uuid+grp_num+bbitmap) BE */
416e6153918SDarrick J. Wong 	__le16  bg_inode_bitmap_csum_hi;/* crc32c(s_uuid+grp_num+ibitmap) BE */
417e6153918SDarrick J. Wong 	__u32   bg_reserved;
4183dcf5451SChristoph Hellwig };
4193dcf5451SChristoph Hellwig 
42041a246d1SDarrick J. Wong #define EXT4_BG_INODE_BITMAP_CSUM_HI_END	\
42141a246d1SDarrick J. Wong 	(offsetof(struct ext4_group_desc, bg_inode_bitmap_csum_hi) + \
42241a246d1SDarrick J. Wong 	 sizeof(__le16))
42341a246d1SDarrick J. Wong #define EXT4_BG_BLOCK_BITMAP_CSUM_HI_END	\
42441a246d1SDarrick J. Wong 	(offsetof(struct ext4_group_desc, bg_block_bitmap_csum_hi) + \
42541a246d1SDarrick J. Wong 	 sizeof(__le16))
42641a246d1SDarrick J. Wong 
427772cb7c8SJose R. Santos /*
428772cb7c8SJose R. Santos  * Structure of a flex block group info
429772cb7c8SJose R. Santos  */
430772cb7c8SJose R. Santos 
431772cb7c8SJose R. Santos struct flex_groups {
43290ba983fSTheodore Ts'o 	atomic64_t	free_clusters;
4339f24e420STheodore Ts'o 	atomic_t	free_inodes;
4347d39db14STheodore Ts'o 	atomic_t	used_dirs;
435772cb7c8SJose R. Santos };
436772cb7c8SJose R. Santos 
4373dcf5451SChristoph Hellwig #define EXT4_BG_INODE_UNINIT	0x0001 /* Inode table/bitmap not in use */
4383dcf5451SChristoph Hellwig #define EXT4_BG_BLOCK_UNINIT	0x0002 /* Block bitmap not in use */
4393dcf5451SChristoph Hellwig #define EXT4_BG_INODE_ZEROED	0x0004 /* On-disk itable initialized to zero */
4403dcf5451SChristoph Hellwig 
4413dcf5451SChristoph Hellwig /*
4423dcf5451SChristoph Hellwig  * Macro-instructions used to manage group descriptors
4433dcf5451SChristoph Hellwig  */
4443dcf5451SChristoph Hellwig #define EXT4_MIN_DESC_SIZE		32
4453dcf5451SChristoph Hellwig #define EXT4_MIN_DESC_SIZE_64BIT	64
4463dcf5451SChristoph Hellwig #define	EXT4_MAX_DESC_SIZE		EXT4_MIN_BLOCK_SIZE
4473dcf5451SChristoph Hellwig #define EXT4_DESC_SIZE(s)		(EXT4_SB(s)->s_desc_size)
4483dcf5451SChristoph Hellwig #ifdef __KERNEL__
4493dcf5451SChristoph Hellwig # define EXT4_BLOCKS_PER_GROUP(s)	(EXT4_SB(s)->s_blocks_per_group)
450281b5995STheodore Ts'o # define EXT4_CLUSTERS_PER_GROUP(s)	(EXT4_SB(s)->s_clusters_per_group)
4513dcf5451SChristoph Hellwig # define EXT4_DESC_PER_BLOCK(s)		(EXT4_SB(s)->s_desc_per_block)
4523dcf5451SChristoph Hellwig # define EXT4_INODES_PER_GROUP(s)	(EXT4_SB(s)->s_inodes_per_group)
4533dcf5451SChristoph Hellwig # define EXT4_DESC_PER_BLOCK_BITS(s)	(EXT4_SB(s)->s_desc_per_block_bits)
4543dcf5451SChristoph Hellwig #else
4553dcf5451SChristoph Hellwig # define EXT4_BLOCKS_PER_GROUP(s)	((s)->s_blocks_per_group)
4563dcf5451SChristoph Hellwig # define EXT4_DESC_PER_BLOCK(s)		(EXT4_BLOCK_SIZE(s) / EXT4_DESC_SIZE(s))
4573dcf5451SChristoph Hellwig # define EXT4_INODES_PER_GROUP(s)	((s)->s_inodes_per_group)
4583dcf5451SChristoph Hellwig #endif
4593dcf5451SChristoph Hellwig 
4603dcf5451SChristoph Hellwig /*
4613dcf5451SChristoph Hellwig  * Constants relative to the data blocks
4623dcf5451SChristoph Hellwig  */
4633dcf5451SChristoph Hellwig #define	EXT4_NDIR_BLOCKS		12
4643dcf5451SChristoph Hellwig #define	EXT4_IND_BLOCK			EXT4_NDIR_BLOCKS
4653dcf5451SChristoph Hellwig #define	EXT4_DIND_BLOCK			(EXT4_IND_BLOCK + 1)
4663dcf5451SChristoph Hellwig #define	EXT4_TIND_BLOCK			(EXT4_DIND_BLOCK + 1)
4673dcf5451SChristoph Hellwig #define	EXT4_N_BLOCKS			(EXT4_TIND_BLOCK + 1)
4683dcf5451SChristoph Hellwig 
4693dcf5451SChristoph Hellwig /*
4703dcf5451SChristoph Hellwig  * Inode flags
4713dcf5451SChristoph Hellwig  */
4723dcf5451SChristoph Hellwig #define	EXT4_SECRM_FL			0x00000001 /* Secure deletion */
4733dcf5451SChristoph Hellwig #define	EXT4_UNRM_FL			0x00000002 /* Undelete */
4743dcf5451SChristoph Hellwig #define	EXT4_COMPR_FL			0x00000004 /* Compress file */
4753dcf5451SChristoph Hellwig #define EXT4_SYNC_FL			0x00000008 /* Synchronous updates */
4763dcf5451SChristoph Hellwig #define EXT4_IMMUTABLE_FL		0x00000010 /* Immutable file */
4773dcf5451SChristoph Hellwig #define EXT4_APPEND_FL			0x00000020 /* writes to file may only append */
4783dcf5451SChristoph Hellwig #define EXT4_NODUMP_FL			0x00000040 /* do not dump file */
4793dcf5451SChristoph Hellwig #define EXT4_NOATIME_FL			0x00000080 /* do not update atime */
4803dcf5451SChristoph Hellwig /* Reserved for compression usage... */
4813dcf5451SChristoph Hellwig #define EXT4_DIRTY_FL			0x00000100
4823dcf5451SChristoph Hellwig #define EXT4_COMPRBLK_FL		0x00000200 /* One or more compressed clusters */
4833dcf5451SChristoph Hellwig #define EXT4_NOCOMPR_FL			0x00000400 /* Don't compress */
4843edc18d8STheodore Ts'o 	/* nb: was previously EXT2_ECOMPR_FL */
4853edc18d8STheodore Ts'o #define EXT4_ENCRYPT_FL			0x00000800 /* encrypted file */
4863dcf5451SChristoph Hellwig /* End compression flags --- maybe not all used */
4873dcf5451SChristoph Hellwig #define EXT4_INDEX_FL			0x00001000 /* hash-indexed directory */
4883dcf5451SChristoph Hellwig #define EXT4_IMAGIC_FL			0x00002000 /* AFS directory */
4893dcf5451SChristoph Hellwig #define EXT4_JOURNAL_DATA_FL		0x00004000 /* file data should be journaled */
4903dcf5451SChristoph Hellwig #define EXT4_NOTAIL_FL			0x00008000 /* file tail should not be merged */
4913dcf5451SChristoph Hellwig #define EXT4_DIRSYNC_FL			0x00010000 /* dirsync behaviour (directories only) */
4923dcf5451SChristoph Hellwig #define EXT4_TOPDIR_FL			0x00020000 /* Top of directory hierarchies*/
4933dcf5451SChristoph Hellwig #define EXT4_HUGE_FILE_FL               0x00040000 /* Set to each huge file */
4943dcf5451SChristoph Hellwig #define EXT4_EXTENTS_FL			0x00080000 /* Inode uses extents */
495c93d8f88SEric Biggers #define EXT4_VERITY_FL			0x00100000 /* Verity protected inode */
496f710b4b9STheodore Ts'o #define EXT4_EA_INODE_FL	        0x00200000 /* Inode used for large EA */
4974337ecd1SEric Whitney /* 0x00400000 was formerly EXT4_EOFBLOCKS_FL */
498b383a73fSIra Weiny 
499b383a73fSIra Weiny #define EXT4_DAX_FL			0x02000000 /* Inode is DAX */
500b383a73fSIra Weiny 
50167cf5b09STao Ma #define EXT4_INLINE_DATA_FL		0x10000000 /* Inode has inline data. */
5028b4953e1STheodore Ts'o #define EXT4_PROJINHERIT_FL		0x20000000 /* Create with parents projid */
503de8ff14cSEric Biggers #define EXT4_CASEFOLD_FL		0x40000000 /* Casefolded directory */
5043dcf5451SChristoph Hellwig #define EXT4_RESERVED_FL		0x80000000 /* reserved for ext4 lib */
5053dcf5451SChristoph Hellwig 
5062a12e147SEric Biggers /* User modifiable flags */
5072a12e147SEric Biggers #define EXT4_FL_USER_MODIFIABLE		(EXT4_SECRM_FL | \
5082a12e147SEric Biggers 					 EXT4_UNRM_FL | \
5092a12e147SEric Biggers 					 EXT4_COMPR_FL | \
5102a12e147SEric Biggers 					 EXT4_SYNC_FL | \
5112a12e147SEric Biggers 					 EXT4_IMMUTABLE_FL | \
5122a12e147SEric Biggers 					 EXT4_APPEND_FL | \
5132a12e147SEric Biggers 					 EXT4_NODUMP_FL | \
5142a12e147SEric Biggers 					 EXT4_NOATIME_FL | \
5152a12e147SEric Biggers 					 EXT4_JOURNAL_DATA_FL | \
5162a12e147SEric Biggers 					 EXT4_NOTAIL_FL | \
5172a12e147SEric Biggers 					 EXT4_DIRSYNC_FL | \
5182a12e147SEric Biggers 					 EXT4_TOPDIR_FL | \
5192a12e147SEric Biggers 					 EXT4_EXTENTS_FL | \
5202a12e147SEric Biggers 					 0x00400000 /* EXT4_EOFBLOCKS_FL */ | \
5212a12e147SEric Biggers 					 EXT4_DAX_FL | \
5222a12e147SEric Biggers 					 EXT4_PROJINHERIT_FL | \
5232a12e147SEric Biggers 					 EXT4_CASEFOLD_FL)
5242a12e147SEric Biggers 
5252a12e147SEric Biggers /* User visible flags */
5262a12e147SEric Biggers #define EXT4_FL_USER_VISIBLE		(EXT4_FL_USER_MODIFIABLE | \
5272a12e147SEric Biggers 					 EXT4_DIRTY_FL | \
5282a12e147SEric Biggers 					 EXT4_COMPRBLK_FL | \
5292a12e147SEric Biggers 					 EXT4_NOCOMPR_FL | \
5302a12e147SEric Biggers 					 EXT4_ENCRYPT_FL | \
5312a12e147SEric Biggers 					 EXT4_INDEX_FL | \
5322a12e147SEric Biggers 					 EXT4_VERITY_FL | \
5332a12e147SEric Biggers 					 EXT4_INLINE_DATA_FL)
5343dcf5451SChristoph Hellwig 
5358fa43a81SDuane Griffin /* Flags that should be inherited by new inodes from their parent. */
5368fa43a81SDuane Griffin #define EXT4_FL_INHERITED (EXT4_SECRM_FL | EXT4_UNRM_FL | EXT4_COMPR_FL |\
5371cd9f097STheodore Ts'o 			   EXT4_SYNC_FL | EXT4_NODUMP_FL | EXT4_NOATIME_FL |\
5388fa43a81SDuane Griffin 			   EXT4_NOCOMPR_FL | EXT4_JOURNAL_DATA_FL |\
539040cb378SLi Xi 			   EXT4_NOTAIL_FL | EXT4_DIRSYNC_FL |\
540b383a73fSIra Weiny 			   EXT4_PROJINHERIT_FL | EXT4_CASEFOLD_FL |\
541b383a73fSIra Weiny 			   EXT4_DAX_FL)
5428fa43a81SDuane Griffin 
5432dc6b0d4SDuane Griffin /* Flags that are appropriate for regular files (all but dir-specific ones). */
5447ddf79a1SWang Shilong #define EXT4_REG_FLMASK (~(EXT4_DIRSYNC_FL | EXT4_TOPDIR_FL | EXT4_CASEFOLD_FL |\
5457ddf79a1SWang Shilong 			   EXT4_PROJINHERIT_FL))
5462dc6b0d4SDuane Griffin 
5472dc6b0d4SDuane Griffin /* Flags that are appropriate for non-directories/regular files. */
5482dc6b0d4SDuane Griffin #define EXT4_OTHER_FLMASK (EXT4_NODUMP_FL | EXT4_NOATIME_FL)
5492dc6b0d4SDuane Griffin 
550abdc644eSyangerkun /* The only flags that should be swapped */
551abdc644eSyangerkun #define EXT4_FL_SHOULD_SWAP (EXT4_HUGE_FILE_FL | EXT4_EXTENTS_FL)
552abdc644eSyangerkun 
553b383a73fSIra Weiny /* Flags which are mutually exclusive to DAX */
554b383a73fSIra Weiny #define EXT4_DAX_MUT_EXCL (EXT4_VERITY_FL | EXT4_ENCRYPT_FL |\
555aa2f7792SXiao Yang 			   EXT4_JOURNAL_DATA_FL | EXT4_INLINE_DATA_FL)
556b383a73fSIra Weiny 
5572dc6b0d4SDuane Griffin /* Mask out flags that are inappropriate for the given type of inode. */
5582dc6b0d4SDuane Griffin static inline __u32 ext4_mask_flags(umode_t mode, __u32 flags)
5592dc6b0d4SDuane Griffin {
5602dc6b0d4SDuane Griffin 	if (S_ISDIR(mode))
5612dc6b0d4SDuane Griffin 		return flags;
5622dc6b0d4SDuane Griffin 	else if (S_ISREG(mode))
5632dc6b0d4SDuane Griffin 		return flags & EXT4_REG_FLMASK;
5642dc6b0d4SDuane Griffin 	else
5652dc6b0d4SDuane Griffin 		return flags & EXT4_OTHER_FLMASK;
5662dc6b0d4SDuane Griffin }
5672dc6b0d4SDuane Griffin 
56812e9b892SDmitry Monakhov /*
56912e9b892SDmitry Monakhov  * Inode flags used for atomic set/get
57012e9b892SDmitry Monakhov  */
57112e9b892SDmitry Monakhov enum {
57212e9b892SDmitry Monakhov 	EXT4_INODE_SECRM	= 0,	/* Secure deletion */
57312e9b892SDmitry Monakhov 	EXT4_INODE_UNRM		= 1,	/* Undelete */
57412e9b892SDmitry Monakhov 	EXT4_INODE_COMPR	= 2,	/* Compress file */
57512e9b892SDmitry Monakhov 	EXT4_INODE_SYNC		= 3,	/* Synchronous updates */
57612e9b892SDmitry Monakhov 	EXT4_INODE_IMMUTABLE	= 4,	/* Immutable file */
57712e9b892SDmitry Monakhov 	EXT4_INODE_APPEND	= 5,	/* writes to file may only append */
57812e9b892SDmitry Monakhov 	EXT4_INODE_NODUMP	= 6,	/* do not dump file */
57912e9b892SDmitry Monakhov 	EXT4_INODE_NOATIME	= 7,	/* do not update atime */
58012e9b892SDmitry Monakhov /* Reserved for compression usage... */
58112e9b892SDmitry Monakhov 	EXT4_INODE_DIRTY	= 8,
58212e9b892SDmitry Monakhov 	EXT4_INODE_COMPRBLK	= 9,	/* One or more compressed clusters */
58312e9b892SDmitry Monakhov 	EXT4_INODE_NOCOMPR	= 10,	/* Don't compress */
584f542fbe8STheodore Ts'o 	EXT4_INODE_ENCRYPT	= 11,	/* Encrypted file */
58512e9b892SDmitry Monakhov /* End compression flags --- maybe not all used */
58612e9b892SDmitry Monakhov 	EXT4_INODE_INDEX	= 12,	/* hash-indexed directory */
58712e9b892SDmitry Monakhov 	EXT4_INODE_IMAGIC	= 13,	/* AFS directory */
58812e9b892SDmitry Monakhov 	EXT4_INODE_JOURNAL_DATA	= 14,	/* file data should be journaled */
58912e9b892SDmitry Monakhov 	EXT4_INODE_NOTAIL	= 15,	/* file tail should not be merged */
59012e9b892SDmitry Monakhov 	EXT4_INODE_DIRSYNC	= 16,	/* dirsync behaviour (directories only) */
59112e9b892SDmitry Monakhov 	EXT4_INODE_TOPDIR	= 17,	/* Top of directory hierarchies*/
59212e9b892SDmitry Monakhov 	EXT4_INODE_HUGE_FILE	= 18,	/* Set to each huge file */
59312e9b892SDmitry Monakhov 	EXT4_INODE_EXTENTS	= 19,	/* Inode uses extents */
594c93d8f88SEric Biggers 	EXT4_INODE_VERITY	= 20,	/* Verity protected inode */
59512e9b892SDmitry Monakhov 	EXT4_INODE_EA_INODE	= 21,	/* Inode used for large EA */
5964337ecd1SEric Whitney /* 22 was formerly EXT4_INODE_EOFBLOCKS */
597b383a73fSIra Weiny 	EXT4_INODE_DAX		= 25,	/* Inode is DAX */
59867cf5b09STao Ma 	EXT4_INODE_INLINE_DATA	= 28,	/* Data in inode. */
5998b4953e1STheodore Ts'o 	EXT4_INODE_PROJINHERIT	= 29,	/* Create with parents projid */
600de8ff14cSEric Biggers 	EXT4_INODE_CASEFOLD	= 30,	/* Casefolded directory */
60112e9b892SDmitry Monakhov 	EXT4_INODE_RESERVED	= 31,	/* reserved for ext4 lib */
60212e9b892SDmitry Monakhov };
60312e9b892SDmitry Monakhov 
60412e9b892SDmitry Monakhov /*
6059a4c8019SCarlos Maiolino  * Since it's pretty easy to mix up bit numbers and hex values, we use a
6069a4c8019SCarlos Maiolino  * build-time check to make sure that EXT4_XXX_FL is consistent with respect to
6079a4c8019SCarlos Maiolino  * EXT4_INODE_XXX. If all is well, the macros will be dropped, so, it won't cost
6089a4c8019SCarlos Maiolino  * any extra space in the compiled kernel image, otherwise, the build will fail.
6099a4c8019SCarlos Maiolino  * It's important that these values are the same, since we are using
6109a4c8019SCarlos Maiolino  * EXT4_INODE_XXX to test for flag values, but EXT4_XXX_FL must be consistent
6119a4c8019SCarlos Maiolino  * with the values of FS_XXX_FL defined in include/linux/fs.h and the on-disk
6129a4c8019SCarlos Maiolino  * values found in ext2, ext3 and ext4 filesystems, and of course the values
6139a4c8019SCarlos Maiolino  * defined in e2fsprogs.
61412e9b892SDmitry Monakhov  *
61512e9b892SDmitry Monakhov  * It's not paranoia if the Murphy's Law really *is* out to get you.  :-)
61612e9b892SDmitry Monakhov  */
6173bf678a0SGaosheng Cui #define TEST_FLAG_VALUE(FLAG) (EXT4_##FLAG##_FL == (1U << EXT4_INODE_##FLAG))
6189a4c8019SCarlos Maiolino #define CHECK_FLAG_VALUE(FLAG) BUILD_BUG_ON(!TEST_FLAG_VALUE(FLAG))
6199a4c8019SCarlos Maiolino 
62012e9b892SDmitry Monakhov static inline void ext4_check_flag_values(void)
62112e9b892SDmitry Monakhov {
62212e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(SECRM);
62312e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(UNRM);
62412e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(COMPR);
62512e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(SYNC);
62612e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(IMMUTABLE);
62712e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(APPEND);
62812e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(NODUMP);
62912e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(NOATIME);
63012e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(DIRTY);
63112e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(COMPRBLK);
63212e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(NOCOMPR);
6333edc18d8STheodore Ts'o 	CHECK_FLAG_VALUE(ENCRYPT);
63412e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(INDEX);
63512e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(IMAGIC);
63612e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(JOURNAL_DATA);
63712e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(NOTAIL);
63812e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(DIRSYNC);
63912e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(TOPDIR);
64012e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(HUGE_FILE);
64112e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(EXTENTS);
642c93d8f88SEric Biggers 	CHECK_FLAG_VALUE(VERITY);
64312e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(EA_INODE);
64467cf5b09STao Ma 	CHECK_FLAG_VALUE(INLINE_DATA);
6458b4953e1STheodore Ts'o 	CHECK_FLAG_VALUE(PROJINHERIT);
646de8ff14cSEric Biggers 	CHECK_FLAG_VALUE(CASEFOLD);
64712e9b892SDmitry Monakhov 	CHECK_FLAG_VALUE(RESERVED);
64812e9b892SDmitry Monakhov }
64912e9b892SDmitry Monakhov 
6504d92dc0fSBen Hutchings #if defined(__KERNEL__) && defined(CONFIG_COMPAT)
6514d92dc0fSBen Hutchings struct compat_ext4_new_group_input {
6524d92dc0fSBen Hutchings 	u32 group;
6534d92dc0fSBen Hutchings 	compat_u64 block_bitmap;
6544d92dc0fSBen Hutchings 	compat_u64 inode_bitmap;
6554d92dc0fSBen Hutchings 	compat_u64 inode_table;
6564d92dc0fSBen Hutchings 	u32 blocks_count;
6574d92dc0fSBen Hutchings 	u16 reserved_blocks;
6584d92dc0fSBen Hutchings 	u16 unused;
6594d92dc0fSBen Hutchings };
6604d92dc0fSBen Hutchings #endif
6614d92dc0fSBen Hutchings 
6623dcf5451SChristoph Hellwig /* The struct ext4_new_group_input in kernel space, with free_blocks_count */
6633dcf5451SChristoph Hellwig struct ext4_new_group_data {
6643dcf5451SChristoph Hellwig 	__u32 group;
6653dcf5451SChristoph Hellwig 	__u64 block_bitmap;
6663dcf5451SChristoph Hellwig 	__u64 inode_bitmap;
6673dcf5451SChristoph Hellwig 	__u64 inode_table;
6683dcf5451SChristoph Hellwig 	__u32 blocks_count;
6693dcf5451SChristoph Hellwig 	__u16 reserved_blocks;
670d77147ffSharshads 	__u16 mdata_blocks;
671d77147ffSharshads 	__u32 free_clusters_count;
6723dcf5451SChristoph Hellwig };
6733dcf5451SChristoph Hellwig 
67433afdcc5SYongqiang Yang /* Indexes used to index group tables in ext4_new_group_data */
67533afdcc5SYongqiang Yang enum {
67633afdcc5SYongqiang Yang 	BLOCK_BITMAP = 0,	/* block bitmap */
67733afdcc5SYongqiang Yang 	INODE_BITMAP,		/* inode bitmap */
67833afdcc5SYongqiang Yang 	INODE_TABLE,		/* inode tables */
67933afdcc5SYongqiang Yang 	GROUP_TABLE_COUNT,
68033afdcc5SYongqiang Yang };
68133afdcc5SYongqiang Yang 
6823dcf5451SChristoph Hellwig /*
68379e83036SEric Sandeen  * Flags used by ext4_map_blocks()
6843dcf5451SChristoph Hellwig  */
685556615dcSLukas Czerner 	/* Allocate any needed blocks and/or convert an unwritten
686c2177057STheodore Ts'o 	   extent to be an initialized ext4 */
6872ac3b6e0STheodore Ts'o #define EXT4_GET_BLOCKS_CREATE			0x0001
688556615dcSLukas Czerner 	/* Request the creation of an unwritten extent */
689556615dcSLukas Czerner #define EXT4_GET_BLOCKS_UNWRIT_EXT		0x0002
690556615dcSLukas Czerner #define EXT4_GET_BLOCKS_CREATE_UNWRIT_EXT	(EXT4_GET_BLOCKS_UNWRIT_EXT|\
691c2177057STheodore Ts'o 						 EXT4_GET_BLOCKS_CREATE)
69227dd4385SLukas Czerner 	/* Caller is from the delayed allocation writeout path
69327dd4385SLukas Czerner 	 * finally doing the actual allocation of delayed blocks */
69403f5d8bcSJan Kara #define EXT4_GET_BLOCKS_DELALLOC_RESERVE	0x0004
6950031462bSMingming Cao 	/* caller is from the direct IO path, request to creation of an
696556615dcSLukas Czerner 	unwritten extents if not allocated, split the unwritten
6970031462bSMingming Cao 	extent if blocks has been preallocated already*/
698c7064ef1SJiaying Zhang #define EXT4_GET_BLOCKS_PRE_IO			0x0008
6991296cc85SAneesh Kumar K.V #define EXT4_GET_BLOCKS_CONVERT			0x0010
700c7064ef1SJiaying Zhang #define EXT4_GET_BLOCKS_IO_CREATE_EXT		(EXT4_GET_BLOCKS_PRE_IO|\
701556615dcSLukas Czerner 					 EXT4_GET_BLOCKS_CREATE_UNWRIT_EXT)
702c7064ef1SJiaying Zhang 	/* Convert extent to initialized after IO complete */
703c7064ef1SJiaying Zhang #define EXT4_GET_BLOCKS_IO_CONVERT_EXT		(EXT4_GET_BLOCKS_CONVERT|\
704556615dcSLukas Czerner 					 EXT4_GET_BLOCKS_CREATE_UNWRIT_EXT)
70527dd4385SLukas Czerner 	/* Eventual metadata allocation (due to growing extent tree)
70627dd4385SLukas Czerner 	 * should not fail, so try to use reserved blocks for that.*/
70727dd4385SLukas Czerner #define EXT4_GET_BLOCKS_METADATA_NOFAIL		0x0020
708556b27abSVivek Haldar 	/* Don't normalize allocation size (used for fallocate) */
709556b27abSVivek Haldar #define EXT4_GET_BLOCKS_NO_NORMALIZE		0x0040
710b8a86845SLukas Czerner 	/* Convert written extents to unwritten */
7112dcba478SJan Kara #define EXT4_GET_BLOCKS_CONVERT_UNWRITTEN	0x0100
712c86d8db3SJan Kara 	/* Write zeros to newly created written extents */
713c86d8db3SJan Kara #define EXT4_GET_BLOCKS_ZERO			0x0200
714c86d8db3SJan Kara #define EXT4_GET_BLOCKS_CREATE_ZERO		(EXT4_GET_BLOCKS_CREATE |\
715c86d8db3SJan Kara 					EXT4_GET_BLOCKS_ZERO)
716ee0876bcSJan Kara 	/* Caller will submit data before dropping transaction handle. This
717ee0876bcSJan Kara 	 * allows jbd2 to avoid submitting data before commit. */
718ee0876bcSJan Kara #define EXT4_GET_BLOCKS_IO_SUBMIT		0x0400
7199558cf14SZhang Yi 	/* Caller is in the atomic contex, find extent if it has been cached */
7209558cf14SZhang Yi #define EXT4_GET_BLOCKS_CACHED_NOWAIT		0x0800
7213dcf5451SChristoph Hellwig 
7223dcf5451SChristoph Hellwig /*
7237869a4a6STheodore Ts'o  * The bit position of these flags must not overlap with any of the
724ed8a1a76STheodore Ts'o  * EXT4_GET_BLOCKS_*.  They are used by ext4_find_extent(),
725107a7bd3STheodore Ts'o  * read_extent_tree_block(), ext4_split_extent_at(),
7267869a4a6STheodore Ts'o  * ext4_ext_insert_extent(), and ext4_ext_create_new_leaf().
7277869a4a6STheodore Ts'o  * EXT4_EX_NOCACHE is used to indicate that the we shouldn't be
7287869a4a6STheodore Ts'o  * caching the extents when reading from the extent tree while a
7297869a4a6STheodore Ts'o  * truncate or punch hole operation is in progress.
730107a7bd3STheodore Ts'o  */
731d26e2c4dSTheodore Ts'o #define EXT4_EX_NOCACHE				0x40000000
732d26e2c4dSTheodore Ts'o #define EXT4_EX_FORCE_CACHE			0x20000000
73373c384c0STheodore Ts'o #define EXT4_EX_NOFAIL				0x10000000
734107a7bd3STheodore Ts'o 
735107a7bd3STheodore Ts'o /*
736e6362609STheodore Ts'o  * Flags used by ext4_free_blocks
737e6362609STheodore Ts'o  */
738e6362609STheodore Ts'o #define EXT4_FREE_BLOCKS_METADATA		0x0001
739e6362609STheodore Ts'o #define EXT4_FREE_BLOCKS_FORGET			0x0002
7401f2acb60STheodore Ts'o #define EXT4_FREE_BLOCKS_VALIDATED		0x0004
7417132de74SMaxim Patlasov #define EXT4_FREE_BLOCKS_NO_QUOT_UPDATE		0x0008
74284130193STheodore Ts'o #define EXT4_FREE_BLOCKS_NOFREE_FIRST_CLUSTER	0x0010
74384130193STheodore Ts'o #define EXT4_FREE_BLOCKS_NOFREE_LAST_CLUSTER	0x0020
7449fe67149SEric Whitney #define EXT4_FREE_BLOCKS_RERESERVE_CLUSTER      0x0040
745e6362609STheodore Ts'o 
746899ad0ceSBen Hutchings #if defined(__KERNEL__) && defined(CONFIG_COMPAT)
7473dcf5451SChristoph Hellwig /*
7483dcf5451SChristoph Hellwig  * ioctl commands in 32 bit emulation
7493dcf5451SChristoph Hellwig  */
7503dcf5451SChristoph Hellwig #define EXT4_IOC32_GETVERSION		_IOR('f', 3, int)
7513dcf5451SChristoph Hellwig #define EXT4_IOC32_SETVERSION		_IOW('f', 4, int)
7523dcf5451SChristoph Hellwig #define EXT4_IOC32_GETRSVSZ		_IOR('f', 5, int)
7533dcf5451SChristoph Hellwig #define EXT4_IOC32_SETRSVSZ		_IOW('f', 6, int)
7543dcf5451SChristoph Hellwig #define EXT4_IOC32_GROUP_EXTEND		_IOW('f', 7, unsigned int)
7554d92dc0fSBen Hutchings #define EXT4_IOC32_GROUP_ADD		_IOW('f', 8, struct compat_ext4_new_group_input)
7563dcf5451SChristoph Hellwig #define EXT4_IOC32_GETVERSION_OLD	FS_IOC32_GETVERSION
7573dcf5451SChristoph Hellwig #define EXT4_IOC32_SETVERSION_OLD	FS_IOC32_SETVERSION
758899ad0ceSBen Hutchings #endif
7593dcf5451SChristoph Hellwig 
760b595076aSUwe Kleine-König /* Max physical block we can address w/o extents */
761fb0a387dSEric Sandeen #define EXT4_MAX_BLOCK_FILE_PHYS	0xFFFFFFFF
762fb0a387dSEric Sandeen 
763bcd8e91fSTheodore Ts'o /* Max logical block we can support */
7649f44eda1SRitesh Harjani #define EXT4_MAX_LOGICAL_BLOCK		0xFFFFFFFE
765bcd8e91fSTheodore Ts'o 
7663dcf5451SChristoph Hellwig /*
7673dcf5451SChristoph Hellwig  * Structure of an inode on the disk
7683dcf5451SChristoph Hellwig  */
7693dcf5451SChristoph Hellwig struct ext4_inode {
7703dcf5451SChristoph Hellwig 	__le16	i_mode;		/* File mode */
7713dcf5451SChristoph Hellwig 	__le16	i_uid;		/* Low 16 bits of Owner Uid */
7723dcf5451SChristoph Hellwig 	__le32	i_size_lo;	/* Size in bytes */
7733dcf5451SChristoph Hellwig 	__le32	i_atime;	/* Access time */
7743dcf5451SChristoph Hellwig 	__le32	i_ctime;	/* Inode Change time */
7753dcf5451SChristoph Hellwig 	__le32	i_mtime;	/* Modification time */
7763dcf5451SChristoph Hellwig 	__le32	i_dtime;	/* Deletion Time */
7773dcf5451SChristoph Hellwig 	__le16	i_gid;		/* Low 16 bits of Group Id */
7783dcf5451SChristoph Hellwig 	__le16	i_links_count;	/* Links count */
7793dcf5451SChristoph Hellwig 	__le32	i_blocks_lo;	/* Blocks count */
7803dcf5451SChristoph Hellwig 	__le32	i_flags;	/* File flags */
7813dcf5451SChristoph Hellwig 	union {
7823dcf5451SChristoph Hellwig 		struct {
7833dcf5451SChristoph Hellwig 			__le32  l_i_version;
7843dcf5451SChristoph Hellwig 		} linux1;
7853dcf5451SChristoph Hellwig 		struct {
7863dcf5451SChristoph Hellwig 			__u32  h_i_translator;
7873dcf5451SChristoph Hellwig 		} hurd1;
7883dcf5451SChristoph Hellwig 		struct {
7893dcf5451SChristoph Hellwig 			__u32  m_i_reserved1;
7903dcf5451SChristoph Hellwig 		} masix1;
7913dcf5451SChristoph Hellwig 	} osd1;				/* OS dependent 1 */
7923dcf5451SChristoph Hellwig 	__le32	i_block[EXT4_N_BLOCKS];/* Pointers to blocks */
7933dcf5451SChristoph Hellwig 	__le32	i_generation;	/* File version (for NFS) */
7943dcf5451SChristoph Hellwig 	__le32	i_file_acl_lo;	/* File ACL */
7953dcf5451SChristoph Hellwig 	__le32	i_size_high;
7963dcf5451SChristoph Hellwig 	__le32	i_obso_faddr;	/* Obsoleted fragment address */
7973dcf5451SChristoph Hellwig 	union {
7983dcf5451SChristoph Hellwig 		struct {
7993dcf5451SChristoph Hellwig 			__le16	l_i_blocks_high; /* were l_i_reserved1 */
8003dcf5451SChristoph Hellwig 			__le16	l_i_file_acl_high;
8013dcf5451SChristoph Hellwig 			__le16	l_i_uid_high;	/* these 2 fields */
8023dcf5451SChristoph Hellwig 			__le16	l_i_gid_high;	/* were reserved2[0] */
803e6153918SDarrick J. Wong 			__le16	l_i_checksum_lo;/* crc32c(uuid+inum+inode) LE */
804e6153918SDarrick J. Wong 			__le16	l_i_reserved;
8053dcf5451SChristoph Hellwig 		} linux2;
8063dcf5451SChristoph Hellwig 		struct {
8073dcf5451SChristoph Hellwig 			__le16	h_i_reserved1;	/* Obsoleted fragment number/size which are removed in ext4 */
8083dcf5451SChristoph Hellwig 			__u16	h_i_mode_high;
8093dcf5451SChristoph Hellwig 			__u16	h_i_uid_high;
8103dcf5451SChristoph Hellwig 			__u16	h_i_gid_high;
8113dcf5451SChristoph Hellwig 			__u32	h_i_author;
8123dcf5451SChristoph Hellwig 		} hurd2;
8133dcf5451SChristoph Hellwig 		struct {
8143dcf5451SChristoph Hellwig 			__le16	h_i_reserved1;	/* Obsoleted fragment number/size which are removed in ext4 */
8153dcf5451SChristoph Hellwig 			__le16	m_i_file_acl_high;
8163dcf5451SChristoph Hellwig 			__u32	m_i_reserved2[2];
8173dcf5451SChristoph Hellwig 		} masix2;
8183dcf5451SChristoph Hellwig 	} osd2;				/* OS dependent 2 */
8193dcf5451SChristoph Hellwig 	__le16	i_extra_isize;
820e6153918SDarrick J. Wong 	__le16	i_checksum_hi;	/* crc32c(uuid+inum+inode) BE */
8213dcf5451SChristoph Hellwig 	__le32  i_ctime_extra;  /* extra Change time      (nsec << 2 | epoch) */
8223dcf5451SChristoph Hellwig 	__le32  i_mtime_extra;  /* extra Modification time(nsec << 2 | epoch) */
8233dcf5451SChristoph Hellwig 	__le32  i_atime_extra;  /* extra Access time      (nsec << 2 | epoch) */
8243dcf5451SChristoph Hellwig 	__le32  i_crtime;       /* File Creation time */
8253dcf5451SChristoph Hellwig 	__le32  i_crtime_extra; /* extra FileCreationtime (nsec << 2 | epoch) */
8263dcf5451SChristoph Hellwig 	__le32  i_version_hi;	/* high 32 bits for 64-bit version */
8278b4953e1STheodore Ts'o 	__le32	i_projid;	/* Project ID */
8283dcf5451SChristoph Hellwig };
8293dcf5451SChristoph Hellwig 
8303dcf5451SChristoph Hellwig #define EXT4_EPOCH_BITS 2
8313dcf5451SChristoph Hellwig #define EXT4_EPOCH_MASK ((1 << EXT4_EPOCH_BITS) - 1)
8323dcf5451SChristoph Hellwig #define EXT4_NSEC_MASK  (~0UL << EXT4_EPOCH_BITS)
8333dcf5451SChristoph Hellwig 
8343dcf5451SChristoph Hellwig /*
8353dcf5451SChristoph Hellwig  * Extended fields will fit into an inode if the filesystem was formatted
8363dcf5451SChristoph Hellwig  * with large inodes (-I 256 or larger) and there are not currently any EAs
8373dcf5451SChristoph Hellwig  * consuming all of the available space. For new inodes we always reserve
8383dcf5451SChristoph Hellwig  * enough space for the kernel's known extended fields, but for inodes
8393dcf5451SChristoph Hellwig  * created with an old kernel this might not have been the case. None of
8403dcf5451SChristoph Hellwig  * the extended inode fields is critical for correct filesystem operation.
8413dcf5451SChristoph Hellwig  * This macro checks if a certain field fits in the inode. Note that
8423dcf5451SChristoph Hellwig  * inode-size = GOOD_OLD_INODE_SIZE + i_extra_isize
8433dcf5451SChristoph Hellwig  */
8443dcf5451SChristoph Hellwig #define EXT4_FITS_IN_INODE(ext4_inode, einode, field)	\
8453dcf5451SChristoph Hellwig 	((offsetof(typeof(*ext4_inode), field) +	\
8463dcf5451SChristoph Hellwig 	  sizeof((ext4_inode)->field))			\
8473dcf5451SChristoph Hellwig 	<= (EXT4_GOOD_OLD_INODE_SIZE +			\
8483dcf5451SChristoph Hellwig 	    (einode)->i_extra_isize))			\
8493dcf5451SChristoph Hellwig 
850a4dad1aeSDavid Turner /*
851a4dad1aeSDavid Turner  * We use an encoding that preserves the times for extra epoch "00":
852a4dad1aeSDavid Turner  *
853a4dad1aeSDavid Turner  * extra  msb of                         adjust for signed
854a4dad1aeSDavid Turner  * epoch  32-bit                         32-bit tv_sec to
855a4dad1aeSDavid Turner  * bits   time    decoded 64-bit tv_sec  64-bit tv_sec      valid time range
856a4dad1aeSDavid Turner  * 0 0    1    -0x80000000..-0x00000001  0x000000000 1901-12-13..1969-12-31
857a4dad1aeSDavid Turner  * 0 0    0    0x000000000..0x07fffffff  0x000000000 1970-01-01..2038-01-19
858a4dad1aeSDavid Turner  * 0 1    1    0x080000000..0x0ffffffff  0x100000000 2038-01-19..2106-02-07
859a4dad1aeSDavid Turner  * 0 1    0    0x100000000..0x17fffffff  0x100000000 2106-02-07..2174-02-25
860a4dad1aeSDavid Turner  * 1 0    1    0x180000000..0x1ffffffff  0x200000000 2174-02-25..2242-03-16
861a4dad1aeSDavid Turner  * 1 0    0    0x200000000..0x27fffffff  0x200000000 2242-03-16..2310-04-04
862a4dad1aeSDavid Turner  * 1 1    1    0x280000000..0x2ffffffff  0x300000000 2310-04-04..2378-04-22
863a4dad1aeSDavid Turner  * 1 1    0    0x300000000..0x37fffffff  0x300000000 2378-04-22..2446-05-10
864a4dad1aeSDavid Turner  *
865a4dad1aeSDavid Turner  * Note that previous versions of the kernel on 64-bit systems would
866a4dad1aeSDavid Turner  * incorrectly use extra epoch bits 1,1 for dates between 1901 and
867a4dad1aeSDavid Turner  * 1970.  e2fsck will correct this, assuming that it is run on the
868a4dad1aeSDavid Turner  * affected filesystem before 2242.
869a4dad1aeSDavid Turner  */
870a4dad1aeSDavid Turner 
8717b62b293SArnd Bergmann static inline __le32 ext4_encode_extra_time(struct timespec64 *time)
8723dcf5451SChristoph Hellwig {
8737b62b293SArnd Bergmann 	u32 extra =((time->tv_sec - (s32)time->tv_sec) >> 32) & EXT4_EPOCH_MASK;
874a4dad1aeSDavid Turner 	return cpu_to_le32(extra | (time->tv_nsec << EXT4_EPOCH_BITS));
8753dcf5451SChristoph Hellwig }
8763dcf5451SChristoph Hellwig 
8777b62b293SArnd Bergmann static inline void ext4_decode_extra_time(struct timespec64 *time,
8787b62b293SArnd Bergmann 					  __le32 extra)
8793dcf5451SChristoph Hellwig {
880cd2d9922STheodore Ts'o 	if (unlikely(extra & cpu_to_le32(EXT4_EPOCH_MASK)))
881a4dad1aeSDavid Turner 		time->tv_sec += (u64)(le32_to_cpu(extra) & EXT4_EPOCH_MASK) << 32;
882c1fccc06STheodore Ts'o 	time->tv_nsec = (le32_to_cpu(extra) & EXT4_NSEC_MASK) >> EXT4_EPOCH_BITS;
8833dcf5451SChristoph Hellwig }
8843dcf5451SChristoph Hellwig 
8853dcf5451SChristoph Hellwig #define EXT4_INODE_SET_XTIME(xtime, inode, raw_inode)				\
8863dcf5451SChristoph Hellwig do {										\
88795582b00SDeepa Dinamani 	if (EXT4_FITS_IN_INODE(raw_inode, EXT4_I(inode), xtime ## _extra))     {\
8884881c497SDeepa Dinamani 		(raw_inode)->xtime = cpu_to_le32((inode)->xtime.tv_sec);	\
8893dcf5451SChristoph Hellwig 		(raw_inode)->xtime ## _extra =					\
8907b62b293SArnd Bergmann 				ext4_encode_extra_time(&(inode)->xtime);	\
89195582b00SDeepa Dinamani 		}								\
892cba465b4SDeepa Dinamani 	else	\
8934881c497SDeepa Dinamani 		(raw_inode)->xtime = cpu_to_le32(clamp_t(int32_t, (inode)->xtime.tv_sec, S32_MIN, S32_MAX));	\
8943dcf5451SChristoph Hellwig } while (0)
8953dcf5451SChristoph Hellwig 
8963dcf5451SChristoph Hellwig #define EXT4_EINODE_SET_XTIME(xtime, einode, raw_inode)			       \
8973dcf5451SChristoph Hellwig do {									       \
8983dcf5451SChristoph Hellwig 	if (EXT4_FITS_IN_INODE(raw_inode, einode, xtime))		       \
8993dcf5451SChristoph Hellwig 		(raw_inode)->xtime = cpu_to_le32((einode)->xtime.tv_sec);      \
9003dcf5451SChristoph Hellwig 	if (EXT4_FITS_IN_INODE(raw_inode, einode, xtime ## _extra))	       \
9013dcf5451SChristoph Hellwig 		(raw_inode)->xtime ## _extra =				       \
9023dcf5451SChristoph Hellwig 				ext4_encode_extra_time(&(einode)->xtime);      \
9033dcf5451SChristoph Hellwig } while (0)
9043dcf5451SChristoph Hellwig 
9053dcf5451SChristoph Hellwig #define EXT4_INODE_GET_XTIME(xtime, inode, raw_inode)				\
9063dcf5451SChristoph Hellwig do {										\
9073dcf5451SChristoph Hellwig 	(inode)->xtime.tv_sec = (signed)le32_to_cpu((raw_inode)->xtime);	\
90895582b00SDeepa Dinamani 	if (EXT4_FITS_IN_INODE(raw_inode, EXT4_I(inode), xtime ## _extra)) {	\
9097b62b293SArnd Bergmann 		ext4_decode_extra_time(&(inode)->xtime,				\
9103dcf5451SChristoph Hellwig 				       raw_inode->xtime ## _extra);		\
91195582b00SDeepa Dinamani 		}								\
912af0b44a1SEric Sandeen 	else									\
913af0b44a1SEric Sandeen 		(inode)->xtime.tv_nsec = 0;					\
9143dcf5451SChristoph Hellwig } while (0)
9153dcf5451SChristoph Hellwig 
91695582b00SDeepa Dinamani 
9173dcf5451SChristoph Hellwig #define EXT4_EINODE_GET_XTIME(xtime, einode, raw_inode)			       \
9183dcf5451SChristoph Hellwig do {									       \
9193dcf5451SChristoph Hellwig 	if (EXT4_FITS_IN_INODE(raw_inode, einode, xtime))		       \
9203dcf5451SChristoph Hellwig 		(einode)->xtime.tv_sec = 				       \
9213dcf5451SChristoph Hellwig 			(signed)le32_to_cpu((raw_inode)->xtime);	       \
92219ea8060STheodore Ts'o 	else								       \
92319ea8060STheodore Ts'o 		(einode)->xtime.tv_sec = 0;				       \
9243dcf5451SChristoph Hellwig 	if (EXT4_FITS_IN_INODE(raw_inode, einode, xtime ## _extra))	       \
9253dcf5451SChristoph Hellwig 		ext4_decode_extra_time(&(einode)->xtime,		       \
9263dcf5451SChristoph Hellwig 				       raw_inode->xtime ## _extra);	       \
927af0b44a1SEric Sandeen 	else								       \
928af0b44a1SEric Sandeen 		(einode)->xtime.tv_nsec = 0;				       \
9293dcf5451SChristoph Hellwig } while (0)
9303dcf5451SChristoph Hellwig 
9313dcf5451SChristoph Hellwig #define i_disk_version osd1.linux1.l_i_version
9323dcf5451SChristoph Hellwig 
9333dcf5451SChristoph Hellwig #if defined(__KERNEL__) || defined(__linux__)
9343dcf5451SChristoph Hellwig #define i_reserved1	osd1.linux1.l_i_reserved1
9353dcf5451SChristoph Hellwig #define i_file_acl_high	osd2.linux2.l_i_file_acl_high
9363dcf5451SChristoph Hellwig #define i_blocks_high	osd2.linux2.l_i_blocks_high
9373dcf5451SChristoph Hellwig #define i_uid_low	i_uid
9383dcf5451SChristoph Hellwig #define i_gid_low	i_gid
9393dcf5451SChristoph Hellwig #define i_uid_high	osd2.linux2.l_i_uid_high
9403dcf5451SChristoph Hellwig #define i_gid_high	osd2.linux2.l_i_gid_high
941e6153918SDarrick J. Wong #define i_checksum_lo	osd2.linux2.l_i_checksum_lo
9423dcf5451SChristoph Hellwig 
9433dcf5451SChristoph Hellwig #elif defined(__GNU__)
9443dcf5451SChristoph Hellwig 
9453dcf5451SChristoph Hellwig #define i_translator	osd1.hurd1.h_i_translator
9463dcf5451SChristoph Hellwig #define i_uid_high	osd2.hurd2.h_i_uid_high
9473dcf5451SChristoph Hellwig #define i_gid_high	osd2.hurd2.h_i_gid_high
9483dcf5451SChristoph Hellwig #define i_author	osd2.hurd2.h_i_author
9493dcf5451SChristoph Hellwig 
9503dcf5451SChristoph Hellwig #elif defined(__masix__)
9513dcf5451SChristoph Hellwig 
9523dcf5451SChristoph Hellwig #define i_reserved1	osd1.masix1.m_i_reserved1
9533dcf5451SChristoph Hellwig #define i_file_acl_high	osd2.masix2.m_i_file_acl_high
9543dcf5451SChristoph Hellwig #define i_reserved2	osd2.masix2.m_i_reserved2
9553dcf5451SChristoph Hellwig 
9563dcf5451SChristoph Hellwig #endif /* defined(__KERNEL__) || defined(__linux__) */
9573dcf5451SChristoph Hellwig 
958c0677e6dSZheng Liu #include "extents_status.h"
9596866d7b3SHarshad Shirwadkar #include "fast_commit.h"
960c0677e6dSZheng Liu 
961d444c3c3STheodore Ts'o /*
962daf647d2STheodore Ts'o  * Lock subclasses for i_data_sem in the ext4_inode_info structure.
963daf647d2STheodore Ts'o  *
964daf647d2STheodore Ts'o  * These are needed to avoid lockdep false positives when we need to
965daf647d2STheodore Ts'o  * allocate blocks to the quota inode during ext4_map_blocks(), while
966daf647d2STheodore Ts'o  * holding i_data_sem for a normal (non-quota) inode.  Since we don't
967daf647d2STheodore Ts'o  * do quota tracking for the quota inode, this avoids deadlock (as
968daf647d2STheodore Ts'o  * well as infinite recursion, since it isn't turtles all the way
969daf647d2STheodore Ts'o  * down...)
970daf647d2STheodore Ts'o  *
971daf647d2STheodore Ts'o  *  I_DATA_SEM_NORMAL - Used for most inodes
972daf647d2STheodore Ts'o  *  I_DATA_SEM_OTHER  - Used by move_inode.c for the second normal inode
973daf647d2STheodore Ts'o  *			  where the second inode has larger inode number
974daf647d2STheodore Ts'o  *			  than the first
975daf647d2STheodore Ts'o  *  I_DATA_SEM_QUOTA  - Used for quota inodes only
976aff3bea9STheodore Ts'o  *  I_DATA_SEM_EA     - Used for ea_inodes only
977daf647d2STheodore Ts'o  */
978daf647d2STheodore Ts'o enum {
979daf647d2STheodore Ts'o 	I_DATA_SEM_NORMAL = 0,
980daf647d2STheodore Ts'o 	I_DATA_SEM_OTHER,
981daf647d2STheodore Ts'o 	I_DATA_SEM_QUOTA,
982aff3bea9STheodore Ts'o 	I_DATA_SEM_EA
983daf647d2STheodore Ts'o };
984daf647d2STheodore Ts'o 
985daf647d2STheodore Ts'o 
986daf647d2STheodore Ts'o /*
987d444c3c3STheodore Ts'o  * fourth extended file system inode data in memory
988d444c3c3STheodore Ts'o  */
989d444c3c3STheodore Ts'o struct ext4_inode_info {
990d444c3c3STheodore Ts'o 	__le32	i_data[15];	/* unconverted */
991d444c3c3STheodore Ts'o 	__u32	i_dtime;
99212e9b892SDmitry Monakhov 	ext4_fsblk_t	i_file_acl;
993d444c3c3STheodore Ts'o 
994d444c3c3STheodore Ts'o 	/*
995d444c3c3STheodore Ts'o 	 * i_block_group is the number of the block group which contains
996d444c3c3STheodore Ts'o 	 * this file's inode.  Constant across the lifetime of the inode,
997a627b0a7SEric Whitney 	 * it is used for making block allocation decisions - we try to
998d444c3c3STheodore Ts'o 	 * place a file's data blocks near its inode block, and new inodes
999d444c3c3STheodore Ts'o 	 * near to their parent directory's inode.
1000d444c3c3STheodore Ts'o 	 */
1001d444c3c3STheodore Ts'o 	ext4_group_t	i_block_group;
10028a2005d3STheodore Ts'o 	ext4_lblk_t	i_dir_start_lookup;
1003353eb83cSTheodore Ts'o #if (BITS_PER_LONG < 64)
100419f5fb7aSTheodore Ts'o 	unsigned long	i_state_flags;		/* Dynamic state flags */
1005353eb83cSTheodore Ts'o #endif
100612e9b892SDmitry Monakhov 	unsigned long	i_flags;
1007d444c3c3STheodore Ts'o 
1008d444c3c3STheodore Ts'o 	/*
1009d444c3c3STheodore Ts'o 	 * Extended attributes can be read independently of the main file
1010f340b3d9Shongnanli 	 * data. Taking i_rwsem even when reading would cause contention
1011d444c3c3STheodore Ts'o 	 * between readers of EAs and writers of regular file data, so
1012d444c3c3STheodore Ts'o 	 * instead we synchronize on xattr_sem when reading or changing
1013d444c3c3STheodore Ts'o 	 * EAs.
1014d444c3c3STheodore Ts'o 	 */
1015d444c3c3STheodore Ts'o 	struct rw_semaphore xattr_sem;
1016d444c3c3STheodore Ts'o 
101702f310fcSJan Kara 	/*
101802f310fcSJan Kara 	 * Inodes with EXT4_STATE_ORPHAN_FILE use i_orphan_idx. Otherwise
101902f310fcSJan Kara 	 * i_orphan is used.
102002f310fcSJan Kara 	 */
102102f310fcSJan Kara 	union {
1022d444c3c3STheodore Ts'o 		struct list_head i_orphan;	/* unlinked but open inodes */
102302f310fcSJan Kara 		unsigned int i_orphan_idx;	/* Index in orphan file */
102402f310fcSJan Kara 	};
1025d444c3c3STheodore Ts'o 
1026aa75f4d3SHarshad Shirwadkar 	/* Fast commit related info */
1027aa75f4d3SHarshad Shirwadkar 
1028b3998b3bSRitesh Harjani 	/* For tracking dentry create updates */
1029b3998b3bSRitesh Harjani 	struct list_head i_fc_dilist;
1030aa75f4d3SHarshad Shirwadkar 	struct list_head i_fc_list;	/*
1031aa75f4d3SHarshad Shirwadkar 					 * inodes that need fast commit
1032aa75f4d3SHarshad Shirwadkar 					 * protected by sbi->s_fc_lock.
1033aa75f4d3SHarshad Shirwadkar 					 */
1034aa75f4d3SHarshad Shirwadkar 
1035aa75f4d3SHarshad Shirwadkar 	/* Start of lblk range that needs to be committed in this fast commit */
1036aa75f4d3SHarshad Shirwadkar 	ext4_lblk_t i_fc_lblk_start;
1037aa75f4d3SHarshad Shirwadkar 
1038aa75f4d3SHarshad Shirwadkar 	/* End of lblk range that needs to be committed in this fast commit */
1039aa75f4d3SHarshad Shirwadkar 	ext4_lblk_t i_fc_lblk_len;
1040aa75f4d3SHarshad Shirwadkar 
1041aa75f4d3SHarshad Shirwadkar 	/* Number of ongoing updates on this inode */
1042aa75f4d3SHarshad Shirwadkar 	atomic_t  i_fc_updates;
1043aa75f4d3SHarshad Shirwadkar 
1044aa75f4d3SHarshad Shirwadkar 	/* Fast commit wait queue for this inode */
1045aa75f4d3SHarshad Shirwadkar 	wait_queue_head_t i_fc_wait;
1046aa75f4d3SHarshad Shirwadkar 
1047aa75f4d3SHarshad Shirwadkar 	/* Protect concurrent accesses on i_fc_lblk_start, i_fc_lblk_len */
1048aa75f4d3SHarshad Shirwadkar 	struct mutex i_fc_lock;
1049aa75f4d3SHarshad Shirwadkar 
1050d444c3c3STheodore Ts'o 	/*
1051d444c3c3STheodore Ts'o 	 * i_disksize keeps track of what the inode size is ON DISK, not
1052d444c3c3STheodore Ts'o 	 * in memory.  During truncate, i_size is set to the new size by
1053d444c3c3STheodore Ts'o 	 * the VFS prior to calling ext4_truncate(), but the filesystem won't
1054d444c3c3STheodore Ts'o 	 * set i_disksize to 0 until the truncate is actually under way.
1055d444c3c3STheodore Ts'o 	 *
1056d444c3c3STheodore Ts'o 	 * The intent is that i_disksize always represents the blocks which
1057d444c3c3STheodore Ts'o 	 * are used by this file.  This allows recovery to restart truncate
1058d444c3c3STheodore Ts'o 	 * on orphans if we crash during truncate.  We actually write i_disksize
1059d444c3c3STheodore Ts'o 	 * into the on-disk inode when writing inodes out, instead of i_size.
1060d444c3c3STheodore Ts'o 	 *
1061d444c3c3STheodore Ts'o 	 * The only time when i_disksize and i_size may be different is when
1062d444c3c3STheodore Ts'o 	 * a truncate is in progress.  The only things which change i_disksize
1063d444c3c3STheodore Ts'o 	 * are ext4_get_block (growth) and ext4_truncate (shrinkth).
1064d444c3c3STheodore Ts'o 	 */
1065d444c3c3STheodore Ts'o 	loff_t	i_disksize;
1066d444c3c3STheodore Ts'o 
1067d444c3c3STheodore Ts'o 	/*
1068d444c3c3STheodore Ts'o 	 * i_data_sem is for serialising ext4_truncate() against
1069d444c3c3STheodore Ts'o 	 * ext4_getblock().  In the 2.4 ext2 design, great chunks of inode's
1070d444c3c3STheodore Ts'o 	 * data tree are chopped off during truncate. We can't do that in
1071d444c3c3STheodore Ts'o 	 * ext4 because whenever we perform intermediate commits during
1072d444c3c3STheodore Ts'o 	 * truncate, the inode and all the metadata blocks *must* be in a
1073d444c3c3STheodore Ts'o 	 * consistent state which allows truncation of the orphans to restart
1074d444c3c3STheodore Ts'o 	 * during recovery.  Hence we must fix the get_block-vs-truncate race
1075d444c3c3STheodore Ts'o 	 * by other means, so we have i_data_sem.
1076d444c3c3STheodore Ts'o 	 */
1077d444c3c3STheodore Ts'o 	struct rw_semaphore i_data_sem;
1078d444c3c3STheodore Ts'o 	struct inode vfs_inode;
10798aefcd55STheodore Ts'o 	struct jbd2_inode *jinode;
1080d444c3c3STheodore Ts'o 
1081202ee5dfSTheodore Ts'o 	spinlock_t i_raw_lock;	/* protects updates to the raw inode */
1082202ee5dfSTheodore Ts'o 
1083d444c3c3STheodore Ts'o 	/*
1084d444c3c3STheodore Ts'o 	 * File creation time. Its function is same as that of
10857b62b293SArnd Bergmann 	 * struct timespec64 i_{a,c,m}time in the generic inode.
1086d444c3c3STheodore Ts'o 	 */
10877b62b293SArnd Bergmann 	struct timespec64 i_crtime;
1088d444c3c3STheodore Ts'o 
1089d444c3c3STheodore Ts'o 	/* mballoc */
109027bc446eSbrookxu 	atomic_t i_prealloc_active;
109138727786SOjaswin Mujoo 	struct rb_root i_prealloc_node;
109238727786SOjaswin Mujoo 	rwlock_t i_prealloc_lock;
1093d444c3c3STheodore Ts'o 
1094c0677e6dSZheng Liu 	/* extents status tree */
1095c0677e6dSZheng Liu 	struct ext4_es_tree i_es_tree;
1096c0677e6dSZheng Liu 	rwlock_t i_es_lock;
1097edaa53caSZheng Liu 	struct list_head i_es_list;
1098eb68d0e2SZheng Liu 	unsigned int i_es_all_nr;	/* protected by i_es_lock */
1099edaa53caSZheng Liu 	unsigned int i_es_shk_nr;	/* protected by i_es_lock */
1100dd475925SJan Kara 	ext4_lblk_t i_es_shrink_lblk;	/* Offset where we start searching for
1101dd475925SJan Kara 					   extents to shrink. Protected by
1102dd475925SJan Kara 					   i_es_lock  */
1103c0677e6dSZheng Liu 
1104d444c3c3STheodore Ts'o 	/* ialloc */
1105d444c3c3STheodore Ts'o 	ext4_group_t	i_last_alloc_group;
1106d444c3c3STheodore Ts'o 
1107d444c3c3STheodore Ts'o 	/* allocation reservation info for delalloc */
1108a627b0a7SEric Whitney 	/* In case of bigalloc, this refer to clusters rather than blocks */
1109d444c3c3STheodore Ts'o 	unsigned int i_reserved_data_blocks;
1110d444c3c3STheodore Ts'o 
11111dc0aa46SEric Whitney 	/* pending cluster reservations for bigalloc file systems */
11121dc0aa46SEric Whitney 	struct ext4_pending_tree i_pending_tree;
11131dc0aa46SEric Whitney 
1114d444c3c3STheodore Ts'o 	/* on-disk additional length */
1115d444c3c3STheodore Ts'o 	__u16 i_extra_isize;
1116d444c3c3STheodore Ts'o 
111767cf5b09STao Ma 	/* Indicate the inline data space. */
111867cf5b09STao Ma 	u16 i_inline_off;
111967cf5b09STao Ma 	u16 i_inline_size;
112067cf5b09STao Ma 
1121a9e7f447SDmitry Monakhov #ifdef CONFIG_QUOTA
1122a9e7f447SDmitry Monakhov 	/* quota space reservation, managed internally by quota code */
1123a9e7f447SDmitry Monakhov 	qsize_t i_reserved_quota;
1124a9e7f447SDmitry Monakhov #endif
11258d5d02e6SMingming Cao 
11262e8fa54eSJan Kara 	/* Lock protecting lists below */
1127744692dcSJiaying Zhang 	spinlock_t i_completed_io_lock;
11282e8fa54eSJan Kara 	/*
11292e8fa54eSJan Kara 	 * Completed IOs that need unwritten extents handling and have
11302e8fa54eSJan Kara 	 * transaction reserved
11312e8fa54eSJan Kara 	 */
11322e8fa54eSJan Kara 	struct list_head i_rsv_conversion_list;
11332e8fa54eSJan Kara 	struct work_struct i_rsv_conversion_work;
1134600be30aSJan Kara 	atomic_t i_unwritten; /* Nr. of inflight conversions pending */
11358a2005d3STheodore Ts'o 
11368a2005d3STheodore Ts'o 	spinlock_t i_block_reservation_lock;
1137b436b9beSJan Kara 
1138b436b9beSJan Kara 	/*
1139b436b9beSJan Kara 	 * Transactions that contain inode's metadata needed to complete
1140b436b9beSJan Kara 	 * fsync and fdatasync, respectively.
1141b436b9beSJan Kara 	 */
1142b436b9beSJan Kara 	tid_t i_sync_tid;
1143b436b9beSJan Kara 	tid_t i_datasync_tid;
1144814525f4SDarrick J. Wong 
114596c7e0d9SJan Kara #ifdef CONFIG_QUOTA
114696c7e0d9SJan Kara 	struct dquot *i_dquot[MAXQUOTAS];
114796c7e0d9SJan Kara #endif
114896c7e0d9SJan Kara 
1149814525f4SDarrick J. Wong 	/* Precomputed uuid+inum+igen checksum for seeding inode checksums */
1150814525f4SDarrick J. Wong 	__u32 i_csum_seed;
1151b30ab0e0SMichael Halcrow 
1152040cb378SLi Xi 	kprojid_t i_projid;
1153d444c3c3STheodore Ts'o };
1154d444c3c3STheodore Ts'o 
1155d444c3c3STheodore Ts'o /*
11563dcf5451SChristoph Hellwig  * File system states
11573dcf5451SChristoph Hellwig  */
11583dcf5451SChristoph Hellwig #define	EXT4_VALID_FS			0x0001	/* Unmounted cleanly */
11593dcf5451SChristoph Hellwig #define	EXT4_ERROR_FS			0x0002	/* Errors detected */
11603dcf5451SChristoph Hellwig #define	EXT4_ORPHAN_FS			0x0004	/* Orphans being recovered */
11618016e29fSHarshad Shirwadkar #define EXT4_FC_REPLAY			0x0020	/* Fast commit replay ongoing */
11623dcf5451SChristoph Hellwig 
11633dcf5451SChristoph Hellwig /*
11643dcf5451SChristoph Hellwig  * Misc. filesystem flags
11653dcf5451SChristoph Hellwig  */
11663dcf5451SChristoph Hellwig #define EXT2_FLAGS_SIGNED_HASH		0x0001  /* Signed dirhash in use */
11673dcf5451SChristoph Hellwig #define EXT2_FLAGS_UNSIGNED_HASH	0x0002  /* Unsigned dirhash in use */
11683dcf5451SChristoph Hellwig #define EXT2_FLAGS_TEST_FILESYS		0x0004	/* to test development code */
11693dcf5451SChristoph Hellwig 
11703dcf5451SChristoph Hellwig /*
117168911009SLukas Czerner  * Mount flags set via mount options or defaults
11723dcf5451SChristoph Hellwig  */
1173cdb7ee4cSTahsin Erdogan #define EXT4_MOUNT_NO_MBCACHE		0x00001 /* Do not use mbcache */
11743dcf5451SChristoph Hellwig #define EXT4_MOUNT_GRPID		0x00004	/* Create files with directory's group */
11753dcf5451SChristoph Hellwig #define EXT4_MOUNT_DEBUG		0x00008	/* Some debugging messages */
11763dcf5451SChristoph Hellwig #define EXT4_MOUNT_ERRORS_CONT		0x00010	/* Continue on errors */
11773dcf5451SChristoph Hellwig #define EXT4_MOUNT_ERRORS_RO		0x00020	/* Remount fs ro on errors */
11783dcf5451SChristoph Hellwig #define EXT4_MOUNT_ERRORS_PANIC		0x00040	/* Panic on errors */
117939ef17f1STheodore Ts'o #define EXT4_MOUNT_ERRORS_MASK		0x00070
11803dcf5451SChristoph Hellwig #define EXT4_MOUNT_MINIX_DF		0x00080	/* Mimics the Minix statfs */
11813dcf5451SChristoph Hellwig #define EXT4_MOUNT_NOLOAD		0x00100	/* Don't use existing journal*/
1182923ae0ffSRoss Zwisler #ifdef CONFIG_FS_DAX
1183fc626fe3SIra Weiny #define EXT4_MOUNT_DAX_ALWAYS		0x00200	/* Direct Access */
1184923ae0ffSRoss Zwisler #else
1185fc626fe3SIra Weiny #define EXT4_MOUNT_DAX_ALWAYS		0
1186923ae0ffSRoss Zwisler #endif
11873dcf5451SChristoph Hellwig #define EXT4_MOUNT_DATA_FLAGS		0x00C00	/* Mode for data writes: */
11883dcf5451SChristoph Hellwig #define EXT4_MOUNT_JOURNAL_DATA		0x00400	/* Write data to journal */
11893dcf5451SChristoph Hellwig #define EXT4_MOUNT_ORDERED_DATA		0x00800	/* Flush data before commit */
11903dcf5451SChristoph Hellwig #define EXT4_MOUNT_WRITEBACK_DATA	0x00C00	/* No data ordering */
11913dcf5451SChristoph Hellwig #define EXT4_MOUNT_UPDATE_JOURNAL	0x01000	/* Update the journal format */
11923dcf5451SChristoph Hellwig #define EXT4_MOUNT_NO_UID32		0x02000  /* Disable 32-bit UIDs */
11933dcf5451SChristoph Hellwig #define EXT4_MOUNT_XATTR_USER		0x04000	/* Extended user attributes */
11943dcf5451SChristoph Hellwig #define EXT4_MOUNT_POSIX_ACL		0x08000	/* POSIX Access Control Lists */
1195afd4672dSTheodore Ts'o #define EXT4_MOUNT_NO_AUTO_DA_ALLOC	0x10000	/* No auto delalloc mapping */
11963dcf5451SChristoph Hellwig #define EXT4_MOUNT_BARRIER		0x20000 /* Use block barriers */
119749da9392SJan Kara #define EXT4_MOUNT_QUOTA		0x40000 /* Some quota option set */
119849da9392SJan Kara #define EXT4_MOUNT_USRQUOTA		0x80000 /* "old" user quota,
119949da9392SJan Kara 						 * enable enforcement for hidden
120049da9392SJan Kara 						 * quota files */
120149da9392SJan Kara #define EXT4_MOUNT_GRPQUOTA		0x100000 /* "old" group quota, enable
120249da9392SJan Kara 						  * enforcement for hidden quota
120349da9392SJan Kara 						  * files */
120449da9392SJan Kara #define EXT4_MOUNT_PRJQUOTA		0x200000 /* Enable project quota
120549da9392SJan Kara 						  * enforcement */
1206744692dcSJiaying Zhang #define EXT4_MOUNT_DIOREAD_NOLOCK	0x400000 /* Enable support for dio read nolocking */
1207d4da6c9cSLinus Torvalds #define EXT4_MOUNT_JOURNAL_CHECKSUM	0x800000 /* Journal checksums */
12083dcf5451SChristoph Hellwig #define EXT4_MOUNT_JOURNAL_ASYNC_COMMIT	0x1000000 /* Journal Async Commit */
1209327eaf73STheodore Ts'o #define EXT4_MOUNT_WARN_ON_ERROR	0x2000000 /* Trigger WARN_ON on error */
121021175ca4SHarshad Shirwadkar #define EXT4_MOUNT_NO_PREFETCH_BLOCK_BITMAPS 0x4000000
121164769240SAlex Tomas #define EXT4_MOUNT_DELALLOC		0x8000000 /* Delalloc support */
12125bf5683aSHidehiro Kawai #define EXT4_MOUNT_DATA_ERR_ABORT	0x10000000 /* Abort on file data write */
12136fd058f7STheodore Ts'o #define EXT4_MOUNT_BLOCK_VALIDITY	0x20000000 /* Block validity checking */
12145328e635SEric Sandeen #define EXT4_MOUNT_DISCARD		0x40000000 /* Issue DISCARD requests */
1215bfff6873SLukas Czerner #define EXT4_MOUNT_INIT_INODE_TABLE	0x80000000 /* Initialize uninitialized itables */
12165bf5683aSHidehiro Kawai 
121768911009SLukas Czerner /*
121868911009SLukas Czerner  * Mount flags set either automatically (could not be set by mount option)
121968911009SLukas Czerner  * based on per file system feature or property or in special cases such as
122068911009SLukas Czerner  * distinguishing between explicit mount option definition and default.
122168911009SLukas Czerner  */
122256889787STheodore Ts'o #define EXT4_MOUNT2_EXPLICIT_DELALLOC	0x00000001 /* User explicitly
122356889787STheodore Ts'o 						      specified delalloc */
122468911009SLukas Czerner #define EXT4_MOUNT2_STD_GROUP_SIZE	0x00000002 /* We have standard group
122568911009SLukas Czerner 						      size of blocksize * 8
122668911009SLukas Czerner 						      blocks */
1227ed3654ebSTheodore Ts'o #define EXT4_MOUNT2_HURD_COMPAT		0x00000004 /* Support HURD-castrated
1228ed3654ebSTheodore Ts'o 						      file systems */
12291e381f60SDmitry Monakhov #define EXT4_MOUNT2_EXPLICIT_JOURNAL_CHECKSUM	0x00000008 /* User explicitly
12301e381f60SDmitry Monakhov 						specified journal checksum */
12311e381f60SDmitry Monakhov 
1232995a3ed6SHarshad Shirwadkar #define EXT4_MOUNT2_JOURNAL_FAST_COMMIT	0x00000010 /* Journal fast commit */
1233a72b38eeSHarshad Shirwadkar #define EXT4_MOUNT2_DAX_NEVER		0x00000020 /* Do not allow Direct Access */
1234a72b38eeSHarshad Shirwadkar #define EXT4_MOUNT2_DAX_INODE		0x00000040 /* For printing options only */
1235196e402aSHarshad Shirwadkar #define EXT4_MOUNT2_MB_OPTIMIZE_SCAN	0x00000080 /* Optimize group
1236196e402aSHarshad Shirwadkar 						    * scanning in mballoc
1237196e402aSHarshad Shirwadkar 						    */
1238995a3ed6SHarshad Shirwadkar 
1239fd8c37ecSTheodore Ts'o #define clear_opt(sb, opt)		EXT4_SB(sb)->s_mount_opt &= \
1240fd8c37ecSTheodore Ts'o 						~EXT4_MOUNT_##opt
1241fd8c37ecSTheodore Ts'o #define set_opt(sb, opt)		EXT4_SB(sb)->s_mount_opt |= \
1242fd8c37ecSTheodore Ts'o 						EXT4_MOUNT_##opt
12433dcf5451SChristoph Hellwig #define test_opt(sb, opt)		(EXT4_SB(sb)->s_mount_opt & \
12443dcf5451SChristoph Hellwig 					 EXT4_MOUNT_##opt)
12453dcf5451SChristoph Hellwig 
1246a2595b8aSTheodore Ts'o #define clear_opt2(sb, opt)		EXT4_SB(sb)->s_mount_opt2 &= \
1247a2595b8aSTheodore Ts'o 						~EXT4_MOUNT2_##opt
1248a2595b8aSTheodore Ts'o #define set_opt2(sb, opt)		EXT4_SB(sb)->s_mount_opt2 |= \
1249a2595b8aSTheodore Ts'o 						EXT4_MOUNT2_##opt
1250a2595b8aSTheodore Ts'o #define test_opt2(sb, opt)		(EXT4_SB(sb)->s_mount_opt2 & \
1251a2595b8aSTheodore Ts'o 					 EXT4_MOUNT2_##opt)
1252a2595b8aSTheodore Ts'o 
1253597d508cSAkinobu Mita #define ext4_test_and_set_bit		__test_and_set_bit_le
1254597d508cSAkinobu Mita #define ext4_set_bit			__set_bit_le
12553dcf5451SChristoph Hellwig #define ext4_set_bit_atomic		ext2_set_bit_atomic
1256597d508cSAkinobu Mita #define ext4_test_and_clear_bit		__test_and_clear_bit_le
1257597d508cSAkinobu Mita #define ext4_clear_bit			__clear_bit_le
12583dcf5451SChristoph Hellwig #define ext4_clear_bit_atomic		ext2_clear_bit_atomic
125950e0168cSAkinobu Mita #define ext4_test_bit			test_bit_le
126050e0168cSAkinobu Mita #define ext4_find_next_zero_bit		find_next_zero_bit_le
126150e0168cSAkinobu Mita #define ext4_find_next_bit		find_next_bit_le
12623dcf5451SChristoph Hellwig 
1263123e3016SRitesh Harjani extern void mb_set_bits(void *bm, int cur, int len);
1264c3e94d1dSYongqiang Yang 
12653dcf5451SChristoph Hellwig /*
12663dcf5451SChristoph Hellwig  * Maximal mount counts between two filesystem checks
12673dcf5451SChristoph Hellwig  */
12683dcf5451SChristoph Hellwig #define EXT4_DFL_MAX_MNT_COUNT		20	/* Allow 20 mounts */
12693dcf5451SChristoph Hellwig #define EXT4_DFL_CHECKINTERVAL		0	/* Don't use interval check */
12703dcf5451SChristoph Hellwig 
12713dcf5451SChristoph Hellwig /*
12723dcf5451SChristoph Hellwig  * Behaviour when detecting errors
12733dcf5451SChristoph Hellwig  */
12743dcf5451SChristoph Hellwig #define EXT4_ERRORS_CONTINUE		1	/* Continue execution */
12753dcf5451SChristoph Hellwig #define EXT4_ERRORS_RO			2	/* Remount fs read-only */
12763dcf5451SChristoph Hellwig #define EXT4_ERRORS_PANIC		3	/* Panic */
12773dcf5451SChristoph Hellwig #define EXT4_ERRORS_DEFAULT		EXT4_ERRORS_CONTINUE
12783dcf5451SChristoph Hellwig 
1279e6153918SDarrick J. Wong /* Metadata checksum algorithm codes */
1280e6153918SDarrick J. Wong #define EXT4_CRC32C_CHKSUM		1
1281e6153918SDarrick J. Wong 
1282bbc605cdSLukas Czerner #define EXT4_LABEL_MAX			16
1283bbc605cdSLukas Czerner 
12843dcf5451SChristoph Hellwig /*
12853dcf5451SChristoph Hellwig  * Structure of the super block
12863dcf5451SChristoph Hellwig  */
12873dcf5451SChristoph Hellwig struct ext4_super_block {
12883dcf5451SChristoph Hellwig /*00*/	__le32	s_inodes_count;		/* Inodes count */
12893dcf5451SChristoph Hellwig 	__le32	s_blocks_count_lo;	/* Blocks count */
12903dcf5451SChristoph Hellwig 	__le32	s_r_blocks_count_lo;	/* Reserved blocks count */
12913dcf5451SChristoph Hellwig 	__le32	s_free_blocks_count_lo;	/* Free blocks count */
12923dcf5451SChristoph Hellwig /*10*/	__le32	s_free_inodes_count;	/* Free inodes count */
12933dcf5451SChristoph Hellwig 	__le32	s_first_data_block;	/* First Data Block */
12943dcf5451SChristoph Hellwig 	__le32	s_log_block_size;	/* Block size */
1295281b5995STheodore Ts'o 	__le32	s_log_cluster_size;	/* Allocation cluster size */
12963dcf5451SChristoph Hellwig /*20*/	__le32	s_blocks_per_group;	/* # Blocks per group */
1297281b5995STheodore Ts'o 	__le32	s_clusters_per_group;	/* # Clusters per group */
12983dcf5451SChristoph Hellwig 	__le32	s_inodes_per_group;	/* # Inodes per group */
12993dcf5451SChristoph Hellwig 	__le32	s_mtime;		/* Mount time */
13003dcf5451SChristoph Hellwig /*30*/	__le32	s_wtime;		/* Write time */
13013dcf5451SChristoph Hellwig 	__le16	s_mnt_count;		/* Mount count */
13023dcf5451SChristoph Hellwig 	__le16	s_max_mnt_count;	/* Maximal mount count */
13033dcf5451SChristoph Hellwig 	__le16	s_magic;		/* Magic signature */
13043dcf5451SChristoph Hellwig 	__le16	s_state;		/* File system state */
13053dcf5451SChristoph Hellwig 	__le16	s_errors;		/* Behaviour when detecting errors */
13063dcf5451SChristoph Hellwig 	__le16	s_minor_rev_level;	/* minor revision level */
13073dcf5451SChristoph Hellwig /*40*/	__le32	s_lastcheck;		/* time of last check */
13083dcf5451SChristoph Hellwig 	__le32	s_checkinterval;	/* max. time between checks */
13093dcf5451SChristoph Hellwig 	__le32	s_creator_os;		/* OS */
13103dcf5451SChristoph Hellwig 	__le32	s_rev_level;		/* Revision level */
13113dcf5451SChristoph Hellwig /*50*/	__le16	s_def_resuid;		/* Default uid for reserved blocks */
13123dcf5451SChristoph Hellwig 	__le16	s_def_resgid;		/* Default gid for reserved blocks */
13133dcf5451SChristoph Hellwig 	/*
13143dcf5451SChristoph Hellwig 	 * These fields are for EXT4_DYNAMIC_REV superblocks only.
13153dcf5451SChristoph Hellwig 	 *
13163dcf5451SChristoph Hellwig 	 * Note: the difference between the compatible feature set and
13173dcf5451SChristoph Hellwig 	 * the incompatible feature set is that if there is a bit set
13183dcf5451SChristoph Hellwig 	 * in the incompatible feature set that the kernel doesn't
13193dcf5451SChristoph Hellwig 	 * know about, it should refuse to mount the filesystem.
13203dcf5451SChristoph Hellwig 	 *
13213dcf5451SChristoph Hellwig 	 * e2fsck's requirements are more strict; if it doesn't know
13223dcf5451SChristoph Hellwig 	 * about a feature in either the compatible or incompatible
13233dcf5451SChristoph Hellwig 	 * feature set, it must abort and not try to meddle with
13243dcf5451SChristoph Hellwig 	 * things it doesn't understand...
13253dcf5451SChristoph Hellwig 	 */
13263dcf5451SChristoph Hellwig 	__le32	s_first_ino;		/* First non-reserved inode */
13273dcf5451SChristoph Hellwig 	__le16  s_inode_size;		/* size of inode structure */
13283dcf5451SChristoph Hellwig 	__le16	s_block_group_nr;	/* block group # of this superblock */
13293dcf5451SChristoph Hellwig 	__le32	s_feature_compat;	/* compatible feature set */
13303dcf5451SChristoph Hellwig /*60*/	__le32	s_feature_incompat;	/* incompatible feature set */
13313dcf5451SChristoph Hellwig 	__le32	s_feature_ro_compat;	/* readonly-compatible feature set */
13323dcf5451SChristoph Hellwig /*68*/	__u8	s_uuid[16];		/* 128-bit uuid for volume */
1333bbc605cdSLukas Czerner /*78*/	char	s_volume_name[EXT4_LABEL_MAX];	/* volume name */
1334072ebb3bSTheodore Ts'o /*88*/	char	s_last_mounted[64] __nonstring;	/* directory where last mounted */
13353dcf5451SChristoph Hellwig /*C8*/	__le32	s_algorithm_usage_bitmap; /* For compression */
13363dcf5451SChristoph Hellwig 	/*
13373dcf5451SChristoph Hellwig 	 * Performance hints.  Directory preallocation should only
13383dcf5451SChristoph Hellwig 	 * happen if the EXT4_FEATURE_COMPAT_DIR_PREALLOC flag is on.
13393dcf5451SChristoph Hellwig 	 */
13403dcf5451SChristoph Hellwig 	__u8	s_prealloc_blocks;	/* Nr of blocks to try to preallocate*/
13413dcf5451SChristoph Hellwig 	__u8	s_prealloc_dir_blocks;	/* Nr to preallocate for dirs */
13423dcf5451SChristoph Hellwig 	__le16	s_reserved_gdt_blocks;	/* Per group desc for online growth */
13433dcf5451SChristoph Hellwig 	/*
13443dcf5451SChristoph Hellwig 	 * Journaling support valid if EXT4_FEATURE_COMPAT_HAS_JOURNAL set.
13453dcf5451SChristoph Hellwig 	 */
13463dcf5451SChristoph Hellwig /*D0*/	__u8	s_journal_uuid[16];	/* uuid of journal superblock */
13473dcf5451SChristoph Hellwig /*E0*/	__le32	s_journal_inum;		/* inode number of journal file */
13483dcf5451SChristoph Hellwig 	__le32	s_journal_dev;		/* device number of journal file */
13493dcf5451SChristoph Hellwig 	__le32	s_last_orphan;		/* start of list of inodes to delete */
13503dcf5451SChristoph Hellwig 	__le32	s_hash_seed[4];		/* HTREE hash seed */
13513dcf5451SChristoph Hellwig 	__u8	s_def_hash_version;	/* Default hash version to use */
135289eeddf0STheodore Ts'o 	__u8	s_jnl_backup_type;
13533dcf5451SChristoph Hellwig 	__le16  s_desc_size;		/* size of group descriptor */
13543dcf5451SChristoph Hellwig /*100*/	__le32	s_default_mount_opts;
13553dcf5451SChristoph Hellwig 	__le32	s_first_meta_bg;	/* First metablock block group */
13563dcf5451SChristoph Hellwig 	__le32	s_mkfs_time;		/* When the filesystem was created */
13573dcf5451SChristoph Hellwig 	__le32	s_jnl_blocks[17];	/* Backup of the journal inode */
13587fc1f5c2STudor Ambarus 	/* 64bit support valid if EXT4_FEATURE_INCOMPAT_64BIT */
13593dcf5451SChristoph Hellwig /*150*/	__le32	s_blocks_count_hi;	/* Blocks count */
13603dcf5451SChristoph Hellwig 	__le32	s_r_blocks_count_hi;	/* Reserved blocks count */
13613dcf5451SChristoph Hellwig 	__le32	s_free_blocks_count_hi;	/* Free blocks count */
13623dcf5451SChristoph Hellwig 	__le16	s_min_extra_isize;	/* All inodes have at least # bytes */
13633dcf5451SChristoph Hellwig 	__le16	s_want_extra_isize; 	/* New inodes should reserve # bytes */
13643dcf5451SChristoph Hellwig 	__le32	s_flags;		/* Miscellaneous flags */
13653dcf5451SChristoph Hellwig 	__le16  s_raid_stride;		/* RAID stride */
1366c5e06d10SJohann Lombardi 	__le16  s_mmp_update_interval;  /* # seconds to wait in MMP checking */
13673dcf5451SChristoph Hellwig 	__le64  s_mmp_block;            /* Block for multi-mount protection */
13683dcf5451SChristoph Hellwig 	__le32  s_raid_stripe_width;    /* blocks on all data disks (N*stride)*/
1369772cb7c8SJose R. Santos 	__u8	s_log_groups_per_flex;  /* FLEX_BG group size */
1370e6153918SDarrick J. Wong 	__u8	s_checksum_type;	/* metadata checksum algorithm used */
1371f542fbe8STheodore Ts'o 	__u8	s_encryption_level;	/* versioning level for encryption */
1372f542fbe8STheodore Ts'o 	__u8	s_reserved_pad;		/* Padding to next 32bits */
1373afc32f7eSTheodore Ts'o 	__le64	s_kbytes_written;	/* nr of lifetime kilobytes written */
13744a9cdec7STheodore Ts'o 	__le32	s_snapshot_inum;	/* Inode number of active snapshot */
13754a9cdec7STheodore Ts'o 	__le32	s_snapshot_id;		/* sequential ID of active snapshot */
13764a9cdec7STheodore Ts'o 	__le64	s_snapshot_r_blocks_count; /* reserved blocks for active
13774a9cdec7STheodore Ts'o 					      snapshot's future use */
13784a9cdec7STheodore Ts'o 	__le32	s_snapshot_list;	/* inode number of the head of the
13794a9cdec7STheodore Ts'o 					   on-disk snapshot list */
13801c13d5c0STheodore Ts'o #define EXT4_S_ERR_START offsetof(struct ext4_super_block, s_error_count)
13811c13d5c0STheodore Ts'o 	__le32	s_error_count;		/* number of fs errors */
13821c13d5c0STheodore Ts'o 	__le32	s_first_error_time;	/* first time an error happened */
13831c13d5c0STheodore Ts'o 	__le32	s_first_error_ino;	/* inode involved in first error */
13841c13d5c0STheodore Ts'o 	__le64	s_first_error_block;	/* block involved of first error */
1385072ebb3bSTheodore Ts'o 	__u8	s_first_error_func[32] __nonstring;	/* function where the error happened */
13861c13d5c0STheodore Ts'o 	__le32	s_first_error_line;	/* line number where error happened */
13871c13d5c0STheodore Ts'o 	__le32	s_last_error_time;	/* most recent time of an error */
13881c13d5c0STheodore Ts'o 	__le32	s_last_error_ino;	/* inode involved in last error */
13891c13d5c0STheodore Ts'o 	__le32	s_last_error_line;	/* line number where error happened */
13901c13d5c0STheodore Ts'o 	__le64	s_last_error_block;	/* block involved of last error */
1391072ebb3bSTheodore Ts'o 	__u8	s_last_error_func[32] __nonstring;	/* function where the error happened */
13928b67f04aSTheodore Ts'o #define EXT4_S_ERR_END offsetof(struct ext4_super_block, s_mount_opts)
13938b67f04aSTheodore Ts'o 	__u8	s_mount_opts[64];
1394281b5995STheodore Ts'o 	__le32	s_usr_quota_inum;	/* inode for tracking user quota */
1395281b5995STheodore Ts'o 	__le32	s_grp_quota_inum;	/* inode for tracking group quota */
1396281b5995STheodore Ts'o 	__le32	s_overhead_clusters;	/* overhead blocks/clusters in fs */
13971beeef1bSDarrick J. Wong 	__le32	s_backup_bgs[2];	/* groups with sparse_super2 SBs */
13983edc18d8STheodore Ts'o 	__u8	s_encrypt_algos[4];	/* Encryption algorithms in use  */
1399f542fbe8STheodore Ts'o 	__u8	s_encrypt_pw_salt[16];	/* Salt used for string2key algorithm */
1400f542fbe8STheodore Ts'o 	__le32	s_lpf_ino;		/* Location of the lost+found inode */
14018b4953e1STheodore Ts'o 	__le32	s_prj_quota_inum;	/* inode for tracking project quota */
14028c81bd8fSDarrick J. Wong 	__le32	s_checksum_seed;	/* crc32c(uuid) if csum_seed set */
14036a0678a7SArnd Bergmann 	__u8	s_wtime_hi;
14046a0678a7SArnd Bergmann 	__u8	s_mtime_hi;
14056a0678a7SArnd Bergmann 	__u8	s_mkfs_time_hi;
14066a0678a7SArnd Bergmann 	__u8	s_lastcheck_hi;
14076a0678a7SArnd Bergmann 	__u8	s_first_error_time_hi;
14086a0678a7SArnd Bergmann 	__u8	s_last_error_time_hi;
1409878520acSTheodore Ts'o 	__u8	s_first_error_errcode;
1410878520acSTheodore Ts'o 	__u8    s_last_error_errcode;
1411c83ad55eSGabriel Krisman Bertazi 	__le16  s_encoding;		/* Filename charset encoding */
1412c83ad55eSGabriel Krisman Bertazi 	__le16  s_encoding_flags;	/* Filename charset encoding flags */
141302f310fcSJan Kara 	__le32  s_orphan_file_inum;	/* Inode for tracking orphan inodes */
141402f310fcSJan Kara 	__le32	s_reserved[94];		/* Padding to the end of the block */
1415e6153918SDarrick J. Wong 	__le32	s_checksum;		/* crc32c(superblock) */
14163dcf5451SChristoph Hellwig };
14173dcf5451SChristoph Hellwig 
14181c13d5c0STheodore Ts'o #define EXT4_S_ERR_LEN (EXT4_S_ERR_END - EXT4_S_ERR_START)
14191c13d5c0STheodore Ts'o 
14203dcf5451SChristoph Hellwig #ifdef __KERNEL__
1421bc0b0d6dSTheodore Ts'o 
1422a2d4a646SJan Kara /* Number of quota types we support */
1423689c958cSLi Xi #define EXT4_MAXQUOTAS 3
1424a2d4a646SJan Kara 
1425c83ad55eSGabriel Krisman Bertazi #define EXT4_ENC_UTF8_12_1	1
1426c83ad55eSGabriel Krisman Bertazi 
1427188c299eSJan Kara /* Types of ext4 journal triggers */
1428188c299eSJan Kara enum ext4_journal_trigger_type {
142902f310fcSJan Kara 	EXT4_JTR_ORPHAN_FILE,
1430188c299eSJan Kara 	EXT4_JTR_NONE	/* This must be the last entry for indexing to work! */
1431188c299eSJan Kara };
1432188c299eSJan Kara 
1433188c299eSJan Kara #define EXT4_JOURNAL_TRIGGER_COUNT EXT4_JTR_NONE
1434188c299eSJan Kara 
1435188c299eSJan Kara struct ext4_journal_trigger {
1436188c299eSJan Kara 	struct jbd2_buffer_trigger_type tr_triggers;
1437188c299eSJan Kara 	struct super_block *sb;
1438188c299eSJan Kara };
1439188c299eSJan Kara 
1440188c299eSJan Kara static inline struct ext4_journal_trigger *EXT4_TRIGGER(
1441188c299eSJan Kara 				struct jbd2_buffer_trigger_type *trigger)
1442188c299eSJan Kara {
1443188c299eSJan Kara 	return container_of(trigger, struct ext4_journal_trigger, tr_triggers);
1444188c299eSJan Kara }
1445188c299eSJan Kara 
144602f310fcSJan Kara #define EXT4_ORPHAN_BLOCK_MAGIC 0x0b10ca04
144702f310fcSJan Kara 
144802f310fcSJan Kara /* Structure at the tail of orphan block */
144902f310fcSJan Kara struct ext4_orphan_block_tail {
145002f310fcSJan Kara 	__le32 ob_magic;
145102f310fcSJan Kara 	__le32 ob_checksum;
145202f310fcSJan Kara };
145302f310fcSJan Kara 
145402f310fcSJan Kara static inline int ext4_inodes_per_orphan_block(struct super_block *sb)
145502f310fcSJan Kara {
145602f310fcSJan Kara 	return (sb->s_blocksize - sizeof(struct ext4_orphan_block_tail)) /
145702f310fcSJan Kara 			sizeof(u32);
145802f310fcSJan Kara }
145902f310fcSJan Kara 
146002f310fcSJan Kara struct ext4_orphan_block {
14614a79a98cSJan Kara 	atomic_t ob_free_entries;	/* Number of free orphan entries in block */
146202f310fcSJan Kara 	struct buffer_head *ob_bh;	/* Buffer for orphan block */
146302f310fcSJan Kara };
146402f310fcSJan Kara 
146502f310fcSJan Kara /*
146602f310fcSJan Kara  * Info about orphan file.
146702f310fcSJan Kara  */
146802f310fcSJan Kara struct ext4_orphan_info {
146902f310fcSJan Kara 	int of_blocks;			/* Number of orphan blocks in a file */
147002f310fcSJan Kara 	__u32 of_csum_seed;		/* Checksum seed for orphan file */
147102f310fcSJan Kara 	struct ext4_orphan_block *of_binfo;	/* Array with info about orphan
147202f310fcSJan Kara 						 * file blocks */
147302f310fcSJan Kara };
147402f310fcSJan Kara 
1475c83ad55eSGabriel Krisman Bertazi /*
1476ca0faba0STheodore Ts'o  * fourth extended-fs super-block data in memory
1477ca0faba0STheodore Ts'o  */
1478ca0faba0STheodore Ts'o struct ext4_sb_info {
1479ca0faba0STheodore Ts'o 	unsigned long s_desc_size;	/* Size of a group descriptor in bytes */
1480ca0faba0STheodore Ts'o 	unsigned long s_inodes_per_block;/* Number of inodes per block */
1481ca0faba0STheodore Ts'o 	unsigned long s_blocks_per_group;/* Number of blocks in a group */
1482281b5995STheodore Ts'o 	unsigned long s_clusters_per_group; /* Number of clusters in a group */
1483ca0faba0STheodore Ts'o 	unsigned long s_inodes_per_group;/* Number of inodes in a group */
1484ca0faba0STheodore Ts'o 	unsigned long s_itb_per_group;	/* Number of inode table blocks per group */
1485ca0faba0STheodore Ts'o 	unsigned long s_gdb_count;	/* Number of group descriptor blocks */
1486ca0faba0STheodore Ts'o 	unsigned long s_desc_per_block;	/* Number of group descriptors per block */
1487ca0faba0STheodore Ts'o 	ext4_group_t s_groups_count;	/* Number of groups in the fs */
1488fb0a387dSEric Sandeen 	ext4_group_t s_blockfile_groups;/* Groups acceptable for non-extent files */
1489952fc18eSTheodore Ts'o 	unsigned long s_overhead;  /* # of fs overhead clusters */
1490281b5995STheodore Ts'o 	unsigned int s_cluster_ratio;	/* Number of blocks per cluster */
1491281b5995STheodore Ts'o 	unsigned int s_cluster_bits;	/* log2 of s_cluster_ratio */
1492ca0faba0STheodore Ts'o 	loff_t s_bitmap_maxbytes;	/* max bytes for bitmap files */
1493ca0faba0STheodore Ts'o 	struct buffer_head * s_sbh;	/* Buffer containing the super block */
1494ca0faba0STheodore Ts'o 	struct ext4_super_block *s_es;	/* Pointer to the super block in the buffer */
14951d0c3924STheodore Ts'o 	struct buffer_head * __rcu *s_group_desc;
14967f4520ccSTheodore Ts'o 	unsigned int s_mount_opt;
1497a2595b8aSTheodore Ts'o 	unsigned int s_mount_opt2;
14989b5f6c9bSHarshad Shirwadkar 	unsigned long s_mount_flags;
14995a916be1STheodore Ts'o 	unsigned int s_def_mount_opt;
1500e3645d72SZhang Yi 	unsigned int s_def_mount_opt2;
1501ca0faba0STheodore Ts'o 	ext4_fsblk_t s_sb_block;
150227dd4385SLukas Czerner 	atomic64_t s_resv_clusters;
150308cefc7aSEric W. Biederman 	kuid_t s_resuid;
150408cefc7aSEric W. Biederman 	kgid_t s_resgid;
1505ca0faba0STheodore Ts'o 	unsigned short s_mount_state;
1506ca0faba0STheodore Ts'o 	unsigned short s_pad;
1507ca0faba0STheodore Ts'o 	int s_addr_per_block_bits;
1508ca0faba0STheodore Ts'o 	int s_desc_per_block_bits;
1509ca0faba0STheodore Ts'o 	int s_inode_size;
1510ca0faba0STheodore Ts'o 	int s_first_ino;
1511ca0faba0STheodore Ts'o 	unsigned int s_inode_readahead_blks;
151211013911SAndreas Dilger 	unsigned int s_inode_goal;
1513ca0faba0STheodore Ts'o 	u32 s_hash_seed[4];
1514ca0faba0STheodore Ts'o 	int s_def_hash_version;
15156d2424a8SEric Biggers 	int s_hash_unsigned;	/* 3 if hash should be unsigned, 0 if not */
151657042651STheodore Ts'o 	struct percpu_counter s_freeclusters_counter;
1517ca0faba0STheodore Ts'o 	struct percpu_counter s_freeinodes_counter;
1518ca0faba0STheodore Ts'o 	struct percpu_counter s_dirs_counter;
151957042651STheodore Ts'o 	struct percpu_counter s_dirtyclusters_counter;
1520efc61345SEric Whitney 	struct percpu_counter s_sra_exceeded_retry_limit;
1521ca0faba0STheodore Ts'o 	struct blockgroup_lock *s_blockgroup_lock;
1522ca0faba0STheodore Ts'o 	struct proc_dir_entry *s_proc;
1523ca0faba0STheodore Ts'o 	struct kobject s_kobj;
1524ca0faba0STheodore Ts'o 	struct completion s_kobj_unregister;
15252c0544b2STheodore Ts'o 	struct super_block *s_sb;
1526618f0031SPavel Skripkin 	struct buffer_head *s_mmp_bh;
1527ca0faba0STheodore Ts'o 
1528ca0faba0STheodore Ts'o 	/* Journaling */
1529ca0faba0STheodore Ts'o 	struct journal_s *s_journal;
15309549a168STheodore Ts'o 	unsigned long s_ext4_flags;		/* Ext4 superblock flags */
153102f310fcSJan Kara 	struct mutex s_orphan_lock;	/* Protects on disk list changes */
153202f310fcSJan Kara 	struct list_head s_orphan;	/* List of orphaned inodes in on disk
153302f310fcSJan Kara 					   list */
153402f310fcSJan Kara 	struct ext4_orphan_info s_orphan_info;
1535ca0faba0STheodore Ts'o 	unsigned long s_commit_interval;
1536ca0faba0STheodore Ts'o 	u32 s_max_batch_time;
1537ca0faba0STheodore Ts'o 	u32 s_min_batch_time;
1538ee7ed3aaSChunguang Xu 	struct block_device *s_journal_bdev;
1539ca0faba0STheodore Ts'o #ifdef CONFIG_QUOTA
154033458eabSTheodore Ts'o 	/* Names of quota files with journalled quota */
154133458eabSTheodore Ts'o 	char __rcu *s_qf_names[EXT4_MAXQUOTAS];
1542ca0faba0STheodore Ts'o 	int s_jquota_fmt;			/* Format of quota to use */
1543ca0faba0STheodore Ts'o #endif
1544ca0faba0STheodore Ts'o 	unsigned int s_want_extra_isize; /* New inodes should reserve # bytes */
1545dd0db94fSChunguang Xu 	struct ext4_system_blocks __rcu *s_system_blks;
1546ca0faba0STheodore Ts'o 
1547ca0faba0STheodore Ts'o #ifdef EXTENTS_STATS
1548ca0faba0STheodore Ts'o 	/* ext4 extents stats */
1549ca0faba0STheodore Ts'o 	unsigned long s_ext_min;
1550ca0faba0STheodore Ts'o 	unsigned long s_ext_max;
1551ca0faba0STheodore Ts'o 	unsigned long s_depth_max;
1552ca0faba0STheodore Ts'o 	spinlock_t s_ext_stats_lock;
1553ca0faba0STheodore Ts'o 	unsigned long s_ext_blocks;
1554ca0faba0STheodore Ts'o 	unsigned long s_ext_extents;
1555ca0faba0STheodore Ts'o #endif
1556ca0faba0STheodore Ts'o 
1557ca0faba0STheodore Ts'o 	/* for buddy allocator */
1558df3da4eaSSuraj Jitindar Singh 	struct ext4_group_info ** __rcu *s_group_info;
1559ca0faba0STheodore Ts'o 	struct inode *s_buddy_cache;
1560ca0faba0STheodore Ts'o 	spinlock_t s_md_lock;
1561ca0faba0STheodore Ts'o 	unsigned short *s_mb_offsets;
1562ca0faba0STheodore Ts'o 	unsigned int *s_mb_maxs;
156328623c2fSTheodore Ts'o 	unsigned int s_group_info_size;
1564d08854f5STheodore Ts'o 	unsigned int s_mb_free_pending;
1565a0154344SDaeho Jeong 	struct list_head s_freed_data_list;	/* List of blocks to be freed
1566a0154344SDaeho Jeong 						   after commit completed */
156755cdd0afSWang Jianchao 	struct list_head s_discard_list;
156855cdd0afSWang Jianchao 	struct work_struct s_discard_work;
15695036ab8dSWang Jianchao 	atomic_t s_retry_alloc_pending;
157083e80a6eSJan Kara 	struct list_head *s_mb_avg_fragment_size;
157183e80a6eSJan Kara 	rwlock_t *s_mb_avg_fragment_size_locks;
1572196e402aSHarshad Shirwadkar 	struct list_head *s_mb_largest_free_orders;
1573196e402aSHarshad Shirwadkar 	rwlock_t *s_mb_largest_free_orders_locks;
1574ca0faba0STheodore Ts'o 
1575ca0faba0STheodore Ts'o 	/* tunables */
1576ca0faba0STheodore Ts'o 	unsigned long s_stripe;
1577196e402aSHarshad Shirwadkar 	unsigned int s_mb_max_linear_groups;
1578ca0faba0STheodore Ts'o 	unsigned int s_mb_stream_request;
1579ca0faba0STheodore Ts'o 	unsigned int s_mb_max_to_scan;
1580ca0faba0STheodore Ts'o 	unsigned int s_mb_min_to_scan;
1581ca0faba0STheodore Ts'o 	unsigned int s_mb_stats;
1582ca0faba0STheodore Ts'o 	unsigned int s_mb_order2_reqs;
1583ca0faba0STheodore Ts'o 	unsigned int s_mb_group_prealloc;
1584df981d03STheodore Ts'o 	unsigned int s_max_dir_size_kb;
1585ca0faba0STheodore Ts'o 	/* where last allocation was done - for stream allocation */
1586ca0faba0STheodore Ts'o 	unsigned long s_mb_last_group;
1587ca0faba0STheodore Ts'o 	unsigned long s_mb_last_start;
1588cfd73237SAlex Zhuravlev 	unsigned int s_mb_prefetch;
1589cfd73237SAlex Zhuravlev 	unsigned int s_mb_prefetch_limit;
1590f52f3d2bSOjaswin Mujoo 	unsigned int s_mb_best_avail_max_trim_order;
1591ca0faba0STheodore Ts'o 
1592ca0faba0STheodore Ts'o 	/* stats for buddy allocator */
1593ca0faba0STheodore Ts'o 	atomic_t s_bal_reqs;	/* number of reqs with len > 1 */
1594ca0faba0STheodore Ts'o 	atomic_t s_bal_success;	/* we found long enough chunks */
1595ca0faba0STheodore Ts'o 	atomic_t s_bal_allocated;	/* in blocks */
1596ca0faba0STheodore Ts'o 	atomic_t s_bal_ex_scanned;	/* total extents scanned */
1597fdd9a009SOjaswin Mujoo 	atomic_t s_bal_cX_ex_scanned[EXT4_MB_NUM_CRS];	/* total extents scanned */
1598a6c75eafSHarshad Shirwadkar 	atomic_t s_bal_groups_scanned;	/* number of groups scanned */
1599ca0faba0STheodore Ts'o 	atomic_t s_bal_goals;	/* goal hits */
16003ef5d263SOjaswin Mujoo 	atomic_t s_bal_len_goals;	/* len goal hits */
1601ca0faba0STheodore Ts'o 	atomic_t s_bal_breaks;	/* too long searches */
1602ca0faba0STheodore Ts'o 	atomic_t s_bal_2orders;	/* 2^order hits */
1603f52f3d2bSOjaswin Mujoo 	atomic_t s_bal_p2_aligned_bad_suggestions;
1604f52f3d2bSOjaswin Mujoo 	atomic_t s_bal_goal_fast_bad_suggestions;
1605f52f3d2bSOjaswin Mujoo 	atomic_t s_bal_best_avail_bad_suggestions;
16064eb7a4a1SOjaswin Mujoo 	atomic64_t s_bal_cX_groups_considered[EXT4_MB_NUM_CRS];
16074eb7a4a1SOjaswin Mujoo 	atomic64_t s_bal_cX_hits[EXT4_MB_NUM_CRS];
16084eb7a4a1SOjaswin Mujoo 	atomic64_t s_bal_cX_failed[EXT4_MB_NUM_CRS];		/* cX loop didn't find blocks */
160967d25186SHarshad Shirwadkar 	atomic_t s_mb_buddies_generated;	/* number of buddies generated */
161067d25186SHarshad Shirwadkar 	atomic64_t s_mb_generation_time;
1611ca0faba0STheodore Ts'o 	atomic_t s_mb_lost_chunks;
1612ca0faba0STheodore Ts'o 	atomic_t s_mb_preallocated;
1613ca0faba0STheodore Ts'o 	atomic_t s_mb_discarded;
161450797481STheodore Ts'o 	atomic_t s_lock_busy;
1615ca0faba0STheodore Ts'o 
1616ca0faba0STheodore Ts'o 	/* locality groups */
1617003cb608STejun Heo 	struct ext4_locality_group __percpu *s_locality_groups;
1618ca0faba0STheodore Ts'o 
1619ca0faba0STheodore Ts'o 	/* for write statistics */
1620ca0faba0STheodore Ts'o 	unsigned long s_sectors_written_start;
1621ca0faba0STheodore Ts'o 	u64 s_kbytes_written;
1622ca0faba0STheodore Ts'o 
162367a5da56SZheng Liu 	/* the size of zero-out chunk */
162467a5da56SZheng Liu 	unsigned int s_extent_max_zeroout_kb;
162567a5da56SZheng Liu 
1626ca0faba0STheodore Ts'o 	unsigned int s_log_groups_per_flex;
16277c990728SSuraj Jitindar Singh 	struct flex_groups * __rcu *s_flex_groups;
1628117fff10STheodore Ts'o 	ext4_group_t s_flex_groups_allocated;
16294c0425ffSMingming Cao 
16302e8fa54eSJan Kara 	/* workqueue for reserved extent conversions (buffered io) */
16312e8fa54eSJan Kara 	struct workqueue_struct *rsv_conversion_wq;
163266e61a9eSTheodore Ts'o 
163366e61a9eSTheodore Ts'o 	/* timer for periodic error stats printing */
163466e61a9eSTheodore Ts'o 	struct timer_list s_err_report;
1635bfff6873SLukas Czerner 
1636bfff6873SLukas Czerner 	/* Lazy inode table initialization info */
1637bfff6873SLukas Czerner 	struct ext4_li_request *s_li_request;
1638bfff6873SLukas Czerner 	/* Wait multiplier for lazy initialization thread */
1639bfff6873SLukas Czerner 	unsigned int s_li_wait_mult;
1640c5e06d10SJohann Lombardi 
1641c5e06d10SJohann Lombardi 	/* Kernel thread for multiple mount protection */
1642c5e06d10SJohann Lombardi 	struct task_struct *s_mmp_tsk;
16433d56b8d2STao Ma 
16443d56b8d2STao Ma 	/* record the last minlen when FITRIM is called. */
16452327fb2eSLukas Czerner 	unsigned long s_last_trim_minblks;
16460441984aSDarrick J. Wong 
16470441984aSDarrick J. Wong 	/* Reference to checksum algorithm driver via cryptoapi */
16480441984aSDarrick J. Wong 	struct crypto_shash *s_chksum_driver;
1649a9c47317SDarrick J. Wong 
1650a9c47317SDarrick J. Wong 	/* Precomputed FS UUID checksum for seeding other checksums */
1651a9c47317SDarrick J. Wong 	__u32 s_csum_seed;
165274cd15cdSZheng Liu 
165374cd15cdSZheng Liu 	/* Reclaim extents from extent status tree */
165474cd15cdSZheng Liu 	struct shrinker s_es_shrinker;
1655dd475925SJan Kara 	struct list_head s_es_list;	/* List of inodes with reclaimable extents */
1656edaa53caSZheng Liu 	long s_es_nr_inode;
1657eb68d0e2SZheng Liu 	struct ext4_es_stats s_es_stats;
165847387409STahsin Erdogan 	struct mb_cache *s_ea_block_cache;
1659dec214d0STahsin Erdogan 	struct mb_cache *s_ea_inode_cache;
1660edaa53caSZheng Liu 	spinlock_t s_es_lock ____cacheline_aligned_in_smp;
1661efbed4dcSTheodore Ts'o 
1662188c299eSJan Kara 	/* Journal triggers for checksum computation */
1663188c299eSJan Kara 	struct ext4_journal_trigger s_journal_triggers[EXT4_JOURNAL_TRIGGER_COUNT];
1664188c299eSJan Kara 
1665efbed4dcSTheodore Ts'o 	/* Ratelimit ext4 messages. */
1666efbed4dcSTheodore Ts'o 	struct ratelimit_state s_err_ratelimit_state;
1667efbed4dcSTheodore Ts'o 	struct ratelimit_state s_warning_ratelimit_state;
1668efbed4dcSTheodore Ts'o 	struct ratelimit_state s_msg_ratelimit_state;
16691cf006edSDmitry Monakhov 	atomic_t s_warning_count;
16701cf006edSDmitry Monakhov 	atomic_t s_msg_count;
1671c8585c6fSDaeho Jeong 
1672ac4acb1fSEric Biggers 	/* Encryption policy for '-o test_dummy_encryption' */
1673ac4acb1fSEric Biggers 	struct fscrypt_dummy_policy s_dummy_enc_policy;
1674ed318a6cSEric Biggers 
1675cb85f4d2SEric Biggers 	/*
1676cb85f4d2SEric Biggers 	 * Barrier between writepages ops and changing any inode's JOURNAL_DATA
1677cb85f4d2SEric Biggers 	 * or EXTENTS flag.
1678cb85f4d2SEric Biggers 	 */
1679bbd55937SEric Biggers 	struct percpu_rw_semaphore s_writepages_rwsem;
16805e405595SDan Williams 	struct dax_device *s_daxdev;
1681cd913c76SChristoph Hellwig 	u64 s_dax_part_off;
168246f870d6STheodore Ts'o #ifdef CONFIG_EXT4_DEBUG
168346f870d6STheodore Ts'o 	unsigned long s_simulate_fail;
168446f870d6STheodore Ts'o #endif
1685bc71726cSzhangyi (F) 	/* Record the errseq of the backing block device */
1686bc71726cSzhangyi (F) 	errseq_t s_bdev_wb_err;
1687bc71726cSzhangyi (F) 	spinlock_t s_bdev_wb_lock;
1688aa75f4d3SHarshad Shirwadkar 
1689c92dc856SJan Kara 	/* Information about errors that happened during this mount */
1690c92dc856SJan Kara 	spinlock_t s_error_lock;
1691c92dc856SJan Kara 	int s_add_error_count;
1692c92dc856SJan Kara 	int s_first_error_code;
1693c92dc856SJan Kara 	__u32 s_first_error_line;
1694c92dc856SJan Kara 	__u32 s_first_error_ino;
1695c92dc856SJan Kara 	__u64 s_first_error_block;
1696c92dc856SJan Kara 	const char *s_first_error_func;
1697c92dc856SJan Kara 	time64_t s_first_error_time;
1698c92dc856SJan Kara 	int s_last_error_code;
1699c92dc856SJan Kara 	__u32 s_last_error_line;
1700c92dc856SJan Kara 	__u32 s_last_error_ino;
1701c92dc856SJan Kara 	__u64 s_last_error_block;
1702c92dc856SJan Kara 	const char *s_last_error_func;
1703c92dc856SJan Kara 	time64_t s_last_error_time;
1704c92dc856SJan Kara 	/*
1705c92dc856SJan Kara 	 * If we are in a context where we cannot update error information in
1706c92dc856SJan Kara 	 * the on-disk superblock, we queue this work to do it.
1707c92dc856SJan Kara 	 */
1708c92dc856SJan Kara 	struct work_struct s_error_work;
1709c92dc856SJan Kara 
17107bbbe241SHarshad Shirwadkar 	/* Ext4 fast commit sub transaction ID */
1711aa75f4d3SHarshad Shirwadkar 	atomic_t s_fc_subtid;
17127bbbe241SHarshad Shirwadkar 
1713aa75f4d3SHarshad Shirwadkar 	/*
1714aa75f4d3SHarshad Shirwadkar 	 * After commit starts, the main queue gets locked, and the further
1715aa75f4d3SHarshad Shirwadkar 	 * updates get added in the staging queue.
1716aa75f4d3SHarshad Shirwadkar 	 */
1717aa75f4d3SHarshad Shirwadkar #define FC_Q_MAIN	0
1718aa75f4d3SHarshad Shirwadkar #define FC_Q_STAGING	1
1719aa75f4d3SHarshad Shirwadkar 	struct list_head s_fc_q[2];	/* Inodes staged for fast commit
1720aa75f4d3SHarshad Shirwadkar 					 * that have data changes in them.
1721aa75f4d3SHarshad Shirwadkar 					 */
1722aa75f4d3SHarshad Shirwadkar 	struct list_head s_fc_dentry_q[2];	/* directory entry updates */
1723aa75f4d3SHarshad Shirwadkar 	unsigned int s_fc_bytes;
1724aa75f4d3SHarshad Shirwadkar 	/*
1725aa75f4d3SHarshad Shirwadkar 	 * Main fast commit lock. This lock protects accesses to the
1726aa75f4d3SHarshad Shirwadkar 	 * following fields:
1727aa75f4d3SHarshad Shirwadkar 	 * ei->i_fc_list, s_fc_dentry_q, s_fc_q, s_fc_bytes, s_fc_bh.
1728aa75f4d3SHarshad Shirwadkar 	 */
1729aa75f4d3SHarshad Shirwadkar 	spinlock_t s_fc_lock;
1730aa75f4d3SHarshad Shirwadkar 	struct buffer_head *s_fc_bh;
1731aa75f4d3SHarshad Shirwadkar 	struct ext4_fc_stats s_fc_stats;
1732e85c81baSXin Yin 	tid_t s_fc_ineligible_tid;
17338016e29fSHarshad Shirwadkar #ifdef CONFIG_EXT4_DEBUG
17348016e29fSHarshad Shirwadkar 	int s_fc_debug_max_replay;
17358016e29fSHarshad Shirwadkar #endif
17368016e29fSHarshad Shirwadkar 	struct ext4_fc_replay_state s_fc_replay_state;
1737ca0faba0STheodore Ts'o };
1738ca0faba0STheodore Ts'o 
17393dcf5451SChristoph Hellwig static inline struct ext4_sb_info *EXT4_SB(struct super_block *sb)
17403dcf5451SChristoph Hellwig {
17413dcf5451SChristoph Hellwig 	return sb->s_fs_info;
17423dcf5451SChristoph Hellwig }
17433dcf5451SChristoph Hellwig static inline struct ext4_inode_info *EXT4_I(struct inode *inode)
17443dcf5451SChristoph Hellwig {
17453dcf5451SChristoph Hellwig 	return container_of(inode, struct ext4_inode_info, vfs_inode);
17463dcf5451SChristoph Hellwig }
17473dcf5451SChristoph Hellwig 
174800d873c1SJan Kara static inline int ext4_writepages_down_read(struct super_block *sb)
174900d873c1SJan Kara {
175000d873c1SJan Kara 	percpu_down_read(&EXT4_SB(sb)->s_writepages_rwsem);
175100d873c1SJan Kara 	return memalloc_nofs_save();
175200d873c1SJan Kara }
175300d873c1SJan Kara 
175400d873c1SJan Kara static inline void ext4_writepages_up_read(struct super_block *sb, int ctx)
175500d873c1SJan Kara {
175600d873c1SJan Kara 	memalloc_nofs_restore(ctx);
175700d873c1SJan Kara 	percpu_up_read(&EXT4_SB(sb)->s_writepages_rwsem);
175800d873c1SJan Kara }
175900d873c1SJan Kara 
176000d873c1SJan Kara static inline int ext4_writepages_down_write(struct super_block *sb)
176100d873c1SJan Kara {
176200d873c1SJan Kara 	percpu_down_write(&EXT4_SB(sb)->s_writepages_rwsem);
176300d873c1SJan Kara 	return memalloc_nofs_save();
176400d873c1SJan Kara }
176500d873c1SJan Kara 
176600d873c1SJan Kara static inline void ext4_writepages_up_write(struct super_block *sb, int ctx)
176700d873c1SJan Kara {
176800d873c1SJan Kara 	memalloc_nofs_restore(ctx);
176900d873c1SJan Kara 	percpu_up_write(&EXT4_SB(sb)->s_writepages_rwsem);
177000d873c1SJan Kara }
177100d873c1SJan Kara 
17723dcf5451SChristoph Hellwig static inline int ext4_valid_inum(struct super_block *sb, unsigned long ino)
17733dcf5451SChristoph Hellwig {
17743dcf5451SChristoph Hellwig 	return ino == EXT4_ROOT_INO ||
17753dcf5451SChristoph Hellwig 		(ino >= EXT4_FIRST_INO(sb) &&
17763dcf5451SChristoph Hellwig 		 ino <= le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count));
17773dcf5451SChristoph Hellwig }
177819f5fb7aSTheodore Ts'o 
177919f5fb7aSTheodore Ts'o /*
17801d0c3924STheodore Ts'o  * Returns: sbi->field[index]
17811d0c3924STheodore Ts'o  * Used to access an array element from the following sbi fields which require
17821d0c3924STheodore Ts'o  * rcu protection to avoid dereferencing an invalid pointer due to reassignment
17831d0c3924STheodore Ts'o  * - s_group_desc
17841d0c3924STheodore Ts'o  * - s_group_info
17851d0c3924STheodore Ts'o  * - s_flex_group
17861d0c3924STheodore Ts'o  */
17871d0c3924STheodore Ts'o #define sbi_array_rcu_deref(sbi, field, index)				   \
17881d0c3924STheodore Ts'o ({									   \
17891d0c3924STheodore Ts'o 	typeof(*((sbi)->field)) _v;					   \
17901d0c3924STheodore Ts'o 	rcu_read_lock();						   \
17911d0c3924STheodore Ts'o 	_v = ((typeof(_v)*)rcu_dereference((sbi)->field))[index];	   \
17921d0c3924STheodore Ts'o 	rcu_read_unlock();						   \
17931d0c3924STheodore Ts'o 	_v;								   \
17941d0c3924STheodore Ts'o })
17951d0c3924STheodore Ts'o 
17961d0c3924STheodore Ts'o /*
17979b5f6c9bSHarshad Shirwadkar  * run-time mount flags
17989b5f6c9bSHarshad Shirwadkar  */
17999b5f6c9bSHarshad Shirwadkar enum {
18009b5f6c9bSHarshad Shirwadkar 	EXT4_MF_MNTDIR_SAMPLED,
18019b5f6c9bSHarshad Shirwadkar 	EXT4_MF_FS_ABORTED,	/* Fatal error detected */
1802bdc8a53aSXin Yin 	EXT4_MF_FC_INELIGIBLE	/* Fast commit ineligible */
18039b5f6c9bSHarshad Shirwadkar };
18049b5f6c9bSHarshad Shirwadkar 
18059b5f6c9bSHarshad Shirwadkar static inline void ext4_set_mount_flag(struct super_block *sb, int bit)
18069b5f6c9bSHarshad Shirwadkar {
18079b5f6c9bSHarshad Shirwadkar 	set_bit(bit, &EXT4_SB(sb)->s_mount_flags);
18089b5f6c9bSHarshad Shirwadkar }
18099b5f6c9bSHarshad Shirwadkar 
18109b5f6c9bSHarshad Shirwadkar static inline void ext4_clear_mount_flag(struct super_block *sb, int bit)
18119b5f6c9bSHarshad Shirwadkar {
18129b5f6c9bSHarshad Shirwadkar 	clear_bit(bit, &EXT4_SB(sb)->s_mount_flags);
18139b5f6c9bSHarshad Shirwadkar }
18149b5f6c9bSHarshad Shirwadkar 
18159b5f6c9bSHarshad Shirwadkar static inline int ext4_test_mount_flag(struct super_block *sb, int bit)
18169b5f6c9bSHarshad Shirwadkar {
18179b5f6c9bSHarshad Shirwadkar 	return test_bit(bit, &EXT4_SB(sb)->s_mount_flags);
18189b5f6c9bSHarshad Shirwadkar }
18199b5f6c9bSHarshad Shirwadkar 
18209b5f6c9bSHarshad Shirwadkar 
18219b5f6c9bSHarshad Shirwadkar /*
182246f870d6STheodore Ts'o  * Simulate_fail codes
182346f870d6STheodore Ts'o  */
182446f870d6STheodore Ts'o #define EXT4_SIM_BBITMAP_EIO	1
182546f870d6STheodore Ts'o #define EXT4_SIM_BBITMAP_CRC	2
182646f870d6STheodore Ts'o #define EXT4_SIM_IBITMAP_EIO	3
182746f870d6STheodore Ts'o #define EXT4_SIM_IBITMAP_CRC	4
182846f870d6STheodore Ts'o #define EXT4_SIM_INODE_EIO	5
182946f870d6STheodore Ts'o #define EXT4_SIM_INODE_CRC	6
183046f870d6STheodore Ts'o #define EXT4_SIM_DIRBLOCK_EIO	7
183146f870d6STheodore Ts'o #define EXT4_SIM_DIRBLOCK_CRC	8
183246f870d6STheodore Ts'o 
183346f870d6STheodore Ts'o static inline bool ext4_simulate_fail(struct super_block *sb,
183446f870d6STheodore Ts'o 				     unsigned long code)
183546f870d6STheodore Ts'o {
183646f870d6STheodore Ts'o #ifdef CONFIG_EXT4_DEBUG
183746f870d6STheodore Ts'o 	struct ext4_sb_info *sbi = EXT4_SB(sb);
183846f870d6STheodore Ts'o 
183946f870d6STheodore Ts'o 	if (unlikely(sbi->s_simulate_fail == code)) {
184046f870d6STheodore Ts'o 		sbi->s_simulate_fail = 0;
184146f870d6STheodore Ts'o 		return true;
184246f870d6STheodore Ts'o 	}
184346f870d6STheodore Ts'o #endif
184446f870d6STheodore Ts'o 	return false;
184546f870d6STheodore Ts'o }
184646f870d6STheodore Ts'o 
184746f870d6STheodore Ts'o static inline void ext4_simulate_fail_bh(struct super_block *sb,
184846f870d6STheodore Ts'o 					 struct buffer_head *bh,
184946f870d6STheodore Ts'o 					 unsigned long code)
185046f870d6STheodore Ts'o {
185146f870d6STheodore Ts'o 	if (!IS_ERR(bh) && ext4_simulate_fail(sb, code))
185246f870d6STheodore Ts'o 		clear_buffer_uptodate(bh);
185346f870d6STheodore Ts'o }
185446f870d6STheodore Ts'o 
185546f870d6STheodore Ts'o /*
1856878520acSTheodore Ts'o  * Error number codes for s_{first,last}_error_errno
1857878520acSTheodore Ts'o  *
1858878520acSTheodore Ts'o  * Linux errno numbers are architecture specific, so we need to translate
1859878520acSTheodore Ts'o  * them into something which is architecture independent.   We don't define
1860878520acSTheodore Ts'o  * codes for all errno's; just the ones which are most likely to be the cause
1861878520acSTheodore Ts'o  * of an ext4_error() call.
1862878520acSTheodore Ts'o  */
1863878520acSTheodore Ts'o #define EXT4_ERR_UNKNOWN	 1
1864878520acSTheodore Ts'o #define EXT4_ERR_EIO		 2
1865878520acSTheodore Ts'o #define EXT4_ERR_ENOMEM		 3
1866878520acSTheodore Ts'o #define EXT4_ERR_EFSBADCRC	 4
1867878520acSTheodore Ts'o #define EXT4_ERR_EFSCORRUPTED	 5
1868878520acSTheodore Ts'o #define EXT4_ERR_ENOSPC		 6
1869878520acSTheodore Ts'o #define EXT4_ERR_ENOKEY		 7
1870878520acSTheodore Ts'o #define EXT4_ERR_EROFS		 8
1871878520acSTheodore Ts'o #define EXT4_ERR_EFBIG		 9
1872878520acSTheodore Ts'o #define EXT4_ERR_EEXIST		10
1873878520acSTheodore Ts'o #define EXT4_ERR_ERANGE		11
1874878520acSTheodore Ts'o #define EXT4_ERR_EOVERFLOW	12
1875878520acSTheodore Ts'o #define EXT4_ERR_EBUSY		13
1876878520acSTheodore Ts'o #define EXT4_ERR_ENOTDIR	14
1877878520acSTheodore Ts'o #define EXT4_ERR_ENOTEMPTY	15
1878878520acSTheodore Ts'o #define EXT4_ERR_ESHUTDOWN	16
1879878520acSTheodore Ts'o #define EXT4_ERR_EFAULT		17
1880878520acSTheodore Ts'o 
1881878520acSTheodore Ts'o /*
188219f5fb7aSTheodore Ts'o  * Inode dynamic state flags
188319f5fb7aSTheodore Ts'o  */
188419f5fb7aSTheodore Ts'o enum {
188519f5fb7aSTheodore Ts'o 	EXT4_STATE_NEW,			/* inode is newly created */
188619f5fb7aSTheodore Ts'o 	EXT4_STATE_XATTR,		/* has in-inode xattrs */
188719f5fb7aSTheodore Ts'o 	EXT4_STATE_NO_EXPAND,		/* No space for expansion */
188819f5fb7aSTheodore Ts'o 	EXT4_STATE_DA_ALLOC_CLOSE,	/* Alloc DA blks on close */
188919f5fb7aSTheodore Ts'o 	EXT4_STATE_EXT_MIGRATE,		/* Inode is migrating */
189014ece102SFrank Mayhar 	EXT4_STATE_NEWENTRY,		/* File just added to dir */
189167cf5b09STao Ma 	EXT4_STATE_MAY_INLINE_DATA,	/* may have in-inode data */
18927869a4a6STheodore Ts'o 	EXT4_STATE_EXT_PRECACHED,	/* extents have been precached */
1893a6d05676STahsin Erdogan 	EXT4_STATE_LUSTRE_EA_INODE,	/* Lustre-style ea_inode */
1894c93d8f88SEric Biggers 	EXT4_STATE_VERITY_IN_PROGRESS,	/* building fs-verity Merkle tree */
1895aa75f4d3SHarshad Shirwadkar 	EXT4_STATE_FC_COMMITTING,	/* Fast commit ongoing */
189602f310fcSJan Kara 	EXT4_STATE_ORPHAN_FILE,		/* Inode orphaned in orphan file */
189719f5fb7aSTheodore Ts'o };
189819f5fb7aSTheodore Ts'o 
1899353eb83cSTheodore Ts'o #define EXT4_INODE_BIT_FNS(name, field, offset)				\
190012e9b892SDmitry Monakhov static inline int ext4_test_inode_##name(struct inode *inode, int bit)	\
190112e9b892SDmitry Monakhov {									\
1902353eb83cSTheodore Ts'o 	return test_bit(bit + (offset), &EXT4_I(inode)->i_##field);	\
190312e9b892SDmitry Monakhov }									\
190412e9b892SDmitry Monakhov static inline void ext4_set_inode_##name(struct inode *inode, int bit)	\
190512e9b892SDmitry Monakhov {									\
1906353eb83cSTheodore Ts'o 	set_bit(bit + (offset), &EXT4_I(inode)->i_##field);		\
190712e9b892SDmitry Monakhov }									\
190812e9b892SDmitry Monakhov static inline void ext4_clear_inode_##name(struct inode *inode, int bit) \
190912e9b892SDmitry Monakhov {									\
1910353eb83cSTheodore Ts'o 	clear_bit(bit + (offset), &EXT4_I(inode)->i_##field);		\
191119f5fb7aSTheodore Ts'o }
191219f5fb7aSTheodore Ts'o 
19133f61c0ccSAndreas Dilger /* Add these declarations here only so that these functions can be
19143f61c0ccSAndreas Dilger  * found by name.  Otherwise, they are very hard to locate. */
19153f61c0ccSAndreas Dilger static inline int ext4_test_inode_flag(struct inode *inode, int bit);
19163f61c0ccSAndreas Dilger static inline void ext4_set_inode_flag(struct inode *inode, int bit);
19173f61c0ccSAndreas Dilger static inline void ext4_clear_inode_flag(struct inode *inode, int bit);
1918353eb83cSTheodore Ts'o EXT4_INODE_BIT_FNS(flag, flags, 0)
19193f61c0ccSAndreas Dilger 
19203f61c0ccSAndreas Dilger /* Add these declarations here only so that these functions can be
19213f61c0ccSAndreas Dilger  * found by name.  Otherwise, they are very hard to locate. */
19223f61c0ccSAndreas Dilger static inline int ext4_test_inode_state(struct inode *inode, int bit);
19233f61c0ccSAndreas Dilger static inline void ext4_set_inode_state(struct inode *inode, int bit);
19243f61c0ccSAndreas Dilger static inline void ext4_clear_inode_state(struct inode *inode, int bit);
1925353eb83cSTheodore Ts'o #if (BITS_PER_LONG < 64)
1926353eb83cSTheodore Ts'o EXT4_INODE_BIT_FNS(state, state_flags, 0)
1927353eb83cSTheodore Ts'o 
1928353eb83cSTheodore Ts'o static inline void ext4_clear_state_flags(struct ext4_inode_info *ei)
1929353eb83cSTheodore Ts'o {
1930353eb83cSTheodore Ts'o 	(ei)->i_state_flags = 0;
1931353eb83cSTheodore Ts'o }
1932353eb83cSTheodore Ts'o #else
1933353eb83cSTheodore Ts'o EXT4_INODE_BIT_FNS(state, flags, 32)
1934353eb83cSTheodore Ts'o 
1935353eb83cSTheodore Ts'o static inline void ext4_clear_state_flags(struct ext4_inode_info *ei)
1936353eb83cSTheodore Ts'o {
1937353eb83cSTheodore Ts'o 	/* We depend on the fact that callers will set i_flags */
1938353eb83cSTheodore Ts'o }
1939353eb83cSTheodore Ts'o #endif
19403dcf5451SChristoph Hellwig #else
19413dcf5451SChristoph Hellwig /* Assume that user mode programs are passing in an ext4fs superblock, not
19423dcf5451SChristoph Hellwig  * a kernel struct super_block.  This will allow us to call the feature-test
19433dcf5451SChristoph Hellwig  * macros from user land. */
19443dcf5451SChristoph Hellwig #define EXT4_SB(sb)	(sb)
19453dcf5451SChristoph Hellwig #endif
19463dcf5451SChristoph Hellwig 
1947c93d8f88SEric Biggers static inline bool ext4_verity_in_progress(struct inode *inode)
1948c93d8f88SEric Biggers {
1949c93d8f88SEric Biggers 	return IS_ENABLED(CONFIG_FS_VERITY) &&
1950c93d8f88SEric Biggers 	       ext4_test_inode_state(inode, EXT4_STATE_VERITY_IN_PROGRESS);
1951c93d8f88SEric Biggers }
1952c93d8f88SEric Biggers 
19533dcf5451SChristoph Hellwig #define NEXT_ORPHAN(inode) EXT4_I(inode)->i_dtime
19543dcf5451SChristoph Hellwig 
19553dcf5451SChristoph Hellwig /*
19563dcf5451SChristoph Hellwig  * Codes for operating systems
19573dcf5451SChristoph Hellwig  */
19583dcf5451SChristoph Hellwig #define EXT4_OS_LINUX		0
19593dcf5451SChristoph Hellwig #define EXT4_OS_HURD		1
19603dcf5451SChristoph Hellwig #define EXT4_OS_MASIX		2
19613dcf5451SChristoph Hellwig #define EXT4_OS_FREEBSD		3
19623dcf5451SChristoph Hellwig #define EXT4_OS_LITES		4
19633dcf5451SChristoph Hellwig 
19643dcf5451SChristoph Hellwig /*
19653dcf5451SChristoph Hellwig  * Revision levels
19663dcf5451SChristoph Hellwig  */
19673dcf5451SChristoph Hellwig #define EXT4_GOOD_OLD_REV	0	/* The good old (original) format */
19683dcf5451SChristoph Hellwig #define EXT4_DYNAMIC_REV	1	/* V2 format w/ dynamic inode sizes */
19693dcf5451SChristoph Hellwig 
19703dcf5451SChristoph Hellwig #define EXT4_MAX_SUPP_REV	EXT4_DYNAMIC_REV
19713dcf5451SChristoph Hellwig 
19723dcf5451SChristoph Hellwig #define EXT4_GOOD_OLD_INODE_SIZE 128
19733dcf5451SChristoph Hellwig 
19744881c497SDeepa Dinamani #define EXT4_EXTRA_TIMESTAMP_MAX	(((s64)1 << 34) - 1  + S32_MIN)
19754881c497SDeepa Dinamani #define EXT4_NON_EXTRA_TIMESTAMP_MAX	S32_MAX
19764881c497SDeepa Dinamani #define EXT4_TIMESTAMP_MIN		S32_MIN
19774881c497SDeepa Dinamani 
19783dcf5451SChristoph Hellwig /*
19793dcf5451SChristoph Hellwig  * Feature set definitions
19803dcf5451SChristoph Hellwig  */
19813dcf5451SChristoph Hellwig 
19823dcf5451SChristoph Hellwig #define EXT4_FEATURE_COMPAT_DIR_PREALLOC	0x0001
19833dcf5451SChristoph Hellwig #define EXT4_FEATURE_COMPAT_IMAGIC_INODES	0x0002
19843dcf5451SChristoph Hellwig #define EXT4_FEATURE_COMPAT_HAS_JOURNAL		0x0004
19853dcf5451SChristoph Hellwig #define EXT4_FEATURE_COMPAT_EXT_ATTR		0x0008
19863dcf5451SChristoph Hellwig #define EXT4_FEATURE_COMPAT_RESIZE_INODE	0x0010
19873dcf5451SChristoph Hellwig #define EXT4_FEATURE_COMPAT_DIR_INDEX		0x0020
19881beeef1bSDarrick J. Wong #define EXT4_FEATURE_COMPAT_SPARSE_SUPER2	0x0200
1989a44ad683SHarshad Shirwadkar /*
1990a44ad683SHarshad Shirwadkar  * The reason why "FAST_COMMIT" is a compat feature is that, FS becomes
1991a44ad683SHarshad Shirwadkar  * incompatible only if fast commit blocks are present in the FS. Since we
1992a44ad683SHarshad Shirwadkar  * clear the journal (and thus the fast commit blocks), we don't mark FS as
1993a44ad683SHarshad Shirwadkar  * incompatible. We also have a JBD2 incompat feature, which gets set when
1994a44ad683SHarshad Shirwadkar  * there are fast commit blocks present in the journal.
1995a44ad683SHarshad Shirwadkar  */
1996995a3ed6SHarshad Shirwadkar #define EXT4_FEATURE_COMPAT_FAST_COMMIT		0x0400
1997b925acb8SEric Biggers #define EXT4_FEATURE_COMPAT_STABLE_INODES	0x0800
199802f310fcSJan Kara #define EXT4_FEATURE_COMPAT_ORPHAN_FILE		0x1000	/* Orphan file exists */
19993dcf5451SChristoph Hellwig 
20003dcf5451SChristoph Hellwig #define EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER	0x0001
20013dcf5451SChristoph Hellwig #define EXT4_FEATURE_RO_COMPAT_LARGE_FILE	0x0002
20023dcf5451SChristoph Hellwig #define EXT4_FEATURE_RO_COMPAT_BTREE_DIR	0x0004
20033dcf5451SChristoph Hellwig #define EXT4_FEATURE_RO_COMPAT_HUGE_FILE        0x0008
20043dcf5451SChristoph Hellwig #define EXT4_FEATURE_RO_COMPAT_GDT_CSUM		0x0010
20053dcf5451SChristoph Hellwig #define EXT4_FEATURE_RO_COMPAT_DIR_NLINK	0x0020
20063dcf5451SChristoph Hellwig #define EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE	0x0040
2007ae812306SAditya Kali #define EXT4_FEATURE_RO_COMPAT_QUOTA		0x0100
2008281b5995STheodore Ts'o #define EXT4_FEATURE_RO_COMPAT_BIGALLOC		0x0200
2009e6153918SDarrick J. Wong /*
2010e6153918SDarrick J. Wong  * METADATA_CSUM also enables group descriptor checksums (GDT_CSUM).  When
2011e6153918SDarrick J. Wong  * METADATA_CSUM is set, group descriptor checksums use the same algorithm as
2012e6153918SDarrick J. Wong  * all other data structures' checksums.  However, the METADATA_CSUM and
2013e6153918SDarrick J. Wong  * GDT_CSUM bits are mutually exclusive.
2014e6153918SDarrick J. Wong  */
20159b90e5e0STheodore Ts'o #define EXT4_FEATURE_RO_COMPAT_METADATA_CSUM	0x0400
20162cb5cc8bSDarrick J. Wong #define EXT4_FEATURE_RO_COMPAT_READONLY		0x1000
20178b4953e1STheodore Ts'o #define EXT4_FEATURE_RO_COMPAT_PROJECT		0x2000
2018c93d8f88SEric Biggers #define EXT4_FEATURE_RO_COMPAT_VERITY		0x8000
201902f310fcSJan Kara #define EXT4_FEATURE_RO_COMPAT_ORPHAN_PRESENT	0x10000 /* Orphan file may be
202002f310fcSJan Kara 							   non-empty */
20213dcf5451SChristoph Hellwig 
20223dcf5451SChristoph Hellwig #define EXT4_FEATURE_INCOMPAT_COMPRESSION	0x0001
20233dcf5451SChristoph Hellwig #define EXT4_FEATURE_INCOMPAT_FILETYPE		0x0002
20243dcf5451SChristoph Hellwig #define EXT4_FEATURE_INCOMPAT_RECOVER		0x0004 /* Needs recovery */
20253dcf5451SChristoph Hellwig #define EXT4_FEATURE_INCOMPAT_JOURNAL_DEV	0x0008 /* Journal device */
20263dcf5451SChristoph Hellwig #define EXT4_FEATURE_INCOMPAT_META_BG		0x0010
20273dcf5451SChristoph Hellwig #define EXT4_FEATURE_INCOMPAT_EXTENTS		0x0040 /* extents support */
20283dcf5451SChristoph Hellwig #define EXT4_FEATURE_INCOMPAT_64BIT		0x0080
20293dcf5451SChristoph Hellwig #define EXT4_FEATURE_INCOMPAT_MMP               0x0100
20303dcf5451SChristoph Hellwig #define EXT4_FEATURE_INCOMPAT_FLEX_BG		0x0200
2031f710b4b9STheodore Ts'o #define EXT4_FEATURE_INCOMPAT_EA_INODE		0x0400 /* EA in inode */
2032f710b4b9STheodore Ts'o #define EXT4_FEATURE_INCOMPAT_DIRDATA		0x1000 /* data in dirent */
20338c81bd8fSDarrick J. Wong #define EXT4_FEATURE_INCOMPAT_CSUM_SEED		0x2000
20349b90e5e0STheodore Ts'o #define EXT4_FEATURE_INCOMPAT_LARGEDIR		0x4000 /* >2GB or 3-lvl htree */
203567cf5b09STao Ma #define EXT4_FEATURE_INCOMPAT_INLINE_DATA	0x8000 /* data in inode */
20363edc18d8STheodore Ts'o #define EXT4_FEATURE_INCOMPAT_ENCRYPT		0x10000
2037c83ad55eSGabriel Krisman Bertazi #define EXT4_FEATURE_INCOMPAT_CASEFOLD		0x20000
20383dcf5451SChristoph Hellwig 
2039c9e716ebSAndreas Dilger extern void ext4_update_dynamic_rev(struct super_block *sb);
2040c9e716ebSAndreas Dilger 
2041e2b911c5SDarrick J. Wong #define EXT4_FEATURE_COMPAT_FUNCS(name, flagname) \
2042e2b911c5SDarrick J. Wong static inline bool ext4_has_feature_##name(struct super_block *sb) \
2043e2b911c5SDarrick J. Wong { \
2044e2b911c5SDarrick J. Wong 	return ((EXT4_SB(sb)->s_es->s_feature_compat & \
2045e2b911c5SDarrick J. Wong 		cpu_to_le32(EXT4_FEATURE_COMPAT_##flagname)) != 0); \
2046e2b911c5SDarrick J. Wong } \
2047e2b911c5SDarrick J. Wong static inline void ext4_set_feature_##name(struct super_block *sb) \
2048e2b911c5SDarrick J. Wong { \
2049c9e716ebSAndreas Dilger 	ext4_update_dynamic_rev(sb); \
2050e2b911c5SDarrick J. Wong 	EXT4_SB(sb)->s_es->s_feature_compat |= \
2051e2b911c5SDarrick J. Wong 		cpu_to_le32(EXT4_FEATURE_COMPAT_##flagname); \
2052e2b911c5SDarrick J. Wong } \
2053e2b911c5SDarrick J. Wong static inline void ext4_clear_feature_##name(struct super_block *sb) \
2054e2b911c5SDarrick J. Wong { \
2055e2b911c5SDarrick J. Wong 	EXT4_SB(sb)->s_es->s_feature_compat &= \
2056e2b911c5SDarrick J. Wong 		~cpu_to_le32(EXT4_FEATURE_COMPAT_##flagname); \
2057e2b911c5SDarrick J. Wong }
2058e2b911c5SDarrick J. Wong 
2059e2b911c5SDarrick J. Wong #define EXT4_FEATURE_RO_COMPAT_FUNCS(name, flagname) \
2060e2b911c5SDarrick J. Wong static inline bool ext4_has_feature_##name(struct super_block *sb) \
2061e2b911c5SDarrick J. Wong { \
2062e2b911c5SDarrick J. Wong 	return ((EXT4_SB(sb)->s_es->s_feature_ro_compat & \
2063e2b911c5SDarrick J. Wong 		cpu_to_le32(EXT4_FEATURE_RO_COMPAT_##flagname)) != 0); \
2064e2b911c5SDarrick J. Wong } \
2065e2b911c5SDarrick J. Wong static inline void ext4_set_feature_##name(struct super_block *sb) \
2066e2b911c5SDarrick J. Wong { \
2067c9e716ebSAndreas Dilger 	ext4_update_dynamic_rev(sb); \
2068e2b911c5SDarrick J. Wong 	EXT4_SB(sb)->s_es->s_feature_ro_compat |= \
2069e2b911c5SDarrick J. Wong 		cpu_to_le32(EXT4_FEATURE_RO_COMPAT_##flagname); \
2070e2b911c5SDarrick J. Wong } \
2071e2b911c5SDarrick J. Wong static inline void ext4_clear_feature_##name(struct super_block *sb) \
2072e2b911c5SDarrick J. Wong { \
2073e2b911c5SDarrick J. Wong 	EXT4_SB(sb)->s_es->s_feature_ro_compat &= \
2074e2b911c5SDarrick J. Wong 		~cpu_to_le32(EXT4_FEATURE_RO_COMPAT_##flagname); \
2075e2b911c5SDarrick J. Wong }
2076e2b911c5SDarrick J. Wong 
2077e2b911c5SDarrick J. Wong #define EXT4_FEATURE_INCOMPAT_FUNCS(name, flagname) \
2078e2b911c5SDarrick J. Wong static inline bool ext4_has_feature_##name(struct super_block *sb) \
2079e2b911c5SDarrick J. Wong { \
2080e2b911c5SDarrick J. Wong 	return ((EXT4_SB(sb)->s_es->s_feature_incompat & \
2081e2b911c5SDarrick J. Wong 		cpu_to_le32(EXT4_FEATURE_INCOMPAT_##flagname)) != 0); \
2082e2b911c5SDarrick J. Wong } \
2083e2b911c5SDarrick J. Wong static inline void ext4_set_feature_##name(struct super_block *sb) \
2084e2b911c5SDarrick J. Wong { \
2085c9e716ebSAndreas Dilger 	ext4_update_dynamic_rev(sb); \
2086e2b911c5SDarrick J. Wong 	EXT4_SB(sb)->s_es->s_feature_incompat |= \
2087e2b911c5SDarrick J. Wong 		cpu_to_le32(EXT4_FEATURE_INCOMPAT_##flagname); \
2088e2b911c5SDarrick J. Wong } \
2089e2b911c5SDarrick J. Wong static inline void ext4_clear_feature_##name(struct super_block *sb) \
2090e2b911c5SDarrick J. Wong { \
2091e2b911c5SDarrick J. Wong 	EXT4_SB(sb)->s_es->s_feature_incompat &= \
2092e2b911c5SDarrick J. Wong 		~cpu_to_le32(EXT4_FEATURE_INCOMPAT_##flagname); \
2093e2b911c5SDarrick J. Wong }
2094e2b911c5SDarrick J. Wong 
2095e2b911c5SDarrick J. Wong EXT4_FEATURE_COMPAT_FUNCS(dir_prealloc,		DIR_PREALLOC)
2096e2b911c5SDarrick J. Wong EXT4_FEATURE_COMPAT_FUNCS(imagic_inodes,	IMAGIC_INODES)
2097e2b911c5SDarrick J. Wong EXT4_FEATURE_COMPAT_FUNCS(journal,		HAS_JOURNAL)
2098e2b911c5SDarrick J. Wong EXT4_FEATURE_COMPAT_FUNCS(xattr,		EXT_ATTR)
2099e2b911c5SDarrick J. Wong EXT4_FEATURE_COMPAT_FUNCS(resize_inode,		RESIZE_INODE)
2100e2b911c5SDarrick J. Wong EXT4_FEATURE_COMPAT_FUNCS(dir_index,		DIR_INDEX)
2101e2b911c5SDarrick J. Wong EXT4_FEATURE_COMPAT_FUNCS(sparse_super2,	SPARSE_SUPER2)
2102995a3ed6SHarshad Shirwadkar EXT4_FEATURE_COMPAT_FUNCS(fast_commit,		FAST_COMMIT)
2103b925acb8SEric Biggers EXT4_FEATURE_COMPAT_FUNCS(stable_inodes,	STABLE_INODES)
210402f310fcSJan Kara EXT4_FEATURE_COMPAT_FUNCS(orphan_file,		ORPHAN_FILE)
2105e2b911c5SDarrick J. Wong 
2106e2b911c5SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_FUNCS(sparse_super,	SPARSE_SUPER)
2107e2b911c5SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_FUNCS(large_file,	LARGE_FILE)
2108e2b911c5SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_FUNCS(btree_dir,		BTREE_DIR)
2109e2b911c5SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_FUNCS(huge_file,		HUGE_FILE)
2110e2b911c5SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_FUNCS(gdt_csum,		GDT_CSUM)
2111e2b911c5SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_FUNCS(dir_nlink,		DIR_NLINK)
2112e2b911c5SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_FUNCS(extra_isize,	EXTRA_ISIZE)
2113e2b911c5SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_FUNCS(quota,		QUOTA)
2114e2b911c5SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_FUNCS(bigalloc,		BIGALLOC)
2115e2b911c5SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_FUNCS(metadata_csum,	METADATA_CSUM)
2116e2b911c5SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_FUNCS(readonly,		READONLY)
2117e2b911c5SDarrick J. Wong EXT4_FEATURE_RO_COMPAT_FUNCS(project,		PROJECT)
2118c93d8f88SEric Biggers EXT4_FEATURE_RO_COMPAT_FUNCS(verity,		VERITY)
211902f310fcSJan Kara EXT4_FEATURE_RO_COMPAT_FUNCS(orphan_present,	ORPHAN_PRESENT)
2120e2b911c5SDarrick J. Wong 
2121e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(compression,	COMPRESSION)
2122e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(filetype,		FILETYPE)
2123e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(journal_needs_recovery,	RECOVER)
2124e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(journal_dev,	JOURNAL_DEV)
2125e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(meta_bg,		META_BG)
2126e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(extents,		EXTENTS)
2127e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(64bit,		64BIT)
2128e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(mmp,		MMP)
2129e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(flex_bg,		FLEX_BG)
2130e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(ea_inode,		EA_INODE)
2131e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(dirdata,		DIRDATA)
2132e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(csum_seed,		CSUM_SEED)
2133e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(largedir,		LARGEDIR)
2134e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(inline_data,	INLINE_DATA)
2135e2b911c5SDarrick J. Wong EXT4_FEATURE_INCOMPAT_FUNCS(encrypt,		ENCRYPT)
2136c83ad55eSGabriel Krisman Bertazi EXT4_FEATURE_INCOMPAT_FUNCS(casefold,		CASEFOLD)
2137e2b911c5SDarrick J. Wong 
21382035e776STheodore Ts'o #define EXT2_FEATURE_COMPAT_SUPP	EXT4_FEATURE_COMPAT_EXT_ATTR
21392035e776STheodore Ts'o #define EXT2_FEATURE_INCOMPAT_SUPP	(EXT4_FEATURE_INCOMPAT_FILETYPE| \
21402035e776STheodore Ts'o 					 EXT4_FEATURE_INCOMPAT_META_BG)
21412035e776STheodore Ts'o #define EXT2_FEATURE_RO_COMPAT_SUPP	(EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER| \
21422035e776STheodore Ts'o 					 EXT4_FEATURE_RO_COMPAT_LARGE_FILE| \
21432035e776STheodore Ts'o 					 EXT4_FEATURE_RO_COMPAT_BTREE_DIR)
21442035e776STheodore Ts'o 
21452035e776STheodore Ts'o #define EXT3_FEATURE_COMPAT_SUPP	EXT4_FEATURE_COMPAT_EXT_ATTR
21462035e776STheodore Ts'o #define EXT3_FEATURE_INCOMPAT_SUPP	(EXT4_FEATURE_INCOMPAT_FILETYPE| \
21472035e776STheodore Ts'o 					 EXT4_FEATURE_INCOMPAT_RECOVER| \
21482035e776STheodore Ts'o 					 EXT4_FEATURE_INCOMPAT_META_BG)
21492035e776STheodore Ts'o #define EXT3_FEATURE_RO_COMPAT_SUPP	(EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER| \
21502035e776STheodore Ts'o 					 EXT4_FEATURE_RO_COMPAT_LARGE_FILE| \
21512035e776STheodore Ts'o 					 EXT4_FEATURE_RO_COMPAT_BTREE_DIR)
21522035e776STheodore Ts'o 
215302f310fcSJan Kara #define EXT4_FEATURE_COMPAT_SUPP	(EXT4_FEATURE_COMPAT_EXT_ATTR| \
215402f310fcSJan Kara 					 EXT4_FEATURE_COMPAT_ORPHAN_FILE)
21553dcf5451SChristoph Hellwig #define EXT4_FEATURE_INCOMPAT_SUPP	(EXT4_FEATURE_INCOMPAT_FILETYPE| \
21563dcf5451SChristoph Hellwig 					 EXT4_FEATURE_INCOMPAT_RECOVER| \
21573dcf5451SChristoph Hellwig 					 EXT4_FEATURE_INCOMPAT_META_BG| \
21583dcf5451SChristoph Hellwig 					 EXT4_FEATURE_INCOMPAT_EXTENTS| \
21593dcf5451SChristoph Hellwig 					 EXT4_FEATURE_INCOMPAT_64BIT| \
2160c5e06d10SJohann Lombardi 					 EXT4_FEATURE_INCOMPAT_FLEX_BG| \
2161e50e5129SAndreas Dilger 					 EXT4_FEATURE_INCOMPAT_EA_INODE| \
2162f08225d1STao Ma 					 EXT4_FEATURE_INCOMPAT_MMP | \
21636ddb2447STheodore Ts'o 					 EXT4_FEATURE_INCOMPAT_INLINE_DATA | \
21648c81bd8fSDarrick J. Wong 					 EXT4_FEATURE_INCOMPAT_ENCRYPT | \
2165c83ad55eSGabriel Krisman Bertazi 					 EXT4_FEATURE_INCOMPAT_CASEFOLD | \
2166e08ac99fSArtem Blagodarenko 					 EXT4_FEATURE_INCOMPAT_CSUM_SEED | \
2167e08ac99fSArtem Blagodarenko 					 EXT4_FEATURE_INCOMPAT_LARGEDIR)
21683dcf5451SChristoph Hellwig #define EXT4_FEATURE_RO_COMPAT_SUPP	(EXT4_FEATURE_RO_COMPAT_SPARSE_SUPER| \
21693dcf5451SChristoph Hellwig 					 EXT4_FEATURE_RO_COMPAT_LARGE_FILE| \
21703dcf5451SChristoph Hellwig 					 EXT4_FEATURE_RO_COMPAT_GDT_CSUM| \
21713dcf5451SChristoph Hellwig 					 EXT4_FEATURE_RO_COMPAT_DIR_NLINK | \
21723dcf5451SChristoph Hellwig 					 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE | \
21733dcf5451SChristoph Hellwig 					 EXT4_FEATURE_RO_COMPAT_BTREE_DIR |\
21746f16b606STheodore Ts'o 					 EXT4_FEATURE_RO_COMPAT_HUGE_FILE |\
2175e93376c2SDarrick J. Wong 					 EXT4_FEATURE_RO_COMPAT_BIGALLOC |\
21767c319d32SAditya Kali 					 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM|\
2177040cb378SLi Xi 					 EXT4_FEATURE_RO_COMPAT_QUOTA |\
2178c93d8f88SEric Biggers 					 EXT4_FEATURE_RO_COMPAT_PROJECT |\
217902f310fcSJan Kara 					 EXT4_FEATURE_RO_COMPAT_VERITY |\
218002f310fcSJan Kara 					 EXT4_FEATURE_RO_COMPAT_ORPHAN_PRESENT)
21813dcf5451SChristoph Hellwig 
2182e2b911c5SDarrick J. Wong #define EXTN_FEATURE_FUNCS(ver) \
2183e2b911c5SDarrick J. Wong static inline bool ext4_has_unknown_ext##ver##_compat_features(struct super_block *sb) \
2184e2b911c5SDarrick J. Wong { \
2185e2b911c5SDarrick J. Wong 	return ((EXT4_SB(sb)->s_es->s_feature_compat & \
2186e2b911c5SDarrick J. Wong 		cpu_to_le32(~EXT##ver##_FEATURE_COMPAT_SUPP)) != 0); \
2187e2b911c5SDarrick J. Wong } \
2188e2b911c5SDarrick J. Wong static inline bool ext4_has_unknown_ext##ver##_ro_compat_features(struct super_block *sb) \
2189e2b911c5SDarrick J. Wong { \
2190e2b911c5SDarrick J. Wong 	return ((EXT4_SB(sb)->s_es->s_feature_ro_compat & \
2191e2b911c5SDarrick J. Wong 		cpu_to_le32(~EXT##ver##_FEATURE_RO_COMPAT_SUPP)) != 0); \
2192e2b911c5SDarrick J. Wong } \
2193e2b911c5SDarrick J. Wong static inline bool ext4_has_unknown_ext##ver##_incompat_features(struct super_block *sb) \
2194e2b911c5SDarrick J. Wong { \
2195e2b911c5SDarrick J. Wong 	return ((EXT4_SB(sb)->s_es->s_feature_incompat & \
2196e2b911c5SDarrick J. Wong 		cpu_to_le32(~EXT##ver##_FEATURE_INCOMPAT_SUPP)) != 0); \
2197e2b911c5SDarrick J. Wong }
2198e2b911c5SDarrick J. Wong 
2199e2b911c5SDarrick J. Wong EXTN_FEATURE_FUNCS(2)
2200e2b911c5SDarrick J. Wong EXTN_FEATURE_FUNCS(3)
2201e2b911c5SDarrick J. Wong EXTN_FEATURE_FUNCS(4)
2202e2b911c5SDarrick J. Wong 
2203e2b911c5SDarrick J. Wong static inline bool ext4_has_compat_features(struct super_block *sb)
2204e2b911c5SDarrick J. Wong {
2205e2b911c5SDarrick J. Wong 	return (EXT4_SB(sb)->s_es->s_feature_compat != 0);
2206e2b911c5SDarrick J. Wong }
2207e2b911c5SDarrick J. Wong static inline bool ext4_has_ro_compat_features(struct super_block *sb)
2208e2b911c5SDarrick J. Wong {
2209e2b911c5SDarrick J. Wong 	return (EXT4_SB(sb)->s_es->s_feature_ro_compat != 0);
2210e2b911c5SDarrick J. Wong }
2211e2b911c5SDarrick J. Wong static inline bool ext4_has_incompat_features(struct super_block *sb)
2212e2b911c5SDarrick J. Wong {
2213e2b911c5SDarrick J. Wong 	return (EXT4_SB(sb)->s_es->s_feature_incompat != 0);
2214e2b911c5SDarrick J. Wong }
2215e2b911c5SDarrick J. Wong 
221625c6d98fSJan Kara extern int ext4_feature_set_ok(struct super_block *sb, int readonly);
221725c6d98fSJan Kara 
22183dcf5451SChristoph Hellwig /*
22199549a168STheodore Ts'o  * Superblock flags
22209549a168STheodore Ts'o  */
22219549a168STheodore Ts'o #define EXT4_FLAGS_RESIZING	0
22220db1ff22STheodore Ts'o #define EXT4_FLAGS_SHUTDOWN	1
2223a8ab6d38SIra Weiny #define EXT4_FLAGS_BDEV_IS_DAX	2
22240db1ff22STheodore Ts'o 
22250db1ff22STheodore Ts'o static inline int ext4_forced_shutdown(struct ext4_sb_info *sbi)
22260db1ff22STheodore Ts'o {
22270db1ff22STheodore Ts'o 	return test_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
22280db1ff22STheodore Ts'o }
22299549a168STheodore Ts'o 
22309549a168STheodore Ts'o /*
22313dcf5451SChristoph Hellwig  * Default values for user and/or group using reserved blocks
22323dcf5451SChristoph Hellwig  */
22333dcf5451SChristoph Hellwig #define	EXT4_DEF_RESUID		0
22343dcf5451SChristoph Hellwig #define	EXT4_DEF_RESGID		0
22353dcf5451SChristoph Hellwig 
2236040cb378SLi Xi /*
2237040cb378SLi Xi  * Default project ID
2238040cb378SLi Xi  */
2239040cb378SLi Xi #define	EXT4_DEF_PROJID		0
2240040cb378SLi Xi 
2241240799cdSTheodore Ts'o #define EXT4_DEF_INODE_READAHEAD_BLKS	32
2242240799cdSTheodore Ts'o 
22433dcf5451SChristoph Hellwig /*
22443dcf5451SChristoph Hellwig  * Default mount options
22453dcf5451SChristoph Hellwig  */
22463dcf5451SChristoph Hellwig #define EXT4_DEFM_DEBUG		0x0001
22473dcf5451SChristoph Hellwig #define EXT4_DEFM_BSDGROUPS	0x0002
22483dcf5451SChristoph Hellwig #define EXT4_DEFM_XATTR_USER	0x0004
22493dcf5451SChristoph Hellwig #define EXT4_DEFM_ACL		0x0008
22503dcf5451SChristoph Hellwig #define EXT4_DEFM_UID16		0x0010
22513dcf5451SChristoph Hellwig #define EXT4_DEFM_JMODE		0x0060
22523dcf5451SChristoph Hellwig #define EXT4_DEFM_JMODE_DATA	0x0020
22533dcf5451SChristoph Hellwig #define EXT4_DEFM_JMODE_ORDERED	0x0040
22543dcf5451SChristoph Hellwig #define EXT4_DEFM_JMODE_WBACK	0x0060
22558b67f04aSTheodore Ts'o #define EXT4_DEFM_NOBARRIER	0x0100
22568b67f04aSTheodore Ts'o #define EXT4_DEFM_BLOCK_VALIDITY 0x0200
22578b67f04aSTheodore Ts'o #define EXT4_DEFM_DISCARD	0x0400
22588b67f04aSTheodore Ts'o #define EXT4_DEFM_NODELALLOC	0x0800
22593dcf5451SChristoph Hellwig 
22603dcf5451SChristoph Hellwig /*
226130773840STheodore Ts'o  * Default journal batch times
226230773840STheodore Ts'o  */
226330773840STheodore Ts'o #define EXT4_DEF_MIN_BATCH_TIME	0
226430773840STheodore Ts'o #define EXT4_DEF_MAX_BATCH_TIME	15000 /* 15ms */
226530773840STheodore Ts'o 
226630773840STheodore Ts'o /*
2267a4912123STheodore Ts'o  * Minimum number of groups in a flexgroup before we separate out
2268a4912123STheodore Ts'o  * directories into the first block group of a flexgroup
2269a4912123STheodore Ts'o  */
2270a4912123STheodore Ts'o #define EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME	4
2271a4912123STheodore Ts'o 
2272a4912123STheodore Ts'o /*
22733dcf5451SChristoph Hellwig  * Structure of a directory entry
22743dcf5451SChristoph Hellwig  */
22753dcf5451SChristoph Hellwig #define EXT4_NAME_LEN 255
2276c186f088SYe Bin /*
2277c186f088SYe Bin  * Base length of the ext4 directory entry excluding the name length
2278c186f088SYe Bin  */
2279c186f088SYe Bin #define EXT4_BASE_DIR_LEN (sizeof(struct ext4_dir_entry_2) - EXT4_NAME_LEN)
22803dcf5451SChristoph Hellwig 
22813dcf5451SChristoph Hellwig struct ext4_dir_entry {
22823dcf5451SChristoph Hellwig 	__le32	inode;			/* Inode number */
22833dcf5451SChristoph Hellwig 	__le16	rec_len;		/* Directory entry length */
22843dcf5451SChristoph Hellwig 	__le16	name_len;		/* Name length */
22853dcf5451SChristoph Hellwig 	char	name[EXT4_NAME_LEN];	/* File name */
22863dcf5451SChristoph Hellwig };
22873dcf5451SChristoph Hellwig 
2288471fbbeaSDaniel Rosenberg 
2289471fbbeaSDaniel Rosenberg /*
2290471fbbeaSDaniel Rosenberg  * Encrypted Casefolded entries require saving the hash on disk. This structure
2291471fbbeaSDaniel Rosenberg  * followed ext4_dir_entry_2's name[name_len] at the next 4 byte aligned
2292471fbbeaSDaniel Rosenberg  * boundary.
2293471fbbeaSDaniel Rosenberg  */
2294471fbbeaSDaniel Rosenberg struct ext4_dir_entry_hash {
2295471fbbeaSDaniel Rosenberg 	__le32 hash;
2296471fbbeaSDaniel Rosenberg 	__le32 minor_hash;
2297471fbbeaSDaniel Rosenberg };
2298471fbbeaSDaniel Rosenberg 
22993dcf5451SChristoph Hellwig /*
23003dcf5451SChristoph Hellwig  * The new version of the directory entry.  Since EXT4 structures are
23013dcf5451SChristoph Hellwig  * stored in intel byte order, and the name_len field could never be
23023dcf5451SChristoph Hellwig  * bigger than 255 chars, it's safe to reclaim the extra byte for the
23033dcf5451SChristoph Hellwig  * file_type field.
23043dcf5451SChristoph Hellwig  */
23053dcf5451SChristoph Hellwig struct ext4_dir_entry_2 {
23063dcf5451SChristoph Hellwig 	__le32	inode;			/* Inode number */
23073dcf5451SChristoph Hellwig 	__le16	rec_len;		/* Directory entry length */
23083dcf5451SChristoph Hellwig 	__u8	name_len;		/* Name length */
23099f364e1dSJonathan Grant 	__u8	file_type;		/* See file type macros EXT4_FT_* below */
23103dcf5451SChristoph Hellwig 	char	name[EXT4_NAME_LEN];	/* File name */
23113dcf5451SChristoph Hellwig };
23123dcf5451SChristoph Hellwig 
23133dcf5451SChristoph Hellwig /*
2314471fbbeaSDaniel Rosenberg  * Access the hashes at the end of ext4_dir_entry_2
2315471fbbeaSDaniel Rosenberg  */
2316471fbbeaSDaniel Rosenberg #define EXT4_DIRENT_HASHES(entry) \
2317471fbbeaSDaniel Rosenberg 	((struct ext4_dir_entry_hash *) \
2318471fbbeaSDaniel Rosenberg 		(((void *)(entry)) + \
2319471fbbeaSDaniel Rosenberg 		((8 + (entry)->name_len + EXT4_DIR_ROUND) & ~EXT4_DIR_ROUND)))
2320471fbbeaSDaniel Rosenberg #define EXT4_DIRENT_HASH(entry) le32_to_cpu(EXT4_DIRENT_HASHES(de)->hash)
2321471fbbeaSDaniel Rosenberg #define EXT4_DIRENT_MINOR_HASH(entry) \
2322471fbbeaSDaniel Rosenberg 		le32_to_cpu(EXT4_DIRENT_HASHES(de)->minor_hash)
2323471fbbeaSDaniel Rosenberg 
2324471fbbeaSDaniel Rosenberg static inline bool ext4_hash_in_dirent(const struct inode *inode)
2325471fbbeaSDaniel Rosenberg {
2326471fbbeaSDaniel Rosenberg 	return IS_CASEFOLDED(inode) && IS_ENCRYPTED(inode);
2327471fbbeaSDaniel Rosenberg }
2328471fbbeaSDaniel Rosenberg 
2329471fbbeaSDaniel Rosenberg /*
2330e6153918SDarrick J. Wong  * This is a bogus directory entry at the end of each leaf block that
2331e6153918SDarrick J. Wong  * records checksums.
2332e6153918SDarrick J. Wong  */
2333e6153918SDarrick J. Wong struct ext4_dir_entry_tail {
2334e6153918SDarrick J. Wong 	__le32	det_reserved_zero1;	/* Pretend to be unused */
2335e6153918SDarrick J. Wong 	__le16	det_rec_len;		/* 12 */
2336e6153918SDarrick J. Wong 	__u8	det_reserved_zero2;	/* Zero name length */
2337e6153918SDarrick J. Wong 	__u8	det_reserved_ft;	/* 0xDE, fake file type */
2338e6153918SDarrick J. Wong 	__le32	det_checksum;		/* crc32c(uuid+inum+dirblock) */
2339e6153918SDarrick J. Wong };
2340e6153918SDarrick J. Wong 
23413c47d541STao Ma #define EXT4_DIRENT_TAIL(block, blocksize) \
23423c47d541STao Ma 	((struct ext4_dir_entry_tail *)(((void *)(block)) + \
23433c47d541STao Ma 					((blocksize) - \
23443c47d541STao Ma 					 sizeof(struct ext4_dir_entry_tail))))
23453c47d541STao Ma 
2346e6153918SDarrick J. Wong /*
23473dcf5451SChristoph Hellwig  * Ext4 directory file types.  Only the low 3 bits are used.  The
23483dcf5451SChristoph Hellwig  * other bits are reserved for now.
23493dcf5451SChristoph Hellwig  */
23503dcf5451SChristoph Hellwig #define EXT4_FT_UNKNOWN		0
23513dcf5451SChristoph Hellwig #define EXT4_FT_REG_FILE	1
23523dcf5451SChristoph Hellwig #define EXT4_FT_DIR		2
23533dcf5451SChristoph Hellwig #define EXT4_FT_CHRDEV		3
23543dcf5451SChristoph Hellwig #define EXT4_FT_BLKDEV		4
23553dcf5451SChristoph Hellwig #define EXT4_FT_FIFO		5
23563dcf5451SChristoph Hellwig #define EXT4_FT_SOCK		6
23573dcf5451SChristoph Hellwig #define EXT4_FT_SYMLINK		7
23583dcf5451SChristoph Hellwig 
23593dcf5451SChristoph Hellwig #define EXT4_FT_MAX		8
23603dcf5451SChristoph Hellwig 
2361e6153918SDarrick J. Wong #define EXT4_FT_DIR_CSUM	0xDE
2362e6153918SDarrick J. Wong 
23633dcf5451SChristoph Hellwig /*
23643dcf5451SChristoph Hellwig  * EXT4_DIR_PAD defines the directory entries boundaries
23653dcf5451SChristoph Hellwig  *
23663dcf5451SChristoph Hellwig  * NOTE: It must be a multiple of 4
23673dcf5451SChristoph Hellwig  */
23683dcf5451SChristoph Hellwig #define EXT4_DIR_PAD			4
23693dcf5451SChristoph Hellwig #define EXT4_DIR_ROUND			(EXT4_DIR_PAD - 1)
23703dcf5451SChristoph Hellwig #define EXT4_MAX_REC_LEN		((1<<16)-1)
23713dcf5451SChristoph Hellwig 
23723dcf5451SChristoph Hellwig /*
2373471fbbeaSDaniel Rosenberg  * The rec_len is dependent on the type of directory. Directories that are
2374471fbbeaSDaniel Rosenberg  * casefolded and encrypted need to store the hash as well, so we add room for
2375471fbbeaSDaniel Rosenberg  * ext4_extended_dir_entry_2. For all entries related to '.' or '..' you should
2376471fbbeaSDaniel Rosenberg  * pass NULL for dir, as those entries do not use the extra fields.
2377471fbbeaSDaniel Rosenberg  */
2378471fbbeaSDaniel Rosenberg static inline unsigned int ext4_dir_rec_len(__u8 name_len,
2379471fbbeaSDaniel Rosenberg 						const struct inode *dir)
2380471fbbeaSDaniel Rosenberg {
2381471fbbeaSDaniel Rosenberg 	int rec_len = (name_len + 8 + EXT4_DIR_ROUND);
2382471fbbeaSDaniel Rosenberg 
2383471fbbeaSDaniel Rosenberg 	if (dir && ext4_hash_in_dirent(dir))
2384471fbbeaSDaniel Rosenberg 		rec_len += sizeof(struct ext4_dir_entry_hash);
2385471fbbeaSDaniel Rosenberg 	return (rec_len & ~EXT4_DIR_ROUND);
2386471fbbeaSDaniel Rosenberg }
2387471fbbeaSDaniel Rosenberg 
2388471fbbeaSDaniel Rosenberg /*
23890cfc9255SEric Sandeen  * If we ever get support for fs block sizes > page_size, we'll need
23900cfc9255SEric Sandeen  * to remove the #if statements in the next two functions...
23910cfc9255SEric Sandeen  */
23920cfc9255SEric Sandeen static inline unsigned int
23930cfc9255SEric Sandeen ext4_rec_len_from_disk(__le16 dlen, unsigned blocksize)
23940cfc9255SEric Sandeen {
23950cfc9255SEric Sandeen 	unsigned len = le16_to_cpu(dlen);
23960cfc9255SEric Sandeen 
2397ea1754a0SKirill A. Shutemov #if (PAGE_SIZE >= 65536)
23980cfc9255SEric Sandeen 	if (len == EXT4_MAX_REC_LEN || len == 0)
23990cfc9255SEric Sandeen 		return blocksize;
24000cfc9255SEric Sandeen 	return (len & 65532) | ((len & 3) << 16);
24010cfc9255SEric Sandeen #else
24020cfc9255SEric Sandeen 	return len;
24030cfc9255SEric Sandeen #endif
24040cfc9255SEric Sandeen }
24050cfc9255SEric Sandeen 
24060cfc9255SEric Sandeen static inline __le16 ext4_rec_len_to_disk(unsigned len, unsigned blocksize)
24070cfc9255SEric Sandeen {
2408a2e3965dSxu xin 	BUG_ON((len > blocksize) || (blocksize > (1 << 18)) || (len & 3));
2409ea1754a0SKirill A. Shutemov #if (PAGE_SIZE >= 65536)
24100cfc9255SEric Sandeen 	if (len < 65536)
24110cfc9255SEric Sandeen 		return cpu_to_le16(len);
24120cfc9255SEric Sandeen 	if (len == blocksize) {
24130cfc9255SEric Sandeen 		if (blocksize == 65536)
24140cfc9255SEric Sandeen 			return cpu_to_le16(EXT4_MAX_REC_LEN);
24150cfc9255SEric Sandeen 		else
24160cfc9255SEric Sandeen 			return cpu_to_le16(0);
24170cfc9255SEric Sandeen 	}
24180cfc9255SEric Sandeen 	return cpu_to_le16((len & 65532) | ((len >> 16) & 3));
24190cfc9255SEric Sandeen #else
24200cfc9255SEric Sandeen 	return cpu_to_le16(len);
24210cfc9255SEric Sandeen #endif
24220cfc9255SEric Sandeen }
24230cfc9255SEric Sandeen 
24240cfc9255SEric Sandeen /*
24253dcf5451SChristoph Hellwig  * Hash Tree Directory indexing
24263dcf5451SChristoph Hellwig  * (c) Daniel Phillips, 2001
24273dcf5451SChristoph Hellwig  */
24283dcf5451SChristoph Hellwig 
2429e2b911c5SDarrick J. Wong #define is_dx(dir) (ext4_has_feature_dir_index((dir)->i_sb) && \
243012e9b892SDmitry Monakhov 		    ext4_test_inode_flag((dir), EXT4_INODE_INDEX))
2431c7414892SAndreas Dilger #define EXT4_DIR_LINK_MAX(dir) unlikely((dir)->i_nlink >= EXT4_LINK_MAX && \
2432c7414892SAndreas Dilger 		    !(ext4_has_feature_dir_nlink((dir)->i_sb) && is_dx(dir)))
24333dcf5451SChristoph Hellwig #define EXT4_DIR_LINK_EMPTY(dir) ((dir)->i_nlink == 2 || (dir)->i_nlink == 1)
24343dcf5451SChristoph Hellwig 
24353dcf5451SChristoph Hellwig /* Legal values for the dx_root hash_version field: */
24363dcf5451SChristoph Hellwig 
24373dcf5451SChristoph Hellwig #define DX_HASH_LEGACY			0
24383dcf5451SChristoph Hellwig #define DX_HASH_HALF_MD4		1
24393dcf5451SChristoph Hellwig #define DX_HASH_TEA			2
2440f99b2589STheodore Ts'o #define DX_HASH_LEGACY_UNSIGNED		3
2441f99b2589STheodore Ts'o #define DX_HASH_HALF_MD4_UNSIGNED	4
2442f99b2589STheodore Ts'o #define DX_HASH_TEA_UNSIGNED		5
2443471fbbeaSDaniel Rosenberg #define DX_HASH_SIPHASH			6
24443dcf5451SChristoph Hellwig 
24450441984aSDarrick J. Wong static inline u32 ext4_chksum(struct ext4_sb_info *sbi, u32 crc,
24460441984aSDarrick J. Wong 			      const void *address, unsigned int length)
24470441984aSDarrick J. Wong {
24480441984aSDarrick J. Wong 	struct {
24490441984aSDarrick J. Wong 		struct shash_desc shash;
24503108b54bSTheodore Ts'o 		char ctx[4];
24510441984aSDarrick J. Wong 	} desc;
24520441984aSDarrick J. Wong 
24533108b54bSTheodore Ts'o 	BUG_ON(crypto_shash_descsize(sbi->s_chksum_driver)!=sizeof(desc.ctx));
24543108b54bSTheodore Ts'o 
24550441984aSDarrick J. Wong 	desc.shash.tfm = sbi->s_chksum_driver;
24560441984aSDarrick J. Wong 	*(u32 *)desc.ctx = crc;
24570441984aSDarrick J. Wong 
2458e7093f0dSPetros Koutoupis 	BUG_ON(crypto_shash_update(&desc.shash, address, length));
24590441984aSDarrick J. Wong 
24600441984aSDarrick J. Wong 	return *(u32 *)desc.ctx;
24610441984aSDarrick J. Wong }
24620441984aSDarrick J. Wong 
24633dcf5451SChristoph Hellwig #ifdef __KERNEL__
24643dcf5451SChristoph Hellwig 
24653dcf5451SChristoph Hellwig /* hash info structure used by the directory hash */
24663dcf5451SChristoph Hellwig struct dx_hash_info
24673dcf5451SChristoph Hellwig {
24683dcf5451SChristoph Hellwig 	u32		hash;
24693dcf5451SChristoph Hellwig 	u32		minor_hash;
24703dcf5451SChristoph Hellwig 	int		hash_version;
24713dcf5451SChristoph Hellwig 	u32		*seed;
24723dcf5451SChristoph Hellwig };
24733dcf5451SChristoph Hellwig 
2474d1f5273eSFan Yong 
2475d1f5273eSFan Yong /* 32 and 64 bit signed EOF for dx directories */
2476d1f5273eSFan Yong #define EXT4_HTREE_EOF_32BIT   ((1UL  << (32 - 1)) - 1)
2477d1f5273eSFan Yong #define EXT4_HTREE_EOF_64BIT   ((1ULL << (64 - 1)) - 1)
2478d1f5273eSFan Yong 
24793dcf5451SChristoph Hellwig 
24803dcf5451SChristoph Hellwig /*
24813dcf5451SChristoph Hellwig  * Control parameters used by ext4_htree_next_block
24823dcf5451SChristoph Hellwig  */
24833dcf5451SChristoph Hellwig #define HASH_NB_ALWAYS		1
24843dcf5451SChristoph Hellwig 
24855b643f9cSTheodore Ts'o struct ext4_filename {
24865b643f9cSTheodore Ts'o 	const struct qstr *usr_fname;
2487a7550b30SJaegeuk Kim 	struct fscrypt_str disk_name;
24885b643f9cSTheodore Ts'o 	struct dx_hash_info hinfo;
2489643fa961SChandan Rajendra #ifdef CONFIG_FS_ENCRYPTION
2490a7550b30SJaegeuk Kim 	struct fscrypt_str crypto_buf;
24915b643f9cSTheodore Ts'o #endif
24925298d4bfSChristoph Hellwig #if IS_ENABLED(CONFIG_UNICODE)
24933ae72562SGabriel Krisman Bertazi 	struct fscrypt_str cf_name;
24943ae72562SGabriel Krisman Bertazi #endif
24955b643f9cSTheodore Ts'o };
24965b643f9cSTheodore Ts'o 
24975b643f9cSTheodore Ts'o #define fname_name(p) ((p)->disk_name.name)
2498471fbbeaSDaniel Rosenberg #define fname_usr_name(p) ((p)->usr_fname->name)
24995b643f9cSTheodore Ts'o #define fname_len(p)  ((p)->disk_name.len)
25003dcf5451SChristoph Hellwig 
25013dcf5451SChristoph Hellwig /*
25023dcf5451SChristoph Hellwig  * Describe an inode's exact location on disk and in memory
25033dcf5451SChristoph Hellwig  */
25043dcf5451SChristoph Hellwig struct ext4_iloc
25053dcf5451SChristoph Hellwig {
25063dcf5451SChristoph Hellwig 	struct buffer_head *bh;
25073dcf5451SChristoph Hellwig 	unsigned long offset;
25083dcf5451SChristoph Hellwig 	ext4_group_t block_group;
25093dcf5451SChristoph Hellwig };
25103dcf5451SChristoph Hellwig 
25113dcf5451SChristoph Hellwig static inline struct ext4_inode *ext4_raw_inode(struct ext4_iloc *iloc)
25123dcf5451SChristoph Hellwig {
25133dcf5451SChristoph Hellwig 	return (struct ext4_inode *) (iloc->bh->b_data + iloc->offset);
25143dcf5451SChristoph Hellwig }
25153dcf5451SChristoph Hellwig 
2516dec214d0STahsin Erdogan static inline bool ext4_is_quota_file(struct inode *inode)
2517dec214d0STahsin Erdogan {
2518dec214d0STahsin Erdogan 	return IS_NOQUOTA(inode) &&
2519dec214d0STahsin Erdogan 	       !(EXT4_I(inode)->i_flags & EXT4_EA_INODE_FL);
2520dec214d0STahsin Erdogan }
252102749a4cSTahsin Erdogan 
25223dcf5451SChristoph Hellwig /*
25233dcf5451SChristoph Hellwig  * This structure is stuffed into the struct file's private_data field
25243dcf5451SChristoph Hellwig  * for directories.  It is where we put information so that we can do
25253dcf5451SChristoph Hellwig  * readdir operations in hash tree order.
25263dcf5451SChristoph Hellwig  */
25273dcf5451SChristoph Hellwig struct dir_private_info {
25283dcf5451SChristoph Hellwig 	struct rb_root	root;
25293dcf5451SChristoph Hellwig 	struct rb_node	*curr_node;
25303dcf5451SChristoph Hellwig 	struct fname	*extra_fname;
25313dcf5451SChristoph Hellwig 	loff_t		last_pos;
25323dcf5451SChristoph Hellwig 	__u32		curr_hash;
25333dcf5451SChristoph Hellwig 	__u32		curr_minor_hash;
25343dcf5451SChristoph Hellwig 	__u32		next_hash;
25353dcf5451SChristoph Hellwig };
25363dcf5451SChristoph Hellwig 
25373dcf5451SChristoph Hellwig /* calculate the first block number of the group */
25383dcf5451SChristoph Hellwig static inline ext4_fsblk_t
25393dcf5451SChristoph Hellwig ext4_group_first_block_no(struct super_block *sb, ext4_group_t group_no)
25403dcf5451SChristoph Hellwig {
25413dcf5451SChristoph Hellwig 	return group_no * (ext4_fsblk_t)EXT4_BLOCKS_PER_GROUP(sb) +
25423dcf5451SChristoph Hellwig 		le32_to_cpu(EXT4_SB(sb)->s_es->s_first_data_block);
25433dcf5451SChristoph Hellwig }
25443dcf5451SChristoph Hellwig 
25453dcf5451SChristoph Hellwig /*
25463dcf5451SChristoph Hellwig  * Special error return code only used by dx_probe() and its callers.
25473dcf5451SChristoph Hellwig  */
254836de9286STheodore Ts'o #define ERR_BAD_DX_DIR	(-(MAX_ERRNO - 1))
25493dcf5451SChristoph Hellwig 
2550e08ac99fSArtem Blagodarenko /* htree levels for ext4 */
2551e08ac99fSArtem Blagodarenko #define	EXT4_HTREE_LEVEL_COMPAT	2
2552e08ac99fSArtem Blagodarenko #define	EXT4_HTREE_LEVEL	3
2553e08ac99fSArtem Blagodarenko 
2554e08ac99fSArtem Blagodarenko static inline int ext4_dir_htree_level(struct super_block *sb)
2555e08ac99fSArtem Blagodarenko {
2556e08ac99fSArtem Blagodarenko 	return ext4_has_feature_largedir(sb) ?
2557e08ac99fSArtem Blagodarenko 		EXT4_HTREE_LEVEL : EXT4_HTREE_LEVEL_COMPAT;
2558e08ac99fSArtem Blagodarenko }
2559e08ac99fSArtem Blagodarenko 
25603dcf5451SChristoph Hellwig /*
2561bfff6873SLukas Czerner  * Timeout and state flag for lazy initialization inode thread.
2562bfff6873SLukas Czerner  */
2563bfff6873SLukas Czerner #define EXT4_DEF_LI_WAIT_MULT			10
2564bfff6873SLukas Czerner #define EXT4_DEF_LI_MAX_START_DELAY		5
2565bfff6873SLukas Czerner #define EXT4_LAZYINIT_QUIT			0x0001
2566bfff6873SLukas Czerner #define EXT4_LAZYINIT_RUNNING			0x0002
2567bfff6873SLukas Czerner 
2568bfff6873SLukas Czerner /*
2569bfff6873SLukas Czerner  * Lazy inode table initialization info
2570bfff6873SLukas Czerner  */
2571bfff6873SLukas Czerner struct ext4_lazy_init {
2572bfff6873SLukas Czerner 	unsigned long		li_state;
2573bfff6873SLukas Czerner 	struct list_head	li_request_list;
2574bfff6873SLukas Czerner 	struct mutex		li_list_mtx;
2575bfff6873SLukas Czerner };
2576bfff6873SLukas Czerner 
25773d392b26STheodore Ts'o enum ext4_li_mode {
25783d392b26STheodore Ts'o 	EXT4_LI_MODE_PREFETCH_BBITMAP,
25793d392b26STheodore Ts'o 	EXT4_LI_MODE_ITABLE,
25803d392b26STheodore Ts'o };
25813d392b26STheodore Ts'o 
2582bfff6873SLukas Czerner struct ext4_li_request {
2583bfff6873SLukas Czerner 	struct super_block	*lr_super;
25843d392b26STheodore Ts'o 	enum ext4_li_mode	lr_mode;
25853d392b26STheodore Ts'o 	ext4_group_t		lr_first_not_zeroed;
2586bfff6873SLukas Czerner 	ext4_group_t		lr_next_group;
2587bfff6873SLukas Czerner 	struct list_head	lr_request;
2588bfff6873SLukas Czerner 	unsigned long		lr_next_sched;
2589bfff6873SLukas Czerner 	unsigned long		lr_timeout;
2590bfff6873SLukas Czerner };
2591bfff6873SLukas Czerner 
2592857ac889SLukas Czerner struct ext4_features {
2593857ac889SLukas Czerner 	struct kobject f_kobj;
2594857ac889SLukas Czerner 	struct completion f_kobj_unregister;
2595857ac889SLukas Czerner };
2596857ac889SLukas Czerner 
2597bfff6873SLukas Czerner /*
2598c5e06d10SJohann Lombardi  * This structure will be used for multiple mount protection. It will be
2599c5e06d10SJohann Lombardi  * written into the block number saved in the s_mmp_block field in the
2600c5e06d10SJohann Lombardi  * superblock. Programs that check MMP should assume that if
2601c5e06d10SJohann Lombardi  * SEQ_FSCK (or any unknown code above SEQ_MAX) is present then it is NOT safe
2602c5e06d10SJohann Lombardi  * to use the filesystem, regardless of how old the timestamp is.
2603c5e06d10SJohann Lombardi  */
2604c5e06d10SJohann Lombardi #define EXT4_MMP_MAGIC     0x004D4D50U /* ASCII for MMP */
2605c5e06d10SJohann Lombardi #define EXT4_MMP_SEQ_CLEAN 0xFF4D4D50U /* mmp_seq value for clean unmount */
2606c5e06d10SJohann Lombardi #define EXT4_MMP_SEQ_FSCK  0xE24D4D50U /* mmp_seq value when being fscked */
2607c5e06d10SJohann Lombardi #define EXT4_MMP_SEQ_MAX   0xE24D4D4FU /* maximum valid mmp_seq value */
2608c5e06d10SJohann Lombardi 
2609c5e06d10SJohann Lombardi struct mmp_struct {
2610c5e06d10SJohann Lombardi 	__le32	mmp_magic;		/* Magic number for MMP */
2611c5e06d10SJohann Lombardi 	__le32	mmp_seq;		/* Sequence no. updated periodically */
2612c5e06d10SJohann Lombardi 
2613c5e06d10SJohann Lombardi 	/*
2614c5e06d10SJohann Lombardi 	 * mmp_time, mmp_nodename & mmp_bdevname are only used for information
2615c5e06d10SJohann Lombardi 	 * purposes and do not affect the correctness of the algorithm
2616c5e06d10SJohann Lombardi 	 */
2617c5e06d10SJohann Lombardi 	__le64	mmp_time;		/* Time last updated */
2618c5e06d10SJohann Lombardi 	char	mmp_nodename[64];	/* Node which last updated MMP block */
2619c5e06d10SJohann Lombardi 	char	mmp_bdevname[32];	/* Bdev which last updated MMP block */
2620c5e06d10SJohann Lombardi 
2621c5e06d10SJohann Lombardi 	/*
2622c5e06d10SJohann Lombardi 	 * mmp_check_interval is used to verify if the MMP block has been
2623c5e06d10SJohann Lombardi 	 * updated on the block device. The value is updated based on the
2624c5e06d10SJohann Lombardi 	 * maximum time to write the MMP block during an update cycle.
2625c5e06d10SJohann Lombardi 	 */
2626c5e06d10SJohann Lombardi 	__le16	mmp_check_interval;
2627c5e06d10SJohann Lombardi 
2628c5e06d10SJohann Lombardi 	__le16	mmp_pad1;
2629e6153918SDarrick J. Wong 	__le32	mmp_pad2[226];
2630e6153918SDarrick J. Wong 	__le32	mmp_checksum;		/* crc32c(uuid+mmp_block) */
2631c5e06d10SJohann Lombardi };
2632c5e06d10SJohann Lombardi 
2633c5e06d10SJohann Lombardi /* arguments passed to the mmp thread */
2634c5e06d10SJohann Lombardi struct mmpd_data {
2635c5e06d10SJohann Lombardi 	struct buffer_head *bh; /* bh from initial read_mmp_block() */
2636c5e06d10SJohann Lombardi 	struct super_block *sb;  /* super block of the fs */
2637c5e06d10SJohann Lombardi };
2638c5e06d10SJohann Lombardi 
2639c5e06d10SJohann Lombardi /*
2640c5e06d10SJohann Lombardi  * Check interval multiplier
2641c5e06d10SJohann Lombardi  * The MMP block is written every update interval and initially checked every
2642c5e06d10SJohann Lombardi  * update interval x the multiplier (the value is then adapted based on the
2643c5e06d10SJohann Lombardi  * write latency). The reason is that writes can be delayed under load and we
2644c5e06d10SJohann Lombardi  * don't want readers to incorrectly assume that the filesystem is no longer
2645c5e06d10SJohann Lombardi  * in use.
2646c5e06d10SJohann Lombardi  */
2647c5e06d10SJohann Lombardi #define EXT4_MMP_CHECK_MULT		2UL
2648c5e06d10SJohann Lombardi 
2649c5e06d10SJohann Lombardi /*
2650c5e06d10SJohann Lombardi  * Minimum interval for MMP checking in seconds.
2651c5e06d10SJohann Lombardi  */
2652c5e06d10SJohann Lombardi #define EXT4_MMP_MIN_CHECK_INTERVAL	5UL
2653c5e06d10SJohann Lombardi 
2654c5e06d10SJohann Lombardi /*
2655c5e06d10SJohann Lombardi  * Maximum interval for MMP checking in seconds.
2656c5e06d10SJohann Lombardi  */
2657c5e06d10SJohann Lombardi #define EXT4_MMP_MAX_CHECK_INTERVAL	300UL
2658c5e06d10SJohann Lombardi 
2659c5e06d10SJohann Lombardi /*
26603dcf5451SChristoph Hellwig  * Function prototypes
26613dcf5451SChristoph Hellwig  */
26623dcf5451SChristoph Hellwig 
26633dcf5451SChristoph Hellwig /*
26643dcf5451SChristoph Hellwig  * Ok, these declarations are also in <linux/kernel.h> but none of the
26653dcf5451SChristoph Hellwig  * ext4 source programs needs to include it so they are duplicated here.
26663dcf5451SChristoph Hellwig  */
26673dcf5451SChristoph Hellwig # define NORET_TYPE	/**/
26683dcf5451SChristoph Hellwig # define ATTRIB_NORET	__attribute__((noreturn))
26693dcf5451SChristoph Hellwig # define NORET_AND	noreturn,
26703dcf5451SChristoph Hellwig 
2671498e5f24STheodore Ts'o /* bitmap.c */
2672f6fb99caSTheodore Ts'o extern unsigned int ext4_count_free(char *bitmap, unsigned numchars);
26734fd873c8SKemeng Shi void ext4_inode_bitmap_csum_set(struct super_block *sb,
267441a246d1SDarrick J. Wong 				struct ext4_group_desc *gdp,
267541a246d1SDarrick J. Wong 				struct buffer_head *bh, int sz);
2676b83acc77SKemeng Shi int ext4_inode_bitmap_csum_verify(struct super_block *sb,
267741a246d1SDarrick J. Wong 				  struct ext4_group_desc *gdp,
267841a246d1SDarrick J. Wong 				  struct buffer_head *bh, int sz);
26791df9bde4SKemeng Shi void ext4_block_bitmap_csum_set(struct super_block *sb,
2680fa77dcfaSDarrick J. Wong 				struct ext4_group_desc *gdp,
268179f1ba49STao Ma 				struct buffer_head *bh);
268282483dfeSKemeng Shi int ext4_block_bitmap_csum_verify(struct super_block *sb,
2683fa77dcfaSDarrick J. Wong 				  struct ext4_group_desc *gdp,
268479f1ba49STao Ma 				  struct buffer_head *bh);
2685498e5f24STheodore Ts'o 
26863dcf5451SChristoph Hellwig /* balloc.c */
2687bd86298eSLukas Czerner extern void ext4_get_group_no_and_offset(struct super_block *sb,
2688bd86298eSLukas Czerner 					 ext4_fsblk_t blocknr,
2689bd86298eSLukas Czerner 					 ext4_group_t *blockgrpp,
2690bd86298eSLukas Czerner 					 ext4_grpblk_t *offsetp);
2691bd86298eSLukas Czerner extern ext4_group_t ext4_get_group_number(struct super_block *sb,
2692bd86298eSLukas Czerner 					  ext4_fsblk_t block);
2693bd86298eSLukas Czerner 
26943dcf5451SChristoph Hellwig extern int ext4_bg_has_super(struct super_block *sb, ext4_group_t group);
26953dcf5451SChristoph Hellwig extern unsigned long ext4_bg_num_gdb(struct super_block *sb,
26963dcf5451SChristoph Hellwig 			ext4_group_t group);
26977061eba7SAneesh Kumar K.V extern ext4_fsblk_t ext4_new_meta_blocks(handle_t *handle, struct inode *inode,
269855f020dbSAllison Henderson 					 ext4_fsblk_t goal,
269955f020dbSAllison Henderson 					 unsigned int flags,
270055f020dbSAllison Henderson 					 unsigned long *count,
270155f020dbSAllison Henderson 					 int *errp);
2702e7d5f315STheodore Ts'o extern int ext4_claim_free_clusters(struct ext4_sb_info *sbi,
2703e7d5f315STheodore Ts'o 				    s64 nclusters, unsigned int flags);
27045dee5437STheodore Ts'o extern ext4_fsblk_t ext4_count_free_clusters(struct super_block *);
27053dcf5451SChristoph Hellwig extern void ext4_check_blocks_bitmap(struct super_block *);
27063dcf5451SChristoph Hellwig extern struct ext4_group_desc * ext4_get_group_desc(struct super_block * sb,
27073dcf5451SChristoph Hellwig 						    ext4_group_t block_group,
27083dcf5451SChristoph Hellwig 						    struct buffer_head ** bh);
27095354b2afSTheodore Ts'o extern struct ext4_group_info *ext4_get_group_info(struct super_block *sb,
27105354b2afSTheodore Ts'o 						   ext4_group_t group);
27113dcf5451SChristoph Hellwig extern int ext4_should_retry_alloc(struct super_block *sb, int *retries);
2712813e5727STheodore Ts'o 
2713813e5727STheodore Ts'o extern struct buffer_head *ext4_read_block_bitmap_nowait(struct super_block *sb,
2714cfd73237SAlex Zhuravlev 						ext4_group_t block_group,
2715cfd73237SAlex Zhuravlev 						bool ignore_locked);
2716813e5727STheodore Ts'o extern int ext4_wait_block_bitmap(struct super_block *sb,
2717813e5727STheodore Ts'o 				  ext4_group_t block_group,
2718813e5727STheodore Ts'o 				  struct buffer_head *bh);
2719813e5727STheodore Ts'o extern struct buffer_head *ext4_read_block_bitmap(struct super_block *sb,
2720bb23c20aSTheodore Ts'o 						  ext4_group_t block_group);
2721cff1dfd7STheodore Ts'o extern unsigned ext4_free_clusters_after_init(struct super_block *sb,
2722fd034a84STheodore Ts'o 					      ext4_group_t block_group,
2723fd034a84STheodore Ts'o 					      struct ext4_group_desc *gdp);
2724f86186b4SEric Sandeen ext4_fsblk_t ext4_inode_to_goal_block(struct inode *);
27253dcf5451SChristoph Hellwig 
27265298d4bfSChristoph Hellwig #if IS_ENABLED(CONFIG_UNICODE)
27271ae98e29SDaniel Rosenberg extern int ext4_fname_setup_ci_filename(struct inode *dir,
27283ae72562SGabriel Krisman Bertazi 					 const struct qstr *iname,
27291ae98e29SDaniel Rosenberg 					 struct ext4_filename *fname);
27303ae72562SGabriel Krisman Bertazi #endif
27313ae72562SGabriel Krisman Bertazi 
2732b1241c8eSRitesh Harjani /* ext4 encryption related stuff goes here crypto.c */
2733643fa961SChandan Rajendra #ifdef CONFIG_FS_ENCRYPTION
2734b1241c8eSRitesh Harjani extern const struct fscrypt_operations ext4_cryptops;
2735b1241c8eSRitesh Harjani 
27363030b59cSRitesh Harjani int ext4_fname_setup_filename(struct inode *dir, const struct qstr *iname,
27373030b59cSRitesh Harjani 			      int lookup, struct ext4_filename *fname);
2738b01531dbSEric Biggers 
27393030b59cSRitesh Harjani int ext4_fname_prepare_lookup(struct inode *dir, struct dentry *dentry,
27403030b59cSRitesh Harjani 			      struct ext4_filename *fname);
2741b01531dbSEric Biggers 
27423030b59cSRitesh Harjani void ext4_fname_free_filename(struct ext4_filename *fname);
2743a7550b30SJaegeuk Kim 
274472f63f4aSRitesh Harjani int ext4_ioctl_get_encryption_pwsalt(struct file *filp, void __user *arg);
274572f63f4aSRitesh Harjani 
2746b01531dbSEric Biggers #else /* !CONFIG_FS_ENCRYPTION */
27475b643f9cSTheodore Ts'o static inline int ext4_fname_setup_filename(struct inode *dir,
27485b643f9cSTheodore Ts'o 					    const struct qstr *iname,
2749b01531dbSEric Biggers 					    int lookup,
2750b01531dbSEric Biggers 					    struct ext4_filename *fname)
27515b643f9cSTheodore Ts'o {
27521ae98e29SDaniel Rosenberg 	int err = 0;
27535b643f9cSTheodore Ts'o 	fname->usr_fname = iname;
27545b643f9cSTheodore Ts'o 	fname->disk_name.name = (unsigned char *) iname->name;
27555b643f9cSTheodore Ts'o 	fname->disk_name.len = iname->len;
27563ae72562SGabriel Krisman Bertazi 
27575298d4bfSChristoph Hellwig #if IS_ENABLED(CONFIG_UNICODE)
27581ae98e29SDaniel Rosenberg 	err = ext4_fname_setup_ci_filename(dir, iname, fname);
27593ae72562SGabriel Krisman Bertazi #endif
27603ae72562SGabriel Krisman Bertazi 
27611ae98e29SDaniel Rosenberg 	return err;
27625b643f9cSTheodore Ts'o }
2763a7550b30SJaegeuk Kim 
2764b01531dbSEric Biggers static inline int ext4_fname_prepare_lookup(struct inode *dir,
2765b01531dbSEric Biggers 					    struct dentry *dentry,
2766b01531dbSEric Biggers 					    struct ext4_filename *fname)
2767b01531dbSEric Biggers {
2768b01531dbSEric Biggers 	return ext4_fname_setup_filename(dir, &dentry->d_name, 1, fname);
2769b01531dbSEric Biggers }
2770b01531dbSEric Biggers 
27713ae72562SGabriel Krisman Bertazi static inline void ext4_fname_free_filename(struct ext4_filename *fname)
27723ae72562SGabriel Krisman Bertazi {
27735298d4bfSChristoph Hellwig #if IS_ENABLED(CONFIG_UNICODE)
27743ae72562SGabriel Krisman Bertazi 	kfree(fname->cf_name.name);
27753ae72562SGabriel Krisman Bertazi 	fname->cf_name.name = NULL;
27763ae72562SGabriel Krisman Bertazi #endif
27773ae72562SGabriel Krisman Bertazi }
277872f63f4aSRitesh Harjani 
277972f63f4aSRitesh Harjani static inline int ext4_ioctl_get_encryption_pwsalt(struct file *filp,
278072f63f4aSRitesh Harjani 						   void __user *arg)
278172f63f4aSRitesh Harjani {
278272f63f4aSRitesh Harjani 	return -EOPNOTSUPP;
278372f63f4aSRitesh Harjani }
2784b01531dbSEric Biggers #endif /* !CONFIG_FS_ENCRYPTION */
2785d5d0e8c7SMichael Halcrow 
27863dcf5451SChristoph Hellwig /* dir.c */
278760fd4da3STheodore Ts'o extern int __ext4_check_dir_entry(const char *, unsigned int, struct inode *,
2788f7c21177STheodore Ts'o 				  struct file *,
27893dcf5451SChristoph Hellwig 				  struct ext4_dir_entry_2 *,
2790226ba972STao Ma 				  struct buffer_head *, char *, int,
2791226ba972STao Ma 				  unsigned int);
2792226ba972STao Ma #define ext4_check_dir_entry(dir, filp, de, bh, buf, size, offset) \
2793f7c21177STheodore Ts'o 	unlikely(__ext4_check_dir_entry(__func__, __LINE__, (dir), (filp), \
2794226ba972STao Ma 				(de), (bh), (buf), (size), (offset)))
27953dcf5451SChristoph Hellwig extern int ext4_htree_store_dirent(struct file *dir_file, __u32 hash,
27963dcf5451SChristoph Hellwig 				__u32 minor_hash,
27972f61830aSTheodore Ts'o 				struct ext4_dir_entry_2 *dirent,
2798a7550b30SJaegeuk Kim 				struct fscrypt_str *ent_name);
27993dcf5451SChristoph Hellwig extern void ext4_htree_free_dir_info(struct dir_private_info *p);
2800978fef91STao Ma extern int ext4_find_dest_de(struct inode *dir, struct inode *inode,
2801978fef91STao Ma 			     struct buffer_head *bh,
2802978fef91STao Ma 			     void *buf, int buf_size,
28035b643f9cSTheodore Ts'o 			     struct ext4_filename *fname,
2804978fef91STao Ma 			     struct ext4_dir_entry_2 **dest_de);
2805471fbbeaSDaniel Rosenberg void ext4_insert_dentry(struct inode *dir, struct inode *inode,
2806978fef91STao Ma 			struct ext4_dir_entry_2 *de,
2807978fef91STao Ma 			int buf_size,
28085b643f9cSTheodore Ts'o 			struct ext4_filename *fname);
2809978fef91STao Ma static inline void ext4_update_dx_flag(struct inode *inode)
2810978fef91STao Ma {
2811f902b216SJan Kara 	if (!ext4_has_feature_dir_index(inode->i_sb) &&
2812f902b216SJan Kara 	    ext4_test_inode_flag(inode, EXT4_INODE_INDEX)) {
281348a34311SJan Kara 		/* ext4_iget() should have caught this... */
281448a34311SJan Kara 		WARN_ON_ONCE(ext4_has_feature_metadata_csum(inode->i_sb));
2815978fef91STao Ma 		ext4_clear_inode_flag(inode, EXT4_INODE_INDEX);
2816978fef91STao Ma 	}
281748a34311SJan Kara }
2818d6006186SEric Biggers static const unsigned char ext4_filetype_table[] = {
281965d165d9STao Ma 	DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
282065d165d9STao Ma };
282165d165d9STao Ma 
282265d165d9STao Ma static inline  unsigned char get_dtype(struct super_block *sb, int filetype)
282365d165d9STao Ma {
2824e2b911c5SDarrick J. Wong 	if (!ext4_has_feature_filetype(sb) || filetype >= EXT4_FT_MAX)
282565d165d9STao Ma 		return DT_UNKNOWN;
282665d165d9STao Ma 
282765d165d9STao Ma 	return ext4_filetype_table[filetype];
282865d165d9STao Ma }
282940b163f1SDarrick J. Wong extern int ext4_check_all_de(struct inode *dir, struct buffer_head *bh,
283040b163f1SDarrick J. Wong 			     void *buf, int buf_size);
28313dcf5451SChristoph Hellwig 
28323dcf5451SChristoph Hellwig /* fsync.c */
283302c24a82SJosef Bacik extern int ext4_sync_file(struct file *, loff_t, loff_t, int);
28343dcf5451SChristoph Hellwig 
28353dcf5451SChristoph Hellwig /* hash.c */
2836b886ee3eSGabriel Krisman Bertazi extern int ext4fs_dirhash(const struct inode *dir, const char *name, int len,
2837b886ee3eSGabriel Krisman Bertazi 			  struct dx_hash_info *hinfo);
28383dcf5451SChristoph Hellwig 
28393dcf5451SChristoph Hellwig /* ialloc.c */
28408016e29fSHarshad Shirwadkar extern int ext4_mark_inode_used(struct super_block *sb, int ino);
2841f2d40141SChristian Brauner extern struct inode *__ext4_new_inode(struct mnt_idmap *, handle_t *,
284214f3db55SChristian Brauner 				      struct inode *, umode_t,
28435cb81dabSDmitry Monakhov 				      const struct qstr *qstr, __u32 goal,
28441b917ed8STahsin Erdogan 				      uid_t *owner, __u32 i_flags,
28451b917ed8STahsin Erdogan 				      int handle_type, unsigned int line_no,
28461b917ed8STahsin Erdogan 				      int nblocks);
28471139575aSTheodore Ts'o 
28481b917ed8STahsin Erdogan #define ext4_new_inode(handle, dir, mode, qstr, goal, owner, i_flags)          \
2849f2d40141SChristian Brauner 	__ext4_new_inode(&nop_mnt_idmap, (handle), (dir), (mode), (qstr),      \
285014f3db55SChristian Brauner 			 (goal), (owner), i_flags, 0, 0, 0)
2851f2d40141SChristian Brauner #define ext4_new_inode_start_handle(idmap, dir, mode, qstr, goal, owner, \
28521139575aSTheodore Ts'o 				    type, nblocks)		    \
2853f2d40141SChristian Brauner 	__ext4_new_inode((idmap), NULL, (dir), (mode), (qstr), (goal), (owner), \
28541b917ed8STahsin Erdogan 			 0, (type), __LINE__, (nblocks))
28551139575aSTheodore Ts'o 
28561139575aSTheodore Ts'o 
28573dcf5451SChristoph Hellwig extern void ext4_free_inode(handle_t *, struct inode *);
28583dcf5451SChristoph Hellwig extern struct inode * ext4_orphan_get(struct super_block *, unsigned long);
28593dcf5451SChristoph Hellwig extern unsigned long ext4_count_free_inodes(struct super_block *);
28603dcf5451SChristoph Hellwig extern unsigned long ext4_count_dirs(struct super_block *);
28613dcf5451SChristoph Hellwig extern void ext4_check_inodes_bitmap(struct super_block *);
286261d08673STheodore Ts'o extern void ext4_mark_bitmap_end(int start_bit, int end_bit, char *bitmap);
2863bfff6873SLukas Czerner extern int ext4_init_inode_table(struct super_block *sb,
2864bfff6873SLukas Czerner 				 ext4_group_t group, int barrier);
2865813e5727STheodore Ts'o extern void ext4_end_bitmap_read(struct buffer_head *bh, int uptodate);
28663dcf5451SChristoph Hellwig 
28676866d7b3SHarshad Shirwadkar /* fast_commit.c */
2868ce8c59d1SHarshad Shirwadkar int ext4_fc_info_show(struct seq_file *seq, void *v);
28696866d7b3SHarshad Shirwadkar void ext4_fc_init(struct super_block *sb, journal_t *journal);
2870aa75f4d3SHarshad Shirwadkar void ext4_fc_init_inode(struct inode *inode);
2871a80f7fcfSHarshad Shirwadkar void ext4_fc_track_range(handle_t *handle, struct inode *inode, ext4_lblk_t start,
2872aa75f4d3SHarshad Shirwadkar 			 ext4_lblk_t end);
2873a80f7fcfSHarshad Shirwadkar void __ext4_fc_track_unlink(handle_t *handle, struct inode *inode,
2874a80f7fcfSHarshad Shirwadkar 	struct dentry *dentry);
2875a80f7fcfSHarshad Shirwadkar void __ext4_fc_track_link(handle_t *handle, struct inode *inode,
2876a80f7fcfSHarshad Shirwadkar 	struct dentry *dentry);
2877a80f7fcfSHarshad Shirwadkar void ext4_fc_track_unlink(handle_t *handle, struct dentry *dentry);
2878a80f7fcfSHarshad Shirwadkar void ext4_fc_track_link(handle_t *handle, struct dentry *dentry);
28798210bb29SHarshad Shirwadkar void __ext4_fc_track_create(handle_t *handle, struct inode *inode,
28808210bb29SHarshad Shirwadkar 			    struct dentry *dentry);
2881a80f7fcfSHarshad Shirwadkar void ext4_fc_track_create(handle_t *handle, struct dentry *dentry);
2882a80f7fcfSHarshad Shirwadkar void ext4_fc_track_inode(handle_t *handle, struct inode *inode);
2883e85c81baSXin Yin void ext4_fc_mark_ineligible(struct super_block *sb, int reason, handle_t *handle);
2884aa75f4d3SHarshad Shirwadkar void ext4_fc_start_update(struct inode *inode);
2885aa75f4d3SHarshad Shirwadkar void ext4_fc_stop_update(struct inode *inode);
2886aa75f4d3SHarshad Shirwadkar void ext4_fc_del(struct inode *inode);
28878016e29fSHarshad Shirwadkar bool ext4_fc_replay_check_excluded(struct super_block *sb, ext4_fsblk_t block);
28888016e29fSHarshad Shirwadkar void ext4_fc_replay_cleanup(struct super_block *sb);
2889aa75f4d3SHarshad Shirwadkar int ext4_fc_commit(journal_t *journal, tid_t commit_tid);
2890aa75f4d3SHarshad Shirwadkar int __init ext4_fc_init_dentry_cache(void);
2891ab047d51SSebastian Andrzej Siewior void ext4_fc_destroy_dentry_cache(void);
2892599ea31dSXin Yin int ext4_fc_record_regions(struct super_block *sb, int ino,
2893599ea31dSXin Yin 			   ext4_lblk_t lblk, ext4_fsblk_t pblk,
2894599ea31dSXin Yin 			   int len, int replay);
2895aa75f4d3SHarshad Shirwadkar 
28963dcf5451SChristoph Hellwig /* mballoc.c */
2897247dbed8SChristoph Hellwig extern const struct seq_operations ext4_mb_seq_groups_ops;
2898f68f4063SHarshad Shirwadkar extern const struct seq_operations ext4_mb_seq_structs_summary_ops;
2899a6c75eafSHarshad Shirwadkar extern int ext4_seq_mb_stats_show(struct seq_file *seq, void *offset);
29009d99012fSAkira Fujita extern int ext4_mb_init(struct super_block *);
29013dcf5451SChristoph Hellwig extern int ext4_mb_release(struct super_block *);
29023dcf5451SChristoph Hellwig extern ext4_fsblk_t ext4_mb_new_blocks(handle_t *,
29033dcf5451SChristoph Hellwig 				struct ext4_allocation_request *, int *);
29043dcf5451SChristoph Hellwig extern int ext4_mb_reserve_blocks(struct super_block *, int);
290527bc446eSbrookxu extern void ext4_discard_preallocations(struct inode *, unsigned int);
29065dabfc78STheodore Ts'o extern int __init ext4_init_mballoc(void);
29075dabfc78STheodore Ts'o extern void ext4_exit_mballoc(void);
29083d392b26STheodore Ts'o extern ext4_group_t ext4_mb_prefetch(struct super_block *sb,
29093d392b26STheodore Ts'o 				     ext4_group_t group,
29103d392b26STheodore Ts'o 				     unsigned int nr, int *cnt);
29113d392b26STheodore Ts'o extern void ext4_mb_prefetch_fini(struct super_block *sb, ext4_group_t group,
29123d392b26STheodore Ts'o 				  unsigned int nr);
29133d392b26STheodore Ts'o 
291444338711STheodore Ts'o extern void ext4_free_blocks(handle_t *handle, struct inode *inode,
2915e6362609STheodore Ts'o 			     struct buffer_head *bh, ext4_fsblk_t block,
2916e6362609STheodore Ts'o 			     unsigned long count, int flags);
291728623c2fSTheodore Ts'o extern int ext4_mb_alloc_groupinfo(struct super_block *sb,
291828623c2fSTheodore Ts'o 				   ext4_group_t ngroups);
2919920313a7SAneesh Kumar K.V extern int ext4_mb_add_groupinfo(struct super_block *sb,
29205f21b0e6SFrederic Bohe 		ext4_group_t i, struct ext4_group_desc *desc);
2921cc7365dfSYongqiang Yang extern int ext4_group_add_blocks(handle_t *handle, struct super_block *sb,
29222846e820SAmir Goldstein 				ext4_fsblk_t block, unsigned long count);
29237360d173SLukas Czerner extern int ext4_trim_fs(struct super_block *, struct fstrim_range *);
2924a0154344SDaeho Jeong extern void ext4_process_freed_data(struct super_block *sb, tid_t commit_tid);
29258016e29fSHarshad Shirwadkar extern void ext4_mb_mark_bb(struct super_block *sb, ext4_fsblk_t block,
29268016e29fSHarshad Shirwadkar 		       int len, int state);
29277360d173SLukas Czerner 
29283dcf5451SChristoph Hellwig /* inode.c */
29298016e29fSHarshad Shirwadkar void ext4_inode_csum_set(struct inode *inode, struct ext4_inode *raw,
29308016e29fSHarshad Shirwadkar 			 struct ext4_inode_info *ei);
2931f348c252STheodore Ts'o int ext4_inode_is_fast_symlink(struct inode *inode);
293210560082STheodore Ts'o struct buffer_head *ext4_getblk(handle_t *, struct inode *, ext4_lblk_t, int);
29331c215028STheodore Ts'o struct buffer_head *ext4_bread(handle_t *, struct inode *, ext4_lblk_t, int);
29349699d4f9STahsin Erdogan int ext4_bread_batch(struct inode *inode, ext4_lblk_t block, int bh_count,
29359699d4f9STahsin Erdogan 		     bool wait, struct buffer_head **bhs);
2936705965bdSJan Kara int ext4_get_block_unwritten(struct inode *inode, sector_t iblock,
2937f19d5870STao Ma 			     struct buffer_head *bh_result, int create);
29386873fa0dSEric Sandeen int ext4_get_block(struct inode *inode, sector_t iblock,
29396873fa0dSEric Sandeen 		   struct buffer_head *bh_result, int create);
29409c3569b5STao Ma int ext4_da_get_block_prep(struct inode *inode, sector_t iblock,
29419c3569b5STao Ma 			   struct buffer_head *bh, int create);
2942f19d5870STao Ma int ext4_walk_page_buffers(handle_t *handle,
2943188c299eSJan Kara 			   struct inode *inode,
2944f19d5870STao Ma 			   struct buffer_head *head,
2945f19d5870STao Ma 			   unsigned from,
2946f19d5870STao Ma 			   unsigned to,
2947f19d5870STao Ma 			   int *partial,
2948188c299eSJan Kara 			   int (*fn)(handle_t *handle, struct inode *inode,
2949f19d5870STao Ma 				     struct buffer_head *bh));
2950188c299eSJan Kara int do_journal_get_write_access(handle_t *handle, struct inode *inode,
2951f19d5870STao Ma 				struct buffer_head *bh);
29529c3569b5STao Ma #define FALL_BACK_TO_NONDELALLOC 1
29539c3569b5STao Ma #define CONVERT_INLINE_DATA	 2
29543dcf5451SChristoph Hellwig 
29558a363970STheodore Ts'o typedef enum {
29568a363970STheodore Ts'o 	EXT4_IGET_NORMAL =	0,
29578a363970STheodore Ts'o 	EXT4_IGET_SPECIAL =	0x0001, /* OK to iget a system inode */
295863b1e9bcSBaokun Li 	EXT4_IGET_HANDLE = 	0x0002,	/* Inode # is from a handle */
2959b3e6bcb9STheodore Ts'o 	EXT4_IGET_BAD =		0x0004, /* Allow to iget a bad inode */
2960b3e6bcb9STheodore Ts'o 	EXT4_IGET_EA_INODE =	0x0008	/* Inode should contain an EA value */
29618a363970STheodore Ts'o } ext4_iget_flags;
29628a363970STheodore Ts'o 
29638a363970STheodore Ts'o extern struct inode *__ext4_iget(struct super_block *sb, unsigned long ino,
29648a363970STheodore Ts'o 				 ext4_iget_flags flags, const char *function,
29658a363970STheodore Ts'o 				 unsigned int line);
29668a363970STheodore Ts'o 
29678a363970STheodore Ts'o #define ext4_iget(sb, ino, flags) \
29688a363970STheodore Ts'o 	__ext4_iget((sb), (ino), (flags), __func__, __LINE__)
29698a363970STheodore Ts'o 
2970a9185b41SChristoph Hellwig extern int  ext4_write_inode(struct inode *, struct writeback_control *);
2971c1632a0fSChristian Brauner extern int  ext4_setattr(struct mnt_idmap *, struct dentry *,
2972549c7297SChristian Brauner 			 struct iattr *);
29738434ef1dSEric Biggers extern u32  ext4_dio_alignment(struct inode *inode);
2974b74d24f7SChristian Brauner extern int  ext4_getattr(struct mnt_idmap *, const struct path *,
2975549c7297SChristian Brauner 			 struct kstat *, u32, unsigned int);
29760930fcc1SAl Viro extern void ext4_evict_inode(struct inode *);
29770930fcc1SAl Viro extern void ext4_clear_inode(struct inode *);
2978b74d24f7SChristian Brauner extern int  ext4_file_getattr(struct mnt_idmap *, const struct path *,
2979549c7297SChristian Brauner 			      struct kstat *, u32, unsigned int);
29803dcf5451SChristoph Hellwig extern int  ext4_sync_inode(handle_t *, struct inode *);
2981aa385729SChristoph Hellwig extern void ext4_dirty_inode(struct inode *, int);
29823dcf5451SChristoph Hellwig extern int ext4_change_inode_journal_flag(struct inode *, int);
29833dcf5451SChristoph Hellwig extern int ext4_get_inode_loc(struct inode *, struct ext4_iloc *);
29848016e29fSHarshad Shirwadkar extern int ext4_get_fc_inode_loc(struct super_block *sb, unsigned long ino,
29858016e29fSHarshad Shirwadkar 			  struct ext4_iloc *iloc);
2986a361293fSJan Kara extern int ext4_inode_attach_jinode(struct inode *inode);
298791ef4cafSDuane Griffin extern int ext4_can_truncate(struct inode *inode);
29882c98eb5eSTheodore Ts'o extern int ext4_truncate(struct inode *);
2989430657b6SRoss Zwisler extern int ext4_break_layouts(struct inode *);
2990ad5cd4f4SDarrick J. Wong extern int ext4_punch_hole(struct file *file, loff_t offset, loff_t length);
2991043546e4SIra Weiny extern void ext4_set_inode_flags(struct inode *, bool init);
2992ccd2506bSTheodore Ts'o extern int ext4_alloc_da_blocks(struct inode *inode);
29933dcf5451SChristoph Hellwig extern void ext4_set_aops(struct inode *inode);
29943dcf5451SChristoph Hellwig extern int ext4_writepage_trans_blocks(struct inode *);
299559205c8dSJan Kara extern int ext4_normal_submit_inode_data_buffers(struct jbd2_inode *jinode);
2996f3bd1f3fSMingming Cao extern int ext4_chunk_trans_blocks(struct inode *, int nrblocks);
2997a87dd18cSLukas Czerner extern int ext4_zero_partial_blocks(handle_t *handle, struct inode *inode,
2998a87dd18cSLukas Czerner 			     loff_t lstart, loff_t lend);
2999401b25aaSSouptick Joarder extern vm_fault_t ext4_page_mkwrite(struct vm_fault *vmf);
3000a9e7f447SDmitry Monakhov extern qsize_t *ext4_get_reserved_space(struct inode *inode);
3001040cb378SLi Xi extern int ext4_get_projid(struct inode *inode, kprojid_t *projid);
3002f456767dSEric Whitney extern void ext4_da_release_space(struct inode *inode, int to_free);
30035f634d06SAneesh Kumar K.V extern void ext4_da_update_reserve_space(struct inode *inode,
30045f634d06SAneesh Kumar K.V 					int used, int quota_claim);
300553085facSJan Kara extern int ext4_issue_zeroout(struct inode *inode, ext4_lblk_t lblk,
300653085facSJan Kara 			      ext4_fsblk_t pblk, ext4_lblk_t len);
3007dae1e52cSAmir Goldstein 
3008dae1e52cSAmir Goldstein /* indirect.c */
3009dae1e52cSAmir Goldstein extern int ext4_ind_map_blocks(handle_t *handle, struct inode *inode,
3010dae1e52cSAmir Goldstein 				struct ext4_map_blocks *map, int flags);
3011fa55a0edSJan Kara extern int ext4_ind_trans_blocks(struct inode *inode, int nrblocks);
3012819c4920STheodore Ts'o extern void ext4_ind_truncate(handle_t *, struct inode *inode);
30134f579ae7SLukas Czerner extern int ext4_ind_remove_space(handle_t *handle, struct inode *inode,
30144f579ae7SLukas Czerner 				 ext4_lblk_t start, ext4_lblk_t end);
3015ff9893dcSAmir Goldstein 
30163dcf5451SChristoph Hellwig /* ioctl.c */
30173dcf5451SChristoph Hellwig extern long ext4_ioctl(struct file *, unsigned int, unsigned long);
30183dcf5451SChristoph Hellwig extern long ext4_compat_ioctl(struct file *, unsigned int, unsigned long);
30198782a9aeSChristian Brauner int ext4_fileattr_set(struct mnt_idmap *idmap,
30204db5c2e6SMiklos Szeredi 		      struct dentry *dentry, struct fileattr *fa);
30214db5c2e6SMiklos Szeredi int ext4_fileattr_get(struct dentry *dentry, struct fileattr *fa);
30228016e29fSHarshad Shirwadkar extern void ext4_reset_inode_seed(struct inode *inode);
3023827891a3STheodore Ts'o int ext4_update_overhead(struct super_block *sb, bool force);
30243dcf5451SChristoph Hellwig 
30253dcf5451SChristoph Hellwig /* migrate.c */
30262a43a878SAneesh Kumar K.V extern int ext4_ext_migrate(struct inode *);
30270d14b098SLukas Czerner extern int ext4_ind_migrate(struct inode *inode);
30283d0518f4SWei Yongjun 
30293dcf5451SChristoph Hellwig /* namei.c */
30308016e29fSHarshad Shirwadkar extern int ext4_init_new_dir(handle_t *handle, struct inode *dir,
30318016e29fSHarshad Shirwadkar 			     struct inode *inode);
3032f036adb3STheodore Ts'o extern int ext4_dirblock_csum_verify(struct inode *inode,
3033f036adb3STheodore Ts'o 				     struct buffer_head *bh);
30343dcf5451SChristoph Hellwig extern int ext4_htree_fill_tree(struct file *dir_file, __u32 start_hash,
30353dcf5451SChristoph Hellwig 				__u32 start_minor_hash, __u32 *next_hash);
30365b643f9cSTheodore Ts'o extern int ext4_search_dir(struct buffer_head *bh,
30377335cd3bSTao Ma 			   char *search_buf,
30387335cd3bSTao Ma 			   int buf_size,
30397335cd3bSTao Ma 			   struct inode *dir,
30405b643f9cSTheodore Ts'o 			   struct ext4_filename *fname,
30417335cd3bSTao Ma 			   unsigned int offset,
30427335cd3bSTao Ma 			   struct ext4_dir_entry_2 **res_dir);
30432fe34d29SKyoungho Koo extern int ext4_generic_delete_entry(struct inode *dir,
304405019a9eSTao Ma 				     struct ext4_dir_entry_2 *de_del,
304505019a9eSTao Ma 				     struct buffer_head *bh,
304605019a9eSTao Ma 				     void *entry_buf,
304705019a9eSTao Ma 				     int buf_size,
304805019a9eSTao Ma 				     int csum_size);
3049a7550b30SJaegeuk Kim extern bool ext4_empty_dir(struct inode *inode);
30503dcf5451SChristoph Hellwig 
30513dcf5451SChristoph Hellwig /* resize.c */
30521d0c3924STheodore Ts'o extern void ext4_kvfree_array_rcu(void *to_free);
30533dcf5451SChristoph Hellwig extern int ext4_group_add(struct super_block *sb,
30543dcf5451SChristoph Hellwig 				struct ext4_new_group_data *input);
30553dcf5451SChristoph Hellwig extern int ext4_group_extend(struct super_block *sb,
30563dcf5451SChristoph Hellwig 				struct ext4_super_block *es,
30573dcf5451SChristoph Hellwig 				ext4_fsblk_t n_blocks_count);
305819c5246dSYongqiang Yang extern int ext4_resize_fs(struct super_block *sb, ext4_fsblk_t n_blocks_count);
3059bbc605cdSLukas Czerner extern unsigned int ext4_list_backups(struct super_block *sb,
3060bbc605cdSLukas Czerner 				      unsigned int *three, unsigned int *five,
3061bbc605cdSLukas Czerner 				      unsigned int *seven);
30623dcf5451SChristoph Hellwig 
30633dcf5451SChristoph Hellwig /* super.c */
3064fb265c9cSTheodore Ts'o extern struct buffer_head *ext4_sb_bread(struct super_block *sb,
306567c0f556SBart Van Assche 					 sector_t block, blk_opf_t op_flags);
30668394a6abSzhangyi (F) extern struct buffer_head *ext4_sb_bread_unmovable(struct super_block *sb,
30678394a6abSzhangyi (F) 						   sector_t block);
306867c0f556SBart Van Assche extern void ext4_read_bh_nowait(struct buffer_head *bh, blk_opf_t op_flags,
3069fa491b14Szhangyi (F) 				bh_end_io_t *end_io);
307067c0f556SBart Van Assche extern int ext4_read_bh(struct buffer_head *bh, blk_opf_t op_flags,
3071fa491b14Szhangyi (F) 			bh_end_io_t *end_io);
307267c0f556SBart Van Assche extern int ext4_read_bh_lock(struct buffer_head *bh, blk_opf_t op_flags, bool wait);
30735df1d412Szhangyi (F) extern void ext4_sb_breadahead_unmovable(struct super_block *sb, sector_t block);
3074ebd173beSTheodore Ts'o extern int ext4_seq_options_show(struct seq_file *seq, void *offset);
3075952fc18eSTheodore Ts'o extern int ext4_calculate_overhead(struct super_block *sb);
3076bbc605cdSLukas Czerner extern __le32 ext4_superblock_csum(struct super_block *sb,
3077bbc605cdSLukas Czerner 				   struct ext4_super_block *es);
307806db49e6STheodore Ts'o extern void ext4_superblock_csum_set(struct super_block *sb);
3079117fff10STheodore Ts'o extern int ext4_alloc_flex_bg_array(struct super_block *sb,
3080117fff10STheodore Ts'o 				    ext4_group_t ngroup);
3081722887ddSTheodore Ts'o extern const char *ext4_decode_error(struct super_block *sb, int errno,
3082722887ddSTheodore Ts'o 				     char nbuf[16]);
3083db79e6d1SWang Shilong extern void ext4_mark_group_bitmap_corrupted(struct super_block *sb,
3084db79e6d1SWang Shilong 					     ext4_group_t block_group,
3085db79e6d1SWang Shilong 					     unsigned int flags);
3086e7c96e8eSJoe Perches 
3087014c9caaSJan Kara extern __printf(7, 8)
3088014c9caaSJan Kara void __ext4_error(struct super_block *, const char *, unsigned int, bool,
3089014c9caaSJan Kara 		  int, __u64, const char *, ...);
309054d3adbcSTheodore Ts'o extern __printf(6, 7)
309154d3adbcSTheodore Ts'o void __ext4_error_inode(struct inode *, const char *, unsigned int,
309254d3adbcSTheodore Ts'o 			ext4_fsblk_t, int, const char *, ...);
3093b9075fa9SJoe Perches extern __printf(5, 6)
3094e7c96e8eSJoe Perches void __ext4_error_file(struct file *, const char *, unsigned int, ext4_fsblk_t,
3095b9075fa9SJoe Perches 		     const char *, ...);
3096c398eda0STheodore Ts'o extern void __ext4_std_error(struct super_block *, const char *,
3097c398eda0STheodore Ts'o 			     unsigned int, int);
3098b9075fa9SJoe Perches extern __printf(4, 5)
3099b9075fa9SJoe Perches void __ext4_warning(struct super_block *, const char *, unsigned int,
3100b9075fa9SJoe Perches 		    const char *, ...);
3101b03a2f7eSAndreas Dilger extern __printf(4, 5)
3102b03a2f7eSAndreas Dilger void __ext4_warning_inode(const struct inode *inode, const char *function,
3103b03a2f7eSAndreas Dilger 			  unsigned int line, const char *fmt, ...);
3104b9075fa9SJoe Perches extern __printf(3, 4)
3105e7c96e8eSJoe Perches void __ext4_msg(struct super_block *, const char *, const char *, ...);
3106c5e06d10SJohann Lombardi extern void __dump_mmp_msg(struct super_block *, struct mmp_struct *mmp,
3107c5e06d10SJohann Lombardi 			   const char *, unsigned int, const char *);
3108b9075fa9SJoe Perches extern __printf(7, 8)
3109b9075fa9SJoe Perches void __ext4_grp_locked_error(const char *, unsigned int,
3110b9075fa9SJoe Perches 			     struct super_block *, ext4_group_t,
3111b9075fa9SJoe Perches 			     unsigned long, ext4_fsblk_t,
3112b9075fa9SJoe Perches 			     const char *, ...);
3113e7c96e8eSJoe Perches 
3114b03a2f7eSAndreas Dilger #define EXT4_ERROR_INODE(inode, fmt, a...) \
3115b03a2f7eSAndreas Dilger 	ext4_error_inode((inode), __func__, __LINE__, 0, (fmt), ## a)
3116b03a2f7eSAndreas Dilger 
311754d3adbcSTheodore Ts'o #define EXT4_ERROR_INODE_ERR(inode, err, fmt, a...)			\
311854d3adbcSTheodore Ts'o 	__ext4_error_inode((inode), __func__, __LINE__, 0, (err), (fmt), ## a)
311954d3adbcSTheodore Ts'o 
312054d3adbcSTheodore Ts'o #define ext4_error_inode_block(inode, block, err, fmt, a...)		\
312154d3adbcSTheodore Ts'o 	__ext4_error_inode((inode), __func__, __LINE__, (block), (err),	\
312254d3adbcSTheodore Ts'o 			   (fmt), ## a)
3123b03a2f7eSAndreas Dilger 
3124b03a2f7eSAndreas Dilger #define EXT4_ERROR_FILE(file, block, fmt, a...)				\
3125b03a2f7eSAndreas Dilger 	ext4_error_file((file), __func__, __LINE__, (block), (fmt), ## a)
3126b03a2f7eSAndreas Dilger 
3127014c9caaSJan Kara #define ext4_abort(sb, err, fmt, a...)					\
3128014c9caaSJan Kara 	__ext4_error((sb), __func__, __LINE__, true, (err), 0, (fmt), ## a)
3129014c9caaSJan Kara 
3130e7c96e8eSJoe Perches #ifdef CONFIG_PRINTK
3131e7c96e8eSJoe Perches 
3132e7c96e8eSJoe Perches #define ext4_error_inode(inode, func, line, block, fmt, ...)		\
313354d3adbcSTheodore Ts'o 	__ext4_error_inode(inode, func, line, block, 0, fmt, ##__VA_ARGS__)
313454d3adbcSTheodore Ts'o #define ext4_error_inode_err(inode, func, line, block, err, fmt, ...)	\
313554d3adbcSTheodore Ts'o 	__ext4_error_inode((inode), (func), (line), (block), 		\
313654d3adbcSTheodore Ts'o 			   (err), (fmt), ##__VA_ARGS__)
3137e7c96e8eSJoe Perches #define ext4_error_file(file, func, line, block, fmt, ...)		\
3138e7c96e8eSJoe Perches 	__ext4_error_file(file, func, line, block, fmt, ##__VA_ARGS__)
3139e7c96e8eSJoe Perches #define ext4_error(sb, fmt, ...)					\
3140014c9caaSJan Kara 	__ext4_error((sb), __func__, __LINE__, false, 0, 0, (fmt),	\
3141014c9caaSJan Kara 		##__VA_ARGS__)
314254d3adbcSTheodore Ts'o #define ext4_error_err(sb, err, fmt, ...)				\
3143014c9caaSJan Kara 	__ext4_error((sb), __func__, __LINE__, false, (err), 0, (fmt),	\
3144014c9caaSJan Kara 		##__VA_ARGS__)
3145e7c96e8eSJoe Perches #define ext4_warning(sb, fmt, ...)					\
3146e7c96e8eSJoe Perches 	__ext4_warning(sb, __func__, __LINE__, fmt, ##__VA_ARGS__)
3147b03a2f7eSAndreas Dilger #define ext4_warning_inode(inode, fmt, ...)				\
3148b03a2f7eSAndreas Dilger 	__ext4_warning_inode(inode, __func__, __LINE__, fmt, ##__VA_ARGS__)
3149e7c96e8eSJoe Perches #define ext4_msg(sb, level, fmt, ...)				\
3150e7c96e8eSJoe Perches 	__ext4_msg(sb, level, fmt, ##__VA_ARGS__)
3151e7c96e8eSJoe Perches #define dump_mmp_msg(sb, mmp, msg)					\
3152e7c96e8eSJoe Perches 	__dump_mmp_msg(sb, mmp, __func__, __LINE__, msg)
3153e7c96e8eSJoe Perches #define ext4_grp_locked_error(sb, grp, ino, block, fmt, ...)		\
3154e7c96e8eSJoe Perches 	__ext4_grp_locked_error(__func__, __LINE__, sb, grp, ino, block, \
3155e7c96e8eSJoe Perches 				fmt, ##__VA_ARGS__)
3156e7c96e8eSJoe Perches 
3157e7c96e8eSJoe Perches #else
3158e7c96e8eSJoe Perches 
3159e7c96e8eSJoe Perches #define ext4_error_inode(inode, func, line, block, fmt, ...)		\
3160e7c96e8eSJoe Perches do {									\
3161e7c96e8eSJoe Perches 	no_printk(fmt, ##__VA_ARGS__);					\
316254d3adbcSTheodore Ts'o 	__ext4_error_inode(inode, "", 0, block, 0, " ");		\
316354d3adbcSTheodore Ts'o } while (0)
316454d3adbcSTheodore Ts'o #define ext4_error_inode_err(inode, func, line, block, err, fmt, ...)	\
316554d3adbcSTheodore Ts'o do {									\
316654d3adbcSTheodore Ts'o 	no_printk(fmt, ##__VA_ARGS__);					\
316754d3adbcSTheodore Ts'o 	__ext4_error_inode(inode, "", 0, block, err, " ");		\
3168e7c96e8eSJoe Perches } while (0)
3169e7c96e8eSJoe Perches #define ext4_error_file(file, func, line, block, fmt, ...)		\
3170e7c96e8eSJoe Perches do {									\
3171e7c96e8eSJoe Perches 	no_printk(fmt, ##__VA_ARGS__);					\
3172e7c96e8eSJoe Perches 	__ext4_error_file(file, "", 0, block, " ");			\
3173e7c96e8eSJoe Perches } while (0)
3174e7c96e8eSJoe Perches #define ext4_error(sb, fmt, ...)					\
3175e7c96e8eSJoe Perches do {									\
3176e7c96e8eSJoe Perches 	no_printk(fmt, ##__VA_ARGS__);					\
3177014c9caaSJan Kara 	__ext4_error(sb, "", 0, false, 0, 0, " ");			\
3178e7c96e8eSJoe Perches } while (0)
317954d3adbcSTheodore Ts'o #define ext4_error_err(sb, err, fmt, ...)				\
3180e7c96e8eSJoe Perches do {									\
3181e7c96e8eSJoe Perches 	no_printk(fmt, ##__VA_ARGS__);					\
3182014c9caaSJan Kara 	__ext4_error(sb, "", 0, false, err, 0, " ");			\
3183e7c96e8eSJoe Perches } while (0)
3184e7c96e8eSJoe Perches #define ext4_warning(sb, fmt, ...)					\
3185e7c96e8eSJoe Perches do {									\
3186e7c96e8eSJoe Perches 	no_printk(fmt, ##__VA_ARGS__);					\
3187e7c96e8eSJoe Perches 	__ext4_warning(sb, "", 0, " ");					\
3188e7c96e8eSJoe Perches } while (0)
3189b03a2f7eSAndreas Dilger #define ext4_warning_inode(inode, fmt, ...)				\
3190b03a2f7eSAndreas Dilger do {									\
3191b03a2f7eSAndreas Dilger 	no_printk(fmt, ##__VA_ARGS__);					\
3192b03a2f7eSAndreas Dilger 	__ext4_warning_inode(inode, "", 0, " ");			\
3193b03a2f7eSAndreas Dilger } while (0)
3194e7c96e8eSJoe Perches #define ext4_msg(sb, level, fmt, ...)					\
3195e7c96e8eSJoe Perches do {									\
3196e7c96e8eSJoe Perches 	no_printk(fmt, ##__VA_ARGS__);					\
3197e7c96e8eSJoe Perches 	__ext4_msg(sb, "", " ");					\
3198e7c96e8eSJoe Perches } while (0)
3199e7c96e8eSJoe Perches #define dump_mmp_msg(sb, mmp, msg)					\
3200e7c96e8eSJoe Perches 	__dump_mmp_msg(sb, mmp, "", 0, "")
3201e7c96e8eSJoe Perches #define ext4_grp_locked_error(sb, grp, ino, block, fmt, ...)		\
3202e7c96e8eSJoe Perches do {									\
3203e7c96e8eSJoe Perches 	no_printk(fmt, ##__VA_ARGS__);				\
3204e7c96e8eSJoe Perches 	__ext4_grp_locked_error("", 0, sb, grp, ino, block, " ");	\
3205e7c96e8eSJoe Perches } while (0)
3206e7c96e8eSJoe Perches 
3207e7c96e8eSJoe Perches #endif
3208e7c96e8eSJoe Perches 
32093dcf5451SChristoph Hellwig extern ext4_fsblk_t ext4_block_bitmap(struct super_block *sb,
32103dcf5451SChristoph Hellwig 				      struct ext4_group_desc *bg);
32113dcf5451SChristoph Hellwig extern ext4_fsblk_t ext4_inode_bitmap(struct super_block *sb,
32123dcf5451SChristoph Hellwig 				      struct ext4_group_desc *bg);
32133dcf5451SChristoph Hellwig extern ext4_fsblk_t ext4_inode_table(struct super_block *sb,
32143dcf5451SChristoph Hellwig 				     struct ext4_group_desc *bg);
3215021b65bbSTheodore Ts'o extern __u32 ext4_free_group_clusters(struct super_block *sb,
3216560671a0SAneesh Kumar K.V 				      struct ext4_group_desc *bg);
3217560671a0SAneesh Kumar K.V extern __u32 ext4_free_inodes_count(struct super_block *sb,
3218560671a0SAneesh Kumar K.V 				 struct ext4_group_desc *bg);
3219560671a0SAneesh Kumar K.V extern __u32 ext4_used_dirs_count(struct super_block *sb,
3220560671a0SAneesh Kumar K.V 				struct ext4_group_desc *bg);
3221560671a0SAneesh Kumar K.V extern __u32 ext4_itable_unused_count(struct super_block *sb,
3222560671a0SAneesh Kumar K.V 				   struct ext4_group_desc *bg);
32233dcf5451SChristoph Hellwig extern void ext4_block_bitmap_set(struct super_block *sb,
32243dcf5451SChristoph Hellwig 				  struct ext4_group_desc *bg, ext4_fsblk_t blk);
32253dcf5451SChristoph Hellwig extern void ext4_inode_bitmap_set(struct super_block *sb,
32263dcf5451SChristoph Hellwig 				  struct ext4_group_desc *bg, ext4_fsblk_t blk);
32273dcf5451SChristoph Hellwig extern void ext4_inode_table_set(struct super_block *sb,
32283dcf5451SChristoph Hellwig 				 struct ext4_group_desc *bg, ext4_fsblk_t blk);
3229021b65bbSTheodore Ts'o extern void ext4_free_group_clusters_set(struct super_block *sb,
3230021b65bbSTheodore Ts'o 					 struct ext4_group_desc *bg,
3231021b65bbSTheodore Ts'o 					 __u32 count);
3232560671a0SAneesh Kumar K.V extern void ext4_free_inodes_set(struct super_block *sb,
3233560671a0SAneesh Kumar K.V 				struct ext4_group_desc *bg, __u32 count);
3234560671a0SAneesh Kumar K.V extern void ext4_used_dirs_set(struct super_block *sb,
3235560671a0SAneesh Kumar K.V 				struct ext4_group_desc *bg, __u32 count);
3236560671a0SAneesh Kumar K.V extern void ext4_itable_unused_set(struct super_block *sb,
3237560671a0SAneesh Kumar K.V 				   struct ext4_group_desc *bg, __u32 count);
3238feb0ab32SDarrick J. Wong extern int ext4_group_desc_csum_verify(struct super_block *sb, __u32 group,
3239bb23c20aSTheodore Ts'o 				       struct ext4_group_desc *gdp);
3240feb0ab32SDarrick J. Wong extern void ext4_group_desc_csum_set(struct super_block *sb, __u32 group,
3241bb23c20aSTheodore Ts'o 				     struct ext4_group_desc *gdp);
32427f511862STheodore Ts'o extern int ext4_register_li_request(struct super_block *sb,
32437f511862STheodore Ts'o 				    ext4_group_t first_not_zeroed);
32443dcf5451SChristoph Hellwig 
32459aa5d32bSDmitry Monakhov static inline int ext4_has_metadata_csum(struct super_block *sb)
32469aa5d32bSDmitry Monakhov {
3247e2b911c5SDarrick J. Wong 	WARN_ON_ONCE(ext4_has_feature_metadata_csum(sb) &&
32489aa5d32bSDmitry Monakhov 		     !EXT4_SB(sb)->s_chksum_driver);
32499aa5d32bSDmitry Monakhov 
3250dec214d0STahsin Erdogan 	return ext4_has_feature_metadata_csum(sb) &&
3251dec214d0STahsin Erdogan 	       (EXT4_SB(sb)->s_chksum_driver != NULL);
32529aa5d32bSDmitry Monakhov }
3253dec214d0STahsin Erdogan 
3254dec214d0STahsin Erdogan static inline int ext4_has_group_desc_csum(struct super_block *sb)
3255dec214d0STahsin Erdogan {
3256dec214d0STahsin Erdogan 	return ext4_has_feature_gdt_csum(sb) || ext4_has_metadata_csum(sb);
3257dec214d0STahsin Erdogan }
3258dec214d0STahsin Erdogan 
325981e8c3c5SPetr Malat #define ext4_read_incompat_64bit_val(es, name) \
326081e8c3c5SPetr Malat 	(((es)->s_feature_incompat & cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT) \
326181e8c3c5SPetr Malat 		? (ext4_fsblk_t)le32_to_cpu(es->name##_hi) << 32 : 0) | \
326281e8c3c5SPetr Malat 		le32_to_cpu(es->name##_lo))
326381e8c3c5SPetr Malat 
32643dcf5451SChristoph Hellwig static inline ext4_fsblk_t ext4_blocks_count(struct ext4_super_block *es)
32653dcf5451SChristoph Hellwig {
326681e8c3c5SPetr Malat 	return ext4_read_incompat_64bit_val(es, s_blocks_count);
32673dcf5451SChristoph Hellwig }
32683dcf5451SChristoph Hellwig 
32693dcf5451SChristoph Hellwig static inline ext4_fsblk_t ext4_r_blocks_count(struct ext4_super_block *es)
32703dcf5451SChristoph Hellwig {
327181e8c3c5SPetr Malat 	return ext4_read_incompat_64bit_val(es, s_r_blocks_count);
32723dcf5451SChristoph Hellwig }
32733dcf5451SChristoph Hellwig 
32743dcf5451SChristoph Hellwig static inline ext4_fsblk_t ext4_free_blocks_count(struct ext4_super_block *es)
32753dcf5451SChristoph Hellwig {
327681e8c3c5SPetr Malat 	return ext4_read_incompat_64bit_val(es, s_free_blocks_count);
32773dcf5451SChristoph Hellwig }
32783dcf5451SChristoph Hellwig 
32793dcf5451SChristoph Hellwig static inline void ext4_blocks_count_set(struct ext4_super_block *es,
32803dcf5451SChristoph Hellwig 					 ext4_fsblk_t blk)
32813dcf5451SChristoph Hellwig {
32823dcf5451SChristoph Hellwig 	es->s_blocks_count_lo = cpu_to_le32((u32)blk);
32833dcf5451SChristoph Hellwig 	es->s_blocks_count_hi = cpu_to_le32(blk >> 32);
32843dcf5451SChristoph Hellwig }
32853dcf5451SChristoph Hellwig 
32863dcf5451SChristoph Hellwig static inline void ext4_free_blocks_count_set(struct ext4_super_block *es,
32873dcf5451SChristoph Hellwig 					      ext4_fsblk_t blk)
32883dcf5451SChristoph Hellwig {
32893dcf5451SChristoph Hellwig 	es->s_free_blocks_count_lo = cpu_to_le32((u32)blk);
32903dcf5451SChristoph Hellwig 	es->s_free_blocks_count_hi = cpu_to_le32(blk >> 32);
32913dcf5451SChristoph Hellwig }
32923dcf5451SChristoph Hellwig 
32933dcf5451SChristoph Hellwig static inline void ext4_r_blocks_count_set(struct ext4_super_block *es,
32943dcf5451SChristoph Hellwig 					   ext4_fsblk_t blk)
32953dcf5451SChristoph Hellwig {
32963dcf5451SChristoph Hellwig 	es->s_r_blocks_count_lo = cpu_to_le32((u32)blk);
32973dcf5451SChristoph Hellwig 	es->s_r_blocks_count_hi = cpu_to_le32(blk >> 32);
32983dcf5451SChristoph Hellwig }
32993dcf5451SChristoph Hellwig 
3300e08ac99fSArtem Blagodarenko static inline loff_t ext4_isize(struct super_block *sb,
3301e08ac99fSArtem Blagodarenko 				struct ext4_inode *raw_inode)
33023dcf5451SChristoph Hellwig {
3303e08ac99fSArtem Blagodarenko 	if (ext4_has_feature_largedir(sb) ||
3304e08ac99fSArtem Blagodarenko 	    S_ISREG(le16_to_cpu(raw_inode->i_mode)))
33053dcf5451SChristoph Hellwig 		return ((loff_t)le32_to_cpu(raw_inode->i_size_high) << 32) |
33063dcf5451SChristoph Hellwig 			le32_to_cpu(raw_inode->i_size_lo);
3307e08ac99fSArtem Blagodarenko 
330806a279d6STheodore Ts'o 	return (loff_t) le32_to_cpu(raw_inode->i_size_lo);
33093dcf5451SChristoph Hellwig }
33103dcf5451SChristoph Hellwig 
33113dcf5451SChristoph Hellwig static inline void ext4_isize_set(struct ext4_inode *raw_inode, loff_t i_size)
33123dcf5451SChristoph Hellwig {
33133dcf5451SChristoph Hellwig 	raw_inode->i_size_lo = cpu_to_le32(i_size);
33143dcf5451SChristoph Hellwig 	raw_inode->i_size_high = cpu_to_le32(i_size >> 32);
33153dcf5451SChristoph Hellwig }
33163dcf5451SChristoph Hellwig 
33178df9675fSTheodore Ts'o /*
33188df9675fSTheodore Ts'o  * Reading s_groups_count requires using smp_rmb() afterwards.  See
33198df9675fSTheodore Ts'o  * the locking protocol documented in the comments of ext4_group_add()
33208df9675fSTheodore Ts'o  * in resize.c
33218df9675fSTheodore Ts'o  */
33228df9675fSTheodore Ts'o static inline ext4_group_t ext4_get_groups_count(struct super_block *sb)
33238df9675fSTheodore Ts'o {
33248df9675fSTheodore Ts'o 	ext4_group_t	ngroups = EXT4_SB(sb)->s_groups_count;
33258df9675fSTheodore Ts'o 
33268df9675fSTheodore Ts'o 	smp_rmb();
33278df9675fSTheodore Ts'o 	return ngroups;
33288df9675fSTheodore Ts'o }
33293dcf5451SChristoph Hellwig 
3330772cb7c8SJose R. Santos static inline ext4_group_t ext4_flex_group(struct ext4_sb_info *sbi,
3331772cb7c8SJose R. Santos 					     ext4_group_t block_group)
3332772cb7c8SJose R. Santos {
3333772cb7c8SJose R. Santos 	return block_group >> sbi->s_log_groups_per_flex;
3334772cb7c8SJose R. Santos }
3335772cb7c8SJose R. Santos 
3336772cb7c8SJose R. Santos static inline unsigned int ext4_flex_bg_size(struct ext4_sb_info *sbi)
3337772cb7c8SJose R. Santos {
3338772cb7c8SJose R. Santos 	return 1 << sbi->s_log_groups_per_flex;
3339772cb7c8SJose R. Santos }
3340772cb7c8SJose R. Santos 
33413dcf5451SChristoph Hellwig #define ext4_std_error(sb, errno)				\
33423dcf5451SChristoph Hellwig do {								\
33433dcf5451SChristoph Hellwig 	if ((errno))						\
3344c398eda0STheodore Ts'o 		__ext4_std_error((sb), __func__, __LINE__, (errno));	\
33453dcf5451SChristoph Hellwig } while (0)
33463dcf5451SChristoph Hellwig 
3347a30d542aSAneesh Kumar K.V #ifdef CONFIG_SMP
3348df55c99dSTheodore Ts'o /* Each CPU can accumulate percpu_counter_batch clusters in their local
3349df55c99dSTheodore Ts'o  * counters. So we need to make sure we have free clusters more
3350179f7ebfSEric Dumazet  * than percpu_counter_batch  * nr_cpu_ids. Also add a window of 4 times.
3351a30d542aSAneesh Kumar K.V  */
3352df55c99dSTheodore Ts'o #define EXT4_FREECLUSTERS_WATERMARK (4 * (percpu_counter_batch * nr_cpu_ids))
3353a30d542aSAneesh Kumar K.V #else
3354df55c99dSTheodore Ts'o #define EXT4_FREECLUSTERS_WATERMARK 0
3355a30d542aSAneesh Kumar K.V #endif
3356a30d542aSAneesh Kumar K.V 
3357f340b3d9Shongnanli /* Update i_disksize. Requires i_rwsem to avoid races with truncate */
3358cf17fea6SAneesh Kumar K.V static inline void ext4_update_i_disksize(struct inode *inode, loff_t newsize)
3359cf17fea6SAneesh Kumar K.V {
336090e775b7SJan Kara 	WARN_ON_ONCE(S_ISREG(inode->i_mode) &&
33615955102cSAl Viro 		     !inode_is_locked(inode));
3362cf17fea6SAneesh Kumar K.V 	down_write(&EXT4_I(inode)->i_data_sem);
3363cf17fea6SAneesh Kumar K.V 	if (newsize > EXT4_I(inode)->i_disksize)
336435df4299SQian Cai 		WRITE_ONCE(EXT4_I(inode)->i_disksize, newsize);
3365cf17fea6SAneesh Kumar K.V 	up_write(&EXT4_I(inode)->i_data_sem);
336690e775b7SJan Kara }
336790e775b7SJan Kara 
3368f340b3d9Shongnanli /* Update i_size, i_disksize. Requires i_rwsem to avoid races with truncate */
33694631dbf6SDmitry Monakhov static inline int ext4_update_inode_size(struct inode *inode, loff_t newsize)
33704631dbf6SDmitry Monakhov {
33714631dbf6SDmitry Monakhov 	int changed = 0;
33724631dbf6SDmitry Monakhov 
33734631dbf6SDmitry Monakhov 	if (newsize > inode->i_size) {
33744631dbf6SDmitry Monakhov 		i_size_write(inode, newsize);
33754631dbf6SDmitry Monakhov 		changed = 1;
33764631dbf6SDmitry Monakhov 	}
33774631dbf6SDmitry Monakhov 	if (newsize > EXT4_I(inode)->i_disksize) {
33784631dbf6SDmitry Monakhov 		ext4_update_i_disksize(inode, newsize);
33794631dbf6SDmitry Monakhov 		changed |= 2;
33804631dbf6SDmitry Monakhov 	}
33814631dbf6SDmitry Monakhov 	return changed;
33824631dbf6SDmitry Monakhov }
33834631dbf6SDmitry Monakhov 
338401127848SJan Kara int ext4_update_disksize_before_punch(struct inode *inode, loff_t offset,
338501127848SJan Kara 				      loff_t len);
338601127848SJan Kara 
33875d1b1b3fSAneesh Kumar K.V struct ext4_group_info {
33885d1b1b3fSAneesh Kumar K.V 	unsigned long   bb_state;
3389addd752cSChunguang Xu #ifdef AGGRESSIVE_CHECK
3390addd752cSChunguang Xu 	unsigned long	bb_check_counter;
3391addd752cSChunguang Xu #endif
33925d1b1b3fSAneesh Kumar K.V 	struct rb_root  bb_free_root;
3393a36b4498SEric Sandeen 	ext4_grpblk_t	bb_first_free;	/* first free block */
3394a36b4498SEric Sandeen 	ext4_grpblk_t	bb_free;	/* total free blocks */
3395a36b4498SEric Sandeen 	ext4_grpblk_t	bb_fragments;	/* nr of freespace fragments */
339683e80a6eSJan Kara 	int		bb_avg_fragment_size_order;	/* order of average
339783e80a6eSJan Kara 							   fragment in BG */
33988a57d9d6SCurt Wohlgemuth 	ext4_grpblk_t	bb_largest_free_order;/* order of largest frag in BG */
3399196e402aSHarshad Shirwadkar 	ext4_group_t	bb_group;	/* Group number */
34005d1b1b3fSAneesh Kumar K.V 	struct          list_head bb_prealloc_list;
34015d1b1b3fSAneesh Kumar K.V #ifdef DOUBLE_CHECK
34025d1b1b3fSAneesh Kumar K.V 	void            *bb_bitmap;
34035d1b1b3fSAneesh Kumar K.V #endif
34045d1b1b3fSAneesh Kumar K.V 	struct rw_semaphore alloc_sem;
340583e80a6eSJan Kara 	struct list_head bb_avg_fragment_size_node;
3406196e402aSHarshad Shirwadkar 	struct list_head bb_largest_free_order_node;
3407a36b4498SEric Sandeen 	ext4_grpblk_t	bb_counters[];	/* Nr of free power-of-two-block
3408a36b4498SEric Sandeen 					 * regions, index is order.
3409a36b4498SEric Sandeen 					 * bb_counters[3] = 5 means
3410a36b4498SEric Sandeen 					 * 5 free 8-block regions. */
34115d1b1b3fSAneesh Kumar K.V };
34125d1b1b3fSAneesh Kumar K.V 
34135d1b1b3fSAneesh Kumar K.V #define EXT4_GROUP_INFO_NEED_INIT_BIT		0
34143d56b8d2STao Ma #define EXT4_GROUP_INFO_WAS_TRIMMED_BIT		1
3415163a203dSDarrick J. Wong #define EXT4_GROUP_INFO_BBITMAP_CORRUPT_BIT	2
341687a39389SDarrick J. Wong #define EXT4_GROUP_INFO_IBITMAP_CORRUPT_BIT	3
3417db79e6d1SWang Shilong #define EXT4_GROUP_INFO_BBITMAP_CORRUPT		\
3418db79e6d1SWang Shilong 	(1 << EXT4_GROUP_INFO_BBITMAP_CORRUPT_BIT)
3419db79e6d1SWang Shilong #define EXT4_GROUP_INFO_IBITMAP_CORRUPT		\
3420db79e6d1SWang Shilong 	(1 << EXT4_GROUP_INFO_IBITMAP_CORRUPT_BIT)
3421cfd73237SAlex Zhuravlev #define EXT4_GROUP_INFO_BBITMAP_READ_BIT	4
34225d1b1b3fSAneesh Kumar K.V 
34235d1b1b3fSAneesh Kumar K.V #define EXT4_MB_GRP_NEED_INIT(grp)	\
34245d1b1b3fSAneesh Kumar K.V 	(test_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &((grp)->bb_state)))
3425163a203dSDarrick J. Wong #define EXT4_MB_GRP_BBITMAP_CORRUPT(grp)	\
3426163a203dSDarrick J. Wong 	(test_bit(EXT4_GROUP_INFO_BBITMAP_CORRUPT_BIT, &((grp)->bb_state)))
342787a39389SDarrick J. Wong #define EXT4_MB_GRP_IBITMAP_CORRUPT(grp)	\
342887a39389SDarrick J. Wong 	(test_bit(EXT4_GROUP_INFO_IBITMAP_CORRUPT_BIT, &((grp)->bb_state)))
34295d1b1b3fSAneesh Kumar K.V 
34303d56b8d2STao Ma #define EXT4_MB_GRP_WAS_TRIMMED(grp)	\
34313d56b8d2STao Ma 	(test_bit(EXT4_GROUP_INFO_WAS_TRIMMED_BIT, &((grp)->bb_state)))
34323d56b8d2STao Ma #define EXT4_MB_GRP_SET_TRIMMED(grp)	\
34333d56b8d2STao Ma 	(set_bit(EXT4_GROUP_INFO_WAS_TRIMMED_BIT, &((grp)->bb_state)))
34343d56b8d2STao Ma #define EXT4_MB_GRP_CLEAR_TRIMMED(grp)	\
34353d56b8d2STao Ma 	(clear_bit(EXT4_GROUP_INFO_WAS_TRIMMED_BIT, &((grp)->bb_state)))
3436cfd73237SAlex Zhuravlev #define EXT4_MB_GRP_TEST_AND_SET_READ(grp)	\
3437cfd73237SAlex Zhuravlev 	(test_and_set_bit(EXT4_GROUP_INFO_BBITMAP_READ_BIT, &((grp)->bb_state)))
34383d56b8d2STao Ma 
343950797481STheodore Ts'o #define EXT4_MAX_CONTENTION		8
344050797481STheodore Ts'o #define EXT4_CONTENTION_THRESHOLD	2
344150797481STheodore Ts'o 
3442955ce5f5SAneesh Kumar K.V static inline spinlock_t *ext4_group_lock_ptr(struct super_block *sb,
3443955ce5f5SAneesh Kumar K.V 					      ext4_group_t group)
3444955ce5f5SAneesh Kumar K.V {
3445955ce5f5SAneesh Kumar K.V 	return bgl_lock_ptr(EXT4_SB(sb)->s_blockgroup_lock, group);
3446955ce5f5SAneesh Kumar K.V }
3447955ce5f5SAneesh Kumar K.V 
344850797481STheodore Ts'o /*
344950797481STheodore Ts'o  * Returns true if the filesystem is busy enough that attempts to
345050797481STheodore Ts'o  * access the block group locks has run into contention.
345150797481STheodore Ts'o  */
345250797481STheodore Ts'o static inline int ext4_fs_is_busy(struct ext4_sb_info *sbi)
345350797481STheodore Ts'o {
345450797481STheodore Ts'o 	return (atomic_read(&sbi->s_lock_busy) > EXT4_CONTENTION_THRESHOLD);
345550797481STheodore Ts'o }
345650797481STheodore Ts'o 
34575d1b1b3fSAneesh Kumar K.V static inline void ext4_lock_group(struct super_block *sb, ext4_group_t group)
34585d1b1b3fSAneesh Kumar K.V {
345950797481STheodore Ts'o 	spinlock_t *lock = ext4_group_lock_ptr(sb, group);
346050797481STheodore Ts'o 	if (spin_trylock(lock))
346150797481STheodore Ts'o 		/*
346250797481STheodore Ts'o 		 * We're able to grab the lock right away, so drop the
346350797481STheodore Ts'o 		 * lock contention counter.
346450797481STheodore Ts'o 		 */
346550797481STheodore Ts'o 		atomic_add_unless(&EXT4_SB(sb)->s_lock_busy, -1, 0);
346650797481STheodore Ts'o 	else {
346750797481STheodore Ts'o 		/*
346850797481STheodore Ts'o 		 * The lock is busy, so bump the contention counter,
346950797481STheodore Ts'o 		 * and then wait on the spin lock.
347050797481STheodore Ts'o 		 */
347150797481STheodore Ts'o 		atomic_add_unless(&EXT4_SB(sb)->s_lock_busy, 1,
347250797481STheodore Ts'o 				  EXT4_MAX_CONTENTION);
347350797481STheodore Ts'o 		spin_lock(lock);
347450797481STheodore Ts'o 	}
34755d1b1b3fSAneesh Kumar K.V }
34765d1b1b3fSAneesh Kumar K.V 
34775d1b1b3fSAneesh Kumar K.V static inline void ext4_unlock_group(struct super_block *sb,
34785d1b1b3fSAneesh Kumar K.V 					ext4_group_t group)
34795d1b1b3fSAneesh Kumar K.V {
3480955ce5f5SAneesh Kumar K.V 	spin_unlock(ext4_group_lock_ptr(sb, group));
34815d1b1b3fSAneesh Kumar K.V }
34825d1b1b3fSAneesh Kumar K.V 
3483f177ee08SRoman Anufriev #ifdef CONFIG_QUOTA
3484f177ee08SRoman Anufriev static inline bool ext4_quota_capable(struct super_block *sb)
3485f177ee08SRoman Anufriev {
3486f177ee08SRoman Anufriev 	return (test_opt(sb, QUOTA) || ext4_has_feature_quota(sb));
3487f177ee08SRoman Anufriev }
3488f177ee08SRoman Anufriev 
3489f177ee08SRoman Anufriev static inline bool ext4_is_quota_journalled(struct super_block *sb)
3490f177ee08SRoman Anufriev {
3491f177ee08SRoman Anufriev 	struct ext4_sb_info *sbi = EXT4_SB(sb);
3492f177ee08SRoman Anufriev 
3493f177ee08SRoman Anufriev 	return (ext4_has_feature_quota(sb) ||
3494f177ee08SRoman Anufriev 		sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]);
3495f177ee08SRoman Anufriev }
349625c6d98fSJan Kara int ext4_enable_quotas(struct super_block *sb);
3497f177ee08SRoman Anufriev #endif
3498f177ee08SRoman Anufriev 
34993dcf5451SChristoph Hellwig /*
35001f7d1e77STheodore Ts'o  * Block validity checking
35011f7d1e77STheodore Ts'o  */
35021f7d1e77STheodore Ts'o #define ext4_check_indirect_blockref(inode, bh)				\
35031f7d1e77STheodore Ts'o 	ext4_check_blockref(__func__, __LINE__, inode,			\
35041f7d1e77STheodore Ts'o 			    (__le32 *)(bh)->b_data,			\
35051f7d1e77STheodore Ts'o 			    EXT4_ADDR_PER_BLOCK((inode)->i_sb))
35061f7d1e77STheodore Ts'o 
35071f7d1e77STheodore Ts'o #define ext4_ind_check_inode(inode)					\
35081f7d1e77STheodore Ts'o 	ext4_check_blockref(__func__, __LINE__, inode,			\
35091f7d1e77STheodore Ts'o 			    EXT4_I(inode)->i_data,			\
35101f7d1e77STheodore Ts'o 			    EXT4_NDIR_BLOCKS)
35111f7d1e77STheodore Ts'o 
35121f7d1e77STheodore Ts'o /*
35133dcf5451SChristoph Hellwig  * Inodes and files operations
35143dcf5451SChristoph Hellwig  */
35153dcf5451SChristoph Hellwig 
35163dcf5451SChristoph Hellwig /* dir.c */
35173dcf5451SChristoph Hellwig extern const struct file_operations ext4_dir_operations;
35183dcf5451SChristoph Hellwig 
35193dcf5451SChristoph Hellwig /* file.c */
35203dcf5451SChristoph Hellwig extern const struct inode_operations ext4_file_inode_operations;
35213dcf5451SChristoph Hellwig extern const struct file_operations ext4_file_operations;
3522e0d10bfaSToshiyuki Okajima extern loff_t ext4_llseek(struct file *file, loff_t offset, int origin);
35233dcf5451SChristoph Hellwig 
352495eaefbdSTheodore Ts'o /* inline.c */
352595eaefbdSTheodore Ts'o extern int ext4_get_max_inline_size(struct inode *inode);
352695eaefbdSTheodore Ts'o extern int ext4_find_inline_data_nolock(struct inode *inode);
352795eaefbdSTheodore Ts'o extern int ext4_init_inline_data(handle_t *handle, struct inode *inode,
352895eaefbdSTheodore Ts'o 				 unsigned int len);
352995eaefbdSTheodore Ts'o extern int ext4_destroy_inline_data(handle_t *handle, struct inode *inode);
353095eaefbdSTheodore Ts'o 
35313edde93eSMatthew Wilcox int ext4_readpage_inline(struct inode *inode, struct folio *folio);
353295eaefbdSTheodore Ts'o extern int ext4_try_to_write_inline_data(struct address_space *mapping,
353395eaefbdSTheodore Ts'o 					 struct inode *inode,
353495eaefbdSTheodore Ts'o 					 loff_t pos, unsigned len,
353595eaefbdSTheodore Ts'o 					 struct page **pagep);
3536d19500daSRitesh Harjani int ext4_write_inline_data_end(struct inode *inode, loff_t pos, unsigned len,
3537d19500daSRitesh Harjani 			       unsigned copied, struct folio *folio);
353895eaefbdSTheodore Ts'o extern int ext4_da_write_inline_data_begin(struct address_space *mapping,
353995eaefbdSTheodore Ts'o 					   struct inode *inode,
354095eaefbdSTheodore Ts'o 					   loff_t pos, unsigned len,
354195eaefbdSTheodore Ts'o 					   struct page **pagep,
354295eaefbdSTheodore Ts'o 					   void **fsdata);
35435b643f9cSTheodore Ts'o extern int ext4_try_add_inline_entry(handle_t *handle,
35445b643f9cSTheodore Ts'o 				     struct ext4_filename *fname,
354556a04915STheodore Ts'o 				     struct inode *dir, struct inode *inode);
354695eaefbdSTheodore Ts'o extern int ext4_try_create_inline_dir(handle_t *handle,
354795eaefbdSTheodore Ts'o 				      struct inode *parent,
354895eaefbdSTheodore Ts'o 				      struct inode *inode);
354995eaefbdSTheodore Ts'o extern int ext4_read_inline_dir(struct file *filp,
3550725bebb2SAl Viro 				struct dir_context *ctx,
355195eaefbdSTheodore Ts'o 				int *has_inline_data);
35527633b08bSTheodore Ts'o extern int ext4_inlinedir_to_tree(struct file *dir_file,
35538af0f082STao Ma 				  struct inode *dir, ext4_lblk_t block,
35548af0f082STao Ma 				  struct dx_hash_info *hinfo,
35558af0f082STao Ma 				  __u32 start_hash, __u32 start_minor_hash,
35568af0f082STao Ma 				  int *has_inline_data);
355795eaefbdSTheodore Ts'o extern struct buffer_head *ext4_find_inline_entry(struct inode *dir,
35585b643f9cSTheodore Ts'o 					struct ext4_filename *fname,
355995eaefbdSTheodore Ts'o 					struct ext4_dir_entry_2 **res_dir,
356095eaefbdSTheodore Ts'o 					int *has_inline_data);
356195eaefbdSTheodore Ts'o extern int ext4_delete_inline_entry(handle_t *handle,
356295eaefbdSTheodore Ts'o 				    struct inode *dir,
356395eaefbdSTheodore Ts'o 				    struct ext4_dir_entry_2 *de_del,
356495eaefbdSTheodore Ts'o 				    struct buffer_head *bh,
356595eaefbdSTheodore Ts'o 				    int *has_inline_data);
3566a7550b30SJaegeuk Kim extern bool empty_inline_dir(struct inode *dir, int *has_inline_data);
356795eaefbdSTheodore Ts'o extern struct buffer_head *ext4_get_first_inline_block(struct inode *inode,
356895eaefbdSTheodore Ts'o 					struct ext4_dir_entry_2 **parent_de,
356995eaefbdSTheodore Ts'o 					int *retval);
35705a57bca9SZhang Yi extern void *ext4_read_inline_link(struct inode *inode);
35717046ae35SAndreas Gruenbacher 
35727046ae35SAndreas Gruenbacher struct iomap;
35737046ae35SAndreas Gruenbacher extern int ext4_inline_data_iomap(struct inode *inode, struct iomap *iomap);
35747046ae35SAndreas Gruenbacher 
357501daf945STheodore Ts'o extern int ext4_inline_data_truncate(struct inode *inode, int *has_inline);
357695eaefbdSTheodore Ts'o 
357795eaefbdSTheodore Ts'o extern int ext4_convert_inline_data(struct inode *inode);
357895eaefbdSTheodore Ts'o 
357983447ccbSZheng Liu static inline int ext4_has_inline_data(struct inode *inode)
358083447ccbSZheng Liu {
358183447ccbSZheng Liu 	return ext4_test_inode_flag(inode, EXT4_INODE_INLINE_DATA) &&
358283447ccbSZheng Liu 	       EXT4_I(inode)->i_inline_off;
358383447ccbSZheng Liu }
358483447ccbSZheng Liu 
35853dcf5451SChristoph Hellwig /* namei.c */
35863dcf5451SChristoph Hellwig extern const struct inode_operations ext4_dir_inode_operations;
35873dcf5451SChristoph Hellwig extern const struct inode_operations ext4_special_inode_operations;
3588596397b7STheodore Ts'o extern struct dentry *ext4_get_parent(struct dentry *child);
3589a774f9c2STao Ma extern struct ext4_dir_entry_2 *ext4_init_dot_dotdot(struct inode *inode,
3590a774f9c2STao Ma 				 struct ext4_dir_entry_2 *de,
3591a774f9c2STao Ma 				 int blocksize, int csum_size,
3592a774f9c2STao Ma 				 unsigned int parent_ino, int dotdot_real_len);
3593ddce3b94STheodore Ts'o extern void ext4_initialize_dirent_tail(struct buffer_head *bh,
35943c47d541STao Ma 					unsigned int blocksize);
3595f036adb3STheodore Ts'o extern int ext4_handle_dirty_dirblock(handle_t *handle, struct inode *inode,
35963c47d541STao Ma 				      struct buffer_head *bh);
35974c0d5778SEric Biggers extern int __ext4_unlink(struct inode *dir, const struct qstr *d_name,
35984c0d5778SEric Biggers 			 struct inode *inode, struct dentry *dentry);
35998016e29fSHarshad Shirwadkar extern int __ext4_link(struct inode *dir, struct inode *inode,
36008016e29fSHarshad Shirwadkar 		       struct dentry *dentry);
3601b886ee3eSGabriel Krisman Bertazi 
36028af0f082STao Ma #define S_SHIFT 12
3603381cebfeSDan Carpenter static const unsigned char ext4_type_by_mode[(S_IFMT >> S_SHIFT) + 1] = {
36048af0f082STao Ma 	[S_IFREG >> S_SHIFT]	= EXT4_FT_REG_FILE,
36058af0f082STao Ma 	[S_IFDIR >> S_SHIFT]	= EXT4_FT_DIR,
36068af0f082STao Ma 	[S_IFCHR >> S_SHIFT]	= EXT4_FT_CHRDEV,
36078af0f082STao Ma 	[S_IFBLK >> S_SHIFT]	= EXT4_FT_BLKDEV,
36088af0f082STao Ma 	[S_IFIFO >> S_SHIFT]	= EXT4_FT_FIFO,
36098af0f082STao Ma 	[S_IFSOCK >> S_SHIFT]	= EXT4_FT_SOCK,
36108af0f082STao Ma 	[S_IFLNK >> S_SHIFT]	= EXT4_FT_SYMLINK,
36118af0f082STao Ma };
36128af0f082STao Ma 
36138af0f082STao Ma static inline void ext4_set_de_type(struct super_block *sb,
36148af0f082STao Ma 				struct ext4_dir_entry_2 *de,
36158af0f082STao Ma 				umode_t mode) {
3616e2b911c5SDarrick J. Wong 	if (ext4_has_feature_filetype(sb))
36178af0f082STao Ma 		de->file_type = ext4_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
36188af0f082STao Ma }
36198af0f082STao Ma 
3620f64e02feSTheodore Ts'o /* readpages.c */
3621a07f624bSMatthew Wilcox (Oracle) extern int ext4_mpage_readpages(struct inode *inode,
3622c0be8e6fSMatthew Wilcox 		struct readahead_control *rac, struct folio *folio);
362322cfe4b4SEric Biggers extern int __init ext4_init_post_read_processing(void);
362422cfe4b4SEric Biggers extern void ext4_exit_post_read_processing(void);
36253dcf5451SChristoph Hellwig 
36263dcf5451SChristoph Hellwig /* symlink.c */
3627a7a67e8aSAl Viro extern const struct inode_operations ext4_encrypted_symlink_inode_operations;
36283dcf5451SChristoph Hellwig extern const struct inode_operations ext4_symlink_inode_operations;
36293dcf5451SChristoph Hellwig extern const struct inode_operations ext4_fast_symlink_inode_operations;
36303dcf5451SChristoph Hellwig 
3631b5799018STheodore Ts'o /* sysfs.c */
3632d578b994SJonathan Davies extern void ext4_notify_error_sysfs(struct ext4_sb_info *sbi);
3633b5799018STheodore Ts'o extern int ext4_register_sysfs(struct super_block *sb);
3634ebd173beSTheodore Ts'o extern void ext4_unregister_sysfs(struct super_block *sb);
3635b5799018STheodore Ts'o extern int __init ext4_init_sysfs(void);
3636b5799018STheodore Ts'o extern void ext4_exit_sysfs(void);
3637b5799018STheodore Ts'o 
36386fd058f7STheodore Ts'o /* block_validity */
36396fd058f7STheodore Ts'o extern void ext4_release_system_zone(struct super_block *sb);
36406fd058f7STheodore Ts'o extern int ext4_setup_system_zone(struct super_block *sb);
36415dabfc78STheodore Ts'o extern int __init ext4_init_system_zone(void);
36425dabfc78STheodore Ts'o extern void ext4_exit_system_zone(void);
3643ce9f24ccSJan Kara extern int ext4_inode_block_valid(struct inode *inode,
36446fd058f7STheodore Ts'o 				  ext4_fsblk_t start_blk,
36456fd058f7STheodore Ts'o 				  unsigned int count);
36461f7d1e77STheodore Ts'o extern int ext4_check_blockref(const char *, unsigned int,
36471f7d1e77STheodore Ts'o 			       struct inode *, __le32 *, unsigned int);
36486bc6c2bdSRitesh Harjani extern int ext4_sb_block_valid(struct super_block *sb, struct inode *inode,
36496bc6c2bdSRitesh Harjani 				ext4_fsblk_t start_blk, unsigned int count);
36506bc6c2bdSRitesh Harjani 
36516fd058f7STheodore Ts'o 
36523dcf5451SChristoph Hellwig /* extents.c */
36534a092d73STheodore Ts'o struct ext4_ext_path;
36544a092d73STheodore Ts'o struct ext4_extent;
36554a092d73STheodore Ts'o 
3656d7b2a00cSZheng Liu /*
3657d7b2a00cSZheng Liu  * Maximum number of logical blocks in a file; ext4_extent's ee_block is
3658d7b2a00cSZheng Liu  * __le32.
3659d7b2a00cSZheng Liu  */
3660d7b2a00cSZheng Liu #define EXT_MAX_BLOCKS	0xffffffff
3661d7b2a00cSZheng Liu 
36624209ae12SHarshad Shirwadkar extern void ext4_ext_tree_init(handle_t *handle, struct inode *inode);
3663fffb2739SJan Kara extern int ext4_ext_index_trans_blocks(struct inode *inode, int extents);
3664e35fd660STheodore Ts'o extern int ext4_ext_map_blocks(handle_t *handle, struct inode *inode,
3665e35fd660STheodore Ts'o 			       struct ext4_map_blocks *map, int flags);
3666d0abb36dSTheodore Ts'o extern int ext4_ext_truncate(handle_t *, struct inode *);
366726a4c0c6STheodore Ts'o extern int ext4_ext_remove_space(struct inode *inode, ext4_lblk_t start,
366826a4c0c6STheodore Ts'o 				 ext4_lblk_t end);
36693dcf5451SChristoph Hellwig extern void ext4_ext_init(struct super_block *);
36703dcf5451SChristoph Hellwig extern void ext4_ext_release(struct super_block *);
36712fe17c10SChristoph Hellwig extern long ext4_fallocate(struct file *file, int mode, loff_t offset,
36723dcf5451SChristoph Hellwig 			  loff_t len);
36736b523df4SJan Kara extern int ext4_convert_unwritten_extents(handle_t *handle, struct inode *inode,
36746b523df4SJan Kara 					  loff_t offset, ssize_t len);
3675a00713eaSRitesh Harjani extern int ext4_convert_unwritten_io_end_vec(handle_t *handle,
3676a00713eaSRitesh Harjani 					     ext4_io_end_t *io_end);
3677e35fd660STheodore Ts'o extern int ext4_map_blocks(handle_t *handle, struct inode *inode,
3678e35fd660STheodore Ts'o 			   struct ext4_map_blocks *map, int flags);
36794a092d73STheodore Ts'o extern int ext4_ext_calc_credits_for_single_extent(struct inode *inode,
36804a092d73STheodore Ts'o 						   int num,
36814a092d73STheodore Ts'o 						   struct ext4_ext_path *path);
36824a092d73STheodore Ts'o extern int ext4_ext_insert_extent(handle_t *, struct inode *,
3683dfe50809STheodore Ts'o 				  struct ext4_ext_path **,
36844a092d73STheodore Ts'o 				  struct ext4_extent *, int);
3685ed8a1a76STheodore Ts'o extern struct ext4_ext_path *ext4_find_extent(struct inode *, ext4_lblk_t,
3686705912caSTheodore Ts'o 					      struct ext4_ext_path **,
3687107a7bd3STheodore Ts'o 					      int flags);
36887ff5fddaSYe Bin extern void ext4_free_ext_path(struct ext4_ext_path *);
36894a092d73STheodore Ts'o extern int ext4_ext_check_inode(struct inode *inode);
3690fcf6b1b7SDmitry Monakhov extern ext4_lblk_t ext4_ext_next_allocated_block(struct ext4_ext_path *path);
36913a06d778SAneesh Kumar K.V extern int ext4_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
36923a06d778SAneesh Kumar K.V 			__u64 start, __u64 len);
3693bb5835edSTheodore Ts'o extern int ext4_get_es_cache(struct inode *inode,
3694bb5835edSTheodore Ts'o 			     struct fiemap_extent_info *fieinfo,
3695bb5835edSTheodore Ts'o 			     __u64 start, __u64 len);
36967869a4a6STheodore Ts'o extern int ext4_ext_precache(struct inode *inode);
3697fcf6b1b7SDmitry Monakhov extern int ext4_swap_extents(handle_t *handle, struct inode *inode1,
3698fcf6b1b7SDmitry Monakhov 				struct inode *inode2, ext4_lblk_t lblk1,
3699fcf6b1b7SDmitry Monakhov 			     ext4_lblk_t lblk2,  ext4_lblk_t count,
3700fcf6b1b7SDmitry Monakhov 			     int mark_unwritten,int *err);
37010b02f4c0SEric Whitney extern int ext4_clu_mapped(struct inode *inode, ext4_lblk_t lclu);
3702a4130367SJan Kara extern int ext4_datasem_ensure_credits(handle_t *handle, struct inode *inode,
370383448bdfSJan Kara 				       int check_cred, int restart_cred,
370483448bdfSJan Kara 				       int revoke_cred);
37058016e29fSHarshad Shirwadkar extern void ext4_ext_replay_shrink_inode(struct inode *inode, ext4_lblk_t end);
37068016e29fSHarshad Shirwadkar extern int ext4_ext_replay_set_iblocks(struct inode *inode);
37078016e29fSHarshad Shirwadkar extern int ext4_ext_replay_update_ex(struct inode *inode, ext4_lblk_t start,
37088016e29fSHarshad Shirwadkar 		int len, int unwritten, ext4_fsblk_t pblk);
37098016e29fSHarshad Shirwadkar extern int ext4_ext_clear_bb(struct inode *inode);
3710a4130367SJan Kara 
37114a092d73STheodore Ts'o 
3712748de673SAkira Fujita /* move_extent.c */
3713393d1d1dSDr. Tilmann Bubeck extern void ext4_double_down_write_data_sem(struct inode *first,
3714393d1d1dSDr. Tilmann Bubeck 					    struct inode *second);
3715393d1d1dSDr. Tilmann Bubeck extern void ext4_double_up_write_data_sem(struct inode *orig_inode,
3716393d1d1dSDr. Tilmann Bubeck 					  struct inode *donor_inode);
3717748de673SAkira Fujita extern int ext4_move_extents(struct file *o_filp, struct file *d_filp,
3718748de673SAkira Fujita 			     __u64 start_orig, __u64 start_donor,
3719748de673SAkira Fujita 			     __u64 len, __u64 *moved_len);
3720748de673SAkira Fujita 
3721bd2d0210STheodore Ts'o /* page-io.c */
37225dabfc78STheodore Ts'o extern int __init ext4_init_pageio(void);
37235dabfc78STheodore Ts'o extern void ext4_exit_pageio(void);
3724bd2d0210STheodore Ts'o extern ext4_io_end_t *ext4_init_io_end(struct inode *inode, gfp_t flags);
372597a851edSJan Kara extern ext4_io_end_t *ext4_get_io_end(ext4_io_end_t *io_end);
372697a851edSJan Kara extern int ext4_put_io_end(ext4_io_end_t *io_end);
372797a851edSJan Kara extern void ext4_put_io_end_defer(ext4_io_end_t *io_end);
372897a851edSJan Kara extern void ext4_io_submit_init(struct ext4_io_submit *io,
372997a851edSJan Kara 				struct writeback_control *wbc);
37302e8fa54eSJan Kara extern void ext4_end_io_rsv_work(struct work_struct *work);
3731bd2d0210STheodore Ts'o extern void ext4_io_submit(struct ext4_io_submit *io);
3732e8d6062cSMatthew Wilcox int ext4_bio_write_folio(struct ext4_io_submit *io, struct folio *page,
3733e8d6062cSMatthew Wilcox 		size_t len);
3734c8cc8816SRitesh Harjani extern struct ext4_io_end_vec *ext4_alloc_io_end_vec(ext4_io_end_t *io_end);
3735c8cc8816SRitesh Harjani extern struct ext4_io_end_vec *ext4_last_io_end_vec(ext4_io_end_t *io_end);
37363a06d778SAneesh Kumar K.V 
3737c5e06d10SJohann Lombardi /* mmp.c */
3738c5e06d10SJohann Lombardi extern int ext4_multi_mount_protect(struct super_block *, ext4_fsblk_t);
3739c5e06d10SJohann Lombardi 
3740618f0031SPavel Skripkin /* mmp.c */
3741618f0031SPavel Skripkin extern void ext4_stop_mmpd(struct ext4_sb_info *sbi);
3742618f0031SPavel Skripkin 
3743c93d8f88SEric Biggers /* verity.c */
3744c93d8f88SEric Biggers extern const struct fsverity_operations ext4_verityops;
3745c93d8f88SEric Biggers 
374625c6d98fSJan Kara /* orphan.c */
374725c6d98fSJan Kara extern int ext4_orphan_add(handle_t *, struct inode *);
374825c6d98fSJan Kara extern int ext4_orphan_del(handle_t *, struct inode *);
374925c6d98fSJan Kara extern void ext4_orphan_cleanup(struct super_block *sb,
375025c6d98fSJan Kara 				struct ext4_super_block *es);
375102f310fcSJan Kara extern void ext4_release_orphan_info(struct super_block *sb);
375202f310fcSJan Kara extern int ext4_init_orphan_info(struct super_block *sb);
375302f310fcSJan Kara extern int ext4_orphan_file_empty(struct super_block *sb);
375402f310fcSJan Kara extern void ext4_orphan_file_block_trigger(
375502f310fcSJan Kara 				struct jbd2_buffer_trigger_type *triggers,
375602f310fcSJan Kara 				struct buffer_head *bh,
375702f310fcSJan Kara 				void *data, size_t size);
375825c6d98fSJan Kara 
37593613d228SJan Kara /*
376048fc7f7eSAdam Buchbinder  * Add new method to test whether block and inode bitmaps are properly
37612ccb5fb9SAneesh Kumar K.V  * initialized. With uninit_bg reading the block from disk is not enough
37622ccb5fb9SAneesh Kumar K.V  * to mark the bitmap uptodate. We need to also zero-out the bitmap
37632ccb5fb9SAneesh Kumar K.V  */
37642ccb5fb9SAneesh Kumar K.V #define BH_BITMAP_UPTODATE BH_JBDPrivateStart
37652ccb5fb9SAneesh Kumar K.V 
37662ccb5fb9SAneesh Kumar K.V static inline int bitmap_uptodate(struct buffer_head *bh)
37672ccb5fb9SAneesh Kumar K.V {
37682ccb5fb9SAneesh Kumar K.V 	return (buffer_uptodate(bh) &&
37692ccb5fb9SAneesh Kumar K.V 			test_bit(BH_BITMAP_UPTODATE, &(bh)->b_state));
37702ccb5fb9SAneesh Kumar K.V }
37712ccb5fb9SAneesh Kumar K.V static inline void set_bitmap_uptodate(struct buffer_head *bh)
37722ccb5fb9SAneesh Kumar K.V {
37732ccb5fb9SAneesh Kumar K.V 	set_bit(BH_BITMAP_UPTODATE, &(bh)->b_state);
37742ccb5fb9SAneesh Kumar K.V }
37752ccb5fb9SAneesh Kumar K.V 
3776731eb1a0SAkinobu Mita #define in_range(b, first, len)	((b) >= (first) && (b) <= (first) + (len) - 1)
3777731eb1a0SAkinobu Mita 
3778e9e3bcecSEric Sandeen /* For ioend & aio unwritten conversion wait queues */
3779e9e3bcecSEric Sandeen #define EXT4_WQ_HASH_SZ		37
3780e9e3bcecSEric Sandeen #define ext4_ioend_wq(v)   (&ext4__ioend_wq[((unsigned long)(v)) %\
3781e9e3bcecSEric Sandeen 					    EXT4_WQ_HASH_SZ])
3782e9e3bcecSEric Sandeen extern wait_queue_head_t ext4__ioend_wq[EXT4_WQ_HASH_SZ];
3783e9e3bcecSEric Sandeen 
37848f82f840SYongqiang Yang extern int ext4_resize_begin(struct super_block *sb);
3785827891a3STheodore Ts'o extern int ext4_resize_end(struct super_block *sb, bool update_backups);
37868f82f840SYongqiang Yang 
378774c66bcbSJan Kara static inline void ext4_set_io_unwritten_flag(struct inode *inode,
378874c66bcbSJan Kara 					      struct ext4_io_end *io_end)
378974c66bcbSJan Kara {
379074c66bcbSJan Kara 	if (!(io_end->flag & EXT4_IO_END_UNWRITTEN)) {
379174c66bcbSJan Kara 		io_end->flag |= EXT4_IO_END_UNWRITTEN;
379274c66bcbSJan Kara 		atomic_inc(&EXT4_I(inode)->i_unwritten);
379374c66bcbSJan Kara 	}
379474c66bcbSJan Kara }
379574c66bcbSJan Kara 
379674c66bcbSJan Kara static inline void ext4_clear_io_unwritten_flag(ext4_io_end_t *io_end)
379774c66bcbSJan Kara {
379874c66bcbSJan Kara 	struct inode *inode = io_end->inode;
379974c66bcbSJan Kara 
380074c66bcbSJan Kara 	if (io_end->flag & EXT4_IO_END_UNWRITTEN) {
380174c66bcbSJan Kara 		io_end->flag &= ~EXT4_IO_END_UNWRITTEN;
380274c66bcbSJan Kara 		/* Wake up anyone waiting on unwritten extent conversion */
380374c66bcbSJan Kara 		if (atomic_dec_and_test(&EXT4_I(inode)->i_unwritten))
380474c66bcbSJan Kara 			wake_up_all(ext4_ioend_wq(inode));
380574c66bcbSJan Kara 	}
380674c66bcbSJan Kara }
380774c66bcbSJan Kara 
38088ff6daa1SChristoph Hellwig extern const struct iomap_ops ext4_iomap_ops;
38098cd115bdSJan Kara extern const struct iomap_ops ext4_iomap_overwrite_ops;
381009edf4d3SMatthew Bobrowski extern const struct iomap_ops ext4_iomap_report_ops;
3811364443cbSJan Kara 
38127963e5acSZhangXiaoxu static inline int ext4_buffer_uptodate(struct buffer_head *bh)
38137963e5acSZhangXiaoxu {
38147963e5acSZhangXiaoxu 	/*
38157963e5acSZhangXiaoxu 	 * If the buffer has the write error flag, we have failed
38167963e5acSZhangXiaoxu 	 * to write out data in the block.  In this  case, we don't
38177963e5acSZhangXiaoxu 	 * have to read the block because we may read the old data
38187963e5acSZhangXiaoxu 	 * successfully.
38197963e5acSZhangXiaoxu 	 */
38205c680150SJoseph Qi 	if (buffer_write_io_error(bh))
38217963e5acSZhangXiaoxu 		set_buffer_uptodate(bh);
38227963e5acSZhangXiaoxu 	return buffer_uptodate(bh);
38237963e5acSZhangXiaoxu }
38247963e5acSZhangXiaoxu 
38253dcf5451SChristoph Hellwig #endif	/* __KERNEL__ */
38263dcf5451SChristoph Hellwig 
38276a797d27SDarrick J. Wong #define EFSBADCRC	EBADMSG		/* Bad CRC detected */
38286a797d27SDarrick J. Wong #define EFSCORRUPTED	EUCLEAN		/* Filesystem is corrupted */
38296a797d27SDarrick J. Wong 
38303dcf5451SChristoph Hellwig #endif	/* _EXT4_H */
3831