blob: 273754e7b3402f941630c83511ff443cf61e5b18 [file] [log] [blame]
Gao Xiang29b24f62019-07-31 23:57:31 +08001/* SPDX-License-Identifier: GPL-2.0-only */
2/*
Gao Xiangbfb86742018-07-26 20:21:45 +08003 * Copyright (C) 2017-2018 HUAWEI, Inc.
Alexander A. Klimov592e7cd2020-07-13 15:09:44 +02004 * https://www.huawei.com/
Gao Xiangc5aa9032021-08-20 18:00:19 +08005 * Copyright (C) 2021, Alibaba Cloud
Gao Xiangbfb86742018-07-26 20:21:45 +08006 */
Gao Xiang14f362b2019-07-31 23:57:36 +08007#ifndef __EROFS_INTERNAL_H
8#define __EROFS_INTERNAL_H
Gao Xiangbfb86742018-07-26 20:21:45 +08009
10#include <linux/fs.h>
11#include <linux/dcache.h>
12#include <linux/mm.h>
13#include <linux/pagemap.h>
14#include <linux/bio.h>
15#include <linux/buffer_head.h>
Gao Xiang47e49372019-08-23 05:36:59 +080016#include <linux/magic.h>
Gao Xiangbfb86742018-07-26 20:21:45 +080017#include <linux/slab.h>
18#include <linux/vmalloc.h>
Gao Xiangeadcd6b2021-08-13 13:29:31 +080019#include <linux/iomap.h>
Gao Xiangbfb86742018-07-26 20:21:45 +080020#include "erofs_fs.h"
21
22/* redefine pr_fmt "erofs: " */
23#undef pr_fmt
24#define pr_fmt(fmt) "erofs: " fmt
25
Gao Xiang4f761fa2019-09-04 10:09:09 +080026__printf(3, 4) void _erofs_err(struct super_block *sb,
27 const char *function, const char *fmt, ...);
28#define erofs_err(sb, fmt, ...) \
29 _erofs_err(sb, __func__, fmt "\n", ##__VA_ARGS__)
30__printf(3, 4) void _erofs_info(struct super_block *sb,
31 const char *function, const char *fmt, ...);
32#define erofs_info(sb, fmt, ...) \
33 _erofs_info(sb, __func__, fmt "\n", ##__VA_ARGS__)
Gao Xiangbfb86742018-07-26 20:21:45 +080034#ifdef CONFIG_EROFS_FS_DEBUG
Gao Xiang4f761fa2019-09-04 10:09:09 +080035#define erofs_dbg(x, ...) pr_debug(x "\n", ##__VA_ARGS__)
Gao Xiangbfb86742018-07-26 20:21:45 +080036#define DBG_BUGON BUG_ON
37#else
Gao Xiang4f761fa2019-09-04 10:09:09 +080038#define erofs_dbg(x, ...) ((void)0)
Gao Xiangeef16872018-11-23 01:15:59 +080039#define DBG_BUGON(x) ((void)(x))
Gao Xiang14f362b2019-07-31 23:57:36 +080040#endif /* !CONFIG_EROFS_FS_DEBUG */
Gao Xiangbfb86742018-07-26 20:21:45 +080041
42/* EROFS_SUPER_MAGIC_V1 to represent the whole file system */
43#define EROFS_SUPER_MAGIC EROFS_SUPER_MAGIC_V1
44
45typedef u64 erofs_nid_t;
Gao Xiang14f362b2019-07-31 23:57:36 +080046typedef u64 erofs_off_t;
47/* data type for filesystem-wide blocks number */
48typedef u32 erofs_blk_t;
Gao Xiangbfb86742018-07-26 20:21:45 +080049
Gao Xiangdfeab2e2021-10-14 16:10:10 +080050struct erofs_device_info {
51 char *path;
52 struct block_device *bdev;
53 struct dax_device *dax_dev;
54
55 u32 blocks;
56 u32 mapped_blkaddr;
57};
58
Gao Xiange6242462021-10-07 15:02:23 +080059struct erofs_mount_opts {
Chao Yuf57a3fe2020-05-29 18:48:36 +080060#ifdef CONFIG_EROFS_FS_ZIP
61 /* current strategy of how to use managed cache */
62 unsigned char cache_strategy;
Huang Jianan30048cd2021-03-17 11:54:48 +080063 /* strategy of sync decompression (false - auto, true - force on) */
64 bool readahead_sync_decompress;
Chao Yuf57a3fe2020-05-29 18:48:36 +080065
66 /* threshold for decompression synchronously */
67 unsigned int max_sync_decompress_pages;
68#endif
69 unsigned int mount_opt;
70};
71
Gao Xiangdfeab2e2021-10-14 16:10:10 +080072struct erofs_dev_context {
73 struct idr tree;
74 struct rw_semaphore rwsem;
75
76 unsigned int extra_devices;
77};
78
Gao Xiange6242462021-10-07 15:02:23 +080079struct erofs_fs_context {
80 struct erofs_mount_opts opt;
Gao Xiangdfeab2e2021-10-14 16:10:10 +080081 struct erofs_dev_context *devs;
Gao Xiange6242462021-10-07 15:02:23 +080082};
83
Huang Jianan5d505382021-03-29 09:23:06 +080084/* all filesystem-wide lz4 configurations */
85struct erofs_sb_lz4_info {
86 /* # of pages needed for EROFS lz4 rolling decompression */
87 u16 max_distance_pages;
Gao Xiang4fea63f2021-04-07 12:39:23 +080088 /* maximum possible blocks for pclusters in the filesystem */
89 u16 max_pclusterblks;
Huang Jianan5d505382021-03-29 09:23:06 +080090};
91
Gao Xiangbfb86742018-07-26 20:21:45 +080092struct erofs_sb_info {
Gao Xiange6242462021-10-07 15:02:23 +080093 struct erofs_mount_opts opt; /* options */
Gao Xiang22fe04a2019-07-31 23:57:39 +080094#ifdef CONFIG_EROFS_FS_ZIP
Gao Xiang2497ee42018-07-26 20:22:03 +080095 /* list for all registered superblocks, mainly for shrinker */
96 struct list_head list;
Gao Xianga1581312018-07-26 20:22:04 +080097 struct mutex umount_mutex;
Gao Xiang2497ee42018-07-26 20:22:03 +080098
Gao Xiang64094a02020-02-20 10:46:42 +080099 /* managed XArray arranged in physical block number */
100 struct xarray managed_pslots;
Gao Xiang22fe04a2019-07-31 23:57:39 +0800101
Gao Xiang22fe04a2019-07-31 23:57:39 +0800102 unsigned int shrinker_run_no;
Gao Xiang14373712021-03-29 18:00:12 +0800103 u16 available_compr_algs;
Gao Xiang22fe04a2019-07-31 23:57:39 +0800104
Gao Xiang4279f3f2019-07-31 23:57:49 +0800105 /* pseudo inode to manage cached pages */
106 struct inode *managed_cache;
Huang Jianan5d505382021-03-29 09:23:06 +0800107
108 struct erofs_sb_lz4_info lz4;
Gao Xiang22fe04a2019-07-31 23:57:39 +0800109#endif /* CONFIG_EROFS_FS_ZIP */
Gao Xiangdfeab2e2021-10-14 16:10:10 +0800110 struct erofs_dev_context *devs;
Gao Xiang06252e92021-08-05 08:36:00 +0800111 struct dax_device *dax_dev;
Gao Xiangdfeab2e2021-10-14 16:10:10 +0800112 u64 total_blocks;
113 u32 primarydevice_blocks;
114
Gao Xiangbfb86742018-07-26 20:21:45 +0800115 u32 meta_blkaddr;
Gao Xiangb17500a2018-07-26 20:21:52 +0800116#ifdef CONFIG_EROFS_FS_XATTR
117 u32 xattr_blkaddr;
118#endif
Gao Xiangdfeab2e2021-10-14 16:10:10 +0800119 u16 device_id_mask; /* valid bits of device id to be used */
Gao Xiangbfb86742018-07-26 20:21:45 +0800120
121 /* inode slot unit size in bit shift */
122 unsigned char islotbits;
123
Gao Xiang14373712021-03-29 18:00:12 +0800124 u32 sb_size; /* total superblock size */
Gao Xiangbfb86742018-07-26 20:21:45 +0800125 u32 build_time_nsec;
126 u64 build_time;
127
128 /* what we really care is nid, rather than ino.. */
129 erofs_nid_t root_nid;
130 /* used for statfs, f_files - f_favail */
131 u64 inos;
132
133 u8 uuid[16]; /* 128-bit uuid for volume */
134 u8 volume_name[16]; /* volume name */
Pratik Shindeb858a482019-11-04 10:49:37 +0800135 u32 feature_compat;
Gao Xiang426a9302019-09-04 10:08:53 +0800136 u32 feature_incompat;
Gao Xiangbfb86742018-07-26 20:21:45 +0800137};
138
139#define EROFS_SB(sb) ((struct erofs_sb_info *)(sb)->s_fs_info)
140#define EROFS_I_SB(inode) ((struct erofs_sb_info *)(inode)->i_sb->s_fs_info)
141
Gao Xiangb17500a2018-07-26 20:21:52 +0800142/* Mount flags set via mount options or defaults */
143#define EROFS_MOUNT_XATTR_USER 0x00000010
144#define EROFS_MOUNT_POSIX_ACL 0x00000020
Gao Xiang06252e92021-08-05 08:36:00 +0800145#define EROFS_MOUNT_DAX_ALWAYS 0x00000040
146#define EROFS_MOUNT_DAX_NEVER 0x00000080
Gao Xiangb17500a2018-07-26 20:21:52 +0800147
Gao Xiange6242462021-10-07 15:02:23 +0800148#define clear_opt(opt, option) ((opt)->mount_opt &= ~EROFS_MOUNT_##option)
149#define set_opt(opt, option) ((opt)->mount_opt |= EROFS_MOUNT_##option)
150#define test_opt(opt, option) ((opt)->mount_opt & EROFS_MOUNT_##option)
Gao Xiangbfb86742018-07-26 20:21:45 +0800151
Gao Xiang4279f3f2019-07-31 23:57:49 +0800152enum {
153 EROFS_ZIP_CACHE_DISABLED,
154 EROFS_ZIP_CACHE_READAHEAD,
155 EROFS_ZIP_CACHE_READAROUND
156};
157
Chao Yuf57a3fe2020-05-29 18:48:36 +0800158#ifdef CONFIG_EROFS_FS_ZIP
Gao Xiang14f362b2019-07-31 23:57:36 +0800159#define EROFS_LOCKED_MAGIC (INT_MIN | 0xE0F510CCL)
160
Gao Xiange7e9a302018-07-26 20:22:05 +0800161/* basic unit of the workstation of a super_block */
162struct erofs_workgroup {
163 /* the workgroup index in the workstation */
164 pgoff_t index;
165
166 /* overall workgroup reference count */
167 atomic_t refcount;
168};
169
Gao Xiang73f5c662018-11-23 01:16:02 +0800170#if defined(CONFIG_SMP)
171static inline bool erofs_workgroup_try_to_freeze(struct erofs_workgroup *grp,
172 int val)
Gao Xiange7e9a302018-07-26 20:22:05 +0800173{
Gao Xiange7e9a302018-07-26 20:22:05 +0800174 preempt_disable();
Gao Xiang73f5c662018-11-23 01:16:02 +0800175 if (val != atomic_cmpxchg(&grp->refcount, val, EROFS_LOCKED_MAGIC)) {
Gao Xiange7e9a302018-07-26 20:22:05 +0800176 preempt_enable();
177 return false;
178 }
Gao Xiange7e9a302018-07-26 20:22:05 +0800179 return true;
180}
181
Gao Xiang73f5c662018-11-23 01:16:02 +0800182static inline void erofs_workgroup_unfreeze(struct erofs_workgroup *grp,
183 int orig_val)
Gao Xiange7e9a302018-07-26 20:22:05 +0800184{
Gao Xiang948bbdb2018-11-23 01:16:03 +0800185 /*
186 * other observers should notice all modifications
187 * in the freezing period.
188 */
189 smp_mb();
Gao Xiang73f5c662018-11-23 01:16:02 +0800190 atomic_set(&grp->refcount, orig_val);
Gao Xiange7e9a302018-07-26 20:22:05 +0800191 preempt_enable();
192}
193
Gao Xiangdf134b82018-11-23 01:16:01 +0800194static inline int erofs_wait_on_workgroup_freezed(struct erofs_workgroup *grp)
195{
196 return atomic_cond_read_relaxed(&grp->refcount,
197 VAL != EROFS_LOCKED_MAGIC);
198}
199#else
Gao Xiang73f5c662018-11-23 01:16:02 +0800200static inline bool erofs_workgroup_try_to_freeze(struct erofs_workgroup *grp,
201 int val)
202{
203 preempt_disable();
204 /* no need to spin on UP platforms, let's just disable preemption. */
205 if (val != atomic_read(&grp->refcount)) {
206 preempt_enable();
207 return false;
208 }
209 return true;
210}
211
212static inline void erofs_workgroup_unfreeze(struct erofs_workgroup *grp,
213 int orig_val)
214{
215 preempt_enable();
216}
217
Gao Xiangdf134b82018-11-23 01:16:01 +0800218static inline int erofs_wait_on_workgroup_freezed(struct erofs_workgroup *grp)
219{
220 int v = atomic_read(&grp->refcount);
221
222 /* workgroup is never freezed on uniprocessor systems */
223 DBG_BUGON(v == EROFS_LOCKED_MAGIC);
224 return v;
225}
Gao Xiang14f362b2019-07-31 23:57:36 +0800226#endif /* !CONFIG_SMP */
Gao Xiang14f362b2019-07-31 23:57:36 +0800227#endif /* !CONFIG_EROFS_FS_ZIP */
Gao Xiange7e9a302018-07-26 20:22:05 +0800228
Gao Xiangbfb86742018-07-26 20:21:45 +0800229/* we strictly follow PAGE_SIZE and no buffer head yet */
230#define LOG_BLOCK_SIZE PAGE_SHIFT
231
232#undef LOG_SECTORS_PER_BLOCK
233#define LOG_SECTORS_PER_BLOCK (PAGE_SHIFT - 9)
234
235#undef SECTORS_PER_BLOCK
236#define SECTORS_PER_BLOCK (1 << SECTORS_PER_BLOCK)
237
238#define EROFS_BLKSIZ (1 << LOG_BLOCK_SIZE)
239
240#if (EROFS_BLKSIZ % 4096 || !EROFS_BLKSIZ)
241#error erofs cannot be used in this platform
242#endif
243
244#define ROOT_NID(sb) ((sb)->root_nid)
245
Gao Xiangbfb86742018-07-26 20:21:45 +0800246#define erofs_blknr(addr) ((addr) / EROFS_BLKSIZ)
247#define erofs_blkoff(addr) ((addr) % EROFS_BLKSIZ)
248#define blknr_to_addr(nr) ((erofs_off_t)(nr) * EROFS_BLKSIZ)
249
250static inline erofs_off_t iloc(struct erofs_sb_info *sbi, erofs_nid_t nid)
251{
252 return blknr_to_addr(sbi->meta_blkaddr) + (nid << sbi->islotbits);
253}
254
Gao Xiangde06a6a2021-03-29 09:23:05 +0800255#define EROFS_FEATURE_FUNCS(name, compat, feature) \
256static inline bool erofs_sb_has_##name(struct erofs_sb_info *sbi) \
257{ \
258 return sbi->feature_##compat & EROFS_FEATURE_##feature; \
259}
260
Huang Jianan7e508f22021-11-13 00:09:33 +0800261EROFS_FEATURE_FUNCS(zero_padding, incompat, INCOMPAT_ZERO_PADDING)
Gao Xiang14373712021-03-29 18:00:12 +0800262EROFS_FEATURE_FUNCS(compr_cfgs, incompat, INCOMPAT_COMPR_CFGS)
Gao Xiang5404c33012021-04-07 12:39:22 +0800263EROFS_FEATURE_FUNCS(big_pcluster, incompat, INCOMPAT_BIG_PCLUSTER)
Gao Xiangdfeab2e2021-10-14 16:10:10 +0800264EROFS_FEATURE_FUNCS(device_table, incompat, INCOMPAT_DEVICE_TABLE)
Gao Xiangde06a6a2021-03-29 09:23:05 +0800265EROFS_FEATURE_FUNCS(sb_chksum, compat, COMPAT_SB_CHKSUM)
266
Gao Xiang62dc4592019-02-18 15:19:04 +0800267/* atomic flag definitions */
Gao Xianga5876e22019-09-04 10:08:56 +0800268#define EROFS_I_EA_INITED_BIT 0
269#define EROFS_I_Z_INITED_BIT 1
Gao Xiang62dc4592019-02-18 15:19:04 +0800270
271/* bitlock definitions (arranged in reverse order) */
Gao Xianga5876e22019-09-04 10:08:56 +0800272#define EROFS_I_BL_XATTR_BIT (BITS_PER_LONG - 1)
273#define EROFS_I_BL_Z_BIT (BITS_PER_LONG - 2)
Gao Xiangbfb86742018-07-26 20:21:45 +0800274
Gao Xianga5876e22019-09-04 10:08:56 +0800275struct erofs_inode {
Gao Xiangbfb86742018-07-26 20:21:45 +0800276 erofs_nid_t nid;
Gao Xiang62dc4592019-02-18 15:19:04 +0800277
278 /* atomic flags (including bitlocks) */
279 unsigned long flags;
Gao Xiangbfb86742018-07-26 20:21:45 +0800280
Gao Xiang8a765682019-09-04 10:08:54 +0800281 unsigned char datalayout;
Gao Xiangbfb86742018-07-26 20:21:45 +0800282 unsigned char inode_isize;
283 unsigned short xattr_isize;
284
Pratik Shindee82a9a12019-07-15 17:51:27 +0530285 unsigned int xattr_shared_count;
286 unsigned int *xattr_shared_xattrs;
Gao Xiangbfb86742018-07-26 20:21:45 +0800287
Gao Xiang152a3332019-06-24 15:22:52 +0800288 union {
289 erofs_blk_t raw_blkaddr;
Gao Xiangc5aa9032021-08-20 18:00:19 +0800290 struct {
291 unsigned short chunkformat;
292 unsigned char chunkbits;
293 };
Gao Xiang152a3332019-06-24 15:22:52 +0800294#ifdef CONFIG_EROFS_FS_ZIP
295 struct {
296 unsigned short z_advise;
297 unsigned char z_algorithmtype[2];
298 unsigned char z_logical_clusterbits;
Gao Xiang152a3332019-06-24 15:22:52 +0800299 };
Gao Xiang14f362b2019-07-31 23:57:36 +0800300#endif /* CONFIG_EROFS_FS_ZIP */
Gao Xiang152a3332019-06-24 15:22:52 +0800301 };
Gao Xiangbfb86742018-07-26 20:21:45 +0800302 /* the corresponding vfs inode */
303 struct inode vfs_inode;
304};
305
Gao Xianga5876e22019-09-04 10:08:56 +0800306#define EROFS_I(ptr) \
307 container_of(ptr, struct erofs_inode, vfs_inode)
Gao Xiangbfb86742018-07-26 20:21:45 +0800308
Gao Xiang99634bf2019-09-04 10:09:05 +0800309static inline unsigned long erofs_inode_datablocks(struct inode *inode)
Gao Xiangbfb86742018-07-26 20:21:45 +0800310{
311 /* since i_size cannot be changed */
312 return DIV_ROUND_UP(inode->i_size, EROFS_BLKSIZ);
313}
314
Gao Xiang8a765682019-09-04 10:08:54 +0800315static inline unsigned int erofs_bitrange(unsigned int value, unsigned int bit,
316 unsigned int bits)
Gao Xiangbfb86742018-07-26 20:21:45 +0800317{
Gao Xiang8a765682019-09-04 10:08:54 +0800318
319 return (value >> bit) & ((1 << bits) - 1);
Gao Xiangbfb86742018-07-26 20:21:45 +0800320}
321
Gao Xiang8a765682019-09-04 10:08:54 +0800322
323static inline unsigned int erofs_inode_version(unsigned int value)
Gao Xiangbfb86742018-07-26 20:21:45 +0800324{
Gao Xiang8a765682019-09-04 10:08:54 +0800325 return erofs_bitrange(value, EROFS_I_VERSION_BIT,
326 EROFS_I_VERSION_BITS);
327}
328
329static inline unsigned int erofs_inode_datalayout(unsigned int value)
330{
331 return erofs_bitrange(value, EROFS_I_DATALAYOUT_BIT,
332 EROFS_I_DATALAYOUT_BITS);
Gao Xiangbfb86742018-07-26 20:21:45 +0800333}
334
Gao Xiang38629292021-10-09 04:08:39 +0800335/*
336 * Different from grab_cache_page_nowait(), reclaiming is never triggered
337 * when allocating new pages.
338 */
339static inline
340struct page *erofs_grab_cache_page_nowait(struct address_space *mapping,
341 pgoff_t index)
342{
343 return pagecache_get_page(mapping, index,
344 FGP_LOCK|FGP_CREAT|FGP_NOFS|FGP_NOWAIT,
345 readahead_gfp_mask(mapping) & ~__GFP_RECLAIM);
346}
347
Gao Xiangbfb86742018-07-26 20:21:45 +0800348extern const struct super_operations erofs_sops;
Gao Xiangbfb86742018-07-26 20:21:45 +0800349
350extern const struct address_space_operations erofs_raw_access_aops;
Gao Xiang0c638f72019-11-08 11:37:33 +0800351extern const struct address_space_operations z_erofs_aops;
Gao Xiangbfb86742018-07-26 20:21:45 +0800352
353/*
Yue Hu81378242021-03-25 15:10:08 +0800354 * Logical to physical block mapping
Gao Xiangbfb86742018-07-26 20:21:45 +0800355 *
356 * Different with other file systems, it is used for 2 access modes:
357 *
358 * 1) RAW access mode:
359 *
360 * Users pass a valid (m_lblk, m_lofs -- usually 0) pair,
361 * and get the valid m_pblk, m_pofs and the longest m_len(in bytes).
362 *
363 * Note that m_lblk in the RAW access mode refers to the number of
364 * the compressed ondisk block rather than the uncompressed
365 * in-memory block for the compressed file.
366 *
367 * m_pofs equals to m_lofs except for the inline data page.
368 *
369 * 2) Normal access mode:
370 *
371 * If the inode is not compressed, it has no difference with
372 * the RAW access mode. However, if the inode is compressed,
373 * users should pass a valid (m_lblk, m_lofs) pair, and get
374 * the needed m_pblk, m_pofs, m_len to get the compressed data
375 * and the updated m_lblk, m_lofs which indicates the start
376 * of the corresponding uncompressed data in the file.
377 */
378enum {
Gao Xiang8f899262021-10-09 04:08:37 +0800379 BH_Encoded = BH_PrivateStart,
Gao Xiangb6a76182019-06-24 15:22:58 +0800380 BH_FullMapped,
Gao Xiangbfb86742018-07-26 20:21:45 +0800381};
382
383/* Has a disk mapping */
384#define EROFS_MAP_MAPPED (1 << BH_Mapped)
385/* Located in metadata (could be copied from bd_inode) */
386#define EROFS_MAP_META (1 << BH_Meta)
Gao Xiang8f899262021-10-09 04:08:37 +0800387/* The extent is encoded */
388#define EROFS_MAP_ENCODED (1 << BH_Encoded)
Gao Xiangb6a76182019-06-24 15:22:58 +0800389/* The length of extent is full */
390#define EROFS_MAP_FULL_MAPPED (1 << BH_FullMapped)
Gao Xiangbfb86742018-07-26 20:21:45 +0800391
392struct erofs_map_blocks {
393 erofs_off_t m_pa, m_la;
394 u64 m_plen, m_llen;
395
Gao Xiangdfeab2e2021-10-14 16:10:10 +0800396 unsigned short m_deviceid;
Gao Xiang8f899262021-10-09 04:08:37 +0800397 char m_algorithmformat;
Gao Xiangbfb86742018-07-26 20:21:45 +0800398 unsigned int m_flags;
Chao Yu3b423412019-01-15 09:42:21 +0800399
400 struct page *mpage;
Gao Xiangbfb86742018-07-26 20:21:45 +0800401};
402
Yue Hu81378242021-03-25 15:10:08 +0800403/* Flags used by erofs_map_blocks_flatmode() */
Gao Xiangbfb86742018-07-26 20:21:45 +0800404#define EROFS_GET_BLOCKS_RAW 0x0001
Gao Xiangd95ae5e2021-08-18 23:22:31 +0800405/*
406 * Used to get the exact decompressed length, e.g. fiemap (consider lookback
407 * approach instead if possible since it's more metadata lightweight.)
408 */
409#define EROFS_GET_BLOCKS_FIEMAP 0x0002
Gao Xiang622cead2021-10-11 05:31:45 +0800410/* Used to map the whole extent if non-negligible data is requested for LZMA */
411#define EROFS_GET_BLOCKS_READMORE 0x0004
Gao Xiangbfb86742018-07-26 20:21:45 +0800412
Gao Xiang8f899262021-10-09 04:08:37 +0800413enum {
414 Z_EROFS_COMPRESSION_SHIFTED = Z_EROFS_COMPRESSION_MAX,
415 Z_EROFS_COMPRESSION_RUNTIME_MAX
416};
417
Gao Xiang152a3332019-06-24 15:22:52 +0800418/* zmap.c */
Gao Xiangeadcd6b2021-08-13 13:29:31 +0800419extern const struct iomap_ops z_erofs_iomap_report_ops;
420
Chao Yu3b423412019-01-15 09:42:21 +0800421#ifdef CONFIG_EROFS_FS_ZIP
Gao Xiang152a3332019-06-24 15:22:52 +0800422int z_erofs_fill_inode(struct inode *inode);
Chao Yu3b423412019-01-15 09:42:21 +0800423int z_erofs_map_blocks_iter(struct inode *inode,
424 struct erofs_map_blocks *map,
425 int flags);
426#else
Gao Xiangff784a72019-08-14 18:37:05 +0800427static inline int z_erofs_fill_inode(struct inode *inode) { return -EOPNOTSUPP; }
Chao Yu3b423412019-01-15 09:42:21 +0800428static inline int z_erofs_map_blocks_iter(struct inode *inode,
429 struct erofs_map_blocks *map,
430 int flags)
431{
Gao Xiangff784a72019-08-14 18:37:05 +0800432 return -EOPNOTSUPP;
Chao Yu3b423412019-01-15 09:42:21 +0800433}
Gao Xiang14f362b2019-07-31 23:57:36 +0800434#endif /* !CONFIG_EROFS_FS_ZIP */
Chao Yu3b423412019-01-15 09:42:21 +0800435
Gao Xiangdfeab2e2021-10-14 16:10:10 +0800436struct erofs_map_dev {
437 struct block_device *m_bdev;
438 struct dax_device *m_daxdev;
439
440 erofs_off_t m_pa;
441 unsigned int m_deviceid;
442};
443
Gao Xiangbfb86742018-07-26 20:21:45 +0800444/* data.c */
Huang Jianana08e67a2021-08-05 08:35:59 +0800445extern const struct file_operations erofs_file_fops;
Gao Xiange655b5b2019-09-04 10:09:03 +0800446struct page *erofs_get_meta_page(struct super_block *sb, erofs_blk_t blkaddr);
Gao Xiangdfeab2e2021-10-14 16:10:10 +0800447int erofs_map_dev(struct super_block *sb, struct erofs_map_dev *dev);
Gao Xiangeadcd6b2021-08-13 13:29:31 +0800448int erofs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
449 u64 start, u64 len);
Gao Xiang6e789012018-08-21 22:49:30 +0800450
Gao Xiangbfb86742018-07-26 20:21:45 +0800451/* inode.c */
Gao Xiang2abd7812018-10-09 22:07:13 +0800452static inline unsigned long erofs_inode_hash(erofs_nid_t nid)
453{
454#if BITS_PER_LONG == 32
455 return (nid >> 32) ^ (nid & 0xffffffff);
456#else
457 return nid;
458#endif
459}
460
Gao Xiang60939822019-01-14 19:40:24 +0800461extern const struct inode_operations erofs_generic_iops;
462extern const struct inode_operations erofs_symlink_iops;
463extern const struct inode_operations erofs_fast_symlink_iops;
Gao Xiangb17500a2018-07-26 20:21:52 +0800464
Gao Xiang2e1d6632019-01-16 16:59:56 +0800465struct inode *erofs_iget(struct super_block *sb, erofs_nid_t nid, bool dir);
Christian Brauner549c7292021-01-21 14:19:43 +0100466int erofs_getattr(struct user_namespace *mnt_userns, const struct path *path,
467 struct kstat *stat, u32 request_mask,
468 unsigned int query_flags);
Gao Xiang2e1d6632019-01-16 16:59:56 +0800469
Gao Xiang60939822019-01-14 19:40:24 +0800470/* namei.c */
471extern const struct inode_operations erofs_dir_iops;
472
473int erofs_namei(struct inode *dir, struct qstr *name,
474 erofs_nid_t *nid, unsigned int *d_type);
475
476/* dir.c */
477extern const struct file_operations erofs_dir_fops;
478
Gao Xiang598162d2021-04-07 12:39:26 +0800479static inline void *erofs_vm_map_ram(struct page **pages, unsigned int count)
480{
481 int retried = 0;
482
483 while (1) {
484 void *p = vm_map_ram(pages, count, -1);
485
486 /* retry two more times (totally 3 times) */
487 if (p || ++retried >= 3)
488 return p;
489 vm_unmap_aliases();
490 }
491 return NULL;
492}
493
Gao Xiang52488732021-04-10 03:06:30 +0800494/* pcpubuf.c */
495void *erofs_get_pcpubuf(unsigned int requiredpages);
496void erofs_put_pcpubuf(void *ptr);
497int erofs_pcpubuf_growsize(unsigned int nrpages);
498void erofs_pcpubuf_init(void);
499void erofs_pcpubuf_exit(void);
500
Gao Xiang14f362b2019-07-31 23:57:36 +0800501/* utils.c / zdata.c */
Gao Xiangeaa91722021-10-22 17:01:20 +0800502struct page *erofs_allocpage(struct page **pagepool, gfp_t gfp);
503static inline void erofs_pagepool_add(struct page **pagepool,
504 struct page *page)
505{
506 set_page_private(page, (unsigned long)*pagepool);
507 *pagepool = page;
508}
509void erofs_release_pages(struct page **pagepool);
Gao Xiangfa61a332019-06-24 15:22:53 +0800510
Gao Xiang22fe04a2019-07-31 23:57:39 +0800511#ifdef CONFIG_EROFS_FS_ZIP
Gao Xiang14f362b2019-07-31 23:57:36 +0800512int erofs_workgroup_put(struct erofs_workgroup *grp);
513struct erofs_workgroup *erofs_find_workgroup(struct super_block *sb,
Vladimir Zapolskiy997626d2020-01-02 14:01:16 +0200514 pgoff_t index);
Gao Xiang64094a02020-02-20 10:46:42 +0800515struct erofs_workgroup *erofs_insert_workgroup(struct super_block *sb,
516 struct erofs_workgroup *grp);
Gao Xiang14f362b2019-07-31 23:57:36 +0800517void erofs_workgroup_free_rcu(struct erofs_workgroup *grp);
Gao Xiang22fe04a2019-07-31 23:57:39 +0800518void erofs_shrinker_register(struct super_block *sb);
519void erofs_shrinker_unregister(struct super_block *sb);
520int __init erofs_init_shrinker(void);
521void erofs_exit_shrinker(void);
522int __init z_erofs_init_zip_subsystem(void);
523void z_erofs_exit_zip_subsystem(void);
Gao Xiang14f362b2019-07-31 23:57:36 +0800524int erofs_try_to_free_all_cached_pages(struct erofs_sb_info *sbi,
525 struct erofs_workgroup *egrp);
Yue Hud252ff32021-08-10 15:24:16 +0800526int erofs_try_to_free_cached_page(struct page *page);
Huang Jianan5d505382021-03-29 09:23:06 +0800527int z_erofs_load_lz4_config(struct super_block *sb,
Gao Xiang46249cd2021-03-29 09:23:07 +0800528 struct erofs_super_block *dsb,
529 struct z_erofs_lz4_cfgs *lz4, int len);
Gao Xiang22fe04a2019-07-31 23:57:39 +0800530#else
531static inline void erofs_shrinker_register(struct super_block *sb) {}
532static inline void erofs_shrinker_unregister(struct super_block *sb) {}
533static inline int erofs_init_shrinker(void) { return 0; }
534static inline void erofs_exit_shrinker(void) {}
535static inline int z_erofs_init_zip_subsystem(void) { return 0; }
536static inline void z_erofs_exit_zip_subsystem(void) {}
Huang Jianan5d505382021-03-29 09:23:06 +0800537static inline int z_erofs_load_lz4_config(struct super_block *sb,
Gao Xiang46249cd2021-03-29 09:23:07 +0800538 struct erofs_super_block *dsb,
539 struct z_erofs_lz4_cfgs *lz4, int len)
Huang Jianan5d505382021-03-29 09:23:06 +0800540{
Gao Xiang14373712021-03-29 18:00:12 +0800541 if (lz4 || dsb->u1.lz4_max_distance) {
Huang Jianan5d505382021-03-29 09:23:06 +0800542 erofs_err(sb, "lz4 algorithm isn't enabled");
543 return -EINVAL;
544 }
545 return 0;
546}
Gao Xiang22fe04a2019-07-31 23:57:39 +0800547#endif /* !CONFIG_EROFS_FS_ZIP */
Gao Xiang2e1d6632019-01-16 16:59:56 +0800548
Gao Xiang622cead2021-10-11 05:31:45 +0800549#ifdef CONFIG_EROFS_FS_ZIP_LZMA
550int z_erofs_lzma_init(void);
551void z_erofs_lzma_exit(void);
552int z_erofs_load_lzma_config(struct super_block *sb,
553 struct erofs_super_block *dsb,
554 struct z_erofs_lzma_cfgs *lzma, int size);
555#else
556static inline int z_erofs_lzma_init(void) { return 0; }
557static inline int z_erofs_lzma_exit(void) { return 0; }
558static inline int z_erofs_load_lzma_config(struct super_block *sb,
559 struct erofs_super_block *dsb,
560 struct z_erofs_lzma_cfgs *lzma, int size) {
561 if (lzma) {
562 erofs_err(sb, "lzma algorithm isn't enabled");
563 return -EINVAL;
564 }
565 return 0;
566}
567#endif /* !CONFIG_EROFS_FS_ZIP */
568
Gao Xianga6b9b1d2019-08-14 18:37:03 +0800569#define EFSCORRUPTED EUCLEAN /* Filesystem is corrupted */
570
Gao Xiang14f362b2019-07-31 23:57:36 +0800571#endif /* __EROFS_INTERNAL_H */