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