f2fs: introduce a new ioctl F2FS_IOC_WRITE_CHECKPOINT
[linux-block.git] / fs / f2fs / super.c
CommitLineData
0a8165d7 1/*
aff063e2
JK
2 * fs/f2fs/super.c
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#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/fs.h>
14#include <linux/statfs.h>
aff063e2
JK
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>
5e176d54 21#include <linux/proc_fs.h>
aff063e2
JK
22#include <linux/random.h>
23#include <linux/exportfs.h>
d3ee456d 24#include <linux/blkdev.h>
aff063e2 25#include <linux/f2fs_fs.h>
b59d0bae 26#include <linux/sysfs.h>
aff063e2
JK
27
28#include "f2fs.h"
29#include "node.h"
5ec4e49f 30#include "segment.h"
aff063e2 31#include "xattr.h"
b59d0bae 32#include "gc.h"
db9f7c1a 33#include "trace.h"
aff063e2 34
a2a4a7e4
NJ
35#define CREATE_TRACE_POINTS
36#include <trace/events/f2fs.h>
37
5e176d54 38static struct proc_dir_entry *f2fs_proc_root;
aff063e2 39static struct kmem_cache *f2fs_inode_cachep;
b59d0bae 40static struct kset *f2fs_kset;
aff063e2 41
2658e50d
JK
42/* f2fs-wide shrinker description */
43static struct shrinker f2fs_shrinker_info = {
44 .scan_objects = f2fs_shrink_scan,
45 .count_objects = f2fs_shrink_count,
46 .seeks = DEFAULT_SEEKS,
47};
48
aff063e2 49enum {
696c018c 50 Opt_gc_background,
aff063e2 51 Opt_disable_roll_forward,
2d834bf9 52 Opt_norecovery,
aff063e2
JK
53 Opt_discard,
54 Opt_noheap,
4058c511 55 Opt_user_xattr,
aff063e2 56 Opt_nouser_xattr,
4058c511 57 Opt_acl,
aff063e2
JK
58 Opt_noacl,
59 Opt_active_logs,
60 Opt_disable_ext_identify,
444c580f 61 Opt_inline_xattr,
8274de77 62 Opt_inline_data,
5efd3c6f 63 Opt_inline_dentry,
6b4afdd7 64 Opt_flush_merge,
0f7b2abd 65 Opt_nobarrier,
d5053a34 66 Opt_fastboot,
89672159 67 Opt_extent_cache,
7daaea25 68 Opt_noextent_cache,
75342797 69 Opt_noinline_data,
aff063e2
JK
70 Opt_err,
71};
72
73static match_table_t f2fs_tokens = {
696c018c 74 {Opt_gc_background, "background_gc=%s"},
aff063e2 75 {Opt_disable_roll_forward, "disable_roll_forward"},
2d834bf9 76 {Opt_norecovery, "norecovery"},
aff063e2
JK
77 {Opt_discard, "discard"},
78 {Opt_noheap, "no_heap"},
4058c511 79 {Opt_user_xattr, "user_xattr"},
aff063e2 80 {Opt_nouser_xattr, "nouser_xattr"},
4058c511 81 {Opt_acl, "acl"},
aff063e2
JK
82 {Opt_noacl, "noacl"},
83 {Opt_active_logs, "active_logs=%u"},
84 {Opt_disable_ext_identify, "disable_ext_identify"},
444c580f 85 {Opt_inline_xattr, "inline_xattr"},
8274de77 86 {Opt_inline_data, "inline_data"},
5efd3c6f 87 {Opt_inline_dentry, "inline_dentry"},
6b4afdd7 88 {Opt_flush_merge, "flush_merge"},
0f7b2abd 89 {Opt_nobarrier, "nobarrier"},
d5053a34 90 {Opt_fastboot, "fastboot"},
89672159 91 {Opt_extent_cache, "extent_cache"},
7daaea25 92 {Opt_noextent_cache, "noextent_cache"},
75342797 93 {Opt_noinline_data, "noinline_data"},
aff063e2
JK
94 {Opt_err, NULL},
95};
96
b59d0bae 97/* Sysfs support for f2fs */
ea91e9b0
JK
98enum {
99 GC_THREAD, /* struct f2fs_gc_thread */
100 SM_INFO, /* struct f2fs_sm_info */
cdfc41c1 101 NM_INFO, /* struct f2fs_nm_info */
b1c57c1c 102 F2FS_SBI, /* struct f2fs_sb_info */
ea91e9b0
JK
103};
104
b59d0bae
NJ
105struct f2fs_attr {
106 struct attribute attr;
107 ssize_t (*show)(struct f2fs_attr *, struct f2fs_sb_info *, char *);
108 ssize_t (*store)(struct f2fs_attr *, struct f2fs_sb_info *,
109 const char *, size_t);
ea91e9b0 110 int struct_type;
b59d0bae
NJ
111 int offset;
112};
113
ea91e9b0
JK
114static unsigned char *__struct_ptr(struct f2fs_sb_info *sbi, int struct_type)
115{
116 if (struct_type == GC_THREAD)
117 return (unsigned char *)sbi->gc_thread;
118 else if (struct_type == SM_INFO)
119 return (unsigned char *)SM_I(sbi);
cdfc41c1
JK
120 else if (struct_type == NM_INFO)
121 return (unsigned char *)NM_I(sbi);
b1c57c1c
JK
122 else if (struct_type == F2FS_SBI)
123 return (unsigned char *)sbi;
ea91e9b0
JK
124 return NULL;
125}
126
b59d0bae
NJ
127static ssize_t f2fs_sbi_show(struct f2fs_attr *a,
128 struct f2fs_sb_info *sbi, char *buf)
129{
ea91e9b0 130 unsigned char *ptr = NULL;
b59d0bae
NJ
131 unsigned int *ui;
132
ea91e9b0
JK
133 ptr = __struct_ptr(sbi, a->struct_type);
134 if (!ptr)
b59d0bae
NJ
135 return -EINVAL;
136
ea91e9b0 137 ui = (unsigned int *)(ptr + a->offset);
b59d0bae
NJ
138
139 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
140}
141
142static ssize_t f2fs_sbi_store(struct f2fs_attr *a,
143 struct f2fs_sb_info *sbi,
144 const char *buf, size_t count)
145{
ea91e9b0 146 unsigned char *ptr;
b59d0bae
NJ
147 unsigned long t;
148 unsigned int *ui;
149 ssize_t ret;
150
ea91e9b0
JK
151 ptr = __struct_ptr(sbi, a->struct_type);
152 if (!ptr)
b59d0bae
NJ
153 return -EINVAL;
154
ea91e9b0 155 ui = (unsigned int *)(ptr + a->offset);
b59d0bae
NJ
156
157 ret = kstrtoul(skip_spaces(buf), 0, &t);
158 if (ret < 0)
159 return ret;
160 *ui = t;
161 return count;
162}
163
164static ssize_t f2fs_attr_show(struct kobject *kobj,
165 struct attribute *attr, char *buf)
166{
167 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
168 s_kobj);
169 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
170
171 return a->show ? a->show(a, sbi, buf) : 0;
172}
173
174static ssize_t f2fs_attr_store(struct kobject *kobj, struct attribute *attr,
175 const char *buf, size_t len)
176{
177 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
178 s_kobj);
179 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
180
181 return a->store ? a->store(a, sbi, buf, len) : 0;
182}
183
184static void f2fs_sb_release(struct kobject *kobj)
185{
186 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
187 s_kobj);
188 complete(&sbi->s_kobj_unregister);
189}
190
ea91e9b0 191#define F2FS_ATTR_OFFSET(_struct_type, _name, _mode, _show, _store, _offset) \
b59d0bae
NJ
192static struct f2fs_attr f2fs_attr_##_name = { \
193 .attr = {.name = __stringify(_name), .mode = _mode }, \
194 .show = _show, \
195 .store = _store, \
ea91e9b0
JK
196 .struct_type = _struct_type, \
197 .offset = _offset \
b59d0bae
NJ
198}
199
ea91e9b0
JK
200#define F2FS_RW_ATTR(struct_type, struct_name, name, elname) \
201 F2FS_ATTR_OFFSET(struct_type, name, 0644, \
202 f2fs_sbi_show, f2fs_sbi_store, \
203 offsetof(struct struct_name, elname))
b59d0bae 204
ea91e9b0
JK
205F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_min_sleep_time, min_sleep_time);
206F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_max_sleep_time, max_sleep_time);
207F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_no_gc_sleep_time, no_gc_sleep_time);
208F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_idle, gc_idle);
209F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, reclaim_segments, rec_prefree_segments);
7ac8c3b0 210F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, max_small_discards, max_discards);
bba681cb 211F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, batched_trim_sections, trim_sections);
216fbd64
JK
212F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, ipu_policy, ipu_policy);
213F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, min_ipu_util, min_ipu_util);
c1ce1b02 214F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, min_fsync_blocks, min_fsync_blocks);
cdfc41c1 215F2FS_RW_ATTR(NM_INFO, f2fs_nm_info, ram_thresh, ram_thresh);
b1c57c1c 216F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, max_victim_search, max_victim_search);
ab9fa662 217F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, dir_level, dir_level);
b59d0bae
NJ
218
219#define ATTR_LIST(name) (&f2fs_attr_##name.attr)
220static struct attribute *f2fs_attrs[] = {
221 ATTR_LIST(gc_min_sleep_time),
222 ATTR_LIST(gc_max_sleep_time),
223 ATTR_LIST(gc_no_gc_sleep_time),
d2dc095f 224 ATTR_LIST(gc_idle),
ea91e9b0 225 ATTR_LIST(reclaim_segments),
7ac8c3b0 226 ATTR_LIST(max_small_discards),
bba681cb 227 ATTR_LIST(batched_trim_sections),
216fbd64
JK
228 ATTR_LIST(ipu_policy),
229 ATTR_LIST(min_ipu_util),
c1ce1b02 230 ATTR_LIST(min_fsync_blocks),
b1c57c1c 231 ATTR_LIST(max_victim_search),
ab9fa662 232 ATTR_LIST(dir_level),
cdfc41c1 233 ATTR_LIST(ram_thresh),
b59d0bae
NJ
234 NULL,
235};
236
237static const struct sysfs_ops f2fs_attr_ops = {
238 .show = f2fs_attr_show,
239 .store = f2fs_attr_store,
240};
241
242static struct kobj_type f2fs_ktype = {
243 .default_attrs = f2fs_attrs,
244 .sysfs_ops = &f2fs_attr_ops,
245 .release = f2fs_sb_release,
246};
247
a07ef784
NJ
248void f2fs_msg(struct super_block *sb, const char *level, const char *fmt, ...)
249{
250 struct va_format vaf;
251 va_list args;
252
253 va_start(args, fmt);
254 vaf.fmt = fmt;
255 vaf.va = &args;
256 printk("%sF2FS-fs (%s): %pV\n", level, sb->s_id, &vaf);
257 va_end(args);
258}
259
aff063e2
JK
260static void init_once(void *foo)
261{
262 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
263
aff063e2
JK
264 inode_init_once(&fi->vfs_inode);
265}
266
696c018c
NJ
267static int parse_options(struct super_block *sb, char *options)
268{
269 struct f2fs_sb_info *sbi = F2FS_SB(sb);
09d54cdd 270 struct request_queue *q;
696c018c
NJ
271 substring_t args[MAX_OPT_ARGS];
272 char *p, *name;
273 int arg = 0;
274
275 if (!options)
276 return 0;
277
278 while ((p = strsep(&options, ",")) != NULL) {
279 int token;
280 if (!*p)
281 continue;
282 /*
283 * Initialize args struct so we know whether arg was
284 * found; some options take optional arguments.
285 */
286 args[0].to = args[0].from = NULL;
287 token = match_token(p, f2fs_tokens, args);
288
289 switch (token) {
290 case Opt_gc_background:
291 name = match_strdup(&args[0]);
292
293 if (!name)
294 return -ENOMEM;
04c09388 295 if (strlen(name) == 2 && !strncmp(name, "on", 2))
696c018c 296 set_opt(sbi, BG_GC);
04c09388 297 else if (strlen(name) == 3 && !strncmp(name, "off", 3))
696c018c
NJ
298 clear_opt(sbi, BG_GC);
299 else {
300 kfree(name);
301 return -EINVAL;
302 }
303 kfree(name);
304 break;
305 case Opt_disable_roll_forward:
306 set_opt(sbi, DISABLE_ROLL_FORWARD);
307 break;
2d834bf9
JK
308 case Opt_norecovery:
309 /* this option mounts f2fs with ro */
310 set_opt(sbi, DISABLE_ROLL_FORWARD);
311 if (!f2fs_readonly(sb))
312 return -EINVAL;
313 break;
696c018c 314 case Opt_discard:
09d54cdd
CY
315 q = bdev_get_queue(sb->s_bdev);
316 if (blk_queue_discard(q)) {
317 set_opt(sbi, DISCARD);
318 } else {
319 f2fs_msg(sb, KERN_WARNING,
320 "mounting with \"discard\" option, but "
321 "the device does not support discard");
322 }
696c018c
NJ
323 break;
324 case Opt_noheap:
325 set_opt(sbi, NOHEAP);
326 break;
327#ifdef CONFIG_F2FS_FS_XATTR
4058c511
KA
328 case Opt_user_xattr:
329 set_opt(sbi, XATTR_USER);
330 break;
696c018c
NJ
331 case Opt_nouser_xattr:
332 clear_opt(sbi, XATTR_USER);
333 break;
444c580f
JK
334 case Opt_inline_xattr:
335 set_opt(sbi, INLINE_XATTR);
336 break;
696c018c 337#else
4058c511
KA
338 case Opt_user_xattr:
339 f2fs_msg(sb, KERN_INFO,
340 "user_xattr options not supported");
341 break;
696c018c
NJ
342 case Opt_nouser_xattr:
343 f2fs_msg(sb, KERN_INFO,
344 "nouser_xattr options not supported");
345 break;
444c580f
JK
346 case Opt_inline_xattr:
347 f2fs_msg(sb, KERN_INFO,
348 "inline_xattr options not supported");
349 break;
696c018c
NJ
350#endif
351#ifdef CONFIG_F2FS_FS_POSIX_ACL
4058c511
KA
352 case Opt_acl:
353 set_opt(sbi, POSIX_ACL);
354 break;
696c018c
NJ
355 case Opt_noacl:
356 clear_opt(sbi, POSIX_ACL);
357 break;
358#else
4058c511
KA
359 case Opt_acl:
360 f2fs_msg(sb, KERN_INFO, "acl options not supported");
361 break;
696c018c
NJ
362 case Opt_noacl:
363 f2fs_msg(sb, KERN_INFO, "noacl options not supported");
364 break;
365#endif
366 case Opt_active_logs:
367 if (args->from && match_int(args, &arg))
368 return -EINVAL;
369 if (arg != 2 && arg != 4 && arg != NR_CURSEG_TYPE)
370 return -EINVAL;
371 sbi->active_logs = arg;
372 break;
373 case Opt_disable_ext_identify:
374 set_opt(sbi, DISABLE_EXT_IDENTIFY);
375 break;
8274de77
HL
376 case Opt_inline_data:
377 set_opt(sbi, INLINE_DATA);
378 break;
5efd3c6f
CY
379 case Opt_inline_dentry:
380 set_opt(sbi, INLINE_DENTRY);
381 break;
6b4afdd7
JK
382 case Opt_flush_merge:
383 set_opt(sbi, FLUSH_MERGE);
384 break;
0f7b2abd
JK
385 case Opt_nobarrier:
386 set_opt(sbi, NOBARRIER);
387 break;
d5053a34
JK
388 case Opt_fastboot:
389 set_opt(sbi, FASTBOOT);
390 break;
89672159
CY
391 case Opt_extent_cache:
392 set_opt(sbi, EXTENT_CACHE);
393 break;
7daaea25
JK
394 case Opt_noextent_cache:
395 clear_opt(sbi, EXTENT_CACHE);
396 break;
75342797
WL
397 case Opt_noinline_data:
398 clear_opt(sbi, INLINE_DATA);
399 break;
696c018c
NJ
400 default:
401 f2fs_msg(sb, KERN_ERR,
402 "Unrecognized mount option \"%s\" or missing value",
403 p);
404 return -EINVAL;
405 }
406 }
407 return 0;
408}
409
aff063e2
JK
410static struct inode *f2fs_alloc_inode(struct super_block *sb)
411{
412 struct f2fs_inode_info *fi;
413
a0acdfe0 414 fi = kmem_cache_alloc(f2fs_inode_cachep, GFP_F2FS_ZERO);
aff063e2
JK
415 if (!fi)
416 return NULL;
417
418 init_once((void *) fi);
419
434720fa 420 /* Initialize f2fs-specific inode info */
aff063e2 421 fi->vfs_inode.i_version = 1;
a7ffdbe2 422 atomic_set(&fi->dirty_pages, 0);
aff063e2
JK
423 fi->i_current_depth = 1;
424 fi->i_advise = 0;
d928bfbf 425 init_rwsem(&fi->i_sem);
88b88a66
JK
426 INIT_LIST_HEAD(&fi->inmem_pages);
427 mutex_init(&fi->inmem_lock);
aff063e2
JK
428
429 set_inode_flag(fi, FI_NEW_INODE);
430
444c580f
JK
431 if (test_opt(F2FS_SB(sb), INLINE_XATTR))
432 set_inode_flag(fi, FI_INLINE_XATTR);
433
ab9fa662
JK
434 /* Will be used by directory only */
435 fi->i_dir_level = F2FS_SB(sb)->dir_level;
436
57e5055b
JK
437#ifdef CONFIG_F2FS_FS_ENCRYPTION
438 fi->i_crypt_info = NULL;
439#endif
aff063e2
JK
440 return &fi->vfs_inode;
441}
442
531ad7d5
JK
443static int f2fs_drop_inode(struct inode *inode)
444{
445 /*
446 * This is to avoid a deadlock condition like below.
447 * writeback_single_inode(inode)
448 * - f2fs_write_data_page
449 * - f2fs_gc -> iput -> evict
450 * - inode_wait_for_writeback(inode)
451 */
06e1bc05
JK
452 if (!inode_unhashed(inode) && inode->i_state & I_SYNC) {
453 if (!inode->i_nlink && !is_bad_inode(inode)) {
3e72f721
JK
454 /* to avoid evict_inode call simultaneously */
455 atomic_inc(&inode->i_count);
06e1bc05
JK
456 spin_unlock(&inode->i_lock);
457
458 /* some remained atomic pages should discarded */
459 if (f2fs_is_atomic_file(inode))
460 commit_inmem_pages(inode, true);
461
3e72f721
JK
462 /* should remain fi->extent_tree for writepage */
463 f2fs_destroy_extent_node(inode);
464
06e1bc05
JK
465 sb_start_intwrite(inode->i_sb);
466 i_size_write(inode, 0);
467
468 if (F2FS_HAS_BLOCKS(inode))
55f57d2c 469 f2fs_truncate(inode, true);
06e1bc05
JK
470
471 sb_end_intwrite(inode->i_sb);
472
473#ifdef CONFIG_F2FS_FS_ENCRYPTION
474 if (F2FS_I(inode)->i_crypt_info)
26bf3dc7
JK
475 f2fs_free_encryption_info(inode,
476 F2FS_I(inode)->i_crypt_info);
06e1bc05
JK
477#endif
478 spin_lock(&inode->i_lock);
3e72f721 479 atomic_dec(&inode->i_count);
06e1bc05 480 }
531ad7d5 481 return 0;
06e1bc05 482 }
531ad7d5
JK
483 return generic_drop_inode(inode);
484}
485
b3783873
JK
486/*
487 * f2fs_dirty_inode() is called from __mark_inode_dirty()
488 *
489 * We should call set_dirty_inode to write the dirty inode through write_inode.
490 */
491static void f2fs_dirty_inode(struct inode *inode, int flags)
492{
493 set_inode_flag(F2FS_I(inode), FI_DIRTY_INODE);
b3783873
JK
494}
495
aff063e2
JK
496static void f2fs_i_callback(struct rcu_head *head)
497{
498 struct inode *inode = container_of(head, struct inode, i_rcu);
499 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
500}
501
25ca923b 502static void f2fs_destroy_inode(struct inode *inode)
aff063e2
JK
503{
504 call_rcu(&inode->i_rcu, f2fs_i_callback);
505}
506
507static void f2fs_put_super(struct super_block *sb)
508{
509 struct f2fs_sb_info *sbi = F2FS_SB(sb);
510
5e176d54
JK
511 if (sbi->s_proc) {
512 remove_proc_entry("segment_info", sbi->s_proc);
513 remove_proc_entry(sb->s_id, f2fs_proc_root);
514 }
b59d0bae 515 kobject_del(&sbi->s_kobj);
5e176d54 516
aff063e2
JK
517 stop_gc_thread(sbi);
518
2658e50d
JK
519 /* prevent remaining shrinker jobs */
520 mutex_lock(&sbi->umount_mutex);
521
85dc2f2c
JK
522 /*
523 * We don't need to do checkpoint when superblock is clean.
524 * But, the previous checkpoint was not done by umount, it needs to do
525 * clean checkpoint again.
526 */
caf0047e 527 if (is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
85dc2f2c 528 !is_set_ckpt_flags(F2FS_CKPT(sbi), CP_UMOUNT_FLAG)) {
75ab4cb8
JK
529 struct cp_control cpc = {
530 .reason = CP_UMOUNT,
531 };
532 write_checkpoint(sbi, &cpc);
533 }
aff063e2 534
eca616f8
JK
535 /* write_checkpoint can update stat informaion */
536 f2fs_destroy_stats(sbi);
537
cf779cab
JK
538 /*
539 * normally superblock is clean, so we need to release this.
540 * In addition, EIO will skip do checkpoint, we need this as well.
541 */
6f12ac25 542 release_dirty_inode(sbi);
4b2fecc8 543 release_discard_addrs(sbi);
6f12ac25 544
2658e50d
JK
545 f2fs_leave_shrinker(sbi);
546 mutex_unlock(&sbi->umount_mutex);
547
aff063e2
JK
548 iput(sbi->node_inode);
549 iput(sbi->meta_inode);
550
551 /* destroy f2fs internal modules */
552 destroy_node_manager(sbi);
553 destroy_segment_manager(sbi);
554
555 kfree(sbi->ckpt);
b59d0bae
NJ
556 kobject_put(&sbi->s_kobj);
557 wait_for_completion(&sbi->s_kobj_unregister);
aff063e2
JK
558
559 sb->s_fs_info = NULL;
560 brelse(sbi->raw_super_buf);
561 kfree(sbi);
562}
563
564int f2fs_sync_fs(struct super_block *sb, int sync)
565{
566 struct f2fs_sb_info *sbi = F2FS_SB(sb);
aff063e2 567
a2a4a7e4
NJ
568 trace_f2fs_sync_fs(sb, sync);
569
b7473754 570 if (sync) {
d5053a34
JK
571 struct cp_control cpc;
572
119ee914
JK
573 cpc.reason = __get_cp_reason(sbi);
574
b7473754 575 mutex_lock(&sbi->gc_mutex);
75ab4cb8 576 write_checkpoint(sbi, &cpc);
b7473754
JK
577 mutex_unlock(&sbi->gc_mutex);
578 } else {
7d82db83 579 f2fs_balance_fs(sbi);
b7473754 580 }
05ca3632 581 f2fs_trace_ios(NULL, 1);
aff063e2 582
64c576fe 583 return 0;
aff063e2
JK
584}
585
d6212a5f
CL
586static int f2fs_freeze(struct super_block *sb)
587{
588 int err;
589
77888c1e 590 if (f2fs_readonly(sb))
d6212a5f
CL
591 return 0;
592
593 err = f2fs_sync_fs(sb, 1);
594 return err;
595}
596
597static int f2fs_unfreeze(struct super_block *sb)
598{
599 return 0;
600}
601
aff063e2
JK
602static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
603{
604 struct super_block *sb = dentry->d_sb;
605 struct f2fs_sb_info *sbi = F2FS_SB(sb);
606 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
607 block_t total_count, user_block_count, start_count, ovp_count;
608
609 total_count = le64_to_cpu(sbi->raw_super->block_count);
610 user_block_count = sbi->user_block_count;
611 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
612 ovp_count = SM_I(sbi)->ovp_segments << sbi->log_blocks_per_seg;
613 buf->f_type = F2FS_SUPER_MAGIC;
614 buf->f_bsize = sbi->blocksize;
615
616 buf->f_blocks = total_count - start_count;
617 buf->f_bfree = buf->f_blocks - valid_user_blocks(sbi) - ovp_count;
618 buf->f_bavail = user_block_count - valid_user_blocks(sbi);
619
c200b1aa
CY
620 buf->f_files = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
621 buf->f_ffree = buf->f_files - valid_inode_count(sbi);
aff063e2 622
5a20d339 623 buf->f_namelen = F2FS_NAME_LEN;
aff063e2
JK
624 buf->f_fsid.val[0] = (u32)id;
625 buf->f_fsid.val[1] = (u32)(id >> 32);
626
627 return 0;
628}
629
630static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
631{
632 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
633
b270ad6f 634 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, BG_GC))
696c018c 635 seq_printf(seq, ",background_gc=%s", "on");
aff063e2 636 else
696c018c 637 seq_printf(seq, ",background_gc=%s", "off");
aff063e2
JK
638 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
639 seq_puts(seq, ",disable_roll_forward");
640 if (test_opt(sbi, DISCARD))
641 seq_puts(seq, ",discard");
642 if (test_opt(sbi, NOHEAP))
643 seq_puts(seq, ",no_heap_alloc");
644#ifdef CONFIG_F2FS_FS_XATTR
645 if (test_opt(sbi, XATTR_USER))
646 seq_puts(seq, ",user_xattr");
647 else
648 seq_puts(seq, ",nouser_xattr");
444c580f
JK
649 if (test_opt(sbi, INLINE_XATTR))
650 seq_puts(seq, ",inline_xattr");
aff063e2
JK
651#endif
652#ifdef CONFIG_F2FS_FS_POSIX_ACL
653 if (test_opt(sbi, POSIX_ACL))
654 seq_puts(seq, ",acl");
655 else
656 seq_puts(seq, ",noacl");
657#endif
658 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
aa43507f 659 seq_puts(seq, ",disable_ext_identify");
8274de77
HL
660 if (test_opt(sbi, INLINE_DATA))
661 seq_puts(seq, ",inline_data");
75342797
WL
662 else
663 seq_puts(seq, ",noinline_data");
5efd3c6f
CY
664 if (test_opt(sbi, INLINE_DENTRY))
665 seq_puts(seq, ",inline_dentry");
b270ad6f 666 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, FLUSH_MERGE))
6b4afdd7 667 seq_puts(seq, ",flush_merge");
0f7b2abd
JK
668 if (test_opt(sbi, NOBARRIER))
669 seq_puts(seq, ",nobarrier");
d5053a34
JK
670 if (test_opt(sbi, FASTBOOT))
671 seq_puts(seq, ",fastboot");
89672159
CY
672 if (test_opt(sbi, EXTENT_CACHE))
673 seq_puts(seq, ",extent_cache");
7daaea25
JK
674 else
675 seq_puts(seq, ",noextent_cache");
aff063e2
JK
676 seq_printf(seq, ",active_logs=%u", sbi->active_logs);
677
678 return 0;
679}
680
5e176d54
JK
681static int segment_info_seq_show(struct seq_file *seq, void *offset)
682{
683 struct super_block *sb = seq->private;
684 struct f2fs_sb_info *sbi = F2FS_SB(sb);
6c311ec6
CF
685 unsigned int total_segs =
686 le32_to_cpu(sbi->raw_super->segment_count_main);
5e176d54
JK
687 int i;
688
90aa6dc9
CY
689 seq_puts(seq, "format: segment_type|valid_blocks\n"
690 "segment_type(0:HD, 1:WD, 2:CD, 3:HN, 4:WN, 5:CN)\n");
691
5e176d54 692 for (i = 0; i < total_segs; i++) {
90aa6dc9
CY
693 struct seg_entry *se = get_seg_entry(sbi, i);
694
695 if ((i % 10) == 0)
01a5ad82 696 seq_printf(seq, "%-10d", i);
90aa6dc9
CY
697 seq_printf(seq, "%d|%-3u", se->type,
698 get_valid_blocks(sbi, i, 1));
46c04366
GZ
699 if ((i % 10) == 9 || i == (total_segs - 1))
700 seq_putc(seq, '\n');
5e176d54 701 else
46c04366 702 seq_putc(seq, ' ');
5e176d54 703 }
46c04366 704
5e176d54
JK
705 return 0;
706}
707
708static int segment_info_open_fs(struct inode *inode, struct file *file)
709{
710 return single_open(file, segment_info_seq_show, PDE_DATA(inode));
711}
712
713static const struct file_operations f2fs_seq_segment_info_fops = {
714 .owner = THIS_MODULE,
715 .open = segment_info_open_fs,
716 .read = seq_read,
717 .llseek = seq_lseek,
718 .release = single_release,
719};
720
498c5e9f
YH
721static void default_options(struct f2fs_sb_info *sbi)
722{
723 /* init some FS parameters */
724 sbi->active_logs = NR_CURSEG_TYPE;
725
726 set_opt(sbi, BG_GC);
727 set_opt(sbi, INLINE_DATA);
3e72f721 728 set_opt(sbi, EXTENT_CACHE);
498c5e9f
YH
729
730#ifdef CONFIG_F2FS_FS_XATTR
731 set_opt(sbi, XATTR_USER);
732#endif
733#ifdef CONFIG_F2FS_FS_POSIX_ACL
734 set_opt(sbi, POSIX_ACL);
735#endif
736}
737
696c018c
NJ
738static int f2fs_remount(struct super_block *sb, int *flags, char *data)
739{
740 struct f2fs_sb_info *sbi = F2FS_SB(sb);
741 struct f2fs_mount_info org_mount_opt;
742 int err, active_logs;
876dc59e
GZ
743 bool need_restart_gc = false;
744 bool need_stop_gc = false;
9cd81ce3 745 bool no_extent_cache = !test_opt(sbi, EXTENT_CACHE);
696c018c 746
02b9984d
TT
747 sync_filesystem(sb);
748
696c018c
NJ
749 /*
750 * Save the old mount options in case we
751 * need to restore them.
752 */
753 org_mount_opt = sbi->mount_opt;
754 active_logs = sbi->active_logs;
755
26666c8a 756 sbi->mount_opt.opt = 0;
498c5e9f 757 default_options(sbi);
26666c8a 758
696c018c
NJ
759 /* parse mount options */
760 err = parse_options(sb, data);
761 if (err)
762 goto restore_opts;
763
764 /*
765 * Previous and new state of filesystem is RO,
876dc59e 766 * so skip checking GC and FLUSH_MERGE conditions.
696c018c 767 */
6b2920a5 768 if (f2fs_readonly(sb) && (*flags & MS_RDONLY))
696c018c
NJ
769 goto skip;
770
9cd81ce3
CY
771 /* disallow enable/disable extent_cache dynamically */
772 if (no_extent_cache == !!test_opt(sbi, EXTENT_CACHE)) {
773 err = -EINVAL;
774 f2fs_msg(sbi->sb, KERN_WARNING,
775 "switch extent_cache option is not allowed");
776 goto restore_opts;
777 }
778
696c018c
NJ
779 /*
780 * We stop the GC thread if FS is mounted as RO
781 * or if background_gc = off is passed in mount
782 * option. Also sync the filesystem.
783 */
784 if ((*flags & MS_RDONLY) || !test_opt(sbi, BG_GC)) {
785 if (sbi->gc_thread) {
786 stop_gc_thread(sbi);
787 f2fs_sync_fs(sb, 1);
876dc59e 788 need_restart_gc = true;
696c018c 789 }
aba291b3 790 } else if (!sbi->gc_thread) {
696c018c
NJ
791 err = start_gc_thread(sbi);
792 if (err)
793 goto restore_opts;
876dc59e
GZ
794 need_stop_gc = true;
795 }
796
797 /*
798 * We stop issue flush thread if FS is mounted as RO
799 * or if flush_merge is not passed in mount option.
800 */
801 if ((*flags & MS_RDONLY) || !test_opt(sbi, FLUSH_MERGE)) {
2163d198 802 destroy_flush_cmd_control(sbi);
aba291b3 803 } else if (!SM_I(sbi)->cmd_control_info) {
2163d198
GZ
804 err = create_flush_cmd_control(sbi);
805 if (err)
a688b9d9 806 goto restore_gc;
696c018c
NJ
807 }
808skip:
809 /* Update the POSIXACL Flag */
810 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
811 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
812 return 0;
876dc59e
GZ
813restore_gc:
814 if (need_restart_gc) {
815 if (start_gc_thread(sbi))
816 f2fs_msg(sbi->sb, KERN_WARNING,
e1c42045 817 "background gc thread has stopped");
876dc59e
GZ
818 } else if (need_stop_gc) {
819 stop_gc_thread(sbi);
820 }
696c018c
NJ
821restore_opts:
822 sbi->mount_opt = org_mount_opt;
823 sbi->active_logs = active_logs;
824 return err;
825}
826
aff063e2
JK
827static struct super_operations f2fs_sops = {
828 .alloc_inode = f2fs_alloc_inode,
531ad7d5 829 .drop_inode = f2fs_drop_inode,
aff063e2
JK
830 .destroy_inode = f2fs_destroy_inode,
831 .write_inode = f2fs_write_inode,
b3783873 832 .dirty_inode = f2fs_dirty_inode,
aff063e2
JK
833 .show_options = f2fs_show_options,
834 .evict_inode = f2fs_evict_inode,
835 .put_super = f2fs_put_super,
836 .sync_fs = f2fs_sync_fs,
d6212a5f
CL
837 .freeze_fs = f2fs_freeze,
838 .unfreeze_fs = f2fs_unfreeze,
aff063e2 839 .statfs = f2fs_statfs,
696c018c 840 .remount_fs = f2fs_remount,
aff063e2
JK
841};
842
843static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
844 u64 ino, u32 generation)
845{
846 struct f2fs_sb_info *sbi = F2FS_SB(sb);
847 struct inode *inode;
848
d6b7d4b3 849 if (check_nid_range(sbi, ino))
910bb12d 850 return ERR_PTR(-ESTALE);
aff063e2
JK
851
852 /*
853 * f2fs_iget isn't quite right if the inode is currently unallocated!
854 * However f2fs_iget currently does appropriate checks to handle stale
855 * inodes so everything is OK.
856 */
857 inode = f2fs_iget(sb, ino);
858 if (IS_ERR(inode))
859 return ERR_CAST(inode);
6bacf52f 860 if (unlikely(generation && inode->i_generation != generation)) {
aff063e2
JK
861 /* we didn't find the right inode.. */
862 iput(inode);
863 return ERR_PTR(-ESTALE);
864 }
865 return inode;
866}
867
868static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
869 int fh_len, int fh_type)
870{
871 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
872 f2fs_nfs_get_inode);
873}
874
875static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
876 int fh_len, int fh_type)
877{
878 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
879 f2fs_nfs_get_inode);
880}
881
882static const struct export_operations f2fs_export_ops = {
883 .fh_to_dentry = f2fs_fh_to_dentry,
884 .fh_to_parent = f2fs_fh_to_parent,
885 .get_parent = f2fs_get_parent,
886};
887
aff063e2
JK
888static loff_t max_file_size(unsigned bits)
889{
de93653f 890 loff_t result = (DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS);
aff063e2
JK
891 loff_t leaf_count = ADDRS_PER_BLOCK;
892
893 /* two direct node blocks */
894 result += (leaf_count * 2);
895
896 /* two indirect node blocks */
897 leaf_count *= NIDS_PER_BLOCK;
898 result += (leaf_count * 2);
899
900 /* one double indirect node block */
901 leaf_count *= NIDS_PER_BLOCK;
902 result += leaf_count;
903
904 result <<= bits;
905 return result;
906}
907
a07ef784
NJ
908static int sanity_check_raw_super(struct super_block *sb,
909 struct f2fs_super_block *raw_super)
aff063e2
JK
910{
911 unsigned int blocksize;
912
a07ef784
NJ
913 if (F2FS_SUPER_MAGIC != le32_to_cpu(raw_super->magic)) {
914 f2fs_msg(sb, KERN_INFO,
915 "Magic Mismatch, valid(0x%x) - read(0x%x)",
916 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
aff063e2 917 return 1;
a07ef784 918 }
aff063e2 919
5c9b4692 920 /* Currently, support only 4KB page cache size */
921 if (F2FS_BLKSIZE != PAGE_CACHE_SIZE) {
922 f2fs_msg(sb, KERN_INFO,
14d7e9de 923 "Invalid page_cache_size (%lu), supports only 4KB\n",
5c9b4692 924 PAGE_CACHE_SIZE);
925 return 1;
926 }
927
aff063e2
JK
928 /* Currently, support only 4KB block size */
929 blocksize = 1 << le32_to_cpu(raw_super->log_blocksize);
5c9b4692 930 if (blocksize != F2FS_BLKSIZE) {
a07ef784
NJ
931 f2fs_msg(sb, KERN_INFO,
932 "Invalid blocksize (%u), supports only 4KB\n",
933 blocksize);
aff063e2 934 return 1;
a07ef784 935 }
5c9b4692 936
55cf9cb6
CY
937 /* Currently, support 512/1024/2048/4096 bytes sector size */
938 if (le32_to_cpu(raw_super->log_sectorsize) >
939 F2FS_MAX_LOG_SECTOR_SIZE ||
940 le32_to_cpu(raw_super->log_sectorsize) <
941 F2FS_MIN_LOG_SECTOR_SIZE) {
942 f2fs_msg(sb, KERN_INFO, "Invalid log sectorsize (%u)",
943 le32_to_cpu(raw_super->log_sectorsize));
aff063e2 944 return 1;
a07ef784 945 }
55cf9cb6
CY
946 if (le32_to_cpu(raw_super->log_sectors_per_block) +
947 le32_to_cpu(raw_super->log_sectorsize) !=
948 F2FS_MAX_LOG_SECTOR_SIZE) {
949 f2fs_msg(sb, KERN_INFO,
950 "Invalid log sectors per block(%u) log sectorsize(%u)",
951 le32_to_cpu(raw_super->log_sectors_per_block),
952 le32_to_cpu(raw_super->log_sectorsize));
aff063e2 953 return 1;
a07ef784 954 }
aff063e2
JK
955 return 0;
956}
957
577e3495 958static int sanity_check_ckpt(struct f2fs_sb_info *sbi)
aff063e2
JK
959{
960 unsigned int total, fsmeta;
577e3495
JK
961 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
962 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
aff063e2
JK
963
964 total = le32_to_cpu(raw_super->segment_count);
965 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
966 fsmeta += le32_to_cpu(raw_super->segment_count_sit);
967 fsmeta += le32_to_cpu(raw_super->segment_count_nat);
968 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
969 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
970
6bacf52f 971 if (unlikely(fsmeta >= total))
aff063e2 972 return 1;
577e3495 973
1e968fdf 974 if (unlikely(f2fs_cp_error(sbi))) {
577e3495
JK
975 f2fs_msg(sbi->sb, KERN_ERR, "A bug case: need to run fsck");
976 return 1;
977 }
aff063e2
JK
978 return 0;
979}
980
981static void init_sb_info(struct f2fs_sb_info *sbi)
982{
983 struct f2fs_super_block *raw_super = sbi->raw_super;
984 int i;
985
986 sbi->log_sectors_per_block =
987 le32_to_cpu(raw_super->log_sectors_per_block);
988 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
989 sbi->blocksize = 1 << sbi->log_blocksize;
990 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
991 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
992 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
993 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
994 sbi->total_sections = le32_to_cpu(raw_super->section_count);
995 sbi->total_node_count =
996 (le32_to_cpu(raw_super->segment_count_nat) / 2)
997 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
998 sbi->root_ino_num = le32_to_cpu(raw_super->root_ino);
999 sbi->node_ino_num = le32_to_cpu(raw_super->node_ino);
1000 sbi->meta_ino_num = le32_to_cpu(raw_super->meta_ino);
5ec4e49f 1001 sbi->cur_victim_sec = NULL_SECNO;
b1c57c1c 1002 sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;
aff063e2
JK
1003
1004 for (i = 0; i < NR_COUNT_TYPE; i++)
1005 atomic_set(&sbi->nr_pages[i], 0);
ab9fa662
JK
1006
1007 sbi->dir_level = DEF_DIR_LEVEL;
caf0047e 1008 clear_sbi_flag(sbi, SBI_NEED_FSCK);
2658e50d
JK
1009
1010 INIT_LIST_HEAD(&sbi->s_list);
1011 mutex_init(&sbi->umount_mutex);
aff063e2
JK
1012}
1013
9076a75f
GZ
1014/*
1015 * Read f2fs raw super block.
1016 * Because we have two copies of super block, so read the first one at first,
1017 * if the first one is invalid, move to read the second one.
1018 */
1019static int read_raw_super_block(struct super_block *sb,
1020 struct f2fs_super_block **raw_super,
da554e48 1021 struct buffer_head **raw_super_buf,
1022 int *recovery)
14d7e9de 1023{
9076a75f 1024 int block = 0;
da554e48 1025 struct buffer_head *buffer;
1026 struct f2fs_super_block *super;
1027 int err = 0;
14d7e9de 1028
9076a75f 1029retry:
da554e48 1030 buffer = sb_bread(sb, block);
1031 if (!buffer) {
1032 *recovery = 1;
9076a75f
GZ
1033 f2fs_msg(sb, KERN_ERR, "Unable to read %dth superblock",
1034 block + 1);
1035 if (block == 0) {
1036 block++;
1037 goto retry;
1038 } else {
da554e48 1039 err = -EIO;
1040 goto out;
9076a75f 1041 }
14d7e9de 1042 }
1043
da554e48 1044 super = (struct f2fs_super_block *)
1045 ((char *)(buffer)->b_data + F2FS_SUPER_OFFSET);
14d7e9de 1046
1047 /* sanity checking of raw super */
da554e48 1048 if (sanity_check_raw_super(sb, super)) {
1049 brelse(buffer);
1050 *recovery = 1;
6c311ec6
CF
1051 f2fs_msg(sb, KERN_ERR,
1052 "Can't find valid F2FS filesystem in %dth superblock",
1053 block + 1);
6bacf52f 1054 if (block == 0) {
9076a75f
GZ
1055 block++;
1056 goto retry;
1057 } else {
da554e48 1058 err = -EINVAL;
1059 goto out;
9076a75f
GZ
1060 }
1061 }
14d7e9de 1062
da554e48 1063 if (!*raw_super) {
1064 *raw_super_buf = buffer;
1065 *raw_super = super;
1066 } else {
1067 /* already have a valid superblock */
1068 brelse(buffer);
1069 }
1070
1071 /* check the validity of the second superblock */
1072 if (block == 0) {
1073 block++;
1074 goto retry;
1075 }
1076
1077out:
1078 /* No valid superblock */
1079 if (!*raw_super)
1080 return err;
1081
9076a75f 1082 return 0;
14d7e9de 1083}
1084
c5bda1c8 1085int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover)
26d815ad
JK
1086{
1087 struct buffer_head *sbh = sbi->raw_super_buf;
1088 sector_t block = sbh->b_blocknr;
1089 int err;
1090
1091 /* write back-up superblock first */
1092 sbh->b_blocknr = block ? 0 : 1;
1093 mark_buffer_dirty(sbh);
1094 err = sync_dirty_buffer(sbh);
1095
1096 sbh->b_blocknr = block;
c5bda1c8
CY
1097
1098 /* if we are in recovery path, skip writing valid superblock */
1099 if (recover || err)
26d815ad
JK
1100 goto out;
1101
1102 /* write current valid superblock */
1103 mark_buffer_dirty(sbh);
1104 err = sync_dirty_buffer(sbh);
1105out:
1106 clear_buffer_write_io_error(sbh);
1107 set_buffer_uptodate(sbh);
1108 return err;
1109}
1110
aff063e2
JK
1111static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
1112{
1113 struct f2fs_sb_info *sbi;
da554e48 1114 struct f2fs_super_block *raw_super;
aff063e2
JK
1115 struct buffer_head *raw_super_buf;
1116 struct inode *root;
da554e48 1117 long err;
2adc3505 1118 bool retry = true, need_fsck = false;
dabc4a5c 1119 char *options = NULL;
da554e48 1120 int recovery, i;
aff063e2 1121
ed2e621a 1122try_onemore:
da554e48 1123 err = -EINVAL;
1124 raw_super = NULL;
1125 raw_super_buf = NULL;
1126 recovery = 0;
1127
aff063e2
JK
1128 /* allocate memory for f2fs-specific super block info */
1129 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
1130 if (!sbi)
1131 return -ENOMEM;
1132
ff9234ad 1133 /* set a block size */
6bacf52f 1134 if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
a07ef784 1135 f2fs_msg(sb, KERN_ERR, "unable to set blocksize");
aff063e2 1136 goto free_sbi;
a07ef784 1137 }
aff063e2 1138
da554e48 1139 err = read_raw_super_block(sb, &raw_super, &raw_super_buf, &recovery);
9076a75f
GZ
1140 if (err)
1141 goto free_sbi;
1142
5fb08372 1143 sb->s_fs_info = sbi;
498c5e9f 1144 default_options(sbi);
aff063e2 1145 /* parse mount options */
dabc4a5c
JK
1146 options = kstrdup((const char *)data, GFP_KERNEL);
1147 if (data && !options) {
1148 err = -ENOMEM;
aff063e2 1149 goto free_sb_buf;
dabc4a5c
JK
1150 }
1151
1152 err = parse_options(sb, options);
1153 if (err)
1154 goto free_options;
aff063e2 1155
25ca923b 1156 sb->s_maxbytes = max_file_size(le32_to_cpu(raw_super->log_blocksize));
aff063e2
JK
1157 sb->s_max_links = F2FS_LINK_MAX;
1158 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
1159
1160 sb->s_op = &f2fs_sops;
1161 sb->s_xattr = f2fs_xattr_handlers;
1162 sb->s_export_op = &f2fs_export_ops;
1163 sb->s_magic = F2FS_SUPER_MAGIC;
aff063e2
JK
1164 sb->s_time_gran = 1;
1165 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
1166 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
1167 memcpy(sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
1168
1169 /* init f2fs-specific super block info */
1170 sbi->sb = sb;
1171 sbi->raw_super = raw_super;
1172 sbi->raw_super_buf = raw_super_buf;
1173 mutex_init(&sbi->gc_mutex);
5463e7c1 1174 mutex_init(&sbi->writepages);
aff063e2 1175 mutex_init(&sbi->cp_mutex);
b3582c68 1176 init_rwsem(&sbi->node_write);
315df839
JK
1177
1178 /* disallow all the data/node/meta page writes */
1179 set_sbi_flag(sbi, SBI_POR_DOING);
aff063e2 1180 spin_lock_init(&sbi->stat_lock);
971767ca 1181
df0f8dc0 1182 init_rwsem(&sbi->read_io.io_rwsem);
458e6197
JK
1183 sbi->read_io.sbi = sbi;
1184 sbi->read_io.bio = NULL;
1185 for (i = 0; i < NR_PAGE_TYPE; i++) {
df0f8dc0 1186 init_rwsem(&sbi->write_io[i].io_rwsem);
458e6197
JK
1187 sbi->write_io[i].sbi = sbi;
1188 sbi->write_io[i].bio = NULL;
1189 }
971767ca 1190
e479556b 1191 init_rwsem(&sbi->cp_rwsem);
fb51b5ef 1192 init_waitqueue_head(&sbi->cp_wait);
aff063e2
JK
1193 init_sb_info(sbi);
1194
1195 /* get an inode for meta space */
1196 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
1197 if (IS_ERR(sbi->meta_inode)) {
a07ef784 1198 f2fs_msg(sb, KERN_ERR, "Failed to read F2FS meta data inode");
aff063e2 1199 err = PTR_ERR(sbi->meta_inode);
dabc4a5c 1200 goto free_options;
aff063e2
JK
1201 }
1202
1203 err = get_valid_checkpoint(sbi);
a07ef784
NJ
1204 if (err) {
1205 f2fs_msg(sb, KERN_ERR, "Failed to get valid F2FS checkpoint");
aff063e2 1206 goto free_meta_inode;
a07ef784 1207 }
aff063e2
JK
1208
1209 /* sanity checking of checkpoint */
1210 err = -EINVAL;
577e3495 1211 if (sanity_check_ckpt(sbi)) {
a07ef784 1212 f2fs_msg(sb, KERN_ERR, "Invalid F2FS checkpoint");
aff063e2 1213 goto free_cp;
a07ef784 1214 }
aff063e2
JK
1215
1216 sbi->total_valid_node_count =
1217 le32_to_cpu(sbi->ckpt->valid_node_count);
1218 sbi->total_valid_inode_count =
1219 le32_to_cpu(sbi->ckpt->valid_inode_count);
1220 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
1221 sbi->total_valid_block_count =
1222 le64_to_cpu(sbi->ckpt->valid_block_count);
1223 sbi->last_valid_block_count = sbi->total_valid_block_count;
1224 sbi->alloc_valid_block_count = 0;
1225 INIT_LIST_HEAD(&sbi->dir_inode_list);
1226 spin_lock_init(&sbi->dir_inode_lock);
1227
1dcc336b
CY
1228 init_extent_cache_info(sbi);
1229
6451e041 1230 init_ino_entry_info(sbi);
aff063e2
JK
1231
1232 /* setup f2fs internal modules */
1233 err = build_segment_manager(sbi);
a07ef784
NJ
1234 if (err) {
1235 f2fs_msg(sb, KERN_ERR,
1236 "Failed to initialize F2FS segment manager");
aff063e2 1237 goto free_sm;
a07ef784 1238 }
aff063e2 1239 err = build_node_manager(sbi);
a07ef784
NJ
1240 if (err) {
1241 f2fs_msg(sb, KERN_ERR,
1242 "Failed to initialize F2FS node manager");
aff063e2 1243 goto free_nm;
a07ef784 1244 }
aff063e2
JK
1245
1246 build_gc_manager(sbi);
1247
1248 /* get an inode for node space */
1249 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
1250 if (IS_ERR(sbi->node_inode)) {
a07ef784 1251 f2fs_msg(sb, KERN_ERR, "Failed to read node inode");
aff063e2
JK
1252 err = PTR_ERR(sbi->node_inode);
1253 goto free_nm;
1254 }
1255
2658e50d
JK
1256 f2fs_join_shrinker(sbi);
1257
aff063e2 1258 /* if there are nt orphan nodes free them */
8c14bfad
CY
1259 err = recover_orphan_inodes(sbi);
1260 if (err)
1261 goto free_node_inode;
aff063e2
JK
1262
1263 /* read root inode and dentry */
1264 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
1265 if (IS_ERR(root)) {
a07ef784 1266 f2fs_msg(sb, KERN_ERR, "Failed to read root inode");
aff063e2
JK
1267 err = PTR_ERR(root);
1268 goto free_node_inode;
1269 }
8f99a946 1270 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
9d847950 1271 iput(root);
8f99a946 1272 err = -EINVAL;
9d847950 1273 goto free_node_inode;
8f99a946 1274 }
aff063e2
JK
1275
1276 sb->s_root = d_make_root(root); /* allocate root dentry */
1277 if (!sb->s_root) {
1278 err = -ENOMEM;
1279 goto free_root_inode;
1280 }
1281
aff063e2
JK
1282 err = f2fs_build_stats(sbi);
1283 if (err)
6437d1b0 1284 goto free_root_inode;
aff063e2 1285
5e176d54
JK
1286 if (f2fs_proc_root)
1287 sbi->s_proc = proc_mkdir(sb->s_id, f2fs_proc_root);
1288
1289 if (sbi->s_proc)
1290 proc_create_data("segment_info", S_IRUGO, sbi->s_proc,
1291 &f2fs_seq_segment_info_fops, sb);
1292
b59d0bae
NJ
1293 sbi->s_kobj.kset = f2fs_kset;
1294 init_completion(&sbi->s_kobj_unregister);
1295 err = kobject_init_and_add(&sbi->s_kobj, &f2fs_ktype, NULL,
1296 "%s", sb->s_id);
1297 if (err)
6437d1b0 1298 goto free_proc;
b59d0bae 1299
6437d1b0
JK
1300 /* recover fsynced data */
1301 if (!test_opt(sbi, DISABLE_ROLL_FORWARD)) {
081d78c2
JK
1302 /*
1303 * mount should be failed, when device has readonly mode, and
1304 * previous checkpoint was not done by clean system shutdown.
1305 */
1306 if (bdev_read_only(sb->s_bdev) &&
1307 !is_set_ckpt_flags(sbi->ckpt, CP_UMOUNT_FLAG)) {
1308 err = -EROFS;
1309 goto free_kobj;
1310 }
2adc3505
CY
1311
1312 if (need_fsck)
1313 set_sbi_flag(sbi, SBI_NEED_FSCK);
1314
6437d1b0 1315 err = recover_fsync_data(sbi);
ed2e621a 1316 if (err) {
2adc3505 1317 need_fsck = true;
6437d1b0
JK
1318 f2fs_msg(sb, KERN_ERR,
1319 "Cannot recover all fsync data errno=%ld", err);
ed2e621a
JK
1320 goto free_kobj;
1321 }
6437d1b0 1322 }
315df839
JK
1323 /* recover_fsync_data() cleared this already */
1324 clear_sbi_flag(sbi, SBI_POR_DOING);
b59d0bae 1325
6437d1b0
JK
1326 /*
1327 * If filesystem is not mounted as read-only then
1328 * do start the gc_thread.
1329 */
6c029932 1330 if (test_opt(sbi, BG_GC) && !f2fs_readonly(sb)) {
6437d1b0
JK
1331 /* After POR, we can run background GC thread.*/
1332 err = start_gc_thread(sbi);
1333 if (err)
1334 goto free_kobj;
1335 }
dabc4a5c 1336 kfree(options);
da554e48 1337
1338 /* recover broken superblock */
1339 if (recovery && !f2fs_readonly(sb) && !bdev_read_only(sb->s_bdev)) {
1340 f2fs_msg(sb, KERN_INFO, "Recover invalid superblock");
c5bda1c8 1341 f2fs_commit_super(sbi, true);
da554e48 1342 }
1343
aff063e2 1344 return 0;
6437d1b0
JK
1345
1346free_kobj:
1347 kobject_del(&sbi->s_kobj);
1348free_proc:
1d15bd20
CY
1349 if (sbi->s_proc) {
1350 remove_proc_entry("segment_info", sbi->s_proc);
1351 remove_proc_entry(sb->s_id, f2fs_proc_root);
1352 }
1353 f2fs_destroy_stats(sbi);
aff063e2
JK
1354free_root_inode:
1355 dput(sb->s_root);
1356 sb->s_root = NULL;
1357free_node_inode:
2658e50d
JK
1358 mutex_lock(&sbi->umount_mutex);
1359 f2fs_leave_shrinker(sbi);
aff063e2 1360 iput(sbi->node_inode);
2658e50d 1361 mutex_unlock(&sbi->umount_mutex);
aff063e2
JK
1362free_nm:
1363 destroy_node_manager(sbi);
1364free_sm:
1365 destroy_segment_manager(sbi);
1366free_cp:
1367 kfree(sbi->ckpt);
1368free_meta_inode:
1369 make_bad_inode(sbi->meta_inode);
1370 iput(sbi->meta_inode);
dabc4a5c
JK
1371free_options:
1372 kfree(options);
aff063e2
JK
1373free_sb_buf:
1374 brelse(raw_super_buf);
1375free_sbi:
1376 kfree(sbi);
ed2e621a
JK
1377
1378 /* give only one another chance */
1379 if (retry) {
9df47ba7 1380 retry = false;
ed2e621a
JK
1381 shrink_dcache_sb(sb);
1382 goto try_onemore;
1383 }
aff063e2
JK
1384 return err;
1385}
1386
1387static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
1388 const char *dev_name, void *data)
1389{
1390 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
1391}
1392
30a5537f
JK
1393static void kill_f2fs_super(struct super_block *sb)
1394{
1395 if (sb->s_root)
caf0047e 1396 set_sbi_flag(F2FS_SB(sb), SBI_IS_CLOSE);
30a5537f
JK
1397 kill_block_super(sb);
1398}
1399
aff063e2
JK
1400static struct file_system_type f2fs_fs_type = {
1401 .owner = THIS_MODULE,
1402 .name = "f2fs",
1403 .mount = f2fs_mount,
30a5537f 1404 .kill_sb = kill_f2fs_super,
aff063e2
JK
1405 .fs_flags = FS_REQUIRES_DEV,
1406};
7f78e035 1407MODULE_ALIAS_FS("f2fs");
aff063e2 1408
6e6093a8 1409static int __init init_inodecache(void)
aff063e2
JK
1410{
1411 f2fs_inode_cachep = f2fs_kmem_cache_create("f2fs_inode_cache",
e8512d2e 1412 sizeof(struct f2fs_inode_info));
6bacf52f 1413 if (!f2fs_inode_cachep)
aff063e2
JK
1414 return -ENOMEM;
1415 return 0;
1416}
1417
1418static void destroy_inodecache(void)
1419{
1420 /*
1421 * Make sure all delayed rcu free inodes are flushed before we
1422 * destroy cache.
1423 */
1424 rcu_barrier();
1425 kmem_cache_destroy(f2fs_inode_cachep);
1426}
1427
1428static int __init init_f2fs_fs(void)
1429{
1430 int err;
1431
c0508650
JK
1432 f2fs_build_trace_ios();
1433
aff063e2
JK
1434 err = init_inodecache();
1435 if (err)
1436 goto fail;
1437 err = create_node_manager_caches();
1438 if (err)
9890ff3f 1439 goto free_inodecache;
7fd9e544 1440 err = create_segment_manager_caches();
aff063e2 1441 if (err)
9890ff3f 1442 goto free_node_manager_caches;
aff063e2
JK
1443 err = create_checkpoint_caches();
1444 if (err)
06292073 1445 goto free_segment_manager_caches;
1dcc336b
CY
1446 err = create_extent_cache();
1447 if (err)
1448 goto free_checkpoint_caches;
b59d0bae 1449 f2fs_kset = kset_create_and_add("f2fs", NULL, fs_kobj);
6e6b978c
WY
1450 if (!f2fs_kset) {
1451 err = -ENOMEM;
1dcc336b 1452 goto free_extent_cache;
6e6b978c 1453 }
cfc4d971 1454 err = f2fs_init_crypto();
4589d25d 1455 if (err)
9890ff3f 1456 goto free_kset;
2658e50d
JK
1457
1458 err = register_shrinker(&f2fs_shrinker_info);
cfc4d971
JK
1459 if (err)
1460 goto free_crypto;
2658e50d
JK
1461
1462 err = register_filesystem(&f2fs_fs_type);
1463 if (err)
1464 goto free_shrinker;
4589d25d 1465 f2fs_create_root_stats();
5e176d54 1466 f2fs_proc_root = proc_mkdir("fs/f2fs", NULL);
9890ff3f
ZH
1467 return 0;
1468
2658e50d
JK
1469free_shrinker:
1470 unregister_shrinker(&f2fs_shrinker_info);
cfc4d971
JK
1471free_crypto:
1472 f2fs_exit_crypto();
9890ff3f
ZH
1473free_kset:
1474 kset_unregister(f2fs_kset);
1dcc336b
CY
1475free_extent_cache:
1476 destroy_extent_cache();
9890ff3f
ZH
1477free_checkpoint_caches:
1478 destroy_checkpoint_caches();
7fd9e544
JK
1479free_segment_manager_caches:
1480 destroy_segment_manager_caches();
9890ff3f
ZH
1481free_node_manager_caches:
1482 destroy_node_manager_caches();
1483free_inodecache:
1484 destroy_inodecache();
aff063e2
JK
1485fail:
1486 return err;
1487}
1488
1489static void __exit exit_f2fs_fs(void)
1490{
5e176d54 1491 remove_proc_entry("fs/f2fs", NULL);
4589d25d 1492 f2fs_destroy_root_stats();
2658e50d 1493 unregister_shrinker(&f2fs_shrinker_info);
aff063e2 1494 unregister_filesystem(&f2fs_fs_type);
cfc4d971 1495 f2fs_exit_crypto();
fdf6c8be 1496 destroy_extent_cache();
aff063e2 1497 destroy_checkpoint_caches();
5dcd8a71 1498 destroy_segment_manager_caches();
aff063e2
JK
1499 destroy_node_manager_caches();
1500 destroy_inodecache();
b59d0bae 1501 kset_unregister(f2fs_kset);
351f4fba 1502 f2fs_destroy_trace_ios();
aff063e2
JK
1503}
1504
1505module_init(init_f2fs_fs)
1506module_exit(exit_f2fs_fs)
1507
1508MODULE_AUTHOR("Samsung Electronics's Praesto Team");
1509MODULE_DESCRIPTION("Flash Friendly File System");
1510MODULE_LICENSE("GPL");