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