Merge patch series "RISC-V: Align the shadow stack"
[linux-block.git] / fs / f2fs / super.c
CommitLineData
7c1a000d 1// SPDX-License-Identifier: GPL-2.0
0a8165d7 2/*
aff063e2
JK
3 * fs/f2fs/super.c
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
aff063e2
JK
7 */
8#include <linux/module.h>
9#include <linux/init.h>
10#include <linux/fs.h>
c5bca38d 11#include <linux/fs_context.h>
4034247a 12#include <linux/sched/mm.h>
aff063e2 13#include <linux/statfs.h>
aff063e2 14#include <linux/buffer_head.h>
aff063e2
JK
15#include <linux/kthread.h>
16#include <linux/parser.h>
17#include <linux/mount.h>
18#include <linux/seq_file.h>
5e176d54 19#include <linux/proc_fs.h>
aff063e2
JK
20#include <linux/random.h>
21#include <linux/exportfs.h>
d3ee456d 22#include <linux/blkdev.h>
0abd675e 23#include <linux/quotaops.h>
aff063e2 24#include <linux/f2fs_fs.h>
b59d0bae 25#include <linux/sysfs.h>
4b2414d0 26#include <linux/quota.h>
5aba5430 27#include <linux/unicode.h>
c6a564ff 28#include <linux/part_stat.h>
3fde13f8
CY
29#include <linux/zstd.h>
30#include <linux/lz4.h>
aff063e2
JK
31
32#include "f2fs.h"
33#include "node.h"
5ec4e49f 34#include "segment.h"
aff063e2 35#include "xattr.h"
b59d0bae 36#include "gc.h"
52118743 37#include "iostat.h"
aff063e2 38
a2a4a7e4
NJ
39#define CREATE_TRACE_POINTS
40#include <trace/events/f2fs.h>
41
aff063e2
JK
42static struct kmem_cache *f2fs_inode_cachep;
43
73faec4d 44#ifdef CONFIG_F2FS_FAULT_INJECTION
2c63fead 45
19880e6e 46const char *f2fs_fault_name[FAULT_MAX] = {
2c63fead 47 [FAULT_KMALLOC] = "kmalloc",
628b3d14 48 [FAULT_KVMALLOC] = "kvmalloc",
c41f3cc3 49 [FAULT_PAGE_ALLOC] = "page alloc",
01eccef7 50 [FAULT_PAGE_GET] = "page get",
cb78942b
JK
51 [FAULT_ALLOC_NID] = "alloc nid",
52 [FAULT_ORPHAN] = "orphan",
53 [FAULT_BLOCK] = "no more block",
54 [FAULT_DIR_DEPTH] = "too big dir depth",
53aa6bbf 55 [FAULT_EVICT_INODE] = "evict_inode fail",
14b44d23 56 [FAULT_TRUNCATE] = "truncate fail",
6f5c2ed0 57 [FAULT_READ_IO] = "read IO error",
0f348028 58 [FAULT_CHECKPOINT] = "checkpoint error",
b83dcfe6 59 [FAULT_DISCARD] = "discard error",
6f5c2ed0 60 [FAULT_WRITE_IO] = "write IO error",
32410577 61 [FAULT_SLAB_ALLOC] = "slab alloc",
10a26878 62 [FAULT_DQUOT_INIT] = "dquot initialize",
3e020389 63 [FAULT_LOCK_OP] = "lock_op",
2c63fead 64};
08796897 65
d494500a
CY
66void f2fs_build_fault_attr(struct f2fs_sb_info *sbi, unsigned int rate,
67 unsigned int type)
08796897 68{
63189b78 69 struct f2fs_fault_info *ffi = &F2FS_OPTION(sbi).fault_info;
1ecc0c5c 70
08796897 71 if (rate) {
1ecc0c5c
CY
72 atomic_set(&ffi->inject_ops, 0);
73 ffi->inject_rate = rate;
08796897 74 }
d494500a
CY
75
76 if (type)
77 ffi->inject_type = type;
78
79 if (!rate && !type)
80 memset(ffi, 0, sizeof(struct f2fs_fault_info));
08796897 81}
73faec4d
JK
82#endif
83
2658e50d
JK
84/* f2fs-wide shrinker description */
85static struct shrinker f2fs_shrinker_info = {
86 .scan_objects = f2fs_shrink_scan,
87 .count_objects = f2fs_shrink_count,
88 .seeks = DEFAULT_SEEKS,
89};
90
aff063e2 91enum {
696c018c 92 Opt_gc_background,
aff063e2 93 Opt_disable_roll_forward,
2d834bf9 94 Opt_norecovery,
aff063e2 95 Opt_discard,
64058be9 96 Opt_nodiscard,
aff063e2 97 Opt_noheap,
7a20b8a6 98 Opt_heap,
4058c511 99 Opt_user_xattr,
aff063e2 100 Opt_nouser_xattr,
4058c511 101 Opt_acl,
aff063e2
JK
102 Opt_noacl,
103 Opt_active_logs,
104 Opt_disable_ext_identify,
444c580f 105 Opt_inline_xattr,
23cf7212 106 Opt_noinline_xattr,
6afc662e 107 Opt_inline_xattr_size,
8274de77 108 Opt_inline_data,
5efd3c6f 109 Opt_inline_dentry,
97c1794a 110 Opt_noinline_dentry,
6b4afdd7 111 Opt_flush_merge,
69e9e427 112 Opt_noflush_merge,
0f7b2abd 113 Opt_nobarrier,
d5053a34 114 Opt_fastboot,
89672159 115 Opt_extent_cache,
7daaea25 116 Opt_noextent_cache,
75342797 117 Opt_noinline_data,
343f40f0 118 Opt_data_flush,
7e65be49 119 Opt_reserve_root,
7c2e5963
JK
120 Opt_resgid,
121 Opt_resuid,
36abef4e 122 Opt_mode,
ec91538d 123 Opt_io_size_bits,
73faec4d 124 Opt_fault_injection,
d494500a 125 Opt_fault_type,
6d94c74a
JK
126 Opt_lazytime,
127 Opt_nolazytime,
4b2414d0
CY
128 Opt_quota,
129 Opt_noquota,
0abd675e
CY
130 Opt_usrquota,
131 Opt_grpquota,
5c57132e 132 Opt_prjquota,
4b2414d0
CY
133 Opt_usrjquota,
134 Opt_grpjquota,
135 Opt_prjjquota,
136 Opt_offusrjquota,
137 Opt_offgrpjquota,
138 Opt_offprjjquota,
139 Opt_jqfmt_vfsold,
140 Opt_jqfmt_vfsv0,
141 Opt_jqfmt_vfsv1,
07939627 142 Opt_alloc,
93cf93f1 143 Opt_fsync,
ff62af20 144 Opt_test_dummy_encryption,
27aacd28 145 Opt_inlinecrypt,
4d3aed70
DR
146 Opt_checkpoint_disable,
147 Opt_checkpoint_disable_cap,
148 Opt_checkpoint_disable_cap_perc,
149 Opt_checkpoint_enable,
261eeb9c
DJ
150 Opt_checkpoint_merge,
151 Opt_nocheckpoint_merge,
4c8ff709
CY
152 Opt_compress_algorithm,
153 Opt_compress_log_size,
154 Opt_compress_extension,
151b1982 155 Opt_nocompress_extension,
b28f047b 156 Opt_compress_chksum,
602a16d5 157 Opt_compress_mode,
6ce19aff 158 Opt_compress_cache,
093749e2 159 Opt_atgc,
5911d2d1
CY
160 Opt_gc_merge,
161 Opt_nogc_merge,
4f993264 162 Opt_discard_unit,
7a8fc586 163 Opt_memory_mode,
aff063e2
JK
164 Opt_err,
165};
166
167static match_table_t f2fs_tokens = {
696c018c 168 {Opt_gc_background, "background_gc=%s"},
aff063e2 169 {Opt_disable_roll_forward, "disable_roll_forward"},
2d834bf9 170 {Opt_norecovery, "norecovery"},
aff063e2 171 {Opt_discard, "discard"},
64058be9 172 {Opt_nodiscard, "nodiscard"},
aff063e2 173 {Opt_noheap, "no_heap"},
7a20b8a6 174 {Opt_heap, "heap"},
4058c511 175 {Opt_user_xattr, "user_xattr"},
aff063e2 176 {Opt_nouser_xattr, "nouser_xattr"},
4058c511 177 {Opt_acl, "acl"},
aff063e2
JK
178 {Opt_noacl, "noacl"},
179 {Opt_active_logs, "active_logs=%u"},
180 {Opt_disable_ext_identify, "disable_ext_identify"},
444c580f 181 {Opt_inline_xattr, "inline_xattr"},
23cf7212 182 {Opt_noinline_xattr, "noinline_xattr"},
6afc662e 183 {Opt_inline_xattr_size, "inline_xattr_size=%u"},
8274de77 184 {Opt_inline_data, "inline_data"},
5efd3c6f 185 {Opt_inline_dentry, "inline_dentry"},
97c1794a 186 {Opt_noinline_dentry, "noinline_dentry"},
6b4afdd7 187 {Opt_flush_merge, "flush_merge"},
69e9e427 188 {Opt_noflush_merge, "noflush_merge"},
0f7b2abd 189 {Opt_nobarrier, "nobarrier"},
d5053a34 190 {Opt_fastboot, "fastboot"},
89672159 191 {Opt_extent_cache, "extent_cache"},
7daaea25 192 {Opt_noextent_cache, "noextent_cache"},
75342797 193 {Opt_noinline_data, "noinline_data"},
343f40f0 194 {Opt_data_flush, "data_flush"},
7e65be49 195 {Opt_reserve_root, "reserve_root=%u"},
7c2e5963
JK
196 {Opt_resgid, "resgid=%u"},
197 {Opt_resuid, "resuid=%u"},
36abef4e 198 {Opt_mode, "mode=%s"},
ec91538d 199 {Opt_io_size_bits, "io_bits=%u"},
73faec4d 200 {Opt_fault_injection, "fault_injection=%u"},
d494500a 201 {Opt_fault_type, "fault_type=%u"},
6d94c74a
JK
202 {Opt_lazytime, "lazytime"},
203 {Opt_nolazytime, "nolazytime"},
4b2414d0
CY
204 {Opt_quota, "quota"},
205 {Opt_noquota, "noquota"},
0abd675e
CY
206 {Opt_usrquota, "usrquota"},
207 {Opt_grpquota, "grpquota"},
5c57132e 208 {Opt_prjquota, "prjquota"},
4b2414d0
CY
209 {Opt_usrjquota, "usrjquota=%s"},
210 {Opt_grpjquota, "grpjquota=%s"},
211 {Opt_prjjquota, "prjjquota=%s"},
212 {Opt_offusrjquota, "usrjquota="},
213 {Opt_offgrpjquota, "grpjquota="},
214 {Opt_offprjjquota, "prjjquota="},
215 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
216 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
217 {Opt_jqfmt_vfsv1, "jqfmt=vfsv1"},
07939627 218 {Opt_alloc, "alloc_mode=%s"},
93cf93f1 219 {Opt_fsync, "fsync_mode=%s"},
ed318a6c 220 {Opt_test_dummy_encryption, "test_dummy_encryption=%s"},
ff62af20 221 {Opt_test_dummy_encryption, "test_dummy_encryption"},
27aacd28 222 {Opt_inlinecrypt, "inlinecrypt"},
4d3aed70
DR
223 {Opt_checkpoint_disable, "checkpoint=disable"},
224 {Opt_checkpoint_disable_cap, "checkpoint=disable:%u"},
225 {Opt_checkpoint_disable_cap_perc, "checkpoint=disable:%u%%"},
226 {Opt_checkpoint_enable, "checkpoint=enable"},
261eeb9c
DJ
227 {Opt_checkpoint_merge, "checkpoint_merge"},
228 {Opt_nocheckpoint_merge, "nocheckpoint_merge"},
4c8ff709
CY
229 {Opt_compress_algorithm, "compress_algorithm=%s"},
230 {Opt_compress_log_size, "compress_log_size=%u"},
231 {Opt_compress_extension, "compress_extension=%s"},
151b1982 232 {Opt_nocompress_extension, "nocompress_extension=%s"},
b28f047b 233 {Opt_compress_chksum, "compress_chksum"},
602a16d5 234 {Opt_compress_mode, "compress_mode=%s"},
6ce19aff 235 {Opt_compress_cache, "compress_cache"},
093749e2 236 {Opt_atgc, "atgc"},
5911d2d1
CY
237 {Opt_gc_merge, "gc_merge"},
238 {Opt_nogc_merge, "nogc_merge"},
4f993264 239 {Opt_discard_unit, "discard_unit=%s"},
7a8fc586 240 {Opt_memory_mode, "memory=%s"},
aff063e2
JK
241 {Opt_err, NULL},
242};
243
dcbb4c10 244void f2fs_printk(struct f2fs_sb_info *sbi, const char *fmt, ...)
a07ef784
NJ
245{
246 struct va_format vaf;
247 va_list args;
dcbb4c10 248 int level;
a07ef784
NJ
249
250 va_start(args, fmt);
dcbb4c10
JP
251
252 level = printk_get_level(fmt);
253 vaf.fmt = printk_skip_level(fmt);
a07ef784 254 vaf.va = &args;
dcbb4c10
JP
255 printk("%c%cF2FS-fs (%s): %pV\n",
256 KERN_SOH_ASCII, level, sbi->sb->s_id, &vaf);
257
a07ef784
NJ
258 va_end(args);
259}
260
5298d4bf 261#if IS_ENABLED(CONFIG_UNICODE)
5aba5430
DR
262static const struct f2fs_sb_encodings {
263 __u16 magic;
264 char *name;
49bd03cc 265 unsigned int version;
5aba5430 266} f2fs_sb_encoding_map[] = {
49bd03cc 267 {F2FS_ENC_UTF8_12_1, "utf8", UNICODE_AGE(12, 1, 0)},
5aba5430
DR
268};
269
86e80575
CH
270static const struct f2fs_sb_encodings *
271f2fs_sb_read_encoding(const struct f2fs_super_block *sb)
5aba5430
DR
272{
273 __u16 magic = le16_to_cpu(sb->s_encoding);
274 int i;
275
276 for (i = 0; i < ARRAY_SIZE(f2fs_sb_encoding_map); i++)
277 if (magic == f2fs_sb_encoding_map[i].magic)
86e80575 278 return &f2fs_sb_encoding_map[i];
5aba5430 279
86e80575 280 return NULL;
5aba5430 281}
4d9a2bb1
CY
282
283struct kmem_cache *f2fs_cf_name_slab;
284static int __init f2fs_create_casefold_cache(void)
285{
286 f2fs_cf_name_slab = f2fs_kmem_cache_create("f2fs_casefolded_name",
287 F2FS_NAME_LEN);
288 if (!f2fs_cf_name_slab)
289 return -ENOMEM;
290 return 0;
291}
292
293static void f2fs_destroy_casefold_cache(void)
294{
295 kmem_cache_destroy(f2fs_cf_name_slab);
296}
297#else
298static int __init f2fs_create_casefold_cache(void) { return 0; }
299static void f2fs_destroy_casefold_cache(void) { }
5aba5430
DR
300#endif
301
7e65be49
JK
302static inline void limit_reserve_root(struct f2fs_sb_info *sbi)
303{
da35fe96 304 block_t limit = min((sbi->user_block_count >> 3),
9a9aecaa 305 sbi->user_block_count - sbi->reserved_blocks);
7e65be49 306
da35fe96 307 /* limit is 12.5% */
63189b78
CY
308 if (test_opt(sbi, RESERVE_ROOT) &&
309 F2FS_OPTION(sbi).root_reserved_blocks > limit) {
310 F2FS_OPTION(sbi).root_reserved_blocks = limit;
dcbb4c10
JP
311 f2fs_info(sbi, "Reduce reserved blocks for root = %u",
312 F2FS_OPTION(sbi).root_reserved_blocks);
7e65be49 313 }
7c2e5963 314 if (!test_opt(sbi, RESERVE_ROOT) &&
63189b78 315 (!uid_eq(F2FS_OPTION(sbi).s_resuid,
7c2e5963 316 make_kuid(&init_user_ns, F2FS_DEF_RESUID)) ||
63189b78 317 !gid_eq(F2FS_OPTION(sbi).s_resgid,
7c2e5963 318 make_kgid(&init_user_ns, F2FS_DEF_RESGID))))
dcbb4c10
JP
319 f2fs_info(sbi, "Ignore s_resuid=%u, s_resgid=%u w/o reserve_root",
320 from_kuid_munged(&init_user_ns,
321 F2FS_OPTION(sbi).s_resuid),
322 from_kgid_munged(&init_user_ns,
323 F2FS_OPTION(sbi).s_resgid));
7e65be49
JK
324}
325
300a8429
CY
326static inline int adjust_reserved_segment(struct f2fs_sb_info *sbi)
327{
328 unsigned int sec_blks = sbi->blocks_per_seg * sbi->segs_per_sec;
329 unsigned int avg_vblocks;
330 unsigned int wanted_reserved_segments;
331 block_t avail_user_block_count;
332
333 if (!F2FS_IO_ALIGNED(sbi))
334 return 0;
335
336 /* average valid block count in section in worst case */
337 avg_vblocks = sec_blks / F2FS_IO_SIZE(sbi);
338
339 /*
340 * we need enough free space when migrating one section in worst case
341 */
342 wanted_reserved_segments = (F2FS_IO_SIZE(sbi) / avg_vblocks) *
343 reserved_segments(sbi);
344 wanted_reserved_segments -= reserved_segments(sbi);
345
346 avail_user_block_count = sbi->user_block_count -
347 sbi->current_reserved_blocks -
348 F2FS_OPTION(sbi).root_reserved_blocks;
349
350 if (wanted_reserved_segments * sbi->blocks_per_seg >
351 avail_user_block_count) {
352 f2fs_err(sbi, "IO align feature can't grab additional reserved segment: %u, available segments: %u",
353 wanted_reserved_segments,
354 avail_user_block_count >> sbi->log_blocks_per_seg);
355 return -ENOSPC;
356 }
357
358 SM_I(sbi)->additional_reserved_segments = wanted_reserved_segments;
359
360 f2fs_info(sbi, "IO align feature needs additional reserved segment: %u",
361 wanted_reserved_segments);
362
363 return 0;
364}
365
1ae18f71
JK
366static inline void adjust_unusable_cap_perc(struct f2fs_sb_info *sbi)
367{
368 if (!F2FS_OPTION(sbi).unusable_cap_perc)
369 return;
370
371 if (F2FS_OPTION(sbi).unusable_cap_perc == 100)
372 F2FS_OPTION(sbi).unusable_cap = sbi->user_block_count;
373 else
374 F2FS_OPTION(sbi).unusable_cap = (sbi->user_block_count / 100) *
375 F2FS_OPTION(sbi).unusable_cap_perc;
376
377 f2fs_info(sbi, "Adjust unusable cap for checkpoint=disable = %u / %u%%",
378 F2FS_OPTION(sbi).unusable_cap,
379 F2FS_OPTION(sbi).unusable_cap_perc);
380}
381
aff063e2
JK
382static void init_once(void *foo)
383{
384 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
385
aff063e2
JK
386 inode_init_once(&fi->vfs_inode);
387}
388
4b2414d0
CY
389#ifdef CONFIG_QUOTA
390static const char * const quotatypes[] = INITQFNAMES;
391#define QTYPE2NAME(t) (quotatypes[t])
392static int f2fs_set_qf_name(struct super_block *sb, int qtype,
393 substring_t *args)
394{
395 struct f2fs_sb_info *sbi = F2FS_SB(sb);
396 char *qname;
397 int ret = -EINVAL;
398
63189b78 399 if (sb_any_quota_loaded(sb) && !F2FS_OPTION(sbi).s_qf_names[qtype]) {
dcbb4c10 400 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
4b2414d0
CY
401 return -EINVAL;
402 }
7beb01f7 403 if (f2fs_sb_has_quota_ino(sbi)) {
dcbb4c10 404 f2fs_info(sbi, "QUOTA feature is enabled, so ignore qf_name");
ea676733
JK
405 return 0;
406 }
407
4b2414d0
CY
408 qname = match_strdup(args);
409 if (!qname) {
dcbb4c10 410 f2fs_err(sbi, "Not enough memory for storing quotafile name");
f365c6cc 411 return -ENOMEM;
4b2414d0 412 }
63189b78
CY
413 if (F2FS_OPTION(sbi).s_qf_names[qtype]) {
414 if (strcmp(F2FS_OPTION(sbi).s_qf_names[qtype], qname) == 0)
4b2414d0
CY
415 ret = 0;
416 else
dcbb4c10 417 f2fs_err(sbi, "%s quota file already specified",
4b2414d0
CY
418 QTYPE2NAME(qtype));
419 goto errout;
420 }
421 if (strchr(qname, '/')) {
dcbb4c10 422 f2fs_err(sbi, "quotafile must be on filesystem root");
4b2414d0
CY
423 goto errout;
424 }
63189b78 425 F2FS_OPTION(sbi).s_qf_names[qtype] = qname;
4b2414d0
CY
426 set_opt(sbi, QUOTA);
427 return 0;
428errout:
ba87a45c 429 kfree(qname);
4b2414d0
CY
430 return ret;
431}
432
433static int f2fs_clear_qf_name(struct super_block *sb, int qtype)
434{
435 struct f2fs_sb_info *sbi = F2FS_SB(sb);
436
63189b78 437 if (sb_any_quota_loaded(sb) && F2FS_OPTION(sbi).s_qf_names[qtype]) {
dcbb4c10 438 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
4b2414d0
CY
439 return -EINVAL;
440 }
ba87a45c 441 kfree(F2FS_OPTION(sbi).s_qf_names[qtype]);
63189b78 442 F2FS_OPTION(sbi).s_qf_names[qtype] = NULL;
4b2414d0
CY
443 return 0;
444}
445
446static int f2fs_check_quota_options(struct f2fs_sb_info *sbi)
447{
448 /*
449 * We do the test below only for project quotas. 'usrquota' and
450 * 'grpquota' mount options are allowed even without quota feature
451 * to support legacy quotas in quota files.
452 */
7beb01f7 453 if (test_opt(sbi, PRJQUOTA) && !f2fs_sb_has_project_quota(sbi)) {
dcbb4c10 454 f2fs_err(sbi, "Project quota feature not enabled. Cannot enable project quota enforcement.");
4b2414d0
CY
455 return -1;
456 }
63189b78
CY
457 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA] ||
458 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA] ||
459 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]) {
460 if (test_opt(sbi, USRQUOTA) &&
461 F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
4b2414d0
CY
462 clear_opt(sbi, USRQUOTA);
463
63189b78
CY
464 if (test_opt(sbi, GRPQUOTA) &&
465 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
4b2414d0
CY
466 clear_opt(sbi, GRPQUOTA);
467
63189b78
CY
468 if (test_opt(sbi, PRJQUOTA) &&
469 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
4b2414d0
CY
470 clear_opt(sbi, PRJQUOTA);
471
472 if (test_opt(sbi, GRPQUOTA) || test_opt(sbi, USRQUOTA) ||
473 test_opt(sbi, PRJQUOTA)) {
dcbb4c10 474 f2fs_err(sbi, "old and new quota format mixing");
4b2414d0
CY
475 return -1;
476 }
477
63189b78 478 if (!F2FS_OPTION(sbi).s_jquota_fmt) {
dcbb4c10 479 f2fs_err(sbi, "journaled quota format not specified");
4b2414d0
CY
480 return -1;
481 }
482 }
ea676733 483
7beb01f7 484 if (f2fs_sb_has_quota_ino(sbi) && F2FS_OPTION(sbi).s_jquota_fmt) {
dcbb4c10 485 f2fs_info(sbi, "QUOTA feature is enabled, so ignore jquota_fmt");
63189b78 486 F2FS_OPTION(sbi).s_jquota_fmt = 0;
ea676733 487 }
4b2414d0
CY
488 return 0;
489}
490#endif
491
ed318a6c
EB
492static int f2fs_set_test_dummy_encryption(struct super_block *sb,
493 const char *opt,
494 const substring_t *arg,
495 bool is_remount)
496{
497 struct f2fs_sb_info *sbi = F2FS_SB(sb);
c5bca38d
EB
498 struct fs_parameter param = {
499 .type = fs_value_is_string,
500 .string = arg->from ? arg->from : "",
501 };
502 struct fscrypt_dummy_policy *policy =
503 &F2FS_OPTION(sbi).dummy_enc_policy;
ed318a6c
EB
504 int err;
505
c5bca38d
EB
506 if (!IS_ENABLED(CONFIG_FS_ENCRYPTION)) {
507 f2fs_warn(sbi, "test_dummy_encryption option not supported");
508 return -EINVAL;
509 }
510
ed318a6c
EB
511 if (!f2fs_sb_has_encrypt(sbi)) {
512 f2fs_err(sbi, "Encrypt feature is off");
513 return -EINVAL;
514 }
515
516 /*
517 * This mount option is just for testing, and it's not worthwhile to
518 * implement the extra complexity (e.g. RCU protection) that would be
519 * needed to allow it to be set or changed during remount. We do allow
520 * it to be specified during remount, but only if there is no change.
521 */
c5bca38d 522 if (is_remount && !fscrypt_is_dummy_policy_set(policy)) {
ed318a6c
EB
523 f2fs_warn(sbi, "Can't set test_dummy_encryption on remount");
524 return -EINVAL;
525 }
c5bca38d
EB
526
527 err = fscrypt_parse_test_dummy_encryption(&param, policy);
ed318a6c
EB
528 if (err) {
529 if (err == -EEXIST)
530 f2fs_warn(sbi,
531 "Can't change test_dummy_encryption on remount");
532 else if (err == -EINVAL)
533 f2fs_warn(sbi, "Value of option \"%s\" is unrecognized",
534 opt);
535 else
536 f2fs_warn(sbi, "Error processing option \"%s\" [%d]",
537 opt, err);
538 return -EINVAL;
539 }
c5bca38d
EB
540 err = fscrypt_add_test_dummy_key(sb, policy);
541 if (err) {
542 f2fs_warn(sbi, "Error adding test dummy encryption key [%d]",
543 err);
544 return err;
545 }
ed318a6c 546 f2fs_warn(sbi, "Test dummy encryption mode enabled");
64e3ed0b 547 return 0;
ed318a6c
EB
548}
549
3fde13f8 550#ifdef CONFIG_F2FS_FS_COMPRESSION
151b1982
FC
551/*
552 * 1. The same extension name cannot not appear in both compress and non-compress extension
553 * at the same time.
554 * 2. If the compress extension specifies all files, the types specified by the non-compress
555 * extension will be treated as special cases and will not be compressed.
556 * 3. Don't allow the non-compress extension specifies all files.
557 */
558static int f2fs_test_compress_extension(struct f2fs_sb_info *sbi)
559{
560 unsigned char (*ext)[F2FS_EXTENSION_LEN];
561 unsigned char (*noext)[F2FS_EXTENSION_LEN];
562 int ext_cnt, noext_cnt, index = 0, no_index = 0;
563
564 ext = F2FS_OPTION(sbi).extensions;
565 ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt;
566 noext = F2FS_OPTION(sbi).noextensions;
567 noext_cnt = F2FS_OPTION(sbi).nocompress_ext_cnt;
568
569 if (!noext_cnt)
570 return 0;
571
572 for (no_index = 0; no_index < noext_cnt; no_index++) {
573 if (!strcasecmp("*", noext[no_index])) {
574 f2fs_info(sbi, "Don't allow the nocompress extension specifies all files");
575 return -EINVAL;
576 }
577 for (index = 0; index < ext_cnt; index++) {
578 if (!strcasecmp(ext[index], noext[no_index])) {
579 f2fs_info(sbi, "Don't allow the same extension %s appear in both compress and nocompress extension",
580 ext[index]);
581 return -EINVAL;
582 }
583 }
584 }
585 return 0;
586}
587
3fde13f8
CY
588#ifdef CONFIG_F2FS_FS_LZ4
589static int f2fs_set_lz4hc_level(struct f2fs_sb_info *sbi, const char *str)
590{
591#ifdef CONFIG_F2FS_FS_LZ4HC
592 unsigned int level;
593#endif
594
595 if (strlen(str) == 3) {
596 F2FS_OPTION(sbi).compress_level = 0;
597 return 0;
598 }
599
600#ifdef CONFIG_F2FS_FS_LZ4HC
601 str += 3;
602
603 if (str[0] != ':') {
604 f2fs_info(sbi, "wrong format, e.g. <alg_name>:<compr_level>");
605 return -EINVAL;
606 }
607 if (kstrtouint(str + 1, 10, &level))
608 return -EINVAL;
609
610 if (level < LZ4HC_MIN_CLEVEL || level > LZ4HC_MAX_CLEVEL) {
611 f2fs_info(sbi, "invalid lz4hc compress level: %d", level);
612 return -EINVAL;
613 }
614
615 F2FS_OPTION(sbi).compress_level = level;
616 return 0;
617#else
618 f2fs_info(sbi, "kernel doesn't support lz4hc compression");
619 return -EINVAL;
620#endif
621}
622#endif
623
624#ifdef CONFIG_F2FS_FS_ZSTD
625static int f2fs_set_zstd_level(struct f2fs_sb_info *sbi, const char *str)
626{
627 unsigned int level;
628 int len = 4;
629
630 if (strlen(str) == len) {
631 F2FS_OPTION(sbi).compress_level = 0;
632 return 0;
633 }
634
635 str += len;
636
637 if (str[0] != ':') {
638 f2fs_info(sbi, "wrong format, e.g. <alg_name>:<compr_level>");
639 return -EINVAL;
640 }
641 if (kstrtouint(str + 1, 10, &level))
642 return -EINVAL;
643
cf30f6a5 644 if (!level || level > zstd_max_clevel()) {
3fde13f8
CY
645 f2fs_info(sbi, "invalid zstd compress level: %d", level);
646 return -EINVAL;
647 }
648
649 F2FS_OPTION(sbi).compress_level = level;
650 return 0;
651}
652#endif
653#endif
654
ed318a6c 655static int parse_options(struct super_block *sb, char *options, bool is_remount)
696c018c
NJ
656{
657 struct f2fs_sb_info *sbi = F2FS_SB(sb);
658 substring_t args[MAX_OPT_ARGS];
1f0b067b 659#ifdef CONFIG_F2FS_FS_COMPRESSION
4c8ff709 660 unsigned char (*ext)[F2FS_EXTENSION_LEN];
151b1982
FC
661 unsigned char (*noext)[F2FS_EXTENSION_LEN];
662 int ext_cnt, noext_cnt;
1f0b067b 663#endif
696c018c 664 char *p, *name;
1f0b067b 665 int arg = 0;
7c2e5963
JK
666 kuid_t uid;
667 kgid_t gid;
4b2414d0 668 int ret;
696c018c
NJ
669
670 if (!options)
a7d9fe3c 671 goto default_check;
696c018c
NJ
672
673 while ((p = strsep(&options, ",")) != NULL) {
674 int token;
5f029c04 675
696c018c
NJ
676 if (!*p)
677 continue;
678 /*
679 * Initialize args struct so we know whether arg was
680 * found; some options take optional arguments.
681 */
682 args[0].to = args[0].from = NULL;
683 token = match_token(p, f2fs_tokens, args);
684
685 switch (token) {
686 case Opt_gc_background:
687 name = match_strdup(&args[0]);
688
689 if (!name)
690 return -ENOMEM;
3c57f751 691 if (!strcmp(name, "on")) {
bbbc34fd 692 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
3c57f751 693 } else if (!strcmp(name, "off")) {
bbbc34fd 694 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_OFF;
3c57f751 695 } else if (!strcmp(name, "sync")) {
bbbc34fd 696 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_SYNC;
6aefd93b 697 } else {
ba87a45c 698 kfree(name);
696c018c
NJ
699 return -EINVAL;
700 }
ba87a45c 701 kfree(name);
696c018c
NJ
702 break;
703 case Opt_disable_roll_forward:
704 set_opt(sbi, DISABLE_ROLL_FORWARD);
705 break;
2d834bf9
JK
706 case Opt_norecovery:
707 /* this option mounts f2fs with ro */
a9117eca 708 set_opt(sbi, NORECOVERY);
2d834bf9
JK
709 if (!f2fs_readonly(sb))
710 return -EINVAL;
711 break;
696c018c 712 case Opt_discard:
f7db8dd6
CY
713 if (!f2fs_hw_support_discard(sbi)) {
714 f2fs_warn(sbi, "device does not support discard");
715 break;
716 }
7d20c8ab 717 set_opt(sbi, DISCARD);
696c018c 718 break;
64058be9 719 case Opt_nodiscard:
f7db8dd6 720 if (f2fs_hw_should_discard(sbi)) {
dcbb4c10 721 f2fs_warn(sbi, "discard is required for zoned block devices");
96ba2dec
DLM
722 return -EINVAL;
723 }
64058be9 724 clear_opt(sbi, DISCARD);
487df616 725 break;
696c018c
NJ
726 case Opt_noheap:
727 set_opt(sbi, NOHEAP);
728 break;
7a20b8a6
JK
729 case Opt_heap:
730 clear_opt(sbi, NOHEAP);
731 break;
696c018c 732#ifdef CONFIG_F2FS_FS_XATTR
4058c511
KA
733 case Opt_user_xattr:
734 set_opt(sbi, XATTR_USER);
735 break;
696c018c
NJ
736 case Opt_nouser_xattr:
737 clear_opt(sbi, XATTR_USER);
738 break;
444c580f
JK
739 case Opt_inline_xattr:
740 set_opt(sbi, INLINE_XATTR);
741 break;
23cf7212
CY
742 case Opt_noinline_xattr:
743 clear_opt(sbi, INLINE_XATTR);
744 break;
6afc662e
CY
745 case Opt_inline_xattr_size:
746 if (args->from && match_int(args, &arg))
747 return -EINVAL;
748 set_opt(sbi, INLINE_XATTR_SIZE);
63189b78 749 F2FS_OPTION(sbi).inline_xattr_size = arg;
6afc662e 750 break;
696c018c 751#else
4058c511 752 case Opt_user_xattr:
dcbb4c10 753 f2fs_info(sbi, "user_xattr options not supported");
4058c511 754 break;
696c018c 755 case Opt_nouser_xattr:
dcbb4c10 756 f2fs_info(sbi, "nouser_xattr options not supported");
696c018c 757 break;
444c580f 758 case Opt_inline_xattr:
dcbb4c10 759 f2fs_info(sbi, "inline_xattr options not supported");
444c580f 760 break;
23cf7212 761 case Opt_noinline_xattr:
dcbb4c10 762 f2fs_info(sbi, "noinline_xattr options not supported");
23cf7212 763 break;
696c018c
NJ
764#endif
765#ifdef CONFIG_F2FS_FS_POSIX_ACL
4058c511
KA
766 case Opt_acl:
767 set_opt(sbi, POSIX_ACL);
768 break;
696c018c
NJ
769 case Opt_noacl:
770 clear_opt(sbi, POSIX_ACL);
771 break;
772#else
4058c511 773 case Opt_acl:
dcbb4c10 774 f2fs_info(sbi, "acl options not supported");
4058c511 775 break;
696c018c 776 case Opt_noacl:
dcbb4c10 777 f2fs_info(sbi, "noacl options not supported");
696c018c
NJ
778 break;
779#endif
780 case Opt_active_logs:
781 if (args->from && match_int(args, &arg))
782 return -EINVAL;
d0b9e42a
CY
783 if (arg != 2 && arg != 4 &&
784 arg != NR_CURSEG_PERSIST_TYPE)
696c018c 785 return -EINVAL;
63189b78 786 F2FS_OPTION(sbi).active_logs = arg;
696c018c
NJ
787 break;
788 case Opt_disable_ext_identify:
789 set_opt(sbi, DISABLE_EXT_IDENTIFY);
790 break;
8274de77
HL
791 case Opt_inline_data:
792 set_opt(sbi, INLINE_DATA);
793 break;
5efd3c6f
CY
794 case Opt_inline_dentry:
795 set_opt(sbi, INLINE_DENTRY);
796 break;
97c1794a
CY
797 case Opt_noinline_dentry:
798 clear_opt(sbi, INLINE_DENTRY);
799 break;
6b4afdd7
JK
800 case Opt_flush_merge:
801 set_opt(sbi, FLUSH_MERGE);
802 break;
69e9e427
JK
803 case Opt_noflush_merge:
804 clear_opt(sbi, FLUSH_MERGE);
805 break;
0f7b2abd
JK
806 case Opt_nobarrier:
807 set_opt(sbi, NOBARRIER);
808 break;
d5053a34
JK
809 case Opt_fastboot:
810 set_opt(sbi, FASTBOOT);
811 break;
89672159
CY
812 case Opt_extent_cache:
813 set_opt(sbi, EXTENT_CACHE);
814 break;
7daaea25
JK
815 case Opt_noextent_cache:
816 clear_opt(sbi, EXTENT_CACHE);
817 break;
75342797
WL
818 case Opt_noinline_data:
819 clear_opt(sbi, INLINE_DATA);
820 break;
343f40f0
CY
821 case Opt_data_flush:
822 set_opt(sbi, DATA_FLUSH);
823 break;
7e65be49
JK
824 case Opt_reserve_root:
825 if (args->from && match_int(args, &arg))
826 return -EINVAL;
827 if (test_opt(sbi, RESERVE_ROOT)) {
dcbb4c10
JP
828 f2fs_info(sbi, "Preserve previous reserve_root=%u",
829 F2FS_OPTION(sbi).root_reserved_blocks);
7e65be49 830 } else {
63189b78 831 F2FS_OPTION(sbi).root_reserved_blocks = arg;
7e65be49
JK
832 set_opt(sbi, RESERVE_ROOT);
833 }
834 break;
7c2e5963
JK
835 case Opt_resuid:
836 if (args->from && match_int(args, &arg))
837 return -EINVAL;
838 uid = make_kuid(current_user_ns(), arg);
839 if (!uid_valid(uid)) {
dcbb4c10 840 f2fs_err(sbi, "Invalid uid value %d", arg);
7c2e5963
JK
841 return -EINVAL;
842 }
63189b78 843 F2FS_OPTION(sbi).s_resuid = uid;
7c2e5963
JK
844 break;
845 case Opt_resgid:
846 if (args->from && match_int(args, &arg))
847 return -EINVAL;
848 gid = make_kgid(current_user_ns(), arg);
849 if (!gid_valid(gid)) {
dcbb4c10 850 f2fs_err(sbi, "Invalid gid value %d", arg);
7c2e5963
JK
851 return -EINVAL;
852 }
63189b78 853 F2FS_OPTION(sbi).s_resgid = gid;
7c2e5963 854 break;
36abef4e
JK
855 case Opt_mode:
856 name = match_strdup(&args[0]);
857
858 if (!name)
859 return -ENOMEM;
3c57f751 860 if (!strcmp(name, "adaptive")) {
7beb01f7 861 if (f2fs_sb_has_blkzoned(sbi)) {
dcbb4c10 862 f2fs_warn(sbi, "adaptive mode is not allowed with zoned block device feature");
ba87a45c 863 kfree(name);
3adc57e9
DLM
864 return -EINVAL;
865 }
b0332a0f 866 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
3c57f751 867 } else if (!strcmp(name, "lfs")) {
b0332a0f 868 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
6691d940
DJ
869 } else if (!strcmp(name, "fragment:segment")) {
870 F2FS_OPTION(sbi).fs_mode = FS_MODE_FRAGMENT_SEG;
871 } else if (!strcmp(name, "fragment:block")) {
872 F2FS_OPTION(sbi).fs_mode = FS_MODE_FRAGMENT_BLK;
36abef4e 873 } else {
ba87a45c 874 kfree(name);
36abef4e
JK
875 return -EINVAL;
876 }
ba87a45c 877 kfree(name);
36abef4e 878 break;
ec91538d
JK
879 case Opt_io_size_bits:
880 if (args->from && match_int(args, &arg))
881 return -EINVAL;
a8affc03 882 if (arg <= 0 || arg > __ilog2_u32(BIO_MAX_VECS)) {
dcbb4c10 883 f2fs_warn(sbi, "Not support %d, larger than %d",
a8affc03 884 1 << arg, BIO_MAX_VECS);
ec91538d
JK
885 return -EINVAL;
886 }
63189b78 887 F2FS_OPTION(sbi).write_io_size_bits = arg;
ec91538d 888 break;
4cb037ec 889#ifdef CONFIG_F2FS_FAULT_INJECTION
73faec4d
JK
890 case Opt_fault_injection:
891 if (args->from && match_int(args, &arg))
892 return -EINVAL;
d494500a
CY
893 f2fs_build_fault_attr(sbi, arg, F2FS_ALL_FAULT_TYPE);
894 set_opt(sbi, FAULT_INJECTION);
d494500a 895 break;
4cb037ec 896
d494500a
CY
897 case Opt_fault_type:
898 if (args->from && match_int(args, &arg))
899 return -EINVAL;
d494500a 900 f2fs_build_fault_attr(sbi, 0, arg);
0cc0dec2 901 set_opt(sbi, FAULT_INJECTION);
4cb037ec 902 break;
73faec4d 903#else
4cb037ec 904 case Opt_fault_injection:
dcbb4c10 905 f2fs_info(sbi, "fault_injection options not supported");
73faec4d 906 break;
4cb037ec
CX
907
908 case Opt_fault_type:
dcbb4c10 909 f2fs_info(sbi, "fault_type options not supported");
4cb037ec
CX
910 break;
911#endif
6d94c74a 912 case Opt_lazytime:
1751e8a6 913 sb->s_flags |= SB_LAZYTIME;
6d94c74a
JK
914 break;
915 case Opt_nolazytime:
1751e8a6 916 sb->s_flags &= ~SB_LAZYTIME;
6d94c74a 917 break;
0abd675e 918#ifdef CONFIG_QUOTA
4b2414d0 919 case Opt_quota:
0abd675e
CY
920 case Opt_usrquota:
921 set_opt(sbi, USRQUOTA);
922 break;
923 case Opt_grpquota:
924 set_opt(sbi, GRPQUOTA);
925 break;
5c57132e
CY
926 case Opt_prjquota:
927 set_opt(sbi, PRJQUOTA);
928 break;
4b2414d0
CY
929 case Opt_usrjquota:
930 ret = f2fs_set_qf_name(sb, USRQUOTA, &args[0]);
931 if (ret)
932 return ret;
933 break;
934 case Opt_grpjquota:
935 ret = f2fs_set_qf_name(sb, GRPQUOTA, &args[0]);
936 if (ret)
937 return ret;
938 break;
939 case Opt_prjjquota:
940 ret = f2fs_set_qf_name(sb, PRJQUOTA, &args[0]);
941 if (ret)
942 return ret;
943 break;
944 case Opt_offusrjquota:
945 ret = f2fs_clear_qf_name(sb, USRQUOTA);
946 if (ret)
947 return ret;
948 break;
949 case Opt_offgrpjquota:
950 ret = f2fs_clear_qf_name(sb, GRPQUOTA);
951 if (ret)
952 return ret;
953 break;
954 case Opt_offprjjquota:
955 ret = f2fs_clear_qf_name(sb, PRJQUOTA);
956 if (ret)
957 return ret;
958 break;
959 case Opt_jqfmt_vfsold:
63189b78 960 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_OLD;
4b2414d0
CY
961 break;
962 case Opt_jqfmt_vfsv0:
63189b78 963 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V0;
4b2414d0
CY
964 break;
965 case Opt_jqfmt_vfsv1:
63189b78 966 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V1;
4b2414d0
CY
967 break;
968 case Opt_noquota:
969 clear_opt(sbi, QUOTA);
970 clear_opt(sbi, USRQUOTA);
971 clear_opt(sbi, GRPQUOTA);
972 clear_opt(sbi, PRJQUOTA);
973 break;
0abd675e 974#else
4b2414d0 975 case Opt_quota:
0abd675e
CY
976 case Opt_usrquota:
977 case Opt_grpquota:
5c57132e 978 case Opt_prjquota:
4b2414d0
CY
979 case Opt_usrjquota:
980 case Opt_grpjquota:
981 case Opt_prjjquota:
982 case Opt_offusrjquota:
983 case Opt_offgrpjquota:
984 case Opt_offprjjquota:
985 case Opt_jqfmt_vfsold:
986 case Opt_jqfmt_vfsv0:
987 case Opt_jqfmt_vfsv1:
988 case Opt_noquota:
dcbb4c10 989 f2fs_info(sbi, "quota operations not supported");
0abd675e
CY
990 break;
991#endif
07939627
JK
992 case Opt_alloc:
993 name = match_strdup(&args[0]);
994 if (!name)
995 return -ENOMEM;
996
3c57f751 997 if (!strcmp(name, "default")) {
63189b78 998 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
3c57f751 999 } else if (!strcmp(name, "reuse")) {
63189b78 1000 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
07939627 1001 } else {
ba87a45c 1002 kfree(name);
07939627
JK
1003 return -EINVAL;
1004 }
ba87a45c 1005 kfree(name);
07939627 1006 break;
93cf93f1
JZ
1007 case Opt_fsync:
1008 name = match_strdup(&args[0]);
1009 if (!name)
1010 return -ENOMEM;
3c57f751 1011 if (!strcmp(name, "posix")) {
63189b78 1012 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
3c57f751 1013 } else if (!strcmp(name, "strict")) {
63189b78 1014 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_STRICT;
3c57f751 1015 } else if (!strcmp(name, "nobarrier")) {
d6290814
JK
1016 F2FS_OPTION(sbi).fsync_mode =
1017 FSYNC_MODE_NOBARRIER;
93cf93f1 1018 } else {
ba87a45c 1019 kfree(name);
93cf93f1
JZ
1020 return -EINVAL;
1021 }
ba87a45c 1022 kfree(name);
93cf93f1 1023 break;
ff62af20 1024 case Opt_test_dummy_encryption:
ed318a6c
EB
1025 ret = f2fs_set_test_dummy_encryption(sb, p, &args[0],
1026 is_remount);
1027 if (ret)
1028 return ret;
ff62af20 1029 break;
27aacd28
ST
1030 case Opt_inlinecrypt:
1031#ifdef CONFIG_FS_ENCRYPTION_INLINE_CRYPT
1032 sb->s_flags |= SB_INLINECRYPT;
1033#else
1034 f2fs_info(sbi, "inline encryption not supported");
1035#endif
1036 break;
4d3aed70
DR
1037 case Opt_checkpoint_disable_cap_perc:
1038 if (args->from && match_int(args, &arg))
4354994f 1039 return -EINVAL;
4d3aed70
DR
1040 if (arg < 0 || arg > 100)
1041 return -EINVAL;
1ae18f71 1042 F2FS_OPTION(sbi).unusable_cap_perc = arg;
4d3aed70
DR
1043 set_opt(sbi, DISABLE_CHECKPOINT);
1044 break;
1045 case Opt_checkpoint_disable_cap:
1046 if (args->from && match_int(args, &arg))
1047 return -EINVAL;
1048 F2FS_OPTION(sbi).unusable_cap = arg;
1049 set_opt(sbi, DISABLE_CHECKPOINT);
1050 break;
1051 case Opt_checkpoint_disable:
1052 set_opt(sbi, DISABLE_CHECKPOINT);
1053 break;
1054 case Opt_checkpoint_enable:
1055 clear_opt(sbi, DISABLE_CHECKPOINT);
4354994f 1056 break;
261eeb9c
DJ
1057 case Opt_checkpoint_merge:
1058 set_opt(sbi, MERGE_CHECKPOINT);
1059 break;
1060 case Opt_nocheckpoint_merge:
1061 clear_opt(sbi, MERGE_CHECKPOINT);
1062 break;
1f0b067b 1063#ifdef CONFIG_F2FS_FS_COMPRESSION
4c8ff709
CY
1064 case Opt_compress_algorithm:
1065 if (!f2fs_sb_has_compression(sbi)) {
69c0dd29
CY
1066 f2fs_info(sbi, "Image doesn't support compression");
1067 break;
4c8ff709
CY
1068 }
1069 name = match_strdup(&args[0]);
1070 if (!name)
1071 return -ENOMEM;
3c57f751 1072 if (!strcmp(name, "lzo")) {
32be0e97 1073#ifdef CONFIG_F2FS_FS_LZO
3fde13f8 1074 F2FS_OPTION(sbi).compress_level = 0;
4c8ff709
CY
1075 F2FS_OPTION(sbi).compress_algorithm =
1076 COMPRESS_LZO;
32be0e97
CY
1077#else
1078 f2fs_info(sbi, "kernel doesn't support lzo compression");
1079#endif
3fde13f8 1080 } else if (!strncmp(name, "lz4", 3)) {
32be0e97 1081#ifdef CONFIG_F2FS_FS_LZ4
3fde13f8
CY
1082 ret = f2fs_set_lz4hc_level(sbi, name);
1083 if (ret) {
1084 kfree(name);
1085 return -EINVAL;
1086 }
4c8ff709
CY
1087 F2FS_OPTION(sbi).compress_algorithm =
1088 COMPRESS_LZ4;
32be0e97
CY
1089#else
1090 f2fs_info(sbi, "kernel doesn't support lz4 compression");
1091#endif
3fde13f8 1092 } else if (!strncmp(name, "zstd", 4)) {
32be0e97 1093#ifdef CONFIG_F2FS_FS_ZSTD
3fde13f8
CY
1094 ret = f2fs_set_zstd_level(sbi, name);
1095 if (ret) {
1096 kfree(name);
1097 return -EINVAL;
1098 }
50cfa66f
CY
1099 F2FS_OPTION(sbi).compress_algorithm =
1100 COMPRESS_ZSTD;
32be0e97
CY
1101#else
1102 f2fs_info(sbi, "kernel doesn't support zstd compression");
1103#endif
6d92b201 1104 } else if (!strcmp(name, "lzo-rle")) {
32be0e97 1105#ifdef CONFIG_F2FS_FS_LZORLE
3fde13f8 1106 F2FS_OPTION(sbi).compress_level = 0;
6d92b201
CY
1107 F2FS_OPTION(sbi).compress_algorithm =
1108 COMPRESS_LZORLE;
32be0e97
CY
1109#else
1110 f2fs_info(sbi, "kernel doesn't support lzorle compression");
1111#endif
4c8ff709
CY
1112 } else {
1113 kfree(name);
1114 return -EINVAL;
1115 }
1116 kfree(name);
1117 break;
1118 case Opt_compress_log_size:
1119 if (!f2fs_sb_has_compression(sbi)) {
69c0dd29
CY
1120 f2fs_info(sbi, "Image doesn't support compression");
1121 break;
4c8ff709
CY
1122 }
1123 if (args->from && match_int(args, &arg))
1124 return -EINVAL;
1125 if (arg < MIN_COMPRESS_LOG_SIZE ||
1126 arg > MAX_COMPRESS_LOG_SIZE) {
1127 f2fs_err(sbi,
1128 "Compress cluster log size is out of range");
1129 return -EINVAL;
1130 }
1131 F2FS_OPTION(sbi).compress_log_size = arg;
1132 break;
1133 case Opt_compress_extension:
1134 if (!f2fs_sb_has_compression(sbi)) {
69c0dd29
CY
1135 f2fs_info(sbi, "Image doesn't support compression");
1136 break;
4c8ff709
CY
1137 }
1138 name = match_strdup(&args[0]);
1139 if (!name)
1140 return -ENOMEM;
1141
1142 ext = F2FS_OPTION(sbi).extensions;
1143 ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt;
1144
1145 if (strlen(name) >= F2FS_EXTENSION_LEN ||
1146 ext_cnt >= COMPRESS_EXT_NUM) {
1147 f2fs_err(sbi,
1148 "invalid extension length/number");
1149 kfree(name);
1150 return -EINVAL;
1151 }
1152
1153 strcpy(ext[ext_cnt], name);
1154 F2FS_OPTION(sbi).compress_ext_cnt++;
1155 kfree(name);
1156 break;
151b1982
FC
1157 case Opt_nocompress_extension:
1158 if (!f2fs_sb_has_compression(sbi)) {
1159 f2fs_info(sbi, "Image doesn't support compression");
1160 break;
1161 }
1162 name = match_strdup(&args[0]);
1163 if (!name)
1164 return -ENOMEM;
1165
1166 noext = F2FS_OPTION(sbi).noextensions;
1167 noext_cnt = F2FS_OPTION(sbi).nocompress_ext_cnt;
1168
1169 if (strlen(name) >= F2FS_EXTENSION_LEN ||
1170 noext_cnt >= COMPRESS_EXT_NUM) {
1171 f2fs_err(sbi,
1172 "invalid extension length/number");
1173 kfree(name);
1174 return -EINVAL;
1175 }
1176
1177 strcpy(noext[noext_cnt], name);
1178 F2FS_OPTION(sbi).nocompress_ext_cnt++;
1179 kfree(name);
1180 break;
b28f047b
CY
1181 case Opt_compress_chksum:
1182 F2FS_OPTION(sbi).compress_chksum = true;
1183 break;
602a16d5
DJ
1184 case Opt_compress_mode:
1185 name = match_strdup(&args[0]);
1186 if (!name)
1187 return -ENOMEM;
1188 if (!strcmp(name, "fs")) {
1189 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_FS;
1190 } else if (!strcmp(name, "user")) {
1191 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_USER;
1192 } else {
1193 kfree(name);
1194 return -EINVAL;
1195 }
1196 kfree(name);
1197 break;
6ce19aff
CY
1198 case Opt_compress_cache:
1199 set_opt(sbi, COMPRESS_CACHE);
1200 break;
1f0b067b
CY
1201#else
1202 case Opt_compress_algorithm:
1203 case Opt_compress_log_size:
1204 case Opt_compress_extension:
151b1982 1205 case Opt_nocompress_extension:
b28f047b 1206 case Opt_compress_chksum:
602a16d5 1207 case Opt_compress_mode:
6ce19aff 1208 case Opt_compress_cache:
1f0b067b
CY
1209 f2fs_info(sbi, "compression options not supported");
1210 break;
1211#endif
093749e2
CY
1212 case Opt_atgc:
1213 set_opt(sbi, ATGC);
1214 break;
5911d2d1
CY
1215 case Opt_gc_merge:
1216 set_opt(sbi, GC_MERGE);
1217 break;
1218 case Opt_nogc_merge:
1219 clear_opt(sbi, GC_MERGE);
1220 break;
4f993264
CY
1221 case Opt_discard_unit:
1222 name = match_strdup(&args[0]);
1223 if (!name)
1224 return -ENOMEM;
1225 if (!strcmp(name, "block")) {
1226 F2FS_OPTION(sbi).discard_unit =
1227 DISCARD_UNIT_BLOCK;
1228 } else if (!strcmp(name, "segment")) {
1229 F2FS_OPTION(sbi).discard_unit =
1230 DISCARD_UNIT_SEGMENT;
1231 } else if (!strcmp(name, "section")) {
1232 F2FS_OPTION(sbi).discard_unit =
1233 DISCARD_UNIT_SECTION;
1234 } else {
1235 kfree(name);
1236 return -EINVAL;
1237 }
1238 kfree(name);
1239 break;
7a8fc586
DJ
1240 case Opt_memory_mode:
1241 name = match_strdup(&args[0]);
1242 if (!name)
1243 return -ENOMEM;
1244 if (!strcmp(name, "normal")) {
1245 F2FS_OPTION(sbi).memory_mode =
1246 MEMORY_MODE_NORMAL;
1247 } else if (!strcmp(name, "low")) {
1248 F2FS_OPTION(sbi).memory_mode =
1249 MEMORY_MODE_LOW;
1250 } else {
1251 kfree(name);
1252 return -EINVAL;
1253 }
1254 kfree(name);
1255 break;
696c018c 1256 default:
dcbb4c10
JP
1257 f2fs_err(sbi, "Unrecognized mount option \"%s\" or missing value",
1258 p);
696c018c
NJ
1259 return -EINVAL;
1260 }
1261 }
a7d9fe3c 1262default_check:
4b2414d0
CY
1263#ifdef CONFIG_QUOTA
1264 if (f2fs_check_quota_options(sbi))
1265 return -EINVAL;
00960c2c 1266#else
7beb01f7 1267 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sbi->sb)) {
dcbb4c10 1268 f2fs_info(sbi, "Filesystem with quota feature cannot be mounted RDWR without CONFIG_QUOTA");
00960c2c
SY
1269 return -EINVAL;
1270 }
7beb01f7 1271 if (f2fs_sb_has_project_quota(sbi) && !f2fs_readonly(sbi->sb)) {
dcbb4c10 1272 f2fs_err(sbi, "Filesystem with project quota feature cannot be mounted RDWR without CONFIG_QUOTA");
4ddc1b28
CY
1273 return -EINVAL;
1274 }
4b2414d0 1275#endif
5298d4bf 1276#if !IS_ENABLED(CONFIG_UNICODE)
5aba5430
DR
1277 if (f2fs_sb_has_casefold(sbi)) {
1278 f2fs_err(sbi,
1279 "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
1280 return -EINVAL;
1281 }
1282#endif
d0660122
CY
1283 /*
1284 * The BLKZONED feature indicates that the drive was formatted with
1285 * zone alignment optimization. This is optional for host-aware
1286 * devices, but mandatory for host-managed zoned block devices.
1287 */
1288#ifndef CONFIG_BLK_DEV_ZONED
1289 if (f2fs_sb_has_blkzoned(sbi)) {
1290 f2fs_err(sbi, "Zoned block device support is not enabled");
1291 return -EINVAL;
1292 }
1293#endif
4f993264
CY
1294 if (f2fs_sb_has_blkzoned(sbi)) {
1295 if (F2FS_OPTION(sbi).discard_unit !=
1296 DISCARD_UNIT_SECTION) {
1297 f2fs_info(sbi, "Zoned block device doesn't need small discard, set discard_unit=section by default");
1298 F2FS_OPTION(sbi).discard_unit =
1299 DISCARD_UNIT_SECTION;
1300 }
1301 }
ec91538d 1302
151b1982
FC
1303#ifdef CONFIG_F2FS_FS_COMPRESSION
1304 if (f2fs_test_compress_extension(sbi)) {
1305 f2fs_err(sbi, "invalid compress or nocompress extension");
1306 return -EINVAL;
1307 }
1308#endif
1309
b0332a0f 1310 if (F2FS_IO_SIZE_BITS(sbi) && !f2fs_lfs_mode(sbi)) {
dcbb4c10
JP
1311 f2fs_err(sbi, "Should set mode=lfs with %uKB-sized IO",
1312 F2FS_IO_SIZE_KB(sbi));
ec91538d
JK
1313 return -EINVAL;
1314 }
6afc662e
CY
1315
1316 if (test_opt(sbi, INLINE_XATTR_SIZE)) {
70db5b04
JK
1317 int min_size, max_size;
1318
7beb01f7
CY
1319 if (!f2fs_sb_has_extra_attr(sbi) ||
1320 !f2fs_sb_has_flexible_inline_xattr(sbi)) {
dcbb4c10 1321 f2fs_err(sbi, "extra_attr or flexible_inline_xattr feature is off");
4d817ae0
CY
1322 return -EINVAL;
1323 }
6afc662e 1324 if (!test_opt(sbi, INLINE_XATTR)) {
dcbb4c10 1325 f2fs_err(sbi, "inline_xattr_size option should be set with inline_xattr option");
6afc662e
CY
1326 return -EINVAL;
1327 }
70db5b04
JK
1328
1329 min_size = sizeof(struct f2fs_xattr_header) / sizeof(__le32);
dd6c89b5 1330 max_size = MAX_INLINE_XATTR_SIZE;
70db5b04
JK
1331
1332 if (F2FS_OPTION(sbi).inline_xattr_size < min_size ||
1333 F2FS_OPTION(sbi).inline_xattr_size > max_size) {
dcbb4c10
JP
1334 f2fs_err(sbi, "inline xattr size is out of range: %d ~ %d",
1335 min_size, max_size);
6afc662e
CY
1336 return -EINVAL;
1337 }
1338 }
0cdd3195 1339
b0332a0f 1340 if (test_opt(sbi, DISABLE_CHECKPOINT) && f2fs_lfs_mode(sbi)) {
833dcd35 1341 f2fs_err(sbi, "LFS not compatible with checkpoint=disable");
4354994f
DR
1342 return -EINVAL;
1343 }
1344
80dc113a
JK
1345 if (test_opt(sbi, ATGC) && f2fs_lfs_mode(sbi)) {
1346 f2fs_err(sbi, "LFS not compatible with ATGC");
1347 return -EINVAL;
1348 }
1349
a7d9fe3c
JK
1350 if (f2fs_sb_has_readonly(sbi) && !f2fs_readonly(sbi->sb)) {
1351 f2fs_err(sbi, "Allow to mount readonly mode only");
1352 return -EROFS;
1353 }
696c018c
NJ
1354 return 0;
1355}
1356
aff063e2
JK
1357static struct inode *f2fs_alloc_inode(struct super_block *sb)
1358{
1359 struct f2fs_inode_info *fi;
1360
65d3af64
MS
1361 if (time_to_inject(F2FS_SB(sb), FAULT_SLAB_ALLOC)) {
1362 f2fs_show_injection_info(F2FS_SB(sb), FAULT_SLAB_ALLOC);
1363 return NULL;
1364 }
1365
1366 fi = alloc_inode_sb(sb, f2fs_inode_cachep, GFP_F2FS_ZERO);
aff063e2
JK
1367 if (!fi)
1368 return NULL;
1369
1370 init_once((void *) fi);
1371
434720fa 1372 /* Initialize f2fs-specific inode info */
204706c7 1373 atomic_set(&fi->dirty_pages, 0);
c2759eba 1374 atomic_set(&fi->i_compr_blocks, 0);
e4544b63 1375 init_f2fs_rwsem(&fi->i_sem);
c10c9820 1376 spin_lock_init(&fi->i_size_lock);
2710fd7e 1377 INIT_LIST_HEAD(&fi->dirty_list);
0f18b462 1378 INIT_LIST_HEAD(&fi->gdirty_list);
e4544b63
TM
1379 init_f2fs_rwsem(&fi->i_gc_rwsem[READ]);
1380 init_f2fs_rwsem(&fi->i_gc_rwsem[WRITE]);
1381 init_f2fs_rwsem(&fi->i_xattr_sem);
aff063e2 1382
ab9fa662
JK
1383 /* Will be used by directory only */
1384 fi->i_dir_level = F2FS_SB(sb)->dir_level;
f2470371 1385
aff063e2
JK
1386 return &fi->vfs_inode;
1387}
1388
531ad7d5
JK
1389static int f2fs_drop_inode(struct inode *inode)
1390{
a8933b6b 1391 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
b8d96a30 1392 int ret;
a8933b6b
CY
1393
1394 /*
1395 * during filesystem shutdown, if checkpoint is disabled,
1396 * drop useless meta/node dirty pages.
1397 */
1398 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
1399 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1400 inode->i_ino == F2FS_META_INO(sbi)) {
1401 trace_f2fs_drop_inode(inode, 1);
1402 return 1;
1403 }
1404 }
1405
531ad7d5
JK
1406 /*
1407 * This is to avoid a deadlock condition like below.
1408 * writeback_single_inode(inode)
1409 * - f2fs_write_data_page
1410 * - f2fs_gc -> iput -> evict
1411 * - inode_wait_for_writeback(inode)
1412 */
0f18b462 1413 if ((!inode_unhashed(inode) && inode->i_state & I_SYNC)) {
06e1bc05 1414 if (!inode->i_nlink && !is_bad_inode(inode)) {
3e72f721
JK
1415 /* to avoid evict_inode call simultaneously */
1416 atomic_inc(&inode->i_count);
06e1bc05
JK
1417 spin_unlock(&inode->i_lock);
1418
e53f8643 1419 f2fs_abort_atomic_write(inode, true);
06e1bc05 1420
3e72f721
JK
1421 /* should remain fi->extent_tree for writepage */
1422 f2fs_destroy_extent_node(inode);
1423
06e1bc05 1424 sb_start_intwrite(inode->i_sb);
fc9581c8 1425 f2fs_i_size_write(inode, 0);
06e1bc05 1426
a0770e13 1427 f2fs_submit_merged_write_cond(F2FS_I_SB(inode),
1428 inode, NULL, 0, DATA);
1429 truncate_inode_pages_final(inode->i_mapping);
1430
06e1bc05 1431 if (F2FS_HAS_BLOCKS(inode))
9a449e9c 1432 f2fs_truncate(inode);
06e1bc05
JK
1433
1434 sb_end_intwrite(inode->i_sb);
1435
06e1bc05 1436 spin_lock(&inode->i_lock);
3e72f721 1437 atomic_dec(&inode->i_count);
06e1bc05 1438 }
b8d96a30 1439 trace_f2fs_drop_inode(inode, 0);
531ad7d5 1440 return 0;
06e1bc05 1441 }
b8d96a30 1442 ret = generic_drop_inode(inode);
8ce589c7
EB
1443 if (!ret)
1444 ret = fscrypt_drop_inode(inode);
b8d96a30
HP
1445 trace_f2fs_drop_inode(inode, ret);
1446 return ret;
531ad7d5
JK
1447}
1448
7c45729a 1449int f2fs_inode_dirtied(struct inode *inode, bool sync)
b3783873 1450{
0f18b462 1451 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
7c45729a 1452 int ret = 0;
0f18b462 1453
0f18b462
JK
1454 spin_lock(&sbi->inode_lock[DIRTY_META]);
1455 if (is_inode_flag_set(inode, FI_DIRTY_INODE)) {
7c45729a
JK
1456 ret = 1;
1457 } else {
1458 set_inode_flag(inode, FI_DIRTY_INODE);
1459 stat_inc_dirty_inode(sbi, DIRTY_META);
0f18b462 1460 }
7c45729a
JK
1461 if (sync && list_empty(&F2FS_I(inode)->gdirty_list)) {
1462 list_add_tail(&F2FS_I(inode)->gdirty_list,
0f18b462 1463 &sbi->inode_list[DIRTY_META]);
7c45729a
JK
1464 inc_page_count(sbi, F2FS_DIRTY_IMETA);
1465 }
338bbfa0 1466 spin_unlock(&sbi->inode_lock[DIRTY_META]);
7c45729a 1467 return ret;
0f18b462
JK
1468}
1469
1470void f2fs_inode_synced(struct inode *inode)
1471{
1472 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1473
1474 spin_lock(&sbi->inode_lock[DIRTY_META]);
1475 if (!is_inode_flag_set(inode, FI_DIRTY_INODE)) {
1476 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1477 return;
1478 }
7c45729a
JK
1479 if (!list_empty(&F2FS_I(inode)->gdirty_list)) {
1480 list_del_init(&F2FS_I(inode)->gdirty_list);
1481 dec_page_count(sbi, F2FS_DIRTY_IMETA);
1482 }
0f18b462 1483 clear_inode_flag(inode, FI_DIRTY_INODE);
26de9b11 1484 clear_inode_flag(inode, FI_AUTO_RECOVER);
0f18b462 1485 stat_dec_dirty_inode(F2FS_I_SB(inode), DIRTY_META);
338bbfa0 1486 spin_unlock(&sbi->inode_lock[DIRTY_META]);
b3783873
JK
1487}
1488
b56ab837
JK
1489/*
1490 * f2fs_dirty_inode() is called from __mark_inode_dirty()
1491 *
1492 * We should call set_dirty_inode to write the dirty inode through write_inode.
1493 */
1494static void f2fs_dirty_inode(struct inode *inode, int flags)
1495{
1496 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1497
1498 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1499 inode->i_ino == F2FS_META_INO(sbi))
1500 return;
1501
b56ab837
JK
1502 if (is_inode_flag_set(inode, FI_AUTO_RECOVER))
1503 clear_inode_flag(inode, FI_AUTO_RECOVER);
1504
7c45729a 1505 f2fs_inode_dirtied(inode, false);
b56ab837
JK
1506}
1507
d01718a0 1508static void f2fs_free_inode(struct inode *inode)
aff063e2 1509{
2c58d548 1510 fscrypt_free_inode(inode);
aff063e2
JK
1511 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
1512}
1513
523be8a6
JK
1514static void destroy_percpu_info(struct f2fs_sb_info *sbi)
1515{
513c5f37 1516 percpu_counter_destroy(&sbi->total_valid_inode_count);
47c8ebcc
JK
1517 percpu_counter_destroy(&sbi->rf_node_block_count);
1518 percpu_counter_destroy(&sbi->alloc_valid_block_count);
523be8a6
JK
1519}
1520
3c62be17
JK
1521static void destroy_device_list(struct f2fs_sb_info *sbi)
1522{
1523 int i;
1524
1525 for (i = 0; i < sbi->s_ndevs; i++) {
1526 blkdev_put(FDEV(i).bdev, FMODE_EXCL);
1527#ifdef CONFIG_BLK_DEV_ZONED
95175daf 1528 kvfree(FDEV(i).blkz_seq);
3c62be17
JK
1529#endif
1530 }
5222595d 1531 kvfree(sbi->devs);
3c62be17
JK
1532}
1533
aff063e2
JK
1534static void f2fs_put_super(struct super_block *sb)
1535{
1536 struct f2fs_sb_info *sbi = F2FS_SB(sb);
a398101a 1537 int i;
cf5c759f 1538 bool dropped;
aff063e2 1539
99c787cf
LG
1540 /* unregister procfs/sysfs entries in advance to avoid race case */
1541 f2fs_unregister_sysfs(sbi);
1542
0abd675e 1543 f2fs_quota_off_umount(sb);
aff063e2 1544
2658e50d
JK
1545 /* prevent remaining shrinker jobs */
1546 mutex_lock(&sbi->umount_mutex);
1547
261eeb9c
DJ
1548 /*
1549 * flush all issued checkpoints and stop checkpoint issue thread.
1550 * after then, all checkpoints should be done by each process context.
1551 */
1552 f2fs_stop_ckpt_thread(sbi);
1553
85dc2f2c
JK
1554 /*
1555 * We don't need to do checkpoint when superblock is clean.
1556 * But, the previous checkpoint was not done by umount, it needs to do
1557 * clean checkpoint again.
1558 */
4354994f
DR
1559 if ((is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
1560 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG))) {
75ab4cb8
JK
1561 struct cp_control cpc = {
1562 .reason = CP_UMOUNT,
1563 };
4d57b86d 1564 f2fs_write_checkpoint(sbi, &cpc);
75ab4cb8 1565 }
aff063e2 1566
4e6a8d9b 1567 /* be sure to wait for any on-going discard commands */
03f2c02d 1568 dropped = f2fs_issue_discard_timeout(sbi);
4e6a8d9b 1569
7d20c8ab
CY
1570 if ((f2fs_hw_support_discard(sbi) || f2fs_hw_should_discard(sbi)) &&
1571 !sbi->discard_blks && !dropped) {
1f43e2ad
CY
1572 struct cp_control cpc = {
1573 .reason = CP_UMOUNT | CP_TRIMMED,
1574 };
4d57b86d 1575 f2fs_write_checkpoint(sbi, &cpc);
1f43e2ad
CY
1576 }
1577
cf779cab
JK
1578 /*
1579 * normally superblock is clean, so we need to release this.
1580 * In addition, EIO will skip do checkpoint, we need this as well.
1581 */
4d57b86d 1582 f2fs_release_ino_entry(sbi, true);
6f12ac25 1583
2658e50d
JK
1584 f2fs_leave_shrinker(sbi);
1585 mutex_unlock(&sbi->umount_mutex);
1586
17c19120 1587 /* our cp_error case, we can wait for any writeback page */
b9109b0e 1588 f2fs_flush_merged_writes(sbi);
17c19120 1589
bf22c3cc 1590 f2fs_wait_on_all_pages(sbi, F2FS_WB_CP_DATA);
50fa53ec
CY
1591
1592 f2fs_bug_on(sbi, sbi->fsync_node_num);
1593
6ce19aff
CY
1594 f2fs_destroy_compress_inode(sbi);
1595
aff063e2 1596 iput(sbi->node_inode);
7c77bf7d
JK
1597 sbi->node_inode = NULL;
1598
aff063e2 1599 iput(sbi->meta_inode);
7c77bf7d 1600 sbi->meta_inode = NULL;
aff063e2 1601
60aa4d55
ST
1602 /*
1603 * iput() can update stat information, if f2fs_write_checkpoint()
1604 * above failed with error.
1605 */
1606 f2fs_destroy_stats(sbi);
1607
aff063e2 1608 /* destroy f2fs internal modules */
4d57b86d
CY
1609 f2fs_destroy_node_manager(sbi);
1610 f2fs_destroy_segment_manager(sbi);
aff063e2 1611
4c8ff709
CY
1612 f2fs_destroy_post_read_wq(sbi);
1613
5222595d 1614 kvfree(sbi->ckpt);
a398101a 1615
aff063e2 1616 sb->s_fs_info = NULL;
43b6573b
KM
1617 if (sbi->s_chksum_driver)
1618 crypto_free_shash(sbi->s_chksum_driver);
742532d1 1619 kfree(sbi->raw_super);
523be8a6 1620
3c62be17 1621 destroy_device_list(sbi);
31083031 1622 f2fs_destroy_page_array_cache(sbi);
a999150f 1623 f2fs_destroy_xattr_caches(sbi);
b6895e8f 1624 mempool_destroy(sbi->write_io_dummy);
4b2414d0
CY
1625#ifdef CONFIG_QUOTA
1626 for (i = 0; i < MAXQUOTAS; i++)
ba87a45c 1627 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
4b2414d0 1628#endif
ac4acb1f 1629 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
523be8a6 1630 destroy_percpu_info(sbi);
a4b68176 1631 f2fs_destroy_iostat(sbi);
a912b54d 1632 for (i = 0; i < NR_PAGE_TYPE; i++)
5222595d 1633 kvfree(sbi->write_io[i]);
5298d4bf 1634#if IS_ENABLED(CONFIG_UNICODE)
eca4873e 1635 utf8_unload(sb->s_encoding);
5aba5430 1636#endif
742532d1 1637 kfree(sbi);
aff063e2
JK
1638}
1639
1640int f2fs_sync_fs(struct super_block *sb, int sync)
1641{
1642 struct f2fs_sb_info *sbi = F2FS_SB(sb);
c34f42e2 1643 int err = 0;
aff063e2 1644
1f227a3e
JK
1645 if (unlikely(f2fs_cp_error(sbi)))
1646 return 0;
4354994f
DR
1647 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
1648 return 0;
1f227a3e 1649
a2a4a7e4
NJ
1650 trace_f2fs_sync_fs(sb, sync);
1651
4b2414d0
CY
1652 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
1653 return -EAGAIN;
1654
261eeb9c
DJ
1655 if (sync)
1656 err = f2fs_issue_checkpoint(sbi);
119ee914 1657
c34f42e2 1658 return err;
aff063e2
JK
1659}
1660
d6212a5f
CL
1661static int f2fs_freeze(struct super_block *sb)
1662{
77888c1e 1663 if (f2fs_readonly(sb))
d6212a5f
CL
1664 return 0;
1665
b4b9d34c
JK
1666 /* IO error happened before */
1667 if (unlikely(f2fs_cp_error(F2FS_SB(sb))))
1668 return -EIO;
1669
1670 /* must be clean, since sync_filesystem() was already called */
1671 if (is_sbi_flag_set(F2FS_SB(sb), SBI_IS_DIRTY))
1672 return -EINVAL;
d50dfc0c 1673
c7b58576
JK
1674 /* Let's flush checkpoints and stop the thread. */
1675 f2fs_flush_ckpt_thread(F2FS_SB(sb));
ba900534
JK
1676
1677 /* to avoid deadlock on f2fs_evict_inode->SB_FREEZE_FS */
1678 set_sbi_flag(F2FS_SB(sb), SBI_IS_FREEZING);
b4b9d34c 1679 return 0;
d6212a5f
CL
1680}
1681
1682static int f2fs_unfreeze(struct super_block *sb)
1683{
ba900534 1684 clear_sbi_flag(F2FS_SB(sb), SBI_IS_FREEZING);
d6212a5f
CL
1685 return 0;
1686}
1687
ddc34e32
CY
1688#ifdef CONFIG_QUOTA
1689static int f2fs_statfs_project(struct super_block *sb,
1690 kprojid_t projid, struct kstatfs *buf)
1691{
1692 struct kqid qid;
1693 struct dquot *dquot;
1694 u64 limit;
1695 u64 curblock;
1696
1697 qid = make_kqid_projid(projid);
1698 dquot = dqget(sb, qid);
1699 if (IS_ERR(dquot))
1700 return PTR_ERR(dquot);
955ac6e5 1701 spin_lock(&dquot->dq_dqb_lock);
ddc34e32 1702
bf2cbd3c
CX
1703 limit = min_not_zero(dquot->dq_dqb.dqb_bsoftlimit,
1704 dquot->dq_dqb.dqb_bhardlimit);
acdf2172
CX
1705 if (limit)
1706 limit >>= sb->s_blocksize_bits;
909110c0 1707
ddc34e32 1708 if (limit && buf->f_blocks > limit) {
baaa7ebf
KK
1709 curblock = (dquot->dq_dqb.dqb_curspace +
1710 dquot->dq_dqb.dqb_rsvspace) >> sb->s_blocksize_bits;
ddc34e32
CY
1711 buf->f_blocks = limit;
1712 buf->f_bfree = buf->f_bavail =
1713 (buf->f_blocks > curblock) ?
1714 (buf->f_blocks - curblock) : 0;
1715 }
1716
bf2cbd3c
CX
1717 limit = min_not_zero(dquot->dq_dqb.dqb_isoftlimit,
1718 dquot->dq_dqb.dqb_ihardlimit);
909110c0 1719
ddc34e32
CY
1720 if (limit && buf->f_files > limit) {
1721 buf->f_files = limit;
1722 buf->f_ffree =
1723 (buf->f_files > dquot->dq_dqb.dqb_curinodes) ?
1724 (buf->f_files - dquot->dq_dqb.dqb_curinodes) : 0;
1725 }
1726
955ac6e5 1727 spin_unlock(&dquot->dq_dqb_lock);
ddc34e32
CY
1728 dqput(dquot);
1729 return 0;
1730}
1731#endif
1732
aff063e2
JK
1733static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
1734{
1735 struct super_block *sb = dentry->d_sb;
1736 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1737 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
f66c027e 1738 block_t total_count, user_block_count, start_count;
0cc091d0 1739 u64 avail_node_count;
4de85145 1740 unsigned int total_valid_node_count;
aff063e2
JK
1741
1742 total_count = le64_to_cpu(sbi->raw_super->block_count);
aff063e2 1743 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
aff063e2
JK
1744 buf->f_type = F2FS_SUPER_MAGIC;
1745 buf->f_bsize = sbi->blocksize;
1746
1747 buf->f_blocks = total_count - start_count;
4de85145
ND
1748
1749 spin_lock(&sbi->stat_lock);
1750
1751 user_block_count = sbi->user_block_count;
1752 total_valid_node_count = valid_node_count(sbi);
1753 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
f66c027e 1754 buf->f_bfree = user_block_count - valid_user_blocks(sbi) -
80d42145 1755 sbi->current_reserved_blocks;
c9c8ed50 1756
4354994f
DR
1757 if (unlikely(buf->f_bfree <= sbi->unusable_block_count))
1758 buf->f_bfree = 0;
1759 else
1760 buf->f_bfree -= sbi->unusable_block_count;
c9c8ed50 1761 spin_unlock(&sbi->stat_lock);
4354994f 1762
63189b78
CY
1763 if (buf->f_bfree > F2FS_OPTION(sbi).root_reserved_blocks)
1764 buf->f_bavail = buf->f_bfree -
1765 F2FS_OPTION(sbi).root_reserved_blocks;
7e65be49
JK
1766 else
1767 buf->f_bavail = 0;
aff063e2 1768
0cc091d0
JK
1769 if (avail_node_count > user_block_count) {
1770 buf->f_files = user_block_count;
1771 buf->f_ffree = buf->f_bavail;
1772 } else {
1773 buf->f_files = avail_node_count;
4de85145 1774 buf->f_ffree = min(avail_node_count - total_valid_node_count,
0cc091d0
JK
1775 buf->f_bavail);
1776 }
aff063e2 1777
5a20d339 1778 buf->f_namelen = F2FS_NAME_LEN;
6d1349c7 1779 buf->f_fsid = u64_to_fsid(id);
aff063e2 1780
ddc34e32
CY
1781#ifdef CONFIG_QUOTA
1782 if (is_inode_flag_set(dentry->d_inode, FI_PROJ_INHERIT) &&
1783 sb_has_quota_limits_enabled(sb, PRJQUOTA)) {
1784 f2fs_statfs_project(sb, F2FS_I(dentry->d_inode)->i_projid, buf);
1785 }
1786#endif
aff063e2
JK
1787 return 0;
1788}
1789
4b2414d0
CY
1790static inline void f2fs_show_quota_options(struct seq_file *seq,
1791 struct super_block *sb)
1792{
1793#ifdef CONFIG_QUOTA
1794 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1795
63189b78 1796 if (F2FS_OPTION(sbi).s_jquota_fmt) {
4b2414d0
CY
1797 char *fmtname = "";
1798
63189b78 1799 switch (F2FS_OPTION(sbi).s_jquota_fmt) {
4b2414d0
CY
1800 case QFMT_VFS_OLD:
1801 fmtname = "vfsold";
1802 break;
1803 case QFMT_VFS_V0:
1804 fmtname = "vfsv0";
1805 break;
1806 case QFMT_VFS_V1:
1807 fmtname = "vfsv1";
1808 break;
1809 }
1810 seq_printf(seq, ",jqfmt=%s", fmtname);
1811 }
1812
63189b78
CY
1813 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
1814 seq_show_option(seq, "usrjquota",
1815 F2FS_OPTION(sbi).s_qf_names[USRQUOTA]);
4b2414d0 1816
63189b78
CY
1817 if (F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
1818 seq_show_option(seq, "grpjquota",
1819 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA]);
4b2414d0 1820
63189b78
CY
1821 if (F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
1822 seq_show_option(seq, "prjjquota",
1823 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]);
4b2414d0
CY
1824#endif
1825}
1826
cd6ee739 1827#ifdef CONFIG_F2FS_FS_COMPRESSION
4c8ff709
CY
1828static inline void f2fs_show_compress_options(struct seq_file *seq,
1829 struct super_block *sb)
1830{
1831 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1832 char *algtype = "";
1833 int i;
1834
1835 if (!f2fs_sb_has_compression(sbi))
1836 return;
1837
1838 switch (F2FS_OPTION(sbi).compress_algorithm) {
1839 case COMPRESS_LZO:
1840 algtype = "lzo";
1841 break;
1842 case COMPRESS_LZ4:
1843 algtype = "lz4";
1844 break;
50cfa66f
CY
1845 case COMPRESS_ZSTD:
1846 algtype = "zstd";
1847 break;
6d92b201
CY
1848 case COMPRESS_LZORLE:
1849 algtype = "lzo-rle";
1850 break;
4c8ff709
CY
1851 }
1852 seq_printf(seq, ",compress_algorithm=%s", algtype);
1853
3fde13f8
CY
1854 if (F2FS_OPTION(sbi).compress_level)
1855 seq_printf(seq, ":%d", F2FS_OPTION(sbi).compress_level);
1856
4c8ff709
CY
1857 seq_printf(seq, ",compress_log_size=%u",
1858 F2FS_OPTION(sbi).compress_log_size);
1859
1860 for (i = 0; i < F2FS_OPTION(sbi).compress_ext_cnt; i++) {
1861 seq_printf(seq, ",compress_extension=%s",
1862 F2FS_OPTION(sbi).extensions[i]);
1863 }
b28f047b 1864
151b1982
FC
1865 for (i = 0; i < F2FS_OPTION(sbi).nocompress_ext_cnt; i++) {
1866 seq_printf(seq, ",nocompress_extension=%s",
1867 F2FS_OPTION(sbi).noextensions[i]);
1868 }
1869
b28f047b
CY
1870 if (F2FS_OPTION(sbi).compress_chksum)
1871 seq_puts(seq, ",compress_chksum");
602a16d5
DJ
1872
1873 if (F2FS_OPTION(sbi).compress_mode == COMPR_MODE_FS)
1874 seq_printf(seq, ",compress_mode=%s", "fs");
1875 else if (F2FS_OPTION(sbi).compress_mode == COMPR_MODE_USER)
1876 seq_printf(seq, ",compress_mode=%s", "user");
6ce19aff
CY
1877
1878 if (test_opt(sbi, COMPRESS_CACHE))
1879 seq_puts(seq, ",compress_cache");
4c8ff709 1880}
cd6ee739 1881#endif
4c8ff709 1882
aff063e2
JK
1883static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
1884{
1885 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
1886
bbbc34fd
CY
1887 if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_SYNC)
1888 seq_printf(seq, ",background_gc=%s", "sync");
1889 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_ON)
1890 seq_printf(seq, ",background_gc=%s", "on");
1891 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF)
696c018c 1892 seq_printf(seq, ",background_gc=%s", "off");
bbbc34fd 1893
5911d2d1
CY
1894 if (test_opt(sbi, GC_MERGE))
1895 seq_puts(seq, ",gc_merge");
1896
aff063e2
JK
1897 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
1898 seq_puts(seq, ",disable_roll_forward");
a9117eca
CY
1899 if (test_opt(sbi, NORECOVERY))
1900 seq_puts(seq, ",norecovery");
aff063e2
JK
1901 if (test_opt(sbi, DISCARD))
1902 seq_puts(seq, ",discard");
81621f97
ST
1903 else
1904 seq_puts(seq, ",nodiscard");
aff063e2 1905 if (test_opt(sbi, NOHEAP))
7a20b8a6
JK
1906 seq_puts(seq, ",no_heap");
1907 else
1908 seq_puts(seq, ",heap");
aff063e2
JK
1909#ifdef CONFIG_F2FS_FS_XATTR
1910 if (test_opt(sbi, XATTR_USER))
1911 seq_puts(seq, ",user_xattr");
1912 else
1913 seq_puts(seq, ",nouser_xattr");
444c580f
JK
1914 if (test_opt(sbi, INLINE_XATTR))
1915 seq_puts(seq, ",inline_xattr");
23cf7212
CY
1916 else
1917 seq_puts(seq, ",noinline_xattr");
6afc662e
CY
1918 if (test_opt(sbi, INLINE_XATTR_SIZE))
1919 seq_printf(seq, ",inline_xattr_size=%u",
63189b78 1920 F2FS_OPTION(sbi).inline_xattr_size);
aff063e2
JK
1921#endif
1922#ifdef CONFIG_F2FS_FS_POSIX_ACL
1923 if (test_opt(sbi, POSIX_ACL))
1924 seq_puts(seq, ",acl");
1925 else
1926 seq_puts(seq, ",noacl");
1927#endif
1928 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
aa43507f 1929 seq_puts(seq, ",disable_ext_identify");
8274de77
HL
1930 if (test_opt(sbi, INLINE_DATA))
1931 seq_puts(seq, ",inline_data");
75342797
WL
1932 else
1933 seq_puts(seq, ",noinline_data");
5efd3c6f
CY
1934 if (test_opt(sbi, INLINE_DENTRY))
1935 seq_puts(seq, ",inline_dentry");
97c1794a
CY
1936 else
1937 seq_puts(seq, ",noinline_dentry");
b270ad6f 1938 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, FLUSH_MERGE))
6b4afdd7 1939 seq_puts(seq, ",flush_merge");
0f7b2abd
JK
1940 if (test_opt(sbi, NOBARRIER))
1941 seq_puts(seq, ",nobarrier");
d5053a34
JK
1942 if (test_opt(sbi, FASTBOOT))
1943 seq_puts(seq, ",fastboot");
89672159
CY
1944 if (test_opt(sbi, EXTENT_CACHE))
1945 seq_puts(seq, ",extent_cache");
7daaea25
JK
1946 else
1947 seq_puts(seq, ",noextent_cache");
343f40f0
CY
1948 if (test_opt(sbi, DATA_FLUSH))
1949 seq_puts(seq, ",data_flush");
36abef4e
JK
1950
1951 seq_puts(seq, ",mode=");
b0332a0f 1952 if (F2FS_OPTION(sbi).fs_mode == FS_MODE_ADAPTIVE)
36abef4e 1953 seq_puts(seq, "adaptive");
b0332a0f 1954 else if (F2FS_OPTION(sbi).fs_mode == FS_MODE_LFS)
36abef4e 1955 seq_puts(seq, "lfs");
6691d940
DJ
1956 else if (F2FS_OPTION(sbi).fs_mode == FS_MODE_FRAGMENT_SEG)
1957 seq_puts(seq, "fragment:segment");
1958 else if (F2FS_OPTION(sbi).fs_mode == FS_MODE_FRAGMENT_BLK)
1959 seq_puts(seq, "fragment:block");
63189b78 1960 seq_printf(seq, ",active_logs=%u", F2FS_OPTION(sbi).active_logs);
7e65be49 1961 if (test_opt(sbi, RESERVE_ROOT))
7c2e5963 1962 seq_printf(seq, ",reserve_root=%u,resuid=%u,resgid=%u",
63189b78
CY
1963 F2FS_OPTION(sbi).root_reserved_blocks,
1964 from_kuid_munged(&init_user_ns,
1965 F2FS_OPTION(sbi).s_resuid),
1966 from_kgid_munged(&init_user_ns,
1967 F2FS_OPTION(sbi).s_resgid));
ec91538d 1968 if (F2FS_IO_SIZE_BITS(sbi))
c6b1867b
CX
1969 seq_printf(seq, ",io_bits=%u",
1970 F2FS_OPTION(sbi).write_io_size_bits);
0cc0dec2 1971#ifdef CONFIG_F2FS_FAULT_INJECTION
d494500a 1972 if (test_opt(sbi, FAULT_INJECTION)) {
44529f89 1973 seq_printf(seq, ",fault_injection=%u",
63189b78 1974 F2FS_OPTION(sbi).fault_info.inject_rate);
d494500a
CY
1975 seq_printf(seq, ",fault_type=%u",
1976 F2FS_OPTION(sbi).fault_info.inject_type);
1977 }
0cc0dec2 1978#endif
0abd675e 1979#ifdef CONFIG_QUOTA
4b2414d0
CY
1980 if (test_opt(sbi, QUOTA))
1981 seq_puts(seq, ",quota");
0abd675e
CY
1982 if (test_opt(sbi, USRQUOTA))
1983 seq_puts(seq, ",usrquota");
1984 if (test_opt(sbi, GRPQUOTA))
1985 seq_puts(seq, ",grpquota");
5c57132e
CY
1986 if (test_opt(sbi, PRJQUOTA))
1987 seq_puts(seq, ",prjquota");
0cc0dec2 1988#endif
4b2414d0 1989 f2fs_show_quota_options(seq, sbi->sb);
ed318a6c
EB
1990
1991 fscrypt_show_test_dummy_encryption(seq, ',', sbi->sb);
aff063e2 1992
27aacd28
ST
1993 if (sbi->sb->s_flags & SB_INLINECRYPT)
1994 seq_puts(seq, ",inlinecrypt");
1995
63189b78 1996 if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_DEFAULT)
07939627 1997 seq_printf(seq, ",alloc_mode=%s", "default");
63189b78 1998 else if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_REUSE)
07939627 1999 seq_printf(seq, ",alloc_mode=%s", "reuse");
93cf93f1 2000
4354994f 2001 if (test_opt(sbi, DISABLE_CHECKPOINT))
4d3aed70
DR
2002 seq_printf(seq, ",checkpoint=disable:%u",
2003 F2FS_OPTION(sbi).unusable_cap);
261eeb9c
DJ
2004 if (test_opt(sbi, MERGE_CHECKPOINT))
2005 seq_puts(seq, ",checkpoint_merge");
2006 else
2007 seq_puts(seq, ",nocheckpoint_merge");
63189b78 2008 if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_POSIX)
93cf93f1 2009 seq_printf(seq, ",fsync_mode=%s", "posix");
63189b78 2010 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_STRICT)
93cf93f1 2011 seq_printf(seq, ",fsync_mode=%s", "strict");
dc132802
ST
2012 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_NOBARRIER)
2013 seq_printf(seq, ",fsync_mode=%s", "nobarrier");
4c8ff709 2014
1f0b067b 2015#ifdef CONFIG_F2FS_FS_COMPRESSION
4c8ff709 2016 f2fs_show_compress_options(seq, sbi->sb);
1f0b067b 2017#endif
093749e2
CY
2018
2019 if (test_opt(sbi, ATGC))
2020 seq_puts(seq, ",atgc");
4f993264
CY
2021
2022 if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_BLOCK)
2023 seq_printf(seq, ",discard_unit=%s", "block");
2024 else if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_SEGMENT)
2025 seq_printf(seq, ",discard_unit=%s", "segment");
2026 else if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_SECTION)
2027 seq_printf(seq, ",discard_unit=%s", "section");
2028
7a8fc586
DJ
2029 if (F2FS_OPTION(sbi).memory_mode == MEMORY_MODE_NORMAL)
2030 seq_printf(seq, ",memory=%s", "normal");
2031 else if (F2FS_OPTION(sbi).memory_mode == MEMORY_MODE_LOW)
2032 seq_printf(seq, ",memory=%s", "low");
2033
aff063e2
JK
2034 return 0;
2035}
2036
498c5e9f
YH
2037static void default_options(struct f2fs_sb_info *sbi)
2038{
2039 /* init some FS parameters */
a7d9fe3c
JK
2040 if (f2fs_sb_has_readonly(sbi))
2041 F2FS_OPTION(sbi).active_logs = NR_CURSEG_RO_TYPE;
2042 else
2043 F2FS_OPTION(sbi).active_logs = NR_CURSEG_PERSIST_TYPE;
2044
63189b78 2045 F2FS_OPTION(sbi).inline_xattr_size = DEFAULT_INLINE_XATTR_ADDRS;
63189b78
CY
2046 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
2047 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
0aa7e0f8
CY
2048 F2FS_OPTION(sbi).s_resuid = make_kuid(&init_user_ns, F2FS_DEF_RESUID);
2049 F2FS_OPTION(sbi).s_resgid = make_kgid(&init_user_ns, F2FS_DEF_RESGID);
91faa534 2050 F2FS_OPTION(sbi).compress_algorithm = COMPRESS_LZ4;
4c8ff709
CY
2051 F2FS_OPTION(sbi).compress_log_size = MIN_COMPRESS_LOG_SIZE;
2052 F2FS_OPTION(sbi).compress_ext_cnt = 0;
602a16d5 2053 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_FS;
bbbc34fd 2054 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
7a8fc586 2055 F2FS_OPTION(sbi).memory_mode = MEMORY_MODE_NORMAL;
498c5e9f 2056
27aacd28
ST
2057 sbi->sb->s_flags &= ~SB_INLINECRYPT;
2058
39133a50 2059 set_opt(sbi, INLINE_XATTR);
498c5e9f 2060 set_opt(sbi, INLINE_DATA);
97c1794a 2061 set_opt(sbi, INLINE_DENTRY);
3e72f721 2062 set_opt(sbi, EXTENT_CACHE);
7a20b8a6 2063 set_opt(sbi, NOHEAP);
4354994f 2064 clear_opt(sbi, DISABLE_CHECKPOINT);
b5d15199 2065 set_opt(sbi, MERGE_CHECKPOINT);
4d3aed70 2066 F2FS_OPTION(sbi).unusable_cap = 0;
1751e8a6 2067 sbi->sb->s_flags |= SB_LAZYTIME;
69e9e427 2068 set_opt(sbi, FLUSH_MERGE);
f7db8dd6
CY
2069 if (f2fs_hw_support_discard(sbi) || f2fs_hw_should_discard(sbi))
2070 set_opt(sbi, DISCARD);
4f993264 2071 if (f2fs_sb_has_blkzoned(sbi)) {
b0332a0f 2072 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
4f993264
CY
2073 F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_SECTION;
2074 } else {
b0332a0f 2075 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
4f993264
CY
2076 F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_BLOCK;
2077 }
498c5e9f
YH
2078
2079#ifdef CONFIG_F2FS_FS_XATTR
2080 set_opt(sbi, XATTR_USER);
2081#endif
2082#ifdef CONFIG_F2FS_FS_POSIX_ACL
2083 set_opt(sbi, POSIX_ACL);
2084#endif
36dbd328 2085
d494500a 2086 f2fs_build_fault_attr(sbi, 0, 0);
498c5e9f
YH
2087}
2088
ea676733
JK
2089#ifdef CONFIG_QUOTA
2090static int f2fs_enable_quotas(struct super_block *sb);
2091#endif
4354994f
DR
2092
2093static int f2fs_disable_checkpoint(struct f2fs_sb_info *sbi)
2094{
812a9597 2095 unsigned int s_flags = sbi->sb->s_flags;
4354994f 2096 struct cp_control cpc;
2880f47b 2097 unsigned int gc_mode = sbi->gc_mode;
812a9597
JK
2098 int err = 0;
2099 int ret;
4d3aed70 2100 block_t unusable;
4354994f 2101
812a9597 2102 if (s_flags & SB_RDONLY) {
dcbb4c10 2103 f2fs_err(sbi, "checkpoint=disable on readonly fs");
812a9597
JK
2104 return -EINVAL;
2105 }
4354994f
DR
2106 sbi->sb->s_flags |= SB_ACTIVE;
2107
2880f47b
WG
2108 /* check if we need more GC first */
2109 unusable = f2fs_get_unusable_blocks(sbi);
2110 if (!f2fs_disable_cp_again(sbi, unusable))
2111 goto skip_gc;
2112
4354994f
DR
2113 f2fs_update_time(sbi, DISABLE_TIME);
2114
98e92867
CY
2115 sbi->gc_mode = GC_URGENT_HIGH;
2116
4354994f 2117 while (!f2fs_time_over(sbi, DISABLE_TIME)) {
d147ea4a
JK
2118 struct f2fs_gc_control gc_control = {
2119 .victim_segno = NULL_SEGNO,
2120 .init_gc_type = FG_GC,
2121 .should_migrate_blocks = false,
c81d5bae
JK
2122 .err_gc_skipped = true,
2123 .nr_free_secs = 1 };
d147ea4a 2124
e4544b63 2125 f2fs_down_write(&sbi->gc_lock);
d147ea4a 2126 err = f2fs_gc(sbi, &gc_control);
812a9597
JK
2127 if (err == -ENODATA) {
2128 err = 0;
4354994f 2129 break;
812a9597 2130 }
8f31b466 2131 if (err && err != -EAGAIN)
812a9597 2132 break;
4354994f 2133 }
4354994f 2134
812a9597
JK
2135 ret = sync_filesystem(sbi->sb);
2136 if (ret || err) {
5f029c04 2137 err = ret ? ret : err;
812a9597
JK
2138 goto restore_flag;
2139 }
4354994f 2140
4d3aed70
DR
2141 unusable = f2fs_get_unusable_blocks(sbi);
2142 if (f2fs_disable_cp_again(sbi, unusable)) {
812a9597
JK
2143 err = -EAGAIN;
2144 goto restore_flag;
2145 }
4354994f 2146
2880f47b 2147skip_gc:
e4544b63 2148 f2fs_down_write(&sbi->gc_lock);
4354994f
DR
2149 cpc.reason = CP_PAUSE;
2150 set_sbi_flag(sbi, SBI_CP_DISABLED);
896285ad
CY
2151 err = f2fs_write_checkpoint(sbi, &cpc);
2152 if (err)
2153 goto out_unlock;
4354994f 2154
c9c8ed50 2155 spin_lock(&sbi->stat_lock);
4d3aed70 2156 sbi->unusable_block_count = unusable;
c9c8ed50
CY
2157 spin_unlock(&sbi->stat_lock);
2158
896285ad 2159out_unlock:
e4544b63 2160 f2fs_up_write(&sbi->gc_lock);
812a9597 2161restore_flag:
98e92867 2162 sbi->gc_mode = gc_mode;
7a88ddb5 2163 sbi->sb->s_flags = s_flags; /* Restore SB_RDONLY status */
812a9597 2164 return err;
4354994f
DR
2165}
2166
2167static void f2fs_enable_checkpoint(struct f2fs_sb_info *sbi)
2168{
dddd3d65
JK
2169 int retry = DEFAULT_RETRY_IO_COUNT;
2170
b0ff4fe7 2171 /* we should flush all the data to keep data consistency */
dddd3d65
JK
2172 do {
2173 sync_inodes_sb(sbi->sb);
a64239d0 2174 f2fs_io_schedule_timeout(DEFAULT_IO_TIMEOUT);
dddd3d65
JK
2175 } while (get_pages(sbi, F2FS_DIRTY_DATA) && retry--);
2176
2177 if (unlikely(retry < 0))
2178 f2fs_warn(sbi, "checkpoint=enable has some unwritten data.");
b0ff4fe7 2179
e4544b63 2180 f2fs_down_write(&sbi->gc_lock);
4354994f
DR
2181 f2fs_dirty_to_prefree(sbi);
2182
2183 clear_sbi_flag(sbi, SBI_CP_DISABLED);
2184 set_sbi_flag(sbi, SBI_IS_DIRTY);
e4544b63 2185 f2fs_up_write(&sbi->gc_lock);
4354994f
DR
2186
2187 f2fs_sync_fs(sbi->sb, 1);
4f99484d
JK
2188
2189 /* Let's ensure there's no pending checkpoint anymore */
2190 f2fs_flush_ckpt_thread(sbi);
4354994f
DR
2191}
2192
696c018c
NJ
2193static int f2fs_remount(struct super_block *sb, int *flags, char *data)
2194{
2195 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2196 struct f2fs_mount_info org_mount_opt;
0abd675e 2197 unsigned long old_sb_flags;
63189b78 2198 int err;
3fd97359
CY
2199 bool need_restart_gc = false, need_stop_gc = false;
2200 bool need_restart_ckpt = false, need_stop_ckpt = false;
2201 bool need_restart_flush = false, need_stop_flush = false;
4d674904 2202 bool need_restart_discard = false, need_stop_discard = false;
9cd81ce3 2203 bool no_extent_cache = !test_opt(sbi, EXTENT_CACHE);
277afbde 2204 bool enable_checkpoint = !test_opt(sbi, DISABLE_CHECKPOINT);
1f78adfa 2205 bool no_io_align = !F2FS_IO_ALIGNED(sbi);
093749e2 2206 bool no_atgc = !test_opt(sbi, ATGC);
4d674904 2207 bool no_discard = !test_opt(sbi, DISCARD);
6ce19aff 2208 bool no_compress_cache = !test_opt(sbi, COMPRESS_CACHE);
4f993264 2209 bool block_unit_discard = f2fs_block_unit_discard(sbi);
4d674904 2210 struct discard_cmd_control *dcc;
4b2414d0 2211#ifdef CONFIG_QUOTA
4b2414d0
CY
2212 int i, j;
2213#endif
696c018c
NJ
2214
2215 /*
2216 * Save the old mount options in case we
2217 * need to restore them.
2218 */
2219 org_mount_opt = sbi->mount_opt;
0abd675e 2220 old_sb_flags = sb->s_flags;
696c018c 2221
4b2414d0 2222#ifdef CONFIG_QUOTA
63189b78 2223 org_mount_opt.s_jquota_fmt = F2FS_OPTION(sbi).s_jquota_fmt;
4b2414d0 2224 for (i = 0; i < MAXQUOTAS; i++) {
63189b78
CY
2225 if (F2FS_OPTION(sbi).s_qf_names[i]) {
2226 org_mount_opt.s_qf_names[i] =
2227 kstrdup(F2FS_OPTION(sbi).s_qf_names[i],
2228 GFP_KERNEL);
2229 if (!org_mount_opt.s_qf_names[i]) {
4b2414d0 2230 for (j = 0; j < i; j++)
ba87a45c 2231 kfree(org_mount_opt.s_qf_names[j]);
4b2414d0
CY
2232 return -ENOMEM;
2233 }
2234 } else {
63189b78 2235 org_mount_opt.s_qf_names[i] = NULL;
4b2414d0
CY
2236 }
2237 }
2238#endif
2239
df728b0f 2240 /* recover superblocks we couldn't write due to previous RO mount */
1751e8a6 2241 if (!(*flags & SB_RDONLY) && is_sbi_flag_set(sbi, SBI_NEED_SB_WRITE)) {
df728b0f 2242 err = f2fs_commit_super(sbi, false);
dcbb4c10
JP
2243 f2fs_info(sbi, "Try to recover all the superblocks, ret: %d",
2244 err);
df728b0f
JK
2245 if (!err)
2246 clear_sbi_flag(sbi, SBI_NEED_SB_WRITE);
2247 }
2248
498c5e9f 2249 default_options(sbi);
26666c8a 2250
696c018c 2251 /* parse mount options */
ed318a6c 2252 err = parse_options(sb, data, true);
696c018c
NJ
2253 if (err)
2254 goto restore_opts;
2255
2256 /*
2257 * Previous and new state of filesystem is RO,
876dc59e 2258 * so skip checking GC and FLUSH_MERGE conditions.
696c018c 2259 */
1751e8a6 2260 if (f2fs_readonly(sb) && (*flags & SB_RDONLY))
696c018c
NJ
2261 goto skip;
2262
a7d9fe3c
JK
2263 if (f2fs_sb_has_readonly(sbi) && !(*flags & SB_RDONLY)) {
2264 err = -EROFS;
2265 goto restore_opts;
2266 }
2267
ea676733 2268#ifdef CONFIG_QUOTA
1751e8a6 2269 if (!f2fs_readonly(sb) && (*flags & SB_RDONLY)) {
0abd675e
CY
2270 err = dquot_suspend(sb, -1);
2271 if (err < 0)
2272 goto restore_opts;
4354994f 2273 } else if (f2fs_readonly(sb) && !(*flags & SB_RDONLY)) {
0abd675e 2274 /* dquot_resume needs RW */
1751e8a6 2275 sb->s_flags &= ~SB_RDONLY;
ea676733
JK
2276 if (sb_any_quota_suspended(sb)) {
2277 dquot_resume(sb, -1);
7beb01f7 2278 } else if (f2fs_sb_has_quota_ino(sbi)) {
ea676733
JK
2279 err = f2fs_enable_quotas(sb);
2280 if (err)
2281 goto restore_opts;
2282 }
0abd675e 2283 }
ea676733 2284#endif
093749e2
CY
2285 /* disallow enable atgc dynamically */
2286 if (no_atgc == !!test_opt(sbi, ATGC)) {
2287 err = -EINVAL;
2288 f2fs_warn(sbi, "switch atgc option is not allowed");
2289 goto restore_opts;
2290 }
2291
9cd81ce3
CY
2292 /* disallow enable/disable extent_cache dynamically */
2293 if (no_extent_cache == !!test_opt(sbi, EXTENT_CACHE)) {
2294 err = -EINVAL;
dcbb4c10 2295 f2fs_warn(sbi, "switch extent_cache option is not allowed");
9cd81ce3
CY
2296 goto restore_opts;
2297 }
2298
1f78adfa
CY
2299 if (no_io_align == !!F2FS_IO_ALIGNED(sbi)) {
2300 err = -EINVAL;
2301 f2fs_warn(sbi, "switch io_bits option is not allowed");
2302 goto restore_opts;
2303 }
2304
6ce19aff
CY
2305 if (no_compress_cache == !!test_opt(sbi, COMPRESS_CACHE)) {
2306 err = -EINVAL;
2307 f2fs_warn(sbi, "switch compress_cache option is not allowed");
2308 goto restore_opts;
2309 }
2310
4f993264
CY
2311 if (block_unit_discard != f2fs_block_unit_discard(sbi)) {
2312 err = -EINVAL;
2313 f2fs_warn(sbi, "switch discard_unit option is not allowed");
2314 goto restore_opts;
2315 }
2316
4354994f
DR
2317 if ((*flags & SB_RDONLY) && test_opt(sbi, DISABLE_CHECKPOINT)) {
2318 err = -EINVAL;
dcbb4c10 2319 f2fs_warn(sbi, "disabling checkpoint not compatible with read-only");
4354994f
DR
2320 goto restore_opts;
2321 }
2322
696c018c
NJ
2323 /*
2324 * We stop the GC thread if FS is mounted as RO
2325 * or if background_gc = off is passed in mount
2326 * option. Also sync the filesystem.
2327 */
bbbc34fd 2328 if ((*flags & SB_RDONLY) ||
5911d2d1
CY
2329 (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF &&
2330 !test_opt(sbi, GC_MERGE))) {
696c018c 2331 if (sbi->gc_thread) {
4d57b86d 2332 f2fs_stop_gc_thread(sbi);
876dc59e 2333 need_restart_gc = true;
696c018c 2334 }
aba291b3 2335 } else if (!sbi->gc_thread) {
4d57b86d 2336 err = f2fs_start_gc_thread(sbi);
696c018c
NJ
2337 if (err)
2338 goto restore_opts;
876dc59e
GZ
2339 need_stop_gc = true;
2340 }
2341
930e2607 2342 if (*flags & SB_RDONLY) {
faa0e55b
JK
2343 sync_inodes_sb(sb);
2344
2345 set_sbi_flag(sbi, SBI_IS_DIRTY);
2346 set_sbi_flag(sbi, SBI_IS_CLOSE);
2347 f2fs_sync_fs(sb, 1);
2348 clear_sbi_flag(sbi, SBI_IS_CLOSE);
2349 }
2350
3f7070b0
CY
2351 if ((*flags & SB_RDONLY) || test_opt(sbi, DISABLE_CHECKPOINT) ||
2352 !test_opt(sbi, MERGE_CHECKPOINT)) {
2353 f2fs_stop_ckpt_thread(sbi);
3fd97359 2354 need_restart_ckpt = true;
3f7070b0 2355 } else {
4f99484d
JK
2356 /* Flush if the prevous checkpoint, if exists. */
2357 f2fs_flush_ckpt_thread(sbi);
2358
261eeb9c
DJ
2359 err = f2fs_start_ckpt_thread(sbi);
2360 if (err) {
2361 f2fs_err(sbi,
2362 "Failed to start F2FS issue_checkpoint_thread (%d)",
2363 err);
2364 goto restore_gc;
2365 }
3fd97359 2366 need_stop_ckpt = true;
261eeb9c
DJ
2367 }
2368
876dc59e
GZ
2369 /*
2370 * We stop issue flush thread if FS is mounted as RO
2371 * or if flush_merge is not passed in mount option.
2372 */
1751e8a6 2373 if ((*flags & SB_RDONLY) || !test_opt(sbi, FLUSH_MERGE)) {
5eba8c5d 2374 clear_opt(sbi, FLUSH_MERGE);
4d57b86d 2375 f2fs_destroy_flush_cmd_control(sbi, false);
3fd97359 2376 need_restart_flush = true;
5eba8c5d 2377 } else {
4d57b86d 2378 err = f2fs_create_flush_cmd_control(sbi);
2163d198 2379 if (err)
3fd97359
CY
2380 goto restore_ckpt;
2381 need_stop_flush = true;
696c018c 2382 }
3fd97359 2383
4d674904
FC
2384 if (no_discard == !!test_opt(sbi, DISCARD)) {
2385 if (test_opt(sbi, DISCARD)) {
2386 err = f2fs_start_discard_thread(sbi);
2387 if (err)
2388 goto restore_flush;
2389 need_stop_discard = true;
2390 } else {
2391 dcc = SM_I(sbi)->dcc_info;
2392 f2fs_stop_discard_thread(sbi);
2393 if (atomic_read(&dcc->discard_cmd_cnt))
2394 f2fs_issue_discard_timeout(sbi);
2395 need_restart_discard = true;
2396 }
2397 }
2398
277afbde 2399 if (enable_checkpoint == !!test_opt(sbi, DISABLE_CHECKPOINT)) {
3fd97359
CY
2400 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
2401 err = f2fs_disable_checkpoint(sbi);
2402 if (err)
4d674904 2403 goto restore_discard;
3fd97359
CY
2404 } else {
2405 f2fs_enable_checkpoint(sbi);
2406 }
2407 }
2408
696c018c 2409skip:
4b2414d0
CY
2410#ifdef CONFIG_QUOTA
2411 /* Release old quota file names */
2412 for (i = 0; i < MAXQUOTAS; i++)
ba87a45c 2413 kfree(org_mount_opt.s_qf_names[i]);
4b2414d0 2414#endif
696c018c 2415 /* Update the POSIXACL Flag */
1751e8a6
LT
2416 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
2417 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
df728b0f 2418
7e65be49 2419 limit_reserve_root(sbi);
1ae18f71 2420 adjust_unusable_cap_perc(sbi);
095680f2 2421 *flags = (*flags & ~SB_LAZYTIME) | (sb->s_flags & SB_LAZYTIME);
696c018c 2422 return 0;
4d674904
FC
2423restore_discard:
2424 if (need_restart_discard) {
2425 if (f2fs_start_discard_thread(sbi))
2426 f2fs_warn(sbi, "discard has been stopped");
2427 } else if (need_stop_discard) {
2428 f2fs_stop_discard_thread(sbi);
2429 }
3fd97359
CY
2430restore_flush:
2431 if (need_restart_flush) {
2432 if (f2fs_create_flush_cmd_control(sbi))
2433 f2fs_warn(sbi, "background flush thread has stopped");
2434 } else if (need_stop_flush) {
2435 clear_opt(sbi, FLUSH_MERGE);
2436 f2fs_destroy_flush_cmd_control(sbi, false);
2437 }
2438restore_ckpt:
2439 if (need_restart_ckpt) {
2440 if (f2fs_start_ckpt_thread(sbi))
2441 f2fs_warn(sbi, "background ckpt thread has stopped");
2442 } else if (need_stop_ckpt) {
2443 f2fs_stop_ckpt_thread(sbi);
2444 }
876dc59e
GZ
2445restore_gc:
2446 if (need_restart_gc) {
4d57b86d 2447 if (f2fs_start_gc_thread(sbi))
dcbb4c10 2448 f2fs_warn(sbi, "background gc thread has stopped");
876dc59e 2449 } else if (need_stop_gc) {
4d57b86d 2450 f2fs_stop_gc_thread(sbi);
876dc59e 2451 }
696c018c 2452restore_opts:
4b2414d0 2453#ifdef CONFIG_QUOTA
63189b78 2454 F2FS_OPTION(sbi).s_jquota_fmt = org_mount_opt.s_jquota_fmt;
4b2414d0 2455 for (i = 0; i < MAXQUOTAS; i++) {
ba87a45c 2456 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
63189b78 2457 F2FS_OPTION(sbi).s_qf_names[i] = org_mount_opt.s_qf_names[i];
4b2414d0
CY
2458 }
2459#endif
696c018c 2460 sbi->mount_opt = org_mount_opt;
0abd675e 2461 sb->s_flags = old_sb_flags;
696c018c
NJ
2462 return err;
2463}
2464
0abd675e
CY
2465#ifdef CONFIG_QUOTA
2466/* Read data from quotafile */
2467static ssize_t f2fs_quota_read(struct super_block *sb, int type, char *data,
2468 size_t len, loff_t off)
2469{
2470 struct inode *inode = sb_dqopt(sb)->files[type];
2471 struct address_space *mapping = inode->i_mapping;
2472 block_t blkidx = F2FS_BYTES_TO_BLK(off);
2473 int offset = off & (sb->s_blocksize - 1);
2474 int tocopy;
2475 size_t toread;
2476 loff_t i_size = i_size_read(inode);
2477 struct page *page;
0abd675e
CY
2478
2479 if (off > i_size)
2480 return 0;
2481
2482 if (off + len > i_size)
2483 len = i_size - off;
2484 toread = len;
2485 while (toread > 0) {
2486 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread);
2487repeat:
02117b8a 2488 page = read_cache_page_gfp(mapping, blkidx, GFP_NOFS);
4e46a023
JK
2489 if (IS_ERR(page)) {
2490 if (PTR_ERR(page) == -ENOMEM) {
4034247a 2491 memalloc_retry_wait(GFP_NOFS);
4e46a023
JK
2492 goto repeat;
2493 }
af033b2a 2494 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
0abd675e 2495 return PTR_ERR(page);
4e46a023 2496 }
0abd675e
CY
2497
2498 lock_page(page);
2499
2500 if (unlikely(page->mapping != mapping)) {
2501 f2fs_put_page(page, 1);
2502 goto repeat;
2503 }
2504 if (unlikely(!PageUptodate(page))) {
2505 f2fs_put_page(page, 1);
af033b2a 2506 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
0abd675e
CY
2507 return -EIO;
2508 }
2509
b87846bd 2510 memcpy_from_page(data, page, offset, tocopy);
0abd675e
CY
2511 f2fs_put_page(page, 1);
2512
2513 offset = 0;
2514 toread -= tocopy;
2515 data += tocopy;
2516 blkidx++;
2517 }
2518 return len;
2519}
2520
2521/* Write to quotafile */
2522static ssize_t f2fs_quota_write(struct super_block *sb, int type,
2523 const char *data, size_t len, loff_t off)
2524{
2525 struct inode *inode = sb_dqopt(sb)->files[type];
2526 struct address_space *mapping = inode->i_mapping;
2527 const struct address_space_operations *a_ops = mapping->a_ops;
2528 int offset = off & (sb->s_blocksize - 1);
2529 size_t towrite = len;
2530 struct page *page;
62f63eea 2531 void *fsdata = NULL;
0abd675e
CY
2532 int err = 0;
2533 int tocopy;
2534
2535 while (towrite > 0) {
2536 tocopy = min_t(unsigned long, sb->s_blocksize - offset,
2537 towrite);
4e46a023 2538retry:
9d6b0cd7 2539 err = a_ops->write_begin(NULL, mapping, off, tocopy,
62f63eea 2540 &page, &fsdata);
4e46a023
JK
2541 if (unlikely(err)) {
2542 if (err == -ENOMEM) {
a64239d0 2543 f2fs_io_schedule_timeout(DEFAULT_IO_TIMEOUT);
4e46a023
JK
2544 goto retry;
2545 }
af033b2a 2546 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
0abd675e 2547 break;
4e46a023 2548 }
0abd675e 2549
b87846bd 2550 memcpy_to_page(page, offset, data, tocopy);
0abd675e
CY
2551
2552 a_ops->write_end(NULL, mapping, off, tocopy, tocopy,
62f63eea 2553 page, fsdata);
0abd675e
CY
2554 offset = 0;
2555 towrite -= tocopy;
2556 off += tocopy;
2557 data += tocopy;
2558 cond_resched();
2559 }
2560
2561 if (len == towrite)
6e5b5d41 2562 return err;
0abd675e
CY
2563 inode->i_mtime = inode->i_ctime = current_time(inode);
2564 f2fs_mark_inode_dirty_sync(inode, false);
2565 return len - towrite;
2566}
2567
10a26878
CY
2568int f2fs_dquot_initialize(struct inode *inode)
2569{
2570 if (time_to_inject(F2FS_I_SB(inode), FAULT_DQUOT_INIT)) {
2571 f2fs_show_injection_info(F2FS_I_SB(inode), FAULT_DQUOT_INIT);
2572 return -ESRCH;
2573 }
2574
2575 return dquot_initialize(inode);
2576}
2577
0abd675e
CY
2578static struct dquot **f2fs_get_dquots(struct inode *inode)
2579{
2580 return F2FS_I(inode)->i_dquot;
2581}
2582
2583static qsize_t *f2fs_get_reserved_space(struct inode *inode)
2584{
2585 return &F2FS_I(inode)->i_reserved_quota;
2586}
2587
4b2414d0
CY
2588static int f2fs_quota_on_mount(struct f2fs_sb_info *sbi, int type)
2589{
af033b2a 2590 if (is_set_ckpt_flags(sbi, CP_QUOTA_NEED_FSCK_FLAG)) {
dcbb4c10 2591 f2fs_err(sbi, "quota sysfile may be corrupted, skip loading it");
af033b2a
CY
2592 return 0;
2593 }
2594
63189b78
CY
2595 return dquot_quota_on_mount(sbi->sb, F2FS_OPTION(sbi).s_qf_names[type],
2596 F2FS_OPTION(sbi).s_jquota_fmt, type);
4b2414d0
CY
2597}
2598
ea676733 2599int f2fs_enable_quota_files(struct f2fs_sb_info *sbi, bool rdonly)
4b2414d0 2600{
ea676733
JK
2601 int enabled = 0;
2602 int i, err;
2603
7beb01f7 2604 if (f2fs_sb_has_quota_ino(sbi) && rdonly) {
ea676733
JK
2605 err = f2fs_enable_quotas(sbi->sb);
2606 if (err) {
dcbb4c10 2607 f2fs_err(sbi, "Cannot turn on quota_ino: %d", err);
ea676733
JK
2608 return 0;
2609 }
2610 return 1;
2611 }
4b2414d0
CY
2612
2613 for (i = 0; i < MAXQUOTAS; i++) {
63189b78 2614 if (F2FS_OPTION(sbi).s_qf_names[i]) {
ea676733
JK
2615 err = f2fs_quota_on_mount(sbi, i);
2616 if (!err) {
2617 enabled = 1;
2618 continue;
2619 }
dcbb4c10
JP
2620 f2fs_err(sbi, "Cannot turn on quotas: %d on %d",
2621 err, i);
4b2414d0
CY
2622 }
2623 }
ea676733
JK
2624 return enabled;
2625}
2626
2627static int f2fs_quota_enable(struct super_block *sb, int type, int format_id,
2628 unsigned int flags)
2629{
2630 struct inode *qf_inode;
2631 unsigned long qf_inum;
2632 int err;
2633
7beb01f7 2634 BUG_ON(!f2fs_sb_has_quota_ino(F2FS_SB(sb)));
ea676733
JK
2635
2636 qf_inum = f2fs_qf_ino(sb, type);
2637 if (!qf_inum)
2638 return -EPERM;
2639
2640 qf_inode = f2fs_iget(sb, qf_inum);
2641 if (IS_ERR(qf_inode)) {
dcbb4c10 2642 f2fs_err(F2FS_SB(sb), "Bad quota inode %u:%lu", type, qf_inum);
ea676733
JK
2643 return PTR_ERR(qf_inode);
2644 }
2645
2646 /* Don't account quota for quota files to avoid recursion */
2647 qf_inode->i_flags |= S_NOQUOTA;
7212b95e 2648 err = dquot_load_quota_inode(qf_inode, type, format_id, flags);
ea676733
JK
2649 iput(qf_inode);
2650 return err;
2651}
2652
2653static int f2fs_enable_quotas(struct super_block *sb)
2654{
dcbb4c10 2655 struct f2fs_sb_info *sbi = F2FS_SB(sb);
ea676733
JK
2656 int type, err = 0;
2657 unsigned long qf_inum;
2658 bool quota_mopt[MAXQUOTAS] = {
dcbb4c10
JP
2659 test_opt(sbi, USRQUOTA),
2660 test_opt(sbi, GRPQUOTA),
2661 test_opt(sbi, PRJQUOTA),
ea676733
JK
2662 };
2663
af033b2a 2664 if (is_set_ckpt_flags(F2FS_SB(sb), CP_QUOTA_NEED_FSCK_FLAG)) {
dcbb4c10 2665 f2fs_err(sbi, "quota file may be corrupted, skip loading it");
af033b2a
CY
2666 return 0;
2667 }
2668
2669 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE;
2670
ea676733
JK
2671 for (type = 0; type < MAXQUOTAS; type++) {
2672 qf_inum = f2fs_qf_ino(sb, type);
2673 if (qf_inum) {
2674 err = f2fs_quota_enable(sb, type, QFMT_VFS_V1,
2675 DQUOT_USAGE_ENABLED |
2676 (quota_mopt[type] ? DQUOT_LIMITS_ENABLED : 0));
2677 if (err) {
dcbb4c10
JP
2678 f2fs_err(sbi, "Failed to enable quota tracking (type=%d, err=%d). Please run fsck to fix.",
2679 type, err);
ea676733
JK
2680 for (type--; type >= 0; type--)
2681 dquot_quota_off(sb, type);
af033b2a
CY
2682 set_sbi_flag(F2FS_SB(sb),
2683 SBI_QUOTA_NEED_REPAIR);
ea676733
JK
2684 return err;
2685 }
4b2414d0
CY
2686 }
2687 }
ea676733 2688 return 0;
4b2414d0
CY
2689}
2690
9de71ede
CY
2691static int f2fs_quota_sync_file(struct f2fs_sb_info *sbi, int type)
2692{
2693 struct quota_info *dqopt = sb_dqopt(sbi->sb);
2694 struct address_space *mapping = dqopt->files[type]->i_mapping;
2695 int ret = 0;
2696
2697 ret = dquot_writeback_dquots(sbi->sb, type);
2698 if (ret)
2699 goto out;
2700
2701 ret = filemap_fdatawrite(mapping);
2702 if (ret)
2703 goto out;
2704
2705 /* if we are using journalled quota */
2706 if (is_journalled_quota(sbi))
2707 goto out;
2708
2709 ret = filemap_fdatawait(mapping);
2710
2711 truncate_inode_pages(&dqopt->files[type]->i_data, 0);
2712out:
2713 if (ret)
2714 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2715 return ret;
2716}
2717
af033b2a 2718int f2fs_quota_sync(struct super_block *sb, int type)
0abd675e 2719{
af033b2a 2720 struct f2fs_sb_info *sbi = F2FS_SB(sb);
0abd675e
CY
2721 struct quota_info *dqopt = sb_dqopt(sb);
2722 int cnt;
680af5b8 2723 int ret = 0;
0abd675e 2724
0abd675e
CY
2725 /*
2726 * Now when everything is written we can discard the pagecache so
2727 * that userspace sees the changes.
2728 */
2729 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
af033b2a 2730
0abd675e
CY
2731 if (type != -1 && cnt != type)
2732 continue;
0abd675e 2733
680af5b8
JP
2734 if (!sb_has_quota_active(sb, cnt))
2735 continue;
af033b2a 2736
6213f5d4
JK
2737 if (!f2fs_sb_has_quota_ino(sbi))
2738 inode_lock(dqopt->files[cnt]);
af033b2a 2739
9de71ede
CY
2740 /*
2741 * do_quotactl
2742 * f2fs_quota_sync
e4544b63 2743 * f2fs_down_read(quota_sem)
9de71ede
CY
2744 * dquot_writeback_dquots()
2745 * f2fs_dquot_commit
2746 * block_operation
e4544b63 2747 * f2fs_down_read(quota_sem)
9de71ede
CY
2748 */
2749 f2fs_lock_op(sbi);
e4544b63 2750 f2fs_down_read(&sbi->quota_sem);
af033b2a 2751
9de71ede
CY
2752 ret = f2fs_quota_sync_file(sbi, cnt);
2753
e4544b63 2754 f2fs_up_read(&sbi->quota_sem);
9de71ede 2755 f2fs_unlock_op(sbi);
0abd675e 2756
6213f5d4
JK
2757 if (!f2fs_sb_has_quota_ino(sbi))
2758 inode_unlock(dqopt->files[cnt]);
9de71ede
CY
2759
2760 if (ret)
2761 break;
0abd675e 2762 }
af033b2a 2763 return ret;
0abd675e
CY
2764}
2765
2766static int f2fs_quota_on(struct super_block *sb, int type, int format_id,
2767 const struct path *path)
2768{
2769 struct inode *inode;
2770 int err;
2771
fe973b06
CY
2772 /* if quota sysfile exists, deny enabling quota with specific file */
2773 if (f2fs_sb_has_quota_ino(F2FS_SB(sb))) {
2774 f2fs_err(F2FS_SB(sb), "quota sysfile already exists");
2775 return -EBUSY;
2776 }
2777
9a20d391 2778 err = f2fs_quota_sync(sb, type);
0abd675e
CY
2779 if (err)
2780 return err;
2781
2782 err = dquot_quota_on(sb, type, format_id, path);
2783 if (err)
2784 return err;
2785
2786 inode = d_inode(path->dentry);
2787
2788 inode_lock(inode);
59c84408 2789 F2FS_I(inode)->i_flags |= F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL;
9149a5eb 2790 f2fs_set_inode_flags(inode);
0abd675e
CY
2791 inode_unlock(inode);
2792 f2fs_mark_inode_dirty_sync(inode, false);
2793
2794 return 0;
2795}
2796
fe973b06 2797static int __f2fs_quota_off(struct super_block *sb, int type)
0abd675e
CY
2798{
2799 struct inode *inode = sb_dqopt(sb)->files[type];
2800 int err;
2801
2802 if (!inode || !igrab(inode))
2803 return dquot_quota_off(sb, type);
2804
cda9cc59
YH
2805 err = f2fs_quota_sync(sb, type);
2806 if (err)
2807 goto out_put;
0abd675e
CY
2808
2809 err = dquot_quota_off(sb, type);
7beb01f7 2810 if (err || f2fs_sb_has_quota_ino(F2FS_SB(sb)))
0abd675e
CY
2811 goto out_put;
2812
2813 inode_lock(inode);
59c84408 2814 F2FS_I(inode)->i_flags &= ~(F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL);
9149a5eb 2815 f2fs_set_inode_flags(inode);
0abd675e
CY
2816 inode_unlock(inode);
2817 f2fs_mark_inode_dirty_sync(inode, false);
2818out_put:
2819 iput(inode);
2820 return err;
2821}
2822
fe973b06
CY
2823static int f2fs_quota_off(struct super_block *sb, int type)
2824{
2825 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2826 int err;
2827
2828 err = __f2fs_quota_off(sb, type);
2829
2830 /*
2831 * quotactl can shutdown journalled quota, result in inconsistence
2832 * between quota record and fs data by following updates, tag the
2833 * flag to let fsck be aware of it.
2834 */
2835 if (is_journalled_quota(sbi))
2836 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2837 return err;
2838}
2839
4b2414d0 2840void f2fs_quota_off_umount(struct super_block *sb)
0abd675e
CY
2841{
2842 int type;
cda9cc59
YH
2843 int err;
2844
2845 for (type = 0; type < MAXQUOTAS; type++) {
fe973b06 2846 err = __f2fs_quota_off(sb, type);
cda9cc59
YH
2847 if (err) {
2848 int ret = dquot_quota_off(sb, type);
0abd675e 2849
dcbb4c10
JP
2850 f2fs_err(F2FS_SB(sb), "Fail to turn off disk quota (type: %d, err: %d, ret:%d), Please run fsck to fix it.",
2851 type, err, ret);
af033b2a 2852 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
cda9cc59
YH
2853 }
2854 }
0e0667b6
JK
2855 /*
2856 * In case of checkpoint=disable, we must flush quota blocks.
2857 * This can cause NULL exception for node_inode in end_io, since
2858 * put_super already dropped it.
2859 */
2860 sync_filesystem(sb);
0abd675e
CY
2861}
2862
26b5a079
SY
2863static void f2fs_truncate_quota_inode_pages(struct super_block *sb)
2864{
2865 struct quota_info *dqopt = sb_dqopt(sb);
2866 int type;
2867
2868 for (type = 0; type < MAXQUOTAS; type++) {
2869 if (!dqopt->files[type])
2870 continue;
2871 f2fs_inode_synced(dqopt->files[type]);
2872 }
2873}
2874
af033b2a
CY
2875static int f2fs_dquot_commit(struct dquot *dquot)
2876{
db6ec53b 2877 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
af033b2a
CY
2878 int ret;
2879
e4544b63 2880 f2fs_down_read_nested(&sbi->quota_sem, SINGLE_DEPTH_NESTING);
af033b2a
CY
2881 ret = dquot_commit(dquot);
2882 if (ret < 0)
db6ec53b 2883 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
e4544b63 2884 f2fs_up_read(&sbi->quota_sem);
af033b2a
CY
2885 return ret;
2886}
2887
2888static int f2fs_dquot_acquire(struct dquot *dquot)
2889{
db6ec53b 2890 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
af033b2a
CY
2891 int ret;
2892
e4544b63 2893 f2fs_down_read(&sbi->quota_sem);
af033b2a
CY
2894 ret = dquot_acquire(dquot);
2895 if (ret < 0)
db6ec53b 2896 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
e4544b63 2897 f2fs_up_read(&sbi->quota_sem);
af033b2a
CY
2898 return ret;
2899}
2900
2901static int f2fs_dquot_release(struct dquot *dquot)
2902{
db6ec53b 2903 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
2c4e0c52 2904 int ret = dquot_release(dquot);
af033b2a 2905
af033b2a 2906 if (ret < 0)
db6ec53b 2907 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
af033b2a
CY
2908 return ret;
2909}
2910
2911static int f2fs_dquot_mark_dquot_dirty(struct dquot *dquot)
2912{
2913 struct super_block *sb = dquot->dq_sb;
2914 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2c4e0c52 2915 int ret = dquot_mark_dquot_dirty(dquot);
af033b2a
CY
2916
2917 /* if we are using journalled quota */
2918 if (is_journalled_quota(sbi))
2919 set_sbi_flag(sbi, SBI_QUOTA_NEED_FLUSH);
2920
2921 return ret;
2922}
2923
2924static int f2fs_dquot_commit_info(struct super_block *sb, int type)
2925{
db6ec53b 2926 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2c4e0c52 2927 int ret = dquot_commit_info(sb, type);
af033b2a 2928
af033b2a 2929 if (ret < 0)
db6ec53b 2930 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
af033b2a
CY
2931 return ret;
2932}
26b5a079 2933
94b1e10e 2934static int f2fs_get_projid(struct inode *inode, kprojid_t *projid)
5c57132e
CY
2935{
2936 *projid = F2FS_I(inode)->i_projid;
2937 return 0;
2938}
2939
0abd675e
CY
2940static const struct dquot_operations f2fs_quota_operations = {
2941 .get_reserved_space = f2fs_get_reserved_space,
af033b2a
CY
2942 .write_dquot = f2fs_dquot_commit,
2943 .acquire_dquot = f2fs_dquot_acquire,
2944 .release_dquot = f2fs_dquot_release,
2945 .mark_dirty = f2fs_dquot_mark_dquot_dirty,
2946 .write_info = f2fs_dquot_commit_info,
0abd675e
CY
2947 .alloc_dquot = dquot_alloc,
2948 .destroy_dquot = dquot_destroy,
5c57132e 2949 .get_projid = f2fs_get_projid,
0abd675e
CY
2950 .get_next_id = dquot_get_next_id,
2951};
2952
2953static const struct quotactl_ops f2fs_quotactl_ops = {
2954 .quota_on = f2fs_quota_on,
2955 .quota_off = f2fs_quota_off,
2956 .quota_sync = f2fs_quota_sync,
2957 .get_state = dquot_get_state,
2958 .set_info = dquot_set_dqinfo,
2959 .get_dqblk = dquot_get_dqblk,
2960 .set_dqblk = dquot_set_dqblk,
2961 .get_nextdqblk = dquot_get_next_dqblk,
2962};
2963#else
10a26878
CY
2964int f2fs_dquot_initialize(struct inode *inode)
2965{
2966 return 0;
2967}
2968
af033b2a
CY
2969int f2fs_quota_sync(struct super_block *sb, int type)
2970{
2971 return 0;
2972}
2973
4b2414d0 2974void f2fs_quota_off_umount(struct super_block *sb)
0abd675e
CY
2975{
2976}
2977#endif
2978
f62fc9f9 2979static const struct super_operations f2fs_sops = {
aff063e2 2980 .alloc_inode = f2fs_alloc_inode,
d01718a0 2981 .free_inode = f2fs_free_inode,
531ad7d5 2982 .drop_inode = f2fs_drop_inode,
aff063e2 2983 .write_inode = f2fs_write_inode,
b3783873 2984 .dirty_inode = f2fs_dirty_inode,
aff063e2 2985 .show_options = f2fs_show_options,
0abd675e
CY
2986#ifdef CONFIG_QUOTA
2987 .quota_read = f2fs_quota_read,
2988 .quota_write = f2fs_quota_write,
2989 .get_dquots = f2fs_get_dquots,
2990#endif
aff063e2
JK
2991 .evict_inode = f2fs_evict_inode,
2992 .put_super = f2fs_put_super,
2993 .sync_fs = f2fs_sync_fs,
d6212a5f
CL
2994 .freeze_fs = f2fs_freeze,
2995 .unfreeze_fs = f2fs_unfreeze,
aff063e2 2996 .statfs = f2fs_statfs,
696c018c 2997 .remount_fs = f2fs_remount,
aff063e2
JK
2998};
2999
643fa961 3000#ifdef CONFIG_FS_ENCRYPTION
0b81d077
JK
3001static int f2fs_get_context(struct inode *inode, void *ctx, size_t len)
3002{
3003 return f2fs_getxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
3004 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
3005 ctx, len, NULL);
3006}
3007
3008static int f2fs_set_context(struct inode *inode, const void *ctx, size_t len,
3009 void *fs_data)
3010{
b7c409de
SY
3011 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
3012
3013 /*
3014 * Encrypting the root directory is not allowed because fsck
3015 * expects lost+found directory to exist and remain unencrypted
3016 * if LOST_FOUND feature is enabled.
3017 *
3018 */
7beb01f7 3019 if (f2fs_sb_has_lost_found(sbi) &&
b7c409de
SY
3020 inode->i_ino == F2FS_ROOT_INO(sbi))
3021 return -EPERM;
3022
0b81d077
JK
3023 return f2fs_setxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
3024 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
3025 ctx, len, fs_data, XATTR_CREATE);
3026}
3027
ac4acb1f 3028static const union fscrypt_policy *f2fs_get_dummy_policy(struct super_block *sb)
ff62af20 3029{
ac4acb1f 3030 return F2FS_OPTION(F2FS_SB(sb)).dummy_enc_policy.policy;
ff62af20
SY
3031}
3032
0eee17e3
EB
3033static bool f2fs_has_stable_inodes(struct super_block *sb)
3034{
3035 return true;
3036}
3037
3038static void f2fs_get_ino_and_lblk_bits(struct super_block *sb,
3039 int *ino_bits_ret, int *lblk_bits_ret)
3040{
3041 *ino_bits_ret = 8 * sizeof(nid_t);
3042 *lblk_bits_ret = 8 * sizeof(block_t);
3043}
3044
0e91fc1e
CH
3045static struct block_device **f2fs_get_devices(struct super_block *sb,
3046 unsigned int *num_devs)
27aacd28
ST
3047{
3048 struct f2fs_sb_info *sbi = F2FS_SB(sb);
0e91fc1e
CH
3049 struct block_device **devs;
3050 int i;
27aacd28 3051
0e91fc1e
CH
3052 if (!f2fs_is_multi_device(sbi))
3053 return NULL;
27aacd28 3054
0e91fc1e
CH
3055 devs = kmalloc_array(sbi->s_ndevs, sizeof(*devs), GFP_KERNEL);
3056 if (!devs)
3057 return ERR_PTR(-ENOMEM);
27aacd28
ST
3058
3059 for (i = 0; i < sbi->s_ndevs; i++)
0e91fc1e
CH
3060 devs[i] = FDEV(i).bdev;
3061 *num_devs = sbi->s_ndevs;
3062 return devs;
27aacd28
ST
3063}
3064
6f69f0ed 3065static const struct fscrypt_operations f2fs_cryptops = {
0eee17e3
EB
3066 .key_prefix = "f2fs:",
3067 .get_context = f2fs_get_context,
3068 .set_context = f2fs_set_context,
ac4acb1f 3069 .get_dummy_policy = f2fs_get_dummy_policy,
0eee17e3 3070 .empty_dir = f2fs_empty_dir,
0eee17e3
EB
3071 .has_stable_inodes = f2fs_has_stable_inodes,
3072 .get_ino_and_lblk_bits = f2fs_get_ino_and_lblk_bits,
27aacd28 3073 .get_devices = f2fs_get_devices,
0b81d077 3074};
0b81d077
JK
3075#endif
3076
aff063e2
JK
3077static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
3078 u64 ino, u32 generation)
3079{
3080 struct f2fs_sb_info *sbi = F2FS_SB(sb);
3081 struct inode *inode;
3082
4d57b86d 3083 if (f2fs_check_nid_range(sbi, ino))
910bb12d 3084 return ERR_PTR(-ESTALE);
aff063e2
JK
3085
3086 /*
3087 * f2fs_iget isn't quite right if the inode is currently unallocated!
3088 * However f2fs_iget currently does appropriate checks to handle stale
3089 * inodes so everything is OK.
3090 */
3091 inode = f2fs_iget(sb, ino);
3092 if (IS_ERR(inode))
3093 return ERR_CAST(inode);
6bacf52f 3094 if (unlikely(generation && inode->i_generation != generation)) {
aff063e2
JK
3095 /* we didn't find the right inode.. */
3096 iput(inode);
3097 return ERR_PTR(-ESTALE);
3098 }
3099 return inode;
3100}
3101
3102static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
3103 int fh_len, int fh_type)
3104{
3105 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
3106 f2fs_nfs_get_inode);
3107}
3108
3109static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
3110 int fh_len, int fh_type)
3111{
3112 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
3113 f2fs_nfs_get_inode);
3114}
3115
3116static const struct export_operations f2fs_export_ops = {
3117 .fh_to_dentry = f2fs_fh_to_dentry,
3118 .fh_to_parent = f2fs_fh_to_parent,
3119 .get_parent = f2fs_get_parent,
3120};
3121
6d1451bf 3122loff_t max_file_blocks(struct inode *inode)
aff063e2 3123{
7a2af766 3124 loff_t result = 0;
6d1451bf 3125 loff_t leaf_count;
aff063e2 3126
7a2af766
CY
3127 /*
3128 * note: previously, result is equal to (DEF_ADDRS_PER_INODE -
6afc662e 3129 * DEFAULT_INLINE_XATTR_ADDRS), but now f2fs try to reserve more
7a2af766
CY
3130 * space in inode.i_addr, it will be more safe to reassign
3131 * result as zero.
3132 */
3133
6d1451bf
CX
3134 if (inode && f2fs_compressed_file(inode))
3135 leaf_count = ADDRS_PER_BLOCK(inode);
3136 else
3137 leaf_count = DEF_ADDRS_PER_BLOCK;
3138
aff063e2
JK
3139 /* two direct node blocks */
3140 result += (leaf_count * 2);
3141
3142 /* two indirect node blocks */
3143 leaf_count *= NIDS_PER_BLOCK;
3144 result += (leaf_count * 2);
3145
3146 /* one double indirect node block */
3147 leaf_count *= NIDS_PER_BLOCK;
3148 result += leaf_count;
3149
aff063e2
JK
3150 return result;
3151}
3152
fd694733
JK
3153static int __f2fs_commit_super(struct buffer_head *bh,
3154 struct f2fs_super_block *super)
3155{
3156 lock_buffer(bh);
3157 if (super)
3158 memcpy(bh->b_data + F2FS_SUPER_OFFSET, super, sizeof(*super));
fd694733
JK
3159 set_buffer_dirty(bh);
3160 unlock_buffer(bh);
3161
3162 /* it's rare case, we can do fua all the time */
3adc5fcb 3163 return __sync_dirty_buffer(bh, REQ_SYNC | REQ_PREFLUSH | REQ_FUA);
fd694733
JK
3164}
3165
df728b0f 3166static inline bool sanity_check_area_boundary(struct f2fs_sb_info *sbi,
fd694733 3167 struct buffer_head *bh)
9a59b62f 3168{
fd694733
JK
3169 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
3170 (bh->b_data + F2FS_SUPER_OFFSET);
df728b0f 3171 struct super_block *sb = sbi->sb;
9a59b62f
CY
3172 u32 segment0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
3173 u32 cp_blkaddr = le32_to_cpu(raw_super->cp_blkaddr);
3174 u32 sit_blkaddr = le32_to_cpu(raw_super->sit_blkaddr);
3175 u32 nat_blkaddr = le32_to_cpu(raw_super->nat_blkaddr);
3176 u32 ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
3177 u32 main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
3178 u32 segment_count_ckpt = le32_to_cpu(raw_super->segment_count_ckpt);
3179 u32 segment_count_sit = le32_to_cpu(raw_super->segment_count_sit);
3180 u32 segment_count_nat = le32_to_cpu(raw_super->segment_count_nat);
3181 u32 segment_count_ssa = le32_to_cpu(raw_super->segment_count_ssa);
3182 u32 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
3183 u32 segment_count = le32_to_cpu(raw_super->segment_count);
3184 u32 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
fd694733
JK
3185 u64 main_end_blkaddr = main_blkaddr +
3186 (segment_count_main << log_blocks_per_seg);
3187 u64 seg_end_blkaddr = segment0_blkaddr +
3188 (segment_count << log_blocks_per_seg);
9a59b62f
CY
3189
3190 if (segment0_blkaddr != cp_blkaddr) {
dcbb4c10
JP
3191 f2fs_info(sbi, "Mismatch start address, segment0(%u) cp_blkaddr(%u)",
3192 segment0_blkaddr, cp_blkaddr);
9a59b62f
CY
3193 return true;
3194 }
3195
3196 if (cp_blkaddr + (segment_count_ckpt << log_blocks_per_seg) !=
3197 sit_blkaddr) {
dcbb4c10
JP
3198 f2fs_info(sbi, "Wrong CP boundary, start(%u) end(%u) blocks(%u)",
3199 cp_blkaddr, sit_blkaddr,
3200 segment_count_ckpt << log_blocks_per_seg);
9a59b62f
CY
3201 return true;
3202 }
3203
3204 if (sit_blkaddr + (segment_count_sit << log_blocks_per_seg) !=
3205 nat_blkaddr) {
dcbb4c10
JP
3206 f2fs_info(sbi, "Wrong SIT boundary, start(%u) end(%u) blocks(%u)",
3207 sit_blkaddr, nat_blkaddr,
3208 segment_count_sit << log_blocks_per_seg);
9a59b62f
CY
3209 return true;
3210 }
3211
3212 if (nat_blkaddr + (segment_count_nat << log_blocks_per_seg) !=
3213 ssa_blkaddr) {
dcbb4c10
JP
3214 f2fs_info(sbi, "Wrong NAT boundary, start(%u) end(%u) blocks(%u)",
3215 nat_blkaddr, ssa_blkaddr,
3216 segment_count_nat << log_blocks_per_seg);
9a59b62f
CY
3217 return true;
3218 }
3219
3220 if (ssa_blkaddr + (segment_count_ssa << log_blocks_per_seg) !=
3221 main_blkaddr) {
dcbb4c10
JP
3222 f2fs_info(sbi, "Wrong SSA boundary, start(%u) end(%u) blocks(%u)",
3223 ssa_blkaddr, main_blkaddr,
3224 segment_count_ssa << log_blocks_per_seg);
9a59b62f
CY
3225 return true;
3226 }
3227
fd694733 3228 if (main_end_blkaddr > seg_end_blkaddr) {
d89f5891
WX
3229 f2fs_info(sbi, "Wrong MAIN_AREA boundary, start(%u) end(%llu) block(%u)",
3230 main_blkaddr, seg_end_blkaddr,
dcbb4c10 3231 segment_count_main << log_blocks_per_seg);
9a59b62f 3232 return true;
fd694733
JK
3233 } else if (main_end_blkaddr < seg_end_blkaddr) {
3234 int err = 0;
3235 char *res;
3236
3237 /* fix in-memory information all the time */
3238 raw_super->segment_count = cpu_to_le32((main_end_blkaddr -
3239 segment0_blkaddr) >> log_blocks_per_seg);
3240
3241 if (f2fs_readonly(sb) || bdev_read_only(sb->s_bdev)) {
df728b0f 3242 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
fd694733
JK
3243 res = "internally";
3244 } else {
3245 err = __f2fs_commit_super(bh, NULL);
3246 res = err ? "failed" : "done";
3247 }
d89f5891
WX
3248 f2fs_info(sbi, "Fix alignment : %s, start(%u) end(%llu) block(%u)",
3249 res, main_blkaddr, seg_end_blkaddr,
dcbb4c10 3250 segment_count_main << log_blocks_per_seg);
fd694733
JK
3251 if (err)
3252 return true;
9a59b62f 3253 }
9a59b62f
CY
3254 return false;
3255}
3256
df728b0f 3257static int sanity_check_raw_super(struct f2fs_sb_info *sbi,
fd694733 3258 struct buffer_head *bh)
aff063e2 3259{
f99ba9ad 3260 block_t segment_count, segs_per_sec, secs_per_zone, segment_count_main;
0cfe75c5 3261 block_t total_sections, blocks_per_seg;
fd694733
JK
3262 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
3263 (bh->b_data + F2FS_SUPER_OFFSET);
d440c52d
JZ
3264 size_t crc_offset = 0;
3265 __u32 crc = 0;
3266
38fb6d0e
IZ
3267 if (le32_to_cpu(raw_super->magic) != F2FS_SUPER_MAGIC) {
3268 f2fs_info(sbi, "Magic Mismatch, valid(0x%x) - read(0x%x)",
3269 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
3270 return -EINVAL;
3271 }
3272
d440c52d 3273 /* Check checksum_offset and crc in superblock */
7beb01f7 3274 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_SB_CHKSUM)) {
d440c52d
JZ
3275 crc_offset = le32_to_cpu(raw_super->checksum_offset);
3276 if (crc_offset !=
3277 offsetof(struct f2fs_super_block, crc)) {
dcbb4c10
JP
3278 f2fs_info(sbi, "Invalid SB checksum offset: %zu",
3279 crc_offset);
38fb6d0e 3280 return -EFSCORRUPTED;
d440c52d
JZ
3281 }
3282 crc = le32_to_cpu(raw_super->crc);
3283 if (!f2fs_crc_valid(sbi, crc, raw_super, crc_offset)) {
dcbb4c10 3284 f2fs_info(sbi, "Invalid SB checksum value: %u", crc);
38fb6d0e 3285 return -EFSCORRUPTED;
d440c52d
JZ
3286 }
3287 }
aff063e2 3288
aff063e2 3289 /* Currently, support only 4KB block size */
e584bbe8
CY
3290 if (le32_to_cpu(raw_super->log_blocksize) != F2FS_BLKSIZE_BITS) {
3291 f2fs_info(sbi, "Invalid log_blocksize (%u), supports only %u",
3292 le32_to_cpu(raw_super->log_blocksize),
3293 F2FS_BLKSIZE_BITS);
38fb6d0e 3294 return -EFSCORRUPTED;
a07ef784 3295 }
5c9b4692 3296
9a59b62f
CY
3297 /* check log blocks per segment */
3298 if (le32_to_cpu(raw_super->log_blocks_per_seg) != 9) {
dcbb4c10
JP
3299 f2fs_info(sbi, "Invalid log blocks per segment (%u)",
3300 le32_to_cpu(raw_super->log_blocks_per_seg));
38fb6d0e 3301 return -EFSCORRUPTED;
9a59b62f
CY
3302 }
3303
55cf9cb6
CY
3304 /* Currently, support 512/1024/2048/4096 bytes sector size */
3305 if (le32_to_cpu(raw_super->log_sectorsize) >
3306 F2FS_MAX_LOG_SECTOR_SIZE ||
3307 le32_to_cpu(raw_super->log_sectorsize) <
3308 F2FS_MIN_LOG_SECTOR_SIZE) {
dcbb4c10
JP
3309 f2fs_info(sbi, "Invalid log sectorsize (%u)",
3310 le32_to_cpu(raw_super->log_sectorsize));
38fb6d0e 3311 return -EFSCORRUPTED;
a07ef784 3312 }
55cf9cb6
CY
3313 if (le32_to_cpu(raw_super->log_sectors_per_block) +
3314 le32_to_cpu(raw_super->log_sectorsize) !=
3315 F2FS_MAX_LOG_SECTOR_SIZE) {
dcbb4c10
JP
3316 f2fs_info(sbi, "Invalid log sectors per block(%u) log sectorsize(%u)",
3317 le32_to_cpu(raw_super->log_sectors_per_block),
3318 le32_to_cpu(raw_super->log_sectorsize));
38fb6d0e 3319 return -EFSCORRUPTED;
a07ef784 3320 }
9a59b62f 3321
0cfe75c5 3322 segment_count = le32_to_cpu(raw_super->segment_count);
f99ba9ad 3323 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
0cfe75c5
JK
3324 segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
3325 secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
3326 total_sections = le32_to_cpu(raw_super->section_count);
3327
3328 /* blocks_per_seg should be 512, given the above check */
3329 blocks_per_seg = 1 << le32_to_cpu(raw_super->log_blocks_per_seg);
3330
3331 if (segment_count > F2FS_MAX_SEGMENT ||
3332 segment_count < F2FS_MIN_SEGMENTS) {
dcbb4c10 3333 f2fs_info(sbi, "Invalid segment count (%u)", segment_count);
38fb6d0e 3334 return -EFSCORRUPTED;
0cfe75c5
JK
3335 }
3336
f99ba9ad 3337 if (total_sections > segment_count_main || total_sections < 1 ||
0cfe75c5 3338 segs_per_sec > segment_count || !segs_per_sec) {
dcbb4c10
JP
3339 f2fs_info(sbi, "Invalid segment/section count (%u, %u x %u)",
3340 segment_count, total_sections, segs_per_sec);
38fb6d0e 3341 return -EFSCORRUPTED;
0cfe75c5
JK
3342 }
3343
3a22e9ac
CY
3344 if (segment_count_main != total_sections * segs_per_sec) {
3345 f2fs_info(sbi, "Invalid segment/section count (%u != %u * %u)",
3346 segment_count_main, total_sections, segs_per_sec);
3347 return -EFSCORRUPTED;
3348 }
3349
0cfe75c5 3350 if ((segment_count / segs_per_sec) < total_sections) {
dcbb4c10
JP
3351 f2fs_info(sbi, "Small segment_count (%u < %u * %u)",
3352 segment_count, segs_per_sec, total_sections);
38fb6d0e 3353 return -EFSCORRUPTED;
0cfe75c5
JK
3354 }
3355
88960068 3356 if (segment_count > (le64_to_cpu(raw_super->block_count) >> 9)) {
dcbb4c10
JP
3357 f2fs_info(sbi, "Wrong segment_count / block_count (%u > %llu)",
3358 segment_count, le64_to_cpu(raw_super->block_count));
38fb6d0e 3359 return -EFSCORRUPTED;
0cfe75c5
JK
3360 }
3361
9f701f6c
QS
3362 if (RDEV(0).path[0]) {
3363 block_t dev_seg_count = le32_to_cpu(RDEV(0).total_segments);
3364 int i = 1;
3365
3366 while (i < MAX_DEVICES && RDEV(i).path[0]) {
3367 dev_seg_count += le32_to_cpu(RDEV(i).total_segments);
3368 i++;
3369 }
3370 if (segment_count != dev_seg_count) {
3371 f2fs_info(sbi, "Segment count (%u) mismatch with total segments from devices (%u)",
3372 segment_count, dev_seg_count);
3373 return -EFSCORRUPTED;
3374 }
07eb1d69
CY
3375 } else {
3376 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_BLKZONED) &&
3377 !bdev_is_zoned(sbi->sb->s_bdev)) {
3378 f2fs_info(sbi, "Zoned block device path is missing");
3379 return -EFSCORRUPTED;
3380 }
9f701f6c
QS
3381 }
3382
42bf546c 3383 if (secs_per_zone > total_sections || !secs_per_zone) {
dcbb4c10
JP
3384 f2fs_info(sbi, "Wrong secs_per_zone / total_sections (%u, %u)",
3385 secs_per_zone, total_sections);
38fb6d0e 3386 return -EFSCORRUPTED;
0cfe75c5
JK
3387 }
3388 if (le32_to_cpu(raw_super->extension_count) > F2FS_MAX_EXTENSION ||
3389 raw_super->hot_ext_count > F2FS_MAX_EXTENSION ||
3390 (le32_to_cpu(raw_super->extension_count) +
3391 raw_super->hot_ext_count) > F2FS_MAX_EXTENSION) {
dcbb4c10
JP
3392 f2fs_info(sbi, "Corrupted extension count (%u + %u > %u)",
3393 le32_to_cpu(raw_super->extension_count),
3394 raw_super->hot_ext_count,
3395 F2FS_MAX_EXTENSION);
38fb6d0e 3396 return -EFSCORRUPTED;
0cfe75c5
JK
3397 }
3398
65ddf656
CY
3399 if (le32_to_cpu(raw_super->cp_payload) >=
3400 (blocks_per_seg - F2FS_CP_PACKS -
3401 NR_CURSEG_PERSIST_TYPE)) {
3402 f2fs_info(sbi, "Insane cp_payload (%u >= %u)",
dcbb4c10 3403 le32_to_cpu(raw_super->cp_payload),
65ddf656
CY
3404 blocks_per_seg - F2FS_CP_PACKS -
3405 NR_CURSEG_PERSIST_TYPE);
38fb6d0e 3406 return -EFSCORRUPTED;
0cfe75c5
JK
3407 }
3408
9a59b62f
CY
3409 /* check reserved ino info */
3410 if (le32_to_cpu(raw_super->node_ino) != 1 ||
3411 le32_to_cpu(raw_super->meta_ino) != 2 ||
3412 le32_to_cpu(raw_super->root_ino) != 3) {
dcbb4c10
JP
3413 f2fs_info(sbi, "Invalid Fs Meta Ino: node(%u) meta(%u) root(%u)",
3414 le32_to_cpu(raw_super->node_ino),
3415 le32_to_cpu(raw_super->meta_ino),
3416 le32_to_cpu(raw_super->root_ino));
38fb6d0e 3417 return -EFSCORRUPTED;
9a59b62f
CY
3418 }
3419
3420 /* check CP/SIT/NAT/SSA/MAIN_AREA area boundary */
df728b0f 3421 if (sanity_check_area_boundary(sbi, bh))
38fb6d0e 3422 return -EFSCORRUPTED;
9a59b62f 3423
aff063e2
JK
3424 return 0;
3425}
3426
4d57b86d 3427int f2fs_sanity_check_ckpt(struct f2fs_sb_info *sbi)
aff063e2
JK
3428{
3429 unsigned int total, fsmeta;
577e3495
JK
3430 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
3431 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
2040fce8 3432 unsigned int ovp_segments, reserved_segments;
15d3042a 3433 unsigned int main_segs, blocks_per_seg;
c77ec61c
CY
3434 unsigned int sit_segs, nat_segs;
3435 unsigned int sit_bitmap_size, nat_bitmap_size;
3436 unsigned int log_blocks_per_seg;
9dc956b2 3437 unsigned int segment_count_main;
e494c2f9 3438 unsigned int cp_pack_start_sum, cp_payload;
7b63f72f
CY
3439 block_t user_block_count, valid_user_blocks;
3440 block_t avail_node_count, valid_node_count;
65ddf656 3441 unsigned int nat_blocks, nat_bits_bytes, nat_bits_blocks;
042be0f8 3442 int i, j;
aff063e2
JK
3443
3444 total = le32_to_cpu(raw_super->segment_count);
3445 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
c77ec61c
CY
3446 sit_segs = le32_to_cpu(raw_super->segment_count_sit);
3447 fsmeta += sit_segs;
3448 nat_segs = le32_to_cpu(raw_super->segment_count_nat);
3449 fsmeta += nat_segs;
aff063e2
JK
3450 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
3451 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
3452
6bacf52f 3453 if (unlikely(fsmeta >= total))
aff063e2 3454 return 1;
577e3495 3455
2040fce8
JK
3456 ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
3457 reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
3458
a7d9fe3c
JK
3459 if (!f2fs_sb_has_readonly(sbi) &&
3460 unlikely(fsmeta < F2FS_MIN_META_SEGMENTS ||
2040fce8 3461 ovp_segments == 0 || reserved_segments == 0)) {
dcbb4c10 3462 f2fs_err(sbi, "Wrong layout: check mkfs.f2fs version");
2040fce8
JK
3463 return 1;
3464 }
9dc956b2 3465 user_block_count = le64_to_cpu(ckpt->user_block_count);
a7d9fe3c
JK
3466 segment_count_main = le32_to_cpu(raw_super->segment_count_main) +
3467 (f2fs_sb_has_readonly(sbi) ? 1 : 0);
9dc956b2
CY
3468 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3469 if (!user_block_count || user_block_count >=
3470 segment_count_main << log_blocks_per_seg) {
dcbb4c10
JP
3471 f2fs_err(sbi, "Wrong user_block_count: %u",
3472 user_block_count);
9dc956b2
CY
3473 return 1;
3474 }
3475
7b63f72f
CY
3476 valid_user_blocks = le64_to_cpu(ckpt->valid_block_count);
3477 if (valid_user_blocks > user_block_count) {
dcbb4c10
JP
3478 f2fs_err(sbi, "Wrong valid_user_blocks: %u, user_block_count: %u",
3479 valid_user_blocks, user_block_count);
7b63f72f
CY
3480 return 1;
3481 }
3482
3483 valid_node_count = le32_to_cpu(ckpt->valid_node_count);
27cae0bc 3484 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
7b63f72f 3485 if (valid_node_count > avail_node_count) {
dcbb4c10
JP
3486 f2fs_err(sbi, "Wrong valid_node_count: %u, avail_node_count: %u",
3487 valid_node_count, avail_node_count);
7b63f72f
CY
3488 return 1;
3489 }
3490
15d3042a
JQ
3491 main_segs = le32_to_cpu(raw_super->segment_count_main);
3492 blocks_per_seg = sbi->blocks_per_seg;
3493
3494 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
3495 if (le32_to_cpu(ckpt->cur_node_segno[i]) >= main_segs ||
3496 le16_to_cpu(ckpt->cur_node_blkoff[i]) >= blocks_per_seg)
3497 return 1;
a7d9fe3c
JK
3498
3499 if (f2fs_sb_has_readonly(sbi))
3500 goto check_data;
3501
042be0f8
CY
3502 for (j = i + 1; j < NR_CURSEG_NODE_TYPE; j++) {
3503 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3504 le32_to_cpu(ckpt->cur_node_segno[j])) {
dcbb4c10
JP
3505 f2fs_err(sbi, "Node segment (%u, %u) has the same segno: %u",
3506 i, j,
3507 le32_to_cpu(ckpt->cur_node_segno[i]));
042be0f8
CY
3508 return 1;
3509 }
3510 }
15d3042a 3511 }
a7d9fe3c 3512check_data:
15d3042a
JQ
3513 for (i = 0; i < NR_CURSEG_DATA_TYPE; i++) {
3514 if (le32_to_cpu(ckpt->cur_data_segno[i]) >= main_segs ||
3515 le16_to_cpu(ckpt->cur_data_blkoff[i]) >= blocks_per_seg)
3516 return 1;
a7d9fe3c
JK
3517
3518 if (f2fs_sb_has_readonly(sbi))
3519 goto skip_cross;
3520
042be0f8
CY
3521 for (j = i + 1; j < NR_CURSEG_DATA_TYPE; j++) {
3522 if (le32_to_cpu(ckpt->cur_data_segno[i]) ==
3523 le32_to_cpu(ckpt->cur_data_segno[j])) {
dcbb4c10
JP
3524 f2fs_err(sbi, "Data segment (%u, %u) has the same segno: %u",
3525 i, j,
3526 le32_to_cpu(ckpt->cur_data_segno[i]));
042be0f8
CY
3527 return 1;
3528 }
3529 }
3530 }
3531 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
1166c1f2 3532 for (j = 0; j < NR_CURSEG_DATA_TYPE; j++) {
042be0f8
CY
3533 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3534 le32_to_cpu(ckpt->cur_data_segno[j])) {
1166c1f2 3535 f2fs_err(sbi, "Node segment (%u) and Data segment (%u) has the same segno: %u",
dcbb4c10
JP
3536 i, j,
3537 le32_to_cpu(ckpt->cur_node_segno[i]));
042be0f8
CY
3538 return 1;
3539 }
3540 }
15d3042a 3541 }
a7d9fe3c 3542skip_cross:
c77ec61c
CY
3543 sit_bitmap_size = le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
3544 nat_bitmap_size = le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
c77ec61c
CY
3545
3546 if (sit_bitmap_size != ((sit_segs / 2) << log_blocks_per_seg) / 8 ||
3547 nat_bitmap_size != ((nat_segs / 2) << log_blocks_per_seg) / 8) {
dcbb4c10
JP
3548 f2fs_err(sbi, "Wrong bitmap size: sit: %u, nat:%u",
3549 sit_bitmap_size, nat_bitmap_size);
c77ec61c
CY
3550 return 1;
3551 }
e494c2f9
CY
3552
3553 cp_pack_start_sum = __start_sum_addr(sbi);
3554 cp_payload = __cp_payload(sbi);
3555 if (cp_pack_start_sum < cp_payload + 1 ||
3556 cp_pack_start_sum > blocks_per_seg - 1 -
d0b9e42a 3557 NR_CURSEG_PERSIST_TYPE) {
dcbb4c10
JP
3558 f2fs_err(sbi, "Wrong cp_pack_start_sum: %u",
3559 cp_pack_start_sum);
e494c2f9
CY
3560 return 1;
3561 }
c77ec61c 3562
5dae2d39
CY
3563 if (__is_set_ckpt_flags(ckpt, CP_LARGE_NAT_BITMAP_FLAG) &&
3564 le32_to_cpu(ckpt->checksum_offset) != CP_MIN_CHKSUM_OFFSET) {
2d008835
CY
3565 f2fs_warn(sbi, "using deprecated layout of large_nat_bitmap, "
3566 "please run fsck v1.13.0 or higher to repair, chksum_offset: %u, "
3567 "fixed with patch: \"f2fs-tools: relocate chksum_offset for large_nat_bitmap feature\"",
dcbb4c10 3568 le32_to_cpu(ckpt->checksum_offset));
5dae2d39
CY
3569 return 1;
3570 }
3571
65ddf656
CY
3572 nat_blocks = nat_segs << log_blocks_per_seg;
3573 nat_bits_bytes = nat_blocks / BITS_PER_BYTE;
3574 nat_bits_blocks = F2FS_BLK_ALIGN((nat_bits_bytes << 1) + 8);
3575 if (__is_set_ckpt_flags(ckpt, CP_NAT_BITS_FLAG) &&
3576 (cp_payload + F2FS_CP_PACKS +
3577 NR_CURSEG_PERSIST_TYPE + nat_bits_blocks >= blocks_per_seg)) {
3578 f2fs_warn(sbi, "Insane cp_payload: %u, nat_bits_blocks: %u)",
3579 cp_payload, nat_bits_blocks);
ca98d721 3580 return 1;
65ddf656
CY
3581 }
3582
1e968fdf 3583 if (unlikely(f2fs_cp_error(sbi))) {
dcbb4c10 3584 f2fs_err(sbi, "A bug case: need to run fsck");
577e3495
JK
3585 return 1;
3586 }
aff063e2
JK
3587 return 0;
3588}
3589
3590static void init_sb_info(struct f2fs_sb_info *sbi)
3591{
3592 struct f2fs_super_block *raw_super = sbi->raw_super;
089842de 3593 int i;
aff063e2
JK
3594
3595 sbi->log_sectors_per_block =
3596 le32_to_cpu(raw_super->log_sectors_per_block);
3597 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
3598 sbi->blocksize = 1 << sbi->log_blocksize;
3599 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3600 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
3601 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
3602 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
3603 sbi->total_sections = le32_to_cpu(raw_super->section_count);
3604 sbi->total_node_count =
3605 (le32_to_cpu(raw_super->segment_count_nat) / 2)
3606 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
b9ec1094
YL
3607 F2FS_ROOT_INO(sbi) = le32_to_cpu(raw_super->root_ino);
3608 F2FS_NODE_INO(sbi) = le32_to_cpu(raw_super->node_ino);
3609 F2FS_META_INO(sbi) = le32_to_cpu(raw_super->meta_ino);
5ec4e49f 3610 sbi->cur_victim_sec = NULL_SECNO;
c86868bb 3611 sbi->gc_mode = GC_NORMAL;
e3080b01
CY
3612 sbi->next_victim_seg[BG_GC] = NULL_SEGNO;
3613 sbi->next_victim_seg[FG_GC] = NULL_SEGNO;
b1c57c1c 3614 sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;
e3080b01 3615 sbi->migration_granularity = sbi->segs_per_sec;
0f6b56ec 3616 sbi->seq_file_ra_mul = MIN_RA_MUL;
6691d940
DJ
3617 sbi->max_fragment_chunk = DEF_FRAGMENT_SIZE;
3618 sbi->max_fragment_hole = DEF_FRAGMENT_SIZE;
325163e9 3619 spin_lock_init(&sbi->gc_urgent_high_lock);
f8e2f32b 3620 atomic64_set(&sbi->current_atomic_write, 0);
aff063e2 3621
ab9fa662 3622 sbi->dir_level = DEF_DIR_LEVEL;
6beceb54 3623 sbi->interval_time[CP_TIME] = DEF_CP_INTERVAL;
d0239e1b 3624 sbi->interval_time[REQ_TIME] = DEF_IDLE_INTERVAL;
a7d10cf3
ST
3625 sbi->interval_time[DISCARD_TIME] = DEF_IDLE_INTERVAL;
3626 sbi->interval_time[GC_TIME] = DEF_IDLE_INTERVAL;
4354994f 3627 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_INTERVAL;
03f2c02d
JK
3628 sbi->interval_time[UMOUNT_DISCARD_TIMEOUT] =
3629 DEF_UMOUNT_DISCARD_TIMEOUT;
caf0047e 3630 clear_sbi_flag(sbi, SBI_NEED_FSCK);
2658e50d 3631
35782b23
JK
3632 for (i = 0; i < NR_COUNT_TYPE; i++)
3633 atomic_set(&sbi->nr_pages[i], 0);
3634
c29fd0c0
CY
3635 for (i = 0; i < META; i++)
3636 atomic_set(&sbi->wb_sync_req[i], 0);
687de7f1 3637
2658e50d
JK
3638 INIT_LIST_HEAD(&sbi->s_list);
3639 mutex_init(&sbi->umount_mutex);
e4544b63 3640 init_f2fs_rwsem(&sbi->io_order_lock);
aaec2b1d 3641 spin_lock_init(&sbi->cp_lock);
1228b482
CY
3642
3643 sbi->dirty_device = 0;
3644 spin_lock_init(&sbi->dev_lock);
d0d3f1b3 3645
e4544b63
TM
3646 init_f2fs_rwsem(&sbi->sb_lock);
3647 init_f2fs_rwsem(&sbi->pin_sem);
aff063e2
JK
3648}
3649
523be8a6
JK
3650static int init_percpu_info(struct f2fs_sb_info *sbi)
3651{
35782b23 3652 int err;
41382ec4 3653
513c5f37
JK
3654 err = percpu_counter_init(&sbi->alloc_valid_block_count, 0, GFP_KERNEL);
3655 if (err)
3656 return err;
3657
47c8ebcc
JK
3658 err = percpu_counter_init(&sbi->rf_node_block_count, 0, GFP_KERNEL);
3659 if (err)
3660 goto err_valid_block;
3661
4a70e255 3662 err = percpu_counter_init(&sbi->total_valid_inode_count, 0,
41382ec4 3663 GFP_KERNEL);
4a70e255 3664 if (err)
47c8ebcc
JK
3665 goto err_node_block;
3666 return 0;
4a70e255 3667
47c8ebcc
JK
3668err_node_block:
3669 percpu_counter_destroy(&sbi->rf_node_block_count);
3670err_valid_block:
3671 percpu_counter_destroy(&sbi->alloc_valid_block_count);
4a70e255 3672 return err;
523be8a6
JK
3673}
3674
178053e2 3675#ifdef CONFIG_BLK_DEV_ZONED
de881df9
AR
3676
3677struct f2fs_report_zones_args {
b771aadc 3678 struct f2fs_sb_info *sbi;
de881df9 3679 struct f2fs_dev_info *dev;
de881df9
AR
3680};
3681
d4100351 3682static int f2fs_report_zone_cb(struct blk_zone *zone, unsigned int idx,
de881df9 3683 void *data)
d4100351 3684{
de881df9 3685 struct f2fs_report_zones_args *rz_args = data;
b771aadc
JK
3686 block_t unusable_blocks = (zone->len - zone->capacity) >>
3687 F2FS_LOG_SECTORS_PER_BLOCK;
de881df9
AR
3688
3689 if (zone->type == BLK_ZONE_TYPE_CONVENTIONAL)
3690 return 0;
3691
3692 set_bit(idx, rz_args->dev->blkz_seq);
b771aadc
JK
3693 if (!rz_args->sbi->unusable_blocks_per_sec) {
3694 rz_args->sbi->unusable_blocks_per_sec = unusable_blocks;
3695 return 0;
3696 }
3697 if (rz_args->sbi->unusable_blocks_per_sec != unusable_blocks) {
3698 f2fs_err(rz_args->sbi, "F2FS supports single zone capacity\n");
3699 return -EINVAL;
3700 }
d4100351
CH
3701 return 0;
3702}
3703
3c62be17 3704static int init_blkz_info(struct f2fs_sb_info *sbi, int devi)
178053e2 3705{
3c62be17 3706 struct block_device *bdev = FDEV(devi).bdev;
a782483c 3707 sector_t nr_sectors = bdev_nr_sectors(bdev);
de881df9 3708 struct f2fs_report_zones_args rep_zone_arg;
d46db459 3709 u64 zone_sectors;
d4100351 3710 int ret;
178053e2 3711
7beb01f7 3712 if (!f2fs_sb_has_blkzoned(sbi))
178053e2
DLM
3713 return 0;
3714
d46db459 3715 zone_sectors = bdev_zone_sectors(bdev);
7f262f73
LC
3716 if (!is_power_of_2(zone_sectors)) {
3717 f2fs_err(sbi, "F2FS does not support non power of 2 zone sizes\n");
3718 return -EINVAL;
3719 }
d46db459 3720
3c62be17 3721 if (sbi->blocks_per_blkz && sbi->blocks_per_blkz !=
d46db459 3722 SECTOR_TO_BLOCK(zone_sectors))
3c62be17 3723 return -EINVAL;
d46db459 3724 sbi->blocks_per_blkz = SECTOR_TO_BLOCK(zone_sectors);
3c62be17
JK
3725 if (sbi->log_blocks_per_blkz && sbi->log_blocks_per_blkz !=
3726 __ilog2_u32(sbi->blocks_per_blkz))
3727 return -EINVAL;
178053e2 3728 sbi->log_blocks_per_blkz = __ilog2_u32(sbi->blocks_per_blkz);
3c62be17
JK
3729 FDEV(devi).nr_blkz = SECTOR_TO_BLOCK(nr_sectors) >>
3730 sbi->log_blocks_per_blkz;
d46db459 3731 if (nr_sectors & (zone_sectors - 1))
3c62be17 3732 FDEV(devi).nr_blkz++;
178053e2 3733
0b6d4ca0 3734 FDEV(devi).blkz_seq = f2fs_kvzalloc(sbi,
95175daf
DLM
3735 BITS_TO_LONGS(FDEV(devi).nr_blkz)
3736 * sizeof(unsigned long),
3737 GFP_KERNEL);
3738 if (!FDEV(devi).blkz_seq)
178053e2
DLM
3739 return -ENOMEM;
3740
b771aadc 3741 rep_zone_arg.sbi = sbi;
de881df9 3742 rep_zone_arg.dev = &FDEV(devi);
de881df9 3743
d4100351 3744 ret = blkdev_report_zones(bdev, 0, BLK_ALL_ZONES, f2fs_report_zone_cb,
de881df9 3745 &rep_zone_arg);
d4100351
CH
3746 if (ret < 0)
3747 return ret;
d4100351 3748 return 0;
178053e2
DLM
3749}
3750#endif
3751
9076a75f
GZ
3752/*
3753 * Read f2fs raw super block.
2b39e907
SL
3754 * Because we have two copies of super block, so read both of them
3755 * to get the first valid one. If any one of them is broken, we pass
3756 * them recovery flag back to the caller.
9076a75f 3757 */
df728b0f 3758static int read_raw_super_block(struct f2fs_sb_info *sbi,
9076a75f 3759 struct f2fs_super_block **raw_super,
e8240f65 3760 int *valid_super_block, int *recovery)
14d7e9de 3761{
df728b0f 3762 struct super_block *sb = sbi->sb;
2b39e907 3763 int block;
e8240f65 3764 struct buffer_head *bh;
fd694733 3765 struct f2fs_super_block *super;
da554e48 3766 int err = 0;
14d7e9de 3767
b39f0de2
YH
3768 super = kzalloc(sizeof(struct f2fs_super_block), GFP_KERNEL);
3769 if (!super)
3770 return -ENOMEM;
2b39e907
SL
3771
3772 for (block = 0; block < 2; block++) {
3773 bh = sb_bread(sb, block);
3774 if (!bh) {
dcbb4c10
JP
3775 f2fs_err(sbi, "Unable to read %dth superblock",
3776 block + 1);
2b39e907 3777 err = -EIO;
ed352042 3778 *recovery = 1;
2b39e907
SL
3779 continue;
3780 }
14d7e9de 3781
2b39e907 3782 /* sanity checking of raw super */
38fb6d0e
IZ
3783 err = sanity_check_raw_super(sbi, bh);
3784 if (err) {
dcbb4c10
JP
3785 f2fs_err(sbi, "Can't find valid F2FS filesystem in %dth superblock",
3786 block + 1);
2b39e907 3787 brelse(bh);
ed352042 3788 *recovery = 1;
2b39e907
SL
3789 continue;
3790 }
14d7e9de 3791
2b39e907 3792 if (!*raw_super) {
fd694733
JK
3793 memcpy(super, bh->b_data + F2FS_SUPER_OFFSET,
3794 sizeof(*super));
2b39e907
SL
3795 *valid_super_block = block;
3796 *raw_super = super;
3797 }
3798 brelse(bh);
da554e48 3799 }
3800
da554e48 3801 /* No valid superblock */
2b39e907 3802 if (!*raw_super)
742532d1 3803 kfree(super);
2b39e907
SL
3804 else
3805 err = 0;
da554e48 3806
2b39e907 3807 return err;
14d7e9de 3808}
3809
fd694733 3810int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover)
26d815ad 3811{
5d909cdb 3812 struct buffer_head *bh;
d440c52d 3813 __u32 crc = 0;
26d815ad
JK
3814 int err;
3815
df728b0f
JK
3816 if ((recover && f2fs_readonly(sbi->sb)) ||
3817 bdev_read_only(sbi->sb->s_bdev)) {
3818 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
f2353d7b 3819 return -EROFS;
df728b0f 3820 }
f2353d7b 3821
d440c52d 3822 /* we should update superblock crc here */
7beb01f7 3823 if (!recover && f2fs_sb_has_sb_chksum(sbi)) {
d440c52d
JZ
3824 crc = f2fs_crc32(sbi, F2FS_RAW_SUPER(sbi),
3825 offsetof(struct f2fs_super_block, crc));
3826 F2FS_RAW_SUPER(sbi)->crc = cpu_to_le32(crc);
3827 }
3828
fd694733 3829 /* write back-up superblock first */
0964fc1a 3830 bh = sb_bread(sbi->sb, sbi->valid_super_block ? 0 : 1);
5d909cdb
JK
3831 if (!bh)
3832 return -EIO;
fd694733 3833 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
5d909cdb 3834 brelse(bh);
c5bda1c8
CY
3835
3836 /* if we are in recovery path, skip writing valid superblock */
3837 if (recover || err)
5d909cdb 3838 return err;
26d815ad
JK
3839
3840 /* write current valid superblock */
0964fc1a 3841 bh = sb_bread(sbi->sb, sbi->valid_super_block);
fd694733
JK
3842 if (!bh)
3843 return -EIO;
3844 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
3845 brelse(bh);
3846 return err;
26d815ad
JK
3847}
3848
a9cfee0e
CY
3849void f2fs_handle_stop(struct f2fs_sb_info *sbi, unsigned char reason)
3850{
3851 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
3852 int err;
3853
a9cfee0e
CY
3854 f2fs_down_write(&sbi->sb_lock);
3855
3856 if (raw_super->s_stop_reason[reason] < ((1 << BITS_PER_BYTE) - 1))
3857 raw_super->s_stop_reason[reason]++;
3858
3859 err = f2fs_commit_super(sbi, false);
3860 if (err)
3861 f2fs_err(sbi, "f2fs_commit_super fails to record reason:%u err:%d",
3862 reason, err);
95fa90c9
CY
3863 f2fs_up_write(&sbi->sb_lock);
3864}
3865
3866static void f2fs_save_errors(struct f2fs_sb_info *sbi, unsigned char flag)
3867{
3868 spin_lock(&sbi->error_lock);
3869 if (!test_bit(flag, (unsigned long *)sbi->errors)) {
3870 set_bit(flag, (unsigned long *)sbi->errors);
3871 sbi->error_dirty = true;
3872 }
3873 spin_unlock(&sbi->error_lock);
3874}
3875
3876static bool f2fs_update_errors(struct f2fs_sb_info *sbi)
3877{
3878 bool need_update = false;
3879
3880 spin_lock(&sbi->error_lock);
3881 if (sbi->error_dirty) {
3882 memcpy(F2FS_RAW_SUPER(sbi)->s_errors, sbi->errors,
3883 MAX_F2FS_ERRORS);
3884 sbi->error_dirty = false;
3885 need_update = true;
3886 }
3887 spin_unlock(&sbi->error_lock);
3888
3889 return need_update;
3890}
a9cfee0e 3891
95fa90c9
CY
3892void f2fs_handle_error(struct f2fs_sb_info *sbi, unsigned char error)
3893{
3894 int err;
3895
3896 f2fs_save_errors(sbi, error);
3897
3898 f2fs_down_write(&sbi->sb_lock);
3899
3900 if (!f2fs_update_errors(sbi))
3901 goto out_unlock;
3902
3903 err = f2fs_commit_super(sbi, false);
3904 if (err)
3905 f2fs_err(sbi, "f2fs_commit_super fails to record errors:%u, err:%d",
3906 error, err);
3907out_unlock:
a9cfee0e
CY
3908 f2fs_up_write(&sbi->sb_lock);
3909}
3910
3c62be17
JK
3911static int f2fs_scan_devices(struct f2fs_sb_info *sbi)
3912{
3913 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
7bb3a371 3914 unsigned int max_devices = MAX_DEVICES;
71f2c820 3915 unsigned int logical_blksize;
3c62be17
JK
3916 int i;
3917
7bb3a371
MS
3918 /* Initialize single device information */
3919 if (!RDEV(0).path[0]) {
3920 if (!bdev_is_zoned(sbi->sb->s_bdev))
3c62be17 3921 return 0;
7bb3a371
MS
3922 max_devices = 1;
3923 }
3c62be17 3924
7bb3a371
MS
3925 /*
3926 * Initialize multiple devices information, or single
3927 * zoned block device information.
3928 */
026f0507
KC
3929 sbi->devs = f2fs_kzalloc(sbi,
3930 array_size(max_devices,
3931 sizeof(struct f2fs_dev_info)),
3932 GFP_KERNEL);
7bb3a371
MS
3933 if (!sbi->devs)
3934 return -ENOMEM;
3c62be17 3935
71f2c820
CY
3936 logical_blksize = bdev_logical_block_size(sbi->sb->s_bdev);
3937 sbi->aligned_blksize = true;
3938
7bb3a371 3939 for (i = 0; i < max_devices; i++) {
3c62be17 3940
7bb3a371
MS
3941 if (i > 0 && !RDEV(i).path[0])
3942 break;
3943
3944 if (max_devices == 1) {
3945 /* Single zoned block device mount */
3946 FDEV(0).bdev =
3947 blkdev_get_by_dev(sbi->sb->s_bdev->bd_dev,
3c62be17 3948 sbi->sb->s_mode, sbi->sb->s_type);
7bb3a371
MS
3949 } else {
3950 /* Multi-device mount */
3951 memcpy(FDEV(i).path, RDEV(i).path, MAX_PATH_LEN);
3952 FDEV(i).total_segments =
3953 le32_to_cpu(RDEV(i).total_segments);
3954 if (i == 0) {
3955 FDEV(i).start_blk = 0;
3956 FDEV(i).end_blk = FDEV(i).start_blk +
3957 (FDEV(i).total_segments <<
3958 sbi->log_blocks_per_seg) - 1 +
3959 le32_to_cpu(raw_super->segment0_blkaddr);
3960 } else {
3961 FDEV(i).start_blk = FDEV(i - 1).end_blk + 1;
3962 FDEV(i).end_blk = FDEV(i).start_blk +
3963 (FDEV(i).total_segments <<
3964 sbi->log_blocks_per_seg) - 1;
3965 }
3966 FDEV(i).bdev = blkdev_get_by_path(FDEV(i).path,
3c62be17 3967 sbi->sb->s_mode, sbi->sb->s_type);
7bb3a371 3968 }
3c62be17
JK
3969 if (IS_ERR(FDEV(i).bdev))
3970 return PTR_ERR(FDEV(i).bdev);
3971
3972 /* to release errored devices */
3973 sbi->s_ndevs = i + 1;
3974
71f2c820
CY
3975 if (logical_blksize != bdev_logical_block_size(FDEV(i).bdev))
3976 sbi->aligned_blksize = false;
3977
3c62be17
JK
3978#ifdef CONFIG_BLK_DEV_ZONED
3979 if (bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HM &&
7beb01f7 3980 !f2fs_sb_has_blkzoned(sbi)) {
833dcd35 3981 f2fs_err(sbi, "Zoned block device feature not enabled");
3c62be17
JK
3982 return -EINVAL;
3983 }
3984 if (bdev_zoned_model(FDEV(i).bdev) != BLK_ZONED_NONE) {
3985 if (init_blkz_info(sbi, i)) {
dcbb4c10 3986 f2fs_err(sbi, "Failed to initialize F2FS blkzone information");
3c62be17
JK
3987 return -EINVAL;
3988 }
7bb3a371
MS
3989 if (max_devices == 1)
3990 break;
dcbb4c10
JP
3991 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x (zone: %s)",
3992 i, FDEV(i).path,
3993 FDEV(i).total_segments,
3994 FDEV(i).start_blk, FDEV(i).end_blk,
3995 bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HA ?
3996 "Host-aware" : "Host-managed");
3c62be17
JK
3997 continue;
3998 }
3999#endif
dcbb4c10
JP
4000 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x",
4001 i, FDEV(i).path,
4002 FDEV(i).total_segments,
4003 FDEV(i).start_blk, FDEV(i).end_blk);
4004 }
4005 f2fs_info(sbi,
4006 "IO Block Size: %8d KB", F2FS_IO_SIZE_KB(sbi));
3c62be17
JK
4007 return 0;
4008}
4009
5aba5430
DR
4010static int f2fs_setup_casefold(struct f2fs_sb_info *sbi)
4011{
5298d4bf 4012#if IS_ENABLED(CONFIG_UNICODE)
eca4873e 4013 if (f2fs_sb_has_casefold(sbi) && !sbi->sb->s_encoding) {
5aba5430
DR
4014 const struct f2fs_sb_encodings *encoding_info;
4015 struct unicode_map *encoding;
4016 __u16 encoding_flags;
4017
86e80575
CH
4018 encoding_info = f2fs_sb_read_encoding(sbi->raw_super);
4019 if (!encoding_info) {
5aba5430
DR
4020 f2fs_err(sbi,
4021 "Encoding requested by superblock is unknown");
4022 return -EINVAL;
4023 }
4024
86e80575 4025 encoding_flags = le16_to_cpu(sbi->raw_super->s_encoding_flags);
5aba5430
DR
4026 encoding = utf8_load(encoding_info->version);
4027 if (IS_ERR(encoding)) {
4028 f2fs_err(sbi,
49bd03cc 4029 "can't mount with superblock charset: %s-%u.%u.%u "
5aba5430 4030 "not supported by the kernel. flags: 0x%x.",
49bd03cc
CH
4031 encoding_info->name,
4032 unicode_major(encoding_info->version),
4033 unicode_minor(encoding_info->version),
4034 unicode_rev(encoding_info->version),
5aba5430
DR
4035 encoding_flags);
4036 return PTR_ERR(encoding);
4037 }
4038 f2fs_info(sbi, "Using encoding defined by superblock: "
49bd03cc
CH
4039 "%s-%u.%u.%u with flags 0x%hx", encoding_info->name,
4040 unicode_major(encoding_info->version),
4041 unicode_minor(encoding_info->version),
4042 unicode_rev(encoding_info->version),
4043 encoding_flags);
5aba5430 4044
eca4873e
DR
4045 sbi->sb->s_encoding = encoding;
4046 sbi->sb->s_encoding_flags = encoding_flags;
5aba5430
DR
4047 }
4048#else
4049 if (f2fs_sb_has_casefold(sbi)) {
4050 f2fs_err(sbi, "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
4051 return -EINVAL;
4052 }
4053#endif
4054 return 0;
4055}
4056
84b89e5d
JK
4057static void f2fs_tuning_parameters(struct f2fs_sb_info *sbi)
4058{
4059 struct f2fs_sm_info *sm_i = SM_I(sbi);
4060
4061 /* adjust parameters according to the volume size */
4062 if (sm_i->main_segments <= SMALL_VOLUME_SEGMENTS) {
63189b78 4063 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
4f993264
CY
4064 if (f2fs_block_unit_discard(sbi))
4065 sm_i->dcc_info->discard_granularity = 1;
1018a546
CY
4066 sm_i->ipu_policy = 1 << F2FS_IPU_FORCE |
4067 1 << F2FS_IPU_HONOR_OPU_WRITE;
84b89e5d 4068 }
4cac90d5
CY
4069
4070 sbi->readdir_ra = 1;
84b89e5d
JK
4071}
4072
aff063e2
JK
4073static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
4074{
4075 struct f2fs_sb_info *sbi;
da554e48 4076 struct f2fs_super_block *raw_super;
aff063e2 4077 struct inode *root;
99e3e858 4078 int err;
aa2c8c43 4079 bool skip_recovery = false, need_fsck = false;
dabc4a5c 4080 char *options = NULL;
e8240f65 4081 int recovery, i, valid_super_block;
8f1dbbbb 4082 struct curseg_info *seg_i;
aa2c8c43 4083 int retry_cnt = 1;
aff063e2 4084
ed2e621a 4085try_onemore:
da554e48 4086 err = -EINVAL;
4087 raw_super = NULL;
e8240f65 4088 valid_super_block = -1;
da554e48 4089 recovery = 0;
4090
aff063e2
JK
4091 /* allocate memory for f2fs-specific super block info */
4092 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
4093 if (!sbi)
4094 return -ENOMEM;
4095
df728b0f
JK
4096 sbi->sb = sb;
4097
43b6573b
KM
4098 /* Load the checksum driver */
4099 sbi->s_chksum_driver = crypto_alloc_shash("crc32", 0, 0);
4100 if (IS_ERR(sbi->s_chksum_driver)) {
dcbb4c10 4101 f2fs_err(sbi, "Cannot load crc32 driver.");
43b6573b
KM
4102 err = PTR_ERR(sbi->s_chksum_driver);
4103 sbi->s_chksum_driver = NULL;
4104 goto free_sbi;
4105 }
4106
ff9234ad 4107 /* set a block size */
6bacf52f 4108 if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
dcbb4c10 4109 f2fs_err(sbi, "unable to set blocksize");
aff063e2 4110 goto free_sbi;
a07ef784 4111 }
aff063e2 4112
df728b0f 4113 err = read_raw_super_block(sbi, &raw_super, &valid_super_block,
e8240f65 4114 &recovery);
9076a75f
GZ
4115 if (err)
4116 goto free_sbi;
4117
5fb08372 4118 sb->s_fs_info = sbi;
52763a4b
JK
4119 sbi->raw_super = raw_super;
4120
704956ec 4121 /* precompute checksum seed for metadata */
7beb01f7 4122 if (f2fs_sb_has_inode_chksum(sbi))
704956ec
CY
4123 sbi->s_chksum_seed = f2fs_chksum(sbi, ~0, raw_super->uuid,
4124 sizeof(raw_super->uuid));
4125
498c5e9f 4126 default_options(sbi);
aff063e2 4127 /* parse mount options */
dabc4a5c
JK
4128 options = kstrdup((const char *)data, GFP_KERNEL);
4129 if (data && !options) {
4130 err = -ENOMEM;
aff063e2 4131 goto free_sb_buf;
dabc4a5c
JK
4132 }
4133
ed318a6c 4134 err = parse_options(sb, options, false);
dabc4a5c
JK
4135 if (err)
4136 goto free_options;
aff063e2 4137
6d1451bf 4138 sb->s_maxbytes = max_file_blocks(NULL) <<
e0afc4d6 4139 le32_to_cpu(raw_super->log_blocksize);
aff063e2 4140 sb->s_max_links = F2FS_LINK_MAX;
aff063e2 4141
5aba5430
DR
4142 err = f2fs_setup_casefold(sbi);
4143 if (err)
4144 goto free_options;
4145
0abd675e
CY
4146#ifdef CONFIG_QUOTA
4147 sb->dq_op = &f2fs_quota_operations;
bc88ac96 4148 sb->s_qcop = &f2fs_quotactl_ops;
5c57132e 4149 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
292c196a 4150
7beb01f7 4151 if (f2fs_sb_has_quota_ino(sbi)) {
292c196a
CY
4152 for (i = 0; i < MAXQUOTAS; i++) {
4153 if (f2fs_qf_ino(sbi->sb, i))
4154 sbi->nquota_files++;
4155 }
4156 }
0abd675e
CY
4157#endif
4158
aff063e2 4159 sb->s_op = &f2fs_sops;
643fa961 4160#ifdef CONFIG_FS_ENCRYPTION
0b81d077 4161 sb->s_cop = &f2fs_cryptops;
95ae251f
EB
4162#endif
4163#ifdef CONFIG_FS_VERITY
4164 sb->s_vop = &f2fs_verityops;
ffcc4182 4165#endif
aff063e2
JK
4166 sb->s_xattr = f2fs_xattr_handlers;
4167 sb->s_export_op = &f2fs_export_ops;
4168 sb->s_magic = F2FS_SUPER_MAGIC;
aff063e2 4169 sb->s_time_gran = 1;
1751e8a6
LT
4170 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
4171 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
85787090 4172 memcpy(&sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
578c6478 4173 sb->s_iflags |= SB_I_CGROUPWB;
aff063e2
JK
4174
4175 /* init f2fs-specific super block info */
e8240f65 4176 sbi->valid_super_block = valid_super_block;
e4544b63 4177 init_f2fs_rwsem(&sbi->gc_lock);
853137ce 4178 mutex_init(&sbi->writepages);
e4544b63
TM
4179 init_f2fs_rwsem(&sbi->cp_global_sem);
4180 init_f2fs_rwsem(&sbi->node_write);
4181 init_f2fs_rwsem(&sbi->node_change);
315df839
JK
4182
4183 /* disallow all the data/node/meta page writes */
4184 set_sbi_flag(sbi, SBI_POR_DOING);
aff063e2 4185 spin_lock_init(&sbi->stat_lock);
971767ca 4186
908ea654
YY
4187 err = f2fs_init_write_merge_io(sbi);
4188 if (err)
4189 goto free_bio_info;
971767ca 4190
e4544b63
TM
4191 init_f2fs_rwsem(&sbi->cp_rwsem);
4192 init_f2fs_rwsem(&sbi->quota_sem);
fb51b5ef 4193 init_waitqueue_head(&sbi->cp_wait);
aff063e2
JK
4194 init_sb_info(sbi);
4195
52118743 4196 err = f2fs_init_iostat(sbi);
523be8a6 4197 if (err)
d7997e63 4198 goto free_bio_info;
523be8a6 4199
523be8a6
JK
4200 err = init_percpu_info(sbi);
4201 if (err)
a4b68176 4202 goto free_iostat;
523be8a6 4203
c72db71e 4204 if (F2FS_IO_ALIGNED(sbi)) {
0a595eba 4205 sbi->write_io_dummy =
a3ebfe4f 4206 mempool_create_page_pool(2 * (F2FS_IO_SIZE(sbi) - 1), 0);
1727f317
CY
4207 if (!sbi->write_io_dummy) {
4208 err = -ENOMEM;
d7997e63 4209 goto free_percpu;
1727f317 4210 }
0a595eba
JK
4211 }
4212
a999150f
CY
4213 /* init per sbi slab cache */
4214 err = f2fs_init_xattr_caches(sbi);
4215 if (err)
4216 goto free_io_dummy;
31083031
CY
4217 err = f2fs_init_page_array_cache(sbi);
4218 if (err)
4219 goto free_xattr_cache;
a999150f 4220
aff063e2
JK
4221 /* get an inode for meta space */
4222 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
4223 if (IS_ERR(sbi->meta_inode)) {
dcbb4c10 4224 f2fs_err(sbi, "Failed to read F2FS meta data inode");
aff063e2 4225 err = PTR_ERR(sbi->meta_inode);
31083031 4226 goto free_page_array_cache;
aff063e2
JK
4227 }
4228
4d57b86d 4229 err = f2fs_get_valid_checkpoint(sbi);
a07ef784 4230 if (err) {
dcbb4c10 4231 f2fs_err(sbi, "Failed to get valid F2FS checkpoint");
aff063e2 4232 goto free_meta_inode;
a07ef784 4233 }
aff063e2 4234
af033b2a
CY
4235 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_QUOTA_NEED_FSCK_FLAG))
4236 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
db610a64
JK
4237 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_DISABLED_QUICK_FLAG)) {
4238 set_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
4239 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_QUICK_INTERVAL;
4240 }
af033b2a 4241
04f0b2ea
QS
4242 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_FSCK_FLAG))
4243 set_sbi_flag(sbi, SBI_NEED_FSCK);
4244
3c62be17
JK
4245 /* Initialize device list */
4246 err = f2fs_scan_devices(sbi);
4247 if (err) {
dcbb4c10 4248 f2fs_err(sbi, "Failed to find devices");
3c62be17
JK
4249 goto free_devices;
4250 }
4251
4c8ff709
CY
4252 err = f2fs_init_post_read_wq(sbi);
4253 if (err) {
4254 f2fs_err(sbi, "Failed to initialize post read workqueue");
4255 goto free_devices;
4256 }
4257
95fa90c9
CY
4258 spin_lock_init(&sbi->error_lock);
4259 memcpy(sbi->errors, raw_super->s_errors, MAX_F2FS_ERRORS);
4260
aff063e2
JK
4261 sbi->total_valid_node_count =
4262 le32_to_cpu(sbi->ckpt->valid_node_count);
513c5f37
JK
4263 percpu_counter_set(&sbi->total_valid_inode_count,
4264 le32_to_cpu(sbi->ckpt->valid_inode_count));
aff063e2
JK
4265 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
4266 sbi->total_valid_block_count =
4267 le64_to_cpu(sbi->ckpt->valid_block_count);
4268 sbi->last_valid_block_count = sbi->total_valid_block_count;
daeb433e 4269 sbi->reserved_blocks = 0;
80d42145 4270 sbi->current_reserved_blocks = 0;
7e65be49 4271 limit_reserve_root(sbi);
1ae18f71 4272 adjust_unusable_cap_perc(sbi);
41382ec4 4273
c227f912
CY
4274 for (i = 0; i < NR_INODE_TYPE; i++) {
4275 INIT_LIST_HEAD(&sbi->inode_list[i]);
4276 spin_lock_init(&sbi->inode_lock[i]);
4277 }
040d2bb3 4278 mutex_init(&sbi->flush_lock);
aff063e2 4279
4d57b86d 4280 f2fs_init_extent_cache_info(sbi);
1dcc336b 4281
4d57b86d 4282 f2fs_init_ino_entry_info(sbi);
aff063e2 4283
50fa53ec
CY
4284 f2fs_init_fsync_node_info(sbi);
4285
261eeb9c
DJ
4286 /* setup checkpoint request control and start checkpoint issue thread */
4287 f2fs_init_ckpt_req_control(sbi);
3f7070b0 4288 if (!f2fs_readonly(sb) && !test_opt(sbi, DISABLE_CHECKPOINT) &&
261eeb9c
DJ
4289 test_opt(sbi, MERGE_CHECKPOINT)) {
4290 err = f2fs_start_ckpt_thread(sbi);
4291 if (err) {
4292 f2fs_err(sbi,
4293 "Failed to start F2FS issue_checkpoint_thread (%d)",
4294 err);
4295 goto stop_ckpt_thread;
4296 }
4297 }
4298
aff063e2 4299 /* setup f2fs internal modules */
4d57b86d 4300 err = f2fs_build_segment_manager(sbi);
a07ef784 4301 if (err) {
dcbb4c10
JP
4302 f2fs_err(sbi, "Failed to initialize F2FS segment manager (%d)",
4303 err);
aff063e2 4304 goto free_sm;
a07ef784 4305 }
4d57b86d 4306 err = f2fs_build_node_manager(sbi);
a07ef784 4307 if (err) {
dcbb4c10
JP
4308 f2fs_err(sbi, "Failed to initialize F2FS node manager (%d)",
4309 err);
aff063e2 4310 goto free_nm;
a07ef784 4311 }
aff063e2 4312
300a8429
CY
4313 err = adjust_reserved_segment(sbi);
4314 if (err)
4315 goto free_nm;
4316
8f1dbbbb 4317 /* For write statistics */
3a0a9cbc 4318 sbi->sectors_written_start = f2fs_get_sectors_written(sbi);
8f1dbbbb
SL
4319
4320 /* Read accumulated write IO statistics if exists */
4321 seg_i = CURSEG_I(sbi, CURSEG_HOT_NODE);
4322 if (__exist_node_summaries(sbi))
4323 sbi->kbytes_written =
b2dde6fc 4324 le64_to_cpu(seg_i->journal->info.kbytes_written);
8f1dbbbb 4325
4d57b86d 4326 f2fs_build_gc_manager(sbi);
aff063e2 4327
60aa4d55
ST
4328 err = f2fs_build_stats(sbi);
4329 if (err)
4330 goto free_nm;
4331
aff063e2
JK
4332 /* get an inode for node space */
4333 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
4334 if (IS_ERR(sbi->node_inode)) {
dcbb4c10 4335 f2fs_err(sbi, "Failed to read node inode");
aff063e2 4336 err = PTR_ERR(sbi->node_inode);
60aa4d55 4337 goto free_stats;
aff063e2
JK
4338 }
4339
aff063e2
JK
4340 /* read root inode and dentry */
4341 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
4342 if (IS_ERR(root)) {
dcbb4c10 4343 f2fs_err(sbi, "Failed to read root inode");
aff063e2 4344 err = PTR_ERR(root);
60aa4d55 4345 goto free_node_inode;
aff063e2 4346 }
bcbfbd60
CY
4347 if (!S_ISDIR(root->i_mode) || !root->i_blocks ||
4348 !root->i_size || !root->i_nlink) {
9d847950 4349 iput(root);
8f99a946 4350 err = -EINVAL;
60aa4d55 4351 goto free_node_inode;
8f99a946 4352 }
aff063e2
JK
4353
4354 sb->s_root = d_make_root(root); /* allocate root dentry */
4355 if (!sb->s_root) {
4356 err = -ENOMEM;
025cdb16 4357 goto free_node_inode;
aff063e2
JK
4358 }
4359
6ce19aff 4360 err = f2fs_init_compress_inode(sbi);
b59d0bae 4361 if (err)
a398101a 4362 goto free_root_inode;
b59d0bae 4363
6ce19aff
CY
4364 err = f2fs_register_sysfs(sbi);
4365 if (err)
4366 goto free_compress_inode;
4367
ea676733 4368#ifdef CONFIG_QUOTA
76cf05d7 4369 /* Enable quota usage during mount */
7beb01f7 4370 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb)) {
ea676733 4371 err = f2fs_enable_quotas(sb);
730746ce 4372 if (err)
dcbb4c10 4373 f2fs_err(sbi, "Cannot turn on quotas: error %d", err);
ea676733
JK
4374 }
4375#endif
7a88ddb5 4376 /* if there are any orphan inodes, free them */
4d57b86d 4377 err = f2fs_recover_orphan_inodes(sbi);
4b2414d0 4378 if (err)
ea676733 4379 goto free_meta;
4b2414d0 4380
4354994f 4381 if (unlikely(is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)))
aa2c8c43 4382 goto reset_checkpoint;
4354994f 4383
6437d1b0 4384 /* recover fsynced data */
a9117eca
CY
4385 if (!test_opt(sbi, DISABLE_ROLL_FORWARD) &&
4386 !test_opt(sbi, NORECOVERY)) {
081d78c2
JK
4387 /*
4388 * mount should be failed, when device has readonly mode, and
4389 * previous checkpoint was not done by clean system shutdown.
4390 */
b61af314 4391 if (f2fs_hw_is_readonly(sbi)) {
23738e74
CY
4392 if (!is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
4393 err = f2fs_recover_fsync_data(sbi, true);
4394 if (err > 0) {
4395 err = -EROFS;
4396 f2fs_err(sbi, "Need to recover fsync data, but "
4397 "write access unavailable, please try "
4398 "mount w/ disable_roll_forward or norecovery");
4399 }
4400 if (err < 0)
4401 goto free_meta;
4402 }
4403 f2fs_info(sbi, "write access unavailable, skipping recovery");
b61af314 4404 goto reset_checkpoint;
081d78c2 4405 }
2adc3505
CY
4406
4407 if (need_fsck)
4408 set_sbi_flag(sbi, SBI_NEED_FSCK);
4409
aa2c8c43
CY
4410 if (skip_recovery)
4411 goto reset_checkpoint;
a468f0ef 4412
4d57b86d 4413 err = f2fs_recover_fsync_data(sbi, false);
6781eabb 4414 if (err < 0) {
aa2c8c43
CY
4415 if (err != -ENOMEM)
4416 skip_recovery = true;
2adc3505 4417 need_fsck = true;
dcbb4c10
JP
4418 f2fs_err(sbi, "Cannot recover all fsync data errno=%d",
4419 err);
4b2414d0 4420 goto free_meta;
ed2e621a 4421 }
6781eabb 4422 } else {
4d57b86d 4423 err = f2fs_recover_fsync_data(sbi, true);
6781eabb
JK
4424
4425 if (!f2fs_readonly(sb) && err > 0) {
4426 err = -EINVAL;
dcbb4c10 4427 f2fs_err(sbi, "Need to recover fsync data");
ea676733 4428 goto free_meta;
6781eabb 4429 }
6437d1b0 4430 }
d508c94e
SK
4431
4432 /*
4433 * If the f2fs is not readonly and fsync data recovery succeeds,
4434 * check zoned block devices' write pointer consistency.
4435 */
4436 if (!err && !f2fs_readonly(sb) && f2fs_sb_has_blkzoned(sbi)) {
4437 err = f2fs_check_write_pointer(sbi);
4438 if (err)
4439 goto free_meta;
4440 }
4441
aa2c8c43 4442reset_checkpoint:
093749e2
CY
4443 f2fs_init_inmem_curseg(sbi);
4444
4d57b86d 4445 /* f2fs_recover_fsync_data() cleared this already */
315df839 4446 clear_sbi_flag(sbi, SBI_POR_DOING);
b59d0bae 4447
4354994f
DR
4448 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
4449 err = f2fs_disable_checkpoint(sbi);
4450 if (err)
812a9597 4451 goto sync_free_meta;
4354994f
DR
4452 } else if (is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)) {
4453 f2fs_enable_checkpoint(sbi);
4454 }
4455
6437d1b0
JK
4456 /*
4457 * If filesystem is not mounted as read-only then
4458 * do start the gc_thread.
4459 */
5911d2d1
CY
4460 if ((F2FS_OPTION(sbi).bggc_mode != BGGC_MODE_OFF ||
4461 test_opt(sbi, GC_MERGE)) && !f2fs_readonly(sb)) {
6437d1b0 4462 /* After POR, we can run background GC thread.*/
4d57b86d 4463 err = f2fs_start_gc_thread(sbi);
6437d1b0 4464 if (err)
812a9597 4465 goto sync_free_meta;
6437d1b0 4466 }
5222595d 4467 kvfree(options);
da554e48 4468
4469 /* recover broken superblock */
f2353d7b 4470 if (recovery) {
41214b3c 4471 err = f2fs_commit_super(sbi, true);
dcbb4c10
JP
4472 f2fs_info(sbi, "Try to recover %dth superblock, ret: %d",
4473 sbi->valid_super_block ? 1 : 2, err);
da554e48 4474 }
4475
bae01eda
CY
4476 f2fs_join_shrinker(sbi);
4477
84b89e5d
JK
4478 f2fs_tuning_parameters(sbi);
4479
dcbb4c10
JP
4480 f2fs_notice(sbi, "Mounted with checkpoint version = %llx",
4481 cur_cp_version(F2FS_CKPT(sbi)));
6beceb54 4482 f2fs_update_time(sbi, CP_TIME);
d0239e1b 4483 f2fs_update_time(sbi, REQ_TIME);
db610a64 4484 clear_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
aff063e2 4485 return 0;
6437d1b0 4486
812a9597
JK
4487sync_free_meta:
4488 /* safe to flush all the data */
4489 sync_filesystem(sbi->sb);
aa2c8c43 4490 retry_cnt = 0;
812a9597 4491
4b2414d0 4492free_meta:
ea676733 4493#ifdef CONFIG_QUOTA
26b5a079 4494 f2fs_truncate_quota_inode_pages(sb);
7beb01f7 4495 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb))
ea676733
JK
4496 f2fs_quota_off_umount(sbi->sb);
4497#endif
4b2414d0 4498 /*
4d57b86d 4499 * Some dirty meta pages can be produced by f2fs_recover_orphan_inodes()
4b2414d0 4500 * failed by EIO. Then, iput(node_inode) can trigger balance_fs_bg()
4d57b86d
CY
4501 * followed by f2fs_write_checkpoint() through f2fs_write_node_pages(), which
4502 * falls into an infinite loop in f2fs_sync_meta_pages().
4b2414d0
CY
4503 */
4504 truncate_inode_pages_final(META_MAPPING(sbi));
812a9597
JK
4505 /* evict some inodes being cached by GC */
4506 evict_inodes(sb);
dc6b2055 4507 f2fs_unregister_sysfs(sbi);
6ce19aff
CY
4508free_compress_inode:
4509 f2fs_destroy_compress_inode(sbi);
aff063e2
JK
4510free_root_inode:
4511 dput(sb->s_root);
4512 sb->s_root = NULL;
4513free_node_inode:
4d57b86d 4514 f2fs_release_ino_entry(sbi, true);
bae01eda 4515 truncate_inode_pages_final(NODE_MAPPING(sbi));
aff063e2 4516 iput(sbi->node_inode);
7c77bf7d 4517 sbi->node_inode = NULL;
60aa4d55
ST
4518free_stats:
4519 f2fs_destroy_stats(sbi);
aff063e2 4520free_nm:
5429c9db
DM
4521 /* stop discard thread before destroying node manager */
4522 f2fs_stop_discard_thread(sbi);
4d57b86d 4523 f2fs_destroy_node_manager(sbi);
aff063e2 4524free_sm:
4d57b86d 4525 f2fs_destroy_segment_manager(sbi);
4c8ff709 4526 f2fs_destroy_post_read_wq(sbi);
261eeb9c
DJ
4527stop_ckpt_thread:
4528 f2fs_stop_ckpt_thread(sbi);
3c62be17
JK
4529free_devices:
4530 destroy_device_list(sbi);
5222595d 4531 kvfree(sbi->ckpt);
aff063e2
JK
4532free_meta_inode:
4533 make_bad_inode(sbi->meta_inode);
4534 iput(sbi->meta_inode);
7c77bf7d 4535 sbi->meta_inode = NULL;
31083031
CY
4536free_page_array_cache:
4537 f2fs_destroy_page_array_cache(sbi);
a999150f
CY
4538free_xattr_cache:
4539 f2fs_destroy_xattr_caches(sbi);
0a595eba
JK
4540free_io_dummy:
4541 mempool_destroy(sbi->write_io_dummy);
d7997e63
CY
4542free_percpu:
4543 destroy_percpu_info(sbi);
a4b68176
DJ
4544free_iostat:
4545 f2fs_destroy_iostat(sbi);
d7997e63 4546free_bio_info:
a912b54d 4547 for (i = 0; i < NR_PAGE_TYPE; i++)
5222595d 4548 kvfree(sbi->write_io[i]);
5aba5430 4549
5298d4bf 4550#if IS_ENABLED(CONFIG_UNICODE)
eca4873e 4551 utf8_unload(sb->s_encoding);
89ff6005 4552 sb->s_encoding = NULL;
5aba5430 4553#endif
d7997e63 4554free_options:
4b2414d0
CY
4555#ifdef CONFIG_QUOTA
4556 for (i = 0; i < MAXQUOTAS; i++)
ba87a45c 4557 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
4b2414d0 4558#endif
ac4acb1f 4559 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
5222595d 4560 kvfree(options);
aff063e2 4561free_sb_buf:
742532d1 4562 kfree(raw_super);
aff063e2 4563free_sbi:
43b6573b
KM
4564 if (sbi->s_chksum_driver)
4565 crypto_free_shash(sbi->s_chksum_driver);
742532d1 4566 kfree(sbi);
ed2e621a
JK
4567
4568 /* give only one another chance */
aa2c8c43
CY
4569 if (retry_cnt > 0 && skip_recovery) {
4570 retry_cnt--;
ed2e621a
JK
4571 shrink_dcache_sb(sb);
4572 goto try_onemore;
4573 }
aff063e2
JK
4574 return err;
4575}
4576
4577static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
4578 const char *dev_name, void *data)
4579{
4580 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
4581}
4582
30a5537f
JK
4583static void kill_f2fs_super(struct super_block *sb)
4584{
cce13252 4585 if (sb->s_root) {
1cb50f87
JK
4586 struct f2fs_sb_info *sbi = F2FS_SB(sb);
4587
4588 set_sbi_flag(sbi, SBI_IS_CLOSE);
4589 f2fs_stop_gc_thread(sbi);
4590 f2fs_stop_discard_thread(sbi);
4591
6ce19aff
CY
4592#ifdef CONFIG_F2FS_FS_COMPRESSION
4593 /*
4594 * latter evict_inode() can bypass checking and invalidating
4595 * compress inode cache.
4596 */
4597 if (test_opt(sbi, COMPRESS_CACHE))
4598 truncate_inode_pages_final(COMPRESS_MAPPING(sbi));
4599#endif
4600
1cb50f87
JK
4601 if (is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
4602 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
4603 struct cp_control cpc = {
4604 .reason = CP_UMOUNT,
4605 };
4606 f2fs_write_checkpoint(sbi, &cpc);
4607 }
1378752b
CY
4608
4609 if (is_sbi_flag_set(sbi, SBI_IS_RECOVERED) && f2fs_readonly(sb))
4610 sb->s_flags &= ~SB_RDONLY;
cce13252 4611 }
30a5537f
JK
4612 kill_block_super(sb);
4613}
4614
aff063e2
JK
4615static struct file_system_type f2fs_fs_type = {
4616 .owner = THIS_MODULE,
4617 .name = "f2fs",
4618 .mount = f2fs_mount,
30a5537f 4619 .kill_sb = kill_f2fs_super,
984fc4e7 4620 .fs_flags = FS_REQUIRES_DEV | FS_ALLOW_IDMAP,
aff063e2 4621};
7f78e035 4622MODULE_ALIAS_FS("f2fs");
aff063e2 4623
6e6093a8 4624static int __init init_inodecache(void)
aff063e2 4625{
5d097056
VD
4626 f2fs_inode_cachep = kmem_cache_create("f2fs_inode_cache",
4627 sizeof(struct f2fs_inode_info), 0,
4628 SLAB_RECLAIM_ACCOUNT|SLAB_ACCOUNT, NULL);
6bacf52f 4629 if (!f2fs_inode_cachep)
aff063e2
JK
4630 return -ENOMEM;
4631 return 0;
4632}
4633
4634static void destroy_inodecache(void)
4635{
4636 /*
4637 * Make sure all delayed rcu free inodes are flushed before we
4638 * destroy cache.
4639 */
4640 rcu_barrier();
4641 kmem_cache_destroy(f2fs_inode_cachep);
4642}
4643
4644static int __init init_f2fs_fs(void)
4645{
4646 int err;
4647
4071e67c
AP
4648 if (PAGE_SIZE != F2FS_BLKSIZE) {
4649 printk("F2FS not supported on PAGE_SIZE(%lu) != %d\n",
4650 PAGE_SIZE, F2FS_BLKSIZE);
4651 return -EINVAL;
4652 }
4653
aff063e2
JK
4654 err = init_inodecache();
4655 if (err)
4656 goto fail;
4d57b86d 4657 err = f2fs_create_node_manager_caches();
aff063e2 4658 if (err)
9890ff3f 4659 goto free_inodecache;
4d57b86d 4660 err = f2fs_create_segment_manager_caches();
aff063e2 4661 if (err)
9890ff3f 4662 goto free_node_manager_caches;
4d57b86d 4663 err = f2fs_create_checkpoint_caches();
aff063e2 4664 if (err)
06292073 4665 goto free_segment_manager_caches;
cad83c96 4666 err = f2fs_create_recovery_cache();
1dcc336b
CY
4667 if (err)
4668 goto free_checkpoint_caches;
cad83c96
CY
4669 err = f2fs_create_extent_cache();
4670 if (err)
4671 goto free_recovery_cache;
093749e2 4672 err = f2fs_create_garbage_collection_cache();
a398101a 4673 if (err)
1dcc336b 4674 goto free_extent_cache;
093749e2
CY
4675 err = f2fs_init_sysfs();
4676 if (err)
4677 goto free_garbage_collection_cache;
e33c267a 4678 err = register_shrinker(&f2fs_shrinker_info, "f2fs-shrinker");
cfc4d971 4679 if (err)
a398101a 4680 goto free_sysfs;
2658e50d
JK
4681 err = register_filesystem(&f2fs_fs_type);
4682 if (err)
4683 goto free_shrinker;
21acc07d 4684 f2fs_create_root_stats();
6dbb1796
EB
4685 err = f2fs_init_post_read_processing();
4686 if (err)
4687 goto free_root_stats;
a4b68176 4688 err = f2fs_init_iostat_processing();
0b20fcec
CY
4689 if (err)
4690 goto free_post_read;
a4b68176
DJ
4691 err = f2fs_init_bio_entry_cache();
4692 if (err)
4693 goto free_iostat;
f543805f
CY
4694 err = f2fs_init_bioset();
4695 if (err)
4696 goto free_bio_enrty_cache;
5e6bbde9
CY
4697 err = f2fs_init_compress_mempool();
4698 if (err)
4699 goto free_bioset;
c68d6c88
CY
4700 err = f2fs_init_compress_cache();
4701 if (err)
4702 goto free_compress_mempool;
4d9a2bb1
CY
4703 err = f2fs_create_casefold_cache();
4704 if (err)
4705 goto free_compress_cache;
9890ff3f 4706 return 0;
4d9a2bb1
CY
4707free_compress_cache:
4708 f2fs_destroy_compress_cache();
c68d6c88
CY
4709free_compress_mempool:
4710 f2fs_destroy_compress_mempool();
5e6bbde9
CY
4711free_bioset:
4712 f2fs_destroy_bioset();
f543805f
CY
4713free_bio_enrty_cache:
4714 f2fs_destroy_bio_entry_cache();
a4b68176
DJ
4715free_iostat:
4716 f2fs_destroy_iostat_processing();
0b20fcec
CY
4717free_post_read:
4718 f2fs_destroy_post_read_processing();
6dbb1796
EB
4719free_root_stats:
4720 f2fs_destroy_root_stats();
787c7b8c 4721 unregister_filesystem(&f2fs_fs_type);
2658e50d
JK
4722free_shrinker:
4723 unregister_shrinker(&f2fs_shrinker_info);
a398101a 4724free_sysfs:
dc6b2055 4725 f2fs_exit_sysfs();
093749e2
CY
4726free_garbage_collection_cache:
4727 f2fs_destroy_garbage_collection_cache();
1dcc336b 4728free_extent_cache:
4d57b86d 4729 f2fs_destroy_extent_cache();
cad83c96
CY
4730free_recovery_cache:
4731 f2fs_destroy_recovery_cache();
9890ff3f 4732free_checkpoint_caches:
4d57b86d 4733 f2fs_destroy_checkpoint_caches();
7fd9e544 4734free_segment_manager_caches:
4d57b86d 4735 f2fs_destroy_segment_manager_caches();
9890ff3f 4736free_node_manager_caches:
4d57b86d 4737 f2fs_destroy_node_manager_caches();
9890ff3f
ZH
4738free_inodecache:
4739 destroy_inodecache();
aff063e2
JK
4740fail:
4741 return err;
4742}
4743
4744static void __exit exit_f2fs_fs(void)
4745{
4d9a2bb1 4746 f2fs_destroy_casefold_cache();
c68d6c88 4747 f2fs_destroy_compress_cache();
5e6bbde9 4748 f2fs_destroy_compress_mempool();
f543805f 4749 f2fs_destroy_bioset();
0b20fcec 4750 f2fs_destroy_bio_entry_cache();
a4b68176 4751 f2fs_destroy_iostat_processing();
6dbb1796 4752 f2fs_destroy_post_read_processing();
4589d25d 4753 f2fs_destroy_root_stats();
aff063e2 4754 unregister_filesystem(&f2fs_fs_type);
b8bef79d 4755 unregister_shrinker(&f2fs_shrinker_info);
dc6b2055 4756 f2fs_exit_sysfs();
093749e2 4757 f2fs_destroy_garbage_collection_cache();
4d57b86d 4758 f2fs_destroy_extent_cache();
cad83c96 4759 f2fs_destroy_recovery_cache();
4d57b86d
CY
4760 f2fs_destroy_checkpoint_caches();
4761 f2fs_destroy_segment_manager_caches();
4762 f2fs_destroy_node_manager_caches();
aff063e2
JK
4763 destroy_inodecache();
4764}
4765
4766module_init(init_f2fs_fs)
4767module_exit(exit_f2fs_fs)
4768
4769MODULE_AUTHOR("Samsung Electronics's Praesto Team");
4770MODULE_DESCRIPTION("Flash Friendly File System");
4771MODULE_LICENSE("GPL");
0dd57178 4772MODULE_SOFTDEP("pre: crc32");
b4b9d34c 4773