blob: ea510158b3148bd497bf61553b4320f20918b71d [file] [log] [blame]
Chao Yu6d1a8322018-09-12 09:16:07 +08001// SPDX-License-Identifier: GPL-2.0
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003 * fs/f2fs/f2fs.h
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09007 */
8#ifndef _LINUX_F2FS_H
9#define _LINUX_F2FS_H
10
Chao Yub84f9a72018-09-27 18:34:52 +080011#include <linux/uio.h>
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090012#include <linux/types.h>
13#include <linux/page-flags.h>
14#include <linux/buffer_head.h>
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090015#include <linux/slab.h>
16#include <linux/crc32.h>
17#include <linux/magic.h>
Jaegeuk Kimc2d715d2013-08-08 15:56:49 +090018#include <linux/kobject.h>
Gu Zheng7bd59382013-10-22 14:52:26 +080019#include <linux/sched.h>
Hyojun Kim63da4202017-10-06 17:10:08 -070020#include <linux/writeback.h>
Jaegeuk Kim2f17e342017-11-16 16:59:14 +080021#include <linux/cred.h>
Jaegeuk Kim39307a82015-09-22 13:50:47 -070022#include <linux/vmalloc.h>
Jaegeuk Kim740432f2015-08-14 11:43:56 -070023#include <linux/bio.h>
Jaegeuk Kimd0239e12016-01-08 16:57:48 -080024#include <linux/blkdev.h>
Hyojun Kim63da4202017-10-06 17:10:08 -070025#include <linux/quotaops.h>
Keith Mok43b65732016-03-02 12:04:24 -080026#include <crypto/hash.h>
Kees Cookc4eb50d2018-06-12 14:28:16 -070027#include <linux/overflow.h>
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090028
Jaegeuk Kim8dec0742017-06-22 12:14:40 -070029#define __FS_HAS_ENCRYPTION IS_ENABLED(CONFIG_F2FS_FS_ENCRYPTION)
30#include <linux/fscrypt.h>
31
Jaegeuk Kim5d56b672013-10-29 15:14:54 +090032#ifdef CONFIG_F2FS_CHECK_FS
Jaegeuk Kim9850cf42014-09-02 15:52:58 -070033#define f2fs_bug_on(sbi, condition) BUG_ON(condition)
Jaegeuk Kim5d56b672013-10-29 15:14:54 +090034#else
Jaegeuk Kim9850cf42014-09-02 15:52:58 -070035#define f2fs_bug_on(sbi, condition) \
36 do { \
37 if (unlikely(condition)) { \
38 WARN_ON(1); \
Chao Yucaf00472015-01-28 17:48:42 +080039 set_sbi_flag(sbi, SBI_NEED_FSCK); \
Jaegeuk Kim9850cf42014-09-02 15:52:58 -070040 } \
41 } while (0)
Jaegeuk Kim5d56b672013-10-29 15:14:54 +090042#endif
43
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070044enum {
45 FAULT_KMALLOC,
Jaegeuk Kim2f17e342017-11-16 16:59:14 +080046 FAULT_KVMALLOC,
Jaegeuk Kimc41f3cc32016-04-29 16:17:09 -070047 FAULT_PAGE_ALLOC,
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +080048 FAULT_PAGE_GET,
49 FAULT_ALLOC_BIO,
Jaegeuk Kimcb789422016-04-29 16:29:22 -070050 FAULT_ALLOC_NID,
51 FAULT_ORPHAN,
52 FAULT_BLOCK,
53 FAULT_DIR_DEPTH,
Jaegeuk Kim53aa6bb2016-05-25 15:24:18 -070054 FAULT_EVICT_INODE,
Hyojun Kim63da4202017-10-06 17:10:08 -070055 FAULT_TRUNCATE,
Chao Yu40292b92018-09-12 09:22:29 +080056 FAULT_READ_IO,
Chao Yu0f348022016-09-26 19:45:55 +080057 FAULT_CHECKPOINT,
Chao Yu8bdb4192018-08-06 20:30:18 +080058 FAULT_DISCARD,
Chao Yu40292b92018-09-12 09:22:29 +080059 FAULT_WRITE_IO,
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070060 FAULT_MAX,
61};
62
Arnd Bergmann33c54d52018-08-13 23:38:06 +020063#ifdef CONFIG_F2FS_FAULT_INJECTION
Chao Yu0ef692e2018-08-08 17:36:41 +080064#define F2FS_ALL_FAULT_TYPE ((1 << FAULT_MAX) - 1)
65
Sheng Yong08796892016-05-16 12:38:50 +080066struct f2fs_fault_info {
67 atomic_t inject_ops;
68 unsigned int inject_rate;
69 unsigned int inject_type;
70};
71
Gao Xiang6b308c32018-06-30 23:57:03 +080072extern char *f2fs_fault_name[FAULT_MAX];
Hyojun Kim63da4202017-10-06 17:10:08 -070073#define IS_FAULT_SET(fi, type) ((fi)->inject_type & (1 << (type)))
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070074#endif
75
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090076/*
77 * For mount options
78 */
79#define F2FS_MOUNT_BG_GC 0x00000001
80#define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002
81#define F2FS_MOUNT_DISCARD 0x00000004
82#define F2FS_MOUNT_NOHEAP 0x00000008
83#define F2FS_MOUNT_XATTR_USER 0x00000010
84#define F2FS_MOUNT_POSIX_ACL 0x00000020
85#define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040
Jaegeuk Kim444c5802013-08-08 15:16:22 +090086#define F2FS_MOUNT_INLINE_XATTR 0x00000080
Huajun Li1001b342013-11-10 23:13:16 +080087#define F2FS_MOUNT_INLINE_DATA 0x00000100
Chao Yu34d67de2014-09-24 18:15:19 +080088#define F2FS_MOUNT_INLINE_DENTRY 0x00000200
89#define F2FS_MOUNT_FLUSH_MERGE 0x00000400
90#define F2FS_MOUNT_NOBARRIER 0x00000800
Jaegeuk Kimd5053a342014-10-30 22:47:03 -070091#define F2FS_MOUNT_FASTBOOT 0x00001000
Chao Yu89672152015-02-05 17:55:51 +080092#define F2FS_MOUNT_EXTENT_CACHE 0x00002000
Jaegeuk Kim6aefd932015-10-05 11:02:54 -070093#define F2FS_MOUNT_FORCE_FG_GC 0x00004000
Chao Yu343f40f2015-12-16 13:12:16 +080094#define F2FS_MOUNT_DATA_FLUSH 0x00008000
Jaegeuk Kim73faec42016-04-29 15:34:32 -070095#define F2FS_MOUNT_FAULT_INJECTION 0x00010000
Jaegeuk Kim36abef42016-06-03 19:29:38 -070096#define F2FS_MOUNT_ADAPTIVE 0x00020000
97#define F2FS_MOUNT_LFS 0x00040000
Hyojun Kim63da4202017-10-06 17:10:08 -070098#define F2FS_MOUNT_USRQUOTA 0x00080000
99#define F2FS_MOUNT_GRPQUOTA 0x00100000
100#define F2FS_MOUNT_PRJQUOTA 0x00200000
101#define F2FS_MOUNT_QUOTA 0x00400000
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800102#define F2FS_MOUNT_INLINE_XATTR_SIZE 0x00800000
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800103#define F2FS_MOUNT_RESERVE_ROOT 0x01000000
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -0700104#define F2FS_MOUNT_DISABLE_CHECKPOINT 0x02000000
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900105
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800106#define F2FS_OPTION(sbi) ((sbi)->mount_opt)
107#define clear_opt(sbi, option) (F2FS_OPTION(sbi).opt &= ~F2FS_MOUNT_##option)
108#define set_opt(sbi, option) (F2FS_OPTION(sbi).opt |= F2FS_MOUNT_##option)
109#define test_opt(sbi, option) (F2FS_OPTION(sbi).opt & F2FS_MOUNT_##option)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900110
111#define ver_after(a, b) (typecheck(unsigned long long, a) && \
112 typecheck(unsigned long long, b) && \
113 ((long long)((a) - (b)) > 0))
114
Jaegeuk Kima9841c42013-05-24 12:41:04 +0900115typedef u32 block_t; /*
116 * should not change u32, since it is the on-disk block
117 * address format, __le32.
118 */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900119typedef u32 nid_t;
120
121struct f2fs_mount_info {
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800122 unsigned int opt;
123 int write_io_size_bits; /* Write IO size bits */
124 block_t root_reserved_blocks; /* root reserved blocks */
125 kuid_t s_resuid; /* reserved blocks for uid */
126 kgid_t s_resgid; /* reserved blocks for gid */
127 int active_logs; /* # of active logs */
128 int inline_xattr_size; /* inline xattr size */
129#ifdef CONFIG_F2FS_FAULT_INJECTION
130 struct f2fs_fault_info fault_info; /* For fault injection */
131#endif
132#ifdef CONFIG_QUOTA
133 /* Names of quota files with journalled quota */
134 char *s_qf_names[MAXQUOTAS];
135 int s_jquota_fmt; /* Format of quota to use */
136#endif
137 /* For which write hints are passed down to block layer */
138 int whint_mode;
139 int alloc_mode; /* segment allocation policy */
140 int fsync_mode; /* fsync policy */
141 bool test_dummy_encryption; /* test dummy encryption */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900142};
143
Hyojun Kim63da4202017-10-06 17:10:08 -0700144#define F2FS_FEATURE_ENCRYPT 0x0001
145#define F2FS_FEATURE_BLKZONED 0x0002
146#define F2FS_FEATURE_ATOMIC_WRITE 0x0004
147#define F2FS_FEATURE_EXTRA_ATTR 0x0008
148#define F2FS_FEATURE_PRJQUOTA 0x0010
149#define F2FS_FEATURE_INODE_CHKSUM 0x0020
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800150#define F2FS_FEATURE_FLEXIBLE_INLINE_XATTR 0x0040
151#define F2FS_FEATURE_QUOTA_INO 0x0080
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800152#define F2FS_FEATURE_INODE_CRTIME 0x0100
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800153#define F2FS_FEATURE_LOST_FOUND 0x0200
154#define F2FS_FEATURE_VERITY 0x0400 /* reserved */
Junling Zheng0570b3f2018-09-28 20:25:56 +0800155#define F2FS_FEATURE_SB_CHKSUM 0x0800
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700156
Jaegeuk Kim76f105a2015-04-13 15:10:36 -0700157#define F2FS_HAS_FEATURE(sb, mask) \
158 ((F2FS_SB(sb)->raw_super->feature & cpu_to_le32(mask)) != 0)
159#define F2FS_SET_FEATURE(sb, mask) \
Hyojun Kim63da4202017-10-06 17:10:08 -0700160 (F2FS_SB(sb)->raw_super->feature |= cpu_to_le32(mask))
Jaegeuk Kim76f105a2015-04-13 15:10:36 -0700161#define F2FS_CLEAR_FEATURE(sb, mask) \
Hyojun Kim63da4202017-10-06 17:10:08 -0700162 (F2FS_SB(sb)->raw_super->feature &= ~cpu_to_le32(mask))
Jaegeuk Kim76f105a2015-04-13 15:10:36 -0700163
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900164/*
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800165 * Default values for user and/or group using reserved blocks
166 */
167#define F2FS_DEF_RESUID 0
168#define F2FS_DEF_RESGID 0
169
170/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900171 * For checkpoint manager
172 */
173enum {
174 NAT_BITMAP,
175 SIT_BITMAP
176};
177
Hyojun Kim63da4202017-10-06 17:10:08 -0700178#define CP_UMOUNT 0x00000001
179#define CP_FASTBOOT 0x00000002
180#define CP_SYNC 0x00000004
181#define CP_RECOVERY 0x00000008
182#define CP_DISCARD 0x00000010
183#define CP_TRIMMED 0x00000020
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -0700184#define CP_PAUSE 0x00000040
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700185
Hyojun Kim63da4202017-10-06 17:10:08 -0700186#define MAX_DISCARD_BLOCKS(sbi) BLKS_PER_SEC(sbi)
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800187#define DEF_MAX_DISCARD_REQUEST 8 /* issue 8 discards per round */
Hyojun Kim63da4202017-10-06 17:10:08 -0700188#define DEF_MIN_DISCARD_ISSUE_TIME 50 /* 50 ms, if exists */
Yunlei He8d74ddc2018-04-08 15:11:11 +0800189#define DEF_MID_DISCARD_ISSUE_TIME 500 /* 500 ms, if device busy */
Hyojun Kim63da4202017-10-06 17:10:08 -0700190#define DEF_MAX_DISCARD_ISSUE_TIME 60000 /* 60 s, if no candidates */
Jaegeuk Kim0c296e32018-05-24 13:57:26 -0700191#define DEF_DISCARD_URGENT_UTIL 80 /* do more discard over 80% */
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700192#define DEF_CP_INTERVAL 60 /* 60 secs */
Chao Yudcf25fe2016-07-15 19:25:47 +0800193#define DEF_IDLE_INTERVAL 5 /* 5 secs */
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -0700194#define DEF_DISABLE_INTERVAL 5 /* 5 secs */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -0800195
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700196struct cp_control {
197 int reason;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700198 __u64 trim_start;
199 __u64 trim_end;
200 __u64 trim_minlen;
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700201};
202
Chao Yu662befd2014-02-07 16:11:53 +0800203/*
Chao Yud05e8712018-06-05 17:44:11 +0800204 * indicate meta/data type
Chao Yu662befd2014-02-07 16:11:53 +0800205 */
206enum {
207 META_CP,
208 META_NAT,
Chao Yu81c1a0f12014-02-27 19:12:24 +0800209 META_SIT,
Jaegeuk Kim4c521f492014-09-11 13:49:55 -0700210 META_SSA,
Chao Yud826d4a2018-09-29 18:31:27 +0800211 META_MAX,
Jaegeuk Kim4c521f492014-09-11 13:49:55 -0700212 META_POR,
Chao Yud05e8712018-06-05 17:44:11 +0800213 DATA_GENERIC,
214 META_GENERIC,
Chao Yu662befd2014-02-07 16:11:53 +0800215};
216
Jaegeuk Kim6451e042014-07-25 15:47:17 -0700217/* for the list of ino */
218enum {
219 ORPHAN_INO, /* for orphan ino list */
Jaegeuk Kimfff04f92014-07-25 07:40:59 -0700220 APPEND_INO, /* for append ino list */
221 UPDATE_INO, /* for update ino list */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800222 TRANS_DIR_INO, /* for trasactions dir ino list */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800223 FLUSH_INO, /* for multiple device flushing */
Jaegeuk Kim6451e042014-07-25 15:47:17 -0700224 MAX_INO_ENTRY, /* max. list */
225};
226
227struct ino_entry {
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800228 struct list_head list; /* list head */
229 nid_t ino; /* inode number */
230 unsigned int dirty_device; /* dirty device bitmap */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900231};
232
Chao Yu2710fd72015-12-15 13:30:45 +0800233/* for the list of inodes to be GCed */
Chao Yu06292072014-12-29 15:56:18 +0800234struct inode_entry {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900235 struct list_head list; /* list head */
236 struct inode *inode; /* vfs inode pointer */
237};
238
Chao Yu3d5c54a2018-08-02 23:03:19 +0800239struct fsync_node_entry {
240 struct list_head list; /* list head */
241 struct page *page; /* warm node page pointer */
242 unsigned int seq_id; /* sequence id */
243};
244
Hyojun Kim63da4202017-10-06 17:10:08 -0700245/* for the bitmap indicate blocks to be discarded */
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +0900246struct discard_entry {
247 struct list_head list; /* list head */
Hyojun Kim63da4202017-10-06 17:10:08 -0700248 block_t start_blkaddr; /* start blockaddr of current segment */
249 unsigned char discard_map[SIT_VBLOCK_MAP_SIZE]; /* segment discard bitmap */
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +0900250};
251
Hyojun Kim63da4202017-10-06 17:10:08 -0700252/* default discard granularity of inner discard thread, unit: block count */
253#define DEFAULT_DISCARD_GRANULARITY 16
254
255/* max discard pend list number */
256#define MAX_PLIST_NUM 512
257#define plist_idx(blk_num) ((blk_num) >= MAX_PLIST_NUM ? \
258 (MAX_PLIST_NUM - 1) : (blk_num - 1))
259
Hyojun Kim63da4202017-10-06 17:10:08 -0700260enum {
Chao Yuc813f5a2018-08-06 22:43:50 +0800261 D_PREP, /* initial */
262 D_PARTIAL, /* partially submitted */
263 D_SUBMIT, /* all submitted */
264 D_DONE, /* finished */
Hyojun Kim63da4202017-10-06 17:10:08 -0700265};
266
267struct discard_info {
268 block_t lstart; /* logical start address */
269 block_t len; /* length */
270 block_t start; /* actual start address in dev */
271};
272
273struct discard_cmd {
274 struct rb_node rb_node; /* rb node located in rb-tree */
275 union {
276 struct {
277 block_t lstart; /* logical start address */
278 block_t len; /* length */
279 block_t start; /* actual start address in dev */
280 };
281 struct discard_info di; /* discard info */
282
283 };
284 struct list_head list; /* command list */
285 struct completion wait; /* compleation */
286 struct block_device *bdev; /* bdev */
287 unsigned short ref; /* reference count */
288 unsigned char state; /* state */
Chao Yuc813f5a2018-08-06 22:43:50 +0800289 unsigned char issuing; /* issuing discard */
Hyojun Kim63da4202017-10-06 17:10:08 -0700290 int error; /* bio error */
Chao Yuc813f5a2018-08-06 22:43:50 +0800291 spinlock_t lock; /* for state/bio_ref updating */
292 unsigned short bio_ref; /* bio reference count */
Hyojun Kim63da4202017-10-06 17:10:08 -0700293};
294
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800295enum {
296 DPOLICY_BG,
297 DPOLICY_FORCE,
298 DPOLICY_FSTRIM,
299 DPOLICY_UMOUNT,
300 MAX_DPOLICY,
301};
302
303struct discard_policy {
304 int type; /* type of discard */
305 unsigned int min_interval; /* used for candidates exist */
Yunlei He8d74ddc2018-04-08 15:11:11 +0800306 unsigned int mid_interval; /* used for device busy */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800307 unsigned int max_interval; /* used for candidates not exist */
308 unsigned int max_requests; /* # of discards issued per round */
309 unsigned int io_aware_gran; /* minimum granularity discard not be aware of I/O */
310 bool io_aware; /* issue discard in idle time */
311 bool sync; /* submit discard with REQ_SYNC flag */
Chao Yuf4a0eb52018-07-08 22:11:01 +0800312 bool ordered; /* issue discard by lba order */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800313 unsigned int granularity; /* discard granularity */
314};
315
Hyojun Kim63da4202017-10-06 17:10:08 -0700316struct discard_cmd_control {
317 struct task_struct *f2fs_issue_discard; /* discard thread */
318 struct list_head entry_list; /* 4KB discard entry list */
319 struct list_head pend_list[MAX_PLIST_NUM];/* store pending entries */
Hyojun Kim63da4202017-10-06 17:10:08 -0700320 struct list_head wait_list; /* store on-flushing entries */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800321 struct list_head fstrim_list; /* in-flight discard from fstrim */
Hyojun Kim63da4202017-10-06 17:10:08 -0700322 wait_queue_head_t discard_wait_queue; /* waiting queue for wake-up */
323 unsigned int discard_wake; /* to wake up discard thread */
324 struct mutex cmd_lock;
325 unsigned int nr_discards; /* # of discards in the list */
326 unsigned int max_discards; /* max. discards to be issued */
327 unsigned int discard_granularity; /* discard granularity */
328 unsigned int undiscard_blks; /* # of undiscard blocks */
Chao Yuf4a0eb52018-07-08 22:11:01 +0800329 unsigned int next_pos; /* next discard position */
Hyojun Kim63da4202017-10-06 17:10:08 -0700330 atomic_t issued_discard; /* # of issued discard */
331 atomic_t issing_discard; /* # of issing discard */
332 atomic_t discard_cmd_cnt; /* # of cached cmd count */
333 struct rb_root root; /* root of discard rb-tree */
Chao Yube92eee2018-06-22 16:06:59 +0800334 bool rbtree_check; /* config for consistence check */
Chao Yu275b66b2016-08-29 23:58:34 +0800335};
336
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900337/* for the list of fsync inodes, used only during recovery */
338struct fsync_inode_entry {
339 struct list_head list; /* list head */
340 struct inode *inode; /* vfs inode pointer */
Jaegeuk Kimc52e1b12014-09-11 14:29:06 -0700341 block_t blkaddr; /* block address locating the last fsync */
342 block_t last_dentry; /* block address locating the last dentry */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900343};
344
Hyojun Kim63da4202017-10-06 17:10:08 -0700345#define nats_in_cursum(jnl) (le16_to_cpu((jnl)->n_nats))
346#define sits_in_cursum(jnl) (le16_to_cpu((jnl)->n_sits))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900347
Hyojun Kim63da4202017-10-06 17:10:08 -0700348#define nat_in_journal(jnl, i) ((jnl)->nat_j.entries[i].ne)
349#define nid_in_journal(jnl, i) ((jnl)->nat_j.entries[i].nid)
350#define sit_in_journal(jnl, i) ((jnl)->sit_j.entries[i].se)
351#define segno_in_journal(jnl, i) ((jnl)->sit_j.entries[i].segno)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900352
Chao Yudfc08a12016-02-14 18:50:40 +0800353#define MAX_NAT_JENTRIES(jnl) (NAT_JOURNAL_ENTRIES - nats_in_cursum(jnl))
354#define MAX_SIT_JENTRIES(jnl) (SIT_JOURNAL_ENTRIES - sits_in_cursum(jnl))
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700355
Chao Yudfc08a12016-02-14 18:50:40 +0800356static inline int update_nats_in_cursum(struct f2fs_journal *journal, int i)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900357{
Chao Yudfc08a12016-02-14 18:50:40 +0800358 int before = nats_in_cursum(journal);
Hyojun Kim63da4202017-10-06 17:10:08 -0700359
Chao Yudfc08a12016-02-14 18:50:40 +0800360 journal->n_nats = cpu_to_le16(before + i);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900361 return before;
362}
363
Chao Yudfc08a12016-02-14 18:50:40 +0800364static inline int update_sits_in_cursum(struct f2fs_journal *journal, int i)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900365{
Chao Yudfc08a12016-02-14 18:50:40 +0800366 int before = sits_in_cursum(journal);
Hyojun Kim63da4202017-10-06 17:10:08 -0700367
Chao Yudfc08a12016-02-14 18:50:40 +0800368 journal->n_sits = cpu_to_le16(before + i);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900369 return before;
370}
371
Chao Yudfc08a12016-02-14 18:50:40 +0800372static inline bool __has_cursum_space(struct f2fs_journal *journal,
373 int size, int type)
Chao Yu184a5cd2014-09-04 18:13:01 +0800374{
375 if (type == NAT_JOURNAL)
Chao Yudfc08a12016-02-14 18:50:40 +0800376 return size <= MAX_NAT_JENTRIES(journal);
377 return size <= MAX_SIT_JENTRIES(journal);
Chao Yu184a5cd2014-09-04 18:13:01 +0800378}
379
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900380/*
Namjae Jeone9750822013-02-04 23:41:41 +0900381 * ioctl commands
382 */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700383#define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS
384#define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS
Chao Yud49f3e82015-01-23 20:36:04 +0800385#define F2FS_IOC_GETVERSION FS_IOC_GETVERSION
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700386
387#define F2FS_IOCTL_MAGIC 0xf5
388#define F2FS_IOC_START_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 1)
389#define F2FS_IOC_COMMIT_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 2)
Jaegeuk Kim02a13352014-10-06 16:11:16 -0700390#define F2FS_IOC_START_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 3)
Jaegeuk Kim1e843712014-12-09 06:08:59 -0800391#define F2FS_IOC_RELEASE_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 4)
392#define F2FS_IOC_ABORT_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 5)
Hyojun Kim63da4202017-10-06 17:10:08 -0700393#define F2FS_IOC_GARBAGE_COLLECT _IOW(F2FS_IOCTL_MAGIC, 6, __u32)
Chao Yu456b88e2015-10-05 22:24:19 +0800394#define F2FS_IOC_WRITE_CHECKPOINT _IO(F2FS_IOCTL_MAGIC, 7)
Hyojun Kim63da4202017-10-06 17:10:08 -0700395#define F2FS_IOC_DEFRAGMENT _IOWR(F2FS_IOCTL_MAGIC, 8, \
396 struct f2fs_defragment)
Jaegeuk Kim4dd6f972016-07-08 15:16:47 -0700397#define F2FS_IOC_MOVE_RANGE _IOWR(F2FS_IOCTL_MAGIC, 9, \
398 struct f2fs_move_range)
Hyojun Kim63da4202017-10-06 17:10:08 -0700399#define F2FS_IOC_FLUSH_DEVICE _IOW(F2FS_IOCTL_MAGIC, 10, \
400 struct f2fs_flush_device)
401#define F2FS_IOC_GARBAGE_COLLECT_RANGE _IOW(F2FS_IOCTL_MAGIC, 11, \
402 struct f2fs_gc_range)
403#define F2FS_IOC_GET_FEATURES _IOR(F2FS_IOCTL_MAGIC, 12, __u32)
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800404#define F2FS_IOC_SET_PIN_FILE _IOW(F2FS_IOCTL_MAGIC, 13, __u32)
405#define F2FS_IOC_GET_PIN_FILE _IOR(F2FS_IOCTL_MAGIC, 14, __u32)
406#define F2FS_IOC_PRECACHE_EXTENTS _IO(F2FS_IOCTL_MAGIC, 15)
Namjae Jeone9750822013-02-04 23:41:41 +0900407
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700408#define F2FS_IOC_SET_ENCRYPTION_POLICY FS_IOC_SET_ENCRYPTION_POLICY
409#define F2FS_IOC_GET_ENCRYPTION_POLICY FS_IOC_GET_ENCRYPTION_POLICY
410#define F2FS_IOC_GET_ENCRYPTION_PWSALT FS_IOC_GET_ENCRYPTION_PWSALT
Jaegeuk Kimf424f662015-04-20 15:19:06 -0700411
Jaegeuk Kim1abff932015-01-08 19:15:53 -0800412/*
413 * should be same as XFS_IOC_GOINGDOWN.
414 * Flags for going down operation used by FS_IOC_GOINGDOWN
415 */
416#define F2FS_IOC_SHUTDOWN _IOR('X', 125, __u32) /* Shutdown */
417#define F2FS_GOING_DOWN_FULLSYNC 0x0 /* going down with full sync */
418#define F2FS_GOING_DOWN_METASYNC 0x1 /* going down with metadata */
419#define F2FS_GOING_DOWN_NOSYNC 0x2 /* going down */
Jaegeuk Kimc912a822015-10-07 09:46:37 -0700420#define F2FS_GOING_DOWN_METAFLUSH 0x3 /* going down with meta flush */
Jaegeuk Kim1abff932015-01-08 19:15:53 -0800421
Namjae Jeone9750822013-02-04 23:41:41 +0900422#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
423/*
424 * ioctl commands in 32 bit emulation
425 */
Chao Yu04ef4b62015-11-10 18:44:20 +0800426#define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS
427#define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS
428#define F2FS_IOC32_GETVERSION FS_IOC32_GETVERSION
Namjae Jeone9750822013-02-04 23:41:41 +0900429#endif
430
Hyojun Kim63da4202017-10-06 17:10:08 -0700431struct f2fs_gc_range {
432 u32 sync;
433 u64 start;
434 u64 len;
435};
436
Chao Yud323d002015-10-27 09:53:45 +0800437struct f2fs_defragment {
438 u64 start;
439 u64 len;
440};
441
Jaegeuk Kim4dd6f972016-07-08 15:16:47 -0700442struct f2fs_move_range {
443 u32 dst_fd; /* destination fd */
444 u64 pos_in; /* start position in src_fd */
445 u64 pos_out; /* start position in dst_fd */
446 u64 len; /* size to move */
447};
448
Hyojun Kim63da4202017-10-06 17:10:08 -0700449struct f2fs_flush_device {
450 u32 dev_num; /* device number to flush */
451 u32 segments; /* # of segments to flush */
452};
453
454/* for inline stuff */
455#define DEF_INLINE_RESERVED_SIZE 1
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800456#define DEF_MIN_INLINE_SIZE 1
Hyojun Kim63da4202017-10-06 17:10:08 -0700457static inline int get_extra_isize(struct inode *inode);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800458static inline int get_inline_xattr_addrs(struct inode *inode);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800459#define MAX_INLINE_DATA(inode) (sizeof(__le32) * \
460 (CUR_ADDRS_PER_INODE(inode) - \
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800461 get_inline_xattr_addrs(inode) - \
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800462 DEF_INLINE_RESERVED_SIZE))
Hyojun Kim63da4202017-10-06 17:10:08 -0700463
464/* for inline dir */
465#define NR_INLINE_DENTRY(inode) (MAX_INLINE_DATA(inode) * BITS_PER_BYTE / \
466 ((SIZE_OF_DIR_ENTRY + F2FS_SLOT_LEN) * \
467 BITS_PER_BYTE + 1))
468#define INLINE_DENTRY_BITMAP_SIZE(inode) ((NR_INLINE_DENTRY(inode) + \
469 BITS_PER_BYTE - 1) / BITS_PER_BYTE)
470#define INLINE_RESERVED_SIZE(inode) (MAX_INLINE_DATA(inode) - \
471 ((SIZE_OF_DIR_ENTRY + F2FS_SLOT_LEN) * \
472 NR_INLINE_DENTRY(inode) + \
473 INLINE_DENTRY_BITMAP_SIZE(inode)))
474
Namjae Jeone9750822013-02-04 23:41:41 +0900475/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900476 * For INODE and NODE manager
477 */
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700478/* for directory operations */
479struct f2fs_dentry_ptr {
Jaegeuk Kimd8c68222015-04-27 16:26:24 -0700480 struct inode *inode;
Hyojun Kim63da4202017-10-06 17:10:08 -0700481 void *bitmap;
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700482 struct f2fs_dir_entry *dentry;
483 __u8 (*filename)[F2FS_SLOT_LEN];
484 int max;
Hyojun Kim63da4202017-10-06 17:10:08 -0700485 int nr_bitmap;
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700486};
487
Hyojun Kim63da4202017-10-06 17:10:08 -0700488static inline void make_dentry_ptr_block(struct inode *inode,
489 struct f2fs_dentry_ptr *d, struct f2fs_dentry_block *t)
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700490{
Jaegeuk Kimd8c68222015-04-27 16:26:24 -0700491 d->inode = inode;
Hyojun Kim63da4202017-10-06 17:10:08 -0700492 d->max = NR_DENTRY_IN_BLOCK;
493 d->nr_bitmap = SIZE_OF_DENTRY_BITMAP;
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800494 d->bitmap = t->dentry_bitmap;
Hyojun Kim63da4202017-10-06 17:10:08 -0700495 d->dentry = t->dentry;
496 d->filename = t->filename;
497}
Jaegeuk Kimd8c68222015-04-27 16:26:24 -0700498
Hyojun Kim63da4202017-10-06 17:10:08 -0700499static inline void make_dentry_ptr_inline(struct inode *inode,
500 struct f2fs_dentry_ptr *d, void *t)
501{
502 int entry_cnt = NR_INLINE_DENTRY(inode);
503 int bitmap_size = INLINE_DENTRY_BITMAP_SIZE(inode);
504 int reserved_size = INLINE_RESERVED_SIZE(inode);
505
506 d->inode = inode;
507 d->max = entry_cnt;
508 d->nr_bitmap = bitmap_size;
509 d->bitmap = t;
510 d->dentry = t + bitmap_size + reserved_size;
511 d->filename = t + bitmap_size + reserved_size +
512 SIZE_OF_DIR_ENTRY * entry_cnt;
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700513}
514
Jaegeuk Kimdbe6a5f2013-08-09 08:14:06 +0900515/*
516 * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1
517 * as its node offset to distinguish from index node blocks.
518 * But some bits are used to mark the node block.
519 */
520#define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \
521 >> OFFSET_BIT_SHIFT)
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900522enum {
523 ALLOC_NODE, /* allocate a new node page if needed */
524 LOOKUP_NODE, /* look up a node without readahead */
525 LOOKUP_NODE_RA, /*
526 * look up a node with readahead called
Chao Yu4f4124d2013-12-21 18:02:14 +0800527 * by get_data_block.
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900528 */
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900529};
530
Chao Yu3c743262018-07-17 00:02:17 +0800531#define DEFAULT_RETRY_IO_COUNT 8 /* maximum retry read IO count */
532
Chao Yud8312722018-09-20 20:05:00 +0800533/* maximum retry quota flush count */
534#define DEFAULT_RETRY_QUOTA_FLUSH_COUNT 8
535
Jaegeuk Kima6db67f2015-08-10 15:01:12 -0700536#define F2FS_LINK_MAX 0xffffffff /* maximum link count per file */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900537
Chao Yu817202d92014-04-28 17:59:43 +0800538#define MAX_DIR_RA_PAGES 4 /* maximum ra pages of dir */
539
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900540/* for in-memory extent cache entry */
Chao Yu13054c52015-02-05 17:52:58 +0800541#define F2FS_MIN_EXTENT_LEN 64 /* minimum extent length */
542
543/* number of extent info in extent cache we try to shrink */
544#define EXTENT_CACHE_SHRINK_NUMBER 128
Jaegeuk Kimc11abd12013-11-19 10:41:54 +0900545
Hyojun Kim63da4202017-10-06 17:10:08 -0700546struct rb_entry {
547 struct rb_node rb_node; /* rb node located in rb-tree */
548 unsigned int ofs; /* start offset of the entry */
549 unsigned int len; /* length of the entry */
550};
551
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900552struct extent_info {
Chao Yu13054c52015-02-05 17:52:58 +0800553 unsigned int fofs; /* start offset in a file */
Chao Yu13054c52015-02-05 17:52:58 +0800554 unsigned int len; /* length of the extent */
Hyojun Kim63da4202017-10-06 17:10:08 -0700555 u32 blk; /* start block address of the extent */
Chao Yu13054c52015-02-05 17:52:58 +0800556};
557
558struct extent_node {
Hyojun Kim63da4202017-10-06 17:10:08 -0700559 struct rb_node rb_node;
560 union {
561 struct {
562 unsigned int fofs;
563 unsigned int len;
564 u32 blk;
565 };
566 struct extent_info ei; /* extent info */
567
568 };
Chao Yu13054c52015-02-05 17:52:58 +0800569 struct list_head list; /* node in global extent list of sbi */
Hou Pengyang201ef5e2016-01-26 12:56:26 +0000570 struct extent_tree *et; /* extent tree pointer */
Chao Yu13054c52015-02-05 17:52:58 +0800571};
572
573struct extent_tree {
574 nid_t ino; /* inode number */
575 struct rb_root root; /* root of extent info rb-tree */
Chao Yu62c8af62015-02-05 18:01:39 +0800576 struct extent_node *cached_en; /* recently accessed extent node */
Jaegeuk Kim3e72f722015-06-19 17:53:26 -0700577 struct extent_info largest; /* largested extent info */
Jaegeuk Kim137d09f2015-12-31 15:02:16 -0800578 struct list_head list; /* to be used by sbi->zombie_list */
Chao Yu13054c52015-02-05 17:52:58 +0800579 rwlock_t lock; /* protect extent info rb-tree */
Chao Yu68e35382016-01-08 20:22:52 +0800580 atomic_t node_cnt; /* # of extent node in rb-tree*/
Zhikang Zhang4c3226a2018-09-10 16:18:25 +0800581 bool largest_updated; /* largest extent updated */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900582};
583
584/*
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700585 * This structure is taken from ext4_map_blocks.
586 *
587 * Note that, however, f2fs uses NEW and MAPPED flags for f2fs_map_blocks().
588 */
589#define F2FS_MAP_NEW (1 << BH_New)
590#define F2FS_MAP_MAPPED (1 << BH_Mapped)
Jaegeuk Kim7f63eb72015-05-08 19:30:32 -0700591#define F2FS_MAP_UNWRITTEN (1 << BH_Unwritten)
592#define F2FS_MAP_FLAGS (F2FS_MAP_NEW | F2FS_MAP_MAPPED |\
593 F2FS_MAP_UNWRITTEN)
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700594
595struct f2fs_map_blocks {
596 block_t m_pblk;
597 block_t m_lblk;
598 unsigned int m_len;
599 unsigned int m_flags;
Chao Yuda859852016-01-26 15:42:58 +0800600 pgoff_t *m_next_pgofs; /* point next possible non-hole pgofs */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800601 pgoff_t *m_next_extent; /* point to next possible extent */
602 int m_seg_type;
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700603};
604
Chao Yue2b4e2b2015-08-19 19:11:19 +0800605/* for flag in get_data_block */
Hyojun Kim63da4202017-10-06 17:10:08 -0700606enum {
607 F2FS_GET_BLOCK_DEFAULT,
608 F2FS_GET_BLOCK_FIEMAP,
609 F2FS_GET_BLOCK_BMAP,
Jaegeuk Kim0328f882018-09-19 15:28:40 -0700610 F2FS_GET_BLOCK_DIO,
Hyojun Kim63da4202017-10-06 17:10:08 -0700611 F2FS_GET_BLOCK_PRE_DIO,
612 F2FS_GET_BLOCK_PRE_AIO,
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800613 F2FS_GET_BLOCK_PRECACHE,
Hyojun Kim63da4202017-10-06 17:10:08 -0700614};
Chao Yue2b4e2b2015-08-19 19:11:19 +0800615
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700616/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900617 * i_advise uses FADVISE_XXX_BIT. We can add additional hints later.
618 */
619#define FADVISE_COLD_BIT 0x01
Jaegeuk Kim354a3392013-06-14 08:52:35 +0900620#define FADVISE_LOST_PINO_BIT 0x02
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700621#define FADVISE_ENCRYPT_BIT 0x04
Jaegeuk Kime7d55452015-04-29 17:02:18 -0700622#define FADVISE_ENC_NAME_BIT 0x08
Hyojun Kim63da4202017-10-06 17:10:08 -0700623#define FADVISE_KEEP_SIZE_BIT 0x10
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800624#define FADVISE_HOT_BIT 0x20
625#define FADVISE_VERITY_BIT 0x40 /* reserved */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900626
Chao Yu93aff612018-07-19 23:57:54 +0800627#define FADVISE_MODIFIABLE_BITS (FADVISE_COLD_BIT | FADVISE_HOT_BIT)
628
Jaegeuk Kimb5492af72015-04-20 13:44:41 -0700629#define file_is_cold(inode) is_file(inode, FADVISE_COLD_BIT)
630#define file_wrong_pino(inode) is_file(inode, FADVISE_LOST_PINO_BIT)
631#define file_set_cold(inode) set_file(inode, FADVISE_COLD_BIT)
632#define file_lost_pino(inode) set_file(inode, FADVISE_LOST_PINO_BIT)
633#define file_clear_cold(inode) clear_file(inode, FADVISE_COLD_BIT)
634#define file_got_pino(inode) clear_file(inode, FADVISE_LOST_PINO_BIT)
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700635#define file_is_encrypt(inode) is_file(inode, FADVISE_ENCRYPT_BIT)
636#define file_set_encrypt(inode) set_file(inode, FADVISE_ENCRYPT_BIT)
637#define file_clear_encrypt(inode) clear_file(inode, FADVISE_ENCRYPT_BIT)
Jaegeuk Kime7d55452015-04-29 17:02:18 -0700638#define file_enc_name(inode) is_file(inode, FADVISE_ENC_NAME_BIT)
639#define file_set_enc_name(inode) set_file(inode, FADVISE_ENC_NAME_BIT)
Hyojun Kim63da4202017-10-06 17:10:08 -0700640#define file_keep_isize(inode) is_file(inode, FADVISE_KEEP_SIZE_BIT)
641#define file_set_keep_isize(inode) set_file(inode, FADVISE_KEEP_SIZE_BIT)
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800642#define file_is_hot(inode) is_file(inode, FADVISE_HOT_BIT)
643#define file_set_hot(inode) set_file(inode, FADVISE_HOT_BIT)
644#define file_clear_hot(inode) clear_file(inode, FADVISE_HOT_BIT)
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700645
Jaegeuk Kimab9fa662014-02-27 20:09:05 +0900646#define DEF_DIR_LEVEL 0
647
Chao Yucaf10c62018-05-07 20:28:54 +0800648enum {
649 GC_FAILURE_PIN,
650 GC_FAILURE_ATOMIC,
651 MAX_GC_FAILURE
652};
653
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900654struct f2fs_inode_info {
655 struct inode vfs_inode; /* serve a vfs inode */
656 unsigned long i_flags; /* keep an inode flags for ioctl */
657 unsigned char i_advise; /* use to give file attribute hints */
Jaegeuk Kim38431542014-02-27 18:20:00 +0900658 unsigned char i_dir_level; /* use for dentry level for large dir */
Chao Yucaf10c62018-05-07 20:28:54 +0800659 unsigned int i_current_depth; /* only for directory depth */
660 /* for gc failure statistic */
661 unsigned int i_gc_failures[MAX_GC_FAILURE];
Jaegeuk Kim6666e6a2012-12-10 17:52:48 +0900662 unsigned int i_pino; /* parent inode number */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900663 umode_t i_acl_mode; /* keep file acl mode temporarily */
664
665 /* Use below internally in f2fs*/
666 unsigned long flags; /* use to pass per-file flags */
Jaegeuk Kimd928bfb2014-03-20 19:10:08 +0900667 struct rw_semaphore i_sem; /* protect fi info */
Jaegeuk Kima43e1c42016-12-02 15:11:32 -0800668 atomic_t dirty_pages; /* # of dirty pages */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900669 f2fs_hash_t chash; /* hash value of given file name */
670 unsigned int clevel; /* maximum level of given file name */
Jaegeuk Kimd00d1b72017-02-14 09:54:37 -0800671 struct task_struct *task; /* lookup and create consistency */
Hyojun Kim63da4202017-10-06 17:10:08 -0700672 struct task_struct *cp_task; /* separate cp/wb IO stats*/
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900673 nid_t i_xattr_nid; /* node id that contains xattrs */
Jaegeuk Kim26de9b12016-05-20 20:42:37 -0700674 loff_t last_disk_size; /* lastly written file size */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700675
Hyojun Kim63da4202017-10-06 17:10:08 -0700676#ifdef CONFIG_QUOTA
677 struct dquot *i_dquot[MAXQUOTAS];
678
679 /* quota space reservation, managed internally by quota code */
680 qsize_t i_reserved_quota;
681#endif
Jaegeuk Kim0f18b462016-05-20 11:10:10 -0700682 struct list_head dirty_list; /* dirty list for dirs and files */
683 struct list_head gdirty_list; /* linked in global dirty list */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800684 struct list_head inmem_ilist; /* list for inmem inodes */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700685 struct list_head inmem_pages; /* inmemory pages managed by f2fs */
Hyojun Kim63da4202017-10-06 17:10:08 -0700686 struct task_struct *inmem_task; /* store inmemory task */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700687 struct mutex inmem_lock; /* lock for inmemory pages */
Jaegeuk Kim3e72f722015-06-19 17:53:26 -0700688 struct extent_tree *extent_tree; /* cached extent_tree entry */
Chao Yuf6bd7d42018-04-24 10:55:28 +0800689
690 /* avoid racing between foreground op and gc */
691 struct rw_semaphore i_gc_rwsem[2];
Hyojun Kim63da4202017-10-06 17:10:08 -0700692 struct rw_semaphore i_mmap_sem;
693 struct rw_semaphore i_xattr_sem; /* avoid racing between reading and changing EAs */
694
695 int i_extra_isize; /* size of extra space located in i_addr */
696 kprojid_t i_projid; /* id for project quota */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800697 int i_inline_xattr_size; /* inline xattr size */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800698 struct timespec i_crtime; /* inode creation time */
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800699 struct timespec i_disk_time[4]; /* inode disk times */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900700};
701
702static inline void get_extent_info(struct extent_info *ext,
Chao Yubd933d42016-05-04 23:19:47 +0800703 struct f2fs_extent *i_ext)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900704{
Chao Yubd933d42016-05-04 23:19:47 +0800705 ext->fofs = le32_to_cpu(i_ext->fofs);
706 ext->blk = le32_to_cpu(i_ext->blk);
707 ext->len = le32_to_cpu(i_ext->len);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900708}
709
710static inline void set_raw_extent(struct extent_info *ext,
711 struct f2fs_extent *i_ext)
712{
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900713 i_ext->fofs = cpu_to_le32(ext->fofs);
Chao Yu4d0b0bd2015-02-05 17:47:25 +0800714 i_ext->blk = cpu_to_le32(ext->blk);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900715 i_ext->len = cpu_to_le32(ext->len);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900716}
717
Chao Yu429511c2015-02-05 17:54:31 +0800718static inline void set_extent_info(struct extent_info *ei, unsigned int fofs,
719 u32 blk, unsigned int len)
720{
721 ei->fofs = fofs;
722 ei->blk = blk;
723 ei->len = len;
724}
725
Hyojun Kim63da4202017-10-06 17:10:08 -0700726static inline bool __is_discard_mergeable(struct discard_info *back,
Chao Yuc813f5a2018-08-06 22:43:50 +0800727 struct discard_info *front, unsigned int max_len)
Chao Yu0bdee482015-03-19 19:27:51 +0800728{
Jaegeuk Kim0c296e32018-05-24 13:57:26 -0700729 return (back->lstart + back->len == front->lstart) &&
Chao Yuc813f5a2018-08-06 22:43:50 +0800730 (back->len + front->len <= max_len);
Hyojun Kim63da4202017-10-06 17:10:08 -0700731}
732
733static inline bool __is_discard_back_mergeable(struct discard_info *cur,
Chao Yuc813f5a2018-08-06 22:43:50 +0800734 struct discard_info *back, unsigned int max_len)
Hyojun Kim63da4202017-10-06 17:10:08 -0700735{
Chao Yuc813f5a2018-08-06 22:43:50 +0800736 return __is_discard_mergeable(back, cur, max_len);
Hyojun Kim63da4202017-10-06 17:10:08 -0700737}
738
739static inline bool __is_discard_front_mergeable(struct discard_info *cur,
Chao Yuc813f5a2018-08-06 22:43:50 +0800740 struct discard_info *front, unsigned int max_len)
Hyojun Kim63da4202017-10-06 17:10:08 -0700741{
Chao Yuc813f5a2018-08-06 22:43:50 +0800742 return __is_discard_mergeable(cur, front, max_len);
Chao Yu0bdee482015-03-19 19:27:51 +0800743}
744
Chao Yu429511c2015-02-05 17:54:31 +0800745static inline bool __is_extent_mergeable(struct extent_info *back,
746 struct extent_info *front)
747{
748 return (back->fofs + back->len == front->fofs &&
749 back->blk + back->len == front->blk);
750}
751
752static inline bool __is_back_mergeable(struct extent_info *cur,
753 struct extent_info *back)
754{
755 return __is_extent_mergeable(back, cur);
756}
757
758static inline bool __is_front_mergeable(struct extent_info *cur,
759 struct extent_info *front)
760{
761 return __is_extent_mergeable(cur, front);
762}
763
Hyojun Kim63da4202017-10-06 17:10:08 -0700764extern void f2fs_mark_inode_dirty_sync(struct inode *inode, bool sync);
Zhikang Zhang4c3226a2018-09-10 16:18:25 +0800765static inline void __try_update_largest_extent(struct extent_tree *et,
766 struct extent_node *en)
Chao Yu4abd3f52015-09-22 21:07:47 +0800767{
Jaegeuk Kim205b9822016-05-20 09:52:20 -0700768 if (en->ei.len > et->largest.len) {
Chao Yu4abd3f52015-09-22 21:07:47 +0800769 et->largest = en->ei;
Zhikang Zhang4c3226a2018-09-10 16:18:25 +0800770 et->largest_updated = true;
Jaegeuk Kim205b9822016-05-20 09:52:20 -0700771 }
Chao Yu4abd3f52015-09-22 21:07:47 +0800772}
773
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800774/*
775 * For free nid management
776 */
777enum nid_state {
778 FREE_NID, /* newly added to free nid list */
779 PREALLOC_NID, /* it is preallocated */
780 MAX_NID_STATE,
Hyojun Kim63da4202017-10-06 17:10:08 -0700781};
782
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900783struct f2fs_nm_info {
784 block_t nat_blkaddr; /* base disk address of NAT */
785 nid_t max_nid; /* maximum possible node ids */
Hyojun Kim63da4202017-10-06 17:10:08 -0700786 nid_t available_nids; /* # of available node ids */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900787 nid_t next_scan_nid; /* the next nid to be scanned */
Jaegeuk Kimcdfc41c2014-03-19 13:31:37 +0900788 unsigned int ram_thresh; /* control the memory footprint */
Chao Yuea1a29a02015-10-12 17:08:48 +0800789 unsigned int ra_nid_pages; /* # of nid pages to be readaheaded */
Chao Yu2304cb02016-01-18 18:32:58 +0800790 unsigned int dirty_nats_ratio; /* control dirty nats ratio threshold */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900791
792 /* NAT cache management */
793 struct radix_tree_root nat_root;/* root of the nat entry cache */
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700794 struct radix_tree_root nat_set_root;/* root of the nat set cache */
Jaegeuk Kimb873b792016-08-04 11:38:25 -0700795 struct rw_semaphore nat_tree_lock; /* protect nat_tree_lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900796 struct list_head nat_entries; /* cached nat entry list (clean) */
Chao Yu7309a5f2018-08-05 23:08:59 +0800797 spinlock_t nat_list_lock; /* protect clean nat entry list */
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700798 unsigned int nat_cnt; /* the # of cached nat entries */
Chao Yuaec71382014-06-24 09:18:20 +0800799 unsigned int dirty_nat_cnt; /* total num of nat entries in set */
Hyojun Kim63da4202017-10-06 17:10:08 -0700800 unsigned int nat_blocks; /* # of nat blocks */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900801
802 /* free node ids management */
Jaegeuk Kim8a7ed662014-02-21 14:29:35 +0900803 struct radix_tree_root free_nid_root;/* root of the free_nid cache */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800804 struct list_head free_nid_list; /* list for free nids excluding preallocated nids */
805 unsigned int nid_cnt[MAX_NID_STATE]; /* the number of free node id */
Hyojun Kim63da4202017-10-06 17:10:08 -0700806 spinlock_t nid_list_lock; /* protect nid lists ops */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900807 struct mutex build_lock; /* lock for build free nids */
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800808 unsigned char **free_nid_bitmap;
Hyojun Kim63da4202017-10-06 17:10:08 -0700809 unsigned char *nat_block_bitmap;
810 unsigned short *free_nid_count; /* free nid count of NAT block */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900811
812 /* for checkpoint */
813 char *nat_bitmap; /* NAT bitmap pointer */
Hyojun Kim63da4202017-10-06 17:10:08 -0700814
815 unsigned int nat_bits_blocks; /* # of nat bits blocks */
816 unsigned char *nat_bits; /* NAT bits blocks */
817 unsigned char *full_nat_bits; /* full NAT pages */
818 unsigned char *empty_nat_bits; /* empty NAT pages */
819#ifdef CONFIG_F2FS_CHECK_FS
820 char *nat_bitmap_mir; /* NAT bitmap mirror */
821#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900822 int bitmap_size; /* bitmap size */
823};
824
825/*
826 * this structure is used as one of function parameters.
827 * all the information are dedicated to a given direct node block determined
828 * by the data offset in a file.
829 */
830struct dnode_of_data {
831 struct inode *inode; /* vfs inode pointer */
832 struct page *inode_page; /* its inode page, NULL is possible */
833 struct page *node_page; /* cached direct node page */
834 nid_t nid; /* node id of the direct node block */
835 unsigned int ofs_in_node; /* data offset in the node page */
836 bool inode_page_locked; /* inode page is locked or not */
Jaegeuk Kim93bae092015-12-22 12:59:54 -0800837 bool node_changed; /* is node block changed */
Chao Yu3cf45742016-01-26 15:40:44 +0800838 char cur_level; /* level of hole node page */
839 char max_level; /* level of current page located */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900840 block_t data_blkaddr; /* block address of the node block */
841};
842
843static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
844 struct page *ipage, struct page *npage, nid_t nid)
845{
Jaegeuk Kimd66d1f72013-01-03 08:57:21 +0900846 memset(dn, 0, sizeof(*dn));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900847 dn->inode = inode;
848 dn->inode_page = ipage;
849 dn->node_page = npage;
850 dn->nid = nid;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900851}
852
853/*
854 * For SIT manager
855 *
856 * By default, there are 6 active log areas across the whole main area.
857 * When considering hot and cold data separation to reduce cleaning overhead,
858 * we split 3 for data logs and 3 for node logs as hot, warm, and cold types,
859 * respectively.
860 * In the current design, you should not change the numbers intentionally.
861 * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6
862 * logs individually according to the underlying devices. (default: 6)
863 * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for
864 * data and 8 for node logs.
865 */
866#define NR_CURSEG_DATA_TYPE (3)
867#define NR_CURSEG_NODE_TYPE (3)
868#define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE)
869
870enum {
871 CURSEG_HOT_DATA = 0, /* directory entry blocks */
872 CURSEG_WARM_DATA, /* data blocks */
873 CURSEG_COLD_DATA, /* multimedia or GCed data blocks */
874 CURSEG_HOT_NODE, /* direct node blocks of directory files */
875 CURSEG_WARM_NODE, /* direct node blocks of normal files */
876 CURSEG_COLD_NODE, /* indirect node blocks */
Jaegeuk Kim38aa0882015-01-05 16:02:20 -0800877 NO_CHECK_TYPE,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900878};
879
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900880struct flush_cmd {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900881 struct completion wait;
Gu Zheng721bd4d2014-09-05 18:31:00 +0800882 struct llist_node llnode;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800883 nid_t ino;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900884 int ret;
885};
886
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800887struct flush_cmd_control {
888 struct task_struct *f2fs_issue_flush; /* flush thread */
889 wait_queue_head_t flush_wait_queue; /* waiting queue for wake-up */
Hyojun Kim63da4202017-10-06 17:10:08 -0700890 atomic_t issued_flush; /* # of issued flushes */
891 atomic_t issing_flush; /* # of issing flushes */
Gu Zheng721bd4d2014-09-05 18:31:00 +0800892 struct llist_head issue_list; /* list for command issue */
893 struct llist_node *dispatch_list; /* list for command dispatch */
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800894};
895
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900896struct f2fs_sm_info {
897 struct sit_info *sit_info; /* whole segment information */
898 struct free_segmap_info *free_info; /* free segment information */
899 struct dirty_seglist_info *dirty_info; /* dirty segment information */
900 struct curseg_info *curseg_array; /* active segment information */
901
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800902 struct rw_semaphore curseg_lock; /* for preventing curseg change */
903
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900904 block_t seg0_blkaddr; /* block address of 0'th segment */
905 block_t main_blkaddr; /* start block address of main area */
906 block_t ssa_blkaddr; /* start block address of SSA area */
907
908 unsigned int segment_count; /* total # of segments */
909 unsigned int main_segments; /* # of segments in main area */
910 unsigned int reserved_segments; /* # of reserved segments */
911 unsigned int ovp_segments; /* # of overprovision segments */
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +0900912
913 /* a threshold to reclaim prefree segments */
914 unsigned int rec_prefree_segments;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +0900915
Jaegeuk Kimbba681c2015-01-26 17:41:23 -0800916 /* for batched trimming */
917 unsigned int trim_sections; /* # of sections to trim */
918
Chao Yu184a5cd2014-09-04 18:13:01 +0800919 struct list_head sit_entry_set; /* sit entry set list */
920
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900921 unsigned int ipu_policy; /* in-place-update policy */
922 unsigned int min_ipu_util; /* in-place-update threshold */
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -0700923 unsigned int min_fsync_blocks; /* threshold for fsync */
Jaegeuk Kime029e962018-08-09 17:53:34 -0700924 unsigned int min_seq_blocks; /* threshold for sequential blocks */
Hyojun Kim63da4202017-10-06 17:10:08 -0700925 unsigned int min_hot_blocks; /* threshold for hot block allocation */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800926 unsigned int min_ssr_sections; /* threshold to trigger SSR allocation */
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900927
928 /* for flush command control */
Hyojun Kim63da4202017-10-06 17:10:08 -0700929 struct flush_cmd_control *fcc_info;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800930
Hyojun Kim63da4202017-10-06 17:10:08 -0700931 /* for discard command control */
932 struct discard_cmd_control *dcc_info;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900933};
934
935/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900936 * For superblock
937 */
938/*
939 * COUNT_TYPE for monitoring
940 *
941 * f2fs monitors the number of several block types such as on-writeback,
942 * dirty dentry blocks, dirty node blocks, and dirty meta blocks.
943 */
Hyojun Kim63da4202017-10-06 17:10:08 -0700944#define WB_DATA_TYPE(p) (__is_cp_guaranteed(p) ? F2FS_WB_CP_DATA : F2FS_WB_DATA)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900945enum count_type {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900946 F2FS_DIRTY_DENTS,
Chao Yuc227f912015-12-16 13:09:20 +0800947 F2FS_DIRTY_DATA,
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800948 F2FS_DIRTY_QDATA,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900949 F2FS_DIRTY_NODES,
950 F2FS_DIRTY_META,
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800951 F2FS_INMEM_PAGES,
Jaegeuk Kim0f18b462016-05-20 11:10:10 -0700952 F2FS_DIRTY_IMETA,
Hyojun Kim63da4202017-10-06 17:10:08 -0700953 F2FS_WB_CP_DATA,
954 F2FS_WB_DATA,
Jaegeuk Kim8025d722018-10-16 10:20:53 -0700955 F2FS_RD_DATA,
956 F2FS_RD_NODE,
957 F2FS_RD_META,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900958 NR_COUNT_TYPE,
959};
960
961/*
arter97e1c42042014-08-06 23:22:50 +0900962 * The below are the page types of bios used in submit_bio().
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900963 * The available types are:
964 * DATA User data pages. It operates as async mode.
965 * NODE Node pages. It operates as async mode.
966 * META FS metadata pages such as SIT, NAT, CP.
967 * NR_PAGE_TYPE The number of page types.
968 * META_FLUSH Make sure the previous pages are written
969 * with waiting the bio's completion
970 * ... Only can be used with META.
971 */
Jaegeuk Kim7d5e5102013-11-18 17:13:35 +0900972#define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900973enum page_type {
974 DATA,
975 NODE,
976 META,
977 NR_PAGE_TYPE,
978 META_FLUSH,
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700979 INMEM, /* the below types are used by tracepoints only. */
980 INMEM_DROP,
Hyojun Kim63da4202017-10-06 17:10:08 -0700981 INMEM_INVALIDATE,
Chao Yu28bc1062016-02-06 14:40:34 +0800982 INMEM_REVOKE,
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700983 IPU,
984 OPU,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900985};
986
Hyojun Kim63da4202017-10-06 17:10:08 -0700987enum temp_type {
988 HOT = 0, /* must be zero for meta bio */
989 WARM,
990 COLD,
991 NR_TEMP_TYPE,
992};
993
994enum need_lock_type {
995 LOCK_REQ = 0,
996 LOCK_DONE,
997 LOCK_RETRY,
998};
999
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001000enum cp_reason_type {
1001 CP_NO_NEEDED,
1002 CP_NON_REGULAR,
1003 CP_HARDLINK,
1004 CP_SB_NEED_CP,
1005 CP_WRONG_PINO,
1006 CP_NO_SPC_ROLL,
1007 CP_NODE_NEED_CP,
1008 CP_FASTBOOT_MODE,
1009 CP_SPEC_LOG_NUM,
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001010 CP_RECOVER_DIR,
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001011};
1012
Hyojun Kim63da4202017-10-06 17:10:08 -07001013enum iostat_type {
1014 APP_DIRECT_IO, /* app direct IOs */
1015 APP_BUFFERED_IO, /* app buffered IOs */
1016 APP_WRITE_IO, /* app write IOs */
1017 APP_MAPPED_IO, /* app mapped IOs */
1018 FS_DATA_IO, /* data IOs from kworker/fsync/reclaimer */
1019 FS_NODE_IO, /* node IOs from kworker/fsync/reclaimer */
1020 FS_META_IO, /* meta IOs from kworker/reclaimer */
1021 FS_GC_DATA_IO, /* data IOs from forground gc */
1022 FS_GC_NODE_IO, /* node IOs from forground gc */
1023 FS_CP_DATA_IO, /* data IOs from checkpoint */
1024 FS_CP_NODE_IO, /* node IOs from checkpoint */
1025 FS_CP_META_IO, /* meta IOs from checkpoint */
1026 FS_DISCARD, /* discard */
1027 NR_IO_TYPE,
1028};
1029
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001030struct f2fs_io_info {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001031 struct f2fs_sb_info *sbi; /* f2fs_sb_info pointer */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001032 nid_t ino; /* inode number */
Gu Zheng7e8f2302013-12-20 18:17:49 +08001033 enum page_type type; /* contains DATA/NODE/META/META_FLUSH */
Hyojun Kim63da4202017-10-06 17:10:08 -07001034 enum temp_type temp; /* contains HOT/WARM/COLD */
Mike Christie04d328d2016-06-05 14:31:55 -05001035 int op; /* contains REQ_OP_ */
Hyojun Kim63da4202017-10-06 17:10:08 -07001036 int op_flags; /* req_flag_bits */
Chao Yu7a9d7542016-02-22 18:36:38 +08001037 block_t new_blkaddr; /* new block address to be written */
Chao Yu28bc1062016-02-06 14:40:34 +08001038 block_t old_blkaddr; /* old block address before Cow */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001039 struct page *page; /* page to be written */
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001040 struct page *encrypted_page; /* encrypted page */
Hyojun Kim63da4202017-10-06 17:10:08 -07001041 struct list_head list; /* serialize IOs */
1042 bool submitted; /* indicate IO submission */
1043 int need_lock; /* indicate we need to lock cp_rwsem */
1044 bool in_list; /* indicate fio is in io_list */
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001045 bool is_meta; /* indicate borrow meta inode mapping or not */
Chao Yu34880e02018-05-28 23:47:18 +08001046 bool retry; /* need to reallocate block address */
Hyojun Kim63da4202017-10-06 17:10:08 -07001047 enum iostat_type io_type; /* io type */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001048 struct writeback_control *io_wbc; /* writeback control */
Chao Yu3c743262018-07-17 00:02:17 +08001049 unsigned char version; /* version of the node */
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001050};
1051
Hyojun Kim63da4202017-10-06 17:10:08 -07001052#define is_read_io(rw) ((rw) == READ)
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +09001053struct f2fs_bio_info {
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001054 struct f2fs_sb_info *sbi; /* f2fs superblock */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +09001055 struct bio *bio; /* bios to merge */
1056 sector_t last_block_in_bio; /* last block number */
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001057 struct f2fs_io_info fio; /* store buffered io info. */
Chao Yudf0f8dc2014-03-22 14:57:23 +08001058 struct rw_semaphore io_rwsem; /* blocking op for bio */
Hyojun Kim63da4202017-10-06 17:10:08 -07001059 spinlock_t io_lock; /* serialize DATA/NODE IOs */
1060 struct list_head io_list; /* track fios */
1061};
1062
1063#define FDEV(i) (sbi->devs[i])
1064#define RDEV(i) (raw_super->devs[i])
1065struct f2fs_dev_info {
1066 struct block_device *bdev;
1067 char path[MAX_PATH_LEN];
1068 unsigned int total_segments;
1069 block_t start_blk;
1070 block_t end_blk;
1071#ifdef CONFIG_BLK_DEV_ZONED
1072 unsigned int nr_blkz; /* Total number of zones */
1073 u8 *blkz_type; /* Array of zones type */
1074#endif
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +09001075};
1076
Chao Yuc227f912015-12-16 13:09:20 +08001077enum inode_type {
1078 DIR_INODE, /* for dirty dir inode */
1079 FILE_INODE, /* for dirty regular/symlink inode */
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001080 DIRTY_META, /* for all dirtied inode metadata */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001081 ATOMIC_FILE, /* for all atomic files */
Chao Yuc227f912015-12-16 13:09:20 +08001082 NR_INODE_TYPE,
1083};
1084
Chao Yu67298802014-11-18 11:18:36 +08001085/* for inner inode cache management */
1086struct inode_management {
1087 struct radix_tree_root ino_root; /* ino entry array */
1088 spinlock_t ino_lock; /* for ino entry lock */
1089 struct list_head ino_list; /* inode list head */
1090 unsigned long ino_num; /* number of entries */
1091};
1092
Chao Yucaf00472015-01-28 17:48:42 +08001093/* For s_flag in struct f2fs_sb_info */
1094enum {
1095 SBI_IS_DIRTY, /* dirty flag for checkpoint */
1096 SBI_IS_CLOSE, /* specify unmounting */
1097 SBI_NEED_FSCK, /* need fsck.f2fs to fix */
1098 SBI_POR_DOING, /* recovery is doing or not */
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07001099 SBI_NEED_SB_WRITE, /* need to recover superblock */
Jaegeuk Kimbbf156f2016-08-29 18:23:45 -07001100 SBI_NEED_CP, /* need to checkpoint */
Jaegeuk Kimc92b7c72018-06-21 13:46:23 -07001101 SBI_IS_SHUTDOWN, /* shutdown by ioctl */
Chao Yu118e4c92018-08-22 17:11:05 +08001102 SBI_IS_RECOVERED, /* recovered orphan/data */
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -07001103 SBI_CP_DISABLED, /* CP was disabled last mount */
Chao Yud8312722018-09-20 20:05:00 +08001104 SBI_QUOTA_NEED_FLUSH, /* need to flush quota info in CP */
1105 SBI_QUOTA_SKIP_FLUSH, /* skip flushing quota in current CP */
1106 SBI_QUOTA_NEED_REPAIR, /* quota file may be corrupted */
Chao Yucaf00472015-01-28 17:48:42 +08001107};
1108
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08001109enum {
1110 CP_TIME,
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08001111 REQ_TIME,
Sahitya Tummalafeb1b252018-09-19 14:18:47 +05301112 DISCARD_TIME,
1113 GC_TIME,
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -07001114 DISABLE_TIME,
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08001115 MAX_TIME,
1116};
1117
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001118enum {
Jaegeuk Kim0390d832018-05-07 14:22:40 -07001119 GC_NORMAL,
1120 GC_IDLE_CB,
1121 GC_IDLE_GREEDY,
1122 GC_URGENT,
1123};
1124
1125enum {
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001126 WHINT_MODE_OFF, /* not pass down write hints */
1127 WHINT_MODE_USER, /* try to pass down hints given by users */
1128 WHINT_MODE_FS, /* pass down hints with F2FS policy */
1129};
1130
1131enum {
1132 ALLOC_MODE_DEFAULT, /* stay default */
1133 ALLOC_MODE_REUSE, /* reuse segments as much as possible */
1134};
1135
1136enum fsync_mode {
1137 FSYNC_MODE_POSIX, /* fsync follows posix semantics */
1138 FSYNC_MODE_STRICT, /* fsync behaves in line with ext4 */
Jaegeuk Kim0c296e32018-05-24 13:57:26 -07001139 FSYNC_MODE_NOBARRIER, /* fsync behaves nobarrier based on posix */
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001140};
1141
1142#ifdef CONFIG_F2FS_FS_ENCRYPTION
1143#define DUMMY_ENCRYPTION_ENABLED(sbi) \
1144 (unlikely(F2FS_OPTION(sbi).test_dummy_encryption))
1145#else
1146#define DUMMY_ENCRYPTION_ENABLED(sbi) (0)
1147#endif
1148
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001149struct f2fs_sb_info {
1150 struct super_block *sb; /* pointer to VFS super block */
Jaegeuk Kim5e176d52013-06-28 12:47:01 +09001151 struct proc_dir_entry *s_proc; /* proc entry */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001152 struct f2fs_super_block *raw_super; /* raw super block pointer */
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001153 struct rw_semaphore sb_lock; /* lock for raw super block */
Chao Yue8240f62015-12-15 17:19:26 +08001154 int valid_super_block; /* valid super block no */
Chao Yufadb2fb2016-09-20 10:29:47 +08001155 unsigned long s_flag; /* flags for sbi */
Jaegeuk Kime029e962018-08-09 17:53:34 -07001156 struct mutex writepages; /* mutex for writepages() */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001157
Hyojun Kim63da4202017-10-06 17:10:08 -07001158#ifdef CONFIG_BLK_DEV_ZONED
1159 unsigned int blocks_per_blkz; /* F2FS blocks per zone */
1160 unsigned int log_blocks_per_blkz; /* log2 F2FS blocks per zone */
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -07001161#endif
Hyojun Kim63da4202017-10-06 17:10:08 -07001162
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001163 /* for node-related operations */
1164 struct f2fs_nm_info *nm_info; /* node manager */
1165 struct inode *node_inode; /* cache node blocks */
1166
1167 /* for segment-related operations */
1168 struct f2fs_sm_info *sm_info; /* segment manager */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +09001169
1170 /* for bio operations */
Hyojun Kim63da4202017-10-06 17:10:08 -07001171 struct f2fs_bio_info *write_io[NR_PAGE_TYPE]; /* for write bios */
1172 struct mutex wio_mutex[NR_PAGE_TYPE - 1][NR_TEMP_TYPE];
1173 /* bio ordering for NODE/DATA */
Chao Yubbab2dc2018-05-26 09:00:13 +08001174 /* keep migration IO order for LFS mode */
1175 struct rw_semaphore io_order_lock;
Hyojun Kim63da4202017-10-06 17:10:08 -07001176 mempool_t *write_io_dummy; /* Dummy pages */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001177
1178 /* for checkpoint */
1179 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */
Jaegeuk Kim01e15b32016-11-24 12:45:15 -08001180 int cur_cp_pack; /* remain current cp pack */
Chao Yuaaec2b12016-09-20 11:04:18 +08001181 spinlock_t cp_lock; /* for flag in ckpt */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001182 struct inode *meta_inode; /* cache meta blocks */
Jaegeuk Kim39936832012-11-22 16:21:29 +09001183 struct mutex cp_mutex; /* checkpoint procedure lock */
Jaegeuk Kimb873b792016-08-04 11:38:25 -07001184 struct rw_semaphore cp_rwsem; /* blocking FS operations */
Chao Yub3582c62014-07-03 18:58:39 +08001185 struct rw_semaphore node_write; /* locking node writes */
Hyojun Kim63da4202017-10-06 17:10:08 -07001186 struct rw_semaphore node_change; /* locking node change */
Changman Leefb51b5e2013-11-07 12:48:25 +09001187 wait_queue_head_t cp_wait;
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08001188 unsigned long last_time[MAX_TIME]; /* to store time in jiffies */
1189 long interval_time[MAX_TIME]; /* to store thresholds */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001190
Chao Yu67298802014-11-18 11:18:36 +08001191 struct inode_management im[MAX_INO_ENTRY]; /* manage inode cache */
Jaegeuk Kim6451e042014-07-25 15:47:17 -07001192
Chao Yu3d5c54a2018-08-02 23:03:19 +08001193 spinlock_t fsync_node_lock; /* for node entry lock */
1194 struct list_head fsync_node_list; /* node list head */
1195 unsigned int fsync_seg_id; /* sequence id */
1196 unsigned int fsync_node_num; /* number of node entries */
1197
Jaegeuk Kim6451e042014-07-25 15:47:17 -07001198 /* for orphan inode, use 0'th array */
Gu Zheng0d47c1a2013-12-26 18:24:19 +08001199 unsigned int max_orphans; /* max orphan inodes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001200
Chao Yuc227f912015-12-16 13:09:20 +08001201 /* for inode management */
1202 struct list_head inode_list[NR_INODE_TYPE]; /* dirty inode list */
1203 spinlock_t inode_lock[NR_INODE_TYPE]; /* for dirty inode list lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001204
Chao Yu13054c52015-02-05 17:52:58 +08001205 /* for extent tree cache */
1206 struct radix_tree_root extent_tree_root;/* cache extent cache entries */
Hyojun Kim63da4202017-10-06 17:10:08 -07001207 struct mutex extent_tree_lock; /* locking extent radix tree */
Chao Yu13054c52015-02-05 17:52:58 +08001208 struct list_head extent_list; /* lru list for shrinker */
1209 spinlock_t extent_lock; /* locking extent lru list */
Jaegeuk Kim7441cce2015-12-21 19:20:15 -08001210 atomic_t total_ext_tree; /* extent tree count */
Jaegeuk Kim137d09f2015-12-31 15:02:16 -08001211 struct list_head zombie_list; /* extent zombie tree list */
Jaegeuk Kim74fd8d92015-12-21 19:25:50 -08001212 atomic_t total_zombie_tree; /* extent zombie tree count */
Chao Yu13054c52015-02-05 17:52:58 +08001213 atomic_t total_ext_node; /* extent info count */
1214
arter97e1c42042014-08-06 23:22:50 +09001215 /* basic filesystem units */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001216 unsigned int log_sectors_per_block; /* log2 sectors per block */
1217 unsigned int log_blocksize; /* log2 block size */
1218 unsigned int blocksize; /* block size */
1219 unsigned int root_ino_num; /* root inode number*/
1220 unsigned int node_ino_num; /* node inode number*/
1221 unsigned int meta_ino_num; /* meta inode number*/
1222 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
1223 unsigned int blocks_per_seg; /* blocks per segment */
1224 unsigned int segs_per_sec; /* segments per section */
1225 unsigned int secs_per_zone; /* sections per zone */
1226 unsigned int total_sections; /* total section count */
1227 unsigned int total_node_count; /* total node block count */
1228 unsigned int total_valid_node_count; /* valid node block count */
Chao Yue0afc4d2015-12-31 14:35:37 +08001229 loff_t max_file_blocks; /* max block index of file */
Jaegeuk Kimab9fa662014-02-27 20:09:05 +09001230 int dir_level; /* directory level */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001231 int readdir_ra; /* readahead inode in readdir */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001232
1233 block_t user_block_count; /* # of user blocks */
1234 block_t total_valid_block_count; /* # of valid blocks */
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001235 block_t discard_blks; /* discard command candidats */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001236 block_t last_valid_block_count; /* for recovery */
Hyojun Kim63da4202017-10-06 17:10:08 -07001237 block_t reserved_blocks; /* configurable reserved blocks */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001238 block_t current_reserved_blocks; /* current reserved blocks */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001239
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -07001240 /* Additional tracking for no checkpoint mode */
1241 block_t unusable_block_count; /* # of blocks saved by last cp */
1242
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001243 unsigned int nquota_files; /* # of quota sysfile */
Hyojun Kim63da4202017-10-06 17:10:08 -07001244
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001245 u32 s_next_generation; /* for NFS support */
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001246
1247 /* # of pages, see count_type */
Jaegeuk Kim725ba1a2016-10-20 19:09:57 -07001248 atomic_t nr_pages[NR_COUNT_TYPE];
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07001249 /* # of allocated blocks */
1250 struct percpu_counter alloc_valid_block_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001251
Hyojun Kim63da4202017-10-06 17:10:08 -07001252 /* writeback control */
Chao Yudeb78d42018-06-04 23:20:36 +08001253 atomic_t wb_sync_req[META]; /* count # of WB_SYNC threads */
Hyojun Kim63da4202017-10-06 17:10:08 -07001254
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07001255 /* valid inode count */
1256 struct percpu_counter total_valid_inode_count;
1257
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001258 struct f2fs_mount_info mount_opt; /* mount options */
1259
1260 /* for cleaning operations */
1261 struct mutex gc_mutex; /* mutex for GC */
1262 struct f2fs_gc_kthread *gc_thread; /* GC thread */
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09001263 unsigned int cur_victim_sec; /* current victim section num */
Jaegeuk Kim0390d832018-05-07 14:22:40 -07001264 unsigned int gc_mode; /* current GC state */
Chao Yucaf10c62018-05-07 20:28:54 +08001265 /* for skip statistic */
1266 unsigned long long skipped_atomic_files[2]; /* FG_GC and BG_GC */
Jaegeuk Kimf64b4d72018-07-25 12:11:56 +09001267 unsigned long long skipped_gc_rwsem; /* FG_GC only */
Hou Pengyang4992ba22017-02-16 12:34:31 +00001268
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001269 /* threshold for gc trials on pinned files */
1270 u64 gc_pin_file_threshold;
1271
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +09001272 /* maximum # of trials to find a victim segment for SSR and GC */
1273 unsigned int max_victim_search;
1274
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001275 /*
1276 * for stat information.
1277 * one is for the LFS mode, and the other is for the SSR mode.
1278 */
Namjae Jeon35b09d82013-05-23 22:57:53 +09001279#ifdef CONFIG_F2FS_STAT_FS
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001280 struct f2fs_stat_info *stat_info; /* FS status information */
Chao Yud826d4a2018-09-29 18:31:27 +08001281 atomic_t meta_count[META_MAX]; /* # of meta blocks */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001282 unsigned int segment_count[2]; /* # of allocated segments */
1283 unsigned int block_count[2]; /* # of allocated blocks */
Changman Leeb9a2c252014-12-24 02:16:54 +09001284 atomic_t inplace_count; /* # of inplace update */
Chao Yu5b7ee372015-09-30 17:38:48 +08001285 atomic64_t total_hit_ext; /* # of lookup extent cache */
1286 atomic64_t read_hit_rbtree; /* # of hit rbtree extent node */
1287 atomic64_t read_hit_largest; /* # of hit largest extent node */
1288 atomic64_t read_hit_cached; /* # of hit cached extent node */
Chao Yud5e8f6c2015-07-15 17:28:53 +08001289 atomic_t inline_xattr; /* # of inline_xattr inodes */
Chao Yu03e14d52014-12-08 19:08:20 +08001290 atomic_t inline_inode; /* # of inline_data inodes */
1291 atomic_t inline_dir; /* # of inline_dentry inodes */
Hyojun Kim63da4202017-10-06 17:10:08 -07001292 atomic_t aw_cnt; /* # of atomic writes */
1293 atomic_t vw_cnt; /* # of volatile writes */
1294 atomic_t max_aw_cnt; /* max # of atomic writes */
1295 atomic_t max_vw_cnt; /* max # of volatile writes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001296 int bg_gc; /* background gc calls */
Chao Yu0fc6da72018-09-29 18:31:28 +08001297 unsigned int io_skip_bggc; /* skip background gc for in-flight IO */
1298 unsigned int other_skip_bggc; /* skip background gc for other reasons */
Chao Yu33fbd512015-12-17 17:14:44 +08001299 unsigned int ndirty_inode[NR_INODE_TYPE]; /* # of dirty inodes */
Namjae Jeon35b09d82013-05-23 22:57:53 +09001300#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001301 spinlock_t stat_lock; /* lock for stat operations */
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09001302
Hyojun Kim63da4202017-10-06 17:10:08 -07001303 /* For app/fs IO statistics */
1304 spinlock_t iostat_lock;
1305 unsigned long long write_iostat[NR_IO_TYPE];
1306 bool iostat_enable;
1307
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09001308 /* For sysfs suppport */
1309 struct kobject s_kobj;
1310 struct completion s_kobj_unregister;
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001311
1312 /* For shrinker support */
1313 struct list_head s_list;
Hyojun Kim63da4202017-10-06 17:10:08 -07001314 int s_ndevs; /* number of devices */
1315 struct f2fs_dev_info *devs; /* for device list */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001316 unsigned int dirty_device; /* for checkpoint data flush */
1317 spinlock_t dev_lock; /* protect dirty_device */
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001318 struct mutex umount_mutex;
1319 unsigned int shrinker_run_no;
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08001320
1321 /* For write statistics */
1322 u64 sectors_written_start;
1323 u64 kbytes_written;
Keith Mok43b65732016-03-02 12:04:24 -08001324
1325 /* Reference to checksum algorithm driver via cryptoapi */
1326 struct crypto_shash *s_chksum_driver;
Chao Yu1ecc0c52016-09-23 21:30:09 +08001327
Hyojun Kim63da4202017-10-06 17:10:08 -07001328 /* Precomputed FS UUID checksum for seeding other checksums */
1329 __u32 s_chksum_seed;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001330};
1331
Chao Yu1ecc0c52016-09-23 21:30:09 +08001332#ifdef CONFIG_F2FS_FAULT_INJECTION
Chao Yu2f4764422018-08-22 17:17:47 +08001333#define f2fs_show_injection_info(type) \
1334 printk_ratelimited("%sF2FS-fs : inject %s in %s of %pF\n", \
1335 KERN_INFO, f2fs_fault_name[type], \
Hyojun Kim63da4202017-10-06 17:10:08 -07001336 __func__, __builtin_return_address(0))
Chao Yu1ecc0c52016-09-23 21:30:09 +08001337static inline bool time_to_inject(struct f2fs_sb_info *sbi, int type)
1338{
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001339 struct f2fs_fault_info *ffi = &F2FS_OPTION(sbi).fault_info;
Chao Yu1ecc0c52016-09-23 21:30:09 +08001340
1341 if (!ffi->inject_rate)
1342 return false;
1343
1344 if (!IS_FAULT_SET(ffi, type))
1345 return false;
1346
1347 atomic_inc(&ffi->inject_ops);
1348 if (atomic_read(&ffi->inject_ops) >= ffi->inject_rate) {
1349 atomic_set(&ffi->inject_ops, 0);
Chao Yu1ecc0c52016-09-23 21:30:09 +08001350 return true;
1351 }
1352 return false;
1353}
Arnd Bergmann33c54d52018-08-13 23:38:06 +02001354#else
1355#define f2fs_show_injection_info(type) do { } while (0)
1356static inline bool time_to_inject(struct f2fs_sb_info *sbi, int type)
1357{
1358 return false;
1359}
Chao Yu1ecc0c52016-09-23 21:30:09 +08001360#endif
1361
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08001362/* For write statistics. Suppose sector size is 512 bytes,
1363 * and the return value is in kbytes. s is of struct f2fs_sb_info.
1364 */
1365#define BD_PART_WRITTEN(s) \
Hyojun Kim63da4202017-10-06 17:10:08 -07001366(((u64)part_stat_read((s)->sb->s_bdev->bd_part, sectors[1]) - \
1367 (s)->sectors_written_start) >> 1)
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08001368
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08001369static inline void f2fs_update_time(struct f2fs_sb_info *sbi, int type)
1370{
Sahitya Tummalafeb1b252018-09-19 14:18:47 +05301371 unsigned long now = jiffies;
1372
1373 sbi->last_time[type] = now;
1374
1375 /* DISCARD_TIME and GC_TIME are based on REQ_TIME */
1376 if (type == REQ_TIME) {
1377 sbi->last_time[DISCARD_TIME] = now;
1378 sbi->last_time[GC_TIME] = now;
1379 }
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08001380}
1381
1382static inline bool f2fs_time_over(struct f2fs_sb_info *sbi, int type)
1383{
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001384 unsigned long interval = sbi->interval_time[type] * HZ;
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08001385
1386 return time_after(jiffies, sbi->last_time[type] + interval);
1387}
1388
Sahitya Tummalafeb1b252018-09-19 14:18:47 +05301389static inline unsigned int f2fs_time_to_wait(struct f2fs_sb_info *sbi,
1390 int type)
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08001391{
Sahitya Tummalafeb1b252018-09-19 14:18:47 +05301392 unsigned long interval = sbi->interval_time[type] * HZ;
1393 unsigned int wait_ms = 0;
1394 long delta;
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08001395
Sahitya Tummalafeb1b252018-09-19 14:18:47 +05301396 delta = (sbi->last_time[type] + interval) - jiffies;
1397 if (delta > 0)
1398 wait_ms = jiffies_to_msecs(delta);
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08001399
Sahitya Tummalafeb1b252018-09-19 14:18:47 +05301400 return wait_ms;
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08001401}
1402
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001403/*
1404 * Inline functions
1405 */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001406static inline u32 __f2fs_crc32(struct f2fs_sb_info *sbi, u32 crc,
Hyojun Kim63da4202017-10-06 17:10:08 -07001407 const void *address, unsigned int length)
1408{
1409 struct {
1410 struct shash_desc shash;
1411 char ctx[4];
1412 } desc;
1413 int err;
1414
1415 BUG_ON(crypto_shash_descsize(sbi->s_chksum_driver) != sizeof(desc.ctx));
1416
1417 desc.shash.tfm = sbi->s_chksum_driver;
1418 desc.shash.flags = 0;
1419 *(u32 *)desc.ctx = crc;
1420
1421 err = crypto_shash_update(&desc.shash, address, length);
1422 BUG_ON(err);
1423
1424 return *(u32 *)desc.ctx;
1425}
1426
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001427static inline u32 f2fs_crc32(struct f2fs_sb_info *sbi, const void *address,
1428 unsigned int length)
1429{
1430 return __f2fs_crc32(sbi, F2FS_SUPER_MAGIC, address, length);
1431}
1432
1433static inline bool f2fs_crc_valid(struct f2fs_sb_info *sbi, __u32 blk_crc,
1434 void *buf, size_t buf_size)
1435{
1436 return f2fs_crc32(sbi, buf, buf_size) == blk_crc;
1437}
1438
1439static inline u32 f2fs_chksum(struct f2fs_sb_info *sbi, u32 crc,
1440 const void *address, unsigned int length)
1441{
1442 return __f2fs_crc32(sbi, crc, address, length);
1443}
1444
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001445static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
1446{
1447 return container_of(inode, struct f2fs_inode_info, vfs_inode);
1448}
1449
1450static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
1451{
1452 return sb->s_fs_info;
1453}
1454
Jaegeuk Kim40813632014-09-02 15:31:18 -07001455static inline struct f2fs_sb_info *F2FS_I_SB(struct inode *inode)
1456{
1457 return F2FS_SB(inode->i_sb);
1458}
1459
1460static inline struct f2fs_sb_info *F2FS_M_SB(struct address_space *mapping)
1461{
1462 return F2FS_I_SB(mapping->host);
1463}
1464
1465static inline struct f2fs_sb_info *F2FS_P_SB(struct page *page)
1466{
1467 return F2FS_M_SB(page->mapping);
1468}
1469
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001470static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
1471{
1472 return (struct f2fs_super_block *)(sbi->raw_super);
1473}
1474
1475static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
1476{
1477 return (struct f2fs_checkpoint *)(sbi->ckpt);
1478}
1479
Gu Zheng45590712013-07-15 17:57:38 +08001480static inline struct f2fs_node *F2FS_NODE(struct page *page)
1481{
1482 return (struct f2fs_node *)page_address(page);
1483}
1484
Jaegeuk Kim58bfaf42013-12-26 16:30:41 +09001485static inline struct f2fs_inode *F2FS_INODE(struct page *page)
1486{
1487 return &((struct f2fs_node *)page_address(page))->i;
1488}
1489
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001490static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
1491{
1492 return (struct f2fs_nm_info *)(sbi->nm_info);
1493}
1494
1495static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
1496{
1497 return (struct f2fs_sm_info *)(sbi->sm_info);
1498}
1499
1500static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
1501{
1502 return (struct sit_info *)(SM_I(sbi)->sit_info);
1503}
1504
1505static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
1506{
1507 return (struct free_segmap_info *)(SM_I(sbi)->free_info);
1508}
1509
1510static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
1511{
1512 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
1513}
1514
Gu Zheng9df27d92014-01-20 18:37:04 +08001515static inline struct address_space *META_MAPPING(struct f2fs_sb_info *sbi)
1516{
1517 return sbi->meta_inode->i_mapping;
1518}
1519
Jaegeuk Kim4ef51a82014-01-21 18:51:16 +09001520static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi)
1521{
1522 return sbi->node_inode->i_mapping;
1523}
1524
Chao Yucaf00472015-01-28 17:48:42 +08001525static inline bool is_sbi_flag_set(struct f2fs_sb_info *sbi, unsigned int type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001526{
Chao Yufadb2fb2016-09-20 10:29:47 +08001527 return test_bit(type, &sbi->s_flag);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001528}
1529
Chao Yucaf00472015-01-28 17:48:42 +08001530static inline void set_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001531{
Chao Yufadb2fb2016-09-20 10:29:47 +08001532 set_bit(type, &sbi->s_flag);
Chao Yucaf00472015-01-28 17:48:42 +08001533}
1534
1535static inline void clear_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
1536{
Chao Yufadb2fb2016-09-20 10:29:47 +08001537 clear_bit(type, &sbi->s_flag);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001538}
1539
Jaegeuk Kimd71b5562013-08-09 15:03:21 +09001540static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)
1541{
1542 return le64_to_cpu(cp->checkpoint_ver);
1543}
1544
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001545static inline unsigned long f2fs_qf_ino(struct super_block *sb, int type)
1546{
1547 if (type < F2FS_MAX_QUOTAS)
1548 return le32_to_cpu(F2FS_SB(sb)->raw_super->qf_ino[type]);
1549 return 0;
1550}
1551
Hyojun Kim63da4202017-10-06 17:10:08 -07001552static inline __u64 cur_cp_crc(struct f2fs_checkpoint *cp)
1553{
1554 size_t crc_offset = le32_to_cpu(cp->checksum_offset);
1555 return le32_to_cpu(*((__le32 *)((unsigned char *)cp + crc_offset)));
1556}
1557
Chao Yuaaec2b12016-09-20 11:04:18 +08001558static inline bool __is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001559{
1560 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
Chao Yuaaec2b12016-09-20 11:04:18 +08001561
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001562 return ckpt_flags & f;
1563}
1564
Chao Yuaaec2b12016-09-20 11:04:18 +08001565static inline bool is_set_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f)
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001566{
Chao Yuaaec2b12016-09-20 11:04:18 +08001567 return __is_set_ckpt_flags(F2FS_CKPT(sbi), f);
1568}
1569
1570static inline void __set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
1571{
1572 unsigned int ckpt_flags;
1573
1574 ckpt_flags = le32_to_cpu(cp->ckpt_flags);
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001575 ckpt_flags |= f;
1576 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
1577}
1578
Chao Yuaaec2b12016-09-20 11:04:18 +08001579static inline void set_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f)
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001580{
Hyojun Kim63da4202017-10-06 17:10:08 -07001581 unsigned long flags;
1582
1583 spin_lock_irqsave(&sbi->cp_lock, flags);
Chao Yuaaec2b12016-09-20 11:04:18 +08001584 __set_ckpt_flags(F2FS_CKPT(sbi), f);
Hyojun Kim63da4202017-10-06 17:10:08 -07001585 spin_unlock_irqrestore(&sbi->cp_lock, flags);
Chao Yuaaec2b12016-09-20 11:04:18 +08001586}
1587
1588static inline void __clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
1589{
1590 unsigned int ckpt_flags;
1591
1592 ckpt_flags = le32_to_cpu(cp->ckpt_flags);
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001593 ckpt_flags &= (~f);
1594 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
1595}
1596
Chao Yuaaec2b12016-09-20 11:04:18 +08001597static inline void clear_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f)
1598{
Hyojun Kim63da4202017-10-06 17:10:08 -07001599 unsigned long flags;
1600
1601 spin_lock_irqsave(&sbi->cp_lock, flags);
Chao Yuaaec2b12016-09-20 11:04:18 +08001602 __clear_ckpt_flags(F2FS_CKPT(sbi), f);
Hyojun Kim63da4202017-10-06 17:10:08 -07001603 spin_unlock_irqrestore(&sbi->cp_lock, flags);
Chao Yuaaec2b12016-09-20 11:04:18 +08001604}
1605
Hyojun Kim63da4202017-10-06 17:10:08 -07001606static inline void disable_nat_bits(struct f2fs_sb_info *sbi, bool lock)
Jaegeuk Kim3e025742016-08-02 10:56:40 -07001607{
Hyojun Kim63da4202017-10-06 17:10:08 -07001608 unsigned long flags;
Jaegeuk Kim3e025742016-08-02 10:56:40 -07001609
Hyojun Kim63da4202017-10-06 17:10:08 -07001610 set_sbi_flag(sbi, SBI_NEED_FSCK);
1611
1612 if (lock)
1613 spin_lock_irqsave(&sbi->cp_lock, flags);
1614 __clear_ckpt_flags(F2FS_CKPT(sbi), CP_NAT_BITS_FLAG);
1615 kfree(NM_I(sbi)->nat_bits);
1616 NM_I(sbi)->nat_bits = NULL;
1617 if (lock)
1618 spin_unlock_irqrestore(&sbi->cp_lock, flags);
1619}
1620
1621static inline bool enabled_nat_bits(struct f2fs_sb_info *sbi,
1622 struct cp_control *cpc)
1623{
1624 bool set = is_set_ckpt_flags(sbi, CP_NAT_BITS_FLAG);
1625
1626 return (cpc) ? (cpc->reason & CP_UMOUNT) && set : set;
Jaegeuk Kim3e025742016-08-02 10:56:40 -07001627}
1628
Gu Zhenge4795562013-09-27 18:08:30 +08001629static inline void f2fs_lock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001630{
Jaegeuk Kimb873b792016-08-04 11:38:25 -07001631 down_read(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001632}
1633
Hyojun Kim63da4202017-10-06 17:10:08 -07001634static inline int f2fs_trylock_op(struct f2fs_sb_info *sbi)
1635{
1636 return down_read_trylock(&sbi->cp_rwsem);
1637}
1638
Gu Zhenge4795562013-09-27 18:08:30 +08001639static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001640{
Jaegeuk Kimb873b792016-08-04 11:38:25 -07001641 up_read(&sbi->cp_rwsem);
Jaegeuk Kim39936832012-11-22 16:21:29 +09001642}
1643
Gu Zhenge4795562013-09-27 18:08:30 +08001644static inline void f2fs_lock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +09001645{
Jaegeuk Kimb873b792016-08-04 11:38:25 -07001646 down_write(&sbi->cp_rwsem);
Jaegeuk Kim39936832012-11-22 16:21:29 +09001647}
1648
Gu Zhenge4795562013-09-27 18:08:30 +08001649static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +09001650{
Jaegeuk Kimb873b792016-08-04 11:38:25 -07001651 up_write(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001652}
1653
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001654static inline int __get_cp_reason(struct f2fs_sb_info *sbi)
1655{
1656 int reason = CP_SYNC;
1657
1658 if (test_opt(sbi, FASTBOOT))
1659 reason = CP_FASTBOOT;
1660 if (is_sbi_flag_set(sbi, SBI_IS_CLOSE))
1661 reason = CP_UMOUNT;
1662 return reason;
1663}
1664
1665static inline bool __remain_node_summaries(int reason)
1666{
Hyojun Kim63da4202017-10-06 17:10:08 -07001667 return (reason & (CP_UMOUNT | CP_FASTBOOT));
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001668}
1669
1670static inline bool __exist_node_summaries(struct f2fs_sb_info *sbi)
1671{
Chao Yuaaec2b12016-09-20 11:04:18 +08001672 return (is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG) ||
1673 is_set_ckpt_flags(sbi, CP_FASTBOOT_FLAG));
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001674}
1675
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001676/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001677 * Check whether the inode has blocks or not
1678 */
1679static inline int F2FS_HAS_BLOCKS(struct inode *inode)
1680{
Hyojun Kim63da4202017-10-06 17:10:08 -07001681 block_t xattr_block = F2FS_I(inode)->i_xattr_nid ? 1 : 0;
1682
1683 return (inode->i_blocks >> F2FS_LOG_SECTORS_PER_BLOCK) > xattr_block;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001684}
1685
Chao Yu4bc8e9b2014-03-17 16:35:06 +08001686static inline bool f2fs_has_xattr_block(unsigned int ofs)
1687{
1688 return ofs == XATTR_NODE_OFFSET;
1689}
1690
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001691static inline bool __allow_reserved_blocks(struct f2fs_sb_info *sbi,
Jaegeuk Kima35dc722018-04-20 23:44:59 -07001692 struct inode *inode, bool cap)
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001693{
1694 if (!inode)
1695 return true;
1696 if (!test_opt(sbi, RESERVE_ROOT))
1697 return false;
1698 if (IS_NOQUOTA(inode))
1699 return true;
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001700 if (uid_eq(F2FS_OPTION(sbi).s_resuid, current_fsuid()))
1701 return true;
1702 if (!gid_eq(F2FS_OPTION(sbi).s_resgid, GLOBAL_ROOT_GID) &&
1703 in_group_p(F2FS_OPTION(sbi).s_resgid))
1704 return true;
Jaegeuk Kima35dc722018-04-20 23:44:59 -07001705 if (cap && capable(CAP_SYS_RESOURCE))
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001706 return true;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001707 return false;
1708}
1709
Hyojun Kim63da4202017-10-06 17:10:08 -07001710static inline void f2fs_i_blocks_write(struct inode *, block_t, bool, bool);
1711static inline int inc_valid_block_count(struct f2fs_sb_info *sbi,
Chao Yu46008c62016-05-09 19:56:30 +08001712 struct inode *inode, blkcnt_t *count)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001713{
Hyojun Kim63da4202017-10-06 17:10:08 -07001714 blkcnt_t diff = 0, release = 0;
1715 block_t avail_user_block_count;
1716 int ret;
1717
1718 ret = dquot_reserve_block(inode, *count);
1719 if (ret)
1720 return ret;
Jaegeuk Kimdd11a5d2016-07-19 19:20:11 -07001721
Hyojun Kim63da4202017-10-06 17:10:08 -07001722 if (time_to_inject(sbi, FAULT_BLOCK)) {
1723 f2fs_show_injection_info(FAULT_BLOCK);
1724 release = *count;
1725 goto enospc;
1726 }
Arnd Bergmann33c54d52018-08-13 23:38:06 +02001727
Jaegeuk Kimdd11a5d2016-07-19 19:20:11 -07001728 /*
1729 * let's increase this in prior to actual block count change in order
1730 * for f2fs_sync_file to avoid data races when deciding checkpoint.
1731 */
1732 percpu_counter_add(&sbi->alloc_valid_block_count, (*count));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001733
1734 spin_lock(&sbi->stat_lock);
Jaegeuk Kim2555a2d2016-06-30 19:02:06 -07001735 sbi->total_valid_block_count += (block_t)(*count);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001736 avail_user_block_count = sbi->user_block_count -
1737 sbi->current_reserved_blocks;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001738
Jaegeuk Kima35dc722018-04-20 23:44:59 -07001739 if (!__allow_reserved_blocks(sbi, inode, true))
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001740 avail_user_block_count -= F2FS_OPTION(sbi).root_reserved_blocks;
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -07001741 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
1742 avail_user_block_count -= sbi->unusable_block_count;
Hyojun Kim63da4202017-10-06 17:10:08 -07001743 if (unlikely(sbi->total_valid_block_count > avail_user_block_count)) {
1744 diff = sbi->total_valid_block_count - avail_user_block_count;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001745 if (diff > *count)
1746 diff = *count;
Jaegeuk Kimdd11a5d2016-07-19 19:20:11 -07001747 *count -= diff;
Hyojun Kim63da4202017-10-06 17:10:08 -07001748 release = diff;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001749 sbi->total_valid_block_count -= diff;
Chao Yu46008c62016-05-09 19:56:30 +08001750 if (!*count) {
1751 spin_unlock(&sbi->stat_lock);
Hyojun Kim63da4202017-10-06 17:10:08 -07001752 goto enospc;
Chao Yu46008c62016-05-09 19:56:30 +08001753 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001754 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001755 spin_unlock(&sbi->stat_lock);
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07001756
Daniel Rosenberg6b1b1a42018-07-09 20:32:42 -07001757 if (unlikely(release)) {
1758 percpu_counter_sub(&sbi->alloc_valid_block_count, release);
Hyojun Kim63da4202017-10-06 17:10:08 -07001759 dquot_release_reservation_block(inode, release);
Daniel Rosenberg6b1b1a42018-07-09 20:32:42 -07001760 }
Hyojun Kim63da4202017-10-06 17:10:08 -07001761 f2fs_i_blocks_write(inode, *count, true, true);
1762 return 0;
1763
1764enospc:
Daniel Rosenberg6b1b1a42018-07-09 20:32:42 -07001765 percpu_counter_sub(&sbi->alloc_valid_block_count, release);
Hyojun Kim63da4202017-10-06 17:10:08 -07001766 dquot_release_reservation_block(inode, release);
1767 return -ENOSPC;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001768}
1769
Gu Zhengda19b0d2013-11-19 18:03:27 +08001770static inline void dec_valid_block_count(struct f2fs_sb_info *sbi,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001771 struct inode *inode,
Hyojun Kim63da4202017-10-06 17:10:08 -07001772 block_t count)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001773{
Hyojun Kim63da4202017-10-06 17:10:08 -07001774 blkcnt_t sectors = count << F2FS_LOG_SECTORS_PER_BLOCK;
1775
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001776 spin_lock(&sbi->stat_lock);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001777 f2fs_bug_on(sbi, sbi->total_valid_block_count < (block_t) count);
Hyojun Kim63da4202017-10-06 17:10:08 -07001778 f2fs_bug_on(sbi, inode->i_blocks < sectors);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001779 sbi->total_valid_block_count -= (block_t)count;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001780 if (sbi->reserved_blocks &&
1781 sbi->current_reserved_blocks < sbi->reserved_blocks)
1782 sbi->current_reserved_blocks = min(sbi->reserved_blocks,
1783 sbi->current_reserved_blocks + count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001784 spin_unlock(&sbi->stat_lock);
Hyojun Kim63da4202017-10-06 17:10:08 -07001785 f2fs_i_blocks_write(inode, count, false, true);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001786}
1787
1788static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
1789{
Jaegeuk Kim725ba1a2016-10-20 19:09:57 -07001790 atomic_inc(&sbi->nr_pages[count_type]);
Chao Yu7c4abcb2016-08-18 17:46:14 +08001791
Hyojun Kim63da4202017-10-06 17:10:08 -07001792 if (count_type == F2FS_DIRTY_DATA || count_type == F2FS_INMEM_PAGES ||
Jaegeuk Kim8025d722018-10-16 10:20:53 -07001793 count_type == F2FS_WB_CP_DATA || count_type == F2FS_WB_DATA ||
1794 count_type == F2FS_RD_DATA || count_type == F2FS_RD_NODE ||
1795 count_type == F2FS_RD_META)
Chao Yu7c4abcb2016-08-18 17:46:14 +08001796 return;
1797
Chao Yucaf00472015-01-28 17:48:42 +08001798 set_sbi_flag(sbi, SBI_IS_DIRTY);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001799}
1800
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001801static inline void inode_inc_dirty_pages(struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001802{
Jaegeuk Kima43e1c42016-12-02 15:11:32 -08001803 atomic_inc(&F2FS_I(inode)->dirty_pages);
Chao Yuc227f912015-12-16 13:09:20 +08001804 inc_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ?
1805 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001806 if (IS_NOQUOTA(inode))
1807 inc_page_count(F2FS_I_SB(inode), F2FS_DIRTY_QDATA);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001808}
1809
1810static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
1811{
Jaegeuk Kim725ba1a2016-10-20 19:09:57 -07001812 atomic_dec(&sbi->nr_pages[count_type]);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001813}
1814
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001815static inline void inode_dec_dirty_pages(struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001816{
Chao Yu5ac9f362015-06-29 18:14:10 +08001817 if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
1818 !S_ISLNK(inode->i_mode))
Jaegeuk Kim1fe54f92014-02-07 10:00:06 +09001819 return;
1820
Jaegeuk Kima43e1c42016-12-02 15:11:32 -08001821 atomic_dec(&F2FS_I(inode)->dirty_pages);
Chao Yuc227f912015-12-16 13:09:20 +08001822 dec_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ?
1823 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001824 if (IS_NOQUOTA(inode))
1825 dec_page_count(F2FS_I_SB(inode), F2FS_DIRTY_QDATA);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001826}
1827
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001828static inline s64 get_pages(struct f2fs_sb_info *sbi, int count_type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001829{
Jaegeuk Kim725ba1a2016-10-20 19:09:57 -07001830 return atomic_read(&sbi->nr_pages[count_type]);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001831}
1832
Jaegeuk Kima43e1c42016-12-02 15:11:32 -08001833static inline int get_dirty_pages(struct inode *inode)
Jaegeuk Kimf8b2c1f2014-03-18 12:33:06 +09001834{
Jaegeuk Kima43e1c42016-12-02 15:11:32 -08001835 return atomic_read(&F2FS_I(inode)->dirty_pages);
Jaegeuk Kimf8b2c1f2014-03-18 12:33:06 +09001836}
1837
Namjae Jeon5ac206c2013-02-02 23:52:59 +09001838static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
1839{
Chao Yu3519e3f2015-12-01 11:56:52 +08001840 unsigned int pages_per_sec = sbi->segs_per_sec * sbi->blocks_per_seg;
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001841 unsigned int segs = (get_pages(sbi, block_type) + pages_per_sec - 1) >>
1842 sbi->log_blocks_per_seg;
1843
1844 return segs / sbi->segs_per_sec;
Namjae Jeon5ac206c2013-02-02 23:52:59 +09001845}
1846
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001847static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
1848{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +09001849 return sbi->total_valid_block_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001850}
1851
Yunlei Hef83a2582016-08-18 21:01:18 +08001852static inline block_t discard_blocks(struct f2fs_sb_info *sbi)
1853{
1854 return sbi->discard_blks;
1855}
1856
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001857static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
1858{
1859 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1860
1861 /* return NAT or SIT bitmap */
1862 if (flag == NAT_BITMAP)
1863 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
1864 else if (flag == SIT_BITMAP)
1865 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
1866
1867 return 0;
1868}
1869
Wanpeng Li55141482015-02-26 07:57:20 +08001870static inline block_t __cp_payload(struct f2fs_sb_info *sbi)
1871{
1872 return le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload);
1873}
1874
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001875static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
1876{
1877 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Changman Lee1dbe4152014-05-12 12:27:43 +09001878 int offset;
1879
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001880 if (is_set_ckpt_flags(sbi, CP_LARGE_NAT_BITMAP_FLAG)) {
1881 offset = (flag == SIT_BITMAP) ?
1882 le32_to_cpu(ckpt->nat_ver_bitmap_bytesize) : 0;
1883 return &ckpt->sit_nat_version_bitmap + offset;
1884 }
1885
Wanpeng Li55141482015-02-26 07:57:20 +08001886 if (__cp_payload(sbi) > 0) {
Changman Lee1dbe4152014-05-12 12:27:43 +09001887 if (flag == NAT_BITMAP)
1888 return &ckpt->sit_nat_version_bitmap;
1889 else
Jaegeuk Kim65b85cc2014-07-30 17:25:54 -07001890 return (unsigned char *)ckpt + F2FS_BLKSIZE;
Changman Lee1dbe4152014-05-12 12:27:43 +09001891 } else {
1892 offset = (flag == NAT_BITMAP) ?
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001893 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
Changman Lee1dbe4152014-05-12 12:27:43 +09001894 return &ckpt->sit_nat_version_bitmap + offset;
1895 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001896}
1897
1898static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
1899{
Jaegeuk Kim01e15b32016-11-24 12:45:15 -08001900 block_t start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001901
Jaegeuk Kim01e15b32016-11-24 12:45:15 -08001902 if (sbi->cur_cp_pack == 2)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001903 start_addr += sbi->blocks_per_seg;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001904 return start_addr;
1905}
1906
Jaegeuk Kim01e15b32016-11-24 12:45:15 -08001907static inline block_t __start_cp_next_addr(struct f2fs_sb_info *sbi)
1908{
1909 block_t start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
1910
1911 if (sbi->cur_cp_pack == 1)
1912 start_addr += sbi->blocks_per_seg;
1913 return start_addr;
1914}
1915
1916static inline void __set_cp_next_pack(struct f2fs_sb_info *sbi)
1917{
1918 sbi->cur_cp_pack = (sbi->cur_cp_pack == 1) ? 2 : 1;
1919}
1920
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001921static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
1922{
1923 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
1924}
1925
Hyojun Kim63da4202017-10-06 17:10:08 -07001926static inline int inc_valid_node_count(struct f2fs_sb_info *sbi,
1927 struct inode *inode, bool is_inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001928{
1929 block_t valid_block_count;
1930 unsigned int valid_node_count;
Chao Yud8312722018-09-20 20:05:00 +08001931 int err;
Hyojun Kim63da4202017-10-06 17:10:08 -07001932
Chao Yud8312722018-09-20 20:05:00 +08001933 if (is_inode) {
1934 if (inode) {
1935 err = dquot_alloc_inode(inode);
1936 if (err)
1937 return err;
1938 }
1939 } else {
1940 err = dquot_reserve_block(inode, 1);
1941 if (err)
1942 return err;
Hyojun Kim63da4202017-10-06 17:10:08 -07001943 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001944
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001945 if (time_to_inject(sbi, FAULT_BLOCK)) {
1946 f2fs_show_injection_info(FAULT_BLOCK);
1947 goto enospc;
1948 }
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001949
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001950 spin_lock(&sbi->stat_lock);
1951
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001952 valid_block_count = sbi->total_valid_block_count +
1953 sbi->current_reserved_blocks + 1;
1954
Jaegeuk Kima35dc722018-04-20 23:44:59 -07001955 if (!__allow_reserved_blocks(sbi, inode, false))
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001956 valid_block_count += F2FS_OPTION(sbi).root_reserved_blocks;
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -07001957 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
1958 valid_block_count += sbi->unusable_block_count;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001959
1960 if (unlikely(valid_block_count > sbi->user_block_count)) {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001961 spin_unlock(&sbi->stat_lock);
Hyojun Kim63da4202017-10-06 17:10:08 -07001962 goto enospc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001963 }
1964
Gu Zhengef86d702013-11-19 18:03:38 +08001965 valid_node_count = sbi->total_valid_node_count + 1;
Chao Yucfb271d2013-12-05 17:15:22 +08001966 if (unlikely(valid_node_count > sbi->total_node_count)) {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001967 spin_unlock(&sbi->stat_lock);
Hyojun Kim63da4202017-10-06 17:10:08 -07001968 goto enospc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001969 }
1970
Gu Zhengef86d702013-11-19 18:03:38 +08001971 sbi->total_valid_node_count++;
1972 sbi->total_valid_block_count++;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001973 spin_unlock(&sbi->stat_lock);
1974
Hyojun Kim63da4202017-10-06 17:10:08 -07001975 if (inode) {
1976 if (is_inode)
1977 f2fs_mark_inode_dirty_sync(inode, true);
1978 else
1979 f2fs_i_blocks_write(inode, 1, true, true);
1980 }
1981
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07001982 percpu_counter_inc(&sbi->alloc_valid_block_count);
Hyojun Kim63da4202017-10-06 17:10:08 -07001983 return 0;
1984
1985enospc:
Chao Yud8312722018-09-20 20:05:00 +08001986 if (is_inode) {
1987 if (inode)
1988 dquot_free_inode(inode);
1989 } else {
Hyojun Kim63da4202017-10-06 17:10:08 -07001990 dquot_release_reservation_block(inode, 1);
Chao Yud8312722018-09-20 20:05:00 +08001991 }
Hyojun Kim63da4202017-10-06 17:10:08 -07001992 return -ENOSPC;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001993}
1994
1995static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
Hyojun Kim63da4202017-10-06 17:10:08 -07001996 struct inode *inode, bool is_inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001997{
1998 spin_lock(&sbi->stat_lock);
1999
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07002000 f2fs_bug_on(sbi, !sbi->total_valid_block_count);
2001 f2fs_bug_on(sbi, !sbi->total_valid_node_count);
Hyojun Kim63da4202017-10-06 17:10:08 -07002002 f2fs_bug_on(sbi, !is_inode && !inode->i_blocks);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002003
Gu Zhengef86d702013-11-19 18:03:38 +08002004 sbi->total_valid_node_count--;
2005 sbi->total_valid_block_count--;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002006 if (sbi->reserved_blocks &&
2007 sbi->current_reserved_blocks < sbi->reserved_blocks)
2008 sbi->current_reserved_blocks++;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002009
2010 spin_unlock(&sbi->stat_lock);
Hyojun Kim63da4202017-10-06 17:10:08 -07002011
Chao Yud8312722018-09-20 20:05:00 +08002012 if (is_inode)
2013 dquot_free_inode(inode);
2014 else
Hyojun Kim63da4202017-10-06 17:10:08 -07002015 f2fs_i_blocks_write(inode, 1, false, true);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002016}
2017
2018static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
2019{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +09002020 return sbi->total_valid_node_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002021}
2022
2023static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
2024{
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07002025 percpu_counter_inc(&sbi->total_valid_inode_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002026}
2027
Jaegeuk Kim0e802202013-11-26 16:36:20 +09002028static inline void dec_valid_inode_count(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002029{
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07002030 percpu_counter_dec(&sbi->total_valid_inode_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002031}
2032
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07002033static inline s64 valid_inode_count(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002034{
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07002035 return percpu_counter_sum_positive(&sbi->total_valid_inode_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002036}
2037
Jaegeuk Kima56c7c62015-10-09 15:11:38 -07002038static inline struct page *f2fs_grab_cache_page(struct address_space *mapping,
2039 pgoff_t index, bool for_write)
2040{
Chao Yu33af8982018-07-27 18:15:14 +08002041 struct page *page;
Hyojun Kim63da4202017-10-06 17:10:08 -07002042
Arnd Bergmann33c54d52018-08-13 23:38:06 +02002043 if (IS_ENABLED(CONFIG_F2FS_FAULT_INJECTION)) {
2044 if (!for_write)
2045 page = find_get_page_flags(mapping, index,
2046 FGP_LOCK | FGP_ACCESSED);
2047 else
2048 page = find_lock_page(mapping, index);
2049 if (page)
2050 return page;
Jaegeuk Kimc41f3cc32016-04-29 16:17:09 -07002051
Arnd Bergmann33c54d52018-08-13 23:38:06 +02002052 if (time_to_inject(F2FS_M_SB(mapping), FAULT_PAGE_ALLOC)) {
2053 f2fs_show_injection_info(FAULT_PAGE_ALLOC);
2054 return NULL;
2055 }
Hyojun Kim63da4202017-10-06 17:10:08 -07002056 }
Arnd Bergmann33c54d52018-08-13 23:38:06 +02002057
Jaegeuk Kima56c7c62015-10-09 15:11:38 -07002058 if (!for_write)
2059 return grab_cache_page(mapping, index);
2060 return grab_cache_page_write_begin(mapping, index, AOP_FLAG_NOFS);
2061}
2062
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002063static inline struct page *f2fs_pagecache_get_page(
2064 struct address_space *mapping, pgoff_t index,
2065 int fgp_flags, gfp_t gfp_mask)
2066{
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002067 if (time_to_inject(F2FS_M_SB(mapping), FAULT_PAGE_GET)) {
2068 f2fs_show_injection_info(FAULT_PAGE_GET);
2069 return NULL;
2070 }
Arnd Bergmann33c54d52018-08-13 23:38:06 +02002071
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002072 return pagecache_get_page(mapping, index, fgp_flags, gfp_mask);
2073}
2074
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07002075static inline void f2fs_copy_page(struct page *src, struct page *dst)
2076{
2077 char *src_kaddr = kmap(src);
2078 char *dst_kaddr = kmap(dst);
2079
2080 memcpy(dst_kaddr, src_kaddr, PAGE_SIZE);
2081 kunmap(dst);
2082 kunmap(src);
2083}
2084
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002085static inline void f2fs_put_page(struct page *page, int unlock)
2086{
Jaegeuk Kim031fa8c2013-11-28 12:55:13 +09002087 if (!page)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002088 return;
2089
2090 if (unlock) {
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07002091 f2fs_bug_on(F2FS_P_SB(page), !PageLocked(page));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002092 unlock_page(page);
2093 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002094 put_page(page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002095}
2096
2097static inline void f2fs_put_dnode(struct dnode_of_data *dn)
2098{
2099 if (dn->node_page)
2100 f2fs_put_page(dn->node_page, 1);
2101 if (dn->inode_page && dn->node_page != dn->inode_page)
2102 f2fs_put_page(dn->inode_page, 0);
2103 dn->node_page = NULL;
2104 dn->inode_page = NULL;
2105}
2106
2107static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
Gu Zhenge8512d22014-03-07 18:43:28 +08002108 size_t size)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002109{
Gu Zhenge8512d22014-03-07 18:43:28 +08002110 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002111}
2112
Gu Zheng7bd59382013-10-22 14:52:26 +08002113static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep,
2114 gfp_t flags)
2115{
2116 void *entry;
Gu Zheng7bd59382013-10-22 14:52:26 +08002117
Jaegeuk Kim80c54502015-08-20 08:51:56 -07002118 entry = kmem_cache_alloc(cachep, flags);
2119 if (!entry)
2120 entry = kmem_cache_alloc(cachep, flags | __GFP_NOFAIL);
Gu Zheng7bd59382013-10-22 14:52:26 +08002121 return entry;
2122}
2123
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002124static inline struct bio *f2fs_bio_alloc(struct f2fs_sb_info *sbi,
2125 int npages, bool no_fail)
Jaegeuk Kim740432f2015-08-14 11:43:56 -07002126{
2127 struct bio *bio;
2128
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002129 if (no_fail) {
2130 /* No failure on bio allocation */
2131 bio = bio_alloc(GFP_NOIO, npages);
2132 if (!bio)
2133 bio = bio_alloc(GFP_NOIO | __GFP_NOFAIL, npages);
2134 return bio;
2135 }
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002136 if (time_to_inject(sbi, FAULT_ALLOC_BIO)) {
2137 f2fs_show_injection_info(FAULT_ALLOC_BIO);
2138 return NULL;
2139 }
Arnd Bergmann33c54d52018-08-13 23:38:06 +02002140
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002141 return bio_alloc(GFP_KERNEL, npages);
Jaegeuk Kim740432f2015-08-14 11:43:56 -07002142}
2143
Jaegeuk Kim8025d722018-10-16 10:20:53 -07002144static inline bool is_idle(struct f2fs_sb_info *sbi, int type)
2145{
2146 if (get_pages(sbi, F2FS_RD_DATA) || get_pages(sbi, F2FS_RD_NODE) ||
2147 get_pages(sbi, F2FS_RD_META) || get_pages(sbi, F2FS_WB_DATA) ||
2148 get_pages(sbi, F2FS_WB_CP_DATA))
2149 return false;
2150 return f2fs_time_over(sbi, type);
2151}
2152
Jaegeuk Kim9be32d72014-12-05 10:39:49 -08002153static inline void f2fs_radix_tree_insert(struct radix_tree_root *root,
2154 unsigned long index, void *item)
2155{
2156 while (radix_tree_insert(root, index, item))
2157 cond_resched();
2158}
2159
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002160#define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
2161
2162static inline bool IS_INODE(struct page *page)
2163{
Gu Zheng45590712013-07-15 17:57:38 +08002164 struct f2fs_node *p = F2FS_NODE(page);
Hyojun Kim63da4202017-10-06 17:10:08 -07002165
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002166 return RAW_IS_INODE(p);
2167}
2168
Hyojun Kim63da4202017-10-06 17:10:08 -07002169static inline int offset_in_addr(struct f2fs_inode *i)
2170{
2171 return (i->i_inline & F2FS_EXTRA_ATTR) ?
2172 (le16_to_cpu(i->i_extra_isize) / sizeof(__le32)) : 0;
2173}
2174
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002175static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
2176{
2177 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
2178}
2179
Hyojun Kim63da4202017-10-06 17:10:08 -07002180static inline int f2fs_has_extra_attr(struct inode *inode);
2181static inline block_t datablock_addr(struct inode *inode,
2182 struct page *node_page, unsigned int offset)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002183{
2184 struct f2fs_node *raw_node;
2185 __le32 *addr_array;
Hyojun Kim63da4202017-10-06 17:10:08 -07002186 int base = 0;
2187 bool is_inode = IS_INODE(node_page);
2188
Gu Zheng45590712013-07-15 17:57:38 +08002189 raw_node = F2FS_NODE(node_page);
Hyojun Kim63da4202017-10-06 17:10:08 -07002190
2191 /* from GC path only */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002192 if (is_inode) {
2193 if (!inode)
Hyojun Kim63da4202017-10-06 17:10:08 -07002194 base = offset_in_addr(&raw_node->i);
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002195 else if (f2fs_has_extra_attr(inode))
2196 base = get_extra_isize(inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07002197 }
2198
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002199 addr_array = blkaddr_in_node(raw_node);
Hyojun Kim63da4202017-10-06 17:10:08 -07002200 return le32_to_cpu(addr_array[base + offset]);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002201}
2202
2203static inline int f2fs_test_bit(unsigned int nr, char *addr)
2204{
2205 int mask;
2206
2207 addr += (nr >> 3);
2208 mask = 1 << (7 - (nr & 0x07));
2209 return mask & *addr;
2210}
2211
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002212static inline void f2fs_set_bit(unsigned int nr, char *addr)
2213{
2214 int mask;
2215
2216 addr += (nr >> 3);
2217 mask = 1 << (7 - (nr & 0x07));
2218 *addr |= mask;
2219}
2220
2221static inline void f2fs_clear_bit(unsigned int nr, char *addr)
2222{
2223 int mask;
2224
2225 addr += (nr >> 3);
2226 mask = 1 << (7 - (nr & 0x07));
2227 *addr &= ~mask;
2228}
2229
Gu Zheng52aca072014-10-20 17:45:51 +08002230static inline int f2fs_test_and_set_bit(unsigned int nr, char *addr)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002231{
2232 int mask;
2233 int ret;
2234
2235 addr += (nr >> 3);
2236 mask = 1 << (7 - (nr & 0x07));
2237 ret = mask & *addr;
2238 *addr |= mask;
2239 return ret;
2240}
2241
Gu Zheng52aca072014-10-20 17:45:51 +08002242static inline int f2fs_test_and_clear_bit(unsigned int nr, char *addr)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002243{
2244 int mask;
2245 int ret;
2246
2247 addr += (nr >> 3);
2248 mask = 1 << (7 - (nr & 0x07));
2249 ret = mask & *addr;
2250 *addr &= ~mask;
2251 return ret;
2252}
2253
Gu Zhengc6ac4c02014-10-20 17:45:50 +08002254static inline void f2fs_change_bit(unsigned int nr, char *addr)
2255{
2256 int mask;
2257
2258 addr += (nr >> 3);
2259 mask = 1 << (7 - (nr & 0x07));
2260 *addr ^= mask;
2261}
2262
Chao Yu9bafde62018-04-03 15:08:17 +08002263/*
2264 * Inode flags
2265 */
2266#define F2FS_SECRM_FL 0x00000001 /* Secure deletion */
2267#define F2FS_UNRM_FL 0x00000002 /* Undelete */
2268#define F2FS_COMPR_FL 0x00000004 /* Compress file */
2269#define F2FS_SYNC_FL 0x00000008 /* Synchronous updates */
2270#define F2FS_IMMUTABLE_FL 0x00000010 /* Immutable file */
2271#define F2FS_APPEND_FL 0x00000020 /* writes to file may only append */
2272#define F2FS_NODUMP_FL 0x00000040 /* do not dump file */
2273#define F2FS_NOATIME_FL 0x00000080 /* do not update atime */
2274/* Reserved for compression usage... */
2275#define F2FS_DIRTY_FL 0x00000100
2276#define F2FS_COMPRBLK_FL 0x00000200 /* One or more compressed clusters */
2277#define F2FS_NOCOMPR_FL 0x00000400 /* Don't compress */
2278#define F2FS_ENCRYPT_FL 0x00000800 /* encrypted file */
2279/* End compression flags --- maybe not all used */
2280#define F2FS_INDEX_FL 0x00001000 /* hash-indexed directory */
2281#define F2FS_IMAGIC_FL 0x00002000 /* AFS directory */
2282#define F2FS_JOURNAL_DATA_FL 0x00004000 /* file data should be journaled */
2283#define F2FS_NOTAIL_FL 0x00008000 /* file tail should not be merged */
2284#define F2FS_DIRSYNC_FL 0x00010000 /* dirsync behaviour (directories only) */
2285#define F2FS_TOPDIR_FL 0x00020000 /* Top of directory hierarchies*/
2286#define F2FS_HUGE_FILE_FL 0x00040000 /* Set to each huge file */
2287#define F2FS_EXTENTS_FL 0x00080000 /* Inode uses extents */
2288#define F2FS_EA_INODE_FL 0x00200000 /* Inode used for large EA */
2289#define F2FS_EOFBLOCKS_FL 0x00400000 /* Blocks allocated beyond EOF */
2290#define F2FS_INLINE_DATA_FL 0x10000000 /* Inode has inline data. */
2291#define F2FS_PROJINHERIT_FL 0x20000000 /* Create with parents projid */
2292#define F2FS_RESERVED_FL 0x80000000 /* reserved for ext4 lib */
2293
2294#define F2FS_FL_USER_VISIBLE 0x304BDFFF /* User visible flags */
2295#define F2FS_FL_USER_MODIFIABLE 0x204BC0FF /* User modifiable flags */
2296
2297/* Flags we can manipulate with through F2FS_IOC_FSSETXATTR */
2298#define F2FS_FL_XFLAG_VISIBLE (F2FS_SYNC_FL | \
2299 F2FS_IMMUTABLE_FL | \
2300 F2FS_APPEND_FL | \
2301 F2FS_NODUMP_FL | \
2302 F2FS_NOATIME_FL | \
2303 F2FS_PROJINHERIT_FL)
2304
2305/* Flags that should be inherited by new inodes from their parent. */
2306#define F2FS_FL_INHERITED (F2FS_SECRM_FL | F2FS_UNRM_FL | F2FS_COMPR_FL |\
2307 F2FS_SYNC_FL | F2FS_NODUMP_FL | F2FS_NOATIME_FL |\
2308 F2FS_NOCOMPR_FL | F2FS_JOURNAL_DATA_FL |\
2309 F2FS_NOTAIL_FL | F2FS_DIRSYNC_FL |\
2310 F2FS_PROJINHERIT_FL)
2311
2312/* Flags that are appropriate for regular files (all but dir-specific ones). */
2313#define F2FS_REG_FLMASK (~(F2FS_DIRSYNC_FL | F2FS_TOPDIR_FL))
2314
2315/* Flags that are appropriate for non-directories/regular files. */
2316#define F2FS_OTHER_FLMASK (F2FS_NODUMP_FL | F2FS_NOATIME_FL)
Hyojun Kim63da4202017-10-06 17:10:08 -07002317
2318static inline __u32 f2fs_mask_flags(umode_t mode, __u32 flags)
2319{
2320 if (S_ISDIR(mode))
2321 return flags;
2322 else if (S_ISREG(mode))
2323 return flags & F2FS_REG_FLMASK;
2324 else
2325 return flags & F2FS_OTHER_FLMASK;
2326}
2327
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002328/* used for f2fs_inode_info->flags */
2329enum {
2330 FI_NEW_INODE, /* indicate newly allocated inode */
Jaegeuk Kimb3783872013-06-10 09:17:01 +09002331 FI_DIRTY_INODE, /* indicate inode is dirty or not */
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07002332 FI_AUTO_RECOVER, /* indicate inode is recoverable */
Jaegeuk Kimed57c272014-04-15 11:19:28 +09002333 FI_DIRTY_DIR, /* indicate directory has dirty pages */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002334 FI_INC_LINK, /* need to increment i_nlink */
2335 FI_ACL_MODE, /* indicate acl mode */
2336 FI_NO_ALLOC, /* should not allocate any blocks */
Jaegeuk Kimc9b63bd2015-06-23 10:36:08 -07002337 FI_FREE_NID, /* free allocated nide */
Jaegeuk Kimc11abd12013-11-19 10:41:54 +09002338 FI_NO_EXTENT, /* not to use the extent cache */
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002339 FI_INLINE_XATTR, /* used for inline xattr */
Huajun Li1001b342013-11-10 23:13:16 +08002340 FI_INLINE_DATA, /* used for inline data*/
Chao Yu34d67de2014-09-24 18:15:19 +08002341 FI_INLINE_DENTRY, /* used for inline dentry */
Jaegeuk Kimfff04f92014-07-25 07:40:59 -07002342 FI_APPEND_WRITE, /* inode has appended data */
2343 FI_UPDATE_WRITE, /* inode has in-place-update data */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002344 FI_NEED_IPU, /* used for ipu per file */
2345 FI_ATOMIC_FILE, /* indicate atomic file */
Hyojun Kim63da4202017-10-06 17:10:08 -07002346 FI_ATOMIC_COMMIT, /* indicate the state of atomical committing */
Jaegeuk Kim02a13352014-10-06 16:11:16 -07002347 FI_VOLATILE_FILE, /* indicate volatile file */
Jaegeuk Kim3c6c2be2015-03-17 17:16:35 -07002348 FI_FIRST_BLOCK_WRITTEN, /* indicate #0 data block was written */
Jaegeuk Kim1e843712014-12-09 06:08:59 -08002349 FI_DROP_CACHE, /* drop dirty page cache */
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07002350 FI_DATA_EXIST, /* indicate data exists */
Jaegeuk Kim510022a2015-03-30 15:07:16 -07002351 FI_INLINE_DOTS, /* indicate inline dot dentries */
Chao Yud323d002015-10-27 09:53:45 +08002352 FI_DO_DEFRAG, /* indicate defragment is running */
Chao Yuc227f912015-12-16 13:09:20 +08002353 FI_DIRTY_FILE, /* indicate regular/symlink has dirty pages */
Hyojun Kim63da4202017-10-06 17:10:08 -07002354 FI_NO_PREALLOC, /* indicate skipped preallocated blocks */
2355 FI_HOT_DATA, /* indicate file is hot */
2356 FI_EXTRA_ATTR, /* indicate file has extra attribute */
2357 FI_PROJ_INHERIT, /* indicate file inherits projectid */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002358 FI_PIN_FILE, /* indicate file should not be gced */
Chao Yucaf10c62018-05-07 20:28:54 +08002359 FI_ATOMIC_REVOKE_REQUEST, /* request to drop atomic data */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002360};
2361
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002362static inline void __mark_inode_dirty_flag(struct inode *inode,
2363 int flag, bool set)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002364{
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002365 switch (flag) {
2366 case FI_INLINE_XATTR:
2367 case FI_INLINE_DATA:
2368 case FI_INLINE_DENTRY:
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002369 case FI_NEW_INODE:
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002370 if (set)
2371 return;
2372 case FI_DATA_EXIST:
2373 case FI_INLINE_DOTS:
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002374 case FI_PIN_FILE:
Hyojun Kim63da4202017-10-06 17:10:08 -07002375 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002376 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002377}
2378
Jaegeuk Kim91942322016-05-20 10:13:22 -07002379static inline void set_inode_flag(struct inode *inode, int flag)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002380{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002381 if (!test_bit(flag, &F2FS_I(inode)->flags))
2382 set_bit(flag, &F2FS_I(inode)->flags);
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002383 __mark_inode_dirty_flag(inode, flag, true);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002384}
2385
Jaegeuk Kim91942322016-05-20 10:13:22 -07002386static inline int is_inode_flag_set(struct inode *inode, int flag)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002387{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002388 return test_bit(flag, &F2FS_I(inode)->flags);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002389}
2390
Jaegeuk Kim91942322016-05-20 10:13:22 -07002391static inline void clear_inode_flag(struct inode *inode, int flag)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002392{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002393 if (test_bit(flag, &F2FS_I(inode)->flags))
2394 clear_bit(flag, &F2FS_I(inode)->flags);
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002395 __mark_inode_dirty_flag(inode, flag, false);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002396}
2397
Jaegeuk Kim91942322016-05-20 10:13:22 -07002398static inline void set_acl_inode(struct inode *inode, umode_t mode)
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002399{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002400 F2FS_I(inode)->i_acl_mode = mode;
2401 set_inode_flag(inode, FI_ACL_MODE);
Hyojun Kim63da4202017-10-06 17:10:08 -07002402 f2fs_mark_inode_dirty_sync(inode, false);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002403}
2404
Jaegeuk Kima1961242016-05-20 09:43:20 -07002405static inline void f2fs_i_links_write(struct inode *inode, bool inc)
2406{
2407 if (inc)
2408 inc_nlink(inode);
2409 else
2410 drop_nlink(inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07002411 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kima1961242016-05-20 09:43:20 -07002412}
2413
Jaegeuk Kim8edd03c2016-05-20 09:26:06 -07002414static inline void f2fs_i_blocks_write(struct inode *inode,
Hyojun Kim63da4202017-10-06 17:10:08 -07002415 block_t diff, bool add, bool claim)
Jaegeuk Kim8edd03c2016-05-20 09:26:06 -07002416{
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07002417 bool clean = !is_inode_flag_set(inode, FI_DIRTY_INODE);
2418 bool recover = is_inode_flag_set(inode, FI_AUTO_RECOVER);
2419
Hyojun Kim63da4202017-10-06 17:10:08 -07002420 /* add = 1, claim = 1 should be dquot_reserve_block in pair */
2421 if (add) {
2422 if (claim)
2423 dquot_claim_block(inode, diff);
2424 else
2425 dquot_alloc_block_nofail(inode, diff);
2426 } else {
2427 dquot_free_block(inode, diff);
2428 }
2429
2430 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07002431 if (clean || recover)
2432 set_inode_flag(inode, FI_AUTO_RECOVER);
Jaegeuk Kim8edd03c2016-05-20 09:26:06 -07002433}
2434
Jaegeuk Kimfc9581c2016-05-20 09:22:03 -07002435static inline void f2fs_i_size_write(struct inode *inode, loff_t i_size)
2436{
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07002437 bool clean = !is_inode_flag_set(inode, FI_DIRTY_INODE);
2438 bool recover = is_inode_flag_set(inode, FI_AUTO_RECOVER);
2439
Jaegeuk Kimfc9581c2016-05-20 09:22:03 -07002440 if (i_size_read(inode) == i_size)
2441 return;
2442
2443 i_size_write(inode, i_size);
Hyojun Kim63da4202017-10-06 17:10:08 -07002444 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07002445 if (clean || recover)
2446 set_inode_flag(inode, FI_AUTO_RECOVER);
2447}
2448
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002449static inline void f2fs_i_depth_write(struct inode *inode, unsigned int depth)
2450{
2451 F2FS_I(inode)->i_current_depth = depth;
Hyojun Kim63da4202017-10-06 17:10:08 -07002452 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002453}
2454
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002455static inline void f2fs_i_gc_failures_write(struct inode *inode,
2456 unsigned int count)
2457{
Chao Yucaf10c62018-05-07 20:28:54 +08002458 F2FS_I(inode)->i_gc_failures[GC_FAILURE_PIN] = count;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002459 f2fs_mark_inode_dirty_sync(inode, true);
2460}
2461
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002462static inline void f2fs_i_xnid_write(struct inode *inode, nid_t xnid)
2463{
2464 F2FS_I(inode)->i_xattr_nid = xnid;
Hyojun Kim63da4202017-10-06 17:10:08 -07002465 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002466}
2467
2468static inline void f2fs_i_pino_write(struct inode *inode, nid_t pino)
2469{
2470 F2FS_I(inode)->i_pino = pino;
Hyojun Kim63da4202017-10-06 17:10:08 -07002471 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002472}
2473
Jaegeuk Kim91942322016-05-20 10:13:22 -07002474static inline void get_inline_info(struct inode *inode, struct f2fs_inode *ri)
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002475{
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002476 struct f2fs_inode_info *fi = F2FS_I(inode);
2477
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002478 if (ri->i_inline & F2FS_INLINE_XATTR)
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002479 set_bit(FI_INLINE_XATTR, &fi->flags);
Huajun Li1001b342013-11-10 23:13:16 +08002480 if (ri->i_inline & F2FS_INLINE_DATA)
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002481 set_bit(FI_INLINE_DATA, &fi->flags);
Chao Yu34d67de2014-09-24 18:15:19 +08002482 if (ri->i_inline & F2FS_INLINE_DENTRY)
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002483 set_bit(FI_INLINE_DENTRY, &fi->flags);
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07002484 if (ri->i_inline & F2FS_DATA_EXIST)
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002485 set_bit(FI_DATA_EXIST, &fi->flags);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07002486 if (ri->i_inline & F2FS_INLINE_DOTS)
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002487 set_bit(FI_INLINE_DOTS, &fi->flags);
Hyojun Kim63da4202017-10-06 17:10:08 -07002488 if (ri->i_inline & F2FS_EXTRA_ATTR)
2489 set_bit(FI_EXTRA_ATTR, &fi->flags);
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002490 if (ri->i_inline & F2FS_PIN_FILE)
2491 set_bit(FI_PIN_FILE, &fi->flags);
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002492}
2493
Jaegeuk Kim91942322016-05-20 10:13:22 -07002494static inline void set_raw_inline(struct inode *inode, struct f2fs_inode *ri)
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002495{
2496 ri->i_inline = 0;
2497
Jaegeuk Kim91942322016-05-20 10:13:22 -07002498 if (is_inode_flag_set(inode, FI_INLINE_XATTR))
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002499 ri->i_inline |= F2FS_INLINE_XATTR;
Jaegeuk Kim91942322016-05-20 10:13:22 -07002500 if (is_inode_flag_set(inode, FI_INLINE_DATA))
Huajun Li1001b342013-11-10 23:13:16 +08002501 ri->i_inline |= F2FS_INLINE_DATA;
Jaegeuk Kim91942322016-05-20 10:13:22 -07002502 if (is_inode_flag_set(inode, FI_INLINE_DENTRY))
Chao Yu34d67de2014-09-24 18:15:19 +08002503 ri->i_inline |= F2FS_INLINE_DENTRY;
Jaegeuk Kim91942322016-05-20 10:13:22 -07002504 if (is_inode_flag_set(inode, FI_DATA_EXIST))
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07002505 ri->i_inline |= F2FS_DATA_EXIST;
Jaegeuk Kim91942322016-05-20 10:13:22 -07002506 if (is_inode_flag_set(inode, FI_INLINE_DOTS))
Jaegeuk Kim510022a2015-03-30 15:07:16 -07002507 ri->i_inline |= F2FS_INLINE_DOTS;
Hyojun Kim63da4202017-10-06 17:10:08 -07002508 if (is_inode_flag_set(inode, FI_EXTRA_ATTR))
2509 ri->i_inline |= F2FS_EXTRA_ATTR;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002510 if (is_inode_flag_set(inode, FI_PIN_FILE))
2511 ri->i_inline |= F2FS_PIN_FILE;
Hyojun Kim63da4202017-10-06 17:10:08 -07002512}
2513
2514static inline int f2fs_has_extra_attr(struct inode *inode)
2515{
2516 return is_inode_flag_set(inode, FI_EXTRA_ATTR);
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002517}
2518
Chao Yu987c7c32014-03-12 15:59:03 +08002519static inline int f2fs_has_inline_xattr(struct inode *inode)
2520{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002521 return is_inode_flag_set(inode, FI_INLINE_XATTR);
Chao Yu987c7c32014-03-12 15:59:03 +08002522}
2523
Chao Yu81ca7352016-01-26 15:39:35 +08002524static inline unsigned int addrs_per_inode(struct inode *inode)
Jaegeuk Kimde936532013-08-12 21:08:03 +09002525{
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002526 return CUR_ADDRS_PER_INODE(inode) - get_inline_xattr_addrs(inode);
Jaegeuk Kimde936532013-08-12 21:08:03 +09002527}
2528
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002529static inline void *inline_xattr_addr(struct inode *inode, struct page *page)
Jaegeuk Kim65985d92013-08-14 21:57:27 +09002530{
Chao Yu695fd1e2014-02-27 19:52:21 +08002531 struct f2fs_inode *ri = F2FS_INODE(page);
Hyojun Kim63da4202017-10-06 17:10:08 -07002532
Jaegeuk Kim65985d92013-08-14 21:57:27 +09002533 return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE -
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002534 get_inline_xattr_addrs(inode)]);
Jaegeuk Kim65985d92013-08-14 21:57:27 +09002535}
2536
2537static inline int inline_xattr_size(struct inode *inode)
2538{
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002539 return get_inline_xattr_addrs(inode) * sizeof(__le32);
Jaegeuk Kim65985d92013-08-14 21:57:27 +09002540}
2541
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09002542static inline int f2fs_has_inline_data(struct inode *inode)
2543{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002544 return is_inode_flag_set(inode, FI_INLINE_DATA);
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09002545}
2546
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07002547static inline int f2fs_exist_data(struct inode *inode)
2548{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002549 return is_inode_flag_set(inode, FI_DATA_EXIST);
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07002550}
2551
Jaegeuk Kim510022a2015-03-30 15:07:16 -07002552static inline int f2fs_has_inline_dots(struct inode *inode)
2553{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002554 return is_inode_flag_set(inode, FI_INLINE_DOTS);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07002555}
2556
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002557static inline bool f2fs_is_pinned_file(struct inode *inode)
2558{
2559 return is_inode_flag_set(inode, FI_PIN_FILE);
2560}
2561
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002562static inline bool f2fs_is_atomic_file(struct inode *inode)
2563{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002564 return is_inode_flag_set(inode, FI_ATOMIC_FILE);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002565}
2566
Hyojun Kim63da4202017-10-06 17:10:08 -07002567static inline bool f2fs_is_commit_atomic_write(struct inode *inode)
2568{
2569 return is_inode_flag_set(inode, FI_ATOMIC_COMMIT);
2570}
2571
Jaegeuk Kim02a13352014-10-06 16:11:16 -07002572static inline bool f2fs_is_volatile_file(struct inode *inode)
2573{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002574 return is_inode_flag_set(inode, FI_VOLATILE_FILE);
Jaegeuk Kim02a13352014-10-06 16:11:16 -07002575}
2576
Jaegeuk Kim3c6c2be2015-03-17 17:16:35 -07002577static inline bool f2fs_is_first_block_written(struct inode *inode)
2578{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002579 return is_inode_flag_set(inode, FI_FIRST_BLOCK_WRITTEN);
Jaegeuk Kim3c6c2be2015-03-17 17:16:35 -07002580}
2581
Jaegeuk Kim1e843712014-12-09 06:08:59 -08002582static inline bool f2fs_is_drop_cache(struct inode *inode)
2583{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002584 return is_inode_flag_set(inode, FI_DROP_CACHE);
Jaegeuk Kim1e843712014-12-09 06:08:59 -08002585}
2586
Hyojun Kim63da4202017-10-06 17:10:08 -07002587static inline void *inline_data_addr(struct inode *inode, struct page *page)
Huajun Li1001b342013-11-10 23:13:16 +08002588{
Chao Yu695fd1e2014-02-27 19:52:21 +08002589 struct f2fs_inode *ri = F2FS_INODE(page);
Hyojun Kim63da4202017-10-06 17:10:08 -07002590 int extra_size = get_extra_isize(inode);
2591
2592 return (void *)&(ri->i_addr[extra_size + DEF_INLINE_RESERVED_SIZE]);
Huajun Li1001b342013-11-10 23:13:16 +08002593}
2594
Chao Yu34d67de2014-09-24 18:15:19 +08002595static inline int f2fs_has_inline_dentry(struct inode *inode)
2596{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002597 return is_inode_flag_set(inode, FI_INLINE_DENTRY);
Chao Yu34d67de2014-09-24 18:15:19 +08002598}
2599
Jaegeuk Kimb5492af72015-04-20 13:44:41 -07002600static inline int is_file(struct inode *inode, int type)
2601{
2602 return F2FS_I(inode)->i_advise & type;
2603}
2604
2605static inline void set_file(struct inode *inode, int type)
2606{
2607 F2FS_I(inode)->i_advise |= type;
Hyojun Kim63da4202017-10-06 17:10:08 -07002608 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kimb5492af72015-04-20 13:44:41 -07002609}
2610
2611static inline void clear_file(struct inode *inode, int type)
2612{
2613 F2FS_I(inode)->i_advise &= ~type;
Hyojun Kim63da4202017-10-06 17:10:08 -07002614 f2fs_mark_inode_dirty_sync(inode, true);
2615}
2616
2617static inline bool f2fs_skip_inode_update(struct inode *inode, int dsync)
2618{
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002619 bool ret;
2620
Hyojun Kim63da4202017-10-06 17:10:08 -07002621 if (dsync) {
2622 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07002623
2624 spin_lock(&sbi->inode_lock[DIRTY_META]);
2625 ret = list_empty(&F2FS_I(inode)->gdirty_list);
2626 spin_unlock(&sbi->inode_lock[DIRTY_META]);
2627 return ret;
2628 }
2629 if (!is_inode_flag_set(inode, FI_AUTO_RECOVER) ||
2630 file_keep_isize(inode) ||
Jaegeuk Kimd9197652018-01-05 10:44:52 -08002631 i_size_read(inode) & ~PAGE_MASK)
2632 return false;
2633
2634 if (!timespec_equal(F2FS_I(inode)->i_disk_time, &inode->i_atime))
2635 return false;
2636 if (!timespec_equal(F2FS_I(inode)->i_disk_time + 1, &inode->i_ctime))
2637 return false;
2638 if (!timespec_equal(F2FS_I(inode)->i_disk_time + 2, &inode->i_mtime))
2639 return false;
2640 if (!timespec_equal(F2FS_I(inode)->i_disk_time + 3,
2641 &F2FS_I(inode)->i_crtime))
Hyojun Kim63da4202017-10-06 17:10:08 -07002642 return false;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002643
2644 down_read(&F2FS_I(inode)->i_sem);
2645 ret = F2FS_I(inode)->last_disk_size == i_size_read(inode);
2646 up_read(&F2FS_I(inode)->i_sem);
2647
2648 return ret;
Jaegeuk Kimb5492af72015-04-20 13:44:41 -07002649}
2650
Jaegeuk Kimd9197652018-01-05 10:44:52 -08002651static inline bool f2fs_readonly(struct super_block *sb)
Jaegeuk Kim77888c12013-05-20 20:28:47 +09002652{
2653 return sb->s_flags & MS_RDONLY;
2654}
2655
Jaegeuk Kim1e968fd2014-08-11 16:49:25 -07002656static inline bool f2fs_cp_error(struct f2fs_sb_info *sbi)
2657{
Chao Yuaaec2b12016-09-20 11:04:18 +08002658 return is_set_ckpt_flags(sbi, CP_ERROR_FLAG);
Jaegeuk Kim1e968fd2014-08-11 16:49:25 -07002659}
2660
Jaegeuk Kimeaa693f2015-04-26 00:15:29 -07002661static inline bool is_dot_dotdot(const struct qstr *str)
2662{
2663 if (str->len == 1 && str->name[0] == '.')
2664 return true;
2665
2666 if (str->len == 2 && str->name[0] == '.' && str->name[1] == '.')
2667 return true;
2668
2669 return false;
2670}
2671
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07002672static inline bool f2fs_may_extent_tree(struct inode *inode)
2673{
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07002674 if (!test_opt(F2FS_I_SB(inode), EXTENT_CACHE) ||
Jaegeuk Kim91942322016-05-20 10:13:22 -07002675 is_inode_flag_set(inode, FI_NO_EXTENT))
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07002676 return false;
2677
Al Viro886f56f2015-12-05 03:56:06 -05002678 return S_ISREG(inode->i_mode);
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07002679}
2680
Chao Yu1ecc0c52016-09-23 21:30:09 +08002681static inline void *f2fs_kmalloc(struct f2fs_sb_info *sbi,
2682 size_t size, gfp_t flags)
Jaegeuk Kim0414b002016-04-29 15:16:42 -07002683{
Hyojun Kim63da4202017-10-06 17:10:08 -07002684 if (time_to_inject(sbi, FAULT_KMALLOC)) {
2685 f2fs_show_injection_info(FAULT_KMALLOC);
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -07002686 return NULL;
Hyojun Kim63da4202017-10-06 17:10:08 -07002687 }
Arnd Bergmann33c54d52018-08-13 23:38:06 +02002688
Jaegeuk Kim0414b002016-04-29 15:16:42 -07002689 return kmalloc(size, flags);
2690}
2691
Hyojun Kim63da4202017-10-06 17:10:08 -07002692static inline void *kvmalloc(size_t size, gfp_t flags)
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002693{
2694 void *ret;
2695
2696 ret = kmalloc(size, flags | __GFP_NOWARN);
2697 if (!ret)
2698 ret = __vmalloc(size, flags, PAGE_KERNEL);
2699 return ret;
2700}
2701
Hyojun Kim63da4202017-10-06 17:10:08 -07002702static inline void *kvzalloc(size_t size, gfp_t flags)
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002703{
2704 void *ret;
2705
2706 ret = kzalloc(size, flags | __GFP_NOWARN);
2707 if (!ret)
2708 ret = __vmalloc(size, flags | __GFP_ZERO, PAGE_KERNEL);
2709 return ret;
2710}
2711
Hyojun Kim63da4202017-10-06 17:10:08 -07002712static inline int wbc_to_write_flags(struct writeback_control *wbc)
2713{
2714 if (wbc->sync_mode == WB_SYNC_ALL)
2715 return REQ_SYNC;
2716 else if (wbc->for_kupdate || wbc->for_background)
2717 return 0;
2718
2719 return 0;
2720}
2721
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002722static inline void *f2fs_kzalloc(struct f2fs_sb_info *sbi,
2723 size_t size, gfp_t flags)
2724{
2725 return f2fs_kmalloc(sbi, size, flags | __GFP_ZERO);
2726}
2727
2728static inline void *f2fs_kvmalloc(struct f2fs_sb_info *sbi,
2729 size_t size, gfp_t flags)
2730{
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002731 if (time_to_inject(sbi, FAULT_KVMALLOC)) {
2732 f2fs_show_injection_info(FAULT_KVMALLOC);
2733 return NULL;
2734 }
Arnd Bergmann33c54d52018-08-13 23:38:06 +02002735
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002736 return kvmalloc(size, flags);
2737}
2738
2739static inline void *f2fs_kvzalloc(struct f2fs_sb_info *sbi,
2740 size_t size, gfp_t flags)
2741{
2742 return f2fs_kvmalloc(sbi, size, flags | __GFP_ZERO);
2743}
2744
Hyojun Kim63da4202017-10-06 17:10:08 -07002745static inline int get_extra_isize(struct inode *inode)
2746{
2747 return F2FS_I(inode)->i_extra_isize / sizeof(__le32);
2748}
2749
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002750static inline int get_inline_xattr_addrs(struct inode *inode)
2751{
2752 return F2FS_I(inode)->i_inline_xattr_size;
2753}
2754
Chao Yu6b4d6a82018-05-30 00:20:41 +08002755#define f2fs_get_inode_mode(i) \
Jaegeuk Kim91942322016-05-20 10:13:22 -07002756 ((is_inode_flag_set(i, FI_ACL_MODE)) ? \
Christoph Hellwiga6dda0e2013-12-20 05:16:45 -08002757 (F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
2758
Hyojun Kim63da4202017-10-06 17:10:08 -07002759#define F2FS_TOTAL_EXTRA_ATTR_SIZE \
2760 (offsetof(struct f2fs_inode, i_extra_end) - \
2761 offsetof(struct f2fs_inode, i_extra_isize)) \
2762
2763#define F2FS_OLD_ATTRIBUTE_SIZE (offsetof(struct f2fs_inode, i_addr))
2764#define F2FS_FITS_IN_INODE(f2fs_inode, extra_isize, field) \
2765 ((offsetof(typeof(*f2fs_inode), field) + \
2766 sizeof((f2fs_inode)->field)) \
2767 <= (F2FS_OLD_ATTRIBUTE_SIZE + extra_isize)) \
2768
2769static inline void f2fs_reset_iostat(struct f2fs_sb_info *sbi)
2770{
2771 int i;
2772
2773 spin_lock(&sbi->iostat_lock);
2774 for (i = 0; i < NR_IO_TYPE; i++)
2775 sbi->write_iostat[i] = 0;
2776 spin_unlock(&sbi->iostat_lock);
2777}
2778
2779static inline void f2fs_update_iostat(struct f2fs_sb_info *sbi,
2780 enum iostat_type type, unsigned long long io_bytes)
2781{
2782 if (!sbi->iostat_enable)
2783 return;
2784 spin_lock(&sbi->iostat_lock);
2785 sbi->write_iostat[type] += io_bytes;
2786
2787 if (type == APP_WRITE_IO || type == APP_DIRECT_IO)
2788 sbi->write_iostat[APP_BUFFERED_IO] =
2789 sbi->write_iostat[APP_WRITE_IO] -
2790 sbi->write_iostat[APP_DIRECT_IO];
2791 spin_unlock(&sbi->iostat_lock);
2792}
Chao Yu267378d2014-04-23 14:10:24 +08002793
Chao Yub3c869a2018-08-01 19:13:44 +08002794#define __is_meta_io(fio) (PAGE_TYPE_OF_BIO(fio->type) == META && \
2795 (!is_read_io(fio->op) || fio->is_meta))
2796
Chao Yud05e8712018-06-05 17:44:11 +08002797bool f2fs_is_valid_blkaddr(struct f2fs_sb_info *sbi,
2798 block_t blkaddr, int type);
2799void f2fs_msg(struct super_block *sb, const char *level, const char *fmt, ...);
2800static inline void verify_blkaddr(struct f2fs_sb_info *sbi,
2801 block_t blkaddr, int type)
2802{
2803 if (!f2fs_is_valid_blkaddr(sbi, blkaddr, type)) {
2804 f2fs_msg(sbi->sb, KERN_ERR,
2805 "invalid blkaddr: %u, type: %d, run fsck to fix.",
2806 blkaddr, type);
2807 f2fs_bug_on(sbi, 1);
2808 }
2809}
2810
2811static inline bool __is_valid_data_blkaddr(block_t blkaddr)
Chao Yu158d9bb2018-05-23 22:25:08 +08002812{
2813 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
2814 return false;
2815 return true;
2816}
2817
Chao Yud05e8712018-06-05 17:44:11 +08002818static inline bool is_valid_data_blkaddr(struct f2fs_sb_info *sbi,
2819 block_t blkaddr)
2820{
2821 if (!__is_valid_data_blkaddr(blkaddr))
2822 return false;
2823 verify_blkaddr(sbi, blkaddr, DATA_GENERIC);
2824 return true;
2825}
2826
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002827/*
2828 * file.c
2829 */
Hyojun Kim63da4202017-10-06 17:10:08 -07002830int f2fs_sync_file(struct file *file, loff_t start, loff_t end, int datasync);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002831void f2fs_truncate_data_blocks(struct dnode_of_data *dn);
Chao Yud8312722018-09-20 20:05:00 +08002832int f2fs_truncate_blocks(struct inode *inode, u64 from, bool lock,
2833 bool buf_write);
Hyojun Kim63da4202017-10-06 17:10:08 -07002834int f2fs_truncate(struct inode *inode);
2835int f2fs_getattr(struct vfsmount *mnt, struct dentry *dentry,
2836 struct kstat *stat);
2837int f2fs_setattr(struct dentry *dentry, struct iattr *attr);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002838int f2fs_truncate_hole(struct inode *inode, pgoff_t pg_start, pgoff_t pg_end);
2839void f2fs_truncate_data_blocks_range(struct dnode_of_data *dn, int count);
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002840int f2fs_precache_extents(struct inode *inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07002841long f2fs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg);
2842long f2fs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002843int f2fs_pin_file_control(struct inode *inode, bool inc);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002844
2845/*
2846 * inode.c
2847 */
Hyojun Kim63da4202017-10-06 17:10:08 -07002848void f2fs_set_inode_flags(struct inode *inode);
2849bool f2fs_inode_chksum_verify(struct f2fs_sb_info *sbi, struct page *page);
2850void f2fs_inode_chksum_set(struct f2fs_sb_info *sbi, struct page *page);
2851struct inode *f2fs_iget(struct super_block *sb, unsigned long ino);
2852struct inode *f2fs_iget_retry(struct super_block *sb, unsigned long ino);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002853int f2fs_try_to_free_nats(struct f2fs_sb_info *sbi, int nr_shrink);
2854void f2fs_update_inode(struct inode *inode, struct page *node_page);
2855void f2fs_update_inode_page(struct inode *inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07002856int f2fs_write_inode(struct inode *inode, struct writeback_control *wbc);
2857void f2fs_evict_inode(struct inode *inode);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002858void f2fs_handle_failed_inode(struct inode *inode);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002859
2860/*
2861 * namei.c
2862 */
Chao Yu6b4d6a82018-05-30 00:20:41 +08002863int f2fs_update_extension_list(struct f2fs_sb_info *sbi, const char *name,
Jaegeuk Kimd9197652018-01-05 10:44:52 -08002864 bool hot, bool set);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002865struct dentry *f2fs_get_parent(struct dentry *child);
2866
2867/*
2868 * dir.c
2869 */
Chao Yu6b4d6a82018-05-30 00:20:41 +08002870unsigned char f2fs_get_de_type(struct f2fs_dir_entry *de);
2871struct f2fs_dir_entry *f2fs_find_target_dentry(struct fscrypt_name *fname,
Hyojun Kim63da4202017-10-06 17:10:08 -07002872 f2fs_hash_t namehash, int *max_slots,
2873 struct f2fs_dentry_ptr *d);
2874int f2fs_fill_dentries(struct dir_context *ctx, struct f2fs_dentry_ptr *d,
2875 unsigned int start_pos, struct fscrypt_str *fstr);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002876void f2fs_do_make_empty_dir(struct inode *inode, struct inode *parent,
Hyojun Kim63da4202017-10-06 17:10:08 -07002877 struct f2fs_dentry_ptr *d);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002878struct page *f2fs_init_inode_metadata(struct inode *inode, struct inode *dir,
Hyojun Kim63da4202017-10-06 17:10:08 -07002879 const struct qstr *new_name,
2880 const struct qstr *orig_name, struct page *dpage);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002881void f2fs_update_parent_metadata(struct inode *dir, struct inode *inode,
Hyojun Kim63da4202017-10-06 17:10:08 -07002882 unsigned int current_depth);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002883int f2fs_room_for_filename(const void *bitmap, int slots, int max_slots);
Hyojun Kim63da4202017-10-06 17:10:08 -07002884void f2fs_drop_nlink(struct inode *dir, struct inode *inode);
2885struct f2fs_dir_entry *__f2fs_find_entry(struct inode *dir,
2886 struct fscrypt_name *fname, struct page **res_page);
2887struct f2fs_dir_entry *f2fs_find_entry(struct inode *dir,
2888 const struct qstr *child, struct page **res_page);
2889struct f2fs_dir_entry *f2fs_parent_dir(struct inode *dir, struct page **p);
2890ino_t f2fs_inode_by_name(struct inode *dir, const struct qstr *qstr,
2891 struct page **page);
2892void f2fs_set_link(struct inode *dir, struct f2fs_dir_entry *de,
2893 struct page *page, struct inode *inode);
2894void f2fs_update_dentry(nid_t ino, umode_t mode, struct f2fs_dentry_ptr *d,
2895 const struct qstr *name, f2fs_hash_t name_hash,
2896 unsigned int bit_pos);
2897int f2fs_add_regular_entry(struct inode *dir, const struct qstr *new_name,
2898 const struct qstr *orig_name,
2899 struct inode *inode, nid_t ino, umode_t mode);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002900int f2fs_add_dentry(struct inode *dir, struct fscrypt_name *fname,
Hyojun Kim63da4202017-10-06 17:10:08 -07002901 struct inode *inode, nid_t ino, umode_t mode);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002902int f2fs_do_add_link(struct inode *dir, const struct qstr *name,
Hyojun Kim63da4202017-10-06 17:10:08 -07002903 struct inode *inode, nid_t ino, umode_t mode);
2904void f2fs_delete_entry(struct f2fs_dir_entry *dentry, struct page *page,
2905 struct inode *dir, struct inode *inode);
2906int f2fs_do_tmpfile(struct inode *inode, struct inode *dir);
2907bool f2fs_empty_dir(struct inode *dir);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002908
Al Virob7f7a5e2013-01-25 16:15:43 -05002909static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
2910{
Chao Yu6b4d6a82018-05-30 00:20:41 +08002911 return f2fs_do_add_link(d_inode(dentry->d_parent), &dentry->d_name,
Jaegeuk Kim510022a2015-03-30 15:07:16 -07002912 inode, inode->i_ino, inode->i_mode);
Al Virob7f7a5e2013-01-25 16:15:43 -05002913}
2914
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002915/*
2916 * super.c
2917 */
Hyojun Kim63da4202017-10-06 17:10:08 -07002918int f2fs_inode_dirtied(struct inode *inode, bool sync);
2919void f2fs_inode_synced(struct inode *inode);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002920int f2fs_enable_quota_files(struct f2fs_sb_info *sbi, bool rdonly);
Chao Yud8312722018-09-20 20:05:00 +08002921int f2fs_quota_sync(struct super_block *sb, int type);
Hyojun Kim63da4202017-10-06 17:10:08 -07002922void f2fs_quota_off_umount(struct super_block *sb);
2923int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover);
2924int f2fs_sync_fs(struct super_block *sb, int sync);
Namjae Jeona07ef782012-12-30 14:52:05 +09002925extern __printf(3, 4)
Hyojun Kim63da4202017-10-06 17:10:08 -07002926void f2fs_msg(struct super_block *sb, const char *level, const char *fmt, ...);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002927int f2fs_sanity_check_ckpt(struct f2fs_sb_info *sbi);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002928
2929/*
2930 * hash.c
2931 */
Jaegeuk Kim8daed212017-04-24 10:00:08 -07002932f2fs_hash_t f2fs_dentry_hash(const struct qstr *name_info,
2933 struct fscrypt_name *fname);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002934
2935/*
2936 * node.c
2937 */
2938struct dnode_of_data;
2939struct node_info;
2940
Chao Yu6b4d6a82018-05-30 00:20:41 +08002941int f2fs_check_nid_range(struct f2fs_sb_info *sbi, nid_t nid);
2942bool f2fs_available_free_memory(struct f2fs_sb_info *sbi, int type);
Chao Yu3d5c54a2018-08-02 23:03:19 +08002943bool f2fs_in_warm_node_list(struct f2fs_sb_info *sbi, struct page *page);
2944void f2fs_init_fsync_node_info(struct f2fs_sb_info *sbi);
2945void f2fs_del_fsync_node_entry(struct f2fs_sb_info *sbi, struct page *page);
2946void f2fs_reset_fsync_node_info(struct f2fs_sb_info *sbi);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002947int f2fs_need_dentry_mark(struct f2fs_sb_info *sbi, nid_t nid);
2948bool f2fs_is_checkpointed_node(struct f2fs_sb_info *sbi, nid_t nid);
2949bool f2fs_need_inode_block_update(struct f2fs_sb_info *sbi, nid_t ino);
Chao Yu3c743262018-07-17 00:02:17 +08002950int f2fs_get_node_info(struct f2fs_sb_info *sbi, nid_t nid,
Chao Yu6b4d6a82018-05-30 00:20:41 +08002951 struct node_info *ni);
2952pgoff_t f2fs_get_next_page_offset(struct dnode_of_data *dn, pgoff_t pgofs);
2953int f2fs_get_dnode_of_data(struct dnode_of_data *dn, pgoff_t index, int mode);
2954int f2fs_truncate_inode_blocks(struct inode *inode, pgoff_t from);
2955int f2fs_truncate_xattr_node(struct inode *inode);
Chao Yu3d5c54a2018-08-02 23:03:19 +08002956int f2fs_wait_on_node_pages_writeback(struct f2fs_sb_info *sbi,
2957 unsigned int seq_id);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002958int f2fs_remove_inode_page(struct inode *inode);
2959struct page *f2fs_new_inode_page(struct inode *inode);
2960struct page *f2fs_new_node_page(struct dnode_of_data *dn, unsigned int ofs);
2961void f2fs_ra_node_page(struct f2fs_sb_info *sbi, nid_t nid);
2962struct page *f2fs_get_node_page(struct f2fs_sb_info *sbi, pgoff_t nid);
2963struct page *f2fs_get_node_page_ra(struct page *parent, int start);
Chao Yu44344f42018-09-13 07:40:53 +08002964int f2fs_move_node_page(struct page *node_page, int gc_type);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002965int f2fs_fsync_node_pages(struct f2fs_sb_info *sbi, struct inode *inode,
Chao Yu3d5c54a2018-08-02 23:03:19 +08002966 struct writeback_control *wbc, bool atomic,
2967 unsigned int *seq_id);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002968int f2fs_sync_node_pages(struct f2fs_sb_info *sbi,
2969 struct writeback_control *wbc,
Hyojun Kim63da4202017-10-06 17:10:08 -07002970 bool do_balance, enum iostat_type io_type);
Chao Yu79939f62018-06-15 14:45:57 +08002971int f2fs_build_free_nids(struct f2fs_sb_info *sbi, bool sync, bool mount);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002972bool f2fs_alloc_nid(struct f2fs_sb_info *sbi, nid_t *nid);
2973void f2fs_alloc_nid_done(struct f2fs_sb_info *sbi, nid_t nid);
2974void f2fs_alloc_nid_failed(struct f2fs_sb_info *sbi, nid_t nid);
2975int f2fs_try_to_free_nids(struct f2fs_sb_info *sbi, int nr_shrink);
2976void f2fs_recover_inline_xattr(struct inode *inode, struct page *page);
2977int f2fs_recover_xattr_data(struct inode *inode, struct page *page);
2978int f2fs_recover_inode_page(struct f2fs_sb_info *sbi, struct page *page);
Chao Yu3c743262018-07-17 00:02:17 +08002979int f2fs_restore_node_summary(struct f2fs_sb_info *sbi,
Hyojun Kim63da4202017-10-06 17:10:08 -07002980 unsigned int segno, struct f2fs_summary_block *sum);
Jaegeuk Kim4474e2f2018-09-17 17:36:06 -07002981int f2fs_flush_nat_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002982int f2fs_build_node_manager(struct f2fs_sb_info *sbi);
2983void f2fs_destroy_node_manager(struct f2fs_sb_info *sbi);
2984int __init f2fs_create_node_manager_caches(void);
2985void f2fs_destroy_node_manager_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002986
2987/*
2988 * segment.c
2989 */
Chao Yu6b4d6a82018-05-30 00:20:41 +08002990bool f2fs_need_SSR(struct f2fs_sb_info *sbi);
2991void f2fs_register_inmem_page(struct inode *inode, struct page *page);
2992void f2fs_drop_inmem_pages_all(struct f2fs_sb_info *sbi, bool gc_failure);
2993void f2fs_drop_inmem_pages(struct inode *inode);
2994void f2fs_drop_inmem_page(struct inode *inode, struct page *page);
2995int f2fs_commit_inmem_pages(struct inode *inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07002996void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need);
2997void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002998int f2fs_issue_flush(struct f2fs_sb_info *sbi, nid_t ino);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002999int f2fs_create_flush_cmd_control(struct f2fs_sb_info *sbi);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003000int f2fs_flush_device_cache(struct f2fs_sb_info *sbi);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003001void f2fs_destroy_flush_cmd_control(struct f2fs_sb_info *sbi, bool free);
3002void f2fs_invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr);
3003bool f2fs_is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr);
3004void f2fs_drop_discard_cmd(struct f2fs_sb_info *sbi);
3005void f2fs_stop_discard_thread(struct f2fs_sb_info *sbi);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003006bool f2fs_wait_discard_bios(struct f2fs_sb_info *sbi);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003007void f2fs_clear_prefree_segments(struct f2fs_sb_info *sbi,
3008 struct cp_control *cpc);
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -07003009void f2fs_dirty_to_prefree(struct f2fs_sb_info *sbi);
3010int f2fs_disable_cp_again(struct f2fs_sb_info *sbi);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003011void f2fs_release_discard_addrs(struct f2fs_sb_info *sbi);
3012int f2fs_npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra);
3013void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi);
Hyojun Kim63da4202017-10-06 17:10:08 -07003014int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003015bool f2fs_exist_trim_candidates(struct f2fs_sb_info *sbi,
3016 struct cp_control *cpc);
3017struct page *f2fs_get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno);
3018void f2fs_update_meta_page(struct f2fs_sb_info *sbi, void *src,
3019 block_t blk_addr);
3020void f2fs_do_write_meta_page(struct f2fs_sb_info *sbi, struct page *page,
Hyojun Kim63da4202017-10-06 17:10:08 -07003021 enum iostat_type io_type);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003022void f2fs_do_write_node_page(unsigned int nid, struct f2fs_io_info *fio);
3023void f2fs_outplace_write_data(struct dnode_of_data *dn,
3024 struct f2fs_io_info *fio);
3025int f2fs_inplace_write_data(struct f2fs_io_info *fio);
3026void f2fs_do_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Hyojun Kim63da4202017-10-06 17:10:08 -07003027 block_t old_blkaddr, block_t new_blkaddr,
3028 bool recover_curseg, bool recover_newaddr);
3029void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
3030 block_t old_addr, block_t new_addr,
3031 unsigned char version, bool recover_curseg,
3032 bool recover_newaddr);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003033void f2fs_allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
Hyojun Kim63da4202017-10-06 17:10:08 -07003034 block_t old_blkaddr, block_t *new_blkaddr,
3035 struct f2fs_summary *sum, int type,
3036 struct f2fs_io_info *fio, bool add_list);
3037void f2fs_wait_on_page_writeback(struct page *page,
3038 enum page_type type, bool ordered);
Jaegeuk Kim0d51cea2018-08-22 21:18:00 -07003039void f2fs_wait_on_block_writeback(struct inode *inode, block_t blkaddr);
Sahitya Tummala3d571472018-10-10 10:56:22 +05303040void f2fs_wait_on_block_writeback_range(struct inode *inode, block_t blkaddr,
3041 block_t len);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003042void f2fs_write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk);
3043void f2fs_write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk);
3044int f2fs_lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Hyojun Kim63da4202017-10-06 17:10:08 -07003045 unsigned int val, int alloc);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003046void f2fs_flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc);
3047int f2fs_build_segment_manager(struct f2fs_sb_info *sbi);
3048void f2fs_destroy_segment_manager(struct f2fs_sb_info *sbi);
3049int __init f2fs_create_segment_manager_caches(void);
3050void f2fs_destroy_segment_manager_caches(void);
3051int f2fs_rw_hint_to_seg_type(enum rw_hint hint);
3052enum rw_hint f2fs_io_type_to_rw_hint(struct f2fs_sb_info *sbi,
3053 enum page_type type, enum temp_type temp);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003054
3055/*
3056 * checkpoint.c
3057 */
Hyojun Kim63da4202017-10-06 17:10:08 -07003058void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi, bool end_io);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003059struct page *f2fs_grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index);
3060struct page *f2fs_get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index);
Chao Yu3c743262018-07-17 00:02:17 +08003061struct page *f2fs_get_meta_page_nofail(struct f2fs_sb_info *sbi, pgoff_t index);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003062struct page *f2fs_get_tmp_page(struct f2fs_sb_info *sbi, pgoff_t index);
Chao Yud05e8712018-06-05 17:44:11 +08003063bool f2fs_is_valid_blkaddr(struct f2fs_sb_info *sbi,
3064 block_t blkaddr, int type);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003065int f2fs_ra_meta_pages(struct f2fs_sb_info *sbi, block_t start, int nrpages,
Hyojun Kim63da4202017-10-06 17:10:08 -07003066 int type, bool sync);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003067void f2fs_ra_meta_pages_cond(struct f2fs_sb_info *sbi, pgoff_t index);
3068long f2fs_sync_meta_pages(struct f2fs_sb_info *sbi, enum page_type type,
Hyojun Kim63da4202017-10-06 17:10:08 -07003069 long nr_to_write, enum iostat_type io_type);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003070void f2fs_add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type);
3071void f2fs_remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type);
3072void f2fs_release_ino_entry(struct f2fs_sb_info *sbi, bool all);
3073bool f2fs_exist_written_data(struct f2fs_sb_info *sbi, nid_t ino, int mode);
3074void f2fs_set_dirty_device(struct f2fs_sb_info *sbi, nid_t ino,
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003075 unsigned int devidx, int type);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003076bool f2fs_is_dirty_device(struct f2fs_sb_info *sbi, nid_t ino,
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003077 unsigned int devidx, int type);
Hyojun Kim63da4202017-10-06 17:10:08 -07003078int f2fs_sync_inode_meta(struct f2fs_sb_info *sbi);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003079int f2fs_acquire_orphan_inode(struct f2fs_sb_info *sbi);
3080void f2fs_release_orphan_inode(struct f2fs_sb_info *sbi);
3081void f2fs_add_orphan_inode(struct inode *inode);
3082void f2fs_remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino);
3083int f2fs_recover_orphan_inodes(struct f2fs_sb_info *sbi);
3084int f2fs_get_valid_checkpoint(struct f2fs_sb_info *sbi);
3085void f2fs_update_dirty_page(struct inode *inode, struct page *page);
3086void f2fs_remove_dirty_inode(struct inode *inode);
3087int f2fs_sync_dirty_inodes(struct f2fs_sb_info *sbi, enum inode_type type);
Chao Yu3d5c54a2018-08-02 23:03:19 +08003088void f2fs_wait_on_all_pages_writeback(struct f2fs_sb_info *sbi);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003089int f2fs_write_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc);
3090void f2fs_init_ino_entry_info(struct f2fs_sb_info *sbi);
3091int __init f2fs_create_checkpoint_caches(void);
3092void f2fs_destroy_checkpoint_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003093
3094/*
3095 * data.c
3096 */
Eric Biggersc6299742018-04-18 11:09:48 -07003097int f2fs_init_post_read_processing(void);
3098void f2fs_destroy_post_read_processing(void);
Hyojun Kim63da4202017-10-06 17:10:08 -07003099void f2fs_submit_merged_write(struct f2fs_sb_info *sbi, enum page_type type);
3100void f2fs_submit_merged_write_cond(struct f2fs_sb_info *sbi,
Chao Yu39373df2018-09-27 23:41:16 +08003101 struct inode *inode, struct page *page,
3102 nid_t ino, enum page_type type);
Hyojun Kim63da4202017-10-06 17:10:08 -07003103void f2fs_flush_merged_writes(struct f2fs_sb_info *sbi);
3104int f2fs_submit_page_bio(struct f2fs_io_info *fio);
Chao Yu34880e02018-05-28 23:47:18 +08003105void f2fs_submit_page_write(struct f2fs_io_info *fio);
Hyojun Kim63da4202017-10-06 17:10:08 -07003106struct block_device *f2fs_target_device(struct f2fs_sb_info *sbi,
3107 block_t blk_addr, struct bio *bio);
3108int f2fs_target_device_index(struct f2fs_sb_info *sbi, block_t blkaddr);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003109void f2fs_set_data_blkaddr(struct dnode_of_data *dn);
Hyojun Kim63da4202017-10-06 17:10:08 -07003110void f2fs_update_data_blkaddr(struct dnode_of_data *dn, block_t blkaddr);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003111int f2fs_reserve_new_blocks(struct dnode_of_data *dn, blkcnt_t count);
3112int f2fs_reserve_new_block(struct dnode_of_data *dn);
Hyojun Kim63da4202017-10-06 17:10:08 -07003113int f2fs_get_block(struct dnode_of_data *dn, pgoff_t index);
3114int f2fs_preallocate_blocks(struct kiocb *iocb, struct iov_iter *from);
3115int f2fs_reserve_block(struct dnode_of_data *dn, pgoff_t index);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003116struct page *f2fs_get_read_data_page(struct inode *inode, pgoff_t index,
Hyojun Kim63da4202017-10-06 17:10:08 -07003117 int op_flags, bool for_write);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003118struct page *f2fs_find_data_page(struct inode *inode, pgoff_t index);
3119struct page *f2fs_get_lock_data_page(struct inode *inode, pgoff_t index,
Hyojun Kim63da4202017-10-06 17:10:08 -07003120 bool for_write);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003121struct page *f2fs_get_new_data_page(struct inode *inode,
Hyojun Kim63da4202017-10-06 17:10:08 -07003122 struct page *ipage, pgoff_t index, bool new_i_size);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003123int f2fs_do_write_data_page(struct f2fs_io_info *fio);
Chao Yu6923cd12018-09-27 18:33:18 +08003124void __do_map_lock(struct f2fs_sb_info *sbi, int flag, bool lock);
Hyojun Kim63da4202017-10-06 17:10:08 -07003125int f2fs_map_blocks(struct inode *inode, struct f2fs_map_blocks *map,
3126 int create, int flag);
3127int f2fs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
3128 u64 start, u64 len);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003129bool f2fs_should_update_inplace(struct inode *inode, struct f2fs_io_info *fio);
3130bool f2fs_should_update_outplace(struct inode *inode, struct f2fs_io_info *fio);
Hyojun Kim63da4202017-10-06 17:10:08 -07003131void f2fs_invalidate_page(struct page *page, unsigned int offset,
3132 unsigned int length);
3133int f2fs_release_page(struct page *page, gfp_t wait);
Weichao Guo5b7a4872016-09-20 05:03:27 +08003134#ifdef CONFIG_MIGRATION
Hyojun Kim63da4202017-10-06 17:10:08 -07003135int f2fs_migrate_page(struct address_space *mapping, struct page *newpage,
3136 struct page *page, enum migrate_mode mode);
Weichao Guo5b7a4872016-09-20 05:03:27 +08003137#endif
Jaegeuk Kimd9197652018-01-05 10:44:52 -08003138bool f2fs_overwrite_io(struct inode *inode, loff_t pos, size_t len);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003139void f2fs_clear_radix_tree_dirty_tag(struct page *page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003140
3141/*
3142 * gc.c
3143 */
Chao Yu6b4d6a82018-05-30 00:20:41 +08003144int f2fs_start_gc_thread(struct f2fs_sb_info *sbi);
3145void f2fs_stop_gc_thread(struct f2fs_sb_info *sbi);
3146block_t f2fs_start_bidx_of_node(unsigned int node_ofs, struct inode *inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07003147int f2fs_gc(struct f2fs_sb_info *sbi, bool sync, bool background,
3148 unsigned int segno);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003149void f2fs_build_gc_manager(struct f2fs_sb_info *sbi);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003150
3151/*
3152 * recovery.c
3153 */
Chao Yu6b4d6a82018-05-30 00:20:41 +08003154int f2fs_recover_fsync_data(struct f2fs_sb_info *sbi, bool check_only);
3155bool f2fs_space_for_roll_forward(struct f2fs_sb_info *sbi);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003156
3157/*
3158 * debug.c
3159 */
3160#ifdef CONFIG_F2FS_STAT_FS
3161struct f2fs_stat_info {
3162 struct list_head stat_list;
3163 struct f2fs_sb_info *sbi;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003164 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
3165 int main_area_segs, main_area_sections, main_area_zones;
Chao Yu5b7ee372015-09-30 17:38:48 +08003166 unsigned long long hit_largest, hit_cached, hit_rbtree;
3167 unsigned long long hit_total, total_ext;
Jaegeuk Kimc00ba552015-12-31 15:24:14 -08003168 int ext_tree, zombie_tree, ext_node;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003169 int ndirty_node, ndirty_dent, ndirty_meta, ndirty_imeta;
3170 int ndirty_data, ndirty_qdata;
Jaegeuk Kim725ba1a2016-10-20 19:09:57 -07003171 int inmem_pages;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003172 unsigned int ndirty_dirs, ndirty_files, nquota_files, ndirty_all;
Hyojun Kim63da4202017-10-06 17:10:08 -07003173 int nats, dirty_nats, sits, dirty_sits;
3174 int free_nids, avail_nids, alloc_nids;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003175 int total_count, utilization;
Hyojun Kim63da4202017-10-06 17:10:08 -07003176 int bg_gc, nr_wb_cp_data, nr_wb_data;
Jaegeuk Kim8025d722018-10-16 10:20:53 -07003177 int nr_rd_data, nr_rd_node, nr_rd_meta;
Chao Yu0fc6da72018-09-29 18:31:28 +08003178 unsigned int io_skip_bggc, other_skip_bggc;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003179 int nr_flushing, nr_flushed, flush_list_empty;
3180 int nr_discarding, nr_discarded;
Hyojun Kim63da4202017-10-06 17:10:08 -07003181 int nr_discard_cmd;
3182 unsigned int undiscard_blks;
3183 int inline_xattr, inline_inode, inline_dir, append, update, orphans;
3184 int aw_cnt, max_aw_cnt, vw_cnt, max_vw_cnt;
Yunlei Hef83a2582016-08-18 21:01:18 +08003185 unsigned int valid_count, valid_node_count, valid_inode_count, discard_blks;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003186 unsigned int bimodal, avg_vblocks;
3187 int util_free, util_valid, util_invalid;
3188 int rsvd_segs, overp_segs;
3189 int dirty_count, node_pages, meta_pages;
Jaegeuk Kim42190d22016-01-09 13:45:17 -08003190 int prefree_count, call_count, cp_count, bg_cp_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003191 int tot_segs, node_segs, data_segs, free_segs, free_secs;
Changman Leee1235982014-12-23 08:37:39 +09003192 int bg_node_segs, bg_data_segs;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003193 int tot_blks, data_blks, node_blks;
Changman Leee1235982014-12-23 08:37:39 +09003194 int bg_data_blks, bg_node_blks;
Chao Yucaf10c62018-05-07 20:28:54 +08003195 unsigned long long skipped_atomic_files[2];
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003196 int curseg[NR_CURSEG_TYPE];
3197 int cursec[NR_CURSEG_TYPE];
3198 int curzone[NR_CURSEG_TYPE];
3199
Chao Yud826d4a2018-09-29 18:31:27 +08003200 unsigned int meta_count[META_MAX];
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003201 unsigned int segment_count[2];
3202 unsigned int block_count[2];
Changman Leeb9a2c252014-12-24 02:16:54 +09003203 unsigned int inplace_count;
Chao Yu9edcdab2015-09-11 14:43:52 +08003204 unsigned long long base_mem, cache_mem, page_mem;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003205};
3206
Gu Zheng963d4f72013-07-12 14:47:11 +08003207static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
3208{
Chris Fries6c311ec2014-01-17 14:44:39 -06003209 return (struct f2fs_stat_info *)sbi->stat_info;
Gu Zheng963d4f72013-07-12 14:47:11 +08003210}
3211
Changman Lee942e0be2014-02-13 15:12:29 +09003212#define stat_inc_cp_count(si) ((si)->cp_count++)
Jaegeuk Kim42190d22016-01-09 13:45:17 -08003213#define stat_inc_bg_cp_count(si) ((si)->bg_cp_count++)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09003214#define stat_inc_call_count(si) ((si)->call_count++)
3215#define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++)
Chao Yu0fc6da72018-09-29 18:31:28 +08003216#define stat_io_skip_bggc_count(sbi) ((sbi)->io_skip_bggc++)
3217#define stat_other_skip_bggc_count(sbi) ((sbi)->other_skip_bggc++)
Chao Yu33fbd512015-12-17 17:14:44 +08003218#define stat_inc_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]++)
3219#define stat_dec_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]--)
Chao Yu5b7ee372015-09-30 17:38:48 +08003220#define stat_inc_total_hit(sbi) (atomic64_inc(&(sbi)->total_hit_ext))
3221#define stat_inc_rbtree_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_rbtree))
3222#define stat_inc_largest_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_largest))
3223#define stat_inc_cached_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_cached))
Chao Yud5e8f6c2015-07-15 17:28:53 +08003224#define stat_inc_inline_xattr(inode) \
3225 do { \
3226 if (f2fs_has_inline_xattr(inode)) \
3227 (atomic_inc(&F2FS_I_SB(inode)->inline_xattr)); \
3228 } while (0)
3229#define stat_dec_inline_xattr(inode) \
3230 do { \
3231 if (f2fs_has_inline_xattr(inode)) \
3232 (atomic_dec(&F2FS_I_SB(inode)->inline_xattr)); \
3233 } while (0)
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09003234#define stat_inc_inline_inode(inode) \
3235 do { \
3236 if (f2fs_has_inline_data(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08003237 (atomic_inc(&F2FS_I_SB(inode)->inline_inode)); \
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09003238 } while (0)
3239#define stat_dec_inline_inode(inode) \
3240 do { \
3241 if (f2fs_has_inline_data(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08003242 (atomic_dec(&F2FS_I_SB(inode)->inline_inode)); \
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09003243 } while (0)
Jaegeuk Kim3289c062014-10-13 20:00:16 -07003244#define stat_inc_inline_dir(inode) \
3245 do { \
3246 if (f2fs_has_inline_dentry(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08003247 (atomic_inc(&F2FS_I_SB(inode)->inline_dir)); \
Jaegeuk Kim3289c062014-10-13 20:00:16 -07003248 } while (0)
3249#define stat_dec_inline_dir(inode) \
3250 do { \
3251 if (f2fs_has_inline_dentry(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08003252 (atomic_dec(&F2FS_I_SB(inode)->inline_dir)); \
Jaegeuk Kim3289c062014-10-13 20:00:16 -07003253 } while (0)
Chao Yud826d4a2018-09-29 18:31:27 +08003254#define stat_inc_meta_count(sbi, blkaddr) \
3255 do { \
3256 if (blkaddr < SIT_I(sbi)->sit_base_addr) \
3257 atomic_inc(&(sbi)->meta_count[META_CP]); \
3258 else if (blkaddr < NM_I(sbi)->nat_blkaddr) \
3259 atomic_inc(&(sbi)->meta_count[META_SIT]); \
3260 else if (blkaddr < SM_I(sbi)->ssa_blkaddr) \
3261 atomic_inc(&(sbi)->meta_count[META_NAT]); \
3262 else if (blkaddr < SM_I(sbi)->main_blkaddr) \
3263 atomic_inc(&(sbi)->meta_count[META_SSA]); \
3264 } while (0)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09003265#define stat_inc_seg_type(sbi, curseg) \
3266 ((sbi)->segment_count[(curseg)->alloc_type]++)
3267#define stat_inc_block_count(sbi, curseg) \
3268 ((sbi)->block_count[(curseg)->alloc_type]++)
Changman Leeb9a2c252014-12-24 02:16:54 +09003269#define stat_inc_inplace_blocks(sbi) \
3270 (atomic_inc(&(sbi)->inplace_count))
Hyojun Kim63da4202017-10-06 17:10:08 -07003271#define stat_inc_atomic_write(inode) \
3272 (atomic_inc(&F2FS_I_SB(inode)->aw_cnt))
3273#define stat_dec_atomic_write(inode) \
3274 (atomic_dec(&F2FS_I_SB(inode)->aw_cnt))
3275#define stat_update_max_atomic_write(inode) \
3276 do { \
3277 int cur = atomic_read(&F2FS_I_SB(inode)->aw_cnt); \
3278 int max = atomic_read(&F2FS_I_SB(inode)->max_aw_cnt); \
3279 if (cur > max) \
3280 atomic_set(&F2FS_I_SB(inode)->max_aw_cnt, cur); \
3281 } while (0)
3282#define stat_inc_volatile_write(inode) \
3283 (atomic_inc(&F2FS_I_SB(inode)->vw_cnt))
3284#define stat_dec_volatile_write(inode) \
3285 (atomic_dec(&F2FS_I_SB(inode)->vw_cnt))
3286#define stat_update_max_volatile_write(inode) \
3287 do { \
3288 int cur = atomic_read(&F2FS_I_SB(inode)->vw_cnt); \
3289 int max = atomic_read(&F2FS_I_SB(inode)->max_vw_cnt); \
3290 if (cur > max) \
3291 atomic_set(&F2FS_I_SB(inode)->max_vw_cnt, cur); \
3292 } while (0)
Changman Leee1235982014-12-23 08:37:39 +09003293#define stat_inc_seg_count(sbi, type, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003294 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08003295 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Hyojun Kim63da4202017-10-06 17:10:08 -07003296 si->tot_segs++; \
3297 if ((type) == SUM_TYPE_DATA) { \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003298 si->data_segs++; \
Changman Leee1235982014-12-23 08:37:39 +09003299 si->bg_data_segs += (gc_type == BG_GC) ? 1 : 0; \
3300 } else { \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003301 si->node_segs++; \
Changman Leee1235982014-12-23 08:37:39 +09003302 si->bg_node_segs += (gc_type == BG_GC) ? 1 : 0; \
3303 } \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003304 } while (0)
3305
3306#define stat_inc_tot_blk_count(si, blks) \
Hyojun Kim63da4202017-10-06 17:10:08 -07003307 ((si)->tot_blks += (blks))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003308
Changman Leee1235982014-12-23 08:37:39 +09003309#define stat_inc_data_blk_count(sbi, blks, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003310 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08003311 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003312 stat_inc_tot_blk_count(si, blks); \
3313 si->data_blks += (blks); \
Hyojun Kim63da4202017-10-06 17:10:08 -07003314 si->bg_data_blks += ((gc_type) == BG_GC) ? (blks) : 0; \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003315 } while (0)
3316
Changman Leee1235982014-12-23 08:37:39 +09003317#define stat_inc_node_blk_count(sbi, blks, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003318 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08003319 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003320 stat_inc_tot_blk_count(si, blks); \
3321 si->node_blks += (blks); \
Hyojun Kim63da4202017-10-06 17:10:08 -07003322 si->bg_node_blks += ((gc_type) == BG_GC) ? (blks) : 0; \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003323 } while (0)
3324
Hyojun Kim63da4202017-10-06 17:10:08 -07003325int f2fs_build_stats(struct f2fs_sb_info *sbi);
3326void f2fs_destroy_stats(struct f2fs_sb_info *sbi);
Chao Yu787c7b8c2015-10-29 09:13:04 +08003327int __init f2fs_create_root_stats(void);
Namjae Jeon4589d252013-01-15 19:58:47 +09003328void f2fs_destroy_root_stats(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003329#else
Hyojun Kim63da4202017-10-06 17:10:08 -07003330#define stat_inc_cp_count(si) do { } while (0)
3331#define stat_inc_bg_cp_count(si) do { } while (0)
3332#define stat_inc_call_count(si) do { } while (0)
3333#define stat_inc_bggc_count(si) do { } while (0)
Chao Yu0fc6da72018-09-29 18:31:28 +08003334#define stat_io_skip_bggc_count(sbi) do { } while (0)
3335#define stat_other_skip_bggc_count(sbi) do { } while (0)
Hyojun Kim63da4202017-10-06 17:10:08 -07003336#define stat_inc_dirty_inode(sbi, type) do { } while (0)
3337#define stat_dec_dirty_inode(sbi, type) do { } while (0)
3338#define stat_inc_total_hit(sb) do { } while (0)
3339#define stat_inc_rbtree_node_hit(sb) do { } while (0)
3340#define stat_inc_largest_node_hit(sbi) do { } while (0)
3341#define stat_inc_cached_node_hit(sbi) do { } while (0)
3342#define stat_inc_inline_xattr(inode) do { } while (0)
3343#define stat_dec_inline_xattr(inode) do { } while (0)
3344#define stat_inc_inline_inode(inode) do { } while (0)
3345#define stat_dec_inline_inode(inode) do { } while (0)
3346#define stat_inc_inline_dir(inode) do { } while (0)
3347#define stat_dec_inline_dir(inode) do { } while (0)
3348#define stat_inc_atomic_write(inode) do { } while (0)
3349#define stat_dec_atomic_write(inode) do { } while (0)
3350#define stat_update_max_atomic_write(inode) do { } while (0)
3351#define stat_inc_volatile_write(inode) do { } while (0)
3352#define stat_dec_volatile_write(inode) do { } while (0)
3353#define stat_update_max_volatile_write(inode) do { } while (0)
Chao Yud826d4a2018-09-29 18:31:27 +08003354#define stat_inc_meta_count(sbi, blkaddr) do { } while (0)
Hyojun Kim63da4202017-10-06 17:10:08 -07003355#define stat_inc_seg_type(sbi, curseg) do { } while (0)
3356#define stat_inc_block_count(sbi, curseg) do { } while (0)
3357#define stat_inc_inplace_blocks(sbi) do { } while (0)
3358#define stat_inc_seg_count(sbi, type, gc_type) do { } while (0)
3359#define stat_inc_tot_blk_count(si, blks) do { } while (0)
3360#define stat_inc_data_blk_count(sbi, blks, gc_type) do { } while (0)
3361#define stat_inc_node_blk_count(sbi, blks, gc_type) do { } while (0)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003362
3363static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
3364static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
Chao Yu787c7b8c2015-10-29 09:13:04 +08003365static inline int __init f2fs_create_root_stats(void) { return 0; }
Namjae Jeon4589d252013-01-15 19:58:47 +09003366static inline void f2fs_destroy_root_stats(void) { }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003367#endif
3368
3369extern const struct file_operations f2fs_dir_operations;
3370extern const struct file_operations f2fs_file_operations;
3371extern const struct inode_operations f2fs_file_inode_operations;
3372extern const struct address_space_operations f2fs_dblock_aops;
3373extern const struct address_space_operations f2fs_node_aops;
3374extern const struct address_space_operations f2fs_meta_aops;
3375extern const struct inode_operations f2fs_dir_inode_operations;
3376extern const struct inode_operations f2fs_symlink_inode_operations;
Jaegeuk Kimcbaf0422015-04-29 15:10:53 -07003377extern const struct inode_operations f2fs_encrypted_symlink_inode_operations;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003378extern const struct inode_operations f2fs_special_inode_operations;
Chao Yu6b4d6a82018-05-30 00:20:41 +08003379extern struct kmem_cache *f2fs_inode_entry_slab;
Huajun Li1001b342013-11-10 23:13:16 +08003380
Huajun Lie18c65b2013-11-10 23:13:19 +08003381/*
3382 * inline.c
3383 */
Hyojun Kim63da4202017-10-06 17:10:08 -07003384bool f2fs_may_inline_data(struct inode *inode);
3385bool f2fs_may_inline_dentry(struct inode *inode);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003386void f2fs_do_read_inline_data(struct page *page, struct page *ipage);
3387void f2fs_truncate_inline_inode(struct inode *inode,
3388 struct page *ipage, u64 from);
Hyojun Kim63da4202017-10-06 17:10:08 -07003389int f2fs_read_inline_data(struct inode *inode, struct page *page);
3390int f2fs_convert_inline_page(struct dnode_of_data *dn, struct page *page);
3391int f2fs_convert_inline_inode(struct inode *inode);
3392int f2fs_write_inline_data(struct inode *inode, struct page *page);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003393bool f2fs_recover_inline_data(struct inode *inode, struct page *npage);
3394struct f2fs_dir_entry *f2fs_find_in_inline_dir(struct inode *dir,
Hyojun Kim63da4202017-10-06 17:10:08 -07003395 struct fscrypt_name *fname, struct page **res_page);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003396int f2fs_make_empty_inline_dir(struct inode *inode, struct inode *parent,
Hyojun Kim63da4202017-10-06 17:10:08 -07003397 struct page *ipage);
3398int f2fs_add_inline_entry(struct inode *dir, const struct qstr *new_name,
3399 const struct qstr *orig_name,
3400 struct inode *inode, nid_t ino, umode_t mode);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003401void f2fs_delete_inline_entry(struct f2fs_dir_entry *dentry,
3402 struct page *page, struct inode *dir,
3403 struct inode *inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07003404bool f2fs_empty_inline_dir(struct inode *dir);
3405int f2fs_read_inline_dir(struct file *file, struct dir_context *ctx,
3406 struct fscrypt_str *fstr);
3407int f2fs_inline_data_fiemap(struct inode *inode,
3408 struct fiemap_extent_info *fieinfo,
3409 __u64 start, __u64 len);
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003410
3411/*
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003412 * shrinker.c
3413 */
Hyojun Kim63da4202017-10-06 17:10:08 -07003414unsigned long f2fs_shrink_count(struct shrinker *shrink,
3415 struct shrink_control *sc);
3416unsigned long f2fs_shrink_scan(struct shrinker *shrink,
3417 struct shrink_control *sc);
3418void f2fs_join_shrinker(struct f2fs_sb_info *sbi);
3419void f2fs_leave_shrinker(struct f2fs_sb_info *sbi);
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003420
3421/*
Chao Yua28ef1f2015-07-08 17:59:36 +08003422 * extent_cache.c
3423 */
Chao Yu6b4d6a82018-05-30 00:20:41 +08003424struct rb_entry *f2fs_lookup_rb_tree(struct rb_root *root,
Hyojun Kim63da4202017-10-06 17:10:08 -07003425 struct rb_entry *cached_re, unsigned int ofs);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003426struct rb_node **f2fs_lookup_rb_tree_for_insert(struct f2fs_sb_info *sbi,
Hyojun Kim63da4202017-10-06 17:10:08 -07003427 struct rb_root *root, struct rb_node **parent,
3428 unsigned int ofs);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003429struct rb_entry *f2fs_lookup_rb_tree_ret(struct rb_root *root,
Hyojun Kim63da4202017-10-06 17:10:08 -07003430 struct rb_entry *cached_re, unsigned int ofs,
3431 struct rb_entry **prev_entry, struct rb_entry **next_entry,
3432 struct rb_node ***insert_p, struct rb_node **insert_parent,
3433 bool force);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003434bool f2fs_check_rb_tree_consistence(struct f2fs_sb_info *sbi,
Hyojun Kim63da4202017-10-06 17:10:08 -07003435 struct rb_root *root);
3436unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *sbi, int nr_shrink);
3437bool f2fs_init_extent_tree(struct inode *inode, struct f2fs_extent *i_ext);
3438void f2fs_drop_extent_tree(struct inode *inode);
3439unsigned int f2fs_destroy_extent_node(struct inode *inode);
3440void f2fs_destroy_extent_tree(struct inode *inode);
3441bool f2fs_lookup_extent_cache(struct inode *inode, pgoff_t pgofs,
3442 struct extent_info *ei);
3443void f2fs_update_extent_cache(struct dnode_of_data *dn);
Chao Yu19b2c302015-08-26 20:34:48 +08003444void f2fs_update_extent_cache_range(struct dnode_of_data *dn,
Hyojun Kim63da4202017-10-06 17:10:08 -07003445 pgoff_t fofs, block_t blkaddr, unsigned int len);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003446void f2fs_init_extent_cache_info(struct f2fs_sb_info *sbi);
3447int __init f2fs_create_extent_cache(void);
3448void f2fs_destroy_extent_cache(void);
Chao Yua28ef1f2015-07-08 17:59:36 +08003449
3450/*
Hyojun Kim63da4202017-10-06 17:10:08 -07003451 * sysfs.c
3452 */
3453int __init f2fs_init_sysfs(void);
3454void f2fs_exit_sysfs(void);
3455int f2fs_register_sysfs(struct f2fs_sb_info *sbi);
3456void f2fs_unregister_sysfs(struct f2fs_sb_info *sbi);
3457
3458/*
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003459 * crypto support
3460 */
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07003461static inline bool f2fs_encrypted_inode(struct inode *inode)
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003462{
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003463 return file_is_encrypt(inode);
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003464}
3465
Hyojun Kim63da4202017-10-06 17:10:08 -07003466static inline bool f2fs_encrypted_file(struct inode *inode)
3467{
3468 return f2fs_encrypted_inode(inode) && S_ISREG(inode->i_mode);
3469}
3470
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003471static inline void f2fs_set_encrypted_inode(struct inode *inode)
3472{
3473#ifdef CONFIG_F2FS_FS_ENCRYPTION
3474 file_set_encrypt(inode);
Chao Yu7c379702018-10-07 19:06:15 +08003475 f2fs_set_inode_flags(inode);
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003476#endif
3477}
3478
Eric Biggersc6299742018-04-18 11:09:48 -07003479/*
3480 * Returns true if the reads of the inode's data need to undergo some
3481 * postprocessing step, like decryption or authenticity verification.
3482 */
3483static inline bool f2fs_post_read_required(struct inode *inode)
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003484{
Eric Biggersc6299742018-04-18 11:09:48 -07003485 return f2fs_encrypted_file(inode);
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003486}
3487
Jaegeuk Kimd9197652018-01-05 10:44:52 -08003488#define F2FS_FEATURE_FUNCS(name, flagname) \
3489static inline int f2fs_sb_has_##name(struct super_block *sb) \
3490{ \
3491 return F2FS_HAS_FEATURE(sb, F2FS_FEATURE_##flagname); \
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003492}
Jaegeuk Kimf424f662015-04-20 15:19:06 -07003493
Jaegeuk Kimd9197652018-01-05 10:44:52 -08003494F2FS_FEATURE_FUNCS(encrypt, ENCRYPT);
3495F2FS_FEATURE_FUNCS(blkzoned, BLKZONED);
3496F2FS_FEATURE_FUNCS(extra_attr, EXTRA_ATTR);
3497F2FS_FEATURE_FUNCS(project_quota, PRJQUOTA);
3498F2FS_FEATURE_FUNCS(inode_chksum, INODE_CHKSUM);
3499F2FS_FEATURE_FUNCS(flexible_inline_xattr, FLEXIBLE_INLINE_XATTR);
3500F2FS_FEATURE_FUNCS(quota_ino, QUOTA_INO);
3501F2FS_FEATURE_FUNCS(inode_crtime, INODE_CRTIME);
3502F2FS_FEATURE_FUNCS(lost_found, LOST_FOUND);
Junling Zheng0570b3f2018-09-28 20:25:56 +08003503F2FS_FEATURE_FUNCS(sb_chksum, SB_CHKSUM);
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08003504
Hyojun Kim63da4202017-10-06 17:10:08 -07003505#ifdef CONFIG_BLK_DEV_ZONED
3506static inline int get_blkz_type(struct f2fs_sb_info *sbi,
3507 struct block_device *bdev, block_t blkaddr)
3508{
3509 unsigned int zno = blkaddr >> sbi->log_blocks_per_blkz;
3510 int i;
3511
3512 for (i = 0; i < sbi->s_ndevs; i++)
3513 if (FDEV(i).bdev == bdev)
3514 return FDEV(i).blkz_type[zno];
3515 return -EINVAL;
3516}
3517#endif
3518
Chao Yu12d8e572018-09-04 03:52:17 +08003519static inline bool f2fs_hw_should_discard(struct f2fs_sb_info *sbi)
Hyojun Kim63da4202017-10-06 17:10:08 -07003520{
Chao Yu12d8e572018-09-04 03:52:17 +08003521 return f2fs_sb_has_blkzoned(sbi->sb);
3522}
Hyojun Kim63da4202017-10-06 17:10:08 -07003523
Chao Yu12d8e572018-09-04 03:52:17 +08003524static inline bool f2fs_hw_support_discard(struct f2fs_sb_info *sbi)
3525{
3526 return blk_queue_discard(bdev_get_queue(sbi->sb->s_bdev));
3527}
3528
3529static inline bool f2fs_realtime_discard_enable(struct f2fs_sb_info *sbi)
3530{
3531 return (test_opt(sbi, DISCARD) && f2fs_hw_support_discard(sbi)) ||
3532 f2fs_hw_should_discard(sbi);
Jaegeuk Kim52763a42016-06-13 09:47:48 -07003533}
3534
3535static inline void set_opt_mode(struct f2fs_sb_info *sbi, unsigned int mt)
3536{
3537 clear_opt(sbi, ADAPTIVE);
3538 clear_opt(sbi, LFS);
3539
3540 switch (mt) {
3541 case F2FS_MOUNT_ADAPTIVE:
3542 set_opt(sbi, ADAPTIVE);
3543 break;
3544 case F2FS_MOUNT_LFS:
3545 set_opt(sbi, LFS);
3546 break;
3547 }
3548}
3549
Jaegeuk Kimfcc85a42015-04-21 20:39:58 -07003550static inline bool f2fs_may_encrypt(struct inode *inode)
3551{
3552#ifdef CONFIG_F2FS_FS_ENCRYPTION
Al Viro886f56f2015-12-05 03:56:06 -05003553 umode_t mode = inode->i_mode;
Jaegeuk Kimfcc85a42015-04-21 20:39:58 -07003554
3555 return (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode));
3556#else
Gustavo A. R. Silvaad046712018-08-01 19:51:38 -05003557 return false;
Jaegeuk Kimfcc85a42015-04-21 20:39:58 -07003558#endif
3559}
3560
Chao Yub84f9a72018-09-27 18:34:52 +08003561static inline int block_unaligned_IO(struct inode *inode,
3562 struct kiocb *iocb, struct iov_iter *iter)
Jaegeuk Kimd9197652018-01-05 10:44:52 -08003563{
Chao Yub84f9a72018-09-27 18:34:52 +08003564 unsigned int i_blkbits = READ_ONCE(inode->i_blkbits);
3565 unsigned int blocksize_mask = (1 << i_blkbits) - 1;
3566 loff_t offset = iocb->ki_pos;
3567 unsigned long align = offset | iov_iter_alignment(iter);
3568
3569 return align & blocksize_mask;
3570}
3571
3572static inline int allow_outplace_dio(struct inode *inode,
3573 struct kiocb *iocb, struct iov_iter *iter)
3574{
3575 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
3576 int rw = iov_iter_rw(iter);
3577
3578 return (test_opt(sbi, LFS) && (rw == WRITE) &&
3579 !block_unaligned_IO(inode, iocb, iter));
3580}
3581
3582static inline bool f2fs_force_buffered_io(struct inode *inode,
3583 struct kiocb *iocb, struct iov_iter *iter)
3584{
3585 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
3586 int rw = iov_iter_rw(iter);
3587
jianzhouf41ab602019-01-03 16:41:57 +08003588 if (f2fs_post_read_required(inode) &&
3589 !fscrypt_using_hardware_encryption(inode))
Chao Yub84f9a72018-09-27 18:34:52 +08003590 return true;
3591 if (sbi->s_ndevs)
3592 return true;
3593 /*
3594 * for blkzoned device, fallback direct IO to buffered IO, so
3595 * all IOs can be serialized by log-structured write.
3596 */
3597 if (f2fs_sb_has_blkzoned(sbi->sb))
3598 return true;
3599 if (test_opt(sbi, LFS) && (rw == WRITE) &&
3600 block_unaligned_IO(inode, iocb, iter))
3601 return true;
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -07003602 if (is_sbi_flag_set(F2FS_I_SB(inode), SBI_CP_DISABLED))
3603 return true;
3604
Chao Yub84f9a72018-09-27 18:34:52 +08003605 return false;
Jaegeuk Kimd9197652018-01-05 10:44:52 -08003606}
3607
Neeraj Soni36c65122018-04-18 21:04:46 +05303608static inline bool f2fs_may_encrypt_bio(struct inode *inode,
3609 struct f2fs_io_info *fio)
3610{
3611 if (fio && (fio->type != DATA || fio->encrypted_page))
3612 return false;
3613
3614 return (f2fs_encrypted_file(inode) &&
3615 fscrypt_using_hardware_encryption(inode));
3616}
3617
Jaegeuk Kimc92b7c72018-06-21 13:46:23 -07003618#ifdef CONFIG_F2FS_FAULT_INJECTION
Chao Yu0ef692e2018-08-08 17:36:41 +08003619extern void f2fs_build_fault_attr(struct f2fs_sb_info *sbi, unsigned int rate,
3620 unsigned int type);
Jaegeuk Kimc92b7c72018-06-21 13:46:23 -07003621#else
Chao Yu0ef692e2018-08-08 17:36:41 +08003622#define f2fs_build_fault_attr(sbi, rate, type) do { } while (0)
Jaegeuk Kimc92b7c72018-06-21 13:46:23 -07003623#endif
3624
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003625#endif
Chao Yud8312722018-09-20 20:05:00 +08003626
3627static inline bool is_journalled_quota(struct f2fs_sb_info *sbi)
3628{
3629#ifdef CONFIG_QUOTA
3630 if (f2fs_sb_has_quota_ino(sbi->sb))
3631 return true;
3632 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA] ||
3633 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA] ||
3634 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
3635 return true;
3636#endif
3637 return false;
3638}