GNU Linux-libre 5.4.257-gnu1
[releases.git] / fs / f2fs / f2fs.h
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * fs/f2fs/f2fs.h
4  *
5  * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6  *             http://www.samsung.com/
7  */
8 #ifndef _LINUX_F2FS_H
9 #define _LINUX_F2FS_H
10
11 #include <linux/uio.h>
12 #include <linux/types.h>
13 #include <linux/page-flags.h>
14 #include <linux/buffer_head.h>
15 #include <linux/slab.h>
16 #include <linux/crc32.h>
17 #include <linux/magic.h>
18 #include <linux/kobject.h>
19 #include <linux/sched.h>
20 #include <linux/cred.h>
21 #include <linux/vmalloc.h>
22 #include <linux/bio.h>
23 #include <linux/blkdev.h>
24 #include <linux/quotaops.h>
25 #include <crypto/hash.h>
26
27 #include <linux/fscrypt.h>
28 #include <linux/fsverity.h>
29
30 #ifdef CONFIG_F2FS_CHECK_FS
31 #define f2fs_bug_on(sbi, condition)     BUG_ON(condition)
32 #else
33 #define f2fs_bug_on(sbi, condition)                                     \
34         do {                                                            \
35                 if (unlikely(condition)) {                              \
36                         WARN_ON(1);                                     \
37                         set_sbi_flag(sbi, SBI_NEED_FSCK);               \
38                 }                                                       \
39         } while (0)
40 #endif
41
42 enum {
43         FAULT_KMALLOC,
44         FAULT_KVMALLOC,
45         FAULT_PAGE_ALLOC,
46         FAULT_PAGE_GET,
47         FAULT_ALLOC_BIO,
48         FAULT_ALLOC_NID,
49         FAULT_ORPHAN,
50         FAULT_BLOCK,
51         FAULT_DIR_DEPTH,
52         FAULT_EVICT_INODE,
53         FAULT_TRUNCATE,
54         FAULT_READ_IO,
55         FAULT_CHECKPOINT,
56         FAULT_DISCARD,
57         FAULT_WRITE_IO,
58         FAULT_MAX,
59 };
60
61 #ifdef CONFIG_F2FS_FAULT_INJECTION
62 #define F2FS_ALL_FAULT_TYPE             ((1 << FAULT_MAX) - 1)
63
64 struct f2fs_fault_info {
65         atomic_t inject_ops;
66         unsigned int inject_rate;
67         unsigned int inject_type;
68 };
69
70 extern const char *f2fs_fault_name[FAULT_MAX];
71 #define IS_FAULT_SET(fi, type) ((fi)->inject_type & (1 << (type)))
72 #endif
73
74 /*
75  * For mount options
76  */
77 #define F2FS_MOUNT_BG_GC                0x00000001
78 #define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002
79 #define F2FS_MOUNT_DISCARD              0x00000004
80 #define F2FS_MOUNT_NOHEAP               0x00000008
81 #define F2FS_MOUNT_XATTR_USER           0x00000010
82 #define F2FS_MOUNT_POSIX_ACL            0x00000020
83 #define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040
84 #define F2FS_MOUNT_INLINE_XATTR         0x00000080
85 #define F2FS_MOUNT_INLINE_DATA          0x00000100
86 #define F2FS_MOUNT_INLINE_DENTRY        0x00000200
87 #define F2FS_MOUNT_FLUSH_MERGE          0x00000400
88 #define F2FS_MOUNT_NOBARRIER            0x00000800
89 #define F2FS_MOUNT_FASTBOOT             0x00001000
90 #define F2FS_MOUNT_EXTENT_CACHE         0x00002000
91 #define F2FS_MOUNT_FORCE_FG_GC          0x00004000
92 #define F2FS_MOUNT_DATA_FLUSH           0x00008000
93 #define F2FS_MOUNT_FAULT_INJECTION      0x00010000
94 #define F2FS_MOUNT_ADAPTIVE             0x00020000
95 #define F2FS_MOUNT_LFS                  0x00040000
96 #define F2FS_MOUNT_USRQUOTA             0x00080000
97 #define F2FS_MOUNT_GRPQUOTA             0x00100000
98 #define F2FS_MOUNT_PRJQUOTA             0x00200000
99 #define F2FS_MOUNT_QUOTA                0x00400000
100 #define F2FS_MOUNT_INLINE_XATTR_SIZE    0x00800000
101 #define F2FS_MOUNT_RESERVE_ROOT         0x01000000
102 #define F2FS_MOUNT_DISABLE_CHECKPOINT   0x02000000
103 #define F2FS_MOUNT_NORECOVERY           0x04000000
104
105 #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)
109
110 #define ver_after(a, b) (typecheck(unsigned long long, a) &&            \
111                 typecheck(unsigned long long, b) &&                     \
112                 ((long long)((a) - (b)) > 0))
113
114 typedef u32 block_t;    /*
115                          * should not change u32, since it is the on-disk block
116                          * address format, __le32.
117                          */
118 typedef u32 nid_t;
119
120 struct f2fs_mount_info {
121         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 */
141         block_t unusable_cap_perc;      /* percentage for cap */
142         block_t unusable_cap;           /* Amount of space allowed to be
143                                          * unusable when disabling checkpoint
144                                          */
145 };
146
147 #define F2FS_FEATURE_ENCRYPT            0x0001
148 #define F2FS_FEATURE_BLKZONED           0x0002
149 #define F2FS_FEATURE_ATOMIC_WRITE       0x0004
150 #define F2FS_FEATURE_EXTRA_ATTR         0x0008
151 #define F2FS_FEATURE_PRJQUOTA           0x0010
152 #define F2FS_FEATURE_INODE_CHKSUM       0x0020
153 #define F2FS_FEATURE_FLEXIBLE_INLINE_XATTR      0x0040
154 #define F2FS_FEATURE_QUOTA_INO          0x0080
155 #define F2FS_FEATURE_INODE_CRTIME       0x0100
156 #define F2FS_FEATURE_LOST_FOUND         0x0200
157 #define F2FS_FEATURE_VERITY             0x0400
158 #define F2FS_FEATURE_SB_CHKSUM          0x0800
159 #define F2FS_FEATURE_CASEFOLD           0x1000
160
161 #define __F2FS_HAS_FEATURE(raw_super, mask)                             \
162         ((raw_super->feature & cpu_to_le32(mask)) != 0)
163 #define F2FS_HAS_FEATURE(sbi, mask)     __F2FS_HAS_FEATURE(sbi->raw_super, mask)
164 #define F2FS_SET_FEATURE(sbi, mask)                                     \
165         (sbi->raw_super->feature |= cpu_to_le32(mask))
166 #define F2FS_CLEAR_FEATURE(sbi, mask)                                   \
167         (sbi->raw_super->feature &= ~cpu_to_le32(mask))
168
169 /*
170  * Default values for user and/or group using reserved blocks
171  */
172 #define F2FS_DEF_RESUID         0
173 #define F2FS_DEF_RESGID         0
174
175 /*
176  * For checkpoint manager
177  */
178 enum {
179         NAT_BITMAP,
180         SIT_BITMAP
181 };
182
183 #define CP_UMOUNT       0x00000001
184 #define CP_FASTBOOT     0x00000002
185 #define CP_SYNC         0x00000004
186 #define CP_RECOVERY     0x00000008
187 #define CP_DISCARD      0x00000010
188 #define CP_TRIMMED      0x00000020
189 #define CP_PAUSE        0x00000040
190
191 #define MAX_DISCARD_BLOCKS(sbi)         BLKS_PER_SEC(sbi)
192 #define DEF_MAX_DISCARD_REQUEST         8       /* issue 8 discards per round */
193 #define DEF_MIN_DISCARD_ISSUE_TIME      50      /* 50 ms, if exists */
194 #define DEF_MID_DISCARD_ISSUE_TIME      500     /* 500 ms, if device busy */
195 #define DEF_MAX_DISCARD_ISSUE_TIME      60000   /* 60 s, if no candidates */
196 #define DEF_DISCARD_URGENT_UTIL         80      /* do more discard over 80% */
197 #define DEF_CP_INTERVAL                 60      /* 60 secs */
198 #define DEF_IDLE_INTERVAL               5       /* 5 secs */
199 #define DEF_DISABLE_INTERVAL            5       /* 5 secs */
200 #define DEF_DISABLE_QUICK_INTERVAL      1       /* 1 secs */
201 #define DEF_UMOUNT_DISCARD_TIMEOUT      5       /* 5 secs */
202
203 struct cp_control {
204         int reason;
205         __u64 trim_start;
206         __u64 trim_end;
207         __u64 trim_minlen;
208 };
209
210 /*
211  * indicate meta/data type
212  */
213 enum {
214         META_CP,
215         META_NAT,
216         META_SIT,
217         META_SSA,
218         META_MAX,
219         META_POR,
220         DATA_GENERIC,           /* check range only */
221         DATA_GENERIC_ENHANCE,   /* strong check on range and segment bitmap */
222         DATA_GENERIC_ENHANCE_READ,      /*
223                                          * strong check on range and segment
224                                          * bitmap but no warning due to race
225                                          * condition of read on truncated area
226                                          * by extent_cache
227                                          */
228         DATA_GENERIC_ENHANCE_UPDATE,    /*
229                                          * strong check on range and segment
230                                          * bitmap for update case
231                                          */
232         META_GENERIC,
233 };
234
235 /* for the list of ino */
236 enum {
237         ORPHAN_INO,             /* for orphan ino list */
238         APPEND_INO,             /* for append ino list */
239         UPDATE_INO,             /* for update ino list */
240         TRANS_DIR_INO,          /* for trasactions dir ino list */
241         FLUSH_INO,              /* for multiple device flushing */
242         MAX_INO_ENTRY,          /* max. list */
243 };
244
245 struct ino_entry {
246         struct list_head list;          /* list head */
247         nid_t ino;                      /* inode number */
248         unsigned int dirty_device;      /* dirty device bitmap */
249 };
250
251 /* for the list of inodes to be GCed */
252 struct inode_entry {
253         struct list_head list;  /* list head */
254         struct inode *inode;    /* vfs inode pointer */
255 };
256
257 struct fsync_node_entry {
258         struct list_head list;  /* list head */
259         struct page *page;      /* warm node page pointer */
260         unsigned int seq_id;    /* sequence id */
261 };
262
263 /* for the bitmap indicate blocks to be discarded */
264 struct discard_entry {
265         struct list_head list;  /* list head */
266         block_t start_blkaddr;  /* start blockaddr of current segment */
267         unsigned char discard_map[SIT_VBLOCK_MAP_SIZE]; /* segment discard bitmap */
268 };
269
270 /* default discard granularity of inner discard thread, unit: block count */
271 #define DEFAULT_DISCARD_GRANULARITY             16
272
273 /* max discard pend list number */
274 #define MAX_PLIST_NUM           512
275 #define plist_idx(blk_num)      ((blk_num) >= MAX_PLIST_NUM ?           \
276                                         (MAX_PLIST_NUM - 1) : ((blk_num) - 1))
277
278 enum {
279         D_PREP,                 /* initial */
280         D_PARTIAL,              /* partially submitted */
281         D_SUBMIT,               /* all submitted */
282         D_DONE,                 /* finished */
283 };
284
285 struct discard_info {
286         block_t lstart;                 /* logical start address */
287         block_t len;                    /* length */
288         block_t start;                  /* actual start address in dev */
289 };
290
291 struct discard_cmd {
292         struct rb_node rb_node;         /* rb node located in rb-tree */
293         union {
294                 struct {
295                         block_t lstart; /* logical start address */
296                         block_t len;    /* length */
297                         block_t start;  /* actual start address in dev */
298                 };
299                 struct discard_info di; /* discard info */
300
301         };
302         struct list_head list;          /* command list */
303         struct completion wait;         /* compleation */
304         struct block_device *bdev;      /* bdev */
305         unsigned short ref;             /* reference count */
306         unsigned char state;            /* state */
307         unsigned char queued;           /* queued discard */
308         int error;                      /* bio error */
309         spinlock_t lock;                /* for state/bio_ref updating */
310         unsigned short bio_ref;         /* bio reference count */
311 };
312
313 enum {
314         DPOLICY_BG,
315         DPOLICY_FORCE,
316         DPOLICY_FSTRIM,
317         DPOLICY_UMOUNT,
318         MAX_DPOLICY,
319 };
320
321 struct discard_policy {
322         int type;                       /* type of discard */
323         unsigned int min_interval;      /* used for candidates exist */
324         unsigned int mid_interval;      /* used for device busy */
325         unsigned int max_interval;      /* used for candidates not exist */
326         unsigned int max_requests;      /* # of discards issued per round */
327         unsigned int io_aware_gran;     /* minimum granularity discard not be aware of I/O */
328         bool io_aware;                  /* issue discard in idle time */
329         bool sync;                      /* submit discard with REQ_SYNC flag */
330         bool ordered;                   /* issue discard by lba order */
331         unsigned int granularity;       /* discard granularity */
332         int timeout;                    /* discard timeout for put_super */
333 };
334
335 struct discard_cmd_control {
336         struct task_struct *f2fs_issue_discard; /* discard thread */
337         struct list_head entry_list;            /* 4KB discard entry list */
338         struct list_head pend_list[MAX_PLIST_NUM];/* store pending entries */
339         struct list_head wait_list;             /* store on-flushing entries */
340         struct list_head fstrim_list;           /* in-flight discard from fstrim */
341         wait_queue_head_t discard_wait_queue;   /* waiting queue for wake-up */
342         unsigned int discard_wake;              /* to wake up discard thread */
343         struct mutex cmd_lock;
344         unsigned int nr_discards;               /* # of discards in the list */
345         unsigned int max_discards;              /* max. discards to be issued */
346         unsigned int discard_granularity;       /* discard granularity */
347         unsigned int undiscard_blks;            /* # of undiscard blocks */
348         unsigned int next_pos;                  /* next discard position */
349         atomic_t issued_discard;                /* # of issued discard */
350         atomic_t queued_discard;                /* # of queued discard */
351         atomic_t discard_cmd_cnt;               /* # of cached cmd count */
352         struct rb_root_cached root;             /* root of discard rb-tree */
353         bool rbtree_check;                      /* config for consistence check */
354 };
355
356 /* for the list of fsync inodes, used only during recovery */
357 struct fsync_inode_entry {
358         struct list_head list;  /* list head */
359         struct inode *inode;    /* vfs inode pointer */
360         block_t blkaddr;        /* block address locating the last fsync */
361         block_t last_dentry;    /* block address locating the last dentry */
362 };
363
364 #define nats_in_cursum(jnl)             (le16_to_cpu((jnl)->n_nats))
365 #define sits_in_cursum(jnl)             (le16_to_cpu((jnl)->n_sits))
366
367 #define nat_in_journal(jnl, i)          ((jnl)->nat_j.entries[i].ne)
368 #define nid_in_journal(jnl, i)          ((jnl)->nat_j.entries[i].nid)
369 #define sit_in_journal(jnl, i)          ((jnl)->sit_j.entries[i].se)
370 #define segno_in_journal(jnl, i)        ((jnl)->sit_j.entries[i].segno)
371
372 #define MAX_NAT_JENTRIES(jnl)   (NAT_JOURNAL_ENTRIES - nats_in_cursum(jnl))
373 #define MAX_SIT_JENTRIES(jnl)   (SIT_JOURNAL_ENTRIES - sits_in_cursum(jnl))
374
375 static inline int update_nats_in_cursum(struct f2fs_journal *journal, int i)
376 {
377         int before = nats_in_cursum(journal);
378
379         journal->n_nats = cpu_to_le16(before + i);
380         return before;
381 }
382
383 static inline int update_sits_in_cursum(struct f2fs_journal *journal, int i)
384 {
385         int before = sits_in_cursum(journal);
386
387         journal->n_sits = cpu_to_le16(before + i);
388         return before;
389 }
390
391 static inline bool __has_cursum_space(struct f2fs_journal *journal,
392                                                         int size, int type)
393 {
394         if (type == NAT_JOURNAL)
395                 return size <= MAX_NAT_JENTRIES(journal);
396         return size <= MAX_SIT_JENTRIES(journal);
397 }
398
399 /*
400  * ioctl commands
401  */
402 #define F2FS_IOC_GETFLAGS               FS_IOC_GETFLAGS
403 #define F2FS_IOC_SETFLAGS               FS_IOC_SETFLAGS
404 #define F2FS_IOC_GETVERSION             FS_IOC_GETVERSION
405
406 #define F2FS_IOCTL_MAGIC                0xf5
407 #define F2FS_IOC_START_ATOMIC_WRITE     _IO(F2FS_IOCTL_MAGIC, 1)
408 #define F2FS_IOC_COMMIT_ATOMIC_WRITE    _IO(F2FS_IOCTL_MAGIC, 2)
409 #define F2FS_IOC_START_VOLATILE_WRITE   _IO(F2FS_IOCTL_MAGIC, 3)
410 #define F2FS_IOC_RELEASE_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 4)
411 #define F2FS_IOC_ABORT_VOLATILE_WRITE   _IO(F2FS_IOCTL_MAGIC, 5)
412 #define F2FS_IOC_GARBAGE_COLLECT        _IOW(F2FS_IOCTL_MAGIC, 6, __u32)
413 #define F2FS_IOC_WRITE_CHECKPOINT       _IO(F2FS_IOCTL_MAGIC, 7)
414 #define F2FS_IOC_DEFRAGMENT             _IOWR(F2FS_IOCTL_MAGIC, 8,      \
415                                                 struct f2fs_defragment)
416 #define F2FS_IOC_MOVE_RANGE             _IOWR(F2FS_IOCTL_MAGIC, 9,      \
417                                                 struct f2fs_move_range)
418 #define F2FS_IOC_FLUSH_DEVICE           _IOW(F2FS_IOCTL_MAGIC, 10,      \
419                                                 struct f2fs_flush_device)
420 #define F2FS_IOC_GARBAGE_COLLECT_RANGE  _IOW(F2FS_IOCTL_MAGIC, 11,      \
421                                                 struct f2fs_gc_range)
422 #define F2FS_IOC_GET_FEATURES           _IOR(F2FS_IOCTL_MAGIC, 12, __u32)
423 #define F2FS_IOC_SET_PIN_FILE           _IOW(F2FS_IOCTL_MAGIC, 13, __u32)
424 #define F2FS_IOC_GET_PIN_FILE           _IOR(F2FS_IOCTL_MAGIC, 14, __u32)
425 #define F2FS_IOC_PRECACHE_EXTENTS       _IO(F2FS_IOCTL_MAGIC, 15)
426 #define F2FS_IOC_RESIZE_FS              _IOW(F2FS_IOCTL_MAGIC, 16, __u64)
427
428 #define F2FS_IOC_GET_VOLUME_NAME        FS_IOC_GETFSLABEL
429 #define F2FS_IOC_SET_VOLUME_NAME        FS_IOC_SETFSLABEL
430
431 #define F2FS_IOC_SET_ENCRYPTION_POLICY  FS_IOC_SET_ENCRYPTION_POLICY
432 #define F2FS_IOC_GET_ENCRYPTION_POLICY  FS_IOC_GET_ENCRYPTION_POLICY
433 #define F2FS_IOC_GET_ENCRYPTION_PWSALT  FS_IOC_GET_ENCRYPTION_PWSALT
434
435 /*
436  * should be same as XFS_IOC_GOINGDOWN.
437  * Flags for going down operation used by FS_IOC_GOINGDOWN
438  */
439 #define F2FS_IOC_SHUTDOWN       _IOR('X', 125, __u32)   /* Shutdown */
440 #define F2FS_GOING_DOWN_FULLSYNC        0x0     /* going down with full sync */
441 #define F2FS_GOING_DOWN_METASYNC        0x1     /* going down with metadata */
442 #define F2FS_GOING_DOWN_NOSYNC          0x2     /* going down */
443 #define F2FS_GOING_DOWN_METAFLUSH       0x3     /* going down with meta flush */
444 #define F2FS_GOING_DOWN_NEED_FSCK       0x4     /* going down to trigger fsck */
445
446 #if defined(__KERNEL__) && defined(CONFIG_COMPAT)
447 /*
448  * ioctl commands in 32 bit emulation
449  */
450 #define F2FS_IOC32_GETFLAGS             FS_IOC32_GETFLAGS
451 #define F2FS_IOC32_SETFLAGS             FS_IOC32_SETFLAGS
452 #define F2FS_IOC32_GETVERSION           FS_IOC32_GETVERSION
453 #endif
454
455 #define F2FS_IOC_FSGETXATTR             FS_IOC_FSGETXATTR
456 #define F2FS_IOC_FSSETXATTR             FS_IOC_FSSETXATTR
457
458 struct f2fs_gc_range {
459         u32 sync;
460         u64 start;
461         u64 len;
462 };
463
464 struct f2fs_defragment {
465         u64 start;
466         u64 len;
467 };
468
469 struct f2fs_move_range {
470         u32 dst_fd;             /* destination fd */
471         u64 pos_in;             /* start position in src_fd */
472         u64 pos_out;            /* start position in dst_fd */
473         u64 len;                /* size to move */
474 };
475
476 struct f2fs_flush_device {
477         u32 dev_num;            /* device number to flush */
478         u32 segments;           /* # of segments to flush */
479 };
480
481 /* for inline stuff */
482 #define DEF_INLINE_RESERVED_SIZE        1
483 static inline int get_extra_isize(struct inode *inode);
484 static inline int get_inline_xattr_addrs(struct inode *inode);
485 #define MAX_INLINE_DATA(inode)  (sizeof(__le32) *                       \
486                                 (CUR_ADDRS_PER_INODE(inode) -           \
487                                 get_inline_xattr_addrs(inode) - \
488                                 DEF_INLINE_RESERVED_SIZE))
489
490 /* for inline dir */
491 #define NR_INLINE_DENTRY(inode) (MAX_INLINE_DATA(inode) * BITS_PER_BYTE / \
492                                 ((SIZE_OF_DIR_ENTRY + F2FS_SLOT_LEN) * \
493                                 BITS_PER_BYTE + 1))
494 #define INLINE_DENTRY_BITMAP_SIZE(inode) \
495         DIV_ROUND_UP(NR_INLINE_DENTRY(inode), BITS_PER_BYTE)
496 #define INLINE_RESERVED_SIZE(inode)     (MAX_INLINE_DATA(inode) - \
497                                 ((SIZE_OF_DIR_ENTRY + F2FS_SLOT_LEN) * \
498                                 NR_INLINE_DENTRY(inode) + \
499                                 INLINE_DENTRY_BITMAP_SIZE(inode)))
500
501 /*
502  * For INODE and NODE manager
503  */
504 /* for directory operations */
505 struct f2fs_dentry_ptr {
506         struct inode *inode;
507         void *bitmap;
508         struct f2fs_dir_entry *dentry;
509         __u8 (*filename)[F2FS_SLOT_LEN];
510         int max;
511         int nr_bitmap;
512 };
513
514 static inline void make_dentry_ptr_block(struct inode *inode,
515                 struct f2fs_dentry_ptr *d, struct f2fs_dentry_block *t)
516 {
517         d->inode = inode;
518         d->max = NR_DENTRY_IN_BLOCK;
519         d->nr_bitmap = SIZE_OF_DENTRY_BITMAP;
520         d->bitmap = t->dentry_bitmap;
521         d->dentry = t->dentry;
522         d->filename = t->filename;
523 }
524
525 static inline void make_dentry_ptr_inline(struct inode *inode,
526                                         struct f2fs_dentry_ptr *d, void *t)
527 {
528         int entry_cnt = NR_INLINE_DENTRY(inode);
529         int bitmap_size = INLINE_DENTRY_BITMAP_SIZE(inode);
530         int reserved_size = INLINE_RESERVED_SIZE(inode);
531
532         d->inode = inode;
533         d->max = entry_cnt;
534         d->nr_bitmap = bitmap_size;
535         d->bitmap = t;
536         d->dentry = t + bitmap_size + reserved_size;
537         d->filename = t + bitmap_size + reserved_size +
538                                         SIZE_OF_DIR_ENTRY * entry_cnt;
539 }
540
541 /*
542  * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1
543  * as its node offset to distinguish from index node blocks.
544  * But some bits are used to mark the node block.
545  */
546 #define XATTR_NODE_OFFSET       ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \
547                                 >> OFFSET_BIT_SHIFT)
548 enum {
549         ALLOC_NODE,                     /* allocate a new node page if needed */
550         LOOKUP_NODE,                    /* look up a node without readahead */
551         LOOKUP_NODE_RA,                 /*
552                                          * look up a node with readahead called
553                                          * by get_data_block.
554                                          */
555 };
556
557 #define DEFAULT_RETRY_IO_COUNT  8       /* maximum retry read IO count */
558
559 /* maximum retry quota flush count */
560 #define DEFAULT_RETRY_QUOTA_FLUSH_COUNT         8
561
562 #define F2FS_LINK_MAX   0xffffffff      /* maximum link count per file */
563
564 #define MAX_DIR_RA_PAGES        4       /* maximum ra pages of dir */
565
566 /* for in-memory extent cache entry */
567 #define F2FS_MIN_EXTENT_LEN     64      /* minimum extent length */
568
569 /* number of extent info in extent cache we try to shrink */
570 #define EXTENT_CACHE_SHRINK_NUMBER      128
571
572 struct rb_entry {
573         struct rb_node rb_node;         /* rb node located in rb-tree */
574         unsigned int ofs;               /* start offset of the entry */
575         unsigned int len;               /* length of the entry */
576 };
577
578 struct extent_info {
579         unsigned int fofs;              /* start offset in a file */
580         unsigned int len;               /* length of the extent */
581         u32 blk;                        /* start block address of the extent */
582 };
583
584 struct extent_node {
585         struct rb_node rb_node;         /* rb node located in rb-tree */
586         struct extent_info ei;          /* extent info */
587         struct list_head list;          /* node in global extent list of sbi */
588         struct extent_tree *et;         /* extent tree pointer */
589 };
590
591 struct extent_tree {
592         nid_t ino;                      /* inode number */
593         struct rb_root_cached root;     /* root of extent info rb-tree */
594         struct extent_node *cached_en;  /* recently accessed extent node */
595         struct extent_info largest;     /* largested extent info */
596         struct list_head list;          /* to be used by sbi->zombie_list */
597         rwlock_t lock;                  /* protect extent info rb-tree */
598         atomic_t node_cnt;              /* # of extent node in rb-tree*/
599         bool largest_updated;           /* largest extent updated */
600 };
601
602 /*
603  * This structure is taken from ext4_map_blocks.
604  *
605  * Note that, however, f2fs uses NEW and MAPPED flags for f2fs_map_blocks().
606  */
607 #define F2FS_MAP_NEW            (1 << BH_New)
608 #define F2FS_MAP_MAPPED         (1 << BH_Mapped)
609 #define F2FS_MAP_UNWRITTEN      (1 << BH_Unwritten)
610 #define F2FS_MAP_FLAGS          (F2FS_MAP_NEW | F2FS_MAP_MAPPED |\
611                                 F2FS_MAP_UNWRITTEN)
612
613 struct f2fs_map_blocks {
614         block_t m_pblk;
615         block_t m_lblk;
616         unsigned int m_len;
617         unsigned int m_flags;
618         pgoff_t *m_next_pgofs;          /* point next possible non-hole pgofs */
619         pgoff_t *m_next_extent;         /* point to next possible extent */
620         int m_seg_type;
621         bool m_may_create;              /* indicate it is from write path */
622 };
623
624 /* for flag in get_data_block */
625 enum {
626         F2FS_GET_BLOCK_DEFAULT,
627         F2FS_GET_BLOCK_FIEMAP,
628         F2FS_GET_BLOCK_BMAP,
629         F2FS_GET_BLOCK_DIO,
630         F2FS_GET_BLOCK_PRE_DIO,
631         F2FS_GET_BLOCK_PRE_AIO,
632         F2FS_GET_BLOCK_PRECACHE,
633 };
634
635 /*
636  * i_advise uses FADVISE_XXX_BIT. We can add additional hints later.
637  */
638 #define FADVISE_COLD_BIT        0x01
639 #define FADVISE_LOST_PINO_BIT   0x02
640 #define FADVISE_ENCRYPT_BIT     0x04
641 #define FADVISE_ENC_NAME_BIT    0x08
642 #define FADVISE_KEEP_SIZE_BIT   0x10
643 #define FADVISE_HOT_BIT         0x20
644 #define FADVISE_VERITY_BIT      0x40
645
646 #define FADVISE_MODIFIABLE_BITS (FADVISE_COLD_BIT | FADVISE_HOT_BIT)
647
648 #define file_is_cold(inode)     is_file(inode, FADVISE_COLD_BIT)
649 #define file_wrong_pino(inode)  is_file(inode, FADVISE_LOST_PINO_BIT)
650 #define file_set_cold(inode)    set_file(inode, FADVISE_COLD_BIT)
651 #define file_lost_pino(inode)   set_file(inode, FADVISE_LOST_PINO_BIT)
652 #define file_clear_cold(inode)  clear_file(inode, FADVISE_COLD_BIT)
653 #define file_got_pino(inode)    clear_file(inode, FADVISE_LOST_PINO_BIT)
654 #define file_is_encrypt(inode)  is_file(inode, FADVISE_ENCRYPT_BIT)
655 #define file_set_encrypt(inode) set_file(inode, FADVISE_ENCRYPT_BIT)
656 #define file_clear_encrypt(inode) clear_file(inode, FADVISE_ENCRYPT_BIT)
657 #define file_enc_name(inode)    is_file(inode, FADVISE_ENC_NAME_BIT)
658 #define file_set_enc_name(inode) set_file(inode, FADVISE_ENC_NAME_BIT)
659 #define file_keep_isize(inode)  is_file(inode, FADVISE_KEEP_SIZE_BIT)
660 #define file_set_keep_isize(inode) set_file(inode, FADVISE_KEEP_SIZE_BIT)
661 #define file_is_hot(inode)      is_file(inode, FADVISE_HOT_BIT)
662 #define file_set_hot(inode)     set_file(inode, FADVISE_HOT_BIT)
663 #define file_clear_hot(inode)   clear_file(inode, FADVISE_HOT_BIT)
664 #define file_is_verity(inode)   is_file(inode, FADVISE_VERITY_BIT)
665 #define file_set_verity(inode)  set_file(inode, FADVISE_VERITY_BIT)
666
667 #define DEF_DIR_LEVEL           0
668
669 enum {
670         GC_FAILURE_PIN,
671         GC_FAILURE_ATOMIC,
672         MAX_GC_FAILURE
673 };
674
675 struct f2fs_inode_info {
676         struct inode vfs_inode;         /* serve a vfs inode */
677         unsigned long i_flags;          /* keep an inode flags for ioctl */
678         unsigned char i_advise;         /* use to give file attribute hints */
679         unsigned char i_dir_level;      /* use for dentry level for large dir */
680         unsigned int i_current_depth;   /* only for directory depth */
681         /* for gc failure statistic */
682         unsigned int i_gc_failures[MAX_GC_FAILURE];
683         unsigned int i_pino;            /* parent inode number */
684         umode_t i_acl_mode;             /* keep file acl mode temporarily */
685
686         /* Use below internally in f2fs*/
687         unsigned long flags;            /* use to pass per-file flags */
688         struct rw_semaphore i_sem;      /* protect fi info */
689         atomic_t dirty_pages;           /* # of dirty pages */
690         f2fs_hash_t chash;              /* hash value of given file name */
691         unsigned int clevel;            /* maximum level of given file name */
692         struct task_struct *task;       /* lookup and create consistency */
693         struct task_struct *cp_task;    /* separate cp/wb IO stats*/
694         nid_t i_xattr_nid;              /* node id that contains xattrs */
695         loff_t  last_disk_size;         /* lastly written file size */
696
697 #ifdef CONFIG_QUOTA
698         struct dquot *i_dquot[MAXQUOTAS];
699
700         /* quota space reservation, managed internally by quota code */
701         qsize_t i_reserved_quota;
702 #endif
703         struct list_head dirty_list;    /* dirty list for dirs and files */
704         struct list_head gdirty_list;   /* linked in global dirty list */
705         struct list_head inmem_ilist;   /* list for inmem inodes */
706         struct list_head inmem_pages;   /* inmemory pages managed by f2fs */
707         struct task_struct *inmem_task; /* store inmemory task */
708         struct mutex inmem_lock;        /* lock for inmemory pages */
709         struct extent_tree *extent_tree;        /* cached extent_tree entry */
710
711         /* avoid racing between foreground op and gc */
712         struct rw_semaphore i_gc_rwsem[2];
713         struct rw_semaphore i_mmap_sem;
714         struct rw_semaphore i_xattr_sem; /* avoid racing between reading and changing EAs */
715
716         int i_extra_isize;              /* size of extra space located in i_addr */
717         kprojid_t i_projid;             /* id for project quota */
718         int i_inline_xattr_size;        /* inline xattr size */
719         struct timespec64 i_crtime;     /* inode creation time */
720         struct timespec64 i_disk_time[4];/* inode disk times */
721 };
722
723 static inline void get_extent_info(struct extent_info *ext,
724                                         struct f2fs_extent *i_ext)
725 {
726         ext->fofs = le32_to_cpu(i_ext->fofs);
727         ext->blk = le32_to_cpu(i_ext->blk);
728         ext->len = le32_to_cpu(i_ext->len);
729 }
730
731 static inline void set_raw_extent(struct extent_info *ext,
732                                         struct f2fs_extent *i_ext)
733 {
734         i_ext->fofs = cpu_to_le32(ext->fofs);
735         i_ext->blk = cpu_to_le32(ext->blk);
736         i_ext->len = cpu_to_le32(ext->len);
737 }
738
739 static inline void set_extent_info(struct extent_info *ei, unsigned int fofs,
740                                                 u32 blk, unsigned int len)
741 {
742         ei->fofs = fofs;
743         ei->blk = blk;
744         ei->len = len;
745 }
746
747 static inline bool __is_discard_mergeable(struct discard_info *back,
748                         struct discard_info *front, unsigned int max_len)
749 {
750         return (back->lstart + back->len == front->lstart) &&
751                 (back->len + front->len <= max_len);
752 }
753
754 static inline bool __is_discard_back_mergeable(struct discard_info *cur,
755                         struct discard_info *back, unsigned int max_len)
756 {
757         return __is_discard_mergeable(back, cur, max_len);
758 }
759
760 static inline bool __is_discard_front_mergeable(struct discard_info *cur,
761                         struct discard_info *front, unsigned int max_len)
762 {
763         return __is_discard_mergeable(cur, front, max_len);
764 }
765
766 static inline bool __is_extent_mergeable(struct extent_info *back,
767                                                 struct extent_info *front)
768 {
769         return (back->fofs + back->len == front->fofs &&
770                         back->blk + back->len == front->blk);
771 }
772
773 static inline bool __is_back_mergeable(struct extent_info *cur,
774                                                 struct extent_info *back)
775 {
776         return __is_extent_mergeable(back, cur);
777 }
778
779 static inline bool __is_front_mergeable(struct extent_info *cur,
780                                                 struct extent_info *front)
781 {
782         return __is_extent_mergeable(cur, front);
783 }
784
785 extern void f2fs_mark_inode_dirty_sync(struct inode *inode, bool sync);
786 static inline void __try_update_largest_extent(struct extent_tree *et,
787                                                 struct extent_node *en)
788 {
789         if (en->ei.len > et->largest.len) {
790                 et->largest = en->ei;
791                 et->largest_updated = true;
792         }
793 }
794
795 /*
796  * For free nid management
797  */
798 enum nid_state {
799         FREE_NID,               /* newly added to free nid list */
800         PREALLOC_NID,           /* it is preallocated */
801         MAX_NID_STATE,
802 };
803
804 enum nat_state {
805         TOTAL_NAT,
806         DIRTY_NAT,
807         RECLAIMABLE_NAT,
808         MAX_NAT_STATE,
809 };
810
811 struct f2fs_nm_info {
812         block_t nat_blkaddr;            /* base disk address of NAT */
813         nid_t max_nid;                  /* maximum possible node ids */
814         nid_t available_nids;           /* # of available node ids */
815         nid_t next_scan_nid;            /* the next nid to be scanned */
816         unsigned int ram_thresh;        /* control the memory footprint */
817         unsigned int ra_nid_pages;      /* # of nid pages to be readaheaded */
818         unsigned int dirty_nats_ratio;  /* control dirty nats ratio threshold */
819
820         /* NAT cache management */
821         struct radix_tree_root nat_root;/* root of the nat entry cache */
822         struct radix_tree_root nat_set_root;/* root of the nat set cache */
823         struct rw_semaphore nat_tree_lock;      /* protect nat_tree_lock */
824         struct list_head nat_entries;   /* cached nat entry list (clean) */
825         spinlock_t nat_list_lock;       /* protect clean nat entry list */
826         unsigned int nat_cnt[MAX_NAT_STATE]; /* the # of cached nat entries */
827         unsigned int nat_blocks;        /* # of nat blocks */
828
829         /* free node ids management */
830         struct radix_tree_root free_nid_root;/* root of the free_nid cache */
831         struct list_head free_nid_list;         /* list for free nids excluding preallocated nids */
832         unsigned int nid_cnt[MAX_NID_STATE];    /* the number of free node id */
833         spinlock_t nid_list_lock;       /* protect nid lists ops */
834         struct mutex build_lock;        /* lock for build free nids */
835         unsigned char **free_nid_bitmap;
836         unsigned char *nat_block_bitmap;
837         unsigned short *free_nid_count; /* free nid count of NAT block */
838
839         /* for checkpoint */
840         char *nat_bitmap;               /* NAT bitmap pointer */
841
842         unsigned int nat_bits_blocks;   /* # of nat bits blocks */
843         unsigned char *nat_bits;        /* NAT bits blocks */
844         unsigned char *full_nat_bits;   /* full NAT pages */
845         unsigned char *empty_nat_bits;  /* empty NAT pages */
846 #ifdef CONFIG_F2FS_CHECK_FS
847         char *nat_bitmap_mir;           /* NAT bitmap mirror */
848 #endif
849         int bitmap_size;                /* bitmap size */
850 };
851
852 /*
853  * this structure is used as one of function parameters.
854  * all the information are dedicated to a given direct node block determined
855  * by the data offset in a file.
856  */
857 struct dnode_of_data {
858         struct inode *inode;            /* vfs inode pointer */
859         struct page *inode_page;        /* its inode page, NULL is possible */
860         struct page *node_page;         /* cached direct node page */
861         nid_t nid;                      /* node id of the direct node block */
862         unsigned int ofs_in_node;       /* data offset in the node page */
863         bool inode_page_locked;         /* inode page is locked or not */
864         bool node_changed;              /* is node block changed */
865         char cur_level;                 /* level of hole node page */
866         char max_level;                 /* level of current page located */
867         block_t data_blkaddr;           /* block address of the node block */
868 };
869
870 static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode,
871                 struct page *ipage, struct page *npage, nid_t nid)
872 {
873         memset(dn, 0, sizeof(*dn));
874         dn->inode = inode;
875         dn->inode_page = ipage;
876         dn->node_page = npage;
877         dn->nid = nid;
878 }
879
880 /*
881  * For SIT manager
882  *
883  * By default, there are 6 active log areas across the whole main area.
884  * When considering hot and cold data separation to reduce cleaning overhead,
885  * we split 3 for data logs and 3 for node logs as hot, warm, and cold types,
886  * respectively.
887  * In the current design, you should not change the numbers intentionally.
888  * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6
889  * logs individually according to the underlying devices. (default: 6)
890  * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for
891  * data and 8 for node logs.
892  */
893 #define NR_CURSEG_DATA_TYPE     (3)
894 #define NR_CURSEG_NODE_TYPE     (3)
895 #define NR_CURSEG_TYPE  (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE)
896
897 enum {
898         CURSEG_HOT_DATA = 0,    /* directory entry blocks */
899         CURSEG_WARM_DATA,       /* data blocks */
900         CURSEG_COLD_DATA,       /* multimedia or GCed data blocks */
901         CURSEG_HOT_NODE,        /* direct node blocks of directory files */
902         CURSEG_WARM_NODE,       /* direct node blocks of normal files */
903         CURSEG_COLD_NODE,       /* indirect node blocks */
904         NO_CHECK_TYPE,
905 };
906
907 struct flush_cmd {
908         struct completion wait;
909         struct llist_node llnode;
910         nid_t ino;
911         int ret;
912 };
913
914 struct flush_cmd_control {
915         struct task_struct *f2fs_issue_flush;   /* flush thread */
916         wait_queue_head_t flush_wait_queue;     /* waiting queue for wake-up */
917         atomic_t issued_flush;                  /* # of issued flushes */
918         atomic_t queued_flush;                  /* # of queued flushes */
919         struct llist_head issue_list;           /* list for command issue */
920         struct llist_node *dispatch_list;       /* list for command dispatch */
921 };
922
923 struct f2fs_sm_info {
924         struct sit_info *sit_info;              /* whole segment information */
925         struct free_segmap_info *free_info;     /* free segment information */
926         struct dirty_seglist_info *dirty_info;  /* dirty segment information */
927         struct curseg_info *curseg_array;       /* active segment information */
928
929         struct rw_semaphore curseg_lock;        /* for preventing curseg change */
930
931         block_t seg0_blkaddr;           /* block address of 0'th segment */
932         block_t main_blkaddr;           /* start block address of main area */
933         block_t ssa_blkaddr;            /* start block address of SSA area */
934
935         unsigned int segment_count;     /* total # of segments */
936         unsigned int main_segments;     /* # of segments in main area */
937         unsigned int reserved_segments; /* # of reserved segments */
938         unsigned int additional_reserved_segments;/* reserved segs for IO align feature */
939         unsigned int ovp_segments;      /* # of overprovision segments */
940
941         /* a threshold to reclaim prefree segments */
942         unsigned int rec_prefree_segments;
943
944         /* for batched trimming */
945         unsigned int trim_sections;             /* # of sections to trim */
946
947         struct list_head sit_entry_set; /* sit entry set list */
948
949         unsigned int ipu_policy;        /* in-place-update policy */
950         unsigned int min_ipu_util;      /* in-place-update threshold */
951         unsigned int min_fsync_blocks;  /* threshold for fsync */
952         unsigned int min_seq_blocks;    /* threshold for sequential blocks */
953         unsigned int min_hot_blocks;    /* threshold for hot block allocation */
954         unsigned int min_ssr_sections;  /* threshold to trigger SSR allocation */
955
956         /* for flush command control */
957         struct flush_cmd_control *fcc_info;
958
959         /* for discard command control */
960         struct discard_cmd_control *dcc_info;
961 };
962
963 /*
964  * For superblock
965  */
966 /*
967  * COUNT_TYPE for monitoring
968  *
969  * f2fs monitors the number of several block types such as on-writeback,
970  * dirty dentry blocks, dirty node blocks, and dirty meta blocks.
971  */
972 #define WB_DATA_TYPE(p) (__is_cp_guaranteed(p) ? F2FS_WB_CP_DATA : F2FS_WB_DATA)
973 enum count_type {
974         F2FS_DIRTY_DENTS,
975         F2FS_DIRTY_DATA,
976         F2FS_DIRTY_QDATA,
977         F2FS_DIRTY_NODES,
978         F2FS_DIRTY_META,
979         F2FS_INMEM_PAGES,
980         F2FS_DIRTY_IMETA,
981         F2FS_WB_CP_DATA,
982         F2FS_WB_DATA,
983         F2FS_RD_DATA,
984         F2FS_RD_NODE,
985         F2FS_RD_META,
986         F2FS_DIO_WRITE,
987         F2FS_DIO_READ,
988         NR_COUNT_TYPE,
989 };
990
991 /*
992  * The below are the page types of bios used in submit_bio().
993  * The available types are:
994  * DATA                 User data pages. It operates as async mode.
995  * NODE                 Node pages. It operates as async mode.
996  * META                 FS metadata pages such as SIT, NAT, CP.
997  * NR_PAGE_TYPE         The number of page types.
998  * META_FLUSH           Make sure the previous pages are written
999  *                      with waiting the bio's completion
1000  * ...                  Only can be used with META.
1001  */
1002 #define PAGE_TYPE_OF_BIO(type)  ((type) > META ? META : (type))
1003 enum page_type {
1004         DATA,
1005         NODE,
1006         META,
1007         NR_PAGE_TYPE,
1008         META_FLUSH,
1009         INMEM,          /* the below types are used by tracepoints only. */
1010         INMEM_DROP,
1011         INMEM_INVALIDATE,
1012         INMEM_REVOKE,
1013         IPU,
1014         OPU,
1015 };
1016
1017 enum temp_type {
1018         HOT = 0,        /* must be zero for meta bio */
1019         WARM,
1020         COLD,
1021         NR_TEMP_TYPE,
1022 };
1023
1024 enum need_lock_type {
1025         LOCK_REQ = 0,
1026         LOCK_DONE,
1027         LOCK_RETRY,
1028 };
1029
1030 enum cp_reason_type {
1031         CP_NO_NEEDED,
1032         CP_NON_REGULAR,
1033         CP_HARDLINK,
1034         CP_SB_NEED_CP,
1035         CP_WRONG_PINO,
1036         CP_NO_SPC_ROLL,
1037         CP_NODE_NEED_CP,
1038         CP_FASTBOOT_MODE,
1039         CP_SPEC_LOG_NUM,
1040         CP_RECOVER_DIR,
1041 };
1042
1043 enum iostat_type {
1044         APP_DIRECT_IO,                  /* app direct IOs */
1045         APP_BUFFERED_IO,                /* app buffered IOs */
1046         APP_WRITE_IO,                   /* app write IOs */
1047         APP_MAPPED_IO,                  /* app mapped IOs */
1048         FS_DATA_IO,                     /* data IOs from kworker/fsync/reclaimer */
1049         FS_NODE_IO,                     /* node IOs from kworker/fsync/reclaimer */
1050         FS_META_IO,                     /* meta IOs from kworker/reclaimer */
1051         FS_GC_DATA_IO,                  /* data IOs from forground gc */
1052         FS_GC_NODE_IO,                  /* node IOs from forground gc */
1053         FS_CP_DATA_IO,                  /* data IOs from checkpoint */
1054         FS_CP_NODE_IO,                  /* node IOs from checkpoint */
1055         FS_CP_META_IO,                  /* meta IOs from checkpoint */
1056         FS_DISCARD,                     /* discard */
1057         NR_IO_TYPE,
1058 };
1059
1060 struct f2fs_io_info {
1061         struct f2fs_sb_info *sbi;       /* f2fs_sb_info pointer */
1062         nid_t ino;              /* inode number */
1063         enum page_type type;    /* contains DATA/NODE/META/META_FLUSH */
1064         enum temp_type temp;    /* contains HOT/WARM/COLD */
1065         int op;                 /* contains REQ_OP_ */
1066         int op_flags;           /* req_flag_bits */
1067         block_t new_blkaddr;    /* new block address to be written */
1068         block_t old_blkaddr;    /* old block address before Cow */
1069         struct page *page;      /* page to be written */
1070         struct page *encrypted_page;    /* encrypted page */
1071         struct list_head list;          /* serialize IOs */
1072         bool submitted;         /* indicate IO submission */
1073         int need_lock;          /* indicate we need to lock cp_rwsem */
1074         bool in_list;           /* indicate fio is in io_list */
1075         bool is_por;            /* indicate IO is from recovery or not */
1076         bool retry;             /* need to reallocate block address */
1077         enum iostat_type io_type;       /* io type */
1078         struct writeback_control *io_wbc; /* writeback control */
1079         struct bio **bio;               /* bio for ipu */
1080         sector_t *last_block;           /* last block number in bio */
1081         unsigned char version;          /* version of the node */
1082 };
1083
1084 #define is_read_io(rw) ((rw) == READ)
1085 struct f2fs_bio_info {
1086         struct f2fs_sb_info *sbi;       /* f2fs superblock */
1087         struct bio *bio;                /* bios to merge */
1088         sector_t last_block_in_bio;     /* last block number */
1089         struct f2fs_io_info fio;        /* store buffered io info. */
1090         struct rw_semaphore io_rwsem;   /* blocking op for bio */
1091         spinlock_t io_lock;             /* serialize DATA/NODE IOs */
1092         struct list_head io_list;       /* track fios */
1093 };
1094
1095 #define FDEV(i)                         (sbi->devs[i])
1096 #define RDEV(i)                         (raw_super->devs[i])
1097 struct f2fs_dev_info {
1098         struct block_device *bdev;
1099         char path[MAX_PATH_LEN];
1100         unsigned int total_segments;
1101         block_t start_blk;
1102         block_t end_blk;
1103 #ifdef CONFIG_BLK_DEV_ZONED
1104         unsigned int nr_blkz;           /* Total number of zones */
1105         unsigned long *blkz_seq;        /* Bitmap indicating sequential zones */
1106 #endif
1107 };
1108
1109 enum inode_type {
1110         DIR_INODE,                      /* for dirty dir inode */
1111         FILE_INODE,                     /* for dirty regular/symlink inode */
1112         DIRTY_META,                     /* for all dirtied inode metadata */
1113         ATOMIC_FILE,                    /* for all atomic files */
1114         NR_INODE_TYPE,
1115 };
1116
1117 /* for inner inode cache management */
1118 struct inode_management {
1119         struct radix_tree_root ino_root;        /* ino entry array */
1120         spinlock_t ino_lock;                    /* for ino entry lock */
1121         struct list_head ino_list;              /* inode list head */
1122         unsigned long ino_num;                  /* number of entries */
1123 };
1124
1125 /* For s_flag in struct f2fs_sb_info */
1126 enum {
1127         SBI_IS_DIRTY,                           /* dirty flag for checkpoint */
1128         SBI_IS_CLOSE,                           /* specify unmounting */
1129         SBI_NEED_FSCK,                          /* need fsck.f2fs to fix */
1130         SBI_POR_DOING,                          /* recovery is doing or not */
1131         SBI_NEED_SB_WRITE,                      /* need to recover superblock */
1132         SBI_NEED_CP,                            /* need to checkpoint */
1133         SBI_IS_SHUTDOWN,                        /* shutdown by ioctl */
1134         SBI_IS_RECOVERED,                       /* recovered orphan/data */
1135         SBI_CP_DISABLED,                        /* CP was disabled last mount */
1136         SBI_CP_DISABLED_QUICK,                  /* CP was disabled quickly */
1137         SBI_QUOTA_NEED_FLUSH,                   /* need to flush quota info in CP */
1138         SBI_QUOTA_SKIP_FLUSH,                   /* skip flushing quota in current CP */
1139         SBI_QUOTA_NEED_REPAIR,                  /* quota file may be corrupted */
1140         SBI_IS_RESIZEFS,                        /* resizefs is in process */
1141 };
1142
1143 enum {
1144         CP_TIME,
1145         REQ_TIME,
1146         DISCARD_TIME,
1147         GC_TIME,
1148         DISABLE_TIME,
1149         UMOUNT_DISCARD_TIMEOUT,
1150         MAX_TIME,
1151 };
1152
1153 enum {
1154         GC_NORMAL,
1155         GC_IDLE_CB,
1156         GC_IDLE_GREEDY,
1157         GC_URGENT,
1158 };
1159
1160 enum {
1161         WHINT_MODE_OFF,         /* not pass down write hints */
1162         WHINT_MODE_USER,        /* try to pass down hints given by users */
1163         WHINT_MODE_FS,          /* pass down hints with F2FS policy */
1164 };
1165
1166 enum {
1167         ALLOC_MODE_DEFAULT,     /* stay default */
1168         ALLOC_MODE_REUSE,       /* reuse segments as much as possible */
1169 };
1170
1171 enum fsync_mode {
1172         FSYNC_MODE_POSIX,       /* fsync follows posix semantics */
1173         FSYNC_MODE_STRICT,      /* fsync behaves in line with ext4 */
1174         FSYNC_MODE_NOBARRIER,   /* fsync behaves nobarrier based on posix */
1175 };
1176
1177 #ifdef CONFIG_FS_ENCRYPTION
1178 #define DUMMY_ENCRYPTION_ENABLED(sbi) \
1179                         (unlikely(F2FS_OPTION(sbi).test_dummy_encryption))
1180 #else
1181 #define DUMMY_ENCRYPTION_ENABLED(sbi) (0)
1182 #endif
1183
1184 struct f2fs_sb_info {
1185         struct super_block *sb;                 /* pointer to VFS super block */
1186         struct proc_dir_entry *s_proc;          /* proc entry */
1187         struct f2fs_super_block *raw_super;     /* raw super block pointer */
1188         struct rw_semaphore sb_lock;            /* lock for raw super block */
1189         int valid_super_block;                  /* valid super block no */
1190         unsigned long s_flag;                           /* flags for sbi */
1191         struct mutex writepages;                /* mutex for writepages() */
1192 #ifdef CONFIG_UNICODE
1193         struct unicode_map *s_encoding;
1194         __u16 s_encoding_flags;
1195 #endif
1196
1197 #ifdef CONFIG_BLK_DEV_ZONED
1198         unsigned int blocks_per_blkz;           /* F2FS blocks per zone */
1199         unsigned int log_blocks_per_blkz;       /* log2 F2FS blocks per zone */
1200 #endif
1201
1202         /* for node-related operations */
1203         struct f2fs_nm_info *nm_info;           /* node manager */
1204         struct inode *node_inode;               /* cache node blocks */
1205
1206         /* for segment-related operations */
1207         struct f2fs_sm_info *sm_info;           /* segment manager */
1208
1209         /* for bio operations */
1210         struct f2fs_bio_info *write_io[NR_PAGE_TYPE];   /* for write bios */
1211         /* keep migration IO order for LFS mode */
1212         struct rw_semaphore io_order_lock;
1213         mempool_t *write_io_dummy;              /* Dummy pages */
1214
1215         /* for checkpoint */
1216         struct f2fs_checkpoint *ckpt;           /* raw checkpoint pointer */
1217         int cur_cp_pack;                        /* remain current cp pack */
1218         spinlock_t cp_lock;                     /* for flag in ckpt */
1219         struct inode *meta_inode;               /* cache meta blocks */
1220         struct mutex cp_mutex;                  /* checkpoint procedure lock */
1221         struct rw_semaphore cp_rwsem;           /* blocking FS operations */
1222         struct rw_semaphore node_write;         /* locking node writes */
1223         struct rw_semaphore node_change;        /* locking node change */
1224         wait_queue_head_t cp_wait;
1225         unsigned long last_time[MAX_TIME];      /* to store time in jiffies */
1226         long interval_time[MAX_TIME];           /* to store thresholds */
1227
1228         struct inode_management im[MAX_INO_ENTRY];      /* manage inode cache */
1229
1230         spinlock_t fsync_node_lock;             /* for node entry lock */
1231         struct list_head fsync_node_list;       /* node list head */
1232         unsigned int fsync_seg_id;              /* sequence id */
1233         unsigned int fsync_node_num;            /* number of node entries */
1234
1235         /* for orphan inode, use 0'th array */
1236         unsigned int max_orphans;               /* max orphan inodes */
1237
1238         /* for inode management */
1239         struct list_head inode_list[NR_INODE_TYPE];     /* dirty inode list */
1240         spinlock_t inode_lock[NR_INODE_TYPE];   /* for dirty inode list lock */
1241         struct mutex flush_lock;                /* for flush exclusion */
1242
1243         /* for extent tree cache */
1244         struct radix_tree_root extent_tree_root;/* cache extent cache entries */
1245         struct mutex extent_tree_lock;  /* locking extent radix tree */
1246         struct list_head extent_list;           /* lru list for shrinker */
1247         spinlock_t extent_lock;                 /* locking extent lru list */
1248         atomic_t total_ext_tree;                /* extent tree count */
1249         struct list_head zombie_list;           /* extent zombie tree list */
1250         atomic_t total_zombie_tree;             /* extent zombie tree count */
1251         atomic_t total_ext_node;                /* extent info count */
1252
1253         /* basic filesystem units */
1254         unsigned int log_sectors_per_block;     /* log2 sectors per block */
1255         unsigned int log_blocksize;             /* log2 block size */
1256         unsigned int blocksize;                 /* block size */
1257         unsigned int root_ino_num;              /* root inode number*/
1258         unsigned int node_ino_num;              /* node inode number*/
1259         unsigned int meta_ino_num;              /* meta inode number*/
1260         unsigned int log_blocks_per_seg;        /* log2 blocks per segment */
1261         unsigned int blocks_per_seg;            /* blocks per segment */
1262         unsigned int segs_per_sec;              /* segments per section */
1263         unsigned int secs_per_zone;             /* sections per zone */
1264         unsigned int total_sections;            /* total section count */
1265         struct mutex resize_mutex;              /* for resize exclusion */
1266         unsigned int total_node_count;          /* total node block count */
1267         unsigned int total_valid_node_count;    /* valid node block count */
1268         loff_t max_file_blocks;                 /* max block index of file */
1269         int dir_level;                          /* directory level */
1270         int readdir_ra;                         /* readahead inode in readdir */
1271
1272         block_t user_block_count;               /* # of user blocks */
1273         block_t total_valid_block_count;        /* # of valid blocks */
1274         block_t discard_blks;                   /* discard command candidats */
1275         block_t last_valid_block_count;         /* for recovery */
1276         block_t reserved_blocks;                /* configurable reserved blocks */
1277         block_t current_reserved_blocks;        /* current reserved blocks */
1278
1279         /* Additional tracking for no checkpoint mode */
1280         block_t unusable_block_count;           /* # of blocks saved by last cp */
1281
1282         unsigned int nquota_files;              /* # of quota sysfile */
1283         struct rw_semaphore quota_sem;          /* blocking cp for flags */
1284
1285         /* # of pages, see count_type */
1286         atomic_t nr_pages[NR_COUNT_TYPE];
1287         /* # of allocated blocks */
1288         struct percpu_counter alloc_valid_block_count;
1289
1290         /* writeback control */
1291         atomic_t wb_sync_req[META];     /* count # of WB_SYNC threads */
1292
1293         /* valid inode count */
1294         struct percpu_counter total_valid_inode_count;
1295
1296         struct f2fs_mount_info mount_opt;       /* mount options */
1297
1298         /* for cleaning operations */
1299         struct mutex gc_mutex;                  /* mutex for GC */
1300         struct f2fs_gc_kthread  *gc_thread;     /* GC thread */
1301         unsigned int cur_victim_sec;            /* current victim section num */
1302         unsigned int gc_mode;                   /* current GC state */
1303         unsigned int next_victim_seg[2];        /* next segment in victim section */
1304         /* for skip statistic */
1305         unsigned int atomic_files;              /* # of opened atomic file */
1306         unsigned long long skipped_atomic_files[2];     /* FG_GC and BG_GC */
1307         unsigned long long skipped_gc_rwsem;            /* FG_GC only */
1308
1309         /* threshold for gc trials on pinned files */
1310         u64 gc_pin_file_threshold;
1311
1312         /* maximum # of trials to find a victim segment for SSR and GC */
1313         unsigned int max_victim_search;
1314         /* migration granularity of garbage collection, unit: segment */
1315         unsigned int migration_granularity;
1316
1317         /*
1318          * for stat information.
1319          * one is for the LFS mode, and the other is for the SSR mode.
1320          */
1321 #ifdef CONFIG_F2FS_STAT_FS
1322         struct f2fs_stat_info *stat_info;       /* FS status information */
1323         atomic_t meta_count[META_MAX];          /* # of meta blocks */
1324         unsigned int segment_count[2];          /* # of allocated segments */
1325         unsigned int block_count[2];            /* # of allocated blocks */
1326         atomic_t inplace_count;         /* # of inplace update */
1327         atomic64_t total_hit_ext;               /* # of lookup extent cache */
1328         atomic64_t read_hit_rbtree;             /* # of hit rbtree extent node */
1329         atomic64_t read_hit_largest;            /* # of hit largest extent node */
1330         atomic64_t read_hit_cached;             /* # of hit cached extent node */
1331         atomic_t inline_xattr;                  /* # of inline_xattr inodes */
1332         atomic_t inline_inode;                  /* # of inline_data inodes */
1333         atomic_t inline_dir;                    /* # of inline_dentry inodes */
1334         atomic_t aw_cnt;                        /* # of atomic writes */
1335         atomic_t vw_cnt;                        /* # of volatile writes */
1336         atomic_t max_aw_cnt;                    /* max # of atomic writes */
1337         atomic_t max_vw_cnt;                    /* max # of volatile writes */
1338         int bg_gc;                              /* background gc calls */
1339         unsigned int io_skip_bggc;              /* skip background gc for in-flight IO */
1340         unsigned int other_skip_bggc;           /* skip background gc for other reasons */
1341         unsigned int ndirty_inode[NR_INODE_TYPE];       /* # of dirty inodes */
1342 #endif
1343         spinlock_t stat_lock;                   /* lock for stat operations */
1344
1345         /* For app/fs IO statistics */
1346         spinlock_t iostat_lock;
1347         unsigned long long write_iostat[NR_IO_TYPE];
1348         bool iostat_enable;
1349
1350         /* For sysfs suppport */
1351         struct kobject s_kobj;
1352         struct completion s_kobj_unregister;
1353
1354         /* For shrinker support */
1355         struct list_head s_list;
1356         int s_ndevs;                            /* number of devices */
1357         struct f2fs_dev_info *devs;             /* for device list */
1358         unsigned int dirty_device;              /* for checkpoint data flush */
1359         spinlock_t dev_lock;                    /* protect dirty_device */
1360         struct mutex umount_mutex;
1361         unsigned int shrinker_run_no;
1362
1363         /* For write statistics */
1364         u64 sectors_written_start;
1365         u64 kbytes_written;
1366
1367         /* Reference to checksum algorithm driver via cryptoapi */
1368         struct crypto_shash *s_chksum_driver;
1369
1370         /* Precomputed FS UUID checksum for seeding other checksums */
1371         __u32 s_chksum_seed;
1372 };
1373
1374 struct f2fs_private_dio {
1375         struct inode *inode;
1376         void *orig_private;
1377         bio_end_io_t *orig_end_io;
1378         bool write;
1379 };
1380
1381 #ifdef CONFIG_F2FS_FAULT_INJECTION
1382 #define f2fs_show_injection_info(sbi, type)                                     \
1383         printk_ratelimited("%sF2FS-fs (%s) : inject %s in %s of %pS\n", \
1384                 KERN_INFO, sbi->sb->s_id,                               \
1385                 f2fs_fault_name[type],                                  \
1386                 __func__, __builtin_return_address(0))
1387 static inline bool time_to_inject(struct f2fs_sb_info *sbi, int type)
1388 {
1389         struct f2fs_fault_info *ffi = &F2FS_OPTION(sbi).fault_info;
1390
1391         if (!ffi->inject_rate)
1392                 return false;
1393
1394         if (!IS_FAULT_SET(ffi, type))
1395                 return false;
1396
1397         atomic_inc(&ffi->inject_ops);
1398         if (atomic_read(&ffi->inject_ops) >= ffi->inject_rate) {
1399                 atomic_set(&ffi->inject_ops, 0);
1400                 return true;
1401         }
1402         return false;
1403 }
1404 #else
1405 #define f2fs_show_injection_info(sbi, type) do { } while (0)
1406 static inline bool time_to_inject(struct f2fs_sb_info *sbi, int type)
1407 {
1408         return false;
1409 }
1410 #endif
1411
1412 /*
1413  * Test if the mounted volume is a multi-device volume.
1414  *   - For a single regular disk volume, sbi->s_ndevs is 0.
1415  *   - For a single zoned disk volume, sbi->s_ndevs is 1.
1416  *   - For a multi-device volume, sbi->s_ndevs is always 2 or more.
1417  */
1418 static inline bool f2fs_is_multi_device(struct f2fs_sb_info *sbi)
1419 {
1420         return sbi->s_ndevs > 1;
1421 }
1422
1423 /* For write statistics. Suppose sector size is 512 bytes,
1424  * and the return value is in kbytes. s is of struct f2fs_sb_info.
1425  */
1426 #define BD_PART_WRITTEN(s)                                               \
1427 (((u64)part_stat_read((s)->sb->s_bdev->bd_part, sectors[STAT_WRITE]) -   \
1428                 (s)->sectors_written_start) >> 1)
1429
1430 static inline void f2fs_update_time(struct f2fs_sb_info *sbi, int type)
1431 {
1432         unsigned long now = jiffies;
1433
1434         sbi->last_time[type] = now;
1435
1436         /* DISCARD_TIME and GC_TIME are based on REQ_TIME */
1437         if (type == REQ_TIME) {
1438                 sbi->last_time[DISCARD_TIME] = now;
1439                 sbi->last_time[GC_TIME] = now;
1440         }
1441 }
1442
1443 static inline bool f2fs_time_over(struct f2fs_sb_info *sbi, int type)
1444 {
1445         unsigned long interval = sbi->interval_time[type] * HZ;
1446
1447         return time_after(jiffies, sbi->last_time[type] + interval);
1448 }
1449
1450 static inline unsigned int f2fs_time_to_wait(struct f2fs_sb_info *sbi,
1451                                                 int type)
1452 {
1453         unsigned long interval = sbi->interval_time[type] * HZ;
1454         unsigned int wait_ms = 0;
1455         long delta;
1456
1457         delta = (sbi->last_time[type] + interval) - jiffies;
1458         if (delta > 0)
1459                 wait_ms = jiffies_to_msecs(delta);
1460
1461         return wait_ms;
1462 }
1463
1464 /*
1465  * Inline functions
1466  */
1467 static inline u32 __f2fs_crc32(struct f2fs_sb_info *sbi, u32 crc,
1468                               const void *address, unsigned int length)
1469 {
1470         struct {
1471                 struct shash_desc shash;
1472                 char ctx[4];
1473         } desc;
1474         int err;
1475
1476         BUG_ON(crypto_shash_descsize(sbi->s_chksum_driver) != sizeof(desc.ctx));
1477
1478         desc.shash.tfm = sbi->s_chksum_driver;
1479         *(u32 *)desc.ctx = crc;
1480
1481         err = crypto_shash_update(&desc.shash, address, length);
1482         BUG_ON(err);
1483
1484         return *(u32 *)desc.ctx;
1485 }
1486
1487 static inline u32 f2fs_crc32(struct f2fs_sb_info *sbi, const void *address,
1488                            unsigned int length)
1489 {
1490         return __f2fs_crc32(sbi, F2FS_SUPER_MAGIC, address, length);
1491 }
1492
1493 static inline bool f2fs_crc_valid(struct f2fs_sb_info *sbi, __u32 blk_crc,
1494                                   void *buf, size_t buf_size)
1495 {
1496         return f2fs_crc32(sbi, buf, buf_size) == blk_crc;
1497 }
1498
1499 static inline u32 f2fs_chksum(struct f2fs_sb_info *sbi, u32 crc,
1500                               const void *address, unsigned int length)
1501 {
1502         return __f2fs_crc32(sbi, crc, address, length);
1503 }
1504
1505 static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
1506 {
1507         return container_of(inode, struct f2fs_inode_info, vfs_inode);
1508 }
1509
1510 static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb)
1511 {
1512         return sb->s_fs_info;
1513 }
1514
1515 static inline struct f2fs_sb_info *F2FS_I_SB(struct inode *inode)
1516 {
1517         return F2FS_SB(inode->i_sb);
1518 }
1519
1520 static inline struct f2fs_sb_info *F2FS_M_SB(struct address_space *mapping)
1521 {
1522         return F2FS_I_SB(mapping->host);
1523 }
1524
1525 static inline struct f2fs_sb_info *F2FS_P_SB(struct page *page)
1526 {
1527         return F2FS_M_SB(page_file_mapping(page));
1528 }
1529
1530 static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi)
1531 {
1532         return (struct f2fs_super_block *)(sbi->raw_super);
1533 }
1534
1535 static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi)
1536 {
1537         return (struct f2fs_checkpoint *)(sbi->ckpt);
1538 }
1539
1540 static inline struct f2fs_node *F2FS_NODE(struct page *page)
1541 {
1542         return (struct f2fs_node *)page_address(page);
1543 }
1544
1545 static inline struct f2fs_inode *F2FS_INODE(struct page *page)
1546 {
1547         return &((struct f2fs_node *)page_address(page))->i;
1548 }
1549
1550 static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi)
1551 {
1552         return (struct f2fs_nm_info *)(sbi->nm_info);
1553 }
1554
1555 static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi)
1556 {
1557         return (struct f2fs_sm_info *)(sbi->sm_info);
1558 }
1559
1560 static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi)
1561 {
1562         return (struct sit_info *)(SM_I(sbi)->sit_info);
1563 }
1564
1565 static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi)
1566 {
1567         return (struct free_segmap_info *)(SM_I(sbi)->free_info);
1568 }
1569
1570 static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi)
1571 {
1572         return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info);
1573 }
1574
1575 static inline struct address_space *META_MAPPING(struct f2fs_sb_info *sbi)
1576 {
1577         return sbi->meta_inode->i_mapping;
1578 }
1579
1580 static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi)
1581 {
1582         return sbi->node_inode->i_mapping;
1583 }
1584
1585 static inline bool is_sbi_flag_set(struct f2fs_sb_info *sbi, unsigned int type)
1586 {
1587         return test_bit(type, &sbi->s_flag);
1588 }
1589
1590 static inline void set_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
1591 {
1592         set_bit(type, &sbi->s_flag);
1593 }
1594
1595 static inline void clear_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type)
1596 {
1597         clear_bit(type, &sbi->s_flag);
1598 }
1599
1600 static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp)
1601 {
1602         return le64_to_cpu(cp->checkpoint_ver);
1603 }
1604
1605 static inline unsigned long f2fs_qf_ino(struct super_block *sb, int type)
1606 {
1607         if (type < F2FS_MAX_QUOTAS)
1608                 return le32_to_cpu(F2FS_SB(sb)->raw_super->qf_ino[type]);
1609         return 0;
1610 }
1611
1612 static inline __u64 cur_cp_crc(struct f2fs_checkpoint *cp)
1613 {
1614         size_t crc_offset = le32_to_cpu(cp->checksum_offset);
1615         return le32_to_cpu(*((__le32 *)((unsigned char *)cp + crc_offset)));
1616 }
1617
1618 static inline bool __is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
1619 {
1620         unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags);
1621
1622         return ckpt_flags & f;
1623 }
1624
1625 static inline bool is_set_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f)
1626 {
1627         return __is_set_ckpt_flags(F2FS_CKPT(sbi), f);
1628 }
1629
1630 static inline void __set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
1631 {
1632         unsigned int ckpt_flags;
1633
1634         ckpt_flags = le32_to_cpu(cp->ckpt_flags);
1635         ckpt_flags |= f;
1636         cp->ckpt_flags = cpu_to_le32(ckpt_flags);
1637 }
1638
1639 static inline void set_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f)
1640 {
1641         unsigned long flags;
1642
1643         spin_lock_irqsave(&sbi->cp_lock, flags);
1644         __set_ckpt_flags(F2FS_CKPT(sbi), f);
1645         spin_unlock_irqrestore(&sbi->cp_lock, flags);
1646 }
1647
1648 static inline void __clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f)
1649 {
1650         unsigned int ckpt_flags;
1651
1652         ckpt_flags = le32_to_cpu(cp->ckpt_flags);
1653         ckpt_flags &= (~f);
1654         cp->ckpt_flags = cpu_to_le32(ckpt_flags);
1655 }
1656
1657 static inline void clear_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f)
1658 {
1659         unsigned long flags;
1660
1661         spin_lock_irqsave(&sbi->cp_lock, flags);
1662         __clear_ckpt_flags(F2FS_CKPT(sbi), f);
1663         spin_unlock_irqrestore(&sbi->cp_lock, flags);
1664 }
1665
1666 static inline void disable_nat_bits(struct f2fs_sb_info *sbi, bool lock)
1667 {
1668         unsigned long flags;
1669         unsigned char *nat_bits;
1670
1671         /*
1672          * In order to re-enable nat_bits we need to call fsck.f2fs by
1673          * set_sbi_flag(sbi, SBI_NEED_FSCK). But it may give huge cost,
1674          * so let's rely on regular fsck or unclean shutdown.
1675          */
1676
1677         if (lock)
1678                 spin_lock_irqsave(&sbi->cp_lock, flags);
1679         __clear_ckpt_flags(F2FS_CKPT(sbi), CP_NAT_BITS_FLAG);
1680         nat_bits = NM_I(sbi)->nat_bits;
1681         NM_I(sbi)->nat_bits = NULL;
1682         if (lock)
1683                 spin_unlock_irqrestore(&sbi->cp_lock, flags);
1684
1685         kvfree(nat_bits);
1686 }
1687
1688 static inline bool enabled_nat_bits(struct f2fs_sb_info *sbi,
1689                                         struct cp_control *cpc)
1690 {
1691         bool set = is_set_ckpt_flags(sbi, CP_NAT_BITS_FLAG);
1692
1693         return (cpc) ? (cpc->reason & CP_UMOUNT) && set : set;
1694 }
1695
1696 static inline void f2fs_lock_op(struct f2fs_sb_info *sbi)
1697 {
1698         down_read(&sbi->cp_rwsem);
1699 }
1700
1701 static inline int f2fs_trylock_op(struct f2fs_sb_info *sbi)
1702 {
1703         return down_read_trylock(&sbi->cp_rwsem);
1704 }
1705
1706 static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi)
1707 {
1708         up_read(&sbi->cp_rwsem);
1709 }
1710
1711 static inline void f2fs_lock_all(struct f2fs_sb_info *sbi)
1712 {
1713         down_write(&sbi->cp_rwsem);
1714 }
1715
1716 static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi)
1717 {
1718         up_write(&sbi->cp_rwsem);
1719 }
1720
1721 static inline int __get_cp_reason(struct f2fs_sb_info *sbi)
1722 {
1723         int reason = CP_SYNC;
1724
1725         if (test_opt(sbi, FASTBOOT))
1726                 reason = CP_FASTBOOT;
1727         if (is_sbi_flag_set(sbi, SBI_IS_CLOSE))
1728                 reason = CP_UMOUNT;
1729         return reason;
1730 }
1731
1732 static inline bool __remain_node_summaries(int reason)
1733 {
1734         return (reason & (CP_UMOUNT | CP_FASTBOOT));
1735 }
1736
1737 static inline bool __exist_node_summaries(struct f2fs_sb_info *sbi)
1738 {
1739         return (is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG) ||
1740                         is_set_ckpt_flags(sbi, CP_FASTBOOT_FLAG));
1741 }
1742
1743 /*
1744  * Check whether the inode has blocks or not
1745  */
1746 static inline int F2FS_HAS_BLOCKS(struct inode *inode)
1747 {
1748         block_t xattr_block = F2FS_I(inode)->i_xattr_nid ? 1 : 0;
1749
1750         return (inode->i_blocks >> F2FS_LOG_SECTORS_PER_BLOCK) > xattr_block;
1751 }
1752
1753 static inline bool f2fs_has_xattr_block(unsigned int ofs)
1754 {
1755         return ofs == XATTR_NODE_OFFSET;
1756 }
1757
1758 static inline bool __allow_reserved_blocks(struct f2fs_sb_info *sbi,
1759                                         struct inode *inode, bool cap)
1760 {
1761         if (!inode)
1762                 return true;
1763         if (!test_opt(sbi, RESERVE_ROOT))
1764                 return false;
1765         if (IS_NOQUOTA(inode))
1766                 return true;
1767         if (uid_eq(F2FS_OPTION(sbi).s_resuid, current_fsuid()))
1768                 return true;
1769         if (!gid_eq(F2FS_OPTION(sbi).s_resgid, GLOBAL_ROOT_GID) &&
1770                                         in_group_p(F2FS_OPTION(sbi).s_resgid))
1771                 return true;
1772         if (cap && capable(CAP_SYS_RESOURCE))
1773                 return true;
1774         return false;
1775 }
1776
1777 static inline void f2fs_i_blocks_write(struct inode *, block_t, bool, bool);
1778 static inline int inc_valid_block_count(struct f2fs_sb_info *sbi,
1779                                  struct inode *inode, blkcnt_t *count)
1780 {
1781         blkcnt_t diff = 0, release = 0;
1782         block_t avail_user_block_count;
1783         int ret;
1784
1785         ret = dquot_reserve_block(inode, *count);
1786         if (ret)
1787                 return ret;
1788
1789         if (time_to_inject(sbi, FAULT_BLOCK)) {
1790                 f2fs_show_injection_info(sbi, FAULT_BLOCK);
1791                 release = *count;
1792                 goto release_quota;
1793         }
1794
1795         /*
1796          * let's increase this in prior to actual block count change in order
1797          * for f2fs_sync_file to avoid data races when deciding checkpoint.
1798          */
1799         percpu_counter_add(&sbi->alloc_valid_block_count, (*count));
1800
1801         spin_lock(&sbi->stat_lock);
1802         sbi->total_valid_block_count += (block_t)(*count);
1803         avail_user_block_count = sbi->user_block_count -
1804                                         sbi->current_reserved_blocks;
1805
1806         if (!__allow_reserved_blocks(sbi, inode, true))
1807                 avail_user_block_count -= F2FS_OPTION(sbi).root_reserved_blocks;
1808
1809         if (F2FS_IO_ALIGNED(sbi))
1810                 avail_user_block_count -= sbi->blocks_per_seg *
1811                                 SM_I(sbi)->additional_reserved_segments;
1812
1813         if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
1814                 if (avail_user_block_count > sbi->unusable_block_count)
1815                         avail_user_block_count -= sbi->unusable_block_count;
1816                 else
1817                         avail_user_block_count = 0;
1818         }
1819         if (unlikely(sbi->total_valid_block_count > avail_user_block_count)) {
1820                 diff = sbi->total_valid_block_count - avail_user_block_count;
1821                 if (diff > *count)
1822                         diff = *count;
1823                 *count -= diff;
1824                 release = diff;
1825                 sbi->total_valid_block_count -= diff;
1826                 if (!*count) {
1827                         spin_unlock(&sbi->stat_lock);
1828                         goto enospc;
1829                 }
1830         }
1831         spin_unlock(&sbi->stat_lock);
1832
1833         if (unlikely(release)) {
1834                 percpu_counter_sub(&sbi->alloc_valid_block_count, release);
1835                 dquot_release_reservation_block(inode, release);
1836         }
1837         f2fs_i_blocks_write(inode, *count, true, true);
1838         return 0;
1839
1840 enospc:
1841         percpu_counter_sub(&sbi->alloc_valid_block_count, release);
1842 release_quota:
1843         dquot_release_reservation_block(inode, release);
1844         return -ENOSPC;
1845 }
1846
1847 __printf(2, 3)
1848 void f2fs_printk(struct f2fs_sb_info *sbi, const char *fmt, ...);
1849
1850 #define f2fs_err(sbi, fmt, ...)                                         \
1851         f2fs_printk(sbi, KERN_ERR fmt, ##__VA_ARGS__)
1852 #define f2fs_warn(sbi, fmt, ...)                                        \
1853         f2fs_printk(sbi, KERN_WARNING fmt, ##__VA_ARGS__)
1854 #define f2fs_notice(sbi, fmt, ...)                                      \
1855         f2fs_printk(sbi, KERN_NOTICE fmt, ##__VA_ARGS__)
1856 #define f2fs_info(sbi, fmt, ...)                                        \
1857         f2fs_printk(sbi, KERN_INFO fmt, ##__VA_ARGS__)
1858 #define f2fs_debug(sbi, fmt, ...)                                       \
1859         f2fs_printk(sbi, KERN_DEBUG fmt, ##__VA_ARGS__)
1860
1861 static inline void dec_valid_block_count(struct f2fs_sb_info *sbi,
1862                                                 struct inode *inode,
1863                                                 block_t count)
1864 {
1865         blkcnt_t sectors = count << F2FS_LOG_SECTORS_PER_BLOCK;
1866
1867         spin_lock(&sbi->stat_lock);
1868         f2fs_bug_on(sbi, sbi->total_valid_block_count < (block_t) count);
1869         sbi->total_valid_block_count -= (block_t)count;
1870         if (sbi->reserved_blocks &&
1871                 sbi->current_reserved_blocks < sbi->reserved_blocks)
1872                 sbi->current_reserved_blocks = min(sbi->reserved_blocks,
1873                                         sbi->current_reserved_blocks + count);
1874         spin_unlock(&sbi->stat_lock);
1875         if (unlikely(inode->i_blocks < sectors)) {
1876                 f2fs_warn(sbi, "Inconsistent i_blocks, ino:%lu, iblocks:%llu, sectors:%llu",
1877                           inode->i_ino,
1878                           (unsigned long long)inode->i_blocks,
1879                           (unsigned long long)sectors);
1880                 set_sbi_flag(sbi, SBI_NEED_FSCK);
1881                 return;
1882         }
1883         f2fs_i_blocks_write(inode, count, false, true);
1884 }
1885
1886 static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type)
1887 {
1888         atomic_inc(&sbi->nr_pages[count_type]);
1889
1890         if (count_type == F2FS_DIRTY_DENTS ||
1891                         count_type == F2FS_DIRTY_NODES ||
1892                         count_type == F2FS_DIRTY_META ||
1893                         count_type == F2FS_DIRTY_QDATA ||
1894                         count_type == F2FS_DIRTY_IMETA)
1895                 set_sbi_flag(sbi, SBI_IS_DIRTY);
1896 }
1897
1898 static inline void inode_inc_dirty_pages(struct inode *inode)
1899 {
1900         atomic_inc(&F2FS_I(inode)->dirty_pages);
1901         inc_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ?
1902                                 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA);
1903         if (IS_NOQUOTA(inode))
1904                 inc_page_count(F2FS_I_SB(inode), F2FS_DIRTY_QDATA);
1905 }
1906
1907 static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type)
1908 {
1909         atomic_dec(&sbi->nr_pages[count_type]);
1910 }
1911
1912 static inline void inode_dec_dirty_pages(struct inode *inode)
1913 {
1914         if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
1915                         !S_ISLNK(inode->i_mode))
1916                 return;
1917
1918         atomic_dec(&F2FS_I(inode)->dirty_pages);
1919         dec_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ?
1920                                 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA);
1921         if (IS_NOQUOTA(inode))
1922                 dec_page_count(F2FS_I_SB(inode), F2FS_DIRTY_QDATA);
1923 }
1924
1925 static inline s64 get_pages(struct f2fs_sb_info *sbi, int count_type)
1926 {
1927         return atomic_read(&sbi->nr_pages[count_type]);
1928 }
1929
1930 static inline int get_dirty_pages(struct inode *inode)
1931 {
1932         return atomic_read(&F2FS_I(inode)->dirty_pages);
1933 }
1934
1935 static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type)
1936 {
1937         unsigned int pages_per_sec = sbi->segs_per_sec * sbi->blocks_per_seg;
1938         unsigned int segs = (get_pages(sbi, block_type) + pages_per_sec - 1) >>
1939                                                 sbi->log_blocks_per_seg;
1940
1941         return segs / sbi->segs_per_sec;
1942 }
1943
1944 static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi)
1945 {
1946         return sbi->total_valid_block_count;
1947 }
1948
1949 static inline block_t discard_blocks(struct f2fs_sb_info *sbi)
1950 {
1951         return sbi->discard_blks;
1952 }
1953
1954 static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag)
1955 {
1956         struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1957
1958         /* return NAT or SIT bitmap */
1959         if (flag == NAT_BITMAP)
1960                 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
1961         else if (flag == SIT_BITMAP)
1962                 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
1963
1964         return 0;
1965 }
1966
1967 static inline block_t __cp_payload(struct f2fs_sb_info *sbi)
1968 {
1969         return le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload);
1970 }
1971
1972 static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag)
1973 {
1974         struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1975         int offset;
1976
1977         if (is_set_ckpt_flags(sbi, CP_LARGE_NAT_BITMAP_FLAG)) {
1978                 offset = (flag == SIT_BITMAP) ?
1979                         le32_to_cpu(ckpt->nat_ver_bitmap_bytesize) : 0;
1980                 /*
1981                  * if large_nat_bitmap feature is enabled, leave checksum
1982                  * protection for all nat/sit bitmaps.
1983                  */
1984                 return &ckpt->sit_nat_version_bitmap + offset + sizeof(__le32);
1985         }
1986
1987         if (__cp_payload(sbi) > 0) {
1988                 if (flag == NAT_BITMAP)
1989                         return &ckpt->sit_nat_version_bitmap;
1990                 else
1991                         return (unsigned char *)ckpt + F2FS_BLKSIZE;
1992         } else {
1993                 offset = (flag == NAT_BITMAP) ?
1994                         le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0;
1995                 return &ckpt->sit_nat_version_bitmap + offset;
1996         }
1997 }
1998
1999 static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi)
2000 {
2001         block_t start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
2002
2003         if (sbi->cur_cp_pack == 2)
2004                 start_addr += sbi->blocks_per_seg;
2005         return start_addr;
2006 }
2007
2008 static inline block_t __start_cp_next_addr(struct f2fs_sb_info *sbi)
2009 {
2010         block_t start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr);
2011
2012         if (sbi->cur_cp_pack == 1)
2013                 start_addr += sbi->blocks_per_seg;
2014         return start_addr;
2015 }
2016
2017 static inline void __set_cp_next_pack(struct f2fs_sb_info *sbi)
2018 {
2019         sbi->cur_cp_pack = (sbi->cur_cp_pack == 1) ? 2 : 1;
2020 }
2021
2022 static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi)
2023 {
2024         return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum);
2025 }
2026
2027 static inline int inc_valid_node_count(struct f2fs_sb_info *sbi,
2028                                         struct inode *inode, bool is_inode)
2029 {
2030         block_t valid_block_count;
2031         unsigned int valid_node_count, user_block_count;
2032         int err;
2033
2034         if (is_inode) {
2035                 if (inode) {
2036                         err = dquot_alloc_inode(inode);
2037                         if (err)
2038                                 return err;
2039                 }
2040         } else {
2041                 err = dquot_reserve_block(inode, 1);
2042                 if (err)
2043                         return err;
2044         }
2045
2046         if (time_to_inject(sbi, FAULT_BLOCK)) {
2047                 f2fs_show_injection_info(sbi, FAULT_BLOCK);
2048                 goto enospc;
2049         }
2050
2051         spin_lock(&sbi->stat_lock);
2052
2053         valid_block_count = sbi->total_valid_block_count +
2054                                         sbi->current_reserved_blocks + 1;
2055
2056         if (!__allow_reserved_blocks(sbi, inode, false))
2057                 valid_block_count += F2FS_OPTION(sbi).root_reserved_blocks;
2058
2059         if (F2FS_IO_ALIGNED(sbi))
2060                 valid_block_count += sbi->blocks_per_seg *
2061                                 SM_I(sbi)->additional_reserved_segments;
2062
2063         user_block_count = sbi->user_block_count;
2064         if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
2065                 user_block_count -= sbi->unusable_block_count;
2066
2067         if (unlikely(valid_block_count > user_block_count)) {
2068                 spin_unlock(&sbi->stat_lock);
2069                 goto enospc;
2070         }
2071
2072         valid_node_count = sbi->total_valid_node_count + 1;
2073         if (unlikely(valid_node_count > sbi->total_node_count)) {
2074                 spin_unlock(&sbi->stat_lock);
2075                 goto enospc;
2076         }
2077
2078         sbi->total_valid_node_count++;
2079         sbi->total_valid_block_count++;
2080         spin_unlock(&sbi->stat_lock);
2081
2082         if (inode) {
2083                 if (is_inode)
2084                         f2fs_mark_inode_dirty_sync(inode, true);
2085                 else
2086                         f2fs_i_blocks_write(inode, 1, true, true);
2087         }
2088
2089         percpu_counter_inc(&sbi->alloc_valid_block_count);
2090         return 0;
2091
2092 enospc:
2093         if (is_inode) {
2094                 if (inode)
2095                         dquot_free_inode(inode);
2096         } else {
2097                 dquot_release_reservation_block(inode, 1);
2098         }
2099         return -ENOSPC;
2100 }
2101
2102 static inline void dec_valid_node_count(struct f2fs_sb_info *sbi,
2103                                         struct inode *inode, bool is_inode)
2104 {
2105         spin_lock(&sbi->stat_lock);
2106
2107         if (unlikely(!sbi->total_valid_block_count ||
2108                         !sbi->total_valid_node_count)) {
2109                 f2fs_warn(sbi, "dec_valid_node_count: inconsistent block counts, total_valid_block:%u, total_valid_node:%u",
2110                           sbi->total_valid_block_count,
2111                           sbi->total_valid_node_count);
2112                 set_sbi_flag(sbi, SBI_NEED_FSCK);
2113         } else {
2114                 sbi->total_valid_block_count--;
2115                 sbi->total_valid_node_count--;
2116         }
2117
2118         if (sbi->reserved_blocks &&
2119                 sbi->current_reserved_blocks < sbi->reserved_blocks)
2120                 sbi->current_reserved_blocks++;
2121
2122         spin_unlock(&sbi->stat_lock);
2123
2124         if (is_inode) {
2125                 dquot_free_inode(inode);
2126         } else {
2127                 if (unlikely(inode->i_blocks == 0)) {
2128                         f2fs_warn(sbi, "Inconsistent i_blocks, ino:%lu, iblocks:%llu",
2129                                   inode->i_ino,
2130                                   (unsigned long long)inode->i_blocks);
2131                         set_sbi_flag(sbi, SBI_NEED_FSCK);
2132                         return;
2133                 }
2134                 f2fs_i_blocks_write(inode, 1, false, true);
2135         }
2136 }
2137
2138 static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi)
2139 {
2140         return sbi->total_valid_node_count;
2141 }
2142
2143 static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi)
2144 {
2145         percpu_counter_inc(&sbi->total_valid_inode_count);
2146 }
2147
2148 static inline void dec_valid_inode_count(struct f2fs_sb_info *sbi)
2149 {
2150         percpu_counter_dec(&sbi->total_valid_inode_count);
2151 }
2152
2153 static inline s64 valid_inode_count(struct f2fs_sb_info *sbi)
2154 {
2155         return percpu_counter_sum_positive(&sbi->total_valid_inode_count);
2156 }
2157
2158 static inline struct page *f2fs_grab_cache_page(struct address_space *mapping,
2159                                                 pgoff_t index, bool for_write)
2160 {
2161         struct page *page;
2162
2163         if (IS_ENABLED(CONFIG_F2FS_FAULT_INJECTION)) {
2164                 if (!for_write)
2165                         page = find_get_page_flags(mapping, index,
2166                                                         FGP_LOCK | FGP_ACCESSED);
2167                 else
2168                         page = find_lock_page(mapping, index);
2169                 if (page)
2170                         return page;
2171
2172                 if (time_to_inject(F2FS_M_SB(mapping), FAULT_PAGE_ALLOC)) {
2173                         f2fs_show_injection_info(F2FS_M_SB(mapping),
2174                                                         FAULT_PAGE_ALLOC);
2175                         return NULL;
2176                 }
2177         }
2178
2179         if (!for_write)
2180                 return grab_cache_page(mapping, index);
2181         return grab_cache_page_write_begin(mapping, index, AOP_FLAG_NOFS);
2182 }
2183
2184 static inline struct page *f2fs_pagecache_get_page(
2185                                 struct address_space *mapping, pgoff_t index,
2186                                 int fgp_flags, gfp_t gfp_mask)
2187 {
2188         if (time_to_inject(F2FS_M_SB(mapping), FAULT_PAGE_GET)) {
2189                 f2fs_show_injection_info(F2FS_M_SB(mapping), FAULT_PAGE_GET);
2190                 return NULL;
2191         }
2192
2193         return pagecache_get_page(mapping, index, fgp_flags, gfp_mask);
2194 }
2195
2196 static inline void f2fs_copy_page(struct page *src, struct page *dst)
2197 {
2198         char *src_kaddr = kmap(src);
2199         char *dst_kaddr = kmap(dst);
2200
2201         memcpy(dst_kaddr, src_kaddr, PAGE_SIZE);
2202         kunmap(dst);
2203         kunmap(src);
2204 }
2205
2206 static inline void f2fs_put_page(struct page *page, int unlock)
2207 {
2208         if (!page)
2209                 return;
2210
2211         if (unlock) {
2212                 f2fs_bug_on(F2FS_P_SB(page), !PageLocked(page));
2213                 unlock_page(page);
2214         }
2215         put_page(page);
2216 }
2217
2218 static inline void f2fs_put_dnode(struct dnode_of_data *dn)
2219 {
2220         if (dn->node_page)
2221                 f2fs_put_page(dn->node_page, 1);
2222         if (dn->inode_page && dn->node_page != dn->inode_page)
2223                 f2fs_put_page(dn->inode_page, 0);
2224         dn->node_page = NULL;
2225         dn->inode_page = NULL;
2226 }
2227
2228 static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name,
2229                                         size_t size)
2230 {
2231         return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL);
2232 }
2233
2234 static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep,
2235                                                 gfp_t flags)
2236 {
2237         void *entry;
2238
2239         entry = kmem_cache_alloc(cachep, flags);
2240         if (!entry)
2241                 entry = kmem_cache_alloc(cachep, flags | __GFP_NOFAIL);
2242         return entry;
2243 }
2244
2245 static inline struct bio *f2fs_bio_alloc(struct f2fs_sb_info *sbi,
2246                                                 int npages, bool no_fail)
2247 {
2248         struct bio *bio;
2249
2250         if (no_fail) {
2251                 /* No failure on bio allocation */
2252                 bio = bio_alloc(GFP_NOIO, npages);
2253                 if (!bio)
2254                         bio = bio_alloc(GFP_NOIO | __GFP_NOFAIL, npages);
2255                 return bio;
2256         }
2257         if (time_to_inject(sbi, FAULT_ALLOC_BIO)) {
2258                 f2fs_show_injection_info(sbi, FAULT_ALLOC_BIO);
2259                 return NULL;
2260         }
2261
2262         return bio_alloc(GFP_KERNEL, npages);
2263 }
2264
2265 static inline bool is_idle(struct f2fs_sb_info *sbi, int type)
2266 {
2267         if (sbi->gc_mode == GC_URGENT)
2268                 return true;
2269
2270         if (get_pages(sbi, F2FS_RD_DATA) || get_pages(sbi, F2FS_RD_NODE) ||
2271                 get_pages(sbi, F2FS_RD_META) || get_pages(sbi, F2FS_WB_DATA) ||
2272                 get_pages(sbi, F2FS_WB_CP_DATA) ||
2273                 get_pages(sbi, F2FS_DIO_READ) ||
2274                 get_pages(sbi, F2FS_DIO_WRITE))
2275                 return false;
2276
2277         if (type != DISCARD_TIME && SM_I(sbi) && SM_I(sbi)->dcc_info &&
2278                         atomic_read(&SM_I(sbi)->dcc_info->queued_discard))
2279                 return false;
2280
2281         if (SM_I(sbi) && SM_I(sbi)->fcc_info &&
2282                         atomic_read(&SM_I(sbi)->fcc_info->queued_flush))
2283                 return false;
2284
2285         return f2fs_time_over(sbi, type);
2286 }
2287
2288 static inline void f2fs_radix_tree_insert(struct radix_tree_root *root,
2289                                 unsigned long index, void *item)
2290 {
2291         while (radix_tree_insert(root, index, item))
2292                 cond_resched();
2293 }
2294
2295 #define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino)
2296
2297 static inline bool IS_INODE(struct page *page)
2298 {
2299         struct f2fs_node *p = F2FS_NODE(page);
2300
2301         return RAW_IS_INODE(p);
2302 }
2303
2304 static inline int offset_in_addr(struct f2fs_inode *i)
2305 {
2306         return (i->i_inline & F2FS_EXTRA_ATTR) ?
2307                         (le16_to_cpu(i->i_extra_isize) / sizeof(__le32)) : 0;
2308 }
2309
2310 static inline __le32 *blkaddr_in_node(struct f2fs_node *node)
2311 {
2312         return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr;
2313 }
2314
2315 static inline int f2fs_has_extra_attr(struct inode *inode);
2316 static inline block_t datablock_addr(struct inode *inode,
2317                         struct page *node_page, unsigned int offset)
2318 {
2319         struct f2fs_node *raw_node;
2320         __le32 *addr_array;
2321         int base = 0;
2322         bool is_inode = IS_INODE(node_page);
2323
2324         raw_node = F2FS_NODE(node_page);
2325
2326         /* from GC path only */
2327         if (is_inode) {
2328                 if (!inode)
2329                         base = offset_in_addr(&raw_node->i);
2330                 else if (f2fs_has_extra_attr(inode))
2331                         base = get_extra_isize(inode);
2332         }
2333
2334         addr_array = blkaddr_in_node(raw_node);
2335         return le32_to_cpu(addr_array[base + offset]);
2336 }
2337
2338 static inline int f2fs_test_bit(unsigned int nr, char *addr)
2339 {
2340         int mask;
2341
2342         addr += (nr >> 3);
2343         mask = 1 << (7 - (nr & 0x07));
2344         return mask & *addr;
2345 }
2346
2347 static inline void f2fs_set_bit(unsigned int nr, char *addr)
2348 {
2349         int mask;
2350
2351         addr += (nr >> 3);
2352         mask = 1 << (7 - (nr & 0x07));
2353         *addr |= mask;
2354 }
2355
2356 static inline void f2fs_clear_bit(unsigned int nr, char *addr)
2357 {
2358         int mask;
2359
2360         addr += (nr >> 3);
2361         mask = 1 << (7 - (nr & 0x07));
2362         *addr &= ~mask;
2363 }
2364
2365 static inline int f2fs_test_and_set_bit(unsigned int nr, char *addr)
2366 {
2367         int mask;
2368         int ret;
2369
2370         addr += (nr >> 3);
2371         mask = 1 << (7 - (nr & 0x07));
2372         ret = mask & *addr;
2373         *addr |= mask;
2374         return ret;
2375 }
2376
2377 static inline int f2fs_test_and_clear_bit(unsigned int nr, char *addr)
2378 {
2379         int mask;
2380         int ret;
2381
2382         addr += (nr >> 3);
2383         mask = 1 << (7 - (nr & 0x07));
2384         ret = mask & *addr;
2385         *addr &= ~mask;
2386         return ret;
2387 }
2388
2389 static inline void f2fs_change_bit(unsigned int nr, char *addr)
2390 {
2391         int mask;
2392
2393         addr += (nr >> 3);
2394         mask = 1 << (7 - (nr & 0x07));
2395         *addr ^= mask;
2396 }
2397
2398 /*
2399  * On-disk inode flags (f2fs_inode::i_flags)
2400  */
2401 #define F2FS_SYNC_FL                    0x00000008 /* Synchronous updates */
2402 #define F2FS_IMMUTABLE_FL               0x00000010 /* Immutable file */
2403 #define F2FS_APPEND_FL                  0x00000020 /* writes to file may only append */
2404 #define F2FS_NODUMP_FL                  0x00000040 /* do not dump file */
2405 #define F2FS_NOATIME_FL                 0x00000080 /* do not update atime */
2406 #define F2FS_INDEX_FL                   0x00001000 /* hash-indexed directory */
2407 #define F2FS_DIRSYNC_FL                 0x00010000 /* dirsync behaviour (directories only) */
2408 #define F2FS_PROJINHERIT_FL             0x20000000 /* Create with parents projid */
2409 #define F2FS_CASEFOLD_FL                0x40000000 /* Casefolded file */
2410
2411 /* Flags that should be inherited by new inodes from their parent. */
2412 #define F2FS_FL_INHERITED (F2FS_SYNC_FL | F2FS_NODUMP_FL | F2FS_NOATIME_FL | \
2413                            F2FS_DIRSYNC_FL | F2FS_PROJINHERIT_FL | \
2414                            F2FS_CASEFOLD_FL)
2415
2416 /* Flags that are appropriate for regular files (all but dir-specific ones). */
2417 #define F2FS_REG_FLMASK         (~(F2FS_DIRSYNC_FL | F2FS_PROJINHERIT_FL | \
2418                                 F2FS_CASEFOLD_FL))
2419
2420 /* Flags that are appropriate for non-directories/regular files. */
2421 #define F2FS_OTHER_FLMASK       (F2FS_NODUMP_FL | F2FS_NOATIME_FL)
2422
2423 static inline __u32 f2fs_mask_flags(umode_t mode, __u32 flags)
2424 {
2425         if (S_ISDIR(mode))
2426                 return flags;
2427         else if (S_ISREG(mode))
2428                 return flags & F2FS_REG_FLMASK;
2429         else
2430                 return flags & F2FS_OTHER_FLMASK;
2431 }
2432
2433 /* used for f2fs_inode_info->flags */
2434 enum {
2435         FI_NEW_INODE,           /* indicate newly allocated inode */
2436         FI_DIRTY_INODE,         /* indicate inode is dirty or not */
2437         FI_AUTO_RECOVER,        /* indicate inode is recoverable */
2438         FI_DIRTY_DIR,           /* indicate directory has dirty pages */
2439         FI_INC_LINK,            /* need to increment i_nlink */
2440         FI_ACL_MODE,            /* indicate acl mode */
2441         FI_NO_ALLOC,            /* should not allocate any blocks */
2442         FI_FREE_NID,            /* free allocated nide */
2443         FI_NO_EXTENT,           /* not to use the extent cache */
2444         FI_INLINE_XATTR,        /* used for inline xattr */
2445         FI_INLINE_DATA,         /* used for inline data*/
2446         FI_INLINE_DENTRY,       /* used for inline dentry */
2447         FI_APPEND_WRITE,        /* inode has appended data */
2448         FI_UPDATE_WRITE,        /* inode has in-place-update data */
2449         FI_NEED_IPU,            /* used for ipu per file */
2450         FI_ATOMIC_FILE,         /* indicate atomic file */
2451         FI_ATOMIC_COMMIT,       /* indicate the state of atomical committing */
2452         FI_VOLATILE_FILE,       /* indicate volatile file */
2453         FI_FIRST_BLOCK_WRITTEN, /* indicate #0 data block was written */
2454         FI_DROP_CACHE,          /* drop dirty page cache */
2455         FI_DATA_EXIST,          /* indicate data exists */
2456         FI_INLINE_DOTS,         /* indicate inline dot dentries */
2457         FI_DO_DEFRAG,           /* indicate defragment is running */
2458         FI_DIRTY_FILE,          /* indicate regular/symlink has dirty pages */
2459         FI_NO_PREALLOC,         /* indicate skipped preallocated blocks */
2460         FI_HOT_DATA,            /* indicate file is hot */
2461         FI_EXTRA_ATTR,          /* indicate file has extra attribute */
2462         FI_PROJ_INHERIT,        /* indicate file inherits projectid */
2463         FI_PIN_FILE,            /* indicate file should not be gced */
2464         FI_ATOMIC_REVOKE_REQUEST, /* request to drop atomic data */
2465         FI_VERITY_IN_PROGRESS,  /* building fs-verity Merkle tree */
2466 };
2467
2468 static inline void __mark_inode_dirty_flag(struct inode *inode,
2469                                                 int flag, bool set)
2470 {
2471         switch (flag) {
2472         case FI_INLINE_XATTR:
2473         case FI_INLINE_DATA:
2474         case FI_INLINE_DENTRY:
2475         case FI_NEW_INODE:
2476                 if (set)
2477                         return;
2478                 /* fall through */
2479         case FI_DATA_EXIST:
2480         case FI_INLINE_DOTS:
2481         case FI_PIN_FILE:
2482                 f2fs_mark_inode_dirty_sync(inode, true);
2483         }
2484 }
2485
2486 static inline void set_inode_flag(struct inode *inode, int flag)
2487 {
2488         if (!test_bit(flag, &F2FS_I(inode)->flags))
2489                 set_bit(flag, &F2FS_I(inode)->flags);
2490         __mark_inode_dirty_flag(inode, flag, true);
2491 }
2492
2493 static inline int is_inode_flag_set(struct inode *inode, int flag)
2494 {
2495         return test_bit(flag, &F2FS_I(inode)->flags);
2496 }
2497
2498 static inline void clear_inode_flag(struct inode *inode, int flag)
2499 {
2500         if (test_bit(flag, &F2FS_I(inode)->flags))
2501                 clear_bit(flag, &F2FS_I(inode)->flags);
2502         __mark_inode_dirty_flag(inode, flag, false);
2503 }
2504
2505 static inline bool f2fs_verity_in_progress(struct inode *inode)
2506 {
2507         return IS_ENABLED(CONFIG_FS_VERITY) &&
2508                is_inode_flag_set(inode, FI_VERITY_IN_PROGRESS);
2509 }
2510
2511 static inline void set_acl_inode(struct inode *inode, umode_t mode)
2512 {
2513         F2FS_I(inode)->i_acl_mode = mode;
2514         set_inode_flag(inode, FI_ACL_MODE);
2515         f2fs_mark_inode_dirty_sync(inode, false);
2516 }
2517
2518 static inline void f2fs_i_links_write(struct inode *inode, bool inc)
2519 {
2520         if (inc)
2521                 inc_nlink(inode);
2522         else
2523                 drop_nlink(inode);
2524         f2fs_mark_inode_dirty_sync(inode, true);
2525 }
2526
2527 static inline void f2fs_i_blocks_write(struct inode *inode,
2528                                         block_t diff, bool add, bool claim)
2529 {
2530         bool clean = !is_inode_flag_set(inode, FI_DIRTY_INODE);
2531         bool recover = is_inode_flag_set(inode, FI_AUTO_RECOVER);
2532
2533         /* add = 1, claim = 1 should be dquot_reserve_block in pair */
2534         if (add) {
2535                 if (claim)
2536                         dquot_claim_block(inode, diff);
2537                 else
2538                         dquot_alloc_block_nofail(inode, diff);
2539         } else {
2540                 dquot_free_block(inode, diff);
2541         }
2542
2543         f2fs_mark_inode_dirty_sync(inode, true);
2544         if (clean || recover)
2545                 set_inode_flag(inode, FI_AUTO_RECOVER);
2546 }
2547
2548 static inline void f2fs_i_size_write(struct inode *inode, loff_t i_size)
2549 {
2550         bool clean = !is_inode_flag_set(inode, FI_DIRTY_INODE);
2551         bool recover = is_inode_flag_set(inode, FI_AUTO_RECOVER);
2552
2553         if (i_size_read(inode) == i_size)
2554                 return;
2555
2556         i_size_write(inode, i_size);
2557         f2fs_mark_inode_dirty_sync(inode, true);
2558         if (clean || recover)
2559                 set_inode_flag(inode, FI_AUTO_RECOVER);
2560 }
2561
2562 static inline void f2fs_i_depth_write(struct inode *inode, unsigned int depth)
2563 {
2564         F2FS_I(inode)->i_current_depth = depth;
2565         f2fs_mark_inode_dirty_sync(inode, true);
2566 }
2567
2568 static inline void f2fs_i_gc_failures_write(struct inode *inode,
2569                                         unsigned int count)
2570 {
2571         F2FS_I(inode)->i_gc_failures[GC_FAILURE_PIN] = count;
2572         f2fs_mark_inode_dirty_sync(inode, true);
2573 }
2574
2575 static inline void f2fs_i_xnid_write(struct inode *inode, nid_t xnid)
2576 {
2577         F2FS_I(inode)->i_xattr_nid = xnid;
2578         f2fs_mark_inode_dirty_sync(inode, true);
2579 }
2580
2581 static inline void f2fs_i_pino_write(struct inode *inode, nid_t pino)
2582 {
2583         F2FS_I(inode)->i_pino = pino;
2584         f2fs_mark_inode_dirty_sync(inode, true);
2585 }
2586
2587 static inline void get_inline_info(struct inode *inode, struct f2fs_inode *ri)
2588 {
2589         struct f2fs_inode_info *fi = F2FS_I(inode);
2590
2591         if (ri->i_inline & F2FS_INLINE_XATTR)
2592                 set_bit(FI_INLINE_XATTR, &fi->flags);
2593         if (ri->i_inline & F2FS_INLINE_DATA)
2594                 set_bit(FI_INLINE_DATA, &fi->flags);
2595         if (ri->i_inline & F2FS_INLINE_DENTRY)
2596                 set_bit(FI_INLINE_DENTRY, &fi->flags);
2597         if (ri->i_inline & F2FS_DATA_EXIST)
2598                 set_bit(FI_DATA_EXIST, &fi->flags);
2599         if (ri->i_inline & F2FS_INLINE_DOTS)
2600                 set_bit(FI_INLINE_DOTS, &fi->flags);
2601         if (ri->i_inline & F2FS_EXTRA_ATTR)
2602                 set_bit(FI_EXTRA_ATTR, &fi->flags);
2603         if (ri->i_inline & F2FS_PIN_FILE)
2604                 set_bit(FI_PIN_FILE, &fi->flags);
2605 }
2606
2607 static inline void set_raw_inline(struct inode *inode, struct f2fs_inode *ri)
2608 {
2609         ri->i_inline = 0;
2610
2611         if (is_inode_flag_set(inode, FI_INLINE_XATTR))
2612                 ri->i_inline |= F2FS_INLINE_XATTR;
2613         if (is_inode_flag_set(inode, FI_INLINE_DATA))
2614                 ri->i_inline |= F2FS_INLINE_DATA;
2615         if (is_inode_flag_set(inode, FI_INLINE_DENTRY))
2616                 ri->i_inline |= F2FS_INLINE_DENTRY;
2617         if (is_inode_flag_set(inode, FI_DATA_EXIST))
2618                 ri->i_inline |= F2FS_DATA_EXIST;
2619         if (is_inode_flag_set(inode, FI_INLINE_DOTS))
2620                 ri->i_inline |= F2FS_INLINE_DOTS;
2621         if (is_inode_flag_set(inode, FI_EXTRA_ATTR))
2622                 ri->i_inline |= F2FS_EXTRA_ATTR;
2623         if (is_inode_flag_set(inode, FI_PIN_FILE))
2624                 ri->i_inline |= F2FS_PIN_FILE;
2625 }
2626
2627 static inline int f2fs_has_extra_attr(struct inode *inode)
2628 {
2629         return is_inode_flag_set(inode, FI_EXTRA_ATTR);
2630 }
2631
2632 static inline int f2fs_has_inline_xattr(struct inode *inode)
2633 {
2634         return is_inode_flag_set(inode, FI_INLINE_XATTR);
2635 }
2636
2637 static inline unsigned int addrs_per_inode(struct inode *inode)
2638 {
2639         unsigned int addrs = CUR_ADDRS_PER_INODE(inode) -
2640                                 get_inline_xattr_addrs(inode);
2641         return ALIGN_DOWN(addrs, 1);
2642 }
2643
2644 static inline unsigned int addrs_per_block(struct inode *inode)
2645 {
2646         return ALIGN_DOWN(DEF_ADDRS_PER_BLOCK, 1);
2647 }
2648
2649 static inline void *inline_xattr_addr(struct inode *inode, struct page *page)
2650 {
2651         struct f2fs_inode *ri = F2FS_INODE(page);
2652
2653         return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE -
2654                                         get_inline_xattr_addrs(inode)]);
2655 }
2656
2657 static inline int inline_xattr_size(struct inode *inode)
2658 {
2659         if (f2fs_has_inline_xattr(inode))
2660                 return get_inline_xattr_addrs(inode) * sizeof(__le32);
2661         return 0;
2662 }
2663
2664 static inline int f2fs_has_inline_data(struct inode *inode)
2665 {
2666         return is_inode_flag_set(inode, FI_INLINE_DATA);
2667 }
2668
2669 static inline int f2fs_exist_data(struct inode *inode)
2670 {
2671         return is_inode_flag_set(inode, FI_DATA_EXIST);
2672 }
2673
2674 static inline int f2fs_has_inline_dots(struct inode *inode)
2675 {
2676         return is_inode_flag_set(inode, FI_INLINE_DOTS);
2677 }
2678
2679 static inline bool f2fs_is_pinned_file(struct inode *inode)
2680 {
2681         return is_inode_flag_set(inode, FI_PIN_FILE);
2682 }
2683
2684 static inline bool f2fs_is_atomic_file(struct inode *inode)
2685 {
2686         return is_inode_flag_set(inode, FI_ATOMIC_FILE);
2687 }
2688
2689 static inline bool f2fs_is_commit_atomic_write(struct inode *inode)
2690 {
2691         return is_inode_flag_set(inode, FI_ATOMIC_COMMIT);
2692 }
2693
2694 static inline bool f2fs_is_volatile_file(struct inode *inode)
2695 {
2696         return is_inode_flag_set(inode, FI_VOLATILE_FILE);
2697 }
2698
2699 static inline bool f2fs_is_first_block_written(struct inode *inode)
2700 {
2701         return is_inode_flag_set(inode, FI_FIRST_BLOCK_WRITTEN);
2702 }
2703
2704 static inline bool f2fs_is_drop_cache(struct inode *inode)
2705 {
2706         return is_inode_flag_set(inode, FI_DROP_CACHE);
2707 }
2708
2709 static inline void *inline_data_addr(struct inode *inode, struct page *page)
2710 {
2711         struct f2fs_inode *ri = F2FS_INODE(page);
2712         int extra_size = get_extra_isize(inode);
2713
2714         return (void *)&(ri->i_addr[extra_size + DEF_INLINE_RESERVED_SIZE]);
2715 }
2716
2717 static inline int f2fs_has_inline_dentry(struct inode *inode)
2718 {
2719         return is_inode_flag_set(inode, FI_INLINE_DENTRY);
2720 }
2721
2722 static inline int is_file(struct inode *inode, int type)
2723 {
2724         return F2FS_I(inode)->i_advise & type;
2725 }
2726
2727 static inline void set_file(struct inode *inode, int type)
2728 {
2729         F2FS_I(inode)->i_advise |= type;
2730         f2fs_mark_inode_dirty_sync(inode, true);
2731 }
2732
2733 static inline void clear_file(struct inode *inode, int type)
2734 {
2735         F2FS_I(inode)->i_advise &= ~type;
2736         f2fs_mark_inode_dirty_sync(inode, true);
2737 }
2738
2739 static inline bool f2fs_is_time_consistent(struct inode *inode)
2740 {
2741         if (!timespec64_equal(F2FS_I(inode)->i_disk_time, &inode->i_atime))
2742                 return false;
2743         if (!timespec64_equal(F2FS_I(inode)->i_disk_time + 1, &inode->i_ctime))
2744                 return false;
2745         if (!timespec64_equal(F2FS_I(inode)->i_disk_time + 2, &inode->i_mtime))
2746                 return false;
2747         if (!timespec64_equal(F2FS_I(inode)->i_disk_time + 3,
2748                                                 &F2FS_I(inode)->i_crtime))
2749                 return false;
2750         return true;
2751 }
2752
2753 static inline bool f2fs_skip_inode_update(struct inode *inode, int dsync)
2754 {
2755         bool ret;
2756
2757         if (dsync) {
2758                 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
2759
2760                 spin_lock(&sbi->inode_lock[DIRTY_META]);
2761                 ret = list_empty(&F2FS_I(inode)->gdirty_list);
2762                 spin_unlock(&sbi->inode_lock[DIRTY_META]);
2763                 return ret;
2764         }
2765         if (!is_inode_flag_set(inode, FI_AUTO_RECOVER) ||
2766                         file_keep_isize(inode) ||
2767                         i_size_read(inode) & ~PAGE_MASK)
2768                 return false;
2769
2770         if (!f2fs_is_time_consistent(inode))
2771                 return false;
2772
2773         down_read(&F2FS_I(inode)->i_sem);
2774         ret = F2FS_I(inode)->last_disk_size == i_size_read(inode);
2775         up_read(&F2FS_I(inode)->i_sem);
2776
2777         return ret;
2778 }
2779
2780 static inline bool f2fs_readonly(struct super_block *sb)
2781 {
2782         return sb_rdonly(sb);
2783 }
2784
2785 static inline bool f2fs_cp_error(struct f2fs_sb_info *sbi)
2786 {
2787         return is_set_ckpt_flags(sbi, CP_ERROR_FLAG);
2788 }
2789
2790 static inline bool is_dot_dotdot(const struct qstr *str)
2791 {
2792         if (str->len == 1 && str->name[0] == '.')
2793                 return true;
2794
2795         if (str->len == 2 && str->name[0] == '.' && str->name[1] == '.')
2796                 return true;
2797
2798         return false;
2799 }
2800
2801 static inline bool f2fs_may_extent_tree(struct inode *inode)
2802 {
2803         struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
2804
2805         if (!test_opt(sbi, EXTENT_CACHE) ||
2806                         is_inode_flag_set(inode, FI_NO_EXTENT))
2807                 return false;
2808
2809         /*
2810          * for recovered files during mount do not create extents
2811          * if shrinker is not registered.
2812          */
2813         if (list_empty(&sbi->s_list))
2814                 return false;
2815
2816         return S_ISREG(inode->i_mode);
2817 }
2818
2819 static inline void *f2fs_kmalloc(struct f2fs_sb_info *sbi,
2820                                         size_t size, gfp_t flags)
2821 {
2822         if (time_to_inject(sbi, FAULT_KMALLOC)) {
2823                 f2fs_show_injection_info(sbi, FAULT_KMALLOC);
2824                 return NULL;
2825         }
2826
2827         return kmalloc(size, flags);
2828 }
2829
2830 static inline void *f2fs_kzalloc(struct f2fs_sb_info *sbi,
2831                                         size_t size, gfp_t flags)
2832 {
2833         return f2fs_kmalloc(sbi, size, flags | __GFP_ZERO);
2834 }
2835
2836 static inline void *f2fs_kvmalloc(struct f2fs_sb_info *sbi,
2837                                         size_t size, gfp_t flags)
2838 {
2839         if (time_to_inject(sbi, FAULT_KVMALLOC)) {
2840                 f2fs_show_injection_info(sbi, FAULT_KVMALLOC);
2841                 return NULL;
2842         }
2843
2844         return kvmalloc(size, flags);
2845 }
2846
2847 static inline void *f2fs_kvzalloc(struct f2fs_sb_info *sbi,
2848                                         size_t size, gfp_t flags)
2849 {
2850         return f2fs_kvmalloc(sbi, size, flags | __GFP_ZERO);
2851 }
2852
2853 static inline int get_extra_isize(struct inode *inode)
2854 {
2855         return F2FS_I(inode)->i_extra_isize / sizeof(__le32);
2856 }
2857
2858 static inline int get_inline_xattr_addrs(struct inode *inode)
2859 {
2860         return F2FS_I(inode)->i_inline_xattr_size;
2861 }
2862
2863 #define f2fs_get_inode_mode(i) \
2864         ((is_inode_flag_set(i, FI_ACL_MODE)) ? \
2865          (F2FS_I(i)->i_acl_mode) : ((i)->i_mode))
2866
2867 #define F2FS_TOTAL_EXTRA_ATTR_SIZE                      \
2868         (offsetof(struct f2fs_inode, i_extra_end) -     \
2869         offsetof(struct f2fs_inode, i_extra_isize))     \
2870
2871 #define F2FS_OLD_ATTRIBUTE_SIZE (offsetof(struct f2fs_inode, i_addr))
2872 #define F2FS_FITS_IN_INODE(f2fs_inode, extra_isize, field)              \
2873                 ((offsetof(typeof(*(f2fs_inode)), field) +      \
2874                 sizeof((f2fs_inode)->field))                    \
2875                 <= (F2FS_OLD_ATTRIBUTE_SIZE + (extra_isize)))   \
2876
2877 static inline void f2fs_reset_iostat(struct f2fs_sb_info *sbi)
2878 {
2879         int i;
2880
2881         spin_lock(&sbi->iostat_lock);
2882         for (i = 0; i < NR_IO_TYPE; i++)
2883                 sbi->write_iostat[i] = 0;
2884         spin_unlock(&sbi->iostat_lock);
2885 }
2886
2887 static inline void f2fs_update_iostat(struct f2fs_sb_info *sbi,
2888                         enum iostat_type type, unsigned long long io_bytes)
2889 {
2890         if (!sbi->iostat_enable)
2891                 return;
2892         spin_lock(&sbi->iostat_lock);
2893         sbi->write_iostat[type] += io_bytes;
2894
2895         if (type == APP_WRITE_IO || type == APP_DIRECT_IO)
2896                 sbi->write_iostat[APP_BUFFERED_IO] =
2897                         sbi->write_iostat[APP_WRITE_IO] -
2898                         sbi->write_iostat[APP_DIRECT_IO];
2899         spin_unlock(&sbi->iostat_lock);
2900 }
2901
2902 #define __is_large_section(sbi)         ((sbi)->segs_per_sec > 1)
2903
2904 #define __is_meta_io(fio) (PAGE_TYPE_OF_BIO((fio)->type) == META)
2905
2906 bool f2fs_is_valid_blkaddr(struct f2fs_sb_info *sbi,
2907                                         block_t blkaddr, int type);
2908 static inline void verify_blkaddr(struct f2fs_sb_info *sbi,
2909                                         block_t blkaddr, int type)
2910 {
2911         if (!f2fs_is_valid_blkaddr(sbi, blkaddr, type)) {
2912                 f2fs_err(sbi, "invalid blkaddr: %u, type: %d, run fsck to fix.",
2913                          blkaddr, type);
2914                 f2fs_bug_on(sbi, 1);
2915         }
2916 }
2917
2918 static inline bool __is_valid_data_blkaddr(block_t blkaddr)
2919 {
2920         if (blkaddr == NEW_ADDR || blkaddr == NULL_ADDR)
2921                 return false;
2922         return true;
2923 }
2924
2925 static inline void f2fs_set_page_private(struct page *page,
2926                                                 unsigned long data)
2927 {
2928         if (PagePrivate(page))
2929                 return;
2930
2931         get_page(page);
2932         SetPagePrivate(page);
2933         set_page_private(page, data);
2934 }
2935
2936 static inline void f2fs_clear_page_private(struct page *page)
2937 {
2938         if (!PagePrivate(page))
2939                 return;
2940
2941         set_page_private(page, 0);
2942         ClearPagePrivate(page);
2943         f2fs_put_page(page, 0);
2944 }
2945
2946 /*
2947  * file.c
2948  */
2949 int f2fs_sync_file(struct file *file, loff_t start, loff_t end, int datasync);
2950 void f2fs_truncate_data_blocks(struct dnode_of_data *dn);
2951 int f2fs_truncate_blocks(struct inode *inode, u64 from, bool lock);
2952 int f2fs_truncate(struct inode *inode);
2953 int f2fs_getattr(const struct path *path, struct kstat *stat,
2954                         u32 request_mask, unsigned int flags);
2955 int f2fs_setattr(struct dentry *dentry, struct iattr *attr);
2956 int f2fs_truncate_hole(struct inode *inode, pgoff_t pg_start, pgoff_t pg_end);
2957 void f2fs_truncate_data_blocks_range(struct dnode_of_data *dn, int count);
2958 int f2fs_precache_extents(struct inode *inode);
2959 long f2fs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg);
2960 long f2fs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
2961 int f2fs_transfer_project_quota(struct inode *inode, kprojid_t kprojid);
2962 int f2fs_pin_file_control(struct inode *inode, bool inc);
2963
2964 /*
2965  * inode.c
2966  */
2967 void f2fs_set_inode_flags(struct inode *inode);
2968 bool f2fs_inode_chksum_verify(struct f2fs_sb_info *sbi, struct page *page);
2969 void f2fs_inode_chksum_set(struct f2fs_sb_info *sbi, struct page *page);
2970 struct inode *f2fs_iget(struct super_block *sb, unsigned long ino);
2971 struct inode *f2fs_iget_retry(struct super_block *sb, unsigned long ino);
2972 int f2fs_try_to_free_nats(struct f2fs_sb_info *sbi, int nr_shrink);
2973 void f2fs_update_inode(struct inode *inode, struct page *node_page);
2974 void f2fs_update_inode_page(struct inode *inode);
2975 int f2fs_write_inode(struct inode *inode, struct writeback_control *wbc);
2976 void f2fs_evict_inode(struct inode *inode);
2977 void f2fs_handle_failed_inode(struct inode *inode);
2978
2979 /*
2980  * namei.c
2981  */
2982 int f2fs_update_extension_list(struct f2fs_sb_info *sbi, const char *name,
2983                                                         bool hot, bool set);
2984 struct dentry *f2fs_get_parent(struct dentry *child);
2985
2986 /*
2987  * dir.c
2988  */
2989 unsigned char f2fs_get_de_type(struct f2fs_dir_entry *de);
2990 struct f2fs_dir_entry *f2fs_find_target_dentry(struct fscrypt_name *fname,
2991                         f2fs_hash_t namehash, int *max_slots,
2992                         struct f2fs_dentry_ptr *d);
2993 int f2fs_fill_dentries(struct dir_context *ctx, struct f2fs_dentry_ptr *d,
2994                         unsigned int start_pos, struct fscrypt_str *fstr);
2995 void f2fs_do_make_empty_dir(struct inode *inode, struct inode *parent,
2996                         struct f2fs_dentry_ptr *d);
2997 struct page *f2fs_init_inode_metadata(struct inode *inode, struct inode *dir,
2998                         const struct qstr *new_name,
2999                         const struct qstr *orig_name, struct page *dpage);
3000 void f2fs_update_parent_metadata(struct inode *dir, struct inode *inode,
3001                         unsigned int current_depth);
3002 int f2fs_room_for_filename(const void *bitmap, int slots, int max_slots);
3003 void f2fs_drop_nlink(struct inode *dir, struct inode *inode);
3004 struct f2fs_dir_entry *__f2fs_find_entry(struct inode *dir,
3005                         struct fscrypt_name *fname, struct page **res_page);
3006 struct f2fs_dir_entry *f2fs_find_entry(struct inode *dir,
3007                         const struct qstr *child, struct page **res_page);
3008 struct f2fs_dir_entry *f2fs_parent_dir(struct inode *dir, struct page **p);
3009 ino_t f2fs_inode_by_name(struct inode *dir, const struct qstr *qstr,
3010                         struct page **page);
3011 void f2fs_set_link(struct inode *dir, struct f2fs_dir_entry *de,
3012                         struct page *page, struct inode *inode);
3013 void f2fs_update_dentry(nid_t ino, umode_t mode, struct f2fs_dentry_ptr *d,
3014                         const struct qstr *name, f2fs_hash_t name_hash,
3015                         unsigned int bit_pos);
3016 int f2fs_add_regular_entry(struct inode *dir, const struct qstr *new_name,
3017                         const struct qstr *orig_name,
3018                         struct inode *inode, nid_t ino, umode_t mode);
3019 int f2fs_add_dentry(struct inode *dir, struct fscrypt_name *fname,
3020                         struct inode *inode, nid_t ino, umode_t mode);
3021 int f2fs_do_add_link(struct inode *dir, const struct qstr *name,
3022                         struct inode *inode, nid_t ino, umode_t mode);
3023 void f2fs_delete_entry(struct f2fs_dir_entry *dentry, struct page *page,
3024                         struct inode *dir, struct inode *inode);
3025 int f2fs_do_tmpfile(struct inode *inode, struct inode *dir);
3026 bool f2fs_empty_dir(struct inode *dir);
3027
3028 static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode)
3029 {
3030         if (fscrypt_is_nokey_name(dentry))
3031                 return -ENOKEY;
3032         return f2fs_do_add_link(d_inode(dentry->d_parent), &dentry->d_name,
3033                                 inode, inode->i_ino, inode->i_mode);
3034 }
3035
3036 /*
3037  * super.c
3038  */
3039 int f2fs_inode_dirtied(struct inode *inode, bool sync);
3040 void f2fs_inode_synced(struct inode *inode);
3041 int f2fs_enable_quota_files(struct f2fs_sb_info *sbi, bool rdonly);
3042 int f2fs_quota_sync(struct super_block *sb, int type);
3043 void f2fs_quota_off_umount(struct super_block *sb);
3044 int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover);
3045 int f2fs_sync_fs(struct super_block *sb, int sync);
3046 int f2fs_sanity_check_ckpt(struct f2fs_sb_info *sbi);
3047
3048 /*
3049  * hash.c
3050  */
3051 f2fs_hash_t f2fs_dentry_hash(const struct inode *dir,
3052                 const struct qstr *name_info, struct fscrypt_name *fname);
3053
3054 /*
3055  * node.c
3056  */
3057 struct dnode_of_data;
3058 struct node_info;
3059
3060 int f2fs_check_nid_range(struct f2fs_sb_info *sbi, nid_t nid);
3061 bool f2fs_available_free_memory(struct f2fs_sb_info *sbi, int type);
3062 bool f2fs_in_warm_node_list(struct f2fs_sb_info *sbi, struct page *page);
3063 void f2fs_init_fsync_node_info(struct f2fs_sb_info *sbi);
3064 void f2fs_del_fsync_node_entry(struct f2fs_sb_info *sbi, struct page *page);
3065 void f2fs_reset_fsync_node_info(struct f2fs_sb_info *sbi);
3066 int f2fs_need_dentry_mark(struct f2fs_sb_info *sbi, nid_t nid);
3067 bool f2fs_is_checkpointed_node(struct f2fs_sb_info *sbi, nid_t nid);
3068 bool f2fs_need_inode_block_update(struct f2fs_sb_info *sbi, nid_t ino);
3069 int f2fs_get_node_info(struct f2fs_sb_info *sbi, nid_t nid,
3070                                                 struct node_info *ni);
3071 pgoff_t f2fs_get_next_page_offset(struct dnode_of_data *dn, pgoff_t pgofs);
3072 int f2fs_get_dnode_of_data(struct dnode_of_data *dn, pgoff_t index, int mode);
3073 int f2fs_truncate_inode_blocks(struct inode *inode, pgoff_t from);
3074 int f2fs_truncate_xattr_node(struct inode *inode);
3075 int f2fs_wait_on_node_pages_writeback(struct f2fs_sb_info *sbi,
3076                                         unsigned int seq_id);
3077 int f2fs_remove_inode_page(struct inode *inode);
3078 struct page *f2fs_new_inode_page(struct inode *inode);
3079 struct page *f2fs_new_node_page(struct dnode_of_data *dn, unsigned int ofs);
3080 void f2fs_ra_node_page(struct f2fs_sb_info *sbi, nid_t nid);
3081 struct page *f2fs_get_node_page(struct f2fs_sb_info *sbi, pgoff_t nid);
3082 struct page *f2fs_get_node_page_ra(struct page *parent, int start);
3083 int f2fs_move_node_page(struct page *node_page, int gc_type);
3084 int f2fs_fsync_node_pages(struct f2fs_sb_info *sbi, struct inode *inode,
3085                         struct writeback_control *wbc, bool atomic,
3086                         unsigned int *seq_id);
3087 int f2fs_sync_node_pages(struct f2fs_sb_info *sbi,
3088                         struct writeback_control *wbc,
3089                         bool do_balance, enum iostat_type io_type);
3090 int f2fs_build_free_nids(struct f2fs_sb_info *sbi, bool sync, bool mount);
3091 bool f2fs_alloc_nid(struct f2fs_sb_info *sbi, nid_t *nid);
3092 void f2fs_alloc_nid_done(struct f2fs_sb_info *sbi, nid_t nid);
3093 void f2fs_alloc_nid_failed(struct f2fs_sb_info *sbi, nid_t nid);
3094 int f2fs_try_to_free_nids(struct f2fs_sb_info *sbi, int nr_shrink);
3095 int f2fs_recover_inline_xattr(struct inode *inode, struct page *page);
3096 int f2fs_recover_xattr_data(struct inode *inode, struct page *page);
3097 int f2fs_recover_inode_page(struct f2fs_sb_info *sbi, struct page *page);
3098 int f2fs_restore_node_summary(struct f2fs_sb_info *sbi,
3099                         unsigned int segno, struct f2fs_summary_block *sum);
3100 int f2fs_flush_nat_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc);
3101 int f2fs_build_node_manager(struct f2fs_sb_info *sbi);
3102 void f2fs_destroy_node_manager(struct f2fs_sb_info *sbi);
3103 int __init f2fs_create_node_manager_caches(void);
3104 void f2fs_destroy_node_manager_caches(void);
3105
3106 /*
3107  * segment.c
3108  */
3109 bool f2fs_need_SSR(struct f2fs_sb_info *sbi);
3110 void f2fs_register_inmem_page(struct inode *inode, struct page *page);
3111 void f2fs_drop_inmem_pages_all(struct f2fs_sb_info *sbi, bool gc_failure);
3112 void f2fs_drop_inmem_pages(struct inode *inode);
3113 void f2fs_drop_inmem_page(struct inode *inode, struct page *page);
3114 int f2fs_commit_inmem_pages(struct inode *inode);
3115 void f2fs_balance_fs(struct f2fs_sb_info *sbi, bool need);
3116 void f2fs_balance_fs_bg(struct f2fs_sb_info *sbi);
3117 int f2fs_issue_flush(struct f2fs_sb_info *sbi, nid_t ino);
3118 int f2fs_create_flush_cmd_control(struct f2fs_sb_info *sbi);
3119 int f2fs_flush_device_cache(struct f2fs_sb_info *sbi);
3120 void f2fs_destroy_flush_cmd_control(struct f2fs_sb_info *sbi, bool free);
3121 void f2fs_invalidate_blocks(struct f2fs_sb_info *sbi, block_t addr);
3122 bool f2fs_is_checkpointed_data(struct f2fs_sb_info *sbi, block_t blkaddr);
3123 void f2fs_drop_discard_cmd(struct f2fs_sb_info *sbi);
3124 void f2fs_stop_discard_thread(struct f2fs_sb_info *sbi);
3125 bool f2fs_issue_discard_timeout(struct f2fs_sb_info *sbi);
3126 void f2fs_clear_prefree_segments(struct f2fs_sb_info *sbi,
3127                                         struct cp_control *cpc);
3128 void f2fs_dirty_to_prefree(struct f2fs_sb_info *sbi);
3129 block_t f2fs_get_unusable_blocks(struct f2fs_sb_info *sbi);
3130 int f2fs_disable_cp_again(struct f2fs_sb_info *sbi, block_t unusable);
3131 void f2fs_release_discard_addrs(struct f2fs_sb_info *sbi);
3132 int f2fs_npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra);
3133 void allocate_segment_for_resize(struct f2fs_sb_info *sbi, int type,
3134                                         unsigned int start, unsigned int end);
3135 void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi);
3136 int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range);
3137 bool f2fs_exist_trim_candidates(struct f2fs_sb_info *sbi,
3138                                         struct cp_control *cpc);
3139 struct page *f2fs_get_sum_page(struct f2fs_sb_info *sbi, unsigned int segno);
3140 void f2fs_update_meta_page(struct f2fs_sb_info *sbi, void *src,
3141                                         block_t blk_addr);
3142 void f2fs_do_write_meta_page(struct f2fs_sb_info *sbi, struct page *page,
3143                                                 enum iostat_type io_type);
3144 void f2fs_do_write_node_page(unsigned int nid, struct f2fs_io_info *fio);
3145 void f2fs_outplace_write_data(struct dnode_of_data *dn,
3146                         struct f2fs_io_info *fio);
3147 int f2fs_inplace_write_data(struct f2fs_io_info *fio);
3148 void f2fs_do_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum,
3149                         block_t old_blkaddr, block_t new_blkaddr,
3150                         bool recover_curseg, bool recover_newaddr);
3151 void f2fs_replace_block(struct f2fs_sb_info *sbi, struct dnode_of_data *dn,
3152                         block_t old_addr, block_t new_addr,
3153                         unsigned char version, bool recover_curseg,
3154                         bool recover_newaddr);
3155 void f2fs_allocate_data_block(struct f2fs_sb_info *sbi, struct page *page,
3156                         block_t old_blkaddr, block_t *new_blkaddr,
3157                         struct f2fs_summary *sum, int type,
3158                         struct f2fs_io_info *fio, bool add_list);
3159 void f2fs_wait_on_page_writeback(struct page *page,
3160                         enum page_type type, bool ordered, bool locked);
3161 void f2fs_wait_on_block_writeback(struct inode *inode, block_t blkaddr);
3162 void f2fs_wait_on_block_writeback_range(struct inode *inode, block_t blkaddr,
3163                                                                 block_t len);
3164 void f2fs_write_data_summaries(struct f2fs_sb_info *sbi, block_t start_blk);
3165 void f2fs_write_node_summaries(struct f2fs_sb_info *sbi, block_t start_blk);
3166 int f2fs_lookup_journal_in_cursum(struct f2fs_journal *journal, int type,
3167                         unsigned int val, int alloc);
3168 void f2fs_flush_sit_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc);
3169 int f2fs_build_segment_manager(struct f2fs_sb_info *sbi);
3170 void f2fs_destroy_segment_manager(struct f2fs_sb_info *sbi);
3171 int __init f2fs_create_segment_manager_caches(void);
3172 void f2fs_destroy_segment_manager_caches(void);
3173 int f2fs_rw_hint_to_seg_type(enum rw_hint hint);
3174 enum rw_hint f2fs_io_type_to_rw_hint(struct f2fs_sb_info *sbi,
3175                         enum page_type type, enum temp_type temp);
3176
3177 /*
3178  * checkpoint.c
3179  */
3180 void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi, bool end_io);
3181 struct page *f2fs_grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index);
3182 struct page *f2fs_get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index);
3183 struct page *f2fs_get_meta_page_retry(struct f2fs_sb_info *sbi, pgoff_t index);
3184 struct page *f2fs_get_tmp_page(struct f2fs_sb_info *sbi, pgoff_t index);
3185 bool f2fs_is_valid_blkaddr(struct f2fs_sb_info *sbi,
3186                                         block_t blkaddr, int type);
3187 int f2fs_ra_meta_pages(struct f2fs_sb_info *sbi, block_t start, int nrpages,
3188                         int type, bool sync);
3189 void f2fs_ra_meta_pages_cond(struct f2fs_sb_info *sbi, pgoff_t index);
3190 long f2fs_sync_meta_pages(struct f2fs_sb_info *sbi, enum page_type type,
3191                         long nr_to_write, enum iostat_type io_type);
3192 void f2fs_add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type);
3193 void f2fs_remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type);
3194 void f2fs_release_ino_entry(struct f2fs_sb_info *sbi, bool all);
3195 bool f2fs_exist_written_data(struct f2fs_sb_info *sbi, nid_t ino, int mode);
3196 void f2fs_set_dirty_device(struct f2fs_sb_info *sbi, nid_t ino,
3197                                         unsigned int devidx, int type);
3198 bool f2fs_is_dirty_device(struct f2fs_sb_info *sbi, nid_t ino,
3199                                         unsigned int devidx, int type);
3200 int f2fs_sync_inode_meta(struct f2fs_sb_info *sbi);
3201 int f2fs_acquire_orphan_inode(struct f2fs_sb_info *sbi);
3202 void f2fs_release_orphan_inode(struct f2fs_sb_info *sbi);
3203 void f2fs_add_orphan_inode(struct inode *inode);
3204 void f2fs_remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino);
3205 int f2fs_recover_orphan_inodes(struct f2fs_sb_info *sbi);
3206 int f2fs_get_valid_checkpoint(struct f2fs_sb_info *sbi);
3207 void f2fs_update_dirty_page(struct inode *inode, struct page *page);
3208 void f2fs_remove_dirty_inode(struct inode *inode);
3209 int f2fs_sync_dirty_inodes(struct f2fs_sb_info *sbi, enum inode_type type);
3210 void f2fs_wait_on_all_pages(struct f2fs_sb_info *sbi, int type);
3211 int f2fs_write_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc);
3212 void f2fs_init_ino_entry_info(struct f2fs_sb_info *sbi);
3213 int __init f2fs_create_checkpoint_caches(void);
3214 void f2fs_destroy_checkpoint_caches(void);
3215
3216 /*
3217  * data.c
3218  */
3219 int f2fs_init_post_read_processing(void);
3220 void f2fs_destroy_post_read_processing(void);
3221 void f2fs_submit_merged_write(struct f2fs_sb_info *sbi, enum page_type type);
3222 void f2fs_submit_merged_write_cond(struct f2fs_sb_info *sbi,
3223                                 struct inode *inode, struct page *page,
3224                                 nid_t ino, enum page_type type);
3225 void f2fs_flush_merged_writes(struct f2fs_sb_info *sbi);
3226 int f2fs_submit_page_bio(struct f2fs_io_info *fio);
3227 int f2fs_merge_page_bio(struct f2fs_io_info *fio);
3228 void f2fs_submit_page_write(struct f2fs_io_info *fio);
3229 struct block_device *f2fs_target_device(struct f2fs_sb_info *sbi,
3230                         block_t blk_addr, struct bio *bio);
3231 int f2fs_target_device_index(struct f2fs_sb_info *sbi, block_t blkaddr);
3232 void f2fs_set_data_blkaddr(struct dnode_of_data *dn);
3233 void f2fs_update_data_blkaddr(struct dnode_of_data *dn, block_t blkaddr);
3234 int f2fs_reserve_new_blocks(struct dnode_of_data *dn, blkcnt_t count);
3235 int f2fs_reserve_new_block(struct dnode_of_data *dn);
3236 int f2fs_get_block(struct dnode_of_data *dn, pgoff_t index);
3237 int f2fs_preallocate_blocks(struct kiocb *iocb, struct iov_iter *from);
3238 int f2fs_reserve_block(struct dnode_of_data *dn, pgoff_t index);
3239 struct page *f2fs_get_read_data_page(struct inode *inode, pgoff_t index,
3240                         int op_flags, bool for_write);
3241 struct page *f2fs_find_data_page(struct inode *inode, pgoff_t index);
3242 struct page *f2fs_get_lock_data_page(struct inode *inode, pgoff_t index,
3243                         bool for_write);
3244 struct page *f2fs_get_new_data_page(struct inode *inode,
3245                         struct page *ipage, pgoff_t index, bool new_i_size);
3246 int f2fs_do_write_data_page(struct f2fs_io_info *fio);
3247 void __do_map_lock(struct f2fs_sb_info *sbi, int flag, bool lock);
3248 int f2fs_map_blocks(struct inode *inode, struct f2fs_map_blocks *map,
3249                         int create, int flag);
3250 int f2fs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
3251                         u64 start, u64 len);
3252 bool f2fs_should_update_inplace(struct inode *inode, struct f2fs_io_info *fio);
3253 bool f2fs_should_update_outplace(struct inode *inode, struct f2fs_io_info *fio);
3254 void f2fs_invalidate_page(struct page *page, unsigned int offset,
3255                         unsigned int length);
3256 int f2fs_release_page(struct page *page, gfp_t wait);
3257 #ifdef CONFIG_MIGRATION
3258 int f2fs_migrate_page(struct address_space *mapping, struct page *newpage,
3259                         struct page *page, enum migrate_mode mode);
3260 #endif
3261 bool f2fs_overwrite_io(struct inode *inode, loff_t pos, size_t len);
3262 void f2fs_clear_page_cache_dirty_tag(struct page *page);
3263
3264 /*
3265  * gc.c
3266  */
3267 int f2fs_start_gc_thread(struct f2fs_sb_info *sbi);
3268 void f2fs_stop_gc_thread(struct f2fs_sb_info *sbi);
3269 block_t f2fs_start_bidx_of_node(unsigned int node_ofs, struct inode *inode);
3270 int f2fs_gc(struct f2fs_sb_info *sbi, bool sync, bool background,
3271                         unsigned int segno);
3272 void f2fs_build_gc_manager(struct f2fs_sb_info *sbi);
3273 int f2fs_resize_fs(struct f2fs_sb_info *sbi, __u64 block_count);
3274
3275 /*
3276  * recovery.c
3277  */
3278 int f2fs_recover_fsync_data(struct f2fs_sb_info *sbi, bool check_only);
3279 bool f2fs_space_for_roll_forward(struct f2fs_sb_info *sbi);
3280
3281 /*
3282  * debug.c
3283  */
3284 #ifdef CONFIG_F2FS_STAT_FS
3285 struct f2fs_stat_info {
3286         struct list_head stat_list;
3287         struct f2fs_sb_info *sbi;
3288         int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs;
3289         int main_area_segs, main_area_sections, main_area_zones;
3290         unsigned long long hit_largest, hit_cached, hit_rbtree;
3291         unsigned long long hit_total, total_ext;
3292         int ext_tree, zombie_tree, ext_node;
3293         int ndirty_node, ndirty_dent, ndirty_meta, ndirty_imeta;
3294         int ndirty_data, ndirty_qdata;
3295         int inmem_pages;
3296         unsigned int ndirty_dirs, ndirty_files, nquota_files, ndirty_all;
3297         int nats, dirty_nats, sits, dirty_sits;
3298         int free_nids, avail_nids, alloc_nids;
3299         int total_count, utilization;
3300         int bg_gc, nr_wb_cp_data, nr_wb_data;
3301         int nr_rd_data, nr_rd_node, nr_rd_meta;
3302         int nr_dio_read, nr_dio_write;
3303         unsigned int io_skip_bggc, other_skip_bggc;
3304         int nr_flushing, nr_flushed, flush_list_empty;
3305         int nr_discarding, nr_discarded;
3306         int nr_discard_cmd;
3307         unsigned int undiscard_blks;
3308         int inline_xattr, inline_inode, inline_dir, append, update, orphans;
3309         int aw_cnt, max_aw_cnt, vw_cnt, max_vw_cnt;
3310         unsigned int valid_count, valid_node_count, valid_inode_count, discard_blks;
3311         unsigned int bimodal, avg_vblocks;
3312         int util_free, util_valid, util_invalid;
3313         int rsvd_segs, overp_segs;
3314         int dirty_count, node_pages, meta_pages;
3315         int prefree_count, call_count, cp_count, bg_cp_count;
3316         int tot_segs, node_segs, data_segs, free_segs, free_secs;
3317         int bg_node_segs, bg_data_segs;
3318         int tot_blks, data_blks, node_blks;
3319         int bg_data_blks, bg_node_blks;
3320         unsigned long long skipped_atomic_files[2];
3321         int curseg[NR_CURSEG_TYPE];
3322         int cursec[NR_CURSEG_TYPE];
3323         int curzone[NR_CURSEG_TYPE];
3324
3325         unsigned int meta_count[META_MAX];
3326         unsigned int segment_count[2];
3327         unsigned int block_count[2];
3328         unsigned int inplace_count;
3329         unsigned long long base_mem, cache_mem, page_mem;
3330 };
3331
3332 static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi)
3333 {
3334         return (struct f2fs_stat_info *)sbi->stat_info;
3335 }
3336
3337 #define stat_inc_cp_count(si)           ((si)->cp_count++)
3338 #define stat_inc_bg_cp_count(si)        ((si)->bg_cp_count++)
3339 #define stat_inc_call_count(si)         ((si)->call_count++)
3340 #define stat_inc_bggc_count(sbi)        ((sbi)->bg_gc++)
3341 #define stat_io_skip_bggc_count(sbi)    ((sbi)->io_skip_bggc++)
3342 #define stat_other_skip_bggc_count(sbi) ((sbi)->other_skip_bggc++)
3343 #define stat_inc_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]++)
3344 #define stat_dec_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]--)
3345 #define stat_inc_total_hit(sbi)         (atomic64_inc(&(sbi)->total_hit_ext))
3346 #define stat_inc_rbtree_node_hit(sbi)   (atomic64_inc(&(sbi)->read_hit_rbtree))
3347 #define stat_inc_largest_node_hit(sbi)  (atomic64_inc(&(sbi)->read_hit_largest))
3348 #define stat_inc_cached_node_hit(sbi)   (atomic64_inc(&(sbi)->read_hit_cached))
3349 #define stat_inc_inline_xattr(inode)                                    \
3350         do {                                                            \
3351                 if (f2fs_has_inline_xattr(inode))                       \
3352                         (atomic_inc(&F2FS_I_SB(inode)->inline_xattr));  \
3353         } while (0)
3354 #define stat_dec_inline_xattr(inode)                                    \
3355         do {                                                            \
3356                 if (f2fs_has_inline_xattr(inode))                       \
3357                         (atomic_dec(&F2FS_I_SB(inode)->inline_xattr));  \
3358         } while (0)
3359 #define stat_inc_inline_inode(inode)                                    \
3360         do {                                                            \
3361                 if (f2fs_has_inline_data(inode))                        \
3362                         (atomic_inc(&F2FS_I_SB(inode)->inline_inode));  \
3363         } while (0)
3364 #define stat_dec_inline_inode(inode)                                    \
3365         do {                                                            \
3366                 if (f2fs_has_inline_data(inode))                        \
3367                         (atomic_dec(&F2FS_I_SB(inode)->inline_inode));  \
3368         } while (0)
3369 #define stat_inc_inline_dir(inode)                                      \
3370         do {                                                            \
3371                 if (f2fs_has_inline_dentry(inode))                      \
3372                         (atomic_inc(&F2FS_I_SB(inode)->inline_dir));    \
3373         } while (0)
3374 #define stat_dec_inline_dir(inode)                                      \
3375         do {                                                            \
3376                 if (f2fs_has_inline_dentry(inode))                      \
3377                         (atomic_dec(&F2FS_I_SB(inode)->inline_dir));    \
3378         } while (0)
3379 #define stat_inc_meta_count(sbi, blkaddr)                               \
3380         do {                                                            \
3381                 if (blkaddr < SIT_I(sbi)->sit_base_addr)                \
3382                         atomic_inc(&(sbi)->meta_count[META_CP]);        \
3383                 else if (blkaddr < NM_I(sbi)->nat_blkaddr)              \
3384                         atomic_inc(&(sbi)->meta_count[META_SIT]);       \
3385                 else if (blkaddr < SM_I(sbi)->ssa_blkaddr)              \
3386                         atomic_inc(&(sbi)->meta_count[META_NAT]);       \
3387                 else if (blkaddr < SM_I(sbi)->main_blkaddr)             \
3388                         atomic_inc(&(sbi)->meta_count[META_SSA]);       \
3389         } while (0)
3390 #define stat_inc_seg_type(sbi, curseg)                                  \
3391                 ((sbi)->segment_count[(curseg)->alloc_type]++)
3392 #define stat_inc_block_count(sbi, curseg)                               \
3393                 ((sbi)->block_count[(curseg)->alloc_type]++)
3394 #define stat_inc_inplace_blocks(sbi)                                    \
3395                 (atomic_inc(&(sbi)->inplace_count))
3396 #define stat_inc_atomic_write(inode)                                    \
3397                 (atomic_inc(&F2FS_I_SB(inode)->aw_cnt))
3398 #define stat_dec_atomic_write(inode)                                    \
3399                 (atomic_dec(&F2FS_I_SB(inode)->aw_cnt))
3400 #define stat_update_max_atomic_write(inode)                             \
3401         do {                                                            \
3402                 int cur = atomic_read(&F2FS_I_SB(inode)->aw_cnt);       \
3403                 int max = atomic_read(&F2FS_I_SB(inode)->max_aw_cnt);   \
3404                 if (cur > max)                                          \
3405                         atomic_set(&F2FS_I_SB(inode)->max_aw_cnt, cur); \
3406         } while (0)
3407 #define stat_inc_volatile_write(inode)                                  \
3408                 (atomic_inc(&F2FS_I_SB(inode)->vw_cnt))
3409 #define stat_dec_volatile_write(inode)                                  \
3410                 (atomic_dec(&F2FS_I_SB(inode)->vw_cnt))
3411 #define stat_update_max_volatile_write(inode)                           \
3412         do {                                                            \
3413                 int cur = atomic_read(&F2FS_I_SB(inode)->vw_cnt);       \
3414                 int max = atomic_read(&F2FS_I_SB(inode)->max_vw_cnt);   \
3415                 if (cur > max)                                          \
3416                         atomic_set(&F2FS_I_SB(inode)->max_vw_cnt, cur); \
3417         } while (0)
3418 #define stat_inc_seg_count(sbi, type, gc_type)                          \
3419         do {                                                            \
3420                 struct f2fs_stat_info *si = F2FS_STAT(sbi);             \
3421                 si->tot_segs++;                                         \
3422                 if ((type) == SUM_TYPE_DATA) {                          \
3423                         si->data_segs++;                                \
3424                         si->bg_data_segs += (gc_type == BG_GC) ? 1 : 0; \
3425                 } else {                                                \
3426                         si->node_segs++;                                \
3427                         si->bg_node_segs += (gc_type == BG_GC) ? 1 : 0; \
3428                 }                                                       \
3429         } while (0)
3430
3431 #define stat_inc_tot_blk_count(si, blks)                                \
3432         ((si)->tot_blks += (blks))
3433
3434 #define stat_inc_data_blk_count(sbi, blks, gc_type)                     \
3435         do {                                                            \
3436                 struct f2fs_stat_info *si = F2FS_STAT(sbi);             \
3437                 stat_inc_tot_blk_count(si, blks);                       \
3438                 si->data_blks += (blks);                                \
3439                 si->bg_data_blks += ((gc_type) == BG_GC) ? (blks) : 0;  \
3440         } while (0)
3441
3442 #define stat_inc_node_blk_count(sbi, blks, gc_type)                     \
3443         do {                                                            \
3444                 struct f2fs_stat_info *si = F2FS_STAT(sbi);             \
3445                 stat_inc_tot_blk_count(si, blks);                       \
3446                 si->node_blks += (blks);                                \
3447                 si->bg_node_blks += ((gc_type) == BG_GC) ? (blks) : 0;  \
3448         } while (0)
3449
3450 int f2fs_build_stats(struct f2fs_sb_info *sbi);
3451 void f2fs_destroy_stats(struct f2fs_sb_info *sbi);
3452 void __init f2fs_create_root_stats(void);
3453 void f2fs_destroy_root_stats(void);
3454 #else
3455 #define stat_inc_cp_count(si)                           do { } while (0)
3456 #define stat_inc_bg_cp_count(si)                        do { } while (0)
3457 #define stat_inc_call_count(si)                         do { } while (0)
3458 #define stat_inc_bggc_count(si)                         do { } while (0)
3459 #define stat_io_skip_bggc_count(sbi)                    do { } while (0)
3460 #define stat_other_skip_bggc_count(sbi)                 do { } while (0)
3461 #define stat_inc_dirty_inode(sbi, type)                 do { } while (0)
3462 #define stat_dec_dirty_inode(sbi, type)                 do { } while (0)
3463 #define stat_inc_total_hit(sb)                          do { } while (0)
3464 #define stat_inc_rbtree_node_hit(sb)                    do { } while (0)
3465 #define stat_inc_largest_node_hit(sbi)                  do { } while (0)
3466 #define stat_inc_cached_node_hit(sbi)                   do { } while (0)
3467 #define stat_inc_inline_xattr(inode)                    do { } while (0)
3468 #define stat_dec_inline_xattr(inode)                    do { } while (0)
3469 #define stat_inc_inline_inode(inode)                    do { } while (0)
3470 #define stat_dec_inline_inode(inode)                    do { } while (0)
3471 #define stat_inc_inline_dir(inode)                      do { } while (0)
3472 #define stat_dec_inline_dir(inode)                      do { } while (0)
3473 #define stat_inc_atomic_write(inode)                    do { } while (0)
3474 #define stat_dec_atomic_write(inode)                    do { } while (0)
3475 #define stat_update_max_atomic_write(inode)             do { } while (0)
3476 #define stat_inc_volatile_write(inode)                  do { } while (0)
3477 #define stat_dec_volatile_write(inode)                  do { } while (0)
3478 #define stat_update_max_volatile_write(inode)           do { } while (0)
3479 #define stat_inc_meta_count(sbi, blkaddr)               do { } while (0)
3480 #define stat_inc_seg_type(sbi, curseg)                  do { } while (0)
3481 #define stat_inc_block_count(sbi, curseg)               do { } while (0)
3482 #define stat_inc_inplace_blocks(sbi)                    do { } while (0)
3483 #define stat_inc_seg_count(sbi, type, gc_type)          do { } while (0)
3484 #define stat_inc_tot_blk_count(si, blks)                do { } while (0)
3485 #define stat_inc_data_blk_count(sbi, blks, gc_type)     do { } while (0)
3486 #define stat_inc_node_blk_count(sbi, blks, gc_type)     do { } while (0)
3487
3488 static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; }
3489 static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { }
3490 static inline void __init f2fs_create_root_stats(void) { }
3491 static inline void f2fs_destroy_root_stats(void) { }
3492 #endif
3493
3494 extern const struct file_operations f2fs_dir_operations;
3495 #ifdef CONFIG_UNICODE
3496 extern const struct dentry_operations f2fs_dentry_ops;
3497 #endif
3498 extern const struct file_operations f2fs_file_operations;
3499 extern const struct inode_operations f2fs_file_inode_operations;
3500 extern const struct address_space_operations f2fs_dblock_aops;
3501 extern const struct address_space_operations f2fs_node_aops;
3502 extern const struct address_space_operations f2fs_meta_aops;
3503 extern const struct inode_operations f2fs_dir_inode_operations;
3504 extern const struct inode_operations f2fs_symlink_inode_operations;
3505 extern const struct inode_operations f2fs_encrypted_symlink_inode_operations;
3506 extern const struct inode_operations f2fs_special_inode_operations;
3507 extern struct kmem_cache *f2fs_inode_entry_slab;
3508
3509 /*
3510  * inline.c
3511  */
3512 bool f2fs_may_inline_data(struct inode *inode);
3513 bool f2fs_may_inline_dentry(struct inode *inode);
3514 void f2fs_do_read_inline_data(struct page *page, struct page *ipage);
3515 void f2fs_truncate_inline_inode(struct inode *inode,
3516                                                 struct page *ipage, u64 from);
3517 int f2fs_read_inline_data(struct inode *inode, struct page *page);
3518 int f2fs_convert_inline_page(struct dnode_of_data *dn, struct page *page);
3519 int f2fs_convert_inline_inode(struct inode *inode);
3520 int f2fs_write_inline_data(struct inode *inode, struct page *page);
3521 int f2fs_recover_inline_data(struct inode *inode, struct page *npage);
3522 struct f2fs_dir_entry *f2fs_find_in_inline_dir(struct inode *dir,
3523                         struct fscrypt_name *fname, struct page **res_page);
3524 int f2fs_make_empty_inline_dir(struct inode *inode, struct inode *parent,
3525                         struct page *ipage);
3526 int f2fs_add_inline_entry(struct inode *dir, const struct qstr *new_name,
3527                         const struct qstr *orig_name,
3528                         struct inode *inode, nid_t ino, umode_t mode);
3529 void f2fs_delete_inline_entry(struct f2fs_dir_entry *dentry,
3530                                 struct page *page, struct inode *dir,
3531                                 struct inode *inode);
3532 bool f2fs_empty_inline_dir(struct inode *dir);
3533 int f2fs_read_inline_dir(struct file *file, struct dir_context *ctx,
3534                         struct fscrypt_str *fstr);
3535 int f2fs_inline_data_fiemap(struct inode *inode,
3536                         struct fiemap_extent_info *fieinfo,
3537                         __u64 start, __u64 len);
3538
3539 /*
3540  * shrinker.c
3541  */
3542 unsigned long f2fs_shrink_count(struct shrinker *shrink,
3543                         struct shrink_control *sc);
3544 unsigned long f2fs_shrink_scan(struct shrinker *shrink,
3545                         struct shrink_control *sc);
3546 void f2fs_join_shrinker(struct f2fs_sb_info *sbi);
3547 void f2fs_leave_shrinker(struct f2fs_sb_info *sbi);
3548
3549 /*
3550  * extent_cache.c
3551  */
3552 struct rb_entry *f2fs_lookup_rb_tree(struct rb_root_cached *root,
3553                                 struct rb_entry *cached_re, unsigned int ofs);
3554 struct rb_node **f2fs_lookup_rb_tree_for_insert(struct f2fs_sb_info *sbi,
3555                                 struct rb_root_cached *root,
3556                                 struct rb_node **parent,
3557                                 unsigned int ofs, bool *leftmost);
3558 struct rb_entry *f2fs_lookup_rb_tree_ret(struct rb_root_cached *root,
3559                 struct rb_entry *cached_re, unsigned int ofs,
3560                 struct rb_entry **prev_entry, struct rb_entry **next_entry,
3561                 struct rb_node ***insert_p, struct rb_node **insert_parent,
3562                 bool force, bool *leftmost);
3563 bool f2fs_check_rb_tree_consistence(struct f2fs_sb_info *sbi,
3564                                                 struct rb_root_cached *root);
3565 unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *sbi, int nr_shrink);
3566 bool f2fs_init_extent_tree(struct inode *inode, struct f2fs_extent *i_ext);
3567 void f2fs_drop_extent_tree(struct inode *inode);
3568 unsigned int f2fs_destroy_extent_node(struct inode *inode);
3569 void f2fs_destroy_extent_tree(struct inode *inode);
3570 bool f2fs_lookup_extent_cache(struct inode *inode, pgoff_t pgofs,
3571                         struct extent_info *ei);
3572 void f2fs_update_extent_cache(struct dnode_of_data *dn);
3573 void f2fs_update_extent_cache_range(struct dnode_of_data *dn,
3574                         pgoff_t fofs, block_t blkaddr, unsigned int len);
3575 void f2fs_init_extent_cache_info(struct f2fs_sb_info *sbi);
3576 int __init f2fs_create_extent_cache(void);
3577 void f2fs_destroy_extent_cache(void);
3578
3579 /*
3580  * sysfs.c
3581  */
3582 int __init f2fs_init_sysfs(void);
3583 void f2fs_exit_sysfs(void);
3584 int f2fs_register_sysfs(struct f2fs_sb_info *sbi);
3585 void f2fs_unregister_sysfs(struct f2fs_sb_info *sbi);
3586
3587 /* verity.c */
3588 extern const struct fsverity_operations f2fs_verityops;
3589
3590 /*
3591  * crypto support
3592  */
3593 static inline bool f2fs_encrypted_file(struct inode *inode)
3594 {
3595         return IS_ENCRYPTED(inode) && S_ISREG(inode->i_mode);
3596 }
3597
3598 static inline void f2fs_set_encrypted_inode(struct inode *inode)
3599 {
3600 #ifdef CONFIG_FS_ENCRYPTION
3601         file_set_encrypt(inode);
3602         f2fs_set_inode_flags(inode);
3603 #endif
3604 }
3605
3606 /*
3607  * Returns true if the reads of the inode's data need to undergo some
3608  * postprocessing step, like decryption or authenticity verification.
3609  */
3610 static inline bool f2fs_post_read_required(struct inode *inode)
3611 {
3612         return f2fs_encrypted_file(inode) || fsverity_active(inode);
3613 }
3614
3615 #define F2FS_FEATURE_FUNCS(name, flagname) \
3616 static inline int f2fs_sb_has_##name(struct f2fs_sb_info *sbi) \
3617 { \
3618         return F2FS_HAS_FEATURE(sbi, F2FS_FEATURE_##flagname); \
3619 }
3620
3621 F2FS_FEATURE_FUNCS(encrypt, ENCRYPT);
3622 F2FS_FEATURE_FUNCS(blkzoned, BLKZONED);
3623 F2FS_FEATURE_FUNCS(extra_attr, EXTRA_ATTR);
3624 F2FS_FEATURE_FUNCS(project_quota, PRJQUOTA);
3625 F2FS_FEATURE_FUNCS(inode_chksum, INODE_CHKSUM);
3626 F2FS_FEATURE_FUNCS(flexible_inline_xattr, FLEXIBLE_INLINE_XATTR);
3627 F2FS_FEATURE_FUNCS(quota_ino, QUOTA_INO);
3628 F2FS_FEATURE_FUNCS(inode_crtime, INODE_CRTIME);
3629 F2FS_FEATURE_FUNCS(lost_found, LOST_FOUND);
3630 F2FS_FEATURE_FUNCS(verity, VERITY);
3631 F2FS_FEATURE_FUNCS(sb_chksum, SB_CHKSUM);
3632 F2FS_FEATURE_FUNCS(casefold, CASEFOLD);
3633
3634 #ifdef CONFIG_BLK_DEV_ZONED
3635 static inline bool f2fs_blkz_is_seq(struct f2fs_sb_info *sbi, int devi,
3636                                     block_t blkaddr)
3637 {
3638         unsigned int zno = blkaddr >> sbi->log_blocks_per_blkz;
3639
3640         return test_bit(zno, FDEV(devi).blkz_seq);
3641 }
3642 #endif
3643
3644 static inline bool f2fs_hw_should_discard(struct f2fs_sb_info *sbi)
3645 {
3646         return f2fs_sb_has_blkzoned(sbi);
3647 }
3648
3649 static inline bool f2fs_bdev_support_discard(struct block_device *bdev)
3650 {
3651         return blk_queue_discard(bdev_get_queue(bdev)) ||
3652                bdev_is_zoned(bdev);
3653 }
3654
3655 static inline bool f2fs_hw_support_discard(struct f2fs_sb_info *sbi)
3656 {
3657         int i;
3658
3659         if (!f2fs_is_multi_device(sbi))
3660                 return f2fs_bdev_support_discard(sbi->sb->s_bdev);
3661
3662         for (i = 0; i < sbi->s_ndevs; i++)
3663                 if (f2fs_bdev_support_discard(FDEV(i).bdev))
3664                         return true;
3665         return false;
3666 }
3667
3668 static inline bool f2fs_realtime_discard_enable(struct f2fs_sb_info *sbi)
3669 {
3670         return (test_opt(sbi, DISCARD) && f2fs_hw_support_discard(sbi)) ||
3671                                         f2fs_hw_should_discard(sbi);
3672 }
3673
3674 static inline bool f2fs_hw_is_readonly(struct f2fs_sb_info *sbi)
3675 {
3676         int i;
3677
3678         if (!f2fs_is_multi_device(sbi))
3679                 return bdev_read_only(sbi->sb->s_bdev);
3680
3681         for (i = 0; i < sbi->s_ndevs; i++)
3682                 if (bdev_read_only(FDEV(i).bdev))
3683                         return true;
3684         return false;
3685 }
3686
3687
3688 static inline void set_opt_mode(struct f2fs_sb_info *sbi, unsigned int mt)
3689 {
3690         clear_opt(sbi, ADAPTIVE);
3691         clear_opt(sbi, LFS);
3692
3693         switch (mt) {
3694         case F2FS_MOUNT_ADAPTIVE:
3695                 set_opt(sbi, ADAPTIVE);
3696                 break;
3697         case F2FS_MOUNT_LFS:
3698                 set_opt(sbi, LFS);
3699                 break;
3700         }
3701 }
3702
3703 static inline bool f2fs_may_encrypt(struct inode *inode)
3704 {
3705 #ifdef CONFIG_FS_ENCRYPTION
3706         umode_t mode = inode->i_mode;
3707
3708         return (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode));
3709 #else
3710         return false;
3711 #endif
3712 }
3713
3714 static inline int block_unaligned_IO(struct inode *inode,
3715                                 struct kiocb *iocb, struct iov_iter *iter)
3716 {
3717         unsigned int i_blkbits = READ_ONCE(inode->i_blkbits);
3718         unsigned int blocksize_mask = (1 << i_blkbits) - 1;
3719         loff_t offset = iocb->ki_pos;
3720         unsigned long align = offset | iov_iter_alignment(iter);
3721
3722         return align & blocksize_mask;
3723 }
3724
3725 static inline int allow_outplace_dio(struct inode *inode,
3726                                 struct kiocb *iocb, struct iov_iter *iter)
3727 {
3728         struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
3729         int rw = iov_iter_rw(iter);
3730
3731         return (test_opt(sbi, LFS) && (rw == WRITE) &&
3732                                 !block_unaligned_IO(inode, iocb, iter));
3733 }
3734
3735 static inline bool f2fs_force_buffered_io(struct inode *inode,
3736                                 struct kiocb *iocb, struct iov_iter *iter)
3737 {
3738         struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
3739         int rw = iov_iter_rw(iter);
3740
3741         if (f2fs_post_read_required(inode))
3742                 return true;
3743         if (f2fs_is_multi_device(sbi))
3744                 return true;
3745         /*
3746          * for blkzoned device, fallback direct IO to buffered IO, so
3747          * all IOs can be serialized by log-structured write.
3748          */
3749         if (f2fs_sb_has_blkzoned(sbi))
3750                 return true;
3751         if (test_opt(sbi, LFS) && (rw == WRITE)) {
3752                 if (block_unaligned_IO(inode, iocb, iter))
3753                         return true;
3754                 if (F2FS_IO_ALIGNED(sbi))
3755                         return true;
3756         }
3757         if (is_sbi_flag_set(F2FS_I_SB(inode), SBI_CP_DISABLED) &&
3758                                         !IS_SWAPFILE(inode))
3759                 return true;
3760
3761         return false;
3762 }
3763
3764 #ifdef CONFIG_F2FS_FAULT_INJECTION
3765 extern void f2fs_build_fault_attr(struct f2fs_sb_info *sbi, unsigned int rate,
3766                                                         unsigned int type);
3767 #else
3768 #define f2fs_build_fault_attr(sbi, rate, type)          do { } while (0)
3769 #endif
3770
3771 static inline bool is_journalled_quota(struct f2fs_sb_info *sbi)
3772 {
3773 #ifdef CONFIG_QUOTA
3774         if (f2fs_sb_has_quota_ino(sbi))
3775                 return true;
3776         if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA] ||
3777                 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA] ||
3778                 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
3779                 return true;
3780 #endif
3781         return false;
3782 }
3783
3784 #define EFSBADCRC       EBADMSG         /* Bad CRC detected */
3785 #define EFSCORRUPTED    EUCLEAN         /* Filesystem is corrupted */
3786
3787 #endif /* _LINUX_F2FS_H */