Gao Xiang | 29b24f6 | 2019-07-31 23:57:31 +0800 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
| 2 | /* |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 3 | * Copyright (C) 2017-2018 HUAWEI, Inc. |
Alexander A. Klimov | 592e7cd | 2020-07-13 15:09:44 +0200 | [diff] [blame] | 4 | * https://www.huawei.com/ |
Gao Xiang | c5aa903 | 2021-08-20 18:00:19 +0800 | [diff] [blame] | 5 | * Copyright (C) 2021, Alibaba Cloud |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 6 | */ |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 7 | #ifndef __EROFS_INTERNAL_H |
| 8 | #define __EROFS_INTERNAL_H |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 9 | |
| 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 Xiang | 47e4937 | 2019-08-23 05:36:59 +0800 | [diff] [blame] | 16 | #include <linux/magic.h> |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 17 | #include <linux/slab.h> |
| 18 | #include <linux/vmalloc.h> |
Gao Xiang | eadcd6b | 2021-08-13 13:29:31 +0800 | [diff] [blame] | 19 | #include <linux/iomap.h> |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 20 | #include "erofs_fs.h" |
| 21 | |
| 22 | /* redefine pr_fmt "erofs: " */ |
| 23 | #undef pr_fmt |
| 24 | #define pr_fmt(fmt) "erofs: " fmt |
| 25 | |
Gao Xiang | 4f761fa | 2019-09-04 10:09:09 +0800 | [diff] [blame] | 26 | __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 Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 34 | #ifdef CONFIG_EROFS_FS_DEBUG |
Gao Xiang | 4f761fa | 2019-09-04 10:09:09 +0800 | [diff] [blame] | 35 | #define erofs_dbg(x, ...) pr_debug(x "\n", ##__VA_ARGS__) |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 36 | #define DBG_BUGON BUG_ON |
| 37 | #else |
Gao Xiang | 4f761fa | 2019-09-04 10:09:09 +0800 | [diff] [blame] | 38 | #define erofs_dbg(x, ...) ((void)0) |
Gao Xiang | eef1687 | 2018-11-23 01:15:59 +0800 | [diff] [blame] | 39 | #define DBG_BUGON(x) ((void)(x)) |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 40 | #endif /* !CONFIG_EROFS_FS_DEBUG */ |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 41 | |
| 42 | /* EROFS_SUPER_MAGIC_V1 to represent the whole file system */ |
| 43 | #define EROFS_SUPER_MAGIC EROFS_SUPER_MAGIC_V1 |
| 44 | |
| 45 | typedef u64 erofs_nid_t; |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 46 | typedef u64 erofs_off_t; |
| 47 | /* data type for filesystem-wide blocks number */ |
| 48 | typedef u32 erofs_blk_t; |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 49 | |
Gao Xiang | dfeab2e | 2021-10-14 16:10:10 +0800 | [diff] [blame] | 50 | struct erofs_device_info { |
| 51 | char *path; |
| 52 | struct block_device *bdev; |
| 53 | struct dax_device *dax_dev; |
Christoph Hellwig | cd913c7 | 2021-11-29 11:21:59 +0100 | [diff] [blame] | 54 | u64 dax_part_off; |
Gao Xiang | dfeab2e | 2021-10-14 16:10:10 +0800 | [diff] [blame] | 55 | |
| 56 | u32 blocks; |
| 57 | u32 mapped_blkaddr; |
| 58 | }; |
| 59 | |
Huang Jianan | 40452ff | 2021-12-06 22:35:52 +0800 | [diff] [blame] | 60 | enum { |
| 61 | EROFS_SYNC_DECOMPRESS_AUTO, |
| 62 | EROFS_SYNC_DECOMPRESS_FORCE_ON, |
| 63 | EROFS_SYNC_DECOMPRESS_FORCE_OFF |
| 64 | }; |
| 65 | |
Gao Xiang | e624246 | 2021-10-07 15:02:23 +0800 | [diff] [blame] | 66 | struct erofs_mount_opts { |
Chao Yu | f57a3fe | 2020-05-29 18:48:36 +0800 | [diff] [blame] | 67 | #ifdef CONFIG_EROFS_FS_ZIP |
| 68 | /* current strategy of how to use managed cache */ |
| 69 | unsigned char cache_strategy; |
Huang Jianan | 40452ff | 2021-12-06 22:35:52 +0800 | [diff] [blame] | 70 | /* strategy of sync decompression (0 - auto, 1 - force on, 2 - force off) */ |
| 71 | unsigned int sync_decompress; |
Chao Yu | f57a3fe | 2020-05-29 18:48:36 +0800 | [diff] [blame] | 72 | |
| 73 | /* threshold for decompression synchronously */ |
| 74 | unsigned int max_sync_decompress_pages; |
| 75 | #endif |
| 76 | unsigned int mount_opt; |
| 77 | }; |
| 78 | |
Gao Xiang | dfeab2e | 2021-10-14 16:10:10 +0800 | [diff] [blame] | 79 | struct erofs_dev_context { |
| 80 | struct idr tree; |
| 81 | struct rw_semaphore rwsem; |
| 82 | |
| 83 | unsigned int extra_devices; |
| 84 | }; |
| 85 | |
Gao Xiang | e624246 | 2021-10-07 15:02:23 +0800 | [diff] [blame] | 86 | struct erofs_fs_context { |
| 87 | struct erofs_mount_opts opt; |
Gao Xiang | dfeab2e | 2021-10-14 16:10:10 +0800 | [diff] [blame] | 88 | struct erofs_dev_context *devs; |
Gao Xiang | e624246 | 2021-10-07 15:02:23 +0800 | [diff] [blame] | 89 | }; |
| 90 | |
Huang Jianan | 5d50538 | 2021-03-29 09:23:06 +0800 | [diff] [blame] | 91 | /* all filesystem-wide lz4 configurations */ |
| 92 | struct erofs_sb_lz4_info { |
| 93 | /* # of pages needed for EROFS lz4 rolling decompression */ |
| 94 | u16 max_distance_pages; |
Gao Xiang | 4fea63f | 2021-04-07 12:39:23 +0800 | [diff] [blame] | 95 | /* maximum possible blocks for pclusters in the filesystem */ |
| 96 | u16 max_pclusterblks; |
Huang Jianan | 5d50538 | 2021-03-29 09:23:06 +0800 | [diff] [blame] | 97 | }; |
| 98 | |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 99 | struct erofs_sb_info { |
Gao Xiang | e624246 | 2021-10-07 15:02:23 +0800 | [diff] [blame] | 100 | struct erofs_mount_opts opt; /* options */ |
Gao Xiang | 22fe04a | 2019-07-31 23:57:39 +0800 | [diff] [blame] | 101 | #ifdef CONFIG_EROFS_FS_ZIP |
Gao Xiang | 2497ee4 | 2018-07-26 20:22:03 +0800 | [diff] [blame] | 102 | /* list for all registered superblocks, mainly for shrinker */ |
| 103 | struct list_head list; |
Gao Xiang | a158131 | 2018-07-26 20:22:04 +0800 | [diff] [blame] | 104 | struct mutex umount_mutex; |
Gao Xiang | 2497ee4 | 2018-07-26 20:22:03 +0800 | [diff] [blame] | 105 | |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 106 | /* managed XArray arranged in physical block number */ |
| 107 | struct xarray managed_pslots; |
Gao Xiang | 22fe04a | 2019-07-31 23:57:39 +0800 | [diff] [blame] | 108 | |
Gao Xiang | 22fe04a | 2019-07-31 23:57:39 +0800 | [diff] [blame] | 109 | unsigned int shrinker_run_no; |
Gao Xiang | 1437371 | 2021-03-29 18:00:12 +0800 | [diff] [blame] | 110 | u16 available_compr_algs; |
Gao Xiang | 22fe04a | 2019-07-31 23:57:39 +0800 | [diff] [blame] | 111 | |
Gao Xiang | 4279f3f | 2019-07-31 23:57:49 +0800 | [diff] [blame] | 112 | /* pseudo inode to manage cached pages */ |
| 113 | struct inode *managed_cache; |
Huang Jianan | 5d50538 | 2021-03-29 09:23:06 +0800 | [diff] [blame] | 114 | |
| 115 | struct erofs_sb_lz4_info lz4; |
Gao Xiang | 22fe04a | 2019-07-31 23:57:39 +0800 | [diff] [blame] | 116 | #endif /* CONFIG_EROFS_FS_ZIP */ |
Gao Xiang | dfeab2e | 2021-10-14 16:10:10 +0800 | [diff] [blame] | 117 | struct erofs_dev_context *devs; |
Gao Xiang | 06252e9 | 2021-08-05 08:36:00 +0800 | [diff] [blame] | 118 | struct dax_device *dax_dev; |
Christoph Hellwig | cd913c7 | 2021-11-29 11:21:59 +0100 | [diff] [blame] | 119 | u64 dax_part_off; |
Gao Xiang | dfeab2e | 2021-10-14 16:10:10 +0800 | [diff] [blame] | 120 | u64 total_blocks; |
| 121 | u32 primarydevice_blocks; |
| 122 | |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 123 | u32 meta_blkaddr; |
Gao Xiang | b17500a | 2018-07-26 20:21:52 +0800 | [diff] [blame] | 124 | #ifdef CONFIG_EROFS_FS_XATTR |
| 125 | u32 xattr_blkaddr; |
| 126 | #endif |
Gao Xiang | dfeab2e | 2021-10-14 16:10:10 +0800 | [diff] [blame] | 127 | u16 device_id_mask; /* valid bits of device id to be used */ |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 128 | |
| 129 | /* inode slot unit size in bit shift */ |
| 130 | unsigned char islotbits; |
| 131 | |
Gao Xiang | 1437371 | 2021-03-29 18:00:12 +0800 | [diff] [blame] | 132 | u32 sb_size; /* total superblock size */ |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 133 | u32 build_time_nsec; |
| 134 | u64 build_time; |
| 135 | |
| 136 | /* what we really care is nid, rather than ino.. */ |
| 137 | erofs_nid_t root_nid; |
| 138 | /* used for statfs, f_files - f_favail */ |
| 139 | u64 inos; |
| 140 | |
| 141 | u8 uuid[16]; /* 128-bit uuid for volume */ |
| 142 | u8 volume_name[16]; /* volume name */ |
Pratik Shinde | b858a48 | 2019-11-04 10:49:37 +0800 | [diff] [blame] | 143 | u32 feature_compat; |
Gao Xiang | 426a930 | 2019-09-04 10:08:53 +0800 | [diff] [blame] | 144 | u32 feature_incompat; |
Huang Jianan | 168e9a7 | 2021-12-01 22:54:36 +0800 | [diff] [blame] | 145 | |
| 146 | /* sysfs support */ |
| 147 | struct kobject s_kobj; /* /sys/fs/erofs/<devname> */ |
| 148 | struct completion s_kobj_unregister; |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 149 | }; |
| 150 | |
| 151 | #define EROFS_SB(sb) ((struct erofs_sb_info *)(sb)->s_fs_info) |
| 152 | #define EROFS_I_SB(inode) ((struct erofs_sb_info *)(inode)->i_sb->s_fs_info) |
| 153 | |
Gao Xiang | b17500a | 2018-07-26 20:21:52 +0800 | [diff] [blame] | 154 | /* Mount flags set via mount options or defaults */ |
| 155 | #define EROFS_MOUNT_XATTR_USER 0x00000010 |
| 156 | #define EROFS_MOUNT_POSIX_ACL 0x00000020 |
Gao Xiang | 06252e9 | 2021-08-05 08:36:00 +0800 | [diff] [blame] | 157 | #define EROFS_MOUNT_DAX_ALWAYS 0x00000040 |
| 158 | #define EROFS_MOUNT_DAX_NEVER 0x00000080 |
Gao Xiang | b17500a | 2018-07-26 20:21:52 +0800 | [diff] [blame] | 159 | |
Gao Xiang | e624246 | 2021-10-07 15:02:23 +0800 | [diff] [blame] | 160 | #define clear_opt(opt, option) ((opt)->mount_opt &= ~EROFS_MOUNT_##option) |
| 161 | #define set_opt(opt, option) ((opt)->mount_opt |= EROFS_MOUNT_##option) |
| 162 | #define test_opt(opt, option) ((opt)->mount_opt & EROFS_MOUNT_##option) |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 163 | |
Gao Xiang | 4279f3f | 2019-07-31 23:57:49 +0800 | [diff] [blame] | 164 | enum { |
| 165 | EROFS_ZIP_CACHE_DISABLED, |
| 166 | EROFS_ZIP_CACHE_READAHEAD, |
| 167 | EROFS_ZIP_CACHE_READAROUND |
| 168 | }; |
| 169 | |
Chao Yu | f57a3fe | 2020-05-29 18:48:36 +0800 | [diff] [blame] | 170 | #ifdef CONFIG_EROFS_FS_ZIP |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 171 | #define EROFS_LOCKED_MAGIC (INT_MIN | 0xE0F510CCL) |
| 172 | |
Gao Xiang | e7e9a30 | 2018-07-26 20:22:05 +0800 | [diff] [blame] | 173 | /* basic unit of the workstation of a super_block */ |
| 174 | struct erofs_workgroup { |
| 175 | /* the workgroup index in the workstation */ |
| 176 | pgoff_t index; |
| 177 | |
| 178 | /* overall workgroup reference count */ |
| 179 | atomic_t refcount; |
| 180 | }; |
| 181 | |
Gao Xiang | 73f5c66 | 2018-11-23 01:16:02 +0800 | [diff] [blame] | 182 | #if defined(CONFIG_SMP) |
| 183 | static inline bool erofs_workgroup_try_to_freeze(struct erofs_workgroup *grp, |
| 184 | int val) |
Gao Xiang | e7e9a30 | 2018-07-26 20:22:05 +0800 | [diff] [blame] | 185 | { |
Gao Xiang | e7e9a30 | 2018-07-26 20:22:05 +0800 | [diff] [blame] | 186 | preempt_disable(); |
Gao Xiang | 73f5c66 | 2018-11-23 01:16:02 +0800 | [diff] [blame] | 187 | if (val != atomic_cmpxchg(&grp->refcount, val, EROFS_LOCKED_MAGIC)) { |
Gao Xiang | e7e9a30 | 2018-07-26 20:22:05 +0800 | [diff] [blame] | 188 | preempt_enable(); |
| 189 | return false; |
| 190 | } |
Gao Xiang | e7e9a30 | 2018-07-26 20:22:05 +0800 | [diff] [blame] | 191 | return true; |
| 192 | } |
| 193 | |
Gao Xiang | 73f5c66 | 2018-11-23 01:16:02 +0800 | [diff] [blame] | 194 | static inline void erofs_workgroup_unfreeze(struct erofs_workgroup *grp, |
| 195 | int orig_val) |
Gao Xiang | e7e9a30 | 2018-07-26 20:22:05 +0800 | [diff] [blame] | 196 | { |
Gao Xiang | 948bbdb | 2018-11-23 01:16:03 +0800 | [diff] [blame] | 197 | /* |
| 198 | * other observers should notice all modifications |
| 199 | * in the freezing period. |
| 200 | */ |
| 201 | smp_mb(); |
Gao Xiang | 73f5c66 | 2018-11-23 01:16:02 +0800 | [diff] [blame] | 202 | atomic_set(&grp->refcount, orig_val); |
Gao Xiang | e7e9a30 | 2018-07-26 20:22:05 +0800 | [diff] [blame] | 203 | preempt_enable(); |
| 204 | } |
| 205 | |
Gao Xiang | df134b8 | 2018-11-23 01:16:01 +0800 | [diff] [blame] | 206 | static inline int erofs_wait_on_workgroup_freezed(struct erofs_workgroup *grp) |
| 207 | { |
| 208 | return atomic_cond_read_relaxed(&grp->refcount, |
| 209 | VAL != EROFS_LOCKED_MAGIC); |
| 210 | } |
| 211 | #else |
Gao Xiang | 73f5c66 | 2018-11-23 01:16:02 +0800 | [diff] [blame] | 212 | static inline bool erofs_workgroup_try_to_freeze(struct erofs_workgroup *grp, |
| 213 | int val) |
| 214 | { |
| 215 | preempt_disable(); |
| 216 | /* no need to spin on UP platforms, let's just disable preemption. */ |
| 217 | if (val != atomic_read(&grp->refcount)) { |
| 218 | preempt_enable(); |
| 219 | return false; |
| 220 | } |
| 221 | return true; |
| 222 | } |
| 223 | |
| 224 | static inline void erofs_workgroup_unfreeze(struct erofs_workgroup *grp, |
| 225 | int orig_val) |
| 226 | { |
| 227 | preempt_enable(); |
| 228 | } |
| 229 | |
Gao Xiang | df134b8 | 2018-11-23 01:16:01 +0800 | [diff] [blame] | 230 | static inline int erofs_wait_on_workgroup_freezed(struct erofs_workgroup *grp) |
| 231 | { |
| 232 | int v = atomic_read(&grp->refcount); |
| 233 | |
| 234 | /* workgroup is never freezed on uniprocessor systems */ |
| 235 | DBG_BUGON(v == EROFS_LOCKED_MAGIC); |
| 236 | return v; |
| 237 | } |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 238 | #endif /* !CONFIG_SMP */ |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 239 | #endif /* !CONFIG_EROFS_FS_ZIP */ |
Gao Xiang | e7e9a30 | 2018-07-26 20:22:05 +0800 | [diff] [blame] | 240 | |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 241 | /* we strictly follow PAGE_SIZE and no buffer head yet */ |
| 242 | #define LOG_BLOCK_SIZE PAGE_SHIFT |
| 243 | |
| 244 | #undef LOG_SECTORS_PER_BLOCK |
| 245 | #define LOG_SECTORS_PER_BLOCK (PAGE_SHIFT - 9) |
| 246 | |
| 247 | #undef SECTORS_PER_BLOCK |
| 248 | #define SECTORS_PER_BLOCK (1 << SECTORS_PER_BLOCK) |
| 249 | |
| 250 | #define EROFS_BLKSIZ (1 << LOG_BLOCK_SIZE) |
| 251 | |
| 252 | #if (EROFS_BLKSIZ % 4096 || !EROFS_BLKSIZ) |
| 253 | #error erofs cannot be used in this platform |
| 254 | #endif |
| 255 | |
Gao Xiang | fdf80a4 | 2022-01-02 12:00:13 +0800 | [diff] [blame] | 256 | enum erofs_kmap_type { |
| 257 | EROFS_NO_KMAP, /* don't map the buffer */ |
| 258 | EROFS_KMAP, /* use kmap() to map the buffer */ |
| 259 | EROFS_KMAP_ATOMIC, /* use kmap_atomic() to map the buffer */ |
| 260 | }; |
| 261 | |
| 262 | struct erofs_buf { |
| 263 | struct page *page; |
| 264 | void *base; |
| 265 | enum erofs_kmap_type kmap_type; |
| 266 | }; |
| 267 | #define __EROFS_BUF_INITIALIZER ((struct erofs_buf){ .page = NULL }) |
| 268 | |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 269 | #define ROOT_NID(sb) ((sb)->root_nid) |
| 270 | |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 271 | #define erofs_blknr(addr) ((addr) / EROFS_BLKSIZ) |
| 272 | #define erofs_blkoff(addr) ((addr) % EROFS_BLKSIZ) |
| 273 | #define blknr_to_addr(nr) ((erofs_off_t)(nr) * EROFS_BLKSIZ) |
| 274 | |
| 275 | static inline erofs_off_t iloc(struct erofs_sb_info *sbi, erofs_nid_t nid) |
| 276 | { |
| 277 | return blknr_to_addr(sbi->meta_blkaddr) + (nid << sbi->islotbits); |
| 278 | } |
| 279 | |
Gao Xiang | de06a6a | 2021-03-29 09:23:05 +0800 | [diff] [blame] | 280 | #define EROFS_FEATURE_FUNCS(name, compat, feature) \ |
| 281 | static inline bool erofs_sb_has_##name(struct erofs_sb_info *sbi) \ |
| 282 | { \ |
| 283 | return sbi->feature_##compat & EROFS_FEATURE_##feature; \ |
| 284 | } |
| 285 | |
Huang Jianan | 7e508f2 | 2021-11-13 00:09:33 +0800 | [diff] [blame] | 286 | EROFS_FEATURE_FUNCS(zero_padding, incompat, INCOMPAT_ZERO_PADDING) |
Gao Xiang | 1437371 | 2021-03-29 18:00:12 +0800 | [diff] [blame] | 287 | EROFS_FEATURE_FUNCS(compr_cfgs, incompat, INCOMPAT_COMPR_CFGS) |
Gao Xiang | 5404c3301 | 2021-04-07 12:39:22 +0800 | [diff] [blame] | 288 | EROFS_FEATURE_FUNCS(big_pcluster, incompat, INCOMPAT_BIG_PCLUSTER) |
Huang Jianan | 168e9a7 | 2021-12-01 22:54:36 +0800 | [diff] [blame] | 289 | EROFS_FEATURE_FUNCS(chunked_file, incompat, INCOMPAT_CHUNKED_FILE) |
Gao Xiang | dfeab2e | 2021-10-14 16:10:10 +0800 | [diff] [blame] | 290 | EROFS_FEATURE_FUNCS(device_table, incompat, INCOMPAT_DEVICE_TABLE) |
Huang Jianan | 168e9a7 | 2021-12-01 22:54:36 +0800 | [diff] [blame] | 291 | EROFS_FEATURE_FUNCS(compr_head2, incompat, INCOMPAT_COMPR_HEAD2) |
Yue Hu | ab92184 | 2021-12-28 13:46:04 +0800 | [diff] [blame] | 292 | EROFS_FEATURE_FUNCS(ztailpacking, incompat, INCOMPAT_ZTAILPACKING) |
Gao Xiang | de06a6a | 2021-03-29 09:23:05 +0800 | [diff] [blame] | 293 | EROFS_FEATURE_FUNCS(sb_chksum, compat, COMPAT_SB_CHKSUM) |
| 294 | |
Gao Xiang | 62dc459 | 2019-02-18 15:19:04 +0800 | [diff] [blame] | 295 | /* atomic flag definitions */ |
Gao Xiang | a5876e2 | 2019-09-04 10:08:56 +0800 | [diff] [blame] | 296 | #define EROFS_I_EA_INITED_BIT 0 |
| 297 | #define EROFS_I_Z_INITED_BIT 1 |
Gao Xiang | 62dc459 | 2019-02-18 15:19:04 +0800 | [diff] [blame] | 298 | |
| 299 | /* bitlock definitions (arranged in reverse order) */ |
Gao Xiang | a5876e2 | 2019-09-04 10:08:56 +0800 | [diff] [blame] | 300 | #define EROFS_I_BL_XATTR_BIT (BITS_PER_LONG - 1) |
| 301 | #define EROFS_I_BL_Z_BIT (BITS_PER_LONG - 2) |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 302 | |
Gao Xiang | a5876e2 | 2019-09-04 10:08:56 +0800 | [diff] [blame] | 303 | struct erofs_inode { |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 304 | erofs_nid_t nid; |
Gao Xiang | 62dc459 | 2019-02-18 15:19:04 +0800 | [diff] [blame] | 305 | |
| 306 | /* atomic flags (including bitlocks) */ |
| 307 | unsigned long flags; |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 308 | |
Gao Xiang | 8a76568 | 2019-09-04 10:08:54 +0800 | [diff] [blame] | 309 | unsigned char datalayout; |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 310 | unsigned char inode_isize; |
| 311 | unsigned short xattr_isize; |
| 312 | |
Pratik Shinde | e82a9a1 | 2019-07-15 17:51:27 +0530 | [diff] [blame] | 313 | unsigned int xattr_shared_count; |
| 314 | unsigned int *xattr_shared_xattrs; |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 315 | |
Gao Xiang | 152a333 | 2019-06-24 15:22:52 +0800 | [diff] [blame] | 316 | union { |
| 317 | erofs_blk_t raw_blkaddr; |
Gao Xiang | c5aa903 | 2021-08-20 18:00:19 +0800 | [diff] [blame] | 318 | struct { |
| 319 | unsigned short chunkformat; |
| 320 | unsigned char chunkbits; |
| 321 | }; |
Gao Xiang | 152a333 | 2019-06-24 15:22:52 +0800 | [diff] [blame] | 322 | #ifdef CONFIG_EROFS_FS_ZIP |
| 323 | struct { |
| 324 | unsigned short z_advise; |
| 325 | unsigned char z_algorithmtype[2]; |
| 326 | unsigned char z_logical_clusterbits; |
Yue Hu | ab92184 | 2021-12-28 13:46:04 +0800 | [diff] [blame] | 327 | unsigned long z_tailextent_headlcn; |
| 328 | unsigned int z_idataoff; |
| 329 | unsigned short z_idata_size; |
Gao Xiang | 152a333 | 2019-06-24 15:22:52 +0800 | [diff] [blame] | 330 | }; |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 331 | #endif /* CONFIG_EROFS_FS_ZIP */ |
Gao Xiang | 152a333 | 2019-06-24 15:22:52 +0800 | [diff] [blame] | 332 | }; |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 333 | /* the corresponding vfs inode */ |
| 334 | struct inode vfs_inode; |
| 335 | }; |
| 336 | |
Gao Xiang | a5876e2 | 2019-09-04 10:08:56 +0800 | [diff] [blame] | 337 | #define EROFS_I(ptr) \ |
| 338 | container_of(ptr, struct erofs_inode, vfs_inode) |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 339 | |
Gao Xiang | 99634bf | 2019-09-04 10:09:05 +0800 | [diff] [blame] | 340 | static inline unsigned long erofs_inode_datablocks(struct inode *inode) |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 341 | { |
| 342 | /* since i_size cannot be changed */ |
| 343 | return DIV_ROUND_UP(inode->i_size, EROFS_BLKSIZ); |
| 344 | } |
| 345 | |
Gao Xiang | 8a76568 | 2019-09-04 10:08:54 +0800 | [diff] [blame] | 346 | static inline unsigned int erofs_bitrange(unsigned int value, unsigned int bit, |
| 347 | unsigned int bits) |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 348 | { |
Gao Xiang | 8a76568 | 2019-09-04 10:08:54 +0800 | [diff] [blame] | 349 | |
| 350 | return (value >> bit) & ((1 << bits) - 1); |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 351 | } |
| 352 | |
Gao Xiang | 8a76568 | 2019-09-04 10:08:54 +0800 | [diff] [blame] | 353 | |
| 354 | static inline unsigned int erofs_inode_version(unsigned int value) |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 355 | { |
Gao Xiang | 8a76568 | 2019-09-04 10:08:54 +0800 | [diff] [blame] | 356 | return erofs_bitrange(value, EROFS_I_VERSION_BIT, |
| 357 | EROFS_I_VERSION_BITS); |
| 358 | } |
| 359 | |
| 360 | static inline unsigned int erofs_inode_datalayout(unsigned int value) |
| 361 | { |
| 362 | return erofs_bitrange(value, EROFS_I_DATALAYOUT_BIT, |
| 363 | EROFS_I_DATALAYOUT_BITS); |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 364 | } |
| 365 | |
Gao Xiang | 3862929 | 2021-10-09 04:08:39 +0800 | [diff] [blame] | 366 | /* |
| 367 | * Different from grab_cache_page_nowait(), reclaiming is never triggered |
| 368 | * when allocating new pages. |
| 369 | */ |
| 370 | static inline |
| 371 | struct page *erofs_grab_cache_page_nowait(struct address_space *mapping, |
| 372 | pgoff_t index) |
| 373 | { |
| 374 | return pagecache_get_page(mapping, index, |
| 375 | FGP_LOCK|FGP_CREAT|FGP_NOFS|FGP_NOWAIT, |
| 376 | readahead_gfp_mask(mapping) & ~__GFP_RECLAIM); |
| 377 | } |
| 378 | |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 379 | extern const struct super_operations erofs_sops; |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 380 | |
| 381 | extern const struct address_space_operations erofs_raw_access_aops; |
Gao Xiang | 0c638f7 | 2019-11-08 11:37:33 +0800 | [diff] [blame] | 382 | extern const struct address_space_operations z_erofs_aops; |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 383 | |
| 384 | /* |
Yue Hu | 8137824 | 2021-03-25 15:10:08 +0800 | [diff] [blame] | 385 | * Logical to physical block mapping |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 386 | * |
| 387 | * Different with other file systems, it is used for 2 access modes: |
| 388 | * |
| 389 | * 1) RAW access mode: |
| 390 | * |
| 391 | * Users pass a valid (m_lblk, m_lofs -- usually 0) pair, |
| 392 | * and get the valid m_pblk, m_pofs and the longest m_len(in bytes). |
| 393 | * |
| 394 | * Note that m_lblk in the RAW access mode refers to the number of |
| 395 | * the compressed ondisk block rather than the uncompressed |
| 396 | * in-memory block for the compressed file. |
| 397 | * |
| 398 | * m_pofs equals to m_lofs except for the inline data page. |
| 399 | * |
| 400 | * 2) Normal access mode: |
| 401 | * |
| 402 | * If the inode is not compressed, it has no difference with |
| 403 | * the RAW access mode. However, if the inode is compressed, |
| 404 | * users should pass a valid (m_lblk, m_lofs) pair, and get |
| 405 | * the needed m_pblk, m_pofs, m_len to get the compressed data |
| 406 | * and the updated m_lblk, m_lofs which indicates the start |
| 407 | * of the corresponding uncompressed data in the file. |
| 408 | */ |
| 409 | enum { |
Gao Xiang | 8f89926 | 2021-10-09 04:08:37 +0800 | [diff] [blame] | 410 | BH_Encoded = BH_PrivateStart, |
Gao Xiang | b6a7618 | 2019-06-24 15:22:58 +0800 | [diff] [blame] | 411 | BH_FullMapped, |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 412 | }; |
| 413 | |
| 414 | /* Has a disk mapping */ |
| 415 | #define EROFS_MAP_MAPPED (1 << BH_Mapped) |
| 416 | /* Located in metadata (could be copied from bd_inode) */ |
| 417 | #define EROFS_MAP_META (1 << BH_Meta) |
Gao Xiang | 8f89926 | 2021-10-09 04:08:37 +0800 | [diff] [blame] | 418 | /* The extent is encoded */ |
| 419 | #define EROFS_MAP_ENCODED (1 << BH_Encoded) |
Gao Xiang | b6a7618 | 2019-06-24 15:22:58 +0800 | [diff] [blame] | 420 | /* The length of extent is full */ |
| 421 | #define EROFS_MAP_FULL_MAPPED (1 << BH_FullMapped) |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 422 | |
| 423 | struct erofs_map_blocks { |
Gao Xiang | 09c5437 | 2022-01-02 12:00:17 +0800 | [diff] [blame] | 424 | struct erofs_buf buf; |
| 425 | |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 426 | erofs_off_t m_pa, m_la; |
| 427 | u64 m_plen, m_llen; |
| 428 | |
Gao Xiang | dfeab2e | 2021-10-14 16:10:10 +0800 | [diff] [blame] | 429 | unsigned short m_deviceid; |
Gao Xiang | 8f89926 | 2021-10-09 04:08:37 +0800 | [diff] [blame] | 430 | char m_algorithmformat; |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 431 | unsigned int m_flags; |
| 432 | }; |
| 433 | |
Yue Hu | 8137824 | 2021-03-25 15:10:08 +0800 | [diff] [blame] | 434 | /* Flags used by erofs_map_blocks_flatmode() */ |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 435 | #define EROFS_GET_BLOCKS_RAW 0x0001 |
Gao Xiang | d95ae5e | 2021-08-18 23:22:31 +0800 | [diff] [blame] | 436 | /* |
| 437 | * Used to get the exact decompressed length, e.g. fiemap (consider lookback |
| 438 | * approach instead if possible since it's more metadata lightweight.) |
| 439 | */ |
| 440 | #define EROFS_GET_BLOCKS_FIEMAP 0x0002 |
Gao Xiang | 622cead | 2021-10-11 05:31:45 +0800 | [diff] [blame] | 441 | /* Used to map the whole extent if non-negligible data is requested for LZMA */ |
| 442 | #define EROFS_GET_BLOCKS_READMORE 0x0004 |
Yue Hu | ab92184 | 2021-12-28 13:46:04 +0800 | [diff] [blame] | 443 | /* Used to map tail extent for tailpacking inline pcluster */ |
| 444 | #define EROFS_GET_BLOCKS_FINDTAIL 0x0008 |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 445 | |
Gao Xiang | 8f89926 | 2021-10-09 04:08:37 +0800 | [diff] [blame] | 446 | enum { |
| 447 | Z_EROFS_COMPRESSION_SHIFTED = Z_EROFS_COMPRESSION_MAX, |
| 448 | Z_EROFS_COMPRESSION_RUNTIME_MAX |
| 449 | }; |
| 450 | |
Gao Xiang | 152a333 | 2019-06-24 15:22:52 +0800 | [diff] [blame] | 451 | /* zmap.c */ |
Gao Xiang | eadcd6b | 2021-08-13 13:29:31 +0800 | [diff] [blame] | 452 | extern const struct iomap_ops z_erofs_iomap_report_ops; |
| 453 | |
Chao Yu | 3b42341 | 2019-01-15 09:42:21 +0800 | [diff] [blame] | 454 | #ifdef CONFIG_EROFS_FS_ZIP |
Gao Xiang | 152a333 | 2019-06-24 15:22:52 +0800 | [diff] [blame] | 455 | int z_erofs_fill_inode(struct inode *inode); |
Chao Yu | 3b42341 | 2019-01-15 09:42:21 +0800 | [diff] [blame] | 456 | int z_erofs_map_blocks_iter(struct inode *inode, |
| 457 | struct erofs_map_blocks *map, |
| 458 | int flags); |
| 459 | #else |
Gao Xiang | ff784a7 | 2019-08-14 18:37:05 +0800 | [diff] [blame] | 460 | static inline int z_erofs_fill_inode(struct inode *inode) { return -EOPNOTSUPP; } |
Chao Yu | 3b42341 | 2019-01-15 09:42:21 +0800 | [diff] [blame] | 461 | static inline int z_erofs_map_blocks_iter(struct inode *inode, |
| 462 | struct erofs_map_blocks *map, |
| 463 | int flags) |
| 464 | { |
Gao Xiang | ff784a7 | 2019-08-14 18:37:05 +0800 | [diff] [blame] | 465 | return -EOPNOTSUPP; |
Chao Yu | 3b42341 | 2019-01-15 09:42:21 +0800 | [diff] [blame] | 466 | } |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 467 | #endif /* !CONFIG_EROFS_FS_ZIP */ |
Chao Yu | 3b42341 | 2019-01-15 09:42:21 +0800 | [diff] [blame] | 468 | |
Gao Xiang | dfeab2e | 2021-10-14 16:10:10 +0800 | [diff] [blame] | 469 | struct erofs_map_dev { |
| 470 | struct block_device *m_bdev; |
| 471 | struct dax_device *m_daxdev; |
Christoph Hellwig | de20511 | 2021-11-29 11:22:00 +0100 | [diff] [blame] | 472 | u64 m_dax_part_off; |
Gao Xiang | dfeab2e | 2021-10-14 16:10:10 +0800 | [diff] [blame] | 473 | |
| 474 | erofs_off_t m_pa; |
| 475 | unsigned int m_deviceid; |
| 476 | }; |
| 477 | |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 478 | /* data.c */ |
Huang Jianan | a08e67a | 2021-08-05 08:35:59 +0800 | [diff] [blame] | 479 | extern const struct file_operations erofs_file_fops; |
Gao Xiang | 09c5437 | 2022-01-02 12:00:17 +0800 | [diff] [blame] | 480 | void erofs_unmap_metabuf(struct erofs_buf *buf); |
Gao Xiang | c521e3a | 2022-01-02 12:00:14 +0800 | [diff] [blame] | 481 | void erofs_put_metabuf(struct erofs_buf *buf); |
| 482 | void *erofs_read_metabuf(struct erofs_buf *buf, struct super_block *sb, |
| 483 | erofs_blk_t blkaddr, enum erofs_kmap_type type); |
Gao Xiang | dfeab2e | 2021-10-14 16:10:10 +0800 | [diff] [blame] | 484 | int erofs_map_dev(struct super_block *sb, struct erofs_map_dev *dev); |
Gao Xiang | eadcd6b | 2021-08-13 13:29:31 +0800 | [diff] [blame] | 485 | int erofs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo, |
| 486 | u64 start, u64 len); |
Gao Xiang | 6e78901 | 2018-08-21 22:49:30 +0800 | [diff] [blame] | 487 | |
Gao Xiang | bfb8674 | 2018-07-26 20:21:45 +0800 | [diff] [blame] | 488 | /* inode.c */ |
Gao Xiang | 2abd781 | 2018-10-09 22:07:13 +0800 | [diff] [blame] | 489 | static inline unsigned long erofs_inode_hash(erofs_nid_t nid) |
| 490 | { |
| 491 | #if BITS_PER_LONG == 32 |
| 492 | return (nid >> 32) ^ (nid & 0xffffffff); |
| 493 | #else |
| 494 | return nid; |
| 495 | #endif |
| 496 | } |
| 497 | |
Gao Xiang | 6093982 | 2019-01-14 19:40:24 +0800 | [diff] [blame] | 498 | extern const struct inode_operations erofs_generic_iops; |
| 499 | extern const struct inode_operations erofs_symlink_iops; |
| 500 | extern const struct inode_operations erofs_fast_symlink_iops; |
Gao Xiang | b17500a | 2018-07-26 20:21:52 +0800 | [diff] [blame] | 501 | |
Gao Xiang | 2e1d663 | 2019-01-16 16:59:56 +0800 | [diff] [blame] | 502 | struct inode *erofs_iget(struct super_block *sb, erofs_nid_t nid, bool dir); |
Christian Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 503 | int erofs_getattr(struct user_namespace *mnt_userns, const struct path *path, |
| 504 | struct kstat *stat, u32 request_mask, |
| 505 | unsigned int query_flags); |
Gao Xiang | 2e1d663 | 2019-01-16 16:59:56 +0800 | [diff] [blame] | 506 | |
Gao Xiang | 6093982 | 2019-01-14 19:40:24 +0800 | [diff] [blame] | 507 | /* namei.c */ |
| 508 | extern const struct inode_operations erofs_dir_iops; |
| 509 | |
| 510 | int erofs_namei(struct inode *dir, struct qstr *name, |
| 511 | erofs_nid_t *nid, unsigned int *d_type); |
| 512 | |
| 513 | /* dir.c */ |
| 514 | extern const struct file_operations erofs_dir_fops; |
| 515 | |
Gao Xiang | 598162d | 2021-04-07 12:39:26 +0800 | [diff] [blame] | 516 | static inline void *erofs_vm_map_ram(struct page **pages, unsigned int count) |
| 517 | { |
| 518 | int retried = 0; |
| 519 | |
| 520 | while (1) { |
| 521 | void *p = vm_map_ram(pages, count, -1); |
| 522 | |
| 523 | /* retry two more times (totally 3 times) */ |
| 524 | if (p || ++retried >= 3) |
| 525 | return p; |
| 526 | vm_unmap_aliases(); |
| 527 | } |
| 528 | return NULL; |
| 529 | } |
| 530 | |
Gao Xiang | 5248873 | 2021-04-10 03:06:30 +0800 | [diff] [blame] | 531 | /* pcpubuf.c */ |
| 532 | void *erofs_get_pcpubuf(unsigned int requiredpages); |
| 533 | void erofs_put_pcpubuf(void *ptr); |
| 534 | int erofs_pcpubuf_growsize(unsigned int nrpages); |
| 535 | void erofs_pcpubuf_init(void); |
| 536 | void erofs_pcpubuf_exit(void); |
| 537 | |
Huang Jianan | 168e9a7 | 2021-12-01 22:54:36 +0800 | [diff] [blame] | 538 | /* sysfs.c */ |
| 539 | int erofs_register_sysfs(struct super_block *sb); |
| 540 | void erofs_unregister_sysfs(struct super_block *sb); |
| 541 | int __init erofs_init_sysfs(void); |
| 542 | void erofs_exit_sysfs(void); |
| 543 | |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 544 | /* utils.c / zdata.c */ |
Gao Xiang | eaa9172 | 2021-10-22 17:01:20 +0800 | [diff] [blame] | 545 | struct page *erofs_allocpage(struct page **pagepool, gfp_t gfp); |
| 546 | static inline void erofs_pagepool_add(struct page **pagepool, |
| 547 | struct page *page) |
| 548 | { |
| 549 | set_page_private(page, (unsigned long)*pagepool); |
| 550 | *pagepool = page; |
| 551 | } |
| 552 | void erofs_release_pages(struct page **pagepool); |
Gao Xiang | fa61a33 | 2019-06-24 15:22:53 +0800 | [diff] [blame] | 553 | |
Gao Xiang | 22fe04a | 2019-07-31 23:57:39 +0800 | [diff] [blame] | 554 | #ifdef CONFIG_EROFS_FS_ZIP |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 555 | int erofs_workgroup_put(struct erofs_workgroup *grp); |
| 556 | struct erofs_workgroup *erofs_find_workgroup(struct super_block *sb, |
Vladimir Zapolskiy | 997626d | 2020-01-02 14:01:16 +0200 | [diff] [blame] | 557 | pgoff_t index); |
Gao Xiang | 64094a0 | 2020-02-20 10:46:42 +0800 | [diff] [blame] | 558 | struct erofs_workgroup *erofs_insert_workgroup(struct super_block *sb, |
| 559 | struct erofs_workgroup *grp); |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 560 | void erofs_workgroup_free_rcu(struct erofs_workgroup *grp); |
Gao Xiang | 22fe04a | 2019-07-31 23:57:39 +0800 | [diff] [blame] | 561 | void erofs_shrinker_register(struct super_block *sb); |
| 562 | void erofs_shrinker_unregister(struct super_block *sb); |
| 563 | int __init erofs_init_shrinker(void); |
| 564 | void erofs_exit_shrinker(void); |
| 565 | int __init z_erofs_init_zip_subsystem(void); |
| 566 | void z_erofs_exit_zip_subsystem(void); |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 567 | int erofs_try_to_free_all_cached_pages(struct erofs_sb_info *sbi, |
| 568 | struct erofs_workgroup *egrp); |
Yue Hu | d252ff3 | 2021-08-10 15:24:16 +0800 | [diff] [blame] | 569 | int erofs_try_to_free_cached_page(struct page *page); |
Huang Jianan | 5d50538 | 2021-03-29 09:23:06 +0800 | [diff] [blame] | 570 | int z_erofs_load_lz4_config(struct super_block *sb, |
Gao Xiang | 46249cd | 2021-03-29 09:23:07 +0800 | [diff] [blame] | 571 | struct erofs_super_block *dsb, |
| 572 | struct z_erofs_lz4_cfgs *lz4, int len); |
Gao Xiang | 22fe04a | 2019-07-31 23:57:39 +0800 | [diff] [blame] | 573 | #else |
| 574 | static inline void erofs_shrinker_register(struct super_block *sb) {} |
| 575 | static inline void erofs_shrinker_unregister(struct super_block *sb) {} |
| 576 | static inline int erofs_init_shrinker(void) { return 0; } |
| 577 | static inline void erofs_exit_shrinker(void) {} |
| 578 | static inline int z_erofs_init_zip_subsystem(void) { return 0; } |
| 579 | static inline void z_erofs_exit_zip_subsystem(void) {} |
Huang Jianan | 5d50538 | 2021-03-29 09:23:06 +0800 | [diff] [blame] | 580 | static inline int z_erofs_load_lz4_config(struct super_block *sb, |
Gao Xiang | 46249cd | 2021-03-29 09:23:07 +0800 | [diff] [blame] | 581 | struct erofs_super_block *dsb, |
| 582 | struct z_erofs_lz4_cfgs *lz4, int len) |
Huang Jianan | 5d50538 | 2021-03-29 09:23:06 +0800 | [diff] [blame] | 583 | { |
Gao Xiang | 1437371 | 2021-03-29 18:00:12 +0800 | [diff] [blame] | 584 | if (lz4 || dsb->u1.lz4_max_distance) { |
Huang Jianan | 5d50538 | 2021-03-29 09:23:06 +0800 | [diff] [blame] | 585 | erofs_err(sb, "lz4 algorithm isn't enabled"); |
| 586 | return -EINVAL; |
| 587 | } |
| 588 | return 0; |
| 589 | } |
Gao Xiang | 22fe04a | 2019-07-31 23:57:39 +0800 | [diff] [blame] | 590 | #endif /* !CONFIG_EROFS_FS_ZIP */ |
Gao Xiang | 2e1d663 | 2019-01-16 16:59:56 +0800 | [diff] [blame] | 591 | |
Gao Xiang | 622cead | 2021-10-11 05:31:45 +0800 | [diff] [blame] | 592 | #ifdef CONFIG_EROFS_FS_ZIP_LZMA |
| 593 | int z_erofs_lzma_init(void); |
| 594 | void z_erofs_lzma_exit(void); |
| 595 | int z_erofs_load_lzma_config(struct super_block *sb, |
| 596 | struct erofs_super_block *dsb, |
| 597 | struct z_erofs_lzma_cfgs *lzma, int size); |
| 598 | #else |
| 599 | static inline int z_erofs_lzma_init(void) { return 0; } |
| 600 | static inline int z_erofs_lzma_exit(void) { return 0; } |
| 601 | static inline int z_erofs_load_lzma_config(struct super_block *sb, |
| 602 | struct erofs_super_block *dsb, |
| 603 | struct z_erofs_lzma_cfgs *lzma, int size) { |
| 604 | if (lzma) { |
| 605 | erofs_err(sb, "lzma algorithm isn't enabled"); |
| 606 | return -EINVAL; |
| 607 | } |
| 608 | return 0; |
| 609 | } |
| 610 | #endif /* !CONFIG_EROFS_FS_ZIP */ |
| 611 | |
Gao Xiang | a6b9b1d | 2019-08-14 18:37:03 +0800 | [diff] [blame] | 612 | #define EFSCORRUPTED EUCLEAN /* Filesystem is corrupted */ |
| 613 | |
Gao Xiang | 14f362b | 2019-07-31 23:57:36 +0800 | [diff] [blame] | 614 | #endif /* __EROFS_INTERNAL_H */ |