xref: /openbmc/linux/fs/erofs/internal.h (revision 3924179b)
147e4937aSGao Xiang /* SPDX-License-Identifier: GPL-2.0-only */
247e4937aSGao Xiang /*
347e4937aSGao Xiang  * Copyright (C) 2017-2018 HUAWEI, Inc.
4592e7cd0SAlexander A. Klimov  *             https://www.huawei.com/
5c5aa903aSGao Xiang  * Copyright (C) 2021, Alibaba Cloud
647e4937aSGao Xiang  */
747e4937aSGao Xiang #ifndef __EROFS_INTERNAL_H
847e4937aSGao Xiang #define __EROFS_INTERNAL_H
947e4937aSGao Xiang 
1047e4937aSGao Xiang #include <linux/fs.h>
1147e4937aSGao Xiang #include <linux/dcache.h>
1247e4937aSGao Xiang #include <linux/mm.h>
1347e4937aSGao Xiang #include <linux/pagemap.h>
1447e4937aSGao Xiang #include <linux/bio.h>
1547e4937aSGao Xiang #include <linux/magic.h>
1647e4937aSGao Xiang #include <linux/slab.h>
1747e4937aSGao Xiang #include <linux/vmalloc.h>
18eadcd6b5SGao Xiang #include <linux/iomap.h>
1947e4937aSGao Xiang #include "erofs_fs.h"
2047e4937aSGao Xiang 
2147e4937aSGao Xiang /* redefine pr_fmt "erofs: " */
2247e4937aSGao Xiang #undef pr_fmt
2347e4937aSGao Xiang #define pr_fmt(fmt) "erofs: " fmt
2447e4937aSGao Xiang 
254f761fa2SGao Xiang __printf(3, 4) void _erofs_err(struct super_block *sb,
264f761fa2SGao Xiang 			       const char *function, const char *fmt, ...);
274f761fa2SGao Xiang #define erofs_err(sb, fmt, ...)	\
284f761fa2SGao Xiang 	_erofs_err(sb, __func__, fmt "\n", ##__VA_ARGS__)
294f761fa2SGao Xiang __printf(3, 4) void _erofs_info(struct super_block *sb,
304f761fa2SGao Xiang 			       const char *function, const char *fmt, ...);
314f761fa2SGao Xiang #define erofs_info(sb, fmt, ...) \
324f761fa2SGao Xiang 	_erofs_info(sb, __func__, fmt "\n", ##__VA_ARGS__)
3347e4937aSGao Xiang #ifdef CONFIG_EROFS_FS_DEBUG
3447e4937aSGao Xiang #define DBG_BUGON               BUG_ON
3547e4937aSGao Xiang #else
3647e4937aSGao Xiang #define DBG_BUGON(x)            ((void)(x))
3747e4937aSGao Xiang #endif	/* !CONFIG_EROFS_FS_DEBUG */
3847e4937aSGao Xiang 
3947e4937aSGao Xiang /* EROFS_SUPER_MAGIC_V1 to represent the whole file system */
4047e4937aSGao Xiang #define EROFS_SUPER_MAGIC   EROFS_SUPER_MAGIC_V1
4147e4937aSGao Xiang 
4247e4937aSGao Xiang typedef u64 erofs_nid_t;
4347e4937aSGao Xiang typedef u64 erofs_off_t;
4447e4937aSGao Xiang /* data type for filesystem-wide blocks number */
4547e4937aSGao Xiang typedef u32 erofs_blk_t;
4647e4937aSGao Xiang 
47dfeab2e9SGao Xiang struct erofs_device_info {
48dfeab2e9SGao Xiang 	char *path;
49955b478eSJeffle Xu 	struct erofs_fscache *fscache;
50*613139a0SJan Kara 	struct bdev_handle *bdev_handle;
51dfeab2e9SGao Xiang 	struct dax_device *dax_dev;
52cd913c76SChristoph Hellwig 	u64 dax_part_off;
53dfeab2e9SGao Xiang 
54dfeab2e9SGao Xiang 	u32 blocks;
55dfeab2e9SGao Xiang 	u32 mapped_blkaddr;
56dfeab2e9SGao Xiang };
57dfeab2e9SGao Xiang 
5840452ffcSHuang Jianan enum {
5940452ffcSHuang Jianan 	EROFS_SYNC_DECOMPRESS_AUTO,
6040452ffcSHuang Jianan 	EROFS_SYNC_DECOMPRESS_FORCE_ON,
6140452ffcSHuang Jianan 	EROFS_SYNC_DECOMPRESS_FORCE_OFF
6240452ffcSHuang Jianan };
6340452ffcSHuang Jianan 
64e6242465SGao Xiang struct erofs_mount_opts {
65f57a3fe4SChao Yu #ifdef CONFIG_EROFS_FS_ZIP
66f57a3fe4SChao Yu 	/* current strategy of how to use managed cache */
67f57a3fe4SChao Yu 	unsigned char cache_strategy;
6840452ffcSHuang Jianan 	/* strategy of sync decompression (0 - auto, 1 - force on, 2 - force off) */
6940452ffcSHuang Jianan 	unsigned int sync_decompress;
70f57a3fe4SChao Yu 
71f57a3fe4SChao Yu 	/* threshold for decompression synchronously */
72f57a3fe4SChao Yu 	unsigned int max_sync_decompress_pages;
73f57a3fe4SChao Yu #endif
74f57a3fe4SChao Yu 	unsigned int mount_opt;
75f57a3fe4SChao Yu };
76f57a3fe4SChao Yu 
77dfeab2e9SGao Xiang struct erofs_dev_context {
78dfeab2e9SGao Xiang 	struct idr tree;
79dfeab2e9SGao Xiang 	struct rw_semaphore rwsem;
80dfeab2e9SGao Xiang 
81dfeab2e9SGao Xiang 	unsigned int extra_devices;
828b465fecSJia Zhu 	bool flatdev;
83dfeab2e9SGao Xiang };
84dfeab2e9SGao Xiang 
855d50538fSHuang Jianan /* all filesystem-wide lz4 configurations */
865d50538fSHuang Jianan struct erofs_sb_lz4_info {
875d50538fSHuang Jianan 	/* # of pages needed for EROFS lz4 rolling decompression */
885d50538fSHuang Jianan 	u16 max_distance_pages;
894fea63f7SGao Xiang 	/* maximum possible blocks for pclusters in the filesystem */
904fea63f7SGao Xiang 	u16 max_pclusterblks;
915d50538fSHuang Jianan };
925d50538fSHuang Jianan 
938b7adf1dSJia Zhu struct erofs_domain {
948b7adf1dSJia Zhu 	refcount_t ref;
958b7adf1dSJia Zhu 	struct list_head list;
968b7adf1dSJia Zhu 	struct fscache_volume *volume;
978b7adf1dSJia Zhu 	char *domain_id;
988b7adf1dSJia Zhu };
998b7adf1dSJia Zhu 
100b02c602fSJeffle Xu struct erofs_fscache {
101b02c602fSJeffle Xu 	struct fscache_cookie *cookie;
10261fef989SJingbo Xu 	struct inode *inode;	/* anonymous inode for the blob */
1032dfb8c3bSJingbo Xu 
1042dfb8c3bSJingbo Xu 	/* used for share domain mode */
1057d419637SJia Zhu 	struct erofs_domain *domain;
1062dfb8c3bSJingbo Xu 	struct list_head node;
1072dfb8c3bSJingbo Xu 	refcount_t ref;
1087d419637SJia Zhu 	char *name;
109b02c602fSJeffle Xu };
110b02c602fSJeffle Xu 
1119e382914SJingbo Xu struct erofs_xattr_prefix_item {
1129e382914SJingbo Xu 	struct erofs_xattr_long_prefix *prefix;
1139e382914SJingbo Xu 	u8 infix_len;
1149e382914SJingbo Xu };
1159e382914SJingbo Xu 
11647e4937aSGao Xiang struct erofs_sb_info {
117e6242465SGao Xiang 	struct erofs_mount_opts opt;	/* options */
11847e4937aSGao Xiang #ifdef CONFIG_EROFS_FS_ZIP
11947e4937aSGao Xiang 	/* list for all registered superblocks, mainly for shrinker */
12047e4937aSGao Xiang 	struct list_head list;
12147e4937aSGao Xiang 	struct mutex umount_mutex;
12247e4937aSGao Xiang 
12364094a04SGao Xiang 	/* managed XArray arranged in physical block number */
12464094a04SGao Xiang 	struct xarray managed_pslots;
12547e4937aSGao Xiang 
12647e4937aSGao Xiang 	unsigned int shrinker_run_no;
12714373711SGao Xiang 	u16 available_compr_algs;
12847e4937aSGao Xiang 
12947e4937aSGao Xiang 	/* pseudo inode to manage cached pages */
13047e4937aSGao Xiang 	struct inode *managed_cache;
1315d50538fSHuang Jianan 
1325d50538fSHuang Jianan 	struct erofs_sb_lz4_info lz4;
13347e4937aSGao Xiang #endif	/* CONFIG_EROFS_FS_ZIP */
134a97a218bSJingbo Xu 	struct inode *packed_inode;
135dfeab2e9SGao Xiang 	struct erofs_dev_context *devs;
13606252e9cSGao Xiang 	struct dax_device *dax_dev;
137cd913c76SChristoph Hellwig 	u64 dax_part_off;
138dfeab2e9SGao Xiang 	u64 total_blocks;
139dfeab2e9SGao Xiang 	u32 primarydevice_blocks;
140dfeab2e9SGao Xiang 
14147e4937aSGao Xiang 	u32 meta_blkaddr;
14247e4937aSGao Xiang #ifdef CONFIG_EROFS_FS_XATTR
14347e4937aSGao Xiang 	u32 xattr_blkaddr;
1449e382914SJingbo Xu 	u32 xattr_prefix_start;
1459e382914SJingbo Xu 	u8 xattr_prefix_count;
1469e382914SJingbo Xu 	struct erofs_xattr_prefix_item *xattr_prefixes;
147fd73a439SJingbo Xu 	unsigned int xattr_filter_reserved;
14847e4937aSGao Xiang #endif
149dfeab2e9SGao Xiang 	u16 device_id_mask;	/* valid bits of device id to be used */
15047e4937aSGao Xiang 
1513acea5fcSJingbo Xu 	unsigned char islotbits;	/* inode slot unit size in bit shift */
152d3c4bdccSJingbo Xu 	unsigned char blkszbits;	/* filesystem block size in bit shift */
15347e4937aSGao Xiang 
15414373711SGao Xiang 	u32 sb_size;			/* total superblock size */
15547e4937aSGao Xiang 	u32 build_time_nsec;
15647e4937aSGao Xiang 	u64 build_time;
15747e4937aSGao Xiang 
15847e4937aSGao Xiang 	/* what we really care is nid, rather than ino.. */
15947e4937aSGao Xiang 	erofs_nid_t root_nid;
160cb9bce79SJingbo Xu 	erofs_nid_t packed_nid;
16147e4937aSGao Xiang 	/* used for statfs, f_files - f_favail */
16247e4937aSGao Xiang 	u64 inos;
16347e4937aSGao Xiang 
16447e4937aSGao Xiang 	u8 uuid[16];                    /* 128-bit uuid for volume */
16547e4937aSGao Xiang 	u8 volume_name[16];             /* volume name */
166b858a484SPratik Shinde 	u32 feature_compat;
167426a9308SGao Xiang 	u32 feature_incompat;
168168e9a76SHuang Jianan 
169168e9a76SHuang Jianan 	/* sysfs support */
170168e9a76SHuang Jianan 	struct kobject s_kobj;		/* /sys/fs/erofs/<devname> */
171168e9a76SHuang Jianan 	struct completion s_kobj_unregister;
172c6be2bd0SJeffle Xu 
173c6be2bd0SJeffle Xu 	/* fscache support */
174c6be2bd0SJeffle Xu 	struct fscache_volume *volume;
17537c90c5fSJeffle Xu 	struct erofs_fscache *s_fscache;
1768b7adf1dSJia Zhu 	struct erofs_domain *domain;
17739bfcb81SJingbo Xu 	char *fsid;
17839bfcb81SJingbo Xu 	char *domain_id;
17947e4937aSGao Xiang };
18047e4937aSGao Xiang 
18147e4937aSGao Xiang #define EROFS_SB(sb) ((struct erofs_sb_info *)(sb)->s_fs_info)
18247e4937aSGao Xiang #define EROFS_I_SB(inode) ((struct erofs_sb_info *)(inode)->i_sb->s_fs_info)
18347e4937aSGao Xiang 
18447e4937aSGao Xiang /* Mount flags set via mount options or defaults */
18547e4937aSGao Xiang #define EROFS_MOUNT_XATTR_USER		0x00000010
18647e4937aSGao Xiang #define EROFS_MOUNT_POSIX_ACL		0x00000020
18706252e9cSGao Xiang #define EROFS_MOUNT_DAX_ALWAYS		0x00000040
18806252e9cSGao Xiang #define EROFS_MOUNT_DAX_NEVER		0x00000080
18947e4937aSGao Xiang 
190e6242465SGao Xiang #define clear_opt(opt, option)	((opt)->mount_opt &= ~EROFS_MOUNT_##option)
191e6242465SGao Xiang #define set_opt(opt, option)	((opt)->mount_opt |= EROFS_MOUNT_##option)
192e6242465SGao Xiang #define test_opt(opt, option)	((opt)->mount_opt & EROFS_MOUNT_##option)
19347e4937aSGao Xiang 
erofs_is_fscache_mode(struct super_block * sb)19493b856bbSJeffle Xu static inline bool erofs_is_fscache_mode(struct super_block *sb)
19593b856bbSJeffle Xu {
19693b856bbSJeffle Xu 	return IS_ENABLED(CONFIG_EROFS_FS_ONDEMAND) && !sb->s_bdev;
19793b856bbSJeffle Xu }
19893b856bbSJeffle Xu 
19947e4937aSGao Xiang enum {
20047e4937aSGao Xiang 	EROFS_ZIP_CACHE_DISABLED,
20147e4937aSGao Xiang 	EROFS_ZIP_CACHE_READAHEAD,
20247e4937aSGao Xiang 	EROFS_ZIP_CACHE_READAROUND
20347e4937aSGao Xiang };
20447e4937aSGao Xiang 
20547e4937aSGao Xiang /* basic unit of the workstation of a super_block */
20647e4937aSGao Xiang struct erofs_workgroup {
20747e4937aSGao Xiang 	pgoff_t index;
2087674a42fSGao Xiang 	struct lockref lockref;
20947e4937aSGao Xiang };
21047e4937aSGao Xiang 
211fdf80a47SGao Xiang enum erofs_kmap_type {
212fdf80a47SGao Xiang 	EROFS_NO_KMAP,		/* don't map the buffer */
213927e5010SGao Xiang 	EROFS_KMAP,		/* use kmap_local_page() to map the buffer */
214fdf80a47SGao Xiang };
215fdf80a47SGao Xiang 
216fdf80a47SGao Xiang struct erofs_buf {
217eb2c5e41SGao Xiang 	struct inode *inode;
218fdf80a47SGao Xiang 	struct page *page;
219fdf80a47SGao Xiang 	void *base;
220fdf80a47SGao Xiang 	enum erofs_kmap_type kmap_type;
221fdf80a47SGao Xiang };
222fdf80a47SGao Xiang #define __EROFS_BUF_INITIALIZER	((struct erofs_buf){ .page = NULL })
223fdf80a47SGao Xiang 
22447e4937aSGao Xiang #define ROOT_NID(sb)		((sb)->root_nid)
22547e4937aSGao Xiang 
2263acea5fcSJingbo Xu #define erofs_blknr(sb, addr)	((addr) >> (sb)->s_blocksize_bits)
2273acea5fcSJingbo Xu #define erofs_blkoff(sb, addr)	((addr) & ((sb)->s_blocksize - 1))
2283acea5fcSJingbo Xu #define erofs_pos(sb, blk)	((erofs_off_t)(blk) << (sb)->s_blocksize_bits)
2293acea5fcSJingbo Xu #define erofs_iblks(i)	(round_up((i)->i_size, i_blocksize(i)) >> (i)->i_blkbits)
23047e4937aSGao Xiang 
231de06a6a3SGao Xiang #define EROFS_FEATURE_FUNCS(name, compat, feature) \
232de06a6a3SGao Xiang static inline bool erofs_sb_has_##name(struct erofs_sb_info *sbi) \
233de06a6a3SGao Xiang { \
234de06a6a3SGao Xiang 	return sbi->feature_##compat & EROFS_FEATURE_##feature; \
235de06a6a3SGao Xiang }
236de06a6a3SGao Xiang 
2377e508f2cSHuang Jianan EROFS_FEATURE_FUNCS(zero_padding, incompat, INCOMPAT_ZERO_PADDING)
23814373711SGao Xiang EROFS_FEATURE_FUNCS(compr_cfgs, incompat, INCOMPAT_COMPR_CFGS)
2395404c330SGao Xiang EROFS_FEATURE_FUNCS(big_pcluster, incompat, INCOMPAT_BIG_PCLUSTER)
240168e9a76SHuang Jianan EROFS_FEATURE_FUNCS(chunked_file, incompat, INCOMPAT_CHUNKED_FILE)
241dfeab2e9SGao Xiang EROFS_FEATURE_FUNCS(device_table, incompat, INCOMPAT_DEVICE_TABLE)
242168e9a76SHuang Jianan EROFS_FEATURE_FUNCS(compr_head2, incompat, INCOMPAT_COMPR_HEAD2)
243ab92184fSYue Hu EROFS_FEATURE_FUNCS(ztailpacking, incompat, INCOMPAT_ZTAILPACKING)
244b15b2e30SYue Hu EROFS_FEATURE_FUNCS(fragments, incompat, INCOMPAT_FRAGMENTS)
2455c2a6425SGao Xiang EROFS_FEATURE_FUNCS(dedupe, incompat, INCOMPAT_DEDUPE)
2466a318ccdSJingbo Xu EROFS_FEATURE_FUNCS(xattr_prefixes, incompat, INCOMPAT_XATTR_PREFIXES)
247de06a6a3SGao Xiang EROFS_FEATURE_FUNCS(sb_chksum, compat, COMPAT_SB_CHKSUM)
248fd73a439SJingbo Xu EROFS_FEATURE_FUNCS(xattr_filter, compat, COMPAT_XATTR_FILTER)
249de06a6a3SGao Xiang 
25047e4937aSGao Xiang /* atomic flag definitions */
251a5876e24SGao Xiang #define EROFS_I_EA_INITED_BIT	0
252a5876e24SGao Xiang #define EROFS_I_Z_INITED_BIT	1
25347e4937aSGao Xiang 
25447e4937aSGao Xiang /* bitlock definitions (arranged in reverse order) */
255a5876e24SGao Xiang #define EROFS_I_BL_XATTR_BIT	(BITS_PER_LONG - 1)
256a5876e24SGao Xiang #define EROFS_I_BL_Z_BIT	(BITS_PER_LONG - 2)
25747e4937aSGao Xiang 
258a5876e24SGao Xiang struct erofs_inode {
25947e4937aSGao Xiang 	erofs_nid_t nid;
26047e4937aSGao Xiang 
26147e4937aSGao Xiang 	/* atomic flags (including bitlocks) */
26247e4937aSGao Xiang 	unsigned long flags;
26347e4937aSGao Xiang 
2648a765682SGao Xiang 	unsigned char datalayout;
26547e4937aSGao Xiang 	unsigned char inode_isize;
2661b3567a1SJingbo Xu 	unsigned int xattr_isize;
26747e4937aSGao Xiang 
268fd73a439SJingbo Xu 	unsigned int xattr_name_filter;
26947e4937aSGao Xiang 	unsigned int xattr_shared_count;
27047e4937aSGao Xiang 	unsigned int *xattr_shared_xattrs;
27147e4937aSGao Xiang 
27247e4937aSGao Xiang 	union {
27347e4937aSGao Xiang 		erofs_blk_t raw_blkaddr;
274c5aa903aSGao Xiang 		struct {
275c5aa903aSGao Xiang 			unsigned short	chunkformat;
276c5aa903aSGao Xiang 			unsigned char	chunkbits;
277c5aa903aSGao Xiang 		};
27847e4937aSGao Xiang #ifdef CONFIG_EROFS_FS_ZIP
27947e4937aSGao Xiang 		struct {
28047e4937aSGao Xiang 			unsigned short z_advise;
28147e4937aSGao Xiang 			unsigned char  z_algorithmtype[2];
28247e4937aSGao Xiang 			unsigned char  z_logical_clusterbits;
283ab92184fSYue Hu 			unsigned long  z_tailextent_headlcn;
284b15b2e30SYue Hu 			union {
285b15b2e30SYue Hu 				struct {
28622ba5e99SGao Xiang 					erofs_off_t    z_idataoff;
287ab92184fSYue Hu 					unsigned short z_idata_size;
28847e4937aSGao Xiang 				};
289b15b2e30SYue Hu 				erofs_off_t z_fragmentoff;
290b15b2e30SYue Hu 			};
291b15b2e30SYue Hu 		};
29247e4937aSGao Xiang #endif	/* CONFIG_EROFS_FS_ZIP */
29347e4937aSGao Xiang 	};
29447e4937aSGao Xiang 	/* the corresponding vfs inode */
29547e4937aSGao Xiang 	struct inode vfs_inode;
29647e4937aSGao Xiang };
29747e4937aSGao Xiang 
298b780d3fcSGao Xiang #define EROFS_I(ptr)	container_of(ptr, struct erofs_inode, vfs_inode)
29947e4937aSGao Xiang 
erofs_iloc(struct inode * inode)300b780d3fcSGao Xiang static inline erofs_off_t erofs_iloc(struct inode *inode)
30147e4937aSGao Xiang {
302b780d3fcSGao Xiang 	struct erofs_sb_info *sbi = EROFS_I_SB(inode);
303b780d3fcSGao Xiang 
3043acea5fcSJingbo Xu 	return erofs_pos(inode->i_sb, sbi->meta_blkaddr) +
305b780d3fcSGao Xiang 		(EROFS_I(inode)->nid << sbi->islotbits);
30647e4937aSGao Xiang }
30747e4937aSGao Xiang 
erofs_inode_version(unsigned int ifmt)308745ed7d7SGao Xiang static inline unsigned int erofs_inode_version(unsigned int ifmt)
30947e4937aSGao Xiang {
310745ed7d7SGao Xiang 	return (ifmt >> EROFS_I_VERSION_BIT) & EROFS_I_VERSION_MASK;
31147e4937aSGao Xiang }
31247e4937aSGao Xiang 
erofs_inode_datalayout(unsigned int ifmt)313745ed7d7SGao Xiang static inline unsigned int erofs_inode_datalayout(unsigned int ifmt)
31447e4937aSGao Xiang {
315745ed7d7SGao Xiang 	return (ifmt >> EROFS_I_DATALAYOUT_BIT) & EROFS_I_DATALAYOUT_MASK;
31647e4937aSGao Xiang }
31747e4937aSGao Xiang 
31838629291SGao Xiang /*
31938629291SGao Xiang  * Different from grab_cache_page_nowait(), reclaiming is never triggered
32038629291SGao Xiang  * when allocating new pages.
32138629291SGao Xiang  */
32238629291SGao Xiang static inline
erofs_grab_cache_page_nowait(struct address_space * mapping,pgoff_t index)32338629291SGao Xiang struct page *erofs_grab_cache_page_nowait(struct address_space *mapping,
32438629291SGao Xiang 					  pgoff_t index)
32538629291SGao Xiang {
32638629291SGao Xiang 	return pagecache_get_page(mapping, index,
32738629291SGao Xiang 			FGP_LOCK|FGP_CREAT|FGP_NOFS|FGP_NOWAIT,
32838629291SGao Xiang 			readahead_gfp_mask(mapping) & ~__GFP_RECLAIM);
32938629291SGao Xiang }
33038629291SGao Xiang 
33147e4937aSGao Xiang /* Has a disk mapping */
332768bb10aSGao Xiang #define EROFS_MAP_MAPPED	0x0001
33347e4937aSGao Xiang /* Located in metadata (could be copied from bd_inode) */
334768bb10aSGao Xiang #define EROFS_MAP_META		0x0002
3358f899262SGao Xiang /* The extent is encoded */
336768bb10aSGao Xiang #define EROFS_MAP_ENCODED	0x0004
33747e4937aSGao Xiang /* The length of extent is full */
338768bb10aSGao Xiang #define EROFS_MAP_FULL_MAPPED	0x0008
339b15b2e30SYue Hu /* Located in the special packed inode */
340768bb10aSGao Xiang #define EROFS_MAP_FRAGMENT	0x0010
3415c2a6425SGao Xiang /* The extent refers to partial decompressed data */
342768bb10aSGao Xiang #define EROFS_MAP_PARTIAL_REF	0x0020
34347e4937aSGao Xiang 
34447e4937aSGao Xiang struct erofs_map_blocks {
34509c54379SGao Xiang 	struct erofs_buf buf;
34609c54379SGao Xiang 
34747e4937aSGao Xiang 	erofs_off_t m_pa, m_la;
34847e4937aSGao Xiang 	u64 m_plen, m_llen;
34947e4937aSGao Xiang 
350dfeab2e9SGao Xiang 	unsigned short m_deviceid;
3518f899262SGao Xiang 	char m_algorithmformat;
35247e4937aSGao Xiang 	unsigned int m_flags;
35347e4937aSGao Xiang };
35447e4937aSGao Xiang 
355d95ae5e2SGao Xiang /*
356d95ae5e2SGao Xiang  * Used to get the exact decompressed length, e.g. fiemap (consider lookback
357d95ae5e2SGao Xiang  * approach instead if possible since it's more metadata lightweight.)
358d95ae5e2SGao Xiang  */
3598b58f9f0SJingbo Xu #define EROFS_GET_BLOCKS_FIEMAP		0x0001
360622ceaddSGao Xiang /* Used to map the whole extent if non-negligible data is requested for LZMA */
3618b58f9f0SJingbo Xu #define EROFS_GET_BLOCKS_READMORE	0x0002
362b15b2e30SYue Hu /* Used to map tail extent for tailpacking inline or fragment pcluster */
3638b58f9f0SJingbo Xu #define EROFS_GET_BLOCKS_FINDTAIL	0x0004
36447e4937aSGao Xiang 
3658f899262SGao Xiang enum {
3668f899262SGao Xiang 	Z_EROFS_COMPRESSION_SHIFTED = Z_EROFS_COMPRESSION_MAX,
367fdffc091SYue Hu 	Z_EROFS_COMPRESSION_INTERLACED,
3688f899262SGao Xiang 	Z_EROFS_COMPRESSION_RUNTIME_MAX
3698f899262SGao Xiang };
3708f899262SGao Xiang 
371dfeab2e9SGao Xiang struct erofs_map_dev {
372955b478eSJeffle Xu 	struct erofs_fscache *m_fscache;
373dfeab2e9SGao Xiang 	struct block_device *m_bdev;
374dfeab2e9SGao Xiang 	struct dax_device *m_daxdev;
375de205114SChristoph Hellwig 	u64 m_dax_part_off;
376dfeab2e9SGao Xiang 
377dfeab2e9SGao Xiang 	erofs_off_t m_pa;
378dfeab2e9SGao Xiang 	unsigned int m_deviceid;
379dfeab2e9SGao Xiang };
380dfeab2e9SGao Xiang 
381557afdd9SGao Xiang extern const struct super_operations erofs_sops;
382557afdd9SGao Xiang 
383557afdd9SGao Xiang extern const struct address_space_operations erofs_raw_access_aops;
384557afdd9SGao Xiang extern const struct address_space_operations z_erofs_aops;
385557afdd9SGao Xiang extern const struct address_space_operations erofs_fscache_access_aops;
386557afdd9SGao Xiang 
387557afdd9SGao Xiang extern const struct inode_operations erofs_generic_iops;
388557afdd9SGao Xiang extern const struct inode_operations erofs_symlink_iops;
389557afdd9SGao Xiang extern const struct inode_operations erofs_fast_symlink_iops;
390557afdd9SGao Xiang extern const struct inode_operations erofs_dir_iops;
391557afdd9SGao Xiang 
392a08e67a0SHuang Jianan extern const struct file_operations erofs_file_fops;
393557afdd9SGao Xiang extern const struct file_operations erofs_dir_fops;
394557afdd9SGao Xiang 
395557afdd9SGao Xiang extern const struct iomap_ops z_erofs_iomap_report_ops;
396557afdd9SGao Xiang 
397557afdd9SGao Xiang /* flags for erofs_fscache_register_cookie() */
39861fef989SJingbo Xu #define EROFS_REG_COOKIE_SHARE		0x0001
39961fef989SJingbo Xu #define EROFS_REG_COOKIE_NEED_NOEXIST	0x0002
400557afdd9SGao Xiang 
4019e382914SJingbo Xu void *erofs_read_metadata(struct super_block *sb, struct erofs_buf *buf,
4029e382914SJingbo Xu 			  erofs_off_t *offset, int *lengthp);
40309c54379SGao Xiang void erofs_unmap_metabuf(struct erofs_buf *buf);
404c521e3adSGao Xiang void erofs_put_metabuf(struct erofs_buf *buf);
405eb2c5e41SGao Xiang void *erofs_bread(struct erofs_buf *buf, erofs_blk_t blkaddr,
406eb2c5e41SGao Xiang 		  enum erofs_kmap_type type);
407eb2c5e41SGao Xiang void erofs_init_metabuf(struct erofs_buf *buf, struct super_block *sb);
408c521e3adSGao Xiang void *erofs_read_metabuf(struct erofs_buf *buf, struct super_block *sb,
409c521e3adSGao Xiang 			 erofs_blk_t blkaddr, enum erofs_kmap_type type);
410dfeab2e9SGao Xiang int erofs_map_dev(struct super_block *sb, struct erofs_map_dev *dev);
411eadcd6b5SGao Xiang int erofs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
412eadcd6b5SGao Xiang 		 u64 start, u64 len);
4138b58f9f0SJingbo Xu int erofs_map_blocks(struct inode *inode, struct erofs_map_blocks *map);
414312fe643SGao Xiang struct inode *erofs_iget(struct super_block *sb, erofs_nid_t nid);
415b74d24f7SChristian Brauner int erofs_getattr(struct mnt_idmap *idmap, const struct path *path,
416549c7297SChristian Brauner 		  struct kstat *stat, u32 request_mask,
417549c7297SChristian Brauner 		  unsigned int query_flags);
4183e917cc3SHongnan Li int erofs_namei(struct inode *dir, const struct qstr *name,
41947e4937aSGao Xiang 		erofs_nid_t *nid, unsigned int *d_type);
42047e4937aSGao Xiang 
erofs_vm_map_ram(struct page ** pages,unsigned int count)421598162d0SGao Xiang static inline void *erofs_vm_map_ram(struct page **pages, unsigned int count)
422598162d0SGao Xiang {
423598162d0SGao Xiang 	int retried = 0;
424598162d0SGao Xiang 
425598162d0SGao Xiang 	while (1) {
426598162d0SGao Xiang 		void *p = vm_map_ram(pages, count, -1);
427598162d0SGao Xiang 
428598162d0SGao Xiang 		/* retry two more times (totally 3 times) */
429598162d0SGao Xiang 		if (p || ++retried >= 3)
430598162d0SGao Xiang 			return p;
431598162d0SGao Xiang 		vm_unmap_aliases();
432598162d0SGao Xiang 	}
433598162d0SGao Xiang 	return NULL;
434598162d0SGao Xiang }
435598162d0SGao Xiang 
436168e9a76SHuang Jianan int erofs_register_sysfs(struct super_block *sb);
437168e9a76SHuang Jianan void erofs_unregister_sysfs(struct super_block *sb);
438168e9a76SHuang Jianan int __init erofs_init_sysfs(void);
439168e9a76SHuang Jianan void erofs_exit_sysfs(void);
440168e9a76SHuang Jianan 
441eaa9172aSGao Xiang struct page *erofs_allocpage(struct page **pagepool, gfp_t gfp);
erofs_pagepool_add(struct page ** pagepool,struct page * page)442557afdd9SGao Xiang static inline void erofs_pagepool_add(struct page **pagepool, struct page *page)
443eaa9172aSGao Xiang {
444eaa9172aSGao Xiang 	set_page_private(page, (unsigned long)*pagepool);
445eaa9172aSGao Xiang 	*pagepool = page;
446eaa9172aSGao Xiang }
447eaa9172aSGao Xiang void erofs_release_pages(struct page **pagepool);
44847e4937aSGao Xiang 
44947e4937aSGao Xiang #ifdef CONFIG_EROFS_FS_ZIP
4507674a42fSGao Xiang void erofs_workgroup_put(struct erofs_workgroup *grp);
45147e4937aSGao Xiang struct erofs_workgroup *erofs_find_workgroup(struct super_block *sb,
452997626d8SVladimir Zapolskiy 					     pgoff_t index);
45364094a04SGao Xiang struct erofs_workgroup *erofs_insert_workgroup(struct super_block *sb,
454e5e9a432SVladimir Zapolskiy 					       struct erofs_workgroup *grp);
45547e4937aSGao Xiang void erofs_workgroup_free_rcu(struct erofs_workgroup *grp);
45647e4937aSGao Xiang void erofs_shrinker_register(struct super_block *sb);
45747e4937aSGao Xiang void erofs_shrinker_unregister(struct super_block *sb);
45847e4937aSGao Xiang int __init erofs_init_shrinker(void);
45947e4937aSGao Xiang void erofs_exit_shrinker(void);
46047e4937aSGao Xiang int __init z_erofs_init_zip_subsystem(void);
46147e4937aSGao Xiang void z_erofs_exit_zip_subsystem(void);
46247e4937aSGao Xiang int erofs_try_to_free_all_cached_pages(struct erofs_sb_info *sbi,
46347e4937aSGao Xiang 				       struct erofs_workgroup *egrp);
464557afdd9SGao Xiang int z_erofs_map_blocks_iter(struct inode *inode, struct erofs_map_blocks *map,
465557afdd9SGao Xiang 			    int flags);
466285d0f85SYue Hu void *erofs_get_pcpubuf(unsigned int requiredpages);
467285d0f85SYue Hu void erofs_put_pcpubuf(void *ptr);
468285d0f85SYue Hu int erofs_pcpubuf_growsize(unsigned int nrpages);
469285d0f85SYue Hu void __init erofs_pcpubuf_init(void);
470285d0f85SYue Hu void erofs_pcpubuf_exit(void);
4717b4e372cSGao Xiang int erofs_init_managed_cache(struct super_block *sb);
472586814edSGao Xiang int z_erofs_parse_cfgs(struct super_block *sb, struct erofs_super_block *dsb);
47347e4937aSGao Xiang #else
erofs_shrinker_register(struct super_block * sb)47447e4937aSGao Xiang static inline void erofs_shrinker_register(struct super_block *sb) {}
erofs_shrinker_unregister(struct super_block * sb)47547e4937aSGao Xiang static inline void erofs_shrinker_unregister(struct super_block *sb) {}
erofs_init_shrinker(void)47647e4937aSGao Xiang static inline int erofs_init_shrinker(void) { return 0; }
erofs_exit_shrinker(void)47747e4937aSGao Xiang static inline void erofs_exit_shrinker(void) {}
z_erofs_init_zip_subsystem(void)47847e4937aSGao Xiang static inline int z_erofs_init_zip_subsystem(void) { return 0; }
z_erofs_exit_zip_subsystem(void)47947e4937aSGao Xiang static inline void z_erofs_exit_zip_subsystem(void) {}
erofs_pcpubuf_init(void)480285d0f85SYue Hu static inline void erofs_pcpubuf_init(void) {}
erofs_pcpubuf_exit(void)481285d0f85SYue Hu static inline void erofs_pcpubuf_exit(void) {}
erofs_init_managed_cache(struct super_block * sb)4827b4e372cSGao Xiang static inline int erofs_init_managed_cache(struct super_block *sb) { return 0; }
48347e4937aSGao Xiang #endif	/* !CONFIG_EROFS_FS_ZIP */
48447e4937aSGao Xiang 
485622ceaddSGao Xiang #ifdef CONFIG_EROFS_FS_ZIP_LZMA
486a279adedSYangtao Li int __init z_erofs_lzma_init(void);
487622ceaddSGao Xiang void z_erofs_lzma_exit(void);
488622ceaddSGao Xiang #else
z_erofs_lzma_init(void)489622ceaddSGao Xiang static inline int z_erofs_lzma_init(void) { return 0; }
z_erofs_lzma_exit(void)490622ceaddSGao Xiang static inline int z_erofs_lzma_exit(void) { return 0; }
491557afdd9SGao Xiang #endif	/* !CONFIG_EROFS_FS_ZIP_LZMA */
492622ceaddSGao Xiang 
493ffa09b3bSGao Xiang #ifdef CONFIG_EROFS_FS_ZIP_DEFLATE
494ffa09b3bSGao Xiang int __init z_erofs_deflate_init(void);
495ffa09b3bSGao Xiang void z_erofs_deflate_exit(void);
496ffa09b3bSGao Xiang #else
z_erofs_deflate_init(void)497ffa09b3bSGao Xiang static inline int z_erofs_deflate_init(void) { return 0; }
z_erofs_deflate_exit(void)498ffa09b3bSGao Xiang static inline int z_erofs_deflate_exit(void) { return 0; }
499ffa09b3bSGao Xiang #endif	/* !CONFIG_EROFS_FS_ZIP_DEFLATE */
500ffa09b3bSGao Xiang 
501c6be2bd0SJeffle Xu #ifdef CONFIG_EROFS_FS_ONDEMAND
502c6be2bd0SJeffle Xu int erofs_fscache_register_fs(struct super_block *sb);
503c6be2bd0SJeffle Xu void erofs_fscache_unregister_fs(struct super_block *sb);
504b02c602fSJeffle Xu 
505e1de2da0SJia Zhu struct erofs_fscache *erofs_fscache_register_cookie(struct super_block *sb,
506557afdd9SGao Xiang 					char *name, unsigned int flags);
507e1de2da0SJia Zhu void erofs_fscache_unregister_cookie(struct erofs_fscache *fscache);
508c6be2bd0SJeffle Xu #else
erofs_fscache_register_fs(struct super_block * sb)509c6be2bd0SJeffle Xu static inline int erofs_fscache_register_fs(struct super_block *sb)
510c6be2bd0SJeffle Xu {
511e1de2da0SJia Zhu 	return -EOPNOTSUPP;
512c6be2bd0SJeffle Xu }
erofs_fscache_unregister_fs(struct super_block * sb)513c6be2bd0SJeffle Xu static inline void erofs_fscache_unregister_fs(struct super_block *sb) {}
514b02c602fSJeffle Xu 
515e1de2da0SJia Zhu static inline
erofs_fscache_register_cookie(struct super_block * sb,char * name,unsigned int flags)516e1de2da0SJia Zhu struct erofs_fscache *erofs_fscache_register_cookie(struct super_block *sb,
517557afdd9SGao Xiang 					char *name, unsigned int flags)
518b02c602fSJeffle Xu {
519e1de2da0SJia Zhu 	return ERR_PTR(-EOPNOTSUPP);
520b02c602fSJeffle Xu }
521b02c602fSJeffle Xu 
erofs_fscache_unregister_cookie(struct erofs_fscache * fscache)522e1de2da0SJia Zhu static inline void erofs_fscache_unregister_cookie(struct erofs_fscache *fscache)
523b02c602fSJeffle Xu {
524b02c602fSJeffle Xu }
525c6be2bd0SJeffle Xu #endif
526c6be2bd0SJeffle Xu 
52747e4937aSGao Xiang #define EFSCORRUPTED    EUCLEAN         /* Filesystem is corrupted */
52847e4937aSGao Xiang 
52947e4937aSGao Xiang #endif	/* __EROFS_INTERNAL_H */
530