blob: 3ce399d9133e9d945de1e8dcfe4f09de7d8c086d [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#include <linux/fscrypt.h>
30
Jaegeuk Kim5d56b672013-10-29 15:14:54 +090031#ifdef CONFIG_F2FS_CHECK_FS
Jaegeuk Kim9850cf42014-09-02 15:52:58 -070032#define f2fs_bug_on(sbi, condition) BUG_ON(condition)
Jaegeuk Kim5d56b672013-10-29 15:14:54 +090033#else
Jaegeuk Kim9850cf42014-09-02 15:52:58 -070034#define f2fs_bug_on(sbi, condition) \
35 do { \
36 if (unlikely(condition)) { \
37 WARN_ON(1); \
Chao Yucaf00472015-01-28 17:48:42 +080038 set_sbi_flag(sbi, SBI_NEED_FSCK); \
Jaegeuk Kim9850cf42014-09-02 15:52:58 -070039 } \
40 } while (0)
Jaegeuk Kim5d56b672013-10-29 15:14:54 +090041#endif
42
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070043enum {
44 FAULT_KMALLOC,
Jaegeuk Kim2f17e342017-11-16 16:59:14 +080045 FAULT_KVMALLOC,
Jaegeuk Kimc41f3cc32016-04-29 16:17:09 -070046 FAULT_PAGE_ALLOC,
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +080047 FAULT_PAGE_GET,
48 FAULT_ALLOC_BIO,
Jaegeuk Kimcb789422016-04-29 16:29:22 -070049 FAULT_ALLOC_NID,
50 FAULT_ORPHAN,
51 FAULT_BLOCK,
52 FAULT_DIR_DEPTH,
Jaegeuk Kim53aa6bb2016-05-25 15:24:18 -070053 FAULT_EVICT_INODE,
Hyojun Kim63da4202017-10-06 17:10:08 -070054 FAULT_TRUNCATE,
Chao Yu40292b92018-09-12 09:22:29 +080055 FAULT_READ_IO,
Chao Yu0f348022016-09-26 19:45:55 +080056 FAULT_CHECKPOINT,
Chao Yu8bdb4192018-08-06 20:30:18 +080057 FAULT_DISCARD,
Chao Yu40292b92018-09-12 09:22:29 +080058 FAULT_WRITE_IO,
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070059 FAULT_MAX,
60};
61
Arnd Bergmann33c54d52018-08-13 23:38:06 +020062#ifdef CONFIG_F2FS_FAULT_INJECTION
Chao Yu0ef692e2018-08-08 17:36:41 +080063#define F2FS_ALL_FAULT_TYPE ((1 << FAULT_MAX) - 1)
64
Sheng Yong08796892016-05-16 12:38:50 +080065struct f2fs_fault_info {
66 atomic_t inject_ops;
67 unsigned int inject_rate;
68 unsigned int inject_type;
69};
70
Alexey Dobriyan05c09f42018-11-24 12:06:42 +030071extern const char *f2fs_fault_name[FAULT_MAX];
Hyojun Kim63da4202017-10-06 17:10:08 -070072#define IS_FAULT_SET(fi, type) ((fi)->inject_type & (1 << (type)))
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070073#endif
74
Jaegeuk Kim39a53e02012-11-28 13:37:31 +090075/*
76 * For mount options
77 */
78#define F2FS_MOUNT_BG_GC 0x00000001
79#define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002
80#define F2FS_MOUNT_DISCARD 0x00000004
81#define F2FS_MOUNT_NOHEAP 0x00000008
82#define F2FS_MOUNT_XATTR_USER 0x00000010
83#define F2FS_MOUNT_POSIX_ACL 0x00000020
84#define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040
Jaegeuk Kim444c5802013-08-08 15:16:22 +090085#define F2FS_MOUNT_INLINE_XATTR 0x00000080
Huajun Li1001b342013-11-10 23:13:16 +080086#define F2FS_MOUNT_INLINE_DATA 0x00000100
Chao Yu34d67de2014-09-24 18:15:19 +080087#define F2FS_MOUNT_INLINE_DENTRY 0x00000200
88#define F2FS_MOUNT_FLUSH_MERGE 0x00000400
89#define F2FS_MOUNT_NOBARRIER 0x00000800
Jaegeuk Kimd5053a342014-10-30 22:47:03 -070090#define F2FS_MOUNT_FASTBOOT 0x00001000
Chao Yu89672152015-02-05 17:55:51 +080091#define F2FS_MOUNT_EXTENT_CACHE 0x00002000
Jaegeuk Kim6aefd932015-10-05 11:02:54 -070092#define F2FS_MOUNT_FORCE_FG_GC 0x00004000
Chao Yu343f40f2015-12-16 13:12:16 +080093#define F2FS_MOUNT_DATA_FLUSH 0x00008000
Jaegeuk Kim73faec42016-04-29 15:34:32 -070094#define F2FS_MOUNT_FAULT_INJECTION 0x00010000
Jaegeuk Kim36abef42016-06-03 19:29:38 -070095#define F2FS_MOUNT_ADAPTIVE 0x00020000
96#define F2FS_MOUNT_LFS 0x00040000
Hyojun Kim63da4202017-10-06 17:10:08 -070097#define F2FS_MOUNT_USRQUOTA 0x00080000
98#define F2FS_MOUNT_GRPQUOTA 0x00100000
99#define F2FS_MOUNT_PRJQUOTA 0x00200000
100#define F2FS_MOUNT_QUOTA 0x00400000
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800101#define F2FS_MOUNT_INLINE_XATTR_SIZE 0x00800000
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800102#define F2FS_MOUNT_RESERVE_ROOT 0x01000000
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -0700103#define F2FS_MOUNT_DISABLE_CHECKPOINT 0x02000000
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900104
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800105#define F2FS_OPTION(sbi) ((sbi)->mount_opt)
106#define clear_opt(sbi, option) (F2FS_OPTION(sbi).opt &= ~F2FS_MOUNT_##option)
107#define set_opt(sbi, option) (F2FS_OPTION(sbi).opt |= F2FS_MOUNT_##option)
108#define test_opt(sbi, option) (F2FS_OPTION(sbi).opt & F2FS_MOUNT_##option)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900109
110#define ver_after(a, b) (typecheck(unsigned long long, a) && \
111 typecheck(unsigned long long, b) && \
112 ((long long)((a) - (b)) > 0))
113
Jaegeuk Kima9841c42013-05-24 12:41:04 +0900114typedef u32 block_t; /*
115 * should not change u32, since it is the on-disk block
116 * address format, __le32.
117 */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900118typedef u32 nid_t;
119
120struct f2fs_mount_info {
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800121 unsigned int opt;
122 int write_io_size_bits; /* Write IO size bits */
123 block_t root_reserved_blocks; /* root reserved blocks */
124 kuid_t s_resuid; /* reserved blocks for uid */
125 kgid_t s_resgid; /* reserved blocks for gid */
126 int active_logs; /* # of active logs */
127 int inline_xattr_size; /* inline xattr size */
128#ifdef CONFIG_F2FS_FAULT_INJECTION
129 struct f2fs_fault_info fault_info; /* For fault injection */
130#endif
131#ifdef CONFIG_QUOTA
132 /* Names of quota files with journalled quota */
133 char *s_qf_names[MAXQUOTAS];
134 int s_jquota_fmt; /* Format of quota to use */
135#endif
136 /* For which write hints are passed down to block layer */
137 int whint_mode;
138 int alloc_mode; /* segment allocation policy */
139 int fsync_mode; /* fsync policy */
140 bool test_dummy_encryption; /* test dummy encryption */
Daniel Rosenberg1203e532019-05-29 17:49:06 -0700141 block_t unusable_cap; /* Amount of space allowed to be
142 * unusable when disabling checkpoint
143 */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900144};
145
Hyojun Kim63da4202017-10-06 17:10:08 -0700146#define F2FS_FEATURE_ENCRYPT 0x0001
147#define F2FS_FEATURE_BLKZONED 0x0002
148#define F2FS_FEATURE_ATOMIC_WRITE 0x0004
149#define F2FS_FEATURE_EXTRA_ATTR 0x0008
150#define F2FS_FEATURE_PRJQUOTA 0x0010
151#define F2FS_FEATURE_INODE_CHKSUM 0x0020
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800152#define F2FS_FEATURE_FLEXIBLE_INLINE_XATTR 0x0040
153#define F2FS_FEATURE_QUOTA_INO 0x0080
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800154#define F2FS_FEATURE_INODE_CRTIME 0x0100
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800155#define F2FS_FEATURE_LOST_FOUND 0x0200
156#define F2FS_FEATURE_VERITY 0x0400 /* reserved */
Junling Zheng0570b3f2018-09-28 20:25:56 +0800157#define F2FS_FEATURE_SB_CHKSUM 0x0800
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700158
Chao Yu5b11d2b2018-10-24 18:34:26 +0800159#define __F2FS_HAS_FEATURE(raw_super, mask) \
160 ((raw_super->feature & cpu_to_le32(mask)) != 0)
161#define F2FS_HAS_FEATURE(sbi, mask) __F2FS_HAS_FEATURE(sbi->raw_super, mask)
162#define F2FS_SET_FEATURE(sbi, mask) \
163 (sbi->raw_super->feature |= cpu_to_le32(mask))
164#define F2FS_CLEAR_FEATURE(sbi, mask) \
165 (sbi->raw_super->feature &= ~cpu_to_le32(mask))
Jaegeuk Kim76f105a2015-04-13 15:10:36 -0700166
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900167/*
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800168 * Default values for user and/or group using reserved blocks
169 */
170#define F2FS_DEF_RESUID 0
171#define F2FS_DEF_RESGID 0
172
173/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900174 * For checkpoint manager
175 */
176enum {
177 NAT_BITMAP,
178 SIT_BITMAP
179};
180
Hyojun Kim63da4202017-10-06 17:10:08 -0700181#define CP_UMOUNT 0x00000001
182#define CP_FASTBOOT 0x00000002
183#define CP_SYNC 0x00000004
184#define CP_RECOVERY 0x00000008
185#define CP_DISCARD 0x00000010
186#define CP_TRIMMED 0x00000020
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -0700187#define CP_PAUSE 0x00000040
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700188
Hyojun Kim63da4202017-10-06 17:10:08 -0700189#define MAX_DISCARD_BLOCKS(sbi) BLKS_PER_SEC(sbi)
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800190#define DEF_MAX_DISCARD_REQUEST 8 /* issue 8 discards per round */
Hyojun Kim63da4202017-10-06 17:10:08 -0700191#define DEF_MIN_DISCARD_ISSUE_TIME 50 /* 50 ms, if exists */
Yunlei He8d74ddc2018-04-08 15:11:11 +0800192#define DEF_MID_DISCARD_ISSUE_TIME 500 /* 500 ms, if device busy */
Hyojun Kim63da4202017-10-06 17:10:08 -0700193#define DEF_MAX_DISCARD_ISSUE_TIME 60000 /* 60 s, if no candidates */
Jaegeuk Kim0c296e32018-05-24 13:57:26 -0700194#define DEF_DISCARD_URGENT_UTIL 80 /* do more discard over 80% */
Jaegeuk Kim60b99b42015-10-05 14:49:57 -0700195#define DEF_CP_INTERVAL 60 /* 60 secs */
Chao Yudcf25fe2016-07-15 19:25:47 +0800196#define DEF_IDLE_INTERVAL 5 /* 5 secs */
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -0700197#define DEF_DISABLE_INTERVAL 5 /* 5 secs */
Jaegeuk Kimf2cb9192019-01-24 17:48:38 -0800198#define DEF_DISABLE_QUICK_INTERVAL 1 /* 1 secs */
Jaegeuk Kimb842f2d2019-01-14 10:42:11 -0800199#define DEF_UMOUNT_DISCARD_TIMEOUT 5 /* 5 secs */
Jaegeuk Kimbba681c2015-01-26 17:41:23 -0800200
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700201struct cp_control {
202 int reason;
Jaegeuk Kim4b2fecc2014-09-20 22:06:39 -0700203 __u64 trim_start;
204 __u64 trim_end;
205 __u64 trim_minlen;
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -0700206};
207
Chao Yu662befd2014-02-07 16:11:53 +0800208/*
Chao Yud05e8712018-06-05 17:44:11 +0800209 * indicate meta/data type
Chao Yu662befd2014-02-07 16:11:53 +0800210 */
211enum {
212 META_CP,
213 META_NAT,
Chao Yu81c1a0f12014-02-27 19:12:24 +0800214 META_SIT,
Jaegeuk Kim4c521f492014-09-11 13:49:55 -0700215 META_SSA,
Chao Yud826d4a2018-09-29 18:31:27 +0800216 META_MAX,
Jaegeuk Kim4c521f492014-09-11 13:49:55 -0700217 META_POR,
Chao Yua9cc2e42019-04-15 15:26:32 +0800218 DATA_GENERIC, /* check range only */
219 DATA_GENERIC_ENHANCE, /* strong check on range and segment bitmap */
220 DATA_GENERIC_ENHANCE_READ, /*
221 * strong check on range and segment
222 * bitmap but no warning due to race
223 * condition of read on truncated area
224 * by extent_cache
225 */
Chao Yud05e8712018-06-05 17:44:11 +0800226 META_GENERIC,
Chao Yu662befd2014-02-07 16:11:53 +0800227};
228
Jaegeuk Kim6451e042014-07-25 15:47:17 -0700229/* for the list of ino */
230enum {
231 ORPHAN_INO, /* for orphan ino list */
Jaegeuk Kimfff04f92014-07-25 07:40:59 -0700232 APPEND_INO, /* for append ino list */
233 UPDATE_INO, /* for update ino list */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800234 TRANS_DIR_INO, /* for trasactions dir ino list */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800235 FLUSH_INO, /* for multiple device flushing */
Jaegeuk Kim6451e042014-07-25 15:47:17 -0700236 MAX_INO_ENTRY, /* max. list */
237};
238
239struct ino_entry {
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800240 struct list_head list; /* list head */
241 nid_t ino; /* inode number */
242 unsigned int dirty_device; /* dirty device bitmap */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900243};
244
Chao Yu2710fd72015-12-15 13:30:45 +0800245/* for the list of inodes to be GCed */
Chao Yu06292072014-12-29 15:56:18 +0800246struct inode_entry {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900247 struct list_head list; /* list head */
248 struct inode *inode; /* vfs inode pointer */
249};
250
Chao Yu3d5c54a2018-08-02 23:03:19 +0800251struct fsync_node_entry {
252 struct list_head list; /* list head */
253 struct page *page; /* warm node page pointer */
254 unsigned int seq_id; /* sequence id */
255};
256
Hyojun Kim63da4202017-10-06 17:10:08 -0700257/* for the bitmap indicate blocks to be discarded */
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +0900258struct discard_entry {
259 struct list_head list; /* list head */
Hyojun Kim63da4202017-10-06 17:10:08 -0700260 block_t start_blkaddr; /* start blockaddr of current segment */
261 unsigned char discard_map[SIT_VBLOCK_MAP_SIZE]; /* segment discard bitmap */
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +0900262};
263
Hyojun Kim63da4202017-10-06 17:10:08 -0700264/* default discard granularity of inner discard thread, unit: block count */
265#define DEFAULT_DISCARD_GRANULARITY 16
266
267/* max discard pend list number */
268#define MAX_PLIST_NUM 512
269#define plist_idx(blk_num) ((blk_num) >= MAX_PLIST_NUM ? \
Sheng Yong12b36622019-01-14 22:05:14 +0800270 (MAX_PLIST_NUM - 1) : ((blk_num) - 1))
Hyojun Kim63da4202017-10-06 17:10:08 -0700271
Hyojun Kim63da4202017-10-06 17:10:08 -0700272enum {
Chao Yuc813f5a2018-08-06 22:43:50 +0800273 D_PREP, /* initial */
274 D_PARTIAL, /* partially submitted */
275 D_SUBMIT, /* all submitted */
276 D_DONE, /* finished */
Hyojun Kim63da4202017-10-06 17:10:08 -0700277};
278
279struct discard_info {
280 block_t lstart; /* logical start address */
281 block_t len; /* length */
282 block_t start; /* actual start address in dev */
283};
284
285struct discard_cmd {
286 struct rb_node rb_node; /* rb node located in rb-tree */
287 union {
288 struct {
289 block_t lstart; /* logical start address */
290 block_t len; /* length */
291 block_t start; /* actual start address in dev */
292 };
293 struct discard_info di; /* discard info */
294
295 };
296 struct list_head list; /* command list */
297 struct completion wait; /* compleation */
298 struct block_device *bdev; /* bdev */
299 unsigned short ref; /* reference count */
300 unsigned char state; /* state */
Jaegeuk Kim2d1458822018-12-13 16:53:57 -0800301 unsigned char queued; /* queued discard */
Hyojun Kim63da4202017-10-06 17:10:08 -0700302 int error; /* bio error */
Chao Yuc813f5a2018-08-06 22:43:50 +0800303 spinlock_t lock; /* for state/bio_ref updating */
304 unsigned short bio_ref; /* bio reference count */
Hyojun Kim63da4202017-10-06 17:10:08 -0700305};
306
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800307enum {
308 DPOLICY_BG,
309 DPOLICY_FORCE,
310 DPOLICY_FSTRIM,
311 DPOLICY_UMOUNT,
312 MAX_DPOLICY,
313};
314
315struct discard_policy {
316 int type; /* type of discard */
317 unsigned int min_interval; /* used for candidates exist */
Yunlei He8d74ddc2018-04-08 15:11:11 +0800318 unsigned int mid_interval; /* used for device busy */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800319 unsigned int max_interval; /* used for candidates not exist */
320 unsigned int max_requests; /* # of discards issued per round */
321 unsigned int io_aware_gran; /* minimum granularity discard not be aware of I/O */
322 bool io_aware; /* issue discard in idle time */
323 bool sync; /* submit discard with REQ_SYNC flag */
Chao Yuf4a0eb52018-07-08 22:11:01 +0800324 bool ordered; /* issue discard by lba order */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800325 unsigned int granularity; /* discard granularity */
Jaegeuk Kimb842f2d2019-01-14 10:42:11 -0800326 int timeout; /* discard timeout for put_super */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800327};
328
Hyojun Kim63da4202017-10-06 17:10:08 -0700329struct discard_cmd_control {
330 struct task_struct *f2fs_issue_discard; /* discard thread */
331 struct list_head entry_list; /* 4KB discard entry list */
332 struct list_head pend_list[MAX_PLIST_NUM];/* store pending entries */
Hyojun Kim63da4202017-10-06 17:10:08 -0700333 struct list_head wait_list; /* store on-flushing entries */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800334 struct list_head fstrim_list; /* in-flight discard from fstrim */
Hyojun Kim63da4202017-10-06 17:10:08 -0700335 wait_queue_head_t discard_wait_queue; /* waiting queue for wake-up */
336 unsigned int discard_wake; /* to wake up discard thread */
337 struct mutex cmd_lock;
338 unsigned int nr_discards; /* # of discards in the list */
339 unsigned int max_discards; /* max. discards to be issued */
340 unsigned int discard_granularity; /* discard granularity */
341 unsigned int undiscard_blks; /* # of undiscard blocks */
Chao Yuf4a0eb52018-07-08 22:11:01 +0800342 unsigned int next_pos; /* next discard position */
Hyojun Kim63da4202017-10-06 17:10:08 -0700343 atomic_t issued_discard; /* # of issued discard */
Jaegeuk Kim2d1458822018-12-13 16:53:57 -0800344 atomic_t queued_discard; /* # of queued discard */
Hyojun Kim63da4202017-10-06 17:10:08 -0700345 atomic_t discard_cmd_cnt; /* # of cached cmd count */
346 struct rb_root root; /* root of discard rb-tree */
Chao Yube92eee2018-06-22 16:06:59 +0800347 bool rbtree_check; /* config for consistence check */
Chao Yu275b66b2016-08-29 23:58:34 +0800348};
349
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900350/* for the list of fsync inodes, used only during recovery */
351struct fsync_inode_entry {
352 struct list_head list; /* list head */
353 struct inode *inode; /* vfs inode pointer */
Jaegeuk Kimc52e1b12014-09-11 14:29:06 -0700354 block_t blkaddr; /* block address locating the last fsync */
355 block_t last_dentry; /* block address locating the last dentry */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900356};
357
Hyojun Kim63da4202017-10-06 17:10:08 -0700358#define nats_in_cursum(jnl) (le16_to_cpu((jnl)->n_nats))
359#define sits_in_cursum(jnl) (le16_to_cpu((jnl)->n_sits))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900360
Hyojun Kim63da4202017-10-06 17:10:08 -0700361#define nat_in_journal(jnl, i) ((jnl)->nat_j.entries[i].ne)
362#define nid_in_journal(jnl, i) ((jnl)->nat_j.entries[i].nid)
363#define sit_in_journal(jnl, i) ((jnl)->sit_j.entries[i].se)
364#define segno_in_journal(jnl, i) ((jnl)->sit_j.entries[i].segno)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900365
Chao Yudfc08a12016-02-14 18:50:40 +0800366#define MAX_NAT_JENTRIES(jnl) (NAT_JOURNAL_ENTRIES - nats_in_cursum(jnl))
367#define MAX_SIT_JENTRIES(jnl) (SIT_JOURNAL_ENTRIES - sits_in_cursum(jnl))
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700368
Chao Yudfc08a12016-02-14 18:50:40 +0800369static inline int update_nats_in_cursum(struct f2fs_journal *journal, int i)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900370{
Chao Yudfc08a12016-02-14 18:50:40 +0800371 int before = nats_in_cursum(journal);
Hyojun Kim63da4202017-10-06 17:10:08 -0700372
Chao Yudfc08a12016-02-14 18:50:40 +0800373 journal->n_nats = cpu_to_le16(before + i);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900374 return before;
375}
376
Chao Yudfc08a12016-02-14 18:50:40 +0800377static inline int update_sits_in_cursum(struct f2fs_journal *journal, int i)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900378{
Chao Yudfc08a12016-02-14 18:50:40 +0800379 int before = sits_in_cursum(journal);
Hyojun Kim63da4202017-10-06 17:10:08 -0700380
Chao Yudfc08a12016-02-14 18:50:40 +0800381 journal->n_sits = cpu_to_le16(before + i);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900382 return before;
383}
384
Chao Yudfc08a12016-02-14 18:50:40 +0800385static inline bool __has_cursum_space(struct f2fs_journal *journal,
386 int size, int type)
Chao Yu184a5cd2014-09-04 18:13:01 +0800387{
388 if (type == NAT_JOURNAL)
Chao Yudfc08a12016-02-14 18:50:40 +0800389 return size <= MAX_NAT_JENTRIES(journal);
390 return size <= MAX_SIT_JENTRIES(journal);
Chao Yu184a5cd2014-09-04 18:13:01 +0800391}
392
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900393/*
Namjae Jeone9750822013-02-04 23:41:41 +0900394 * ioctl commands
395 */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700396#define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS
397#define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS
Chao Yud49f3e82015-01-23 20:36:04 +0800398#define F2FS_IOC_GETVERSION FS_IOC_GETVERSION
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700399
400#define F2FS_IOCTL_MAGIC 0xf5
401#define F2FS_IOC_START_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 1)
402#define F2FS_IOC_COMMIT_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 2)
Jaegeuk Kim02a13352014-10-06 16:11:16 -0700403#define F2FS_IOC_START_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 3)
Jaegeuk Kim1e843712014-12-09 06:08:59 -0800404#define F2FS_IOC_RELEASE_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 4)
405#define F2FS_IOC_ABORT_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 5)
Hyojun Kim63da4202017-10-06 17:10:08 -0700406#define F2FS_IOC_GARBAGE_COLLECT _IOW(F2FS_IOCTL_MAGIC, 6, __u32)
Chao Yu456b88e2015-10-05 22:24:19 +0800407#define F2FS_IOC_WRITE_CHECKPOINT _IO(F2FS_IOCTL_MAGIC, 7)
Hyojun Kim63da4202017-10-06 17:10:08 -0700408#define F2FS_IOC_DEFRAGMENT _IOWR(F2FS_IOCTL_MAGIC, 8, \
409 struct f2fs_defragment)
Jaegeuk Kim4dd6f972016-07-08 15:16:47 -0700410#define F2FS_IOC_MOVE_RANGE _IOWR(F2FS_IOCTL_MAGIC, 9, \
411 struct f2fs_move_range)
Hyojun Kim63da4202017-10-06 17:10:08 -0700412#define F2FS_IOC_FLUSH_DEVICE _IOW(F2FS_IOCTL_MAGIC, 10, \
413 struct f2fs_flush_device)
414#define F2FS_IOC_GARBAGE_COLLECT_RANGE _IOW(F2FS_IOCTL_MAGIC, 11, \
415 struct f2fs_gc_range)
416#define F2FS_IOC_GET_FEATURES _IOR(F2FS_IOCTL_MAGIC, 12, __u32)
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800417#define F2FS_IOC_SET_PIN_FILE _IOW(F2FS_IOCTL_MAGIC, 13, __u32)
418#define F2FS_IOC_GET_PIN_FILE _IOR(F2FS_IOCTL_MAGIC, 14, __u32)
419#define F2FS_IOC_PRECACHE_EXTENTS _IO(F2FS_IOCTL_MAGIC, 15)
Qiuyang Sun20042e32019-06-05 11:33:25 +0800420#define F2FS_IOC_RESIZE_FS _IOW(F2FS_IOCTL_MAGIC, 16, __u64)
Namjae Jeone9750822013-02-04 23:41:41 +0900421
Jaegeuk Kim0b81d072015-05-15 16:26:10 -0700422#define F2FS_IOC_SET_ENCRYPTION_POLICY FS_IOC_SET_ENCRYPTION_POLICY
423#define F2FS_IOC_GET_ENCRYPTION_POLICY FS_IOC_GET_ENCRYPTION_POLICY
424#define F2FS_IOC_GET_ENCRYPTION_PWSALT FS_IOC_GET_ENCRYPTION_PWSALT
Jaegeuk Kimf424f662015-04-20 15:19:06 -0700425
Jaegeuk Kim1abff932015-01-08 19:15:53 -0800426/*
427 * should be same as XFS_IOC_GOINGDOWN.
428 * Flags for going down operation used by FS_IOC_GOINGDOWN
429 */
430#define F2FS_IOC_SHUTDOWN _IOR('X', 125, __u32) /* Shutdown */
431#define F2FS_GOING_DOWN_FULLSYNC 0x0 /* going down with full sync */
432#define F2FS_GOING_DOWN_METASYNC 0x1 /* going down with metadata */
433#define F2FS_GOING_DOWN_NOSYNC 0x2 /* going down */
Jaegeuk Kimc912a822015-10-07 09:46:37 -0700434#define F2FS_GOING_DOWN_METAFLUSH 0x3 /* going down with meta flush */
Jaegeuk Kima58cf532018-11-28 13:26:03 -0800435#define F2FS_GOING_DOWN_NEED_FSCK 0x4 /* going down to trigger fsck */
Jaegeuk Kim1abff932015-01-08 19:15:53 -0800436
Namjae Jeone9750822013-02-04 23:41:41 +0900437#if defined(__KERNEL__) && defined(CONFIG_COMPAT)
438/*
439 * ioctl commands in 32 bit emulation
440 */
Chao Yu04ef4b62015-11-10 18:44:20 +0800441#define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS
442#define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS
443#define F2FS_IOC32_GETVERSION FS_IOC32_GETVERSION
Namjae Jeone9750822013-02-04 23:41:41 +0900444#endif
445
Hyojun Kim63da4202017-10-06 17:10:08 -0700446struct f2fs_gc_range {
447 u32 sync;
448 u64 start;
449 u64 len;
450};
451
Chao Yud323d002015-10-27 09:53:45 +0800452struct f2fs_defragment {
453 u64 start;
454 u64 len;
455};
456
Jaegeuk Kim4dd6f972016-07-08 15:16:47 -0700457struct f2fs_move_range {
458 u32 dst_fd; /* destination fd */
459 u64 pos_in; /* start position in src_fd */
460 u64 pos_out; /* start position in dst_fd */
461 u64 len; /* size to move */
462};
463
Hyojun Kim63da4202017-10-06 17:10:08 -0700464struct f2fs_flush_device {
465 u32 dev_num; /* device number to flush */
466 u32 segments; /* # of segments to flush */
467};
468
469/* for inline stuff */
470#define DEF_INLINE_RESERVED_SIZE 1
471static inline int get_extra_isize(struct inode *inode);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800472static inline int get_inline_xattr_addrs(struct inode *inode);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800473#define MAX_INLINE_DATA(inode) (sizeof(__le32) * \
474 (CUR_ADDRS_PER_INODE(inode) - \
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800475 get_inline_xattr_addrs(inode) - \
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800476 DEF_INLINE_RESERVED_SIZE))
Hyojun Kim63da4202017-10-06 17:10:08 -0700477
478/* for inline dir */
479#define NR_INLINE_DENTRY(inode) (MAX_INLINE_DATA(inode) * BITS_PER_BYTE / \
480 ((SIZE_OF_DIR_ENTRY + F2FS_SLOT_LEN) * \
481 BITS_PER_BYTE + 1))
Geert Uytterhoeven87a5f3f2019-06-20 16:42:08 +0200482#define INLINE_DENTRY_BITMAP_SIZE(inode) \
483 DIV_ROUND_UP(NR_INLINE_DENTRY(inode), BITS_PER_BYTE)
Hyojun Kim63da4202017-10-06 17:10:08 -0700484#define INLINE_RESERVED_SIZE(inode) (MAX_INLINE_DATA(inode) - \
485 ((SIZE_OF_DIR_ENTRY + F2FS_SLOT_LEN) * \
486 NR_INLINE_DENTRY(inode) + \
487 INLINE_DENTRY_BITMAP_SIZE(inode)))
488
Namjae Jeone9750822013-02-04 23:41:41 +0900489/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900490 * For INODE and NODE manager
491 */
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700492/* for directory operations */
493struct f2fs_dentry_ptr {
Jaegeuk Kimd8c68222015-04-27 16:26:24 -0700494 struct inode *inode;
Hyojun Kim63da4202017-10-06 17:10:08 -0700495 void *bitmap;
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700496 struct f2fs_dir_entry *dentry;
497 __u8 (*filename)[F2FS_SLOT_LEN];
498 int max;
Hyojun Kim63da4202017-10-06 17:10:08 -0700499 int nr_bitmap;
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700500};
501
Hyojun Kim63da4202017-10-06 17:10:08 -0700502static inline void make_dentry_ptr_block(struct inode *inode,
503 struct f2fs_dentry_ptr *d, struct f2fs_dentry_block *t)
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700504{
Jaegeuk Kimd8c68222015-04-27 16:26:24 -0700505 d->inode = inode;
Hyojun Kim63da4202017-10-06 17:10:08 -0700506 d->max = NR_DENTRY_IN_BLOCK;
507 d->nr_bitmap = SIZE_OF_DENTRY_BITMAP;
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800508 d->bitmap = t->dentry_bitmap;
Hyojun Kim63da4202017-10-06 17:10:08 -0700509 d->dentry = t->dentry;
510 d->filename = t->filename;
511}
Jaegeuk Kimd8c68222015-04-27 16:26:24 -0700512
Hyojun Kim63da4202017-10-06 17:10:08 -0700513static inline void make_dentry_ptr_inline(struct inode *inode,
514 struct f2fs_dentry_ptr *d, void *t)
515{
516 int entry_cnt = NR_INLINE_DENTRY(inode);
517 int bitmap_size = INLINE_DENTRY_BITMAP_SIZE(inode);
518 int reserved_size = INLINE_RESERVED_SIZE(inode);
519
520 d->inode = inode;
521 d->max = entry_cnt;
522 d->nr_bitmap = bitmap_size;
523 d->bitmap = t;
524 d->dentry = t + bitmap_size + reserved_size;
525 d->filename = t + bitmap_size + reserved_size +
526 SIZE_OF_DIR_ENTRY * entry_cnt;
Jaegeuk Kim7b3cd7d2014-10-18 22:52:52 -0700527}
528
Jaegeuk Kimdbe6a5f2013-08-09 08:14:06 +0900529/*
530 * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1
531 * as its node offset to distinguish from index node blocks.
532 * But some bits are used to mark the node block.
533 */
534#define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \
535 >> OFFSET_BIT_SHIFT)
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900536enum {
537 ALLOC_NODE, /* allocate a new node page if needed */
538 LOOKUP_NODE, /* look up a node without readahead */
539 LOOKUP_NODE_RA, /*
540 * look up a node with readahead called
Chao Yu4f4124d2013-12-21 18:02:14 +0800541 * by get_data_block.
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900542 */
Jaegeuk Kim266e97a2013-02-26 13:10:46 +0900543};
544
Chao Yu3c743262018-07-17 00:02:17 +0800545#define DEFAULT_RETRY_IO_COUNT 8 /* maximum retry read IO count */
546
Chao Yud8312722018-09-20 20:05:00 +0800547/* maximum retry quota flush count */
548#define DEFAULT_RETRY_QUOTA_FLUSH_COUNT 8
549
Jaegeuk Kima6db67f2015-08-10 15:01:12 -0700550#define F2FS_LINK_MAX 0xffffffff /* maximum link count per file */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900551
Chao Yu817202d92014-04-28 17:59:43 +0800552#define MAX_DIR_RA_PAGES 4 /* maximum ra pages of dir */
553
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900554/* for in-memory extent cache entry */
Chao Yu13054c52015-02-05 17:52:58 +0800555#define F2FS_MIN_EXTENT_LEN 64 /* minimum extent length */
556
557/* number of extent info in extent cache we try to shrink */
558#define EXTENT_CACHE_SHRINK_NUMBER 128
Jaegeuk Kimc11abd12013-11-19 10:41:54 +0900559
Hyojun Kim63da4202017-10-06 17:10:08 -0700560struct rb_entry {
561 struct rb_node rb_node; /* rb node located in rb-tree */
562 unsigned int ofs; /* start offset of the entry */
563 unsigned int len; /* length of the entry */
564};
565
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900566struct extent_info {
Chao Yu13054c52015-02-05 17:52:58 +0800567 unsigned int fofs; /* start offset in a file */
Chao Yu13054c52015-02-05 17:52:58 +0800568 unsigned int len; /* length of the extent */
Hyojun Kim63da4202017-10-06 17:10:08 -0700569 u32 blk; /* start block address of the extent */
Chao Yu13054c52015-02-05 17:52:58 +0800570};
571
572struct extent_node {
Chao Yufbb223f2018-12-18 19:20:16 +0800573 struct rb_node rb_node; /* rb node located in rb-tree */
574 struct extent_info ei; /* extent info */
Chao Yu13054c52015-02-05 17:52:58 +0800575 struct list_head list; /* node in global extent list of sbi */
Hou Pengyang201ef5e2016-01-26 12:56:26 +0000576 struct extent_tree *et; /* extent tree pointer */
Chao Yu13054c52015-02-05 17:52:58 +0800577};
578
579struct extent_tree {
580 nid_t ino; /* inode number */
581 struct rb_root root; /* root of extent info rb-tree */
Chao Yu62c8af62015-02-05 18:01:39 +0800582 struct extent_node *cached_en; /* recently accessed extent node */
Jaegeuk Kim3e72f722015-06-19 17:53:26 -0700583 struct extent_info largest; /* largested extent info */
Jaegeuk Kim137d09f2015-12-31 15:02:16 -0800584 struct list_head list; /* to be used by sbi->zombie_list */
Chao Yu13054c52015-02-05 17:52:58 +0800585 rwlock_t lock; /* protect extent info rb-tree */
Chao Yu68e35382016-01-08 20:22:52 +0800586 atomic_t node_cnt; /* # of extent node in rb-tree*/
Zhikang Zhang4c3226a2018-09-10 16:18:25 +0800587 bool largest_updated; /* largest extent updated */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900588};
589
590/*
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700591 * This structure is taken from ext4_map_blocks.
592 *
593 * Note that, however, f2fs uses NEW and MAPPED flags for f2fs_map_blocks().
594 */
595#define F2FS_MAP_NEW (1 << BH_New)
596#define F2FS_MAP_MAPPED (1 << BH_Mapped)
Jaegeuk Kim7f63eb72015-05-08 19:30:32 -0700597#define F2FS_MAP_UNWRITTEN (1 << BH_Unwritten)
598#define F2FS_MAP_FLAGS (F2FS_MAP_NEW | F2FS_MAP_MAPPED |\
599 F2FS_MAP_UNWRITTEN)
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700600
601struct f2fs_map_blocks {
602 block_t m_pblk;
603 block_t m_lblk;
604 unsigned int m_len;
605 unsigned int m_flags;
Chao Yuda859852016-01-26 15:42:58 +0800606 pgoff_t *m_next_pgofs; /* point next possible non-hole pgofs */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800607 pgoff_t *m_next_extent; /* point to next possible extent */
608 int m_seg_type;
Chao Yu5b5162d2018-11-13 14:33:45 +0800609 bool m_may_create; /* indicate it is from write path */
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700610};
611
Chao Yue2b4e2b2015-08-19 19:11:19 +0800612/* for flag in get_data_block */
Hyojun Kim63da4202017-10-06 17:10:08 -0700613enum {
614 F2FS_GET_BLOCK_DEFAULT,
615 F2FS_GET_BLOCK_FIEMAP,
616 F2FS_GET_BLOCK_BMAP,
Jaegeuk Kim0328f882018-09-19 15:28:40 -0700617 F2FS_GET_BLOCK_DIO,
Hyojun Kim63da4202017-10-06 17:10:08 -0700618 F2FS_GET_BLOCK_PRE_DIO,
619 F2FS_GET_BLOCK_PRE_AIO,
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800620 F2FS_GET_BLOCK_PRECACHE,
Hyojun Kim63da4202017-10-06 17:10:08 -0700621};
Chao Yue2b4e2b2015-08-19 19:11:19 +0800622
Jaegeuk Kim003a3e12015-04-06 19:55:34 -0700623/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900624 * i_advise uses FADVISE_XXX_BIT. We can add additional hints later.
625 */
626#define FADVISE_COLD_BIT 0x01
Jaegeuk Kim354a3392013-06-14 08:52:35 +0900627#define FADVISE_LOST_PINO_BIT 0x02
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700628#define FADVISE_ENCRYPT_BIT 0x04
Jaegeuk Kime7d55452015-04-29 17:02:18 -0700629#define FADVISE_ENC_NAME_BIT 0x08
Hyojun Kim63da4202017-10-06 17:10:08 -0700630#define FADVISE_KEEP_SIZE_BIT 0x10
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800631#define FADVISE_HOT_BIT 0x20
632#define FADVISE_VERITY_BIT 0x40 /* reserved */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900633
Chao Yu93aff612018-07-19 23:57:54 +0800634#define FADVISE_MODIFIABLE_BITS (FADVISE_COLD_BIT | FADVISE_HOT_BIT)
635
Jaegeuk Kimb5492af72015-04-20 13:44:41 -0700636#define file_is_cold(inode) is_file(inode, FADVISE_COLD_BIT)
637#define file_wrong_pino(inode) is_file(inode, FADVISE_LOST_PINO_BIT)
638#define file_set_cold(inode) set_file(inode, FADVISE_COLD_BIT)
639#define file_lost_pino(inode) set_file(inode, FADVISE_LOST_PINO_BIT)
640#define file_clear_cold(inode) clear_file(inode, FADVISE_COLD_BIT)
641#define file_got_pino(inode) clear_file(inode, FADVISE_LOST_PINO_BIT)
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700642#define file_is_encrypt(inode) is_file(inode, FADVISE_ENCRYPT_BIT)
643#define file_set_encrypt(inode) set_file(inode, FADVISE_ENCRYPT_BIT)
644#define file_clear_encrypt(inode) clear_file(inode, FADVISE_ENCRYPT_BIT)
Jaegeuk Kime7d55452015-04-29 17:02:18 -0700645#define file_enc_name(inode) is_file(inode, FADVISE_ENC_NAME_BIT)
646#define file_set_enc_name(inode) set_file(inode, FADVISE_ENC_NAME_BIT)
Hyojun Kim63da4202017-10-06 17:10:08 -0700647#define file_keep_isize(inode) is_file(inode, FADVISE_KEEP_SIZE_BIT)
648#define file_set_keep_isize(inode) set_file(inode, FADVISE_KEEP_SIZE_BIT)
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800649#define file_is_hot(inode) is_file(inode, FADVISE_HOT_BIT)
650#define file_set_hot(inode) set_file(inode, FADVISE_HOT_BIT)
651#define file_clear_hot(inode) clear_file(inode, FADVISE_HOT_BIT)
Jaegeuk Kimcde4de12015-04-20 13:57:51 -0700652
Jaegeuk Kimab9fa662014-02-27 20:09:05 +0900653#define DEF_DIR_LEVEL 0
654
Chao Yucaf10c62018-05-07 20:28:54 +0800655enum {
656 GC_FAILURE_PIN,
657 GC_FAILURE_ATOMIC,
658 MAX_GC_FAILURE
659};
660
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900661struct f2fs_inode_info {
662 struct inode vfs_inode; /* serve a vfs inode */
663 unsigned long i_flags; /* keep an inode flags for ioctl */
664 unsigned char i_advise; /* use to give file attribute hints */
Jaegeuk Kim38431542014-02-27 18:20:00 +0900665 unsigned char i_dir_level; /* use for dentry level for large dir */
Chao Yucaf10c62018-05-07 20:28:54 +0800666 unsigned int i_current_depth; /* only for directory depth */
667 /* for gc failure statistic */
668 unsigned int i_gc_failures[MAX_GC_FAILURE];
Jaegeuk Kim6666e6a2012-12-10 17:52:48 +0900669 unsigned int i_pino; /* parent inode number */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900670 umode_t i_acl_mode; /* keep file acl mode temporarily */
671
672 /* Use below internally in f2fs*/
673 unsigned long flags; /* use to pass per-file flags */
Jaegeuk Kimd928bfb2014-03-20 19:10:08 +0900674 struct rw_semaphore i_sem; /* protect fi info */
Jaegeuk Kima43e1c42016-12-02 15:11:32 -0800675 atomic_t dirty_pages; /* # of dirty pages */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900676 f2fs_hash_t chash; /* hash value of given file name */
677 unsigned int clevel; /* maximum level of given file name */
Jaegeuk Kimd00d1b72017-02-14 09:54:37 -0800678 struct task_struct *task; /* lookup and create consistency */
Hyojun Kim63da4202017-10-06 17:10:08 -0700679 struct task_struct *cp_task; /* separate cp/wb IO stats*/
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900680 nid_t i_xattr_nid; /* node id that contains xattrs */
Jaegeuk Kim26de9b12016-05-20 20:42:37 -0700681 loff_t last_disk_size; /* lastly written file size */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700682
Hyojun Kim63da4202017-10-06 17:10:08 -0700683#ifdef CONFIG_QUOTA
684 struct dquot *i_dquot[MAXQUOTAS];
685
686 /* quota space reservation, managed internally by quota code */
687 qsize_t i_reserved_quota;
688#endif
Jaegeuk Kim0f18b462016-05-20 11:10:10 -0700689 struct list_head dirty_list; /* dirty list for dirs and files */
690 struct list_head gdirty_list; /* linked in global dirty list */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800691 struct list_head inmem_ilist; /* list for inmem inodes */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700692 struct list_head inmem_pages; /* inmemory pages managed by f2fs */
Hyojun Kim63da4202017-10-06 17:10:08 -0700693 struct task_struct *inmem_task; /* store inmemory task */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -0700694 struct mutex inmem_lock; /* lock for inmemory pages */
Jaegeuk Kim3e72f722015-06-19 17:53:26 -0700695 struct extent_tree *extent_tree; /* cached extent_tree entry */
Chao Yuf6bd7d42018-04-24 10:55:28 +0800696
697 /* avoid racing between foreground op and gc */
698 struct rw_semaphore i_gc_rwsem[2];
Hyojun Kim63da4202017-10-06 17:10:08 -0700699 struct rw_semaphore i_mmap_sem;
700 struct rw_semaphore i_xattr_sem; /* avoid racing between reading and changing EAs */
701
702 int i_extra_isize; /* size of extra space located in i_addr */
703 kprojid_t i_projid; /* id for project quota */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800704 int i_inline_xattr_size; /* inline xattr size */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +0800705 struct timespec i_crtime; /* inode creation time */
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800706 struct timespec i_disk_time[4]; /* inode disk times */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900707};
708
709static inline void get_extent_info(struct extent_info *ext,
Chao Yubd933d42016-05-04 23:19:47 +0800710 struct f2fs_extent *i_ext)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900711{
Chao Yubd933d42016-05-04 23:19:47 +0800712 ext->fofs = le32_to_cpu(i_ext->fofs);
713 ext->blk = le32_to_cpu(i_ext->blk);
714 ext->len = le32_to_cpu(i_ext->len);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900715}
716
717static inline void set_raw_extent(struct extent_info *ext,
718 struct f2fs_extent *i_ext)
719{
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900720 i_ext->fofs = cpu_to_le32(ext->fofs);
Chao Yu4d0b0bd2015-02-05 17:47:25 +0800721 i_ext->blk = cpu_to_le32(ext->blk);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900722 i_ext->len = cpu_to_le32(ext->len);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900723}
724
Chao Yu429511c2015-02-05 17:54:31 +0800725static inline void set_extent_info(struct extent_info *ei, unsigned int fofs,
726 u32 blk, unsigned int len)
727{
728 ei->fofs = fofs;
729 ei->blk = blk;
730 ei->len = len;
731}
732
Hyojun Kim63da4202017-10-06 17:10:08 -0700733static inline bool __is_discard_mergeable(struct discard_info *back,
Chao Yuc813f5a2018-08-06 22:43:50 +0800734 struct discard_info *front, unsigned int max_len)
Chao Yu0bdee482015-03-19 19:27:51 +0800735{
Jaegeuk Kim0c296e32018-05-24 13:57:26 -0700736 return (back->lstart + back->len == front->lstart) &&
Chao Yuc813f5a2018-08-06 22:43:50 +0800737 (back->len + front->len <= max_len);
Hyojun Kim63da4202017-10-06 17:10:08 -0700738}
739
740static inline bool __is_discard_back_mergeable(struct discard_info *cur,
Chao Yuc813f5a2018-08-06 22:43:50 +0800741 struct discard_info *back, unsigned int max_len)
Hyojun Kim63da4202017-10-06 17:10:08 -0700742{
Chao Yuc813f5a2018-08-06 22:43:50 +0800743 return __is_discard_mergeable(back, cur, max_len);
Hyojun Kim63da4202017-10-06 17:10:08 -0700744}
745
746static inline bool __is_discard_front_mergeable(struct discard_info *cur,
Chao Yuc813f5a2018-08-06 22:43:50 +0800747 struct discard_info *front, unsigned int max_len)
Hyojun Kim63da4202017-10-06 17:10:08 -0700748{
Chao Yuc813f5a2018-08-06 22:43:50 +0800749 return __is_discard_mergeable(cur, front, max_len);
Chao Yu0bdee482015-03-19 19:27:51 +0800750}
751
Chao Yu429511c2015-02-05 17:54:31 +0800752static inline bool __is_extent_mergeable(struct extent_info *back,
753 struct extent_info *front)
754{
755 return (back->fofs + back->len == front->fofs &&
756 back->blk + back->len == front->blk);
757}
758
759static inline bool __is_back_mergeable(struct extent_info *cur,
760 struct extent_info *back)
761{
762 return __is_extent_mergeable(back, cur);
763}
764
765static inline bool __is_front_mergeable(struct extent_info *cur,
766 struct extent_info *front)
767{
768 return __is_extent_mergeable(cur, front);
769}
770
Hyojun Kim63da4202017-10-06 17:10:08 -0700771extern void f2fs_mark_inode_dirty_sync(struct inode *inode, bool sync);
Zhikang Zhang4c3226a2018-09-10 16:18:25 +0800772static inline void __try_update_largest_extent(struct extent_tree *et,
773 struct extent_node *en)
Chao Yu4abd3f52015-09-22 21:07:47 +0800774{
Jaegeuk Kim205b9822016-05-20 09:52:20 -0700775 if (en->ei.len > et->largest.len) {
Chao Yu4abd3f52015-09-22 21:07:47 +0800776 et->largest = en->ei;
Zhikang Zhang4c3226a2018-09-10 16:18:25 +0800777 et->largest_updated = true;
Jaegeuk Kim205b9822016-05-20 09:52:20 -0700778 }
Chao Yu4abd3f52015-09-22 21:07:47 +0800779}
780
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800781/*
782 * For free nid management
783 */
784enum nid_state {
785 FREE_NID, /* newly added to free nid list */
786 PREALLOC_NID, /* it is preallocated */
787 MAX_NID_STATE,
Hyojun Kim63da4202017-10-06 17:10:08 -0700788};
789
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900790struct f2fs_nm_info {
791 block_t nat_blkaddr; /* base disk address of NAT */
792 nid_t max_nid; /* maximum possible node ids */
Hyojun Kim63da4202017-10-06 17:10:08 -0700793 nid_t available_nids; /* # of available node ids */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900794 nid_t next_scan_nid; /* the next nid to be scanned */
Jaegeuk Kimcdfc41c2014-03-19 13:31:37 +0900795 unsigned int ram_thresh; /* control the memory footprint */
Chao Yuea1a29a02015-10-12 17:08:48 +0800796 unsigned int ra_nid_pages; /* # of nid pages to be readaheaded */
Chao Yu2304cb02016-01-18 18:32:58 +0800797 unsigned int dirty_nats_ratio; /* control dirty nats ratio threshold */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900798
799 /* NAT cache management */
800 struct radix_tree_root nat_root;/* root of the nat entry cache */
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700801 struct radix_tree_root nat_set_root;/* root of the nat set cache */
Jaegeuk Kimb873b792016-08-04 11:38:25 -0700802 struct rw_semaphore nat_tree_lock; /* protect nat_tree_lock */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900803 struct list_head nat_entries; /* cached nat entry list (clean) */
Chao Yu7309a5f2018-08-05 23:08:59 +0800804 spinlock_t nat_list_lock; /* protect clean nat entry list */
Jaegeuk Kim309cc2b2014-09-22 11:40:48 -0700805 unsigned int nat_cnt; /* the # of cached nat entries */
Chao Yuaec71382014-06-24 09:18:20 +0800806 unsigned int dirty_nat_cnt; /* total num of nat entries in set */
Hyojun Kim63da4202017-10-06 17:10:08 -0700807 unsigned int nat_blocks; /* # of nat blocks */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900808
809 /* free node ids management */
Jaegeuk Kim8a7ed662014-02-21 14:29:35 +0900810 struct radix_tree_root free_nid_root;/* root of the free_nid cache */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800811 struct list_head free_nid_list; /* list for free nids excluding preallocated nids */
812 unsigned int nid_cnt[MAX_NID_STATE]; /* the number of free node id */
Hyojun Kim63da4202017-10-06 17:10:08 -0700813 spinlock_t nid_list_lock; /* protect nid lists ops */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900814 struct mutex build_lock; /* lock for build free nids */
Jaegeuk Kimd9197652018-01-05 10:44:52 -0800815 unsigned char **free_nid_bitmap;
Hyojun Kim63da4202017-10-06 17:10:08 -0700816 unsigned char *nat_block_bitmap;
817 unsigned short *free_nid_count; /* free nid count of NAT block */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900818
819 /* for checkpoint */
820 char *nat_bitmap; /* NAT bitmap pointer */
Hyojun Kim63da4202017-10-06 17:10:08 -0700821
822 unsigned int nat_bits_blocks; /* # of nat bits blocks */
823 unsigned char *nat_bits; /* NAT bits blocks */
824 unsigned char *full_nat_bits; /* full NAT pages */
825 unsigned char *empty_nat_bits; /* empty NAT pages */
826#ifdef CONFIG_F2FS_CHECK_FS
827 char *nat_bitmap_mir; /* NAT bitmap mirror */
828#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900829 int bitmap_size; /* bitmap size */
830};
831
832/*
833 * this structure is used as one of function parameters.
834 * all the information are dedicated to a given direct node block determined
835 * by the data offset in a file.
836 */
837struct dnode_of_data {
838 struct inode *inode; /* vfs inode pointer */
839 struct page *inode_page; /* its inode page, NULL is possible */
840 struct page *node_page; /* cached direct node page */
841 nid_t nid; /* node id of the direct node block */
842 unsigned int ofs_in_node; /* data offset in the node page */
843 bool inode_page_locked; /* inode page is locked or not */
Jaegeuk Kim93bae092015-12-22 12:59:54 -0800844 bool node_changed; /* is node block changed */
Chao Yu3cf45742016-01-26 15:40:44 +0800845 char cur_level; /* level of hole node page */
846 char max_level; /* level of current page located */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900847 block_t data_blkaddr; /* block address of the node block */
848};
849
850static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
851 struct page *ipage, struct page *npage, nid_t nid)
852{
Jaegeuk Kimd66d1f72013-01-03 08:57:21 +0900853 memset(dn, 0, sizeof(*dn));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900854 dn->inode = inode;
855 dn->inode_page = ipage;
856 dn->node_page = npage;
857 dn->nid = nid;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900858}
859
860/*
861 * For SIT manager
862 *
863 * By default, there are 6 active log areas across the whole main area.
864 * When considering hot and cold data separation to reduce cleaning overhead,
865 * we split 3 for data logs and 3 for node logs as hot, warm, and cold types,
866 * respectively.
867 * In the current design, you should not change the numbers intentionally.
868 * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6
869 * logs individually according to the underlying devices. (default: 6)
870 * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for
871 * data and 8 for node logs.
872 */
873#define NR_CURSEG_DATA_TYPE (3)
874#define NR_CURSEG_NODE_TYPE (3)
875#define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE)
876
877enum {
878 CURSEG_HOT_DATA = 0, /* directory entry blocks */
879 CURSEG_WARM_DATA, /* data blocks */
880 CURSEG_COLD_DATA, /* multimedia or GCed data blocks */
881 CURSEG_HOT_NODE, /* direct node blocks of directory files */
882 CURSEG_WARM_NODE, /* direct node blocks of normal files */
883 CURSEG_COLD_NODE, /* indirect node blocks */
Jaegeuk Kim38aa0882015-01-05 16:02:20 -0800884 NO_CHECK_TYPE,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900885};
886
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900887struct flush_cmd {
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900888 struct completion wait;
Gu Zheng721bd4d2014-09-05 18:31:00 +0800889 struct llist_node llnode;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800890 nid_t ino;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900891 int ret;
892};
893
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800894struct flush_cmd_control {
895 struct task_struct *f2fs_issue_flush; /* flush thread */
896 wait_queue_head_t flush_wait_queue; /* waiting queue for wake-up */
Hyojun Kim63da4202017-10-06 17:10:08 -0700897 atomic_t issued_flush; /* # of issued flushes */
Jaegeuk Kim2d1458822018-12-13 16:53:57 -0800898 atomic_t queued_flush; /* # of queued flushes */
Gu Zheng721bd4d2014-09-05 18:31:00 +0800899 struct llist_head issue_list; /* list for command issue */
900 struct llist_node *dispatch_list; /* list for command dispatch */
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800901};
902
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900903struct f2fs_sm_info {
904 struct sit_info *sit_info; /* whole segment information */
905 struct free_segmap_info *free_info; /* free segment information */
906 struct dirty_seglist_info *dirty_info; /* dirty segment information */
907 struct curseg_info *curseg_array; /* active segment information */
908
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800909 struct rw_semaphore curseg_lock; /* for preventing curseg change */
910
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900911 block_t seg0_blkaddr; /* block address of 0'th segment */
912 block_t main_blkaddr; /* start block address of main area */
913 block_t ssa_blkaddr; /* start block address of SSA area */
914
915 unsigned int segment_count; /* total # of segments */
916 unsigned int main_segments; /* # of segments in main area */
917 unsigned int reserved_segments; /* # of reserved segments */
918 unsigned int ovp_segments; /* # of overprovision segments */
Jaegeuk Kim81eb8d62013-10-24 13:31:34 +0900919
920 /* a threshold to reclaim prefree segments */
921 unsigned int rec_prefree_segments;
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +0900922
Jaegeuk Kimbba681c2015-01-26 17:41:23 -0800923 /* for batched trimming */
924 unsigned int trim_sections; /* # of sections to trim */
925
Chao Yu184a5cd2014-09-04 18:13:01 +0800926 struct list_head sit_entry_set; /* sit entry set list */
927
Jaegeuk Kim216fbd62013-11-07 13:13:42 +0900928 unsigned int ipu_policy; /* in-place-update policy */
929 unsigned int min_ipu_util; /* in-place-update threshold */
Jaegeuk Kimc1ce1b02014-09-10 16:53:02 -0700930 unsigned int min_fsync_blocks; /* threshold for fsync */
Jaegeuk Kime029e962018-08-09 17:53:34 -0700931 unsigned int min_seq_blocks; /* threshold for sequential blocks */
Hyojun Kim63da4202017-10-06 17:10:08 -0700932 unsigned int min_hot_blocks; /* threshold for hot block allocation */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800933 unsigned int min_ssr_sections; /* threshold to trigger SSR allocation */
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900934
935 /* for flush command control */
Hyojun Kim63da4202017-10-06 17:10:08 -0700936 struct flush_cmd_control *fcc_info;
Gu Zhenga688b9d9e2014-04-27 14:21:21 +0800937
Hyojun Kim63da4202017-10-06 17:10:08 -0700938 /* for discard command control */
939 struct discard_cmd_control *dcc_info;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900940};
941
942/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900943 * For superblock
944 */
945/*
946 * COUNT_TYPE for monitoring
947 *
948 * f2fs monitors the number of several block types such as on-writeback,
949 * dirty dentry blocks, dirty node blocks, and dirty meta blocks.
950 */
Hyojun Kim63da4202017-10-06 17:10:08 -0700951#define WB_DATA_TYPE(p) (__is_cp_guaranteed(p) ? F2FS_WB_CP_DATA : F2FS_WB_DATA)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900952enum count_type {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900953 F2FS_DIRTY_DENTS,
Chao Yuc227f912015-12-16 13:09:20 +0800954 F2FS_DIRTY_DATA,
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +0800955 F2FS_DIRTY_QDATA,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900956 F2FS_DIRTY_NODES,
957 F2FS_DIRTY_META,
Jaegeuk Kim8dcf2ff72014-12-05 17:18:15 -0800958 F2FS_INMEM_PAGES,
Jaegeuk Kim0f18b462016-05-20 11:10:10 -0700959 F2FS_DIRTY_IMETA,
Hyojun Kim63da4202017-10-06 17:10:08 -0700960 F2FS_WB_CP_DATA,
961 F2FS_WB_DATA,
Jaegeuk Kim8025d722018-10-16 10:20:53 -0700962 F2FS_RD_DATA,
963 F2FS_RD_NODE,
964 F2FS_RD_META,
Chao Yucc32cf32018-11-12 00:46:46 +0800965 F2FS_DIO_WRITE,
966 F2FS_DIO_READ,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900967 NR_COUNT_TYPE,
968};
969
970/*
arter97e1c42042014-08-06 23:22:50 +0900971 * The below are the page types of bios used in submit_bio().
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900972 * The available types are:
973 * DATA User data pages. It operates as async mode.
974 * NODE Node pages. It operates as async mode.
975 * META FS metadata pages such as SIT, NAT, CP.
976 * NR_PAGE_TYPE The number of page types.
977 * META_FLUSH Make sure the previous pages are written
978 * with waiting the bio's completion
979 * ... Only can be used with META.
980 */
Jaegeuk Kim7d5e5102013-11-18 17:13:35 +0900981#define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900982enum page_type {
983 DATA,
984 NODE,
985 META,
986 NR_PAGE_TYPE,
987 META_FLUSH,
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700988 INMEM, /* the below types are used by tracepoints only. */
989 INMEM_DROP,
Hyojun Kim63da4202017-10-06 17:10:08 -0700990 INMEM_INVALIDATE,
Chao Yu28bc1062016-02-06 14:40:34 +0800991 INMEM_REVOKE,
Jaegeuk Kim8ce67cb2015-03-17 17:58:08 -0700992 IPU,
993 OPU,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +0900994};
995
Hyojun Kim63da4202017-10-06 17:10:08 -0700996enum temp_type {
997 HOT = 0, /* must be zero for meta bio */
998 WARM,
999 COLD,
1000 NR_TEMP_TYPE,
1001};
1002
1003enum need_lock_type {
1004 LOCK_REQ = 0,
1005 LOCK_DONE,
1006 LOCK_RETRY,
1007};
1008
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001009enum cp_reason_type {
1010 CP_NO_NEEDED,
1011 CP_NON_REGULAR,
1012 CP_HARDLINK,
1013 CP_SB_NEED_CP,
1014 CP_WRONG_PINO,
1015 CP_NO_SPC_ROLL,
1016 CP_NODE_NEED_CP,
1017 CP_FASTBOOT_MODE,
1018 CP_SPEC_LOG_NUM,
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001019 CP_RECOVER_DIR,
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001020};
1021
Hyojun Kim63da4202017-10-06 17:10:08 -07001022enum iostat_type {
1023 APP_DIRECT_IO, /* app direct IOs */
1024 APP_BUFFERED_IO, /* app buffered IOs */
1025 APP_WRITE_IO, /* app write IOs */
1026 APP_MAPPED_IO, /* app mapped IOs */
1027 FS_DATA_IO, /* data IOs from kworker/fsync/reclaimer */
1028 FS_NODE_IO, /* node IOs from kworker/fsync/reclaimer */
1029 FS_META_IO, /* meta IOs from kworker/reclaimer */
1030 FS_GC_DATA_IO, /* data IOs from forground gc */
1031 FS_GC_NODE_IO, /* node IOs from forground gc */
1032 FS_CP_DATA_IO, /* data IOs from checkpoint */
1033 FS_CP_NODE_IO, /* node IOs from checkpoint */
1034 FS_CP_META_IO, /* meta IOs from checkpoint */
1035 FS_DISCARD, /* discard */
1036 NR_IO_TYPE,
1037};
1038
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001039struct f2fs_io_info {
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001040 struct f2fs_sb_info *sbi; /* f2fs_sb_info pointer */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001041 nid_t ino; /* inode number */
Gu Zheng7e8f2302013-12-20 18:17:49 +08001042 enum page_type type; /* contains DATA/NODE/META/META_FLUSH */
Hyojun Kim63da4202017-10-06 17:10:08 -07001043 enum temp_type temp; /* contains HOT/WARM/COLD */
Mike Christie04d328d2016-06-05 14:31:55 -05001044 int op; /* contains REQ_OP_ */
Hyojun Kim63da4202017-10-06 17:10:08 -07001045 int op_flags; /* req_flag_bits */
Chao Yu7a9d7542016-02-22 18:36:38 +08001046 block_t new_blkaddr; /* new block address to be written */
Chao Yu28bc1062016-02-06 14:40:34 +08001047 block_t old_blkaddr; /* old block address before Cow */
Jaegeuk Kim05ca3632015-04-23 14:38:15 -07001048 struct page *page; /* page to be written */
Jaegeuk Kim4375a332015-04-23 12:04:33 -07001049 struct page *encrypted_page; /* encrypted page */
Hyojun Kim63da4202017-10-06 17:10:08 -07001050 struct list_head list; /* serialize IOs */
1051 bool submitted; /* indicate IO submission */
1052 int need_lock; /* indicate we need to lock cp_rwsem */
1053 bool in_list; /* indicate fio is in io_list */
Chao Yuf1dc33c2019-04-15 15:26:31 +08001054 bool is_por; /* indicate IO is from recovery or not */
Chao Yu34880e02018-05-28 23:47:18 +08001055 bool retry; /* need to reallocate block address */
Hyojun Kim63da4202017-10-06 17:10:08 -07001056 enum iostat_type io_type; /* io type */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001057 struct writeback_control *io_wbc; /* writeback control */
Chao Yu207991d2019-02-19 16:15:29 +08001058 struct bio **bio; /* bio for ipu */
1059 sector_t *last_block; /* last block number in bio */
Chao Yu3c743262018-07-17 00:02:17 +08001060 unsigned char version; /* version of the node */
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001061};
1062
Hyojun Kim63da4202017-10-06 17:10:08 -07001063#define is_read_io(rw) ((rw) == READ)
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +09001064struct f2fs_bio_info {
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001065 struct f2fs_sb_info *sbi; /* f2fs superblock */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +09001066 struct bio *bio; /* bios to merge */
1067 sector_t last_block_in_bio; /* last block number */
Jaegeuk Kim458e6192013-12-11 13:54:01 +09001068 struct f2fs_io_info fio; /* store buffered io info. */
Chao Yudf0f8dc2014-03-22 14:57:23 +08001069 struct rw_semaphore io_rwsem; /* blocking op for bio */
Hyojun Kim63da4202017-10-06 17:10:08 -07001070 spinlock_t io_lock; /* serialize DATA/NODE IOs */
1071 struct list_head io_list; /* track fios */
1072};
1073
1074#define FDEV(i) (sbi->devs[i])
1075#define RDEV(i) (raw_super->devs[i])
1076struct f2fs_dev_info {
1077 struct block_device *bdev;
1078 char path[MAX_PATH_LEN];
1079 unsigned int total_segments;
1080 block_t start_blk;
1081 block_t end_blk;
1082#ifdef CONFIG_BLK_DEV_ZONED
Damien Le Moal4c0b3682019-03-16 09:13:07 +09001083 unsigned int nr_blkz; /* Total number of zones */
1084 unsigned long *blkz_seq; /* Bitmap indicating sequential zones */
Hyojun Kim63da4202017-10-06 17:10:08 -07001085#endif
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +09001086};
1087
Chao Yuc227f912015-12-16 13:09:20 +08001088enum inode_type {
1089 DIR_INODE, /* for dirty dir inode */
1090 FILE_INODE, /* for dirty regular/symlink inode */
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001091 DIRTY_META, /* for all dirtied inode metadata */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001092 ATOMIC_FILE, /* for all atomic files */
Chao Yuc227f912015-12-16 13:09:20 +08001093 NR_INODE_TYPE,
1094};
1095
Chao Yu67298802014-11-18 11:18:36 +08001096/* for inner inode cache management */
1097struct inode_management {
1098 struct radix_tree_root ino_root; /* ino entry array */
1099 spinlock_t ino_lock; /* for ino entry lock */
1100 struct list_head ino_list; /* inode list head */
1101 unsigned long ino_num; /* number of entries */
1102};
1103
Chao Yucaf00472015-01-28 17:48:42 +08001104/* For s_flag in struct f2fs_sb_info */
1105enum {
1106 SBI_IS_DIRTY, /* dirty flag for checkpoint */
1107 SBI_IS_CLOSE, /* specify unmounting */
1108 SBI_NEED_FSCK, /* need fsck.f2fs to fix */
1109 SBI_POR_DOING, /* recovery is doing or not */
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07001110 SBI_NEED_SB_WRITE, /* need to recover superblock */
Jaegeuk Kimbbf156f2016-08-29 18:23:45 -07001111 SBI_NEED_CP, /* need to checkpoint */
Jaegeuk Kimc92b7c72018-06-21 13:46:23 -07001112 SBI_IS_SHUTDOWN, /* shutdown by ioctl */
Chao Yu118e4c92018-08-22 17:11:05 +08001113 SBI_IS_RECOVERED, /* recovered orphan/data */
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -07001114 SBI_CP_DISABLED, /* CP was disabled last mount */
Jaegeuk Kimf2cb9192019-01-24 17:48:38 -08001115 SBI_CP_DISABLED_QUICK, /* CP was disabled quickly */
Chao Yud8312722018-09-20 20:05:00 +08001116 SBI_QUOTA_NEED_FLUSH, /* need to flush quota info in CP */
1117 SBI_QUOTA_SKIP_FLUSH, /* skip flushing quota in current CP */
1118 SBI_QUOTA_NEED_REPAIR, /* quota file may be corrupted */
Qiuyang Sun20042e32019-06-05 11:33:25 +08001119 SBI_IS_RESIZEFS, /* resizefs is in process */
Chao Yucaf00472015-01-28 17:48:42 +08001120};
1121
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08001122enum {
1123 CP_TIME,
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08001124 REQ_TIME,
Sahitya Tummalafeb1b252018-09-19 14:18:47 +05301125 DISCARD_TIME,
1126 GC_TIME,
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -07001127 DISABLE_TIME,
Jaegeuk Kimb842f2d2019-01-14 10:42:11 -08001128 UMOUNT_DISCARD_TIMEOUT,
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08001129 MAX_TIME,
1130};
1131
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001132enum {
Jaegeuk Kim0390d832018-05-07 14:22:40 -07001133 GC_NORMAL,
1134 GC_IDLE_CB,
1135 GC_IDLE_GREEDY,
1136 GC_URGENT,
1137};
1138
1139enum {
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001140 WHINT_MODE_OFF, /* not pass down write hints */
1141 WHINT_MODE_USER, /* try to pass down hints given by users */
1142 WHINT_MODE_FS, /* pass down hints with F2FS policy */
1143};
1144
1145enum {
1146 ALLOC_MODE_DEFAULT, /* stay default */
1147 ALLOC_MODE_REUSE, /* reuse segments as much as possible */
1148};
1149
1150enum fsync_mode {
1151 FSYNC_MODE_POSIX, /* fsync follows posix semantics */
1152 FSYNC_MODE_STRICT, /* fsync behaves in line with ext4 */
Jaegeuk Kim0c296e32018-05-24 13:57:26 -07001153 FSYNC_MODE_NOBARRIER, /* fsync behaves nobarrier based on posix */
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001154};
1155
Chandan Rajendra3ce5fa32018-12-12 15:20:12 +05301156#ifdef CONFIG_FS_ENCRYPTION
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001157#define DUMMY_ENCRYPTION_ENABLED(sbi) \
1158 (unlikely(F2FS_OPTION(sbi).test_dummy_encryption))
1159#else
1160#define DUMMY_ENCRYPTION_ENABLED(sbi) (0)
1161#endif
1162
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001163struct f2fs_sb_info {
1164 struct super_block *sb; /* pointer to VFS super block */
Jaegeuk Kim5e176d52013-06-28 12:47:01 +09001165 struct proc_dir_entry *s_proc; /* proc entry */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001166 struct f2fs_super_block *raw_super; /* raw super block pointer */
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001167 struct rw_semaphore sb_lock; /* lock for raw super block */
Chao Yue8240f62015-12-15 17:19:26 +08001168 int valid_super_block; /* valid super block no */
Chao Yufadb2fb2016-09-20 10:29:47 +08001169 unsigned long s_flag; /* flags for sbi */
Jaegeuk Kime029e962018-08-09 17:53:34 -07001170 struct mutex writepages; /* mutex for writepages() */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001171
Hyojun Kim63da4202017-10-06 17:10:08 -07001172#ifdef CONFIG_BLK_DEV_ZONED
1173 unsigned int blocks_per_blkz; /* F2FS blocks per zone */
1174 unsigned int log_blocks_per_blkz; /* log2 F2FS blocks per zone */
Jaegeuk Kimb5a7aef2016-05-04 22:05:01 -07001175#endif
Hyojun Kim63da4202017-10-06 17:10:08 -07001176
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001177 /* for node-related operations */
1178 struct f2fs_nm_info *nm_info; /* node manager */
1179 struct inode *node_inode; /* cache node blocks */
1180
1181 /* for segment-related operations */
1182 struct f2fs_sm_info *sm_info; /* segment manager */
Jaegeuk Kim1ff7bd32013-11-19 12:47:22 +09001183
1184 /* for bio operations */
Hyojun Kim63da4202017-10-06 17:10:08 -07001185 struct f2fs_bio_info *write_io[NR_PAGE_TYPE]; /* for write bios */
Chao Yubbab2dc2018-05-26 09:00:13 +08001186 /* keep migration IO order for LFS mode */
1187 struct rw_semaphore io_order_lock;
Hyojun Kim63da4202017-10-06 17:10:08 -07001188 mempool_t *write_io_dummy; /* Dummy pages */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001189
1190 /* for checkpoint */
1191 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */
Jaegeuk Kim01e15b32016-11-24 12:45:15 -08001192 int cur_cp_pack; /* remain current cp pack */
Chao Yuaaec2b12016-09-20 11:04:18 +08001193 spinlock_t cp_lock; /* for flag in ckpt */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001194 struct inode *meta_inode; /* cache meta blocks */
Jaegeuk Kim39936832012-11-22 16:21:29 +09001195 struct mutex cp_mutex; /* checkpoint procedure lock */
Jaegeuk Kimb873b792016-08-04 11:38:25 -07001196 struct rw_semaphore cp_rwsem; /* blocking FS operations */
Chao Yub3582c62014-07-03 18:58:39 +08001197 struct rw_semaphore node_write; /* locking node writes */
Hyojun Kim63da4202017-10-06 17:10:08 -07001198 struct rw_semaphore node_change; /* locking node change */
Changman Leefb51b5e2013-11-07 12:48:25 +09001199 wait_queue_head_t cp_wait;
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08001200 unsigned long last_time[MAX_TIME]; /* to store time in jiffies */
1201 long interval_time[MAX_TIME]; /* to store thresholds */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001202
Chao Yu67298802014-11-18 11:18:36 +08001203 struct inode_management im[MAX_INO_ENTRY]; /* manage inode cache */
Jaegeuk Kim6451e042014-07-25 15:47:17 -07001204
Chao Yu3d5c54a2018-08-02 23:03:19 +08001205 spinlock_t fsync_node_lock; /* for node entry lock */
1206 struct list_head fsync_node_list; /* node list head */
1207 unsigned int fsync_seg_id; /* sequence id */
1208 unsigned int fsync_node_num; /* number of node entries */
1209
Jaegeuk Kim6451e042014-07-25 15:47:17 -07001210 /* for orphan inode, use 0'th array */
Gu Zheng0d47c1a2013-12-26 18:24:19 +08001211 unsigned int max_orphans; /* max orphan inodes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001212
Chao Yuc227f912015-12-16 13:09:20 +08001213 /* for inode management */
1214 struct list_head inode_list[NR_INODE_TYPE]; /* dirty inode list */
1215 spinlock_t inode_lock[NR_INODE_TYPE]; /* for dirty inode list lock */
Chao Yu627eef42019-05-20 17:36:59 +08001216 struct mutex flush_lock; /* for flush exclusion */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001217
Chao Yu13054c52015-02-05 17:52:58 +08001218 /* for extent tree cache */
1219 struct radix_tree_root extent_tree_root;/* cache extent cache entries */
Hyojun Kim63da4202017-10-06 17:10:08 -07001220 struct mutex extent_tree_lock; /* locking extent radix tree */
Chao Yu13054c52015-02-05 17:52:58 +08001221 struct list_head extent_list; /* lru list for shrinker */
1222 spinlock_t extent_lock; /* locking extent lru list */
Jaegeuk Kim7441cce2015-12-21 19:20:15 -08001223 atomic_t total_ext_tree; /* extent tree count */
Jaegeuk Kim137d09f2015-12-31 15:02:16 -08001224 struct list_head zombie_list; /* extent zombie tree list */
Jaegeuk Kim74fd8d92015-12-21 19:25:50 -08001225 atomic_t total_zombie_tree; /* extent zombie tree count */
Chao Yu13054c52015-02-05 17:52:58 +08001226 atomic_t total_ext_node; /* extent info count */
1227
arter97e1c42042014-08-06 23:22:50 +09001228 /* basic filesystem units */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001229 unsigned int log_sectors_per_block; /* log2 sectors per block */
1230 unsigned int log_blocksize; /* log2 block size */
1231 unsigned int blocksize; /* block size */
1232 unsigned int root_ino_num; /* root inode number*/
1233 unsigned int node_ino_num; /* node inode number*/
1234 unsigned int meta_ino_num; /* meta inode number*/
1235 unsigned int log_blocks_per_seg; /* log2 blocks per segment */
1236 unsigned int blocks_per_seg; /* blocks per segment */
1237 unsigned int segs_per_sec; /* segments per section */
1238 unsigned int secs_per_zone; /* sections per zone */
1239 unsigned int total_sections; /* total section count */
Qiuyang Sun20042e32019-06-05 11:33:25 +08001240 struct mutex resize_mutex; /* for resize exclusion */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001241 unsigned int total_node_count; /* total node block count */
1242 unsigned int total_valid_node_count; /* valid node block count */
Chao Yue0afc4d2015-12-31 14:35:37 +08001243 loff_t max_file_blocks; /* max block index of file */
Jaegeuk Kimab9fa662014-02-27 20:09:05 +09001244 int dir_level; /* directory level */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001245 int readdir_ra; /* readahead inode in readdir */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001246
1247 block_t user_block_count; /* # of user blocks */
1248 block_t total_valid_block_count; /* # of valid blocks */
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07001249 block_t discard_blks; /* discard command candidats */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001250 block_t last_valid_block_count; /* for recovery */
Hyojun Kim63da4202017-10-06 17:10:08 -07001251 block_t reserved_blocks; /* configurable reserved blocks */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001252 block_t current_reserved_blocks; /* current reserved blocks */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001253
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -07001254 /* Additional tracking for no checkpoint mode */
1255 block_t unusable_block_count; /* # of blocks saved by last cp */
1256
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001257 unsigned int nquota_files; /* # of quota sysfile */
Jaegeuk Kimaf2db432019-05-29 10:58:45 -07001258 struct rw_semaphore quota_sem; /* blocking cp for flags */
Hyojun Kim63da4202017-10-06 17:10:08 -07001259
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001260 /* # of pages, see count_type */
Jaegeuk Kim725ba1a2016-10-20 19:09:57 -07001261 atomic_t nr_pages[NR_COUNT_TYPE];
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07001262 /* # of allocated blocks */
1263 struct percpu_counter alloc_valid_block_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001264
Hyojun Kim63da4202017-10-06 17:10:08 -07001265 /* writeback control */
Chao Yudeb78d42018-06-04 23:20:36 +08001266 atomic_t wb_sync_req[META]; /* count # of WB_SYNC threads */
Hyojun Kim63da4202017-10-06 17:10:08 -07001267
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07001268 /* valid inode count */
1269 struct percpu_counter total_valid_inode_count;
1270
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001271 struct f2fs_mount_info mount_opt; /* mount options */
1272
1273 /* for cleaning operations */
1274 struct mutex gc_mutex; /* mutex for GC */
1275 struct f2fs_gc_kthread *gc_thread; /* GC thread */
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09001276 unsigned int cur_victim_sec; /* current victim section num */
Jaegeuk Kim0390d832018-05-07 14:22:40 -07001277 unsigned int gc_mode; /* current GC state */
Chao Yu28bd09a2018-10-24 18:37:27 +08001278 unsigned int next_victim_seg[2]; /* next segment in victim section */
Chao Yucaf10c62018-05-07 20:28:54 +08001279 /* for skip statistic */
1280 unsigned long long skipped_atomic_files[2]; /* FG_GC and BG_GC */
Jaegeuk Kimf64b4d72018-07-25 12:11:56 +09001281 unsigned long long skipped_gc_rwsem; /* FG_GC only */
Hou Pengyang4992ba22017-02-16 12:34:31 +00001282
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001283 /* threshold for gc trials on pinned files */
1284 u64 gc_pin_file_threshold;
1285
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +09001286 /* maximum # of trials to find a victim segment for SSR and GC */
1287 unsigned int max_victim_search;
Chao Yu28bd09a2018-10-24 18:37:27 +08001288 /* migration granularity of garbage collection, unit: segment */
1289 unsigned int migration_granularity;
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +09001290
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001291 /*
1292 * for stat information.
1293 * one is for the LFS mode, and the other is for the SSR mode.
1294 */
Namjae Jeon35b09d82013-05-23 22:57:53 +09001295#ifdef CONFIG_F2FS_STAT_FS
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001296 struct f2fs_stat_info *stat_info; /* FS status information */
Chao Yud826d4a2018-09-29 18:31:27 +08001297 atomic_t meta_count[META_MAX]; /* # of meta blocks */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001298 unsigned int segment_count[2]; /* # of allocated segments */
1299 unsigned int block_count[2]; /* # of allocated blocks */
Changman Leeb9a2c252014-12-24 02:16:54 +09001300 atomic_t inplace_count; /* # of inplace update */
Chao Yu5b7ee372015-09-30 17:38:48 +08001301 atomic64_t total_hit_ext; /* # of lookup extent cache */
1302 atomic64_t read_hit_rbtree; /* # of hit rbtree extent node */
1303 atomic64_t read_hit_largest; /* # of hit largest extent node */
1304 atomic64_t read_hit_cached; /* # of hit cached extent node */
Chao Yud5e8f6c2015-07-15 17:28:53 +08001305 atomic_t inline_xattr; /* # of inline_xattr inodes */
Chao Yu03e14d52014-12-08 19:08:20 +08001306 atomic_t inline_inode; /* # of inline_data inodes */
1307 atomic_t inline_dir; /* # of inline_dentry inodes */
Hyojun Kim63da4202017-10-06 17:10:08 -07001308 atomic_t aw_cnt; /* # of atomic writes */
1309 atomic_t vw_cnt; /* # of volatile writes */
1310 atomic_t max_aw_cnt; /* max # of atomic writes */
1311 atomic_t max_vw_cnt; /* max # of volatile writes */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001312 int bg_gc; /* background gc calls */
Chao Yu0fc6da72018-09-29 18:31:28 +08001313 unsigned int io_skip_bggc; /* skip background gc for in-flight IO */
1314 unsigned int other_skip_bggc; /* skip background gc for other reasons */
Chao Yu33fbd512015-12-17 17:14:44 +08001315 unsigned int ndirty_inode[NR_INODE_TYPE]; /* # of dirty inodes */
Namjae Jeon35b09d82013-05-23 22:57:53 +09001316#endif
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001317 spinlock_t stat_lock; /* lock for stat operations */
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09001318
Hyojun Kim63da4202017-10-06 17:10:08 -07001319 /* For app/fs IO statistics */
1320 spinlock_t iostat_lock;
1321 unsigned long long write_iostat[NR_IO_TYPE];
1322 bool iostat_enable;
1323
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09001324 /* For sysfs suppport */
1325 struct kobject s_kobj;
1326 struct completion s_kobj_unregister;
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001327
1328 /* For shrinker support */
1329 struct list_head s_list;
Hyojun Kim63da4202017-10-06 17:10:08 -07001330 int s_ndevs; /* number of devices */
1331 struct f2fs_dev_info *devs; /* for device list */
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001332 unsigned int dirty_device; /* for checkpoint data flush */
1333 spinlock_t dev_lock; /* protect dirty_device */
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001334 struct mutex umount_mutex;
1335 unsigned int shrinker_run_no;
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08001336
1337 /* For write statistics */
1338 u64 sectors_written_start;
1339 u64 kbytes_written;
Keith Mok43b65732016-03-02 12:04:24 -08001340
1341 /* Reference to checksum algorithm driver via cryptoapi */
1342 struct crypto_shash *s_chksum_driver;
Chao Yu1ecc0c52016-09-23 21:30:09 +08001343
Hyojun Kim63da4202017-10-06 17:10:08 -07001344 /* Precomputed FS UUID checksum for seeding other checksums */
1345 __u32 s_chksum_seed;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001346};
1347
Chao Yucc32cf32018-11-12 00:46:46 +08001348struct f2fs_private_dio {
1349 struct inode *inode;
1350 void *orig_private;
1351 bio_end_io_t *orig_end_io;
1352 bool write;
1353};
1354
Chao Yu1ecc0c52016-09-23 21:30:09 +08001355#ifdef CONFIG_F2FS_FAULT_INJECTION
Chao Yu2f4764422018-08-22 17:17:47 +08001356#define f2fs_show_injection_info(type) \
1357 printk_ratelimited("%sF2FS-fs : inject %s in %s of %pF\n", \
1358 KERN_INFO, f2fs_fault_name[type], \
Hyojun Kim63da4202017-10-06 17:10:08 -07001359 __func__, __builtin_return_address(0))
Chao Yu1ecc0c52016-09-23 21:30:09 +08001360static inline bool time_to_inject(struct f2fs_sb_info *sbi, int type)
1361{
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001362 struct f2fs_fault_info *ffi = &F2FS_OPTION(sbi).fault_info;
Chao Yu1ecc0c52016-09-23 21:30:09 +08001363
1364 if (!ffi->inject_rate)
1365 return false;
1366
1367 if (!IS_FAULT_SET(ffi, type))
1368 return false;
1369
1370 atomic_inc(&ffi->inject_ops);
1371 if (atomic_read(&ffi->inject_ops) >= ffi->inject_rate) {
1372 atomic_set(&ffi->inject_ops, 0);
Chao Yu1ecc0c52016-09-23 21:30:09 +08001373 return true;
1374 }
1375 return false;
1376}
Arnd Bergmann33c54d52018-08-13 23:38:06 +02001377#else
1378#define f2fs_show_injection_info(type) do { } while (0)
1379static inline bool time_to_inject(struct f2fs_sb_info *sbi, int type)
1380{
1381 return false;
1382}
Chao Yu1ecc0c52016-09-23 21:30:09 +08001383#endif
1384
Damien Le Moal67894512019-03-16 09:13:06 +09001385/*
1386 * Test if the mounted volume is a multi-device volume.
1387 * - For a single regular disk volume, sbi->s_ndevs is 0.
1388 * - For a single zoned disk volume, sbi->s_ndevs is 1.
1389 * - For a multi-device volume, sbi->s_ndevs is always 2 or more.
1390 */
1391static inline bool f2fs_is_multi_device(struct f2fs_sb_info *sbi)
1392{
1393 return sbi->s_ndevs > 1;
1394}
1395
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08001396/* For write statistics. Suppose sector size is 512 bytes,
1397 * and the return value is in kbytes. s is of struct f2fs_sb_info.
1398 */
1399#define BD_PART_WRITTEN(s) \
Hyojun Kim63da4202017-10-06 17:10:08 -07001400(((u64)part_stat_read((s)->sb->s_bdev->bd_part, sectors[1]) - \
1401 (s)->sectors_written_start) >> 1)
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08001402
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08001403static inline void f2fs_update_time(struct f2fs_sb_info *sbi, int type)
1404{
Sahitya Tummalafeb1b252018-09-19 14:18:47 +05301405 unsigned long now = jiffies;
1406
1407 sbi->last_time[type] = now;
1408
1409 /* DISCARD_TIME and GC_TIME are based on REQ_TIME */
1410 if (type == REQ_TIME) {
1411 sbi->last_time[DISCARD_TIME] = now;
1412 sbi->last_time[GC_TIME] = now;
1413 }
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08001414}
1415
1416static inline bool f2fs_time_over(struct f2fs_sb_info *sbi, int type)
1417{
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001418 unsigned long interval = sbi->interval_time[type] * HZ;
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08001419
1420 return time_after(jiffies, sbi->last_time[type] + interval);
1421}
1422
Sahitya Tummalafeb1b252018-09-19 14:18:47 +05301423static inline unsigned int f2fs_time_to_wait(struct f2fs_sb_info *sbi,
1424 int type)
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08001425{
Sahitya Tummalafeb1b252018-09-19 14:18:47 +05301426 unsigned long interval = sbi->interval_time[type] * HZ;
1427 unsigned int wait_ms = 0;
1428 long delta;
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08001429
Sahitya Tummalafeb1b252018-09-19 14:18:47 +05301430 delta = (sbi->last_time[type] + interval) - jiffies;
1431 if (delta > 0)
1432 wait_ms = jiffies_to_msecs(delta);
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08001433
Sahitya Tummalafeb1b252018-09-19 14:18:47 +05301434 return wait_ms;
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08001435}
1436
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001437/*
1438 * Inline functions
1439 */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001440static inline u32 __f2fs_crc32(struct f2fs_sb_info *sbi, u32 crc,
Hyojun Kim63da4202017-10-06 17:10:08 -07001441 const void *address, unsigned int length)
1442{
1443 struct {
1444 struct shash_desc shash;
1445 char ctx[4];
1446 } desc;
1447 int err;
1448
1449 BUG_ON(crypto_shash_descsize(sbi->s_chksum_driver) != sizeof(desc.ctx));
1450
1451 desc.shash.tfm = sbi->s_chksum_driver;
1452 desc.shash.flags = 0;
1453 *(u32 *)desc.ctx = crc;
1454
1455 err = crypto_shash_update(&desc.shash, address, length);
1456 BUG_ON(err);
1457
1458 return *(u32 *)desc.ctx;
1459}
1460
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001461static inline u32 f2fs_crc32(struct f2fs_sb_info *sbi, const void *address,
1462 unsigned int length)
1463{
1464 return __f2fs_crc32(sbi, F2FS_SUPER_MAGIC, address, length);
1465}
1466
1467static inline bool f2fs_crc_valid(struct f2fs_sb_info *sbi, __u32 blk_crc,
1468 void *buf, size_t buf_size)
1469{
1470 return f2fs_crc32(sbi, buf, buf_size) == blk_crc;
1471}
1472
1473static inline u32 f2fs_chksum(struct f2fs_sb_info *sbi, u32 crc,
1474 const void *address, unsigned int length)
1475{
1476 return __f2fs_crc32(sbi, crc, address, length);
1477}
1478
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001479static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
1480{
1481 return container_of(inode, struct f2fs_inode_info, vfs_inode);
1482}
1483
1484static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
1485{
1486 return sb->s_fs_info;
1487}
1488
Jaegeuk Kim40813632014-09-02 15:31:18 -07001489static inline struct f2fs_sb_info *F2FS_I_SB(struct inode *inode)
1490{
1491 return F2FS_SB(inode->i_sb);
1492}
1493
1494static inline struct f2fs_sb_info *F2FS_M_SB(struct address_space *mapping)
1495{
1496 return F2FS_I_SB(mapping->host);
1497}
1498
1499static inline struct f2fs_sb_info *F2FS_P_SB(struct page *page)
1500{
Jaegeuk Kima66761b2019-07-01 19:15:29 -07001501 return F2FS_M_SB(page_file_mapping(page));
Jaegeuk Kim40813632014-09-02 15:31:18 -07001502}
1503
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001504static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
1505{
1506 return (struct f2fs_super_block *)(sbi->raw_super);
1507}
1508
1509static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
1510{
1511 return (struct f2fs_checkpoint *)(sbi->ckpt);
1512}
1513
Gu Zheng45590712013-07-15 17:57:38 +08001514static inline struct f2fs_node *F2FS_NODE(struct page *page)
1515{
1516 return (struct f2fs_node *)page_address(page);
1517}
1518
Jaegeuk Kim58bfaf42013-12-26 16:30:41 +09001519static inline struct f2fs_inode *F2FS_INODE(struct page *page)
1520{
1521 return &((struct f2fs_node *)page_address(page))->i;
1522}
1523
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001524static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
1525{
1526 return (struct f2fs_nm_info *)(sbi->nm_info);
1527}
1528
1529static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
1530{
1531 return (struct f2fs_sm_info *)(sbi->sm_info);
1532}
1533
1534static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
1535{
1536 return (struct sit_info *)(SM_I(sbi)->sit_info);
1537}
1538
1539static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
1540{
1541 return (struct free_segmap_info *)(SM_I(sbi)->free_info);
1542}
1543
1544static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
1545{
1546 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
1547}
1548
Gu Zheng9df27d92014-01-20 18:37:04 +08001549static inline struct address_space *META_MAPPING(struct f2fs_sb_info *sbi)
1550{
1551 return sbi->meta_inode->i_mapping;
1552}
1553
Jaegeuk Kim4ef51a82014-01-21 18:51:16 +09001554static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi)
1555{
1556 return sbi->node_inode->i_mapping;
1557}
1558
Chao Yucaf00472015-01-28 17:48:42 +08001559static inline bool is_sbi_flag_set(struct f2fs_sb_info *sbi, unsigned int type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001560{
Chao Yufadb2fb2016-09-20 10:29:47 +08001561 return test_bit(type, &sbi->s_flag);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001562}
1563
Chao Yucaf00472015-01-28 17:48:42 +08001564static inline void set_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001565{
Chao Yufadb2fb2016-09-20 10:29:47 +08001566 set_bit(type, &sbi->s_flag);
Chao Yucaf00472015-01-28 17:48:42 +08001567}
1568
1569static inline void clear_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
1570{
Chao Yufadb2fb2016-09-20 10:29:47 +08001571 clear_bit(type, &sbi->s_flag);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001572}
1573
Jaegeuk Kimd71b5562013-08-09 15:03:21 +09001574static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)
1575{
1576 return le64_to_cpu(cp->checkpoint_ver);
1577}
1578
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001579static inline unsigned long f2fs_qf_ino(struct super_block *sb, int type)
1580{
1581 if (type < F2FS_MAX_QUOTAS)
1582 return le32_to_cpu(F2FS_SB(sb)->raw_super->qf_ino[type]);
1583 return 0;
1584}
1585
Hyojun Kim63da4202017-10-06 17:10:08 -07001586static inline __u64 cur_cp_crc(struct f2fs_checkpoint *cp)
1587{
1588 size_t crc_offset = le32_to_cpu(cp->checksum_offset);
1589 return le32_to_cpu(*((__le32 *)((unsigned char *)cp + crc_offset)));
1590}
1591
Chao Yuaaec2b12016-09-20 11:04:18 +08001592static inline bool __is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001593{
1594 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
Chao Yuaaec2b12016-09-20 11:04:18 +08001595
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001596 return ckpt_flags & f;
1597}
1598
Chao Yuaaec2b12016-09-20 11:04:18 +08001599static inline bool is_set_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f)
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001600{
Chao Yuaaec2b12016-09-20 11:04:18 +08001601 return __is_set_ckpt_flags(F2FS_CKPT(sbi), f);
1602}
1603
1604static inline void __set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
1605{
1606 unsigned int ckpt_flags;
1607
1608 ckpt_flags = le32_to_cpu(cp->ckpt_flags);
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001609 ckpt_flags |= f;
1610 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
1611}
1612
Chao Yuaaec2b12016-09-20 11:04:18 +08001613static inline void set_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f)
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001614{
Hyojun Kim63da4202017-10-06 17:10:08 -07001615 unsigned long flags;
1616
1617 spin_lock_irqsave(&sbi->cp_lock, flags);
Chao Yuaaec2b12016-09-20 11:04:18 +08001618 __set_ckpt_flags(F2FS_CKPT(sbi), f);
Hyojun Kim63da4202017-10-06 17:10:08 -07001619 spin_unlock_irqrestore(&sbi->cp_lock, flags);
Chao Yuaaec2b12016-09-20 11:04:18 +08001620}
1621
1622static inline void __clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
1623{
1624 unsigned int ckpt_flags;
1625
1626 ckpt_flags = le32_to_cpu(cp->ckpt_flags);
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001627 ckpt_flags &= (~f);
1628 cp->ckpt_flags = cpu_to_le32(ckpt_flags);
1629}
1630
Chao Yuaaec2b12016-09-20 11:04:18 +08001631static inline void clear_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f)
1632{
Hyojun Kim63da4202017-10-06 17:10:08 -07001633 unsigned long flags;
1634
1635 spin_lock_irqsave(&sbi->cp_lock, flags);
Chao Yuaaec2b12016-09-20 11:04:18 +08001636 __clear_ckpt_flags(F2FS_CKPT(sbi), f);
Hyojun Kim63da4202017-10-06 17:10:08 -07001637 spin_unlock_irqrestore(&sbi->cp_lock, flags);
Chao Yuaaec2b12016-09-20 11:04:18 +08001638}
1639
Hyojun Kim63da4202017-10-06 17:10:08 -07001640static inline void disable_nat_bits(struct f2fs_sb_info *sbi, bool lock)
Jaegeuk Kim3e025742016-08-02 10:56:40 -07001641{
Hyojun Kim63da4202017-10-06 17:10:08 -07001642 unsigned long flags;
Jaegeuk Kim3e025742016-08-02 10:56:40 -07001643
Jaegeuk Kimcf1cf042018-11-27 23:28:37 -08001644 /*
1645 * In order to re-enable nat_bits we need to call fsck.f2fs by
1646 * set_sbi_flag(sbi, SBI_NEED_FSCK). But it may give huge cost,
1647 * so let's rely on regular fsck or unclean shutdown.
1648 */
Hyojun Kim63da4202017-10-06 17:10:08 -07001649
1650 if (lock)
1651 spin_lock_irqsave(&sbi->cp_lock, flags);
1652 __clear_ckpt_flags(F2FS_CKPT(sbi), CP_NAT_BITS_FLAG);
Jaegeuk Kim9248dba2018-12-13 18:38:33 -08001653 kvfree(NM_I(sbi)->nat_bits);
Hyojun Kim63da4202017-10-06 17:10:08 -07001654 NM_I(sbi)->nat_bits = NULL;
1655 if (lock)
1656 spin_unlock_irqrestore(&sbi->cp_lock, flags);
1657}
1658
1659static inline bool enabled_nat_bits(struct f2fs_sb_info *sbi,
1660 struct cp_control *cpc)
1661{
1662 bool set = is_set_ckpt_flags(sbi, CP_NAT_BITS_FLAG);
1663
1664 return (cpc) ? (cpc->reason & CP_UMOUNT) && set : set;
Jaegeuk Kim3e025742016-08-02 10:56:40 -07001665}
1666
Gu Zhenge4795562013-09-27 18:08:30 +08001667static inline void f2fs_lock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001668{
Jaegeuk Kimb873b792016-08-04 11:38:25 -07001669 down_read(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001670}
1671
Hyojun Kim63da4202017-10-06 17:10:08 -07001672static inline int f2fs_trylock_op(struct f2fs_sb_info *sbi)
1673{
1674 return down_read_trylock(&sbi->cp_rwsem);
1675}
1676
Gu Zhenge4795562013-09-27 18:08:30 +08001677static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001678{
Jaegeuk Kimb873b792016-08-04 11:38:25 -07001679 up_read(&sbi->cp_rwsem);
Jaegeuk Kim39936832012-11-22 16:21:29 +09001680}
1681
Gu Zhenge4795562013-09-27 18:08:30 +08001682static inline void f2fs_lock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +09001683{
Jaegeuk Kimb873b792016-08-04 11:38:25 -07001684 down_write(&sbi->cp_rwsem);
Jaegeuk Kim39936832012-11-22 16:21:29 +09001685}
1686
Gu Zhenge4795562013-09-27 18:08:30 +08001687static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi)
Jaegeuk Kim39936832012-11-22 16:21:29 +09001688{
Jaegeuk Kimb873b792016-08-04 11:38:25 -07001689 up_write(&sbi->cp_rwsem);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001690}
1691
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001692static inline int __get_cp_reason(struct f2fs_sb_info *sbi)
1693{
1694 int reason = CP_SYNC;
1695
1696 if (test_opt(sbi, FASTBOOT))
1697 reason = CP_FASTBOOT;
1698 if (is_sbi_flag_set(sbi, SBI_IS_CLOSE))
1699 reason = CP_UMOUNT;
1700 return reason;
1701}
1702
1703static inline bool __remain_node_summaries(int reason)
1704{
Hyojun Kim63da4202017-10-06 17:10:08 -07001705 return (reason & (CP_UMOUNT | CP_FASTBOOT));
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001706}
1707
1708static inline bool __exist_node_summaries(struct f2fs_sb_info *sbi)
1709{
Chao Yuaaec2b12016-09-20 11:04:18 +08001710 return (is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG) ||
1711 is_set_ckpt_flags(sbi, CP_FASTBOOT_FLAG));
Jaegeuk Kim119ee912015-01-29 11:45:33 -08001712}
1713
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001714/*
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001715 * Check whether the inode has blocks or not
1716 */
1717static inline int F2FS_HAS_BLOCKS(struct inode *inode)
1718{
Hyojun Kim63da4202017-10-06 17:10:08 -07001719 block_t xattr_block = F2FS_I(inode)->i_xattr_nid ? 1 : 0;
1720
1721 return (inode->i_blocks >> F2FS_LOG_SECTORS_PER_BLOCK) > xattr_block;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001722}
1723
Chao Yu4bc8e9b2014-03-17 16:35:06 +08001724static inline bool f2fs_has_xattr_block(unsigned int ofs)
1725{
1726 return ofs == XATTR_NODE_OFFSET;
1727}
1728
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001729static inline bool __allow_reserved_blocks(struct f2fs_sb_info *sbi,
Jaegeuk Kima35dc722018-04-20 23:44:59 -07001730 struct inode *inode, bool cap)
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001731{
1732 if (!inode)
1733 return true;
1734 if (!test_opt(sbi, RESERVE_ROOT))
1735 return false;
1736 if (IS_NOQUOTA(inode))
1737 return true;
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001738 if (uid_eq(F2FS_OPTION(sbi).s_resuid, current_fsuid()))
1739 return true;
1740 if (!gid_eq(F2FS_OPTION(sbi).s_resgid, GLOBAL_ROOT_GID) &&
1741 in_group_p(F2FS_OPTION(sbi).s_resgid))
1742 return true;
Jaegeuk Kima35dc722018-04-20 23:44:59 -07001743 if (cap && capable(CAP_SYS_RESOURCE))
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001744 return true;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001745 return false;
1746}
1747
Hyojun Kim63da4202017-10-06 17:10:08 -07001748static inline void f2fs_i_blocks_write(struct inode *, block_t, bool, bool);
1749static inline int inc_valid_block_count(struct f2fs_sb_info *sbi,
Chao Yu46008c62016-05-09 19:56:30 +08001750 struct inode *inode, blkcnt_t *count)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001751{
Hyojun Kim63da4202017-10-06 17:10:08 -07001752 blkcnt_t diff = 0, release = 0;
1753 block_t avail_user_block_count;
1754 int ret;
1755
1756 ret = dquot_reserve_block(inode, *count);
1757 if (ret)
1758 return ret;
Jaegeuk Kimdd11a5d2016-07-19 19:20:11 -07001759
Hyojun Kim63da4202017-10-06 17:10:08 -07001760 if (time_to_inject(sbi, FAULT_BLOCK)) {
1761 f2fs_show_injection_info(FAULT_BLOCK);
1762 release = *count;
1763 goto enospc;
1764 }
Arnd Bergmann33c54d52018-08-13 23:38:06 +02001765
Jaegeuk Kimdd11a5d2016-07-19 19:20:11 -07001766 /*
1767 * let's increase this in prior to actual block count change in order
1768 * for f2fs_sync_file to avoid data races when deciding checkpoint.
1769 */
1770 percpu_counter_add(&sbi->alloc_valid_block_count, (*count));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001771
1772 spin_lock(&sbi->stat_lock);
Jaegeuk Kim2555a2d2016-06-30 19:02:06 -07001773 sbi->total_valid_block_count += (block_t)(*count);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001774 avail_user_block_count = sbi->user_block_count -
1775 sbi->current_reserved_blocks;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001776
Jaegeuk Kima35dc722018-04-20 23:44:59 -07001777 if (!__allow_reserved_blocks(sbi, inode, true))
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001778 avail_user_block_count -= F2FS_OPTION(sbi).root_reserved_blocks;
Daniel Rosenbergafe0f982019-05-29 17:49:05 -07001779 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
1780 if (avail_user_block_count > sbi->unusable_block_count)
1781 avail_user_block_count -= sbi->unusable_block_count;
1782 else
1783 avail_user_block_count = 0;
1784 }
Hyojun Kim63da4202017-10-06 17:10:08 -07001785 if (unlikely(sbi->total_valid_block_count > avail_user_block_count)) {
1786 diff = sbi->total_valid_block_count - avail_user_block_count;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001787 if (diff > *count)
1788 diff = *count;
Jaegeuk Kimdd11a5d2016-07-19 19:20:11 -07001789 *count -= diff;
Hyojun Kim63da4202017-10-06 17:10:08 -07001790 release = diff;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08001791 sbi->total_valid_block_count -= diff;
Chao Yu46008c62016-05-09 19:56:30 +08001792 if (!*count) {
1793 spin_unlock(&sbi->stat_lock);
Hyojun Kim63da4202017-10-06 17:10:08 -07001794 goto enospc;
Chao Yu46008c62016-05-09 19:56:30 +08001795 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001796 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001797 spin_unlock(&sbi->stat_lock);
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07001798
Daniel Rosenberg6b1b1a42018-07-09 20:32:42 -07001799 if (unlikely(release)) {
1800 percpu_counter_sub(&sbi->alloc_valid_block_count, release);
Hyojun Kim63da4202017-10-06 17:10:08 -07001801 dquot_release_reservation_block(inode, release);
Daniel Rosenberg6b1b1a42018-07-09 20:32:42 -07001802 }
Hyojun Kim63da4202017-10-06 17:10:08 -07001803 f2fs_i_blocks_write(inode, *count, true, true);
1804 return 0;
1805
1806enospc:
Daniel Rosenberg6b1b1a42018-07-09 20:32:42 -07001807 percpu_counter_sub(&sbi->alloc_valid_block_count, release);
Hyojun Kim63da4202017-10-06 17:10:08 -07001808 dquot_release_reservation_block(inode, release);
1809 return -ENOSPC;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001810}
1811
Joe Perchesa0d68632019-06-18 17:48:42 +08001812__printf(2, 3)
1813void f2fs_printk(struct f2fs_sb_info *sbi, const char *fmt, ...);
1814
1815#define f2fs_err(sbi, fmt, ...) \
1816 f2fs_printk(sbi, KERN_ERR fmt, ##__VA_ARGS__)
1817#define f2fs_warn(sbi, fmt, ...) \
1818 f2fs_printk(sbi, KERN_WARNING fmt, ##__VA_ARGS__)
1819#define f2fs_notice(sbi, fmt, ...) \
1820 f2fs_printk(sbi, KERN_NOTICE fmt, ##__VA_ARGS__)
1821#define f2fs_info(sbi, fmt, ...) \
1822 f2fs_printk(sbi, KERN_INFO fmt, ##__VA_ARGS__)
1823#define f2fs_debug(sbi, fmt, ...) \
1824 f2fs_printk(sbi, KERN_DEBUG fmt, ##__VA_ARGS__)
1825
Gu Zhengda19b0d2013-11-19 18:03:27 +08001826static inline void dec_valid_block_count(struct f2fs_sb_info *sbi,
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001827 struct inode *inode,
Hyojun Kim63da4202017-10-06 17:10:08 -07001828 block_t count)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001829{
Hyojun Kim63da4202017-10-06 17:10:08 -07001830 blkcnt_t sectors = count << F2FS_LOG_SECTORS_PER_BLOCK;
1831
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001832 spin_lock(&sbi->stat_lock);
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07001833 f2fs_bug_on(sbi, sbi->total_valid_block_count < (block_t) count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001834 sbi->total_valid_block_count -= (block_t)count;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001835 if (sbi->reserved_blocks &&
1836 sbi->current_reserved_blocks < sbi->reserved_blocks)
1837 sbi->current_reserved_blocks = min(sbi->reserved_blocks,
1838 sbi->current_reserved_blocks + count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001839 spin_unlock(&sbi->stat_lock);
Chao Yu87241512019-04-15 15:28:30 +08001840 if (unlikely(inode->i_blocks < sectors)) {
Joe Perchesa0d68632019-06-18 17:48:42 +08001841 f2fs_warn(sbi, "Inconsistent i_blocks, ino:%lu, iblocks:%llu, sectors:%llu",
1842 inode->i_ino,
1843 (unsigned long long)inode->i_blocks,
1844 (unsigned long long)sectors);
Chao Yu87241512019-04-15 15:28:30 +08001845 set_sbi_flag(sbi, SBI_NEED_FSCK);
1846 return;
1847 }
Hyojun Kim63da4202017-10-06 17:10:08 -07001848 f2fs_i_blocks_write(inode, count, false, true);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001849}
1850
1851static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
1852{
Jaegeuk Kim725ba1a2016-10-20 19:09:57 -07001853 atomic_inc(&sbi->nr_pages[count_type]);
Chao Yu7c4abcb2016-08-18 17:46:14 +08001854
Chao Yu6dda4642019-01-10 16:40:12 +08001855 if (count_type == F2FS_DIRTY_DENTS ||
1856 count_type == F2FS_DIRTY_NODES ||
1857 count_type == F2FS_DIRTY_META ||
1858 count_type == F2FS_DIRTY_QDATA ||
1859 count_type == F2FS_DIRTY_IMETA)
1860 set_sbi_flag(sbi, SBI_IS_DIRTY);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001861}
1862
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001863static inline void inode_inc_dirty_pages(struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001864{
Jaegeuk Kima43e1c42016-12-02 15:11:32 -08001865 atomic_inc(&F2FS_I(inode)->dirty_pages);
Chao Yuc227f912015-12-16 13:09:20 +08001866 inc_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ?
1867 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001868 if (IS_NOQUOTA(inode))
1869 inc_page_count(F2FS_I_SB(inode), F2FS_DIRTY_QDATA);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001870}
1871
1872static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
1873{
Jaegeuk Kim725ba1a2016-10-20 19:09:57 -07001874 atomic_dec(&sbi->nr_pages[count_type]);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001875}
1876
Jaegeuk Kima7ffdbe2014-09-12 15:53:45 -07001877static inline void inode_dec_dirty_pages(struct inode *inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001878{
Chao Yu5ac9f362015-06-29 18:14:10 +08001879 if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
1880 !S_ISLNK(inode->i_mode))
Jaegeuk Kim1fe54f92014-02-07 10:00:06 +09001881 return;
1882
Jaegeuk Kima43e1c42016-12-02 15:11:32 -08001883 atomic_dec(&F2FS_I(inode)->dirty_pages);
Chao Yuc227f912015-12-16 13:09:20 +08001884 dec_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ?
1885 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08001886 if (IS_NOQUOTA(inode))
1887 dec_page_count(F2FS_I_SB(inode), F2FS_DIRTY_QDATA);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001888}
1889
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001890static inline s64 get_pages(struct f2fs_sb_info *sbi, int count_type)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001891{
Jaegeuk Kim725ba1a2016-10-20 19:09:57 -07001892 return atomic_read(&sbi->nr_pages[count_type]);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001893}
1894
Jaegeuk Kima43e1c42016-12-02 15:11:32 -08001895static inline int get_dirty_pages(struct inode *inode)
Jaegeuk Kimf8b2c1f2014-03-18 12:33:06 +09001896{
Jaegeuk Kima43e1c42016-12-02 15:11:32 -08001897 return atomic_read(&F2FS_I(inode)->dirty_pages);
Jaegeuk Kimf8b2c1f2014-03-18 12:33:06 +09001898}
1899
Namjae Jeon5ac206c2013-02-02 23:52:59 +09001900static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
1901{
Chao Yu3519e3f2015-12-01 11:56:52 +08001902 unsigned int pages_per_sec = sbi->segs_per_sec * sbi->blocks_per_seg;
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001903 unsigned int segs = (get_pages(sbi, block_type) + pages_per_sec - 1) >>
1904 sbi->log_blocks_per_seg;
1905
1906 return segs / sbi->segs_per_sec;
Namjae Jeon5ac206c2013-02-02 23:52:59 +09001907}
1908
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001909static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
1910{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +09001911 return sbi->total_valid_block_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001912}
1913
Yunlei Hef83a2582016-08-18 21:01:18 +08001914static inline block_t discard_blocks(struct f2fs_sb_info *sbi)
1915{
1916 return sbi->discard_blks;
1917}
1918
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001919static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
1920{
1921 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1922
1923 /* return NAT or SIT bitmap */
1924 if (flag == NAT_BITMAP)
1925 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
1926 else if (flag == SIT_BITMAP)
1927 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
1928
1929 return 0;
1930}
1931
Wanpeng Li55141482015-02-26 07:57:20 +08001932static inline block_t __cp_payload(struct f2fs_sb_info *sbi)
1933{
1934 return le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload);
1935}
1936
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001937static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
1938{
1939 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Changman Lee1dbe4152014-05-12 12:27:43 +09001940 int offset;
1941
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001942 if (is_set_ckpt_flags(sbi, CP_LARGE_NAT_BITMAP_FLAG)) {
1943 offset = (flag == SIT_BITMAP) ?
1944 le32_to_cpu(ckpt->nat_ver_bitmap_bytesize) : 0;
Chao Yu1b728c72019-04-22 17:33:53 +08001945 /*
1946 * if large_nat_bitmap feature is enabled, leave checksum
1947 * protection for all nat/sit bitmaps.
1948 */
1949 return &ckpt->sit_nat_version_bitmap + offset + sizeof(__le32);
Jaegeuk Kimd9197652018-01-05 10:44:52 -08001950 }
1951
Wanpeng Li55141482015-02-26 07:57:20 +08001952 if (__cp_payload(sbi) > 0) {
Changman Lee1dbe4152014-05-12 12:27:43 +09001953 if (flag == NAT_BITMAP)
1954 return &ckpt->sit_nat_version_bitmap;
1955 else
Jaegeuk Kim65b85cc2014-07-30 17:25:54 -07001956 return (unsigned char *)ckpt + F2FS_BLKSIZE;
Changman Lee1dbe4152014-05-12 12:27:43 +09001957 } else {
1958 offset = (flag == NAT_BITMAP) ?
Jaegeuk Kim25ca9232012-11-28 16:12:41 +09001959 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
Changman Lee1dbe4152014-05-12 12:27:43 +09001960 return &ckpt->sit_nat_version_bitmap + offset;
1961 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001962}
1963
1964static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
1965{
Jaegeuk Kim01e15b32016-11-24 12:45:15 -08001966 block_t start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001967
Jaegeuk Kim01e15b32016-11-24 12:45:15 -08001968 if (sbi->cur_cp_pack == 2)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001969 start_addr += sbi->blocks_per_seg;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001970 return start_addr;
1971}
1972
Jaegeuk Kim01e15b32016-11-24 12:45:15 -08001973static inline block_t __start_cp_next_addr(struct f2fs_sb_info *sbi)
1974{
1975 block_t start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
1976
1977 if (sbi->cur_cp_pack == 1)
1978 start_addr += sbi->blocks_per_seg;
1979 return start_addr;
1980}
1981
1982static inline void __set_cp_next_pack(struct f2fs_sb_info *sbi)
1983{
1984 sbi->cur_cp_pack = (sbi->cur_cp_pack == 1) ? 2 : 1;
1985}
1986
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001987static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
1988{
1989 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
1990}
1991
Hyojun Kim63da4202017-10-06 17:10:08 -07001992static inline int inc_valid_node_count(struct f2fs_sb_info *sbi,
1993 struct inode *inode, bool is_inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09001994{
1995 block_t valid_block_count;
Daniel Rosenbergafe0f982019-05-29 17:49:05 -07001996 unsigned int valid_node_count, user_block_count;
Chao Yud8312722018-09-20 20:05:00 +08001997 int err;
Hyojun Kim63da4202017-10-06 17:10:08 -07001998
Chao Yud8312722018-09-20 20:05:00 +08001999 if (is_inode) {
2000 if (inode) {
2001 err = dquot_alloc_inode(inode);
2002 if (err)
2003 return err;
2004 }
2005 } else {
2006 err = dquot_reserve_block(inode, 1);
2007 if (err)
2008 return err;
Hyojun Kim63da4202017-10-06 17:10:08 -07002009 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002010
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002011 if (time_to_inject(sbi, FAULT_BLOCK)) {
2012 f2fs_show_injection_info(FAULT_BLOCK);
2013 goto enospc;
2014 }
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002015
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002016 spin_lock(&sbi->stat_lock);
2017
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002018 valid_block_count = sbi->total_valid_block_count +
2019 sbi->current_reserved_blocks + 1;
2020
Jaegeuk Kima35dc722018-04-20 23:44:59 -07002021 if (!__allow_reserved_blocks(sbi, inode, false))
Jaegeuk Kimd9197652018-01-05 10:44:52 -08002022 valid_block_count += F2FS_OPTION(sbi).root_reserved_blocks;
Daniel Rosenbergafe0f982019-05-29 17:49:05 -07002023 user_block_count = sbi->user_block_count;
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -07002024 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
Daniel Rosenbergafe0f982019-05-29 17:49:05 -07002025 user_block_count -= sbi->unusable_block_count;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002026
Daniel Rosenbergafe0f982019-05-29 17:49:05 -07002027 if (unlikely(valid_block_count > user_block_count)) {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002028 spin_unlock(&sbi->stat_lock);
Hyojun Kim63da4202017-10-06 17:10:08 -07002029 goto enospc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002030 }
2031
Gu Zhengef86d702013-11-19 18:03:38 +08002032 valid_node_count = sbi->total_valid_node_count + 1;
Chao Yucfb271d2013-12-05 17:15:22 +08002033 if (unlikely(valid_node_count > sbi->total_node_count)) {
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002034 spin_unlock(&sbi->stat_lock);
Hyojun Kim63da4202017-10-06 17:10:08 -07002035 goto enospc;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002036 }
2037
Gu Zhengef86d702013-11-19 18:03:38 +08002038 sbi->total_valid_node_count++;
2039 sbi->total_valid_block_count++;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002040 spin_unlock(&sbi->stat_lock);
2041
Hyojun Kim63da4202017-10-06 17:10:08 -07002042 if (inode) {
2043 if (is_inode)
2044 f2fs_mark_inode_dirty_sync(inode, true);
2045 else
2046 f2fs_i_blocks_write(inode, 1, true, true);
2047 }
2048
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07002049 percpu_counter_inc(&sbi->alloc_valid_block_count);
Hyojun Kim63da4202017-10-06 17:10:08 -07002050 return 0;
2051
2052enospc:
Chao Yud8312722018-09-20 20:05:00 +08002053 if (is_inode) {
2054 if (inode)
2055 dquot_free_inode(inode);
2056 } else {
Hyojun Kim63da4202017-10-06 17:10:08 -07002057 dquot_release_reservation_block(inode, 1);
Chao Yud8312722018-09-20 20:05:00 +08002058 }
Hyojun Kim63da4202017-10-06 17:10:08 -07002059 return -ENOSPC;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002060}
2061
2062static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
Hyojun Kim63da4202017-10-06 17:10:08 -07002063 struct inode *inode, bool is_inode)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002064{
2065 spin_lock(&sbi->stat_lock);
2066
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07002067 f2fs_bug_on(sbi, !sbi->total_valid_block_count);
2068 f2fs_bug_on(sbi, !sbi->total_valid_node_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002069
Gu Zhengef86d702013-11-19 18:03:38 +08002070 sbi->total_valid_node_count--;
2071 sbi->total_valid_block_count--;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002072 if (sbi->reserved_blocks &&
2073 sbi->current_reserved_blocks < sbi->reserved_blocks)
2074 sbi->current_reserved_blocks++;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002075
2076 spin_unlock(&sbi->stat_lock);
Hyojun Kim63da4202017-10-06 17:10:08 -07002077
Chao Yu30bdf9b2019-04-15 15:28:31 +08002078 if (is_inode) {
Chao Yud8312722018-09-20 20:05:00 +08002079 dquot_free_inode(inode);
Chao Yu30bdf9b2019-04-15 15:28:31 +08002080 } else {
2081 if (unlikely(inode->i_blocks == 0)) {
Joe Perchesa0d68632019-06-18 17:48:42 +08002082 f2fs_warn(sbi, "Inconsistent i_blocks, ino:%lu, iblocks:%llu",
2083 inode->i_ino,
2084 (unsigned long long)inode->i_blocks);
Chao Yu30bdf9b2019-04-15 15:28:31 +08002085 set_sbi_flag(sbi, SBI_NEED_FSCK);
2086 return;
2087 }
Hyojun Kim63da4202017-10-06 17:10:08 -07002088 f2fs_i_blocks_write(inode, 1, false, true);
Chao Yu30bdf9b2019-04-15 15:28:31 +08002089 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002090}
2091
2092static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
2093{
Jaegeuk Kim8b8343f2014-02-24 13:00:13 +09002094 return sbi->total_valid_node_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002095}
2096
2097static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
2098{
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07002099 percpu_counter_inc(&sbi->total_valid_inode_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002100}
2101
Jaegeuk Kim0e802202013-11-26 16:36:20 +09002102static inline void dec_valid_inode_count(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002103{
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07002104 percpu_counter_dec(&sbi->total_valid_inode_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002105}
2106
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07002107static inline s64 valid_inode_count(struct f2fs_sb_info *sbi)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002108{
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07002109 return percpu_counter_sum_positive(&sbi->total_valid_inode_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002110}
2111
Jaegeuk Kima56c7c62015-10-09 15:11:38 -07002112static inline struct page *f2fs_grab_cache_page(struct address_space *mapping,
2113 pgoff_t index, bool for_write)
2114{
Chao Yu33af8982018-07-27 18:15:14 +08002115 struct page *page;
Hyojun Kim63da4202017-10-06 17:10:08 -07002116
Arnd Bergmann33c54d52018-08-13 23:38:06 +02002117 if (IS_ENABLED(CONFIG_F2FS_FAULT_INJECTION)) {
2118 if (!for_write)
2119 page = find_get_page_flags(mapping, index,
2120 FGP_LOCK | FGP_ACCESSED);
2121 else
2122 page = find_lock_page(mapping, index);
2123 if (page)
2124 return page;
Jaegeuk Kimc41f3cc32016-04-29 16:17:09 -07002125
Arnd Bergmann33c54d52018-08-13 23:38:06 +02002126 if (time_to_inject(F2FS_M_SB(mapping), FAULT_PAGE_ALLOC)) {
2127 f2fs_show_injection_info(FAULT_PAGE_ALLOC);
2128 return NULL;
2129 }
Hyojun Kim63da4202017-10-06 17:10:08 -07002130 }
Arnd Bergmann33c54d52018-08-13 23:38:06 +02002131
Jaegeuk Kima56c7c62015-10-09 15:11:38 -07002132 if (!for_write)
2133 return grab_cache_page(mapping, index);
2134 return grab_cache_page_write_begin(mapping, index, AOP_FLAG_NOFS);
2135}
2136
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002137static inline struct page *f2fs_pagecache_get_page(
2138 struct address_space *mapping, pgoff_t index,
2139 int fgp_flags, gfp_t gfp_mask)
2140{
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002141 if (time_to_inject(F2FS_M_SB(mapping), FAULT_PAGE_GET)) {
2142 f2fs_show_injection_info(FAULT_PAGE_GET);
2143 return NULL;
2144 }
Arnd Bergmann33c54d52018-08-13 23:38:06 +02002145
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002146 return pagecache_get_page(mapping, index, fgp_flags, gfp_mask);
2147}
2148
Jaegeuk Kim6e2c64a2015-10-07 12:28:41 -07002149static inline void f2fs_copy_page(struct page *src, struct page *dst)
2150{
2151 char *src_kaddr = kmap(src);
2152 char *dst_kaddr = kmap(dst);
2153
2154 memcpy(dst_kaddr, src_kaddr, PAGE_SIZE);
2155 kunmap(dst);
2156 kunmap(src);
2157}
2158
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002159static inline void f2fs_put_page(struct page *page, int unlock)
2160{
Jaegeuk Kim031fa8c2013-11-28 12:55:13 +09002161 if (!page)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002162 return;
2163
2164 if (unlock) {
Jaegeuk Kim9850cf42014-09-02 15:52:58 -07002165 f2fs_bug_on(F2FS_P_SB(page), !PageLocked(page));
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002166 unlock_page(page);
2167 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002168 put_page(page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002169}
2170
2171static inline void f2fs_put_dnode(struct dnode_of_data *dn)
2172{
2173 if (dn->node_page)
2174 f2fs_put_page(dn->node_page, 1);
2175 if (dn->inode_page && dn->node_page != dn->inode_page)
2176 f2fs_put_page(dn->inode_page, 0);
2177 dn->node_page = NULL;
2178 dn->inode_page = NULL;
2179}
2180
2181static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
Gu Zhenge8512d22014-03-07 18:43:28 +08002182 size_t size)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002183{
Gu Zhenge8512d22014-03-07 18:43:28 +08002184 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002185}
2186
Gu Zheng7bd59382013-10-22 14:52:26 +08002187static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep,
2188 gfp_t flags)
2189{
2190 void *entry;
Gu Zheng7bd59382013-10-22 14:52:26 +08002191
Jaegeuk Kim80c54502015-08-20 08:51:56 -07002192 entry = kmem_cache_alloc(cachep, flags);
2193 if (!entry)
2194 entry = kmem_cache_alloc(cachep, flags | __GFP_NOFAIL);
Gu Zheng7bd59382013-10-22 14:52:26 +08002195 return entry;
2196}
2197
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002198static inline struct bio *f2fs_bio_alloc(struct f2fs_sb_info *sbi,
2199 int npages, bool no_fail)
Jaegeuk Kim740432f2015-08-14 11:43:56 -07002200{
2201 struct bio *bio;
2202
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002203 if (no_fail) {
2204 /* No failure on bio allocation */
2205 bio = bio_alloc(GFP_NOIO, npages);
2206 if (!bio)
2207 bio = bio_alloc(GFP_NOIO | __GFP_NOFAIL, npages);
2208 return bio;
2209 }
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002210 if (time_to_inject(sbi, FAULT_ALLOC_BIO)) {
2211 f2fs_show_injection_info(FAULT_ALLOC_BIO);
2212 return NULL;
2213 }
Arnd Bergmann33c54d52018-08-13 23:38:06 +02002214
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002215 return bio_alloc(GFP_KERNEL, npages);
Jaegeuk Kim740432f2015-08-14 11:43:56 -07002216}
2217
Jaegeuk Kim8025d722018-10-16 10:20:53 -07002218static inline bool is_idle(struct f2fs_sb_info *sbi, int type)
2219{
Park Ju Hyung023af122019-05-14 15:36:23 +09002220 if (sbi->gc_mode == GC_URGENT)
2221 return true;
2222
Jaegeuk Kim8025d722018-10-16 10:20:53 -07002223 if (get_pages(sbi, F2FS_RD_DATA) || get_pages(sbi, F2FS_RD_NODE) ||
2224 get_pages(sbi, F2FS_RD_META) || get_pages(sbi, F2FS_WB_DATA) ||
Chao Yu504ab572018-11-12 00:55:44 +08002225 get_pages(sbi, F2FS_WB_CP_DATA) ||
2226 get_pages(sbi, F2FS_DIO_READ) ||
Jaegeuk Kimba6adf52019-01-25 12:05:25 -08002227 get_pages(sbi, F2FS_DIO_WRITE))
Jaegeuk Kim8025d722018-10-16 10:20:53 -07002228 return false;
Jaegeuk Kimba6adf52019-01-25 12:05:25 -08002229
Sahitya Tummalafd8ff0c2019-06-06 15:08:13 +05302230 if (type != DISCARD_TIME && SM_I(sbi) && SM_I(sbi)->dcc_info &&
Jaegeuk Kimba6adf52019-01-25 12:05:25 -08002231 atomic_read(&SM_I(sbi)->dcc_info->queued_discard))
2232 return false;
2233
2234 if (SM_I(sbi) && SM_I(sbi)->fcc_info &&
2235 atomic_read(&SM_I(sbi)->fcc_info->queued_flush))
2236 return false;
2237
Jaegeuk Kim8025d722018-10-16 10:20:53 -07002238 return f2fs_time_over(sbi, type);
2239}
2240
Jaegeuk Kim9be32d72014-12-05 10:39:49 -08002241static inline void f2fs_radix_tree_insert(struct radix_tree_root *root,
2242 unsigned long index, void *item)
2243{
2244 while (radix_tree_insert(root, index, item))
2245 cond_resched();
2246}
2247
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002248#define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
2249
2250static inline bool IS_INODE(struct page *page)
2251{
Gu Zheng45590712013-07-15 17:57:38 +08002252 struct f2fs_node *p = F2FS_NODE(page);
Hyojun Kim63da4202017-10-06 17:10:08 -07002253
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002254 return RAW_IS_INODE(p);
2255}
2256
Hyojun Kim63da4202017-10-06 17:10:08 -07002257static inline int offset_in_addr(struct f2fs_inode *i)
2258{
2259 return (i->i_inline & F2FS_EXTRA_ATTR) ?
2260 (le16_to_cpu(i->i_extra_isize) / sizeof(__le32)) : 0;
2261}
2262
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002263static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
2264{
2265 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
2266}
2267
Hyojun Kim63da4202017-10-06 17:10:08 -07002268static inline int f2fs_has_extra_attr(struct inode *inode);
2269static inline block_t datablock_addr(struct inode *inode,
2270 struct page *node_page, unsigned int offset)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002271{
2272 struct f2fs_node *raw_node;
2273 __le32 *addr_array;
Hyojun Kim63da4202017-10-06 17:10:08 -07002274 int base = 0;
2275 bool is_inode = IS_INODE(node_page);
2276
Gu Zheng45590712013-07-15 17:57:38 +08002277 raw_node = F2FS_NODE(node_page);
Hyojun Kim63da4202017-10-06 17:10:08 -07002278
2279 /* from GC path only */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002280 if (is_inode) {
2281 if (!inode)
Hyojun Kim63da4202017-10-06 17:10:08 -07002282 base = offset_in_addr(&raw_node->i);
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002283 else if (f2fs_has_extra_attr(inode))
2284 base = get_extra_isize(inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07002285 }
2286
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002287 addr_array = blkaddr_in_node(raw_node);
Hyojun Kim63da4202017-10-06 17:10:08 -07002288 return le32_to_cpu(addr_array[base + offset]);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002289}
2290
2291static inline int f2fs_test_bit(unsigned int nr, char *addr)
2292{
2293 int mask;
2294
2295 addr += (nr >> 3);
2296 mask = 1 << (7 - (nr & 0x07));
2297 return mask & *addr;
2298}
2299
Jaegeuk Kima66cdd92015-04-30 22:37:50 -07002300static inline void f2fs_set_bit(unsigned int nr, char *addr)
2301{
2302 int mask;
2303
2304 addr += (nr >> 3);
2305 mask = 1 << (7 - (nr & 0x07));
2306 *addr |= mask;
2307}
2308
2309static inline void f2fs_clear_bit(unsigned int nr, char *addr)
2310{
2311 int mask;
2312
2313 addr += (nr >> 3);
2314 mask = 1 << (7 - (nr & 0x07));
2315 *addr &= ~mask;
2316}
2317
Gu Zheng52aca072014-10-20 17:45:51 +08002318static inline int f2fs_test_and_set_bit(unsigned int nr, char *addr)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002319{
2320 int mask;
2321 int ret;
2322
2323 addr += (nr >> 3);
2324 mask = 1 << (7 - (nr & 0x07));
2325 ret = mask & *addr;
2326 *addr |= mask;
2327 return ret;
2328}
2329
Gu Zheng52aca072014-10-20 17:45:51 +08002330static inline int f2fs_test_and_clear_bit(unsigned int nr, char *addr)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002331{
2332 int mask;
2333 int ret;
2334
2335 addr += (nr >> 3);
2336 mask = 1 << (7 - (nr & 0x07));
2337 ret = mask & *addr;
2338 *addr &= ~mask;
2339 return ret;
2340}
2341
Gu Zhengc6ac4c02014-10-20 17:45:50 +08002342static inline void f2fs_change_bit(unsigned int nr, char *addr)
2343{
2344 int mask;
2345
2346 addr += (nr >> 3);
2347 mask = 1 << (7 - (nr & 0x07));
2348 *addr ^= mask;
2349}
2350
Chao Yu9bafde62018-04-03 15:08:17 +08002351/*
Eric Biggerse96ee432019-06-04 22:59:04 -07002352 * On-disk inode flags (f2fs_inode::i_flags)
Chao Yu9bafde62018-04-03 15:08:17 +08002353 */
Chao Yu9bafde62018-04-03 15:08:17 +08002354#define F2FS_SYNC_FL 0x00000008 /* Synchronous updates */
2355#define F2FS_IMMUTABLE_FL 0x00000010 /* Immutable file */
2356#define F2FS_APPEND_FL 0x00000020 /* writes to file may only append */
2357#define F2FS_NODUMP_FL 0x00000040 /* do not dump file */
2358#define F2FS_NOATIME_FL 0x00000080 /* do not update atime */
Chao Yu9bafde62018-04-03 15:08:17 +08002359#define F2FS_INDEX_FL 0x00001000 /* hash-indexed directory */
Chao Yu9bafde62018-04-03 15:08:17 +08002360#define F2FS_DIRSYNC_FL 0x00010000 /* dirsync behaviour (directories only) */
Chao Yu9bafde62018-04-03 15:08:17 +08002361#define F2FS_PROJINHERIT_FL 0x20000000 /* Create with parents projid */
Chao Yu9bafde62018-04-03 15:08:17 +08002362
2363/* Flags that should be inherited by new inodes from their parent. */
Eric Biggerse96ee432019-06-04 22:59:04 -07002364#define F2FS_FL_INHERITED (F2FS_SYNC_FL | F2FS_NODUMP_FL | F2FS_NOATIME_FL | \
2365 F2FS_DIRSYNC_FL | F2FS_PROJINHERIT_FL)
Chao Yu9bafde62018-04-03 15:08:17 +08002366
2367/* Flags that are appropriate for regular files (all but dir-specific ones). */
Wang Shilonga45bfa72019-06-13 16:29:53 +09002368#define F2FS_REG_FLMASK (~(F2FS_DIRSYNC_FL | F2FS_PROJINHERIT_FL))
Chao Yu9bafde62018-04-03 15:08:17 +08002369
2370/* Flags that are appropriate for non-directories/regular files. */
2371#define F2FS_OTHER_FLMASK (F2FS_NODUMP_FL | F2FS_NOATIME_FL)
Hyojun Kim63da4202017-10-06 17:10:08 -07002372
2373static inline __u32 f2fs_mask_flags(umode_t mode, __u32 flags)
2374{
2375 if (S_ISDIR(mode))
2376 return flags;
2377 else if (S_ISREG(mode))
2378 return flags & F2FS_REG_FLMASK;
2379 else
2380 return flags & F2FS_OTHER_FLMASK;
2381}
2382
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002383/* used for f2fs_inode_info->flags */
2384enum {
2385 FI_NEW_INODE, /* indicate newly allocated inode */
Jaegeuk Kimb3783872013-06-10 09:17:01 +09002386 FI_DIRTY_INODE, /* indicate inode is dirty or not */
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07002387 FI_AUTO_RECOVER, /* indicate inode is recoverable */
Jaegeuk Kimed57c272014-04-15 11:19:28 +09002388 FI_DIRTY_DIR, /* indicate directory has dirty pages */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002389 FI_INC_LINK, /* need to increment i_nlink */
2390 FI_ACL_MODE, /* indicate acl mode */
2391 FI_NO_ALLOC, /* should not allocate any blocks */
Jaegeuk Kimc9b63bd2015-06-23 10:36:08 -07002392 FI_FREE_NID, /* free allocated nide */
Jaegeuk Kimc11abd12013-11-19 10:41:54 +09002393 FI_NO_EXTENT, /* not to use the extent cache */
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002394 FI_INLINE_XATTR, /* used for inline xattr */
Huajun Li1001b342013-11-10 23:13:16 +08002395 FI_INLINE_DATA, /* used for inline data*/
Chao Yu34d67de2014-09-24 18:15:19 +08002396 FI_INLINE_DENTRY, /* used for inline dentry */
Jaegeuk Kimfff04f92014-07-25 07:40:59 -07002397 FI_APPEND_WRITE, /* inode has appended data */
2398 FI_UPDATE_WRITE, /* inode has in-place-update data */
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002399 FI_NEED_IPU, /* used for ipu per file */
2400 FI_ATOMIC_FILE, /* indicate atomic file */
Hyojun Kim63da4202017-10-06 17:10:08 -07002401 FI_ATOMIC_COMMIT, /* indicate the state of atomical committing */
Jaegeuk Kim02a13352014-10-06 16:11:16 -07002402 FI_VOLATILE_FILE, /* indicate volatile file */
Jaegeuk Kim3c6c2be2015-03-17 17:16:35 -07002403 FI_FIRST_BLOCK_WRITTEN, /* indicate #0 data block was written */
Jaegeuk Kim1e843712014-12-09 06:08:59 -08002404 FI_DROP_CACHE, /* drop dirty page cache */
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07002405 FI_DATA_EXIST, /* indicate data exists */
Jaegeuk Kim510022a2015-03-30 15:07:16 -07002406 FI_INLINE_DOTS, /* indicate inline dot dentries */
Chao Yud323d002015-10-27 09:53:45 +08002407 FI_DO_DEFRAG, /* indicate defragment is running */
Chao Yuc227f912015-12-16 13:09:20 +08002408 FI_DIRTY_FILE, /* indicate regular/symlink has dirty pages */
Hyojun Kim63da4202017-10-06 17:10:08 -07002409 FI_NO_PREALLOC, /* indicate skipped preallocated blocks */
2410 FI_HOT_DATA, /* indicate file is hot */
2411 FI_EXTRA_ATTR, /* indicate file has extra attribute */
2412 FI_PROJ_INHERIT, /* indicate file inherits projectid */
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002413 FI_PIN_FILE, /* indicate file should not be gced */
Chao Yucaf10c62018-05-07 20:28:54 +08002414 FI_ATOMIC_REVOKE_REQUEST, /* request to drop atomic data */
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002415};
2416
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002417static inline void __mark_inode_dirty_flag(struct inode *inode,
2418 int flag, bool set)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002419{
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002420 switch (flag) {
2421 case FI_INLINE_XATTR:
2422 case FI_INLINE_DATA:
2423 case FI_INLINE_DENTRY:
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002424 case FI_NEW_INODE:
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002425 if (set)
2426 return;
Jaegeuk Kimb1a81bb2018-11-26 14:20:32 -08002427 /* fall through */
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002428 case FI_DATA_EXIST:
2429 case FI_INLINE_DOTS:
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002430 case FI_PIN_FILE:
Hyojun Kim63da4202017-10-06 17:10:08 -07002431 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002432 }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002433}
2434
Jaegeuk Kim91942322016-05-20 10:13:22 -07002435static inline void set_inode_flag(struct inode *inode, int flag)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002436{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002437 if (!test_bit(flag, &F2FS_I(inode)->flags))
2438 set_bit(flag, &F2FS_I(inode)->flags);
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002439 __mark_inode_dirty_flag(inode, flag, true);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002440}
2441
Jaegeuk Kim91942322016-05-20 10:13:22 -07002442static inline int is_inode_flag_set(struct inode *inode, int flag)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002443{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002444 return test_bit(flag, &F2FS_I(inode)->flags);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002445}
2446
Jaegeuk Kim91942322016-05-20 10:13:22 -07002447static inline void clear_inode_flag(struct inode *inode, int flag)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002448{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002449 if (test_bit(flag, &F2FS_I(inode)->flags))
2450 clear_bit(flag, &F2FS_I(inode)->flags);
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002451 __mark_inode_dirty_flag(inode, flag, false);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002452}
2453
Jaegeuk Kim91942322016-05-20 10:13:22 -07002454static inline void set_acl_inode(struct inode *inode, umode_t mode)
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002455{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002456 F2FS_I(inode)->i_acl_mode = mode;
2457 set_inode_flag(inode, FI_ACL_MODE);
Hyojun Kim63da4202017-10-06 17:10:08 -07002458 f2fs_mark_inode_dirty_sync(inode, false);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002459}
2460
Jaegeuk Kima1961242016-05-20 09:43:20 -07002461static inline void f2fs_i_links_write(struct inode *inode, bool inc)
2462{
2463 if (inc)
2464 inc_nlink(inode);
2465 else
2466 drop_nlink(inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07002467 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kima1961242016-05-20 09:43:20 -07002468}
2469
Jaegeuk Kim8edd03c2016-05-20 09:26:06 -07002470static inline void f2fs_i_blocks_write(struct inode *inode,
Hyojun Kim63da4202017-10-06 17:10:08 -07002471 block_t diff, bool add, bool claim)
Jaegeuk Kim8edd03c2016-05-20 09:26:06 -07002472{
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07002473 bool clean = !is_inode_flag_set(inode, FI_DIRTY_INODE);
2474 bool recover = is_inode_flag_set(inode, FI_AUTO_RECOVER);
2475
Hyojun Kim63da4202017-10-06 17:10:08 -07002476 /* add = 1, claim = 1 should be dquot_reserve_block in pair */
2477 if (add) {
2478 if (claim)
2479 dquot_claim_block(inode, diff);
2480 else
2481 dquot_alloc_block_nofail(inode, diff);
2482 } else {
2483 dquot_free_block(inode, diff);
2484 }
2485
2486 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07002487 if (clean || recover)
2488 set_inode_flag(inode, FI_AUTO_RECOVER);
Jaegeuk Kim8edd03c2016-05-20 09:26:06 -07002489}
2490
Jaegeuk Kimfc9581c2016-05-20 09:22:03 -07002491static inline void f2fs_i_size_write(struct inode *inode, loff_t i_size)
2492{
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07002493 bool clean = !is_inode_flag_set(inode, FI_DIRTY_INODE);
2494 bool recover = is_inode_flag_set(inode, FI_AUTO_RECOVER);
2495
Jaegeuk Kimfc9581c2016-05-20 09:22:03 -07002496 if (i_size_read(inode) == i_size)
2497 return;
2498
2499 i_size_write(inode, i_size);
Hyojun Kim63da4202017-10-06 17:10:08 -07002500 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07002501 if (clean || recover)
2502 set_inode_flag(inode, FI_AUTO_RECOVER);
2503}
2504
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002505static inline void f2fs_i_depth_write(struct inode *inode, unsigned int depth)
2506{
2507 F2FS_I(inode)->i_current_depth = depth;
Hyojun Kim63da4202017-10-06 17:10:08 -07002508 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002509}
2510
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002511static inline void f2fs_i_gc_failures_write(struct inode *inode,
2512 unsigned int count)
2513{
Chao Yucaf10c62018-05-07 20:28:54 +08002514 F2FS_I(inode)->i_gc_failures[GC_FAILURE_PIN] = count;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002515 f2fs_mark_inode_dirty_sync(inode, true);
2516}
2517
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002518static inline void f2fs_i_xnid_write(struct inode *inode, nid_t xnid)
2519{
2520 F2FS_I(inode)->i_xattr_nid = xnid;
Hyojun Kim63da4202017-10-06 17:10:08 -07002521 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002522}
2523
2524static inline void f2fs_i_pino_write(struct inode *inode, nid_t pino)
2525{
2526 F2FS_I(inode)->i_pino = pino;
Hyojun Kim63da4202017-10-06 17:10:08 -07002527 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002528}
2529
Jaegeuk Kim91942322016-05-20 10:13:22 -07002530static inline void get_inline_info(struct inode *inode, struct f2fs_inode *ri)
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002531{
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002532 struct f2fs_inode_info *fi = F2FS_I(inode);
2533
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002534 if (ri->i_inline & F2FS_INLINE_XATTR)
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002535 set_bit(FI_INLINE_XATTR, &fi->flags);
Huajun Li1001b342013-11-10 23:13:16 +08002536 if (ri->i_inline & F2FS_INLINE_DATA)
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002537 set_bit(FI_INLINE_DATA, &fi->flags);
Chao Yu34d67de2014-09-24 18:15:19 +08002538 if (ri->i_inline & F2FS_INLINE_DENTRY)
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002539 set_bit(FI_INLINE_DENTRY, &fi->flags);
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07002540 if (ri->i_inline & F2FS_DATA_EXIST)
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002541 set_bit(FI_DATA_EXIST, &fi->flags);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07002542 if (ri->i_inline & F2FS_INLINE_DOTS)
Jaegeuk Kim205b9822016-05-20 09:52:20 -07002543 set_bit(FI_INLINE_DOTS, &fi->flags);
Hyojun Kim63da4202017-10-06 17:10:08 -07002544 if (ri->i_inline & F2FS_EXTRA_ATTR)
2545 set_bit(FI_EXTRA_ATTR, &fi->flags);
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002546 if (ri->i_inline & F2FS_PIN_FILE)
2547 set_bit(FI_PIN_FILE, &fi->flags);
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002548}
2549
Jaegeuk Kim91942322016-05-20 10:13:22 -07002550static inline void set_raw_inline(struct inode *inode, struct f2fs_inode *ri)
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002551{
2552 ri->i_inline = 0;
2553
Jaegeuk Kim91942322016-05-20 10:13:22 -07002554 if (is_inode_flag_set(inode, FI_INLINE_XATTR))
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002555 ri->i_inline |= F2FS_INLINE_XATTR;
Jaegeuk Kim91942322016-05-20 10:13:22 -07002556 if (is_inode_flag_set(inode, FI_INLINE_DATA))
Huajun Li1001b342013-11-10 23:13:16 +08002557 ri->i_inline |= F2FS_INLINE_DATA;
Jaegeuk Kim91942322016-05-20 10:13:22 -07002558 if (is_inode_flag_set(inode, FI_INLINE_DENTRY))
Chao Yu34d67de2014-09-24 18:15:19 +08002559 ri->i_inline |= F2FS_INLINE_DENTRY;
Jaegeuk Kim91942322016-05-20 10:13:22 -07002560 if (is_inode_flag_set(inode, FI_DATA_EXIST))
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07002561 ri->i_inline |= F2FS_DATA_EXIST;
Jaegeuk Kim91942322016-05-20 10:13:22 -07002562 if (is_inode_flag_set(inode, FI_INLINE_DOTS))
Jaegeuk Kim510022a2015-03-30 15:07:16 -07002563 ri->i_inline |= F2FS_INLINE_DOTS;
Hyojun Kim63da4202017-10-06 17:10:08 -07002564 if (is_inode_flag_set(inode, FI_EXTRA_ATTR))
2565 ri->i_inline |= F2FS_EXTRA_ATTR;
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002566 if (is_inode_flag_set(inode, FI_PIN_FILE))
2567 ri->i_inline |= F2FS_PIN_FILE;
Hyojun Kim63da4202017-10-06 17:10:08 -07002568}
2569
2570static inline int f2fs_has_extra_attr(struct inode *inode)
2571{
2572 return is_inode_flag_set(inode, FI_EXTRA_ATTR);
Jaegeuk Kim444c5802013-08-08 15:16:22 +09002573}
2574
Chao Yu987c7c32014-03-12 15:59:03 +08002575static inline int f2fs_has_inline_xattr(struct inode *inode)
2576{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002577 return is_inode_flag_set(inode, FI_INLINE_XATTR);
Chao Yu987c7c32014-03-12 15:59:03 +08002578}
2579
Chao Yuaeb829e2019-03-25 21:08:19 +08002580#define ALIGN_DOWN(x, a) __ALIGN_KERNEL((x) - ((a) - 1), (a))
2581
Chao Yu81ca7352016-01-26 15:39:35 +08002582static inline unsigned int addrs_per_inode(struct inode *inode)
Jaegeuk Kimde936532013-08-12 21:08:03 +09002583{
Chao Yuaeb829e2019-03-25 21:08:19 +08002584 unsigned int addrs = CUR_ADDRS_PER_INODE(inode) -
2585 get_inline_xattr_addrs(inode);
2586 return ALIGN_DOWN(addrs, 1);
2587}
2588
2589static inline unsigned int addrs_per_block(struct inode *inode)
2590{
2591 return ALIGN_DOWN(DEF_ADDRS_PER_BLOCK, 1);
Jaegeuk Kimde936532013-08-12 21:08:03 +09002592}
2593
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002594static inline void *inline_xattr_addr(struct inode *inode, struct page *page)
Jaegeuk Kim65985d92013-08-14 21:57:27 +09002595{
Chao Yu695fd1e2014-02-27 19:52:21 +08002596 struct f2fs_inode *ri = F2FS_INODE(page);
Hyojun Kim63da4202017-10-06 17:10:08 -07002597
Jaegeuk Kim65985d92013-08-14 21:57:27 +09002598 return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE -
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002599 get_inline_xattr_addrs(inode)]);
Jaegeuk Kim65985d92013-08-14 21:57:27 +09002600}
2601
2602static inline int inline_xattr_size(struct inode *inode)
2603{
Chao Yu0278c722019-04-11 11:48:10 +08002604 if (f2fs_has_inline_xattr(inode))
2605 return get_inline_xattr_addrs(inode) * sizeof(__le32);
2606 return 0;
Jaegeuk Kim65985d92013-08-14 21:57:27 +09002607}
2608
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09002609static inline int f2fs_has_inline_data(struct inode *inode)
2610{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002611 return is_inode_flag_set(inode, FI_INLINE_DATA);
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09002612}
2613
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07002614static inline int f2fs_exist_data(struct inode *inode)
2615{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002616 return is_inode_flag_set(inode, FI_DATA_EXIST);
Jaegeuk Kimb3d208f2014-10-23 19:48:09 -07002617}
2618
Jaegeuk Kim510022a2015-03-30 15:07:16 -07002619static inline int f2fs_has_inline_dots(struct inode *inode)
2620{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002621 return is_inode_flag_set(inode, FI_INLINE_DOTS);
Jaegeuk Kim510022a2015-03-30 15:07:16 -07002622}
2623
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002624static inline bool f2fs_is_pinned_file(struct inode *inode)
2625{
2626 return is_inode_flag_set(inode, FI_PIN_FILE);
2627}
2628
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002629static inline bool f2fs_is_atomic_file(struct inode *inode)
2630{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002631 return is_inode_flag_set(inode, FI_ATOMIC_FILE);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07002632}
2633
Hyojun Kim63da4202017-10-06 17:10:08 -07002634static inline bool f2fs_is_commit_atomic_write(struct inode *inode)
2635{
2636 return is_inode_flag_set(inode, FI_ATOMIC_COMMIT);
2637}
2638
Jaegeuk Kim02a13352014-10-06 16:11:16 -07002639static inline bool f2fs_is_volatile_file(struct inode *inode)
2640{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002641 return is_inode_flag_set(inode, FI_VOLATILE_FILE);
Jaegeuk Kim02a13352014-10-06 16:11:16 -07002642}
2643
Jaegeuk Kim3c6c2be2015-03-17 17:16:35 -07002644static inline bool f2fs_is_first_block_written(struct inode *inode)
2645{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002646 return is_inode_flag_set(inode, FI_FIRST_BLOCK_WRITTEN);
Jaegeuk Kim3c6c2be2015-03-17 17:16:35 -07002647}
2648
Jaegeuk Kim1e843712014-12-09 06:08:59 -08002649static inline bool f2fs_is_drop_cache(struct inode *inode)
2650{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002651 return is_inode_flag_set(inode, FI_DROP_CACHE);
Jaegeuk Kim1e843712014-12-09 06:08:59 -08002652}
2653
Hyojun Kim63da4202017-10-06 17:10:08 -07002654static inline void *inline_data_addr(struct inode *inode, struct page *page)
Huajun Li1001b342013-11-10 23:13:16 +08002655{
Chao Yu695fd1e2014-02-27 19:52:21 +08002656 struct f2fs_inode *ri = F2FS_INODE(page);
Hyojun Kim63da4202017-10-06 17:10:08 -07002657 int extra_size = get_extra_isize(inode);
2658
2659 return (void *)&(ri->i_addr[extra_size + DEF_INLINE_RESERVED_SIZE]);
Huajun Li1001b342013-11-10 23:13:16 +08002660}
2661
Chao Yu34d67de2014-09-24 18:15:19 +08002662static inline int f2fs_has_inline_dentry(struct inode *inode)
2663{
Jaegeuk Kim91942322016-05-20 10:13:22 -07002664 return is_inode_flag_set(inode, FI_INLINE_DENTRY);
Chao Yu34d67de2014-09-24 18:15:19 +08002665}
2666
Jaegeuk Kimb5492af72015-04-20 13:44:41 -07002667static inline int is_file(struct inode *inode, int type)
2668{
2669 return F2FS_I(inode)->i_advise & type;
2670}
2671
2672static inline void set_file(struct inode *inode, int type)
2673{
2674 F2FS_I(inode)->i_advise |= type;
Hyojun Kim63da4202017-10-06 17:10:08 -07002675 f2fs_mark_inode_dirty_sync(inode, true);
Jaegeuk Kimb5492af72015-04-20 13:44:41 -07002676}
2677
2678static inline void clear_file(struct inode *inode, int type)
2679{
2680 F2FS_I(inode)->i_advise &= ~type;
Hyojun Kim63da4202017-10-06 17:10:08 -07002681 f2fs_mark_inode_dirty_sync(inode, true);
2682}
2683
2684static inline bool f2fs_skip_inode_update(struct inode *inode, int dsync)
2685{
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002686 bool ret;
2687
Hyojun Kim63da4202017-10-06 17:10:08 -07002688 if (dsync) {
2689 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07002690
2691 spin_lock(&sbi->inode_lock[DIRTY_META]);
2692 ret = list_empty(&F2FS_I(inode)->gdirty_list);
2693 spin_unlock(&sbi->inode_lock[DIRTY_META]);
2694 return ret;
2695 }
2696 if (!is_inode_flag_set(inode, FI_AUTO_RECOVER) ||
2697 file_keep_isize(inode) ||
Jaegeuk Kimd9197652018-01-05 10:44:52 -08002698 i_size_read(inode) & ~PAGE_MASK)
2699 return false;
2700
2701 if (!timespec_equal(F2FS_I(inode)->i_disk_time, &inode->i_atime))
2702 return false;
2703 if (!timespec_equal(F2FS_I(inode)->i_disk_time + 1, &inode->i_ctime))
2704 return false;
2705 if (!timespec_equal(F2FS_I(inode)->i_disk_time + 2, &inode->i_mtime))
2706 return false;
2707 if (!timespec_equal(F2FS_I(inode)->i_disk_time + 3,
2708 &F2FS_I(inode)->i_crtime))
Hyojun Kim63da4202017-10-06 17:10:08 -07002709 return false;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002710
2711 down_read(&F2FS_I(inode)->i_sem);
2712 ret = F2FS_I(inode)->last_disk_size == i_size_read(inode);
2713 up_read(&F2FS_I(inode)->i_sem);
2714
2715 return ret;
Jaegeuk Kimb5492af72015-04-20 13:44:41 -07002716}
2717
Jaegeuk Kimd9197652018-01-05 10:44:52 -08002718static inline bool f2fs_readonly(struct super_block *sb)
Jaegeuk Kim77888c12013-05-20 20:28:47 +09002719{
2720 return sb->s_flags & MS_RDONLY;
2721}
2722
Jaegeuk Kim1e968fd2014-08-11 16:49:25 -07002723static inline bool f2fs_cp_error(struct f2fs_sb_info *sbi)
2724{
Chao Yuaaec2b12016-09-20 11:04:18 +08002725 return is_set_ckpt_flags(sbi, CP_ERROR_FLAG);
Jaegeuk Kim1e968fd2014-08-11 16:49:25 -07002726}
2727
Jaegeuk Kimeaa693f2015-04-26 00:15:29 -07002728static inline bool is_dot_dotdot(const struct qstr *str)
2729{
2730 if (str->len == 1 && str->name[0] == '.')
2731 return true;
2732
2733 if (str->len == 2 && str->name[0] == '.' && str->name[1] == '.')
2734 return true;
2735
2736 return false;
2737}
2738
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07002739static inline bool f2fs_may_extent_tree(struct inode *inode)
2740{
Sahitya Tummalabe83ade2018-12-18 16:39:24 +05302741 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
2742
2743 if (!test_opt(sbi, EXTENT_CACHE) ||
Jaegeuk Kim91942322016-05-20 10:13:22 -07002744 is_inode_flag_set(inode, FI_NO_EXTENT))
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07002745 return false;
2746
Sahitya Tummalabe83ade2018-12-18 16:39:24 +05302747 /*
2748 * for recovered files during mount do not create extents
2749 * if shrinker is not registered.
2750 */
2751 if (list_empty(&sbi->s_list))
2752 return false;
2753
Al Viro886f56f2015-12-05 03:56:06 -05002754 return S_ISREG(inode->i_mode);
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07002755}
2756
Hyojun Kim63da4202017-10-06 17:10:08 -07002757static inline void *kvmalloc(size_t size, gfp_t flags)
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002758{
2759 void *ret;
2760
2761 ret = kmalloc(size, flags | __GFP_NOWARN);
2762 if (!ret)
2763 ret = __vmalloc(size, flags, PAGE_KERNEL);
2764 return ret;
2765}
2766
Jaegeuk Kim9248dba2018-12-13 18:38:33 -08002767static inline void *f2fs_kmalloc(struct f2fs_sb_info *sbi,
2768 size_t size, gfp_t flags)
2769{
2770 void *ret;
2771
2772 if (time_to_inject(sbi, FAULT_KMALLOC)) {
2773 f2fs_show_injection_info(FAULT_KMALLOC);
2774 return NULL;
2775 }
2776
2777 ret = kmalloc(size, flags);
2778 if (ret)
2779 return ret;
2780
2781 return kvmalloc(size, flags);
2782}
2783
Hyojun Kim63da4202017-10-06 17:10:08 -07002784static inline void *kvzalloc(size_t size, gfp_t flags)
Jaegeuk Kim39307a82015-09-22 13:50:47 -07002785{
2786 void *ret;
2787
2788 ret = kzalloc(size, flags | __GFP_NOWARN);
2789 if (!ret)
2790 ret = __vmalloc(size, flags | __GFP_ZERO, PAGE_KERNEL);
2791 return ret;
2792}
2793
Hyojun Kim63da4202017-10-06 17:10:08 -07002794static inline int wbc_to_write_flags(struct writeback_control *wbc)
2795{
2796 if (wbc->sync_mode == WB_SYNC_ALL)
2797 return REQ_SYNC;
2798 else if (wbc->for_kupdate || wbc->for_background)
2799 return 0;
2800
2801 return 0;
2802}
2803
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002804static inline void *f2fs_kzalloc(struct f2fs_sb_info *sbi,
2805 size_t size, gfp_t flags)
2806{
2807 return f2fs_kmalloc(sbi, size, flags | __GFP_ZERO);
2808}
2809
2810static inline void *f2fs_kvmalloc(struct f2fs_sb_info *sbi,
2811 size_t size, gfp_t flags)
2812{
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002813 if (time_to_inject(sbi, FAULT_KVMALLOC)) {
2814 f2fs_show_injection_info(FAULT_KVMALLOC);
2815 return NULL;
2816 }
Arnd Bergmann33c54d52018-08-13 23:38:06 +02002817
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002818 return kvmalloc(size, flags);
2819}
2820
2821static inline void *f2fs_kvzalloc(struct f2fs_sb_info *sbi,
2822 size_t size, gfp_t flags)
2823{
2824 return f2fs_kvmalloc(sbi, size, flags | __GFP_ZERO);
2825}
2826
Hyojun Kim63da4202017-10-06 17:10:08 -07002827static inline int get_extra_isize(struct inode *inode)
2828{
2829 return F2FS_I(inode)->i_extra_isize / sizeof(__le32);
2830}
2831
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08002832static inline int get_inline_xattr_addrs(struct inode *inode)
2833{
2834 return F2FS_I(inode)->i_inline_xattr_size;
2835}
2836
Chao Yu6b4d6a82018-05-30 00:20:41 +08002837#define f2fs_get_inode_mode(i) \
Jaegeuk Kim91942322016-05-20 10:13:22 -07002838 ((is_inode_flag_set(i, FI_ACL_MODE)) ? \
Christoph Hellwiga6dda0e2013-12-20 05:16:45 -08002839 (F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
2840
Hyojun Kim63da4202017-10-06 17:10:08 -07002841#define F2FS_TOTAL_EXTRA_ATTR_SIZE \
2842 (offsetof(struct f2fs_inode, i_extra_end) - \
2843 offsetof(struct f2fs_inode, i_extra_isize)) \
2844
2845#define F2FS_OLD_ATTRIBUTE_SIZE (offsetof(struct f2fs_inode, i_addr))
2846#define F2FS_FITS_IN_INODE(f2fs_inode, extra_isize, field) \
Sheng Yong12b36622019-01-14 22:05:14 +08002847 ((offsetof(typeof(*(f2fs_inode)), field) + \
Hyojun Kim63da4202017-10-06 17:10:08 -07002848 sizeof((f2fs_inode)->field)) \
Sheng Yong12b36622019-01-14 22:05:14 +08002849 <= (F2FS_OLD_ATTRIBUTE_SIZE + (extra_isize))) \
Hyojun Kim63da4202017-10-06 17:10:08 -07002850
2851static inline void f2fs_reset_iostat(struct f2fs_sb_info *sbi)
2852{
2853 int i;
2854
2855 spin_lock(&sbi->iostat_lock);
2856 for (i = 0; i < NR_IO_TYPE; i++)
2857 sbi->write_iostat[i] = 0;
2858 spin_unlock(&sbi->iostat_lock);
2859}
2860
2861static inline void f2fs_update_iostat(struct f2fs_sb_info *sbi,
2862 enum iostat_type type, unsigned long long io_bytes)
2863{
2864 if (!sbi->iostat_enable)
2865 return;
2866 spin_lock(&sbi->iostat_lock);
2867 sbi->write_iostat[type] += io_bytes;
2868
2869 if (type == APP_WRITE_IO || type == APP_DIRECT_IO)
2870 sbi->write_iostat[APP_BUFFERED_IO] =
2871 sbi->write_iostat[APP_WRITE_IO] -
2872 sbi->write_iostat[APP_DIRECT_IO];
2873 spin_unlock(&sbi->iostat_lock);
2874}
Chao Yu267378d2014-04-23 14:10:24 +08002875
Chao Yu7fc47512018-10-24 18:37:26 +08002876#define __is_large_section(sbi) ((sbi)->segs_per_sec > 1)
2877
Chao Yuf1dc33c2019-04-15 15:26:31 +08002878#define __is_meta_io(fio) (PAGE_TYPE_OF_BIO((fio)->type) == META)
Chao Yub3c869a2018-08-01 19:13:44 +08002879
Chao Yud05e8712018-06-05 17:44:11 +08002880bool f2fs_is_valid_blkaddr(struct f2fs_sb_info *sbi,
2881 block_t blkaddr, int type);
Chao Yud05e8712018-06-05 17:44:11 +08002882static inline void verify_blkaddr(struct f2fs_sb_info *sbi,
2883 block_t blkaddr, int type)
2884{
2885 if (!f2fs_is_valid_blkaddr(sbi, blkaddr, type)) {
Joe Perchesa0d68632019-06-18 17:48:42 +08002886 f2fs_err(sbi, "invalid blkaddr: %u, type: %d, run fsck to fix.",
2887 blkaddr, type);
Chao Yud05e8712018-06-05 17:44:11 +08002888 f2fs_bug_on(sbi, 1);
2889 }
2890}
2891
2892static inline bool __is_valid_data_blkaddr(block_t blkaddr)
Chao Yu158d9bb2018-05-23 22:25:08 +08002893{
2894 if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
2895 return false;
2896 return true;
2897}
2898
Chao Yuc4e07602019-03-06 17:30:59 +08002899static inline void f2fs_set_page_private(struct page *page,
2900 unsigned long data)
2901{
2902 if (PagePrivate(page))
2903 return;
2904
2905 get_page(page);
2906 SetPagePrivate(page);
2907 set_page_private(page, data);
2908}
2909
2910static inline void f2fs_clear_page_private(struct page *page)
2911{
2912 if (!PagePrivate(page))
2913 return;
2914
2915 set_page_private(page, 0);
2916 ClearPagePrivate(page);
2917 f2fs_put_page(page, 0);
2918}
2919
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002920/*
2921 * file.c
2922 */
Hyojun Kim63da4202017-10-06 17:10:08 -07002923int f2fs_sync_file(struct file *file, loff_t start, loff_t end, int datasync);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002924void f2fs_truncate_data_blocks(struct dnode_of_data *dn);
Chao Yuc6f78232019-02-02 17:33:01 +08002925int f2fs_truncate_blocks(struct inode *inode, u64 from, bool lock);
Hyojun Kim63da4202017-10-06 17:10:08 -07002926int f2fs_truncate(struct inode *inode);
2927int f2fs_getattr(struct vfsmount *mnt, struct dentry *dentry,
2928 struct kstat *stat);
2929int f2fs_setattr(struct dentry *dentry, struct iattr *attr);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002930int f2fs_truncate_hole(struct inode *inode, pgoff_t pg_start, pgoff_t pg_end);
2931void f2fs_truncate_data_blocks_range(struct dnode_of_data *dn, int count);
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002932int f2fs_precache_extents(struct inode *inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07002933long f2fs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg);
2934long f2fs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08002935int f2fs_pin_file_control(struct inode *inode, bool inc);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002936
2937/*
2938 * inode.c
2939 */
Hyojun Kim63da4202017-10-06 17:10:08 -07002940void f2fs_set_inode_flags(struct inode *inode);
2941bool f2fs_inode_chksum_verify(struct f2fs_sb_info *sbi, struct page *page);
2942void f2fs_inode_chksum_set(struct f2fs_sb_info *sbi, struct page *page);
2943struct inode *f2fs_iget(struct super_block *sb, unsigned long ino);
2944struct inode *f2fs_iget_retry(struct super_block *sb, unsigned long ino);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002945int f2fs_try_to_free_nats(struct f2fs_sb_info *sbi, int nr_shrink);
2946void f2fs_update_inode(struct inode *inode, struct page *node_page);
2947void f2fs_update_inode_page(struct inode *inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07002948int f2fs_write_inode(struct inode *inode, struct writeback_control *wbc);
2949void f2fs_evict_inode(struct inode *inode);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002950void f2fs_handle_failed_inode(struct inode *inode);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002951
2952/*
2953 * namei.c
2954 */
Chao Yu6b4d6a82018-05-30 00:20:41 +08002955int f2fs_update_extension_list(struct f2fs_sb_info *sbi, const char *name,
Jaegeuk Kimd9197652018-01-05 10:44:52 -08002956 bool hot, bool set);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09002957struct dentry *f2fs_get_parent(struct dentry *child);
2958
2959/*
2960 * dir.c
2961 */
Chao Yu6b4d6a82018-05-30 00:20:41 +08002962unsigned char f2fs_get_de_type(struct f2fs_dir_entry *de);
2963struct f2fs_dir_entry *f2fs_find_target_dentry(struct fscrypt_name *fname,
Hyojun Kim63da4202017-10-06 17:10:08 -07002964 f2fs_hash_t namehash, int *max_slots,
2965 struct f2fs_dentry_ptr *d);
2966int f2fs_fill_dentries(struct dir_context *ctx, struct f2fs_dentry_ptr *d,
2967 unsigned int start_pos, struct fscrypt_str *fstr);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002968void f2fs_do_make_empty_dir(struct inode *inode, struct inode *parent,
Hyojun Kim63da4202017-10-06 17:10:08 -07002969 struct f2fs_dentry_ptr *d);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002970struct page *f2fs_init_inode_metadata(struct inode *inode, struct inode *dir,
Hyojun Kim63da4202017-10-06 17:10:08 -07002971 const struct qstr *new_name,
2972 const struct qstr *orig_name, struct page *dpage);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002973void f2fs_update_parent_metadata(struct inode *dir, struct inode *inode,
Hyojun Kim63da4202017-10-06 17:10:08 -07002974 unsigned int current_depth);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002975int f2fs_room_for_filename(const void *bitmap, int slots, int max_slots);
Hyojun Kim63da4202017-10-06 17:10:08 -07002976void f2fs_drop_nlink(struct inode *dir, struct inode *inode);
2977struct f2fs_dir_entry *__f2fs_find_entry(struct inode *dir,
2978 struct fscrypt_name *fname, struct page **res_page);
2979struct f2fs_dir_entry *f2fs_find_entry(struct inode *dir,
2980 const struct qstr *child, struct page **res_page);
2981struct f2fs_dir_entry *f2fs_parent_dir(struct inode *dir, struct page **p);
2982ino_t f2fs_inode_by_name(struct inode *dir, const struct qstr *qstr,
2983 struct page **page);
2984void f2fs_set_link(struct inode *dir, struct f2fs_dir_entry *de,
2985 struct page *page, struct inode *inode);
2986void f2fs_update_dentry(nid_t ino, umode_t mode, struct f2fs_dentry_ptr *d,
2987 const struct qstr *name, f2fs_hash_t name_hash,
2988 unsigned int bit_pos);
2989int f2fs_add_regular_entry(struct inode *dir, const struct qstr *new_name,
2990 const struct qstr *orig_name,
2991 struct inode *inode, nid_t ino, umode_t mode);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002992int f2fs_add_dentry(struct inode *dir, struct fscrypt_name *fname,
Hyojun Kim63da4202017-10-06 17:10:08 -07002993 struct inode *inode, nid_t ino, umode_t mode);
Chao Yu6b4d6a82018-05-30 00:20:41 +08002994int f2fs_do_add_link(struct inode *dir, const struct qstr *name,
Hyojun Kim63da4202017-10-06 17:10:08 -07002995 struct inode *inode, nid_t ino, umode_t mode);
2996void f2fs_delete_entry(struct f2fs_dir_entry *dentry, struct page *page,
2997 struct inode *dir, struct inode *inode);
2998int f2fs_do_tmpfile(struct inode *inode, struct inode *dir);
2999bool f2fs_empty_dir(struct inode *dir);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003000
Al Virob7f7a5e2013-01-25 16:15:43 -05003001static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
3002{
Chao Yu6b4d6a82018-05-30 00:20:41 +08003003 return f2fs_do_add_link(d_inode(dentry->d_parent), &dentry->d_name,
Jaegeuk Kim510022a2015-03-30 15:07:16 -07003004 inode, inode->i_ino, inode->i_mode);
Al Virob7f7a5e2013-01-25 16:15:43 -05003005}
3006
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003007/*
3008 * super.c
3009 */
Hyojun Kim63da4202017-10-06 17:10:08 -07003010int f2fs_inode_dirtied(struct inode *inode, bool sync);
3011void f2fs_inode_synced(struct inode *inode);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003012int f2fs_enable_quota_files(struct f2fs_sb_info *sbi, bool rdonly);
Chao Yud8312722018-09-20 20:05:00 +08003013int f2fs_quota_sync(struct super_block *sb, int type);
Hyojun Kim63da4202017-10-06 17:10:08 -07003014void f2fs_quota_off_umount(struct super_block *sb);
3015int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover);
3016int f2fs_sync_fs(struct super_block *sb, int sync);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003017int f2fs_sanity_check_ckpt(struct f2fs_sb_info *sbi);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003018
3019/*
3020 * hash.c
3021 */
Jaegeuk Kim8daed212017-04-24 10:00:08 -07003022f2fs_hash_t f2fs_dentry_hash(const struct qstr *name_info,
3023 struct fscrypt_name *fname);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003024
3025/*
3026 * node.c
3027 */
3028struct dnode_of_data;
3029struct node_info;
3030
Chao Yu6b4d6a82018-05-30 00:20:41 +08003031int f2fs_check_nid_range(struct f2fs_sb_info *sbi, nid_t nid);
3032bool f2fs_available_free_memory(struct f2fs_sb_info *sbi, int type);
Chao Yu3d5c54a2018-08-02 23:03:19 +08003033bool f2fs_in_warm_node_list(struct f2fs_sb_info *sbi, struct page *page);
3034void f2fs_init_fsync_node_info(struct f2fs_sb_info *sbi);
3035void f2fs_del_fsync_node_entry(struct f2fs_sb_info *sbi, struct page *page);
3036void f2fs_reset_fsync_node_info(struct f2fs_sb_info *sbi);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003037int f2fs_need_dentry_mark(struct f2fs_sb_info *sbi, nid_t nid);
3038bool f2fs_is_checkpointed_node(struct f2fs_sb_info *sbi, nid_t nid);
3039bool f2fs_need_inode_block_update(struct f2fs_sb_info *sbi, nid_t ino);
Chao Yu3c743262018-07-17 00:02:17 +08003040int f2fs_get_node_info(struct f2fs_sb_info *sbi, nid_t nid,
Chao Yu6b4d6a82018-05-30 00:20:41 +08003041 struct node_info *ni);
3042pgoff_t f2fs_get_next_page_offset(struct dnode_of_data *dn, pgoff_t pgofs);
3043int f2fs_get_dnode_of_data(struct dnode_of_data *dn, pgoff_t index, int mode);
3044int f2fs_truncate_inode_blocks(struct inode *inode, pgoff_t from);
3045int f2fs_truncate_xattr_node(struct inode *inode);
Chao Yu3d5c54a2018-08-02 23:03:19 +08003046int f2fs_wait_on_node_pages_writeback(struct f2fs_sb_info *sbi,
3047 unsigned int seq_id);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003048int f2fs_remove_inode_page(struct inode *inode);
3049struct page *f2fs_new_inode_page(struct inode *inode);
3050struct page *f2fs_new_node_page(struct dnode_of_data *dn, unsigned int ofs);
3051void f2fs_ra_node_page(struct f2fs_sb_info *sbi, nid_t nid);
3052struct page *f2fs_get_node_page(struct f2fs_sb_info *sbi, pgoff_t nid);
3053struct page *f2fs_get_node_page_ra(struct page *parent, int start);
Chao Yu44344f42018-09-13 07:40:53 +08003054int f2fs_move_node_page(struct page *node_page, int gc_type);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003055int f2fs_fsync_node_pages(struct f2fs_sb_info *sbi, struct inode *inode,
Chao Yu3d5c54a2018-08-02 23:03:19 +08003056 struct writeback_control *wbc, bool atomic,
3057 unsigned int *seq_id);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003058int f2fs_sync_node_pages(struct f2fs_sb_info *sbi,
3059 struct writeback_control *wbc,
Hyojun Kim63da4202017-10-06 17:10:08 -07003060 bool do_balance, enum iostat_type io_type);
Chao Yu79939f62018-06-15 14:45:57 +08003061int f2fs_build_free_nids(struct f2fs_sb_info *sbi, bool sync, bool mount);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003062bool f2fs_alloc_nid(struct f2fs_sb_info *sbi, nid_t *nid);
3063void f2fs_alloc_nid_done(struct f2fs_sb_info *sbi, nid_t nid);
3064void f2fs_alloc_nid_failed(struct f2fs_sb_info *sbi, nid_t nid);
3065int f2fs_try_to_free_nids(struct f2fs_sb_info *sbi, int nr_shrink);
3066void f2fs_recover_inline_xattr(struct inode *inode, struct page *page);
3067int f2fs_recover_xattr_data(struct inode *inode, struct page *page);
3068int f2fs_recover_inode_page(struct f2fs_sb_info *sbi, struct page *page);
Chao Yu3c743262018-07-17 00:02:17 +08003069int f2fs_restore_node_summary(struct f2fs_sb_info *sbi,
Hyojun Kim63da4202017-10-06 17:10:08 -07003070 unsigned int segno, struct f2fs_summary_block *sum);
Jaegeuk Kim4474e2f2018-09-17 17:36:06 -07003071int f2fs_flush_nat_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003072int f2fs_build_node_manager(struct f2fs_sb_info *sbi);
3073void f2fs_destroy_node_manager(struct f2fs_sb_info *sbi);
3074int __init f2fs_create_node_manager_caches(void);
3075void f2fs_destroy_node_manager_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003076
3077/*
3078 * segment.c
3079 */
Chao Yu6b4d6a82018-05-30 00:20:41 +08003080bool f2fs_need_SSR(struct f2fs_sb_info *sbi);
3081void f2fs_register_inmem_page(struct inode *inode, struct page *page);
3082void f2fs_drop_inmem_pages_all(struct f2fs_sb_info *sbi, bool gc_failure);
3083void f2fs_drop_inmem_pages(struct inode *inode);
3084void f2fs_drop_inmem_page(struct inode *inode, struct page *page);
3085int f2fs_commit_inmem_pages(struct inode *inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07003086void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need);
3087void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003088int f2fs_issue_flush(struct f2fs_sb_info *sbi, nid_t ino);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003089int f2fs_create_flush_cmd_control(struct f2fs_sb_info *sbi);
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003090int f2fs_flush_device_cache(struct f2fs_sb_info *sbi);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003091void f2fs_destroy_flush_cmd_control(struct f2fs_sb_info *sbi, bool free);
3092void f2fs_invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr);
3093bool f2fs_is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr);
3094void f2fs_drop_discard_cmd(struct f2fs_sb_info *sbi);
3095void f2fs_stop_discard_thread(struct f2fs_sb_info *sbi);
Jaegeuk Kimb842f2d2019-01-14 10:42:11 -08003096bool f2fs_issue_discard_timeout(struct f2fs_sb_info *sbi);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003097void f2fs_clear_prefree_segments(struct f2fs_sb_info *sbi,
3098 struct cp_control *cpc);
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -07003099void f2fs_dirty_to_prefree(struct f2fs_sb_info *sbi);
Daniel Rosenberg1203e532019-05-29 17:49:06 -07003100block_t f2fs_get_unusable_blocks(struct f2fs_sb_info *sbi);
3101int f2fs_disable_cp_again(struct f2fs_sb_info *sbi, block_t unusable);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003102void f2fs_release_discard_addrs(struct f2fs_sb_info *sbi);
3103int f2fs_npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra);
Qiuyang Sun20042e32019-06-05 11:33:25 +08003104void allocate_segment_for_resize(struct f2fs_sb_info *sbi, int type,
3105 unsigned int start, unsigned int end);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003106void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi);
Hyojun Kim63da4202017-10-06 17:10:08 -07003107int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003108bool f2fs_exist_trim_candidates(struct f2fs_sb_info *sbi,
3109 struct cp_control *cpc);
3110struct page *f2fs_get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno);
3111void f2fs_update_meta_page(struct f2fs_sb_info *sbi, void *src,
3112 block_t blk_addr);
3113void f2fs_do_write_meta_page(struct f2fs_sb_info *sbi, struct page *page,
Hyojun Kim63da4202017-10-06 17:10:08 -07003114 enum iostat_type io_type);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003115void f2fs_do_write_node_page(unsigned int nid, struct f2fs_io_info *fio);
3116void f2fs_outplace_write_data(struct dnode_of_data *dn,
3117 struct f2fs_io_info *fio);
3118int f2fs_inplace_write_data(struct f2fs_io_info *fio);
3119void f2fs_do_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
Hyojun Kim63da4202017-10-06 17:10:08 -07003120 block_t old_blkaddr, block_t new_blkaddr,
3121 bool recover_curseg, bool recover_newaddr);
3122void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
3123 block_t old_addr, block_t new_addr,
3124 unsigned char version, bool recover_curseg,
3125 bool recover_newaddr);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003126void f2fs_allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
Hyojun Kim63da4202017-10-06 17:10:08 -07003127 block_t old_blkaddr, block_t *new_blkaddr,
3128 struct f2fs_summary *sum, int type,
3129 struct f2fs_io_info *fio, bool add_list);
3130void f2fs_wait_on_page_writeback(struct page *page,
Chao Yud9b3df52018-12-25 17:43:42 +08003131 enum page_type type, bool ordered, bool locked);
Jaegeuk Kim0d51cea2018-08-22 21:18:00 -07003132void f2fs_wait_on_block_writeback(struct inode *inode, block_t blkaddr);
Sahitya Tummala3d571472018-10-10 10:56:22 +05303133void f2fs_wait_on_block_writeback_range(struct inode *inode, block_t blkaddr,
3134 block_t len);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003135void f2fs_write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk);
3136void f2fs_write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk);
3137int f2fs_lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
Hyojun Kim63da4202017-10-06 17:10:08 -07003138 unsigned int val, int alloc);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003139void f2fs_flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc);
3140int f2fs_build_segment_manager(struct f2fs_sb_info *sbi);
3141void f2fs_destroy_segment_manager(struct f2fs_sb_info *sbi);
3142int __init f2fs_create_segment_manager_caches(void);
3143void f2fs_destroy_segment_manager_caches(void);
3144int f2fs_rw_hint_to_seg_type(enum rw_hint hint);
3145enum rw_hint f2fs_io_type_to_rw_hint(struct f2fs_sb_info *sbi,
3146 enum page_type type, enum temp_type temp);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003147
3148/*
3149 * checkpoint.c
3150 */
Hyojun Kim63da4202017-10-06 17:10:08 -07003151void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi, bool end_io);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003152struct page *f2fs_grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index);
3153struct page *f2fs_get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index);
Chao Yu3c743262018-07-17 00:02:17 +08003154struct page *f2fs_get_meta_page_nofail(struct f2fs_sb_info *sbi, pgoff_t index);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003155struct page *f2fs_get_tmp_page(struct f2fs_sb_info *sbi, pgoff_t index);
Chao Yud05e8712018-06-05 17:44:11 +08003156bool f2fs_is_valid_blkaddr(struct f2fs_sb_info *sbi,
3157 block_t blkaddr, int type);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003158int f2fs_ra_meta_pages(struct f2fs_sb_info *sbi, block_t start, int nrpages,
Hyojun Kim63da4202017-10-06 17:10:08 -07003159 int type, bool sync);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003160void f2fs_ra_meta_pages_cond(struct f2fs_sb_info *sbi, pgoff_t index);
3161long f2fs_sync_meta_pages(struct f2fs_sb_info *sbi, enum page_type type,
Hyojun Kim63da4202017-10-06 17:10:08 -07003162 long nr_to_write, enum iostat_type io_type);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003163void f2fs_add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type);
3164void f2fs_remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type);
3165void f2fs_release_ino_entry(struct f2fs_sb_info *sbi, bool all);
3166bool f2fs_exist_written_data(struct f2fs_sb_info *sbi, nid_t ino, int mode);
3167void f2fs_set_dirty_device(struct f2fs_sb_info *sbi, nid_t ino,
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003168 unsigned int devidx, int type);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003169bool f2fs_is_dirty_device(struct f2fs_sb_info *sbi, nid_t ino,
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003170 unsigned int devidx, int type);
Hyojun Kim63da4202017-10-06 17:10:08 -07003171int f2fs_sync_inode_meta(struct f2fs_sb_info *sbi);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003172int f2fs_acquire_orphan_inode(struct f2fs_sb_info *sbi);
3173void f2fs_release_orphan_inode(struct f2fs_sb_info *sbi);
3174void f2fs_add_orphan_inode(struct inode *inode);
3175void f2fs_remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino);
3176int f2fs_recover_orphan_inodes(struct f2fs_sb_info *sbi);
3177int f2fs_get_valid_checkpoint(struct f2fs_sb_info *sbi);
3178void f2fs_update_dirty_page(struct inode *inode, struct page *page);
3179void f2fs_remove_dirty_inode(struct inode *inode);
3180int f2fs_sync_dirty_inodes(struct f2fs_sb_info *sbi, enum inode_type type);
Chao Yu3d5c54a2018-08-02 23:03:19 +08003181void f2fs_wait_on_all_pages_writeback(struct f2fs_sb_info *sbi);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003182int f2fs_write_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc);
3183void f2fs_init_ino_entry_info(struct f2fs_sb_info *sbi);
3184int __init f2fs_create_checkpoint_caches(void);
3185void f2fs_destroy_checkpoint_caches(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003186
3187/*
3188 * data.c
3189 */
Eric Biggersc6299742018-04-18 11:09:48 -07003190int f2fs_init_post_read_processing(void);
3191void f2fs_destroy_post_read_processing(void);
Hyojun Kim63da4202017-10-06 17:10:08 -07003192void f2fs_submit_merged_write(struct f2fs_sb_info *sbi, enum page_type type);
3193void f2fs_submit_merged_write_cond(struct f2fs_sb_info *sbi,
Chao Yu39373df2018-09-27 23:41:16 +08003194 struct inode *inode, struct page *page,
3195 nid_t ino, enum page_type type);
Hyojun Kim63da4202017-10-06 17:10:08 -07003196void f2fs_flush_merged_writes(struct f2fs_sb_info *sbi);
3197int f2fs_submit_page_bio(struct f2fs_io_info *fio);
Chao Yu207991d2019-02-19 16:15:29 +08003198int f2fs_merge_page_bio(struct f2fs_io_info *fio);
Chao Yu34880e02018-05-28 23:47:18 +08003199void f2fs_submit_page_write(struct f2fs_io_info *fio);
Hyojun Kim63da4202017-10-06 17:10:08 -07003200struct block_device *f2fs_target_device(struct f2fs_sb_info *sbi,
3201 block_t blk_addr, struct bio *bio);
3202int f2fs_target_device_index(struct f2fs_sb_info *sbi, block_t blkaddr);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003203void f2fs_set_data_blkaddr(struct dnode_of_data *dn);
Hyojun Kim63da4202017-10-06 17:10:08 -07003204void f2fs_update_data_blkaddr(struct dnode_of_data *dn, block_t blkaddr);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003205int f2fs_reserve_new_blocks(struct dnode_of_data *dn, blkcnt_t count);
3206int f2fs_reserve_new_block(struct dnode_of_data *dn);
Hyojun Kim63da4202017-10-06 17:10:08 -07003207int f2fs_get_block(struct dnode_of_data *dn, pgoff_t index);
3208int f2fs_preallocate_blocks(struct kiocb *iocb, struct iov_iter *from);
3209int f2fs_reserve_block(struct dnode_of_data *dn, pgoff_t index);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003210struct page *f2fs_get_read_data_page(struct inode *inode, pgoff_t index,
Hyojun Kim63da4202017-10-06 17:10:08 -07003211 int op_flags, bool for_write);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003212struct page *f2fs_find_data_page(struct inode *inode, pgoff_t index);
3213struct page *f2fs_get_lock_data_page(struct inode *inode, pgoff_t index,
Hyojun Kim63da4202017-10-06 17:10:08 -07003214 bool for_write);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003215struct page *f2fs_get_new_data_page(struct inode *inode,
Hyojun Kim63da4202017-10-06 17:10:08 -07003216 struct page *ipage, pgoff_t index, bool new_i_size);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003217int f2fs_do_write_data_page(struct f2fs_io_info *fio);
Chao Yu6923cd12018-09-27 18:33:18 +08003218void __do_map_lock(struct f2fs_sb_info *sbi, int flag, bool lock);
Hyojun Kim63da4202017-10-06 17:10:08 -07003219int f2fs_map_blocks(struct inode *inode, struct f2fs_map_blocks *map,
3220 int create, int flag);
3221int f2fs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
3222 u64 start, u64 len);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003223bool f2fs_should_update_inplace(struct inode *inode, struct f2fs_io_info *fio);
3224bool f2fs_should_update_outplace(struct inode *inode, struct f2fs_io_info *fio);
Hyojun Kim63da4202017-10-06 17:10:08 -07003225void f2fs_invalidate_page(struct page *page, unsigned int offset,
3226 unsigned int length);
3227int f2fs_release_page(struct page *page, gfp_t wait);
Weichao Guo5b7a4872016-09-20 05:03:27 +08003228#ifdef CONFIG_MIGRATION
Hyojun Kim63da4202017-10-06 17:10:08 -07003229int f2fs_migrate_page(struct address_space *mapping, struct page *newpage,
3230 struct page *page, enum migrate_mode mode);
Weichao Guo5b7a4872016-09-20 05:03:27 +08003231#endif
Jaegeuk Kimd9197652018-01-05 10:44:52 -08003232bool f2fs_overwrite_io(struct inode *inode, loff_t pos, size_t len);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003233void f2fs_clear_radix_tree_dirty_tag(struct page *page);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003234
3235/*
3236 * gc.c
3237 */
Chao Yu6b4d6a82018-05-30 00:20:41 +08003238int f2fs_start_gc_thread(struct f2fs_sb_info *sbi);
3239void f2fs_stop_gc_thread(struct f2fs_sb_info *sbi);
3240block_t f2fs_start_bidx_of_node(unsigned int node_ofs, struct inode *inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07003241int f2fs_gc(struct f2fs_sb_info *sbi, bool sync, bool background,
3242 unsigned int segno);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003243void f2fs_build_gc_manager(struct f2fs_sb_info *sbi);
Qiuyang Sun20042e32019-06-05 11:33:25 +08003244int f2fs_resize_fs(struct f2fs_sb_info *sbi, __u64 block_count);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003245
3246/*
3247 * recovery.c
3248 */
Chao Yu6b4d6a82018-05-30 00:20:41 +08003249int f2fs_recover_fsync_data(struct f2fs_sb_info *sbi, bool check_only);
3250bool f2fs_space_for_roll_forward(struct f2fs_sb_info *sbi);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003251
3252/*
3253 * debug.c
3254 */
3255#ifdef CONFIG_F2FS_STAT_FS
3256struct f2fs_stat_info {
3257 struct list_head stat_list;
3258 struct f2fs_sb_info *sbi;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003259 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
3260 int main_area_segs, main_area_sections, main_area_zones;
Chao Yu5b7ee372015-09-30 17:38:48 +08003261 unsigned long long hit_largest, hit_cached, hit_rbtree;
3262 unsigned long long hit_total, total_ext;
Jaegeuk Kimc00ba552015-12-31 15:24:14 -08003263 int ext_tree, zombie_tree, ext_node;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003264 int ndirty_node, ndirty_dent, ndirty_meta, ndirty_imeta;
3265 int ndirty_data, ndirty_qdata;
Jaegeuk Kim725ba1a2016-10-20 19:09:57 -07003266 int inmem_pages;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003267 unsigned int ndirty_dirs, ndirty_files, nquota_files, ndirty_all;
Hyojun Kim63da4202017-10-06 17:10:08 -07003268 int nats, dirty_nats, sits, dirty_sits;
3269 int free_nids, avail_nids, alloc_nids;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003270 int total_count, utilization;
Hyojun Kim63da4202017-10-06 17:10:08 -07003271 int bg_gc, nr_wb_cp_data, nr_wb_data;
Jaegeuk Kim8025d722018-10-16 10:20:53 -07003272 int nr_rd_data, nr_rd_node, nr_rd_meta;
Chao Yucc32cf32018-11-12 00:46:46 +08003273 int nr_dio_read, nr_dio_write;
Chao Yu0fc6da72018-09-29 18:31:28 +08003274 unsigned int io_skip_bggc, other_skip_bggc;
Jaegeuk Kim8ae26d12017-09-23 17:02:18 +08003275 int nr_flushing, nr_flushed, flush_list_empty;
3276 int nr_discarding, nr_discarded;
Hyojun Kim63da4202017-10-06 17:10:08 -07003277 int nr_discard_cmd;
3278 unsigned int undiscard_blks;
3279 int inline_xattr, inline_inode, inline_dir, append, update, orphans;
3280 int aw_cnt, max_aw_cnt, vw_cnt, max_vw_cnt;
Yunlei Hef83a2582016-08-18 21:01:18 +08003281 unsigned int valid_count, valid_node_count, valid_inode_count, discard_blks;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003282 unsigned int bimodal, avg_vblocks;
3283 int util_free, util_valid, util_invalid;
3284 int rsvd_segs, overp_segs;
3285 int dirty_count, node_pages, meta_pages;
Jaegeuk Kim42190d22016-01-09 13:45:17 -08003286 int prefree_count, call_count, cp_count, bg_cp_count;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003287 int tot_segs, node_segs, data_segs, free_segs, free_secs;
Changman Leee1235982014-12-23 08:37:39 +09003288 int bg_node_segs, bg_data_segs;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003289 int tot_blks, data_blks, node_blks;
Changman Leee1235982014-12-23 08:37:39 +09003290 int bg_data_blks, bg_node_blks;
Chao Yucaf10c62018-05-07 20:28:54 +08003291 unsigned long long skipped_atomic_files[2];
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003292 int curseg[NR_CURSEG_TYPE];
3293 int cursec[NR_CURSEG_TYPE];
3294 int curzone[NR_CURSEG_TYPE];
3295
Chao Yud826d4a2018-09-29 18:31:27 +08003296 unsigned int meta_count[META_MAX];
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003297 unsigned int segment_count[2];
3298 unsigned int block_count[2];
Changman Leeb9a2c252014-12-24 02:16:54 +09003299 unsigned int inplace_count;
Chao Yu9edcdab2015-09-11 14:43:52 +08003300 unsigned long long base_mem, cache_mem, page_mem;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003301};
3302
Gu Zheng963d4f72013-07-12 14:47:11 +08003303static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
3304{
Chris Fries6c311ec2014-01-17 14:44:39 -06003305 return (struct f2fs_stat_info *)sbi->stat_info;
Gu Zheng963d4f72013-07-12 14:47:11 +08003306}
3307
Changman Lee942e0be2014-02-13 15:12:29 +09003308#define stat_inc_cp_count(si) ((si)->cp_count++)
Jaegeuk Kim42190d22016-01-09 13:45:17 -08003309#define stat_inc_bg_cp_count(si) ((si)->bg_cp_count++)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09003310#define stat_inc_call_count(si) ((si)->call_count++)
3311#define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++)
Chao Yu0fc6da72018-09-29 18:31:28 +08003312#define stat_io_skip_bggc_count(sbi) ((sbi)->io_skip_bggc++)
3313#define stat_other_skip_bggc_count(sbi) ((sbi)->other_skip_bggc++)
Chao Yu33fbd512015-12-17 17:14:44 +08003314#define stat_inc_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]++)
3315#define stat_dec_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]--)
Chao Yu5b7ee372015-09-30 17:38:48 +08003316#define stat_inc_total_hit(sbi) (atomic64_inc(&(sbi)->total_hit_ext))
3317#define stat_inc_rbtree_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_rbtree))
3318#define stat_inc_largest_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_largest))
3319#define stat_inc_cached_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_cached))
Chao Yud5e8f6c2015-07-15 17:28:53 +08003320#define stat_inc_inline_xattr(inode) \
3321 do { \
3322 if (f2fs_has_inline_xattr(inode)) \
3323 (atomic_inc(&F2FS_I_SB(inode)->inline_xattr)); \
3324 } while (0)
3325#define stat_dec_inline_xattr(inode) \
3326 do { \
3327 if (f2fs_has_inline_xattr(inode)) \
3328 (atomic_dec(&F2FS_I_SB(inode)->inline_xattr)); \
3329 } while (0)
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09003330#define stat_inc_inline_inode(inode) \
3331 do { \
3332 if (f2fs_has_inline_data(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08003333 (atomic_inc(&F2FS_I_SB(inode)->inline_inode)); \
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09003334 } while (0)
3335#define stat_dec_inline_inode(inode) \
3336 do { \
3337 if (f2fs_has_inline_data(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08003338 (atomic_dec(&F2FS_I_SB(inode)->inline_inode)); \
Jaegeuk Kim0dbdc2a2013-11-26 11:08:57 +09003339 } while (0)
Jaegeuk Kim3289c062014-10-13 20:00:16 -07003340#define stat_inc_inline_dir(inode) \
3341 do { \
3342 if (f2fs_has_inline_dentry(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08003343 (atomic_inc(&F2FS_I_SB(inode)->inline_dir)); \
Jaegeuk Kim3289c062014-10-13 20:00:16 -07003344 } while (0)
3345#define stat_dec_inline_dir(inode) \
3346 do { \
3347 if (f2fs_has_inline_dentry(inode)) \
Chao Yu03e14d52014-12-08 19:08:20 +08003348 (atomic_dec(&F2FS_I_SB(inode)->inline_dir)); \
Jaegeuk Kim3289c062014-10-13 20:00:16 -07003349 } while (0)
Chao Yud826d4a2018-09-29 18:31:27 +08003350#define stat_inc_meta_count(sbi, blkaddr) \
3351 do { \
3352 if (blkaddr < SIT_I(sbi)->sit_base_addr) \
3353 atomic_inc(&(sbi)->meta_count[META_CP]); \
3354 else if (blkaddr < NM_I(sbi)->nat_blkaddr) \
3355 atomic_inc(&(sbi)->meta_count[META_SIT]); \
3356 else if (blkaddr < SM_I(sbi)->ssa_blkaddr) \
3357 atomic_inc(&(sbi)->meta_count[META_NAT]); \
3358 else if (blkaddr < SM_I(sbi)->main_blkaddr) \
3359 atomic_inc(&(sbi)->meta_count[META_SSA]); \
3360 } while (0)
Jaegeuk Kimdcdfff62013-10-22 20:56:10 +09003361#define stat_inc_seg_type(sbi, curseg) \
3362 ((sbi)->segment_count[(curseg)->alloc_type]++)
3363#define stat_inc_block_count(sbi, curseg) \
3364 ((sbi)->block_count[(curseg)->alloc_type]++)
Changman Leeb9a2c252014-12-24 02:16:54 +09003365#define stat_inc_inplace_blocks(sbi) \
3366 (atomic_inc(&(sbi)->inplace_count))
Hyojun Kim63da4202017-10-06 17:10:08 -07003367#define stat_inc_atomic_write(inode) \
3368 (atomic_inc(&F2FS_I_SB(inode)->aw_cnt))
3369#define stat_dec_atomic_write(inode) \
3370 (atomic_dec(&F2FS_I_SB(inode)->aw_cnt))
3371#define stat_update_max_atomic_write(inode) \
3372 do { \
3373 int cur = atomic_read(&F2FS_I_SB(inode)->aw_cnt); \
3374 int max = atomic_read(&F2FS_I_SB(inode)->max_aw_cnt); \
3375 if (cur > max) \
3376 atomic_set(&F2FS_I_SB(inode)->max_aw_cnt, cur); \
3377 } while (0)
3378#define stat_inc_volatile_write(inode) \
3379 (atomic_inc(&F2FS_I_SB(inode)->vw_cnt))
3380#define stat_dec_volatile_write(inode) \
3381 (atomic_dec(&F2FS_I_SB(inode)->vw_cnt))
3382#define stat_update_max_volatile_write(inode) \
3383 do { \
3384 int cur = atomic_read(&F2FS_I_SB(inode)->vw_cnt); \
3385 int max = atomic_read(&F2FS_I_SB(inode)->max_vw_cnt); \
3386 if (cur > max) \
3387 atomic_set(&F2FS_I_SB(inode)->max_vw_cnt, cur); \
3388 } while (0)
Changman Leee1235982014-12-23 08:37:39 +09003389#define stat_inc_seg_count(sbi, type, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003390 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08003391 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Hyojun Kim63da4202017-10-06 17:10:08 -07003392 si->tot_segs++; \
3393 if ((type) == SUM_TYPE_DATA) { \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003394 si->data_segs++; \
Changman Leee1235982014-12-23 08:37:39 +09003395 si->bg_data_segs += (gc_type == BG_GC) ? 1 : 0; \
3396 } else { \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003397 si->node_segs++; \
Changman Leee1235982014-12-23 08:37:39 +09003398 si->bg_node_segs += (gc_type == BG_GC) ? 1 : 0; \
3399 } \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003400 } while (0)
3401
3402#define stat_inc_tot_blk_count(si, blks) \
Hyojun Kim63da4202017-10-06 17:10:08 -07003403 ((si)->tot_blks += (blks))
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003404
Changman Leee1235982014-12-23 08:37:39 +09003405#define stat_inc_data_blk_count(sbi, blks, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003406 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08003407 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003408 stat_inc_tot_blk_count(si, blks); \
3409 si->data_blks += (blks); \
Hyojun Kim63da4202017-10-06 17:10:08 -07003410 si->bg_data_blks += ((gc_type) == BG_GC) ? (blks) : 0; \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003411 } while (0)
3412
Changman Leee1235982014-12-23 08:37:39 +09003413#define stat_inc_node_blk_count(sbi, blks, gc_type) \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003414 do { \
Gu Zheng963d4f72013-07-12 14:47:11 +08003415 struct f2fs_stat_info *si = F2FS_STAT(sbi); \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003416 stat_inc_tot_blk_count(si, blks); \
3417 si->node_blks += (blks); \
Hyojun Kim63da4202017-10-06 17:10:08 -07003418 si->bg_node_blks += ((gc_type) == BG_GC) ? (blks) : 0; \
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003419 } while (0)
3420
Hyojun Kim63da4202017-10-06 17:10:08 -07003421int f2fs_build_stats(struct f2fs_sb_info *sbi);
3422void f2fs_destroy_stats(struct f2fs_sb_info *sbi);
Greg Kroah-Hartman2da68d92019-01-04 14:26:18 +01003423void __init f2fs_create_root_stats(void);
Namjae Jeon4589d252013-01-15 19:58:47 +09003424void f2fs_destroy_root_stats(void);
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003425#else
Hyojun Kim63da4202017-10-06 17:10:08 -07003426#define stat_inc_cp_count(si) do { } while (0)
3427#define stat_inc_bg_cp_count(si) do { } while (0)
3428#define stat_inc_call_count(si) do { } while (0)
3429#define stat_inc_bggc_count(si) do { } while (0)
Chao Yu0fc6da72018-09-29 18:31:28 +08003430#define stat_io_skip_bggc_count(sbi) do { } while (0)
3431#define stat_other_skip_bggc_count(sbi) do { } while (0)
Hyojun Kim63da4202017-10-06 17:10:08 -07003432#define stat_inc_dirty_inode(sbi, type) do { } while (0)
3433#define stat_dec_dirty_inode(sbi, type) do { } while (0)
3434#define stat_inc_total_hit(sb) do { } while (0)
3435#define stat_inc_rbtree_node_hit(sb) do { } while (0)
3436#define stat_inc_largest_node_hit(sbi) do { } while (0)
3437#define stat_inc_cached_node_hit(sbi) do { } while (0)
3438#define stat_inc_inline_xattr(inode) do { } while (0)
3439#define stat_dec_inline_xattr(inode) do { } while (0)
3440#define stat_inc_inline_inode(inode) do { } while (0)
3441#define stat_dec_inline_inode(inode) do { } while (0)
3442#define stat_inc_inline_dir(inode) do { } while (0)
3443#define stat_dec_inline_dir(inode) do { } while (0)
3444#define stat_inc_atomic_write(inode) do { } while (0)
3445#define stat_dec_atomic_write(inode) do { } while (0)
3446#define stat_update_max_atomic_write(inode) do { } while (0)
3447#define stat_inc_volatile_write(inode) do { } while (0)
3448#define stat_dec_volatile_write(inode) do { } while (0)
3449#define stat_update_max_volatile_write(inode) do { } while (0)
Chao Yud826d4a2018-09-29 18:31:27 +08003450#define stat_inc_meta_count(sbi, blkaddr) do { } while (0)
Hyojun Kim63da4202017-10-06 17:10:08 -07003451#define stat_inc_seg_type(sbi, curseg) do { } while (0)
3452#define stat_inc_block_count(sbi, curseg) do { } while (0)
3453#define stat_inc_inplace_blocks(sbi) do { } while (0)
3454#define stat_inc_seg_count(sbi, type, gc_type) do { } while (0)
3455#define stat_inc_tot_blk_count(si, blks) do { } while (0)
3456#define stat_inc_data_blk_count(sbi, blks, gc_type) do { } while (0)
3457#define stat_inc_node_blk_count(sbi, blks, gc_type) do { } while (0)
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003458
3459static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
3460static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
Greg Kroah-Hartman2da68d92019-01-04 14:26:18 +01003461static inline void __init f2fs_create_root_stats(void) { }
Namjae Jeon4589d252013-01-15 19:58:47 +09003462static inline void f2fs_destroy_root_stats(void) { }
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003463#endif
3464
3465extern const struct file_operations f2fs_dir_operations;
3466extern const struct file_operations f2fs_file_operations;
3467extern const struct inode_operations f2fs_file_inode_operations;
3468extern const struct address_space_operations f2fs_dblock_aops;
3469extern const struct address_space_operations f2fs_node_aops;
3470extern const struct address_space_operations f2fs_meta_aops;
3471extern const struct inode_operations f2fs_dir_inode_operations;
3472extern const struct inode_operations f2fs_symlink_inode_operations;
Jaegeuk Kimcbaf0422015-04-29 15:10:53 -07003473extern const struct inode_operations f2fs_encrypted_symlink_inode_operations;
Jaegeuk Kim39a53e02012-11-28 13:37:31 +09003474extern const struct inode_operations f2fs_special_inode_operations;
Chao Yu6b4d6a82018-05-30 00:20:41 +08003475extern struct kmem_cache *f2fs_inode_entry_slab;
Huajun Li1001b342013-11-10 23:13:16 +08003476
Huajun Lie18c65b2013-11-10 23:13:19 +08003477/*
3478 * inline.c
3479 */
Hyojun Kim63da4202017-10-06 17:10:08 -07003480bool f2fs_may_inline_data(struct inode *inode);
3481bool f2fs_may_inline_dentry(struct inode *inode);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003482void f2fs_do_read_inline_data(struct page *page, struct page *ipage);
3483void f2fs_truncate_inline_inode(struct inode *inode,
3484 struct page *ipage, u64 from);
Hyojun Kim63da4202017-10-06 17:10:08 -07003485int f2fs_read_inline_data(struct inode *inode, struct page *page);
3486int f2fs_convert_inline_page(struct dnode_of_data *dn, struct page *page);
3487int f2fs_convert_inline_inode(struct inode *inode);
3488int f2fs_write_inline_data(struct inode *inode, struct page *page);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003489bool f2fs_recover_inline_data(struct inode *inode, struct page *npage);
3490struct f2fs_dir_entry *f2fs_find_in_inline_dir(struct inode *dir,
Hyojun Kim63da4202017-10-06 17:10:08 -07003491 struct fscrypt_name *fname, struct page **res_page);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003492int f2fs_make_empty_inline_dir(struct inode *inode, struct inode *parent,
Hyojun Kim63da4202017-10-06 17:10:08 -07003493 struct page *ipage);
3494int f2fs_add_inline_entry(struct inode *dir, const struct qstr *new_name,
3495 const struct qstr *orig_name,
3496 struct inode *inode, nid_t ino, umode_t mode);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003497void f2fs_delete_inline_entry(struct f2fs_dir_entry *dentry,
3498 struct page *page, struct inode *dir,
3499 struct inode *inode);
Hyojun Kim63da4202017-10-06 17:10:08 -07003500bool f2fs_empty_inline_dir(struct inode *dir);
3501int f2fs_read_inline_dir(struct file *file, struct dir_context *ctx,
3502 struct fscrypt_str *fstr);
3503int f2fs_inline_data_fiemap(struct inode *inode,
3504 struct fiemap_extent_info *fieinfo,
3505 __u64 start, __u64 len);
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003506
3507/*
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003508 * shrinker.c
3509 */
Hyojun Kim63da4202017-10-06 17:10:08 -07003510unsigned long f2fs_shrink_count(struct shrinker *shrink,
3511 struct shrink_control *sc);
3512unsigned long f2fs_shrink_scan(struct shrinker *shrink,
3513 struct shrink_control *sc);
3514void f2fs_join_shrinker(struct f2fs_sb_info *sbi);
3515void f2fs_leave_shrinker(struct f2fs_sb_info *sbi);
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003516
3517/*
Chao Yua28ef1f2015-07-08 17:59:36 +08003518 * extent_cache.c
3519 */
Chao Yu6b4d6a82018-05-30 00:20:41 +08003520struct rb_entry *f2fs_lookup_rb_tree(struct rb_root *root,
Hyojun Kim63da4202017-10-06 17:10:08 -07003521 struct rb_entry *cached_re, unsigned int ofs);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003522struct rb_node **f2fs_lookup_rb_tree_for_insert(struct f2fs_sb_info *sbi,
Hyojun Kim63da4202017-10-06 17:10:08 -07003523 struct rb_root *root, struct rb_node **parent,
3524 unsigned int ofs);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003525struct rb_entry *f2fs_lookup_rb_tree_ret(struct rb_root *root,
Hyojun Kim63da4202017-10-06 17:10:08 -07003526 struct rb_entry *cached_re, unsigned int ofs,
3527 struct rb_entry **prev_entry, struct rb_entry **next_entry,
3528 struct rb_node ***insert_p, struct rb_node **insert_parent,
3529 bool force);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003530bool f2fs_check_rb_tree_consistence(struct f2fs_sb_info *sbi,
Hyojun Kim63da4202017-10-06 17:10:08 -07003531 struct rb_root *root);
3532unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *sbi, int nr_shrink);
3533bool f2fs_init_extent_tree(struct inode *inode, struct f2fs_extent *i_ext);
3534void f2fs_drop_extent_tree(struct inode *inode);
3535unsigned int f2fs_destroy_extent_node(struct inode *inode);
3536void f2fs_destroy_extent_tree(struct inode *inode);
3537bool f2fs_lookup_extent_cache(struct inode *inode, pgoff_t pgofs,
3538 struct extent_info *ei);
3539void f2fs_update_extent_cache(struct dnode_of_data *dn);
Chao Yu19b2c302015-08-26 20:34:48 +08003540void f2fs_update_extent_cache_range(struct dnode_of_data *dn,
Hyojun Kim63da4202017-10-06 17:10:08 -07003541 pgoff_t fofs, block_t blkaddr, unsigned int len);
Chao Yu6b4d6a82018-05-30 00:20:41 +08003542void f2fs_init_extent_cache_info(struct f2fs_sb_info *sbi);
3543int __init f2fs_create_extent_cache(void);
3544void f2fs_destroy_extent_cache(void);
Chao Yua28ef1f2015-07-08 17:59:36 +08003545
3546/*
Hyojun Kim63da4202017-10-06 17:10:08 -07003547 * sysfs.c
3548 */
3549int __init f2fs_init_sysfs(void);
3550void f2fs_exit_sysfs(void);
3551int f2fs_register_sysfs(struct f2fs_sb_info *sbi);
3552void f2fs_unregister_sysfs(struct f2fs_sb_info *sbi);
3553
3554/*
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003555 * crypto support
3556 */
Hyojun Kim63da4202017-10-06 17:10:08 -07003557static inline bool f2fs_encrypted_file(struct inode *inode)
3558{
Chandan Rajendrab62c4582018-12-12 15:20:11 +05303559 return IS_ENCRYPTED(inode) && S_ISREG(inode->i_mode);
Hyojun Kim63da4202017-10-06 17:10:08 -07003560}
3561
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003562static inline void f2fs_set_encrypted_inode(struct inode *inode)
3563{
Chandan Rajendra3ce5fa32018-12-12 15:20:12 +05303564#ifdef CONFIG_FS_ENCRYPTION
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003565 file_set_encrypt(inode);
Chao Yu7c379702018-10-07 19:06:15 +08003566 f2fs_set_inode_flags(inode);
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003567#endif
3568}
3569
Eric Biggersc6299742018-04-18 11:09:48 -07003570/*
3571 * Returns true if the reads of the inode's data need to undergo some
3572 * postprocessing step, like decryption or authenticity verification.
3573 */
3574static inline bool f2fs_post_read_required(struct inode *inode)
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003575{
Eric Biggersc6299742018-04-18 11:09:48 -07003576 return f2fs_encrypted_file(inode);
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003577}
3578
Jaegeuk Kimd9197652018-01-05 10:44:52 -08003579#define F2FS_FEATURE_FUNCS(name, flagname) \
Chao Yu5b11d2b2018-10-24 18:34:26 +08003580static inline int f2fs_sb_has_##name(struct f2fs_sb_info *sbi) \
Jaegeuk Kimd9197652018-01-05 10:44:52 -08003581{ \
Chao Yu5b11d2b2018-10-24 18:34:26 +08003582 return F2FS_HAS_FEATURE(sbi, F2FS_FEATURE_##flagname); \
Jaegeuk Kimcde4de12015-04-20 13:57:51 -07003583}
Jaegeuk Kimf424f662015-04-20 15:19:06 -07003584
Jaegeuk Kimd9197652018-01-05 10:44:52 -08003585F2FS_FEATURE_FUNCS(encrypt, ENCRYPT);
3586F2FS_FEATURE_FUNCS(blkzoned, BLKZONED);
3587F2FS_FEATURE_FUNCS(extra_attr, EXTRA_ATTR);
3588F2FS_FEATURE_FUNCS(project_quota, PRJQUOTA);
3589F2FS_FEATURE_FUNCS(inode_chksum, INODE_CHKSUM);
3590F2FS_FEATURE_FUNCS(flexible_inline_xattr, FLEXIBLE_INLINE_XATTR);
3591F2FS_FEATURE_FUNCS(quota_ino, QUOTA_INO);
3592F2FS_FEATURE_FUNCS(inode_crtime, INODE_CRTIME);
3593F2FS_FEATURE_FUNCS(lost_found, LOST_FOUND);
Junling Zheng0570b3f2018-09-28 20:25:56 +08003594F2FS_FEATURE_FUNCS(sb_chksum, SB_CHKSUM);
Jaegeuk Kim2f17e342017-11-16 16:59:14 +08003595
Hyojun Kim63da4202017-10-06 17:10:08 -07003596#ifdef CONFIG_BLK_DEV_ZONED
Damien Le Moal4c0b3682019-03-16 09:13:07 +09003597static inline bool f2fs_blkz_is_seq(struct f2fs_sb_info *sbi, int devi,
3598 block_t blkaddr)
Hyojun Kim63da4202017-10-06 17:10:08 -07003599{
3600 unsigned int zno = blkaddr >> sbi->log_blocks_per_blkz;
Hyojun Kim63da4202017-10-06 17:10:08 -07003601
Damien Le Moal4c0b3682019-03-16 09:13:07 +09003602 return test_bit(zno, FDEV(devi).blkz_seq);
Hyojun Kim63da4202017-10-06 17:10:08 -07003603}
3604#endif
3605
Chao Yu12d8e572018-09-04 03:52:17 +08003606static inline bool f2fs_hw_should_discard(struct f2fs_sb_info *sbi)
Hyojun Kim63da4202017-10-06 17:10:08 -07003607{
Chao Yu5b11d2b2018-10-24 18:34:26 +08003608 return f2fs_sb_has_blkzoned(sbi);
Chao Yu12d8e572018-09-04 03:52:17 +08003609}
Hyojun Kim63da4202017-10-06 17:10:08 -07003610
Damien Le Moal8c8f6a32019-03-16 09:13:08 +09003611static inline bool f2fs_bdev_support_discard(struct block_device *bdev)
3612{
3613 return blk_queue_discard(bdev_get_queue(bdev)) ||
3614#ifdef CONFIG_BLK_DEV_ZONED
3615 bdev_is_zoned(bdev);
3616#else
3617 0;
3618#endif
3619}
3620
Chao Yu12d8e572018-09-04 03:52:17 +08003621static inline bool f2fs_hw_support_discard(struct f2fs_sb_info *sbi)
3622{
Damien Le Moal8c8f6a32019-03-16 09:13:08 +09003623 int i;
3624
3625 if (!f2fs_is_multi_device(sbi))
3626 return f2fs_bdev_support_discard(sbi->sb->s_bdev);
3627
3628 for (i = 0; i < sbi->s_ndevs; i++)
3629 if (f2fs_bdev_support_discard(FDEV(i).bdev))
3630 return true;
3631 return false;
Chao Yu12d8e572018-09-04 03:52:17 +08003632}
3633
3634static inline bool f2fs_realtime_discard_enable(struct f2fs_sb_info *sbi)
3635{
3636 return (test_opt(sbi, DISCARD) && f2fs_hw_support_discard(sbi)) ||
3637 f2fs_hw_should_discard(sbi);
Jaegeuk Kim52763a42016-06-13 09:47:48 -07003638}
3639
Chao Yucbc0f4e2019-04-22 20:22:36 +08003640static inline bool f2fs_hw_is_readonly(struct f2fs_sb_info *sbi)
3641{
3642 int i;
3643
3644 if (!f2fs_is_multi_device(sbi))
3645 return bdev_read_only(sbi->sb->s_bdev);
3646
3647 for (i = 0; i < sbi->s_ndevs; i++)
3648 if (bdev_read_only(FDEV(i).bdev))
3649 return true;
3650 return false;
3651}
3652
3653
Jaegeuk Kim52763a42016-06-13 09:47:48 -07003654static inline void set_opt_mode(struct f2fs_sb_info *sbi, unsigned int mt)
3655{
3656 clear_opt(sbi, ADAPTIVE);
3657 clear_opt(sbi, LFS);
3658
3659 switch (mt) {
3660 case F2FS_MOUNT_ADAPTIVE:
3661 set_opt(sbi, ADAPTIVE);
3662 break;
3663 case F2FS_MOUNT_LFS:
3664 set_opt(sbi, LFS);
3665 break;
3666 }
3667}
3668
Jaegeuk Kimfcc85a42015-04-21 20:39:58 -07003669static inline bool f2fs_may_encrypt(struct inode *inode)
3670{
Chandan Rajendra3ce5fa32018-12-12 15:20:12 +05303671#ifdef CONFIG_FS_ENCRYPTION
Al Viro886f56f2015-12-05 03:56:06 -05003672 umode_t mode = inode->i_mode;
Jaegeuk Kimfcc85a42015-04-21 20:39:58 -07003673
3674 return (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode));
3675#else
Gustavo A. R. Silvaad046712018-08-01 19:51:38 -05003676 return false;
Jaegeuk Kimfcc85a42015-04-21 20:39:58 -07003677#endif
3678}
3679
Chao Yub84f9a72018-09-27 18:34:52 +08003680static inline int block_unaligned_IO(struct inode *inode,
3681 struct kiocb *iocb, struct iov_iter *iter)
Jaegeuk Kimd9197652018-01-05 10:44:52 -08003682{
Chao Yub84f9a72018-09-27 18:34:52 +08003683 unsigned int i_blkbits = READ_ONCE(inode->i_blkbits);
3684 unsigned int blocksize_mask = (1 << i_blkbits) - 1;
3685 loff_t offset = iocb->ki_pos;
3686 unsigned long align = offset | iov_iter_alignment(iter);
3687
3688 return align & blocksize_mask;
3689}
3690
3691static inline int allow_outplace_dio(struct inode *inode,
3692 struct kiocb *iocb, struct iov_iter *iter)
3693{
3694 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
3695 int rw = iov_iter_rw(iter);
3696
3697 return (test_opt(sbi, LFS) && (rw == WRITE) &&
3698 !block_unaligned_IO(inode, iocb, iter));
3699}
3700
3701static inline bool f2fs_force_buffered_io(struct inode *inode,
3702 struct kiocb *iocb, struct iov_iter *iter)
3703{
3704 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
3705 int rw = iov_iter_rw(iter);
3706
jianzhouf41ab602019-01-03 16:41:57 +08003707 if (f2fs_post_read_required(inode) &&
3708 !fscrypt_using_hardware_encryption(inode))
Chao Yub84f9a72018-09-27 18:34:52 +08003709 return true;
Damien Le Moal67894512019-03-16 09:13:06 +09003710 if (f2fs_is_multi_device(sbi))
Chao Yub84f9a72018-09-27 18:34:52 +08003711 return true;
3712 /*
3713 * for blkzoned device, fallback direct IO to buffered IO, so
3714 * all IOs can be serialized by log-structured write.
3715 */
Chao Yu5b11d2b2018-10-24 18:34:26 +08003716 if (f2fs_sb_has_blkzoned(sbi))
Chao Yub84f9a72018-09-27 18:34:52 +08003717 return true;
3718 if (test_opt(sbi, LFS) && (rw == WRITE) &&
3719 block_unaligned_IO(inode, iocb, iter))
3720 return true;
Jaegeuk Kima66761b2019-07-01 19:15:29 -07003721 if (is_sbi_flag_set(F2FS_I_SB(inode), SBI_CP_DISABLED) &&
3722 !(inode->i_flags & S_SWAPFILE))
Daniel Rosenbergf22f93a2018-08-20 19:21:43 -07003723 return true;
3724
Chao Yub84f9a72018-09-27 18:34:52 +08003725 return false;
Jaegeuk Kimd9197652018-01-05 10:44:52 -08003726}
3727
Neeraj Soni36c65122018-04-18 21:04:46 +05303728static inline bool f2fs_may_encrypt_bio(struct inode *inode,
3729 struct f2fs_io_info *fio)
3730{
3731 if (fio && (fio->type != DATA || fio->encrypted_page))
3732 return false;
3733
3734 return (f2fs_encrypted_file(inode) &&
3735 fscrypt_using_hardware_encryption(inode));
3736}
3737
Jaegeuk Kimc92b7c72018-06-21 13:46:23 -07003738#ifdef CONFIG_F2FS_FAULT_INJECTION
Chao Yu0ef692e2018-08-08 17:36:41 +08003739extern void f2fs_build_fault_attr(struct f2fs_sb_info *sbi, unsigned int rate,
3740 unsigned int type);
Jaegeuk Kimc92b7c72018-06-21 13:46:23 -07003741#else
Chao Yu0ef692e2018-08-08 17:36:41 +08003742#define f2fs_build_fault_attr(sbi, rate, type) do { } while (0)
Jaegeuk Kimc92b7c72018-06-21 13:46:23 -07003743#endif
3744
Chao Yud8312722018-09-20 20:05:00 +08003745static inline bool is_journalled_quota(struct f2fs_sb_info *sbi)
3746{
3747#ifdef CONFIG_QUOTA
Chao Yu5b11d2b2018-10-24 18:34:26 +08003748 if (f2fs_sb_has_quota_ino(sbi))
Chao Yud8312722018-09-20 20:05:00 +08003749 return true;
3750 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA] ||
3751 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA] ||
3752 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
3753 return true;
3754#endif
3755 return false;
3756}
Jaegeuk Kimaf8e8892019-02-15 19:04:38 -08003757
Chao Yua6b5c262019-06-20 11:36:14 +08003758#define EFSBADCRC EBADMSG /* Bad CRC detected */
3759#define EFSCORRUPTED EUCLEAN /* Filesystem is corrupted */
3760
Chao Yu5c727632019-04-02 18:52:20 +08003761#endif /* _LINUX_F2FS_H */