blob: 3bace24f880052eb9980481fb4e9c46837e95756 [file] [log] [blame]
Chao Yu7c1a0002018-09-12 09:16:07 +08001// SPDX-License-Identifier: GPL-2.0
Jaegeuk Kim0a8165d2012-11-29 13:28:09 +09002/*
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003 * fs/f2fs/super.c
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09007 */
8#include <linux/module.h>
9#include <linux/init.h>
10#include <linux/fs.h>
NeilBrown40342472022-01-14 14:07:14 -080011#include <linux/sched/mm.h>
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090012#include <linux/statfs.h>
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090013#include <linux/buffer_head.h>
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090014#include <linux/kthread.h>
15#include <linux/parser.h>
16#include <linux/mount.h>
17#include <linux/seq_file.h>
Jaegeuk Kim5e176d52013-06-28 12:47:01 +090018#include <linux/proc_fs.h>
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090019#include <linux/random.h>
20#include <linux/exportfs.h>
Namjae Jeond3ee4562013-03-17 17:26:14 +090021#include <linux/blkdev.h>
Chao Yu0abd6752017-07-09 00:13:07 +080022#include <linux/quotaops.h>
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090023#include <linux/f2fs_fs.h>
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090024#include <linux/sysfs.h>
Chao Yu4b2414d2017-08-08 10:54:31 +080025#include <linux/quota.h>
Daniel Rosenberg5aba5432019-07-23 16:05:28 -070026#include <linux/unicode.h>
Christoph Hellwigc6a564ff2020-03-25 16:48:42 +010027#include <linux/part_stat.h>
Chao Yu3fde13f2021-01-22 17:46:43 +080028#include <linux/zstd.h>
29#include <linux/lz4.h>
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090030
31#include "f2fs.h"
32#include "node.h"
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +090033#include "segment.h"
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090034#include "xattr.h"
Namjae Jeonb59d0ba2013-08-04 23:09:40 +090035#include "gc.h"
Daeho Jeong52118742021-08-19 20:52:28 -070036#include "iostat.h"
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090037
Namjae Jeona2a4a7e2013-04-20 01:28:40 +090038#define CREATE_TRACE_POINTS
39#include <trace/events/f2fs.h>
40
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090041static struct kmem_cache *f2fs_inode_cachep;
42
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -070043#ifdef CONFIG_F2FS_FAULT_INJECTION
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070044
Alexey Dobriyan19880e62018-11-24 12:06:42 +030045const char *f2fs_fault_name[FAULT_MAX] = {
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070046 [FAULT_KMALLOC] = "kmalloc",
Chao Yu628b3d12017-11-30 19:28:18 +080047 [FAULT_KVMALLOC] = "kvmalloc",
Jaegeuk Kimc41f3cc32016-04-29 16:17:09 -070048 [FAULT_PAGE_ALLOC] = "page alloc",
Chao Yu01eccef2017-10-28 16:52:30 +080049 [FAULT_PAGE_GET] = "page get",
Jaegeuk Kimcb789422016-04-29 16:29:22 -070050 [FAULT_ALLOC_NID] = "alloc nid",
51 [FAULT_ORPHAN] = "orphan",
52 [FAULT_BLOCK] = "no more block",
53 [FAULT_DIR_DEPTH] = "too big dir depth",
Jaegeuk Kim53aa6bb2016-05-25 15:24:18 -070054 [FAULT_EVICT_INODE] = "evict_inode fail",
Jaegeuk Kim14b44d22017-03-09 15:24:24 -080055 [FAULT_TRUNCATE] = "truncate fail",
Chao Yu6f5c2ed2018-09-12 09:22:29 +080056 [FAULT_READ_IO] = "read IO error",
Chao Yu0f348022016-09-26 19:45:55 +080057 [FAULT_CHECKPOINT] = "checkpoint error",
Chao Yub83dcfe2018-08-06 20:30:18 +080058 [FAULT_DISCARD] = "discard error",
Chao Yu6f5c2ed2018-09-12 09:22:29 +080059 [FAULT_WRITE_IO] = "write IO error",
Chao Yu32410572021-08-09 08:24:48 +080060 [FAULT_SLAB_ALLOC] = "slab alloc",
Chao Yu10a26872021-10-28 21:03:05 +080061 [FAULT_DQUOT_INIT] = "dquot initialize",
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070062};
Sheng Yong08796892016-05-16 12:38:50 +080063
Chao Yud4945002018-08-08 17:36:41 +080064void f2fs_build_fault_attr(struct f2fs_sb_info *sbi, unsigned int rate,
65 unsigned int type)
Sheng Yong08796892016-05-16 12:38:50 +080066{
Chao Yu63189b72018-03-08 14:22:56 +080067 struct f2fs_fault_info *ffi = &F2FS_OPTION(sbi).fault_info;
Chao Yu1ecc0c52016-09-23 21:30:09 +080068
Sheng Yong08796892016-05-16 12:38:50 +080069 if (rate) {
Chao Yu1ecc0c52016-09-23 21:30:09 +080070 atomic_set(&ffi->inject_ops, 0);
71 ffi->inject_rate = rate;
Sheng Yong08796892016-05-16 12:38:50 +080072 }
Chao Yud4945002018-08-08 17:36:41 +080073
74 if (type)
75 ffi->inject_type = type;
76
77 if (!rate && !type)
78 memset(ffi, 0, sizeof(struct f2fs_fault_info));
Sheng Yong08796892016-05-16 12:38:50 +080079}
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -070080#endif
81
Jaegeuk Kim2658e502015-06-19 12:01:21 -070082/* f2fs-wide shrinker description */
83static struct shrinker f2fs_shrinker_info = {
84 .scan_objects = f2fs_shrink_scan,
85 .count_objects = f2fs_shrink_count,
86 .seeks = DEFAULT_SEEKS,
87};
88
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090089enum {
Namjae Jeon696c0182013-06-16 09:48:48 +090090 Opt_gc_background,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090091 Opt_disable_roll_forward,
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -080092 Opt_norecovery,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090093 Opt_discard,
Chao Yu64058be2016-07-03 22:05:14 +080094 Opt_nodiscard,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090095 Opt_noheap,
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -040096 Opt_heap,
Kelly Anderson4058c512013-10-07 11:36:20 +090097 Opt_user_xattr,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090098 Opt_nouser_xattr,
Kelly Anderson4058c512013-10-07 11:36:20 +090099 Opt_acl,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900100 Opt_noacl,
101 Opt_active_logs,
102 Opt_disable_ext_identify,
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900103 Opt_inline_xattr,
Chao Yu23cf7212017-02-15 10:34:45 +0800104 Opt_noinline_xattr,
Chao Yu6afc6622017-09-06 21:59:50 +0800105 Opt_inline_xattr_size,
Huajun Li8274de72013-11-10 23:13:17 +0800106 Opt_inline_data,
Chao Yu5efd3c62014-09-24 18:16:13 +0800107 Opt_inline_dentry,
Chao Yu97c17942016-05-09 19:56:34 +0800108 Opt_noinline_dentry,
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900109 Opt_flush_merge,
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700110 Opt_noflush_merge,
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700111 Opt_nobarrier,
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700112 Opt_fastboot,
Chao Yu89672152015-02-05 17:55:51 +0800113 Opt_extent_cache,
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700114 Opt_noextent_cache,
Wanpeng Li75342792015-03-24 10:20:27 +0800115 Opt_noinline_data,
Chao Yu343f40f2015-12-16 13:12:16 +0800116 Opt_data_flush,
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800117 Opt_reserve_root,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800118 Opt_resgid,
119 Opt_resuid,
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700120 Opt_mode,
Jaegeuk Kimec915382016-12-21 17:09:19 -0800121 Opt_io_size_bits,
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700122 Opt_fault_injection,
Chao Yud4945002018-08-08 17:36:41 +0800123 Opt_fault_type,
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700124 Opt_lazytime,
125 Opt_nolazytime,
Chao Yu4b2414d2017-08-08 10:54:31 +0800126 Opt_quota,
127 Opt_noquota,
Chao Yu0abd6752017-07-09 00:13:07 +0800128 Opt_usrquota,
129 Opt_grpquota,
Chao Yu5c571322017-07-26 00:01:41 +0800130 Opt_prjquota,
Chao Yu4b2414d2017-08-08 10:54:31 +0800131 Opt_usrjquota,
132 Opt_grpjquota,
133 Opt_prjjquota,
134 Opt_offusrjquota,
135 Opt_offgrpjquota,
136 Opt_offprjjquota,
137 Opt_jqfmt_vfsold,
138 Opt_jqfmt_vfsv0,
139 Opt_jqfmt_vfsv1,
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900140 Opt_whint,
Jaegeuk Kim07939622018-02-18 08:50:49 -0800141 Opt_alloc,
Junling Zheng93cf93f2018-03-07 12:07:49 +0800142 Opt_fsync,
Sheng Yongff62af22018-03-15 18:51:42 +0800143 Opt_test_dummy_encryption,
Satya Tangirala27aacd22020-07-02 01:56:06 +0000144 Opt_inlinecrypt,
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700145 Opt_checkpoint_disable,
146 Opt_checkpoint_disable_cap,
147 Opt_checkpoint_disable_cap_perc,
148 Opt_checkpoint_enable,
Daeho Jeong261eeb92021-01-19 09:00:42 +0900149 Opt_checkpoint_merge,
150 Opt_nocheckpoint_merge,
Chao Yu4c8ff702019-11-01 18:07:14 +0800151 Opt_compress_algorithm,
152 Opt_compress_log_size,
153 Opt_compress_extension,
Fengnan Chang151b1982021-06-08 19:15:08 +0800154 Opt_nocompress_extension,
Chao Yub28f0472020-11-26 18:32:09 +0800155 Opt_compress_chksum,
Daeho Jeong602a16d2020-12-01 13:08:02 +0900156 Opt_compress_mode,
Chao Yu6ce19af2021-05-20 19:51:50 +0800157 Opt_compress_cache,
Chao Yu093749e2020-08-04 21:14:49 +0800158 Opt_atgc,
Chao Yu5911d2d2021-03-27 17:57:06 +0800159 Opt_gc_merge,
160 Opt_nogc_merge,
Chao Yu4f993262021-08-03 08:15:43 +0800161 Opt_discard_unit,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900162 Opt_err,
163};
164
165static match_table_t f2fs_tokens = {
Namjae Jeon696c0182013-06-16 09:48:48 +0900166 {Opt_gc_background, "background_gc=%s"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900167 {Opt_disable_roll_forward, "disable_roll_forward"},
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800168 {Opt_norecovery, "norecovery"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900169 {Opt_discard, "discard"},
Chao Yu64058be2016-07-03 22:05:14 +0800170 {Opt_nodiscard, "nodiscard"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900171 {Opt_noheap, "no_heap"},
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -0400172 {Opt_heap, "heap"},
Kelly Anderson4058c512013-10-07 11:36:20 +0900173 {Opt_user_xattr, "user_xattr"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900174 {Opt_nouser_xattr, "nouser_xattr"},
Kelly Anderson4058c512013-10-07 11:36:20 +0900175 {Opt_acl, "acl"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900176 {Opt_noacl, "noacl"},
177 {Opt_active_logs, "active_logs=%u"},
178 {Opt_disable_ext_identify, "disable_ext_identify"},
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900179 {Opt_inline_xattr, "inline_xattr"},
Chao Yu23cf7212017-02-15 10:34:45 +0800180 {Opt_noinline_xattr, "noinline_xattr"},
Chao Yu6afc6622017-09-06 21:59:50 +0800181 {Opt_inline_xattr_size, "inline_xattr_size=%u"},
Huajun Li8274de72013-11-10 23:13:17 +0800182 {Opt_inline_data, "inline_data"},
Chao Yu5efd3c62014-09-24 18:16:13 +0800183 {Opt_inline_dentry, "inline_dentry"},
Chao Yu97c17942016-05-09 19:56:34 +0800184 {Opt_noinline_dentry, "noinline_dentry"},
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900185 {Opt_flush_merge, "flush_merge"},
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700186 {Opt_noflush_merge, "noflush_merge"},
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700187 {Opt_nobarrier, "nobarrier"},
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700188 {Opt_fastboot, "fastboot"},
Chao Yu89672152015-02-05 17:55:51 +0800189 {Opt_extent_cache, "extent_cache"},
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700190 {Opt_noextent_cache, "noextent_cache"},
Wanpeng Li75342792015-03-24 10:20:27 +0800191 {Opt_noinline_data, "noinline_data"},
Chao Yu343f40f2015-12-16 13:12:16 +0800192 {Opt_data_flush, "data_flush"},
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800193 {Opt_reserve_root, "reserve_root=%u"},
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800194 {Opt_resgid, "resgid=%u"},
195 {Opt_resuid, "resuid=%u"},
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700196 {Opt_mode, "mode=%s"},
Jaegeuk Kimec915382016-12-21 17:09:19 -0800197 {Opt_io_size_bits, "io_bits=%u"},
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700198 {Opt_fault_injection, "fault_injection=%u"},
Chao Yud4945002018-08-08 17:36:41 +0800199 {Opt_fault_type, "fault_type=%u"},
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700200 {Opt_lazytime, "lazytime"},
201 {Opt_nolazytime, "nolazytime"},
Chao Yu4b2414d2017-08-08 10:54:31 +0800202 {Opt_quota, "quota"},
203 {Opt_noquota, "noquota"},
Chao Yu0abd6752017-07-09 00:13:07 +0800204 {Opt_usrquota, "usrquota"},
205 {Opt_grpquota, "grpquota"},
Chao Yu5c571322017-07-26 00:01:41 +0800206 {Opt_prjquota, "prjquota"},
Chao Yu4b2414d2017-08-08 10:54:31 +0800207 {Opt_usrjquota, "usrjquota=%s"},
208 {Opt_grpjquota, "grpjquota=%s"},
209 {Opt_prjjquota, "prjjquota=%s"},
210 {Opt_offusrjquota, "usrjquota="},
211 {Opt_offgrpjquota, "grpjquota="},
212 {Opt_offprjjquota, "prjjquota="},
213 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
214 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
215 {Opt_jqfmt_vfsv1, "jqfmt=vfsv1"},
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900216 {Opt_whint, "whint_mode=%s"},
Jaegeuk Kim07939622018-02-18 08:50:49 -0800217 {Opt_alloc, "alloc_mode=%s"},
Junling Zheng93cf93f2018-03-07 12:07:49 +0800218 {Opt_fsync, "fsync_mode=%s"},
Eric Biggersed318a62020-05-12 16:32:50 -0700219 {Opt_test_dummy_encryption, "test_dummy_encryption=%s"},
Sheng Yongff62af22018-03-15 18:51:42 +0800220 {Opt_test_dummy_encryption, "test_dummy_encryption"},
Satya Tangirala27aacd22020-07-02 01:56:06 +0000221 {Opt_inlinecrypt, "inlinecrypt"},
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700222 {Opt_checkpoint_disable, "checkpoint=disable"},
223 {Opt_checkpoint_disable_cap, "checkpoint=disable:%u"},
224 {Opt_checkpoint_disable_cap_perc, "checkpoint=disable:%u%%"},
225 {Opt_checkpoint_enable, "checkpoint=enable"},
Daeho Jeong261eeb92021-01-19 09:00:42 +0900226 {Opt_checkpoint_merge, "checkpoint_merge"},
227 {Opt_nocheckpoint_merge, "nocheckpoint_merge"},
Chao Yu4c8ff702019-11-01 18:07:14 +0800228 {Opt_compress_algorithm, "compress_algorithm=%s"},
229 {Opt_compress_log_size, "compress_log_size=%u"},
230 {Opt_compress_extension, "compress_extension=%s"},
Fengnan Chang151b1982021-06-08 19:15:08 +0800231 {Opt_nocompress_extension, "nocompress_extension=%s"},
Chao Yub28f0472020-11-26 18:32:09 +0800232 {Opt_compress_chksum, "compress_chksum"},
Daeho Jeong602a16d2020-12-01 13:08:02 +0900233 {Opt_compress_mode, "compress_mode=%s"},
Chao Yu6ce19af2021-05-20 19:51:50 +0800234 {Opt_compress_cache, "compress_cache"},
Chao Yu093749e2020-08-04 21:14:49 +0800235 {Opt_atgc, "atgc"},
Chao Yu5911d2d2021-03-27 17:57:06 +0800236 {Opt_gc_merge, "gc_merge"},
237 {Opt_nogc_merge, "nogc_merge"},
Chao Yu4f993262021-08-03 08:15:43 +0800238 {Opt_discard_unit, "discard_unit=%s"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900239 {Opt_err, NULL},
240};
241
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800242void f2fs_printk(struct f2fs_sb_info *sbi, const char *fmt, ...)
Namjae Jeona07ef782012-12-30 14:52:05 +0900243{
244 struct va_format vaf;
245 va_list args;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800246 int level;
Namjae Jeona07ef782012-12-30 14:52:05 +0900247
248 va_start(args, fmt);
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800249
250 level = printk_get_level(fmt);
251 vaf.fmt = printk_skip_level(fmt);
Namjae Jeona07ef782012-12-30 14:52:05 +0900252 vaf.va = &args;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800253 printk("%c%cF2FS-fs (%s): %pV\n",
254 KERN_SOH_ASCII, level, sbi->sb->s_id, &vaf);
255
Namjae Jeona07ef782012-12-30 14:52:05 +0900256 va_end(args);
257}
258
Daniel Rosenberg5aba5432019-07-23 16:05:28 -0700259#ifdef CONFIG_UNICODE
260static const struct f2fs_sb_encodings {
261 __u16 magic;
262 char *name;
263 char *version;
264} f2fs_sb_encoding_map[] = {
265 {F2FS_ENC_UTF8_12_1, "utf8", "12.1.0"},
266};
267
268static int f2fs_sb_read_encoding(const struct f2fs_super_block *sb,
269 const struct f2fs_sb_encodings **encoding,
270 __u16 *flags)
271{
272 __u16 magic = le16_to_cpu(sb->s_encoding);
273 int i;
274
275 for (i = 0; i < ARRAY_SIZE(f2fs_sb_encoding_map); i++)
276 if (magic == f2fs_sb_encoding_map[i].magic)
277 break;
278
279 if (i >= ARRAY_SIZE(f2fs_sb_encoding_map))
280 return -EINVAL;
281
282 *encoding = &f2fs_sb_encoding_map[i];
283 *flags = le16_to_cpu(sb->s_encoding_flags);
284
285 return 0;
286}
Chao Yu4d9a2bb2021-06-11 07:46:30 +0800287
288struct kmem_cache *f2fs_cf_name_slab;
289static int __init f2fs_create_casefold_cache(void)
290{
291 f2fs_cf_name_slab = f2fs_kmem_cache_create("f2fs_casefolded_name",
292 F2FS_NAME_LEN);
293 if (!f2fs_cf_name_slab)
294 return -ENOMEM;
295 return 0;
296}
297
298static void f2fs_destroy_casefold_cache(void)
299{
300 kmem_cache_destroy(f2fs_cf_name_slab);
301}
302#else
303static int __init f2fs_create_casefold_cache(void) { return 0; }
304static void f2fs_destroy_casefold_cache(void) { }
Daniel Rosenberg5aba5432019-07-23 16:05:28 -0700305#endif
306
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800307static inline void limit_reserve_root(struct f2fs_sb_info *sbi)
308{
Daniel Rosenberg9a9aeca2019-05-29 17:49:04 -0700309 block_t limit = min((sbi->user_block_count << 1) / 1000,
310 sbi->user_block_count - sbi->reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800311
312 /* limit is 0.2% */
Chao Yu63189b72018-03-08 14:22:56 +0800313 if (test_opt(sbi, RESERVE_ROOT) &&
314 F2FS_OPTION(sbi).root_reserved_blocks > limit) {
315 F2FS_OPTION(sbi).root_reserved_blocks = limit;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800316 f2fs_info(sbi, "Reduce reserved blocks for root = %u",
317 F2FS_OPTION(sbi).root_reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800318 }
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800319 if (!test_opt(sbi, RESERVE_ROOT) &&
Chao Yu63189b72018-03-08 14:22:56 +0800320 (!uid_eq(F2FS_OPTION(sbi).s_resuid,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800321 make_kuid(&init_user_ns, F2FS_DEF_RESUID)) ||
Chao Yu63189b72018-03-08 14:22:56 +0800322 !gid_eq(F2FS_OPTION(sbi).s_resgid,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800323 make_kgid(&init_user_ns, F2FS_DEF_RESGID))))
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800324 f2fs_info(sbi, "Ignore s_resuid=%u, s_resgid=%u w/o reserve_root",
325 from_kuid_munged(&init_user_ns,
326 F2FS_OPTION(sbi).s_resuid),
327 from_kgid_munged(&init_user_ns,
328 F2FS_OPTION(sbi).s_resgid));
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800329}
330
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -0700331static inline void adjust_unusable_cap_perc(struct f2fs_sb_info *sbi)
332{
333 if (!F2FS_OPTION(sbi).unusable_cap_perc)
334 return;
335
336 if (F2FS_OPTION(sbi).unusable_cap_perc == 100)
337 F2FS_OPTION(sbi).unusable_cap = sbi->user_block_count;
338 else
339 F2FS_OPTION(sbi).unusable_cap = (sbi->user_block_count / 100) *
340 F2FS_OPTION(sbi).unusable_cap_perc;
341
342 f2fs_info(sbi, "Adjust unusable cap for checkpoint=disable = %u / %u%%",
343 F2FS_OPTION(sbi).unusable_cap,
344 F2FS_OPTION(sbi).unusable_cap_perc);
345}
346
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900347static void init_once(void *foo)
348{
349 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
350
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900351 inode_init_once(&fi->vfs_inode);
352}
353
Chao Yu4b2414d2017-08-08 10:54:31 +0800354#ifdef CONFIG_QUOTA
355static const char * const quotatypes[] = INITQFNAMES;
356#define QTYPE2NAME(t) (quotatypes[t])
357static int f2fs_set_qf_name(struct super_block *sb, int qtype,
358 substring_t *args)
359{
360 struct f2fs_sb_info *sbi = F2FS_SB(sb);
361 char *qname;
362 int ret = -EINVAL;
363
Chao Yu63189b72018-03-08 14:22:56 +0800364 if (sb_any_quota_loaded(sb) && !F2FS_OPTION(sbi).s_qf_names[qtype]) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800365 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
Chao Yu4b2414d2017-08-08 10:54:31 +0800366 return -EINVAL;
367 }
Chao Yu7beb01f2018-10-24 18:34:26 +0800368 if (f2fs_sb_has_quota_ino(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800369 f2fs_info(sbi, "QUOTA feature is enabled, so ignore qf_name");
Jaegeuk Kimea676732017-10-06 09:14:28 -0700370 return 0;
371 }
372
Chao Yu4b2414d2017-08-08 10:54:31 +0800373 qname = match_strdup(args);
374 if (!qname) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800375 f2fs_err(sbi, "Not enough memory for storing quotafile name");
Chengguang Xuf365c6c2019-01-01 21:33:11 +0800376 return -ENOMEM;
Chao Yu4b2414d2017-08-08 10:54:31 +0800377 }
Chao Yu63189b72018-03-08 14:22:56 +0800378 if (F2FS_OPTION(sbi).s_qf_names[qtype]) {
379 if (strcmp(F2FS_OPTION(sbi).s_qf_names[qtype], qname) == 0)
Chao Yu4b2414d2017-08-08 10:54:31 +0800380 ret = 0;
381 else
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800382 f2fs_err(sbi, "%s quota file already specified",
Chao Yu4b2414d2017-08-08 10:54:31 +0800383 QTYPE2NAME(qtype));
384 goto errout;
385 }
386 if (strchr(qname, '/')) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800387 f2fs_err(sbi, "quotafile must be on filesystem root");
Chao Yu4b2414d2017-08-08 10:54:31 +0800388 goto errout;
389 }
Chao Yu63189b72018-03-08 14:22:56 +0800390 F2FS_OPTION(sbi).s_qf_names[qtype] = qname;
Chao Yu4b2414d2017-08-08 10:54:31 +0800391 set_opt(sbi, QUOTA);
392 return 0;
393errout:
Wang Xiaojunba87a452020-06-17 20:30:12 +0800394 kfree(qname);
Chao Yu4b2414d2017-08-08 10:54:31 +0800395 return ret;
396}
397
398static int f2fs_clear_qf_name(struct super_block *sb, int qtype)
399{
400 struct f2fs_sb_info *sbi = F2FS_SB(sb);
401
Chao Yu63189b72018-03-08 14:22:56 +0800402 if (sb_any_quota_loaded(sb) && F2FS_OPTION(sbi).s_qf_names[qtype]) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800403 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
Chao Yu4b2414d2017-08-08 10:54:31 +0800404 return -EINVAL;
405 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800406 kfree(F2FS_OPTION(sbi).s_qf_names[qtype]);
Chao Yu63189b72018-03-08 14:22:56 +0800407 F2FS_OPTION(sbi).s_qf_names[qtype] = NULL;
Chao Yu4b2414d2017-08-08 10:54:31 +0800408 return 0;
409}
410
411static int f2fs_check_quota_options(struct f2fs_sb_info *sbi)
412{
413 /*
414 * We do the test below only for project quotas. 'usrquota' and
415 * 'grpquota' mount options are allowed even without quota feature
416 * to support legacy quotas in quota files.
417 */
Chao Yu7beb01f2018-10-24 18:34:26 +0800418 if (test_opt(sbi, PRJQUOTA) && !f2fs_sb_has_project_quota(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800419 f2fs_err(sbi, "Project quota feature not enabled. Cannot enable project quota enforcement.");
Chao Yu4b2414d2017-08-08 10:54:31 +0800420 return -1;
421 }
Chao Yu63189b72018-03-08 14:22:56 +0800422 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA] ||
423 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA] ||
424 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]) {
425 if (test_opt(sbi, USRQUOTA) &&
426 F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800427 clear_opt(sbi, USRQUOTA);
428
Chao Yu63189b72018-03-08 14:22:56 +0800429 if (test_opt(sbi, GRPQUOTA) &&
430 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800431 clear_opt(sbi, GRPQUOTA);
432
Chao Yu63189b72018-03-08 14:22:56 +0800433 if (test_opt(sbi, PRJQUOTA) &&
434 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800435 clear_opt(sbi, PRJQUOTA);
436
437 if (test_opt(sbi, GRPQUOTA) || test_opt(sbi, USRQUOTA) ||
438 test_opt(sbi, PRJQUOTA)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800439 f2fs_err(sbi, "old and new quota format mixing");
Chao Yu4b2414d2017-08-08 10:54:31 +0800440 return -1;
441 }
442
Chao Yu63189b72018-03-08 14:22:56 +0800443 if (!F2FS_OPTION(sbi).s_jquota_fmt) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800444 f2fs_err(sbi, "journaled quota format not specified");
Chao Yu4b2414d2017-08-08 10:54:31 +0800445 return -1;
446 }
447 }
Jaegeuk Kimea676732017-10-06 09:14:28 -0700448
Chao Yu7beb01f2018-10-24 18:34:26 +0800449 if (f2fs_sb_has_quota_ino(sbi) && F2FS_OPTION(sbi).s_jquota_fmt) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800450 f2fs_info(sbi, "QUOTA feature is enabled, so ignore jquota_fmt");
Chao Yu63189b72018-03-08 14:22:56 +0800451 F2FS_OPTION(sbi).s_jquota_fmt = 0;
Jaegeuk Kimea676732017-10-06 09:14:28 -0700452 }
Chao Yu4b2414d2017-08-08 10:54:31 +0800453 return 0;
454}
455#endif
456
Eric Biggersed318a62020-05-12 16:32:50 -0700457static int f2fs_set_test_dummy_encryption(struct super_block *sb,
458 const char *opt,
459 const substring_t *arg,
460 bool is_remount)
461{
462 struct f2fs_sb_info *sbi = F2FS_SB(sb);
463#ifdef CONFIG_FS_ENCRYPTION
464 int err;
465
466 if (!f2fs_sb_has_encrypt(sbi)) {
467 f2fs_err(sbi, "Encrypt feature is off");
468 return -EINVAL;
469 }
470
471 /*
472 * This mount option is just for testing, and it's not worthwhile to
473 * implement the extra complexity (e.g. RCU protection) that would be
474 * needed to allow it to be set or changed during remount. We do allow
475 * it to be specified during remount, but only if there is no change.
476 */
Eric Biggersac4acb12020-09-16 21:11:35 -0700477 if (is_remount && !F2FS_OPTION(sbi).dummy_enc_policy.policy) {
Eric Biggersed318a62020-05-12 16:32:50 -0700478 f2fs_warn(sbi, "Can't set test_dummy_encryption on remount");
479 return -EINVAL;
480 }
481 err = fscrypt_set_test_dummy_encryption(
Eric Biggersc8c868a2020-09-16 21:11:36 -0700482 sb, arg->from, &F2FS_OPTION(sbi).dummy_enc_policy);
Eric Biggersed318a62020-05-12 16:32:50 -0700483 if (err) {
484 if (err == -EEXIST)
485 f2fs_warn(sbi,
486 "Can't change test_dummy_encryption on remount");
487 else if (err == -EINVAL)
488 f2fs_warn(sbi, "Value of option \"%s\" is unrecognized",
489 opt);
490 else
491 f2fs_warn(sbi, "Error processing option \"%s\" [%d]",
492 opt, err);
493 return -EINVAL;
494 }
495 f2fs_warn(sbi, "Test dummy encryption mode enabled");
496#else
497 f2fs_warn(sbi, "Test dummy encryption mount option ignored");
498#endif
499 return 0;
500}
501
Chao Yu3fde13f2021-01-22 17:46:43 +0800502#ifdef CONFIG_F2FS_FS_COMPRESSION
Fengnan Chang151b1982021-06-08 19:15:08 +0800503/*
504 * 1. The same extension name cannot not appear in both compress and non-compress extension
505 * at the same time.
506 * 2. If the compress extension specifies all files, the types specified by the non-compress
507 * extension will be treated as special cases and will not be compressed.
508 * 3. Don't allow the non-compress extension specifies all files.
509 */
510static int f2fs_test_compress_extension(struct f2fs_sb_info *sbi)
511{
512 unsigned char (*ext)[F2FS_EXTENSION_LEN];
513 unsigned char (*noext)[F2FS_EXTENSION_LEN];
514 int ext_cnt, noext_cnt, index = 0, no_index = 0;
515
516 ext = F2FS_OPTION(sbi).extensions;
517 ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt;
518 noext = F2FS_OPTION(sbi).noextensions;
519 noext_cnt = F2FS_OPTION(sbi).nocompress_ext_cnt;
520
521 if (!noext_cnt)
522 return 0;
523
524 for (no_index = 0; no_index < noext_cnt; no_index++) {
525 if (!strcasecmp("*", noext[no_index])) {
526 f2fs_info(sbi, "Don't allow the nocompress extension specifies all files");
527 return -EINVAL;
528 }
529 for (index = 0; index < ext_cnt; index++) {
530 if (!strcasecmp(ext[index], noext[no_index])) {
531 f2fs_info(sbi, "Don't allow the same extension %s appear in both compress and nocompress extension",
532 ext[index]);
533 return -EINVAL;
534 }
535 }
536 }
537 return 0;
538}
539
Chao Yu3fde13f2021-01-22 17:46:43 +0800540#ifdef CONFIG_F2FS_FS_LZ4
541static int f2fs_set_lz4hc_level(struct f2fs_sb_info *sbi, const char *str)
542{
543#ifdef CONFIG_F2FS_FS_LZ4HC
544 unsigned int level;
545#endif
546
547 if (strlen(str) == 3) {
548 F2FS_OPTION(sbi).compress_level = 0;
549 return 0;
550 }
551
552#ifdef CONFIG_F2FS_FS_LZ4HC
553 str += 3;
554
555 if (str[0] != ':') {
556 f2fs_info(sbi, "wrong format, e.g. <alg_name>:<compr_level>");
557 return -EINVAL;
558 }
559 if (kstrtouint(str + 1, 10, &level))
560 return -EINVAL;
561
562 if (level < LZ4HC_MIN_CLEVEL || level > LZ4HC_MAX_CLEVEL) {
563 f2fs_info(sbi, "invalid lz4hc compress level: %d", level);
564 return -EINVAL;
565 }
566
567 F2FS_OPTION(sbi).compress_level = level;
568 return 0;
569#else
570 f2fs_info(sbi, "kernel doesn't support lz4hc compression");
571 return -EINVAL;
572#endif
573}
574#endif
575
576#ifdef CONFIG_F2FS_FS_ZSTD
577static int f2fs_set_zstd_level(struct f2fs_sb_info *sbi, const char *str)
578{
579 unsigned int level;
580 int len = 4;
581
582 if (strlen(str) == len) {
583 F2FS_OPTION(sbi).compress_level = 0;
584 return 0;
585 }
586
587 str += len;
588
589 if (str[0] != ':') {
590 f2fs_info(sbi, "wrong format, e.g. <alg_name>:<compr_level>");
591 return -EINVAL;
592 }
593 if (kstrtouint(str + 1, 10, &level))
594 return -EINVAL;
595
Nick Terrellcf30f6a2020-09-11 16:49:00 -0700596 if (!level || level > zstd_max_clevel()) {
Chao Yu3fde13f2021-01-22 17:46:43 +0800597 f2fs_info(sbi, "invalid zstd compress level: %d", level);
598 return -EINVAL;
599 }
600
601 F2FS_OPTION(sbi).compress_level = level;
602 return 0;
603}
604#endif
605#endif
606
Eric Biggersed318a62020-05-12 16:32:50 -0700607static int parse_options(struct super_block *sb, char *options, bool is_remount)
Namjae Jeon696c0182013-06-16 09:48:48 +0900608{
609 struct f2fs_sb_info *sbi = F2FS_SB(sb);
610 substring_t args[MAX_OPT_ARGS];
Chao Yu1f0b0672020-07-29 21:21:36 +0800611#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +0800612 unsigned char (*ext)[F2FS_EXTENSION_LEN];
Fengnan Chang151b1982021-06-08 19:15:08 +0800613 unsigned char (*noext)[F2FS_EXTENSION_LEN];
614 int ext_cnt, noext_cnt;
Chao Yu1f0b0672020-07-29 21:21:36 +0800615#endif
Namjae Jeon696c0182013-06-16 09:48:48 +0900616 char *p, *name;
Chao Yu1f0b0672020-07-29 21:21:36 +0800617 int arg = 0;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800618 kuid_t uid;
619 kgid_t gid;
Chao Yu4b2414d2017-08-08 10:54:31 +0800620 int ret;
Namjae Jeon696c0182013-06-16 09:48:48 +0900621
622 if (!options)
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -0700623 goto default_check;
Namjae Jeon696c0182013-06-16 09:48:48 +0900624
625 while ((p = strsep(&options, ",")) != NULL) {
626 int token;
Yi Zhuang5f029c02021-04-06 09:47:35 +0800627
Namjae Jeon696c0182013-06-16 09:48:48 +0900628 if (!*p)
629 continue;
630 /*
631 * Initialize args struct so we know whether arg was
632 * found; some options take optional arguments.
633 */
634 args[0].to = args[0].from = NULL;
635 token = match_token(p, f2fs_tokens, args);
636
637 switch (token) {
638 case Opt_gc_background:
639 name = match_strdup(&args[0]);
640
641 if (!name)
642 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700643 if (!strcmp(name, "on")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800644 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
Eric Biggers3c57f752020-05-01 16:35:23 -0700645 } else if (!strcmp(name, "off")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800646 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_OFF;
Eric Biggers3c57f752020-05-01 16:35:23 -0700647 } else if (!strcmp(name, "sync")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800648 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_SYNC;
Jaegeuk Kim6aefd932015-10-05 11:02:54 -0700649 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800650 kfree(name);
Namjae Jeon696c0182013-06-16 09:48:48 +0900651 return -EINVAL;
652 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800653 kfree(name);
Namjae Jeon696c0182013-06-16 09:48:48 +0900654 break;
655 case Opt_disable_roll_forward:
656 set_opt(sbi, DISABLE_ROLL_FORWARD);
657 break;
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800658 case Opt_norecovery:
659 /* this option mounts f2fs with ro */
Chao Yua9117ec2020-02-14 17:45:11 +0800660 set_opt(sbi, NORECOVERY);
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800661 if (!f2fs_readonly(sb))
662 return -EINVAL;
663 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900664 case Opt_discard:
Chao Yuf7db8dd2021-08-30 08:35:33 +0800665 if (!f2fs_hw_support_discard(sbi)) {
666 f2fs_warn(sbi, "device does not support discard");
667 break;
668 }
Chao Yu7d20c8a2018-09-04 03:52:17 +0800669 set_opt(sbi, DISCARD);
Namjae Jeon696c0182013-06-16 09:48:48 +0900670 break;
Chao Yu64058be2016-07-03 22:05:14 +0800671 case Opt_nodiscard:
Chao Yuf7db8dd2021-08-30 08:35:33 +0800672 if (f2fs_hw_should_discard(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800673 f2fs_warn(sbi, "discard is required for zoned block devices");
Damien Le Moal96ba2de2016-10-28 17:45:03 +0900674 return -EINVAL;
675 }
Chao Yu64058be2016-07-03 22:05:14 +0800676 clear_opt(sbi, DISCARD);
Damien Le Moal487df612016-10-28 17:44:59 +0900677 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900678 case Opt_noheap:
679 set_opt(sbi, NOHEAP);
680 break;
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -0400681 case Opt_heap:
682 clear_opt(sbi, NOHEAP);
683 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900684#ifdef CONFIG_F2FS_FS_XATTR
Kelly Anderson4058c512013-10-07 11:36:20 +0900685 case Opt_user_xattr:
686 set_opt(sbi, XATTR_USER);
687 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900688 case Opt_nouser_xattr:
689 clear_opt(sbi, XATTR_USER);
690 break;
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900691 case Opt_inline_xattr:
692 set_opt(sbi, INLINE_XATTR);
693 break;
Chao Yu23cf7212017-02-15 10:34:45 +0800694 case Opt_noinline_xattr:
695 clear_opt(sbi, INLINE_XATTR);
696 break;
Chao Yu6afc6622017-09-06 21:59:50 +0800697 case Opt_inline_xattr_size:
698 if (args->from && match_int(args, &arg))
699 return -EINVAL;
700 set_opt(sbi, INLINE_XATTR_SIZE);
Chao Yu63189b72018-03-08 14:22:56 +0800701 F2FS_OPTION(sbi).inline_xattr_size = arg;
Chao Yu6afc6622017-09-06 21:59:50 +0800702 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900703#else
Kelly Anderson4058c512013-10-07 11:36:20 +0900704 case Opt_user_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800705 f2fs_info(sbi, "user_xattr options not supported");
Kelly Anderson4058c512013-10-07 11:36:20 +0900706 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900707 case Opt_nouser_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800708 f2fs_info(sbi, "nouser_xattr options not supported");
Namjae Jeon696c0182013-06-16 09:48:48 +0900709 break;
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900710 case Opt_inline_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800711 f2fs_info(sbi, "inline_xattr options not supported");
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900712 break;
Chao Yu23cf7212017-02-15 10:34:45 +0800713 case Opt_noinline_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800714 f2fs_info(sbi, "noinline_xattr options not supported");
Chao Yu23cf7212017-02-15 10:34:45 +0800715 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900716#endif
717#ifdef CONFIG_F2FS_FS_POSIX_ACL
Kelly Anderson4058c512013-10-07 11:36:20 +0900718 case Opt_acl:
719 set_opt(sbi, POSIX_ACL);
720 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900721 case Opt_noacl:
722 clear_opt(sbi, POSIX_ACL);
723 break;
724#else
Kelly Anderson4058c512013-10-07 11:36:20 +0900725 case Opt_acl:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800726 f2fs_info(sbi, "acl options not supported");
Kelly Anderson4058c512013-10-07 11:36:20 +0900727 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900728 case Opt_noacl:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800729 f2fs_info(sbi, "noacl options not supported");
Namjae Jeon696c0182013-06-16 09:48:48 +0900730 break;
731#endif
732 case Opt_active_logs:
733 if (args->from && match_int(args, &arg))
734 return -EINVAL;
Chao Yud0b9e422020-08-04 21:14:45 +0800735 if (arg != 2 && arg != 4 &&
736 arg != NR_CURSEG_PERSIST_TYPE)
Namjae Jeon696c0182013-06-16 09:48:48 +0900737 return -EINVAL;
Chao Yu63189b72018-03-08 14:22:56 +0800738 F2FS_OPTION(sbi).active_logs = arg;
Namjae Jeon696c0182013-06-16 09:48:48 +0900739 break;
740 case Opt_disable_ext_identify:
741 set_opt(sbi, DISABLE_EXT_IDENTIFY);
742 break;
Huajun Li8274de72013-11-10 23:13:17 +0800743 case Opt_inline_data:
744 set_opt(sbi, INLINE_DATA);
745 break;
Chao Yu5efd3c62014-09-24 18:16:13 +0800746 case Opt_inline_dentry:
747 set_opt(sbi, INLINE_DENTRY);
748 break;
Chao Yu97c17942016-05-09 19:56:34 +0800749 case Opt_noinline_dentry:
750 clear_opt(sbi, INLINE_DENTRY);
751 break;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900752 case Opt_flush_merge:
753 set_opt(sbi, FLUSH_MERGE);
754 break;
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700755 case Opt_noflush_merge:
756 clear_opt(sbi, FLUSH_MERGE);
757 break;
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700758 case Opt_nobarrier:
759 set_opt(sbi, NOBARRIER);
760 break;
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700761 case Opt_fastboot:
762 set_opt(sbi, FASTBOOT);
763 break;
Chao Yu89672152015-02-05 17:55:51 +0800764 case Opt_extent_cache:
765 set_opt(sbi, EXTENT_CACHE);
766 break;
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700767 case Opt_noextent_cache:
768 clear_opt(sbi, EXTENT_CACHE);
769 break;
Wanpeng Li75342792015-03-24 10:20:27 +0800770 case Opt_noinline_data:
771 clear_opt(sbi, INLINE_DATA);
772 break;
Chao Yu343f40f2015-12-16 13:12:16 +0800773 case Opt_data_flush:
774 set_opt(sbi, DATA_FLUSH);
775 break;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800776 case Opt_reserve_root:
777 if (args->from && match_int(args, &arg))
778 return -EINVAL;
779 if (test_opt(sbi, RESERVE_ROOT)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800780 f2fs_info(sbi, "Preserve previous reserve_root=%u",
781 F2FS_OPTION(sbi).root_reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800782 } else {
Chao Yu63189b72018-03-08 14:22:56 +0800783 F2FS_OPTION(sbi).root_reserved_blocks = arg;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800784 set_opt(sbi, RESERVE_ROOT);
785 }
786 break;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800787 case Opt_resuid:
788 if (args->from && match_int(args, &arg))
789 return -EINVAL;
790 uid = make_kuid(current_user_ns(), arg);
791 if (!uid_valid(uid)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800792 f2fs_err(sbi, "Invalid uid value %d", arg);
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800793 return -EINVAL;
794 }
Chao Yu63189b72018-03-08 14:22:56 +0800795 F2FS_OPTION(sbi).s_resuid = uid;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800796 break;
797 case Opt_resgid:
798 if (args->from && match_int(args, &arg))
799 return -EINVAL;
800 gid = make_kgid(current_user_ns(), arg);
801 if (!gid_valid(gid)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800802 f2fs_err(sbi, "Invalid gid value %d", arg);
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800803 return -EINVAL;
804 }
Chao Yu63189b72018-03-08 14:22:56 +0800805 F2FS_OPTION(sbi).s_resgid = gid;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800806 break;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700807 case Opt_mode:
808 name = match_strdup(&args[0]);
809
810 if (!name)
811 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700812 if (!strcmp(name, "adaptive")) {
Chao Yu7beb01f2018-10-24 18:34:26 +0800813 if (f2fs_sb_has_blkzoned(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800814 f2fs_warn(sbi, "adaptive mode is not allowed with zoned block device feature");
Wang Xiaojunba87a452020-06-17 20:30:12 +0800815 kfree(name);
Damien Le Moal3adc57e2016-10-28 17:45:04 +0900816 return -EINVAL;
817 }
Chao Yub0332a02020-02-14 17:44:12 +0800818 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
Eric Biggers3c57f752020-05-01 16:35:23 -0700819 } else if (!strcmp(name, "lfs")) {
Chao Yub0332a02020-02-14 17:44:12 +0800820 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
Daeho Jeong6691d942021-09-29 11:12:03 -0700821 } else if (!strcmp(name, "fragment:segment")) {
822 F2FS_OPTION(sbi).fs_mode = FS_MODE_FRAGMENT_SEG;
823 } else if (!strcmp(name, "fragment:block")) {
824 F2FS_OPTION(sbi).fs_mode = FS_MODE_FRAGMENT_BLK;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700825 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800826 kfree(name);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700827 return -EINVAL;
828 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800829 kfree(name);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700830 break;
Jaegeuk Kimec915382016-12-21 17:09:19 -0800831 case Opt_io_size_bits:
832 if (args->from && match_int(args, &arg))
833 return -EINVAL;
Christoph Hellwiga8affc02021-03-11 12:01:37 +0100834 if (arg <= 0 || arg > __ilog2_u32(BIO_MAX_VECS)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800835 f2fs_warn(sbi, "Not support %d, larger than %d",
Christoph Hellwiga8affc02021-03-11 12:01:37 +0100836 1 << arg, BIO_MAX_VECS);
Jaegeuk Kimec915382016-12-21 17:09:19 -0800837 return -EINVAL;
838 }
Chao Yu63189b72018-03-08 14:22:56 +0800839 F2FS_OPTION(sbi).write_io_size_bits = arg;
Jaegeuk Kimec915382016-12-21 17:09:19 -0800840 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800841#ifdef CONFIG_F2FS_FAULT_INJECTION
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700842 case Opt_fault_injection:
843 if (args->from && match_int(args, &arg))
844 return -EINVAL;
Chao Yud4945002018-08-08 17:36:41 +0800845 f2fs_build_fault_attr(sbi, arg, F2FS_ALL_FAULT_TYPE);
846 set_opt(sbi, FAULT_INJECTION);
Chao Yud4945002018-08-08 17:36:41 +0800847 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800848
Chao Yud4945002018-08-08 17:36:41 +0800849 case Opt_fault_type:
850 if (args->from && match_int(args, &arg))
851 return -EINVAL;
Chao Yud4945002018-08-08 17:36:41 +0800852 f2fs_build_fault_attr(sbi, 0, arg);
Kaixu Xia0cc0dec2017-01-27 09:35:37 +0800853 set_opt(sbi, FAULT_INJECTION);
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700854 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800855#else
856 case Opt_fault_injection:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800857 f2fs_info(sbi, "fault_injection options not supported");
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800858 break;
859
860 case Opt_fault_type:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800861 f2fs_info(sbi, "fault_type options not supported");
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800862 break;
863#endif
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700864 case Opt_lazytime:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800865 sb->s_flags |= SB_LAZYTIME;
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700866 break;
867 case Opt_nolazytime:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800868 sb->s_flags &= ~SB_LAZYTIME;
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700869 break;
Chao Yu0abd6752017-07-09 00:13:07 +0800870#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +0800871 case Opt_quota:
Chao Yu0abd6752017-07-09 00:13:07 +0800872 case Opt_usrquota:
873 set_opt(sbi, USRQUOTA);
874 break;
875 case Opt_grpquota:
876 set_opt(sbi, GRPQUOTA);
877 break;
Chao Yu5c571322017-07-26 00:01:41 +0800878 case Opt_prjquota:
879 set_opt(sbi, PRJQUOTA);
880 break;
Chao Yu4b2414d2017-08-08 10:54:31 +0800881 case Opt_usrjquota:
882 ret = f2fs_set_qf_name(sb, USRQUOTA, &args[0]);
883 if (ret)
884 return ret;
885 break;
886 case Opt_grpjquota:
887 ret = f2fs_set_qf_name(sb, GRPQUOTA, &args[0]);
888 if (ret)
889 return ret;
890 break;
891 case Opt_prjjquota:
892 ret = f2fs_set_qf_name(sb, PRJQUOTA, &args[0]);
893 if (ret)
894 return ret;
895 break;
896 case Opt_offusrjquota:
897 ret = f2fs_clear_qf_name(sb, USRQUOTA);
898 if (ret)
899 return ret;
900 break;
901 case Opt_offgrpjquota:
902 ret = f2fs_clear_qf_name(sb, GRPQUOTA);
903 if (ret)
904 return ret;
905 break;
906 case Opt_offprjjquota:
907 ret = f2fs_clear_qf_name(sb, PRJQUOTA);
908 if (ret)
909 return ret;
910 break;
911 case Opt_jqfmt_vfsold:
Chao Yu63189b72018-03-08 14:22:56 +0800912 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_OLD;
Chao Yu4b2414d2017-08-08 10:54:31 +0800913 break;
914 case Opt_jqfmt_vfsv0:
Chao Yu63189b72018-03-08 14:22:56 +0800915 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V0;
Chao Yu4b2414d2017-08-08 10:54:31 +0800916 break;
917 case Opt_jqfmt_vfsv1:
Chao Yu63189b72018-03-08 14:22:56 +0800918 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V1;
Chao Yu4b2414d2017-08-08 10:54:31 +0800919 break;
920 case Opt_noquota:
921 clear_opt(sbi, QUOTA);
922 clear_opt(sbi, USRQUOTA);
923 clear_opt(sbi, GRPQUOTA);
924 clear_opt(sbi, PRJQUOTA);
925 break;
Chao Yu0abd6752017-07-09 00:13:07 +0800926#else
Chao Yu4b2414d2017-08-08 10:54:31 +0800927 case Opt_quota:
Chao Yu0abd6752017-07-09 00:13:07 +0800928 case Opt_usrquota:
929 case Opt_grpquota:
Chao Yu5c571322017-07-26 00:01:41 +0800930 case Opt_prjquota:
Chao Yu4b2414d2017-08-08 10:54:31 +0800931 case Opt_usrjquota:
932 case Opt_grpjquota:
933 case Opt_prjjquota:
934 case Opt_offusrjquota:
935 case Opt_offgrpjquota:
936 case Opt_offprjjquota:
937 case Opt_jqfmt_vfsold:
938 case Opt_jqfmt_vfsv0:
939 case Opt_jqfmt_vfsv1:
940 case Opt_noquota:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800941 f2fs_info(sbi, "quota operations not supported");
Chao Yu0abd6752017-07-09 00:13:07 +0800942 break;
943#endif
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900944 case Opt_whint:
945 name = match_strdup(&args[0]);
946 if (!name)
947 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700948 if (!strcmp(name, "user-based")) {
Chao Yu63189b72018-03-08 14:22:56 +0800949 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_USER;
Eric Biggers3c57f752020-05-01 16:35:23 -0700950 } else if (!strcmp(name, "off")) {
Chao Yu63189b72018-03-08 14:22:56 +0800951 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
Eric Biggers3c57f752020-05-01 16:35:23 -0700952 } else if (!strcmp(name, "fs-based")) {
Chao Yu63189b72018-03-08 14:22:56 +0800953 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_FS;
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900954 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800955 kfree(name);
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900956 return -EINVAL;
957 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800958 kfree(name);
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900959 break;
Jaegeuk Kim07939622018-02-18 08:50:49 -0800960 case Opt_alloc:
961 name = match_strdup(&args[0]);
962 if (!name)
963 return -ENOMEM;
964
Eric Biggers3c57f752020-05-01 16:35:23 -0700965 if (!strcmp(name, "default")) {
Chao Yu63189b72018-03-08 14:22:56 +0800966 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
Eric Biggers3c57f752020-05-01 16:35:23 -0700967 } else if (!strcmp(name, "reuse")) {
Chao Yu63189b72018-03-08 14:22:56 +0800968 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
Jaegeuk Kim07939622018-02-18 08:50:49 -0800969 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800970 kfree(name);
Jaegeuk Kim07939622018-02-18 08:50:49 -0800971 return -EINVAL;
972 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800973 kfree(name);
Jaegeuk Kim07939622018-02-18 08:50:49 -0800974 break;
Junling Zheng93cf93f2018-03-07 12:07:49 +0800975 case Opt_fsync:
976 name = match_strdup(&args[0]);
977 if (!name)
978 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700979 if (!strcmp(name, "posix")) {
Chao Yu63189b72018-03-08 14:22:56 +0800980 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
Eric Biggers3c57f752020-05-01 16:35:23 -0700981 } else if (!strcmp(name, "strict")) {
Chao Yu63189b72018-03-08 14:22:56 +0800982 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_STRICT;
Eric Biggers3c57f752020-05-01 16:35:23 -0700983 } else if (!strcmp(name, "nobarrier")) {
Jaegeuk Kimd6290812018-05-25 18:02:58 -0700984 F2FS_OPTION(sbi).fsync_mode =
985 FSYNC_MODE_NOBARRIER;
Junling Zheng93cf93f2018-03-07 12:07:49 +0800986 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800987 kfree(name);
Junling Zheng93cf93f2018-03-07 12:07:49 +0800988 return -EINVAL;
989 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800990 kfree(name);
Junling Zheng93cf93f2018-03-07 12:07:49 +0800991 break;
Sheng Yongff62af22018-03-15 18:51:42 +0800992 case Opt_test_dummy_encryption:
Eric Biggersed318a62020-05-12 16:32:50 -0700993 ret = f2fs_set_test_dummy_encryption(sb, p, &args[0],
994 is_remount);
995 if (ret)
996 return ret;
Sheng Yongff62af22018-03-15 18:51:42 +0800997 break;
Satya Tangirala27aacd22020-07-02 01:56:06 +0000998 case Opt_inlinecrypt:
999#ifdef CONFIG_FS_ENCRYPTION_INLINE_CRYPT
1000 sb->s_flags |= SB_INLINECRYPT;
1001#else
1002 f2fs_info(sbi, "inline encryption not supported");
1003#endif
1004 break;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001005 case Opt_checkpoint_disable_cap_perc:
1006 if (args->from && match_int(args, &arg))
Daniel Rosenberg43549942018-08-20 19:21:43 -07001007 return -EINVAL;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001008 if (arg < 0 || arg > 100)
1009 return -EINVAL;
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -07001010 F2FS_OPTION(sbi).unusable_cap_perc = arg;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001011 set_opt(sbi, DISABLE_CHECKPOINT);
1012 break;
1013 case Opt_checkpoint_disable_cap:
1014 if (args->from && match_int(args, &arg))
1015 return -EINVAL;
1016 F2FS_OPTION(sbi).unusable_cap = arg;
1017 set_opt(sbi, DISABLE_CHECKPOINT);
1018 break;
1019 case Opt_checkpoint_disable:
1020 set_opt(sbi, DISABLE_CHECKPOINT);
1021 break;
1022 case Opt_checkpoint_enable:
1023 clear_opt(sbi, DISABLE_CHECKPOINT);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001024 break;
Daeho Jeong261eeb92021-01-19 09:00:42 +09001025 case Opt_checkpoint_merge:
1026 set_opt(sbi, MERGE_CHECKPOINT);
1027 break;
1028 case Opt_nocheckpoint_merge:
1029 clear_opt(sbi, MERGE_CHECKPOINT);
1030 break;
Chao Yu1f0b0672020-07-29 21:21:36 +08001031#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001032 case Opt_compress_algorithm:
1033 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001034 f2fs_info(sbi, "Image doesn't support compression");
1035 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001036 }
1037 name = match_strdup(&args[0]);
1038 if (!name)
1039 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -07001040 if (!strcmp(name, "lzo")) {
Chao Yu32be0e92021-01-22 17:40:13 +08001041#ifdef CONFIG_F2FS_FS_LZO
Chao Yu3fde13f2021-01-22 17:46:43 +08001042 F2FS_OPTION(sbi).compress_level = 0;
Chao Yu4c8ff702019-11-01 18:07:14 +08001043 F2FS_OPTION(sbi).compress_algorithm =
1044 COMPRESS_LZO;
Chao Yu32be0e92021-01-22 17:40:13 +08001045#else
1046 f2fs_info(sbi, "kernel doesn't support lzo compression");
1047#endif
Chao Yu3fde13f2021-01-22 17:46:43 +08001048 } else if (!strncmp(name, "lz4", 3)) {
Chao Yu32be0e92021-01-22 17:40:13 +08001049#ifdef CONFIG_F2FS_FS_LZ4
Chao Yu3fde13f2021-01-22 17:46:43 +08001050 ret = f2fs_set_lz4hc_level(sbi, name);
1051 if (ret) {
1052 kfree(name);
1053 return -EINVAL;
1054 }
Chao Yu4c8ff702019-11-01 18:07:14 +08001055 F2FS_OPTION(sbi).compress_algorithm =
1056 COMPRESS_LZ4;
Chao Yu32be0e92021-01-22 17:40:13 +08001057#else
1058 f2fs_info(sbi, "kernel doesn't support lz4 compression");
1059#endif
Chao Yu3fde13f2021-01-22 17:46:43 +08001060 } else if (!strncmp(name, "zstd", 4)) {
Chao Yu32be0e92021-01-22 17:40:13 +08001061#ifdef CONFIG_F2FS_FS_ZSTD
Chao Yu3fde13f2021-01-22 17:46:43 +08001062 ret = f2fs_set_zstd_level(sbi, name);
1063 if (ret) {
1064 kfree(name);
1065 return -EINVAL;
1066 }
Chao Yu50cfa662020-03-03 17:46:02 +08001067 F2FS_OPTION(sbi).compress_algorithm =
1068 COMPRESS_ZSTD;
Chao Yu32be0e92021-01-22 17:40:13 +08001069#else
1070 f2fs_info(sbi, "kernel doesn't support zstd compression");
1071#endif
Chao Yu6d92b202020-04-08 19:56:32 +08001072 } else if (!strcmp(name, "lzo-rle")) {
Chao Yu32be0e92021-01-22 17:40:13 +08001073#ifdef CONFIG_F2FS_FS_LZORLE
Chao Yu3fde13f2021-01-22 17:46:43 +08001074 F2FS_OPTION(sbi).compress_level = 0;
Chao Yu6d92b202020-04-08 19:56:32 +08001075 F2FS_OPTION(sbi).compress_algorithm =
1076 COMPRESS_LZORLE;
Chao Yu32be0e92021-01-22 17:40:13 +08001077#else
1078 f2fs_info(sbi, "kernel doesn't support lzorle compression");
1079#endif
Chao Yu4c8ff702019-11-01 18:07:14 +08001080 } else {
1081 kfree(name);
1082 return -EINVAL;
1083 }
1084 kfree(name);
1085 break;
1086 case Opt_compress_log_size:
1087 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001088 f2fs_info(sbi, "Image doesn't support compression");
1089 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001090 }
1091 if (args->from && match_int(args, &arg))
1092 return -EINVAL;
1093 if (arg < MIN_COMPRESS_LOG_SIZE ||
1094 arg > MAX_COMPRESS_LOG_SIZE) {
1095 f2fs_err(sbi,
1096 "Compress cluster log size is out of range");
1097 return -EINVAL;
1098 }
1099 F2FS_OPTION(sbi).compress_log_size = arg;
1100 break;
1101 case Opt_compress_extension:
1102 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001103 f2fs_info(sbi, "Image doesn't support compression");
1104 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001105 }
1106 name = match_strdup(&args[0]);
1107 if (!name)
1108 return -ENOMEM;
1109
1110 ext = F2FS_OPTION(sbi).extensions;
1111 ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt;
1112
1113 if (strlen(name) >= F2FS_EXTENSION_LEN ||
1114 ext_cnt >= COMPRESS_EXT_NUM) {
1115 f2fs_err(sbi,
1116 "invalid extension length/number");
1117 kfree(name);
1118 return -EINVAL;
1119 }
1120
1121 strcpy(ext[ext_cnt], name);
1122 F2FS_OPTION(sbi).compress_ext_cnt++;
1123 kfree(name);
1124 break;
Fengnan Chang151b1982021-06-08 19:15:08 +08001125 case Opt_nocompress_extension:
1126 if (!f2fs_sb_has_compression(sbi)) {
1127 f2fs_info(sbi, "Image doesn't support compression");
1128 break;
1129 }
1130 name = match_strdup(&args[0]);
1131 if (!name)
1132 return -ENOMEM;
1133
1134 noext = F2FS_OPTION(sbi).noextensions;
1135 noext_cnt = F2FS_OPTION(sbi).nocompress_ext_cnt;
1136
1137 if (strlen(name) >= F2FS_EXTENSION_LEN ||
1138 noext_cnt >= COMPRESS_EXT_NUM) {
1139 f2fs_err(sbi,
1140 "invalid extension length/number");
1141 kfree(name);
1142 return -EINVAL;
1143 }
1144
1145 strcpy(noext[noext_cnt], name);
1146 F2FS_OPTION(sbi).nocompress_ext_cnt++;
1147 kfree(name);
1148 break;
Chao Yub28f0472020-11-26 18:32:09 +08001149 case Opt_compress_chksum:
1150 F2FS_OPTION(sbi).compress_chksum = true;
1151 break;
Daeho Jeong602a16d2020-12-01 13:08:02 +09001152 case Opt_compress_mode:
1153 name = match_strdup(&args[0]);
1154 if (!name)
1155 return -ENOMEM;
1156 if (!strcmp(name, "fs")) {
1157 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_FS;
1158 } else if (!strcmp(name, "user")) {
1159 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_USER;
1160 } else {
1161 kfree(name);
1162 return -EINVAL;
1163 }
1164 kfree(name);
1165 break;
Chao Yu6ce19af2021-05-20 19:51:50 +08001166 case Opt_compress_cache:
1167 set_opt(sbi, COMPRESS_CACHE);
1168 break;
Chao Yu1f0b0672020-07-29 21:21:36 +08001169#else
1170 case Opt_compress_algorithm:
1171 case Opt_compress_log_size:
1172 case Opt_compress_extension:
Fengnan Chang151b1982021-06-08 19:15:08 +08001173 case Opt_nocompress_extension:
Chao Yub28f0472020-11-26 18:32:09 +08001174 case Opt_compress_chksum:
Daeho Jeong602a16d2020-12-01 13:08:02 +09001175 case Opt_compress_mode:
Chao Yu6ce19af2021-05-20 19:51:50 +08001176 case Opt_compress_cache:
Chao Yu1f0b0672020-07-29 21:21:36 +08001177 f2fs_info(sbi, "compression options not supported");
1178 break;
1179#endif
Chao Yu093749e2020-08-04 21:14:49 +08001180 case Opt_atgc:
1181 set_opt(sbi, ATGC);
1182 break;
Chao Yu5911d2d2021-03-27 17:57:06 +08001183 case Opt_gc_merge:
1184 set_opt(sbi, GC_MERGE);
1185 break;
1186 case Opt_nogc_merge:
1187 clear_opt(sbi, GC_MERGE);
1188 break;
Chao Yu4f993262021-08-03 08:15:43 +08001189 case Opt_discard_unit:
1190 name = match_strdup(&args[0]);
1191 if (!name)
1192 return -ENOMEM;
1193 if (!strcmp(name, "block")) {
1194 F2FS_OPTION(sbi).discard_unit =
1195 DISCARD_UNIT_BLOCK;
1196 } else if (!strcmp(name, "segment")) {
1197 F2FS_OPTION(sbi).discard_unit =
1198 DISCARD_UNIT_SEGMENT;
1199 } else if (!strcmp(name, "section")) {
1200 F2FS_OPTION(sbi).discard_unit =
1201 DISCARD_UNIT_SECTION;
1202 } else {
1203 kfree(name);
1204 return -EINVAL;
1205 }
1206 kfree(name);
1207 break;
Namjae Jeon696c0182013-06-16 09:48:48 +09001208 default:
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001209 f2fs_err(sbi, "Unrecognized mount option \"%s\" or missing value",
1210 p);
Namjae Jeon696c0182013-06-16 09:48:48 +09001211 return -EINVAL;
1212 }
1213 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001214default_check:
Chao Yu4b2414d2017-08-08 10:54:31 +08001215#ifdef CONFIG_QUOTA
1216 if (f2fs_check_quota_options(sbi))
1217 return -EINVAL;
Sheng Yong00960c2cd2018-07-24 20:17:52 +08001218#else
Chao Yu7beb01f2018-10-24 18:34:26 +08001219 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sbi->sb)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001220 f2fs_info(sbi, "Filesystem with quota feature cannot be mounted RDWR without CONFIG_QUOTA");
Sheng Yong00960c2cd2018-07-24 20:17:52 +08001221 return -EINVAL;
1222 }
Chao Yu7beb01f2018-10-24 18:34:26 +08001223 if (f2fs_sb_has_project_quota(sbi) && !f2fs_readonly(sbi->sb)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001224 f2fs_err(sbi, "Filesystem with project quota feature cannot be mounted RDWR without CONFIG_QUOTA");
Chao Yu4ddc1b22018-07-26 07:19:48 +08001225 return -EINVAL;
1226 }
Chao Yu4b2414d2017-08-08 10:54:31 +08001227#endif
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001228#ifndef CONFIG_UNICODE
1229 if (f2fs_sb_has_casefold(sbi)) {
1230 f2fs_err(sbi,
1231 "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
1232 return -EINVAL;
1233 }
1234#endif
Chao Yud0660122020-09-21 20:53:14 +08001235 /*
1236 * The BLKZONED feature indicates that the drive was formatted with
1237 * zone alignment optimization. This is optional for host-aware
1238 * devices, but mandatory for host-managed zoned block devices.
1239 */
1240#ifndef CONFIG_BLK_DEV_ZONED
1241 if (f2fs_sb_has_blkzoned(sbi)) {
1242 f2fs_err(sbi, "Zoned block device support is not enabled");
1243 return -EINVAL;
1244 }
1245#endif
Chao Yu4f993262021-08-03 08:15:43 +08001246 if (f2fs_sb_has_blkzoned(sbi)) {
1247 if (F2FS_OPTION(sbi).discard_unit !=
1248 DISCARD_UNIT_SECTION) {
1249 f2fs_info(sbi, "Zoned block device doesn't need small discard, set discard_unit=section by default");
1250 F2FS_OPTION(sbi).discard_unit =
1251 DISCARD_UNIT_SECTION;
1252 }
1253 }
Jaegeuk Kimec915382016-12-21 17:09:19 -08001254
Fengnan Chang151b1982021-06-08 19:15:08 +08001255#ifdef CONFIG_F2FS_FS_COMPRESSION
1256 if (f2fs_test_compress_extension(sbi)) {
1257 f2fs_err(sbi, "invalid compress or nocompress extension");
1258 return -EINVAL;
1259 }
1260#endif
1261
Chao Yub0332a02020-02-14 17:44:12 +08001262 if (F2FS_IO_SIZE_BITS(sbi) && !f2fs_lfs_mode(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001263 f2fs_err(sbi, "Should set mode=lfs with %uKB-sized IO",
1264 F2FS_IO_SIZE_KB(sbi));
Jaegeuk Kimec915382016-12-21 17:09:19 -08001265 return -EINVAL;
1266 }
Chao Yu6afc6622017-09-06 21:59:50 +08001267
1268 if (test_opt(sbi, INLINE_XATTR_SIZE)) {
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001269 int min_size, max_size;
1270
Chao Yu7beb01f2018-10-24 18:34:26 +08001271 if (!f2fs_sb_has_extra_attr(sbi) ||
1272 !f2fs_sb_has_flexible_inline_xattr(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001273 f2fs_err(sbi, "extra_attr or flexible_inline_xattr feature is off");
Chao Yu4d817ae2018-01-27 17:29:48 +08001274 return -EINVAL;
1275 }
Chao Yu6afc6622017-09-06 21:59:50 +08001276 if (!test_opt(sbi, INLINE_XATTR)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001277 f2fs_err(sbi, "inline_xattr_size option should be set with inline_xattr option");
Chao Yu6afc6622017-09-06 21:59:50 +08001278 return -EINVAL;
1279 }
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001280
1281 min_size = sizeof(struct f2fs_xattr_header) / sizeof(__le32);
Chao Yudd6c89b2019-03-04 17:19:04 +08001282 max_size = MAX_INLINE_XATTR_SIZE;
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001283
1284 if (F2FS_OPTION(sbi).inline_xattr_size < min_size ||
1285 F2FS_OPTION(sbi).inline_xattr_size > max_size) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001286 f2fs_err(sbi, "inline xattr size is out of range: %d ~ %d",
1287 min_size, max_size);
Chao Yu6afc6622017-09-06 21:59:50 +08001288 return -EINVAL;
1289 }
1290 }
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001291
Chao Yub0332a02020-02-14 17:44:12 +08001292 if (test_opt(sbi, DISABLE_CHECKPOINT) && f2fs_lfs_mode(sbi)) {
Joe Perches833dcd32021-05-26 13:05:36 -07001293 f2fs_err(sbi, "LFS not compatible with checkpoint=disable");
Daniel Rosenberg43549942018-08-20 19:21:43 -07001294 return -EINVAL;
1295 }
1296
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001297 /* Not pass down write hints if the number of active logs is lesser
Chao Yud0b9e422020-08-04 21:14:45 +08001298 * than NR_CURSEG_PERSIST_TYPE.
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001299 */
Keoseong Park011e0862021-09-27 15:06:48 +09001300 if (F2FS_OPTION(sbi).active_logs != NR_CURSEG_PERSIST_TYPE)
Chao Yu63189b72018-03-08 14:22:56 +08001301 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001302
1303 if (f2fs_sb_has_readonly(sbi) && !f2fs_readonly(sbi->sb)) {
1304 f2fs_err(sbi, "Allow to mount readonly mode only");
1305 return -EROFS;
1306 }
Namjae Jeon696c0182013-06-16 09:48:48 +09001307 return 0;
1308}
1309
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001310static struct inode *f2fs_alloc_inode(struct super_block *sb)
1311{
1312 struct f2fs_inode_info *fi;
1313
Chao Yu32410572021-08-09 08:24:48 +08001314 fi = f2fs_kmem_cache_alloc(f2fs_inode_cachep,
1315 GFP_F2FS_ZERO, false, F2FS_SB(sb));
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001316 if (!fi)
1317 return NULL;
1318
1319 init_once((void *) fi);
1320
Masanari Iida434720f2013-03-19 08:03:35 +09001321 /* Initialize f2fs-specific inode info */
Jaegeuk Kim204706c2016-12-02 15:11:32 -08001322 atomic_set(&fi->dirty_pages, 0);
Daeho Jeongc2759eb2020-09-08 11:44:10 +09001323 atomic_set(&fi->i_compr_blocks, 0);
Jaegeuk Kimd928bfb2014-03-20 19:10:08 +09001324 init_rwsem(&fi->i_sem);
Chao Yuc10c9822020-02-27 19:30:03 +08001325 spin_lock_init(&fi->i_size_lock);
Chao Yu2710fd72015-12-15 13:30:45 +08001326 INIT_LIST_HEAD(&fi->dirty_list);
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001327 INIT_LIST_HEAD(&fi->gdirty_list);
Jaegeuk Kim57864ae2017-10-18 19:05:57 -07001328 INIT_LIST_HEAD(&fi->inmem_ilist);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001329 INIT_LIST_HEAD(&fi->inmem_pages);
1330 mutex_init(&fi->inmem_lock);
Chao Yub2532c62018-04-24 10:55:28 +08001331 init_rwsem(&fi->i_gc_rwsem[READ]);
1332 init_rwsem(&fi->i_gc_rwsem[WRITE]);
Yunlei He27161f12017-09-07 10:40:54 +08001333 init_rwsem(&fi->i_xattr_sem);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001334
Jaegeuk Kimab9fa662014-02-27 20:09:05 +09001335 /* Will be used by directory only */
1336 fi->i_dir_level = F2FS_SB(sb)->dir_level;
Chao Yuf2470372017-07-19 00:19:05 +08001337
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001338 return &fi->vfs_inode;
1339}
1340
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001341static int f2fs_drop_inode(struct inode *inode)
1342{
Chao Yua8933b62019-07-18 16:39:59 +08001343 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001344 int ret;
Chao Yua8933b62019-07-18 16:39:59 +08001345
1346 /*
1347 * during filesystem shutdown, if checkpoint is disabled,
1348 * drop useless meta/node dirty pages.
1349 */
1350 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
1351 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1352 inode->i_ino == F2FS_META_INO(sbi)) {
1353 trace_f2fs_drop_inode(inode, 1);
1354 return 1;
1355 }
1356 }
1357
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001358 /*
1359 * This is to avoid a deadlock condition like below.
1360 * writeback_single_inode(inode)
1361 * - f2fs_write_data_page
1362 * - f2fs_gc -> iput -> evict
1363 * - inode_wait_for_writeback(inode)
1364 */
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001365 if ((!inode_unhashed(inode) && inode->i_state & I_SYNC)) {
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001366 if (!inode->i_nlink && !is_bad_inode(inode)) {
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001367 /* to avoid evict_inode call simultaneously */
1368 atomic_inc(&inode->i_count);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001369 spin_unlock(&inode->i_lock);
1370
1371 /* some remained atomic pages should discarded */
1372 if (f2fs_is_atomic_file(inode))
Chao Yu4d57b862018-05-30 00:20:41 +08001373 f2fs_drop_inmem_pages(inode);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001374
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001375 /* should remain fi->extent_tree for writepage */
1376 f2fs_destroy_extent_node(inode);
1377
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001378 sb_start_intwrite(inode->i_sb);
Jaegeuk Kimfc9581c2016-05-20 09:22:03 -07001379 f2fs_i_size_write(inode, 0);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001380
zhenglianga0770e12019-03-04 09:32:25 +08001381 f2fs_submit_merged_write_cond(F2FS_I_SB(inode),
1382 inode, NULL, 0, DATA);
1383 truncate_inode_pages_final(inode->i_mapping);
1384
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001385 if (F2FS_HAS_BLOCKS(inode))
Jaegeuk Kim9a449e92016-06-02 13:49:38 -07001386 f2fs_truncate(inode);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001387
1388 sb_end_intwrite(inode->i_sb);
1389
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001390 spin_lock(&inode->i_lock);
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001391 atomic_dec(&inode->i_count);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001392 }
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001393 trace_f2fs_drop_inode(inode, 0);
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001394 return 0;
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001395 }
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001396 ret = generic_drop_inode(inode);
Eric Biggers8ce589c2019-08-04 19:35:48 -07001397 if (!ret)
1398 ret = fscrypt_drop_inode(inode);
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001399 trace_f2fs_drop_inode(inode, ret);
1400 return ret;
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001401}
1402
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001403int f2fs_inode_dirtied(struct inode *inode, bool sync)
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001404{
1405 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001406 int ret = 0;
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001407
1408 spin_lock(&sbi->inode_lock[DIRTY_META]);
1409 if (is_inode_flag_set(inode, FI_DIRTY_INODE)) {
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001410 ret = 1;
1411 } else {
1412 set_inode_flag(inode, FI_DIRTY_INODE);
1413 stat_inc_dirty_inode(sbi, DIRTY_META);
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001414 }
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001415 if (sync && list_empty(&F2FS_I(inode)->gdirty_list)) {
1416 list_add_tail(&F2FS_I(inode)->gdirty_list,
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001417 &sbi->inode_list[DIRTY_META]);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001418 inc_page_count(sbi, F2FS_DIRTY_IMETA);
1419 }
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001420 spin_unlock(&sbi->inode_lock[DIRTY_META]);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001421 return ret;
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001422}
1423
1424void f2fs_inode_synced(struct inode *inode)
1425{
1426 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1427
1428 spin_lock(&sbi->inode_lock[DIRTY_META]);
1429 if (!is_inode_flag_set(inode, FI_DIRTY_INODE)) {
1430 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1431 return;
1432 }
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001433 if (!list_empty(&F2FS_I(inode)->gdirty_list)) {
1434 list_del_init(&F2FS_I(inode)->gdirty_list);
1435 dec_page_count(sbi, F2FS_DIRTY_IMETA);
1436 }
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001437 clear_inode_flag(inode, FI_DIRTY_INODE);
1438 clear_inode_flag(inode, FI_AUTO_RECOVER);
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001439 stat_dec_dirty_inode(F2FS_I_SB(inode), DIRTY_META);
1440 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1441}
1442
Jaegeuk Kimb3783872013-06-10 09:17:01 +09001443/*
1444 * f2fs_dirty_inode() is called from __mark_inode_dirty()
1445 *
1446 * We should call set_dirty_inode to write the dirty inode through write_inode.
1447 */
1448static void f2fs_dirty_inode(struct inode *inode, int flags)
1449{
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001450 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1451
1452 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1453 inode->i_ino == F2FS_META_INO(sbi))
1454 return;
1455
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07001456 if (is_inode_flag_set(inode, FI_AUTO_RECOVER))
1457 clear_inode_flag(inode, FI_AUTO_RECOVER);
1458
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001459 f2fs_inode_dirtied(inode, false);
Jaegeuk Kimb3783872013-06-10 09:17:01 +09001460}
1461
Al Virod01718a2019-04-15 19:29:14 -04001462static void f2fs_free_inode(struct inode *inode)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001463{
Eric Biggers2c58d542019-04-10 13:21:15 -07001464 fscrypt_free_inode(inode);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001465 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
1466}
1467
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001468static void destroy_percpu_info(struct f2fs_sb_info *sbi)
1469{
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07001470 percpu_counter_destroy(&sbi->alloc_valid_block_count);
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07001471 percpu_counter_destroy(&sbi->total_valid_inode_count);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001472}
1473
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001474static void destroy_device_list(struct f2fs_sb_info *sbi)
1475{
1476 int i;
1477
1478 for (i = 0; i < sbi->s_ndevs; i++) {
1479 blkdev_put(FDEV(i).bdev, FMODE_EXCL);
1480#ifdef CONFIG_BLK_DEV_ZONED
Damien Le Moal95175da2019-03-16 09:13:07 +09001481 kvfree(FDEV(i).blkz_seq);
Aravind Rameshde881df2020-07-16 18:26:56 +05301482 kfree(FDEV(i).zone_capacity_blocks);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001483#endif
1484 }
Jaegeuk Kim52225952018-12-13 18:38:33 -08001485 kvfree(sbi->devs);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001486}
1487
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001488static void f2fs_put_super(struct super_block *sb)
1489{
1490 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yua3981012017-06-14 17:39:46 +08001491 int i;
Chao Yucf5c7592017-10-04 09:08:37 +08001492 bool dropped;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001493
Li Guifu99c787c2020-07-24 09:38:11 +08001494 /* unregister procfs/sysfs entries in advance to avoid race case */
1495 f2fs_unregister_sysfs(sbi);
1496
Chao Yu0abd6752017-07-09 00:13:07 +08001497 f2fs_quota_off_umount(sb);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001498
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001499 /* prevent remaining shrinker jobs */
1500 mutex_lock(&sbi->umount_mutex);
1501
Jaegeuk Kim85dc2f22015-01-14 17:41:41 -08001502 /*
Daeho Jeong261eeb92021-01-19 09:00:42 +09001503 * flush all issued checkpoints and stop checkpoint issue thread.
1504 * after then, all checkpoints should be done by each process context.
1505 */
1506 f2fs_stop_ckpt_thread(sbi);
1507
1508 /*
Jaegeuk Kim85dc2f22015-01-14 17:41:41 -08001509 * We don't need to do checkpoint when superblock is clean.
1510 * But, the previous checkpoint was not done by umount, it needs to do
1511 * clean checkpoint again.
1512 */
Daniel Rosenberg43549942018-08-20 19:21:43 -07001513 if ((is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
1514 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG))) {
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -07001515 struct cp_control cpc = {
1516 .reason = CP_UMOUNT,
1517 };
Chao Yu4d57b862018-05-30 00:20:41 +08001518 f2fs_write_checkpoint(sbi, &cpc);
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -07001519 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001520
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08001521 /* be sure to wait for any on-going discard commands */
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08001522 dropped = f2fs_issue_discard_timeout(sbi);
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08001523
Chao Yu7d20c8a2018-09-04 03:52:17 +08001524 if ((f2fs_hw_support_discard(sbi) || f2fs_hw_should_discard(sbi)) &&
1525 !sbi->discard_blks && !dropped) {
Chao Yu1f43e2a2017-04-28 13:56:08 +08001526 struct cp_control cpc = {
1527 .reason = CP_UMOUNT | CP_TRIMMED,
1528 };
Chao Yu4d57b862018-05-30 00:20:41 +08001529 f2fs_write_checkpoint(sbi, &cpc);
Chao Yu1f43e2a2017-04-28 13:56:08 +08001530 }
1531
Jaegeuk Kimcf779ca2014-08-11 18:37:46 -07001532 /*
1533 * normally superblock is clean, so we need to release this.
1534 * In addition, EIO will skip do checkpoint, we need this as well.
1535 */
Chao Yu4d57b862018-05-30 00:20:41 +08001536 f2fs_release_ino_entry(sbi, true);
Jaegeuk Kim6f12ac22014-08-19 09:48:22 -07001537
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001538 f2fs_leave_shrinker(sbi);
1539 mutex_unlock(&sbi->umount_mutex);
1540
Jaegeuk Kim17c19122016-01-29 08:57:59 -08001541 /* our cp_error case, we can wait for any writeback page */
Jaegeuk Kimb9109b02017-05-10 11:28:38 -07001542 f2fs_flush_merged_writes(sbi);
Jaegeuk Kim17c19122016-01-29 08:57:59 -08001543
Sahitya Tummalabf22c3c2020-02-18 09:19:07 +05301544 f2fs_wait_on_all_pages(sbi, F2FS_WB_CP_DATA);
Chao Yu50fa53e2018-08-02 23:03:19 +08001545
1546 f2fs_bug_on(sbi, sbi->fsync_node_num);
1547
Chao Yu6ce19af2021-05-20 19:51:50 +08001548 f2fs_destroy_compress_inode(sbi);
1549
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001550 iput(sbi->node_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08001551 sbi->node_inode = NULL;
1552
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001553 iput(sbi->meta_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08001554 sbi->meta_inode = NULL;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001555
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05301556 /*
1557 * iput() can update stat information, if f2fs_write_checkpoint()
1558 * above failed with error.
1559 */
1560 f2fs_destroy_stats(sbi);
1561
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001562 /* destroy f2fs internal modules */
Chao Yu4d57b862018-05-30 00:20:41 +08001563 f2fs_destroy_node_manager(sbi);
1564 f2fs_destroy_segment_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001565
Chao Yu4c8ff702019-11-01 18:07:14 +08001566 f2fs_destroy_post_read_wq(sbi);
1567
Jaegeuk Kim52225952018-12-13 18:38:33 -08001568 kvfree(sbi->ckpt);
Chao Yua3981012017-06-14 17:39:46 +08001569
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001570 sb->s_fs_info = NULL;
Keith Mok43b65732016-03-02 12:04:24 -08001571 if (sbi->s_chksum_driver)
1572 crypto_free_shash(sbi->s_chksum_driver);
Denis Efremov742532d2020-06-10 01:14:46 +03001573 kfree(sbi->raw_super);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001574
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001575 destroy_device_list(sbi);
Chao Yu31083032020-09-14 17:05:13 +08001576 f2fs_destroy_page_array_cache(sbi);
Chao Yua9991502020-02-25 18:17:10 +08001577 f2fs_destroy_xattr_caches(sbi);
Chao Yub6895e82017-02-27 18:43:12 +08001578 mempool_destroy(sbi->write_io_dummy);
Chao Yu4b2414d2017-08-08 10:54:31 +08001579#ifdef CONFIG_QUOTA
1580 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08001581 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001582#endif
Eric Biggersac4acb12020-09-16 21:11:35 -07001583 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001584 destroy_percpu_info(sbi);
Daeho Jeonga4b68172021-08-20 15:29:09 -07001585 f2fs_destroy_iostat(sbi);
Jaegeuk Kima912b542017-05-10 11:18:25 -07001586 for (i = 0; i < NR_PAGE_TYPE; i++)
Jaegeuk Kim52225952018-12-13 18:38:33 -08001587 kvfree(sbi->write_io[i]);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001588#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07001589 utf8_unload(sb->s_encoding);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001590#endif
Denis Efremov742532d2020-06-10 01:14:46 +03001591 kfree(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001592}
1593
1594int f2fs_sync_fs(struct super_block *sb, int sync)
1595{
1596 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yuc34f42e2015-12-23 17:50:30 +08001597 int err = 0;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001598
Jaegeuk Kim1f227a32017-10-23 23:48:49 +02001599 if (unlikely(f2fs_cp_error(sbi)))
1600 return 0;
Daniel Rosenberg43549942018-08-20 19:21:43 -07001601 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
1602 return 0;
Jaegeuk Kim1f227a32017-10-23 23:48:49 +02001603
Namjae Jeona2a4a7e2013-04-20 01:28:40 +09001604 trace_f2fs_sync_fs(sb, sync);
1605
Chao Yu4b2414d2017-08-08 10:54:31 +08001606 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
1607 return -EAGAIN;
1608
Daeho Jeong261eeb92021-01-19 09:00:42 +09001609 if (sync)
1610 err = f2fs_issue_checkpoint(sbi);
Jaegeuk Kimd5053a342014-10-30 22:47:03 -07001611
Chao Yuc34f42e2015-12-23 17:50:30 +08001612 return err;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001613}
1614
Changman Leed6212a52013-01-29 18:30:07 +09001615static int f2fs_freeze(struct super_block *sb)
1616{
Jaegeuk Kim77888c12013-05-20 20:28:47 +09001617 if (f2fs_readonly(sb))
Changman Leed6212a52013-01-29 18:30:07 +09001618 return 0;
1619
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07001620 /* IO error happened before */
1621 if (unlikely(f2fs_cp_error(F2FS_SB(sb))))
1622 return -EIO;
1623
1624 /* must be clean, since sync_filesystem() was already called */
1625 if (is_sbi_flag_set(F2FS_SB(sb), SBI_IS_DIRTY))
1626 return -EINVAL;
Jaegeuk Kimd50dfc0c2021-02-08 13:42:21 -08001627
1628 /* ensure no checkpoint required */
1629 if (!llist_empty(&F2FS_SB(sb)->cprc_info.issue_list))
1630 return -EINVAL;
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07001631 return 0;
Changman Leed6212a52013-01-29 18:30:07 +09001632}
1633
1634static int f2fs_unfreeze(struct super_block *sb)
1635{
1636 return 0;
1637}
1638
Chao Yuddc34e32017-07-29 00:32:53 +08001639#ifdef CONFIG_QUOTA
1640static int f2fs_statfs_project(struct super_block *sb,
1641 kprojid_t projid, struct kstatfs *buf)
1642{
1643 struct kqid qid;
1644 struct dquot *dquot;
1645 u64 limit;
1646 u64 curblock;
1647
1648 qid = make_kqid_projid(projid);
1649 dquot = dqget(sb, qid);
1650 if (IS_ERR(dquot))
1651 return PTR_ERR(dquot);
Sheng Yong955ac6e2018-07-24 20:17:53 +08001652 spin_lock(&dquot->dq_dqb_lock);
Chao Yuddc34e32017-07-29 00:32:53 +08001653
Chengguang Xubf2cbd32020-01-04 22:20:04 +08001654 limit = min_not_zero(dquot->dq_dqb.dqb_bsoftlimit,
1655 dquot->dq_dqb.dqb_bhardlimit);
Chengguang Xuacdf2172020-01-04 22:20:03 +08001656 if (limit)
1657 limit >>= sb->s_blocksize_bits;
Chengguang Xu909110c2019-11-25 11:20:36 +08001658
Chao Yuddc34e32017-07-29 00:32:53 +08001659 if (limit && buf->f_blocks > limit) {
Konstantin Khlebnikovbaaa7eb2020-05-11 09:15:18 +03001660 curblock = (dquot->dq_dqb.dqb_curspace +
1661 dquot->dq_dqb.dqb_rsvspace) >> sb->s_blocksize_bits;
Chao Yuddc34e32017-07-29 00:32:53 +08001662 buf->f_blocks = limit;
1663 buf->f_bfree = buf->f_bavail =
1664 (buf->f_blocks > curblock) ?
1665 (buf->f_blocks - curblock) : 0;
1666 }
1667
Chengguang Xubf2cbd32020-01-04 22:20:04 +08001668 limit = min_not_zero(dquot->dq_dqb.dqb_isoftlimit,
1669 dquot->dq_dqb.dqb_ihardlimit);
Chengguang Xu909110c2019-11-25 11:20:36 +08001670
Chao Yuddc34e32017-07-29 00:32:53 +08001671 if (limit && buf->f_files > limit) {
1672 buf->f_files = limit;
1673 buf->f_ffree =
1674 (buf->f_files > dquot->dq_dqb.dqb_curinodes) ?
1675 (buf->f_files - dquot->dq_dqb.dqb_curinodes) : 0;
1676 }
1677
Sheng Yong955ac6e2018-07-24 20:17:53 +08001678 spin_unlock(&dquot->dq_dqb_lock);
Chao Yuddc34e32017-07-29 00:32:53 +08001679 dqput(dquot);
1680 return 0;
1681}
1682#endif
1683
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001684static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
1685{
1686 struct super_block *sb = dentry->d_sb;
1687 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1688 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Jaegeuk Kimf66c0272018-01-03 10:55:07 -08001689 block_t total_count, user_block_count, start_count;
Jaegeuk Kim0cc091d2017-06-21 20:55:55 -07001690 u64 avail_node_count;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001691
1692 total_count = le64_to_cpu(sbi->raw_super->block_count);
1693 user_block_count = sbi->user_block_count;
1694 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001695 buf->f_type = F2FS_SUPER_MAGIC;
1696 buf->f_bsize = sbi->blocksize;
1697
1698 buf->f_blocks = total_count - start_count;
Jaegeuk Kimf66c0272018-01-03 10:55:07 -08001699 buf->f_bfree = user_block_count - valid_user_blocks(sbi) -
Yunlong Song80d42142017-10-27 20:45:05 +08001700 sbi->current_reserved_blocks;
Chao Yuc9c8ed52019-05-05 11:40:46 +08001701
1702 spin_lock(&sbi->stat_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001703 if (unlikely(buf->f_bfree <= sbi->unusable_block_count))
1704 buf->f_bfree = 0;
1705 else
1706 buf->f_bfree -= sbi->unusable_block_count;
Chao Yuc9c8ed52019-05-05 11:40:46 +08001707 spin_unlock(&sbi->stat_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001708
Chao Yu63189b72018-03-08 14:22:56 +08001709 if (buf->f_bfree > F2FS_OPTION(sbi).root_reserved_blocks)
1710 buf->f_bavail = buf->f_bfree -
1711 F2FS_OPTION(sbi).root_reserved_blocks;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08001712 else
1713 buf->f_bavail = 0;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001714
Chao Yu27cae0b2019-08-05 18:27:25 +08001715 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
Jaegeuk Kim0cc091d2017-06-21 20:55:55 -07001716
1717 if (avail_node_count > user_block_count) {
1718 buf->f_files = user_block_count;
1719 buf->f_ffree = buf->f_bavail;
1720 } else {
1721 buf->f_files = avail_node_count;
1722 buf->f_ffree = min(avail_node_count - valid_node_count(sbi),
1723 buf->f_bavail);
1724 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001725
Jaegeuk Kim5a20d332013-03-03 13:58:05 +09001726 buf->f_namelen = F2FS_NAME_LEN;
Al Viro6d1349c2020-09-18 16:45:50 -04001727 buf->f_fsid = u64_to_fsid(id);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001728
Chao Yuddc34e32017-07-29 00:32:53 +08001729#ifdef CONFIG_QUOTA
1730 if (is_inode_flag_set(dentry->d_inode, FI_PROJ_INHERIT) &&
1731 sb_has_quota_limits_enabled(sb, PRJQUOTA)) {
1732 f2fs_statfs_project(sb, F2FS_I(dentry->d_inode)->i_projid, buf);
1733 }
1734#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001735 return 0;
1736}
1737
Chao Yu4b2414d2017-08-08 10:54:31 +08001738static inline void f2fs_show_quota_options(struct seq_file *seq,
1739 struct super_block *sb)
1740{
1741#ifdef CONFIG_QUOTA
1742 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1743
Chao Yu63189b72018-03-08 14:22:56 +08001744 if (F2FS_OPTION(sbi).s_jquota_fmt) {
Chao Yu4b2414d2017-08-08 10:54:31 +08001745 char *fmtname = "";
1746
Chao Yu63189b72018-03-08 14:22:56 +08001747 switch (F2FS_OPTION(sbi).s_jquota_fmt) {
Chao Yu4b2414d2017-08-08 10:54:31 +08001748 case QFMT_VFS_OLD:
1749 fmtname = "vfsold";
1750 break;
1751 case QFMT_VFS_V0:
1752 fmtname = "vfsv0";
1753 break;
1754 case QFMT_VFS_V1:
1755 fmtname = "vfsv1";
1756 break;
1757 }
1758 seq_printf(seq, ",jqfmt=%s", fmtname);
1759 }
1760
Chao Yu63189b72018-03-08 14:22:56 +08001761 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
1762 seq_show_option(seq, "usrjquota",
1763 F2FS_OPTION(sbi).s_qf_names[USRQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001764
Chao Yu63189b72018-03-08 14:22:56 +08001765 if (F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
1766 seq_show_option(seq, "grpjquota",
1767 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001768
Chao Yu63189b72018-03-08 14:22:56 +08001769 if (F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
1770 seq_show_option(seq, "prjjquota",
1771 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001772#endif
1773}
1774
Chao Yucd6ee732021-02-20 17:38:41 +08001775#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001776static inline void f2fs_show_compress_options(struct seq_file *seq,
1777 struct super_block *sb)
1778{
1779 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1780 char *algtype = "";
1781 int i;
1782
1783 if (!f2fs_sb_has_compression(sbi))
1784 return;
1785
1786 switch (F2FS_OPTION(sbi).compress_algorithm) {
1787 case COMPRESS_LZO:
1788 algtype = "lzo";
1789 break;
1790 case COMPRESS_LZ4:
1791 algtype = "lz4";
1792 break;
Chao Yu50cfa662020-03-03 17:46:02 +08001793 case COMPRESS_ZSTD:
1794 algtype = "zstd";
1795 break;
Chao Yu6d92b202020-04-08 19:56:32 +08001796 case COMPRESS_LZORLE:
1797 algtype = "lzo-rle";
1798 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001799 }
1800 seq_printf(seq, ",compress_algorithm=%s", algtype);
1801
Chao Yu3fde13f2021-01-22 17:46:43 +08001802 if (F2FS_OPTION(sbi).compress_level)
1803 seq_printf(seq, ":%d", F2FS_OPTION(sbi).compress_level);
1804
Chao Yu4c8ff702019-11-01 18:07:14 +08001805 seq_printf(seq, ",compress_log_size=%u",
1806 F2FS_OPTION(sbi).compress_log_size);
1807
1808 for (i = 0; i < F2FS_OPTION(sbi).compress_ext_cnt; i++) {
1809 seq_printf(seq, ",compress_extension=%s",
1810 F2FS_OPTION(sbi).extensions[i]);
1811 }
Chao Yub28f0472020-11-26 18:32:09 +08001812
Fengnan Chang151b1982021-06-08 19:15:08 +08001813 for (i = 0; i < F2FS_OPTION(sbi).nocompress_ext_cnt; i++) {
1814 seq_printf(seq, ",nocompress_extension=%s",
1815 F2FS_OPTION(sbi).noextensions[i]);
1816 }
1817
Chao Yub28f0472020-11-26 18:32:09 +08001818 if (F2FS_OPTION(sbi).compress_chksum)
1819 seq_puts(seq, ",compress_chksum");
Daeho Jeong602a16d2020-12-01 13:08:02 +09001820
1821 if (F2FS_OPTION(sbi).compress_mode == COMPR_MODE_FS)
1822 seq_printf(seq, ",compress_mode=%s", "fs");
1823 else if (F2FS_OPTION(sbi).compress_mode == COMPR_MODE_USER)
1824 seq_printf(seq, ",compress_mode=%s", "user");
Chao Yu6ce19af2021-05-20 19:51:50 +08001825
1826 if (test_opt(sbi, COMPRESS_CACHE))
1827 seq_puts(seq, ",compress_cache");
Chao Yu4c8ff702019-11-01 18:07:14 +08001828}
Chao Yucd6ee732021-02-20 17:38:41 +08001829#endif
Chao Yu4c8ff702019-11-01 18:07:14 +08001830
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001831static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
1832{
1833 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
1834
Chao Yubbbc34f2020-02-14 17:44:13 +08001835 if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_SYNC)
1836 seq_printf(seq, ",background_gc=%s", "sync");
1837 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_ON)
1838 seq_printf(seq, ",background_gc=%s", "on");
1839 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF)
Namjae Jeon696c0182013-06-16 09:48:48 +09001840 seq_printf(seq, ",background_gc=%s", "off");
Chao Yubbbc34f2020-02-14 17:44:13 +08001841
Chao Yu5911d2d2021-03-27 17:57:06 +08001842 if (test_opt(sbi, GC_MERGE))
1843 seq_puts(seq, ",gc_merge");
1844
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001845 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
1846 seq_puts(seq, ",disable_roll_forward");
Chao Yua9117ec2020-02-14 17:45:11 +08001847 if (test_opt(sbi, NORECOVERY))
1848 seq_puts(seq, ",norecovery");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001849 if (test_opt(sbi, DISCARD))
1850 seq_puts(seq, ",discard");
Sahitya Tummala81621f92019-05-24 14:38:39 +05301851 else
1852 seq_puts(seq, ",nodiscard");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001853 if (test_opt(sbi, NOHEAP))
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04001854 seq_puts(seq, ",no_heap");
1855 else
1856 seq_puts(seq, ",heap");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001857#ifdef CONFIG_F2FS_FS_XATTR
1858 if (test_opt(sbi, XATTR_USER))
1859 seq_puts(seq, ",user_xattr");
1860 else
1861 seq_puts(seq, ",nouser_xattr");
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001862 if (test_opt(sbi, INLINE_XATTR))
1863 seq_puts(seq, ",inline_xattr");
Chao Yu23cf7212017-02-15 10:34:45 +08001864 else
1865 seq_puts(seq, ",noinline_xattr");
Chao Yu6afc6622017-09-06 21:59:50 +08001866 if (test_opt(sbi, INLINE_XATTR_SIZE))
1867 seq_printf(seq, ",inline_xattr_size=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001868 F2FS_OPTION(sbi).inline_xattr_size);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001869#endif
1870#ifdef CONFIG_F2FS_FS_POSIX_ACL
1871 if (test_opt(sbi, POSIX_ACL))
1872 seq_puts(seq, ",acl");
1873 else
1874 seq_puts(seq, ",noacl");
1875#endif
1876 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
Alejandro Martinez Ruizaa435072013-01-25 19:08:59 +01001877 seq_puts(seq, ",disable_ext_identify");
Huajun Li8274de72013-11-10 23:13:17 +08001878 if (test_opt(sbi, INLINE_DATA))
1879 seq_puts(seq, ",inline_data");
Wanpeng Li75342792015-03-24 10:20:27 +08001880 else
1881 seq_puts(seq, ",noinline_data");
Chao Yu5efd3c62014-09-24 18:16:13 +08001882 if (test_opt(sbi, INLINE_DENTRY))
1883 seq_puts(seq, ",inline_dentry");
Chao Yu97c17942016-05-09 19:56:34 +08001884 else
1885 seq_puts(seq, ",noinline_dentry");
Gu Zhengb270ad62014-04-11 17:49:55 +08001886 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, FLUSH_MERGE))
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09001887 seq_puts(seq, ",flush_merge");
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -07001888 if (test_opt(sbi, NOBARRIER))
1889 seq_puts(seq, ",nobarrier");
Jaegeuk Kimd5053a342014-10-30 22:47:03 -07001890 if (test_opt(sbi, FASTBOOT))
1891 seq_puts(seq, ",fastboot");
Chao Yu89672152015-02-05 17:55:51 +08001892 if (test_opt(sbi, EXTENT_CACHE))
1893 seq_puts(seq, ",extent_cache");
Jaegeuk Kim7daaea22015-06-25 17:43:04 -07001894 else
1895 seq_puts(seq, ",noextent_cache");
Chao Yu343f40f2015-12-16 13:12:16 +08001896 if (test_opt(sbi, DATA_FLUSH))
1897 seq_puts(seq, ",data_flush");
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001898
1899 seq_puts(seq, ",mode=");
Chao Yub0332a02020-02-14 17:44:12 +08001900 if (F2FS_OPTION(sbi).fs_mode == FS_MODE_ADAPTIVE)
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001901 seq_puts(seq, "adaptive");
Chao Yub0332a02020-02-14 17:44:12 +08001902 else if (F2FS_OPTION(sbi).fs_mode == FS_MODE_LFS)
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001903 seq_puts(seq, "lfs");
Daeho Jeong6691d942021-09-29 11:12:03 -07001904 else if (F2FS_OPTION(sbi).fs_mode == FS_MODE_FRAGMENT_SEG)
1905 seq_puts(seq, "fragment:segment");
1906 else if (F2FS_OPTION(sbi).fs_mode == FS_MODE_FRAGMENT_BLK)
1907 seq_puts(seq, "fragment:block");
Chao Yu63189b72018-03-08 14:22:56 +08001908 seq_printf(seq, ",active_logs=%u", F2FS_OPTION(sbi).active_logs);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08001909 if (test_opt(sbi, RESERVE_ROOT))
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -08001910 seq_printf(seq, ",reserve_root=%u,resuid=%u,resgid=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001911 F2FS_OPTION(sbi).root_reserved_blocks,
1912 from_kuid_munged(&init_user_ns,
1913 F2FS_OPTION(sbi).s_resuid),
1914 from_kgid_munged(&init_user_ns,
1915 F2FS_OPTION(sbi).s_resgid));
Jaegeuk Kimec915382016-12-21 17:09:19 -08001916 if (F2FS_IO_SIZE_BITS(sbi))
Chengguang Xuc6b18672018-09-22 22:43:09 +08001917 seq_printf(seq, ",io_bits=%u",
1918 F2FS_OPTION(sbi).write_io_size_bits);
Kaixu Xia0cc0dec2017-01-27 09:35:37 +08001919#ifdef CONFIG_F2FS_FAULT_INJECTION
Chao Yud4945002018-08-08 17:36:41 +08001920 if (test_opt(sbi, FAULT_INJECTION)) {
Chao Yu44529f82017-06-12 09:44:24 +08001921 seq_printf(seq, ",fault_injection=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001922 F2FS_OPTION(sbi).fault_info.inject_rate);
Chao Yud4945002018-08-08 17:36:41 +08001923 seq_printf(seq, ",fault_type=%u",
1924 F2FS_OPTION(sbi).fault_info.inject_type);
1925 }
Kaixu Xia0cc0dec2017-01-27 09:35:37 +08001926#endif
Chao Yu0abd6752017-07-09 00:13:07 +08001927#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +08001928 if (test_opt(sbi, QUOTA))
1929 seq_puts(seq, ",quota");
Chao Yu0abd6752017-07-09 00:13:07 +08001930 if (test_opt(sbi, USRQUOTA))
1931 seq_puts(seq, ",usrquota");
1932 if (test_opt(sbi, GRPQUOTA))
1933 seq_puts(seq, ",grpquota");
Chao Yu5c571322017-07-26 00:01:41 +08001934 if (test_opt(sbi, PRJQUOTA))
1935 seq_puts(seq, ",prjquota");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001936#endif
Chao Yu4b2414d2017-08-08 10:54:31 +08001937 f2fs_show_quota_options(seq, sbi->sb);
Chao Yu63189b72018-03-08 14:22:56 +08001938 if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_USER)
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001939 seq_printf(seq, ",whint_mode=%s", "user-based");
Chao Yu63189b72018-03-08 14:22:56 +08001940 else if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_FS)
Hyunchul Leef2e703f2018-01-31 11:36:58 +09001941 seq_printf(seq, ",whint_mode=%s", "fs-based");
Eric Biggersed318a62020-05-12 16:32:50 -07001942
1943 fscrypt_show_test_dummy_encryption(seq, ',', sbi->sb);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001944
Satya Tangirala27aacd22020-07-02 01:56:06 +00001945 if (sbi->sb->s_flags & SB_INLINECRYPT)
1946 seq_puts(seq, ",inlinecrypt");
1947
Chao Yu63189b72018-03-08 14:22:56 +08001948 if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_DEFAULT)
Jaegeuk Kim07939622018-02-18 08:50:49 -08001949 seq_printf(seq, ",alloc_mode=%s", "default");
Chao Yu63189b72018-03-08 14:22:56 +08001950 else if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_REUSE)
Jaegeuk Kim07939622018-02-18 08:50:49 -08001951 seq_printf(seq, ",alloc_mode=%s", "reuse");
Junling Zheng93cf93f2018-03-07 12:07:49 +08001952
Daniel Rosenberg43549942018-08-20 19:21:43 -07001953 if (test_opt(sbi, DISABLE_CHECKPOINT))
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001954 seq_printf(seq, ",checkpoint=disable:%u",
1955 F2FS_OPTION(sbi).unusable_cap);
Daeho Jeong261eeb92021-01-19 09:00:42 +09001956 if (test_opt(sbi, MERGE_CHECKPOINT))
1957 seq_puts(seq, ",checkpoint_merge");
1958 else
1959 seq_puts(seq, ",nocheckpoint_merge");
Chao Yu63189b72018-03-08 14:22:56 +08001960 if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_POSIX)
Junling Zheng93cf93f2018-03-07 12:07:49 +08001961 seq_printf(seq, ",fsync_mode=%s", "posix");
Chao Yu63189b72018-03-08 14:22:56 +08001962 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_STRICT)
Junling Zheng93cf93f2018-03-07 12:07:49 +08001963 seq_printf(seq, ",fsync_mode=%s", "strict");
Sahitya Tummaladc132802018-07-02 11:37:40 +05301964 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_NOBARRIER)
1965 seq_printf(seq, ",fsync_mode=%s", "nobarrier");
Chao Yu4c8ff702019-11-01 18:07:14 +08001966
Chao Yu1f0b0672020-07-29 21:21:36 +08001967#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001968 f2fs_show_compress_options(seq, sbi->sb);
Chao Yu1f0b0672020-07-29 21:21:36 +08001969#endif
Chao Yu093749e2020-08-04 21:14:49 +08001970
1971 if (test_opt(sbi, ATGC))
1972 seq_puts(seq, ",atgc");
Chao Yu4f993262021-08-03 08:15:43 +08001973
1974 if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_BLOCK)
1975 seq_printf(seq, ",discard_unit=%s", "block");
1976 else if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_SEGMENT)
1977 seq_printf(seq, ",discard_unit=%s", "segment");
1978 else if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_SECTION)
1979 seq_printf(seq, ",discard_unit=%s", "section");
1980
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001981 return 0;
1982}
1983
Yunlei He498c5e92015-05-07 18:11:37 +08001984static void default_options(struct f2fs_sb_info *sbi)
1985{
1986 /* init some FS parameters */
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001987 if (f2fs_sb_has_readonly(sbi))
1988 F2FS_OPTION(sbi).active_logs = NR_CURSEG_RO_TYPE;
1989 else
1990 F2FS_OPTION(sbi).active_logs = NR_CURSEG_PERSIST_TYPE;
1991
Chao Yu63189b72018-03-08 14:22:56 +08001992 F2FS_OPTION(sbi).inline_xattr_size = DEFAULT_INLINE_XATTR_ADDRS;
1993 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
1994 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
1995 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
Chao Yu0aa7e0f2018-06-06 23:55:02 +08001996 F2FS_OPTION(sbi).s_resuid = make_kuid(&init_user_ns, F2FS_DEF_RESUID);
1997 F2FS_OPTION(sbi).s_resgid = make_kgid(&init_user_ns, F2FS_DEF_RESGID);
Chao Yu91faa532020-03-10 20:50:05 +08001998 F2FS_OPTION(sbi).compress_algorithm = COMPRESS_LZ4;
Chao Yu4c8ff702019-11-01 18:07:14 +08001999 F2FS_OPTION(sbi).compress_log_size = MIN_COMPRESS_LOG_SIZE;
2000 F2FS_OPTION(sbi).compress_ext_cnt = 0;
Daeho Jeong602a16d2020-12-01 13:08:02 +09002001 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_FS;
Chao Yubbbc34f2020-02-14 17:44:13 +08002002 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
Yunlei He498c5e92015-05-07 18:11:37 +08002003
Satya Tangirala27aacd22020-07-02 01:56:06 +00002004 sbi->sb->s_flags &= ~SB_INLINECRYPT;
2005
Chao Yu39133a52017-02-08 17:39:44 +08002006 set_opt(sbi, INLINE_XATTR);
Yunlei He498c5e92015-05-07 18:11:37 +08002007 set_opt(sbi, INLINE_DATA);
Chao Yu97c17942016-05-09 19:56:34 +08002008 set_opt(sbi, INLINE_DENTRY);
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07002009 set_opt(sbi, EXTENT_CACHE);
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04002010 set_opt(sbi, NOHEAP);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002011 clear_opt(sbi, DISABLE_CHECKPOINT);
Jaegeuk Kimb5d15192021-04-01 17:25:20 -07002012 set_opt(sbi, MERGE_CHECKPOINT);
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002013 F2FS_OPTION(sbi).unusable_cap = 0;
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002014 sbi->sb->s_flags |= SB_LAZYTIME;
Jaegeuk Kim69e9e422016-05-20 22:39:20 -07002015 set_opt(sbi, FLUSH_MERGE);
Chao Yuf7db8dd2021-08-30 08:35:33 +08002016 if (f2fs_hw_support_discard(sbi) || f2fs_hw_should_discard(sbi))
2017 set_opt(sbi, DISCARD);
Chao Yu4f993262021-08-03 08:15:43 +08002018 if (f2fs_sb_has_blkzoned(sbi)) {
Chao Yub0332a02020-02-14 17:44:12 +08002019 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
Chao Yu4f993262021-08-03 08:15:43 +08002020 F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_SECTION;
2021 } else {
Chao Yub0332a02020-02-14 17:44:12 +08002022 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
Chao Yu4f993262021-08-03 08:15:43 +08002023 F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_BLOCK;
2024 }
Yunlei He498c5e92015-05-07 18:11:37 +08002025
2026#ifdef CONFIG_F2FS_FS_XATTR
2027 set_opt(sbi, XATTR_USER);
2028#endif
2029#ifdef CONFIG_F2FS_FS_POSIX_ACL
2030 set_opt(sbi, POSIX_ACL);
2031#endif
Chao Yu36dbd322016-09-26 19:45:05 +08002032
Chao Yud4945002018-08-08 17:36:41 +08002033 f2fs_build_fault_attr(sbi, 0, 0);
Yunlei He498c5e92015-05-07 18:11:37 +08002034}
2035
Jaegeuk Kimea676732017-10-06 09:14:28 -07002036#ifdef CONFIG_QUOTA
2037static int f2fs_enable_quotas(struct super_block *sb);
2038#endif
Daniel Rosenberg43549942018-08-20 19:21:43 -07002039
2040static int f2fs_disable_checkpoint(struct f2fs_sb_info *sbi)
2041{
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002042 unsigned int s_flags = sbi->sb->s_flags;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002043 struct cp_control cpc;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002044 int err = 0;
2045 int ret;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002046 block_t unusable;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002047
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002048 if (s_flags & SB_RDONLY) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002049 f2fs_err(sbi, "checkpoint=disable on readonly fs");
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002050 return -EINVAL;
2051 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002052 sbi->sb->s_flags |= SB_ACTIVE;
2053
Daniel Rosenberg43549942018-08-20 19:21:43 -07002054 f2fs_update_time(sbi, DISABLE_TIME);
2055
2056 while (!f2fs_time_over(sbi, DISABLE_TIME)) {
Chao Yufb24fea2020-01-14 19:36:50 +08002057 down_write(&sbi->gc_lock);
Chao Yu7dede8862021-02-20 17:35:40 +08002058 err = f2fs_gc(sbi, true, false, false, NULL_SEGNO);
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002059 if (err == -ENODATA) {
2060 err = 0;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002061 break;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002062 }
Jaegeuk Kim8f31b462018-12-17 17:08:26 -08002063 if (err && err != -EAGAIN)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002064 break;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002065 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002066
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002067 ret = sync_filesystem(sbi->sb);
2068 if (ret || err) {
Yi Zhuang5f029c02021-04-06 09:47:35 +08002069 err = ret ? ret : err;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002070 goto restore_flag;
2071 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002072
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002073 unusable = f2fs_get_unusable_blocks(sbi);
2074 if (f2fs_disable_cp_again(sbi, unusable)) {
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002075 err = -EAGAIN;
2076 goto restore_flag;
2077 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002078
Chao Yufb24fea2020-01-14 19:36:50 +08002079 down_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002080 cpc.reason = CP_PAUSE;
2081 set_sbi_flag(sbi, SBI_CP_DISABLED);
Chao Yu896285a2019-04-26 17:57:54 +08002082 err = f2fs_write_checkpoint(sbi, &cpc);
2083 if (err)
2084 goto out_unlock;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002085
Chao Yuc9c8ed52019-05-05 11:40:46 +08002086 spin_lock(&sbi->stat_lock);
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002087 sbi->unusable_block_count = unusable;
Chao Yuc9c8ed52019-05-05 11:40:46 +08002088 spin_unlock(&sbi->stat_lock);
2089
Chao Yu896285a2019-04-26 17:57:54 +08002090out_unlock:
Chao Yufb24fea2020-01-14 19:36:50 +08002091 up_write(&sbi->gc_lock);
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002092restore_flag:
Chao Yu7a88ddb2020-02-27 19:30:05 +08002093 sbi->sb->s_flags = s_flags; /* Restore SB_RDONLY status */
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002094 return err;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002095}
2096
2097static void f2fs_enable_checkpoint(struct f2fs_sb_info *sbi)
2098{
Jaegeuk Kimdddd3d62021-08-19 14:00:57 -07002099 int retry = DEFAULT_RETRY_IO_COUNT;
2100
Jaegeuk Kimb0ff4fe2021-01-26 17:00:42 -08002101 /* we should flush all the data to keep data consistency */
Jaegeuk Kimdddd3d62021-08-19 14:00:57 -07002102 do {
2103 sync_inodes_sb(sbi->sb);
2104 cond_resched();
2105 congestion_wait(BLK_RW_ASYNC, DEFAULT_IO_TIMEOUT);
2106 } while (get_pages(sbi, F2FS_DIRTY_DATA) && retry--);
2107
2108 if (unlikely(retry < 0))
2109 f2fs_warn(sbi, "checkpoint=enable has some unwritten data.");
Jaegeuk Kimb0ff4fe2021-01-26 17:00:42 -08002110
Chao Yufb24fea2020-01-14 19:36:50 +08002111 down_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002112 f2fs_dirty_to_prefree(sbi);
2113
2114 clear_sbi_flag(sbi, SBI_CP_DISABLED);
2115 set_sbi_flag(sbi, SBI_IS_DIRTY);
Chao Yufb24fea2020-01-14 19:36:50 +08002116 up_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002117
2118 f2fs_sync_fs(sbi->sb, 1);
2119}
2120
Namjae Jeon696c0182013-06-16 09:48:48 +09002121static int f2fs_remount(struct super_block *sb, int *flags, char *data)
2122{
2123 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2124 struct f2fs_mount_info org_mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002125 unsigned long old_sb_flags;
Chao Yu63189b72018-03-08 14:22:56 +08002126 int err;
Chao Yu3fd97352021-03-17 17:56:04 +08002127 bool need_restart_gc = false, need_stop_gc = false;
2128 bool need_restart_ckpt = false, need_stop_ckpt = false;
2129 bool need_restart_flush = false, need_stop_flush = false;
Fengnan Chang4d674902021-08-19 16:02:37 +08002130 bool need_restart_discard = false, need_stop_discard = false;
Chao Yu9cd81ce2015-09-18 16:55:26 +08002131 bool no_extent_cache = !test_opt(sbi, EXTENT_CACHE);
Chao Yu277afbd2021-07-29 09:22:17 +08002132 bool enable_checkpoint = !test_opt(sbi, DISABLE_CHECKPOINT);
Chao Yu1f78adf2019-07-12 16:57:00 +08002133 bool no_io_align = !F2FS_IO_ALIGNED(sbi);
Chao Yu093749e2020-08-04 21:14:49 +08002134 bool no_atgc = !test_opt(sbi, ATGC);
Fengnan Chang4d674902021-08-19 16:02:37 +08002135 bool no_discard = !test_opt(sbi, DISCARD);
Chao Yu6ce19af2021-05-20 19:51:50 +08002136 bool no_compress_cache = !test_opt(sbi, COMPRESS_CACHE);
Chao Yu4f993262021-08-03 08:15:43 +08002137 bool block_unit_discard = f2fs_block_unit_discard(sbi);
Fengnan Chang4d674902021-08-19 16:02:37 +08002138 struct discard_cmd_control *dcc;
Chao Yu4b2414d2017-08-08 10:54:31 +08002139#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +08002140 int i, j;
2141#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002142
2143 /*
2144 * Save the old mount options in case we
2145 * need to restore them.
2146 */
2147 org_mount_opt = sbi->mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002148 old_sb_flags = sb->s_flags;
Namjae Jeon696c0182013-06-16 09:48:48 +09002149
Chao Yu4b2414d2017-08-08 10:54:31 +08002150#ifdef CONFIG_QUOTA
Chao Yu63189b72018-03-08 14:22:56 +08002151 org_mount_opt.s_jquota_fmt = F2FS_OPTION(sbi).s_jquota_fmt;
Chao Yu4b2414d2017-08-08 10:54:31 +08002152 for (i = 0; i < MAXQUOTAS; i++) {
Chao Yu63189b72018-03-08 14:22:56 +08002153 if (F2FS_OPTION(sbi).s_qf_names[i]) {
2154 org_mount_opt.s_qf_names[i] =
2155 kstrdup(F2FS_OPTION(sbi).s_qf_names[i],
2156 GFP_KERNEL);
2157 if (!org_mount_opt.s_qf_names[i]) {
Chao Yu4b2414d2017-08-08 10:54:31 +08002158 for (j = 0; j < i; j++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08002159 kfree(org_mount_opt.s_qf_names[j]);
Chao Yu4b2414d2017-08-08 10:54:31 +08002160 return -ENOMEM;
2161 }
2162 } else {
Chao Yu63189b72018-03-08 14:22:56 +08002163 org_mount_opt.s_qf_names[i] = NULL;
Chao Yu4b2414d2017-08-08 10:54:31 +08002164 }
2165 }
2166#endif
2167
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002168 /* recover superblocks we couldn't write due to previous RO mount */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002169 if (!(*flags & SB_RDONLY) && is_sbi_flag_set(sbi, SBI_NEED_SB_WRITE)) {
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002170 err = f2fs_commit_super(sbi, false);
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002171 f2fs_info(sbi, "Try to recover all the superblocks, ret: %d",
2172 err);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002173 if (!err)
2174 clear_sbi_flag(sbi, SBI_NEED_SB_WRITE);
2175 }
2176
Yunlei He498c5e92015-05-07 18:11:37 +08002177 default_options(sbi);
Chao Yu26666c82014-09-15 18:04:44 +08002178
Namjae Jeon696c0182013-06-16 09:48:48 +09002179 /* parse mount options */
Eric Biggersed318a62020-05-12 16:32:50 -07002180 err = parse_options(sb, data, true);
Namjae Jeon696c0182013-06-16 09:48:48 +09002181 if (err)
2182 goto restore_opts;
2183
2184 /*
2185 * Previous and new state of filesystem is RO,
Gu Zheng876dc592014-04-11 17:50:00 +08002186 * so skip checking GC and FLUSH_MERGE conditions.
Namjae Jeon696c0182013-06-16 09:48:48 +09002187 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002188 if (f2fs_readonly(sb) && (*flags & SB_RDONLY))
Namjae Jeon696c0182013-06-16 09:48:48 +09002189 goto skip;
2190
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07002191 if (f2fs_sb_has_readonly(sbi) && !(*flags & SB_RDONLY)) {
2192 err = -EROFS;
2193 goto restore_opts;
2194 }
2195
Jaegeuk Kimea676732017-10-06 09:14:28 -07002196#ifdef CONFIG_QUOTA
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002197 if (!f2fs_readonly(sb) && (*flags & SB_RDONLY)) {
Chao Yu0abd6752017-07-09 00:13:07 +08002198 err = dquot_suspend(sb, -1);
2199 if (err < 0)
2200 goto restore_opts;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002201 } else if (f2fs_readonly(sb) && !(*flags & SB_RDONLY)) {
Chao Yu0abd6752017-07-09 00:13:07 +08002202 /* dquot_resume needs RW */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002203 sb->s_flags &= ~SB_RDONLY;
Jaegeuk Kimea676732017-10-06 09:14:28 -07002204 if (sb_any_quota_suspended(sb)) {
2205 dquot_resume(sb, -1);
Chao Yu7beb01f2018-10-24 18:34:26 +08002206 } else if (f2fs_sb_has_quota_ino(sbi)) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002207 err = f2fs_enable_quotas(sb);
2208 if (err)
2209 goto restore_opts;
2210 }
Chao Yu0abd6752017-07-09 00:13:07 +08002211 }
Jaegeuk Kimea676732017-10-06 09:14:28 -07002212#endif
Chao Yu093749e2020-08-04 21:14:49 +08002213 /* disallow enable atgc dynamically */
2214 if (no_atgc == !!test_opt(sbi, ATGC)) {
2215 err = -EINVAL;
2216 f2fs_warn(sbi, "switch atgc option is not allowed");
2217 goto restore_opts;
2218 }
2219
Chao Yu9cd81ce2015-09-18 16:55:26 +08002220 /* disallow enable/disable extent_cache dynamically */
2221 if (no_extent_cache == !!test_opt(sbi, EXTENT_CACHE)) {
2222 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002223 f2fs_warn(sbi, "switch extent_cache option is not allowed");
Chao Yu9cd81ce2015-09-18 16:55:26 +08002224 goto restore_opts;
2225 }
2226
Chao Yu1f78adf2019-07-12 16:57:00 +08002227 if (no_io_align == !!F2FS_IO_ALIGNED(sbi)) {
2228 err = -EINVAL;
2229 f2fs_warn(sbi, "switch io_bits option is not allowed");
2230 goto restore_opts;
2231 }
2232
Chao Yu6ce19af2021-05-20 19:51:50 +08002233 if (no_compress_cache == !!test_opt(sbi, COMPRESS_CACHE)) {
2234 err = -EINVAL;
2235 f2fs_warn(sbi, "switch compress_cache option is not allowed");
2236 goto restore_opts;
2237 }
2238
Chao Yu4f993262021-08-03 08:15:43 +08002239 if (block_unit_discard != f2fs_block_unit_discard(sbi)) {
2240 err = -EINVAL;
2241 f2fs_warn(sbi, "switch discard_unit option is not allowed");
2242 goto restore_opts;
2243 }
2244
Daniel Rosenberg43549942018-08-20 19:21:43 -07002245 if ((*flags & SB_RDONLY) && test_opt(sbi, DISABLE_CHECKPOINT)) {
2246 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002247 f2fs_warn(sbi, "disabling checkpoint not compatible with read-only");
Daniel Rosenberg43549942018-08-20 19:21:43 -07002248 goto restore_opts;
2249 }
2250
Namjae Jeon696c0182013-06-16 09:48:48 +09002251 /*
2252 * We stop the GC thread if FS is mounted as RO
2253 * or if background_gc = off is passed in mount
2254 * option. Also sync the filesystem.
2255 */
Chao Yubbbc34f2020-02-14 17:44:13 +08002256 if ((*flags & SB_RDONLY) ||
Chao Yu5911d2d2021-03-27 17:57:06 +08002257 (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF &&
2258 !test_opt(sbi, GC_MERGE))) {
Namjae Jeon696c0182013-06-16 09:48:48 +09002259 if (sbi->gc_thread) {
Chao Yu4d57b862018-05-30 00:20:41 +08002260 f2fs_stop_gc_thread(sbi);
Gu Zheng876dc592014-04-11 17:50:00 +08002261 need_restart_gc = true;
Namjae Jeon696c0182013-06-16 09:48:48 +09002262 }
Chao Yuaba291b2014-11-18 11:17:20 +08002263 } else if (!sbi->gc_thread) {
Chao Yu4d57b862018-05-30 00:20:41 +08002264 err = f2fs_start_gc_thread(sbi);
Namjae Jeon696c0182013-06-16 09:48:48 +09002265 if (err)
2266 goto restore_opts;
Gu Zheng876dc592014-04-11 17:50:00 +08002267 need_stop_gc = true;
2268 }
2269
Chao Yu63189b72018-03-08 14:22:56 +08002270 if (*flags & SB_RDONLY ||
2271 F2FS_OPTION(sbi).whint_mode != org_mount_opt.whint_mode) {
Jaegeuk Kimfaa0e552016-03-24 10:29:39 -07002272 sync_inodes_sb(sb);
2273
2274 set_sbi_flag(sbi, SBI_IS_DIRTY);
2275 set_sbi_flag(sbi, SBI_IS_CLOSE);
2276 f2fs_sync_fs(sb, 1);
2277 clear_sbi_flag(sbi, SBI_IS_CLOSE);
2278 }
2279
Chao Yu3f7070b2021-03-17 17:56:03 +08002280 if ((*flags & SB_RDONLY) || test_opt(sbi, DISABLE_CHECKPOINT) ||
2281 !test_opt(sbi, MERGE_CHECKPOINT)) {
2282 f2fs_stop_ckpt_thread(sbi);
Chao Yu3fd97352021-03-17 17:56:04 +08002283 need_restart_ckpt = true;
Chao Yu3f7070b2021-03-17 17:56:03 +08002284 } else {
Daeho Jeong261eeb92021-01-19 09:00:42 +09002285 err = f2fs_start_ckpt_thread(sbi);
2286 if (err) {
2287 f2fs_err(sbi,
2288 "Failed to start F2FS issue_checkpoint_thread (%d)",
2289 err);
2290 goto restore_gc;
2291 }
Chao Yu3fd97352021-03-17 17:56:04 +08002292 need_stop_ckpt = true;
Daeho Jeong261eeb92021-01-19 09:00:42 +09002293 }
2294
Gu Zheng876dc592014-04-11 17:50:00 +08002295 /*
2296 * We stop issue flush thread if FS is mounted as RO
2297 * or if flush_merge is not passed in mount option.
2298 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002299 if ((*flags & SB_RDONLY) || !test_opt(sbi, FLUSH_MERGE)) {
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -08002300 clear_opt(sbi, FLUSH_MERGE);
Chao Yu4d57b862018-05-30 00:20:41 +08002301 f2fs_destroy_flush_cmd_control(sbi, false);
Chao Yu3fd97352021-03-17 17:56:04 +08002302 need_restart_flush = true;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -08002303 } else {
Chao Yu4d57b862018-05-30 00:20:41 +08002304 err = f2fs_create_flush_cmd_control(sbi);
Gu Zheng2163d192014-04-27 14:21:33 +08002305 if (err)
Chao Yu3fd97352021-03-17 17:56:04 +08002306 goto restore_ckpt;
2307 need_stop_flush = true;
Namjae Jeon696c0182013-06-16 09:48:48 +09002308 }
Chao Yu3fd97352021-03-17 17:56:04 +08002309
Fengnan Chang4d674902021-08-19 16:02:37 +08002310 if (no_discard == !!test_opt(sbi, DISCARD)) {
2311 if (test_opt(sbi, DISCARD)) {
2312 err = f2fs_start_discard_thread(sbi);
2313 if (err)
2314 goto restore_flush;
2315 need_stop_discard = true;
2316 } else {
2317 dcc = SM_I(sbi)->dcc_info;
2318 f2fs_stop_discard_thread(sbi);
2319 if (atomic_read(&dcc->discard_cmd_cnt))
2320 f2fs_issue_discard_timeout(sbi);
2321 need_restart_discard = true;
2322 }
2323 }
2324
Chao Yu277afbd2021-07-29 09:22:17 +08002325 if (enable_checkpoint == !!test_opt(sbi, DISABLE_CHECKPOINT)) {
Chao Yu3fd97352021-03-17 17:56:04 +08002326 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
2327 err = f2fs_disable_checkpoint(sbi);
2328 if (err)
Fengnan Chang4d674902021-08-19 16:02:37 +08002329 goto restore_discard;
Chao Yu3fd97352021-03-17 17:56:04 +08002330 } else {
2331 f2fs_enable_checkpoint(sbi);
2332 }
2333 }
2334
Namjae Jeon696c0182013-06-16 09:48:48 +09002335skip:
Chao Yu4b2414d2017-08-08 10:54:31 +08002336#ifdef CONFIG_QUOTA
2337 /* Release old quota file names */
2338 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08002339 kfree(org_mount_opt.s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08002340#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002341 /* Update the POSIXACL Flag */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002342 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
2343 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002344
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08002345 limit_reserve_root(sbi);
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -07002346 adjust_unusable_cap_perc(sbi);
Jaegeuk Kim095680f2018-09-28 00:24:39 -07002347 *flags = (*flags & ~SB_LAZYTIME) | (sb->s_flags & SB_LAZYTIME);
Namjae Jeon696c0182013-06-16 09:48:48 +09002348 return 0;
Fengnan Chang4d674902021-08-19 16:02:37 +08002349restore_discard:
2350 if (need_restart_discard) {
2351 if (f2fs_start_discard_thread(sbi))
2352 f2fs_warn(sbi, "discard has been stopped");
2353 } else if (need_stop_discard) {
2354 f2fs_stop_discard_thread(sbi);
2355 }
Chao Yu3fd97352021-03-17 17:56:04 +08002356restore_flush:
2357 if (need_restart_flush) {
2358 if (f2fs_create_flush_cmd_control(sbi))
2359 f2fs_warn(sbi, "background flush thread has stopped");
2360 } else if (need_stop_flush) {
2361 clear_opt(sbi, FLUSH_MERGE);
2362 f2fs_destroy_flush_cmd_control(sbi, false);
2363 }
2364restore_ckpt:
2365 if (need_restart_ckpt) {
2366 if (f2fs_start_ckpt_thread(sbi))
2367 f2fs_warn(sbi, "background ckpt thread has stopped");
2368 } else if (need_stop_ckpt) {
2369 f2fs_stop_ckpt_thread(sbi);
2370 }
Gu Zheng876dc592014-04-11 17:50:00 +08002371restore_gc:
2372 if (need_restart_gc) {
Chao Yu4d57b862018-05-30 00:20:41 +08002373 if (f2fs_start_gc_thread(sbi))
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002374 f2fs_warn(sbi, "background gc thread has stopped");
Gu Zheng876dc592014-04-11 17:50:00 +08002375 } else if (need_stop_gc) {
Chao Yu4d57b862018-05-30 00:20:41 +08002376 f2fs_stop_gc_thread(sbi);
Gu Zheng876dc592014-04-11 17:50:00 +08002377 }
Namjae Jeon696c0182013-06-16 09:48:48 +09002378restore_opts:
Chao Yu4b2414d2017-08-08 10:54:31 +08002379#ifdef CONFIG_QUOTA
Chao Yu63189b72018-03-08 14:22:56 +08002380 F2FS_OPTION(sbi).s_jquota_fmt = org_mount_opt.s_jquota_fmt;
Chao Yu4b2414d2017-08-08 10:54:31 +08002381 for (i = 0; i < MAXQUOTAS; i++) {
Wang Xiaojunba87a452020-06-17 20:30:12 +08002382 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu63189b72018-03-08 14:22:56 +08002383 F2FS_OPTION(sbi).s_qf_names[i] = org_mount_opt.s_qf_names[i];
Chao Yu4b2414d2017-08-08 10:54:31 +08002384 }
2385#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002386 sbi->mount_opt = org_mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002387 sb->s_flags = old_sb_flags;
Namjae Jeon696c0182013-06-16 09:48:48 +09002388 return err;
2389}
2390
Chao Yu0abd6752017-07-09 00:13:07 +08002391#ifdef CONFIG_QUOTA
2392/* Read data from quotafile */
2393static ssize_t f2fs_quota_read(struct super_block *sb, int type, char *data,
2394 size_t len, loff_t off)
2395{
2396 struct inode *inode = sb_dqopt(sb)->files[type];
2397 struct address_space *mapping = inode->i_mapping;
2398 block_t blkidx = F2FS_BYTES_TO_BLK(off);
2399 int offset = off & (sb->s_blocksize - 1);
2400 int tocopy;
2401 size_t toread;
2402 loff_t i_size = i_size_read(inode);
2403 struct page *page;
2404 char *kaddr;
2405
2406 if (off > i_size)
2407 return 0;
2408
2409 if (off + len > i_size)
2410 len = i_size - off;
2411 toread = len;
2412 while (toread > 0) {
2413 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread);
2414repeat:
Ritesh Harjani02117b82018-03-16 18:53:53 +05302415 page = read_cache_page_gfp(mapping, blkidx, GFP_NOFS);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002416 if (IS_ERR(page)) {
2417 if (PTR_ERR(page) == -ENOMEM) {
NeilBrown40342472022-01-14 14:07:14 -08002418 memalloc_retry_wait(GFP_NOFS);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002419 goto repeat;
2420 }
Chao Yuaf033b22018-09-20 20:05:00 +08002421 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002422 return PTR_ERR(page);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002423 }
Chao Yu0abd6752017-07-09 00:13:07 +08002424
2425 lock_page(page);
2426
2427 if (unlikely(page->mapping != mapping)) {
2428 f2fs_put_page(page, 1);
2429 goto repeat;
2430 }
2431 if (unlikely(!PageUptodate(page))) {
2432 f2fs_put_page(page, 1);
Chao Yuaf033b22018-09-20 20:05:00 +08002433 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002434 return -EIO;
2435 }
2436
2437 kaddr = kmap_atomic(page);
2438 memcpy(data, kaddr + offset, tocopy);
2439 kunmap_atomic(kaddr);
2440 f2fs_put_page(page, 1);
2441
2442 offset = 0;
2443 toread -= tocopy;
2444 data += tocopy;
2445 blkidx++;
2446 }
2447 return len;
2448}
2449
2450/* Write to quotafile */
2451static ssize_t f2fs_quota_write(struct super_block *sb, int type,
2452 const char *data, size_t len, loff_t off)
2453{
2454 struct inode *inode = sb_dqopt(sb)->files[type];
2455 struct address_space *mapping = inode->i_mapping;
2456 const struct address_space_operations *a_ops = mapping->a_ops;
2457 int offset = off & (sb->s_blocksize - 1);
2458 size_t towrite = len;
2459 struct page *page;
Chao Yu62f63ee2020-03-19 19:58:00 +08002460 void *fsdata = NULL;
Chao Yu0abd6752017-07-09 00:13:07 +08002461 char *kaddr;
2462 int err = 0;
2463 int tocopy;
2464
2465 while (towrite > 0) {
2466 tocopy = min_t(unsigned long, sb->s_blocksize - offset,
2467 towrite);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002468retry:
Chao Yu0abd6752017-07-09 00:13:07 +08002469 err = a_ops->write_begin(NULL, mapping, off, tocopy, 0,
Chao Yu62f63ee2020-03-19 19:58:00 +08002470 &page, &fsdata);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002471 if (unlikely(err)) {
2472 if (err == -ENOMEM) {
Chao Yu5df7731f2020-02-17 17:45:44 +08002473 congestion_wait(BLK_RW_ASYNC,
2474 DEFAULT_IO_TIMEOUT);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002475 goto retry;
2476 }
Chao Yuaf033b22018-09-20 20:05:00 +08002477 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002478 break;
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002479 }
Chao Yu0abd6752017-07-09 00:13:07 +08002480
2481 kaddr = kmap_atomic(page);
2482 memcpy(kaddr + offset, data, tocopy);
2483 kunmap_atomic(kaddr);
2484 flush_dcache_page(page);
2485
2486 a_ops->write_end(NULL, mapping, off, tocopy, tocopy,
Chao Yu62f63ee2020-03-19 19:58:00 +08002487 page, fsdata);
Chao Yu0abd6752017-07-09 00:13:07 +08002488 offset = 0;
2489 towrite -= tocopy;
2490 off += tocopy;
2491 data += tocopy;
2492 cond_resched();
2493 }
2494
2495 if (len == towrite)
Jaegeuk Kim6e5b5d42017-10-19 12:07:11 -07002496 return err;
Chao Yu0abd6752017-07-09 00:13:07 +08002497 inode->i_mtime = inode->i_ctime = current_time(inode);
2498 f2fs_mark_inode_dirty_sync(inode, false);
2499 return len - towrite;
2500}
2501
Chao Yu10a26872021-10-28 21:03:05 +08002502int f2fs_dquot_initialize(struct inode *inode)
2503{
2504 if (time_to_inject(F2FS_I_SB(inode), FAULT_DQUOT_INIT)) {
2505 f2fs_show_injection_info(F2FS_I_SB(inode), FAULT_DQUOT_INIT);
2506 return -ESRCH;
2507 }
2508
2509 return dquot_initialize(inode);
2510}
2511
Chao Yu0abd6752017-07-09 00:13:07 +08002512static struct dquot **f2fs_get_dquots(struct inode *inode)
2513{
2514 return F2FS_I(inode)->i_dquot;
2515}
2516
2517static qsize_t *f2fs_get_reserved_space(struct inode *inode)
2518{
2519 return &F2FS_I(inode)->i_reserved_quota;
2520}
2521
Chao Yu4b2414d2017-08-08 10:54:31 +08002522static int f2fs_quota_on_mount(struct f2fs_sb_info *sbi, int type)
2523{
Chao Yuaf033b22018-09-20 20:05:00 +08002524 if (is_set_ckpt_flags(sbi, CP_QUOTA_NEED_FSCK_FLAG)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002525 f2fs_err(sbi, "quota sysfile may be corrupted, skip loading it");
Chao Yuaf033b22018-09-20 20:05:00 +08002526 return 0;
2527 }
2528
Chao Yu63189b72018-03-08 14:22:56 +08002529 return dquot_quota_on_mount(sbi->sb, F2FS_OPTION(sbi).s_qf_names[type],
2530 F2FS_OPTION(sbi).s_jquota_fmt, type);
Chao Yu4b2414d2017-08-08 10:54:31 +08002531}
2532
Jaegeuk Kimea676732017-10-06 09:14:28 -07002533int f2fs_enable_quota_files(struct f2fs_sb_info *sbi, bool rdonly)
Chao Yu4b2414d2017-08-08 10:54:31 +08002534{
Jaegeuk Kimea676732017-10-06 09:14:28 -07002535 int enabled = 0;
2536 int i, err;
2537
Chao Yu7beb01f2018-10-24 18:34:26 +08002538 if (f2fs_sb_has_quota_ino(sbi) && rdonly) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002539 err = f2fs_enable_quotas(sbi->sb);
2540 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002541 f2fs_err(sbi, "Cannot turn on quota_ino: %d", err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002542 return 0;
2543 }
2544 return 1;
2545 }
Chao Yu4b2414d2017-08-08 10:54:31 +08002546
2547 for (i = 0; i < MAXQUOTAS; i++) {
Chao Yu63189b72018-03-08 14:22:56 +08002548 if (F2FS_OPTION(sbi).s_qf_names[i]) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002549 err = f2fs_quota_on_mount(sbi, i);
2550 if (!err) {
2551 enabled = 1;
2552 continue;
2553 }
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002554 f2fs_err(sbi, "Cannot turn on quotas: %d on %d",
2555 err, i);
Chao Yu4b2414d2017-08-08 10:54:31 +08002556 }
2557 }
Jaegeuk Kimea676732017-10-06 09:14:28 -07002558 return enabled;
2559}
2560
2561static int f2fs_quota_enable(struct super_block *sb, int type, int format_id,
2562 unsigned int flags)
2563{
2564 struct inode *qf_inode;
2565 unsigned long qf_inum;
2566 int err;
2567
Chao Yu7beb01f2018-10-24 18:34:26 +08002568 BUG_ON(!f2fs_sb_has_quota_ino(F2FS_SB(sb)));
Jaegeuk Kimea676732017-10-06 09:14:28 -07002569
2570 qf_inum = f2fs_qf_ino(sb, type);
2571 if (!qf_inum)
2572 return -EPERM;
2573
2574 qf_inode = f2fs_iget(sb, qf_inum);
2575 if (IS_ERR(qf_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002576 f2fs_err(F2FS_SB(sb), "Bad quota inode %u:%lu", type, qf_inum);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002577 return PTR_ERR(qf_inode);
2578 }
2579
2580 /* Don't account quota for quota files to avoid recursion */
2581 qf_inode->i_flags |= S_NOQUOTA;
Jan Kara7212b952019-11-01 18:55:38 +01002582 err = dquot_load_quota_inode(qf_inode, type, format_id, flags);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002583 iput(qf_inode);
2584 return err;
2585}
2586
2587static int f2fs_enable_quotas(struct super_block *sb)
2588{
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002589 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002590 int type, err = 0;
2591 unsigned long qf_inum;
2592 bool quota_mopt[MAXQUOTAS] = {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002593 test_opt(sbi, USRQUOTA),
2594 test_opt(sbi, GRPQUOTA),
2595 test_opt(sbi, PRJQUOTA),
Jaegeuk Kimea676732017-10-06 09:14:28 -07002596 };
2597
Chao Yuaf033b22018-09-20 20:05:00 +08002598 if (is_set_ckpt_flags(F2FS_SB(sb), CP_QUOTA_NEED_FSCK_FLAG)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002599 f2fs_err(sbi, "quota file may be corrupted, skip loading it");
Chao Yuaf033b22018-09-20 20:05:00 +08002600 return 0;
2601 }
2602
2603 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE;
2604
Jaegeuk Kimea676732017-10-06 09:14:28 -07002605 for (type = 0; type < MAXQUOTAS; type++) {
2606 qf_inum = f2fs_qf_ino(sb, type);
2607 if (qf_inum) {
2608 err = f2fs_quota_enable(sb, type, QFMT_VFS_V1,
2609 DQUOT_USAGE_ENABLED |
2610 (quota_mopt[type] ? DQUOT_LIMITS_ENABLED : 0));
2611 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002612 f2fs_err(sbi, "Failed to enable quota tracking (type=%d, err=%d). Please run fsck to fix.",
2613 type, err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002614 for (type--; type >= 0; type--)
2615 dquot_quota_off(sb, type);
Chao Yuaf033b22018-09-20 20:05:00 +08002616 set_sbi_flag(F2FS_SB(sb),
2617 SBI_QUOTA_NEED_REPAIR);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002618 return err;
2619 }
2620 }
2621 }
2622 return 0;
Chao Yu4b2414d2017-08-08 10:54:31 +08002623}
2624
Chao Yu9de71ed2021-07-19 16:46:47 +08002625static int f2fs_quota_sync_file(struct f2fs_sb_info *sbi, int type)
2626{
2627 struct quota_info *dqopt = sb_dqopt(sbi->sb);
2628 struct address_space *mapping = dqopt->files[type]->i_mapping;
2629 int ret = 0;
2630
2631 ret = dquot_writeback_dquots(sbi->sb, type);
2632 if (ret)
2633 goto out;
2634
2635 ret = filemap_fdatawrite(mapping);
2636 if (ret)
2637 goto out;
2638
2639 /* if we are using journalled quota */
2640 if (is_journalled_quota(sbi))
2641 goto out;
2642
2643 ret = filemap_fdatawait(mapping);
2644
2645 truncate_inode_pages(&dqopt->files[type]->i_data, 0);
2646out:
2647 if (ret)
2648 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2649 return ret;
2650}
2651
Chao Yuaf033b22018-09-20 20:05:00 +08002652int f2fs_quota_sync(struct super_block *sb, int type)
Chao Yu0abd6752017-07-09 00:13:07 +08002653{
Chao Yuaf033b22018-09-20 20:05:00 +08002654 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yu0abd6752017-07-09 00:13:07 +08002655 struct quota_info *dqopt = sb_dqopt(sb);
2656 int cnt;
2657 int ret;
2658
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002659 /*
Chao Yu0abd6752017-07-09 00:13:07 +08002660 * Now when everything is written we can discard the pagecache so
2661 * that userspace sees the changes.
2662 */
2663 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
Chao Yuaf033b22018-09-20 20:05:00 +08002664
Chao Yu0abd6752017-07-09 00:13:07 +08002665 if (type != -1 && cnt != type)
2666 continue;
Chao Yu0abd6752017-07-09 00:13:07 +08002667
Chao Yu9de71ed2021-07-19 16:46:47 +08002668 if (!sb_has_quota_active(sb, type))
2669 return 0;
Chao Yu0abd6752017-07-09 00:13:07 +08002670
2671 inode_lock(dqopt->files[cnt]);
Chao Yu9de71ed2021-07-19 16:46:47 +08002672
2673 /*
2674 * do_quotactl
2675 * f2fs_quota_sync
2676 * down_read(quota_sem)
2677 * dquot_writeback_dquots()
2678 * f2fs_dquot_commit
2679 * block_operation
2680 * down_read(quota_sem)
2681 */
2682 f2fs_lock_op(sbi);
2683 down_read(&sbi->quota_sem);
2684
2685 ret = f2fs_quota_sync_file(sbi, cnt);
2686
2687 up_read(&sbi->quota_sem);
2688 f2fs_unlock_op(sbi);
2689
Chao Yu0abd6752017-07-09 00:13:07 +08002690 inode_unlock(dqopt->files[cnt]);
Chao Yu9de71ed2021-07-19 16:46:47 +08002691
2692 if (ret)
2693 break;
Chao Yu0abd6752017-07-09 00:13:07 +08002694 }
Chao Yuaf033b22018-09-20 20:05:00 +08002695 return ret;
Chao Yu0abd6752017-07-09 00:13:07 +08002696}
2697
2698static int f2fs_quota_on(struct super_block *sb, int type, int format_id,
2699 const struct path *path)
2700{
2701 struct inode *inode;
2702 int err;
2703
Chao Yufe973b02019-07-25 17:33:37 +08002704 /* if quota sysfile exists, deny enabling quota with specific file */
2705 if (f2fs_sb_has_quota_ino(F2FS_SB(sb))) {
2706 f2fs_err(F2FS_SB(sb), "quota sysfile already exists");
2707 return -EBUSY;
2708 }
2709
Chao Yu9a20d392017-08-07 16:37:59 +08002710 err = f2fs_quota_sync(sb, type);
Chao Yu0abd6752017-07-09 00:13:07 +08002711 if (err)
2712 return err;
2713
2714 err = dquot_quota_on(sb, type, format_id, path);
2715 if (err)
2716 return err;
2717
2718 inode = d_inode(path->dentry);
2719
2720 inode_lock(inode);
Chao Yu59c84402018-04-03 15:08:17 +08002721 F2FS_I(inode)->i_flags |= F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL;
Chao Yu9149a5e2018-10-07 19:06:15 +08002722 f2fs_set_inode_flags(inode);
Chao Yu0abd6752017-07-09 00:13:07 +08002723 inode_unlock(inode);
2724 f2fs_mark_inode_dirty_sync(inode, false);
2725
2726 return 0;
2727}
2728
Chao Yufe973b02019-07-25 17:33:37 +08002729static int __f2fs_quota_off(struct super_block *sb, int type)
Chao Yu0abd6752017-07-09 00:13:07 +08002730{
2731 struct inode *inode = sb_dqopt(sb)->files[type];
2732 int err;
2733
2734 if (!inode || !igrab(inode))
2735 return dquot_quota_off(sb, type);
2736
Yunlei Hecda9cc52018-06-26 13:12:43 +08002737 err = f2fs_quota_sync(sb, type);
2738 if (err)
2739 goto out_put;
Chao Yu0abd6752017-07-09 00:13:07 +08002740
2741 err = dquot_quota_off(sb, type);
Chao Yu7beb01f2018-10-24 18:34:26 +08002742 if (err || f2fs_sb_has_quota_ino(F2FS_SB(sb)))
Chao Yu0abd6752017-07-09 00:13:07 +08002743 goto out_put;
2744
2745 inode_lock(inode);
Chao Yu59c84402018-04-03 15:08:17 +08002746 F2FS_I(inode)->i_flags &= ~(F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL);
Chao Yu9149a5e2018-10-07 19:06:15 +08002747 f2fs_set_inode_flags(inode);
Chao Yu0abd6752017-07-09 00:13:07 +08002748 inode_unlock(inode);
2749 f2fs_mark_inode_dirty_sync(inode, false);
2750out_put:
2751 iput(inode);
2752 return err;
2753}
2754
Chao Yufe973b02019-07-25 17:33:37 +08002755static int f2fs_quota_off(struct super_block *sb, int type)
2756{
2757 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2758 int err;
2759
2760 err = __f2fs_quota_off(sb, type);
2761
2762 /*
2763 * quotactl can shutdown journalled quota, result in inconsistence
2764 * between quota record and fs data by following updates, tag the
2765 * flag to let fsck be aware of it.
2766 */
2767 if (is_journalled_quota(sbi))
2768 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2769 return err;
2770}
2771
Chao Yu4b2414d2017-08-08 10:54:31 +08002772void f2fs_quota_off_umount(struct super_block *sb)
Chao Yu0abd6752017-07-09 00:13:07 +08002773{
2774 int type;
Yunlei Hecda9cc52018-06-26 13:12:43 +08002775 int err;
Chao Yu0abd6752017-07-09 00:13:07 +08002776
Yunlei Hecda9cc52018-06-26 13:12:43 +08002777 for (type = 0; type < MAXQUOTAS; type++) {
Chao Yufe973b02019-07-25 17:33:37 +08002778 err = __f2fs_quota_off(sb, type);
Yunlei Hecda9cc52018-06-26 13:12:43 +08002779 if (err) {
2780 int ret = dquot_quota_off(sb, type);
2781
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002782 f2fs_err(F2FS_SB(sb), "Fail to turn off disk quota (type: %d, err: %d, ret:%d), Please run fsck to fix it.",
2783 type, err, ret);
Chao Yuaf033b22018-09-20 20:05:00 +08002784 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Yunlei Hecda9cc52018-06-26 13:12:43 +08002785 }
2786 }
Jaegeuk Kim0e0667b2019-01-27 17:59:53 -08002787 /*
2788 * In case of checkpoint=disable, we must flush quota blocks.
2789 * This can cause NULL exception for node_inode in end_io, since
2790 * put_super already dropped it.
2791 */
2792 sync_filesystem(sb);
Chao Yu0abd6752017-07-09 00:13:07 +08002793}
2794
Sheng Yong26b5a072018-10-12 18:49:26 +08002795static void f2fs_truncate_quota_inode_pages(struct super_block *sb)
2796{
2797 struct quota_info *dqopt = sb_dqopt(sb);
2798 int type;
2799
2800 for (type = 0; type < MAXQUOTAS; type++) {
2801 if (!dqopt->files[type])
2802 continue;
2803 f2fs_inode_synced(dqopt->files[type]);
2804 }
2805}
2806
Chao Yuaf033b22018-09-20 20:05:00 +08002807static int f2fs_dquot_commit(struct dquot *dquot)
2808{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002809 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Chao Yuaf033b22018-09-20 20:05:00 +08002810 int ret;
2811
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002812 down_read_nested(&sbi->quota_sem, SINGLE_DEPTH_NESTING);
Chao Yuaf033b22018-09-20 20:05:00 +08002813 ret = dquot_commit(dquot);
2814 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002815 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2816 up_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002817 return ret;
2818}
2819
2820static int f2fs_dquot_acquire(struct dquot *dquot)
2821{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002822 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Chao Yuaf033b22018-09-20 20:05:00 +08002823 int ret;
2824
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002825 down_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002826 ret = dquot_acquire(dquot);
2827 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002828 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2829 up_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002830 return ret;
2831}
2832
2833static int f2fs_dquot_release(struct dquot *dquot)
2834{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002835 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002836 int ret = dquot_release(dquot);
Chao Yuaf033b22018-09-20 20:05:00 +08002837
Chao Yuaf033b22018-09-20 20:05:00 +08002838 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002839 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Chao Yuaf033b22018-09-20 20:05:00 +08002840 return ret;
2841}
2842
2843static int f2fs_dquot_mark_dquot_dirty(struct dquot *dquot)
2844{
2845 struct super_block *sb = dquot->dq_sb;
2846 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002847 int ret = dquot_mark_dquot_dirty(dquot);
Chao Yuaf033b22018-09-20 20:05:00 +08002848
2849 /* if we are using journalled quota */
2850 if (is_journalled_quota(sbi))
2851 set_sbi_flag(sbi, SBI_QUOTA_NEED_FLUSH);
2852
2853 return ret;
2854}
2855
2856static int f2fs_dquot_commit_info(struct super_block *sb, int type)
2857{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002858 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002859 int ret = dquot_commit_info(sb, type);
Chao Yuaf033b22018-09-20 20:05:00 +08002860
Chao Yuaf033b22018-09-20 20:05:00 +08002861 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002862 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Chao Yuaf033b22018-09-20 20:05:00 +08002863 return ret;
2864}
Sheng Yong26b5a072018-10-12 18:49:26 +08002865
Wei Yongjun94b1e102018-01-05 09:41:20 +00002866static int f2fs_get_projid(struct inode *inode, kprojid_t *projid)
Chao Yu5c571322017-07-26 00:01:41 +08002867{
2868 *projid = F2FS_I(inode)->i_projid;
2869 return 0;
2870}
2871
Chao Yu0abd6752017-07-09 00:13:07 +08002872static const struct dquot_operations f2fs_quota_operations = {
2873 .get_reserved_space = f2fs_get_reserved_space,
Chao Yuaf033b22018-09-20 20:05:00 +08002874 .write_dquot = f2fs_dquot_commit,
2875 .acquire_dquot = f2fs_dquot_acquire,
2876 .release_dquot = f2fs_dquot_release,
2877 .mark_dirty = f2fs_dquot_mark_dquot_dirty,
2878 .write_info = f2fs_dquot_commit_info,
Chao Yu0abd6752017-07-09 00:13:07 +08002879 .alloc_dquot = dquot_alloc,
2880 .destroy_dquot = dquot_destroy,
Chao Yu5c571322017-07-26 00:01:41 +08002881 .get_projid = f2fs_get_projid,
Chao Yu0abd6752017-07-09 00:13:07 +08002882 .get_next_id = dquot_get_next_id,
2883};
2884
2885static const struct quotactl_ops f2fs_quotactl_ops = {
2886 .quota_on = f2fs_quota_on,
2887 .quota_off = f2fs_quota_off,
2888 .quota_sync = f2fs_quota_sync,
2889 .get_state = dquot_get_state,
2890 .set_info = dquot_set_dqinfo,
2891 .get_dqblk = dquot_get_dqblk,
2892 .set_dqblk = dquot_set_dqblk,
2893 .get_nextdqblk = dquot_get_next_dqblk,
2894};
2895#else
Chao Yu10a26872021-10-28 21:03:05 +08002896int f2fs_dquot_initialize(struct inode *inode)
2897{
2898 return 0;
2899}
2900
Chao Yuaf033b22018-09-20 20:05:00 +08002901int f2fs_quota_sync(struct super_block *sb, int type)
2902{
2903 return 0;
2904}
2905
Chao Yu4b2414d2017-08-08 10:54:31 +08002906void f2fs_quota_off_umount(struct super_block *sb)
Chao Yu0abd6752017-07-09 00:13:07 +08002907{
2908}
2909#endif
2910
Arvind Yadavf62fc9f2017-08-31 15:06:24 +05302911static const struct super_operations f2fs_sops = {
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002912 .alloc_inode = f2fs_alloc_inode,
Al Virod01718a2019-04-15 19:29:14 -04002913 .free_inode = f2fs_free_inode,
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09002914 .drop_inode = f2fs_drop_inode,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002915 .write_inode = f2fs_write_inode,
Jaegeuk Kimb3783872013-06-10 09:17:01 +09002916 .dirty_inode = f2fs_dirty_inode,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002917 .show_options = f2fs_show_options,
Chao Yu0abd6752017-07-09 00:13:07 +08002918#ifdef CONFIG_QUOTA
2919 .quota_read = f2fs_quota_read,
2920 .quota_write = f2fs_quota_write,
2921 .get_dquots = f2fs_get_dquots,
2922#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002923 .evict_inode = f2fs_evict_inode,
2924 .put_super = f2fs_put_super,
2925 .sync_fs = f2fs_sync_fs,
Changman Leed6212a52013-01-29 18:30:07 +09002926 .freeze_fs = f2fs_freeze,
2927 .unfreeze_fs = f2fs_unfreeze,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002928 .statfs = f2fs_statfs,
Namjae Jeon696c0182013-06-16 09:48:48 +09002929 .remount_fs = f2fs_remount,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002930};
2931
Chandan Rajendra643fa962018-12-12 15:20:12 +05302932#ifdef CONFIG_FS_ENCRYPTION
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002933static int f2fs_get_context(struct inode *inode, void *ctx, size_t len)
2934{
2935 return f2fs_getxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
2936 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
2937 ctx, len, NULL);
2938}
2939
2940static int f2fs_set_context(struct inode *inode, const void *ctx, size_t len,
2941 void *fs_data)
2942{
Sheng Yongb7c409d2018-03-15 18:51:41 +08002943 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
2944
2945 /*
2946 * Encrypting the root directory is not allowed because fsck
2947 * expects lost+found directory to exist and remain unencrypted
2948 * if LOST_FOUND feature is enabled.
2949 *
2950 */
Chao Yu7beb01f2018-10-24 18:34:26 +08002951 if (f2fs_sb_has_lost_found(sbi) &&
Sheng Yongb7c409d2018-03-15 18:51:41 +08002952 inode->i_ino == F2FS_ROOT_INO(sbi))
2953 return -EPERM;
2954
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002955 return f2fs_setxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
2956 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
2957 ctx, len, fs_data, XATTR_CREATE);
2958}
2959
Eric Biggersac4acb12020-09-16 21:11:35 -07002960static const union fscrypt_policy *f2fs_get_dummy_policy(struct super_block *sb)
Sheng Yongff62af22018-03-15 18:51:42 +08002961{
Eric Biggersac4acb12020-09-16 21:11:35 -07002962 return F2FS_OPTION(F2FS_SB(sb)).dummy_enc_policy.policy;
Sheng Yongff62af22018-03-15 18:51:42 +08002963}
2964
Eric Biggers0eee17e2019-10-24 14:54:38 -07002965static bool f2fs_has_stable_inodes(struct super_block *sb)
2966{
2967 return true;
2968}
2969
2970static void f2fs_get_ino_and_lblk_bits(struct super_block *sb,
2971 int *ino_bits_ret, int *lblk_bits_ret)
2972{
2973 *ino_bits_ret = 8 * sizeof(nid_t);
2974 *lblk_bits_ret = 8 * sizeof(block_t);
2975}
2976
Satya Tangirala27aacd22020-07-02 01:56:06 +00002977static int f2fs_get_num_devices(struct super_block *sb)
2978{
2979 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2980
2981 if (f2fs_is_multi_device(sbi))
2982 return sbi->s_ndevs;
2983 return 1;
2984}
2985
2986static void f2fs_get_devices(struct super_block *sb,
2987 struct request_queue **devs)
2988{
2989 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2990 int i;
2991
2992 for (i = 0; i < sbi->s_ndevs; i++)
2993 devs[i] = bdev_get_queue(FDEV(i).bdev);
2994}
2995
Eric Biggers6f69f0e2017-02-07 12:42:10 -08002996static const struct fscrypt_operations f2fs_cryptops = {
Eric Biggers0eee17e2019-10-24 14:54:38 -07002997 .key_prefix = "f2fs:",
2998 .get_context = f2fs_get_context,
2999 .set_context = f2fs_set_context,
Eric Biggersac4acb12020-09-16 21:11:35 -07003000 .get_dummy_policy = f2fs_get_dummy_policy,
Eric Biggers0eee17e2019-10-24 14:54:38 -07003001 .empty_dir = f2fs_empty_dir,
Eric Biggers0eee17e2019-10-24 14:54:38 -07003002 .has_stable_inodes = f2fs_has_stable_inodes,
3003 .get_ino_and_lblk_bits = f2fs_get_ino_and_lblk_bits,
Satya Tangirala27aacd22020-07-02 01:56:06 +00003004 .get_num_devices = f2fs_get_num_devices,
3005 .get_devices = f2fs_get_devices,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07003006};
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07003007#endif
3008
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003009static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
3010 u64 ino, u32 generation)
3011{
3012 struct f2fs_sb_info *sbi = F2FS_SB(sb);
3013 struct inode *inode;
3014
Chao Yu4d57b862018-05-30 00:20:41 +08003015 if (f2fs_check_nid_range(sbi, ino))
Chao Yu910bb122014-03-12 17:08:36 +08003016 return ERR_PTR(-ESTALE);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003017
3018 /*
3019 * f2fs_iget isn't quite right if the inode is currently unallocated!
3020 * However f2fs_iget currently does appropriate checks to handle stale
3021 * inodes so everything is OK.
3022 */
3023 inode = f2fs_iget(sb, ino);
3024 if (IS_ERR(inode))
3025 return ERR_CAST(inode);
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09003026 if (unlikely(generation && inode->i_generation != generation)) {
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003027 /* we didn't find the right inode.. */
3028 iput(inode);
3029 return ERR_PTR(-ESTALE);
3030 }
3031 return inode;
3032}
3033
3034static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
3035 int fh_len, int fh_type)
3036{
3037 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
3038 f2fs_nfs_get_inode);
3039}
3040
3041static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
3042 int fh_len, int fh_type)
3043{
3044 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
3045 f2fs_nfs_get_inode);
3046}
3047
3048static const struct export_operations f2fs_export_ops = {
3049 .fh_to_dentry = f2fs_fh_to_dentry,
3050 .fh_to_parent = f2fs_fh_to_parent,
3051 .get_parent = f2fs_get_parent,
3052};
3053
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003054loff_t max_file_blocks(struct inode *inode)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003055{
Chao Yu7a2af762017-07-19 00:19:06 +08003056 loff_t result = 0;
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003057 loff_t leaf_count;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003058
Chao Yu7a2af762017-07-19 00:19:06 +08003059 /*
3060 * note: previously, result is equal to (DEF_ADDRS_PER_INODE -
Chao Yu6afc6622017-09-06 21:59:50 +08003061 * DEFAULT_INLINE_XATTR_ADDRS), but now f2fs try to reserve more
Chao Yu7a2af762017-07-19 00:19:06 +08003062 * space in inode.i_addr, it will be more safe to reassign
3063 * result as zero.
3064 */
3065
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003066 if (inode && f2fs_compressed_file(inode))
3067 leaf_count = ADDRS_PER_BLOCK(inode);
3068 else
3069 leaf_count = DEF_ADDRS_PER_BLOCK;
3070
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003071 /* two direct node blocks */
3072 result += (leaf_count * 2);
3073
3074 /* two indirect node blocks */
3075 leaf_count *= NIDS_PER_BLOCK;
3076 result += (leaf_count * 2);
3077
3078 /* one double indirect node block */
3079 leaf_count *= NIDS_PER_BLOCK;
3080 result += leaf_count;
3081
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003082 return result;
3083}
3084
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003085static int __f2fs_commit_super(struct buffer_head *bh,
3086 struct f2fs_super_block *super)
Chao Yu9a59b622015-12-15 09:58:18 +08003087{
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003088 lock_buffer(bh);
3089 if (super)
3090 memcpy(bh->b_data + F2FS_SUPER_OFFSET, super, sizeof(*super));
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003091 set_buffer_dirty(bh);
3092 unlock_buffer(bh);
3093
3094 /* it's rare case, we can do fua all the time */
Jan Kara3adc5fcb2017-05-02 17:03:47 +02003095 return __sync_dirty_buffer(bh, REQ_SYNC | REQ_PREFLUSH | REQ_FUA);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003096}
3097
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003098static inline bool sanity_check_area_boundary(struct f2fs_sb_info *sbi,
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003099 struct buffer_head *bh)
3100{
3101 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
3102 (bh->b_data + F2FS_SUPER_OFFSET);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003103 struct super_block *sb = sbi->sb;
Chao Yu9a59b622015-12-15 09:58:18 +08003104 u32 segment0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
3105 u32 cp_blkaddr = le32_to_cpu(raw_super->cp_blkaddr);
3106 u32 sit_blkaddr = le32_to_cpu(raw_super->sit_blkaddr);
3107 u32 nat_blkaddr = le32_to_cpu(raw_super->nat_blkaddr);
3108 u32 ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
3109 u32 main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
3110 u32 segment_count_ckpt = le32_to_cpu(raw_super->segment_count_ckpt);
3111 u32 segment_count_sit = le32_to_cpu(raw_super->segment_count_sit);
3112 u32 segment_count_nat = le32_to_cpu(raw_super->segment_count_nat);
3113 u32 segment_count_ssa = le32_to_cpu(raw_super->segment_count_ssa);
3114 u32 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
3115 u32 segment_count = le32_to_cpu(raw_super->segment_count);
3116 u32 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003117 u64 main_end_blkaddr = main_blkaddr +
3118 (segment_count_main << log_blocks_per_seg);
3119 u64 seg_end_blkaddr = segment0_blkaddr +
3120 (segment_count << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003121
3122 if (segment0_blkaddr != cp_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003123 f2fs_info(sbi, "Mismatch start address, segment0(%u) cp_blkaddr(%u)",
3124 segment0_blkaddr, cp_blkaddr);
Chao Yu9a59b622015-12-15 09:58:18 +08003125 return true;
3126 }
3127
3128 if (cp_blkaddr + (segment_count_ckpt << log_blocks_per_seg) !=
3129 sit_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003130 f2fs_info(sbi, "Wrong CP boundary, start(%u) end(%u) blocks(%u)",
3131 cp_blkaddr, sit_blkaddr,
3132 segment_count_ckpt << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003133 return true;
3134 }
3135
3136 if (sit_blkaddr + (segment_count_sit << log_blocks_per_seg) !=
3137 nat_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003138 f2fs_info(sbi, "Wrong SIT boundary, start(%u) end(%u) blocks(%u)",
3139 sit_blkaddr, nat_blkaddr,
3140 segment_count_sit << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003141 return true;
3142 }
3143
3144 if (nat_blkaddr + (segment_count_nat << log_blocks_per_seg) !=
3145 ssa_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003146 f2fs_info(sbi, "Wrong NAT boundary, start(%u) end(%u) blocks(%u)",
3147 nat_blkaddr, ssa_blkaddr,
3148 segment_count_nat << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003149 return true;
3150 }
3151
3152 if (ssa_blkaddr + (segment_count_ssa << log_blocks_per_seg) !=
3153 main_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003154 f2fs_info(sbi, "Wrong SSA boundary, start(%u) end(%u) blocks(%u)",
3155 ssa_blkaddr, main_blkaddr,
3156 segment_count_ssa << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003157 return true;
3158 }
3159
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003160 if (main_end_blkaddr > seg_end_blkaddr) {
Wang Xiaojund89f5892020-09-18 08:31:24 +08003161 f2fs_info(sbi, "Wrong MAIN_AREA boundary, start(%u) end(%llu) block(%u)",
3162 main_blkaddr, seg_end_blkaddr,
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003163 segment_count_main << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003164 return true;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003165 } else if (main_end_blkaddr < seg_end_blkaddr) {
3166 int err = 0;
3167 char *res;
Chao Yu9a59b622015-12-15 09:58:18 +08003168
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003169 /* fix in-memory information all the time */
3170 raw_super->segment_count = cpu_to_le32((main_end_blkaddr -
3171 segment0_blkaddr) >> log_blocks_per_seg);
3172
3173 if (f2fs_readonly(sb) || bdev_read_only(sb->s_bdev)) {
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003174 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003175 res = "internally";
3176 } else {
3177 err = __f2fs_commit_super(bh, NULL);
3178 res = err ? "failed" : "done";
3179 }
Wang Xiaojund89f5892020-09-18 08:31:24 +08003180 f2fs_info(sbi, "Fix alignment : %s, start(%u) end(%llu) block(%u)",
3181 res, main_blkaddr, seg_end_blkaddr,
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003182 segment_count_main << log_blocks_per_seg);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003183 if (err)
3184 return true;
3185 }
Chao Yu9a59b622015-12-15 09:58:18 +08003186 return false;
3187}
3188
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003189static int sanity_check_raw_super(struct f2fs_sb_info *sbi,
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003190 struct buffer_head *bh)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003191{
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003192 block_t segment_count, segs_per_sec, secs_per_zone, segment_count_main;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003193 block_t total_sections, blocks_per_seg;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003194 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
3195 (bh->b_data + F2FS_SUPER_OFFSET);
Junling Zhengd440c522018-09-28 20:25:56 +08003196 size_t crc_offset = 0;
3197 __u32 crc = 0;
3198
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003199 if (le32_to_cpu(raw_super->magic) != F2FS_SUPER_MAGIC) {
3200 f2fs_info(sbi, "Magic Mismatch, valid(0x%x) - read(0x%x)",
3201 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
3202 return -EINVAL;
3203 }
3204
Junling Zhengd440c522018-09-28 20:25:56 +08003205 /* Check checksum_offset and crc in superblock */
Chao Yu7beb01f2018-10-24 18:34:26 +08003206 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_SB_CHKSUM)) {
Junling Zhengd440c522018-09-28 20:25:56 +08003207 crc_offset = le32_to_cpu(raw_super->checksum_offset);
3208 if (crc_offset !=
3209 offsetof(struct f2fs_super_block, crc)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003210 f2fs_info(sbi, "Invalid SB checksum offset: %zu",
3211 crc_offset);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003212 return -EFSCORRUPTED;
Junling Zhengd440c522018-09-28 20:25:56 +08003213 }
3214 crc = le32_to_cpu(raw_super->crc);
3215 if (!f2fs_crc_valid(sbi, crc, raw_super, crc_offset)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003216 f2fs_info(sbi, "Invalid SB checksum value: %u", crc);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003217 return -EFSCORRUPTED;
Junling Zhengd440c522018-09-28 20:25:56 +08003218 }
3219 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003220
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003221 /* Currently, support only 4KB block size */
Chao Yue584bbe2020-12-09 16:49:36 +08003222 if (le32_to_cpu(raw_super->log_blocksize) != F2FS_BLKSIZE_BITS) {
3223 f2fs_info(sbi, "Invalid log_blocksize (%u), supports only %u",
3224 le32_to_cpu(raw_super->log_blocksize),
3225 F2FS_BLKSIZE_BITS);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003226 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003227 }
majianpeng5c9b4692013-02-01 19:07:57 +08003228
Chao Yu9a59b622015-12-15 09:58:18 +08003229 /* check log blocks per segment */
3230 if (le32_to_cpu(raw_super->log_blocks_per_seg) != 9) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003231 f2fs_info(sbi, "Invalid log blocks per segment (%u)",
3232 le32_to_cpu(raw_super->log_blocks_per_seg));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003233 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003234 }
3235
Chao Yu55cf9cb2014-09-15 18:01:10 +08003236 /* Currently, support 512/1024/2048/4096 bytes sector size */
3237 if (le32_to_cpu(raw_super->log_sectorsize) >
3238 F2FS_MAX_LOG_SECTOR_SIZE ||
3239 le32_to_cpu(raw_super->log_sectorsize) <
3240 F2FS_MIN_LOG_SECTOR_SIZE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003241 f2fs_info(sbi, "Invalid log sectorsize (%u)",
3242 le32_to_cpu(raw_super->log_sectorsize));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003243 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003244 }
Chao Yu55cf9cb2014-09-15 18:01:10 +08003245 if (le32_to_cpu(raw_super->log_sectors_per_block) +
3246 le32_to_cpu(raw_super->log_sectorsize) !=
3247 F2FS_MAX_LOG_SECTOR_SIZE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003248 f2fs_info(sbi, "Invalid log sectors per block(%u) log sectorsize(%u)",
3249 le32_to_cpu(raw_super->log_sectors_per_block),
3250 le32_to_cpu(raw_super->log_sectorsize));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003251 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003252 }
Chao Yu9a59b622015-12-15 09:58:18 +08003253
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003254 segment_count = le32_to_cpu(raw_super->segment_count);
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003255 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003256 segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
3257 secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
3258 total_sections = le32_to_cpu(raw_super->section_count);
3259
3260 /* blocks_per_seg should be 512, given the above check */
3261 blocks_per_seg = 1 << le32_to_cpu(raw_super->log_blocks_per_seg);
3262
3263 if (segment_count > F2FS_MAX_SEGMENT ||
3264 segment_count < F2FS_MIN_SEGMENTS) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003265 f2fs_info(sbi, "Invalid segment count (%u)", segment_count);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003266 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003267 }
3268
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003269 if (total_sections > segment_count_main || total_sections < 1 ||
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003270 segs_per_sec > segment_count || !segs_per_sec) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003271 f2fs_info(sbi, "Invalid segment/section count (%u, %u x %u)",
3272 segment_count, total_sections, segs_per_sec);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003273 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003274 }
3275
Chao Yu3a22e9a2020-09-29 09:23:34 +08003276 if (segment_count_main != total_sections * segs_per_sec) {
3277 f2fs_info(sbi, "Invalid segment/section count (%u != %u * %u)",
3278 segment_count_main, total_sections, segs_per_sec);
3279 return -EFSCORRUPTED;
3280 }
3281
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003282 if ((segment_count / segs_per_sec) < total_sections) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003283 f2fs_info(sbi, "Small segment_count (%u < %u * %u)",
3284 segment_count, segs_per_sec, total_sections);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003285 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003286 }
3287
Martin Blumenstingl88960062018-12-22 11:22:26 +01003288 if (segment_count > (le64_to_cpu(raw_super->block_count) >> 9)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003289 f2fs_info(sbi, "Wrong segment_count / block_count (%u > %llu)",
3290 segment_count, le64_to_cpu(raw_super->block_count));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003291 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003292 }
3293
Qiuyang Sun9f701f62019-09-23 12:22:35 +08003294 if (RDEV(0).path[0]) {
3295 block_t dev_seg_count = le32_to_cpu(RDEV(0).total_segments);
3296 int i = 1;
3297
3298 while (i < MAX_DEVICES && RDEV(i).path[0]) {
3299 dev_seg_count += le32_to_cpu(RDEV(i).total_segments);
3300 i++;
3301 }
3302 if (segment_count != dev_seg_count) {
3303 f2fs_info(sbi, "Segment count (%u) mismatch with total segments from devices (%u)",
3304 segment_count, dev_seg_count);
3305 return -EFSCORRUPTED;
3306 }
Chao Yu07eb1d62020-09-21 20:53:13 +08003307 } else {
3308 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_BLKZONED) &&
3309 !bdev_is_zoned(sbi->sb->s_bdev)) {
3310 f2fs_info(sbi, "Zoned block device path is missing");
3311 return -EFSCORRUPTED;
3312 }
Qiuyang Sun9f701f62019-09-23 12:22:35 +08003313 }
3314
Chao Yu42bf5462018-06-23 00:12:36 +08003315 if (secs_per_zone > total_sections || !secs_per_zone) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003316 f2fs_info(sbi, "Wrong secs_per_zone / total_sections (%u, %u)",
3317 secs_per_zone, total_sections);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003318 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003319 }
3320 if (le32_to_cpu(raw_super->extension_count) > F2FS_MAX_EXTENSION ||
3321 raw_super->hot_ext_count > F2FS_MAX_EXTENSION ||
3322 (le32_to_cpu(raw_super->extension_count) +
3323 raw_super->hot_ext_count) > F2FS_MAX_EXTENSION) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003324 f2fs_info(sbi, "Corrupted extension count (%u + %u > %u)",
3325 le32_to_cpu(raw_super->extension_count),
3326 raw_super->hot_ext_count,
3327 F2FS_MAX_EXTENSION);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003328 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003329 }
3330
Chao Yu65ddf652021-08-06 08:04:37 +08003331 if (le32_to_cpu(raw_super->cp_payload) >=
3332 (blocks_per_seg - F2FS_CP_PACKS -
3333 NR_CURSEG_PERSIST_TYPE)) {
3334 f2fs_info(sbi, "Insane cp_payload (%u >= %u)",
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003335 le32_to_cpu(raw_super->cp_payload),
Chao Yu65ddf652021-08-06 08:04:37 +08003336 blocks_per_seg - F2FS_CP_PACKS -
3337 NR_CURSEG_PERSIST_TYPE);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003338 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003339 }
3340
Chao Yu9a59b622015-12-15 09:58:18 +08003341 /* check reserved ino info */
3342 if (le32_to_cpu(raw_super->node_ino) != 1 ||
3343 le32_to_cpu(raw_super->meta_ino) != 2 ||
3344 le32_to_cpu(raw_super->root_ino) != 3) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003345 f2fs_info(sbi, "Invalid Fs Meta Ino: node(%u) meta(%u) root(%u)",
3346 le32_to_cpu(raw_super->node_ino),
3347 le32_to_cpu(raw_super->meta_ino),
3348 le32_to_cpu(raw_super->root_ino));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003349 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003350 }
3351
3352 /* check CP/SIT/NAT/SSA/MAIN_AREA area boundary */
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003353 if (sanity_check_area_boundary(sbi, bh))
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003354 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003355
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003356 return 0;
3357}
3358
Chao Yu4d57b862018-05-30 00:20:41 +08003359int f2fs_sanity_check_ckpt(struct f2fs_sb_info *sbi)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003360{
3361 unsigned int total, fsmeta;
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003362 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
3363 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003364 unsigned int ovp_segments, reserved_segments;
Jin Qian15d30422017-05-15 10:45:08 -07003365 unsigned int main_segs, blocks_per_seg;
Chao Yuc77ec612018-06-23 11:25:19 +08003366 unsigned int sit_segs, nat_segs;
3367 unsigned int sit_bitmap_size, nat_bitmap_size;
3368 unsigned int log_blocks_per_seg;
Chao Yu9dc956b2018-06-27 18:05:54 +08003369 unsigned int segment_count_main;
Chao Yue494c2f2018-08-01 19:16:11 +08003370 unsigned int cp_pack_start_sum, cp_payload;
Chao Yu7b63f722019-04-15 15:30:50 +08003371 block_t user_block_count, valid_user_blocks;
3372 block_t avail_node_count, valid_node_count;
Chao Yu65ddf652021-08-06 08:04:37 +08003373 unsigned int nat_blocks, nat_bits_bytes, nat_bits_blocks;
Chao Yu042be0f2018-09-06 20:34:12 +08003374 int i, j;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003375
3376 total = le32_to_cpu(raw_super->segment_count);
3377 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
Chao Yuc77ec612018-06-23 11:25:19 +08003378 sit_segs = le32_to_cpu(raw_super->segment_count_sit);
3379 fsmeta += sit_segs;
3380 nat_segs = le32_to_cpu(raw_super->segment_count_nat);
3381 fsmeta += nat_segs;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003382 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
3383 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
3384
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09003385 if (unlikely(fsmeta >= total))
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003386 return 1;
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003387
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003388 ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
3389 reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
3390
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003391 if (!f2fs_sb_has_readonly(sbi) &&
3392 unlikely(fsmeta < F2FS_MIN_META_SEGMENTS ||
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003393 ovp_segments == 0 || reserved_segments == 0)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003394 f2fs_err(sbi, "Wrong layout: check mkfs.f2fs version");
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003395 return 1;
3396 }
Chao Yu9dc956b2018-06-27 18:05:54 +08003397 user_block_count = le64_to_cpu(ckpt->user_block_count);
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003398 segment_count_main = le32_to_cpu(raw_super->segment_count_main) +
3399 (f2fs_sb_has_readonly(sbi) ? 1 : 0);
Chao Yu9dc956b2018-06-27 18:05:54 +08003400 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3401 if (!user_block_count || user_block_count >=
3402 segment_count_main << log_blocks_per_seg) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003403 f2fs_err(sbi, "Wrong user_block_count: %u",
3404 user_block_count);
Chao Yu9dc956b2018-06-27 18:05:54 +08003405 return 1;
3406 }
3407
Chao Yu7b63f722019-04-15 15:30:50 +08003408 valid_user_blocks = le64_to_cpu(ckpt->valid_block_count);
3409 if (valid_user_blocks > user_block_count) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003410 f2fs_err(sbi, "Wrong valid_user_blocks: %u, user_block_count: %u",
3411 valid_user_blocks, user_block_count);
Chao Yu7b63f722019-04-15 15:30:50 +08003412 return 1;
3413 }
3414
3415 valid_node_count = le32_to_cpu(ckpt->valid_node_count);
Chao Yu27cae0b2019-08-05 18:27:25 +08003416 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
Chao Yu7b63f722019-04-15 15:30:50 +08003417 if (valid_node_count > avail_node_count) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003418 f2fs_err(sbi, "Wrong valid_node_count: %u, avail_node_count: %u",
3419 valid_node_count, avail_node_count);
Chao Yu7b63f722019-04-15 15:30:50 +08003420 return 1;
3421 }
3422
Jin Qian15d30422017-05-15 10:45:08 -07003423 main_segs = le32_to_cpu(raw_super->segment_count_main);
3424 blocks_per_seg = sbi->blocks_per_seg;
3425
3426 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
3427 if (le32_to_cpu(ckpt->cur_node_segno[i]) >= main_segs ||
3428 le16_to_cpu(ckpt->cur_node_blkoff[i]) >= blocks_per_seg)
3429 return 1;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003430
3431 if (f2fs_sb_has_readonly(sbi))
3432 goto check_data;
3433
Chao Yu042be0f2018-09-06 20:34:12 +08003434 for (j = i + 1; j < NR_CURSEG_NODE_TYPE; j++) {
3435 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3436 le32_to_cpu(ckpt->cur_node_segno[j])) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003437 f2fs_err(sbi, "Node segment (%u, %u) has the same segno: %u",
3438 i, j,
3439 le32_to_cpu(ckpt->cur_node_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003440 return 1;
3441 }
3442 }
Jin Qian15d30422017-05-15 10:45:08 -07003443 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003444check_data:
Jin Qian15d30422017-05-15 10:45:08 -07003445 for (i = 0; i < NR_CURSEG_DATA_TYPE; i++) {
3446 if (le32_to_cpu(ckpt->cur_data_segno[i]) >= main_segs ||
3447 le16_to_cpu(ckpt->cur_data_blkoff[i]) >= blocks_per_seg)
3448 return 1;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003449
3450 if (f2fs_sb_has_readonly(sbi))
3451 goto skip_cross;
3452
Chao Yu042be0f2018-09-06 20:34:12 +08003453 for (j = i + 1; j < NR_CURSEG_DATA_TYPE; j++) {
3454 if (le32_to_cpu(ckpt->cur_data_segno[i]) ==
3455 le32_to_cpu(ckpt->cur_data_segno[j])) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003456 f2fs_err(sbi, "Data segment (%u, %u) has the same segno: %u",
3457 i, j,
3458 le32_to_cpu(ckpt->cur_data_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003459 return 1;
3460 }
3461 }
3462 }
3463 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
Surbhi Palande1166c1f2019-08-23 15:40:45 -07003464 for (j = 0; j < NR_CURSEG_DATA_TYPE; j++) {
Chao Yu042be0f2018-09-06 20:34:12 +08003465 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3466 le32_to_cpu(ckpt->cur_data_segno[j])) {
Surbhi Palande1166c1f2019-08-23 15:40:45 -07003467 f2fs_err(sbi, "Node segment (%u) and Data segment (%u) has the same segno: %u",
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003468 i, j,
3469 le32_to_cpu(ckpt->cur_node_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003470 return 1;
3471 }
3472 }
Jin Qian15d30422017-05-15 10:45:08 -07003473 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003474skip_cross:
Chao Yuc77ec612018-06-23 11:25:19 +08003475 sit_bitmap_size = le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
3476 nat_bitmap_size = le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
Chao Yuc77ec612018-06-23 11:25:19 +08003477
3478 if (sit_bitmap_size != ((sit_segs / 2) << log_blocks_per_seg) / 8 ||
3479 nat_bitmap_size != ((nat_segs / 2) << log_blocks_per_seg) / 8) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003480 f2fs_err(sbi, "Wrong bitmap size: sit: %u, nat:%u",
3481 sit_bitmap_size, nat_bitmap_size);
Chao Yuc77ec612018-06-23 11:25:19 +08003482 return 1;
3483 }
3484
Chao Yue494c2f2018-08-01 19:16:11 +08003485 cp_pack_start_sum = __start_sum_addr(sbi);
3486 cp_payload = __cp_payload(sbi);
3487 if (cp_pack_start_sum < cp_payload + 1 ||
3488 cp_pack_start_sum > blocks_per_seg - 1 -
Chao Yud0b9e422020-08-04 21:14:45 +08003489 NR_CURSEG_PERSIST_TYPE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003490 f2fs_err(sbi, "Wrong cp_pack_start_sum: %u",
3491 cp_pack_start_sum);
Chao Yue494c2f2018-08-01 19:16:11 +08003492 return 1;
3493 }
3494
Chao Yu5dae2d32019-05-20 10:09:22 +08003495 if (__is_set_ckpt_flags(ckpt, CP_LARGE_NAT_BITMAP_FLAG) &&
3496 le32_to_cpu(ckpt->checksum_offset) != CP_MIN_CHKSUM_OFFSET) {
Chao Yu2d008832019-07-11 09:29:15 +08003497 f2fs_warn(sbi, "using deprecated layout of large_nat_bitmap, "
3498 "please run fsck v1.13.0 or higher to repair, chksum_offset: %u, "
3499 "fixed with patch: \"f2fs-tools: relocate chksum_offset for large_nat_bitmap feature\"",
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003500 le32_to_cpu(ckpt->checksum_offset));
Chao Yu5dae2d32019-05-20 10:09:22 +08003501 return 1;
3502 }
3503
Chao Yu65ddf652021-08-06 08:04:37 +08003504 nat_blocks = nat_segs << log_blocks_per_seg;
3505 nat_bits_bytes = nat_blocks / BITS_PER_BYTE;
3506 nat_bits_blocks = F2FS_BLK_ALIGN((nat_bits_bytes << 1) + 8);
3507 if (__is_set_ckpt_flags(ckpt, CP_NAT_BITS_FLAG) &&
3508 (cp_payload + F2FS_CP_PACKS +
3509 NR_CURSEG_PERSIST_TYPE + nat_bits_blocks >= blocks_per_seg)) {
3510 f2fs_warn(sbi, "Insane cp_payload: %u, nat_bits_blocks: %u)",
3511 cp_payload, nat_bits_blocks);
Chao Yuca98d722021-10-28 20:45:08 +08003512 return 1;
Chao Yu65ddf652021-08-06 08:04:37 +08003513 }
3514
Jaegeuk Kim1e968fd2014-08-11 16:49:25 -07003515 if (unlikely(f2fs_cp_error(sbi))) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003516 f2fs_err(sbi, "A bug case: need to run fsck");
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003517 return 1;
3518 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003519 return 0;
3520}
3521
3522static void init_sb_info(struct f2fs_sb_info *sbi)
3523{
3524 struct f2fs_super_block *raw_super = sbi->raw_super;
Yunlong Song089842d2018-10-24 16:09:42 +08003525 int i;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003526
3527 sbi->log_sectors_per_block =
3528 le32_to_cpu(raw_super->log_sectors_per_block);
3529 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
3530 sbi->blocksize = 1 << sbi->log_blocksize;
3531 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3532 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
3533 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
3534 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
3535 sbi->total_sections = le32_to_cpu(raw_super->section_count);
3536 sbi->total_node_count =
3537 (le32_to_cpu(raw_super->segment_count_nat) / 2)
3538 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
Yangtao Lib9ec1092020-12-07 18:59:33 +08003539 F2FS_ROOT_INO(sbi) = le32_to_cpu(raw_super->root_ino);
3540 F2FS_NODE_INO(sbi) = le32_to_cpu(raw_super->node_ino);
3541 F2FS_META_INO(sbi) = le32_to_cpu(raw_super->meta_ino);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09003542 sbi->cur_victim_sec = NULL_SECNO;
Chao Yue3080b02018-10-24 18:37:27 +08003543 sbi->next_victim_seg[BG_GC] = NULL_SEGNO;
3544 sbi->next_victim_seg[FG_GC] = NULL_SEGNO;
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +09003545 sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;
Chao Yue3080b02018-10-24 18:37:27 +08003546 sbi->migration_granularity = sbi->segs_per_sec;
Daeho Jeong0f6b56e2021-08-02 21:22:45 -07003547 sbi->seq_file_ra_mul = MIN_RA_MUL;
Daeho Jeong6691d942021-09-29 11:12:03 -07003548 sbi->max_fragment_chunk = DEF_FRAGMENT_SIZE;
3549 sbi->max_fragment_hole = DEF_FRAGMENT_SIZE;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003550
Jaegeuk Kimab9fa662014-02-27 20:09:05 +09003551 sbi->dir_level = DEF_DIR_LEVEL;
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08003552 sbi->interval_time[CP_TIME] = DEF_CP_INTERVAL;
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08003553 sbi->interval_time[REQ_TIME] = DEF_IDLE_INTERVAL;
Sahitya Tummalaa7d10cf2018-09-19 14:18:47 +05303554 sbi->interval_time[DISCARD_TIME] = DEF_IDLE_INTERVAL;
3555 sbi->interval_time[GC_TIME] = DEF_IDLE_INTERVAL;
Daniel Rosenberg43549942018-08-20 19:21:43 -07003556 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_INTERVAL;
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08003557 sbi->interval_time[UMOUNT_DISCARD_TIMEOUT] =
3558 DEF_UMOUNT_DISCARD_TIMEOUT;
Chao Yucaf00472015-01-28 17:48:42 +08003559 clear_sbi_flag(sbi, SBI_NEED_FSCK);
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003560
Jaegeuk Kim35782b22016-10-20 19:09:57 -07003561 for (i = 0; i < NR_COUNT_TYPE; i++)
3562 atomic_set(&sbi->nr_pages[i], 0);
3563
Chao Yuc29fd0c2018-06-04 23:20:36 +08003564 for (i = 0; i < META; i++)
3565 atomic_set(&sbi->wb_sync_req[i], 0);
Jaegeuk Kim687de7f2017-03-28 18:07:38 -07003566
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003567 INIT_LIST_HEAD(&sbi->s_list);
3568 mutex_init(&sbi->umount_mutex);
Chao Yu107a8052018-05-26 09:00:13 +08003569 init_rwsem(&sbi->io_order_lock);
Chao Yuaaec2b12016-09-20 11:04:18 +08003570 spin_lock_init(&sbi->cp_lock);
Chao Yu1228b482017-09-29 13:59:39 +08003571
3572 sbi->dirty_device = 0;
3573 spin_lock_init(&sbi->dev_lock);
Chao Yud0d3f1b2018-02-11 22:53:20 +08003574
Chao Yu846ae672018-02-26 22:04:13 +08003575 init_rwsem(&sbi->sb_lock);
Jaegeuk Kimf5a53ed2019-10-18 10:06:40 -07003576 init_rwsem(&sbi->pin_sem);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003577}
3578
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003579static int init_percpu_info(struct f2fs_sb_info *sbi)
3580{
Jaegeuk Kim35782b22016-10-20 19:09:57 -07003581 int err;
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07003582
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07003583 err = percpu_counter_init(&sbi->alloc_valid_block_count, 0, GFP_KERNEL);
3584 if (err)
3585 return err;
3586
Chao Yu4a70e252018-09-05 14:54:02 +08003587 err = percpu_counter_init(&sbi->total_valid_inode_count, 0,
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07003588 GFP_KERNEL);
Chao Yu4a70e252018-09-05 14:54:02 +08003589 if (err)
3590 percpu_counter_destroy(&sbi->alloc_valid_block_count);
3591
3592 return err;
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003593}
3594
Damien Le Moal178053e2016-10-28 17:45:05 +09003595#ifdef CONFIG_BLK_DEV_ZONED
Christoph Hellwigd4100352019-11-11 11:39:30 +09003596
Aravind Rameshde881df2020-07-16 18:26:56 +05303597struct f2fs_report_zones_args {
3598 struct f2fs_dev_info *dev;
3599 bool zone_cap_mismatch;
3600};
3601
3602static int f2fs_report_zone_cb(struct blk_zone *zone, unsigned int idx,
3603 void *data)
3604{
3605 struct f2fs_report_zones_args *rz_args = data;
3606
3607 if (zone->type == BLK_ZONE_TYPE_CONVENTIONAL)
3608 return 0;
3609
3610 set_bit(idx, rz_args->dev->blkz_seq);
3611 rz_args->dev->zone_capacity_blocks[idx] = zone->capacity >>
3612 F2FS_LOG_SECTORS_PER_BLOCK;
3613 if (zone->len != zone->capacity && !rz_args->zone_cap_mismatch)
3614 rz_args->zone_cap_mismatch = true;
3615
Christoph Hellwigd4100352019-11-11 11:39:30 +09003616 return 0;
3617}
3618
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003619static int init_blkz_info(struct f2fs_sb_info *sbi, int devi)
Damien Le Moal178053e2016-10-28 17:45:05 +09003620{
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003621 struct block_device *bdev = FDEV(devi).bdev;
Christoph Hellwiga7824832020-11-26 18:43:37 +01003622 sector_t nr_sectors = bdev_nr_sectors(bdev);
Aravind Rameshde881df2020-07-16 18:26:56 +05303623 struct f2fs_report_zones_args rep_zone_arg;
Christoph Hellwigd4100352019-11-11 11:39:30 +09003624 int ret;
Damien Le Moal178053e2016-10-28 17:45:05 +09003625
Chao Yu7beb01f2018-10-24 18:34:26 +08003626 if (!f2fs_sb_has_blkzoned(sbi))
Damien Le Moal178053e2016-10-28 17:45:05 +09003627 return 0;
3628
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003629 if (sbi->blocks_per_blkz && sbi->blocks_per_blkz !=
Damien Le Moalf99e8642017-01-12 07:58:32 -07003630 SECTOR_TO_BLOCK(bdev_zone_sectors(bdev)))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003631 return -EINVAL;
Damien Le Moalf99e8642017-01-12 07:58:32 -07003632 sbi->blocks_per_blkz = SECTOR_TO_BLOCK(bdev_zone_sectors(bdev));
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003633 if (sbi->log_blocks_per_blkz && sbi->log_blocks_per_blkz !=
3634 __ilog2_u32(sbi->blocks_per_blkz))
3635 return -EINVAL;
Damien Le Moal178053e2016-10-28 17:45:05 +09003636 sbi->log_blocks_per_blkz = __ilog2_u32(sbi->blocks_per_blkz);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003637 FDEV(devi).nr_blkz = SECTOR_TO_BLOCK(nr_sectors) >>
3638 sbi->log_blocks_per_blkz;
Damien Le Moalf99e8642017-01-12 07:58:32 -07003639 if (nr_sectors & (bdev_zone_sectors(bdev) - 1))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003640 FDEV(devi).nr_blkz++;
Damien Le Moal178053e2016-10-28 17:45:05 +09003641
Eric Biggers0b6d4ca2020-06-04 21:57:48 -07003642 FDEV(devi).blkz_seq = f2fs_kvzalloc(sbi,
Damien Le Moal95175da2019-03-16 09:13:07 +09003643 BITS_TO_LONGS(FDEV(devi).nr_blkz)
3644 * sizeof(unsigned long),
3645 GFP_KERNEL);
3646 if (!FDEV(devi).blkz_seq)
Damien Le Moal178053e2016-10-28 17:45:05 +09003647 return -ENOMEM;
3648
Aravind Rameshde881df2020-07-16 18:26:56 +05303649 /* Get block zones type and zone-capacity */
3650 FDEV(devi).zone_capacity_blocks = f2fs_kzalloc(sbi,
3651 FDEV(devi).nr_blkz * sizeof(block_t),
3652 GFP_KERNEL);
3653 if (!FDEV(devi).zone_capacity_blocks)
3654 return -ENOMEM;
3655
3656 rep_zone_arg.dev = &FDEV(devi);
3657 rep_zone_arg.zone_cap_mismatch = false;
3658
Christoph Hellwigd4100352019-11-11 11:39:30 +09003659 ret = blkdev_report_zones(bdev, 0, BLK_ALL_ZONES, f2fs_report_zone_cb,
Aravind Rameshde881df2020-07-16 18:26:56 +05303660 &rep_zone_arg);
Christoph Hellwigd4100352019-11-11 11:39:30 +09003661 if (ret < 0)
3662 return ret;
Damien Le Moal178053e2016-10-28 17:45:05 +09003663
Aravind Rameshde881df2020-07-16 18:26:56 +05303664 if (!rep_zone_arg.zone_cap_mismatch) {
3665 kfree(FDEV(devi).zone_capacity_blocks);
3666 FDEV(devi).zone_capacity_blocks = NULL;
3667 }
3668
Christoph Hellwigd4100352019-11-11 11:39:30 +09003669 return 0;
Damien Le Moal178053e2016-10-28 17:45:05 +09003670}
3671#endif
3672
Gu Zheng9076a752013-10-14 18:47:11 +08003673/*
3674 * Read f2fs raw super block.
Shawn Lin2b39e902016-02-17 08:59:01 +08003675 * Because we have two copies of super block, so read both of them
3676 * to get the first valid one. If any one of them is broken, we pass
3677 * them recovery flag back to the caller.
Gu Zheng9076a752013-10-14 18:47:11 +08003678 */
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003679static int read_raw_super_block(struct f2fs_sb_info *sbi,
Gu Zheng9076a752013-10-14 18:47:11 +08003680 struct f2fs_super_block **raw_super,
Chao Yue8240f62015-12-15 17:19:26 +08003681 int *valid_super_block, int *recovery)
majianpeng14d7e9d2013-02-01 19:07:03 +08003682{
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003683 struct super_block *sb = sbi->sb;
Shawn Lin2b39e902016-02-17 08:59:01 +08003684 int block;
Chao Yue8240f62015-12-15 17:19:26 +08003685 struct buffer_head *bh;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003686 struct f2fs_super_block *super;
hujianyangda554e42015-05-21 14:42:53 +08003687 int err = 0;
majianpeng14d7e9d2013-02-01 19:07:03 +08003688
Yunlei Heb39f0de2015-12-15 17:17:20 +08003689 super = kzalloc(sizeof(struct f2fs_super_block), GFP_KERNEL);
3690 if (!super)
3691 return -ENOMEM;
Shawn Lin2b39e902016-02-17 08:59:01 +08003692
3693 for (block = 0; block < 2; block++) {
3694 bh = sb_bread(sb, block);
3695 if (!bh) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003696 f2fs_err(sbi, "Unable to read %dth superblock",
3697 block + 1);
Shawn Lin2b39e902016-02-17 08:59:01 +08003698 err = -EIO;
Chengguang Xu via Linux-f2fs-develed3520422019-09-27 09:35:48 +08003699 *recovery = 1;
Shawn Lin2b39e902016-02-17 08:59:01 +08003700 continue;
3701 }
majianpeng14d7e9d2013-02-01 19:07:03 +08003702
Shawn Lin2b39e902016-02-17 08:59:01 +08003703 /* sanity checking of raw super */
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003704 err = sanity_check_raw_super(sbi, bh);
3705 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003706 f2fs_err(sbi, "Can't find valid F2FS filesystem in %dth superblock",
3707 block + 1);
Shawn Lin2b39e902016-02-17 08:59:01 +08003708 brelse(bh);
Chengguang Xu via Linux-f2fs-develed3520422019-09-27 09:35:48 +08003709 *recovery = 1;
Shawn Lin2b39e902016-02-17 08:59:01 +08003710 continue;
3711 }
3712
3713 if (!*raw_super) {
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003714 memcpy(super, bh->b_data + F2FS_SUPER_OFFSET,
3715 sizeof(*super));
Shawn Lin2b39e902016-02-17 08:59:01 +08003716 *valid_super_block = block;
3717 *raw_super = super;
3718 }
Chao Yue8240f62015-12-15 17:19:26 +08003719 brelse(bh);
Shawn Lin2b39e902016-02-17 08:59:01 +08003720 }
3721
hujianyangda554e42015-05-21 14:42:53 +08003722 /* No valid superblock */
Shawn Lin2b39e902016-02-17 08:59:01 +08003723 if (!*raw_super)
Denis Efremov742532d2020-06-10 01:14:46 +03003724 kfree(super);
Shawn Lin2b39e902016-02-17 08:59:01 +08003725 else
3726 err = 0;
hujianyangda554e42015-05-21 14:42:53 +08003727
Shawn Lin2b39e902016-02-17 08:59:01 +08003728 return err;
majianpeng14d7e9d2013-02-01 19:07:03 +08003729}
3730
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003731int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover)
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003732{
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003733 struct buffer_head *bh;
Junling Zhengd440c522018-09-28 20:25:56 +08003734 __u32 crc = 0;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003735 int err;
3736
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003737 if ((recover && f2fs_readonly(sbi->sb)) ||
3738 bdev_read_only(sbi->sb->s_bdev)) {
3739 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07003740 return -EROFS;
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003741 }
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07003742
Junling Zhengd440c522018-09-28 20:25:56 +08003743 /* we should update superblock crc here */
Chao Yu7beb01f2018-10-24 18:34:26 +08003744 if (!recover && f2fs_sb_has_sb_chksum(sbi)) {
Junling Zhengd440c522018-09-28 20:25:56 +08003745 crc = f2fs_crc32(sbi, F2FS_RAW_SUPER(sbi),
3746 offsetof(struct f2fs_super_block, crc));
3747 F2FS_RAW_SUPER(sbi)->crc = cpu_to_le32(crc);
3748 }
3749
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003750 /* write back-up superblock first */
Sheng Yong0964fc12018-01-29 19:13:15 +08003751 bh = sb_bread(sbi->sb, sbi->valid_super_block ? 0 : 1);
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003752 if (!bh)
3753 return -EIO;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003754 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003755 brelse(bh);
Chao Yuc5bda1c2015-06-08 13:28:03 +08003756
3757 /* if we are in recovery path, skip writing valid superblock */
3758 if (recover || err)
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003759 return err;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003760
Chao Yue8240f62015-12-15 17:19:26 +08003761 /* write current valid superblock */
Sheng Yong0964fc12018-01-29 19:13:15 +08003762 bh = sb_bread(sbi->sb, sbi->valid_super_block);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003763 if (!bh)
3764 return -EIO;
3765 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
3766 brelse(bh);
3767 return err;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003768}
3769
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003770static int f2fs_scan_devices(struct f2fs_sb_info *sbi)
3771{
3772 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003773 unsigned int max_devices = MAX_DEVICES;
Chao Yu71f2c822021-09-01 14:39:20 +08003774 unsigned int logical_blksize;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003775 int i;
3776
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003777 /* Initialize single device information */
3778 if (!RDEV(0).path[0]) {
3779 if (!bdev_is_zoned(sbi->sb->s_bdev))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003780 return 0;
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003781 max_devices = 1;
3782 }
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003783
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003784 /*
3785 * Initialize multiple devices information, or single
3786 * zoned block device information.
3787 */
Kees Cook026f0502018-06-12 14:28:23 -07003788 sbi->devs = f2fs_kzalloc(sbi,
3789 array_size(max_devices,
3790 sizeof(struct f2fs_dev_info)),
3791 GFP_KERNEL);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003792 if (!sbi->devs)
3793 return -ENOMEM;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003794
Chao Yu71f2c822021-09-01 14:39:20 +08003795 logical_blksize = bdev_logical_block_size(sbi->sb->s_bdev);
3796 sbi->aligned_blksize = true;
3797
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003798 for (i = 0; i < max_devices; i++) {
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003799
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003800 if (i > 0 && !RDEV(i).path[0])
3801 break;
3802
3803 if (max_devices == 1) {
3804 /* Single zoned block device mount */
3805 FDEV(0).bdev =
3806 blkdev_get_by_dev(sbi->sb->s_bdev->bd_dev,
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003807 sbi->sb->s_mode, sbi->sb->s_type);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003808 } else {
3809 /* Multi-device mount */
3810 memcpy(FDEV(i).path, RDEV(i).path, MAX_PATH_LEN);
3811 FDEV(i).total_segments =
3812 le32_to_cpu(RDEV(i).total_segments);
3813 if (i == 0) {
3814 FDEV(i).start_blk = 0;
3815 FDEV(i).end_blk = FDEV(i).start_blk +
3816 (FDEV(i).total_segments <<
3817 sbi->log_blocks_per_seg) - 1 +
3818 le32_to_cpu(raw_super->segment0_blkaddr);
3819 } else {
3820 FDEV(i).start_blk = FDEV(i - 1).end_blk + 1;
3821 FDEV(i).end_blk = FDEV(i).start_blk +
3822 (FDEV(i).total_segments <<
3823 sbi->log_blocks_per_seg) - 1;
3824 }
3825 FDEV(i).bdev = blkdev_get_by_path(FDEV(i).path,
3826 sbi->sb->s_mode, sbi->sb->s_type);
3827 }
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003828 if (IS_ERR(FDEV(i).bdev))
3829 return PTR_ERR(FDEV(i).bdev);
3830
3831 /* to release errored devices */
3832 sbi->s_ndevs = i + 1;
3833
Chao Yu71f2c822021-09-01 14:39:20 +08003834 if (logical_blksize != bdev_logical_block_size(FDEV(i).bdev))
3835 sbi->aligned_blksize = false;
3836
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003837#ifdef CONFIG_BLK_DEV_ZONED
3838 if (bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HM &&
Chao Yu7beb01f2018-10-24 18:34:26 +08003839 !f2fs_sb_has_blkzoned(sbi)) {
Joe Perches833dcd32021-05-26 13:05:36 -07003840 f2fs_err(sbi, "Zoned block device feature not enabled");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003841 return -EINVAL;
3842 }
3843 if (bdev_zoned_model(FDEV(i).bdev) != BLK_ZONED_NONE) {
3844 if (init_blkz_info(sbi, i)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003845 f2fs_err(sbi, "Failed to initialize F2FS blkzone information");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003846 return -EINVAL;
3847 }
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003848 if (max_devices == 1)
3849 break;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003850 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x (zone: %s)",
3851 i, FDEV(i).path,
3852 FDEV(i).total_segments,
3853 FDEV(i).start_blk, FDEV(i).end_blk,
3854 bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HA ?
3855 "Host-aware" : "Host-managed");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003856 continue;
3857 }
3858#endif
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003859 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x",
3860 i, FDEV(i).path,
3861 FDEV(i).total_segments,
3862 FDEV(i).start_blk, FDEV(i).end_blk);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003863 }
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003864 f2fs_info(sbi,
3865 "IO Block Size: %8d KB", F2FS_IO_SIZE_KB(sbi));
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003866 return 0;
3867}
3868
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003869static int f2fs_setup_casefold(struct f2fs_sb_info *sbi)
3870{
3871#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07003872 if (f2fs_sb_has_casefold(sbi) && !sbi->sb->s_encoding) {
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003873 const struct f2fs_sb_encodings *encoding_info;
3874 struct unicode_map *encoding;
3875 __u16 encoding_flags;
3876
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003877 if (f2fs_sb_read_encoding(sbi->raw_super, &encoding_info,
3878 &encoding_flags)) {
3879 f2fs_err(sbi,
3880 "Encoding requested by superblock is unknown");
3881 return -EINVAL;
3882 }
3883
3884 encoding = utf8_load(encoding_info->version);
3885 if (IS_ERR(encoding)) {
3886 f2fs_err(sbi,
3887 "can't mount with superblock charset: %s-%s "
3888 "not supported by the kernel. flags: 0x%x.",
3889 encoding_info->name, encoding_info->version,
3890 encoding_flags);
3891 return PTR_ERR(encoding);
3892 }
3893 f2fs_info(sbi, "Using encoding defined by superblock: "
3894 "%s-%s with flags 0x%hx", encoding_info->name,
3895 encoding_info->version?:"\b", encoding_flags);
3896
Daniel Rosenbergeca48732020-07-08 02:12:36 -07003897 sbi->sb->s_encoding = encoding;
3898 sbi->sb->s_encoding_flags = encoding_flags;
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003899 }
3900#else
3901 if (f2fs_sb_has_casefold(sbi)) {
3902 f2fs_err(sbi, "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
3903 return -EINVAL;
3904 }
3905#endif
3906 return 0;
3907}
3908
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003909static void f2fs_tuning_parameters(struct f2fs_sb_info *sbi)
3910{
3911 struct f2fs_sm_info *sm_i = SM_I(sbi);
3912
3913 /* adjust parameters according to the volume size */
3914 if (sm_i->main_segments <= SMALL_VOLUME_SEGMENTS) {
Chao Yu63189b72018-03-08 14:22:56 +08003915 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
Chao Yu4f993262021-08-03 08:15:43 +08003916 if (f2fs_block_unit_discard(sbi))
3917 sm_i->dcc_info->discard_granularity = 1;
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003918 sm_i->ipu_policy = 1 << F2FS_IPU_FORCE;
3919 }
Chao Yu4cac90d2018-06-11 18:02:01 +08003920
3921 sbi->readdir_ra = 1;
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003922}
3923
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003924static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
3925{
3926 struct f2fs_sb_info *sbi;
hujianyangda554e42015-05-21 14:42:53 +08003927 struct f2fs_super_block *raw_super;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003928 struct inode *root;
Sheng Yong99e3e852016-05-11 17:08:14 +08003929 int err;
Chao Yuaa2c8c42019-02-19 16:23:53 +08003930 bool skip_recovery = false, need_fsck = false;
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003931 char *options = NULL;
Chao Yue8240f62015-12-15 17:19:26 +08003932 int recovery, i, valid_super_block;
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08003933 struct curseg_info *seg_i;
Chao Yuaa2c8c42019-02-19 16:23:53 +08003934 int retry_cnt = 1;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003935
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07003936try_onemore:
hujianyangda554e42015-05-21 14:42:53 +08003937 err = -EINVAL;
3938 raw_super = NULL;
Chao Yue8240f62015-12-15 17:19:26 +08003939 valid_super_block = -1;
hujianyangda554e42015-05-21 14:42:53 +08003940 recovery = 0;
3941
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003942 /* allocate memory for f2fs-specific super block info */
3943 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
3944 if (!sbi)
3945 return -ENOMEM;
3946
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003947 sbi->sb = sb;
3948
Keith Mok43b65732016-03-02 12:04:24 -08003949 /* Load the checksum driver */
3950 sbi->s_chksum_driver = crypto_alloc_shash("crc32", 0, 0);
3951 if (IS_ERR(sbi->s_chksum_driver)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003952 f2fs_err(sbi, "Cannot load crc32 driver.");
Keith Mok43b65732016-03-02 12:04:24 -08003953 err = PTR_ERR(sbi->s_chksum_driver);
3954 sbi->s_chksum_driver = NULL;
3955 goto free_sbi;
3956 }
3957
Namjae Jeonff9234a2013-01-12 14:41:13 +09003958 /* set a block size */
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09003959 if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003960 f2fs_err(sbi, "unable to set blocksize");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003961 goto free_sbi;
Namjae Jeona07ef782012-12-30 14:52:05 +09003962 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003963
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003964 err = read_raw_super_block(sbi, &raw_super, &valid_super_block,
Chao Yue8240f62015-12-15 17:19:26 +08003965 &recovery);
Gu Zheng9076a752013-10-14 18:47:11 +08003966 if (err)
3967 goto free_sbi;
3968
Gu Zheng5fb08372013-06-07 14:16:53 +08003969 sb->s_fs_info = sbi;
Jaegeuk Kim52763a42016-06-13 09:47:48 -07003970 sbi->raw_super = raw_super;
3971
Chao Yu704956e2017-07-31 20:19:09 +08003972 /* precompute checksum seed for metadata */
Chao Yu7beb01f2018-10-24 18:34:26 +08003973 if (f2fs_sb_has_inode_chksum(sbi))
Chao Yu704956e2017-07-31 20:19:09 +08003974 sbi->s_chksum_seed = f2fs_chksum(sbi, ~0, raw_super->uuid,
3975 sizeof(raw_super->uuid));
3976
Yunlei He498c5e92015-05-07 18:11:37 +08003977 default_options(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003978 /* parse mount options */
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003979 options = kstrdup((const char *)data, GFP_KERNEL);
3980 if (data && !options) {
3981 err = -ENOMEM;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003982 goto free_sb_buf;
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003983 }
3984
Eric Biggersed318a62020-05-12 16:32:50 -07003985 err = parse_options(sb, options, false);
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003986 if (err)
3987 goto free_options;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003988
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003989 sb->s_maxbytes = max_file_blocks(NULL) <<
Chao Yue0afc4d2015-12-31 14:35:37 +08003990 le32_to_cpu(raw_super->log_blocksize);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003991 sb->s_max_links = F2FS_LINK_MAX;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003992
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003993 err = f2fs_setup_casefold(sbi);
3994 if (err)
3995 goto free_options;
3996
Chao Yu0abd6752017-07-09 00:13:07 +08003997#ifdef CONFIG_QUOTA
3998 sb->dq_op = &f2fs_quota_operations;
Jaegeuk Kimbc88ac92019-05-20 16:17:56 -07003999 sb->s_qcop = &f2fs_quotactl_ops;
Chao Yu5c571322017-07-26 00:01:41 +08004000 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
Chao Yu292c196a2017-11-16 16:59:14 +08004001
Chao Yu7beb01f2018-10-24 18:34:26 +08004002 if (f2fs_sb_has_quota_ino(sbi)) {
Chao Yu292c196a2017-11-16 16:59:14 +08004003 for (i = 0; i < MAXQUOTAS; i++) {
4004 if (f2fs_qf_ino(sbi->sb, i))
4005 sbi->nquota_files++;
4006 }
4007 }
Chao Yu0abd6752017-07-09 00:13:07 +08004008#endif
4009
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004010 sb->s_op = &f2fs_sops;
Chandan Rajendra643fa962018-12-12 15:20:12 +05304011#ifdef CONFIG_FS_ENCRYPTION
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07004012 sb->s_cop = &f2fs_cryptops;
Eric Biggersffcc41822017-10-09 12:15:38 -07004013#endif
Eric Biggers95ae2512019-07-22 09:26:24 -07004014#ifdef CONFIG_FS_VERITY
4015 sb->s_vop = &f2fs_verityops;
4016#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004017 sb->s_xattr = f2fs_xattr_handlers;
4018 sb->s_export_op = &f2fs_export_ops;
4019 sb->s_magic = F2FS_SUPER_MAGIC;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004020 sb->s_time_gran = 1;
Linus Torvalds1751e8a2017-11-27 13:05:09 -08004021 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
4022 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
Christoph Hellwig85787092017-05-10 15:06:33 +02004023 memcpy(&sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
Yufen Yu578c6472018-01-09 19:33:39 +08004024 sb->s_iflags |= SB_I_CGROUPWB;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004025
4026 /* init f2fs-specific super block info */
Chao Yue8240f62015-12-15 17:19:26 +08004027 sbi->valid_super_block = valid_super_block;
Chao Yufb24fea2020-01-14 19:36:50 +08004028 init_rwsem(&sbi->gc_lock);
Jaegeuk Kim853137c2018-08-09 17:53:34 -07004029 mutex_init(&sbi->writepages);
Sahitya Tummala87699182020-11-23 10:58:32 +05304030 init_rwsem(&sbi->cp_global_sem);
Chao Yub3582c62014-07-03 18:58:39 +08004031 init_rwsem(&sbi->node_write);
Yunlei He59c90812017-03-13 20:22:18 +08004032 init_rwsem(&sbi->node_change);
Jaegeuk Kim315df832015-08-11 12:45:39 -07004033
4034 /* disallow all the data/node/meta page writes */
4035 set_sbi_flag(sbi, SBI_POR_DOING);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004036 spin_lock_init(&sbi->stat_lock);
Jaegeuk Kim971767c2013-11-18 17:16:17 +09004037
Jaegeuk Kim458e6192013-12-11 13:54:01 +09004038 for (i = 0; i < NR_PAGE_TYPE; i++) {
Yi Zhuang5f029c02021-04-06 09:47:35 +08004039 int n = (i == META) ? 1 : NR_TEMP_TYPE;
Jaegeuk Kima912b542017-05-10 11:18:25 -07004040 int j;
4041
Kees Cookc8606592018-06-12 14:28:16 -07004042 sbi->write_io[i] =
4043 f2fs_kmalloc(sbi,
4044 array_size(n,
4045 sizeof(struct f2fs_bio_info)),
4046 GFP_KERNEL);
Christophe JAILLETb63def92017-06-11 09:21:11 +02004047 if (!sbi->write_io[i]) {
4048 err = -ENOMEM;
Chao Yu0b2103e82018-09-05 14:54:01 +08004049 goto free_bio_info;
Christophe JAILLETb63def92017-06-11 09:21:11 +02004050 }
Jaegeuk Kima912b542017-05-10 11:18:25 -07004051
4052 for (j = HOT; j < n; j++) {
4053 init_rwsem(&sbi->write_io[i][j].io_rwsem);
4054 sbi->write_io[i][j].sbi = sbi;
4055 sbi->write_io[i][j].bio = NULL;
Chao Yufb830fc2017-05-19 23:37:01 +08004056 spin_lock_init(&sbi->write_io[i][j].io_lock);
4057 INIT_LIST_HEAD(&sbi->write_io[i][j].io_list);
Chao Yu0b20fce2019-09-30 18:53:25 +08004058 INIT_LIST_HEAD(&sbi->write_io[i][j].bio_list);
4059 init_rwsem(&sbi->write_io[i][j].bio_list_lock);
Jaegeuk Kima912b542017-05-10 11:18:25 -07004060 }
Jaegeuk Kim458e6192013-12-11 13:54:01 +09004061 }
Jaegeuk Kim971767c2013-11-18 17:16:17 +09004062
Jaegeuk Kimb873b792016-08-04 11:38:25 -07004063 init_rwsem(&sbi->cp_rwsem);
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07004064 init_rwsem(&sbi->quota_sem);
Changman Leefb51b5e2013-11-07 12:48:25 +09004065 init_waitqueue_head(&sbi->cp_wait);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004066 init_sb_info(sbi);
4067
Daeho Jeong52118742021-08-19 20:52:28 -07004068 err = f2fs_init_iostat(sbi);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07004069 if (err)
Chao Yud7997e62018-01-17 16:31:35 +08004070 goto free_bio_info;
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07004071
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004072 err = init_percpu_info(sbi);
4073 if (err)
Daeho Jeonga4b68172021-08-20 15:29:09 -07004074 goto free_iostat;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004075
Chao Yuc72db712019-07-12 16:55:42 +08004076 if (F2FS_IO_ALIGNED(sbi)) {
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08004077 sbi->write_io_dummy =
Chao Yua3ebfe42017-02-27 18:43:13 +08004078 mempool_create_page_pool(2 * (F2FS_IO_SIZE(sbi) - 1), 0);
Chao Yu1727f312017-06-12 09:44:27 +08004079 if (!sbi->write_io_dummy) {
4080 err = -ENOMEM;
Chao Yud7997e62018-01-17 16:31:35 +08004081 goto free_percpu;
Chao Yu1727f312017-06-12 09:44:27 +08004082 }
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08004083 }
4084
Chao Yua9991502020-02-25 18:17:10 +08004085 /* init per sbi slab cache */
4086 err = f2fs_init_xattr_caches(sbi);
4087 if (err)
4088 goto free_io_dummy;
Chao Yu31083032020-09-14 17:05:13 +08004089 err = f2fs_init_page_array_cache(sbi);
4090 if (err)
4091 goto free_xattr_cache;
Chao Yua9991502020-02-25 18:17:10 +08004092
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004093 /* get an inode for meta space */
4094 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
4095 if (IS_ERR(sbi->meta_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004096 f2fs_err(sbi, "Failed to read F2FS meta data inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004097 err = PTR_ERR(sbi->meta_inode);
Chao Yu31083032020-09-14 17:05:13 +08004098 goto free_page_array_cache;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004099 }
4100
Chao Yu4d57b862018-05-30 00:20:41 +08004101 err = f2fs_get_valid_checkpoint(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004102 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004103 f2fs_err(sbi, "Failed to get valid F2FS checkpoint");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004104 goto free_meta_inode;
Namjae Jeona07ef782012-12-30 14:52:05 +09004105 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004106
Chao Yuaf033b22018-09-20 20:05:00 +08004107 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_QUOTA_NEED_FSCK_FLAG))
4108 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Jaegeuk Kimdb610a62019-01-24 17:48:38 -08004109 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_DISABLED_QUICK_FLAG)) {
4110 set_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
4111 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_QUICK_INTERVAL;
4112 }
Chao Yuaf033b22018-09-20 20:05:00 +08004113
Qiuyang Sun04f0b2e2019-06-05 11:33:25 +08004114 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_FSCK_FLAG))
4115 set_sbi_flag(sbi, SBI_NEED_FSCK);
4116
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07004117 /* Initialize device list */
4118 err = f2fs_scan_devices(sbi);
4119 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004120 f2fs_err(sbi, "Failed to find devices");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07004121 goto free_devices;
4122 }
4123
Chao Yu4c8ff702019-11-01 18:07:14 +08004124 err = f2fs_init_post_read_wq(sbi);
4125 if (err) {
4126 f2fs_err(sbi, "Failed to initialize post read workqueue");
4127 goto free_devices;
4128 }
4129
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004130 sbi->total_valid_node_count =
4131 le32_to_cpu(sbi->ckpt->valid_node_count);
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07004132 percpu_counter_set(&sbi->total_valid_inode_count,
4133 le32_to_cpu(sbi->ckpt->valid_inode_count));
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004134 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
4135 sbi->total_valid_block_count =
4136 le64_to_cpu(sbi->ckpt->valid_block_count);
4137 sbi->last_valid_block_count = sbi->total_valid_block_count;
Chao Yudaeb4332017-06-26 16:24:41 +08004138 sbi->reserved_blocks = 0;
Yunlong Song80d42142017-10-27 20:45:05 +08004139 sbi->current_reserved_blocks = 0;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08004140 limit_reserve_root(sbi);
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -07004141 adjust_unusable_cap_perc(sbi);
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07004142
Chao Yuc227f912015-12-16 13:09:20 +08004143 for (i = 0; i < NR_INODE_TYPE; i++) {
4144 INIT_LIST_HEAD(&sbi->inode_list[i]);
4145 spin_lock_init(&sbi->inode_lock[i]);
4146 }
Chao Yu040d2bb2019-05-20 17:36:59 +08004147 mutex_init(&sbi->flush_lock);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004148
Chao Yu4d57b862018-05-30 00:20:41 +08004149 f2fs_init_extent_cache_info(sbi);
Chao Yu1dcc3362015-02-05 17:57:31 +08004150
Chao Yu4d57b862018-05-30 00:20:41 +08004151 f2fs_init_ino_entry_info(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004152
Chao Yu50fa53e2018-08-02 23:03:19 +08004153 f2fs_init_fsync_node_info(sbi);
4154
Daeho Jeong261eeb92021-01-19 09:00:42 +09004155 /* setup checkpoint request control and start checkpoint issue thread */
4156 f2fs_init_ckpt_req_control(sbi);
Chao Yu3f7070b2021-03-17 17:56:03 +08004157 if (!f2fs_readonly(sb) && !test_opt(sbi, DISABLE_CHECKPOINT) &&
Daeho Jeong261eeb92021-01-19 09:00:42 +09004158 test_opt(sbi, MERGE_CHECKPOINT)) {
4159 err = f2fs_start_ckpt_thread(sbi);
4160 if (err) {
4161 f2fs_err(sbi,
4162 "Failed to start F2FS issue_checkpoint_thread (%d)",
4163 err);
4164 goto stop_ckpt_thread;
4165 }
4166 }
4167
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004168 /* setup f2fs internal modules */
Chao Yu4d57b862018-05-30 00:20:41 +08004169 err = f2fs_build_segment_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004170 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004171 f2fs_err(sbi, "Failed to initialize F2FS segment manager (%d)",
4172 err);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004173 goto free_sm;
Namjae Jeona07ef782012-12-30 14:52:05 +09004174 }
Chao Yu4d57b862018-05-30 00:20:41 +08004175 err = f2fs_build_node_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004176 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004177 f2fs_err(sbi, "Failed to initialize F2FS node manager (%d)",
4178 err);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004179 goto free_nm;
Namjae Jeona07ef782012-12-30 14:52:05 +09004180 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004181
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004182 /* For write statistics */
Chao Yu3a0a9cb2020-11-27 21:20:06 +08004183 sbi->sectors_written_start = f2fs_get_sectors_written(sbi);
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004184
4185 /* Read accumulated write IO statistics if exists */
4186 seg_i = CURSEG_I(sbi, CURSEG_HOT_NODE);
4187 if (__exist_node_summaries(sbi))
4188 sbi->kbytes_written =
Shuoran Liub2dde6f2016-03-29 18:00:15 +08004189 le64_to_cpu(seg_i->journal->info.kbytes_written);
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004190
Chao Yu4d57b862018-05-30 00:20:41 +08004191 f2fs_build_gc_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004192
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304193 err = f2fs_build_stats(sbi);
4194 if (err)
4195 goto free_nm;
4196
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004197 /* get an inode for node space */
4198 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
4199 if (IS_ERR(sbi->node_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004200 f2fs_err(sbi, "Failed to read node inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004201 err = PTR_ERR(sbi->node_inode);
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304202 goto free_stats;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004203 }
4204
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004205 /* read root inode and dentry */
4206 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
4207 if (IS_ERR(root)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004208 f2fs_err(sbi, "Failed to read root inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004209 err = PTR_ERR(root);
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304210 goto free_node_inode;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004211 }
Chao Yubcbfbd62018-06-29 00:19:25 +08004212 if (!S_ISDIR(root->i_mode) || !root->i_blocks ||
4213 !root->i_size || !root->i_nlink) {
Chao Yu9d847952014-07-25 12:55:09 +08004214 iput(root);
Chao Yu8f99a942013-11-28 15:43:43 +08004215 err = -EINVAL;
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304216 goto free_node_inode;
Chao Yu8f99a942013-11-28 15:43:43 +08004217 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004218
4219 sb->s_root = d_make_root(root); /* allocate root dentry */
4220 if (!sb->s_root) {
4221 err = -ENOMEM;
Chengguang Xu025cdb162019-01-23 15:49:44 +08004222 goto free_node_inode;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004223 }
4224
Chao Yu6ce19af2021-05-20 19:51:50 +08004225 err = f2fs_init_compress_inode(sbi);
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09004226 if (err)
Chao Yua3981012017-06-14 17:39:46 +08004227 goto free_root_inode;
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09004228
Chao Yu6ce19af2021-05-20 19:51:50 +08004229 err = f2fs_register_sysfs(sbi);
4230 if (err)
4231 goto free_compress_inode;
4232
Jaegeuk Kimea676732017-10-06 09:14:28 -07004233#ifdef CONFIG_QUOTA
Sheng Yong76cf05d2018-07-26 19:24:25 +08004234 /* Enable quota usage during mount */
Chao Yu7beb01f2018-10-24 18:34:26 +08004235 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb)) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07004236 err = f2fs_enable_quotas(sb);
Jaegeuk Kim730746c2018-10-02 17:20:58 -07004237 if (err)
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004238 f2fs_err(sbi, "Cannot turn on quotas: error %d", err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07004239 }
4240#endif
Chao Yu7a88ddb2020-02-27 19:30:05 +08004241 /* if there are any orphan inodes, free them */
Chao Yu4d57b862018-05-30 00:20:41 +08004242 err = f2fs_recover_orphan_inodes(sbi);
Chao Yu4b2414d2017-08-08 10:54:31 +08004243 if (err)
Jaegeuk Kimea676732017-10-06 09:14:28 -07004244 goto free_meta;
Chao Yu4b2414d2017-08-08 10:54:31 +08004245
Daniel Rosenberg43549942018-08-20 19:21:43 -07004246 if (unlikely(is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)))
Chao Yuaa2c8c42019-02-19 16:23:53 +08004247 goto reset_checkpoint;
Daniel Rosenberg43549942018-08-20 19:21:43 -07004248
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004249 /* recover fsynced data */
Chao Yua9117ec2020-02-14 17:45:11 +08004250 if (!test_opt(sbi, DISABLE_ROLL_FORWARD) &&
4251 !test_opt(sbi, NORECOVERY)) {
Jaegeuk Kim081d78c2015-01-23 19:16:59 -08004252 /*
4253 * mount should be failed, when device has readonly mode, and
4254 * previous checkpoint was not done by clean system shutdown.
4255 */
Chao Yub61af312019-04-22 20:22:37 +08004256 if (f2fs_hw_is_readonly(sbi)) {
Chao Yu23738e72021-03-31 11:16:32 +08004257 if (!is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
4258 err = f2fs_recover_fsync_data(sbi, true);
4259 if (err > 0) {
4260 err = -EROFS;
4261 f2fs_err(sbi, "Need to recover fsync data, but "
4262 "write access unavailable, please try "
4263 "mount w/ disable_roll_forward or norecovery");
4264 }
4265 if (err < 0)
4266 goto free_meta;
4267 }
4268 f2fs_info(sbi, "write access unavailable, skipping recovery");
Chao Yub61af312019-04-22 20:22:37 +08004269 goto reset_checkpoint;
Jaegeuk Kim081d78c2015-01-23 19:16:59 -08004270 }
Chao Yu2adc3502015-03-16 21:08:44 +08004271
4272 if (need_fsck)
4273 set_sbi_flag(sbi, SBI_NEED_FSCK);
4274
Chao Yuaa2c8c42019-02-19 16:23:53 +08004275 if (skip_recovery)
4276 goto reset_checkpoint;
Jaegeuk Kima468f0e2016-09-19 17:55:10 -07004277
Chao Yu4d57b862018-05-30 00:20:41 +08004278 err = f2fs_recover_fsync_data(sbi, false);
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004279 if (err < 0) {
Chao Yuaa2c8c42019-02-19 16:23:53 +08004280 if (err != -ENOMEM)
4281 skip_recovery = true;
Chao Yu2adc3502015-03-16 21:08:44 +08004282 need_fsck = true;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004283 f2fs_err(sbi, "Cannot recover all fsync data errno=%d",
4284 err);
Chao Yu4b2414d2017-08-08 10:54:31 +08004285 goto free_meta;
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004286 }
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004287 } else {
Chao Yu4d57b862018-05-30 00:20:41 +08004288 err = f2fs_recover_fsync_data(sbi, true);
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004289
4290 if (!f2fs_readonly(sb) && err > 0) {
4291 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004292 f2fs_err(sbi, "Need to recover fsync data");
Jaegeuk Kimea676732017-10-06 09:14:28 -07004293 goto free_meta;
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004294 }
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004295 }
Shin'ichiro Kawasakid508c942019-12-09 19:44:45 +09004296
4297 /*
4298 * If the f2fs is not readonly and fsync data recovery succeeds,
4299 * check zoned block devices' write pointer consistency.
4300 */
4301 if (!err && !f2fs_readonly(sb) && f2fs_sb_has_blkzoned(sbi)) {
4302 err = f2fs_check_write_pointer(sbi);
4303 if (err)
4304 goto free_meta;
4305 }
4306
Chao Yuaa2c8c42019-02-19 16:23:53 +08004307reset_checkpoint:
Chao Yu093749e2020-08-04 21:14:49 +08004308 f2fs_init_inmem_curseg(sbi);
4309
Chao Yu4d57b862018-05-30 00:20:41 +08004310 /* f2fs_recover_fsync_data() cleared this already */
Jaegeuk Kim315df832015-08-11 12:45:39 -07004311 clear_sbi_flag(sbi, SBI_POR_DOING);
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004312
Daniel Rosenberg43549942018-08-20 19:21:43 -07004313 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
4314 err = f2fs_disable_checkpoint(sbi);
4315 if (err)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004316 goto sync_free_meta;
Daniel Rosenberg43549942018-08-20 19:21:43 -07004317 } else if (is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)) {
4318 f2fs_enable_checkpoint(sbi);
4319 }
4320
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004321 /*
4322 * If filesystem is not mounted as read-only then
4323 * do start the gc_thread.
4324 */
Chao Yu5911d2d2021-03-27 17:57:06 +08004325 if ((F2FS_OPTION(sbi).bggc_mode != BGGC_MODE_OFF ||
4326 test_opt(sbi, GC_MERGE)) && !f2fs_readonly(sb)) {
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004327 /* After POR, we can run background GC thread.*/
Chao Yu4d57b862018-05-30 00:20:41 +08004328 err = f2fs_start_gc_thread(sbi);
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004329 if (err)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004330 goto sync_free_meta;
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004331 }
Jaegeuk Kim52225952018-12-13 18:38:33 -08004332 kvfree(options);
hujianyangda554e42015-05-21 14:42:53 +08004333
4334 /* recover broken superblock */
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07004335 if (recovery) {
Chao Yu41214b32016-02-22 18:33:20 +08004336 err = f2fs_commit_super(sbi, true);
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004337 f2fs_info(sbi, "Try to recover %dth superblock, ret: %d",
4338 sbi->valid_super_block ? 1 : 2, err);
hujianyangda554e42015-05-21 14:42:53 +08004339 }
4340
Chao Yubae01ed2017-11-30 19:28:20 +08004341 f2fs_join_shrinker(sbi);
4342
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08004343 f2fs_tuning_parameters(sbi);
4344
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004345 f2fs_notice(sbi, "Mounted with checkpoint version = %llx",
4346 cur_cp_version(F2FS_CKPT(sbi)));
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08004347 f2fs_update_time(sbi, CP_TIME);
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08004348 f2fs_update_time(sbi, REQ_TIME);
Jaegeuk Kimdb610a62019-01-24 17:48:38 -08004349 clear_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004350 return 0;
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004351
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004352sync_free_meta:
4353 /* safe to flush all the data */
4354 sync_filesystem(sbi->sb);
Chao Yuaa2c8c42019-02-19 16:23:53 +08004355 retry_cnt = 0;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004356
Chao Yu4b2414d2017-08-08 10:54:31 +08004357free_meta:
Jaegeuk Kimea676732017-10-06 09:14:28 -07004358#ifdef CONFIG_QUOTA
Sheng Yong26b5a072018-10-12 18:49:26 +08004359 f2fs_truncate_quota_inode_pages(sb);
Chao Yu7beb01f2018-10-24 18:34:26 +08004360 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb))
Jaegeuk Kimea676732017-10-06 09:14:28 -07004361 f2fs_quota_off_umount(sbi->sb);
4362#endif
Chao Yu4b2414d2017-08-08 10:54:31 +08004363 /*
Chao Yu4d57b862018-05-30 00:20:41 +08004364 * Some dirty meta pages can be produced by f2fs_recover_orphan_inodes()
Chao Yu4b2414d2017-08-08 10:54:31 +08004365 * failed by EIO. Then, iput(node_inode) can trigger balance_fs_bg()
Chao Yu4d57b862018-05-30 00:20:41 +08004366 * followed by f2fs_write_checkpoint() through f2fs_write_node_pages(), which
4367 * falls into an infinite loop in f2fs_sync_meta_pages().
Chao Yu4b2414d2017-08-08 10:54:31 +08004368 */
4369 truncate_inode_pages_final(META_MAPPING(sbi));
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004370 /* evict some inodes being cached by GC */
4371 evict_inodes(sb);
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004372 f2fs_unregister_sysfs(sbi);
Chao Yu6ce19af2021-05-20 19:51:50 +08004373free_compress_inode:
4374 f2fs_destroy_compress_inode(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004375free_root_inode:
4376 dput(sb->s_root);
4377 sb->s_root = NULL;
Chao Yubae01ed2017-11-30 19:28:20 +08004378free_node_inode:
Chao Yu4d57b862018-05-30 00:20:41 +08004379 f2fs_release_ino_entry(sbi, true);
Chao Yubae01ed2017-11-30 19:28:20 +08004380 truncate_inode_pages_final(NODE_MAPPING(sbi));
4381 iput(sbi->node_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08004382 sbi->node_inode = NULL;
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304383free_stats:
4384 f2fs_destroy_stats(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004385free_nm:
Dongliang Mu5429c9d2021-11-04 16:22:01 +08004386 /* stop discard thread before destroying node manager */
4387 f2fs_stop_discard_thread(sbi);
Chao Yu4d57b862018-05-30 00:20:41 +08004388 f2fs_destroy_node_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004389free_sm:
Chao Yu4d57b862018-05-30 00:20:41 +08004390 f2fs_destroy_segment_manager(sbi);
Chao Yu4c8ff702019-11-01 18:07:14 +08004391 f2fs_destroy_post_read_wq(sbi);
Daeho Jeong261eeb92021-01-19 09:00:42 +09004392stop_ckpt_thread:
4393 f2fs_stop_ckpt_thread(sbi);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07004394free_devices:
4395 destroy_device_list(sbi);
Jaegeuk Kim52225952018-12-13 18:38:33 -08004396 kvfree(sbi->ckpt);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004397free_meta_inode:
4398 make_bad_inode(sbi->meta_inode);
4399 iput(sbi->meta_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08004400 sbi->meta_inode = NULL;
Chao Yu31083032020-09-14 17:05:13 +08004401free_page_array_cache:
4402 f2fs_destroy_page_array_cache(sbi);
Chao Yua9991502020-02-25 18:17:10 +08004403free_xattr_cache:
4404 f2fs_destroy_xattr_caches(sbi);
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08004405free_io_dummy:
4406 mempool_destroy(sbi->write_io_dummy);
Chao Yud7997e62018-01-17 16:31:35 +08004407free_percpu:
4408 destroy_percpu_info(sbi);
Daeho Jeonga4b68172021-08-20 15:29:09 -07004409free_iostat:
4410 f2fs_destroy_iostat(sbi);
Chao Yud7997e62018-01-17 16:31:35 +08004411free_bio_info:
Jaegeuk Kima912b542017-05-10 11:18:25 -07004412 for (i = 0; i < NR_PAGE_TYPE; i++)
Jaegeuk Kim52225952018-12-13 18:38:33 -08004413 kvfree(sbi->write_io[i]);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07004414
4415#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07004416 utf8_unload(sb->s_encoding);
Hyeongseok Kim89ff6002020-11-12 18:14:54 +09004417 sb->s_encoding = NULL;
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07004418#endif
Chao Yud7997e62018-01-17 16:31:35 +08004419free_options:
Chao Yu4b2414d2017-08-08 10:54:31 +08004420#ifdef CONFIG_QUOTA
4421 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08004422 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08004423#endif
Eric Biggersac4acb12020-09-16 21:11:35 -07004424 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
Jaegeuk Kim52225952018-12-13 18:38:33 -08004425 kvfree(options);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004426free_sb_buf:
Denis Efremov742532d2020-06-10 01:14:46 +03004427 kfree(raw_super);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004428free_sbi:
Keith Mok43b65732016-03-02 12:04:24 -08004429 if (sbi->s_chksum_driver)
4430 crypto_free_shash(sbi->s_chksum_driver);
Denis Efremov742532d2020-06-10 01:14:46 +03004431 kfree(sbi);
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004432
4433 /* give only one another chance */
Chao Yuaa2c8c42019-02-19 16:23:53 +08004434 if (retry_cnt > 0 && skip_recovery) {
4435 retry_cnt--;
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004436 shrink_dcache_sb(sb);
4437 goto try_onemore;
4438 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004439 return err;
4440}
4441
4442static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
4443 const char *dev_name, void *data)
4444{
4445 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
4446}
4447
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004448static void kill_f2fs_super(struct super_block *sb)
4449{
Chao Yucce13252017-06-29 23:17:45 +08004450 if (sb->s_root) {
Jaegeuk Kim1cb50f82018-07-06 16:47:34 -07004451 struct f2fs_sb_info *sbi = F2FS_SB(sb);
4452
4453 set_sbi_flag(sbi, SBI_IS_CLOSE);
4454 f2fs_stop_gc_thread(sbi);
4455 f2fs_stop_discard_thread(sbi);
4456
Chao Yu6ce19af2021-05-20 19:51:50 +08004457#ifdef CONFIG_F2FS_FS_COMPRESSION
4458 /*
4459 * latter evict_inode() can bypass checking and invalidating
4460 * compress inode cache.
4461 */
4462 if (test_opt(sbi, COMPRESS_CACHE))
4463 truncate_inode_pages_final(COMPRESS_MAPPING(sbi));
4464#endif
4465
Jaegeuk Kim1cb50f82018-07-06 16:47:34 -07004466 if (is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
4467 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
4468 struct cp_control cpc = {
4469 .reason = CP_UMOUNT,
4470 };
4471 f2fs_write_checkpoint(sbi, &cpc);
4472 }
Chao Yu13787522018-08-22 17:11:05 +08004473
4474 if (is_sbi_flag_set(sbi, SBI_IS_RECOVERED) && f2fs_readonly(sb))
4475 sb->s_flags &= ~SB_RDONLY;
Chao Yucce13252017-06-29 23:17:45 +08004476 }
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004477 kill_block_super(sb);
4478}
4479
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004480static struct file_system_type f2fs_fs_type = {
4481 .owner = THIS_MODULE,
4482 .name = "f2fs",
4483 .mount = f2fs_mount,
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004484 .kill_sb = kill_f2fs_super,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004485 .fs_flags = FS_REQUIRES_DEV,
4486};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08004487MODULE_ALIAS_FS("f2fs");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004488
Namjae Jeon6e6093a2013-01-17 00:08:30 +09004489static int __init init_inodecache(void)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004490{
Vladimir Davydov5d097052016-01-14 15:18:21 -08004491 f2fs_inode_cachep = kmem_cache_create("f2fs_inode_cache",
4492 sizeof(struct f2fs_inode_info), 0,
4493 SLAB_RECLAIM_ACCOUNT|SLAB_ACCOUNT, NULL);
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09004494 if (!f2fs_inode_cachep)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004495 return -ENOMEM;
4496 return 0;
4497}
4498
4499static void destroy_inodecache(void)
4500{
4501 /*
4502 * Make sure all delayed rcu free inodes are flushed before we
4503 * destroy cache.
4504 */
4505 rcu_barrier();
4506 kmem_cache_destroy(f2fs_inode_cachep);
4507}
4508
4509static int __init init_f2fs_fs(void)
4510{
4511 int err;
4512
Anatoly Pugachev4071e672018-05-28 02:06:37 +03004513 if (PAGE_SIZE != F2FS_BLKSIZE) {
4514 printk("F2FS not supported on PAGE_SIZE(%lu) != %d\n",
4515 PAGE_SIZE, F2FS_BLKSIZE);
4516 return -EINVAL;
4517 }
4518
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004519 err = init_inodecache();
4520 if (err)
4521 goto fail;
Chao Yu4d57b862018-05-30 00:20:41 +08004522 err = f2fs_create_node_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004523 if (err)
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004524 goto free_inodecache;
Chao Yu4d57b862018-05-30 00:20:41 +08004525 err = f2fs_create_segment_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004526 if (err)
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004527 goto free_node_manager_caches;
Chao Yu4d57b862018-05-30 00:20:41 +08004528 err = f2fs_create_checkpoint_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004529 if (err)
Chao Yu06292072014-12-29 15:56:18 +08004530 goto free_segment_manager_caches;
Chao Yucad83c92021-05-07 18:10:38 +08004531 err = f2fs_create_recovery_cache();
Chao Yu1dcc3362015-02-05 17:57:31 +08004532 if (err)
4533 goto free_checkpoint_caches;
Chao Yucad83c92021-05-07 18:10:38 +08004534 err = f2fs_create_extent_cache();
4535 if (err)
4536 goto free_recovery_cache;
Chao Yu093749e2020-08-04 21:14:49 +08004537 err = f2fs_create_garbage_collection_cache();
Chao Yua3981012017-06-14 17:39:46 +08004538 if (err)
Chao Yu1dcc3362015-02-05 17:57:31 +08004539 goto free_extent_cache;
Chao Yu093749e2020-08-04 21:14:49 +08004540 err = f2fs_init_sysfs();
4541 if (err)
4542 goto free_garbage_collection_cache;
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004543 err = register_shrinker(&f2fs_shrinker_info);
Jaegeuk Kimcfc4d972015-05-15 15:37:24 -07004544 if (err)
Chao Yua3981012017-06-14 17:39:46 +08004545 goto free_sysfs;
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004546 err = register_filesystem(&f2fs_fs_type);
4547 if (err)
4548 goto free_shrinker;
Greg Kroah-Hartman21acc072019-01-04 14:26:18 +01004549 f2fs_create_root_stats();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004550 err = f2fs_init_post_read_processing();
4551 if (err)
4552 goto free_root_stats;
Daeho Jeonga4b68172021-08-20 15:29:09 -07004553 err = f2fs_init_iostat_processing();
Chao Yu0b20fce2019-09-30 18:53:25 +08004554 if (err)
4555 goto free_post_read;
Daeho Jeonga4b68172021-08-20 15:29:09 -07004556 err = f2fs_init_bio_entry_cache();
4557 if (err)
4558 goto free_iostat;
Chao Yuf5438052019-12-04 09:52:58 +08004559 err = f2fs_init_bioset();
4560 if (err)
4561 goto free_bio_enrty_cache;
Chao Yu5e6bbde2020-04-08 19:56:05 +08004562 err = f2fs_init_compress_mempool();
4563 if (err)
4564 goto free_bioset;
Chao Yuc68d6c82020-09-14 17:05:14 +08004565 err = f2fs_init_compress_cache();
4566 if (err)
4567 goto free_compress_mempool;
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004568 err = f2fs_create_casefold_cache();
4569 if (err)
4570 goto free_compress_cache;
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004571 return 0;
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004572free_compress_cache:
4573 f2fs_destroy_compress_cache();
Chao Yuc68d6c82020-09-14 17:05:14 +08004574free_compress_mempool:
4575 f2fs_destroy_compress_mempool();
Chao Yu5e6bbde2020-04-08 19:56:05 +08004576free_bioset:
4577 f2fs_destroy_bioset();
Chao Yuf5438052019-12-04 09:52:58 +08004578free_bio_enrty_cache:
4579 f2fs_destroy_bio_entry_cache();
Daeho Jeonga4b68172021-08-20 15:29:09 -07004580free_iostat:
4581 f2fs_destroy_iostat_processing();
Chao Yu0b20fce2019-09-30 18:53:25 +08004582free_post_read:
4583 f2fs_destroy_post_read_processing();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004584free_root_stats:
4585 f2fs_destroy_root_stats();
Chao Yu787c7b8c2015-10-29 09:13:04 +08004586 unregister_filesystem(&f2fs_fs_type);
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004587free_shrinker:
4588 unregister_shrinker(&f2fs_shrinker_info);
Chao Yua3981012017-06-14 17:39:46 +08004589free_sysfs:
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004590 f2fs_exit_sysfs();
Chao Yu093749e2020-08-04 21:14:49 +08004591free_garbage_collection_cache:
4592 f2fs_destroy_garbage_collection_cache();
Chao Yu1dcc3362015-02-05 17:57:31 +08004593free_extent_cache:
Chao Yu4d57b862018-05-30 00:20:41 +08004594 f2fs_destroy_extent_cache();
Chao Yucad83c92021-05-07 18:10:38 +08004595free_recovery_cache:
4596 f2fs_destroy_recovery_cache();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004597free_checkpoint_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004598 f2fs_destroy_checkpoint_caches();
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004599free_segment_manager_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004600 f2fs_destroy_segment_manager_caches();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004601free_node_manager_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004602 f2fs_destroy_node_manager_caches();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004603free_inodecache:
4604 destroy_inodecache();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004605fail:
4606 return err;
4607}
4608
4609static void __exit exit_f2fs_fs(void)
4610{
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004611 f2fs_destroy_casefold_cache();
Chao Yuc68d6c82020-09-14 17:05:14 +08004612 f2fs_destroy_compress_cache();
Chao Yu5e6bbde2020-04-08 19:56:05 +08004613 f2fs_destroy_compress_mempool();
Chao Yuf5438052019-12-04 09:52:58 +08004614 f2fs_destroy_bioset();
Chao Yu0b20fce2019-09-30 18:53:25 +08004615 f2fs_destroy_bio_entry_cache();
Daeho Jeonga4b68172021-08-20 15:29:09 -07004616 f2fs_destroy_iostat_processing();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004617 f2fs_destroy_post_read_processing();
Namjae Jeon4589d252013-01-15 19:58:47 +09004618 f2fs_destroy_root_stats();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004619 unregister_filesystem(&f2fs_fs_type);
Tiezhu Yangb8bef792016-05-18 08:02:25 +08004620 unregister_shrinker(&f2fs_shrinker_info);
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004621 f2fs_exit_sysfs();
Chao Yu093749e2020-08-04 21:14:49 +08004622 f2fs_destroy_garbage_collection_cache();
Chao Yu4d57b862018-05-30 00:20:41 +08004623 f2fs_destroy_extent_cache();
Chao Yucad83c92021-05-07 18:10:38 +08004624 f2fs_destroy_recovery_cache();
Chao Yu4d57b862018-05-30 00:20:41 +08004625 f2fs_destroy_checkpoint_caches();
4626 f2fs_destroy_segment_manager_caches();
4627 f2fs_destroy_node_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004628 destroy_inodecache();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004629}
4630
4631module_init(init_f2fs_fs)
4632module_exit(exit_f2fs_fs)
4633
4634MODULE_AUTHOR("Samsung Electronics's Praesto Team");
4635MODULE_DESCRIPTION("Flash Friendly File System");
4636MODULE_LICENSE("GPL");
Chao Yu0dd57172021-05-18 09:57:54 +08004637MODULE_SOFTDEP("pre: crc32");
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07004638