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