4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
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.
11 #include <linux/module.h>
12 #include <linux/init.h>
14 #include <linux/statfs.h>
15 #include <linux/buffer_head.h>
16 #include <linux/backing-dev.h>
17 #include <linux/kthread.h>
18 #include <linux/parser.h>
19 #include <linux/mount.h>
20 #include <linux/seq_file.h>
21 #include <linux/proc_fs.h>
22 #include <linux/random.h>
23 #include <linux/exportfs.h>
24 #include <linux/blkdev.h>
25 #include <linux/f2fs_fs.h>
26 #include <linux/sysfs.h>
34 #define CREATE_TRACE_POINTS
35 #include <trace/events/f2fs.h>
37 static struct proc_dir_entry
*f2fs_proc_root
;
38 static struct kmem_cache
*f2fs_inode_cachep
;
39 static struct kset
*f2fs_kset
;
43 Opt_disable_roll_forward
,
51 Opt_disable_ext_identify
,
59 static match_table_t f2fs_tokens
= {
60 {Opt_gc_background
, "background_gc=%s"},
61 {Opt_disable_roll_forward
, "disable_roll_forward"},
62 {Opt_discard
, "discard"},
63 {Opt_noheap
, "no_heap"},
64 {Opt_user_xattr
, "user_xattr"},
65 {Opt_nouser_xattr
, "nouser_xattr"},
68 {Opt_active_logs
, "active_logs=%u"},
69 {Opt_disable_ext_identify
, "disable_ext_identify"},
70 {Opt_inline_xattr
, "inline_xattr"},
71 {Opt_inline_data
, "inline_data"},
72 {Opt_flush_merge
, "flush_merge"},
73 {Opt_nobarrier
, "nobarrier"},
77 /* Sysfs support for f2fs */
79 GC_THREAD
, /* struct f2fs_gc_thread */
80 SM_INFO
, /* struct f2fs_sm_info */
81 NM_INFO
, /* struct f2fs_nm_info */
82 F2FS_SBI
, /* struct f2fs_sb_info */
86 struct attribute attr
;
87 ssize_t (*show
)(struct f2fs_attr
*, struct f2fs_sb_info
*, char *);
88 ssize_t (*store
)(struct f2fs_attr
*, struct f2fs_sb_info
*,
89 const char *, size_t);
94 static unsigned char *__struct_ptr(struct f2fs_sb_info
*sbi
, int struct_type
)
96 if (struct_type
== GC_THREAD
)
97 return (unsigned char *)sbi
->gc_thread
;
98 else if (struct_type
== SM_INFO
)
99 return (unsigned char *)SM_I(sbi
);
100 else if (struct_type
== NM_INFO
)
101 return (unsigned char *)NM_I(sbi
);
102 else if (struct_type
== F2FS_SBI
)
103 return (unsigned char *)sbi
;
107 static ssize_t
f2fs_sbi_show(struct f2fs_attr
*a
,
108 struct f2fs_sb_info
*sbi
, char *buf
)
110 unsigned char *ptr
= NULL
;
113 ptr
= __struct_ptr(sbi
, a
->struct_type
);
117 ui
= (unsigned int *)(ptr
+ a
->offset
);
119 return snprintf(buf
, PAGE_SIZE
, "%u\n", *ui
);
122 static ssize_t
f2fs_sbi_store(struct f2fs_attr
*a
,
123 struct f2fs_sb_info
*sbi
,
124 const char *buf
, size_t count
)
131 ptr
= __struct_ptr(sbi
, a
->struct_type
);
135 ui
= (unsigned int *)(ptr
+ a
->offset
);
137 ret
= kstrtoul(skip_spaces(buf
), 0, &t
);
144 static ssize_t
f2fs_attr_show(struct kobject
*kobj
,
145 struct attribute
*attr
, char *buf
)
147 struct f2fs_sb_info
*sbi
= container_of(kobj
, struct f2fs_sb_info
,
149 struct f2fs_attr
*a
= container_of(attr
, struct f2fs_attr
, attr
);
151 return a
->show
? a
->show(a
, sbi
, buf
) : 0;
154 static ssize_t
f2fs_attr_store(struct kobject
*kobj
, struct attribute
*attr
,
155 const char *buf
, size_t len
)
157 struct f2fs_sb_info
*sbi
= container_of(kobj
, struct f2fs_sb_info
,
159 struct f2fs_attr
*a
= container_of(attr
, struct f2fs_attr
, attr
);
161 return a
->store
? a
->store(a
, sbi
, buf
, len
) : 0;
164 static void f2fs_sb_release(struct kobject
*kobj
)
166 struct f2fs_sb_info
*sbi
= container_of(kobj
, struct f2fs_sb_info
,
168 complete(&sbi
->s_kobj_unregister
);
171 #define F2FS_ATTR_OFFSET(_struct_type, _name, _mode, _show, _store, _offset) \
172 static struct f2fs_attr f2fs_attr_##_name = { \
173 .attr = {.name = __stringify(_name), .mode = _mode }, \
176 .struct_type = _struct_type, \
180 #define F2FS_RW_ATTR(struct_type, struct_name, name, elname) \
181 F2FS_ATTR_OFFSET(struct_type, name, 0644, \
182 f2fs_sbi_show, f2fs_sbi_store, \
183 offsetof(struct struct_name, elname))
185 F2FS_RW_ATTR(GC_THREAD
, f2fs_gc_kthread
, gc_min_sleep_time
, min_sleep_time
);
186 F2FS_RW_ATTR(GC_THREAD
, f2fs_gc_kthread
, gc_max_sleep_time
, max_sleep_time
);
187 F2FS_RW_ATTR(GC_THREAD
, f2fs_gc_kthread
, gc_no_gc_sleep_time
, no_gc_sleep_time
);
188 F2FS_RW_ATTR(GC_THREAD
, f2fs_gc_kthread
, gc_idle
, gc_idle
);
189 F2FS_RW_ATTR(SM_INFO
, f2fs_sm_info
, reclaim_segments
, rec_prefree_segments
);
190 F2FS_RW_ATTR(SM_INFO
, f2fs_sm_info
, max_small_discards
, max_discards
);
191 F2FS_RW_ATTR(SM_INFO
, f2fs_sm_info
, ipu_policy
, ipu_policy
);
192 F2FS_RW_ATTR(SM_INFO
, f2fs_sm_info
, min_ipu_util
, min_ipu_util
);
193 F2FS_RW_ATTR(SM_INFO
, f2fs_sm_info
, min_fsync_blocks
, min_fsync_blocks
);
194 F2FS_RW_ATTR(NM_INFO
, f2fs_nm_info
, ram_thresh
, ram_thresh
);
195 F2FS_RW_ATTR(F2FS_SBI
, f2fs_sb_info
, max_victim_search
, max_victim_search
);
196 F2FS_RW_ATTR(F2FS_SBI
, f2fs_sb_info
, dir_level
, dir_level
);
198 #define ATTR_LIST(name) (&f2fs_attr_##name.attr)
199 static struct attribute
*f2fs_attrs
[] = {
200 ATTR_LIST(gc_min_sleep_time
),
201 ATTR_LIST(gc_max_sleep_time
),
202 ATTR_LIST(gc_no_gc_sleep_time
),
204 ATTR_LIST(reclaim_segments
),
205 ATTR_LIST(max_small_discards
),
206 ATTR_LIST(ipu_policy
),
207 ATTR_LIST(min_ipu_util
),
208 ATTR_LIST(min_fsync_blocks
),
209 ATTR_LIST(max_victim_search
),
210 ATTR_LIST(dir_level
),
211 ATTR_LIST(ram_thresh
),
215 static const struct sysfs_ops f2fs_attr_ops
= {
216 .show
= f2fs_attr_show
,
217 .store
= f2fs_attr_store
,
220 static struct kobj_type f2fs_ktype
= {
221 .default_attrs
= f2fs_attrs
,
222 .sysfs_ops
= &f2fs_attr_ops
,
223 .release
= f2fs_sb_release
,
226 void f2fs_msg(struct super_block
*sb
, const char *level
, const char *fmt
, ...)
228 struct va_format vaf
;
234 printk("%sF2FS-fs (%s): %pV\n", level
, sb
->s_id
, &vaf
);
238 static void init_once(void *foo
)
240 struct f2fs_inode_info
*fi
= (struct f2fs_inode_info
*) foo
;
242 inode_init_once(&fi
->vfs_inode
);
245 static int parse_options(struct super_block
*sb
, char *options
)
247 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
248 substring_t args
[MAX_OPT_ARGS
];
255 while ((p
= strsep(&options
, ",")) != NULL
) {
260 * Initialize args struct so we know whether arg was
261 * found; some options take optional arguments.
263 args
[0].to
= args
[0].from
= NULL
;
264 token
= match_token(p
, f2fs_tokens
, args
);
267 case Opt_gc_background
:
268 name
= match_strdup(&args
[0]);
272 if (strlen(name
) == 2 && !strncmp(name
, "on", 2))
274 else if (strlen(name
) == 3 && !strncmp(name
, "off", 3))
275 clear_opt(sbi
, BG_GC
);
282 case Opt_disable_roll_forward
:
283 set_opt(sbi
, DISABLE_ROLL_FORWARD
);
286 set_opt(sbi
, DISCARD
);
289 set_opt(sbi
, NOHEAP
);
291 #ifdef CONFIG_F2FS_FS_XATTR
293 set_opt(sbi
, XATTR_USER
);
295 case Opt_nouser_xattr
:
296 clear_opt(sbi
, XATTR_USER
);
298 case Opt_inline_xattr
:
299 set_opt(sbi
, INLINE_XATTR
);
303 f2fs_msg(sb
, KERN_INFO
,
304 "user_xattr options not supported");
306 case Opt_nouser_xattr
:
307 f2fs_msg(sb
, KERN_INFO
,
308 "nouser_xattr options not supported");
310 case Opt_inline_xattr
:
311 f2fs_msg(sb
, KERN_INFO
,
312 "inline_xattr options not supported");
315 #ifdef CONFIG_F2FS_FS_POSIX_ACL
317 set_opt(sbi
, POSIX_ACL
);
320 clear_opt(sbi
, POSIX_ACL
);
324 f2fs_msg(sb
, KERN_INFO
, "acl options not supported");
327 f2fs_msg(sb
, KERN_INFO
, "noacl options not supported");
330 case Opt_active_logs
:
331 if (args
->from
&& match_int(args
, &arg
))
333 if (arg
!= 2 && arg
!= 4 && arg
!= NR_CURSEG_TYPE
)
335 sbi
->active_logs
= arg
;
337 case Opt_disable_ext_identify
:
338 set_opt(sbi
, DISABLE_EXT_IDENTIFY
);
340 case Opt_inline_data
:
341 set_opt(sbi
, INLINE_DATA
);
343 case Opt_flush_merge
:
344 set_opt(sbi
, FLUSH_MERGE
);
347 set_opt(sbi
, NOBARRIER
);
350 f2fs_msg(sb
, KERN_ERR
,
351 "Unrecognized mount option \"%s\" or missing value",
359 static struct inode
*f2fs_alloc_inode(struct super_block
*sb
)
361 struct f2fs_inode_info
*fi
;
363 fi
= kmem_cache_alloc(f2fs_inode_cachep
, GFP_F2FS_ZERO
);
367 init_once((void *) fi
);
369 /* Initialize f2fs-specific inode info */
370 fi
->vfs_inode
.i_version
= 1;
371 atomic_set(&fi
->dirty_pages
, 0);
372 fi
->i_current_depth
= 1;
374 rwlock_init(&fi
->ext
.ext_lock
);
375 init_rwsem(&fi
->i_sem
);
377 set_inode_flag(fi
, FI_NEW_INODE
);
379 if (test_opt(F2FS_SB(sb
), INLINE_XATTR
))
380 set_inode_flag(fi
, FI_INLINE_XATTR
);
382 /* Will be used by directory only */
383 fi
->i_dir_level
= F2FS_SB(sb
)->dir_level
;
385 return &fi
->vfs_inode
;
388 static int f2fs_drop_inode(struct inode
*inode
)
391 * This is to avoid a deadlock condition like below.
392 * writeback_single_inode(inode)
393 * - f2fs_write_data_page
394 * - f2fs_gc -> iput -> evict
395 * - inode_wait_for_writeback(inode)
397 if (!inode_unhashed(inode
) && inode
->i_state
& I_SYNC
)
399 return generic_drop_inode(inode
);
403 * f2fs_dirty_inode() is called from __mark_inode_dirty()
405 * We should call set_dirty_inode to write the dirty inode through write_inode.
407 static void f2fs_dirty_inode(struct inode
*inode
, int flags
)
409 set_inode_flag(F2FS_I(inode
), FI_DIRTY_INODE
);
412 static void f2fs_i_callback(struct rcu_head
*head
)
414 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
415 kmem_cache_free(f2fs_inode_cachep
, F2FS_I(inode
));
418 static void f2fs_destroy_inode(struct inode
*inode
)
420 call_rcu(&inode
->i_rcu
, f2fs_i_callback
);
423 static void f2fs_put_super(struct super_block
*sb
)
425 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
428 remove_proc_entry("segment_info", sbi
->s_proc
);
429 remove_proc_entry(sb
->s_id
, f2fs_proc_root
);
431 kobject_del(&sbi
->s_kobj
);
433 f2fs_destroy_stats(sbi
);
436 /* We don't need to do checkpoint when it's clean */
438 write_checkpoint(sbi
, true);
441 * normally superblock is clean, so we need to release this.
442 * In addition, EIO will skip do checkpoint, we need this as well.
444 release_dirty_inode(sbi
);
446 iput(sbi
->node_inode
);
447 iput(sbi
->meta_inode
);
449 /* destroy f2fs internal modules */
450 destroy_node_manager(sbi
);
451 destroy_segment_manager(sbi
);
454 kobject_put(&sbi
->s_kobj
);
455 wait_for_completion(&sbi
->s_kobj_unregister
);
457 sb
->s_fs_info
= NULL
;
458 brelse(sbi
->raw_super_buf
);
462 int f2fs_sync_fs(struct super_block
*sb
, int sync
)
464 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
466 trace_f2fs_sync_fs(sb
, sync
);
469 mutex_lock(&sbi
->gc_mutex
);
470 write_checkpoint(sbi
, false);
471 mutex_unlock(&sbi
->gc_mutex
);
473 f2fs_balance_fs(sbi
);
479 static int f2fs_freeze(struct super_block
*sb
)
483 if (f2fs_readonly(sb
))
486 err
= f2fs_sync_fs(sb
, 1);
490 static int f2fs_unfreeze(struct super_block
*sb
)
495 static int f2fs_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
497 struct super_block
*sb
= dentry
->d_sb
;
498 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
499 u64 id
= huge_encode_dev(sb
->s_bdev
->bd_dev
);
500 block_t total_count
, user_block_count
, start_count
, ovp_count
;
502 total_count
= le64_to_cpu(sbi
->raw_super
->block_count
);
503 user_block_count
= sbi
->user_block_count
;
504 start_count
= le32_to_cpu(sbi
->raw_super
->segment0_blkaddr
);
505 ovp_count
= SM_I(sbi
)->ovp_segments
<< sbi
->log_blocks_per_seg
;
506 buf
->f_type
= F2FS_SUPER_MAGIC
;
507 buf
->f_bsize
= sbi
->blocksize
;
509 buf
->f_blocks
= total_count
- start_count
;
510 buf
->f_bfree
= buf
->f_blocks
- valid_user_blocks(sbi
) - ovp_count
;
511 buf
->f_bavail
= user_block_count
- valid_user_blocks(sbi
);
513 buf
->f_files
= sbi
->total_node_count
- F2FS_RESERVED_NODE_NUM
;
514 buf
->f_ffree
= buf
->f_files
- valid_inode_count(sbi
);
516 buf
->f_namelen
= F2FS_NAME_LEN
;
517 buf
->f_fsid
.val
[0] = (u32
)id
;
518 buf
->f_fsid
.val
[1] = (u32
)(id
>> 32);
523 static int f2fs_show_options(struct seq_file
*seq
, struct dentry
*root
)
525 struct f2fs_sb_info
*sbi
= F2FS_SB(root
->d_sb
);
527 if (!f2fs_readonly(sbi
->sb
) && test_opt(sbi
, BG_GC
))
528 seq_printf(seq
, ",background_gc=%s", "on");
530 seq_printf(seq
, ",background_gc=%s", "off");
531 if (test_opt(sbi
, DISABLE_ROLL_FORWARD
))
532 seq_puts(seq
, ",disable_roll_forward");
533 if (test_opt(sbi
, DISCARD
))
534 seq_puts(seq
, ",discard");
535 if (test_opt(sbi
, NOHEAP
))
536 seq_puts(seq
, ",no_heap_alloc");
537 #ifdef CONFIG_F2FS_FS_XATTR
538 if (test_opt(sbi
, XATTR_USER
))
539 seq_puts(seq
, ",user_xattr");
541 seq_puts(seq
, ",nouser_xattr");
542 if (test_opt(sbi
, INLINE_XATTR
))
543 seq_puts(seq
, ",inline_xattr");
545 #ifdef CONFIG_F2FS_FS_POSIX_ACL
546 if (test_opt(sbi
, POSIX_ACL
))
547 seq_puts(seq
, ",acl");
549 seq_puts(seq
, ",noacl");
551 if (test_opt(sbi
, DISABLE_EXT_IDENTIFY
))
552 seq_puts(seq
, ",disable_ext_identify");
553 if (test_opt(sbi
, INLINE_DATA
))
554 seq_puts(seq
, ",inline_data");
555 if (!f2fs_readonly(sbi
->sb
) && test_opt(sbi
, FLUSH_MERGE
))
556 seq_puts(seq
, ",flush_merge");
557 if (test_opt(sbi
, NOBARRIER
))
558 seq_puts(seq
, ",nobarrier");
559 seq_printf(seq
, ",active_logs=%u", sbi
->active_logs
);
564 static int segment_info_seq_show(struct seq_file
*seq
, void *offset
)
566 struct super_block
*sb
= seq
->private;
567 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
568 unsigned int total_segs
=
569 le32_to_cpu(sbi
->raw_super
->segment_count_main
);
572 seq_puts(seq
, "format: segment_type|valid_blocks\n"
573 "segment_type(0:HD, 1:WD, 2:CD, 3:HN, 4:WN, 5:CN)\n");
575 for (i
= 0; i
< total_segs
; i
++) {
576 struct seg_entry
*se
= get_seg_entry(sbi
, i
);
579 seq_printf(seq
, "%-5d", i
);
580 seq_printf(seq
, "%d|%-3u", se
->type
,
581 get_valid_blocks(sbi
, i
, 1));
582 if ((i
% 10) == 9 || i
== (total_segs
- 1))
591 static int segment_info_open_fs(struct inode
*inode
, struct file
*file
)
593 return single_open(file
, segment_info_seq_show
, PDE_DATA(inode
));
596 static const struct file_operations f2fs_seq_segment_info_fops
= {
597 .owner
= THIS_MODULE
,
598 .open
= segment_info_open_fs
,
601 .release
= single_release
,
604 static int f2fs_remount(struct super_block
*sb
, int *flags
, char *data
)
606 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
607 struct f2fs_mount_info org_mount_opt
;
608 int err
, active_logs
;
609 bool need_restart_gc
= false;
610 bool need_stop_gc
= false;
615 * Save the old mount options in case we
616 * need to restore them.
618 org_mount_opt
= sbi
->mount_opt
;
619 active_logs
= sbi
->active_logs
;
621 sbi
->mount_opt
.opt
= 0;
622 sbi
->active_logs
= NR_CURSEG_TYPE
;
624 /* parse mount options */
625 err
= parse_options(sb
, data
);
630 * Previous and new state of filesystem is RO,
631 * so skip checking GC and FLUSH_MERGE conditions.
633 if (f2fs_readonly(sb
) && (*flags
& MS_RDONLY
))
637 * We stop the GC thread if FS is mounted as RO
638 * or if background_gc = off is passed in mount
639 * option. Also sync the filesystem.
641 if ((*flags
& MS_RDONLY
) || !test_opt(sbi
, BG_GC
)) {
642 if (sbi
->gc_thread
) {
645 need_restart_gc
= true;
647 } else if (test_opt(sbi
, BG_GC
) && !sbi
->gc_thread
) {
648 err
= start_gc_thread(sbi
);
655 * We stop issue flush thread if FS is mounted as RO
656 * or if flush_merge is not passed in mount option.
658 if ((*flags
& MS_RDONLY
) || !test_opt(sbi
, FLUSH_MERGE
)) {
659 destroy_flush_cmd_control(sbi
);
660 } else if (test_opt(sbi
, FLUSH_MERGE
) && !SM_I(sbi
)->cmd_control_info
) {
661 err
= create_flush_cmd_control(sbi
);
666 /* Update the POSIXACL Flag */
667 sb
->s_flags
= (sb
->s_flags
& ~MS_POSIXACL
) |
668 (test_opt(sbi
, POSIX_ACL
) ? MS_POSIXACL
: 0);
671 if (need_restart_gc
) {
672 if (start_gc_thread(sbi
))
673 f2fs_msg(sbi
->sb
, KERN_WARNING
,
674 "background gc thread has stopped");
675 } else if (need_stop_gc
) {
679 sbi
->mount_opt
= org_mount_opt
;
680 sbi
->active_logs
= active_logs
;
684 static struct super_operations f2fs_sops
= {
685 .alloc_inode
= f2fs_alloc_inode
,
686 .drop_inode
= f2fs_drop_inode
,
687 .destroy_inode
= f2fs_destroy_inode
,
688 .write_inode
= f2fs_write_inode
,
689 .dirty_inode
= f2fs_dirty_inode
,
690 .show_options
= f2fs_show_options
,
691 .evict_inode
= f2fs_evict_inode
,
692 .put_super
= f2fs_put_super
,
693 .sync_fs
= f2fs_sync_fs
,
694 .freeze_fs
= f2fs_freeze
,
695 .unfreeze_fs
= f2fs_unfreeze
,
696 .statfs
= f2fs_statfs
,
697 .remount_fs
= f2fs_remount
,
700 static struct inode
*f2fs_nfs_get_inode(struct super_block
*sb
,
701 u64 ino
, u32 generation
)
703 struct f2fs_sb_info
*sbi
= F2FS_SB(sb
);
706 if (check_nid_range(sbi
, ino
))
707 return ERR_PTR(-ESTALE
);
710 * f2fs_iget isn't quite right if the inode is currently unallocated!
711 * However f2fs_iget currently does appropriate checks to handle stale
712 * inodes so everything is OK.
714 inode
= f2fs_iget(sb
, ino
);
716 return ERR_CAST(inode
);
717 if (unlikely(generation
&& inode
->i_generation
!= generation
)) {
718 /* we didn't find the right inode.. */
720 return ERR_PTR(-ESTALE
);
725 static struct dentry
*f2fs_fh_to_dentry(struct super_block
*sb
, struct fid
*fid
,
726 int fh_len
, int fh_type
)
728 return generic_fh_to_dentry(sb
, fid
, fh_len
, fh_type
,
732 static struct dentry
*f2fs_fh_to_parent(struct super_block
*sb
, struct fid
*fid
,
733 int fh_len
, int fh_type
)
735 return generic_fh_to_parent(sb
, fid
, fh_len
, fh_type
,
739 static const struct export_operations f2fs_export_ops
= {
740 .fh_to_dentry
= f2fs_fh_to_dentry
,
741 .fh_to_parent
= f2fs_fh_to_parent
,
742 .get_parent
= f2fs_get_parent
,
745 static loff_t
max_file_size(unsigned bits
)
747 loff_t result
= (DEF_ADDRS_PER_INODE
- F2FS_INLINE_XATTR_ADDRS
);
748 loff_t leaf_count
= ADDRS_PER_BLOCK
;
750 /* two direct node blocks */
751 result
+= (leaf_count
* 2);
753 /* two indirect node blocks */
754 leaf_count
*= NIDS_PER_BLOCK
;
755 result
+= (leaf_count
* 2);
757 /* one double indirect node block */
758 leaf_count
*= NIDS_PER_BLOCK
;
759 result
+= leaf_count
;
765 static int sanity_check_raw_super(struct super_block
*sb
,
766 struct f2fs_super_block
*raw_super
)
768 unsigned int blocksize
;
770 if (F2FS_SUPER_MAGIC
!= le32_to_cpu(raw_super
->magic
)) {
771 f2fs_msg(sb
, KERN_INFO
,
772 "Magic Mismatch, valid(0x%x) - read(0x%x)",
773 F2FS_SUPER_MAGIC
, le32_to_cpu(raw_super
->magic
));
777 /* Currently, support only 4KB page cache size */
778 if (F2FS_BLKSIZE
!= PAGE_CACHE_SIZE
) {
779 f2fs_msg(sb
, KERN_INFO
,
780 "Invalid page_cache_size (%lu), supports only 4KB\n",
785 /* Currently, support only 4KB block size */
786 blocksize
= 1 << le32_to_cpu(raw_super
->log_blocksize
);
787 if (blocksize
!= F2FS_BLKSIZE
) {
788 f2fs_msg(sb
, KERN_INFO
,
789 "Invalid blocksize (%u), supports only 4KB\n",
794 /* Currently, support 512/1024/2048/4096 bytes sector size */
795 if (le32_to_cpu(raw_super
->log_sectorsize
) >
796 F2FS_MAX_LOG_SECTOR_SIZE
||
797 le32_to_cpu(raw_super
->log_sectorsize
) <
798 F2FS_MIN_LOG_SECTOR_SIZE
) {
799 f2fs_msg(sb
, KERN_INFO
, "Invalid log sectorsize (%u)",
800 le32_to_cpu(raw_super
->log_sectorsize
));
803 if (le32_to_cpu(raw_super
->log_sectors_per_block
) +
804 le32_to_cpu(raw_super
->log_sectorsize
) !=
805 F2FS_MAX_LOG_SECTOR_SIZE
) {
806 f2fs_msg(sb
, KERN_INFO
,
807 "Invalid log sectors per block(%u) log sectorsize(%u)",
808 le32_to_cpu(raw_super
->log_sectors_per_block
),
809 le32_to_cpu(raw_super
->log_sectorsize
));
815 static int sanity_check_ckpt(struct f2fs_sb_info
*sbi
)
817 unsigned int total
, fsmeta
;
818 struct f2fs_super_block
*raw_super
= F2FS_RAW_SUPER(sbi
);
819 struct f2fs_checkpoint
*ckpt
= F2FS_CKPT(sbi
);
821 total
= le32_to_cpu(raw_super
->segment_count
);
822 fsmeta
= le32_to_cpu(raw_super
->segment_count_ckpt
);
823 fsmeta
+= le32_to_cpu(raw_super
->segment_count_sit
);
824 fsmeta
+= le32_to_cpu(raw_super
->segment_count_nat
);
825 fsmeta
+= le32_to_cpu(ckpt
->rsvd_segment_count
);
826 fsmeta
+= le32_to_cpu(raw_super
->segment_count_ssa
);
828 if (unlikely(fsmeta
>= total
))
831 if (unlikely(f2fs_cp_error(sbi
))) {
832 f2fs_msg(sbi
->sb
, KERN_ERR
, "A bug case: need to run fsck");
838 static void init_sb_info(struct f2fs_sb_info
*sbi
)
840 struct f2fs_super_block
*raw_super
= sbi
->raw_super
;
843 sbi
->log_sectors_per_block
=
844 le32_to_cpu(raw_super
->log_sectors_per_block
);
845 sbi
->log_blocksize
= le32_to_cpu(raw_super
->log_blocksize
);
846 sbi
->blocksize
= 1 << sbi
->log_blocksize
;
847 sbi
->log_blocks_per_seg
= le32_to_cpu(raw_super
->log_blocks_per_seg
);
848 sbi
->blocks_per_seg
= 1 << sbi
->log_blocks_per_seg
;
849 sbi
->segs_per_sec
= le32_to_cpu(raw_super
->segs_per_sec
);
850 sbi
->secs_per_zone
= le32_to_cpu(raw_super
->secs_per_zone
);
851 sbi
->total_sections
= le32_to_cpu(raw_super
->section_count
);
852 sbi
->total_node_count
=
853 (le32_to_cpu(raw_super
->segment_count_nat
) / 2)
854 * sbi
->blocks_per_seg
* NAT_ENTRY_PER_BLOCK
;
855 sbi
->root_ino_num
= le32_to_cpu(raw_super
->root_ino
);
856 sbi
->node_ino_num
= le32_to_cpu(raw_super
->node_ino
);
857 sbi
->meta_ino_num
= le32_to_cpu(raw_super
->meta_ino
);
858 sbi
->cur_victim_sec
= NULL_SECNO
;
859 sbi
->max_victim_search
= DEF_MAX_VICTIM_SEARCH
;
861 for (i
= 0; i
< NR_COUNT_TYPE
; i
++)
862 atomic_set(&sbi
->nr_pages
[i
], 0);
864 sbi
->dir_level
= DEF_DIR_LEVEL
;
865 sbi
->need_fsck
= false;
869 * Read f2fs raw super block.
870 * Because we have two copies of super block, so read the first one at first,
871 * if the first one is invalid, move to read the second one.
873 static int read_raw_super_block(struct super_block
*sb
,
874 struct f2fs_super_block
**raw_super
,
875 struct buffer_head
**raw_super_buf
)
880 *raw_super_buf
= sb_bread(sb
, block
);
881 if (!*raw_super_buf
) {
882 f2fs_msg(sb
, KERN_ERR
, "Unable to read %dth superblock",
892 *raw_super
= (struct f2fs_super_block
*)
893 ((char *)(*raw_super_buf
)->b_data
+ F2FS_SUPER_OFFSET
);
895 /* sanity checking of raw super */
896 if (sanity_check_raw_super(sb
, *raw_super
)) {
897 brelse(*raw_super_buf
);
898 f2fs_msg(sb
, KERN_ERR
,
899 "Can't find valid F2FS filesystem in %dth superblock",
912 static int f2fs_fill_super(struct super_block
*sb
, void *data
, int silent
)
914 struct f2fs_sb_info
*sbi
;
915 struct f2fs_super_block
*raw_super
;
916 struct buffer_head
*raw_super_buf
;
923 /* allocate memory for f2fs-specific super block info */
924 sbi
= kzalloc(sizeof(struct f2fs_sb_info
), GFP_KERNEL
);
928 /* set a block size */
929 if (unlikely(!sb_set_blocksize(sb
, F2FS_BLKSIZE
))) {
930 f2fs_msg(sb
, KERN_ERR
, "unable to set blocksize");
934 err
= read_raw_super_block(sb
, &raw_super
, &raw_super_buf
);
939 /* init some FS parameters */
940 sbi
->active_logs
= NR_CURSEG_TYPE
;
944 #ifdef CONFIG_F2FS_FS_XATTR
945 set_opt(sbi
, XATTR_USER
);
947 #ifdef CONFIG_F2FS_FS_POSIX_ACL
948 set_opt(sbi
, POSIX_ACL
);
950 /* parse mount options */
951 err
= parse_options(sb
, (char *)data
);
955 sb
->s_maxbytes
= max_file_size(le32_to_cpu(raw_super
->log_blocksize
));
956 sb
->s_max_links
= F2FS_LINK_MAX
;
957 get_random_bytes(&sbi
->s_next_generation
, sizeof(u32
));
959 sb
->s_op
= &f2fs_sops
;
960 sb
->s_xattr
= f2fs_xattr_handlers
;
961 sb
->s_export_op
= &f2fs_export_ops
;
962 sb
->s_magic
= F2FS_SUPER_MAGIC
;
964 sb
->s_flags
= (sb
->s_flags
& ~MS_POSIXACL
) |
965 (test_opt(sbi
, POSIX_ACL
) ? MS_POSIXACL
: 0);
966 memcpy(sb
->s_uuid
, raw_super
->uuid
, sizeof(raw_super
->uuid
));
968 /* init f2fs-specific super block info */
970 sbi
->raw_super
= raw_super
;
971 sbi
->raw_super_buf
= raw_super_buf
;
972 mutex_init(&sbi
->gc_mutex
);
973 mutex_init(&sbi
->writepages
);
974 mutex_init(&sbi
->cp_mutex
);
975 init_rwsem(&sbi
->node_write
);
976 sbi
->por_doing
= false;
977 spin_lock_init(&sbi
->stat_lock
);
979 init_rwsem(&sbi
->read_io
.io_rwsem
);
980 sbi
->read_io
.sbi
= sbi
;
981 sbi
->read_io
.bio
= NULL
;
982 for (i
= 0; i
< NR_PAGE_TYPE
; i
++) {
983 init_rwsem(&sbi
->write_io
[i
].io_rwsem
);
984 sbi
->write_io
[i
].sbi
= sbi
;
985 sbi
->write_io
[i
].bio
= NULL
;
988 init_rwsem(&sbi
->cp_rwsem
);
989 init_waitqueue_head(&sbi
->cp_wait
);
992 /* get an inode for meta space */
993 sbi
->meta_inode
= f2fs_iget(sb
, F2FS_META_INO(sbi
));
994 if (IS_ERR(sbi
->meta_inode
)) {
995 f2fs_msg(sb
, KERN_ERR
, "Failed to read F2FS meta data inode");
996 err
= PTR_ERR(sbi
->meta_inode
);
1000 err
= get_valid_checkpoint(sbi
);
1002 f2fs_msg(sb
, KERN_ERR
, "Failed to get valid F2FS checkpoint");
1003 goto free_meta_inode
;
1006 /* sanity checking of checkpoint */
1008 if (sanity_check_ckpt(sbi
)) {
1009 f2fs_msg(sb
, KERN_ERR
, "Invalid F2FS checkpoint");
1013 sbi
->total_valid_node_count
=
1014 le32_to_cpu(sbi
->ckpt
->valid_node_count
);
1015 sbi
->total_valid_inode_count
=
1016 le32_to_cpu(sbi
->ckpt
->valid_inode_count
);
1017 sbi
->user_block_count
= le64_to_cpu(sbi
->ckpt
->user_block_count
);
1018 sbi
->total_valid_block_count
=
1019 le64_to_cpu(sbi
->ckpt
->valid_block_count
);
1020 sbi
->last_valid_block_count
= sbi
->total_valid_block_count
;
1021 sbi
->alloc_valid_block_count
= 0;
1022 INIT_LIST_HEAD(&sbi
->dir_inode_list
);
1023 spin_lock_init(&sbi
->dir_inode_lock
);
1025 init_ino_entry_info(sbi
);
1027 /* setup f2fs internal modules */
1028 err
= build_segment_manager(sbi
);
1030 f2fs_msg(sb
, KERN_ERR
,
1031 "Failed to initialize F2FS segment manager");
1034 err
= build_node_manager(sbi
);
1036 f2fs_msg(sb
, KERN_ERR
,
1037 "Failed to initialize F2FS node manager");
1041 build_gc_manager(sbi
);
1043 /* get an inode for node space */
1044 sbi
->node_inode
= f2fs_iget(sb
, F2FS_NODE_INO(sbi
));
1045 if (IS_ERR(sbi
->node_inode
)) {
1046 f2fs_msg(sb
, KERN_ERR
, "Failed to read node inode");
1047 err
= PTR_ERR(sbi
->node_inode
);
1051 /* if there are nt orphan nodes free them */
1052 recover_orphan_inodes(sbi
);
1054 /* read root inode and dentry */
1055 root
= f2fs_iget(sb
, F2FS_ROOT_INO(sbi
));
1057 f2fs_msg(sb
, KERN_ERR
, "Failed to read root inode");
1058 err
= PTR_ERR(root
);
1059 goto free_node_inode
;
1061 if (!S_ISDIR(root
->i_mode
) || !root
->i_blocks
|| !root
->i_size
) {
1064 goto free_node_inode
;
1067 sb
->s_root
= d_make_root(root
); /* allocate root dentry */
1070 goto free_root_inode
;
1073 err
= f2fs_build_stats(sbi
);
1075 goto free_root_inode
;
1078 sbi
->s_proc
= proc_mkdir(sb
->s_id
, f2fs_proc_root
);
1081 proc_create_data("segment_info", S_IRUGO
, sbi
->s_proc
,
1082 &f2fs_seq_segment_info_fops
, sb
);
1084 if (test_opt(sbi
, DISCARD
)) {
1085 struct request_queue
*q
= bdev_get_queue(sb
->s_bdev
);
1086 if (!blk_queue_discard(q
))
1087 f2fs_msg(sb
, KERN_WARNING
,
1088 "mounting with \"discard\" option, but "
1089 "the device does not support discard");
1092 sbi
->s_kobj
.kset
= f2fs_kset
;
1093 init_completion(&sbi
->s_kobj_unregister
);
1094 err
= kobject_init_and_add(&sbi
->s_kobj
, &f2fs_ktype
, NULL
,
1100 sbi
->need_fsck
= true;
1102 /* recover fsynced data */
1103 if (!test_opt(sbi
, DISABLE_ROLL_FORWARD
)) {
1104 err
= recover_fsync_data(sbi
);
1106 f2fs_msg(sb
, KERN_ERR
,
1107 "Cannot recover all fsync data errno=%ld", err
);
1113 * If filesystem is not mounted as read-only then
1114 * do start the gc_thread.
1116 if (!f2fs_readonly(sb
)) {
1117 /* After POR, we can run background GC thread.*/
1118 err
= start_gc_thread(sbi
);
1125 kobject_del(&sbi
->s_kobj
);
1128 remove_proc_entry("segment_info", sbi
->s_proc
);
1129 remove_proc_entry(sb
->s_id
, f2fs_proc_root
);
1131 f2fs_destroy_stats(sbi
);
1136 iput(sbi
->node_inode
);
1138 destroy_node_manager(sbi
);
1140 destroy_segment_manager(sbi
);
1144 make_bad_inode(sbi
->meta_inode
);
1145 iput(sbi
->meta_inode
);
1147 brelse(raw_super_buf
);
1151 /* give only one another chance */
1154 shrink_dcache_sb(sb
);
1160 static struct dentry
*f2fs_mount(struct file_system_type
*fs_type
, int flags
,
1161 const char *dev_name
, void *data
)
1163 return mount_bdev(fs_type
, flags
, dev_name
, data
, f2fs_fill_super
);
1166 static struct file_system_type f2fs_fs_type
= {
1167 .owner
= THIS_MODULE
,
1169 .mount
= f2fs_mount
,
1170 .kill_sb
= kill_block_super
,
1171 .fs_flags
= FS_REQUIRES_DEV
,
1173 MODULE_ALIAS_FS("f2fs");
1175 static int __init
init_inodecache(void)
1177 f2fs_inode_cachep
= f2fs_kmem_cache_create("f2fs_inode_cache",
1178 sizeof(struct f2fs_inode_info
));
1179 if (!f2fs_inode_cachep
)
1184 static void destroy_inodecache(void)
1187 * Make sure all delayed rcu free inodes are flushed before we
1191 kmem_cache_destroy(f2fs_inode_cachep
);
1194 static int __init
init_f2fs_fs(void)
1198 err
= init_inodecache();
1201 err
= create_node_manager_caches();
1203 goto free_inodecache
;
1204 err
= create_segment_manager_caches();
1206 goto free_node_manager_caches
;
1207 err
= create_gc_caches();
1209 goto free_segment_manager_caches
;
1210 err
= create_checkpoint_caches();
1212 goto free_gc_caches
;
1213 f2fs_kset
= kset_create_and_add("f2fs", NULL
, fs_kobj
);
1216 goto free_checkpoint_caches
;
1218 err
= register_filesystem(&f2fs_fs_type
);
1221 f2fs_create_root_stats();
1222 f2fs_proc_root
= proc_mkdir("fs/f2fs", NULL
);
1226 kset_unregister(f2fs_kset
);
1227 free_checkpoint_caches
:
1228 destroy_checkpoint_caches();
1230 destroy_gc_caches();
1231 free_segment_manager_caches
:
1232 destroy_segment_manager_caches();
1233 free_node_manager_caches
:
1234 destroy_node_manager_caches();
1236 destroy_inodecache();
1241 static void __exit
exit_f2fs_fs(void)
1243 remove_proc_entry("fs/f2fs", NULL
);
1244 f2fs_destroy_root_stats();
1245 unregister_filesystem(&f2fs_fs_type
);
1246 destroy_checkpoint_caches();
1247 destroy_gc_caches();
1248 destroy_segment_manager_caches();
1249 destroy_node_manager_caches();
1250 destroy_inodecache();
1251 kset_unregister(f2fs_kset
);
1254 module_init(init_f2fs_fs
)
1255 module_exit(exit_f2fs_fs
)
1257 MODULE_AUTHOR("Samsung Electronics's Praesto Team");
1258 MODULE_DESCRIPTION("Flash Friendly File System");
1259 MODULE_LICENSE("GPL");