blob: fba413ced98263ceecd64eae4ef64fe5a55ebeb8 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * fs/f2fs/super.c
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00007 */
8#include <linux/module.h>
9#include <linux/init.h>
10#include <linux/fs.h>
11#include <linux/statfs.h>
12#include <linux/buffer_head.h>
13#include <linux/backing-dev.h>
14#include <linux/kthread.h>
15#include <linux/parser.h>
16#include <linux/mount.h>
17#include <linux/seq_file.h>
18#include <linux/proc_fs.h>
19#include <linux/random.h>
20#include <linux/exportfs.h>
21#include <linux/blkdev.h>
22#include <linux/quotaops.h>
23#include <linux/f2fs_fs.h>
24#include <linux/sysfs.h>
25#include <linux/quota.h>
David Brazdil0f672f62019-12-10 10:32:29 +000026#include <linux/unicode.h>
Olivier Deprez157378f2022-04-04 15:47:50 +020027#include <linux/part_stat.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000028
29#include "f2fs.h"
30#include "node.h"
31#include "segment.h"
32#include "xattr.h"
33#include "gc.h"
34#include "trace.h"
35
36#define CREATE_TRACE_POINTS
37#include <trace/events/f2fs.h>
38
39static struct kmem_cache *f2fs_inode_cachep;
40
41#ifdef CONFIG_F2FS_FAULT_INJECTION
42
David Brazdil0f672f62019-12-10 10:32:29 +000043const char *f2fs_fault_name[FAULT_MAX] = {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000044 [FAULT_KMALLOC] = "kmalloc",
45 [FAULT_KVMALLOC] = "kvmalloc",
46 [FAULT_PAGE_ALLOC] = "page alloc",
47 [FAULT_PAGE_GET] = "page get",
48 [FAULT_ALLOC_BIO] = "alloc bio",
49 [FAULT_ALLOC_NID] = "alloc nid",
50 [FAULT_ORPHAN] = "orphan",
51 [FAULT_BLOCK] = "no more block",
52 [FAULT_DIR_DEPTH] = "too big dir depth",
53 [FAULT_EVICT_INODE] = "evict_inode fail",
54 [FAULT_TRUNCATE] = "truncate fail",
David Brazdil0f672f62019-12-10 10:32:29 +000055 [FAULT_READ_IO] = "read IO error",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000056 [FAULT_CHECKPOINT] = "checkpoint error",
57 [FAULT_DISCARD] = "discard error",
David Brazdil0f672f62019-12-10 10:32:29 +000058 [FAULT_WRITE_IO] = "write IO error",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000059};
60
61void f2fs_build_fault_attr(struct f2fs_sb_info *sbi, unsigned int rate,
62 unsigned int type)
63{
64 struct f2fs_fault_info *ffi = &F2FS_OPTION(sbi).fault_info;
65
66 if (rate) {
67 atomic_set(&ffi->inject_ops, 0);
68 ffi->inject_rate = rate;
69 }
70
71 if (type)
72 ffi->inject_type = type;
73
74 if (!rate && !type)
75 memset(ffi, 0, sizeof(struct f2fs_fault_info));
76}
77#endif
78
79/* f2fs-wide shrinker description */
80static struct shrinker f2fs_shrinker_info = {
81 .scan_objects = f2fs_shrink_scan,
82 .count_objects = f2fs_shrink_count,
83 .seeks = DEFAULT_SEEKS,
84};
85
86enum {
87 Opt_gc_background,
88 Opt_disable_roll_forward,
89 Opt_norecovery,
90 Opt_discard,
91 Opt_nodiscard,
92 Opt_noheap,
93 Opt_heap,
94 Opt_user_xattr,
95 Opt_nouser_xattr,
96 Opt_acl,
97 Opt_noacl,
98 Opt_active_logs,
99 Opt_disable_ext_identify,
100 Opt_inline_xattr,
101 Opt_noinline_xattr,
102 Opt_inline_xattr_size,
103 Opt_inline_data,
104 Opt_inline_dentry,
105 Opt_noinline_dentry,
106 Opt_flush_merge,
107 Opt_noflush_merge,
108 Opt_nobarrier,
109 Opt_fastboot,
110 Opt_extent_cache,
111 Opt_noextent_cache,
112 Opt_noinline_data,
113 Opt_data_flush,
114 Opt_reserve_root,
115 Opt_resgid,
116 Opt_resuid,
117 Opt_mode,
118 Opt_io_size_bits,
119 Opt_fault_injection,
120 Opt_fault_type,
121 Opt_lazytime,
122 Opt_nolazytime,
123 Opt_quota,
124 Opt_noquota,
125 Opt_usrquota,
126 Opt_grpquota,
127 Opt_prjquota,
128 Opt_usrjquota,
129 Opt_grpjquota,
130 Opt_prjjquota,
131 Opt_offusrjquota,
132 Opt_offgrpjquota,
133 Opt_offprjjquota,
134 Opt_jqfmt_vfsold,
135 Opt_jqfmt_vfsv0,
136 Opt_jqfmt_vfsv1,
137 Opt_whint,
138 Opt_alloc,
139 Opt_fsync,
140 Opt_test_dummy_encryption,
Olivier Deprez157378f2022-04-04 15:47:50 +0200141 Opt_inlinecrypt,
David Brazdil0f672f62019-12-10 10:32:29 +0000142 Opt_checkpoint_disable,
143 Opt_checkpoint_disable_cap,
144 Opt_checkpoint_disable_cap_perc,
145 Opt_checkpoint_enable,
Olivier Deprez157378f2022-04-04 15:47:50 +0200146 Opt_compress_algorithm,
147 Opt_compress_log_size,
148 Opt_compress_extension,
149 Opt_atgc,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000150 Opt_err,
151};
152
153static match_table_t f2fs_tokens = {
154 {Opt_gc_background, "background_gc=%s"},
155 {Opt_disable_roll_forward, "disable_roll_forward"},
156 {Opt_norecovery, "norecovery"},
157 {Opt_discard, "discard"},
158 {Opt_nodiscard, "nodiscard"},
159 {Opt_noheap, "no_heap"},
160 {Opt_heap, "heap"},
161 {Opt_user_xattr, "user_xattr"},
162 {Opt_nouser_xattr, "nouser_xattr"},
163 {Opt_acl, "acl"},
164 {Opt_noacl, "noacl"},
165 {Opt_active_logs, "active_logs=%u"},
166 {Opt_disable_ext_identify, "disable_ext_identify"},
167 {Opt_inline_xattr, "inline_xattr"},
168 {Opt_noinline_xattr, "noinline_xattr"},
169 {Opt_inline_xattr_size, "inline_xattr_size=%u"},
170 {Opt_inline_data, "inline_data"},
171 {Opt_inline_dentry, "inline_dentry"},
172 {Opt_noinline_dentry, "noinline_dentry"},
173 {Opt_flush_merge, "flush_merge"},
174 {Opt_noflush_merge, "noflush_merge"},
175 {Opt_nobarrier, "nobarrier"},
176 {Opt_fastboot, "fastboot"},
177 {Opt_extent_cache, "extent_cache"},
178 {Opt_noextent_cache, "noextent_cache"},
179 {Opt_noinline_data, "noinline_data"},
180 {Opt_data_flush, "data_flush"},
181 {Opt_reserve_root, "reserve_root=%u"},
182 {Opt_resgid, "resgid=%u"},
183 {Opt_resuid, "resuid=%u"},
184 {Opt_mode, "mode=%s"},
185 {Opt_io_size_bits, "io_bits=%u"},
186 {Opt_fault_injection, "fault_injection=%u"},
187 {Opt_fault_type, "fault_type=%u"},
188 {Opt_lazytime, "lazytime"},
189 {Opt_nolazytime, "nolazytime"},
190 {Opt_quota, "quota"},
191 {Opt_noquota, "noquota"},
192 {Opt_usrquota, "usrquota"},
193 {Opt_grpquota, "grpquota"},
194 {Opt_prjquota, "prjquota"},
195 {Opt_usrjquota, "usrjquota=%s"},
196 {Opt_grpjquota, "grpjquota=%s"},
197 {Opt_prjjquota, "prjjquota=%s"},
198 {Opt_offusrjquota, "usrjquota="},
199 {Opt_offgrpjquota, "grpjquota="},
200 {Opt_offprjjquota, "prjjquota="},
201 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
202 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
203 {Opt_jqfmt_vfsv1, "jqfmt=vfsv1"},
204 {Opt_whint, "whint_mode=%s"},
205 {Opt_alloc, "alloc_mode=%s"},
206 {Opt_fsync, "fsync_mode=%s"},
Olivier Deprez157378f2022-04-04 15:47:50 +0200207 {Opt_test_dummy_encryption, "test_dummy_encryption=%s"},
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000208 {Opt_test_dummy_encryption, "test_dummy_encryption"},
Olivier Deprez157378f2022-04-04 15:47:50 +0200209 {Opt_inlinecrypt, "inlinecrypt"},
David Brazdil0f672f62019-12-10 10:32:29 +0000210 {Opt_checkpoint_disable, "checkpoint=disable"},
211 {Opt_checkpoint_disable_cap, "checkpoint=disable:%u"},
212 {Opt_checkpoint_disable_cap_perc, "checkpoint=disable:%u%%"},
213 {Opt_checkpoint_enable, "checkpoint=enable"},
Olivier Deprez157378f2022-04-04 15:47:50 +0200214 {Opt_compress_algorithm, "compress_algorithm=%s"},
215 {Opt_compress_log_size, "compress_log_size=%u"},
216 {Opt_compress_extension, "compress_extension=%s"},
217 {Opt_atgc, "atgc"},
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000218 {Opt_err, NULL},
219};
220
David Brazdil0f672f62019-12-10 10:32:29 +0000221void f2fs_printk(struct f2fs_sb_info *sbi, const char *fmt, ...)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000222{
223 struct va_format vaf;
224 va_list args;
David Brazdil0f672f62019-12-10 10:32:29 +0000225 int level;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000226
227 va_start(args, fmt);
David Brazdil0f672f62019-12-10 10:32:29 +0000228
229 level = printk_get_level(fmt);
230 vaf.fmt = printk_skip_level(fmt);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000231 vaf.va = &args;
David Brazdil0f672f62019-12-10 10:32:29 +0000232 printk("%c%cF2FS-fs (%s): %pV\n",
233 KERN_SOH_ASCII, level, sbi->sb->s_id, &vaf);
234
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000235 va_end(args);
236}
237
David Brazdil0f672f62019-12-10 10:32:29 +0000238#ifdef CONFIG_UNICODE
239static const struct f2fs_sb_encodings {
240 __u16 magic;
241 char *name;
242 char *version;
243} f2fs_sb_encoding_map[] = {
244 {F2FS_ENC_UTF8_12_1, "utf8", "12.1.0"},
245};
246
247static int f2fs_sb_read_encoding(const struct f2fs_super_block *sb,
248 const struct f2fs_sb_encodings **encoding,
249 __u16 *flags)
250{
251 __u16 magic = le16_to_cpu(sb->s_encoding);
252 int i;
253
254 for (i = 0; i < ARRAY_SIZE(f2fs_sb_encoding_map); i++)
255 if (magic == f2fs_sb_encoding_map[i].magic)
256 break;
257
258 if (i >= ARRAY_SIZE(f2fs_sb_encoding_map))
259 return -EINVAL;
260
261 *encoding = &f2fs_sb_encoding_map[i];
262 *flags = le16_to_cpu(sb->s_encoding_flags);
263
264 return 0;
265}
266#endif
267
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000268static inline void limit_reserve_root(struct f2fs_sb_info *sbi)
269{
Olivier Deprez92d4c212022-12-06 15:05:30 +0100270 block_t limit = min((sbi->user_block_count >> 3),
David Brazdil0f672f62019-12-10 10:32:29 +0000271 sbi->user_block_count - sbi->reserved_blocks);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000272
Olivier Deprez92d4c212022-12-06 15:05:30 +0100273 /* limit is 12.5% */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000274 if (test_opt(sbi, RESERVE_ROOT) &&
275 F2FS_OPTION(sbi).root_reserved_blocks > limit) {
276 F2FS_OPTION(sbi).root_reserved_blocks = limit;
David Brazdil0f672f62019-12-10 10:32:29 +0000277 f2fs_info(sbi, "Reduce reserved blocks for root = %u",
278 F2FS_OPTION(sbi).root_reserved_blocks);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000279 }
280 if (!test_opt(sbi, RESERVE_ROOT) &&
281 (!uid_eq(F2FS_OPTION(sbi).s_resuid,
282 make_kuid(&init_user_ns, F2FS_DEF_RESUID)) ||
283 !gid_eq(F2FS_OPTION(sbi).s_resgid,
284 make_kgid(&init_user_ns, F2FS_DEF_RESGID))))
David Brazdil0f672f62019-12-10 10:32:29 +0000285 f2fs_info(sbi, "Ignore s_resuid=%u, s_resgid=%u w/o reserve_root",
286 from_kuid_munged(&init_user_ns,
287 F2FS_OPTION(sbi).s_resuid),
288 from_kgid_munged(&init_user_ns,
289 F2FS_OPTION(sbi).s_resgid));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000290}
291
Olivier Deprez157378f2022-04-04 15:47:50 +0200292static inline int adjust_reserved_segment(struct f2fs_sb_info *sbi)
293{
294 unsigned int sec_blks = sbi->blocks_per_seg * sbi->segs_per_sec;
295 unsigned int avg_vblocks;
296 unsigned int wanted_reserved_segments;
297 block_t avail_user_block_count;
298
299 if (!F2FS_IO_ALIGNED(sbi))
300 return 0;
301
302 /* average valid block count in section in worst case */
303 avg_vblocks = sec_blks / F2FS_IO_SIZE(sbi);
304
305 /*
306 * we need enough free space when migrating one section in worst case
307 */
308 wanted_reserved_segments = (F2FS_IO_SIZE(sbi) / avg_vblocks) *
309 reserved_segments(sbi);
310 wanted_reserved_segments -= reserved_segments(sbi);
311
312 avail_user_block_count = sbi->user_block_count -
313 sbi->current_reserved_blocks -
314 F2FS_OPTION(sbi).root_reserved_blocks;
315
316 if (wanted_reserved_segments * sbi->blocks_per_seg >
317 avail_user_block_count) {
318 f2fs_err(sbi, "IO align feature can't grab additional reserved segment: %u, available segments: %u",
319 wanted_reserved_segments,
320 avail_user_block_count >> sbi->log_blocks_per_seg);
321 return -ENOSPC;
322 }
323
324 SM_I(sbi)->additional_reserved_segments = wanted_reserved_segments;
325
326 f2fs_info(sbi, "IO align feature needs additional reserved segment: %u",
327 wanted_reserved_segments);
328
329 return 0;
330}
331
Olivier Deprez0e641232021-09-23 10:07:05 +0200332static inline void adjust_unusable_cap_perc(struct f2fs_sb_info *sbi)
333{
334 if (!F2FS_OPTION(sbi).unusable_cap_perc)
335 return;
336
337 if (F2FS_OPTION(sbi).unusable_cap_perc == 100)
338 F2FS_OPTION(sbi).unusable_cap = sbi->user_block_count;
339 else
340 F2FS_OPTION(sbi).unusable_cap = (sbi->user_block_count / 100) *
341 F2FS_OPTION(sbi).unusable_cap_perc;
342
343 f2fs_info(sbi, "Adjust unusable cap for checkpoint=disable = %u / %u%%",
344 F2FS_OPTION(sbi).unusable_cap,
345 F2FS_OPTION(sbi).unusable_cap_perc);
346}
347
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000348static void init_once(void *foo)
349{
350 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
351
352 inode_init_once(&fi->vfs_inode);
353}
354
355#ifdef CONFIG_QUOTA
356static const char * const quotatypes[] = INITQFNAMES;
357#define QTYPE2NAME(t) (quotatypes[t])
358static int f2fs_set_qf_name(struct super_block *sb, int qtype,
359 substring_t *args)
360{
361 struct f2fs_sb_info *sbi = F2FS_SB(sb);
362 char *qname;
363 int ret = -EINVAL;
364
365 if (sb_any_quota_loaded(sb) && !F2FS_OPTION(sbi).s_qf_names[qtype]) {
David Brazdil0f672f62019-12-10 10:32:29 +0000366 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000367 return -EINVAL;
368 }
David Brazdil0f672f62019-12-10 10:32:29 +0000369 if (f2fs_sb_has_quota_ino(sbi)) {
370 f2fs_info(sbi, "QUOTA feature is enabled, so ignore qf_name");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000371 return 0;
372 }
373
374 qname = match_strdup(args);
375 if (!qname) {
David Brazdil0f672f62019-12-10 10:32:29 +0000376 f2fs_err(sbi, "Not enough memory for storing quotafile name");
377 return -ENOMEM;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000378 }
379 if (F2FS_OPTION(sbi).s_qf_names[qtype]) {
380 if (strcmp(F2FS_OPTION(sbi).s_qf_names[qtype], qname) == 0)
381 ret = 0;
382 else
David Brazdil0f672f62019-12-10 10:32:29 +0000383 f2fs_err(sbi, "%s quota file already specified",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000384 QTYPE2NAME(qtype));
385 goto errout;
386 }
387 if (strchr(qname, '/')) {
David Brazdil0f672f62019-12-10 10:32:29 +0000388 f2fs_err(sbi, "quotafile must be on filesystem root");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000389 goto errout;
390 }
391 F2FS_OPTION(sbi).s_qf_names[qtype] = qname;
392 set_opt(sbi, QUOTA);
393 return 0;
394errout:
Olivier Deprez157378f2022-04-04 15:47:50 +0200395 kfree(qname);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000396 return ret;
397}
398
399static int f2fs_clear_qf_name(struct super_block *sb, int qtype)
400{
401 struct f2fs_sb_info *sbi = F2FS_SB(sb);
402
403 if (sb_any_quota_loaded(sb) && F2FS_OPTION(sbi).s_qf_names[qtype]) {
David Brazdil0f672f62019-12-10 10:32:29 +0000404 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000405 return -EINVAL;
406 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200407 kfree(F2FS_OPTION(sbi).s_qf_names[qtype]);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000408 F2FS_OPTION(sbi).s_qf_names[qtype] = NULL;
409 return 0;
410}
411
412static int f2fs_check_quota_options(struct f2fs_sb_info *sbi)
413{
414 /*
415 * We do the test below only for project quotas. 'usrquota' and
416 * 'grpquota' mount options are allowed even without quota feature
417 * to support legacy quotas in quota files.
418 */
David Brazdil0f672f62019-12-10 10:32:29 +0000419 if (test_opt(sbi, PRJQUOTA) && !f2fs_sb_has_project_quota(sbi)) {
420 f2fs_err(sbi, "Project quota feature not enabled. Cannot enable project quota enforcement.");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000421 return -1;
422 }
423 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA] ||
424 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA] ||
425 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]) {
426 if (test_opt(sbi, USRQUOTA) &&
427 F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
428 clear_opt(sbi, USRQUOTA);
429
430 if (test_opt(sbi, GRPQUOTA) &&
431 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
432 clear_opt(sbi, GRPQUOTA);
433
434 if (test_opt(sbi, PRJQUOTA) &&
435 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
436 clear_opt(sbi, PRJQUOTA);
437
438 if (test_opt(sbi, GRPQUOTA) || test_opt(sbi, USRQUOTA) ||
439 test_opt(sbi, PRJQUOTA)) {
David Brazdil0f672f62019-12-10 10:32:29 +0000440 f2fs_err(sbi, "old and new quota format mixing");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000441 return -1;
442 }
443
444 if (!F2FS_OPTION(sbi).s_jquota_fmt) {
David Brazdil0f672f62019-12-10 10:32:29 +0000445 f2fs_err(sbi, "journaled quota format not specified");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000446 return -1;
447 }
448 }
449
David Brazdil0f672f62019-12-10 10:32:29 +0000450 if (f2fs_sb_has_quota_ino(sbi) && F2FS_OPTION(sbi).s_jquota_fmt) {
451 f2fs_info(sbi, "QUOTA feature is enabled, so ignore jquota_fmt");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000452 F2FS_OPTION(sbi).s_jquota_fmt = 0;
453 }
454 return 0;
455}
456#endif
457
Olivier Deprez157378f2022-04-04 15:47:50 +0200458static int f2fs_set_test_dummy_encryption(struct super_block *sb,
459 const char *opt,
460 const substring_t *arg,
461 bool is_remount)
462{
463 struct f2fs_sb_info *sbi = F2FS_SB(sb);
464#ifdef CONFIG_FS_ENCRYPTION
465 int err;
466
467 if (!f2fs_sb_has_encrypt(sbi)) {
468 f2fs_err(sbi, "Encrypt feature is off");
469 return -EINVAL;
470 }
471
472 /*
473 * This mount option is just for testing, and it's not worthwhile to
474 * implement the extra complexity (e.g. RCU protection) that would be
475 * needed to allow it to be set or changed during remount. We do allow
476 * it to be specified during remount, but only if there is no change.
477 */
478 if (is_remount && !F2FS_OPTION(sbi).dummy_enc_policy.policy) {
479 f2fs_warn(sbi, "Can't set test_dummy_encryption on remount");
480 return -EINVAL;
481 }
482 err = fscrypt_set_test_dummy_encryption(
483 sb, arg->from, &F2FS_OPTION(sbi).dummy_enc_policy);
484 if (err) {
485 if (err == -EEXIST)
486 f2fs_warn(sbi,
487 "Can't change test_dummy_encryption on remount");
488 else if (err == -EINVAL)
489 f2fs_warn(sbi, "Value of option \"%s\" is unrecognized",
490 opt);
491 else
492 f2fs_warn(sbi, "Error processing option \"%s\" [%d]",
493 opt, err);
494 return -EINVAL;
495 }
496 f2fs_warn(sbi, "Test dummy encryption mode enabled");
497#else
498 f2fs_warn(sbi, "Test dummy encryption mount option ignored");
499#endif
500 return 0;
501}
502
503static int parse_options(struct super_block *sb, char *options, bool is_remount)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000504{
505 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000506 substring_t args[MAX_OPT_ARGS];
Olivier Deprez157378f2022-04-04 15:47:50 +0200507#ifdef CONFIG_F2FS_FS_COMPRESSION
508 unsigned char (*ext)[F2FS_EXTENSION_LEN];
509 int ext_cnt;
510#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000511 char *p, *name;
512 int arg = 0;
513 kuid_t uid;
514 kgid_t gid;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000515 int ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000516
517 if (!options)
518 return 0;
519
520 while ((p = strsep(&options, ",")) != NULL) {
521 int token;
522 if (!*p)
523 continue;
524 /*
525 * Initialize args struct so we know whether arg was
526 * found; some options take optional arguments.
527 */
528 args[0].to = args[0].from = NULL;
529 token = match_token(p, f2fs_tokens, args);
530
531 switch (token) {
532 case Opt_gc_background:
533 name = match_strdup(&args[0]);
534
535 if (!name)
536 return -ENOMEM;
Olivier Deprez157378f2022-04-04 15:47:50 +0200537 if (!strcmp(name, "on")) {
538 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
539 } else if (!strcmp(name, "off")) {
540 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_OFF;
541 } else if (!strcmp(name, "sync")) {
542 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_SYNC;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000543 } else {
Olivier Deprez157378f2022-04-04 15:47:50 +0200544 kfree(name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000545 return -EINVAL;
546 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200547 kfree(name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000548 break;
549 case Opt_disable_roll_forward:
550 set_opt(sbi, DISABLE_ROLL_FORWARD);
551 break;
552 case Opt_norecovery:
553 /* this option mounts f2fs with ro */
Olivier Deprez0e641232021-09-23 10:07:05 +0200554 set_opt(sbi, NORECOVERY);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000555 if (!f2fs_readonly(sb))
556 return -EINVAL;
557 break;
558 case Opt_discard:
David Brazdil0f672f62019-12-10 10:32:29 +0000559 set_opt(sbi, DISCARD);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000560 break;
561 case Opt_nodiscard:
David Brazdil0f672f62019-12-10 10:32:29 +0000562 if (f2fs_sb_has_blkzoned(sbi)) {
563 f2fs_warn(sbi, "discard is required for zoned block devices");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000564 return -EINVAL;
565 }
566 clear_opt(sbi, DISCARD);
567 break;
568 case Opt_noheap:
569 set_opt(sbi, NOHEAP);
570 break;
571 case Opt_heap:
572 clear_opt(sbi, NOHEAP);
573 break;
574#ifdef CONFIG_F2FS_FS_XATTR
575 case Opt_user_xattr:
576 set_opt(sbi, XATTR_USER);
577 break;
578 case Opt_nouser_xattr:
579 clear_opt(sbi, XATTR_USER);
580 break;
581 case Opt_inline_xattr:
582 set_opt(sbi, INLINE_XATTR);
583 break;
584 case Opt_noinline_xattr:
585 clear_opt(sbi, INLINE_XATTR);
586 break;
587 case Opt_inline_xattr_size:
588 if (args->from && match_int(args, &arg))
589 return -EINVAL;
590 set_opt(sbi, INLINE_XATTR_SIZE);
591 F2FS_OPTION(sbi).inline_xattr_size = arg;
592 break;
593#else
594 case Opt_user_xattr:
David Brazdil0f672f62019-12-10 10:32:29 +0000595 f2fs_info(sbi, "user_xattr options not supported");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000596 break;
597 case Opt_nouser_xattr:
David Brazdil0f672f62019-12-10 10:32:29 +0000598 f2fs_info(sbi, "nouser_xattr options not supported");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000599 break;
600 case Opt_inline_xattr:
David Brazdil0f672f62019-12-10 10:32:29 +0000601 f2fs_info(sbi, "inline_xattr options not supported");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000602 break;
603 case Opt_noinline_xattr:
David Brazdil0f672f62019-12-10 10:32:29 +0000604 f2fs_info(sbi, "noinline_xattr options not supported");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000605 break;
606#endif
607#ifdef CONFIG_F2FS_FS_POSIX_ACL
608 case Opt_acl:
609 set_opt(sbi, POSIX_ACL);
610 break;
611 case Opt_noacl:
612 clear_opt(sbi, POSIX_ACL);
613 break;
614#else
615 case Opt_acl:
David Brazdil0f672f62019-12-10 10:32:29 +0000616 f2fs_info(sbi, "acl options not supported");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000617 break;
618 case Opt_noacl:
David Brazdil0f672f62019-12-10 10:32:29 +0000619 f2fs_info(sbi, "noacl options not supported");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000620 break;
621#endif
622 case Opt_active_logs:
623 if (args->from && match_int(args, &arg))
624 return -EINVAL;
Olivier Deprez157378f2022-04-04 15:47:50 +0200625 if (arg != 2 && arg != 4 &&
626 arg != NR_CURSEG_PERSIST_TYPE)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000627 return -EINVAL;
628 F2FS_OPTION(sbi).active_logs = arg;
629 break;
630 case Opt_disable_ext_identify:
631 set_opt(sbi, DISABLE_EXT_IDENTIFY);
632 break;
633 case Opt_inline_data:
634 set_opt(sbi, INLINE_DATA);
635 break;
636 case Opt_inline_dentry:
637 set_opt(sbi, INLINE_DENTRY);
638 break;
639 case Opt_noinline_dentry:
640 clear_opt(sbi, INLINE_DENTRY);
641 break;
642 case Opt_flush_merge:
643 set_opt(sbi, FLUSH_MERGE);
644 break;
645 case Opt_noflush_merge:
646 clear_opt(sbi, FLUSH_MERGE);
647 break;
648 case Opt_nobarrier:
649 set_opt(sbi, NOBARRIER);
650 break;
651 case Opt_fastboot:
652 set_opt(sbi, FASTBOOT);
653 break;
654 case Opt_extent_cache:
655 set_opt(sbi, EXTENT_CACHE);
656 break;
657 case Opt_noextent_cache:
658 clear_opt(sbi, EXTENT_CACHE);
659 break;
660 case Opt_noinline_data:
661 clear_opt(sbi, INLINE_DATA);
662 break;
663 case Opt_data_flush:
664 set_opt(sbi, DATA_FLUSH);
665 break;
666 case Opt_reserve_root:
667 if (args->from && match_int(args, &arg))
668 return -EINVAL;
669 if (test_opt(sbi, RESERVE_ROOT)) {
David Brazdil0f672f62019-12-10 10:32:29 +0000670 f2fs_info(sbi, "Preserve previous reserve_root=%u",
671 F2FS_OPTION(sbi).root_reserved_blocks);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000672 } else {
673 F2FS_OPTION(sbi).root_reserved_blocks = arg;
674 set_opt(sbi, RESERVE_ROOT);
675 }
676 break;
677 case Opt_resuid:
678 if (args->from && match_int(args, &arg))
679 return -EINVAL;
680 uid = make_kuid(current_user_ns(), arg);
681 if (!uid_valid(uid)) {
David Brazdil0f672f62019-12-10 10:32:29 +0000682 f2fs_err(sbi, "Invalid uid value %d", arg);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000683 return -EINVAL;
684 }
685 F2FS_OPTION(sbi).s_resuid = uid;
686 break;
687 case Opt_resgid:
688 if (args->from && match_int(args, &arg))
689 return -EINVAL;
690 gid = make_kgid(current_user_ns(), arg);
691 if (!gid_valid(gid)) {
David Brazdil0f672f62019-12-10 10:32:29 +0000692 f2fs_err(sbi, "Invalid gid value %d", arg);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000693 return -EINVAL;
694 }
695 F2FS_OPTION(sbi).s_resgid = gid;
696 break;
697 case Opt_mode:
698 name = match_strdup(&args[0]);
699
700 if (!name)
701 return -ENOMEM;
Olivier Deprez157378f2022-04-04 15:47:50 +0200702 if (!strcmp(name, "adaptive")) {
David Brazdil0f672f62019-12-10 10:32:29 +0000703 if (f2fs_sb_has_blkzoned(sbi)) {
704 f2fs_warn(sbi, "adaptive mode is not allowed with zoned block device feature");
Olivier Deprez157378f2022-04-04 15:47:50 +0200705 kfree(name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000706 return -EINVAL;
707 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200708 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
709 } else if (!strcmp(name, "lfs")) {
710 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000711 } else {
Olivier Deprez157378f2022-04-04 15:47:50 +0200712 kfree(name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000713 return -EINVAL;
714 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200715 kfree(name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000716 break;
717 case Opt_io_size_bits:
718 if (args->from && match_int(args, &arg))
719 return -EINVAL;
David Brazdil0f672f62019-12-10 10:32:29 +0000720 if (arg <= 0 || arg > __ilog2_u32(BIO_MAX_PAGES)) {
721 f2fs_warn(sbi, "Not support %d, larger than %d",
722 1 << arg, BIO_MAX_PAGES);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000723 return -EINVAL;
724 }
725 F2FS_OPTION(sbi).write_io_size_bits = arg;
726 break;
David Brazdil0f672f62019-12-10 10:32:29 +0000727#ifdef CONFIG_F2FS_FAULT_INJECTION
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000728 case Opt_fault_injection:
729 if (args->from && match_int(args, &arg))
730 return -EINVAL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000731 f2fs_build_fault_attr(sbi, arg, F2FS_ALL_FAULT_TYPE);
732 set_opt(sbi, FAULT_INJECTION);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000733 break;
David Brazdil0f672f62019-12-10 10:32:29 +0000734
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000735 case Opt_fault_type:
736 if (args->from && match_int(args, &arg))
737 return -EINVAL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000738 f2fs_build_fault_attr(sbi, 0, arg);
739 set_opt(sbi, FAULT_INJECTION);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000740 break;
David Brazdil0f672f62019-12-10 10:32:29 +0000741#else
742 case Opt_fault_injection:
743 f2fs_info(sbi, "fault_injection options not supported");
744 break;
745
746 case Opt_fault_type:
747 f2fs_info(sbi, "fault_type options not supported");
748 break;
749#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000750 case Opt_lazytime:
751 sb->s_flags |= SB_LAZYTIME;
752 break;
753 case Opt_nolazytime:
754 sb->s_flags &= ~SB_LAZYTIME;
755 break;
756#ifdef CONFIG_QUOTA
757 case Opt_quota:
758 case Opt_usrquota:
759 set_opt(sbi, USRQUOTA);
760 break;
761 case Opt_grpquota:
762 set_opt(sbi, GRPQUOTA);
763 break;
764 case Opt_prjquota:
765 set_opt(sbi, PRJQUOTA);
766 break;
767 case Opt_usrjquota:
768 ret = f2fs_set_qf_name(sb, USRQUOTA, &args[0]);
769 if (ret)
770 return ret;
771 break;
772 case Opt_grpjquota:
773 ret = f2fs_set_qf_name(sb, GRPQUOTA, &args[0]);
774 if (ret)
775 return ret;
776 break;
777 case Opt_prjjquota:
778 ret = f2fs_set_qf_name(sb, PRJQUOTA, &args[0]);
779 if (ret)
780 return ret;
781 break;
782 case Opt_offusrjquota:
783 ret = f2fs_clear_qf_name(sb, USRQUOTA);
784 if (ret)
785 return ret;
786 break;
787 case Opt_offgrpjquota:
788 ret = f2fs_clear_qf_name(sb, GRPQUOTA);
789 if (ret)
790 return ret;
791 break;
792 case Opt_offprjjquota:
793 ret = f2fs_clear_qf_name(sb, PRJQUOTA);
794 if (ret)
795 return ret;
796 break;
797 case Opt_jqfmt_vfsold:
798 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_OLD;
799 break;
800 case Opt_jqfmt_vfsv0:
801 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V0;
802 break;
803 case Opt_jqfmt_vfsv1:
804 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V1;
805 break;
806 case Opt_noquota:
807 clear_opt(sbi, QUOTA);
808 clear_opt(sbi, USRQUOTA);
809 clear_opt(sbi, GRPQUOTA);
810 clear_opt(sbi, PRJQUOTA);
811 break;
812#else
813 case Opt_quota:
814 case Opt_usrquota:
815 case Opt_grpquota:
816 case Opt_prjquota:
817 case Opt_usrjquota:
818 case Opt_grpjquota:
819 case Opt_prjjquota:
820 case Opt_offusrjquota:
821 case Opt_offgrpjquota:
822 case Opt_offprjjquota:
823 case Opt_jqfmt_vfsold:
824 case Opt_jqfmt_vfsv0:
825 case Opt_jqfmt_vfsv1:
826 case Opt_noquota:
David Brazdil0f672f62019-12-10 10:32:29 +0000827 f2fs_info(sbi, "quota operations not supported");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000828 break;
829#endif
830 case Opt_whint:
831 name = match_strdup(&args[0]);
832 if (!name)
833 return -ENOMEM;
Olivier Deprez157378f2022-04-04 15:47:50 +0200834 if (!strcmp(name, "user-based")) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000835 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_USER;
Olivier Deprez157378f2022-04-04 15:47:50 +0200836 } else if (!strcmp(name, "off")) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000837 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
Olivier Deprez157378f2022-04-04 15:47:50 +0200838 } else if (!strcmp(name, "fs-based")) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000839 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_FS;
840 } else {
Olivier Deprez157378f2022-04-04 15:47:50 +0200841 kfree(name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000842 return -EINVAL;
843 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200844 kfree(name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000845 break;
846 case Opt_alloc:
847 name = match_strdup(&args[0]);
848 if (!name)
849 return -ENOMEM;
850
Olivier Deprez157378f2022-04-04 15:47:50 +0200851 if (!strcmp(name, "default")) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000852 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
Olivier Deprez157378f2022-04-04 15:47:50 +0200853 } else if (!strcmp(name, "reuse")) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000854 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
855 } else {
Olivier Deprez157378f2022-04-04 15:47:50 +0200856 kfree(name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000857 return -EINVAL;
858 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200859 kfree(name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000860 break;
861 case Opt_fsync:
862 name = match_strdup(&args[0]);
863 if (!name)
864 return -ENOMEM;
Olivier Deprez157378f2022-04-04 15:47:50 +0200865 if (!strcmp(name, "posix")) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000866 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
Olivier Deprez157378f2022-04-04 15:47:50 +0200867 } else if (!strcmp(name, "strict")) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000868 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_STRICT;
Olivier Deprez157378f2022-04-04 15:47:50 +0200869 } else if (!strcmp(name, "nobarrier")) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000870 F2FS_OPTION(sbi).fsync_mode =
871 FSYNC_MODE_NOBARRIER;
872 } else {
Olivier Deprez157378f2022-04-04 15:47:50 +0200873 kfree(name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000874 return -EINVAL;
875 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200876 kfree(name);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000877 break;
878 case Opt_test_dummy_encryption:
Olivier Deprez157378f2022-04-04 15:47:50 +0200879 ret = f2fs_set_test_dummy_encryption(sb, p, &args[0],
880 is_remount);
881 if (ret)
882 return ret;
883 break;
884 case Opt_inlinecrypt:
885#ifdef CONFIG_FS_ENCRYPTION_INLINE_CRYPT
886 sb->s_flags |= SB_INLINECRYPT;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000887#else
Olivier Deprez157378f2022-04-04 15:47:50 +0200888 f2fs_info(sbi, "inline encryption not supported");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000889#endif
890 break;
David Brazdil0f672f62019-12-10 10:32:29 +0000891 case Opt_checkpoint_disable_cap_perc:
892 if (args->from && match_int(args, &arg))
893 return -EINVAL;
894 if (arg < 0 || arg > 100)
895 return -EINVAL;
Olivier Deprez0e641232021-09-23 10:07:05 +0200896 F2FS_OPTION(sbi).unusable_cap_perc = arg;
David Brazdil0f672f62019-12-10 10:32:29 +0000897 set_opt(sbi, DISABLE_CHECKPOINT);
898 break;
899 case Opt_checkpoint_disable_cap:
900 if (args->from && match_int(args, &arg))
901 return -EINVAL;
902 F2FS_OPTION(sbi).unusable_cap = arg;
903 set_opt(sbi, DISABLE_CHECKPOINT);
904 break;
905 case Opt_checkpoint_disable:
906 set_opt(sbi, DISABLE_CHECKPOINT);
907 break;
908 case Opt_checkpoint_enable:
909 clear_opt(sbi, DISABLE_CHECKPOINT);
910 break;
Olivier Deprez157378f2022-04-04 15:47:50 +0200911#ifdef CONFIG_F2FS_FS_COMPRESSION
912 case Opt_compress_algorithm:
913 if (!f2fs_sb_has_compression(sbi)) {
914 f2fs_info(sbi, "Image doesn't support compression");
915 break;
916 }
917 name = match_strdup(&args[0]);
918 if (!name)
919 return -ENOMEM;
920 if (!strcmp(name, "lzo")) {
921 F2FS_OPTION(sbi).compress_algorithm =
922 COMPRESS_LZO;
923 } else if (!strcmp(name, "lz4")) {
924 F2FS_OPTION(sbi).compress_algorithm =
925 COMPRESS_LZ4;
926 } else if (!strcmp(name, "zstd")) {
927 F2FS_OPTION(sbi).compress_algorithm =
928 COMPRESS_ZSTD;
929 } else if (!strcmp(name, "lzo-rle")) {
930 F2FS_OPTION(sbi).compress_algorithm =
931 COMPRESS_LZORLE;
932 } else {
933 kfree(name);
934 return -EINVAL;
935 }
936 kfree(name);
937 break;
938 case Opt_compress_log_size:
939 if (!f2fs_sb_has_compression(sbi)) {
940 f2fs_info(sbi, "Image doesn't support compression");
941 break;
942 }
943 if (args->from && match_int(args, &arg))
944 return -EINVAL;
945 if (arg < MIN_COMPRESS_LOG_SIZE ||
946 arg > MAX_COMPRESS_LOG_SIZE) {
947 f2fs_err(sbi,
948 "Compress cluster log size is out of range");
949 return -EINVAL;
950 }
951 F2FS_OPTION(sbi).compress_log_size = arg;
952 break;
953 case Opt_compress_extension:
954 if (!f2fs_sb_has_compression(sbi)) {
955 f2fs_info(sbi, "Image doesn't support compression");
956 break;
957 }
958 name = match_strdup(&args[0]);
959 if (!name)
960 return -ENOMEM;
961
962 ext = F2FS_OPTION(sbi).extensions;
963 ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt;
964
965 if (strlen(name) >= F2FS_EXTENSION_LEN ||
966 ext_cnt >= COMPRESS_EXT_NUM) {
967 f2fs_err(sbi,
968 "invalid extension length/number");
969 kfree(name);
970 return -EINVAL;
971 }
972
973 strcpy(ext[ext_cnt], name);
974 F2FS_OPTION(sbi).compress_ext_cnt++;
975 kfree(name);
976 break;
977#else
978 case Opt_compress_algorithm:
979 case Opt_compress_log_size:
980 case Opt_compress_extension:
981 f2fs_info(sbi, "compression options not supported");
982 break;
983#endif
984 case Opt_atgc:
985 set_opt(sbi, ATGC);
986 break;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000987 default:
David Brazdil0f672f62019-12-10 10:32:29 +0000988 f2fs_err(sbi, "Unrecognized mount option \"%s\" or missing value",
989 p);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000990 return -EINVAL;
991 }
992 }
993#ifdef CONFIG_QUOTA
994 if (f2fs_check_quota_options(sbi))
995 return -EINVAL;
996#else
David Brazdil0f672f62019-12-10 10:32:29 +0000997 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sbi->sb)) {
998 f2fs_info(sbi, "Filesystem with quota feature cannot be mounted RDWR without CONFIG_QUOTA");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000999 return -EINVAL;
1000 }
David Brazdil0f672f62019-12-10 10:32:29 +00001001 if (f2fs_sb_has_project_quota(sbi) && !f2fs_readonly(sbi->sb)) {
1002 f2fs_err(sbi, "Filesystem with project quota feature cannot be mounted RDWR without CONFIG_QUOTA");
1003 return -EINVAL;
1004 }
1005#endif
1006#ifndef CONFIG_UNICODE
1007 if (f2fs_sb_has_casefold(sbi)) {
1008 f2fs_err(sbi,
1009 "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001010 return -EINVAL;
1011 }
1012#endif
Olivier Deprez157378f2022-04-04 15:47:50 +02001013 /*
1014 * The BLKZONED feature indicates that the drive was formatted with
1015 * zone alignment optimization. This is optional for host-aware
1016 * devices, but mandatory for host-managed zoned block devices.
1017 */
1018#ifndef CONFIG_BLK_DEV_ZONED
1019 if (f2fs_sb_has_blkzoned(sbi)) {
1020 f2fs_err(sbi, "Zoned block device support is not enabled");
1021 return -EINVAL;
1022 }
1023#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001024
Olivier Deprez157378f2022-04-04 15:47:50 +02001025 if (F2FS_IO_SIZE_BITS(sbi) && !f2fs_lfs_mode(sbi)) {
David Brazdil0f672f62019-12-10 10:32:29 +00001026 f2fs_err(sbi, "Should set mode=lfs with %uKB-sized IO",
1027 F2FS_IO_SIZE_KB(sbi));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001028 return -EINVAL;
1029 }
1030
1031 if (test_opt(sbi, INLINE_XATTR_SIZE)) {
David Brazdil0f672f62019-12-10 10:32:29 +00001032 int min_size, max_size;
1033
1034 if (!f2fs_sb_has_extra_attr(sbi) ||
1035 !f2fs_sb_has_flexible_inline_xattr(sbi)) {
1036 f2fs_err(sbi, "extra_attr or flexible_inline_xattr feature is off");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001037 return -EINVAL;
1038 }
1039 if (!test_opt(sbi, INLINE_XATTR)) {
David Brazdil0f672f62019-12-10 10:32:29 +00001040 f2fs_err(sbi, "inline_xattr_size option should be set with inline_xattr option");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001041 return -EINVAL;
1042 }
David Brazdil0f672f62019-12-10 10:32:29 +00001043
1044 min_size = sizeof(struct f2fs_xattr_header) / sizeof(__le32);
1045 max_size = MAX_INLINE_XATTR_SIZE;
1046
1047 if (F2FS_OPTION(sbi).inline_xattr_size < min_size ||
1048 F2FS_OPTION(sbi).inline_xattr_size > max_size) {
1049 f2fs_err(sbi, "inline xattr size is out of range: %d ~ %d",
1050 min_size, max_size);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001051 return -EINVAL;
1052 }
1053 }
1054
Olivier Deprez157378f2022-04-04 15:47:50 +02001055 if (test_opt(sbi, DISABLE_CHECKPOINT) && f2fs_lfs_mode(sbi)) {
David Brazdil0f672f62019-12-10 10:32:29 +00001056 f2fs_err(sbi, "LFS not compatible with checkpoint=disable\n");
1057 return -EINVAL;
1058 }
1059
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001060 /* Not pass down write hints if the number of active logs is lesser
Olivier Deprez157378f2022-04-04 15:47:50 +02001061 * than NR_CURSEG_PERSIST_TYPE.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001062 */
Olivier Deprez157378f2022-04-04 15:47:50 +02001063 if (F2FS_OPTION(sbi).active_logs != NR_CURSEG_PERSIST_TYPE)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001064 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
1065 return 0;
1066}
1067
1068static struct inode *f2fs_alloc_inode(struct super_block *sb)
1069{
1070 struct f2fs_inode_info *fi;
1071
1072 fi = kmem_cache_alloc(f2fs_inode_cachep, GFP_F2FS_ZERO);
1073 if (!fi)
1074 return NULL;
1075
1076 init_once((void *) fi);
1077
1078 /* Initialize f2fs-specific inode info */
1079 atomic_set(&fi->dirty_pages, 0);
Olivier Deprez157378f2022-04-04 15:47:50 +02001080 atomic_set(&fi->i_compr_blocks, 0);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001081 init_rwsem(&fi->i_sem);
Olivier Deprez157378f2022-04-04 15:47:50 +02001082 spin_lock_init(&fi->i_size_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001083 INIT_LIST_HEAD(&fi->dirty_list);
1084 INIT_LIST_HEAD(&fi->gdirty_list);
1085 INIT_LIST_HEAD(&fi->inmem_ilist);
1086 INIT_LIST_HEAD(&fi->inmem_pages);
1087 mutex_init(&fi->inmem_lock);
1088 init_rwsem(&fi->i_gc_rwsem[READ]);
1089 init_rwsem(&fi->i_gc_rwsem[WRITE]);
1090 init_rwsem(&fi->i_mmap_sem);
1091 init_rwsem(&fi->i_xattr_sem);
1092
1093 /* Will be used by directory only */
1094 fi->i_dir_level = F2FS_SB(sb)->dir_level;
1095
Olivier Deprez157378f2022-04-04 15:47:50 +02001096 fi->ra_offset = -1;
1097
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001098 return &fi->vfs_inode;
1099}
1100
1101static int f2fs_drop_inode(struct inode *inode)
1102{
David Brazdil0f672f62019-12-10 10:32:29 +00001103 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001104 int ret;
David Brazdil0f672f62019-12-10 10:32:29 +00001105
1106 /*
1107 * during filesystem shutdown, if checkpoint is disabled,
1108 * drop useless meta/node dirty pages.
1109 */
1110 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
1111 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1112 inode->i_ino == F2FS_META_INO(sbi)) {
1113 trace_f2fs_drop_inode(inode, 1);
1114 return 1;
1115 }
1116 }
1117
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001118 /*
1119 * This is to avoid a deadlock condition like below.
1120 * writeback_single_inode(inode)
1121 * - f2fs_write_data_page
1122 * - f2fs_gc -> iput -> evict
1123 * - inode_wait_for_writeback(inode)
1124 */
1125 if ((!inode_unhashed(inode) && inode->i_state & I_SYNC)) {
1126 if (!inode->i_nlink && !is_bad_inode(inode)) {
1127 /* to avoid evict_inode call simultaneously */
1128 atomic_inc(&inode->i_count);
1129 spin_unlock(&inode->i_lock);
1130
1131 /* some remained atomic pages should discarded */
1132 if (f2fs_is_atomic_file(inode))
1133 f2fs_drop_inmem_pages(inode);
1134
1135 /* should remain fi->extent_tree for writepage */
1136 f2fs_destroy_extent_node(inode);
1137
1138 sb_start_intwrite(inode->i_sb);
1139 f2fs_i_size_write(inode, 0);
1140
David Brazdil0f672f62019-12-10 10:32:29 +00001141 f2fs_submit_merged_write_cond(F2FS_I_SB(inode),
1142 inode, NULL, 0, DATA);
1143 truncate_inode_pages_final(inode->i_mapping);
1144
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001145 if (F2FS_HAS_BLOCKS(inode))
1146 f2fs_truncate(inode);
1147
1148 sb_end_intwrite(inode->i_sb);
1149
1150 spin_lock(&inode->i_lock);
1151 atomic_dec(&inode->i_count);
1152 }
1153 trace_f2fs_drop_inode(inode, 0);
1154 return 0;
1155 }
1156 ret = generic_drop_inode(inode);
David Brazdil0f672f62019-12-10 10:32:29 +00001157 if (!ret)
1158 ret = fscrypt_drop_inode(inode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001159 trace_f2fs_drop_inode(inode, ret);
1160 return ret;
1161}
1162
1163int f2fs_inode_dirtied(struct inode *inode, bool sync)
1164{
1165 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1166 int ret = 0;
1167
1168 spin_lock(&sbi->inode_lock[DIRTY_META]);
1169 if (is_inode_flag_set(inode, FI_DIRTY_INODE)) {
1170 ret = 1;
1171 } else {
1172 set_inode_flag(inode, FI_DIRTY_INODE);
1173 stat_inc_dirty_inode(sbi, DIRTY_META);
1174 }
1175 if (sync && list_empty(&F2FS_I(inode)->gdirty_list)) {
1176 list_add_tail(&F2FS_I(inode)->gdirty_list,
1177 &sbi->inode_list[DIRTY_META]);
1178 inc_page_count(sbi, F2FS_DIRTY_IMETA);
1179 }
1180 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1181 return ret;
1182}
1183
1184void f2fs_inode_synced(struct inode *inode)
1185{
1186 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1187
1188 spin_lock(&sbi->inode_lock[DIRTY_META]);
1189 if (!is_inode_flag_set(inode, FI_DIRTY_INODE)) {
1190 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1191 return;
1192 }
1193 if (!list_empty(&F2FS_I(inode)->gdirty_list)) {
1194 list_del_init(&F2FS_I(inode)->gdirty_list);
1195 dec_page_count(sbi, F2FS_DIRTY_IMETA);
1196 }
1197 clear_inode_flag(inode, FI_DIRTY_INODE);
1198 clear_inode_flag(inode, FI_AUTO_RECOVER);
1199 stat_dec_dirty_inode(F2FS_I_SB(inode), DIRTY_META);
1200 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1201}
1202
1203/*
1204 * f2fs_dirty_inode() is called from __mark_inode_dirty()
1205 *
1206 * We should call set_dirty_inode to write the dirty inode through write_inode.
1207 */
1208static void f2fs_dirty_inode(struct inode *inode, int flags)
1209{
1210 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1211
1212 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1213 inode->i_ino == F2FS_META_INO(sbi))
1214 return;
1215
1216 if (flags == I_DIRTY_TIME)
1217 return;
1218
1219 if (is_inode_flag_set(inode, FI_AUTO_RECOVER))
1220 clear_inode_flag(inode, FI_AUTO_RECOVER);
1221
1222 f2fs_inode_dirtied(inode, false);
1223}
1224
David Brazdil0f672f62019-12-10 10:32:29 +00001225static void f2fs_free_inode(struct inode *inode)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001226{
David Brazdil0f672f62019-12-10 10:32:29 +00001227 fscrypt_free_inode(inode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001228 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
1229}
1230
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001231static void destroy_percpu_info(struct f2fs_sb_info *sbi)
1232{
1233 percpu_counter_destroy(&sbi->alloc_valid_block_count);
1234 percpu_counter_destroy(&sbi->total_valid_inode_count);
1235}
1236
1237static void destroy_device_list(struct f2fs_sb_info *sbi)
1238{
1239 int i;
1240
1241 for (i = 0; i < sbi->s_ndevs; i++) {
1242 blkdev_put(FDEV(i).bdev, FMODE_EXCL);
1243#ifdef CONFIG_BLK_DEV_ZONED
David Brazdil0f672f62019-12-10 10:32:29 +00001244 kvfree(FDEV(i).blkz_seq);
Olivier Deprez157378f2022-04-04 15:47:50 +02001245 kfree(FDEV(i).zone_capacity_blocks);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001246#endif
1247 }
David Brazdil0f672f62019-12-10 10:32:29 +00001248 kvfree(sbi->devs);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001249}
1250
1251static void f2fs_put_super(struct super_block *sb)
1252{
1253 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1254 int i;
1255 bool dropped;
1256
Olivier Deprez0e641232021-09-23 10:07:05 +02001257 /* unregister procfs/sysfs entries in advance to avoid race case */
1258 f2fs_unregister_sysfs(sbi);
1259
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001260 f2fs_quota_off_umount(sb);
1261
1262 /* prevent remaining shrinker jobs */
1263 mutex_lock(&sbi->umount_mutex);
1264
1265 /*
1266 * We don't need to do checkpoint when superblock is clean.
1267 * But, the previous checkpoint was not done by umount, it needs to do
1268 * clean checkpoint again.
1269 */
David Brazdil0f672f62019-12-10 10:32:29 +00001270 if ((is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
1271 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG))) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001272 struct cp_control cpc = {
1273 .reason = CP_UMOUNT,
1274 };
1275 f2fs_write_checkpoint(sbi, &cpc);
1276 }
1277
1278 /* be sure to wait for any on-going discard commands */
David Brazdil0f672f62019-12-10 10:32:29 +00001279 dropped = f2fs_issue_discard_timeout(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001280
David Brazdil0f672f62019-12-10 10:32:29 +00001281 if ((f2fs_hw_support_discard(sbi) || f2fs_hw_should_discard(sbi)) &&
1282 !sbi->discard_blks && !dropped) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001283 struct cp_control cpc = {
1284 .reason = CP_UMOUNT | CP_TRIMMED,
1285 };
1286 f2fs_write_checkpoint(sbi, &cpc);
1287 }
1288
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001289 /*
1290 * normally superblock is clean, so we need to release this.
1291 * In addition, EIO will skip do checkpoint, we need this as well.
1292 */
1293 f2fs_release_ino_entry(sbi, true);
1294
1295 f2fs_leave_shrinker(sbi);
1296 mutex_unlock(&sbi->umount_mutex);
1297
1298 /* our cp_error case, we can wait for any writeback page */
1299 f2fs_flush_merged_writes(sbi);
1300
Olivier Deprez0e641232021-09-23 10:07:05 +02001301 f2fs_wait_on_all_pages(sbi, F2FS_WB_CP_DATA);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001302
1303 f2fs_bug_on(sbi, sbi->fsync_node_num);
1304
1305 iput(sbi->node_inode);
David Brazdil0f672f62019-12-10 10:32:29 +00001306 sbi->node_inode = NULL;
1307
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001308 iput(sbi->meta_inode);
David Brazdil0f672f62019-12-10 10:32:29 +00001309 sbi->meta_inode = NULL;
1310
1311 /*
1312 * iput() can update stat information, if f2fs_write_checkpoint()
1313 * above failed with error.
1314 */
1315 f2fs_destroy_stats(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001316
1317 /* destroy f2fs internal modules */
1318 f2fs_destroy_node_manager(sbi);
1319 f2fs_destroy_segment_manager(sbi);
1320
Olivier Deprez157378f2022-04-04 15:47:50 +02001321 f2fs_destroy_post_read_wq(sbi);
1322
David Brazdil0f672f62019-12-10 10:32:29 +00001323 kvfree(sbi->ckpt);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001324
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001325 sb->s_fs_info = NULL;
1326 if (sbi->s_chksum_driver)
1327 crypto_free_shash(sbi->s_chksum_driver);
Olivier Deprez157378f2022-04-04 15:47:50 +02001328 kfree(sbi->raw_super);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001329
1330 destroy_device_list(sbi);
Olivier Deprez157378f2022-04-04 15:47:50 +02001331 f2fs_destroy_page_array_cache(sbi);
1332 f2fs_destroy_xattr_caches(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001333 mempool_destroy(sbi->write_io_dummy);
1334#ifdef CONFIG_QUOTA
1335 for (i = 0; i < MAXQUOTAS; i++)
Olivier Deprez157378f2022-04-04 15:47:50 +02001336 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001337#endif
Olivier Deprez157378f2022-04-04 15:47:50 +02001338 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001339 destroy_percpu_info(sbi);
1340 for (i = 0; i < NR_PAGE_TYPE; i++)
David Brazdil0f672f62019-12-10 10:32:29 +00001341 kvfree(sbi->write_io[i]);
1342#ifdef CONFIG_UNICODE
Olivier Deprez157378f2022-04-04 15:47:50 +02001343 utf8_unload(sb->s_encoding);
David Brazdil0f672f62019-12-10 10:32:29 +00001344#endif
Olivier Deprez157378f2022-04-04 15:47:50 +02001345 kfree(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001346}
1347
1348int f2fs_sync_fs(struct super_block *sb, int sync)
1349{
1350 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1351 int err = 0;
1352
1353 if (unlikely(f2fs_cp_error(sbi)))
1354 return 0;
David Brazdil0f672f62019-12-10 10:32:29 +00001355 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
1356 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001357
1358 trace_f2fs_sync_fs(sb, sync);
1359
1360 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
1361 return -EAGAIN;
1362
1363 if (sync) {
1364 struct cp_control cpc;
1365
1366 cpc.reason = __get_cp_reason(sbi);
1367
Olivier Deprez157378f2022-04-04 15:47:50 +02001368 down_write(&sbi->gc_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001369 err = f2fs_write_checkpoint(sbi, &cpc);
Olivier Deprez157378f2022-04-04 15:47:50 +02001370 up_write(&sbi->gc_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001371 }
1372 f2fs_trace_ios(NULL, 1);
1373
1374 return err;
1375}
1376
1377static int f2fs_freeze(struct super_block *sb)
1378{
1379 if (f2fs_readonly(sb))
1380 return 0;
1381
1382 /* IO error happened before */
1383 if (unlikely(f2fs_cp_error(F2FS_SB(sb))))
1384 return -EIO;
1385
1386 /* must be clean, since sync_filesystem() was already called */
1387 if (is_sbi_flag_set(F2FS_SB(sb), SBI_IS_DIRTY))
1388 return -EINVAL;
1389 return 0;
1390}
1391
1392static int f2fs_unfreeze(struct super_block *sb)
1393{
1394 return 0;
1395}
1396
1397#ifdef CONFIG_QUOTA
1398static int f2fs_statfs_project(struct super_block *sb,
1399 kprojid_t projid, struct kstatfs *buf)
1400{
1401 struct kqid qid;
1402 struct dquot *dquot;
1403 u64 limit;
1404 u64 curblock;
1405
1406 qid = make_kqid_projid(projid);
1407 dquot = dqget(sb, qid);
1408 if (IS_ERR(dquot))
1409 return PTR_ERR(dquot);
1410 spin_lock(&dquot->dq_dqb_lock);
1411
Olivier Deprez0e641232021-09-23 10:07:05 +02001412 limit = min_not_zero(dquot->dq_dqb.dqb_bsoftlimit,
1413 dquot->dq_dqb.dqb_bhardlimit);
1414 if (limit)
1415 limit >>= sb->s_blocksize_bits;
1416
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001417 if (limit && buf->f_blocks > limit) {
Olivier Deprez0e641232021-09-23 10:07:05 +02001418 curblock = (dquot->dq_dqb.dqb_curspace +
1419 dquot->dq_dqb.dqb_rsvspace) >> sb->s_blocksize_bits;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001420 buf->f_blocks = limit;
1421 buf->f_bfree = buf->f_bavail =
1422 (buf->f_blocks > curblock) ?
1423 (buf->f_blocks - curblock) : 0;
1424 }
1425
Olivier Deprez0e641232021-09-23 10:07:05 +02001426 limit = min_not_zero(dquot->dq_dqb.dqb_isoftlimit,
1427 dquot->dq_dqb.dqb_ihardlimit);
1428
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001429 if (limit && buf->f_files > limit) {
1430 buf->f_files = limit;
1431 buf->f_ffree =
1432 (buf->f_files > dquot->dq_dqb.dqb_curinodes) ?
1433 (buf->f_files - dquot->dq_dqb.dqb_curinodes) : 0;
1434 }
1435
1436 spin_unlock(&dquot->dq_dqb_lock);
1437 dqput(dquot);
1438 return 0;
1439}
1440#endif
1441
1442static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
1443{
1444 struct super_block *sb = dentry->d_sb;
1445 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1446 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
1447 block_t total_count, user_block_count, start_count;
1448 u64 avail_node_count;
1449
1450 total_count = le64_to_cpu(sbi->raw_super->block_count);
1451 user_block_count = sbi->user_block_count;
1452 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
1453 buf->f_type = F2FS_SUPER_MAGIC;
1454 buf->f_bsize = sbi->blocksize;
1455
1456 buf->f_blocks = total_count - start_count;
1457 buf->f_bfree = user_block_count - valid_user_blocks(sbi) -
1458 sbi->current_reserved_blocks;
David Brazdil0f672f62019-12-10 10:32:29 +00001459
1460 spin_lock(&sbi->stat_lock);
1461 if (unlikely(buf->f_bfree <= sbi->unusable_block_count))
1462 buf->f_bfree = 0;
1463 else
1464 buf->f_bfree -= sbi->unusable_block_count;
1465 spin_unlock(&sbi->stat_lock);
1466
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001467 if (buf->f_bfree > F2FS_OPTION(sbi).root_reserved_blocks)
1468 buf->f_bavail = buf->f_bfree -
1469 F2FS_OPTION(sbi).root_reserved_blocks;
1470 else
1471 buf->f_bavail = 0;
1472
David Brazdil0f672f62019-12-10 10:32:29 +00001473 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001474
1475 if (avail_node_count > user_block_count) {
1476 buf->f_files = user_block_count;
1477 buf->f_ffree = buf->f_bavail;
1478 } else {
1479 buf->f_files = avail_node_count;
1480 buf->f_ffree = min(avail_node_count - valid_node_count(sbi),
1481 buf->f_bavail);
1482 }
1483
1484 buf->f_namelen = F2FS_NAME_LEN;
Olivier Deprez157378f2022-04-04 15:47:50 +02001485 buf->f_fsid = u64_to_fsid(id);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001486
1487#ifdef CONFIG_QUOTA
1488 if (is_inode_flag_set(dentry->d_inode, FI_PROJ_INHERIT) &&
1489 sb_has_quota_limits_enabled(sb, PRJQUOTA)) {
1490 f2fs_statfs_project(sb, F2FS_I(dentry->d_inode)->i_projid, buf);
1491 }
1492#endif
1493 return 0;
1494}
1495
1496static inline void f2fs_show_quota_options(struct seq_file *seq,
1497 struct super_block *sb)
1498{
1499#ifdef CONFIG_QUOTA
1500 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1501
1502 if (F2FS_OPTION(sbi).s_jquota_fmt) {
1503 char *fmtname = "";
1504
1505 switch (F2FS_OPTION(sbi).s_jquota_fmt) {
1506 case QFMT_VFS_OLD:
1507 fmtname = "vfsold";
1508 break;
1509 case QFMT_VFS_V0:
1510 fmtname = "vfsv0";
1511 break;
1512 case QFMT_VFS_V1:
1513 fmtname = "vfsv1";
1514 break;
1515 }
1516 seq_printf(seq, ",jqfmt=%s", fmtname);
1517 }
1518
1519 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
1520 seq_show_option(seq, "usrjquota",
1521 F2FS_OPTION(sbi).s_qf_names[USRQUOTA]);
1522
1523 if (F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
1524 seq_show_option(seq, "grpjquota",
1525 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA]);
1526
1527 if (F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
1528 seq_show_option(seq, "prjjquota",
1529 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]);
1530#endif
1531}
1532
Olivier Deprez157378f2022-04-04 15:47:50 +02001533static inline void f2fs_show_compress_options(struct seq_file *seq,
1534 struct super_block *sb)
1535{
1536 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1537 char *algtype = "";
1538 int i;
1539
1540 if (!f2fs_sb_has_compression(sbi))
1541 return;
1542
1543 switch (F2FS_OPTION(sbi).compress_algorithm) {
1544 case COMPRESS_LZO:
1545 algtype = "lzo";
1546 break;
1547 case COMPRESS_LZ4:
1548 algtype = "lz4";
1549 break;
1550 case COMPRESS_ZSTD:
1551 algtype = "zstd";
1552 break;
1553 case COMPRESS_LZORLE:
1554 algtype = "lzo-rle";
1555 break;
1556 }
1557 seq_printf(seq, ",compress_algorithm=%s", algtype);
1558
1559 seq_printf(seq, ",compress_log_size=%u",
1560 F2FS_OPTION(sbi).compress_log_size);
1561
1562 for (i = 0; i < F2FS_OPTION(sbi).compress_ext_cnt; i++) {
1563 seq_printf(seq, ",compress_extension=%s",
1564 F2FS_OPTION(sbi).extensions[i]);
1565 }
1566}
1567
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001568static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
1569{
1570 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
1571
Olivier Deprez157378f2022-04-04 15:47:50 +02001572 if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_SYNC)
1573 seq_printf(seq, ",background_gc=%s", "sync");
1574 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_ON)
1575 seq_printf(seq, ",background_gc=%s", "on");
1576 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001577 seq_printf(seq, ",background_gc=%s", "off");
Olivier Deprez157378f2022-04-04 15:47:50 +02001578
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001579 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
1580 seq_puts(seq, ",disable_roll_forward");
Olivier Deprez0e641232021-09-23 10:07:05 +02001581 if (test_opt(sbi, NORECOVERY))
1582 seq_puts(seq, ",norecovery");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001583 if (test_opt(sbi, DISCARD))
1584 seq_puts(seq, ",discard");
David Brazdil0f672f62019-12-10 10:32:29 +00001585 else
1586 seq_puts(seq, ",nodiscard");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001587 if (test_opt(sbi, NOHEAP))
1588 seq_puts(seq, ",no_heap");
1589 else
1590 seq_puts(seq, ",heap");
1591#ifdef CONFIG_F2FS_FS_XATTR
1592 if (test_opt(sbi, XATTR_USER))
1593 seq_puts(seq, ",user_xattr");
1594 else
1595 seq_puts(seq, ",nouser_xattr");
1596 if (test_opt(sbi, INLINE_XATTR))
1597 seq_puts(seq, ",inline_xattr");
1598 else
1599 seq_puts(seq, ",noinline_xattr");
1600 if (test_opt(sbi, INLINE_XATTR_SIZE))
1601 seq_printf(seq, ",inline_xattr_size=%u",
1602 F2FS_OPTION(sbi).inline_xattr_size);
1603#endif
1604#ifdef CONFIG_F2FS_FS_POSIX_ACL
1605 if (test_opt(sbi, POSIX_ACL))
1606 seq_puts(seq, ",acl");
1607 else
1608 seq_puts(seq, ",noacl");
1609#endif
1610 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
1611 seq_puts(seq, ",disable_ext_identify");
1612 if (test_opt(sbi, INLINE_DATA))
1613 seq_puts(seq, ",inline_data");
1614 else
1615 seq_puts(seq, ",noinline_data");
1616 if (test_opt(sbi, INLINE_DENTRY))
1617 seq_puts(seq, ",inline_dentry");
1618 else
1619 seq_puts(seq, ",noinline_dentry");
1620 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, FLUSH_MERGE))
1621 seq_puts(seq, ",flush_merge");
1622 if (test_opt(sbi, NOBARRIER))
1623 seq_puts(seq, ",nobarrier");
1624 if (test_opt(sbi, FASTBOOT))
1625 seq_puts(seq, ",fastboot");
1626 if (test_opt(sbi, EXTENT_CACHE))
1627 seq_puts(seq, ",extent_cache");
1628 else
1629 seq_puts(seq, ",noextent_cache");
1630 if (test_opt(sbi, DATA_FLUSH))
1631 seq_puts(seq, ",data_flush");
1632
1633 seq_puts(seq, ",mode=");
Olivier Deprez157378f2022-04-04 15:47:50 +02001634 if (F2FS_OPTION(sbi).fs_mode == FS_MODE_ADAPTIVE)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001635 seq_puts(seq, "adaptive");
Olivier Deprez157378f2022-04-04 15:47:50 +02001636 else if (F2FS_OPTION(sbi).fs_mode == FS_MODE_LFS)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001637 seq_puts(seq, "lfs");
1638 seq_printf(seq, ",active_logs=%u", F2FS_OPTION(sbi).active_logs);
1639 if (test_opt(sbi, RESERVE_ROOT))
1640 seq_printf(seq, ",reserve_root=%u,resuid=%u,resgid=%u",
1641 F2FS_OPTION(sbi).root_reserved_blocks,
1642 from_kuid_munged(&init_user_ns,
1643 F2FS_OPTION(sbi).s_resuid),
1644 from_kgid_munged(&init_user_ns,
1645 F2FS_OPTION(sbi).s_resgid));
1646 if (F2FS_IO_SIZE_BITS(sbi))
David Brazdil0f672f62019-12-10 10:32:29 +00001647 seq_printf(seq, ",io_bits=%u",
1648 F2FS_OPTION(sbi).write_io_size_bits);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001649#ifdef CONFIG_F2FS_FAULT_INJECTION
1650 if (test_opt(sbi, FAULT_INJECTION)) {
1651 seq_printf(seq, ",fault_injection=%u",
1652 F2FS_OPTION(sbi).fault_info.inject_rate);
1653 seq_printf(seq, ",fault_type=%u",
1654 F2FS_OPTION(sbi).fault_info.inject_type);
1655 }
1656#endif
1657#ifdef CONFIG_QUOTA
1658 if (test_opt(sbi, QUOTA))
1659 seq_puts(seq, ",quota");
1660 if (test_opt(sbi, USRQUOTA))
1661 seq_puts(seq, ",usrquota");
1662 if (test_opt(sbi, GRPQUOTA))
1663 seq_puts(seq, ",grpquota");
1664 if (test_opt(sbi, PRJQUOTA))
1665 seq_puts(seq, ",prjquota");
1666#endif
1667 f2fs_show_quota_options(seq, sbi->sb);
1668 if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_USER)
1669 seq_printf(seq, ",whint_mode=%s", "user-based");
1670 else if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_FS)
1671 seq_printf(seq, ",whint_mode=%s", "fs-based");
Olivier Deprez157378f2022-04-04 15:47:50 +02001672
1673 fscrypt_show_test_dummy_encryption(seq, ',', sbi->sb);
1674
1675 if (sbi->sb->s_flags & SB_INLINECRYPT)
1676 seq_puts(seq, ",inlinecrypt");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001677
1678 if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_DEFAULT)
1679 seq_printf(seq, ",alloc_mode=%s", "default");
1680 else if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_REUSE)
1681 seq_printf(seq, ",alloc_mode=%s", "reuse");
1682
David Brazdil0f672f62019-12-10 10:32:29 +00001683 if (test_opt(sbi, DISABLE_CHECKPOINT))
1684 seq_printf(seq, ",checkpoint=disable:%u",
1685 F2FS_OPTION(sbi).unusable_cap);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001686 if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_POSIX)
1687 seq_printf(seq, ",fsync_mode=%s", "posix");
1688 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_STRICT)
1689 seq_printf(seq, ",fsync_mode=%s", "strict");
1690 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_NOBARRIER)
1691 seq_printf(seq, ",fsync_mode=%s", "nobarrier");
Olivier Deprez157378f2022-04-04 15:47:50 +02001692
1693#ifdef CONFIG_F2FS_FS_COMPRESSION
1694 f2fs_show_compress_options(seq, sbi->sb);
1695#endif
1696
1697 if (test_opt(sbi, ATGC))
1698 seq_puts(seq, ",atgc");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001699 return 0;
1700}
1701
1702static void default_options(struct f2fs_sb_info *sbi)
1703{
1704 /* init some FS parameters */
Olivier Deprez157378f2022-04-04 15:47:50 +02001705 F2FS_OPTION(sbi).active_logs = NR_CURSEG_PERSIST_TYPE;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001706 F2FS_OPTION(sbi).inline_xattr_size = DEFAULT_INLINE_XATTR_ADDRS;
1707 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
1708 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
1709 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001710 F2FS_OPTION(sbi).s_resuid = make_kuid(&init_user_ns, F2FS_DEF_RESUID);
1711 F2FS_OPTION(sbi).s_resgid = make_kgid(&init_user_ns, F2FS_DEF_RESGID);
Olivier Deprez157378f2022-04-04 15:47:50 +02001712 F2FS_OPTION(sbi).compress_algorithm = COMPRESS_LZ4;
1713 F2FS_OPTION(sbi).compress_log_size = MIN_COMPRESS_LOG_SIZE;
1714 F2FS_OPTION(sbi).compress_ext_cnt = 0;
1715 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001716
Olivier Deprez157378f2022-04-04 15:47:50 +02001717 sbi->sb->s_flags &= ~SB_INLINECRYPT;
1718
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001719 set_opt(sbi, INLINE_XATTR);
1720 set_opt(sbi, INLINE_DATA);
1721 set_opt(sbi, INLINE_DENTRY);
1722 set_opt(sbi, EXTENT_CACHE);
1723 set_opt(sbi, NOHEAP);
David Brazdil0f672f62019-12-10 10:32:29 +00001724 clear_opt(sbi, DISABLE_CHECKPOINT);
1725 F2FS_OPTION(sbi).unusable_cap = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001726 sbi->sb->s_flags |= SB_LAZYTIME;
1727 set_opt(sbi, FLUSH_MERGE);
David Brazdil0f672f62019-12-10 10:32:29 +00001728 set_opt(sbi, DISCARD);
1729 if (f2fs_sb_has_blkzoned(sbi))
Olivier Deprez157378f2022-04-04 15:47:50 +02001730 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001731 else
Olivier Deprez157378f2022-04-04 15:47:50 +02001732 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001733
1734#ifdef CONFIG_F2FS_FS_XATTR
1735 set_opt(sbi, XATTR_USER);
1736#endif
1737#ifdef CONFIG_F2FS_FS_POSIX_ACL
1738 set_opt(sbi, POSIX_ACL);
1739#endif
1740
1741 f2fs_build_fault_attr(sbi, 0, 0);
1742}
1743
1744#ifdef CONFIG_QUOTA
1745static int f2fs_enable_quotas(struct super_block *sb);
1746#endif
David Brazdil0f672f62019-12-10 10:32:29 +00001747
1748static int f2fs_disable_checkpoint(struct f2fs_sb_info *sbi)
1749{
1750 unsigned int s_flags = sbi->sb->s_flags;
1751 struct cp_control cpc;
1752 int err = 0;
1753 int ret;
1754 block_t unusable;
1755
1756 if (s_flags & SB_RDONLY) {
1757 f2fs_err(sbi, "checkpoint=disable on readonly fs");
1758 return -EINVAL;
1759 }
1760 sbi->sb->s_flags |= SB_ACTIVE;
1761
1762 f2fs_update_time(sbi, DISABLE_TIME);
1763
1764 while (!f2fs_time_over(sbi, DISABLE_TIME)) {
Olivier Deprez157378f2022-04-04 15:47:50 +02001765 down_write(&sbi->gc_lock);
1766 err = f2fs_gc(sbi, true, false, false, NULL_SEGNO);
David Brazdil0f672f62019-12-10 10:32:29 +00001767 if (err == -ENODATA) {
1768 err = 0;
1769 break;
1770 }
1771 if (err && err != -EAGAIN)
1772 break;
1773 }
1774
1775 ret = sync_filesystem(sbi->sb);
1776 if (ret || err) {
1777 err = ret ? ret: err;
1778 goto restore_flag;
1779 }
1780
1781 unusable = f2fs_get_unusable_blocks(sbi);
1782 if (f2fs_disable_cp_again(sbi, unusable)) {
1783 err = -EAGAIN;
1784 goto restore_flag;
1785 }
1786
Olivier Deprez157378f2022-04-04 15:47:50 +02001787 down_write(&sbi->gc_lock);
David Brazdil0f672f62019-12-10 10:32:29 +00001788 cpc.reason = CP_PAUSE;
1789 set_sbi_flag(sbi, SBI_CP_DISABLED);
1790 err = f2fs_write_checkpoint(sbi, &cpc);
1791 if (err)
1792 goto out_unlock;
1793
1794 spin_lock(&sbi->stat_lock);
1795 sbi->unusable_block_count = unusable;
1796 spin_unlock(&sbi->stat_lock);
1797
1798out_unlock:
Olivier Deprez157378f2022-04-04 15:47:50 +02001799 up_write(&sbi->gc_lock);
David Brazdil0f672f62019-12-10 10:32:29 +00001800restore_flag:
Olivier Deprez157378f2022-04-04 15:47:50 +02001801 sbi->sb->s_flags = s_flags; /* Restore SB_RDONLY status */
David Brazdil0f672f62019-12-10 10:32:29 +00001802 return err;
1803}
1804
1805static void f2fs_enable_checkpoint(struct f2fs_sb_info *sbi)
1806{
Olivier Deprez157378f2022-04-04 15:47:50 +02001807 int retry = DEFAULT_RETRY_IO_COUNT;
1808
1809 /* we should flush all the data to keep data consistency */
1810 do {
1811 sync_inodes_sb(sbi->sb);
1812 cond_resched();
1813 congestion_wait(BLK_RW_ASYNC, DEFAULT_IO_TIMEOUT);
1814 } while (get_pages(sbi, F2FS_DIRTY_DATA) && retry--);
1815
1816 if (unlikely(retry < 0))
1817 f2fs_warn(sbi, "checkpoint=enable has some unwritten data.");
1818
1819 down_write(&sbi->gc_lock);
David Brazdil0f672f62019-12-10 10:32:29 +00001820 f2fs_dirty_to_prefree(sbi);
1821
1822 clear_sbi_flag(sbi, SBI_CP_DISABLED);
1823 set_sbi_flag(sbi, SBI_IS_DIRTY);
Olivier Deprez157378f2022-04-04 15:47:50 +02001824 up_write(&sbi->gc_lock);
David Brazdil0f672f62019-12-10 10:32:29 +00001825
1826 f2fs_sync_fs(sbi->sb, 1);
1827}
1828
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001829static int f2fs_remount(struct super_block *sb, int *flags, char *data)
1830{
1831 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1832 struct f2fs_mount_info org_mount_opt;
1833 unsigned long old_sb_flags;
1834 int err;
1835 bool need_restart_gc = false;
1836 bool need_stop_gc = false;
1837 bool no_extent_cache = !test_opt(sbi, EXTENT_CACHE);
David Brazdil0f672f62019-12-10 10:32:29 +00001838 bool disable_checkpoint = test_opt(sbi, DISABLE_CHECKPOINT);
1839 bool no_io_align = !F2FS_IO_ALIGNED(sbi);
Olivier Deprez157378f2022-04-04 15:47:50 +02001840 bool no_atgc = !test_opt(sbi, ATGC);
David Brazdil0f672f62019-12-10 10:32:29 +00001841 bool checkpoint_changed;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001842#ifdef CONFIG_QUOTA
1843 int i, j;
1844#endif
1845
1846 /*
1847 * Save the old mount options in case we
1848 * need to restore them.
1849 */
1850 org_mount_opt = sbi->mount_opt;
1851 old_sb_flags = sb->s_flags;
1852
1853#ifdef CONFIG_QUOTA
1854 org_mount_opt.s_jquota_fmt = F2FS_OPTION(sbi).s_jquota_fmt;
1855 for (i = 0; i < MAXQUOTAS; i++) {
1856 if (F2FS_OPTION(sbi).s_qf_names[i]) {
1857 org_mount_opt.s_qf_names[i] =
1858 kstrdup(F2FS_OPTION(sbi).s_qf_names[i],
1859 GFP_KERNEL);
1860 if (!org_mount_opt.s_qf_names[i]) {
1861 for (j = 0; j < i; j++)
Olivier Deprez157378f2022-04-04 15:47:50 +02001862 kfree(org_mount_opt.s_qf_names[j]);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001863 return -ENOMEM;
1864 }
1865 } else {
1866 org_mount_opt.s_qf_names[i] = NULL;
1867 }
1868 }
1869#endif
1870
1871 /* recover superblocks we couldn't write due to previous RO mount */
1872 if (!(*flags & SB_RDONLY) && is_sbi_flag_set(sbi, SBI_NEED_SB_WRITE)) {
1873 err = f2fs_commit_super(sbi, false);
David Brazdil0f672f62019-12-10 10:32:29 +00001874 f2fs_info(sbi, "Try to recover all the superblocks, ret: %d",
1875 err);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001876 if (!err)
1877 clear_sbi_flag(sbi, SBI_NEED_SB_WRITE);
1878 }
1879
1880 default_options(sbi);
1881
1882 /* parse mount options */
Olivier Deprez157378f2022-04-04 15:47:50 +02001883 err = parse_options(sb, data, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001884 if (err)
1885 goto restore_opts;
David Brazdil0f672f62019-12-10 10:32:29 +00001886 checkpoint_changed =
1887 disable_checkpoint != test_opt(sbi, DISABLE_CHECKPOINT);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001888
1889 /*
1890 * Previous and new state of filesystem is RO,
1891 * so skip checking GC and FLUSH_MERGE conditions.
1892 */
1893 if (f2fs_readonly(sb) && (*flags & SB_RDONLY))
1894 goto skip;
1895
1896#ifdef CONFIG_QUOTA
1897 if (!f2fs_readonly(sb) && (*flags & SB_RDONLY)) {
1898 err = dquot_suspend(sb, -1);
1899 if (err < 0)
1900 goto restore_opts;
David Brazdil0f672f62019-12-10 10:32:29 +00001901 } else if (f2fs_readonly(sb) && !(*flags & SB_RDONLY)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001902 /* dquot_resume needs RW */
1903 sb->s_flags &= ~SB_RDONLY;
1904 if (sb_any_quota_suspended(sb)) {
1905 dquot_resume(sb, -1);
David Brazdil0f672f62019-12-10 10:32:29 +00001906 } else if (f2fs_sb_has_quota_ino(sbi)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001907 err = f2fs_enable_quotas(sb);
1908 if (err)
1909 goto restore_opts;
1910 }
1911 }
1912#endif
Olivier Deprez157378f2022-04-04 15:47:50 +02001913 /* disallow enable atgc dynamically */
1914 if (no_atgc == !!test_opt(sbi, ATGC)) {
1915 err = -EINVAL;
1916 f2fs_warn(sbi, "switch atgc option is not allowed");
1917 goto restore_opts;
1918 }
1919
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001920 /* disallow enable/disable extent_cache dynamically */
1921 if (no_extent_cache == !!test_opt(sbi, EXTENT_CACHE)) {
1922 err = -EINVAL;
David Brazdil0f672f62019-12-10 10:32:29 +00001923 f2fs_warn(sbi, "switch extent_cache option is not allowed");
1924 goto restore_opts;
1925 }
1926
1927 if (no_io_align == !!F2FS_IO_ALIGNED(sbi)) {
1928 err = -EINVAL;
1929 f2fs_warn(sbi, "switch io_bits option is not allowed");
1930 goto restore_opts;
1931 }
1932
1933 if ((*flags & SB_RDONLY) && test_opt(sbi, DISABLE_CHECKPOINT)) {
1934 err = -EINVAL;
1935 f2fs_warn(sbi, "disabling checkpoint not compatible with read-only");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001936 goto restore_opts;
1937 }
1938
1939 /*
1940 * We stop the GC thread if FS is mounted as RO
1941 * or if background_gc = off is passed in mount
1942 * option. Also sync the filesystem.
1943 */
Olivier Deprez157378f2022-04-04 15:47:50 +02001944 if ((*flags & SB_RDONLY) ||
1945 F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001946 if (sbi->gc_thread) {
1947 f2fs_stop_gc_thread(sbi);
1948 need_restart_gc = true;
1949 }
1950 } else if (!sbi->gc_thread) {
1951 err = f2fs_start_gc_thread(sbi);
1952 if (err)
1953 goto restore_opts;
1954 need_stop_gc = true;
1955 }
1956
1957 if (*flags & SB_RDONLY ||
1958 F2FS_OPTION(sbi).whint_mode != org_mount_opt.whint_mode) {
1959 writeback_inodes_sb(sb, WB_REASON_SYNC);
1960 sync_inodes_sb(sb);
1961
1962 set_sbi_flag(sbi, SBI_IS_DIRTY);
1963 set_sbi_flag(sbi, SBI_IS_CLOSE);
1964 f2fs_sync_fs(sb, 1);
1965 clear_sbi_flag(sbi, SBI_IS_CLOSE);
1966 }
1967
David Brazdil0f672f62019-12-10 10:32:29 +00001968 if (checkpoint_changed) {
1969 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
1970 err = f2fs_disable_checkpoint(sbi);
1971 if (err)
1972 goto restore_gc;
1973 } else {
1974 f2fs_enable_checkpoint(sbi);
1975 }
1976 }
1977
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001978 /*
1979 * We stop issue flush thread if FS is mounted as RO
1980 * or if flush_merge is not passed in mount option.
1981 */
1982 if ((*flags & SB_RDONLY) || !test_opt(sbi, FLUSH_MERGE)) {
1983 clear_opt(sbi, FLUSH_MERGE);
1984 f2fs_destroy_flush_cmd_control(sbi, false);
1985 } else {
1986 err = f2fs_create_flush_cmd_control(sbi);
1987 if (err)
1988 goto restore_gc;
1989 }
1990skip:
1991#ifdef CONFIG_QUOTA
1992 /* Release old quota file names */
1993 for (i = 0; i < MAXQUOTAS; i++)
Olivier Deprez157378f2022-04-04 15:47:50 +02001994 kfree(org_mount_opt.s_qf_names[i]);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001995#endif
1996 /* Update the POSIXACL Flag */
1997 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
1998 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
1999
2000 limit_reserve_root(sbi);
Olivier Deprez0e641232021-09-23 10:07:05 +02002001 adjust_unusable_cap_perc(sbi);
David Brazdil0f672f62019-12-10 10:32:29 +00002002 *flags = (*flags & ~SB_LAZYTIME) | (sb->s_flags & SB_LAZYTIME);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002003 return 0;
2004restore_gc:
2005 if (need_restart_gc) {
2006 if (f2fs_start_gc_thread(sbi))
David Brazdil0f672f62019-12-10 10:32:29 +00002007 f2fs_warn(sbi, "background gc thread has stopped");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002008 } else if (need_stop_gc) {
2009 f2fs_stop_gc_thread(sbi);
2010 }
2011restore_opts:
2012#ifdef CONFIG_QUOTA
2013 F2FS_OPTION(sbi).s_jquota_fmt = org_mount_opt.s_jquota_fmt;
2014 for (i = 0; i < MAXQUOTAS; i++) {
Olivier Deprez157378f2022-04-04 15:47:50 +02002015 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002016 F2FS_OPTION(sbi).s_qf_names[i] = org_mount_opt.s_qf_names[i];
2017 }
2018#endif
2019 sbi->mount_opt = org_mount_opt;
2020 sb->s_flags = old_sb_flags;
2021 return err;
2022}
2023
2024#ifdef CONFIG_QUOTA
2025/* Read data from quotafile */
2026static ssize_t f2fs_quota_read(struct super_block *sb, int type, char *data,
2027 size_t len, loff_t off)
2028{
2029 struct inode *inode = sb_dqopt(sb)->files[type];
2030 struct address_space *mapping = inode->i_mapping;
2031 block_t blkidx = F2FS_BYTES_TO_BLK(off);
2032 int offset = off & (sb->s_blocksize - 1);
2033 int tocopy;
2034 size_t toread;
2035 loff_t i_size = i_size_read(inode);
2036 struct page *page;
2037 char *kaddr;
2038
2039 if (off > i_size)
2040 return 0;
2041
2042 if (off + len > i_size)
2043 len = i_size - off;
2044 toread = len;
2045 while (toread > 0) {
2046 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread);
2047repeat:
2048 page = read_cache_page_gfp(mapping, blkidx, GFP_NOFS);
2049 if (IS_ERR(page)) {
2050 if (PTR_ERR(page) == -ENOMEM) {
Olivier Deprez157378f2022-04-04 15:47:50 +02002051 congestion_wait(BLK_RW_ASYNC,
2052 DEFAULT_IO_TIMEOUT);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002053 goto repeat;
2054 }
David Brazdil0f672f62019-12-10 10:32:29 +00002055 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002056 return PTR_ERR(page);
2057 }
2058
2059 lock_page(page);
2060
2061 if (unlikely(page->mapping != mapping)) {
2062 f2fs_put_page(page, 1);
2063 goto repeat;
2064 }
2065 if (unlikely(!PageUptodate(page))) {
2066 f2fs_put_page(page, 1);
David Brazdil0f672f62019-12-10 10:32:29 +00002067 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002068 return -EIO;
2069 }
2070
2071 kaddr = kmap_atomic(page);
2072 memcpy(data, kaddr + offset, tocopy);
2073 kunmap_atomic(kaddr);
2074 f2fs_put_page(page, 1);
2075
2076 offset = 0;
2077 toread -= tocopy;
2078 data += tocopy;
2079 blkidx++;
2080 }
2081 return len;
2082}
2083
2084/* Write to quotafile */
2085static ssize_t f2fs_quota_write(struct super_block *sb, int type,
2086 const char *data, size_t len, loff_t off)
2087{
2088 struct inode *inode = sb_dqopt(sb)->files[type];
2089 struct address_space *mapping = inode->i_mapping;
2090 const struct address_space_operations *a_ops = mapping->a_ops;
2091 int offset = off & (sb->s_blocksize - 1);
2092 size_t towrite = len;
2093 struct page *page;
Olivier Deprez0e641232021-09-23 10:07:05 +02002094 void *fsdata = NULL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002095 char *kaddr;
2096 int err = 0;
2097 int tocopy;
2098
2099 while (towrite > 0) {
2100 tocopy = min_t(unsigned long, sb->s_blocksize - offset,
2101 towrite);
2102retry:
2103 err = a_ops->write_begin(NULL, mapping, off, tocopy, 0,
Olivier Deprez0e641232021-09-23 10:07:05 +02002104 &page, &fsdata);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002105 if (unlikely(err)) {
2106 if (err == -ENOMEM) {
Olivier Deprez157378f2022-04-04 15:47:50 +02002107 congestion_wait(BLK_RW_ASYNC,
2108 DEFAULT_IO_TIMEOUT);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002109 goto retry;
2110 }
David Brazdil0f672f62019-12-10 10:32:29 +00002111 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002112 break;
2113 }
2114
2115 kaddr = kmap_atomic(page);
2116 memcpy(kaddr + offset, data, tocopy);
2117 kunmap_atomic(kaddr);
2118 flush_dcache_page(page);
2119
2120 a_ops->write_end(NULL, mapping, off, tocopy, tocopy,
Olivier Deprez0e641232021-09-23 10:07:05 +02002121 page, fsdata);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002122 offset = 0;
2123 towrite -= tocopy;
2124 off += tocopy;
2125 data += tocopy;
2126 cond_resched();
2127 }
2128
2129 if (len == towrite)
2130 return err;
2131 inode->i_mtime = inode->i_ctime = current_time(inode);
2132 f2fs_mark_inode_dirty_sync(inode, false);
2133 return len - towrite;
2134}
2135
2136static struct dquot **f2fs_get_dquots(struct inode *inode)
2137{
2138 return F2FS_I(inode)->i_dquot;
2139}
2140
2141static qsize_t *f2fs_get_reserved_space(struct inode *inode)
2142{
2143 return &F2FS_I(inode)->i_reserved_quota;
2144}
2145
2146static int f2fs_quota_on_mount(struct f2fs_sb_info *sbi, int type)
2147{
David Brazdil0f672f62019-12-10 10:32:29 +00002148 if (is_set_ckpt_flags(sbi, CP_QUOTA_NEED_FSCK_FLAG)) {
2149 f2fs_err(sbi, "quota sysfile may be corrupted, skip loading it");
2150 return 0;
2151 }
2152
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002153 return dquot_quota_on_mount(sbi->sb, F2FS_OPTION(sbi).s_qf_names[type],
2154 F2FS_OPTION(sbi).s_jquota_fmt, type);
2155}
2156
2157int f2fs_enable_quota_files(struct f2fs_sb_info *sbi, bool rdonly)
2158{
2159 int enabled = 0;
2160 int i, err;
2161
David Brazdil0f672f62019-12-10 10:32:29 +00002162 if (f2fs_sb_has_quota_ino(sbi) && rdonly) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002163 err = f2fs_enable_quotas(sbi->sb);
2164 if (err) {
David Brazdil0f672f62019-12-10 10:32:29 +00002165 f2fs_err(sbi, "Cannot turn on quota_ino: %d", err);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002166 return 0;
2167 }
2168 return 1;
2169 }
2170
2171 for (i = 0; i < MAXQUOTAS; i++) {
2172 if (F2FS_OPTION(sbi).s_qf_names[i]) {
2173 err = f2fs_quota_on_mount(sbi, i);
2174 if (!err) {
2175 enabled = 1;
2176 continue;
2177 }
David Brazdil0f672f62019-12-10 10:32:29 +00002178 f2fs_err(sbi, "Cannot turn on quotas: %d on %d",
2179 err, i);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002180 }
2181 }
2182 return enabled;
2183}
2184
2185static int f2fs_quota_enable(struct super_block *sb, int type, int format_id,
2186 unsigned int flags)
2187{
2188 struct inode *qf_inode;
2189 unsigned long qf_inum;
2190 int err;
2191
David Brazdil0f672f62019-12-10 10:32:29 +00002192 BUG_ON(!f2fs_sb_has_quota_ino(F2FS_SB(sb)));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002193
2194 qf_inum = f2fs_qf_ino(sb, type);
2195 if (!qf_inum)
2196 return -EPERM;
2197
2198 qf_inode = f2fs_iget(sb, qf_inum);
2199 if (IS_ERR(qf_inode)) {
David Brazdil0f672f62019-12-10 10:32:29 +00002200 f2fs_err(F2FS_SB(sb), "Bad quota inode %u:%lu", type, qf_inum);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002201 return PTR_ERR(qf_inode);
2202 }
2203
2204 /* Don't account quota for quota files to avoid recursion */
2205 qf_inode->i_flags |= S_NOQUOTA;
Olivier Deprez157378f2022-04-04 15:47:50 +02002206 err = dquot_load_quota_inode(qf_inode, type, format_id, flags);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002207 iput(qf_inode);
2208 return err;
2209}
2210
2211static int f2fs_enable_quotas(struct super_block *sb)
2212{
David Brazdil0f672f62019-12-10 10:32:29 +00002213 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002214 int type, err = 0;
2215 unsigned long qf_inum;
2216 bool quota_mopt[MAXQUOTAS] = {
David Brazdil0f672f62019-12-10 10:32:29 +00002217 test_opt(sbi, USRQUOTA),
2218 test_opt(sbi, GRPQUOTA),
2219 test_opt(sbi, PRJQUOTA),
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002220 };
2221
David Brazdil0f672f62019-12-10 10:32:29 +00002222 if (is_set_ckpt_flags(F2FS_SB(sb), CP_QUOTA_NEED_FSCK_FLAG)) {
2223 f2fs_err(sbi, "quota file may be corrupted, skip loading it");
2224 return 0;
2225 }
2226
2227 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE;
2228
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002229 for (type = 0; type < MAXQUOTAS; type++) {
2230 qf_inum = f2fs_qf_ino(sb, type);
2231 if (qf_inum) {
2232 err = f2fs_quota_enable(sb, type, QFMT_VFS_V1,
2233 DQUOT_USAGE_ENABLED |
2234 (quota_mopt[type] ? DQUOT_LIMITS_ENABLED : 0));
2235 if (err) {
David Brazdil0f672f62019-12-10 10:32:29 +00002236 f2fs_err(sbi, "Failed to enable quota tracking (type=%d, err=%d). Please run fsck to fix.",
2237 type, err);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002238 for (type--; type >= 0; type--)
2239 dquot_quota_off(sb, type);
David Brazdil0f672f62019-12-10 10:32:29 +00002240 set_sbi_flag(F2FS_SB(sb),
2241 SBI_QUOTA_NEED_REPAIR);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002242 return err;
2243 }
2244 }
2245 }
2246 return 0;
2247}
2248
Olivier Deprez0e641232021-09-23 10:07:05 +02002249static int f2fs_quota_sync_file(struct f2fs_sb_info *sbi, int type)
2250{
2251 struct quota_info *dqopt = sb_dqopt(sbi->sb);
2252 struct address_space *mapping = dqopt->files[type]->i_mapping;
2253 int ret = 0;
2254
2255 ret = dquot_writeback_dquots(sbi->sb, type);
2256 if (ret)
2257 goto out;
2258
2259 ret = filemap_fdatawrite(mapping);
2260 if (ret)
2261 goto out;
2262
2263 /* if we are using journalled quota */
2264 if (is_journalled_quota(sbi))
2265 goto out;
2266
2267 ret = filemap_fdatawait(mapping);
2268
2269 truncate_inode_pages(&dqopt->files[type]->i_data, 0);
2270out:
2271 if (ret)
2272 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2273 return ret;
2274}
2275
David Brazdil0f672f62019-12-10 10:32:29 +00002276int f2fs_quota_sync(struct super_block *sb, int type)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002277{
David Brazdil0f672f62019-12-10 10:32:29 +00002278 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002279 struct quota_info *dqopt = sb_dqopt(sb);
2280 int cnt;
Olivier Deprez92d4c212022-12-06 15:05:30 +01002281 int ret = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002282
David Brazdil0f672f62019-12-10 10:32:29 +00002283 /*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002284 * Now when everything is written we can discard the pagecache so
2285 * that userspace sees the changes.
2286 */
2287 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
David Brazdil0f672f62019-12-10 10:32:29 +00002288
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002289 if (type != -1 && cnt != type)
2290 continue;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002291
Olivier Deprez92d4c212022-12-06 15:05:30 +01002292 if (!sb_has_quota_active(sb, cnt))
2293 continue;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002294
Olivier Deprez92d4c212022-12-06 15:05:30 +01002295 if (!f2fs_sb_has_quota_ino(sbi))
2296 inode_lock(dqopt->files[cnt]);
Olivier Deprez0e641232021-09-23 10:07:05 +02002297
2298 /*
2299 * do_quotactl
2300 * f2fs_quota_sync
2301 * down_read(quota_sem)
2302 * dquot_writeback_dquots()
2303 * f2fs_dquot_commit
2304 * block_operation
2305 * down_read(quota_sem)
2306 */
2307 f2fs_lock_op(sbi);
2308 down_read(&sbi->quota_sem);
2309
2310 ret = f2fs_quota_sync_file(sbi, cnt);
2311
2312 up_read(&sbi->quota_sem);
2313 f2fs_unlock_op(sbi);
2314
Olivier Deprez92d4c212022-12-06 15:05:30 +01002315 if (!f2fs_sb_has_quota_ino(sbi))
2316 inode_unlock(dqopt->files[cnt]);
Olivier Deprez0e641232021-09-23 10:07:05 +02002317
2318 if (ret)
2319 break;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002320 }
David Brazdil0f672f62019-12-10 10:32:29 +00002321 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002322}
2323
2324static int f2fs_quota_on(struct super_block *sb, int type, int format_id,
2325 const struct path *path)
2326{
2327 struct inode *inode;
2328 int err;
2329
David Brazdil0f672f62019-12-10 10:32:29 +00002330 /* if quota sysfile exists, deny enabling quota with specific file */
2331 if (f2fs_sb_has_quota_ino(F2FS_SB(sb))) {
2332 f2fs_err(F2FS_SB(sb), "quota sysfile already exists");
2333 return -EBUSY;
2334 }
2335
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002336 err = f2fs_quota_sync(sb, type);
2337 if (err)
2338 return err;
2339
2340 err = dquot_quota_on(sb, type, format_id, path);
2341 if (err)
2342 return err;
2343
2344 inode = d_inode(path->dentry);
2345
2346 inode_lock(inode);
2347 F2FS_I(inode)->i_flags |= F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL;
David Brazdil0f672f62019-12-10 10:32:29 +00002348 f2fs_set_inode_flags(inode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002349 inode_unlock(inode);
2350 f2fs_mark_inode_dirty_sync(inode, false);
2351
2352 return 0;
2353}
2354
David Brazdil0f672f62019-12-10 10:32:29 +00002355static int __f2fs_quota_off(struct super_block *sb, int type)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002356{
2357 struct inode *inode = sb_dqopt(sb)->files[type];
2358 int err;
2359
2360 if (!inode || !igrab(inode))
2361 return dquot_quota_off(sb, type);
2362
2363 err = f2fs_quota_sync(sb, type);
2364 if (err)
2365 goto out_put;
2366
2367 err = dquot_quota_off(sb, type);
David Brazdil0f672f62019-12-10 10:32:29 +00002368 if (err || f2fs_sb_has_quota_ino(F2FS_SB(sb)))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002369 goto out_put;
2370
2371 inode_lock(inode);
2372 F2FS_I(inode)->i_flags &= ~(F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL);
David Brazdil0f672f62019-12-10 10:32:29 +00002373 f2fs_set_inode_flags(inode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002374 inode_unlock(inode);
2375 f2fs_mark_inode_dirty_sync(inode, false);
2376out_put:
2377 iput(inode);
2378 return err;
2379}
2380
David Brazdil0f672f62019-12-10 10:32:29 +00002381static int f2fs_quota_off(struct super_block *sb, int type)
2382{
2383 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2384 int err;
2385
2386 err = __f2fs_quota_off(sb, type);
2387
2388 /*
2389 * quotactl can shutdown journalled quota, result in inconsistence
2390 * between quota record and fs data by following updates, tag the
2391 * flag to let fsck be aware of it.
2392 */
2393 if (is_journalled_quota(sbi))
2394 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2395 return err;
2396}
2397
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002398void f2fs_quota_off_umount(struct super_block *sb)
2399{
2400 int type;
2401 int err;
2402
2403 for (type = 0; type < MAXQUOTAS; type++) {
David Brazdil0f672f62019-12-10 10:32:29 +00002404 err = __f2fs_quota_off(sb, type);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002405 if (err) {
2406 int ret = dquot_quota_off(sb, type);
2407
David Brazdil0f672f62019-12-10 10:32:29 +00002408 f2fs_err(F2FS_SB(sb), "Fail to turn off disk quota (type: %d, err: %d, ret:%d), Please run fsck to fix it.",
2409 type, err, ret);
2410 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002411 }
2412 }
David Brazdil0f672f62019-12-10 10:32:29 +00002413 /*
2414 * In case of checkpoint=disable, we must flush quota blocks.
2415 * This can cause NULL exception for node_inode in end_io, since
2416 * put_super already dropped it.
2417 */
2418 sync_filesystem(sb);
2419}
2420
2421static void f2fs_truncate_quota_inode_pages(struct super_block *sb)
2422{
2423 struct quota_info *dqopt = sb_dqopt(sb);
2424 int type;
2425
2426 for (type = 0; type < MAXQUOTAS; type++) {
2427 if (!dqopt->files[type])
2428 continue;
2429 f2fs_inode_synced(dqopt->files[type]);
2430 }
2431}
2432
2433static int f2fs_dquot_commit(struct dquot *dquot)
2434{
2435 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
2436 int ret;
2437
Olivier Deprez157378f2022-04-04 15:47:50 +02002438 down_read_nested(&sbi->quota_sem, SINGLE_DEPTH_NESTING);
David Brazdil0f672f62019-12-10 10:32:29 +00002439 ret = dquot_commit(dquot);
2440 if (ret < 0)
2441 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2442 up_read(&sbi->quota_sem);
2443 return ret;
2444}
2445
2446static int f2fs_dquot_acquire(struct dquot *dquot)
2447{
2448 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
2449 int ret;
2450
2451 down_read(&sbi->quota_sem);
2452 ret = dquot_acquire(dquot);
2453 if (ret < 0)
2454 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2455 up_read(&sbi->quota_sem);
2456 return ret;
2457}
2458
2459static int f2fs_dquot_release(struct dquot *dquot)
2460{
2461 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Olivier Deprez157378f2022-04-04 15:47:50 +02002462 int ret = dquot_release(dquot);
David Brazdil0f672f62019-12-10 10:32:29 +00002463
David Brazdil0f672f62019-12-10 10:32:29 +00002464 if (ret < 0)
2465 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
David Brazdil0f672f62019-12-10 10:32:29 +00002466 return ret;
2467}
2468
2469static int f2fs_dquot_mark_dquot_dirty(struct dquot *dquot)
2470{
2471 struct super_block *sb = dquot->dq_sb;
2472 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Olivier Deprez157378f2022-04-04 15:47:50 +02002473 int ret = dquot_mark_dquot_dirty(dquot);
David Brazdil0f672f62019-12-10 10:32:29 +00002474
2475 /* if we are using journalled quota */
2476 if (is_journalled_quota(sbi))
2477 set_sbi_flag(sbi, SBI_QUOTA_NEED_FLUSH);
2478
David Brazdil0f672f62019-12-10 10:32:29 +00002479 return ret;
2480}
2481
2482static int f2fs_dquot_commit_info(struct super_block *sb, int type)
2483{
2484 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Olivier Deprez157378f2022-04-04 15:47:50 +02002485 int ret = dquot_commit_info(sb, type);
David Brazdil0f672f62019-12-10 10:32:29 +00002486
David Brazdil0f672f62019-12-10 10:32:29 +00002487 if (ret < 0)
2488 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
David Brazdil0f672f62019-12-10 10:32:29 +00002489 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002490}
2491
2492static int f2fs_get_projid(struct inode *inode, kprojid_t *projid)
2493{
2494 *projid = F2FS_I(inode)->i_projid;
2495 return 0;
2496}
2497
2498static const struct dquot_operations f2fs_quota_operations = {
2499 .get_reserved_space = f2fs_get_reserved_space,
David Brazdil0f672f62019-12-10 10:32:29 +00002500 .write_dquot = f2fs_dquot_commit,
2501 .acquire_dquot = f2fs_dquot_acquire,
2502 .release_dquot = f2fs_dquot_release,
2503 .mark_dirty = f2fs_dquot_mark_dquot_dirty,
2504 .write_info = f2fs_dquot_commit_info,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002505 .alloc_dquot = dquot_alloc,
2506 .destroy_dquot = dquot_destroy,
2507 .get_projid = f2fs_get_projid,
2508 .get_next_id = dquot_get_next_id,
2509};
2510
2511static const struct quotactl_ops f2fs_quotactl_ops = {
2512 .quota_on = f2fs_quota_on,
2513 .quota_off = f2fs_quota_off,
2514 .quota_sync = f2fs_quota_sync,
2515 .get_state = dquot_get_state,
2516 .set_info = dquot_set_dqinfo,
2517 .get_dqblk = dquot_get_dqblk,
2518 .set_dqblk = dquot_set_dqblk,
2519 .get_nextdqblk = dquot_get_next_dqblk,
2520};
2521#else
David Brazdil0f672f62019-12-10 10:32:29 +00002522int f2fs_quota_sync(struct super_block *sb, int type)
2523{
2524 return 0;
2525}
2526
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002527void f2fs_quota_off_umount(struct super_block *sb)
2528{
2529}
2530#endif
2531
2532static const struct super_operations f2fs_sops = {
2533 .alloc_inode = f2fs_alloc_inode,
David Brazdil0f672f62019-12-10 10:32:29 +00002534 .free_inode = f2fs_free_inode,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002535 .drop_inode = f2fs_drop_inode,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002536 .write_inode = f2fs_write_inode,
2537 .dirty_inode = f2fs_dirty_inode,
2538 .show_options = f2fs_show_options,
2539#ifdef CONFIG_QUOTA
2540 .quota_read = f2fs_quota_read,
2541 .quota_write = f2fs_quota_write,
2542 .get_dquots = f2fs_get_dquots,
2543#endif
2544 .evict_inode = f2fs_evict_inode,
2545 .put_super = f2fs_put_super,
2546 .sync_fs = f2fs_sync_fs,
2547 .freeze_fs = f2fs_freeze,
2548 .unfreeze_fs = f2fs_unfreeze,
2549 .statfs = f2fs_statfs,
2550 .remount_fs = f2fs_remount,
2551};
2552
David Brazdil0f672f62019-12-10 10:32:29 +00002553#ifdef CONFIG_FS_ENCRYPTION
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002554static int f2fs_get_context(struct inode *inode, void *ctx, size_t len)
2555{
2556 return f2fs_getxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
2557 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
2558 ctx, len, NULL);
2559}
2560
2561static int f2fs_set_context(struct inode *inode, const void *ctx, size_t len,
2562 void *fs_data)
2563{
2564 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
2565
2566 /*
2567 * Encrypting the root directory is not allowed because fsck
2568 * expects lost+found directory to exist and remain unencrypted
2569 * if LOST_FOUND feature is enabled.
2570 *
2571 */
David Brazdil0f672f62019-12-10 10:32:29 +00002572 if (f2fs_sb_has_lost_found(sbi) &&
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002573 inode->i_ino == F2FS_ROOT_INO(sbi))
2574 return -EPERM;
2575
2576 return f2fs_setxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
2577 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
2578 ctx, len, fs_data, XATTR_CREATE);
2579}
2580
Olivier Deprez157378f2022-04-04 15:47:50 +02002581static const union fscrypt_policy *f2fs_get_dummy_policy(struct super_block *sb)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002582{
Olivier Deprez157378f2022-04-04 15:47:50 +02002583 return F2FS_OPTION(F2FS_SB(sb)).dummy_enc_policy.policy;
2584}
2585
2586static bool f2fs_has_stable_inodes(struct super_block *sb)
2587{
2588 return true;
2589}
2590
2591static void f2fs_get_ino_and_lblk_bits(struct super_block *sb,
2592 int *ino_bits_ret, int *lblk_bits_ret)
2593{
2594 *ino_bits_ret = 8 * sizeof(nid_t);
2595 *lblk_bits_ret = 8 * sizeof(block_t);
2596}
2597
2598static int f2fs_get_num_devices(struct super_block *sb)
2599{
2600 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2601
2602 if (f2fs_is_multi_device(sbi))
2603 return sbi->s_ndevs;
2604 return 1;
2605}
2606
2607static void f2fs_get_devices(struct super_block *sb,
2608 struct request_queue **devs)
2609{
2610 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2611 int i;
2612
2613 for (i = 0; i < sbi->s_ndevs; i++)
2614 devs[i] = bdev_get_queue(FDEV(i).bdev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002615}
2616
2617static const struct fscrypt_operations f2fs_cryptops = {
Olivier Deprez157378f2022-04-04 15:47:50 +02002618 .key_prefix = "f2fs:",
2619 .get_context = f2fs_get_context,
2620 .set_context = f2fs_set_context,
2621 .get_dummy_policy = f2fs_get_dummy_policy,
2622 .empty_dir = f2fs_empty_dir,
2623 .max_namelen = F2FS_NAME_LEN,
2624 .has_stable_inodes = f2fs_has_stable_inodes,
2625 .get_ino_and_lblk_bits = f2fs_get_ino_and_lblk_bits,
2626 .get_num_devices = f2fs_get_num_devices,
2627 .get_devices = f2fs_get_devices,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002628};
2629#endif
2630
2631static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
2632 u64 ino, u32 generation)
2633{
2634 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2635 struct inode *inode;
2636
2637 if (f2fs_check_nid_range(sbi, ino))
2638 return ERR_PTR(-ESTALE);
2639
2640 /*
2641 * f2fs_iget isn't quite right if the inode is currently unallocated!
2642 * However f2fs_iget currently does appropriate checks to handle stale
2643 * inodes so everything is OK.
2644 */
2645 inode = f2fs_iget(sb, ino);
2646 if (IS_ERR(inode))
2647 return ERR_CAST(inode);
2648 if (unlikely(generation && inode->i_generation != generation)) {
2649 /* we didn't find the right inode.. */
2650 iput(inode);
2651 return ERR_PTR(-ESTALE);
2652 }
2653 return inode;
2654}
2655
2656static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
2657 int fh_len, int fh_type)
2658{
2659 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
2660 f2fs_nfs_get_inode);
2661}
2662
2663static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
2664 int fh_len, int fh_type)
2665{
2666 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
2667 f2fs_nfs_get_inode);
2668}
2669
2670static const struct export_operations f2fs_export_ops = {
2671 .fh_to_dentry = f2fs_fh_to_dentry,
2672 .fh_to_parent = f2fs_fh_to_parent,
2673 .get_parent = f2fs_get_parent,
2674};
2675
2676static loff_t max_file_blocks(void)
2677{
2678 loff_t result = 0;
David Brazdil0f672f62019-12-10 10:32:29 +00002679 loff_t leaf_count = DEF_ADDRS_PER_BLOCK;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002680
2681 /*
2682 * note: previously, result is equal to (DEF_ADDRS_PER_INODE -
2683 * DEFAULT_INLINE_XATTR_ADDRS), but now f2fs try to reserve more
2684 * space in inode.i_addr, it will be more safe to reassign
2685 * result as zero.
2686 */
2687
2688 /* two direct node blocks */
2689 result += (leaf_count * 2);
2690
2691 /* two indirect node blocks */
2692 leaf_count *= NIDS_PER_BLOCK;
2693 result += (leaf_count * 2);
2694
2695 /* one double indirect node block */
2696 leaf_count *= NIDS_PER_BLOCK;
2697 result += leaf_count;
2698
2699 return result;
2700}
2701
2702static int __f2fs_commit_super(struct buffer_head *bh,
2703 struct f2fs_super_block *super)
2704{
2705 lock_buffer(bh);
2706 if (super)
2707 memcpy(bh->b_data + F2FS_SUPER_OFFSET, super, sizeof(*super));
2708 set_buffer_dirty(bh);
2709 unlock_buffer(bh);
2710
2711 /* it's rare case, we can do fua all the time */
2712 return __sync_dirty_buffer(bh, REQ_SYNC | REQ_PREFLUSH | REQ_FUA);
2713}
2714
2715static inline bool sanity_check_area_boundary(struct f2fs_sb_info *sbi,
2716 struct buffer_head *bh)
2717{
2718 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
2719 (bh->b_data + F2FS_SUPER_OFFSET);
2720 struct super_block *sb = sbi->sb;
2721 u32 segment0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
2722 u32 cp_blkaddr = le32_to_cpu(raw_super->cp_blkaddr);
2723 u32 sit_blkaddr = le32_to_cpu(raw_super->sit_blkaddr);
2724 u32 nat_blkaddr = le32_to_cpu(raw_super->nat_blkaddr);
2725 u32 ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
2726 u32 main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
2727 u32 segment_count_ckpt = le32_to_cpu(raw_super->segment_count_ckpt);
2728 u32 segment_count_sit = le32_to_cpu(raw_super->segment_count_sit);
2729 u32 segment_count_nat = le32_to_cpu(raw_super->segment_count_nat);
2730 u32 segment_count_ssa = le32_to_cpu(raw_super->segment_count_ssa);
2731 u32 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
2732 u32 segment_count = le32_to_cpu(raw_super->segment_count);
2733 u32 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
2734 u64 main_end_blkaddr = main_blkaddr +
2735 (segment_count_main << log_blocks_per_seg);
2736 u64 seg_end_blkaddr = segment0_blkaddr +
2737 (segment_count << log_blocks_per_seg);
2738
2739 if (segment0_blkaddr != cp_blkaddr) {
David Brazdil0f672f62019-12-10 10:32:29 +00002740 f2fs_info(sbi, "Mismatch start address, segment0(%u) cp_blkaddr(%u)",
2741 segment0_blkaddr, cp_blkaddr);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002742 return true;
2743 }
2744
2745 if (cp_blkaddr + (segment_count_ckpt << log_blocks_per_seg) !=
2746 sit_blkaddr) {
David Brazdil0f672f62019-12-10 10:32:29 +00002747 f2fs_info(sbi, "Wrong CP boundary, start(%u) end(%u) blocks(%u)",
2748 cp_blkaddr, sit_blkaddr,
2749 segment_count_ckpt << log_blocks_per_seg);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002750 return true;
2751 }
2752
2753 if (sit_blkaddr + (segment_count_sit << log_blocks_per_seg) !=
2754 nat_blkaddr) {
David Brazdil0f672f62019-12-10 10:32:29 +00002755 f2fs_info(sbi, "Wrong SIT boundary, start(%u) end(%u) blocks(%u)",
2756 sit_blkaddr, nat_blkaddr,
2757 segment_count_sit << log_blocks_per_seg);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002758 return true;
2759 }
2760
2761 if (nat_blkaddr + (segment_count_nat << log_blocks_per_seg) !=
2762 ssa_blkaddr) {
David Brazdil0f672f62019-12-10 10:32:29 +00002763 f2fs_info(sbi, "Wrong NAT boundary, start(%u) end(%u) blocks(%u)",
2764 nat_blkaddr, ssa_blkaddr,
2765 segment_count_nat << log_blocks_per_seg);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002766 return true;
2767 }
2768
2769 if (ssa_blkaddr + (segment_count_ssa << log_blocks_per_seg) !=
2770 main_blkaddr) {
David Brazdil0f672f62019-12-10 10:32:29 +00002771 f2fs_info(sbi, "Wrong SSA boundary, start(%u) end(%u) blocks(%u)",
2772 ssa_blkaddr, main_blkaddr,
2773 segment_count_ssa << log_blocks_per_seg);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002774 return true;
2775 }
2776
2777 if (main_end_blkaddr > seg_end_blkaddr) {
Olivier Deprez157378f2022-04-04 15:47:50 +02002778 f2fs_info(sbi, "Wrong MAIN_AREA boundary, start(%u) end(%llu) block(%u)",
2779 main_blkaddr, seg_end_blkaddr,
David Brazdil0f672f62019-12-10 10:32:29 +00002780 segment_count_main << log_blocks_per_seg);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002781 return true;
2782 } else if (main_end_blkaddr < seg_end_blkaddr) {
2783 int err = 0;
2784 char *res;
2785
2786 /* fix in-memory information all the time */
2787 raw_super->segment_count = cpu_to_le32((main_end_blkaddr -
2788 segment0_blkaddr) >> log_blocks_per_seg);
2789
2790 if (f2fs_readonly(sb) || bdev_read_only(sb->s_bdev)) {
2791 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
2792 res = "internally";
2793 } else {
2794 err = __f2fs_commit_super(bh, NULL);
2795 res = err ? "failed" : "done";
2796 }
Olivier Deprez157378f2022-04-04 15:47:50 +02002797 f2fs_info(sbi, "Fix alignment : %s, start(%u) end(%llu) block(%u)",
2798 res, main_blkaddr, seg_end_blkaddr,
David Brazdil0f672f62019-12-10 10:32:29 +00002799 segment_count_main << log_blocks_per_seg);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002800 if (err)
2801 return true;
2802 }
2803 return false;
2804}
2805
2806static int sanity_check_raw_super(struct f2fs_sb_info *sbi,
2807 struct buffer_head *bh)
2808{
Olivier Deprez157378f2022-04-04 15:47:50 +02002809 block_t segment_count, segs_per_sec, secs_per_zone, segment_count_main;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002810 block_t total_sections, blocks_per_seg;
2811 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
2812 (bh->b_data + F2FS_SUPER_OFFSET);
David Brazdil0f672f62019-12-10 10:32:29 +00002813 size_t crc_offset = 0;
2814 __u32 crc = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002815
David Brazdil0f672f62019-12-10 10:32:29 +00002816 if (le32_to_cpu(raw_super->magic) != F2FS_SUPER_MAGIC) {
2817 f2fs_info(sbi, "Magic Mismatch, valid(0x%x) - read(0x%x)",
2818 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
2819 return -EINVAL;
2820 }
2821
2822 /* Check checksum_offset and crc in superblock */
2823 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_SB_CHKSUM)) {
2824 crc_offset = le32_to_cpu(raw_super->checksum_offset);
2825 if (crc_offset !=
2826 offsetof(struct f2fs_super_block, crc)) {
2827 f2fs_info(sbi, "Invalid SB checksum offset: %zu",
2828 crc_offset);
2829 return -EFSCORRUPTED;
2830 }
2831 crc = le32_to_cpu(raw_super->crc);
2832 if (!f2fs_crc_valid(sbi, crc, raw_super, crc_offset)) {
2833 f2fs_info(sbi, "Invalid SB checksum value: %u", crc);
2834 return -EFSCORRUPTED;
2835 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002836 }
2837
2838 /* Currently, support only 4KB page cache size */
2839 if (F2FS_BLKSIZE != PAGE_SIZE) {
David Brazdil0f672f62019-12-10 10:32:29 +00002840 f2fs_info(sbi, "Invalid page_cache_size (%lu), supports only 4KB",
2841 PAGE_SIZE);
2842 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002843 }
2844
2845 /* Currently, support only 4KB block size */
Olivier Deprez0e641232021-09-23 10:07:05 +02002846 if (le32_to_cpu(raw_super->log_blocksize) != F2FS_BLKSIZE_BITS) {
2847 f2fs_info(sbi, "Invalid log_blocksize (%u), supports only %u",
2848 le32_to_cpu(raw_super->log_blocksize),
2849 F2FS_BLKSIZE_BITS);
David Brazdil0f672f62019-12-10 10:32:29 +00002850 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002851 }
2852
2853 /* check log blocks per segment */
2854 if (le32_to_cpu(raw_super->log_blocks_per_seg) != 9) {
David Brazdil0f672f62019-12-10 10:32:29 +00002855 f2fs_info(sbi, "Invalid log blocks per segment (%u)",
2856 le32_to_cpu(raw_super->log_blocks_per_seg));
2857 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002858 }
2859
2860 /* Currently, support 512/1024/2048/4096 bytes sector size */
2861 if (le32_to_cpu(raw_super->log_sectorsize) >
2862 F2FS_MAX_LOG_SECTOR_SIZE ||
2863 le32_to_cpu(raw_super->log_sectorsize) <
2864 F2FS_MIN_LOG_SECTOR_SIZE) {
David Brazdil0f672f62019-12-10 10:32:29 +00002865 f2fs_info(sbi, "Invalid log sectorsize (%u)",
2866 le32_to_cpu(raw_super->log_sectorsize));
2867 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002868 }
2869 if (le32_to_cpu(raw_super->log_sectors_per_block) +
2870 le32_to_cpu(raw_super->log_sectorsize) !=
2871 F2FS_MAX_LOG_SECTOR_SIZE) {
David Brazdil0f672f62019-12-10 10:32:29 +00002872 f2fs_info(sbi, "Invalid log sectors per block(%u) log sectorsize(%u)",
2873 le32_to_cpu(raw_super->log_sectors_per_block),
2874 le32_to_cpu(raw_super->log_sectorsize));
2875 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002876 }
2877
2878 segment_count = le32_to_cpu(raw_super->segment_count);
Olivier Deprez157378f2022-04-04 15:47:50 +02002879 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002880 segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
2881 secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
2882 total_sections = le32_to_cpu(raw_super->section_count);
2883
2884 /* blocks_per_seg should be 512, given the above check */
2885 blocks_per_seg = 1 << le32_to_cpu(raw_super->log_blocks_per_seg);
2886
2887 if (segment_count > F2FS_MAX_SEGMENT ||
2888 segment_count < F2FS_MIN_SEGMENTS) {
David Brazdil0f672f62019-12-10 10:32:29 +00002889 f2fs_info(sbi, "Invalid segment count (%u)", segment_count);
2890 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002891 }
2892
Olivier Deprez157378f2022-04-04 15:47:50 +02002893 if (total_sections > segment_count_main || total_sections < 1 ||
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002894 segs_per_sec > segment_count || !segs_per_sec) {
David Brazdil0f672f62019-12-10 10:32:29 +00002895 f2fs_info(sbi, "Invalid segment/section count (%u, %u x %u)",
2896 segment_count, total_sections, segs_per_sec);
2897 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002898 }
2899
Olivier Deprez157378f2022-04-04 15:47:50 +02002900 if (segment_count_main != total_sections * segs_per_sec) {
2901 f2fs_info(sbi, "Invalid segment/section count (%u != %u * %u)",
2902 segment_count_main, total_sections, segs_per_sec);
2903 return -EFSCORRUPTED;
2904 }
2905
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002906 if ((segment_count / segs_per_sec) < total_sections) {
David Brazdil0f672f62019-12-10 10:32:29 +00002907 f2fs_info(sbi, "Small segment_count (%u < %u * %u)",
2908 segment_count, segs_per_sec, total_sections);
2909 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002910 }
2911
David Brazdil0f672f62019-12-10 10:32:29 +00002912 if (segment_count > (le64_to_cpu(raw_super->block_count) >> 9)) {
2913 f2fs_info(sbi, "Wrong segment_count / block_count (%u > %llu)",
2914 segment_count, le64_to_cpu(raw_super->block_count));
2915 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002916 }
2917
Olivier Deprez157378f2022-04-04 15:47:50 +02002918 if (RDEV(0).path[0]) {
2919 block_t dev_seg_count = le32_to_cpu(RDEV(0).total_segments);
2920 int i = 1;
2921
2922 while (i < MAX_DEVICES && RDEV(i).path[0]) {
2923 dev_seg_count += le32_to_cpu(RDEV(i).total_segments);
2924 i++;
2925 }
2926 if (segment_count != dev_seg_count) {
2927 f2fs_info(sbi, "Segment count (%u) mismatch with total segments from devices (%u)",
2928 segment_count, dev_seg_count);
2929 return -EFSCORRUPTED;
2930 }
2931 } else {
2932 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_BLKZONED) &&
2933 !bdev_is_zoned(sbi->sb->s_bdev)) {
2934 f2fs_info(sbi, "Zoned block device path is missing");
2935 return -EFSCORRUPTED;
2936 }
2937 }
2938
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002939 if (secs_per_zone > total_sections || !secs_per_zone) {
David Brazdil0f672f62019-12-10 10:32:29 +00002940 f2fs_info(sbi, "Wrong secs_per_zone / total_sections (%u, %u)",
2941 secs_per_zone, total_sections);
2942 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002943 }
2944 if (le32_to_cpu(raw_super->extension_count) > F2FS_MAX_EXTENSION ||
2945 raw_super->hot_ext_count > F2FS_MAX_EXTENSION ||
2946 (le32_to_cpu(raw_super->extension_count) +
2947 raw_super->hot_ext_count) > F2FS_MAX_EXTENSION) {
David Brazdil0f672f62019-12-10 10:32:29 +00002948 f2fs_info(sbi, "Corrupted extension count (%u + %u > %u)",
2949 le32_to_cpu(raw_super->extension_count),
2950 raw_super->hot_ext_count,
2951 F2FS_MAX_EXTENSION);
2952 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002953 }
2954
Olivier Deprez157378f2022-04-04 15:47:50 +02002955 if (le32_to_cpu(raw_super->cp_payload) >=
2956 (blocks_per_seg - F2FS_CP_PACKS -
2957 NR_CURSEG_PERSIST_TYPE)) {
2958 f2fs_info(sbi, "Insane cp_payload (%u >= %u)",
David Brazdil0f672f62019-12-10 10:32:29 +00002959 le32_to_cpu(raw_super->cp_payload),
Olivier Deprez157378f2022-04-04 15:47:50 +02002960 blocks_per_seg - F2FS_CP_PACKS -
2961 NR_CURSEG_PERSIST_TYPE);
David Brazdil0f672f62019-12-10 10:32:29 +00002962 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002963 }
2964
2965 /* check reserved ino info */
2966 if (le32_to_cpu(raw_super->node_ino) != 1 ||
2967 le32_to_cpu(raw_super->meta_ino) != 2 ||
2968 le32_to_cpu(raw_super->root_ino) != 3) {
David Brazdil0f672f62019-12-10 10:32:29 +00002969 f2fs_info(sbi, "Invalid Fs Meta Ino: node(%u) meta(%u) root(%u)",
2970 le32_to_cpu(raw_super->node_ino),
2971 le32_to_cpu(raw_super->meta_ino),
2972 le32_to_cpu(raw_super->root_ino));
2973 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002974 }
2975
2976 /* check CP/SIT/NAT/SSA/MAIN_AREA area boundary */
2977 if (sanity_check_area_boundary(sbi, bh))
David Brazdil0f672f62019-12-10 10:32:29 +00002978 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002979
2980 return 0;
2981}
2982
2983int f2fs_sanity_check_ckpt(struct f2fs_sb_info *sbi)
2984{
2985 unsigned int total, fsmeta;
2986 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
2987 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
2988 unsigned int ovp_segments, reserved_segments;
2989 unsigned int main_segs, blocks_per_seg;
2990 unsigned int sit_segs, nat_segs;
2991 unsigned int sit_bitmap_size, nat_bitmap_size;
2992 unsigned int log_blocks_per_seg;
2993 unsigned int segment_count_main;
2994 unsigned int cp_pack_start_sum, cp_payload;
David Brazdil0f672f62019-12-10 10:32:29 +00002995 block_t user_block_count, valid_user_blocks;
2996 block_t avail_node_count, valid_node_count;
Olivier Deprez157378f2022-04-04 15:47:50 +02002997 unsigned int nat_blocks, nat_bits_bytes, nat_bits_blocks;
David Brazdil0f672f62019-12-10 10:32:29 +00002998 int i, j;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002999
3000 total = le32_to_cpu(raw_super->segment_count);
3001 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
3002 sit_segs = le32_to_cpu(raw_super->segment_count_sit);
3003 fsmeta += sit_segs;
3004 nat_segs = le32_to_cpu(raw_super->segment_count_nat);
3005 fsmeta += nat_segs;
3006 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
3007 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
3008
3009 if (unlikely(fsmeta >= total))
3010 return 1;
3011
3012 ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
3013 reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
3014
Olivier Deprez157378f2022-04-04 15:47:50 +02003015 if (unlikely(fsmeta < F2FS_MIN_META_SEGMENTS ||
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003016 ovp_segments == 0 || reserved_segments == 0)) {
David Brazdil0f672f62019-12-10 10:32:29 +00003017 f2fs_err(sbi, "Wrong layout: check mkfs.f2fs version");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003018 return 1;
3019 }
3020
3021 user_block_count = le64_to_cpu(ckpt->user_block_count);
3022 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
3023 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3024 if (!user_block_count || user_block_count >=
3025 segment_count_main << log_blocks_per_seg) {
David Brazdil0f672f62019-12-10 10:32:29 +00003026 f2fs_err(sbi, "Wrong user_block_count: %u",
3027 user_block_count);
3028 return 1;
3029 }
3030
3031 valid_user_blocks = le64_to_cpu(ckpt->valid_block_count);
3032 if (valid_user_blocks > user_block_count) {
3033 f2fs_err(sbi, "Wrong valid_user_blocks: %u, user_block_count: %u",
3034 valid_user_blocks, user_block_count);
3035 return 1;
3036 }
3037
3038 valid_node_count = le32_to_cpu(ckpt->valid_node_count);
3039 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
3040 if (valid_node_count > avail_node_count) {
3041 f2fs_err(sbi, "Wrong valid_node_count: %u, avail_node_count: %u",
3042 valid_node_count, avail_node_count);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003043 return 1;
3044 }
3045
3046 main_segs = le32_to_cpu(raw_super->segment_count_main);
3047 blocks_per_seg = sbi->blocks_per_seg;
3048
3049 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
3050 if (le32_to_cpu(ckpt->cur_node_segno[i]) >= main_segs ||
3051 le16_to_cpu(ckpt->cur_node_blkoff[i]) >= blocks_per_seg)
3052 return 1;
David Brazdil0f672f62019-12-10 10:32:29 +00003053 for (j = i + 1; j < NR_CURSEG_NODE_TYPE; j++) {
3054 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3055 le32_to_cpu(ckpt->cur_node_segno[j])) {
3056 f2fs_err(sbi, "Node segment (%u, %u) has the same segno: %u",
3057 i, j,
3058 le32_to_cpu(ckpt->cur_node_segno[i]));
3059 return 1;
3060 }
3061 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003062 }
3063 for (i = 0; i < NR_CURSEG_DATA_TYPE; i++) {
3064 if (le32_to_cpu(ckpt->cur_data_segno[i]) >= main_segs ||
3065 le16_to_cpu(ckpt->cur_data_blkoff[i]) >= blocks_per_seg)
3066 return 1;
David Brazdil0f672f62019-12-10 10:32:29 +00003067 for (j = i + 1; j < NR_CURSEG_DATA_TYPE; j++) {
3068 if (le32_to_cpu(ckpt->cur_data_segno[i]) ==
3069 le32_to_cpu(ckpt->cur_data_segno[j])) {
3070 f2fs_err(sbi, "Data segment (%u, %u) has the same segno: %u",
3071 i, j,
3072 le32_to_cpu(ckpt->cur_data_segno[i]));
3073 return 1;
3074 }
3075 }
3076 }
3077 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
3078 for (j = 0; j < NR_CURSEG_DATA_TYPE; j++) {
3079 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3080 le32_to_cpu(ckpt->cur_data_segno[j])) {
3081 f2fs_err(sbi, "Node segment (%u) and Data segment (%u) has the same segno: %u",
3082 i, j,
3083 le32_to_cpu(ckpt->cur_node_segno[i]));
3084 return 1;
3085 }
3086 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003087 }
3088
3089 sit_bitmap_size = le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
3090 nat_bitmap_size = le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
3091
3092 if (sit_bitmap_size != ((sit_segs / 2) << log_blocks_per_seg) / 8 ||
3093 nat_bitmap_size != ((nat_segs / 2) << log_blocks_per_seg) / 8) {
David Brazdil0f672f62019-12-10 10:32:29 +00003094 f2fs_err(sbi, "Wrong bitmap size: sit: %u, nat:%u",
3095 sit_bitmap_size, nat_bitmap_size);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003096 return 1;
3097 }
3098
3099 cp_pack_start_sum = __start_sum_addr(sbi);
3100 cp_payload = __cp_payload(sbi);
3101 if (cp_pack_start_sum < cp_payload + 1 ||
3102 cp_pack_start_sum > blocks_per_seg - 1 -
Olivier Deprez157378f2022-04-04 15:47:50 +02003103 NR_CURSEG_PERSIST_TYPE) {
David Brazdil0f672f62019-12-10 10:32:29 +00003104 f2fs_err(sbi, "Wrong cp_pack_start_sum: %u",
3105 cp_pack_start_sum);
3106 return 1;
3107 }
3108
3109 if (__is_set_ckpt_flags(ckpt, CP_LARGE_NAT_BITMAP_FLAG) &&
3110 le32_to_cpu(ckpt->checksum_offset) != CP_MIN_CHKSUM_OFFSET) {
3111 f2fs_warn(sbi, "using deprecated layout of large_nat_bitmap, "
3112 "please run fsck v1.13.0 or higher to repair, chksum_offset: %u, "
3113 "fixed with patch: \"f2fs-tools: relocate chksum_offset for large_nat_bitmap feature\"",
3114 le32_to_cpu(ckpt->checksum_offset));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003115 return 1;
3116 }
3117
Olivier Deprez157378f2022-04-04 15:47:50 +02003118 nat_blocks = nat_segs << log_blocks_per_seg;
3119 nat_bits_bytes = nat_blocks / BITS_PER_BYTE;
3120 nat_bits_blocks = F2FS_BLK_ALIGN((nat_bits_bytes << 1) + 8);
3121 if (__is_set_ckpt_flags(ckpt, CP_NAT_BITS_FLAG) &&
3122 (cp_payload + F2FS_CP_PACKS +
3123 NR_CURSEG_PERSIST_TYPE + nat_bits_blocks >= blocks_per_seg)) {
3124 f2fs_warn(sbi, "Insane cp_payload: %u, nat_bits_blocks: %u)",
3125 cp_payload, nat_bits_blocks);
3126 return 1;
3127 }
3128
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003129 if (unlikely(f2fs_cp_error(sbi))) {
David Brazdil0f672f62019-12-10 10:32:29 +00003130 f2fs_err(sbi, "A bug case: need to run fsck");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003131 return 1;
3132 }
3133 return 0;
3134}
3135
3136static void init_sb_info(struct f2fs_sb_info *sbi)
3137{
3138 struct f2fs_super_block *raw_super = sbi->raw_super;
David Brazdil0f672f62019-12-10 10:32:29 +00003139 int i;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003140
3141 sbi->log_sectors_per_block =
3142 le32_to_cpu(raw_super->log_sectors_per_block);
3143 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
3144 sbi->blocksize = 1 << sbi->log_blocksize;
3145 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3146 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
3147 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
3148 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
3149 sbi->total_sections = le32_to_cpu(raw_super->section_count);
3150 sbi->total_node_count =
3151 (le32_to_cpu(raw_super->segment_count_nat) / 2)
3152 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
3153 sbi->root_ino_num = le32_to_cpu(raw_super->root_ino);
3154 sbi->node_ino_num = le32_to_cpu(raw_super->node_ino);
3155 sbi->meta_ino_num = le32_to_cpu(raw_super->meta_ino);
3156 sbi->cur_victim_sec = NULL_SECNO;
David Brazdil0f672f62019-12-10 10:32:29 +00003157 sbi->next_victim_seg[BG_GC] = NULL_SEGNO;
3158 sbi->next_victim_seg[FG_GC] = NULL_SEGNO;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003159 sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;
David Brazdil0f672f62019-12-10 10:32:29 +00003160 sbi->migration_granularity = sbi->segs_per_sec;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003161
3162 sbi->dir_level = DEF_DIR_LEVEL;
3163 sbi->interval_time[CP_TIME] = DEF_CP_INTERVAL;
3164 sbi->interval_time[REQ_TIME] = DEF_IDLE_INTERVAL;
David Brazdil0f672f62019-12-10 10:32:29 +00003165 sbi->interval_time[DISCARD_TIME] = DEF_IDLE_INTERVAL;
3166 sbi->interval_time[GC_TIME] = DEF_IDLE_INTERVAL;
3167 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_INTERVAL;
3168 sbi->interval_time[UMOUNT_DISCARD_TIMEOUT] =
3169 DEF_UMOUNT_DISCARD_TIMEOUT;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003170 clear_sbi_flag(sbi, SBI_NEED_FSCK);
3171
3172 for (i = 0; i < NR_COUNT_TYPE; i++)
3173 atomic_set(&sbi->nr_pages[i], 0);
3174
3175 for (i = 0; i < META; i++)
3176 atomic_set(&sbi->wb_sync_req[i], 0);
3177
3178 INIT_LIST_HEAD(&sbi->s_list);
3179 mutex_init(&sbi->umount_mutex);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003180 init_rwsem(&sbi->io_order_lock);
3181 spin_lock_init(&sbi->cp_lock);
3182
3183 sbi->dirty_device = 0;
3184 spin_lock_init(&sbi->dev_lock);
3185
3186 init_rwsem(&sbi->sb_lock);
Olivier Deprez157378f2022-04-04 15:47:50 +02003187 init_rwsem(&sbi->pin_sem);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003188}
3189
3190static int init_percpu_info(struct f2fs_sb_info *sbi)
3191{
3192 int err;
3193
3194 err = percpu_counter_init(&sbi->alloc_valid_block_count, 0, GFP_KERNEL);
3195 if (err)
3196 return err;
3197
David Brazdil0f672f62019-12-10 10:32:29 +00003198 err = percpu_counter_init(&sbi->total_valid_inode_count, 0,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003199 GFP_KERNEL);
David Brazdil0f672f62019-12-10 10:32:29 +00003200 if (err)
3201 percpu_counter_destroy(&sbi->alloc_valid_block_count);
3202
3203 return err;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003204}
3205
3206#ifdef CONFIG_BLK_DEV_ZONED
Olivier Deprez157378f2022-04-04 15:47:50 +02003207
3208struct f2fs_report_zones_args {
3209 struct f2fs_dev_info *dev;
3210 bool zone_cap_mismatch;
3211};
3212
3213static int f2fs_report_zone_cb(struct blk_zone *zone, unsigned int idx,
3214 void *data)
3215{
3216 struct f2fs_report_zones_args *rz_args = data;
3217
3218 if (zone->type == BLK_ZONE_TYPE_CONVENTIONAL)
3219 return 0;
3220
3221 set_bit(idx, rz_args->dev->blkz_seq);
3222 rz_args->dev->zone_capacity_blocks[idx] = zone->capacity >>
3223 F2FS_LOG_SECTORS_PER_BLOCK;
3224 if (zone->len != zone->capacity && !rz_args->zone_cap_mismatch)
3225 rz_args->zone_cap_mismatch = true;
3226
3227 return 0;
3228}
3229
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003230static int init_blkz_info(struct f2fs_sb_info *sbi, int devi)
3231{
3232 struct block_device *bdev = FDEV(devi).bdev;
3233 sector_t nr_sectors = bdev->bd_part->nr_sects;
Olivier Deprez157378f2022-04-04 15:47:50 +02003234 struct f2fs_report_zones_args rep_zone_arg;
3235 int ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003236
David Brazdil0f672f62019-12-10 10:32:29 +00003237 if (!f2fs_sb_has_blkzoned(sbi))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003238 return 0;
3239
3240 if (sbi->blocks_per_blkz && sbi->blocks_per_blkz !=
3241 SECTOR_TO_BLOCK(bdev_zone_sectors(bdev)))
3242 return -EINVAL;
3243 sbi->blocks_per_blkz = SECTOR_TO_BLOCK(bdev_zone_sectors(bdev));
3244 if (sbi->log_blocks_per_blkz && sbi->log_blocks_per_blkz !=
3245 __ilog2_u32(sbi->blocks_per_blkz))
3246 return -EINVAL;
3247 sbi->log_blocks_per_blkz = __ilog2_u32(sbi->blocks_per_blkz);
3248 FDEV(devi).nr_blkz = SECTOR_TO_BLOCK(nr_sectors) >>
3249 sbi->log_blocks_per_blkz;
3250 if (nr_sectors & (bdev_zone_sectors(bdev) - 1))
3251 FDEV(devi).nr_blkz++;
3252
Olivier Deprez0e641232021-09-23 10:07:05 +02003253 FDEV(devi).blkz_seq = f2fs_kvzalloc(sbi,
David Brazdil0f672f62019-12-10 10:32:29 +00003254 BITS_TO_LONGS(FDEV(devi).nr_blkz)
3255 * sizeof(unsigned long),
3256 GFP_KERNEL);
3257 if (!FDEV(devi).blkz_seq)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003258 return -ENOMEM;
3259
Olivier Deprez157378f2022-04-04 15:47:50 +02003260 /* Get block zones type and zone-capacity */
3261 FDEV(devi).zone_capacity_blocks = f2fs_kzalloc(sbi,
3262 FDEV(devi).nr_blkz * sizeof(block_t),
3263 GFP_KERNEL);
3264 if (!FDEV(devi).zone_capacity_blocks)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003265 return -ENOMEM;
3266
Olivier Deprez157378f2022-04-04 15:47:50 +02003267 rep_zone_arg.dev = &FDEV(devi);
3268 rep_zone_arg.zone_cap_mismatch = false;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003269
Olivier Deprez157378f2022-04-04 15:47:50 +02003270 ret = blkdev_report_zones(bdev, 0, BLK_ALL_ZONES, f2fs_report_zone_cb,
3271 &rep_zone_arg);
3272 if (ret < 0)
3273 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003274
Olivier Deprez157378f2022-04-04 15:47:50 +02003275 if (!rep_zone_arg.zone_cap_mismatch) {
3276 kfree(FDEV(devi).zone_capacity_blocks);
3277 FDEV(devi).zone_capacity_blocks = NULL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003278 }
3279
Olivier Deprez157378f2022-04-04 15:47:50 +02003280 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003281}
3282#endif
3283
3284/*
3285 * Read f2fs raw super block.
3286 * Because we have two copies of super block, so read both of them
3287 * to get the first valid one. If any one of them is broken, we pass
3288 * them recovery flag back to the caller.
3289 */
3290static int read_raw_super_block(struct f2fs_sb_info *sbi,
3291 struct f2fs_super_block **raw_super,
3292 int *valid_super_block, int *recovery)
3293{
3294 struct super_block *sb = sbi->sb;
3295 int block;
3296 struct buffer_head *bh;
3297 struct f2fs_super_block *super;
3298 int err = 0;
3299
3300 super = kzalloc(sizeof(struct f2fs_super_block), GFP_KERNEL);
3301 if (!super)
3302 return -ENOMEM;
3303
3304 for (block = 0; block < 2; block++) {
3305 bh = sb_bread(sb, block);
3306 if (!bh) {
David Brazdil0f672f62019-12-10 10:32:29 +00003307 f2fs_err(sbi, "Unable to read %dth superblock",
3308 block + 1);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003309 err = -EIO;
Olivier Deprez157378f2022-04-04 15:47:50 +02003310 *recovery = 1;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003311 continue;
3312 }
3313
3314 /* sanity checking of raw super */
David Brazdil0f672f62019-12-10 10:32:29 +00003315 err = sanity_check_raw_super(sbi, bh);
3316 if (err) {
3317 f2fs_err(sbi, "Can't find valid F2FS filesystem in %dth superblock",
3318 block + 1);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003319 brelse(bh);
Olivier Deprez157378f2022-04-04 15:47:50 +02003320 *recovery = 1;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003321 continue;
3322 }
3323
3324 if (!*raw_super) {
3325 memcpy(super, bh->b_data + F2FS_SUPER_OFFSET,
3326 sizeof(*super));
3327 *valid_super_block = block;
3328 *raw_super = super;
3329 }
3330 brelse(bh);
3331 }
3332
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003333 /* No valid superblock */
3334 if (!*raw_super)
Olivier Deprez157378f2022-04-04 15:47:50 +02003335 kfree(super);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003336 else
3337 err = 0;
3338
3339 return err;
3340}
3341
3342int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover)
3343{
3344 struct buffer_head *bh;
David Brazdil0f672f62019-12-10 10:32:29 +00003345 __u32 crc = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003346 int err;
3347
3348 if ((recover && f2fs_readonly(sbi->sb)) ||
3349 bdev_read_only(sbi->sb->s_bdev)) {
3350 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
3351 return -EROFS;
3352 }
3353
David Brazdil0f672f62019-12-10 10:32:29 +00003354 /* we should update superblock crc here */
3355 if (!recover && f2fs_sb_has_sb_chksum(sbi)) {
3356 crc = f2fs_crc32(sbi, F2FS_RAW_SUPER(sbi),
3357 offsetof(struct f2fs_super_block, crc));
3358 F2FS_RAW_SUPER(sbi)->crc = cpu_to_le32(crc);
3359 }
3360
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003361 /* write back-up superblock first */
3362 bh = sb_bread(sbi->sb, sbi->valid_super_block ? 0 : 1);
3363 if (!bh)
3364 return -EIO;
3365 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
3366 brelse(bh);
3367
3368 /* if we are in recovery path, skip writing valid superblock */
3369 if (recover || err)
3370 return err;
3371
3372 /* write current valid superblock */
3373 bh = sb_bread(sbi->sb, sbi->valid_super_block);
3374 if (!bh)
3375 return -EIO;
3376 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
3377 brelse(bh);
3378 return err;
3379}
3380
3381static int f2fs_scan_devices(struct f2fs_sb_info *sbi)
3382{
3383 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
3384 unsigned int max_devices = MAX_DEVICES;
3385 int i;
3386
3387 /* Initialize single device information */
3388 if (!RDEV(0).path[0]) {
3389 if (!bdev_is_zoned(sbi->sb->s_bdev))
3390 return 0;
3391 max_devices = 1;
3392 }
3393
3394 /*
3395 * Initialize multiple devices information, or single
3396 * zoned block device information.
3397 */
3398 sbi->devs = f2fs_kzalloc(sbi,
3399 array_size(max_devices,
3400 sizeof(struct f2fs_dev_info)),
3401 GFP_KERNEL);
3402 if (!sbi->devs)
3403 return -ENOMEM;
3404
3405 for (i = 0; i < max_devices; i++) {
3406
3407 if (i > 0 && !RDEV(i).path[0])
3408 break;
3409
3410 if (max_devices == 1) {
3411 /* Single zoned block device mount */
3412 FDEV(0).bdev =
3413 blkdev_get_by_dev(sbi->sb->s_bdev->bd_dev,
3414 sbi->sb->s_mode, sbi->sb->s_type);
3415 } else {
3416 /* Multi-device mount */
3417 memcpy(FDEV(i).path, RDEV(i).path, MAX_PATH_LEN);
3418 FDEV(i).total_segments =
3419 le32_to_cpu(RDEV(i).total_segments);
3420 if (i == 0) {
3421 FDEV(i).start_blk = 0;
3422 FDEV(i).end_blk = FDEV(i).start_blk +
3423 (FDEV(i).total_segments <<
3424 sbi->log_blocks_per_seg) - 1 +
3425 le32_to_cpu(raw_super->segment0_blkaddr);
3426 } else {
3427 FDEV(i).start_blk = FDEV(i - 1).end_blk + 1;
3428 FDEV(i).end_blk = FDEV(i).start_blk +
3429 (FDEV(i).total_segments <<
3430 sbi->log_blocks_per_seg) - 1;
3431 }
3432 FDEV(i).bdev = blkdev_get_by_path(FDEV(i).path,
3433 sbi->sb->s_mode, sbi->sb->s_type);
3434 }
3435 if (IS_ERR(FDEV(i).bdev))
3436 return PTR_ERR(FDEV(i).bdev);
3437
3438 /* to release errored devices */
3439 sbi->s_ndevs = i + 1;
3440
3441#ifdef CONFIG_BLK_DEV_ZONED
3442 if (bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HM &&
David Brazdil0f672f62019-12-10 10:32:29 +00003443 !f2fs_sb_has_blkzoned(sbi)) {
3444 f2fs_err(sbi, "Zoned block device feature not enabled\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003445 return -EINVAL;
3446 }
3447 if (bdev_zoned_model(FDEV(i).bdev) != BLK_ZONED_NONE) {
3448 if (init_blkz_info(sbi, i)) {
David Brazdil0f672f62019-12-10 10:32:29 +00003449 f2fs_err(sbi, "Failed to initialize F2FS blkzone information");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003450 return -EINVAL;
3451 }
3452 if (max_devices == 1)
3453 break;
David Brazdil0f672f62019-12-10 10:32:29 +00003454 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x (zone: %s)",
3455 i, FDEV(i).path,
3456 FDEV(i).total_segments,
3457 FDEV(i).start_blk, FDEV(i).end_blk,
3458 bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HA ?
3459 "Host-aware" : "Host-managed");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003460 continue;
3461 }
3462#endif
David Brazdil0f672f62019-12-10 10:32:29 +00003463 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x",
3464 i, FDEV(i).path,
3465 FDEV(i).total_segments,
3466 FDEV(i).start_blk, FDEV(i).end_blk);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003467 }
David Brazdil0f672f62019-12-10 10:32:29 +00003468 f2fs_info(sbi,
3469 "IO Block Size: %8d KB", F2FS_IO_SIZE_KB(sbi));
3470 return 0;
3471}
3472
3473static int f2fs_setup_casefold(struct f2fs_sb_info *sbi)
3474{
3475#ifdef CONFIG_UNICODE
Olivier Deprez157378f2022-04-04 15:47:50 +02003476 if (f2fs_sb_has_casefold(sbi) && !sbi->sb->s_encoding) {
David Brazdil0f672f62019-12-10 10:32:29 +00003477 const struct f2fs_sb_encodings *encoding_info;
3478 struct unicode_map *encoding;
3479 __u16 encoding_flags;
3480
3481 if (f2fs_sb_has_encrypt(sbi)) {
3482 f2fs_err(sbi,
3483 "Can't mount with encoding and encryption");
3484 return -EINVAL;
3485 }
3486
3487 if (f2fs_sb_read_encoding(sbi->raw_super, &encoding_info,
3488 &encoding_flags)) {
3489 f2fs_err(sbi,
3490 "Encoding requested by superblock is unknown");
3491 return -EINVAL;
3492 }
3493
3494 encoding = utf8_load(encoding_info->version);
3495 if (IS_ERR(encoding)) {
3496 f2fs_err(sbi,
3497 "can't mount with superblock charset: %s-%s "
3498 "not supported by the kernel. flags: 0x%x.",
3499 encoding_info->name, encoding_info->version,
3500 encoding_flags);
3501 return PTR_ERR(encoding);
3502 }
3503 f2fs_info(sbi, "Using encoding defined by superblock: "
3504 "%s-%s with flags 0x%hx", encoding_info->name,
3505 encoding_info->version?:"\b", encoding_flags);
3506
Olivier Deprez157378f2022-04-04 15:47:50 +02003507 sbi->sb->s_encoding = encoding;
3508 sbi->sb->s_encoding_flags = encoding_flags;
David Brazdil0f672f62019-12-10 10:32:29 +00003509 sbi->sb->s_d_op = &f2fs_dentry_ops;
3510 }
3511#else
3512 if (f2fs_sb_has_casefold(sbi)) {
3513 f2fs_err(sbi, "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
3514 return -EINVAL;
3515 }
3516#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003517 return 0;
3518}
3519
3520static void f2fs_tuning_parameters(struct f2fs_sb_info *sbi)
3521{
3522 struct f2fs_sm_info *sm_i = SM_I(sbi);
3523
3524 /* adjust parameters according to the volume size */
3525 if (sm_i->main_segments <= SMALL_VOLUME_SEGMENTS) {
3526 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
3527 sm_i->dcc_info->discard_granularity = 1;
3528 sm_i->ipu_policy = 1 << F2FS_IPU_FORCE;
3529 }
3530
3531 sbi->readdir_ra = 1;
3532}
3533
3534static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
3535{
3536 struct f2fs_sb_info *sbi;
3537 struct f2fs_super_block *raw_super;
3538 struct inode *root;
3539 int err;
David Brazdil0f672f62019-12-10 10:32:29 +00003540 bool skip_recovery = false, need_fsck = false;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003541 char *options = NULL;
3542 int recovery, i, valid_super_block;
3543 struct curseg_info *seg_i;
David Brazdil0f672f62019-12-10 10:32:29 +00003544 int retry_cnt = 1;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003545
3546try_onemore:
3547 err = -EINVAL;
3548 raw_super = NULL;
3549 valid_super_block = -1;
3550 recovery = 0;
3551
3552 /* allocate memory for f2fs-specific super block info */
3553 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
3554 if (!sbi)
3555 return -ENOMEM;
3556
3557 sbi->sb = sb;
3558
3559 /* Load the checksum driver */
3560 sbi->s_chksum_driver = crypto_alloc_shash("crc32", 0, 0);
3561 if (IS_ERR(sbi->s_chksum_driver)) {
David Brazdil0f672f62019-12-10 10:32:29 +00003562 f2fs_err(sbi, "Cannot load crc32 driver.");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003563 err = PTR_ERR(sbi->s_chksum_driver);
3564 sbi->s_chksum_driver = NULL;
3565 goto free_sbi;
3566 }
3567
3568 /* set a block size */
3569 if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
David Brazdil0f672f62019-12-10 10:32:29 +00003570 f2fs_err(sbi, "unable to set blocksize");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003571 goto free_sbi;
3572 }
3573
3574 err = read_raw_super_block(sbi, &raw_super, &valid_super_block,
3575 &recovery);
3576 if (err)
3577 goto free_sbi;
3578
3579 sb->s_fs_info = sbi;
3580 sbi->raw_super = raw_super;
3581
3582 /* precompute checksum seed for metadata */
David Brazdil0f672f62019-12-10 10:32:29 +00003583 if (f2fs_sb_has_inode_chksum(sbi))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003584 sbi->s_chksum_seed = f2fs_chksum(sbi, ~0, raw_super->uuid,
3585 sizeof(raw_super->uuid));
3586
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003587 default_options(sbi);
3588 /* parse mount options */
3589 options = kstrdup((const char *)data, GFP_KERNEL);
3590 if (data && !options) {
3591 err = -ENOMEM;
3592 goto free_sb_buf;
3593 }
3594
Olivier Deprez157378f2022-04-04 15:47:50 +02003595 err = parse_options(sb, options, false);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003596 if (err)
3597 goto free_options;
3598
3599 sbi->max_file_blocks = max_file_blocks();
3600 sb->s_maxbytes = sbi->max_file_blocks <<
3601 le32_to_cpu(raw_super->log_blocksize);
3602 sb->s_max_links = F2FS_LINK_MAX;
David Brazdil0f672f62019-12-10 10:32:29 +00003603
3604 err = f2fs_setup_casefold(sbi);
3605 if (err)
3606 goto free_options;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003607
3608#ifdef CONFIG_QUOTA
3609 sb->dq_op = &f2fs_quota_operations;
David Brazdil0f672f62019-12-10 10:32:29 +00003610 sb->s_qcop = &f2fs_quotactl_ops;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003611 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
3612
David Brazdil0f672f62019-12-10 10:32:29 +00003613 if (f2fs_sb_has_quota_ino(sbi)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003614 for (i = 0; i < MAXQUOTAS; i++) {
3615 if (f2fs_qf_ino(sbi->sb, i))
3616 sbi->nquota_files++;
3617 }
3618 }
3619#endif
3620
3621 sb->s_op = &f2fs_sops;
David Brazdil0f672f62019-12-10 10:32:29 +00003622#ifdef CONFIG_FS_ENCRYPTION
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003623 sb->s_cop = &f2fs_cryptops;
3624#endif
David Brazdil0f672f62019-12-10 10:32:29 +00003625#ifdef CONFIG_FS_VERITY
3626 sb->s_vop = &f2fs_verityops;
3627#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003628 sb->s_xattr = f2fs_xattr_handlers;
3629 sb->s_export_op = &f2fs_export_ops;
3630 sb->s_magic = F2FS_SUPER_MAGIC;
3631 sb->s_time_gran = 1;
3632 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
3633 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
3634 memcpy(&sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
3635 sb->s_iflags |= SB_I_CGROUPWB;
3636
3637 /* init f2fs-specific super block info */
3638 sbi->valid_super_block = valid_super_block;
Olivier Deprez157378f2022-04-04 15:47:50 +02003639 init_rwsem(&sbi->gc_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003640 mutex_init(&sbi->writepages);
3641 mutex_init(&sbi->cp_mutex);
3642 init_rwsem(&sbi->node_write);
3643 init_rwsem(&sbi->node_change);
3644
3645 /* disallow all the data/node/meta page writes */
3646 set_sbi_flag(sbi, SBI_POR_DOING);
3647 spin_lock_init(&sbi->stat_lock);
3648
3649 /* init iostat info */
3650 spin_lock_init(&sbi->iostat_lock);
3651 sbi->iostat_enable = false;
Olivier Deprez157378f2022-04-04 15:47:50 +02003652 sbi->iostat_period_ms = DEFAULT_IOSTAT_PERIOD_MS;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003653
3654 for (i = 0; i < NR_PAGE_TYPE; i++) {
3655 int n = (i == META) ? 1: NR_TEMP_TYPE;
3656 int j;
3657
3658 sbi->write_io[i] =
3659 f2fs_kmalloc(sbi,
3660 array_size(n,
3661 sizeof(struct f2fs_bio_info)),
3662 GFP_KERNEL);
3663 if (!sbi->write_io[i]) {
3664 err = -ENOMEM;
David Brazdil0f672f62019-12-10 10:32:29 +00003665 goto free_bio_info;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003666 }
3667
3668 for (j = HOT; j < n; j++) {
3669 init_rwsem(&sbi->write_io[i][j].io_rwsem);
3670 sbi->write_io[i][j].sbi = sbi;
3671 sbi->write_io[i][j].bio = NULL;
3672 spin_lock_init(&sbi->write_io[i][j].io_lock);
3673 INIT_LIST_HEAD(&sbi->write_io[i][j].io_list);
Olivier Deprez157378f2022-04-04 15:47:50 +02003674 INIT_LIST_HEAD(&sbi->write_io[i][j].bio_list);
3675 init_rwsem(&sbi->write_io[i][j].bio_list_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003676 }
3677 }
3678
3679 init_rwsem(&sbi->cp_rwsem);
David Brazdil0f672f62019-12-10 10:32:29 +00003680 init_rwsem(&sbi->quota_sem);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003681 init_waitqueue_head(&sbi->cp_wait);
3682 init_sb_info(sbi);
3683
3684 err = init_percpu_info(sbi);
3685 if (err)
3686 goto free_bio_info;
3687
David Brazdil0f672f62019-12-10 10:32:29 +00003688 if (F2FS_IO_ALIGNED(sbi)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003689 sbi->write_io_dummy =
3690 mempool_create_page_pool(2 * (F2FS_IO_SIZE(sbi) - 1), 0);
3691 if (!sbi->write_io_dummy) {
3692 err = -ENOMEM;
3693 goto free_percpu;
3694 }
3695 }
3696
Olivier Deprez157378f2022-04-04 15:47:50 +02003697 /* init per sbi slab cache */
3698 err = f2fs_init_xattr_caches(sbi);
3699 if (err)
3700 goto free_io_dummy;
3701 err = f2fs_init_page_array_cache(sbi);
3702 if (err)
3703 goto free_xattr_cache;
3704
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003705 /* get an inode for meta space */
3706 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
3707 if (IS_ERR(sbi->meta_inode)) {
David Brazdil0f672f62019-12-10 10:32:29 +00003708 f2fs_err(sbi, "Failed to read F2FS meta data inode");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003709 err = PTR_ERR(sbi->meta_inode);
Olivier Deprez157378f2022-04-04 15:47:50 +02003710 goto free_page_array_cache;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003711 }
3712
3713 err = f2fs_get_valid_checkpoint(sbi);
3714 if (err) {
David Brazdil0f672f62019-12-10 10:32:29 +00003715 f2fs_err(sbi, "Failed to get valid F2FS checkpoint");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003716 goto free_meta_inode;
3717 }
3718
David Brazdil0f672f62019-12-10 10:32:29 +00003719 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_QUOTA_NEED_FSCK_FLAG))
3720 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
3721 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_DISABLED_QUICK_FLAG)) {
3722 set_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
3723 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_QUICK_INTERVAL;
3724 }
3725
3726 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_FSCK_FLAG))
3727 set_sbi_flag(sbi, SBI_NEED_FSCK);
3728
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003729 /* Initialize device list */
3730 err = f2fs_scan_devices(sbi);
3731 if (err) {
David Brazdil0f672f62019-12-10 10:32:29 +00003732 f2fs_err(sbi, "Failed to find devices");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003733 goto free_devices;
3734 }
3735
Olivier Deprez157378f2022-04-04 15:47:50 +02003736 err = f2fs_init_post_read_wq(sbi);
3737 if (err) {
3738 f2fs_err(sbi, "Failed to initialize post read workqueue");
3739 goto free_devices;
3740 }
3741
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003742 sbi->total_valid_node_count =
3743 le32_to_cpu(sbi->ckpt->valid_node_count);
3744 percpu_counter_set(&sbi->total_valid_inode_count,
3745 le32_to_cpu(sbi->ckpt->valid_inode_count));
3746 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
3747 sbi->total_valid_block_count =
3748 le64_to_cpu(sbi->ckpt->valid_block_count);
3749 sbi->last_valid_block_count = sbi->total_valid_block_count;
3750 sbi->reserved_blocks = 0;
3751 sbi->current_reserved_blocks = 0;
3752 limit_reserve_root(sbi);
Olivier Deprez0e641232021-09-23 10:07:05 +02003753 adjust_unusable_cap_perc(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003754
3755 for (i = 0; i < NR_INODE_TYPE; i++) {
3756 INIT_LIST_HEAD(&sbi->inode_list[i]);
3757 spin_lock_init(&sbi->inode_lock[i]);
3758 }
David Brazdil0f672f62019-12-10 10:32:29 +00003759 mutex_init(&sbi->flush_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003760
3761 f2fs_init_extent_cache_info(sbi);
3762
3763 f2fs_init_ino_entry_info(sbi);
3764
3765 f2fs_init_fsync_node_info(sbi);
3766
3767 /* setup f2fs internal modules */
3768 err = f2fs_build_segment_manager(sbi);
3769 if (err) {
David Brazdil0f672f62019-12-10 10:32:29 +00003770 f2fs_err(sbi, "Failed to initialize F2FS segment manager (%d)",
3771 err);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003772 goto free_sm;
3773 }
3774 err = f2fs_build_node_manager(sbi);
3775 if (err) {
David Brazdil0f672f62019-12-10 10:32:29 +00003776 f2fs_err(sbi, "Failed to initialize F2FS node manager (%d)",
3777 err);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003778 goto free_nm;
3779 }
3780
Olivier Deprez157378f2022-04-04 15:47:50 +02003781 err = adjust_reserved_segment(sbi);
3782 if (err)
3783 goto free_nm;
3784
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003785 /* For write statistics */
3786 if (sb->s_bdev->bd_part)
3787 sbi->sectors_written_start =
3788 (u64)part_stat_read(sb->s_bdev->bd_part,
3789 sectors[STAT_WRITE]);
3790
3791 /* Read accumulated write IO statistics if exists */
3792 seg_i = CURSEG_I(sbi, CURSEG_HOT_NODE);
3793 if (__exist_node_summaries(sbi))
3794 sbi->kbytes_written =
3795 le64_to_cpu(seg_i->journal->info.kbytes_written);
3796
3797 f2fs_build_gc_manager(sbi);
3798
David Brazdil0f672f62019-12-10 10:32:29 +00003799 err = f2fs_build_stats(sbi);
3800 if (err)
3801 goto free_nm;
3802
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003803 /* get an inode for node space */
3804 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
3805 if (IS_ERR(sbi->node_inode)) {
David Brazdil0f672f62019-12-10 10:32:29 +00003806 f2fs_err(sbi, "Failed to read node inode");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003807 err = PTR_ERR(sbi->node_inode);
David Brazdil0f672f62019-12-10 10:32:29 +00003808 goto free_stats;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003809 }
3810
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003811 /* read root inode and dentry */
3812 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
3813 if (IS_ERR(root)) {
David Brazdil0f672f62019-12-10 10:32:29 +00003814 f2fs_err(sbi, "Failed to read root inode");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003815 err = PTR_ERR(root);
David Brazdil0f672f62019-12-10 10:32:29 +00003816 goto free_node_inode;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003817 }
3818 if (!S_ISDIR(root->i_mode) || !root->i_blocks ||
3819 !root->i_size || !root->i_nlink) {
3820 iput(root);
3821 err = -EINVAL;
David Brazdil0f672f62019-12-10 10:32:29 +00003822 goto free_node_inode;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003823 }
3824
3825 sb->s_root = d_make_root(root); /* allocate root dentry */
3826 if (!sb->s_root) {
3827 err = -ENOMEM;
David Brazdil0f672f62019-12-10 10:32:29 +00003828 goto free_node_inode;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003829 }
3830
3831 err = f2fs_register_sysfs(sbi);
3832 if (err)
3833 goto free_root_inode;
3834
3835#ifdef CONFIG_QUOTA
3836 /* Enable quota usage during mount */
David Brazdil0f672f62019-12-10 10:32:29 +00003837 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003838 err = f2fs_enable_quotas(sb);
David Brazdil0f672f62019-12-10 10:32:29 +00003839 if (err)
3840 f2fs_err(sbi, "Cannot turn on quotas: error %d", err);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003841 }
3842#endif
Olivier Deprez157378f2022-04-04 15:47:50 +02003843 /* if there are any orphan inodes, free them */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003844 err = f2fs_recover_orphan_inodes(sbi);
3845 if (err)
3846 goto free_meta;
3847
David Brazdil0f672f62019-12-10 10:32:29 +00003848 if (unlikely(is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)))
3849 goto reset_checkpoint;
3850
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003851 /* recover fsynced data */
Olivier Deprez0e641232021-09-23 10:07:05 +02003852 if (!test_opt(sbi, DISABLE_ROLL_FORWARD) &&
3853 !test_opt(sbi, NORECOVERY)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003854 /*
3855 * mount should be failed, when device has readonly mode, and
3856 * previous checkpoint was not done by clean system shutdown.
3857 */
David Brazdil0f672f62019-12-10 10:32:29 +00003858 if (f2fs_hw_is_readonly(sbi)) {
3859 if (!is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
3860 err = -EROFS;
3861 f2fs_err(sbi, "Need to recover fsync data, but write access unavailable");
3862 goto free_meta;
3863 }
3864 f2fs_info(sbi, "write access unavailable, skipping recovery");
3865 goto reset_checkpoint;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003866 }
3867
3868 if (need_fsck)
3869 set_sbi_flag(sbi, SBI_NEED_FSCK);
3870
David Brazdil0f672f62019-12-10 10:32:29 +00003871 if (skip_recovery)
3872 goto reset_checkpoint;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003873
3874 err = f2fs_recover_fsync_data(sbi, false);
3875 if (err < 0) {
David Brazdil0f672f62019-12-10 10:32:29 +00003876 if (err != -ENOMEM)
3877 skip_recovery = true;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003878 need_fsck = true;
David Brazdil0f672f62019-12-10 10:32:29 +00003879 f2fs_err(sbi, "Cannot recover all fsync data errno=%d",
3880 err);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003881 goto free_meta;
3882 }
3883 } else {
3884 err = f2fs_recover_fsync_data(sbi, true);
3885
3886 if (!f2fs_readonly(sb) && err > 0) {
3887 err = -EINVAL;
David Brazdil0f672f62019-12-10 10:32:29 +00003888 f2fs_err(sbi, "Need to recover fsync data");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003889 goto free_meta;
3890 }
3891 }
Olivier Deprez157378f2022-04-04 15:47:50 +02003892
3893 /*
3894 * If the f2fs is not readonly and fsync data recovery succeeds,
3895 * check zoned block devices' write pointer consistency.
3896 */
3897 if (!err && !f2fs_readonly(sb) && f2fs_sb_has_blkzoned(sbi)) {
3898 err = f2fs_check_write_pointer(sbi);
3899 if (err)
3900 goto free_meta;
3901 }
3902
David Brazdil0f672f62019-12-10 10:32:29 +00003903reset_checkpoint:
Olivier Deprez157378f2022-04-04 15:47:50 +02003904 f2fs_init_inmem_curseg(sbi);
3905
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003906 /* f2fs_recover_fsync_data() cleared this already */
3907 clear_sbi_flag(sbi, SBI_POR_DOING);
3908
David Brazdil0f672f62019-12-10 10:32:29 +00003909 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
3910 err = f2fs_disable_checkpoint(sbi);
3911 if (err)
3912 goto sync_free_meta;
3913 } else if (is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)) {
3914 f2fs_enable_checkpoint(sbi);
3915 }
3916
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003917 /*
3918 * If filesystem is not mounted as read-only then
3919 * do start the gc_thread.
3920 */
Olivier Deprez157378f2022-04-04 15:47:50 +02003921 if (F2FS_OPTION(sbi).bggc_mode != BGGC_MODE_OFF && !f2fs_readonly(sb)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003922 /* After POR, we can run background GC thread.*/
3923 err = f2fs_start_gc_thread(sbi);
3924 if (err)
David Brazdil0f672f62019-12-10 10:32:29 +00003925 goto sync_free_meta;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003926 }
David Brazdil0f672f62019-12-10 10:32:29 +00003927 kvfree(options);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003928
3929 /* recover broken superblock */
3930 if (recovery) {
3931 err = f2fs_commit_super(sbi, true);
David Brazdil0f672f62019-12-10 10:32:29 +00003932 f2fs_info(sbi, "Try to recover %dth superblock, ret: %d",
3933 sbi->valid_super_block ? 1 : 2, err);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003934 }
3935
3936 f2fs_join_shrinker(sbi);
3937
3938 f2fs_tuning_parameters(sbi);
3939
David Brazdil0f672f62019-12-10 10:32:29 +00003940 f2fs_notice(sbi, "Mounted with checkpoint version = %llx",
3941 cur_cp_version(F2FS_CKPT(sbi)));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003942 f2fs_update_time(sbi, CP_TIME);
3943 f2fs_update_time(sbi, REQ_TIME);
David Brazdil0f672f62019-12-10 10:32:29 +00003944 clear_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003945 return 0;
3946
David Brazdil0f672f62019-12-10 10:32:29 +00003947sync_free_meta:
3948 /* safe to flush all the data */
3949 sync_filesystem(sbi->sb);
3950 retry_cnt = 0;
3951
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003952free_meta:
3953#ifdef CONFIG_QUOTA
David Brazdil0f672f62019-12-10 10:32:29 +00003954 f2fs_truncate_quota_inode_pages(sb);
3955 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003956 f2fs_quota_off_umount(sbi->sb);
3957#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003958 /*
3959 * Some dirty meta pages can be produced by f2fs_recover_orphan_inodes()
3960 * failed by EIO. Then, iput(node_inode) can trigger balance_fs_bg()
3961 * followed by f2fs_write_checkpoint() through f2fs_write_node_pages(), which
3962 * falls into an infinite loop in f2fs_sync_meta_pages().
3963 */
3964 truncate_inode_pages_final(META_MAPPING(sbi));
David Brazdil0f672f62019-12-10 10:32:29 +00003965 /* evict some inodes being cached by GC */
3966 evict_inodes(sb);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003967 f2fs_unregister_sysfs(sbi);
3968free_root_inode:
3969 dput(sb->s_root);
3970 sb->s_root = NULL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003971free_node_inode:
3972 f2fs_release_ino_entry(sbi, true);
3973 truncate_inode_pages_final(NODE_MAPPING(sbi));
3974 iput(sbi->node_inode);
David Brazdil0f672f62019-12-10 10:32:29 +00003975 sbi->node_inode = NULL;
3976free_stats:
3977 f2fs_destroy_stats(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003978free_nm:
3979 f2fs_destroy_node_manager(sbi);
3980free_sm:
3981 f2fs_destroy_segment_manager(sbi);
Olivier Deprez157378f2022-04-04 15:47:50 +02003982 f2fs_destroy_post_read_wq(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003983free_devices:
3984 destroy_device_list(sbi);
David Brazdil0f672f62019-12-10 10:32:29 +00003985 kvfree(sbi->ckpt);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003986free_meta_inode:
3987 make_bad_inode(sbi->meta_inode);
3988 iput(sbi->meta_inode);
David Brazdil0f672f62019-12-10 10:32:29 +00003989 sbi->meta_inode = NULL;
Olivier Deprez157378f2022-04-04 15:47:50 +02003990free_page_array_cache:
3991 f2fs_destroy_page_array_cache(sbi);
3992free_xattr_cache:
3993 f2fs_destroy_xattr_caches(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003994free_io_dummy:
3995 mempool_destroy(sbi->write_io_dummy);
3996free_percpu:
3997 destroy_percpu_info(sbi);
3998free_bio_info:
3999 for (i = 0; i < NR_PAGE_TYPE; i++)
David Brazdil0f672f62019-12-10 10:32:29 +00004000 kvfree(sbi->write_io[i]);
4001
4002#ifdef CONFIG_UNICODE
Olivier Deprez157378f2022-04-04 15:47:50 +02004003 utf8_unload(sb->s_encoding);
4004 sb->s_encoding = NULL;
David Brazdil0f672f62019-12-10 10:32:29 +00004005#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004006free_options:
4007#ifdef CONFIG_QUOTA
4008 for (i = 0; i < MAXQUOTAS; i++)
Olivier Deprez157378f2022-04-04 15:47:50 +02004009 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004010#endif
Olivier Deprez157378f2022-04-04 15:47:50 +02004011 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
David Brazdil0f672f62019-12-10 10:32:29 +00004012 kvfree(options);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004013free_sb_buf:
Olivier Deprez157378f2022-04-04 15:47:50 +02004014 kfree(raw_super);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004015free_sbi:
4016 if (sbi->s_chksum_driver)
4017 crypto_free_shash(sbi->s_chksum_driver);
Olivier Deprez157378f2022-04-04 15:47:50 +02004018 kfree(sbi);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004019
4020 /* give only one another chance */
David Brazdil0f672f62019-12-10 10:32:29 +00004021 if (retry_cnt > 0 && skip_recovery) {
4022 retry_cnt--;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004023 shrink_dcache_sb(sb);
4024 goto try_onemore;
4025 }
4026 return err;
4027}
4028
4029static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
4030 const char *dev_name, void *data)
4031{
4032 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
4033}
4034
4035static void kill_f2fs_super(struct super_block *sb)
4036{
4037 if (sb->s_root) {
4038 struct f2fs_sb_info *sbi = F2FS_SB(sb);
4039
4040 set_sbi_flag(sbi, SBI_IS_CLOSE);
4041 f2fs_stop_gc_thread(sbi);
4042 f2fs_stop_discard_thread(sbi);
4043
4044 if (is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
4045 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
4046 struct cp_control cpc = {
4047 .reason = CP_UMOUNT,
4048 };
4049 f2fs_write_checkpoint(sbi, &cpc);
4050 }
4051
4052 if (is_sbi_flag_set(sbi, SBI_IS_RECOVERED) && f2fs_readonly(sb))
4053 sb->s_flags &= ~SB_RDONLY;
4054 }
4055 kill_block_super(sb);
4056}
4057
4058static struct file_system_type f2fs_fs_type = {
4059 .owner = THIS_MODULE,
4060 .name = "f2fs",
4061 .mount = f2fs_mount,
4062 .kill_sb = kill_f2fs_super,
4063 .fs_flags = FS_REQUIRES_DEV,
4064};
4065MODULE_ALIAS_FS("f2fs");
4066
4067static int __init init_inodecache(void)
4068{
4069 f2fs_inode_cachep = kmem_cache_create("f2fs_inode_cache",
4070 sizeof(struct f2fs_inode_info), 0,
4071 SLAB_RECLAIM_ACCOUNT|SLAB_ACCOUNT, NULL);
4072 if (!f2fs_inode_cachep)
4073 return -ENOMEM;
4074 return 0;
4075}
4076
4077static void destroy_inodecache(void)
4078{
4079 /*
4080 * Make sure all delayed rcu free inodes are flushed before we
4081 * destroy cache.
4082 */
4083 rcu_barrier();
4084 kmem_cache_destroy(f2fs_inode_cachep);
4085}
4086
4087static int __init init_f2fs_fs(void)
4088{
4089 int err;
4090
4091 if (PAGE_SIZE != F2FS_BLKSIZE) {
4092 printk("F2FS not supported on PAGE_SIZE(%lu) != %d\n",
4093 PAGE_SIZE, F2FS_BLKSIZE);
4094 return -EINVAL;
4095 }
4096
4097 f2fs_build_trace_ios();
4098
4099 err = init_inodecache();
4100 if (err)
4101 goto fail;
4102 err = f2fs_create_node_manager_caches();
4103 if (err)
4104 goto free_inodecache;
4105 err = f2fs_create_segment_manager_caches();
4106 if (err)
4107 goto free_node_manager_caches;
4108 err = f2fs_create_checkpoint_caches();
4109 if (err)
4110 goto free_segment_manager_caches;
Olivier Deprez157378f2022-04-04 15:47:50 +02004111 err = f2fs_create_recovery_cache();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004112 if (err)
4113 goto free_checkpoint_caches;
Olivier Deprez157378f2022-04-04 15:47:50 +02004114 err = f2fs_create_extent_cache();
4115 if (err)
4116 goto free_recovery_cache;
4117 err = f2fs_create_garbage_collection_cache();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004118 if (err)
4119 goto free_extent_cache;
Olivier Deprez157378f2022-04-04 15:47:50 +02004120 err = f2fs_init_sysfs();
4121 if (err)
4122 goto free_garbage_collection_cache;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004123 err = register_shrinker(&f2fs_shrinker_info);
4124 if (err)
4125 goto free_sysfs;
4126 err = register_filesystem(&f2fs_fs_type);
4127 if (err)
4128 goto free_shrinker;
David Brazdil0f672f62019-12-10 10:32:29 +00004129 f2fs_create_root_stats();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004130 err = f2fs_init_post_read_processing();
4131 if (err)
4132 goto free_root_stats;
Olivier Deprez157378f2022-04-04 15:47:50 +02004133 err = f2fs_init_bio_entry_cache();
4134 if (err)
4135 goto free_post_read;
4136 err = f2fs_init_bioset();
4137 if (err)
4138 goto free_bio_enrty_cache;
4139 err = f2fs_init_compress_mempool();
4140 if (err)
4141 goto free_bioset;
4142 err = f2fs_init_compress_cache();
4143 if (err)
4144 goto free_compress_mempool;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004145 return 0;
Olivier Deprez157378f2022-04-04 15:47:50 +02004146free_compress_mempool:
4147 f2fs_destroy_compress_mempool();
4148free_bioset:
4149 f2fs_destroy_bioset();
4150free_bio_enrty_cache:
4151 f2fs_destroy_bio_entry_cache();
4152free_post_read:
4153 f2fs_destroy_post_read_processing();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004154free_root_stats:
4155 f2fs_destroy_root_stats();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004156 unregister_filesystem(&f2fs_fs_type);
4157free_shrinker:
4158 unregister_shrinker(&f2fs_shrinker_info);
4159free_sysfs:
4160 f2fs_exit_sysfs();
Olivier Deprez157378f2022-04-04 15:47:50 +02004161free_garbage_collection_cache:
4162 f2fs_destroy_garbage_collection_cache();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004163free_extent_cache:
4164 f2fs_destroy_extent_cache();
Olivier Deprez157378f2022-04-04 15:47:50 +02004165free_recovery_cache:
4166 f2fs_destroy_recovery_cache();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004167free_checkpoint_caches:
4168 f2fs_destroy_checkpoint_caches();
4169free_segment_manager_caches:
4170 f2fs_destroy_segment_manager_caches();
4171free_node_manager_caches:
4172 f2fs_destroy_node_manager_caches();
4173free_inodecache:
4174 destroy_inodecache();
4175fail:
4176 return err;
4177}
4178
4179static void __exit exit_f2fs_fs(void)
4180{
Olivier Deprez157378f2022-04-04 15:47:50 +02004181 f2fs_destroy_compress_cache();
4182 f2fs_destroy_compress_mempool();
4183 f2fs_destroy_bioset();
4184 f2fs_destroy_bio_entry_cache();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004185 f2fs_destroy_post_read_processing();
4186 f2fs_destroy_root_stats();
4187 unregister_filesystem(&f2fs_fs_type);
4188 unregister_shrinker(&f2fs_shrinker_info);
4189 f2fs_exit_sysfs();
Olivier Deprez157378f2022-04-04 15:47:50 +02004190 f2fs_destroy_garbage_collection_cache();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004191 f2fs_destroy_extent_cache();
Olivier Deprez157378f2022-04-04 15:47:50 +02004192 f2fs_destroy_recovery_cache();
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004193 f2fs_destroy_checkpoint_caches();
4194 f2fs_destroy_segment_manager_caches();
4195 f2fs_destroy_node_manager_caches();
4196 destroy_inodecache();
4197 f2fs_destroy_trace_ios();
4198}
4199
4200module_init(init_f2fs_fs)
4201module_exit(exit_f2fs_fs)
4202
4203MODULE_AUTHOR("Samsung Electronics's Praesto Team");
4204MODULE_DESCRIPTION("Flash Friendly File System");
4205MODULE_LICENSE("GPL");
Olivier Deprez0e641232021-09-23 10:07:05 +02004206MODULE_SOFTDEP("pre: crc32");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004207