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