1 /* 2 * fs/f2fs/f2fs.h 3 * 4 * Copyright (c) 2012 Samsung Electronics Co., Ltd. 5 * http://www.samsung.com/ 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License version 2 as 9 * published by the Free Software Foundation. 10 */ 11 #ifndef _LINUX_F2FS_H 12 #define _LINUX_F2FS_H 13 14 #include <linux/types.h> 15 #include <linux/page-flags.h> 16 #include <linux/buffer_head.h> 17 #include <linux/slab.h> 18 #include <linux/crc32.h> 19 #include <linux/magic.h> 20 #include <linux/kobject.h> 21 #include <linux/sched.h> 22 #include <linux/vmalloc.h> 23 #include <linux/bio.h> 24 #include <linux/blkdev.h> 25 #include <linux/fscrypto.h> 26 #include <crypto/hash.h> 27 28 #ifdef CONFIG_F2FS_CHECK_FS 29 #define f2fs_bug_on(sbi, condition) BUG_ON(condition) 30 #else 31 #define f2fs_bug_on(sbi, condition) \ 32 do { \ 33 if (unlikely(condition)) { \ 34 WARN_ON(1); \ 35 set_sbi_flag(sbi, SBI_NEED_FSCK); \ 36 } \ 37 } while (0) 38 #endif 39 40 #ifdef CONFIG_F2FS_FAULT_INJECTION 41 enum { 42 FAULT_KMALLOC, 43 FAULT_PAGE_ALLOC, 44 FAULT_ALLOC_NID, 45 FAULT_ORPHAN, 46 FAULT_BLOCK, 47 FAULT_DIR_DEPTH, 48 FAULT_EVICT_INODE, 49 FAULT_IO, 50 FAULT_MAX, 51 }; 52 53 struct f2fs_fault_info { 54 atomic_t inject_ops; 55 unsigned int inject_rate; 56 unsigned int inject_type; 57 }; 58 59 extern struct f2fs_fault_info f2fs_fault; 60 extern char *fault_name[FAULT_MAX]; 61 #define IS_FAULT_SET(type) (f2fs_fault.inject_type & (1 << (type))) 62 63 static inline bool time_to_inject(int type) 64 { 65 if (!f2fs_fault.inject_rate) 66 return false; 67 if (type == FAULT_KMALLOC && !IS_FAULT_SET(type)) 68 return false; 69 else if (type == FAULT_PAGE_ALLOC && !IS_FAULT_SET(type)) 70 return false; 71 else if (type == FAULT_ALLOC_NID && !IS_FAULT_SET(type)) 72 return false; 73 else if (type == FAULT_ORPHAN && !IS_FAULT_SET(type)) 74 return false; 75 else if (type == FAULT_BLOCK && !IS_FAULT_SET(type)) 76 return false; 77 else if (type == FAULT_DIR_DEPTH && !IS_FAULT_SET(type)) 78 return false; 79 else if (type == FAULT_EVICT_INODE && !IS_FAULT_SET(type)) 80 return false; 81 else if (type == FAULT_IO && !IS_FAULT_SET(type)) 82 return false; 83 84 atomic_inc(&f2fs_fault.inject_ops); 85 if (atomic_read(&f2fs_fault.inject_ops) >= f2fs_fault.inject_rate) { 86 atomic_set(&f2fs_fault.inject_ops, 0); 87 printk("%sF2FS-fs : inject %s in %pF\n", 88 KERN_INFO, 89 fault_name[type], 90 __builtin_return_address(0)); 91 return true; 92 } 93 return false; 94 } 95 #endif 96 97 /* 98 * For mount options 99 */ 100 #define F2FS_MOUNT_BG_GC 0x00000001 101 #define F2FS_MOUNT_DISABLE_ROLL_FORWARD 0x00000002 102 #define F2FS_MOUNT_DISCARD 0x00000004 103 #define F2FS_MOUNT_NOHEAP 0x00000008 104 #define F2FS_MOUNT_XATTR_USER 0x00000010 105 #define F2FS_MOUNT_POSIX_ACL 0x00000020 106 #define F2FS_MOUNT_DISABLE_EXT_IDENTIFY 0x00000040 107 #define F2FS_MOUNT_INLINE_XATTR 0x00000080 108 #define F2FS_MOUNT_INLINE_DATA 0x00000100 109 #define F2FS_MOUNT_INLINE_DENTRY 0x00000200 110 #define F2FS_MOUNT_FLUSH_MERGE 0x00000400 111 #define F2FS_MOUNT_NOBARRIER 0x00000800 112 #define F2FS_MOUNT_FASTBOOT 0x00001000 113 #define F2FS_MOUNT_EXTENT_CACHE 0x00002000 114 #define F2FS_MOUNT_FORCE_FG_GC 0x00004000 115 #define F2FS_MOUNT_DATA_FLUSH 0x00008000 116 #define F2FS_MOUNT_FAULT_INJECTION 0x00010000 117 #define F2FS_MOUNT_ADAPTIVE 0x00020000 118 #define F2FS_MOUNT_LFS 0x00040000 119 120 #define clear_opt(sbi, option) (sbi->mount_opt.opt &= ~F2FS_MOUNT_##option) 121 #define set_opt(sbi, option) (sbi->mount_opt.opt |= F2FS_MOUNT_##option) 122 #define test_opt(sbi, option) (sbi->mount_opt.opt & F2FS_MOUNT_##option) 123 124 #define ver_after(a, b) (typecheck(unsigned long long, a) && \ 125 typecheck(unsigned long long, b) && \ 126 ((long long)((a) - (b)) > 0)) 127 128 typedef u32 block_t; /* 129 * should not change u32, since it is the on-disk block 130 * address format, __le32. 131 */ 132 typedef u32 nid_t; 133 134 struct f2fs_mount_info { 135 unsigned int opt; 136 }; 137 138 #define F2FS_FEATURE_ENCRYPT 0x0001 139 #define F2FS_FEATURE_HMSMR 0x0002 140 141 #define F2FS_HAS_FEATURE(sb, mask) \ 142 ((F2FS_SB(sb)->raw_super->feature & cpu_to_le32(mask)) != 0) 143 #define F2FS_SET_FEATURE(sb, mask) \ 144 F2FS_SB(sb)->raw_super->feature |= cpu_to_le32(mask) 145 #define F2FS_CLEAR_FEATURE(sb, mask) \ 146 F2FS_SB(sb)->raw_super->feature &= ~cpu_to_le32(mask) 147 148 /* 149 * For checkpoint manager 150 */ 151 enum { 152 NAT_BITMAP, 153 SIT_BITMAP 154 }; 155 156 enum { 157 CP_UMOUNT, 158 CP_FASTBOOT, 159 CP_SYNC, 160 CP_RECOVERY, 161 CP_DISCARD, 162 }; 163 164 #define DEF_BATCHED_TRIM_SECTIONS 2 165 #define BATCHED_TRIM_SEGMENTS(sbi) \ 166 (SM_I(sbi)->trim_sections * (sbi)->segs_per_sec) 167 #define BATCHED_TRIM_BLOCKS(sbi) \ 168 (BATCHED_TRIM_SEGMENTS(sbi) << (sbi)->log_blocks_per_seg) 169 #define DEF_CP_INTERVAL 60 /* 60 secs */ 170 #define DEF_IDLE_INTERVAL 5 /* 5 secs */ 171 172 struct cp_control { 173 int reason; 174 __u64 trim_start; 175 __u64 trim_end; 176 __u64 trim_minlen; 177 __u64 trimmed; 178 }; 179 180 /* 181 * For CP/NAT/SIT/SSA readahead 182 */ 183 enum { 184 META_CP, 185 META_NAT, 186 META_SIT, 187 META_SSA, 188 META_POR, 189 }; 190 191 /* for the list of ino */ 192 enum { 193 ORPHAN_INO, /* for orphan ino list */ 194 APPEND_INO, /* for append ino list */ 195 UPDATE_INO, /* for update ino list */ 196 MAX_INO_ENTRY, /* max. list */ 197 }; 198 199 struct ino_entry { 200 struct list_head list; /* list head */ 201 nid_t ino; /* inode number */ 202 }; 203 204 /* for the list of inodes to be GCed */ 205 struct inode_entry { 206 struct list_head list; /* list head */ 207 struct inode *inode; /* vfs inode pointer */ 208 }; 209 210 /* for the list of blockaddresses to be discarded */ 211 struct discard_entry { 212 struct list_head list; /* list head */ 213 block_t blkaddr; /* block address to be discarded */ 214 int len; /* # of consecutive blocks of the discard */ 215 }; 216 217 struct bio_entry { 218 struct list_head list; 219 struct bio *bio; 220 struct completion event; 221 int error; 222 }; 223 224 /* for the list of fsync inodes, used only during recovery */ 225 struct fsync_inode_entry { 226 struct list_head list; /* list head */ 227 struct inode *inode; /* vfs inode pointer */ 228 block_t blkaddr; /* block address locating the last fsync */ 229 block_t last_dentry; /* block address locating the last dentry */ 230 }; 231 232 #define nats_in_cursum(jnl) (le16_to_cpu(jnl->n_nats)) 233 #define sits_in_cursum(jnl) (le16_to_cpu(jnl->n_sits)) 234 235 #define nat_in_journal(jnl, i) (jnl->nat_j.entries[i].ne) 236 #define nid_in_journal(jnl, i) (jnl->nat_j.entries[i].nid) 237 #define sit_in_journal(jnl, i) (jnl->sit_j.entries[i].se) 238 #define segno_in_journal(jnl, i) (jnl->sit_j.entries[i].segno) 239 240 #define MAX_NAT_JENTRIES(jnl) (NAT_JOURNAL_ENTRIES - nats_in_cursum(jnl)) 241 #define MAX_SIT_JENTRIES(jnl) (SIT_JOURNAL_ENTRIES - sits_in_cursum(jnl)) 242 243 static inline int update_nats_in_cursum(struct f2fs_journal *journal, int i) 244 { 245 int before = nats_in_cursum(journal); 246 journal->n_nats = cpu_to_le16(before + i); 247 return before; 248 } 249 250 static inline int update_sits_in_cursum(struct f2fs_journal *journal, int i) 251 { 252 int before = sits_in_cursum(journal); 253 journal->n_sits = cpu_to_le16(before + i); 254 return before; 255 } 256 257 static inline bool __has_cursum_space(struct f2fs_journal *journal, 258 int size, int type) 259 { 260 if (type == NAT_JOURNAL) 261 return size <= MAX_NAT_JENTRIES(journal); 262 return size <= MAX_SIT_JENTRIES(journal); 263 } 264 265 /* 266 * ioctl commands 267 */ 268 #define F2FS_IOC_GETFLAGS FS_IOC_GETFLAGS 269 #define F2FS_IOC_SETFLAGS FS_IOC_SETFLAGS 270 #define F2FS_IOC_GETVERSION FS_IOC_GETVERSION 271 272 #define F2FS_IOCTL_MAGIC 0xf5 273 #define F2FS_IOC_START_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 1) 274 #define F2FS_IOC_COMMIT_ATOMIC_WRITE _IO(F2FS_IOCTL_MAGIC, 2) 275 #define F2FS_IOC_START_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 3) 276 #define F2FS_IOC_RELEASE_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 4) 277 #define F2FS_IOC_ABORT_VOLATILE_WRITE _IO(F2FS_IOCTL_MAGIC, 5) 278 #define F2FS_IOC_GARBAGE_COLLECT _IO(F2FS_IOCTL_MAGIC, 6) 279 #define F2FS_IOC_WRITE_CHECKPOINT _IO(F2FS_IOCTL_MAGIC, 7) 280 #define F2FS_IOC_DEFRAGMENT _IO(F2FS_IOCTL_MAGIC, 8) 281 #define F2FS_IOC_MOVE_RANGE _IOWR(F2FS_IOCTL_MAGIC, 9, \ 282 struct f2fs_move_range) 283 284 #define F2FS_IOC_SET_ENCRYPTION_POLICY FS_IOC_SET_ENCRYPTION_POLICY 285 #define F2FS_IOC_GET_ENCRYPTION_POLICY FS_IOC_GET_ENCRYPTION_POLICY 286 #define F2FS_IOC_GET_ENCRYPTION_PWSALT FS_IOC_GET_ENCRYPTION_PWSALT 287 288 /* 289 * should be same as XFS_IOC_GOINGDOWN. 290 * Flags for going down operation used by FS_IOC_GOINGDOWN 291 */ 292 #define F2FS_IOC_SHUTDOWN _IOR('X', 125, __u32) /* Shutdown */ 293 #define F2FS_GOING_DOWN_FULLSYNC 0x0 /* going down with full sync */ 294 #define F2FS_GOING_DOWN_METASYNC 0x1 /* going down with metadata */ 295 #define F2FS_GOING_DOWN_NOSYNC 0x2 /* going down */ 296 #define F2FS_GOING_DOWN_METAFLUSH 0x3 /* going down with meta flush */ 297 298 #if defined(__KERNEL__) && defined(CONFIG_COMPAT) 299 /* 300 * ioctl commands in 32 bit emulation 301 */ 302 #define F2FS_IOC32_GETFLAGS FS_IOC32_GETFLAGS 303 #define F2FS_IOC32_SETFLAGS FS_IOC32_SETFLAGS 304 #define F2FS_IOC32_GETVERSION FS_IOC32_GETVERSION 305 #endif 306 307 struct f2fs_defragment { 308 u64 start; 309 u64 len; 310 }; 311 312 struct f2fs_move_range { 313 u32 dst_fd; /* destination fd */ 314 u64 pos_in; /* start position in src_fd */ 315 u64 pos_out; /* start position in dst_fd */ 316 u64 len; /* size to move */ 317 }; 318 319 /* 320 * For INODE and NODE manager 321 */ 322 /* for directory operations */ 323 struct f2fs_dentry_ptr { 324 struct inode *inode; 325 const void *bitmap; 326 struct f2fs_dir_entry *dentry; 327 __u8 (*filename)[F2FS_SLOT_LEN]; 328 int max; 329 }; 330 331 static inline void make_dentry_ptr(struct inode *inode, 332 struct f2fs_dentry_ptr *d, void *src, int type) 333 { 334 d->inode = inode; 335 336 if (type == 1) { 337 struct f2fs_dentry_block *t = (struct f2fs_dentry_block *)src; 338 d->max = NR_DENTRY_IN_BLOCK; 339 d->bitmap = &t->dentry_bitmap; 340 d->dentry = t->dentry; 341 d->filename = t->filename; 342 } else { 343 struct f2fs_inline_dentry *t = (struct f2fs_inline_dentry *)src; 344 d->max = NR_INLINE_DENTRY; 345 d->bitmap = &t->dentry_bitmap; 346 d->dentry = t->dentry; 347 d->filename = t->filename; 348 } 349 } 350 351 /* 352 * XATTR_NODE_OFFSET stores xattrs to one node block per file keeping -1 353 * as its node offset to distinguish from index node blocks. 354 * But some bits are used to mark the node block. 355 */ 356 #define XATTR_NODE_OFFSET ((((unsigned int)-1) << OFFSET_BIT_SHIFT) \ 357 >> OFFSET_BIT_SHIFT) 358 enum { 359 ALLOC_NODE, /* allocate a new node page if needed */ 360 LOOKUP_NODE, /* look up a node without readahead */ 361 LOOKUP_NODE_RA, /* 362 * look up a node with readahead called 363 * by get_data_block. 364 */ 365 }; 366 367 #define F2FS_LINK_MAX 0xffffffff /* maximum link count per file */ 368 369 #define MAX_DIR_RA_PAGES 4 /* maximum ra pages of dir */ 370 371 /* vector size for gang look-up from extent cache that consists of radix tree */ 372 #define EXT_TREE_VEC_SIZE 64 373 374 /* for in-memory extent cache entry */ 375 #define F2FS_MIN_EXTENT_LEN 64 /* minimum extent length */ 376 377 /* number of extent info in extent cache we try to shrink */ 378 #define EXTENT_CACHE_SHRINK_NUMBER 128 379 380 struct extent_info { 381 unsigned int fofs; /* start offset in a file */ 382 u32 blk; /* start block address of the extent */ 383 unsigned int len; /* length of the extent */ 384 }; 385 386 struct extent_node { 387 struct rb_node rb_node; /* rb node located in rb-tree */ 388 struct list_head list; /* node in global extent list of sbi */ 389 struct extent_info ei; /* extent info */ 390 struct extent_tree *et; /* extent tree pointer */ 391 }; 392 393 struct extent_tree { 394 nid_t ino; /* inode number */ 395 struct rb_root root; /* root of extent info rb-tree */ 396 struct extent_node *cached_en; /* recently accessed extent node */ 397 struct extent_info largest; /* largested extent info */ 398 struct list_head list; /* to be used by sbi->zombie_list */ 399 rwlock_t lock; /* protect extent info rb-tree */ 400 atomic_t node_cnt; /* # of extent node in rb-tree*/ 401 }; 402 403 /* 404 * This structure is taken from ext4_map_blocks. 405 * 406 * Note that, however, f2fs uses NEW and MAPPED flags for f2fs_map_blocks(). 407 */ 408 #define F2FS_MAP_NEW (1 << BH_New) 409 #define F2FS_MAP_MAPPED (1 << BH_Mapped) 410 #define F2FS_MAP_UNWRITTEN (1 << BH_Unwritten) 411 #define F2FS_MAP_FLAGS (F2FS_MAP_NEW | F2FS_MAP_MAPPED |\ 412 F2FS_MAP_UNWRITTEN) 413 414 struct f2fs_map_blocks { 415 block_t m_pblk; 416 block_t m_lblk; 417 unsigned int m_len; 418 unsigned int m_flags; 419 pgoff_t *m_next_pgofs; /* point next possible non-hole pgofs */ 420 }; 421 422 /* for flag in get_data_block */ 423 #define F2FS_GET_BLOCK_READ 0 424 #define F2FS_GET_BLOCK_DIO 1 425 #define F2FS_GET_BLOCK_FIEMAP 2 426 #define F2FS_GET_BLOCK_BMAP 3 427 #define F2FS_GET_BLOCK_PRE_DIO 4 428 #define F2FS_GET_BLOCK_PRE_AIO 5 429 430 /* 431 * i_advise uses FADVISE_XXX_BIT. We can add additional hints later. 432 */ 433 #define FADVISE_COLD_BIT 0x01 434 #define FADVISE_LOST_PINO_BIT 0x02 435 #define FADVISE_ENCRYPT_BIT 0x04 436 #define FADVISE_ENC_NAME_BIT 0x08 437 438 #define file_is_cold(inode) is_file(inode, FADVISE_COLD_BIT) 439 #define file_wrong_pino(inode) is_file(inode, FADVISE_LOST_PINO_BIT) 440 #define file_set_cold(inode) set_file(inode, FADVISE_COLD_BIT) 441 #define file_lost_pino(inode) set_file(inode, FADVISE_LOST_PINO_BIT) 442 #define file_clear_cold(inode) clear_file(inode, FADVISE_COLD_BIT) 443 #define file_got_pino(inode) clear_file(inode, FADVISE_LOST_PINO_BIT) 444 #define file_is_encrypt(inode) is_file(inode, FADVISE_ENCRYPT_BIT) 445 #define file_set_encrypt(inode) set_file(inode, FADVISE_ENCRYPT_BIT) 446 #define file_clear_encrypt(inode) clear_file(inode, FADVISE_ENCRYPT_BIT) 447 #define file_enc_name(inode) is_file(inode, FADVISE_ENC_NAME_BIT) 448 #define file_set_enc_name(inode) set_file(inode, FADVISE_ENC_NAME_BIT) 449 450 #define DEF_DIR_LEVEL 0 451 452 struct f2fs_inode_info { 453 struct inode vfs_inode; /* serve a vfs inode */ 454 unsigned long i_flags; /* keep an inode flags for ioctl */ 455 unsigned char i_advise; /* use to give file attribute hints */ 456 unsigned char i_dir_level; /* use for dentry level for large dir */ 457 unsigned int i_current_depth; /* use only in directory structure */ 458 unsigned int i_pino; /* parent inode number */ 459 umode_t i_acl_mode; /* keep file acl mode temporarily */ 460 461 /* Use below internally in f2fs*/ 462 unsigned long flags; /* use to pass per-file flags */ 463 struct rw_semaphore i_sem; /* protect fi info */ 464 struct percpu_counter dirty_pages; /* # of dirty pages */ 465 f2fs_hash_t chash; /* hash value of given file name */ 466 unsigned int clevel; /* maximum level of given file name */ 467 nid_t i_xattr_nid; /* node id that contains xattrs */ 468 unsigned long long xattr_ver; /* cp version of xattr modification */ 469 loff_t last_disk_size; /* lastly written file size */ 470 471 struct list_head dirty_list; /* dirty list for dirs and files */ 472 struct list_head gdirty_list; /* linked in global dirty list */ 473 struct list_head inmem_pages; /* inmemory pages managed by f2fs */ 474 struct mutex inmem_lock; /* lock for inmemory pages */ 475 struct extent_tree *extent_tree; /* cached extent_tree entry */ 476 struct rw_semaphore dio_rwsem[2];/* avoid racing between dio and gc */ 477 }; 478 479 static inline void get_extent_info(struct extent_info *ext, 480 struct f2fs_extent *i_ext) 481 { 482 ext->fofs = le32_to_cpu(i_ext->fofs); 483 ext->blk = le32_to_cpu(i_ext->blk); 484 ext->len = le32_to_cpu(i_ext->len); 485 } 486 487 static inline void set_raw_extent(struct extent_info *ext, 488 struct f2fs_extent *i_ext) 489 { 490 i_ext->fofs = cpu_to_le32(ext->fofs); 491 i_ext->blk = cpu_to_le32(ext->blk); 492 i_ext->len = cpu_to_le32(ext->len); 493 } 494 495 static inline void set_extent_info(struct extent_info *ei, unsigned int fofs, 496 u32 blk, unsigned int len) 497 { 498 ei->fofs = fofs; 499 ei->blk = blk; 500 ei->len = len; 501 } 502 503 static inline bool __is_extent_same(struct extent_info *ei1, 504 struct extent_info *ei2) 505 { 506 return (ei1->fofs == ei2->fofs && ei1->blk == ei2->blk && 507 ei1->len == ei2->len); 508 } 509 510 static inline bool __is_extent_mergeable(struct extent_info *back, 511 struct extent_info *front) 512 { 513 return (back->fofs + back->len == front->fofs && 514 back->blk + back->len == front->blk); 515 } 516 517 static inline bool __is_back_mergeable(struct extent_info *cur, 518 struct extent_info *back) 519 { 520 return __is_extent_mergeable(back, cur); 521 } 522 523 static inline bool __is_front_mergeable(struct extent_info *cur, 524 struct extent_info *front) 525 { 526 return __is_extent_mergeable(cur, front); 527 } 528 529 extern void f2fs_mark_inode_dirty_sync(struct inode *); 530 static inline void __try_update_largest_extent(struct inode *inode, 531 struct extent_tree *et, struct extent_node *en) 532 { 533 if (en->ei.len > et->largest.len) { 534 et->largest = en->ei; 535 f2fs_mark_inode_dirty_sync(inode); 536 } 537 } 538 539 struct f2fs_nm_info { 540 block_t nat_blkaddr; /* base disk address of NAT */ 541 nid_t max_nid; /* maximum possible node ids */ 542 nid_t available_nids; /* maximum available node ids */ 543 nid_t next_scan_nid; /* the next nid to be scanned */ 544 unsigned int ram_thresh; /* control the memory footprint */ 545 unsigned int ra_nid_pages; /* # of nid pages to be readaheaded */ 546 unsigned int dirty_nats_ratio; /* control dirty nats ratio threshold */ 547 548 /* NAT cache management */ 549 struct radix_tree_root nat_root;/* root of the nat entry cache */ 550 struct radix_tree_root nat_set_root;/* root of the nat set cache */ 551 struct rw_semaphore nat_tree_lock; /* protect nat_tree_lock */ 552 struct list_head nat_entries; /* cached nat entry list (clean) */ 553 unsigned int nat_cnt; /* the # of cached nat entries */ 554 unsigned int dirty_nat_cnt; /* total num of nat entries in set */ 555 556 /* free node ids management */ 557 struct radix_tree_root free_nid_root;/* root of the free_nid cache */ 558 struct list_head free_nid_list; /* a list for free nids */ 559 spinlock_t free_nid_list_lock; /* protect free nid list */ 560 unsigned int fcnt; /* the number of free node id */ 561 struct mutex build_lock; /* lock for build free nids */ 562 563 /* for checkpoint */ 564 char *nat_bitmap; /* NAT bitmap pointer */ 565 int bitmap_size; /* bitmap size */ 566 }; 567 568 /* 569 * this structure is used as one of function parameters. 570 * all the information are dedicated to a given direct node block determined 571 * by the data offset in a file. 572 */ 573 struct dnode_of_data { 574 struct inode *inode; /* vfs inode pointer */ 575 struct page *inode_page; /* its inode page, NULL is possible */ 576 struct page *node_page; /* cached direct node page */ 577 nid_t nid; /* node id of the direct node block */ 578 unsigned int ofs_in_node; /* data offset in the node page */ 579 bool inode_page_locked; /* inode page is locked or not */ 580 bool node_changed; /* is node block changed */ 581 char cur_level; /* level of hole node page */ 582 char max_level; /* level of current page located */ 583 block_t data_blkaddr; /* block address of the node block */ 584 }; 585 586 static inline void set_new_dnode(struct dnode_of_data *dn, struct inode *inode, 587 struct page *ipage, struct page *npage, nid_t nid) 588 { 589 memset(dn, 0, sizeof(*dn)); 590 dn->inode = inode; 591 dn->inode_page = ipage; 592 dn->node_page = npage; 593 dn->nid = nid; 594 } 595 596 /* 597 * For SIT manager 598 * 599 * By default, there are 6 active log areas across the whole main area. 600 * When considering hot and cold data separation to reduce cleaning overhead, 601 * we split 3 for data logs and 3 for node logs as hot, warm, and cold types, 602 * respectively. 603 * In the current design, you should not change the numbers intentionally. 604 * Instead, as a mount option such as active_logs=x, you can use 2, 4, and 6 605 * logs individually according to the underlying devices. (default: 6) 606 * Just in case, on-disk layout covers maximum 16 logs that consist of 8 for 607 * data and 8 for node logs. 608 */ 609 #define NR_CURSEG_DATA_TYPE (3) 610 #define NR_CURSEG_NODE_TYPE (3) 611 #define NR_CURSEG_TYPE (NR_CURSEG_DATA_TYPE + NR_CURSEG_NODE_TYPE) 612 613 enum { 614 CURSEG_HOT_DATA = 0, /* directory entry blocks */ 615 CURSEG_WARM_DATA, /* data blocks */ 616 CURSEG_COLD_DATA, /* multimedia or GCed data blocks */ 617 CURSEG_HOT_NODE, /* direct node blocks of directory files */ 618 CURSEG_WARM_NODE, /* direct node blocks of normal files */ 619 CURSEG_COLD_NODE, /* indirect node blocks */ 620 NO_CHECK_TYPE, 621 CURSEG_DIRECT_IO, /* to use for the direct IO path */ 622 }; 623 624 struct flush_cmd { 625 struct completion wait; 626 struct llist_node llnode; 627 int ret; 628 }; 629 630 struct flush_cmd_control { 631 struct task_struct *f2fs_issue_flush; /* flush thread */ 632 wait_queue_head_t flush_wait_queue; /* waiting queue for wake-up */ 633 atomic_t submit_flush; /* # of issued flushes */ 634 struct llist_head issue_list; /* list for command issue */ 635 struct llist_node *dispatch_list; /* list for command dispatch */ 636 }; 637 638 struct f2fs_sm_info { 639 struct sit_info *sit_info; /* whole segment information */ 640 struct free_segmap_info *free_info; /* free segment information */ 641 struct dirty_seglist_info *dirty_info; /* dirty segment information */ 642 struct curseg_info *curseg_array; /* active segment information */ 643 644 block_t seg0_blkaddr; /* block address of 0'th segment */ 645 block_t main_blkaddr; /* start block address of main area */ 646 block_t ssa_blkaddr; /* start block address of SSA area */ 647 648 unsigned int segment_count; /* total # of segments */ 649 unsigned int main_segments; /* # of segments in main area */ 650 unsigned int reserved_segments; /* # of reserved segments */ 651 unsigned int ovp_segments; /* # of overprovision segments */ 652 653 /* a threshold to reclaim prefree segments */ 654 unsigned int rec_prefree_segments; 655 656 /* for small discard management */ 657 struct list_head discard_list; /* 4KB discard list */ 658 struct list_head wait_list; /* linked with issued discard bio */ 659 int nr_discards; /* # of discards in the list */ 660 int max_discards; /* max. discards to be issued */ 661 662 /* for batched trimming */ 663 unsigned int trim_sections; /* # of sections to trim */ 664 665 struct list_head sit_entry_set; /* sit entry set list */ 666 667 unsigned int ipu_policy; /* in-place-update policy */ 668 unsigned int min_ipu_util; /* in-place-update threshold */ 669 unsigned int min_fsync_blocks; /* threshold for fsync */ 670 671 /* for flush command control */ 672 struct flush_cmd_control *cmd_control_info; 673 674 }; 675 676 /* 677 * For superblock 678 */ 679 /* 680 * COUNT_TYPE for monitoring 681 * 682 * f2fs monitors the number of several block types such as on-writeback, 683 * dirty dentry blocks, dirty node blocks, and dirty meta blocks. 684 */ 685 enum count_type { 686 F2FS_DIRTY_DENTS, 687 F2FS_DIRTY_DATA, 688 F2FS_DIRTY_NODES, 689 F2FS_DIRTY_META, 690 F2FS_INMEM_PAGES, 691 F2FS_DIRTY_IMETA, 692 NR_COUNT_TYPE, 693 }; 694 695 /* 696 * The below are the page types of bios used in submit_bio(). 697 * The available types are: 698 * DATA User data pages. It operates as async mode. 699 * NODE Node pages. It operates as async mode. 700 * META FS metadata pages such as SIT, NAT, CP. 701 * NR_PAGE_TYPE The number of page types. 702 * META_FLUSH Make sure the previous pages are written 703 * with waiting the bio's completion 704 * ... Only can be used with META. 705 */ 706 #define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type)) 707 enum page_type { 708 DATA, 709 NODE, 710 META, 711 NR_PAGE_TYPE, 712 META_FLUSH, 713 INMEM, /* the below types are used by tracepoints only. */ 714 INMEM_DROP, 715 INMEM_REVOKE, 716 IPU, 717 OPU, 718 }; 719 720 struct f2fs_io_info { 721 struct f2fs_sb_info *sbi; /* f2fs_sb_info pointer */ 722 enum page_type type; /* contains DATA/NODE/META/META_FLUSH */ 723 int op; /* contains REQ_OP_ */ 724 int op_flags; /* rq_flag_bits */ 725 block_t new_blkaddr; /* new block address to be written */ 726 block_t old_blkaddr; /* old block address before Cow */ 727 struct page *page; /* page to be written */ 728 struct page *encrypted_page; /* encrypted page */ 729 }; 730 731 #define is_read_io(rw) (rw == READ) 732 struct f2fs_bio_info { 733 struct f2fs_sb_info *sbi; /* f2fs superblock */ 734 struct bio *bio; /* bios to merge */ 735 sector_t last_block_in_bio; /* last block number */ 736 struct f2fs_io_info fio; /* store buffered io info. */ 737 struct rw_semaphore io_rwsem; /* blocking op for bio */ 738 }; 739 740 enum inode_type { 741 DIR_INODE, /* for dirty dir inode */ 742 FILE_INODE, /* for dirty regular/symlink inode */ 743 DIRTY_META, /* for all dirtied inode metadata */ 744 NR_INODE_TYPE, 745 }; 746 747 /* for inner inode cache management */ 748 struct inode_management { 749 struct radix_tree_root ino_root; /* ino entry array */ 750 spinlock_t ino_lock; /* for ino entry lock */ 751 struct list_head ino_list; /* inode list head */ 752 unsigned long ino_num; /* number of entries */ 753 }; 754 755 /* For s_flag in struct f2fs_sb_info */ 756 enum { 757 SBI_IS_DIRTY, /* dirty flag for checkpoint */ 758 SBI_IS_CLOSE, /* specify unmounting */ 759 SBI_NEED_FSCK, /* need fsck.f2fs to fix */ 760 SBI_POR_DOING, /* recovery is doing or not */ 761 SBI_NEED_SB_WRITE, /* need to recover superblock */ 762 SBI_NEED_CP, /* need to checkpoint */ 763 }; 764 765 enum { 766 CP_TIME, 767 REQ_TIME, 768 MAX_TIME, 769 }; 770 771 #ifdef CONFIG_F2FS_FS_ENCRYPTION 772 #define F2FS_KEY_DESC_PREFIX "f2fs:" 773 #define F2FS_KEY_DESC_PREFIX_SIZE 5 774 #endif 775 struct f2fs_sb_info { 776 struct super_block *sb; /* pointer to VFS super block */ 777 struct proc_dir_entry *s_proc; /* proc entry */ 778 struct f2fs_super_block *raw_super; /* raw super block pointer */ 779 int valid_super_block; /* valid super block no */ 780 unsigned long s_flag; /* flags for sbi */ 781 782 #ifdef CONFIG_F2FS_FS_ENCRYPTION 783 u8 key_prefix[F2FS_KEY_DESC_PREFIX_SIZE]; 784 u8 key_prefix_size; 785 #endif 786 /* for node-related operations */ 787 struct f2fs_nm_info *nm_info; /* node manager */ 788 struct inode *node_inode; /* cache node blocks */ 789 790 /* for segment-related operations */ 791 struct f2fs_sm_info *sm_info; /* segment manager */ 792 793 /* for bio operations */ 794 struct f2fs_bio_info read_io; /* for read bios */ 795 struct f2fs_bio_info write_io[NR_PAGE_TYPE]; /* for write bios */ 796 struct mutex wio_mutex[NODE + 1]; /* bio ordering for NODE/DATA */ 797 798 /* for checkpoint */ 799 struct f2fs_checkpoint *ckpt; /* raw checkpoint pointer */ 800 spinlock_t cp_lock; /* for flag in ckpt */ 801 struct inode *meta_inode; /* cache meta blocks */ 802 struct mutex cp_mutex; /* checkpoint procedure lock */ 803 struct rw_semaphore cp_rwsem; /* blocking FS operations */ 804 struct rw_semaphore node_write; /* locking node writes */ 805 wait_queue_head_t cp_wait; 806 unsigned long last_time[MAX_TIME]; /* to store time in jiffies */ 807 long interval_time[MAX_TIME]; /* to store thresholds */ 808 809 struct inode_management im[MAX_INO_ENTRY]; /* manage inode cache */ 810 811 /* for orphan inode, use 0'th array */ 812 unsigned int max_orphans; /* max orphan inodes */ 813 814 /* for inode management */ 815 struct list_head inode_list[NR_INODE_TYPE]; /* dirty inode list */ 816 spinlock_t inode_lock[NR_INODE_TYPE]; /* for dirty inode list lock */ 817 818 /* for extent tree cache */ 819 struct radix_tree_root extent_tree_root;/* cache extent cache entries */ 820 struct rw_semaphore extent_tree_lock; /* locking extent radix tree */ 821 struct list_head extent_list; /* lru list for shrinker */ 822 spinlock_t extent_lock; /* locking extent lru list */ 823 atomic_t total_ext_tree; /* extent tree count */ 824 struct list_head zombie_list; /* extent zombie tree list */ 825 atomic_t total_zombie_tree; /* extent zombie tree count */ 826 atomic_t total_ext_node; /* extent info count */ 827 828 /* basic filesystem units */ 829 unsigned int log_sectors_per_block; /* log2 sectors per block */ 830 unsigned int log_blocksize; /* log2 block size */ 831 unsigned int blocksize; /* block size */ 832 unsigned int root_ino_num; /* root inode number*/ 833 unsigned int node_ino_num; /* node inode number*/ 834 unsigned int meta_ino_num; /* meta inode number*/ 835 unsigned int log_blocks_per_seg; /* log2 blocks per segment */ 836 unsigned int blocks_per_seg; /* blocks per segment */ 837 unsigned int segs_per_sec; /* segments per section */ 838 unsigned int secs_per_zone; /* sections per zone */ 839 unsigned int total_sections; /* total section count */ 840 unsigned int total_node_count; /* total node block count */ 841 unsigned int total_valid_node_count; /* valid node block count */ 842 loff_t max_file_blocks; /* max block index of file */ 843 int active_logs; /* # of active logs */ 844 int dir_level; /* directory level */ 845 846 block_t user_block_count; /* # of user blocks */ 847 block_t total_valid_block_count; /* # of valid blocks */ 848 block_t discard_blks; /* discard command candidats */ 849 block_t last_valid_block_count; /* for recovery */ 850 u32 s_next_generation; /* for NFS support */ 851 atomic_t nr_wb_bios; /* # of writeback bios */ 852 853 /* # of pages, see count_type */ 854 struct percpu_counter nr_pages[NR_COUNT_TYPE]; 855 /* # of allocated blocks */ 856 struct percpu_counter alloc_valid_block_count; 857 858 /* valid inode count */ 859 struct percpu_counter total_valid_inode_count; 860 861 struct f2fs_mount_info mount_opt; /* mount options */ 862 863 /* for cleaning operations */ 864 struct mutex gc_mutex; /* mutex for GC */ 865 struct f2fs_gc_kthread *gc_thread; /* GC thread */ 866 unsigned int cur_victim_sec; /* current victim section num */ 867 868 /* maximum # of trials to find a victim segment for SSR and GC */ 869 unsigned int max_victim_search; 870 871 /* 872 * for stat information. 873 * one is for the LFS mode, and the other is for the SSR mode. 874 */ 875 #ifdef CONFIG_F2FS_STAT_FS 876 struct f2fs_stat_info *stat_info; /* FS status information */ 877 unsigned int segment_count[2]; /* # of allocated segments */ 878 unsigned int block_count[2]; /* # of allocated blocks */ 879 atomic_t inplace_count; /* # of inplace update */ 880 atomic64_t total_hit_ext; /* # of lookup extent cache */ 881 atomic64_t read_hit_rbtree; /* # of hit rbtree extent node */ 882 atomic64_t read_hit_largest; /* # of hit largest extent node */ 883 atomic64_t read_hit_cached; /* # of hit cached extent node */ 884 atomic_t inline_xattr; /* # of inline_xattr inodes */ 885 atomic_t inline_inode; /* # of inline_data inodes */ 886 atomic_t inline_dir; /* # of inline_dentry inodes */ 887 int bg_gc; /* background gc calls */ 888 unsigned int ndirty_inode[NR_INODE_TYPE]; /* # of dirty inodes */ 889 #endif 890 unsigned int last_victim[2]; /* last victim segment # */ 891 spinlock_t stat_lock; /* lock for stat operations */ 892 893 /* For sysfs suppport */ 894 struct kobject s_kobj; 895 struct completion s_kobj_unregister; 896 897 /* For shrinker support */ 898 struct list_head s_list; 899 struct mutex umount_mutex; 900 unsigned int shrinker_run_no; 901 902 /* For write statistics */ 903 u64 sectors_written_start; 904 u64 kbytes_written; 905 906 /* Reference to checksum algorithm driver via cryptoapi */ 907 struct crypto_shash *s_chksum_driver; 908 }; 909 910 /* For write statistics. Suppose sector size is 512 bytes, 911 * and the return value is in kbytes. s is of struct f2fs_sb_info. 912 */ 913 #define BD_PART_WRITTEN(s) \ 914 (((u64)part_stat_read(s->sb->s_bdev->bd_part, sectors[1]) - \ 915 s->sectors_written_start) >> 1) 916 917 static inline void f2fs_update_time(struct f2fs_sb_info *sbi, int type) 918 { 919 sbi->last_time[type] = jiffies; 920 } 921 922 static inline bool f2fs_time_over(struct f2fs_sb_info *sbi, int type) 923 { 924 struct timespec ts = {sbi->interval_time[type], 0}; 925 unsigned long interval = timespec_to_jiffies(&ts); 926 927 return time_after(jiffies, sbi->last_time[type] + interval); 928 } 929 930 static inline bool is_idle(struct f2fs_sb_info *sbi) 931 { 932 struct block_device *bdev = sbi->sb->s_bdev; 933 struct request_queue *q = bdev_get_queue(bdev); 934 struct request_list *rl = &q->root_rl; 935 936 if (rl->count[BLK_RW_SYNC] || rl->count[BLK_RW_ASYNC]) 937 return 0; 938 939 return f2fs_time_over(sbi, REQ_TIME); 940 } 941 942 /* 943 * Inline functions 944 */ 945 static inline u32 f2fs_crc32(struct f2fs_sb_info *sbi, const void *address, 946 unsigned int length) 947 { 948 SHASH_DESC_ON_STACK(shash, sbi->s_chksum_driver); 949 u32 *ctx = (u32 *)shash_desc_ctx(shash); 950 int err; 951 952 shash->tfm = sbi->s_chksum_driver; 953 shash->flags = 0; 954 *ctx = F2FS_SUPER_MAGIC; 955 956 err = crypto_shash_update(shash, address, length); 957 BUG_ON(err); 958 959 return *ctx; 960 } 961 962 static inline bool f2fs_crc_valid(struct f2fs_sb_info *sbi, __u32 blk_crc, 963 void *buf, size_t buf_size) 964 { 965 return f2fs_crc32(sbi, buf, buf_size) == blk_crc; 966 } 967 968 static inline struct f2fs_inode_info *F2FS_I(struct inode *inode) 969 { 970 return container_of(inode, struct f2fs_inode_info, vfs_inode); 971 } 972 973 static inline struct f2fs_sb_info *F2FS_SB(struct super_block *sb) 974 { 975 return sb->s_fs_info; 976 } 977 978 static inline struct f2fs_sb_info *F2FS_I_SB(struct inode *inode) 979 { 980 return F2FS_SB(inode->i_sb); 981 } 982 983 static inline struct f2fs_sb_info *F2FS_M_SB(struct address_space *mapping) 984 { 985 return F2FS_I_SB(mapping->host); 986 } 987 988 static inline struct f2fs_sb_info *F2FS_P_SB(struct page *page) 989 { 990 return F2FS_M_SB(page->mapping); 991 } 992 993 static inline struct f2fs_super_block *F2FS_RAW_SUPER(struct f2fs_sb_info *sbi) 994 { 995 return (struct f2fs_super_block *)(sbi->raw_super); 996 } 997 998 static inline struct f2fs_checkpoint *F2FS_CKPT(struct f2fs_sb_info *sbi) 999 { 1000 return (struct f2fs_checkpoint *)(sbi->ckpt); 1001 } 1002 1003 static inline struct f2fs_node *F2FS_NODE(struct page *page) 1004 { 1005 return (struct f2fs_node *)page_address(page); 1006 } 1007 1008 static inline struct f2fs_inode *F2FS_INODE(struct page *page) 1009 { 1010 return &((struct f2fs_node *)page_address(page))->i; 1011 } 1012 1013 static inline struct f2fs_nm_info *NM_I(struct f2fs_sb_info *sbi) 1014 { 1015 return (struct f2fs_nm_info *)(sbi->nm_info); 1016 } 1017 1018 static inline struct f2fs_sm_info *SM_I(struct f2fs_sb_info *sbi) 1019 { 1020 return (struct f2fs_sm_info *)(sbi->sm_info); 1021 } 1022 1023 static inline struct sit_info *SIT_I(struct f2fs_sb_info *sbi) 1024 { 1025 return (struct sit_info *)(SM_I(sbi)->sit_info); 1026 } 1027 1028 static inline struct free_segmap_info *FREE_I(struct f2fs_sb_info *sbi) 1029 { 1030 return (struct free_segmap_info *)(SM_I(sbi)->free_info); 1031 } 1032 1033 static inline struct dirty_seglist_info *DIRTY_I(struct f2fs_sb_info *sbi) 1034 { 1035 return (struct dirty_seglist_info *)(SM_I(sbi)->dirty_info); 1036 } 1037 1038 static inline struct address_space *META_MAPPING(struct f2fs_sb_info *sbi) 1039 { 1040 return sbi->meta_inode->i_mapping; 1041 } 1042 1043 static inline struct address_space *NODE_MAPPING(struct f2fs_sb_info *sbi) 1044 { 1045 return sbi->node_inode->i_mapping; 1046 } 1047 1048 static inline bool is_sbi_flag_set(struct f2fs_sb_info *sbi, unsigned int type) 1049 { 1050 return test_bit(type, &sbi->s_flag); 1051 } 1052 1053 static inline void set_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type) 1054 { 1055 set_bit(type, &sbi->s_flag); 1056 } 1057 1058 static inline void clear_sbi_flag(struct f2fs_sb_info *sbi, unsigned int type) 1059 { 1060 clear_bit(type, &sbi->s_flag); 1061 } 1062 1063 static inline unsigned long long cur_cp_version(struct f2fs_checkpoint *cp) 1064 { 1065 return le64_to_cpu(cp->checkpoint_ver); 1066 } 1067 1068 static inline bool __is_set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f) 1069 { 1070 unsigned int ckpt_flags = le32_to_cpu(cp->ckpt_flags); 1071 1072 return ckpt_flags & f; 1073 } 1074 1075 static inline bool is_set_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f) 1076 { 1077 return __is_set_ckpt_flags(F2FS_CKPT(sbi), f); 1078 } 1079 1080 static inline void __set_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f) 1081 { 1082 unsigned int ckpt_flags; 1083 1084 ckpt_flags = le32_to_cpu(cp->ckpt_flags); 1085 ckpt_flags |= f; 1086 cp->ckpt_flags = cpu_to_le32(ckpt_flags); 1087 } 1088 1089 static inline void set_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f) 1090 { 1091 spin_lock(&sbi->cp_lock); 1092 __set_ckpt_flags(F2FS_CKPT(sbi), f); 1093 spin_unlock(&sbi->cp_lock); 1094 } 1095 1096 static inline void __clear_ckpt_flags(struct f2fs_checkpoint *cp, unsigned int f) 1097 { 1098 unsigned int ckpt_flags; 1099 1100 ckpt_flags = le32_to_cpu(cp->ckpt_flags); 1101 ckpt_flags &= (~f); 1102 cp->ckpt_flags = cpu_to_le32(ckpt_flags); 1103 } 1104 1105 static inline void clear_ckpt_flags(struct f2fs_sb_info *sbi, unsigned int f) 1106 { 1107 spin_lock(&sbi->cp_lock); 1108 __clear_ckpt_flags(F2FS_CKPT(sbi), f); 1109 spin_unlock(&sbi->cp_lock); 1110 } 1111 1112 static inline bool f2fs_discard_en(struct f2fs_sb_info *sbi) 1113 { 1114 struct request_queue *q = bdev_get_queue(sbi->sb->s_bdev); 1115 1116 return blk_queue_discard(q); 1117 } 1118 1119 static inline void f2fs_lock_op(struct f2fs_sb_info *sbi) 1120 { 1121 down_read(&sbi->cp_rwsem); 1122 } 1123 1124 static inline void f2fs_unlock_op(struct f2fs_sb_info *sbi) 1125 { 1126 up_read(&sbi->cp_rwsem); 1127 } 1128 1129 static inline void f2fs_lock_all(struct f2fs_sb_info *sbi) 1130 { 1131 down_write(&sbi->cp_rwsem); 1132 } 1133 1134 static inline void f2fs_unlock_all(struct f2fs_sb_info *sbi) 1135 { 1136 up_write(&sbi->cp_rwsem); 1137 } 1138 1139 static inline int __get_cp_reason(struct f2fs_sb_info *sbi) 1140 { 1141 int reason = CP_SYNC; 1142 1143 if (test_opt(sbi, FASTBOOT)) 1144 reason = CP_FASTBOOT; 1145 if (is_sbi_flag_set(sbi, SBI_IS_CLOSE)) 1146 reason = CP_UMOUNT; 1147 return reason; 1148 } 1149 1150 static inline bool __remain_node_summaries(int reason) 1151 { 1152 return (reason == CP_UMOUNT || reason == CP_FASTBOOT); 1153 } 1154 1155 static inline bool __exist_node_summaries(struct f2fs_sb_info *sbi) 1156 { 1157 return (is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG) || 1158 is_set_ckpt_flags(sbi, CP_FASTBOOT_FLAG)); 1159 } 1160 1161 /* 1162 * Check whether the given nid is within node id range. 1163 */ 1164 static inline int check_nid_range(struct f2fs_sb_info *sbi, nid_t nid) 1165 { 1166 if (unlikely(nid < F2FS_ROOT_INO(sbi))) 1167 return -EINVAL; 1168 if (unlikely(nid >= NM_I(sbi)->max_nid)) 1169 return -EINVAL; 1170 return 0; 1171 } 1172 1173 #define F2FS_DEFAULT_ALLOCATED_BLOCKS 1 1174 1175 /* 1176 * Check whether the inode has blocks or not 1177 */ 1178 static inline int F2FS_HAS_BLOCKS(struct inode *inode) 1179 { 1180 if (F2FS_I(inode)->i_xattr_nid) 1181 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS + 1; 1182 else 1183 return inode->i_blocks > F2FS_DEFAULT_ALLOCATED_BLOCKS; 1184 } 1185 1186 static inline bool f2fs_has_xattr_block(unsigned int ofs) 1187 { 1188 return ofs == XATTR_NODE_OFFSET; 1189 } 1190 1191 static inline void f2fs_i_blocks_write(struct inode *, blkcnt_t, bool); 1192 static inline bool inc_valid_block_count(struct f2fs_sb_info *sbi, 1193 struct inode *inode, blkcnt_t *count) 1194 { 1195 blkcnt_t diff; 1196 1197 #ifdef CONFIG_F2FS_FAULT_INJECTION 1198 if (time_to_inject(FAULT_BLOCK)) 1199 return false; 1200 #endif 1201 /* 1202 * let's increase this in prior to actual block count change in order 1203 * for f2fs_sync_file to avoid data races when deciding checkpoint. 1204 */ 1205 percpu_counter_add(&sbi->alloc_valid_block_count, (*count)); 1206 1207 spin_lock(&sbi->stat_lock); 1208 sbi->total_valid_block_count += (block_t)(*count); 1209 if (unlikely(sbi->total_valid_block_count > sbi->user_block_count)) { 1210 diff = sbi->total_valid_block_count - sbi->user_block_count; 1211 *count -= diff; 1212 sbi->total_valid_block_count = sbi->user_block_count; 1213 if (!*count) { 1214 spin_unlock(&sbi->stat_lock); 1215 percpu_counter_sub(&sbi->alloc_valid_block_count, diff); 1216 return false; 1217 } 1218 } 1219 spin_unlock(&sbi->stat_lock); 1220 1221 f2fs_i_blocks_write(inode, *count, true); 1222 return true; 1223 } 1224 1225 static inline void dec_valid_block_count(struct f2fs_sb_info *sbi, 1226 struct inode *inode, 1227 blkcnt_t count) 1228 { 1229 spin_lock(&sbi->stat_lock); 1230 f2fs_bug_on(sbi, sbi->total_valid_block_count < (block_t) count); 1231 f2fs_bug_on(sbi, inode->i_blocks < count); 1232 sbi->total_valid_block_count -= (block_t)count; 1233 spin_unlock(&sbi->stat_lock); 1234 f2fs_i_blocks_write(inode, count, false); 1235 } 1236 1237 static inline void inc_page_count(struct f2fs_sb_info *sbi, int count_type) 1238 { 1239 percpu_counter_inc(&sbi->nr_pages[count_type]); 1240 1241 if (count_type == F2FS_DIRTY_DATA || count_type == F2FS_INMEM_PAGES) 1242 return; 1243 1244 set_sbi_flag(sbi, SBI_IS_DIRTY); 1245 } 1246 1247 static inline void inode_inc_dirty_pages(struct inode *inode) 1248 { 1249 percpu_counter_inc(&F2FS_I(inode)->dirty_pages); 1250 inc_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ? 1251 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA); 1252 } 1253 1254 static inline void dec_page_count(struct f2fs_sb_info *sbi, int count_type) 1255 { 1256 percpu_counter_dec(&sbi->nr_pages[count_type]); 1257 } 1258 1259 static inline void inode_dec_dirty_pages(struct inode *inode) 1260 { 1261 if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) && 1262 !S_ISLNK(inode->i_mode)) 1263 return; 1264 1265 percpu_counter_dec(&F2FS_I(inode)->dirty_pages); 1266 dec_page_count(F2FS_I_SB(inode), S_ISDIR(inode->i_mode) ? 1267 F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA); 1268 } 1269 1270 static inline s64 get_pages(struct f2fs_sb_info *sbi, int count_type) 1271 { 1272 return percpu_counter_sum_positive(&sbi->nr_pages[count_type]); 1273 } 1274 1275 static inline s64 get_dirty_pages(struct inode *inode) 1276 { 1277 return percpu_counter_sum_positive(&F2FS_I(inode)->dirty_pages); 1278 } 1279 1280 static inline int get_blocktype_secs(struct f2fs_sb_info *sbi, int block_type) 1281 { 1282 unsigned int pages_per_sec = sbi->segs_per_sec * sbi->blocks_per_seg; 1283 unsigned int segs = (get_pages(sbi, block_type) + pages_per_sec - 1) >> 1284 sbi->log_blocks_per_seg; 1285 1286 return segs / sbi->segs_per_sec; 1287 } 1288 1289 static inline block_t valid_user_blocks(struct f2fs_sb_info *sbi) 1290 { 1291 return sbi->total_valid_block_count; 1292 } 1293 1294 static inline block_t discard_blocks(struct f2fs_sb_info *sbi) 1295 { 1296 return sbi->discard_blks; 1297 } 1298 1299 static inline unsigned long __bitmap_size(struct f2fs_sb_info *sbi, int flag) 1300 { 1301 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi); 1302 1303 /* return NAT or SIT bitmap */ 1304 if (flag == NAT_BITMAP) 1305 return le32_to_cpu(ckpt->nat_ver_bitmap_bytesize); 1306 else if (flag == SIT_BITMAP) 1307 return le32_to_cpu(ckpt->sit_ver_bitmap_bytesize); 1308 1309 return 0; 1310 } 1311 1312 static inline block_t __cp_payload(struct f2fs_sb_info *sbi) 1313 { 1314 return le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_payload); 1315 } 1316 1317 static inline void *__bitmap_ptr(struct f2fs_sb_info *sbi, int flag) 1318 { 1319 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi); 1320 int offset; 1321 1322 if (__cp_payload(sbi) > 0) { 1323 if (flag == NAT_BITMAP) 1324 return &ckpt->sit_nat_version_bitmap; 1325 else 1326 return (unsigned char *)ckpt + F2FS_BLKSIZE; 1327 } else { 1328 offset = (flag == NAT_BITMAP) ? 1329 le32_to_cpu(ckpt->sit_ver_bitmap_bytesize) : 0; 1330 return &ckpt->sit_nat_version_bitmap + offset; 1331 } 1332 } 1333 1334 static inline block_t __start_cp_addr(struct f2fs_sb_info *sbi) 1335 { 1336 block_t start_addr; 1337 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi); 1338 unsigned long long ckpt_version = cur_cp_version(ckpt); 1339 1340 start_addr = le32_to_cpu(F2FS_RAW_SUPER(sbi)->cp_blkaddr); 1341 1342 /* 1343 * odd numbered checkpoint should at cp segment 0 1344 * and even segment must be at cp segment 1 1345 */ 1346 if (!(ckpt_version & 1)) 1347 start_addr += sbi->blocks_per_seg; 1348 1349 return start_addr; 1350 } 1351 1352 static inline block_t __start_sum_addr(struct f2fs_sb_info *sbi) 1353 { 1354 return le32_to_cpu(F2FS_CKPT(sbi)->cp_pack_start_sum); 1355 } 1356 1357 static inline bool inc_valid_node_count(struct f2fs_sb_info *sbi, 1358 struct inode *inode) 1359 { 1360 block_t valid_block_count; 1361 unsigned int valid_node_count; 1362 1363 spin_lock(&sbi->stat_lock); 1364 1365 valid_block_count = sbi->total_valid_block_count + 1; 1366 if (unlikely(valid_block_count > sbi->user_block_count)) { 1367 spin_unlock(&sbi->stat_lock); 1368 return false; 1369 } 1370 1371 valid_node_count = sbi->total_valid_node_count + 1; 1372 if (unlikely(valid_node_count > sbi->total_node_count)) { 1373 spin_unlock(&sbi->stat_lock); 1374 return false; 1375 } 1376 1377 if (inode) 1378 f2fs_i_blocks_write(inode, 1, true); 1379 1380 sbi->total_valid_node_count++; 1381 sbi->total_valid_block_count++; 1382 spin_unlock(&sbi->stat_lock); 1383 1384 percpu_counter_inc(&sbi->alloc_valid_block_count); 1385 return true; 1386 } 1387 1388 static inline void dec_valid_node_count(struct f2fs_sb_info *sbi, 1389 struct inode *inode) 1390 { 1391 spin_lock(&sbi->stat_lock); 1392 1393 f2fs_bug_on(sbi, !sbi->total_valid_block_count); 1394 f2fs_bug_on(sbi, !sbi->total_valid_node_count); 1395 f2fs_bug_on(sbi, !inode->i_blocks); 1396 1397 f2fs_i_blocks_write(inode, 1, false); 1398 sbi->total_valid_node_count--; 1399 sbi->total_valid_block_count--; 1400 1401 spin_unlock(&sbi->stat_lock); 1402 } 1403 1404 static inline unsigned int valid_node_count(struct f2fs_sb_info *sbi) 1405 { 1406 return sbi->total_valid_node_count; 1407 } 1408 1409 static inline void inc_valid_inode_count(struct f2fs_sb_info *sbi) 1410 { 1411 percpu_counter_inc(&sbi->total_valid_inode_count); 1412 } 1413 1414 static inline void dec_valid_inode_count(struct f2fs_sb_info *sbi) 1415 { 1416 percpu_counter_dec(&sbi->total_valid_inode_count); 1417 } 1418 1419 static inline s64 valid_inode_count(struct f2fs_sb_info *sbi) 1420 { 1421 return percpu_counter_sum_positive(&sbi->total_valid_inode_count); 1422 } 1423 1424 static inline struct page *f2fs_grab_cache_page(struct address_space *mapping, 1425 pgoff_t index, bool for_write) 1426 { 1427 #ifdef CONFIG_F2FS_FAULT_INJECTION 1428 struct page *page = find_lock_page(mapping, index); 1429 if (page) 1430 return page; 1431 1432 if (time_to_inject(FAULT_PAGE_ALLOC)) 1433 return NULL; 1434 #endif 1435 if (!for_write) 1436 return grab_cache_page(mapping, index); 1437 return grab_cache_page_write_begin(mapping, index, AOP_FLAG_NOFS); 1438 } 1439 1440 static inline void f2fs_copy_page(struct page *src, struct page *dst) 1441 { 1442 char *src_kaddr = kmap(src); 1443 char *dst_kaddr = kmap(dst); 1444 1445 memcpy(dst_kaddr, src_kaddr, PAGE_SIZE); 1446 kunmap(dst); 1447 kunmap(src); 1448 } 1449 1450 static inline void f2fs_put_page(struct page *page, int unlock) 1451 { 1452 if (!page) 1453 return; 1454 1455 if (unlock) { 1456 f2fs_bug_on(F2FS_P_SB(page), !PageLocked(page)); 1457 unlock_page(page); 1458 } 1459 put_page(page); 1460 } 1461 1462 static inline void f2fs_put_dnode(struct dnode_of_data *dn) 1463 { 1464 if (dn->node_page) 1465 f2fs_put_page(dn->node_page, 1); 1466 if (dn->inode_page && dn->node_page != dn->inode_page) 1467 f2fs_put_page(dn->inode_page, 0); 1468 dn->node_page = NULL; 1469 dn->inode_page = NULL; 1470 } 1471 1472 static inline struct kmem_cache *f2fs_kmem_cache_create(const char *name, 1473 size_t size) 1474 { 1475 return kmem_cache_create(name, size, 0, SLAB_RECLAIM_ACCOUNT, NULL); 1476 } 1477 1478 static inline void *f2fs_kmem_cache_alloc(struct kmem_cache *cachep, 1479 gfp_t flags) 1480 { 1481 void *entry; 1482 1483 entry = kmem_cache_alloc(cachep, flags); 1484 if (!entry) 1485 entry = kmem_cache_alloc(cachep, flags | __GFP_NOFAIL); 1486 return entry; 1487 } 1488 1489 static inline struct bio *f2fs_bio_alloc(int npages) 1490 { 1491 struct bio *bio; 1492 1493 /* No failure on bio allocation */ 1494 bio = bio_alloc(GFP_NOIO, npages); 1495 if (!bio) 1496 bio = bio_alloc(GFP_NOIO | __GFP_NOFAIL, npages); 1497 return bio; 1498 } 1499 1500 static inline void f2fs_radix_tree_insert(struct radix_tree_root *root, 1501 unsigned long index, void *item) 1502 { 1503 while (radix_tree_insert(root, index, item)) 1504 cond_resched(); 1505 } 1506 1507 #define RAW_IS_INODE(p) ((p)->footer.nid == (p)->footer.ino) 1508 1509 static inline bool IS_INODE(struct page *page) 1510 { 1511 struct f2fs_node *p = F2FS_NODE(page); 1512 return RAW_IS_INODE(p); 1513 } 1514 1515 static inline __le32 *blkaddr_in_node(struct f2fs_node *node) 1516 { 1517 return RAW_IS_INODE(node) ? node->i.i_addr : node->dn.addr; 1518 } 1519 1520 static inline block_t datablock_addr(struct page *node_page, 1521 unsigned int offset) 1522 { 1523 struct f2fs_node *raw_node; 1524 __le32 *addr_array; 1525 raw_node = F2FS_NODE(node_page); 1526 addr_array = blkaddr_in_node(raw_node); 1527 return le32_to_cpu(addr_array[offset]); 1528 } 1529 1530 static inline int f2fs_test_bit(unsigned int nr, char *addr) 1531 { 1532 int mask; 1533 1534 addr += (nr >> 3); 1535 mask = 1 << (7 - (nr & 0x07)); 1536 return mask & *addr; 1537 } 1538 1539 static inline void f2fs_set_bit(unsigned int nr, char *addr) 1540 { 1541 int mask; 1542 1543 addr += (nr >> 3); 1544 mask = 1 << (7 - (nr & 0x07)); 1545 *addr |= mask; 1546 } 1547 1548 static inline void f2fs_clear_bit(unsigned int nr, char *addr) 1549 { 1550 int mask; 1551 1552 addr += (nr >> 3); 1553 mask = 1 << (7 - (nr & 0x07)); 1554 *addr &= ~mask; 1555 } 1556 1557 static inline int f2fs_test_and_set_bit(unsigned int nr, char *addr) 1558 { 1559 int mask; 1560 int ret; 1561 1562 addr += (nr >> 3); 1563 mask = 1 << (7 - (nr & 0x07)); 1564 ret = mask & *addr; 1565 *addr |= mask; 1566 return ret; 1567 } 1568 1569 static inline int f2fs_test_and_clear_bit(unsigned int nr, char *addr) 1570 { 1571 int mask; 1572 int ret; 1573 1574 addr += (nr >> 3); 1575 mask = 1 << (7 - (nr & 0x07)); 1576 ret = mask & *addr; 1577 *addr &= ~mask; 1578 return ret; 1579 } 1580 1581 static inline void f2fs_change_bit(unsigned int nr, char *addr) 1582 { 1583 int mask; 1584 1585 addr += (nr >> 3); 1586 mask = 1 << (7 - (nr & 0x07)); 1587 *addr ^= mask; 1588 } 1589 1590 /* used for f2fs_inode_info->flags */ 1591 enum { 1592 FI_NEW_INODE, /* indicate newly allocated inode */ 1593 FI_DIRTY_INODE, /* indicate inode is dirty or not */ 1594 FI_AUTO_RECOVER, /* indicate inode is recoverable */ 1595 FI_DIRTY_DIR, /* indicate directory has dirty pages */ 1596 FI_INC_LINK, /* need to increment i_nlink */ 1597 FI_ACL_MODE, /* indicate acl mode */ 1598 FI_NO_ALLOC, /* should not allocate any blocks */ 1599 FI_FREE_NID, /* free allocated nide */ 1600 FI_NO_EXTENT, /* not to use the extent cache */ 1601 FI_INLINE_XATTR, /* used for inline xattr */ 1602 FI_INLINE_DATA, /* used for inline data*/ 1603 FI_INLINE_DENTRY, /* used for inline dentry */ 1604 FI_APPEND_WRITE, /* inode has appended data */ 1605 FI_UPDATE_WRITE, /* inode has in-place-update data */ 1606 FI_NEED_IPU, /* used for ipu per file */ 1607 FI_ATOMIC_FILE, /* indicate atomic file */ 1608 FI_VOLATILE_FILE, /* indicate volatile file */ 1609 FI_FIRST_BLOCK_WRITTEN, /* indicate #0 data block was written */ 1610 FI_DROP_CACHE, /* drop dirty page cache */ 1611 FI_DATA_EXIST, /* indicate data exists */ 1612 FI_INLINE_DOTS, /* indicate inline dot dentries */ 1613 FI_DO_DEFRAG, /* indicate defragment is running */ 1614 FI_DIRTY_FILE, /* indicate regular/symlink has dirty pages */ 1615 }; 1616 1617 static inline void __mark_inode_dirty_flag(struct inode *inode, 1618 int flag, bool set) 1619 { 1620 switch (flag) { 1621 case FI_INLINE_XATTR: 1622 case FI_INLINE_DATA: 1623 case FI_INLINE_DENTRY: 1624 if (set) 1625 return; 1626 case FI_DATA_EXIST: 1627 case FI_INLINE_DOTS: 1628 f2fs_mark_inode_dirty_sync(inode); 1629 } 1630 } 1631 1632 static inline void set_inode_flag(struct inode *inode, int flag) 1633 { 1634 if (!test_bit(flag, &F2FS_I(inode)->flags)) 1635 set_bit(flag, &F2FS_I(inode)->flags); 1636 __mark_inode_dirty_flag(inode, flag, true); 1637 } 1638 1639 static inline int is_inode_flag_set(struct inode *inode, int flag) 1640 { 1641 return test_bit(flag, &F2FS_I(inode)->flags); 1642 } 1643 1644 static inline void clear_inode_flag(struct inode *inode, int flag) 1645 { 1646 if (test_bit(flag, &F2FS_I(inode)->flags)) 1647 clear_bit(flag, &F2FS_I(inode)->flags); 1648 __mark_inode_dirty_flag(inode, flag, false); 1649 } 1650 1651 static inline void set_acl_inode(struct inode *inode, umode_t mode) 1652 { 1653 F2FS_I(inode)->i_acl_mode = mode; 1654 set_inode_flag(inode, FI_ACL_MODE); 1655 f2fs_mark_inode_dirty_sync(inode); 1656 } 1657 1658 static inline void f2fs_i_links_write(struct inode *inode, bool inc) 1659 { 1660 if (inc) 1661 inc_nlink(inode); 1662 else 1663 drop_nlink(inode); 1664 f2fs_mark_inode_dirty_sync(inode); 1665 } 1666 1667 static inline void f2fs_i_blocks_write(struct inode *inode, 1668 blkcnt_t diff, bool add) 1669 { 1670 bool clean = !is_inode_flag_set(inode, FI_DIRTY_INODE); 1671 bool recover = is_inode_flag_set(inode, FI_AUTO_RECOVER); 1672 1673 inode->i_blocks = add ? inode->i_blocks + diff : 1674 inode->i_blocks - diff; 1675 f2fs_mark_inode_dirty_sync(inode); 1676 if (clean || recover) 1677 set_inode_flag(inode, FI_AUTO_RECOVER); 1678 } 1679 1680 static inline void f2fs_i_size_write(struct inode *inode, loff_t i_size) 1681 { 1682 bool clean = !is_inode_flag_set(inode, FI_DIRTY_INODE); 1683 bool recover = is_inode_flag_set(inode, FI_AUTO_RECOVER); 1684 1685 if (i_size_read(inode) == i_size) 1686 return; 1687 1688 i_size_write(inode, i_size); 1689 f2fs_mark_inode_dirty_sync(inode); 1690 if (clean || recover) 1691 set_inode_flag(inode, FI_AUTO_RECOVER); 1692 } 1693 1694 static inline bool f2fs_skip_inode_update(struct inode *inode) 1695 { 1696 if (!is_inode_flag_set(inode, FI_AUTO_RECOVER)) 1697 return false; 1698 return F2FS_I(inode)->last_disk_size == i_size_read(inode); 1699 } 1700 1701 static inline void f2fs_i_depth_write(struct inode *inode, unsigned int depth) 1702 { 1703 F2FS_I(inode)->i_current_depth = depth; 1704 f2fs_mark_inode_dirty_sync(inode); 1705 } 1706 1707 static inline void f2fs_i_xnid_write(struct inode *inode, nid_t xnid) 1708 { 1709 F2FS_I(inode)->i_xattr_nid = xnid; 1710 f2fs_mark_inode_dirty_sync(inode); 1711 } 1712 1713 static inline void f2fs_i_pino_write(struct inode *inode, nid_t pino) 1714 { 1715 F2FS_I(inode)->i_pino = pino; 1716 f2fs_mark_inode_dirty_sync(inode); 1717 } 1718 1719 static inline void get_inline_info(struct inode *inode, struct f2fs_inode *ri) 1720 { 1721 struct f2fs_inode_info *fi = F2FS_I(inode); 1722 1723 if (ri->i_inline & F2FS_INLINE_XATTR) 1724 set_bit(FI_INLINE_XATTR, &fi->flags); 1725 if (ri->i_inline & F2FS_INLINE_DATA) 1726 set_bit(FI_INLINE_DATA, &fi->flags); 1727 if (ri->i_inline & F2FS_INLINE_DENTRY) 1728 set_bit(FI_INLINE_DENTRY, &fi->flags); 1729 if (ri->i_inline & F2FS_DATA_EXIST) 1730 set_bit(FI_DATA_EXIST, &fi->flags); 1731 if (ri->i_inline & F2FS_INLINE_DOTS) 1732 set_bit(FI_INLINE_DOTS, &fi->flags); 1733 } 1734 1735 static inline void set_raw_inline(struct inode *inode, struct f2fs_inode *ri) 1736 { 1737 ri->i_inline = 0; 1738 1739 if (is_inode_flag_set(inode, FI_INLINE_XATTR)) 1740 ri->i_inline |= F2FS_INLINE_XATTR; 1741 if (is_inode_flag_set(inode, FI_INLINE_DATA)) 1742 ri->i_inline |= F2FS_INLINE_DATA; 1743 if (is_inode_flag_set(inode, FI_INLINE_DENTRY)) 1744 ri->i_inline |= F2FS_INLINE_DENTRY; 1745 if (is_inode_flag_set(inode, FI_DATA_EXIST)) 1746 ri->i_inline |= F2FS_DATA_EXIST; 1747 if (is_inode_flag_set(inode, FI_INLINE_DOTS)) 1748 ri->i_inline |= F2FS_INLINE_DOTS; 1749 } 1750 1751 static inline int f2fs_has_inline_xattr(struct inode *inode) 1752 { 1753 return is_inode_flag_set(inode, FI_INLINE_XATTR); 1754 } 1755 1756 static inline unsigned int addrs_per_inode(struct inode *inode) 1757 { 1758 if (f2fs_has_inline_xattr(inode)) 1759 return DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS; 1760 return DEF_ADDRS_PER_INODE; 1761 } 1762 1763 static inline void *inline_xattr_addr(struct page *page) 1764 { 1765 struct f2fs_inode *ri = F2FS_INODE(page); 1766 return (void *)&(ri->i_addr[DEF_ADDRS_PER_INODE - 1767 F2FS_INLINE_XATTR_ADDRS]); 1768 } 1769 1770 static inline int inline_xattr_size(struct inode *inode) 1771 { 1772 if (f2fs_has_inline_xattr(inode)) 1773 return F2FS_INLINE_XATTR_ADDRS << 2; 1774 else 1775 return 0; 1776 } 1777 1778 static inline int f2fs_has_inline_data(struct inode *inode) 1779 { 1780 return is_inode_flag_set(inode, FI_INLINE_DATA); 1781 } 1782 1783 static inline void f2fs_clear_inline_inode(struct inode *inode) 1784 { 1785 clear_inode_flag(inode, FI_INLINE_DATA); 1786 clear_inode_flag(inode, FI_DATA_EXIST); 1787 } 1788 1789 static inline int f2fs_exist_data(struct inode *inode) 1790 { 1791 return is_inode_flag_set(inode, FI_DATA_EXIST); 1792 } 1793 1794 static inline int f2fs_has_inline_dots(struct inode *inode) 1795 { 1796 return is_inode_flag_set(inode, FI_INLINE_DOTS); 1797 } 1798 1799 static inline bool f2fs_is_atomic_file(struct inode *inode) 1800 { 1801 return is_inode_flag_set(inode, FI_ATOMIC_FILE); 1802 } 1803 1804 static inline bool f2fs_is_volatile_file(struct inode *inode) 1805 { 1806 return is_inode_flag_set(inode, FI_VOLATILE_FILE); 1807 } 1808 1809 static inline bool f2fs_is_first_block_written(struct inode *inode) 1810 { 1811 return is_inode_flag_set(inode, FI_FIRST_BLOCK_WRITTEN); 1812 } 1813 1814 static inline bool f2fs_is_drop_cache(struct inode *inode) 1815 { 1816 return is_inode_flag_set(inode, FI_DROP_CACHE); 1817 } 1818 1819 static inline void *inline_data_addr(struct page *page) 1820 { 1821 struct f2fs_inode *ri = F2FS_INODE(page); 1822 return (void *)&(ri->i_addr[1]); 1823 } 1824 1825 static inline int f2fs_has_inline_dentry(struct inode *inode) 1826 { 1827 return is_inode_flag_set(inode, FI_INLINE_DENTRY); 1828 } 1829 1830 static inline void f2fs_dentry_kunmap(struct inode *dir, struct page *page) 1831 { 1832 if (!f2fs_has_inline_dentry(dir)) 1833 kunmap(page); 1834 } 1835 1836 static inline int is_file(struct inode *inode, int type) 1837 { 1838 return F2FS_I(inode)->i_advise & type; 1839 } 1840 1841 static inline void set_file(struct inode *inode, int type) 1842 { 1843 F2FS_I(inode)->i_advise |= type; 1844 f2fs_mark_inode_dirty_sync(inode); 1845 } 1846 1847 static inline void clear_file(struct inode *inode, int type) 1848 { 1849 F2FS_I(inode)->i_advise &= ~type; 1850 f2fs_mark_inode_dirty_sync(inode); 1851 } 1852 1853 static inline int f2fs_readonly(struct super_block *sb) 1854 { 1855 return sb->s_flags & MS_RDONLY; 1856 } 1857 1858 static inline bool f2fs_cp_error(struct f2fs_sb_info *sbi) 1859 { 1860 return is_set_ckpt_flags(sbi, CP_ERROR_FLAG); 1861 } 1862 1863 static inline bool is_dot_dotdot(const struct qstr *str) 1864 { 1865 if (str->len == 1 && str->name[0] == '.') 1866 return true; 1867 1868 if (str->len == 2 && str->name[0] == '.' && str->name[1] == '.') 1869 return true; 1870 1871 return false; 1872 } 1873 1874 static inline bool f2fs_may_extent_tree(struct inode *inode) 1875 { 1876 if (!test_opt(F2FS_I_SB(inode), EXTENT_CACHE) || 1877 is_inode_flag_set(inode, FI_NO_EXTENT)) 1878 return false; 1879 1880 return S_ISREG(inode->i_mode); 1881 } 1882 1883 static inline void *f2fs_kmalloc(size_t size, gfp_t flags) 1884 { 1885 #ifdef CONFIG_F2FS_FAULT_INJECTION 1886 if (time_to_inject(FAULT_KMALLOC)) 1887 return NULL; 1888 #endif 1889 return kmalloc(size, flags); 1890 } 1891 1892 static inline void *f2fs_kvmalloc(size_t size, gfp_t flags) 1893 { 1894 void *ret; 1895 1896 ret = kmalloc(size, flags | __GFP_NOWARN); 1897 if (!ret) 1898 ret = __vmalloc(size, flags, PAGE_KERNEL); 1899 return ret; 1900 } 1901 1902 static inline void *f2fs_kvzalloc(size_t size, gfp_t flags) 1903 { 1904 void *ret; 1905 1906 ret = kzalloc(size, flags | __GFP_NOWARN); 1907 if (!ret) 1908 ret = __vmalloc(size, flags | __GFP_ZERO, PAGE_KERNEL); 1909 return ret; 1910 } 1911 1912 #define get_inode_mode(i) \ 1913 ((is_inode_flag_set(i, FI_ACL_MODE)) ? \ 1914 (F2FS_I(i)->i_acl_mode) : ((i)->i_mode)) 1915 1916 /* get offset of first page in next direct node */ 1917 #define PGOFS_OF_NEXT_DNODE(pgofs, inode) \ 1918 ((pgofs < ADDRS_PER_INODE(inode)) ? ADDRS_PER_INODE(inode) : \ 1919 (pgofs - ADDRS_PER_INODE(inode) + ADDRS_PER_BLOCK) / \ 1920 ADDRS_PER_BLOCK * ADDRS_PER_BLOCK + ADDRS_PER_INODE(inode)) 1921 1922 /* 1923 * file.c 1924 */ 1925 int f2fs_sync_file(struct file *, loff_t, loff_t, int); 1926 void truncate_data_blocks(struct dnode_of_data *); 1927 int truncate_blocks(struct inode *, u64, bool); 1928 int f2fs_truncate(struct inode *); 1929 int f2fs_getattr(struct vfsmount *, struct dentry *, struct kstat *); 1930 int f2fs_setattr(struct dentry *, struct iattr *); 1931 int truncate_hole(struct inode *, pgoff_t, pgoff_t); 1932 int truncate_data_blocks_range(struct dnode_of_data *, int); 1933 long f2fs_ioctl(struct file *, unsigned int, unsigned long); 1934 long f2fs_compat_ioctl(struct file *, unsigned int, unsigned long); 1935 1936 /* 1937 * inode.c 1938 */ 1939 void f2fs_set_inode_flags(struct inode *); 1940 struct inode *f2fs_iget(struct super_block *, unsigned long); 1941 struct inode *f2fs_iget_retry(struct super_block *, unsigned long); 1942 int try_to_free_nats(struct f2fs_sb_info *, int); 1943 int update_inode(struct inode *, struct page *); 1944 int update_inode_page(struct inode *); 1945 int f2fs_write_inode(struct inode *, struct writeback_control *); 1946 void f2fs_evict_inode(struct inode *); 1947 void handle_failed_inode(struct inode *); 1948 1949 /* 1950 * namei.c 1951 */ 1952 struct dentry *f2fs_get_parent(struct dentry *child); 1953 1954 /* 1955 * dir.c 1956 */ 1957 void set_de_type(struct f2fs_dir_entry *, umode_t); 1958 unsigned char get_de_type(struct f2fs_dir_entry *); 1959 struct f2fs_dir_entry *find_target_dentry(struct fscrypt_name *, 1960 f2fs_hash_t, int *, struct f2fs_dentry_ptr *); 1961 bool f2fs_fill_dentries(struct dir_context *, struct f2fs_dentry_ptr *, 1962 unsigned int, struct fscrypt_str *); 1963 void do_make_empty_dir(struct inode *, struct inode *, 1964 struct f2fs_dentry_ptr *); 1965 struct page *init_inode_metadata(struct inode *, struct inode *, 1966 const struct qstr *, const struct qstr *, struct page *); 1967 void update_parent_metadata(struct inode *, struct inode *, unsigned int); 1968 int room_for_filename(const void *, int, int); 1969 void f2fs_drop_nlink(struct inode *, struct inode *); 1970 struct f2fs_dir_entry *__f2fs_find_entry(struct inode *, struct fscrypt_name *, 1971 struct page **); 1972 struct f2fs_dir_entry *f2fs_find_entry(struct inode *, const struct qstr *, 1973 struct page **); 1974 struct f2fs_dir_entry *f2fs_parent_dir(struct inode *, struct page **); 1975 ino_t f2fs_inode_by_name(struct inode *, const struct qstr *, struct page **); 1976 void f2fs_set_link(struct inode *, struct f2fs_dir_entry *, 1977 struct page *, struct inode *); 1978 int update_dent_inode(struct inode *, struct inode *, const struct qstr *); 1979 void f2fs_update_dentry(nid_t ino, umode_t mode, struct f2fs_dentry_ptr *, 1980 const struct qstr *, f2fs_hash_t , unsigned int); 1981 int f2fs_add_regular_entry(struct inode *, const struct qstr *, 1982 const struct qstr *, struct inode *, nid_t, umode_t); 1983 int __f2fs_do_add_link(struct inode *, struct fscrypt_name*, struct inode *, 1984 nid_t, umode_t); 1985 int __f2fs_add_link(struct inode *, const struct qstr *, struct inode *, nid_t, 1986 umode_t); 1987 void f2fs_delete_entry(struct f2fs_dir_entry *, struct page *, struct inode *, 1988 struct inode *); 1989 int f2fs_do_tmpfile(struct inode *, struct inode *); 1990 bool f2fs_empty_dir(struct inode *); 1991 1992 static inline int f2fs_add_link(struct dentry *dentry, struct inode *inode) 1993 { 1994 return __f2fs_add_link(d_inode(dentry->d_parent), &dentry->d_name, 1995 inode, inode->i_ino, inode->i_mode); 1996 } 1997 1998 /* 1999 * super.c 2000 */ 2001 int f2fs_inode_dirtied(struct inode *); 2002 void f2fs_inode_synced(struct inode *); 2003 int f2fs_commit_super(struct f2fs_sb_info *, bool); 2004 int f2fs_sync_fs(struct super_block *, int); 2005 extern __printf(3, 4) 2006 void f2fs_msg(struct super_block *, const char *, const char *, ...); 2007 int sanity_check_ckpt(struct f2fs_sb_info *sbi); 2008 2009 /* 2010 * hash.c 2011 */ 2012 f2fs_hash_t f2fs_dentry_hash(const struct qstr *); 2013 2014 /* 2015 * node.c 2016 */ 2017 struct dnode_of_data; 2018 struct node_info; 2019 2020 bool available_free_memory(struct f2fs_sb_info *, int); 2021 int need_dentry_mark(struct f2fs_sb_info *, nid_t); 2022 bool is_checkpointed_node(struct f2fs_sb_info *, nid_t); 2023 bool need_inode_block_update(struct f2fs_sb_info *, nid_t); 2024 void get_node_info(struct f2fs_sb_info *, nid_t, struct node_info *); 2025 pgoff_t get_next_page_offset(struct dnode_of_data *, pgoff_t); 2026 int get_dnode_of_data(struct dnode_of_data *, pgoff_t, int); 2027 int truncate_inode_blocks(struct inode *, pgoff_t); 2028 int truncate_xattr_node(struct inode *, struct page *); 2029 int wait_on_node_pages_writeback(struct f2fs_sb_info *, nid_t); 2030 int remove_inode_page(struct inode *); 2031 struct page *new_inode_page(struct inode *); 2032 struct page *new_node_page(struct dnode_of_data *, unsigned int, struct page *); 2033 void ra_node_page(struct f2fs_sb_info *, nid_t); 2034 struct page *get_node_page(struct f2fs_sb_info *, pgoff_t); 2035 struct page *get_node_page_ra(struct page *, int); 2036 void move_node_page(struct page *, int); 2037 int fsync_node_pages(struct f2fs_sb_info *, struct inode *, 2038 struct writeback_control *, bool); 2039 int sync_node_pages(struct f2fs_sb_info *, struct writeback_control *); 2040 void build_free_nids(struct f2fs_sb_info *); 2041 bool alloc_nid(struct f2fs_sb_info *, nid_t *); 2042 void alloc_nid_done(struct f2fs_sb_info *, nid_t); 2043 void alloc_nid_failed(struct f2fs_sb_info *, nid_t); 2044 int try_to_free_nids(struct f2fs_sb_info *, int); 2045 void recover_inline_xattr(struct inode *, struct page *); 2046 void recover_xattr_data(struct inode *, struct page *, block_t); 2047 int recover_inode_page(struct f2fs_sb_info *, struct page *); 2048 int restore_node_summary(struct f2fs_sb_info *, unsigned int, 2049 struct f2fs_summary_block *); 2050 void flush_nat_entries(struct f2fs_sb_info *); 2051 int build_node_manager(struct f2fs_sb_info *); 2052 void destroy_node_manager(struct f2fs_sb_info *); 2053 int __init create_node_manager_caches(void); 2054 void destroy_node_manager_caches(void); 2055 2056 /* 2057 * segment.c 2058 */ 2059 void register_inmem_page(struct inode *, struct page *); 2060 void drop_inmem_pages(struct inode *); 2061 int commit_inmem_pages(struct inode *); 2062 void f2fs_balance_fs(struct f2fs_sb_info *, bool); 2063 void f2fs_balance_fs_bg(struct f2fs_sb_info *); 2064 int f2fs_issue_flush(struct f2fs_sb_info *); 2065 int create_flush_cmd_control(struct f2fs_sb_info *); 2066 void destroy_flush_cmd_control(struct f2fs_sb_info *); 2067 void invalidate_blocks(struct f2fs_sb_info *, block_t); 2068 bool is_checkpointed_data(struct f2fs_sb_info *, block_t); 2069 void refresh_sit_entry(struct f2fs_sb_info *, block_t, block_t); 2070 void f2fs_wait_all_discard_bio(struct f2fs_sb_info *); 2071 void clear_prefree_segments(struct f2fs_sb_info *, struct cp_control *); 2072 void release_discard_addrs(struct f2fs_sb_info *); 2073 int npages_for_summary_flush(struct f2fs_sb_info *, bool); 2074 void allocate_new_segments(struct f2fs_sb_info *); 2075 int f2fs_trim_fs(struct f2fs_sb_info *, struct fstrim_range *); 2076 struct page *get_sum_page(struct f2fs_sb_info *, unsigned int); 2077 void update_meta_page(struct f2fs_sb_info *, void *, block_t); 2078 void write_meta_page(struct f2fs_sb_info *, struct page *); 2079 void write_node_page(unsigned int, struct f2fs_io_info *); 2080 void write_data_page(struct dnode_of_data *, struct f2fs_io_info *); 2081 void rewrite_data_page(struct f2fs_io_info *); 2082 void __f2fs_replace_block(struct f2fs_sb_info *, struct f2fs_summary *, 2083 block_t, block_t, bool, bool); 2084 void f2fs_replace_block(struct f2fs_sb_info *, struct dnode_of_data *, 2085 block_t, block_t, unsigned char, bool, bool); 2086 void allocate_data_block(struct f2fs_sb_info *, struct page *, 2087 block_t, block_t *, struct f2fs_summary *, int); 2088 void f2fs_wait_on_page_writeback(struct page *, enum page_type, bool); 2089 void f2fs_wait_on_encrypted_page_writeback(struct f2fs_sb_info *, block_t); 2090 void write_data_summaries(struct f2fs_sb_info *, block_t); 2091 void write_node_summaries(struct f2fs_sb_info *, block_t); 2092 int lookup_journal_in_cursum(struct f2fs_journal *, int, unsigned int, int); 2093 void flush_sit_entries(struct f2fs_sb_info *, struct cp_control *); 2094 int build_segment_manager(struct f2fs_sb_info *); 2095 void destroy_segment_manager(struct f2fs_sb_info *); 2096 int __init create_segment_manager_caches(void); 2097 void destroy_segment_manager_caches(void); 2098 2099 /* 2100 * checkpoint.c 2101 */ 2102 void f2fs_stop_checkpoint(struct f2fs_sb_info *, bool); 2103 struct page *grab_meta_page(struct f2fs_sb_info *, pgoff_t); 2104 struct page *get_meta_page(struct f2fs_sb_info *, pgoff_t); 2105 struct page *get_tmp_page(struct f2fs_sb_info *, pgoff_t); 2106 bool is_valid_blkaddr(struct f2fs_sb_info *, block_t, int); 2107 int ra_meta_pages(struct f2fs_sb_info *, block_t, int, int, bool); 2108 void ra_meta_pages_cond(struct f2fs_sb_info *, pgoff_t); 2109 long sync_meta_pages(struct f2fs_sb_info *, enum page_type, long); 2110 void add_ino_entry(struct f2fs_sb_info *, nid_t, int type); 2111 void remove_ino_entry(struct f2fs_sb_info *, nid_t, int type); 2112 void release_ino_entry(struct f2fs_sb_info *, bool); 2113 bool exist_written_data(struct f2fs_sb_info *, nid_t, int); 2114 int f2fs_sync_inode_meta(struct f2fs_sb_info *); 2115 int acquire_orphan_inode(struct f2fs_sb_info *); 2116 void release_orphan_inode(struct f2fs_sb_info *); 2117 void add_orphan_inode(struct inode *); 2118 void remove_orphan_inode(struct f2fs_sb_info *, nid_t); 2119 int recover_orphan_inodes(struct f2fs_sb_info *); 2120 int get_valid_checkpoint(struct f2fs_sb_info *); 2121 void update_dirty_page(struct inode *, struct page *); 2122 void remove_dirty_inode(struct inode *); 2123 int sync_dirty_inodes(struct f2fs_sb_info *, enum inode_type); 2124 int write_checkpoint(struct f2fs_sb_info *, struct cp_control *); 2125 void init_ino_entry_info(struct f2fs_sb_info *); 2126 int __init create_checkpoint_caches(void); 2127 void destroy_checkpoint_caches(void); 2128 2129 /* 2130 * data.c 2131 */ 2132 void f2fs_submit_merged_bio(struct f2fs_sb_info *, enum page_type, int); 2133 void f2fs_submit_merged_bio_cond(struct f2fs_sb_info *, struct inode *, 2134 struct page *, nid_t, enum page_type, int); 2135 void f2fs_flush_merged_bios(struct f2fs_sb_info *); 2136 int f2fs_submit_page_bio(struct f2fs_io_info *); 2137 void f2fs_submit_page_mbio(struct f2fs_io_info *); 2138 void set_data_blkaddr(struct dnode_of_data *); 2139 void f2fs_update_data_blkaddr(struct dnode_of_data *, block_t); 2140 int reserve_new_blocks(struct dnode_of_data *, blkcnt_t); 2141 int reserve_new_block(struct dnode_of_data *); 2142 int f2fs_get_block(struct dnode_of_data *, pgoff_t); 2143 ssize_t f2fs_preallocate_blocks(struct kiocb *, struct iov_iter *); 2144 int f2fs_reserve_block(struct dnode_of_data *, pgoff_t); 2145 struct page *get_read_data_page(struct inode *, pgoff_t, int, bool); 2146 struct page *find_data_page(struct inode *, pgoff_t); 2147 struct page *get_lock_data_page(struct inode *, pgoff_t, bool); 2148 struct page *get_new_data_page(struct inode *, struct page *, pgoff_t, bool); 2149 int do_write_data_page(struct f2fs_io_info *); 2150 int f2fs_map_blocks(struct inode *, struct f2fs_map_blocks *, int, int); 2151 int f2fs_fiemap(struct inode *inode, struct fiemap_extent_info *, u64, u64); 2152 void f2fs_set_page_dirty_nobuffers(struct page *); 2153 void f2fs_invalidate_page(struct page *, unsigned int, unsigned int); 2154 int f2fs_release_page(struct page *, gfp_t); 2155 2156 /* 2157 * gc.c 2158 */ 2159 int start_gc_thread(struct f2fs_sb_info *); 2160 void stop_gc_thread(struct f2fs_sb_info *); 2161 block_t start_bidx_of_node(unsigned int, struct inode *); 2162 int f2fs_gc(struct f2fs_sb_info *, bool); 2163 void build_gc_manager(struct f2fs_sb_info *); 2164 2165 /* 2166 * recovery.c 2167 */ 2168 int recover_fsync_data(struct f2fs_sb_info *, bool); 2169 bool space_for_roll_forward(struct f2fs_sb_info *); 2170 2171 /* 2172 * debug.c 2173 */ 2174 #ifdef CONFIG_F2FS_STAT_FS 2175 struct f2fs_stat_info { 2176 struct list_head stat_list; 2177 struct f2fs_sb_info *sbi; 2178 int all_area_segs, sit_area_segs, nat_area_segs, ssa_area_segs; 2179 int main_area_segs, main_area_sections, main_area_zones; 2180 unsigned long long hit_largest, hit_cached, hit_rbtree; 2181 unsigned long long hit_total, total_ext; 2182 int ext_tree, zombie_tree, ext_node; 2183 s64 ndirty_node, ndirty_dent, ndirty_meta, ndirty_data, ndirty_imeta; 2184 s64 inmem_pages; 2185 unsigned int ndirty_dirs, ndirty_files, ndirty_all; 2186 int nats, dirty_nats, sits, dirty_sits, fnids; 2187 int total_count, utilization; 2188 int bg_gc, wb_bios; 2189 int inline_xattr, inline_inode, inline_dir, orphans; 2190 unsigned int valid_count, valid_node_count, valid_inode_count, discard_blks; 2191 unsigned int bimodal, avg_vblocks; 2192 int util_free, util_valid, util_invalid; 2193 int rsvd_segs, overp_segs; 2194 int dirty_count, node_pages, meta_pages; 2195 int prefree_count, call_count, cp_count, bg_cp_count; 2196 int tot_segs, node_segs, data_segs, free_segs, free_secs; 2197 int bg_node_segs, bg_data_segs; 2198 int tot_blks, data_blks, node_blks; 2199 int bg_data_blks, bg_node_blks; 2200 int curseg[NR_CURSEG_TYPE]; 2201 int cursec[NR_CURSEG_TYPE]; 2202 int curzone[NR_CURSEG_TYPE]; 2203 2204 unsigned int segment_count[2]; 2205 unsigned int block_count[2]; 2206 unsigned int inplace_count; 2207 unsigned long long base_mem, cache_mem, page_mem; 2208 }; 2209 2210 static inline struct f2fs_stat_info *F2FS_STAT(struct f2fs_sb_info *sbi) 2211 { 2212 return (struct f2fs_stat_info *)sbi->stat_info; 2213 } 2214 2215 #define stat_inc_cp_count(si) ((si)->cp_count++) 2216 #define stat_inc_bg_cp_count(si) ((si)->bg_cp_count++) 2217 #define stat_inc_call_count(si) ((si)->call_count++) 2218 #define stat_inc_bggc_count(sbi) ((sbi)->bg_gc++) 2219 #define stat_inc_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]++) 2220 #define stat_dec_dirty_inode(sbi, type) ((sbi)->ndirty_inode[type]--) 2221 #define stat_inc_total_hit(sbi) (atomic64_inc(&(sbi)->total_hit_ext)) 2222 #define stat_inc_rbtree_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_rbtree)) 2223 #define stat_inc_largest_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_largest)) 2224 #define stat_inc_cached_node_hit(sbi) (atomic64_inc(&(sbi)->read_hit_cached)) 2225 #define stat_inc_inline_xattr(inode) \ 2226 do { \ 2227 if (f2fs_has_inline_xattr(inode)) \ 2228 (atomic_inc(&F2FS_I_SB(inode)->inline_xattr)); \ 2229 } while (0) 2230 #define stat_dec_inline_xattr(inode) \ 2231 do { \ 2232 if (f2fs_has_inline_xattr(inode)) \ 2233 (atomic_dec(&F2FS_I_SB(inode)->inline_xattr)); \ 2234 } while (0) 2235 #define stat_inc_inline_inode(inode) \ 2236 do { \ 2237 if (f2fs_has_inline_data(inode)) \ 2238 (atomic_inc(&F2FS_I_SB(inode)->inline_inode)); \ 2239 } while (0) 2240 #define stat_dec_inline_inode(inode) \ 2241 do { \ 2242 if (f2fs_has_inline_data(inode)) \ 2243 (atomic_dec(&F2FS_I_SB(inode)->inline_inode)); \ 2244 } while (0) 2245 #define stat_inc_inline_dir(inode) \ 2246 do { \ 2247 if (f2fs_has_inline_dentry(inode)) \ 2248 (atomic_inc(&F2FS_I_SB(inode)->inline_dir)); \ 2249 } while (0) 2250 #define stat_dec_inline_dir(inode) \ 2251 do { \ 2252 if (f2fs_has_inline_dentry(inode)) \ 2253 (atomic_dec(&F2FS_I_SB(inode)->inline_dir)); \ 2254 } while (0) 2255 #define stat_inc_seg_type(sbi, curseg) \ 2256 ((sbi)->segment_count[(curseg)->alloc_type]++) 2257 #define stat_inc_block_count(sbi, curseg) \ 2258 ((sbi)->block_count[(curseg)->alloc_type]++) 2259 #define stat_inc_inplace_blocks(sbi) \ 2260 (atomic_inc(&(sbi)->inplace_count)) 2261 #define stat_inc_seg_count(sbi, type, gc_type) \ 2262 do { \ 2263 struct f2fs_stat_info *si = F2FS_STAT(sbi); \ 2264 (si)->tot_segs++; \ 2265 if (type == SUM_TYPE_DATA) { \ 2266 si->data_segs++; \ 2267 si->bg_data_segs += (gc_type == BG_GC) ? 1 : 0; \ 2268 } else { \ 2269 si->node_segs++; \ 2270 si->bg_node_segs += (gc_type == BG_GC) ? 1 : 0; \ 2271 } \ 2272 } while (0) 2273 2274 #define stat_inc_tot_blk_count(si, blks) \ 2275 (si->tot_blks += (blks)) 2276 2277 #define stat_inc_data_blk_count(sbi, blks, gc_type) \ 2278 do { \ 2279 struct f2fs_stat_info *si = F2FS_STAT(sbi); \ 2280 stat_inc_tot_blk_count(si, blks); \ 2281 si->data_blks += (blks); \ 2282 si->bg_data_blks += (gc_type == BG_GC) ? (blks) : 0; \ 2283 } while (0) 2284 2285 #define stat_inc_node_blk_count(sbi, blks, gc_type) \ 2286 do { \ 2287 struct f2fs_stat_info *si = F2FS_STAT(sbi); \ 2288 stat_inc_tot_blk_count(si, blks); \ 2289 si->node_blks += (blks); \ 2290 si->bg_node_blks += (gc_type == BG_GC) ? (blks) : 0; \ 2291 } while (0) 2292 2293 int f2fs_build_stats(struct f2fs_sb_info *); 2294 void f2fs_destroy_stats(struct f2fs_sb_info *); 2295 int __init f2fs_create_root_stats(void); 2296 void f2fs_destroy_root_stats(void); 2297 #else 2298 #define stat_inc_cp_count(si) 2299 #define stat_inc_bg_cp_count(si) 2300 #define stat_inc_call_count(si) 2301 #define stat_inc_bggc_count(si) 2302 #define stat_inc_dirty_inode(sbi, type) 2303 #define stat_dec_dirty_inode(sbi, type) 2304 #define stat_inc_total_hit(sb) 2305 #define stat_inc_rbtree_node_hit(sb) 2306 #define stat_inc_largest_node_hit(sbi) 2307 #define stat_inc_cached_node_hit(sbi) 2308 #define stat_inc_inline_xattr(inode) 2309 #define stat_dec_inline_xattr(inode) 2310 #define stat_inc_inline_inode(inode) 2311 #define stat_dec_inline_inode(inode) 2312 #define stat_inc_inline_dir(inode) 2313 #define stat_dec_inline_dir(inode) 2314 #define stat_inc_seg_type(sbi, curseg) 2315 #define stat_inc_block_count(sbi, curseg) 2316 #define stat_inc_inplace_blocks(sbi) 2317 #define stat_inc_seg_count(sbi, type, gc_type) 2318 #define stat_inc_tot_blk_count(si, blks) 2319 #define stat_inc_data_blk_count(sbi, blks, gc_type) 2320 #define stat_inc_node_blk_count(sbi, blks, gc_type) 2321 2322 static inline int f2fs_build_stats(struct f2fs_sb_info *sbi) { return 0; } 2323 static inline void f2fs_destroy_stats(struct f2fs_sb_info *sbi) { } 2324 static inline int __init f2fs_create_root_stats(void) { return 0; } 2325 static inline void f2fs_destroy_root_stats(void) { } 2326 #endif 2327 2328 extern const struct file_operations f2fs_dir_operations; 2329 extern const struct file_operations f2fs_file_operations; 2330 extern const struct inode_operations f2fs_file_inode_operations; 2331 extern const struct address_space_operations f2fs_dblock_aops; 2332 extern const struct address_space_operations f2fs_node_aops; 2333 extern const struct address_space_operations f2fs_meta_aops; 2334 extern const struct inode_operations f2fs_dir_inode_operations; 2335 extern const struct inode_operations f2fs_symlink_inode_operations; 2336 extern const struct inode_operations f2fs_encrypted_symlink_inode_operations; 2337 extern const struct inode_operations f2fs_special_inode_operations; 2338 extern struct kmem_cache *inode_entry_slab; 2339 2340 /* 2341 * inline.c 2342 */ 2343 bool f2fs_may_inline_data(struct inode *); 2344 bool f2fs_may_inline_dentry(struct inode *); 2345 void read_inline_data(struct page *, struct page *); 2346 bool truncate_inline_inode(struct page *, u64); 2347 int f2fs_read_inline_data(struct inode *, struct page *); 2348 int f2fs_convert_inline_page(struct dnode_of_data *, struct page *); 2349 int f2fs_convert_inline_inode(struct inode *); 2350 int f2fs_write_inline_data(struct inode *, struct page *); 2351 bool recover_inline_data(struct inode *, struct page *); 2352 struct f2fs_dir_entry *find_in_inline_dir(struct inode *, 2353 struct fscrypt_name *, struct page **); 2354 int make_empty_inline_dir(struct inode *inode, struct inode *, struct page *); 2355 int f2fs_add_inline_entry(struct inode *, const struct qstr *, 2356 const struct qstr *, struct inode *, nid_t, umode_t); 2357 void f2fs_delete_inline_entry(struct f2fs_dir_entry *, struct page *, 2358 struct inode *, struct inode *); 2359 bool f2fs_empty_inline_dir(struct inode *); 2360 int f2fs_read_inline_dir(struct file *, struct dir_context *, 2361 struct fscrypt_str *); 2362 int f2fs_inline_data_fiemap(struct inode *, 2363 struct fiemap_extent_info *, __u64, __u64); 2364 2365 /* 2366 * shrinker.c 2367 */ 2368 unsigned long f2fs_shrink_count(struct shrinker *, struct shrink_control *); 2369 unsigned long f2fs_shrink_scan(struct shrinker *, struct shrink_control *); 2370 void f2fs_join_shrinker(struct f2fs_sb_info *); 2371 void f2fs_leave_shrinker(struct f2fs_sb_info *); 2372 2373 /* 2374 * extent_cache.c 2375 */ 2376 unsigned int f2fs_shrink_extent_tree(struct f2fs_sb_info *, int); 2377 bool f2fs_init_extent_tree(struct inode *, struct f2fs_extent *); 2378 void f2fs_drop_extent_tree(struct inode *); 2379 unsigned int f2fs_destroy_extent_node(struct inode *); 2380 void f2fs_destroy_extent_tree(struct inode *); 2381 bool f2fs_lookup_extent_cache(struct inode *, pgoff_t, struct extent_info *); 2382 void f2fs_update_extent_cache(struct dnode_of_data *); 2383 void f2fs_update_extent_cache_range(struct dnode_of_data *dn, 2384 pgoff_t, block_t, unsigned int); 2385 void init_extent_cache_info(struct f2fs_sb_info *); 2386 int __init create_extent_cache(void); 2387 void destroy_extent_cache(void); 2388 2389 /* 2390 * crypto support 2391 */ 2392 static inline bool f2fs_encrypted_inode(struct inode *inode) 2393 { 2394 return file_is_encrypt(inode); 2395 } 2396 2397 static inline void f2fs_set_encrypted_inode(struct inode *inode) 2398 { 2399 #ifdef CONFIG_F2FS_FS_ENCRYPTION 2400 file_set_encrypt(inode); 2401 #endif 2402 } 2403 2404 static inline bool f2fs_bio_encrypted(struct bio *bio) 2405 { 2406 return bio->bi_private != NULL; 2407 } 2408 2409 static inline int f2fs_sb_has_crypto(struct super_block *sb) 2410 { 2411 return F2FS_HAS_FEATURE(sb, F2FS_FEATURE_ENCRYPT); 2412 } 2413 2414 static inline int f2fs_sb_mounted_hmsmr(struct super_block *sb) 2415 { 2416 return F2FS_HAS_FEATURE(sb, F2FS_FEATURE_HMSMR); 2417 } 2418 2419 static inline void set_opt_mode(struct f2fs_sb_info *sbi, unsigned int mt) 2420 { 2421 clear_opt(sbi, ADAPTIVE); 2422 clear_opt(sbi, LFS); 2423 2424 switch (mt) { 2425 case F2FS_MOUNT_ADAPTIVE: 2426 set_opt(sbi, ADAPTIVE); 2427 break; 2428 case F2FS_MOUNT_LFS: 2429 set_opt(sbi, LFS); 2430 break; 2431 } 2432 } 2433 2434 static inline bool f2fs_may_encrypt(struct inode *inode) 2435 { 2436 #ifdef CONFIG_F2FS_FS_ENCRYPTION 2437 umode_t mode = inode->i_mode; 2438 2439 return (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)); 2440 #else 2441 return 0; 2442 #endif 2443 } 2444 2445 #ifndef CONFIG_F2FS_FS_ENCRYPTION 2446 #define fscrypt_set_d_op(i) 2447 #define fscrypt_get_ctx fscrypt_notsupp_get_ctx 2448 #define fscrypt_release_ctx fscrypt_notsupp_release_ctx 2449 #define fscrypt_encrypt_page fscrypt_notsupp_encrypt_page 2450 #define fscrypt_decrypt_page fscrypt_notsupp_decrypt_page 2451 #define fscrypt_decrypt_bio_pages fscrypt_notsupp_decrypt_bio_pages 2452 #define fscrypt_pullback_bio_page fscrypt_notsupp_pullback_bio_page 2453 #define fscrypt_restore_control_page fscrypt_notsupp_restore_control_page 2454 #define fscrypt_zeroout_range fscrypt_notsupp_zeroout_range 2455 #define fscrypt_process_policy fscrypt_notsupp_process_policy 2456 #define fscrypt_get_policy fscrypt_notsupp_get_policy 2457 #define fscrypt_has_permitted_context fscrypt_notsupp_has_permitted_context 2458 #define fscrypt_inherit_context fscrypt_notsupp_inherit_context 2459 #define fscrypt_get_encryption_info fscrypt_notsupp_get_encryption_info 2460 #define fscrypt_put_encryption_info fscrypt_notsupp_put_encryption_info 2461 #define fscrypt_setup_filename fscrypt_notsupp_setup_filename 2462 #define fscrypt_free_filename fscrypt_notsupp_free_filename 2463 #define fscrypt_fname_encrypted_size fscrypt_notsupp_fname_encrypted_size 2464 #define fscrypt_fname_alloc_buffer fscrypt_notsupp_fname_alloc_buffer 2465 #define fscrypt_fname_free_buffer fscrypt_notsupp_fname_free_buffer 2466 #define fscrypt_fname_disk_to_usr fscrypt_notsupp_fname_disk_to_usr 2467 #define fscrypt_fname_usr_to_disk fscrypt_notsupp_fname_usr_to_disk 2468 #endif 2469 #endif 2470