blob: a29e6714c610c421d0c48be3daf3d5b3385dc118 [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>
11#include <linux/statfs.h>
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090012#include <linux/buffer_head.h>
13#include <linux/backing-dev.h>
14#include <linux/kthread.h>
15#include <linux/parser.h>
16#include <linux/mount.h>
17#include <linux/seq_file.h>
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",
Jaegeuk Kim2c63fea2016-04-29 15:49:56 -070061};
Sheng Yong08796892016-05-16 12:38:50 +080062
Chao Yud4945002018-08-08 17:36:41 +080063void f2fs_build_fault_attr(struct f2fs_sb_info *sbi, unsigned int rate,
64 unsigned int type)
Sheng Yong08796892016-05-16 12:38:50 +080065{
Chao Yu63189b72018-03-08 14:22:56 +080066 struct f2fs_fault_info *ffi = &F2FS_OPTION(sbi).fault_info;
Chao Yu1ecc0c52016-09-23 21:30:09 +080067
Sheng Yong08796892016-05-16 12:38:50 +080068 if (rate) {
Chao Yu1ecc0c52016-09-23 21:30:09 +080069 atomic_set(&ffi->inject_ops, 0);
70 ffi->inject_rate = rate;
Sheng Yong08796892016-05-16 12:38:50 +080071 }
Chao Yud4945002018-08-08 17:36:41 +080072
73 if (type)
74 ffi->inject_type = type;
75
76 if (!rate && !type)
77 memset(ffi, 0, sizeof(struct f2fs_fault_info));
Sheng Yong08796892016-05-16 12:38:50 +080078}
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -070079#endif
80
Jaegeuk Kim2658e502015-06-19 12:01:21 -070081/* f2fs-wide shrinker description */
82static struct shrinker f2fs_shrinker_info = {
83 .scan_objects = f2fs_shrink_scan,
84 .count_objects = f2fs_shrink_count,
85 .seeks = DEFAULT_SEEKS,
86};
87
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090088enum {
Namjae Jeon696c0182013-06-16 09:48:48 +090089 Opt_gc_background,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090090 Opt_disable_roll_forward,
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -080091 Opt_norecovery,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090092 Opt_discard,
Chao Yu64058be2016-07-03 22:05:14 +080093 Opt_nodiscard,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090094 Opt_noheap,
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -040095 Opt_heap,
Kelly Anderson4058c512013-10-07 11:36:20 +090096 Opt_user_xattr,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090097 Opt_nouser_xattr,
Kelly Anderson4058c512013-10-07 11:36:20 +090098 Opt_acl,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +090099 Opt_noacl,
100 Opt_active_logs,
101 Opt_disable_ext_identify,
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900102 Opt_inline_xattr,
Chao Yu23cf7212017-02-15 10:34:45 +0800103 Opt_noinline_xattr,
Chao Yu6afc6622017-09-06 21:59:50 +0800104 Opt_inline_xattr_size,
Huajun Li8274de72013-11-10 23:13:17 +0800105 Opt_inline_data,
Chao Yu5efd3c62014-09-24 18:16:13 +0800106 Opt_inline_dentry,
Chao Yu97c17942016-05-09 19:56:34 +0800107 Opt_noinline_dentry,
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900108 Opt_flush_merge,
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700109 Opt_noflush_merge,
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700110 Opt_nobarrier,
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700111 Opt_fastboot,
Chao Yu89672152015-02-05 17:55:51 +0800112 Opt_extent_cache,
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700113 Opt_noextent_cache,
Wanpeng Li75342792015-03-24 10:20:27 +0800114 Opt_noinline_data,
Chao Yu343f40f2015-12-16 13:12:16 +0800115 Opt_data_flush,
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800116 Opt_reserve_root,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800117 Opt_resgid,
118 Opt_resuid,
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700119 Opt_mode,
Jaegeuk Kimec915382016-12-21 17:09:19 -0800120 Opt_io_size_bits,
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700121 Opt_fault_injection,
Chao Yud4945002018-08-08 17:36:41 +0800122 Opt_fault_type,
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700123 Opt_lazytime,
124 Opt_nolazytime,
Chao Yu4b2414d2017-08-08 10:54:31 +0800125 Opt_quota,
126 Opt_noquota,
Chao Yu0abd6752017-07-09 00:13:07 +0800127 Opt_usrquota,
128 Opt_grpquota,
Chao Yu5c571322017-07-26 00:01:41 +0800129 Opt_prjquota,
Chao Yu4b2414d2017-08-08 10:54:31 +0800130 Opt_usrjquota,
131 Opt_grpjquota,
132 Opt_prjjquota,
133 Opt_offusrjquota,
134 Opt_offgrpjquota,
135 Opt_offprjjquota,
136 Opt_jqfmt_vfsold,
137 Opt_jqfmt_vfsv0,
138 Opt_jqfmt_vfsv1,
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900139 Opt_whint,
Jaegeuk Kim07939622018-02-18 08:50:49 -0800140 Opt_alloc,
Junling Zheng93cf93f2018-03-07 12:07:49 +0800141 Opt_fsync,
Sheng Yongff62af22018-03-15 18:51:42 +0800142 Opt_test_dummy_encryption,
Satya Tangirala27aacd22020-07-02 01:56:06 +0000143 Opt_inlinecrypt,
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700144 Opt_checkpoint_disable,
145 Opt_checkpoint_disable_cap,
146 Opt_checkpoint_disable_cap_perc,
147 Opt_checkpoint_enable,
Daeho Jeong261eeb92021-01-19 09:00:42 +0900148 Opt_checkpoint_merge,
149 Opt_nocheckpoint_merge,
Chao Yu4c8ff702019-11-01 18:07:14 +0800150 Opt_compress_algorithm,
151 Opt_compress_log_size,
152 Opt_compress_extension,
Fengnan Chang151b1982021-06-08 19:15:08 +0800153 Opt_nocompress_extension,
Chao Yub28f0472020-11-26 18:32:09 +0800154 Opt_compress_chksum,
Daeho Jeong602a16d2020-12-01 13:08:02 +0900155 Opt_compress_mode,
Chao Yu6ce19af2021-05-20 19:51:50 +0800156 Opt_compress_cache,
Chao Yu093749e2020-08-04 21:14:49 +0800157 Opt_atgc,
Chao Yu5911d2d2021-03-27 17:57:06 +0800158 Opt_gc_merge,
159 Opt_nogc_merge,
Chao Yu4f993262021-08-03 08:15:43 +0800160 Opt_discard_unit,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900161 Opt_err,
162};
163
164static match_table_t f2fs_tokens = {
Namjae Jeon696c0182013-06-16 09:48:48 +0900165 {Opt_gc_background, "background_gc=%s"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900166 {Opt_disable_roll_forward, "disable_roll_forward"},
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800167 {Opt_norecovery, "norecovery"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900168 {Opt_discard, "discard"},
Chao Yu64058be2016-07-03 22:05:14 +0800169 {Opt_nodiscard, "nodiscard"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900170 {Opt_noheap, "no_heap"},
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -0400171 {Opt_heap, "heap"},
Kelly Anderson4058c512013-10-07 11:36:20 +0900172 {Opt_user_xattr, "user_xattr"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900173 {Opt_nouser_xattr, "nouser_xattr"},
Kelly Anderson4058c512013-10-07 11:36:20 +0900174 {Opt_acl, "acl"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900175 {Opt_noacl, "noacl"},
176 {Opt_active_logs, "active_logs=%u"},
177 {Opt_disable_ext_identify, "disable_ext_identify"},
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900178 {Opt_inline_xattr, "inline_xattr"},
Chao Yu23cf7212017-02-15 10:34:45 +0800179 {Opt_noinline_xattr, "noinline_xattr"},
Chao Yu6afc6622017-09-06 21:59:50 +0800180 {Opt_inline_xattr_size, "inline_xattr_size=%u"},
Huajun Li8274de72013-11-10 23:13:17 +0800181 {Opt_inline_data, "inline_data"},
Chao Yu5efd3c62014-09-24 18:16:13 +0800182 {Opt_inline_dentry, "inline_dentry"},
Chao Yu97c17942016-05-09 19:56:34 +0800183 {Opt_noinline_dentry, "noinline_dentry"},
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900184 {Opt_flush_merge, "flush_merge"},
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700185 {Opt_noflush_merge, "noflush_merge"},
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700186 {Opt_nobarrier, "nobarrier"},
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700187 {Opt_fastboot, "fastboot"},
Chao Yu89672152015-02-05 17:55:51 +0800188 {Opt_extent_cache, "extent_cache"},
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700189 {Opt_noextent_cache, "noextent_cache"},
Wanpeng Li75342792015-03-24 10:20:27 +0800190 {Opt_noinline_data, "noinline_data"},
Chao Yu343f40f2015-12-16 13:12:16 +0800191 {Opt_data_flush, "data_flush"},
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800192 {Opt_reserve_root, "reserve_root=%u"},
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800193 {Opt_resgid, "resgid=%u"},
194 {Opt_resuid, "resuid=%u"},
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700195 {Opt_mode, "mode=%s"},
Jaegeuk Kimec915382016-12-21 17:09:19 -0800196 {Opt_io_size_bits, "io_bits=%u"},
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700197 {Opt_fault_injection, "fault_injection=%u"},
Chao Yud4945002018-08-08 17:36:41 +0800198 {Opt_fault_type, "fault_type=%u"},
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700199 {Opt_lazytime, "lazytime"},
200 {Opt_nolazytime, "nolazytime"},
Chao Yu4b2414d2017-08-08 10:54:31 +0800201 {Opt_quota, "quota"},
202 {Opt_noquota, "noquota"},
Chao Yu0abd6752017-07-09 00:13:07 +0800203 {Opt_usrquota, "usrquota"},
204 {Opt_grpquota, "grpquota"},
Chao Yu5c571322017-07-26 00:01:41 +0800205 {Opt_prjquota, "prjquota"},
Chao Yu4b2414d2017-08-08 10:54:31 +0800206 {Opt_usrjquota, "usrjquota=%s"},
207 {Opt_grpjquota, "grpjquota=%s"},
208 {Opt_prjjquota, "prjjquota=%s"},
209 {Opt_offusrjquota, "usrjquota="},
210 {Opt_offgrpjquota, "grpjquota="},
211 {Opt_offprjjquota, "prjjquota="},
212 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
213 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
214 {Opt_jqfmt_vfsv1, "jqfmt=vfsv1"},
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900215 {Opt_whint, "whint_mode=%s"},
Jaegeuk Kim07939622018-02-18 08:50:49 -0800216 {Opt_alloc, "alloc_mode=%s"},
Junling Zheng93cf93f2018-03-07 12:07:49 +0800217 {Opt_fsync, "fsync_mode=%s"},
Eric Biggersed318a62020-05-12 16:32:50 -0700218 {Opt_test_dummy_encryption, "test_dummy_encryption=%s"},
Sheng Yongff62af22018-03-15 18:51:42 +0800219 {Opt_test_dummy_encryption, "test_dummy_encryption"},
Satya Tangirala27aacd22020-07-02 01:56:06 +0000220 {Opt_inlinecrypt, "inlinecrypt"},
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -0700221 {Opt_checkpoint_disable, "checkpoint=disable"},
222 {Opt_checkpoint_disable_cap, "checkpoint=disable:%u"},
223 {Opt_checkpoint_disable_cap_perc, "checkpoint=disable:%u%%"},
224 {Opt_checkpoint_enable, "checkpoint=enable"},
Daeho Jeong261eeb92021-01-19 09:00:42 +0900225 {Opt_checkpoint_merge, "checkpoint_merge"},
226 {Opt_nocheckpoint_merge, "nocheckpoint_merge"},
Chao Yu4c8ff702019-11-01 18:07:14 +0800227 {Opt_compress_algorithm, "compress_algorithm=%s"},
228 {Opt_compress_log_size, "compress_log_size=%u"},
229 {Opt_compress_extension, "compress_extension=%s"},
Fengnan Chang151b1982021-06-08 19:15:08 +0800230 {Opt_nocompress_extension, "nocompress_extension=%s"},
Chao Yub28f0472020-11-26 18:32:09 +0800231 {Opt_compress_chksum, "compress_chksum"},
Daeho Jeong602a16d2020-12-01 13:08:02 +0900232 {Opt_compress_mode, "compress_mode=%s"},
Chao Yu6ce19af2021-05-20 19:51:50 +0800233 {Opt_compress_cache, "compress_cache"},
Chao Yu093749e2020-08-04 21:14:49 +0800234 {Opt_atgc, "atgc"},
Chao Yu5911d2d2021-03-27 17:57:06 +0800235 {Opt_gc_merge, "gc_merge"},
236 {Opt_nogc_merge, "nogc_merge"},
Chao Yu4f993262021-08-03 08:15:43 +0800237 {Opt_discard_unit, "discard_unit=%s"},
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900238 {Opt_err, NULL},
239};
240
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800241void f2fs_printk(struct f2fs_sb_info *sbi, const char *fmt, ...)
Namjae Jeona07ef782012-12-30 14:52:05 +0900242{
243 struct va_format vaf;
244 va_list args;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800245 int level;
Namjae Jeona07ef782012-12-30 14:52:05 +0900246
247 va_start(args, fmt);
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800248
249 level = printk_get_level(fmt);
250 vaf.fmt = printk_skip_level(fmt);
Namjae Jeona07ef782012-12-30 14:52:05 +0900251 vaf.va = &args;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800252 printk("%c%cF2FS-fs (%s): %pV\n",
253 KERN_SOH_ASCII, level, sbi->sb->s_id, &vaf);
254
Namjae Jeona07ef782012-12-30 14:52:05 +0900255 va_end(args);
256}
257
Daniel Rosenberg5aba5432019-07-23 16:05:28 -0700258#ifdef CONFIG_UNICODE
259static const struct f2fs_sb_encodings {
260 __u16 magic;
261 char *name;
262 char *version;
263} f2fs_sb_encoding_map[] = {
264 {F2FS_ENC_UTF8_12_1, "utf8", "12.1.0"},
265};
266
267static int f2fs_sb_read_encoding(const struct f2fs_super_block *sb,
268 const struct f2fs_sb_encodings **encoding,
269 __u16 *flags)
270{
271 __u16 magic = le16_to_cpu(sb->s_encoding);
272 int i;
273
274 for (i = 0; i < ARRAY_SIZE(f2fs_sb_encoding_map); i++)
275 if (magic == f2fs_sb_encoding_map[i].magic)
276 break;
277
278 if (i >= ARRAY_SIZE(f2fs_sb_encoding_map))
279 return -EINVAL;
280
281 *encoding = &f2fs_sb_encoding_map[i];
282 *flags = le16_to_cpu(sb->s_encoding_flags);
283
284 return 0;
285}
Chao Yu4d9a2bb2021-06-11 07:46:30 +0800286
287struct kmem_cache *f2fs_cf_name_slab;
288static int __init f2fs_create_casefold_cache(void)
289{
290 f2fs_cf_name_slab = f2fs_kmem_cache_create("f2fs_casefolded_name",
291 F2FS_NAME_LEN);
292 if (!f2fs_cf_name_slab)
293 return -ENOMEM;
294 return 0;
295}
296
297static void f2fs_destroy_casefold_cache(void)
298{
299 kmem_cache_destroy(f2fs_cf_name_slab);
300}
301#else
302static int __init f2fs_create_casefold_cache(void) { return 0; }
303static void f2fs_destroy_casefold_cache(void) { }
Daniel Rosenberg5aba5432019-07-23 16:05:28 -0700304#endif
305
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800306static inline void limit_reserve_root(struct f2fs_sb_info *sbi)
307{
Daniel Rosenberg9a9aeca2019-05-29 17:49:04 -0700308 block_t limit = min((sbi->user_block_count << 1) / 1000,
309 sbi->user_block_count - sbi->reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800310
311 /* limit is 0.2% */
Chao Yu63189b72018-03-08 14:22:56 +0800312 if (test_opt(sbi, RESERVE_ROOT) &&
313 F2FS_OPTION(sbi).root_reserved_blocks > limit) {
314 F2FS_OPTION(sbi).root_reserved_blocks = limit;
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800315 f2fs_info(sbi, "Reduce reserved blocks for root = %u",
316 F2FS_OPTION(sbi).root_reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800317 }
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800318 if (!test_opt(sbi, RESERVE_ROOT) &&
Chao Yu63189b72018-03-08 14:22:56 +0800319 (!uid_eq(F2FS_OPTION(sbi).s_resuid,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800320 make_kuid(&init_user_ns, F2FS_DEF_RESUID)) ||
Chao Yu63189b72018-03-08 14:22:56 +0800321 !gid_eq(F2FS_OPTION(sbi).s_resgid,
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800322 make_kgid(&init_user_ns, F2FS_DEF_RESGID))))
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800323 f2fs_info(sbi, "Ignore s_resuid=%u, s_resgid=%u w/o reserve_root",
324 from_kuid_munged(&init_user_ns,
325 F2FS_OPTION(sbi).s_resuid),
326 from_kgid_munged(&init_user_ns,
327 F2FS_OPTION(sbi).s_resgid));
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800328}
329
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -0700330static inline void adjust_unusable_cap_perc(struct f2fs_sb_info *sbi)
331{
332 if (!F2FS_OPTION(sbi).unusable_cap_perc)
333 return;
334
335 if (F2FS_OPTION(sbi).unusable_cap_perc == 100)
336 F2FS_OPTION(sbi).unusable_cap = sbi->user_block_count;
337 else
338 F2FS_OPTION(sbi).unusable_cap = (sbi->user_block_count / 100) *
339 F2FS_OPTION(sbi).unusable_cap_perc;
340
341 f2fs_info(sbi, "Adjust unusable cap for checkpoint=disable = %u / %u%%",
342 F2FS_OPTION(sbi).unusable_cap,
343 F2FS_OPTION(sbi).unusable_cap_perc);
344}
345
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900346static void init_once(void *foo)
347{
348 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
349
Jaegeuk Kimaff063e2012-11-02 17:07:47 +0900350 inode_init_once(&fi->vfs_inode);
351}
352
Chao Yu4b2414d2017-08-08 10:54:31 +0800353#ifdef CONFIG_QUOTA
354static const char * const quotatypes[] = INITQFNAMES;
355#define QTYPE2NAME(t) (quotatypes[t])
356static int f2fs_set_qf_name(struct super_block *sb, int qtype,
357 substring_t *args)
358{
359 struct f2fs_sb_info *sbi = F2FS_SB(sb);
360 char *qname;
361 int ret = -EINVAL;
362
Chao Yu63189b72018-03-08 14:22:56 +0800363 if (sb_any_quota_loaded(sb) && !F2FS_OPTION(sbi).s_qf_names[qtype]) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800364 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
Chao Yu4b2414d2017-08-08 10:54:31 +0800365 return -EINVAL;
366 }
Chao Yu7beb01f2018-10-24 18:34:26 +0800367 if (f2fs_sb_has_quota_ino(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800368 f2fs_info(sbi, "QUOTA feature is enabled, so ignore qf_name");
Jaegeuk Kimea676732017-10-06 09:14:28 -0700369 return 0;
370 }
371
Chao Yu4b2414d2017-08-08 10:54:31 +0800372 qname = match_strdup(args);
373 if (!qname) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800374 f2fs_err(sbi, "Not enough memory for storing quotafile name");
Chengguang Xuf365c6c2019-01-01 21:33:11 +0800375 return -ENOMEM;
Chao Yu4b2414d2017-08-08 10:54:31 +0800376 }
Chao Yu63189b72018-03-08 14:22:56 +0800377 if (F2FS_OPTION(sbi).s_qf_names[qtype]) {
378 if (strcmp(F2FS_OPTION(sbi).s_qf_names[qtype], qname) == 0)
Chao Yu4b2414d2017-08-08 10:54:31 +0800379 ret = 0;
380 else
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800381 f2fs_err(sbi, "%s quota file already specified",
Chao Yu4b2414d2017-08-08 10:54:31 +0800382 QTYPE2NAME(qtype));
383 goto errout;
384 }
385 if (strchr(qname, '/')) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800386 f2fs_err(sbi, "quotafile must be on filesystem root");
Chao Yu4b2414d2017-08-08 10:54:31 +0800387 goto errout;
388 }
Chao Yu63189b72018-03-08 14:22:56 +0800389 F2FS_OPTION(sbi).s_qf_names[qtype] = qname;
Chao Yu4b2414d2017-08-08 10:54:31 +0800390 set_opt(sbi, QUOTA);
391 return 0;
392errout:
Wang Xiaojunba87a452020-06-17 20:30:12 +0800393 kfree(qname);
Chao Yu4b2414d2017-08-08 10:54:31 +0800394 return ret;
395}
396
397static int f2fs_clear_qf_name(struct super_block *sb, int qtype)
398{
399 struct f2fs_sb_info *sbi = F2FS_SB(sb);
400
Chao Yu63189b72018-03-08 14:22:56 +0800401 if (sb_any_quota_loaded(sb) && F2FS_OPTION(sbi).s_qf_names[qtype]) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800402 f2fs_err(sbi, "Cannot change journaled quota options when quota turned on");
Chao Yu4b2414d2017-08-08 10:54:31 +0800403 return -EINVAL;
404 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800405 kfree(F2FS_OPTION(sbi).s_qf_names[qtype]);
Chao Yu63189b72018-03-08 14:22:56 +0800406 F2FS_OPTION(sbi).s_qf_names[qtype] = NULL;
Chao Yu4b2414d2017-08-08 10:54:31 +0800407 return 0;
408}
409
410static int f2fs_check_quota_options(struct f2fs_sb_info *sbi)
411{
412 /*
413 * We do the test below only for project quotas. 'usrquota' and
414 * 'grpquota' mount options are allowed even without quota feature
415 * to support legacy quotas in quota files.
416 */
Chao Yu7beb01f2018-10-24 18:34:26 +0800417 if (test_opt(sbi, PRJQUOTA) && !f2fs_sb_has_project_quota(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800418 f2fs_err(sbi, "Project quota feature not enabled. Cannot enable project quota enforcement.");
Chao Yu4b2414d2017-08-08 10:54:31 +0800419 return -1;
420 }
Chao Yu63189b72018-03-08 14:22:56 +0800421 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA] ||
422 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA] ||
423 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]) {
424 if (test_opt(sbi, USRQUOTA) &&
425 F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800426 clear_opt(sbi, USRQUOTA);
427
Chao Yu63189b72018-03-08 14:22:56 +0800428 if (test_opt(sbi, GRPQUOTA) &&
429 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800430 clear_opt(sbi, GRPQUOTA);
431
Chao Yu63189b72018-03-08 14:22:56 +0800432 if (test_opt(sbi, PRJQUOTA) &&
433 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
Chao Yu4b2414d2017-08-08 10:54:31 +0800434 clear_opt(sbi, PRJQUOTA);
435
436 if (test_opt(sbi, GRPQUOTA) || test_opt(sbi, USRQUOTA) ||
437 test_opt(sbi, PRJQUOTA)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800438 f2fs_err(sbi, "old and new quota format mixing");
Chao Yu4b2414d2017-08-08 10:54:31 +0800439 return -1;
440 }
441
Chao Yu63189b72018-03-08 14:22:56 +0800442 if (!F2FS_OPTION(sbi).s_jquota_fmt) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800443 f2fs_err(sbi, "journaled quota format not specified");
Chao Yu4b2414d2017-08-08 10:54:31 +0800444 return -1;
445 }
446 }
Jaegeuk Kimea676732017-10-06 09:14:28 -0700447
Chao Yu7beb01f2018-10-24 18:34:26 +0800448 if (f2fs_sb_has_quota_ino(sbi) && F2FS_OPTION(sbi).s_jquota_fmt) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800449 f2fs_info(sbi, "QUOTA feature is enabled, so ignore jquota_fmt");
Chao Yu63189b72018-03-08 14:22:56 +0800450 F2FS_OPTION(sbi).s_jquota_fmt = 0;
Jaegeuk Kimea676732017-10-06 09:14:28 -0700451 }
Chao Yu4b2414d2017-08-08 10:54:31 +0800452 return 0;
453}
454#endif
455
Eric Biggersed318a62020-05-12 16:32:50 -0700456static int f2fs_set_test_dummy_encryption(struct super_block *sb,
457 const char *opt,
458 const substring_t *arg,
459 bool is_remount)
460{
461 struct f2fs_sb_info *sbi = F2FS_SB(sb);
462#ifdef CONFIG_FS_ENCRYPTION
463 int err;
464
465 if (!f2fs_sb_has_encrypt(sbi)) {
466 f2fs_err(sbi, "Encrypt feature is off");
467 return -EINVAL;
468 }
469
470 /*
471 * This mount option is just for testing, and it's not worthwhile to
472 * implement the extra complexity (e.g. RCU protection) that would be
473 * needed to allow it to be set or changed during remount. We do allow
474 * it to be specified during remount, but only if there is no change.
475 */
Eric Biggersac4acb12020-09-16 21:11:35 -0700476 if (is_remount && !F2FS_OPTION(sbi).dummy_enc_policy.policy) {
Eric Biggersed318a62020-05-12 16:32:50 -0700477 f2fs_warn(sbi, "Can't set test_dummy_encryption on remount");
478 return -EINVAL;
479 }
480 err = fscrypt_set_test_dummy_encryption(
Eric Biggersc8c868a2020-09-16 21:11:36 -0700481 sb, arg->from, &F2FS_OPTION(sbi).dummy_enc_policy);
Eric Biggersed318a62020-05-12 16:32:50 -0700482 if (err) {
483 if (err == -EEXIST)
484 f2fs_warn(sbi,
485 "Can't change test_dummy_encryption on remount");
486 else if (err == -EINVAL)
487 f2fs_warn(sbi, "Value of option \"%s\" is unrecognized",
488 opt);
489 else
490 f2fs_warn(sbi, "Error processing option \"%s\" [%d]",
491 opt, err);
492 return -EINVAL;
493 }
494 f2fs_warn(sbi, "Test dummy encryption mode enabled");
495#else
496 f2fs_warn(sbi, "Test dummy encryption mount option ignored");
497#endif
498 return 0;
499}
500
Chao Yu3fde13f2021-01-22 17:46:43 +0800501#ifdef CONFIG_F2FS_FS_COMPRESSION
Fengnan Chang151b1982021-06-08 19:15:08 +0800502/*
503 * 1. The same extension name cannot not appear in both compress and non-compress extension
504 * at the same time.
505 * 2. If the compress extension specifies all files, the types specified by the non-compress
506 * extension will be treated as special cases and will not be compressed.
507 * 3. Don't allow the non-compress extension specifies all files.
508 */
509static int f2fs_test_compress_extension(struct f2fs_sb_info *sbi)
510{
511 unsigned char (*ext)[F2FS_EXTENSION_LEN];
512 unsigned char (*noext)[F2FS_EXTENSION_LEN];
513 int ext_cnt, noext_cnt, index = 0, no_index = 0;
514
515 ext = F2FS_OPTION(sbi).extensions;
516 ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt;
517 noext = F2FS_OPTION(sbi).noextensions;
518 noext_cnt = F2FS_OPTION(sbi).nocompress_ext_cnt;
519
520 if (!noext_cnt)
521 return 0;
522
523 for (no_index = 0; no_index < noext_cnt; no_index++) {
524 if (!strcasecmp("*", noext[no_index])) {
525 f2fs_info(sbi, "Don't allow the nocompress extension specifies all files");
526 return -EINVAL;
527 }
528 for (index = 0; index < ext_cnt; index++) {
529 if (!strcasecmp(ext[index], noext[no_index])) {
530 f2fs_info(sbi, "Don't allow the same extension %s appear in both compress and nocompress extension",
531 ext[index]);
532 return -EINVAL;
533 }
534 }
535 }
536 return 0;
537}
538
Chao Yu3fde13f2021-01-22 17:46:43 +0800539#ifdef CONFIG_F2FS_FS_LZ4
540static int f2fs_set_lz4hc_level(struct f2fs_sb_info *sbi, const char *str)
541{
542#ifdef CONFIG_F2FS_FS_LZ4HC
543 unsigned int level;
544#endif
545
546 if (strlen(str) == 3) {
547 F2FS_OPTION(sbi).compress_level = 0;
548 return 0;
549 }
550
551#ifdef CONFIG_F2FS_FS_LZ4HC
552 str += 3;
553
554 if (str[0] != ':') {
555 f2fs_info(sbi, "wrong format, e.g. <alg_name>:<compr_level>");
556 return -EINVAL;
557 }
558 if (kstrtouint(str + 1, 10, &level))
559 return -EINVAL;
560
561 if (level < LZ4HC_MIN_CLEVEL || level > LZ4HC_MAX_CLEVEL) {
562 f2fs_info(sbi, "invalid lz4hc compress level: %d", level);
563 return -EINVAL;
564 }
565
566 F2FS_OPTION(sbi).compress_level = level;
567 return 0;
568#else
569 f2fs_info(sbi, "kernel doesn't support lz4hc compression");
570 return -EINVAL;
571#endif
572}
573#endif
574
575#ifdef CONFIG_F2FS_FS_ZSTD
576static int f2fs_set_zstd_level(struct f2fs_sb_info *sbi, const char *str)
577{
578 unsigned int level;
579 int len = 4;
580
581 if (strlen(str) == len) {
582 F2FS_OPTION(sbi).compress_level = 0;
583 return 0;
584 }
585
586 str += len;
587
588 if (str[0] != ':') {
589 f2fs_info(sbi, "wrong format, e.g. <alg_name>:<compr_level>");
590 return -EINVAL;
591 }
592 if (kstrtouint(str + 1, 10, &level))
593 return -EINVAL;
594
595 if (!level || level > ZSTD_maxCLevel()) {
596 f2fs_info(sbi, "invalid zstd compress level: %d", level);
597 return -EINVAL;
598 }
599
600 F2FS_OPTION(sbi).compress_level = level;
601 return 0;
602}
603#endif
604#endif
605
Eric Biggersed318a62020-05-12 16:32:50 -0700606static int parse_options(struct super_block *sb, char *options, bool is_remount)
Namjae Jeon696c0182013-06-16 09:48:48 +0900607{
608 struct f2fs_sb_info *sbi = F2FS_SB(sb);
609 substring_t args[MAX_OPT_ARGS];
Chao Yu1f0b0672020-07-29 21:21:36 +0800610#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +0800611 unsigned char (*ext)[F2FS_EXTENSION_LEN];
Fengnan Chang151b1982021-06-08 19:15:08 +0800612 unsigned char (*noext)[F2FS_EXTENSION_LEN];
613 int ext_cnt, noext_cnt;
Chao Yu1f0b0672020-07-29 21:21:36 +0800614#endif
Namjae Jeon696c0182013-06-16 09:48:48 +0900615 char *p, *name;
Chao Yu1f0b0672020-07-29 21:21:36 +0800616 int arg = 0;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800617 kuid_t uid;
618 kgid_t gid;
Chao Yu4b2414d2017-08-08 10:54:31 +0800619 int ret;
Namjae Jeon696c0182013-06-16 09:48:48 +0900620
621 if (!options)
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -0700622 goto default_check;
Namjae Jeon696c0182013-06-16 09:48:48 +0900623
624 while ((p = strsep(&options, ",")) != NULL) {
625 int token;
Yi Zhuang5f029c02021-04-06 09:47:35 +0800626
Namjae Jeon696c0182013-06-16 09:48:48 +0900627 if (!*p)
628 continue;
629 /*
630 * Initialize args struct so we know whether arg was
631 * found; some options take optional arguments.
632 */
633 args[0].to = args[0].from = NULL;
634 token = match_token(p, f2fs_tokens, args);
635
636 switch (token) {
637 case Opt_gc_background:
638 name = match_strdup(&args[0]);
639
640 if (!name)
641 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700642 if (!strcmp(name, "on")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800643 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
Eric Biggers3c57f752020-05-01 16:35:23 -0700644 } else if (!strcmp(name, "off")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800645 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_OFF;
Eric Biggers3c57f752020-05-01 16:35:23 -0700646 } else if (!strcmp(name, "sync")) {
Chao Yubbbc34f2020-02-14 17:44:13 +0800647 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_SYNC;
Jaegeuk Kim6aefd932015-10-05 11:02:54 -0700648 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800649 kfree(name);
Namjae Jeon696c0182013-06-16 09:48:48 +0900650 return -EINVAL;
651 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800652 kfree(name);
Namjae Jeon696c0182013-06-16 09:48:48 +0900653 break;
654 case Opt_disable_roll_forward:
655 set_opt(sbi, DISABLE_ROLL_FORWARD);
656 break;
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800657 case Opt_norecovery:
658 /* this option mounts f2fs with ro */
Chao Yua9117ec2020-02-14 17:45:11 +0800659 set_opt(sbi, NORECOVERY);
Jaegeuk Kim2d834bf2015-01-23 18:33:46 -0800660 if (!f2fs_readonly(sb))
661 return -EINVAL;
662 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900663 case Opt_discard:
Chao Yuf7db8dd2021-08-30 08:35:33 +0800664 if (!f2fs_hw_support_discard(sbi)) {
665 f2fs_warn(sbi, "device does not support discard");
666 break;
667 }
Chao Yu7d20c8a2018-09-04 03:52:17 +0800668 set_opt(sbi, DISCARD);
Namjae Jeon696c0182013-06-16 09:48:48 +0900669 break;
Chao Yu64058be2016-07-03 22:05:14 +0800670 case Opt_nodiscard:
Chao Yuf7db8dd2021-08-30 08:35:33 +0800671 if (f2fs_hw_should_discard(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800672 f2fs_warn(sbi, "discard is required for zoned block devices");
Damien Le Moal96ba2de2016-10-28 17:45:03 +0900673 return -EINVAL;
674 }
Chao Yu64058be2016-07-03 22:05:14 +0800675 clear_opt(sbi, DISCARD);
Damien Le Moal487df612016-10-28 17:44:59 +0900676 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900677 case Opt_noheap:
678 set_opt(sbi, NOHEAP);
679 break;
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -0400680 case Opt_heap:
681 clear_opt(sbi, NOHEAP);
682 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900683#ifdef CONFIG_F2FS_FS_XATTR
Kelly Anderson4058c512013-10-07 11:36:20 +0900684 case Opt_user_xattr:
685 set_opt(sbi, XATTR_USER);
686 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900687 case Opt_nouser_xattr:
688 clear_opt(sbi, XATTR_USER);
689 break;
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900690 case Opt_inline_xattr:
691 set_opt(sbi, INLINE_XATTR);
692 break;
Chao Yu23cf7212017-02-15 10:34:45 +0800693 case Opt_noinline_xattr:
694 clear_opt(sbi, INLINE_XATTR);
695 break;
Chao Yu6afc6622017-09-06 21:59:50 +0800696 case Opt_inline_xattr_size:
697 if (args->from && match_int(args, &arg))
698 return -EINVAL;
699 set_opt(sbi, INLINE_XATTR_SIZE);
Chao Yu63189b72018-03-08 14:22:56 +0800700 F2FS_OPTION(sbi).inline_xattr_size = arg;
Chao Yu6afc6622017-09-06 21:59:50 +0800701 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900702#else
Kelly Anderson4058c512013-10-07 11:36:20 +0900703 case Opt_user_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800704 f2fs_info(sbi, "user_xattr options not supported");
Kelly Anderson4058c512013-10-07 11:36:20 +0900705 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900706 case Opt_nouser_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800707 f2fs_info(sbi, "nouser_xattr options not supported");
Namjae Jeon696c0182013-06-16 09:48:48 +0900708 break;
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900709 case Opt_inline_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800710 f2fs_info(sbi, "inline_xattr options not supported");
Jaegeuk Kim444c5802013-08-08 15:16:22 +0900711 break;
Chao Yu23cf7212017-02-15 10:34:45 +0800712 case Opt_noinline_xattr:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800713 f2fs_info(sbi, "noinline_xattr options not supported");
Chao Yu23cf7212017-02-15 10:34:45 +0800714 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900715#endif
716#ifdef CONFIG_F2FS_FS_POSIX_ACL
Kelly Anderson4058c512013-10-07 11:36:20 +0900717 case Opt_acl:
718 set_opt(sbi, POSIX_ACL);
719 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900720 case Opt_noacl:
721 clear_opt(sbi, POSIX_ACL);
722 break;
723#else
Kelly Anderson4058c512013-10-07 11:36:20 +0900724 case Opt_acl:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800725 f2fs_info(sbi, "acl options not supported");
Kelly Anderson4058c512013-10-07 11:36:20 +0900726 break;
Namjae Jeon696c0182013-06-16 09:48:48 +0900727 case Opt_noacl:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800728 f2fs_info(sbi, "noacl options not supported");
Namjae Jeon696c0182013-06-16 09:48:48 +0900729 break;
730#endif
731 case Opt_active_logs:
732 if (args->from && match_int(args, &arg))
733 return -EINVAL;
Chao Yud0b9e422020-08-04 21:14:45 +0800734 if (arg != 2 && arg != 4 &&
735 arg != NR_CURSEG_PERSIST_TYPE)
Namjae Jeon696c0182013-06-16 09:48:48 +0900736 return -EINVAL;
Chao Yu63189b72018-03-08 14:22:56 +0800737 F2FS_OPTION(sbi).active_logs = arg;
Namjae Jeon696c0182013-06-16 09:48:48 +0900738 break;
739 case Opt_disable_ext_identify:
740 set_opt(sbi, DISABLE_EXT_IDENTIFY);
741 break;
Huajun Li8274de72013-11-10 23:13:17 +0800742 case Opt_inline_data:
743 set_opt(sbi, INLINE_DATA);
744 break;
Chao Yu5efd3c62014-09-24 18:16:13 +0800745 case Opt_inline_dentry:
746 set_opt(sbi, INLINE_DENTRY);
747 break;
Chao Yu97c17942016-05-09 19:56:34 +0800748 case Opt_noinline_dentry:
749 clear_opt(sbi, INLINE_DENTRY);
750 break;
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +0900751 case Opt_flush_merge:
752 set_opt(sbi, FLUSH_MERGE);
753 break;
Jaegeuk Kim69e9e422016-05-20 22:39:20 -0700754 case Opt_noflush_merge:
755 clear_opt(sbi, FLUSH_MERGE);
756 break;
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -0700757 case Opt_nobarrier:
758 set_opt(sbi, NOBARRIER);
759 break;
Jaegeuk Kimd5053a342014-10-30 22:47:03 -0700760 case Opt_fastboot:
761 set_opt(sbi, FASTBOOT);
762 break;
Chao Yu89672152015-02-05 17:55:51 +0800763 case Opt_extent_cache:
764 set_opt(sbi, EXTENT_CACHE);
765 break;
Jaegeuk Kim7daaea22015-06-25 17:43:04 -0700766 case Opt_noextent_cache:
767 clear_opt(sbi, EXTENT_CACHE);
768 break;
Wanpeng Li75342792015-03-24 10:20:27 +0800769 case Opt_noinline_data:
770 clear_opt(sbi, INLINE_DATA);
771 break;
Chao Yu343f40f2015-12-16 13:12:16 +0800772 case Opt_data_flush:
773 set_opt(sbi, DATA_FLUSH);
774 break;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800775 case Opt_reserve_root:
776 if (args->from && match_int(args, &arg))
777 return -EINVAL;
778 if (test_opt(sbi, RESERVE_ROOT)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800779 f2fs_info(sbi, "Preserve previous reserve_root=%u",
780 F2FS_OPTION(sbi).root_reserved_blocks);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800781 } else {
Chao Yu63189b72018-03-08 14:22:56 +0800782 F2FS_OPTION(sbi).root_reserved_blocks = arg;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -0800783 set_opt(sbi, RESERVE_ROOT);
784 }
785 break;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800786 case Opt_resuid:
787 if (args->from && match_int(args, &arg))
788 return -EINVAL;
789 uid = make_kuid(current_user_ns(), arg);
790 if (!uid_valid(uid)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800791 f2fs_err(sbi, "Invalid uid value %d", arg);
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800792 return -EINVAL;
793 }
Chao Yu63189b72018-03-08 14:22:56 +0800794 F2FS_OPTION(sbi).s_resuid = uid;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800795 break;
796 case Opt_resgid:
797 if (args->from && match_int(args, &arg))
798 return -EINVAL;
799 gid = make_kgid(current_user_ns(), arg);
800 if (!gid_valid(gid)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800801 f2fs_err(sbi, "Invalid gid value %d", arg);
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800802 return -EINVAL;
803 }
Chao Yu63189b72018-03-08 14:22:56 +0800804 F2FS_OPTION(sbi).s_resgid = gid;
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -0800805 break;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700806 case Opt_mode:
807 name = match_strdup(&args[0]);
808
809 if (!name)
810 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700811 if (!strcmp(name, "adaptive")) {
Chao Yu7beb01f2018-10-24 18:34:26 +0800812 if (f2fs_sb_has_blkzoned(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800813 f2fs_warn(sbi, "adaptive mode is not allowed with zoned block device feature");
Wang Xiaojunba87a452020-06-17 20:30:12 +0800814 kfree(name);
Damien Le Moal3adc57e2016-10-28 17:45:04 +0900815 return -EINVAL;
816 }
Chao Yub0332a02020-02-14 17:44:12 +0800817 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
Eric Biggers3c57f752020-05-01 16:35:23 -0700818 } else if (!strcmp(name, "lfs")) {
Chao Yub0332a02020-02-14 17:44:12 +0800819 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700820 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800821 kfree(name);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700822 return -EINVAL;
823 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800824 kfree(name);
Jaegeuk Kim36abef42016-06-03 19:29:38 -0700825 break;
Jaegeuk Kimec915382016-12-21 17:09:19 -0800826 case Opt_io_size_bits:
827 if (args->from && match_int(args, &arg))
828 return -EINVAL;
Christoph Hellwiga8affc02021-03-11 12:01:37 +0100829 if (arg <= 0 || arg > __ilog2_u32(BIO_MAX_VECS)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800830 f2fs_warn(sbi, "Not support %d, larger than %d",
Christoph Hellwiga8affc02021-03-11 12:01:37 +0100831 1 << arg, BIO_MAX_VECS);
Jaegeuk Kimec915382016-12-21 17:09:19 -0800832 return -EINVAL;
833 }
Chao Yu63189b72018-03-08 14:22:56 +0800834 F2FS_OPTION(sbi).write_io_size_bits = arg;
Jaegeuk Kimec915382016-12-21 17:09:19 -0800835 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800836#ifdef CONFIG_F2FS_FAULT_INJECTION
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700837 case Opt_fault_injection:
838 if (args->from && match_int(args, &arg))
839 return -EINVAL;
Chao Yud4945002018-08-08 17:36:41 +0800840 f2fs_build_fault_attr(sbi, arg, F2FS_ALL_FAULT_TYPE);
841 set_opt(sbi, FAULT_INJECTION);
Chao Yud4945002018-08-08 17:36:41 +0800842 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800843
Chao Yud4945002018-08-08 17:36:41 +0800844 case Opt_fault_type:
845 if (args->from && match_int(args, &arg))
846 return -EINVAL;
Chao Yud4945002018-08-08 17:36:41 +0800847 f2fs_build_fault_attr(sbi, 0, arg);
Kaixu Xia0cc0dec2017-01-27 09:35:37 +0800848 set_opt(sbi, FAULT_INJECTION);
Jaegeuk Kim73faec4d2016-04-29 15:34:32 -0700849 break;
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800850#else
851 case Opt_fault_injection:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800852 f2fs_info(sbi, "fault_injection options not supported");
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800853 break;
854
855 case Opt_fault_type:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800856 f2fs_info(sbi, "fault_type options not supported");
Chengguang Xu4cb037e2018-09-12 13:32:52 +0800857 break;
858#endif
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700859 case Opt_lazytime:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800860 sb->s_flags |= SB_LAZYTIME;
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700861 break;
862 case Opt_nolazytime:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800863 sb->s_flags &= ~SB_LAZYTIME;
Jaegeuk Kim6d94c742016-05-20 21:47:24 -0700864 break;
Chao Yu0abd6752017-07-09 00:13:07 +0800865#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +0800866 case Opt_quota:
Chao Yu0abd6752017-07-09 00:13:07 +0800867 case Opt_usrquota:
868 set_opt(sbi, USRQUOTA);
869 break;
870 case Opt_grpquota:
871 set_opt(sbi, GRPQUOTA);
872 break;
Chao Yu5c571322017-07-26 00:01:41 +0800873 case Opt_prjquota:
874 set_opt(sbi, PRJQUOTA);
875 break;
Chao Yu4b2414d2017-08-08 10:54:31 +0800876 case Opt_usrjquota:
877 ret = f2fs_set_qf_name(sb, USRQUOTA, &args[0]);
878 if (ret)
879 return ret;
880 break;
881 case Opt_grpjquota:
882 ret = f2fs_set_qf_name(sb, GRPQUOTA, &args[0]);
883 if (ret)
884 return ret;
885 break;
886 case Opt_prjjquota:
887 ret = f2fs_set_qf_name(sb, PRJQUOTA, &args[0]);
888 if (ret)
889 return ret;
890 break;
891 case Opt_offusrjquota:
892 ret = f2fs_clear_qf_name(sb, USRQUOTA);
893 if (ret)
894 return ret;
895 break;
896 case Opt_offgrpjquota:
897 ret = f2fs_clear_qf_name(sb, GRPQUOTA);
898 if (ret)
899 return ret;
900 break;
901 case Opt_offprjjquota:
902 ret = f2fs_clear_qf_name(sb, PRJQUOTA);
903 if (ret)
904 return ret;
905 break;
906 case Opt_jqfmt_vfsold:
Chao Yu63189b72018-03-08 14:22:56 +0800907 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_OLD;
Chao Yu4b2414d2017-08-08 10:54:31 +0800908 break;
909 case Opt_jqfmt_vfsv0:
Chao Yu63189b72018-03-08 14:22:56 +0800910 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V0;
Chao Yu4b2414d2017-08-08 10:54:31 +0800911 break;
912 case Opt_jqfmt_vfsv1:
Chao Yu63189b72018-03-08 14:22:56 +0800913 F2FS_OPTION(sbi).s_jquota_fmt = QFMT_VFS_V1;
Chao Yu4b2414d2017-08-08 10:54:31 +0800914 break;
915 case Opt_noquota:
916 clear_opt(sbi, QUOTA);
917 clear_opt(sbi, USRQUOTA);
918 clear_opt(sbi, GRPQUOTA);
919 clear_opt(sbi, PRJQUOTA);
920 break;
Chao Yu0abd6752017-07-09 00:13:07 +0800921#else
Chao Yu4b2414d2017-08-08 10:54:31 +0800922 case Opt_quota:
Chao Yu0abd6752017-07-09 00:13:07 +0800923 case Opt_usrquota:
924 case Opt_grpquota:
Chao Yu5c571322017-07-26 00:01:41 +0800925 case Opt_prjquota:
Chao Yu4b2414d2017-08-08 10:54:31 +0800926 case Opt_usrjquota:
927 case Opt_grpjquota:
928 case Opt_prjjquota:
929 case Opt_offusrjquota:
930 case Opt_offgrpjquota:
931 case Opt_offprjjquota:
932 case Opt_jqfmt_vfsold:
933 case Opt_jqfmt_vfsv0:
934 case Opt_jqfmt_vfsv1:
935 case Opt_noquota:
Joe Perchesdcbb4c12019-06-18 17:48:42 +0800936 f2fs_info(sbi, "quota operations not supported");
Chao Yu0abd6752017-07-09 00:13:07 +0800937 break;
938#endif
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900939 case Opt_whint:
940 name = match_strdup(&args[0]);
941 if (!name)
942 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700943 if (!strcmp(name, "user-based")) {
Chao Yu63189b72018-03-08 14:22:56 +0800944 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_USER;
Eric Biggers3c57f752020-05-01 16:35:23 -0700945 } else if (!strcmp(name, "off")) {
Chao Yu63189b72018-03-08 14:22:56 +0800946 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
Eric Biggers3c57f752020-05-01 16:35:23 -0700947 } else if (!strcmp(name, "fs-based")) {
Chao Yu63189b72018-03-08 14:22:56 +0800948 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_FS;
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900949 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800950 kfree(name);
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900951 return -EINVAL;
952 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800953 kfree(name);
Hyunchul Lee0cdd3192018-01-31 11:36:57 +0900954 break;
Jaegeuk Kim07939622018-02-18 08:50:49 -0800955 case Opt_alloc:
956 name = match_strdup(&args[0]);
957 if (!name)
958 return -ENOMEM;
959
Eric Biggers3c57f752020-05-01 16:35:23 -0700960 if (!strcmp(name, "default")) {
Chao Yu63189b72018-03-08 14:22:56 +0800961 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
Eric Biggers3c57f752020-05-01 16:35:23 -0700962 } else if (!strcmp(name, "reuse")) {
Chao Yu63189b72018-03-08 14:22:56 +0800963 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
Jaegeuk Kim07939622018-02-18 08:50:49 -0800964 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800965 kfree(name);
Jaegeuk Kim07939622018-02-18 08:50:49 -0800966 return -EINVAL;
967 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800968 kfree(name);
Jaegeuk Kim07939622018-02-18 08:50:49 -0800969 break;
Junling Zheng93cf93f2018-03-07 12:07:49 +0800970 case Opt_fsync:
971 name = match_strdup(&args[0]);
972 if (!name)
973 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -0700974 if (!strcmp(name, "posix")) {
Chao Yu63189b72018-03-08 14:22:56 +0800975 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
Eric Biggers3c57f752020-05-01 16:35:23 -0700976 } else if (!strcmp(name, "strict")) {
Chao Yu63189b72018-03-08 14:22:56 +0800977 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_STRICT;
Eric Biggers3c57f752020-05-01 16:35:23 -0700978 } else if (!strcmp(name, "nobarrier")) {
Jaegeuk Kimd6290812018-05-25 18:02:58 -0700979 F2FS_OPTION(sbi).fsync_mode =
980 FSYNC_MODE_NOBARRIER;
Junling Zheng93cf93f2018-03-07 12:07:49 +0800981 } else {
Wang Xiaojunba87a452020-06-17 20:30:12 +0800982 kfree(name);
Junling Zheng93cf93f2018-03-07 12:07:49 +0800983 return -EINVAL;
984 }
Wang Xiaojunba87a452020-06-17 20:30:12 +0800985 kfree(name);
Junling Zheng93cf93f2018-03-07 12:07:49 +0800986 break;
Sheng Yongff62af22018-03-15 18:51:42 +0800987 case Opt_test_dummy_encryption:
Eric Biggersed318a62020-05-12 16:32:50 -0700988 ret = f2fs_set_test_dummy_encryption(sb, p, &args[0],
989 is_remount);
990 if (ret)
991 return ret;
Sheng Yongff62af22018-03-15 18:51:42 +0800992 break;
Satya Tangirala27aacd22020-07-02 01:56:06 +0000993 case Opt_inlinecrypt:
994#ifdef CONFIG_FS_ENCRYPTION_INLINE_CRYPT
995 sb->s_flags |= SB_INLINECRYPT;
996#else
997 f2fs_info(sbi, "inline encryption not supported");
998#endif
999 break;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001000 case Opt_checkpoint_disable_cap_perc:
1001 if (args->from && match_int(args, &arg))
Daniel Rosenberg43549942018-08-20 19:21:43 -07001002 return -EINVAL;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001003 if (arg < 0 || arg > 100)
1004 return -EINVAL;
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -07001005 F2FS_OPTION(sbi).unusable_cap_perc = arg;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001006 set_opt(sbi, DISABLE_CHECKPOINT);
1007 break;
1008 case Opt_checkpoint_disable_cap:
1009 if (args->from && match_int(args, &arg))
1010 return -EINVAL;
1011 F2FS_OPTION(sbi).unusable_cap = arg;
1012 set_opt(sbi, DISABLE_CHECKPOINT);
1013 break;
1014 case Opt_checkpoint_disable:
1015 set_opt(sbi, DISABLE_CHECKPOINT);
1016 break;
1017 case Opt_checkpoint_enable:
1018 clear_opt(sbi, DISABLE_CHECKPOINT);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001019 break;
Daeho Jeong261eeb92021-01-19 09:00:42 +09001020 case Opt_checkpoint_merge:
1021 set_opt(sbi, MERGE_CHECKPOINT);
1022 break;
1023 case Opt_nocheckpoint_merge:
1024 clear_opt(sbi, MERGE_CHECKPOINT);
1025 break;
Chao Yu1f0b0672020-07-29 21:21:36 +08001026#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001027 case Opt_compress_algorithm:
1028 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001029 f2fs_info(sbi, "Image doesn't support compression");
1030 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001031 }
1032 name = match_strdup(&args[0]);
1033 if (!name)
1034 return -ENOMEM;
Eric Biggers3c57f752020-05-01 16:35:23 -07001035 if (!strcmp(name, "lzo")) {
Chao Yu32be0e92021-01-22 17:40:13 +08001036#ifdef CONFIG_F2FS_FS_LZO
Chao Yu3fde13f2021-01-22 17:46:43 +08001037 F2FS_OPTION(sbi).compress_level = 0;
Chao Yu4c8ff702019-11-01 18:07:14 +08001038 F2FS_OPTION(sbi).compress_algorithm =
1039 COMPRESS_LZO;
Chao Yu32be0e92021-01-22 17:40:13 +08001040#else
1041 f2fs_info(sbi, "kernel doesn't support lzo compression");
1042#endif
Chao Yu3fde13f2021-01-22 17:46:43 +08001043 } else if (!strncmp(name, "lz4", 3)) {
Chao Yu32be0e92021-01-22 17:40:13 +08001044#ifdef CONFIG_F2FS_FS_LZ4
Chao Yu3fde13f2021-01-22 17:46:43 +08001045 ret = f2fs_set_lz4hc_level(sbi, name);
1046 if (ret) {
1047 kfree(name);
1048 return -EINVAL;
1049 }
Chao Yu4c8ff702019-11-01 18:07:14 +08001050 F2FS_OPTION(sbi).compress_algorithm =
1051 COMPRESS_LZ4;
Chao Yu32be0e92021-01-22 17:40:13 +08001052#else
1053 f2fs_info(sbi, "kernel doesn't support lz4 compression");
1054#endif
Chao Yu3fde13f2021-01-22 17:46:43 +08001055 } else if (!strncmp(name, "zstd", 4)) {
Chao Yu32be0e92021-01-22 17:40:13 +08001056#ifdef CONFIG_F2FS_FS_ZSTD
Chao Yu3fde13f2021-01-22 17:46:43 +08001057 ret = f2fs_set_zstd_level(sbi, name);
1058 if (ret) {
1059 kfree(name);
1060 return -EINVAL;
1061 }
Chao Yu50cfa662020-03-03 17:46:02 +08001062 F2FS_OPTION(sbi).compress_algorithm =
1063 COMPRESS_ZSTD;
Chao Yu32be0e92021-01-22 17:40:13 +08001064#else
1065 f2fs_info(sbi, "kernel doesn't support zstd compression");
1066#endif
Chao Yu6d92b202020-04-08 19:56:32 +08001067 } else if (!strcmp(name, "lzo-rle")) {
Chao Yu32be0e92021-01-22 17:40:13 +08001068#ifdef CONFIG_F2FS_FS_LZORLE
Chao Yu3fde13f2021-01-22 17:46:43 +08001069 F2FS_OPTION(sbi).compress_level = 0;
Chao Yu6d92b202020-04-08 19:56:32 +08001070 F2FS_OPTION(sbi).compress_algorithm =
1071 COMPRESS_LZORLE;
Chao Yu32be0e92021-01-22 17:40:13 +08001072#else
1073 f2fs_info(sbi, "kernel doesn't support lzorle compression");
1074#endif
Chao Yu4c8ff702019-11-01 18:07:14 +08001075 } else {
1076 kfree(name);
1077 return -EINVAL;
1078 }
1079 kfree(name);
1080 break;
1081 case Opt_compress_log_size:
1082 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001083 f2fs_info(sbi, "Image doesn't support compression");
1084 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001085 }
1086 if (args->from && match_int(args, &arg))
1087 return -EINVAL;
1088 if (arg < MIN_COMPRESS_LOG_SIZE ||
1089 arg > MAX_COMPRESS_LOG_SIZE) {
1090 f2fs_err(sbi,
1091 "Compress cluster log size is out of range");
1092 return -EINVAL;
1093 }
1094 F2FS_OPTION(sbi).compress_log_size = arg;
1095 break;
1096 case Opt_compress_extension:
1097 if (!f2fs_sb_has_compression(sbi)) {
Chao Yu69c0dd22020-09-03 10:14:41 +08001098 f2fs_info(sbi, "Image doesn't support compression");
1099 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001100 }
1101 name = match_strdup(&args[0]);
1102 if (!name)
1103 return -ENOMEM;
1104
1105 ext = F2FS_OPTION(sbi).extensions;
1106 ext_cnt = F2FS_OPTION(sbi).compress_ext_cnt;
1107
1108 if (strlen(name) >= F2FS_EXTENSION_LEN ||
1109 ext_cnt >= COMPRESS_EXT_NUM) {
1110 f2fs_err(sbi,
1111 "invalid extension length/number");
1112 kfree(name);
1113 return -EINVAL;
1114 }
1115
1116 strcpy(ext[ext_cnt], name);
1117 F2FS_OPTION(sbi).compress_ext_cnt++;
1118 kfree(name);
1119 break;
Fengnan Chang151b1982021-06-08 19:15:08 +08001120 case Opt_nocompress_extension:
1121 if (!f2fs_sb_has_compression(sbi)) {
1122 f2fs_info(sbi, "Image doesn't support compression");
1123 break;
1124 }
1125 name = match_strdup(&args[0]);
1126 if (!name)
1127 return -ENOMEM;
1128
1129 noext = F2FS_OPTION(sbi).noextensions;
1130 noext_cnt = F2FS_OPTION(sbi).nocompress_ext_cnt;
1131
1132 if (strlen(name) >= F2FS_EXTENSION_LEN ||
1133 noext_cnt >= COMPRESS_EXT_NUM) {
1134 f2fs_err(sbi,
1135 "invalid extension length/number");
1136 kfree(name);
1137 return -EINVAL;
1138 }
1139
1140 strcpy(noext[noext_cnt], name);
1141 F2FS_OPTION(sbi).nocompress_ext_cnt++;
1142 kfree(name);
1143 break;
Chao Yub28f0472020-11-26 18:32:09 +08001144 case Opt_compress_chksum:
1145 F2FS_OPTION(sbi).compress_chksum = true;
1146 break;
Daeho Jeong602a16d2020-12-01 13:08:02 +09001147 case Opt_compress_mode:
1148 name = match_strdup(&args[0]);
1149 if (!name)
1150 return -ENOMEM;
1151 if (!strcmp(name, "fs")) {
1152 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_FS;
1153 } else if (!strcmp(name, "user")) {
1154 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_USER;
1155 } else {
1156 kfree(name);
1157 return -EINVAL;
1158 }
1159 kfree(name);
1160 break;
Chao Yu6ce19af2021-05-20 19:51:50 +08001161 case Opt_compress_cache:
1162 set_opt(sbi, COMPRESS_CACHE);
1163 break;
Chao Yu1f0b0672020-07-29 21:21:36 +08001164#else
1165 case Opt_compress_algorithm:
1166 case Opt_compress_log_size:
1167 case Opt_compress_extension:
Fengnan Chang151b1982021-06-08 19:15:08 +08001168 case Opt_nocompress_extension:
Chao Yub28f0472020-11-26 18:32:09 +08001169 case Opt_compress_chksum:
Daeho Jeong602a16d2020-12-01 13:08:02 +09001170 case Opt_compress_mode:
Chao Yu6ce19af2021-05-20 19:51:50 +08001171 case Opt_compress_cache:
Chao Yu1f0b0672020-07-29 21:21:36 +08001172 f2fs_info(sbi, "compression options not supported");
1173 break;
1174#endif
Chao Yu093749e2020-08-04 21:14:49 +08001175 case Opt_atgc:
1176 set_opt(sbi, ATGC);
1177 break;
Chao Yu5911d2d2021-03-27 17:57:06 +08001178 case Opt_gc_merge:
1179 set_opt(sbi, GC_MERGE);
1180 break;
1181 case Opt_nogc_merge:
1182 clear_opt(sbi, GC_MERGE);
1183 break;
Chao Yu4f993262021-08-03 08:15:43 +08001184 case Opt_discard_unit:
1185 name = match_strdup(&args[0]);
1186 if (!name)
1187 return -ENOMEM;
1188 if (!strcmp(name, "block")) {
1189 F2FS_OPTION(sbi).discard_unit =
1190 DISCARD_UNIT_BLOCK;
1191 } else if (!strcmp(name, "segment")) {
1192 F2FS_OPTION(sbi).discard_unit =
1193 DISCARD_UNIT_SEGMENT;
1194 } else if (!strcmp(name, "section")) {
1195 F2FS_OPTION(sbi).discard_unit =
1196 DISCARD_UNIT_SECTION;
1197 } else {
1198 kfree(name);
1199 return -EINVAL;
1200 }
1201 kfree(name);
1202 break;
Namjae Jeon696c0182013-06-16 09:48:48 +09001203 default:
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001204 f2fs_err(sbi, "Unrecognized mount option \"%s\" or missing value",
1205 p);
Namjae Jeon696c0182013-06-16 09:48:48 +09001206 return -EINVAL;
1207 }
1208 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001209default_check:
Chao Yu4b2414d2017-08-08 10:54:31 +08001210#ifdef CONFIG_QUOTA
1211 if (f2fs_check_quota_options(sbi))
1212 return -EINVAL;
Sheng Yong00960c2cd2018-07-24 20:17:52 +08001213#else
Chao Yu7beb01f2018-10-24 18:34:26 +08001214 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sbi->sb)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001215 f2fs_info(sbi, "Filesystem with quota feature cannot be mounted RDWR without CONFIG_QUOTA");
Sheng Yong00960c2cd2018-07-24 20:17:52 +08001216 return -EINVAL;
1217 }
Chao Yu7beb01f2018-10-24 18:34:26 +08001218 if (f2fs_sb_has_project_quota(sbi) && !f2fs_readonly(sbi->sb)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001219 f2fs_err(sbi, "Filesystem with project quota feature cannot be mounted RDWR without CONFIG_QUOTA");
Chao Yu4ddc1b22018-07-26 07:19:48 +08001220 return -EINVAL;
1221 }
Chao Yu4b2414d2017-08-08 10:54:31 +08001222#endif
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001223#ifndef CONFIG_UNICODE
1224 if (f2fs_sb_has_casefold(sbi)) {
1225 f2fs_err(sbi,
1226 "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
1227 return -EINVAL;
1228 }
1229#endif
Chao Yud0660122020-09-21 20:53:14 +08001230 /*
1231 * The BLKZONED feature indicates that the drive was formatted with
1232 * zone alignment optimization. This is optional for host-aware
1233 * devices, but mandatory for host-managed zoned block devices.
1234 */
1235#ifndef CONFIG_BLK_DEV_ZONED
1236 if (f2fs_sb_has_blkzoned(sbi)) {
1237 f2fs_err(sbi, "Zoned block device support is not enabled");
1238 return -EINVAL;
1239 }
1240#endif
Chao Yu4f993262021-08-03 08:15:43 +08001241 if (f2fs_sb_has_blkzoned(sbi)) {
1242 if (F2FS_OPTION(sbi).discard_unit !=
1243 DISCARD_UNIT_SECTION) {
1244 f2fs_info(sbi, "Zoned block device doesn't need small discard, set discard_unit=section by default");
1245 F2FS_OPTION(sbi).discard_unit =
1246 DISCARD_UNIT_SECTION;
1247 }
1248 }
Jaegeuk Kimec915382016-12-21 17:09:19 -08001249
Fengnan Chang151b1982021-06-08 19:15:08 +08001250#ifdef CONFIG_F2FS_FS_COMPRESSION
1251 if (f2fs_test_compress_extension(sbi)) {
1252 f2fs_err(sbi, "invalid compress or nocompress extension");
1253 return -EINVAL;
1254 }
1255#endif
1256
Chao Yub0332a02020-02-14 17:44:12 +08001257 if (F2FS_IO_SIZE_BITS(sbi) && !f2fs_lfs_mode(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001258 f2fs_err(sbi, "Should set mode=lfs with %uKB-sized IO",
1259 F2FS_IO_SIZE_KB(sbi));
Jaegeuk Kimec915382016-12-21 17:09:19 -08001260 return -EINVAL;
1261 }
Chao Yu6afc6622017-09-06 21:59:50 +08001262
1263 if (test_opt(sbi, INLINE_XATTR_SIZE)) {
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001264 int min_size, max_size;
1265
Chao Yu7beb01f2018-10-24 18:34:26 +08001266 if (!f2fs_sb_has_extra_attr(sbi) ||
1267 !f2fs_sb_has_flexible_inline_xattr(sbi)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001268 f2fs_err(sbi, "extra_attr or flexible_inline_xattr feature is off");
Chao Yu4d817ae2018-01-27 17:29:48 +08001269 return -EINVAL;
1270 }
Chao Yu6afc6622017-09-06 21:59:50 +08001271 if (!test_opt(sbi, INLINE_XATTR)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001272 f2fs_err(sbi, "inline_xattr_size option should be set with inline_xattr option");
Chao Yu6afc6622017-09-06 21:59:50 +08001273 return -EINVAL;
1274 }
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001275
1276 min_size = sizeof(struct f2fs_xattr_header) / sizeof(__le32);
Chao Yudd6c89b2019-03-04 17:19:04 +08001277 max_size = MAX_INLINE_XATTR_SIZE;
Jaegeuk Kim70db5b02019-03-12 11:49:53 -07001278
1279 if (F2FS_OPTION(sbi).inline_xattr_size < min_size ||
1280 F2FS_OPTION(sbi).inline_xattr_size > max_size) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08001281 f2fs_err(sbi, "inline xattr size is out of range: %d ~ %d",
1282 min_size, max_size);
Chao Yu6afc6622017-09-06 21:59:50 +08001283 return -EINVAL;
1284 }
1285 }
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001286
Chao Yub0332a02020-02-14 17:44:12 +08001287 if (test_opt(sbi, DISABLE_CHECKPOINT) && f2fs_lfs_mode(sbi)) {
Joe Perches833dcd32021-05-26 13:05:36 -07001288 f2fs_err(sbi, "LFS not compatible with checkpoint=disable");
Daniel Rosenberg43549942018-08-20 19:21:43 -07001289 return -EINVAL;
1290 }
1291
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001292 /* Not pass down write hints if the number of active logs is lesser
Chao Yud0b9e422020-08-04 21:14:45 +08001293 * than NR_CURSEG_PERSIST_TYPE.
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001294 */
Chao Yu63189b72018-03-08 14:22:56 +08001295 if (F2FS_OPTION(sbi).active_logs != NR_CURSEG_TYPE)
1296 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001297
1298 if (f2fs_sb_has_readonly(sbi) && !f2fs_readonly(sbi->sb)) {
1299 f2fs_err(sbi, "Allow to mount readonly mode only");
1300 return -EROFS;
1301 }
Namjae Jeon696c0182013-06-16 09:48:48 +09001302 return 0;
1303}
1304
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001305static struct inode *f2fs_alloc_inode(struct super_block *sb)
1306{
1307 struct f2fs_inode_info *fi;
1308
Chao Yu32410572021-08-09 08:24:48 +08001309 fi = f2fs_kmem_cache_alloc(f2fs_inode_cachep,
1310 GFP_F2FS_ZERO, false, F2FS_SB(sb));
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001311 if (!fi)
1312 return NULL;
1313
1314 init_once((void *) fi);
1315
Masanari Iida434720f2013-03-19 08:03:35 +09001316 /* Initialize f2fs-specific inode info */
Jaegeuk Kim204706c2016-12-02 15:11:32 -08001317 atomic_set(&fi->dirty_pages, 0);
Daeho Jeongc2759eb2020-09-08 11:44:10 +09001318 atomic_set(&fi->i_compr_blocks, 0);
Jaegeuk Kimd928bfb2014-03-20 19:10:08 +09001319 init_rwsem(&fi->i_sem);
Chao Yuc10c9822020-02-27 19:30:03 +08001320 spin_lock_init(&fi->i_size_lock);
Chao Yu2710fd72015-12-15 13:30:45 +08001321 INIT_LIST_HEAD(&fi->dirty_list);
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001322 INIT_LIST_HEAD(&fi->gdirty_list);
Jaegeuk Kim57864ae2017-10-18 19:05:57 -07001323 INIT_LIST_HEAD(&fi->inmem_ilist);
Jaegeuk Kim88b88a62014-10-06 17:39:50 -07001324 INIT_LIST_HEAD(&fi->inmem_pages);
1325 mutex_init(&fi->inmem_lock);
Chao Yub2532c62018-04-24 10:55:28 +08001326 init_rwsem(&fi->i_gc_rwsem[READ]);
1327 init_rwsem(&fi->i_gc_rwsem[WRITE]);
Qiuyang Sun5a3a2d82017-05-18 11:06:45 +08001328 init_rwsem(&fi->i_mmap_sem);
Yunlei He27161f12017-09-07 10:40:54 +08001329 init_rwsem(&fi->i_xattr_sem);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001330
Jaegeuk Kimab9fa662014-02-27 20:09:05 +09001331 /* Will be used by directory only */
1332 fi->i_dir_level = F2FS_SB(sb)->dir_level;
Chao Yuf2470372017-07-19 00:19:05 +08001333
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001334 return &fi->vfs_inode;
1335}
1336
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001337static int f2fs_drop_inode(struct inode *inode)
1338{
Chao Yua8933b62019-07-18 16:39:59 +08001339 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001340 int ret;
Chao Yua8933b62019-07-18 16:39:59 +08001341
1342 /*
1343 * during filesystem shutdown, if checkpoint is disabled,
1344 * drop useless meta/node dirty pages.
1345 */
1346 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED))) {
1347 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1348 inode->i_ino == F2FS_META_INO(sbi)) {
1349 trace_f2fs_drop_inode(inode, 1);
1350 return 1;
1351 }
1352 }
1353
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001354 /*
1355 * This is to avoid a deadlock condition like below.
1356 * writeback_single_inode(inode)
1357 * - f2fs_write_data_page
1358 * - f2fs_gc -> iput -> evict
1359 * - inode_wait_for_writeback(inode)
1360 */
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001361 if ((!inode_unhashed(inode) && inode->i_state & I_SYNC)) {
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001362 if (!inode->i_nlink && !is_bad_inode(inode)) {
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001363 /* to avoid evict_inode call simultaneously */
1364 atomic_inc(&inode->i_count);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001365 spin_unlock(&inode->i_lock);
1366
1367 /* some remained atomic pages should discarded */
1368 if (f2fs_is_atomic_file(inode))
Chao Yu4d57b862018-05-30 00:20:41 +08001369 f2fs_drop_inmem_pages(inode);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001370
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001371 /* should remain fi->extent_tree for writepage */
1372 f2fs_destroy_extent_node(inode);
1373
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001374 sb_start_intwrite(inode->i_sb);
Jaegeuk Kimfc9581c2016-05-20 09:22:03 -07001375 f2fs_i_size_write(inode, 0);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001376
zhenglianga0770e12019-03-04 09:32:25 +08001377 f2fs_submit_merged_write_cond(F2FS_I_SB(inode),
1378 inode, NULL, 0, DATA);
1379 truncate_inode_pages_final(inode->i_mapping);
1380
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001381 if (F2FS_HAS_BLOCKS(inode))
Jaegeuk Kim9a449e92016-06-02 13:49:38 -07001382 f2fs_truncate(inode);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001383
1384 sb_end_intwrite(inode->i_sb);
1385
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001386 spin_lock(&inode->i_lock);
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07001387 atomic_dec(&inode->i_count);
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001388 }
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001389 trace_f2fs_drop_inode(inode, 0);
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001390 return 0;
Jaegeuk Kim06e1bc02015-05-13 14:35:14 -07001391 }
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001392 ret = generic_drop_inode(inode);
Eric Biggers8ce589c2019-08-04 19:35:48 -07001393 if (!ret)
1394 ret = fscrypt_drop_inode(inode);
Hou Pengyangb8d96a32017-02-27 13:02:58 +00001395 trace_f2fs_drop_inode(inode, ret);
1396 return ret;
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09001397}
1398
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001399int f2fs_inode_dirtied(struct inode *inode, bool sync)
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001400{
1401 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001402 int ret = 0;
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001403
1404 spin_lock(&sbi->inode_lock[DIRTY_META]);
1405 if (is_inode_flag_set(inode, FI_DIRTY_INODE)) {
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001406 ret = 1;
1407 } else {
1408 set_inode_flag(inode, FI_DIRTY_INODE);
1409 stat_inc_dirty_inode(sbi, DIRTY_META);
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001410 }
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001411 if (sync && list_empty(&F2FS_I(inode)->gdirty_list)) {
1412 list_add_tail(&F2FS_I(inode)->gdirty_list,
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001413 &sbi->inode_list[DIRTY_META]);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001414 inc_page_count(sbi, F2FS_DIRTY_IMETA);
1415 }
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001416 spin_unlock(&sbi->inode_lock[DIRTY_META]);
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001417 return ret;
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001418}
1419
1420void f2fs_inode_synced(struct inode *inode)
1421{
1422 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1423
1424 spin_lock(&sbi->inode_lock[DIRTY_META]);
1425 if (!is_inode_flag_set(inode, FI_DIRTY_INODE)) {
1426 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1427 return;
1428 }
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001429 if (!list_empty(&F2FS_I(inode)->gdirty_list)) {
1430 list_del_init(&F2FS_I(inode)->gdirty_list);
1431 dec_page_count(sbi, F2FS_DIRTY_IMETA);
1432 }
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001433 clear_inode_flag(inode, FI_DIRTY_INODE);
1434 clear_inode_flag(inode, FI_AUTO_RECOVER);
Jaegeuk Kimb56ab832016-06-30 19:09:37 -07001435 stat_dec_dirty_inode(F2FS_I_SB(inode), DIRTY_META);
1436 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1437}
1438
Jaegeuk Kimb3783872013-06-10 09:17:01 +09001439/*
1440 * f2fs_dirty_inode() is called from __mark_inode_dirty()
1441 *
1442 * We should call set_dirty_inode to write the dirty inode through write_inode.
1443 */
1444static void f2fs_dirty_inode(struct inode *inode, int flags)
1445{
Jaegeuk Kim0f18b462016-05-20 11:10:10 -07001446 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1447
1448 if (inode->i_ino == F2FS_NODE_INO(sbi) ||
1449 inode->i_ino == F2FS_META_INO(sbi))
1450 return;
1451
Jaegeuk Kim26de9b12016-05-20 20:42:37 -07001452 if (is_inode_flag_set(inode, FI_AUTO_RECOVER))
1453 clear_inode_flag(inode, FI_AUTO_RECOVER);
1454
Jaegeuk Kim7c457292016-10-14 11:51:23 -07001455 f2fs_inode_dirtied(inode, false);
Jaegeuk Kimb3783872013-06-10 09:17:01 +09001456}
1457
Al Virod01718a2019-04-15 19:29:14 -04001458static void f2fs_free_inode(struct inode *inode)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001459{
Eric Biggers2c58d542019-04-10 13:21:15 -07001460 fscrypt_free_inode(inode);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001461 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
1462}
1463
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001464static void destroy_percpu_info(struct f2fs_sb_info *sbi)
1465{
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07001466 percpu_counter_destroy(&sbi->alloc_valid_block_count);
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07001467 percpu_counter_destroy(&sbi->total_valid_inode_count);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001468}
1469
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001470static void destroy_device_list(struct f2fs_sb_info *sbi)
1471{
1472 int i;
1473
1474 for (i = 0; i < sbi->s_ndevs; i++) {
1475 blkdev_put(FDEV(i).bdev, FMODE_EXCL);
1476#ifdef CONFIG_BLK_DEV_ZONED
Damien Le Moal95175da2019-03-16 09:13:07 +09001477 kvfree(FDEV(i).blkz_seq);
Aravind Rameshde881df2020-07-16 18:26:56 +05301478 kfree(FDEV(i).zone_capacity_blocks);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001479#endif
1480 }
Jaegeuk Kim52225952018-12-13 18:38:33 -08001481 kvfree(sbi->devs);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001482}
1483
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001484static void f2fs_put_super(struct super_block *sb)
1485{
1486 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yua3981012017-06-14 17:39:46 +08001487 int i;
Chao Yucf5c7592017-10-04 09:08:37 +08001488 bool dropped;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001489
Li Guifu99c787c2020-07-24 09:38:11 +08001490 /* unregister procfs/sysfs entries in advance to avoid race case */
1491 f2fs_unregister_sysfs(sbi);
1492
Chao Yu0abd6752017-07-09 00:13:07 +08001493 f2fs_quota_off_umount(sb);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001494
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001495 /* prevent remaining shrinker jobs */
1496 mutex_lock(&sbi->umount_mutex);
1497
Jaegeuk Kim85dc2f22015-01-14 17:41:41 -08001498 /*
Daeho Jeong261eeb92021-01-19 09:00:42 +09001499 * flush all issued checkpoints and stop checkpoint issue thread.
1500 * after then, all checkpoints should be done by each process context.
1501 */
1502 f2fs_stop_ckpt_thread(sbi);
1503
1504 /*
Jaegeuk Kim85dc2f22015-01-14 17:41:41 -08001505 * We don't need to do checkpoint when superblock is clean.
1506 * But, the previous checkpoint was not done by umount, it needs to do
1507 * clean checkpoint again.
1508 */
Daniel Rosenberg43549942018-08-20 19:21:43 -07001509 if ((is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
1510 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG))) {
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -07001511 struct cp_control cpc = {
1512 .reason = CP_UMOUNT,
1513 };
Chao Yu4d57b862018-05-30 00:20:41 +08001514 f2fs_write_checkpoint(sbi, &cpc);
Jaegeuk Kim75ab4cb2014-09-20 21:57:51 -07001515 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001516
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08001517 /* be sure to wait for any on-going discard commands */
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08001518 dropped = f2fs_issue_discard_timeout(sbi);
Jaegeuk Kim4e6a8d92016-12-29 14:07:53 -08001519
Chao Yu7d20c8a2018-09-04 03:52:17 +08001520 if ((f2fs_hw_support_discard(sbi) || f2fs_hw_should_discard(sbi)) &&
1521 !sbi->discard_blks && !dropped) {
Chao Yu1f43e2a2017-04-28 13:56:08 +08001522 struct cp_control cpc = {
1523 .reason = CP_UMOUNT | CP_TRIMMED,
1524 };
Chao Yu4d57b862018-05-30 00:20:41 +08001525 f2fs_write_checkpoint(sbi, &cpc);
Chao Yu1f43e2a2017-04-28 13:56:08 +08001526 }
1527
Jaegeuk Kimcf779ca2014-08-11 18:37:46 -07001528 /*
1529 * normally superblock is clean, so we need to release this.
1530 * In addition, EIO will skip do checkpoint, we need this as well.
1531 */
Chao Yu4d57b862018-05-30 00:20:41 +08001532 f2fs_release_ino_entry(sbi, true);
Jaegeuk Kim6f12ac22014-08-19 09:48:22 -07001533
Jaegeuk Kim2658e502015-06-19 12:01:21 -07001534 f2fs_leave_shrinker(sbi);
1535 mutex_unlock(&sbi->umount_mutex);
1536
Jaegeuk Kim17c19122016-01-29 08:57:59 -08001537 /* our cp_error case, we can wait for any writeback page */
Jaegeuk Kimb9109b02017-05-10 11:28:38 -07001538 f2fs_flush_merged_writes(sbi);
Jaegeuk Kim17c19122016-01-29 08:57:59 -08001539
Sahitya Tummalabf22c3c2020-02-18 09:19:07 +05301540 f2fs_wait_on_all_pages(sbi, F2FS_WB_CP_DATA);
Chao Yu50fa53e2018-08-02 23:03:19 +08001541
1542 f2fs_bug_on(sbi, sbi->fsync_node_num);
1543
Chao Yu6ce19af2021-05-20 19:51:50 +08001544 f2fs_destroy_compress_inode(sbi);
1545
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001546 iput(sbi->node_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08001547 sbi->node_inode = NULL;
1548
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001549 iput(sbi->meta_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08001550 sbi->meta_inode = NULL;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001551
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05301552 /*
1553 * iput() can update stat information, if f2fs_write_checkpoint()
1554 * above failed with error.
1555 */
1556 f2fs_destroy_stats(sbi);
1557
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001558 /* destroy f2fs internal modules */
Chao Yu4d57b862018-05-30 00:20:41 +08001559 f2fs_destroy_node_manager(sbi);
1560 f2fs_destroy_segment_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001561
Chao Yu4c8ff702019-11-01 18:07:14 +08001562 f2fs_destroy_post_read_wq(sbi);
1563
Jaegeuk Kim52225952018-12-13 18:38:33 -08001564 kvfree(sbi->ckpt);
Chao Yua3981012017-06-14 17:39:46 +08001565
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001566 sb->s_fs_info = NULL;
Keith Mok43b65732016-03-02 12:04:24 -08001567 if (sbi->s_chksum_driver)
1568 crypto_free_shash(sbi->s_chksum_driver);
Denis Efremov742532d2020-06-10 01:14:46 +03001569 kfree(sbi->raw_super);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001570
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07001571 destroy_device_list(sbi);
Chao Yu31083032020-09-14 17:05:13 +08001572 f2fs_destroy_page_array_cache(sbi);
Chao Yua9991502020-02-25 18:17:10 +08001573 f2fs_destroy_xattr_caches(sbi);
Chao Yub6895e82017-02-27 18:43:12 +08001574 mempool_destroy(sbi->write_io_dummy);
Chao Yu4b2414d2017-08-08 10:54:31 +08001575#ifdef CONFIG_QUOTA
1576 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08001577 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001578#endif
Eric Biggersac4acb12020-09-16 21:11:35 -07001579 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07001580 destroy_percpu_info(sbi);
Daeho Jeonga4b68172021-08-20 15:29:09 -07001581 f2fs_destroy_iostat(sbi);
Jaegeuk Kima912b542017-05-10 11:18:25 -07001582 for (i = 0; i < NR_PAGE_TYPE; i++)
Jaegeuk Kim52225952018-12-13 18:38:33 -08001583 kvfree(sbi->write_io[i]);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001584#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07001585 utf8_unload(sb->s_encoding);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07001586#endif
Denis Efremov742532d2020-06-10 01:14:46 +03001587 kfree(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001588}
1589
1590int f2fs_sync_fs(struct super_block *sb, int sync)
1591{
1592 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yuc34f42e2015-12-23 17:50:30 +08001593 int err = 0;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001594
Jaegeuk Kim1f227a32017-10-23 23:48:49 +02001595 if (unlikely(f2fs_cp_error(sbi)))
1596 return 0;
Daniel Rosenberg43549942018-08-20 19:21:43 -07001597 if (unlikely(is_sbi_flag_set(sbi, SBI_CP_DISABLED)))
1598 return 0;
Jaegeuk Kim1f227a32017-10-23 23:48:49 +02001599
Namjae Jeona2a4a7e2013-04-20 01:28:40 +09001600 trace_f2fs_sync_fs(sb, sync);
1601
Chao Yu4b2414d2017-08-08 10:54:31 +08001602 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
1603 return -EAGAIN;
1604
Daeho Jeong261eeb92021-01-19 09:00:42 +09001605 if (sync)
1606 err = f2fs_issue_checkpoint(sbi);
Jaegeuk Kimd5053a342014-10-30 22:47:03 -07001607
Chao Yuc34f42e2015-12-23 17:50:30 +08001608 return err;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001609}
1610
Changman Leed6212a52013-01-29 18:30:07 +09001611static int f2fs_freeze(struct super_block *sb)
1612{
Jaegeuk Kim77888c12013-05-20 20:28:47 +09001613 if (f2fs_readonly(sb))
Changman Leed6212a52013-01-29 18:30:07 +09001614 return 0;
1615
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07001616 /* IO error happened before */
1617 if (unlikely(f2fs_cp_error(F2FS_SB(sb))))
1618 return -EIO;
1619
1620 /* must be clean, since sync_filesystem() was already called */
1621 if (is_sbi_flag_set(F2FS_SB(sb), SBI_IS_DIRTY))
1622 return -EINVAL;
Jaegeuk Kimd50dfc0c2021-02-08 13:42:21 -08001623
1624 /* ensure no checkpoint required */
1625 if (!llist_empty(&F2FS_SB(sb)->cprc_info.issue_list))
1626 return -EINVAL;
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07001627 return 0;
Changman Leed6212a52013-01-29 18:30:07 +09001628}
1629
1630static int f2fs_unfreeze(struct super_block *sb)
1631{
1632 return 0;
1633}
1634
Chao Yuddc34e32017-07-29 00:32:53 +08001635#ifdef CONFIG_QUOTA
1636static int f2fs_statfs_project(struct super_block *sb,
1637 kprojid_t projid, struct kstatfs *buf)
1638{
1639 struct kqid qid;
1640 struct dquot *dquot;
1641 u64 limit;
1642 u64 curblock;
1643
1644 qid = make_kqid_projid(projid);
1645 dquot = dqget(sb, qid);
1646 if (IS_ERR(dquot))
1647 return PTR_ERR(dquot);
Sheng Yong955ac6e2018-07-24 20:17:53 +08001648 spin_lock(&dquot->dq_dqb_lock);
Chao Yuddc34e32017-07-29 00:32:53 +08001649
Chengguang Xubf2cbd32020-01-04 22:20:04 +08001650 limit = min_not_zero(dquot->dq_dqb.dqb_bsoftlimit,
1651 dquot->dq_dqb.dqb_bhardlimit);
Chengguang Xuacdf2172020-01-04 22:20:03 +08001652 if (limit)
1653 limit >>= sb->s_blocksize_bits;
Chengguang Xu909110c2019-11-25 11:20:36 +08001654
Chao Yuddc34e32017-07-29 00:32:53 +08001655 if (limit && buf->f_blocks > limit) {
Konstantin Khlebnikovbaaa7eb2020-05-11 09:15:18 +03001656 curblock = (dquot->dq_dqb.dqb_curspace +
1657 dquot->dq_dqb.dqb_rsvspace) >> sb->s_blocksize_bits;
Chao Yuddc34e32017-07-29 00:32:53 +08001658 buf->f_blocks = limit;
1659 buf->f_bfree = buf->f_bavail =
1660 (buf->f_blocks > curblock) ?
1661 (buf->f_blocks - curblock) : 0;
1662 }
1663
Chengguang Xubf2cbd32020-01-04 22:20:04 +08001664 limit = min_not_zero(dquot->dq_dqb.dqb_isoftlimit,
1665 dquot->dq_dqb.dqb_ihardlimit);
Chengguang Xu909110c2019-11-25 11:20:36 +08001666
Chao Yuddc34e32017-07-29 00:32:53 +08001667 if (limit && buf->f_files > limit) {
1668 buf->f_files = limit;
1669 buf->f_ffree =
1670 (buf->f_files > dquot->dq_dqb.dqb_curinodes) ?
1671 (buf->f_files - dquot->dq_dqb.dqb_curinodes) : 0;
1672 }
1673
Sheng Yong955ac6e2018-07-24 20:17:53 +08001674 spin_unlock(&dquot->dq_dqb_lock);
Chao Yuddc34e32017-07-29 00:32:53 +08001675 dqput(dquot);
1676 return 0;
1677}
1678#endif
1679
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001680static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
1681{
1682 struct super_block *sb = dentry->d_sb;
1683 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1684 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Jaegeuk Kimf66c0272018-01-03 10:55:07 -08001685 block_t total_count, user_block_count, start_count;
Jaegeuk Kim0cc091d2017-06-21 20:55:55 -07001686 u64 avail_node_count;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001687
1688 total_count = le64_to_cpu(sbi->raw_super->block_count);
1689 user_block_count = sbi->user_block_count;
1690 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001691 buf->f_type = F2FS_SUPER_MAGIC;
1692 buf->f_bsize = sbi->blocksize;
1693
1694 buf->f_blocks = total_count - start_count;
Jaegeuk Kimf66c0272018-01-03 10:55:07 -08001695 buf->f_bfree = user_block_count - valid_user_blocks(sbi) -
Yunlong Song80d42142017-10-27 20:45:05 +08001696 sbi->current_reserved_blocks;
Chao Yuc9c8ed52019-05-05 11:40:46 +08001697
1698 spin_lock(&sbi->stat_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001699 if (unlikely(buf->f_bfree <= sbi->unusable_block_count))
1700 buf->f_bfree = 0;
1701 else
1702 buf->f_bfree -= sbi->unusable_block_count;
Chao Yuc9c8ed52019-05-05 11:40:46 +08001703 spin_unlock(&sbi->stat_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07001704
Chao Yu63189b72018-03-08 14:22:56 +08001705 if (buf->f_bfree > F2FS_OPTION(sbi).root_reserved_blocks)
1706 buf->f_bavail = buf->f_bfree -
1707 F2FS_OPTION(sbi).root_reserved_blocks;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08001708 else
1709 buf->f_bavail = 0;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001710
Chao Yu27cae0b2019-08-05 18:27:25 +08001711 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
Jaegeuk Kim0cc091d2017-06-21 20:55:55 -07001712
1713 if (avail_node_count > user_block_count) {
1714 buf->f_files = user_block_count;
1715 buf->f_ffree = buf->f_bavail;
1716 } else {
1717 buf->f_files = avail_node_count;
1718 buf->f_ffree = min(avail_node_count - valid_node_count(sbi),
1719 buf->f_bavail);
1720 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001721
Jaegeuk Kim5a20d332013-03-03 13:58:05 +09001722 buf->f_namelen = F2FS_NAME_LEN;
Al Viro6d1349c2020-09-18 16:45:50 -04001723 buf->f_fsid = u64_to_fsid(id);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001724
Chao Yuddc34e32017-07-29 00:32:53 +08001725#ifdef CONFIG_QUOTA
1726 if (is_inode_flag_set(dentry->d_inode, FI_PROJ_INHERIT) &&
1727 sb_has_quota_limits_enabled(sb, PRJQUOTA)) {
1728 f2fs_statfs_project(sb, F2FS_I(dentry->d_inode)->i_projid, buf);
1729 }
1730#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001731 return 0;
1732}
1733
Chao Yu4b2414d2017-08-08 10:54:31 +08001734static inline void f2fs_show_quota_options(struct seq_file *seq,
1735 struct super_block *sb)
1736{
1737#ifdef CONFIG_QUOTA
1738 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1739
Chao Yu63189b72018-03-08 14:22:56 +08001740 if (F2FS_OPTION(sbi).s_jquota_fmt) {
Chao Yu4b2414d2017-08-08 10:54:31 +08001741 char *fmtname = "";
1742
Chao Yu63189b72018-03-08 14:22:56 +08001743 switch (F2FS_OPTION(sbi).s_jquota_fmt) {
Chao Yu4b2414d2017-08-08 10:54:31 +08001744 case QFMT_VFS_OLD:
1745 fmtname = "vfsold";
1746 break;
1747 case QFMT_VFS_V0:
1748 fmtname = "vfsv0";
1749 break;
1750 case QFMT_VFS_V1:
1751 fmtname = "vfsv1";
1752 break;
1753 }
1754 seq_printf(seq, ",jqfmt=%s", fmtname);
1755 }
1756
Chao Yu63189b72018-03-08 14:22:56 +08001757 if (F2FS_OPTION(sbi).s_qf_names[USRQUOTA])
1758 seq_show_option(seq, "usrjquota",
1759 F2FS_OPTION(sbi).s_qf_names[USRQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001760
Chao Yu63189b72018-03-08 14:22:56 +08001761 if (F2FS_OPTION(sbi).s_qf_names[GRPQUOTA])
1762 seq_show_option(seq, "grpjquota",
1763 F2FS_OPTION(sbi).s_qf_names[GRPQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001764
Chao Yu63189b72018-03-08 14:22:56 +08001765 if (F2FS_OPTION(sbi).s_qf_names[PRJQUOTA])
1766 seq_show_option(seq, "prjjquota",
1767 F2FS_OPTION(sbi).s_qf_names[PRJQUOTA]);
Chao Yu4b2414d2017-08-08 10:54:31 +08001768#endif
1769}
1770
Chao Yucd6ee732021-02-20 17:38:41 +08001771#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001772static inline void f2fs_show_compress_options(struct seq_file *seq,
1773 struct super_block *sb)
1774{
1775 struct f2fs_sb_info *sbi = F2FS_SB(sb);
1776 char *algtype = "";
1777 int i;
1778
1779 if (!f2fs_sb_has_compression(sbi))
1780 return;
1781
1782 switch (F2FS_OPTION(sbi).compress_algorithm) {
1783 case COMPRESS_LZO:
1784 algtype = "lzo";
1785 break;
1786 case COMPRESS_LZ4:
1787 algtype = "lz4";
1788 break;
Chao Yu50cfa662020-03-03 17:46:02 +08001789 case COMPRESS_ZSTD:
1790 algtype = "zstd";
1791 break;
Chao Yu6d92b202020-04-08 19:56:32 +08001792 case COMPRESS_LZORLE:
1793 algtype = "lzo-rle";
1794 break;
Chao Yu4c8ff702019-11-01 18:07:14 +08001795 }
1796 seq_printf(seq, ",compress_algorithm=%s", algtype);
1797
Chao Yu3fde13f2021-01-22 17:46:43 +08001798 if (F2FS_OPTION(sbi).compress_level)
1799 seq_printf(seq, ":%d", F2FS_OPTION(sbi).compress_level);
1800
Chao Yu4c8ff702019-11-01 18:07:14 +08001801 seq_printf(seq, ",compress_log_size=%u",
1802 F2FS_OPTION(sbi).compress_log_size);
1803
1804 for (i = 0; i < F2FS_OPTION(sbi).compress_ext_cnt; i++) {
1805 seq_printf(seq, ",compress_extension=%s",
1806 F2FS_OPTION(sbi).extensions[i]);
1807 }
Chao Yub28f0472020-11-26 18:32:09 +08001808
Fengnan Chang151b1982021-06-08 19:15:08 +08001809 for (i = 0; i < F2FS_OPTION(sbi).nocompress_ext_cnt; i++) {
1810 seq_printf(seq, ",nocompress_extension=%s",
1811 F2FS_OPTION(sbi).noextensions[i]);
1812 }
1813
Chao Yub28f0472020-11-26 18:32:09 +08001814 if (F2FS_OPTION(sbi).compress_chksum)
1815 seq_puts(seq, ",compress_chksum");
Daeho Jeong602a16d2020-12-01 13:08:02 +09001816
1817 if (F2FS_OPTION(sbi).compress_mode == COMPR_MODE_FS)
1818 seq_printf(seq, ",compress_mode=%s", "fs");
1819 else if (F2FS_OPTION(sbi).compress_mode == COMPR_MODE_USER)
1820 seq_printf(seq, ",compress_mode=%s", "user");
Chao Yu6ce19af2021-05-20 19:51:50 +08001821
1822 if (test_opt(sbi, COMPRESS_CACHE))
1823 seq_puts(seq, ",compress_cache");
Chao Yu4c8ff702019-11-01 18:07:14 +08001824}
Chao Yucd6ee732021-02-20 17:38:41 +08001825#endif
Chao Yu4c8ff702019-11-01 18:07:14 +08001826
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001827static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
1828{
1829 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
1830
Chao Yubbbc34f2020-02-14 17:44:13 +08001831 if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_SYNC)
1832 seq_printf(seq, ",background_gc=%s", "sync");
1833 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_ON)
1834 seq_printf(seq, ",background_gc=%s", "on");
1835 else if (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF)
Namjae Jeon696c0182013-06-16 09:48:48 +09001836 seq_printf(seq, ",background_gc=%s", "off");
Chao Yubbbc34f2020-02-14 17:44:13 +08001837
Chao Yu5911d2d2021-03-27 17:57:06 +08001838 if (test_opt(sbi, GC_MERGE))
1839 seq_puts(seq, ",gc_merge");
1840
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001841 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
1842 seq_puts(seq, ",disable_roll_forward");
Chao Yua9117ec2020-02-14 17:45:11 +08001843 if (test_opt(sbi, NORECOVERY))
1844 seq_puts(seq, ",norecovery");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001845 if (test_opt(sbi, DISCARD))
1846 seq_puts(seq, ",discard");
Sahitya Tummala81621f92019-05-24 14:38:39 +05301847 else
1848 seq_puts(seq, ",nodiscard");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001849 if (test_opt(sbi, NOHEAP))
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04001850 seq_puts(seq, ",no_heap");
1851 else
1852 seq_puts(seq, ",heap");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001853#ifdef CONFIG_F2FS_FS_XATTR
1854 if (test_opt(sbi, XATTR_USER))
1855 seq_puts(seq, ",user_xattr");
1856 else
1857 seq_puts(seq, ",nouser_xattr");
Jaegeuk Kim444c5802013-08-08 15:16:22 +09001858 if (test_opt(sbi, INLINE_XATTR))
1859 seq_puts(seq, ",inline_xattr");
Chao Yu23cf7212017-02-15 10:34:45 +08001860 else
1861 seq_puts(seq, ",noinline_xattr");
Chao Yu6afc6622017-09-06 21:59:50 +08001862 if (test_opt(sbi, INLINE_XATTR_SIZE))
1863 seq_printf(seq, ",inline_xattr_size=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001864 F2FS_OPTION(sbi).inline_xattr_size);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001865#endif
1866#ifdef CONFIG_F2FS_FS_POSIX_ACL
1867 if (test_opt(sbi, POSIX_ACL))
1868 seq_puts(seq, ",acl");
1869 else
1870 seq_puts(seq, ",noacl");
1871#endif
1872 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
Alejandro Martinez Ruizaa435072013-01-25 19:08:59 +01001873 seq_puts(seq, ",disable_ext_identify");
Huajun Li8274de72013-11-10 23:13:17 +08001874 if (test_opt(sbi, INLINE_DATA))
1875 seq_puts(seq, ",inline_data");
Wanpeng Li75342792015-03-24 10:20:27 +08001876 else
1877 seq_puts(seq, ",noinline_data");
Chao Yu5efd3c62014-09-24 18:16:13 +08001878 if (test_opt(sbi, INLINE_DENTRY))
1879 seq_puts(seq, ",inline_dentry");
Chao Yu97c17942016-05-09 19:56:34 +08001880 else
1881 seq_puts(seq, ",noinline_dentry");
Gu Zhengb270ad62014-04-11 17:49:55 +08001882 if (!f2fs_readonly(sbi->sb) && test_opt(sbi, FLUSH_MERGE))
Jaegeuk Kim6b4afdd2014-04-02 15:34:36 +09001883 seq_puts(seq, ",flush_merge");
Jaegeuk Kim0f7b2ab2014-07-23 09:57:31 -07001884 if (test_opt(sbi, NOBARRIER))
1885 seq_puts(seq, ",nobarrier");
Jaegeuk Kimd5053a342014-10-30 22:47:03 -07001886 if (test_opt(sbi, FASTBOOT))
1887 seq_puts(seq, ",fastboot");
Chao Yu89672152015-02-05 17:55:51 +08001888 if (test_opt(sbi, EXTENT_CACHE))
1889 seq_puts(seq, ",extent_cache");
Jaegeuk Kim7daaea22015-06-25 17:43:04 -07001890 else
1891 seq_puts(seq, ",noextent_cache");
Chao Yu343f40f2015-12-16 13:12:16 +08001892 if (test_opt(sbi, DATA_FLUSH))
1893 seq_puts(seq, ",data_flush");
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001894
1895 seq_puts(seq, ",mode=");
Chao Yub0332a02020-02-14 17:44:12 +08001896 if (F2FS_OPTION(sbi).fs_mode == FS_MODE_ADAPTIVE)
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001897 seq_puts(seq, "adaptive");
Chao Yub0332a02020-02-14 17:44:12 +08001898 else if (F2FS_OPTION(sbi).fs_mode == FS_MODE_LFS)
Jaegeuk Kim36abef42016-06-03 19:29:38 -07001899 seq_puts(seq, "lfs");
Chao Yu63189b72018-03-08 14:22:56 +08001900 seq_printf(seq, ",active_logs=%u", F2FS_OPTION(sbi).active_logs);
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08001901 if (test_opt(sbi, RESERVE_ROOT))
Jaegeuk Kim7c2e5962018-01-04 21:36:09 -08001902 seq_printf(seq, ",reserve_root=%u,resuid=%u,resgid=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001903 F2FS_OPTION(sbi).root_reserved_blocks,
1904 from_kuid_munged(&init_user_ns,
1905 F2FS_OPTION(sbi).s_resuid),
1906 from_kgid_munged(&init_user_ns,
1907 F2FS_OPTION(sbi).s_resgid));
Jaegeuk Kimec915382016-12-21 17:09:19 -08001908 if (F2FS_IO_SIZE_BITS(sbi))
Chengguang Xuc6b18672018-09-22 22:43:09 +08001909 seq_printf(seq, ",io_bits=%u",
1910 F2FS_OPTION(sbi).write_io_size_bits);
Kaixu Xia0cc0dec2017-01-27 09:35:37 +08001911#ifdef CONFIG_F2FS_FAULT_INJECTION
Chao Yud4945002018-08-08 17:36:41 +08001912 if (test_opt(sbi, FAULT_INJECTION)) {
Chao Yu44529f82017-06-12 09:44:24 +08001913 seq_printf(seq, ",fault_injection=%u",
Chao Yu63189b72018-03-08 14:22:56 +08001914 F2FS_OPTION(sbi).fault_info.inject_rate);
Chao Yud4945002018-08-08 17:36:41 +08001915 seq_printf(seq, ",fault_type=%u",
1916 F2FS_OPTION(sbi).fault_info.inject_type);
1917 }
Kaixu Xia0cc0dec2017-01-27 09:35:37 +08001918#endif
Chao Yu0abd6752017-07-09 00:13:07 +08001919#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +08001920 if (test_opt(sbi, QUOTA))
1921 seq_puts(seq, ",quota");
Chao Yu0abd6752017-07-09 00:13:07 +08001922 if (test_opt(sbi, USRQUOTA))
1923 seq_puts(seq, ",usrquota");
1924 if (test_opt(sbi, GRPQUOTA))
1925 seq_puts(seq, ",grpquota");
Chao Yu5c571322017-07-26 00:01:41 +08001926 if (test_opt(sbi, PRJQUOTA))
1927 seq_puts(seq, ",prjquota");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001928#endif
Chao Yu4b2414d2017-08-08 10:54:31 +08001929 f2fs_show_quota_options(seq, sbi->sb);
Chao Yu63189b72018-03-08 14:22:56 +08001930 if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_USER)
Hyunchul Lee0cdd3192018-01-31 11:36:57 +09001931 seq_printf(seq, ",whint_mode=%s", "user-based");
Chao Yu63189b72018-03-08 14:22:56 +08001932 else if (F2FS_OPTION(sbi).whint_mode == WHINT_MODE_FS)
Hyunchul Leef2e703f2018-01-31 11:36:58 +09001933 seq_printf(seq, ",whint_mode=%s", "fs-based");
Eric Biggersed318a62020-05-12 16:32:50 -07001934
1935 fscrypt_show_test_dummy_encryption(seq, ',', sbi->sb);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001936
Satya Tangirala27aacd22020-07-02 01:56:06 +00001937 if (sbi->sb->s_flags & SB_INLINECRYPT)
1938 seq_puts(seq, ",inlinecrypt");
1939
Chao Yu63189b72018-03-08 14:22:56 +08001940 if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_DEFAULT)
Jaegeuk Kim07939622018-02-18 08:50:49 -08001941 seq_printf(seq, ",alloc_mode=%s", "default");
Chao Yu63189b72018-03-08 14:22:56 +08001942 else if (F2FS_OPTION(sbi).alloc_mode == ALLOC_MODE_REUSE)
Jaegeuk Kim07939622018-02-18 08:50:49 -08001943 seq_printf(seq, ",alloc_mode=%s", "reuse");
Junling Zheng93cf93f2018-03-07 12:07:49 +08001944
Daniel Rosenberg43549942018-08-20 19:21:43 -07001945 if (test_opt(sbi, DISABLE_CHECKPOINT))
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07001946 seq_printf(seq, ",checkpoint=disable:%u",
1947 F2FS_OPTION(sbi).unusable_cap);
Daeho Jeong261eeb92021-01-19 09:00:42 +09001948 if (test_opt(sbi, MERGE_CHECKPOINT))
1949 seq_puts(seq, ",checkpoint_merge");
1950 else
1951 seq_puts(seq, ",nocheckpoint_merge");
Chao Yu63189b72018-03-08 14:22:56 +08001952 if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_POSIX)
Junling Zheng93cf93f2018-03-07 12:07:49 +08001953 seq_printf(seq, ",fsync_mode=%s", "posix");
Chao Yu63189b72018-03-08 14:22:56 +08001954 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_STRICT)
Junling Zheng93cf93f2018-03-07 12:07:49 +08001955 seq_printf(seq, ",fsync_mode=%s", "strict");
Sahitya Tummaladc132802018-07-02 11:37:40 +05301956 else if (F2FS_OPTION(sbi).fsync_mode == FSYNC_MODE_NOBARRIER)
1957 seq_printf(seq, ",fsync_mode=%s", "nobarrier");
Chao Yu4c8ff702019-11-01 18:07:14 +08001958
Chao Yu1f0b0672020-07-29 21:21:36 +08001959#ifdef CONFIG_F2FS_FS_COMPRESSION
Chao Yu4c8ff702019-11-01 18:07:14 +08001960 f2fs_show_compress_options(seq, sbi->sb);
Chao Yu1f0b0672020-07-29 21:21:36 +08001961#endif
Chao Yu093749e2020-08-04 21:14:49 +08001962
1963 if (test_opt(sbi, ATGC))
1964 seq_puts(seq, ",atgc");
Chao Yu4f993262021-08-03 08:15:43 +08001965
1966 if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_BLOCK)
1967 seq_printf(seq, ",discard_unit=%s", "block");
1968 else if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_SEGMENT)
1969 seq_printf(seq, ",discard_unit=%s", "segment");
1970 else if (F2FS_OPTION(sbi).discard_unit == DISCARD_UNIT_SECTION)
1971 seq_printf(seq, ",discard_unit=%s", "section");
1972
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09001973 return 0;
1974}
1975
Yunlei He498c5e92015-05-07 18:11:37 +08001976static void default_options(struct f2fs_sb_info *sbi)
1977{
1978 /* init some FS parameters */
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07001979 if (f2fs_sb_has_readonly(sbi))
1980 F2FS_OPTION(sbi).active_logs = NR_CURSEG_RO_TYPE;
1981 else
1982 F2FS_OPTION(sbi).active_logs = NR_CURSEG_PERSIST_TYPE;
1983
Chao Yu63189b72018-03-08 14:22:56 +08001984 F2FS_OPTION(sbi).inline_xattr_size = DEFAULT_INLINE_XATTR_ADDRS;
1985 F2FS_OPTION(sbi).whint_mode = WHINT_MODE_OFF;
1986 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_DEFAULT;
1987 F2FS_OPTION(sbi).fsync_mode = FSYNC_MODE_POSIX;
Chao Yu0aa7e0f2018-06-06 23:55:02 +08001988 F2FS_OPTION(sbi).s_resuid = make_kuid(&init_user_ns, F2FS_DEF_RESUID);
1989 F2FS_OPTION(sbi).s_resgid = make_kgid(&init_user_ns, F2FS_DEF_RESGID);
Chao Yu91faa532020-03-10 20:50:05 +08001990 F2FS_OPTION(sbi).compress_algorithm = COMPRESS_LZ4;
Chao Yu4c8ff702019-11-01 18:07:14 +08001991 F2FS_OPTION(sbi).compress_log_size = MIN_COMPRESS_LOG_SIZE;
1992 F2FS_OPTION(sbi).compress_ext_cnt = 0;
Daeho Jeong602a16d2020-12-01 13:08:02 +09001993 F2FS_OPTION(sbi).compress_mode = COMPR_MODE_FS;
Chao Yubbbc34f2020-02-14 17:44:13 +08001994 F2FS_OPTION(sbi).bggc_mode = BGGC_MODE_ON;
Yunlei He498c5e92015-05-07 18:11:37 +08001995
Satya Tangirala27aacd22020-07-02 01:56:06 +00001996 sbi->sb->s_flags &= ~SB_INLINECRYPT;
1997
Chao Yu39133a52017-02-08 17:39:44 +08001998 set_opt(sbi, INLINE_XATTR);
Yunlei He498c5e92015-05-07 18:11:37 +08001999 set_opt(sbi, INLINE_DATA);
Chao Yu97c17942016-05-09 19:56:34 +08002000 set_opt(sbi, INLINE_DENTRY);
Jaegeuk Kim3e72f722015-06-19 17:53:26 -07002001 set_opt(sbi, EXTENT_CACHE);
Jaegeuk Kim7a20b8a2017-03-24 20:41:45 -04002002 set_opt(sbi, NOHEAP);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002003 clear_opt(sbi, DISABLE_CHECKPOINT);
Jaegeuk Kimb5d15192021-04-01 17:25:20 -07002004 set_opt(sbi, MERGE_CHECKPOINT);
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002005 F2FS_OPTION(sbi).unusable_cap = 0;
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002006 sbi->sb->s_flags |= SB_LAZYTIME;
Jaegeuk Kim69e9e422016-05-20 22:39:20 -07002007 set_opt(sbi, FLUSH_MERGE);
Chao Yuf7db8dd2021-08-30 08:35:33 +08002008 if (f2fs_hw_support_discard(sbi) || f2fs_hw_should_discard(sbi))
2009 set_opt(sbi, DISCARD);
Chao Yu4f993262021-08-03 08:15:43 +08002010 if (f2fs_sb_has_blkzoned(sbi)) {
Chao Yub0332a02020-02-14 17:44:12 +08002011 F2FS_OPTION(sbi).fs_mode = FS_MODE_LFS;
Chao Yu4f993262021-08-03 08:15:43 +08002012 F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_SECTION;
2013 } else {
Chao Yub0332a02020-02-14 17:44:12 +08002014 F2FS_OPTION(sbi).fs_mode = FS_MODE_ADAPTIVE;
Chao Yu4f993262021-08-03 08:15:43 +08002015 F2FS_OPTION(sbi).discard_unit = DISCARD_UNIT_BLOCK;
2016 }
Yunlei He498c5e92015-05-07 18:11:37 +08002017
2018#ifdef CONFIG_F2FS_FS_XATTR
2019 set_opt(sbi, XATTR_USER);
2020#endif
2021#ifdef CONFIG_F2FS_FS_POSIX_ACL
2022 set_opt(sbi, POSIX_ACL);
2023#endif
Chao Yu36dbd322016-09-26 19:45:05 +08002024
Chao Yud4945002018-08-08 17:36:41 +08002025 f2fs_build_fault_attr(sbi, 0, 0);
Yunlei He498c5e92015-05-07 18:11:37 +08002026}
2027
Jaegeuk Kimea676732017-10-06 09:14:28 -07002028#ifdef CONFIG_QUOTA
2029static int f2fs_enable_quotas(struct super_block *sb);
2030#endif
Daniel Rosenberg43549942018-08-20 19:21:43 -07002031
2032static int f2fs_disable_checkpoint(struct f2fs_sb_info *sbi)
2033{
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002034 unsigned int s_flags = sbi->sb->s_flags;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002035 struct cp_control cpc;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002036 int err = 0;
2037 int ret;
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002038 block_t unusable;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002039
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002040 if (s_flags & SB_RDONLY) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002041 f2fs_err(sbi, "checkpoint=disable on readonly fs");
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002042 return -EINVAL;
2043 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002044 sbi->sb->s_flags |= SB_ACTIVE;
2045
Daniel Rosenberg43549942018-08-20 19:21:43 -07002046 f2fs_update_time(sbi, DISABLE_TIME);
2047
2048 while (!f2fs_time_over(sbi, DISABLE_TIME)) {
Chao Yufb24fea2020-01-14 19:36:50 +08002049 down_write(&sbi->gc_lock);
Chao Yu7dede8862021-02-20 17:35:40 +08002050 err = f2fs_gc(sbi, true, false, false, NULL_SEGNO);
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002051 if (err == -ENODATA) {
2052 err = 0;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002053 break;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002054 }
Jaegeuk Kim8f31b462018-12-17 17:08:26 -08002055 if (err && err != -EAGAIN)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002056 break;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002057 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002058
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002059 ret = sync_filesystem(sbi->sb);
2060 if (ret || err) {
Yi Zhuang5f029c02021-04-06 09:47:35 +08002061 err = ret ? ret : err;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002062 goto restore_flag;
2063 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002064
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002065 unusable = f2fs_get_unusable_blocks(sbi);
2066 if (f2fs_disable_cp_again(sbi, unusable)) {
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002067 err = -EAGAIN;
2068 goto restore_flag;
2069 }
Daniel Rosenberg43549942018-08-20 19:21:43 -07002070
Chao Yufb24fea2020-01-14 19:36:50 +08002071 down_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002072 cpc.reason = CP_PAUSE;
2073 set_sbi_flag(sbi, SBI_CP_DISABLED);
Chao Yu896285a2019-04-26 17:57:54 +08002074 err = f2fs_write_checkpoint(sbi, &cpc);
2075 if (err)
2076 goto out_unlock;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002077
Chao Yuc9c8ed52019-05-05 11:40:46 +08002078 spin_lock(&sbi->stat_lock);
Daniel Rosenberg4d3aed72019-05-29 17:49:06 -07002079 sbi->unusable_block_count = unusable;
Chao Yuc9c8ed52019-05-05 11:40:46 +08002080 spin_unlock(&sbi->stat_lock);
2081
Chao Yu896285a2019-04-26 17:57:54 +08002082out_unlock:
Chao Yufb24fea2020-01-14 19:36:50 +08002083 up_write(&sbi->gc_lock);
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002084restore_flag:
Chao Yu7a88ddb2020-02-27 19:30:05 +08002085 sbi->sb->s_flags = s_flags; /* Restore SB_RDONLY status */
Jaegeuk Kim812a9592019-01-22 14:04:33 -08002086 return err;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002087}
2088
2089static void f2fs_enable_checkpoint(struct f2fs_sb_info *sbi)
2090{
Jaegeuk Kimdddd3d62021-08-19 14:00:57 -07002091 int retry = DEFAULT_RETRY_IO_COUNT;
2092
Jaegeuk Kimb0ff4fe2021-01-26 17:00:42 -08002093 /* we should flush all the data to keep data consistency */
Jaegeuk Kimdddd3d62021-08-19 14:00:57 -07002094 do {
2095 sync_inodes_sb(sbi->sb);
2096 cond_resched();
2097 congestion_wait(BLK_RW_ASYNC, DEFAULT_IO_TIMEOUT);
2098 } while (get_pages(sbi, F2FS_DIRTY_DATA) && retry--);
2099
2100 if (unlikely(retry < 0))
2101 f2fs_warn(sbi, "checkpoint=enable has some unwritten data.");
Jaegeuk Kimb0ff4fe2021-01-26 17:00:42 -08002102
Chao Yufb24fea2020-01-14 19:36:50 +08002103 down_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002104 f2fs_dirty_to_prefree(sbi);
2105
2106 clear_sbi_flag(sbi, SBI_CP_DISABLED);
2107 set_sbi_flag(sbi, SBI_IS_DIRTY);
Chao Yufb24fea2020-01-14 19:36:50 +08002108 up_write(&sbi->gc_lock);
Daniel Rosenberg43549942018-08-20 19:21:43 -07002109
2110 f2fs_sync_fs(sbi->sb, 1);
2111}
2112
Namjae Jeon696c0182013-06-16 09:48:48 +09002113static int f2fs_remount(struct super_block *sb, int *flags, char *data)
2114{
2115 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2116 struct f2fs_mount_info org_mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002117 unsigned long old_sb_flags;
Chao Yu63189b72018-03-08 14:22:56 +08002118 int err;
Chao Yu3fd97352021-03-17 17:56:04 +08002119 bool need_restart_gc = false, need_stop_gc = false;
2120 bool need_restart_ckpt = false, need_stop_ckpt = false;
2121 bool need_restart_flush = false, need_stop_flush = false;
Fengnan Chang4d674902021-08-19 16:02:37 +08002122 bool need_restart_discard = false, need_stop_discard = false;
Chao Yu9cd81ce2015-09-18 16:55:26 +08002123 bool no_extent_cache = !test_opt(sbi, EXTENT_CACHE);
Chao Yu277afbd2021-07-29 09:22:17 +08002124 bool enable_checkpoint = !test_opt(sbi, DISABLE_CHECKPOINT);
Chao Yu1f78adf2019-07-12 16:57:00 +08002125 bool no_io_align = !F2FS_IO_ALIGNED(sbi);
Chao Yu093749e2020-08-04 21:14:49 +08002126 bool no_atgc = !test_opt(sbi, ATGC);
Fengnan Chang4d674902021-08-19 16:02:37 +08002127 bool no_discard = !test_opt(sbi, DISCARD);
Chao Yu6ce19af2021-05-20 19:51:50 +08002128 bool no_compress_cache = !test_opt(sbi, COMPRESS_CACHE);
Chao Yu4f993262021-08-03 08:15:43 +08002129 bool block_unit_discard = f2fs_block_unit_discard(sbi);
Fengnan Chang4d674902021-08-19 16:02:37 +08002130 struct discard_cmd_control *dcc;
Chao Yu4b2414d2017-08-08 10:54:31 +08002131#ifdef CONFIG_QUOTA
Chao Yu4b2414d2017-08-08 10:54:31 +08002132 int i, j;
2133#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002134
2135 /*
2136 * Save the old mount options in case we
2137 * need to restore them.
2138 */
2139 org_mount_opt = sbi->mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002140 old_sb_flags = sb->s_flags;
Namjae Jeon696c0182013-06-16 09:48:48 +09002141
Chao Yu4b2414d2017-08-08 10:54:31 +08002142#ifdef CONFIG_QUOTA
Chao Yu63189b72018-03-08 14:22:56 +08002143 org_mount_opt.s_jquota_fmt = F2FS_OPTION(sbi).s_jquota_fmt;
Chao Yu4b2414d2017-08-08 10:54:31 +08002144 for (i = 0; i < MAXQUOTAS; i++) {
Chao Yu63189b72018-03-08 14:22:56 +08002145 if (F2FS_OPTION(sbi).s_qf_names[i]) {
2146 org_mount_opt.s_qf_names[i] =
2147 kstrdup(F2FS_OPTION(sbi).s_qf_names[i],
2148 GFP_KERNEL);
2149 if (!org_mount_opt.s_qf_names[i]) {
Chao Yu4b2414d2017-08-08 10:54:31 +08002150 for (j = 0; j < i; j++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08002151 kfree(org_mount_opt.s_qf_names[j]);
Chao Yu4b2414d2017-08-08 10:54:31 +08002152 return -ENOMEM;
2153 }
2154 } else {
Chao Yu63189b72018-03-08 14:22:56 +08002155 org_mount_opt.s_qf_names[i] = NULL;
Chao Yu4b2414d2017-08-08 10:54:31 +08002156 }
2157 }
2158#endif
2159
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002160 /* recover superblocks we couldn't write due to previous RO mount */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002161 if (!(*flags & SB_RDONLY) && is_sbi_flag_set(sbi, SBI_NEED_SB_WRITE)) {
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002162 err = f2fs_commit_super(sbi, false);
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002163 f2fs_info(sbi, "Try to recover all the superblocks, ret: %d",
2164 err);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002165 if (!err)
2166 clear_sbi_flag(sbi, SBI_NEED_SB_WRITE);
2167 }
2168
Yunlei He498c5e92015-05-07 18:11:37 +08002169 default_options(sbi);
Chao Yu26666c82014-09-15 18:04:44 +08002170
Namjae Jeon696c0182013-06-16 09:48:48 +09002171 /* parse mount options */
Eric Biggersed318a62020-05-12 16:32:50 -07002172 err = parse_options(sb, data, true);
Namjae Jeon696c0182013-06-16 09:48:48 +09002173 if (err)
2174 goto restore_opts;
2175
2176 /*
2177 * Previous and new state of filesystem is RO,
Gu Zheng876dc592014-04-11 17:50:00 +08002178 * so skip checking GC and FLUSH_MERGE conditions.
Namjae Jeon696c0182013-06-16 09:48:48 +09002179 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002180 if (f2fs_readonly(sb) && (*flags & SB_RDONLY))
Namjae Jeon696c0182013-06-16 09:48:48 +09002181 goto skip;
2182
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07002183 if (f2fs_sb_has_readonly(sbi) && !(*flags & SB_RDONLY)) {
2184 err = -EROFS;
2185 goto restore_opts;
2186 }
2187
Jaegeuk Kimea676732017-10-06 09:14:28 -07002188#ifdef CONFIG_QUOTA
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002189 if (!f2fs_readonly(sb) && (*flags & SB_RDONLY)) {
Chao Yu0abd6752017-07-09 00:13:07 +08002190 err = dquot_suspend(sb, -1);
2191 if (err < 0)
2192 goto restore_opts;
Daniel Rosenberg43549942018-08-20 19:21:43 -07002193 } else if (f2fs_readonly(sb) && !(*flags & SB_RDONLY)) {
Chao Yu0abd6752017-07-09 00:13:07 +08002194 /* dquot_resume needs RW */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002195 sb->s_flags &= ~SB_RDONLY;
Jaegeuk Kimea676732017-10-06 09:14:28 -07002196 if (sb_any_quota_suspended(sb)) {
2197 dquot_resume(sb, -1);
Chao Yu7beb01f2018-10-24 18:34:26 +08002198 } else if (f2fs_sb_has_quota_ino(sbi)) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002199 err = f2fs_enable_quotas(sb);
2200 if (err)
2201 goto restore_opts;
2202 }
Chao Yu0abd6752017-07-09 00:13:07 +08002203 }
Jaegeuk Kimea676732017-10-06 09:14:28 -07002204#endif
Chao Yu093749e2020-08-04 21:14:49 +08002205 /* disallow enable atgc dynamically */
2206 if (no_atgc == !!test_opt(sbi, ATGC)) {
2207 err = -EINVAL;
2208 f2fs_warn(sbi, "switch atgc option is not allowed");
2209 goto restore_opts;
2210 }
2211
Chao Yu9cd81ce2015-09-18 16:55:26 +08002212 /* disallow enable/disable extent_cache dynamically */
2213 if (no_extent_cache == !!test_opt(sbi, EXTENT_CACHE)) {
2214 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002215 f2fs_warn(sbi, "switch extent_cache option is not allowed");
Chao Yu9cd81ce2015-09-18 16:55:26 +08002216 goto restore_opts;
2217 }
2218
Chao Yu1f78adf2019-07-12 16:57:00 +08002219 if (no_io_align == !!F2FS_IO_ALIGNED(sbi)) {
2220 err = -EINVAL;
2221 f2fs_warn(sbi, "switch io_bits option is not allowed");
2222 goto restore_opts;
2223 }
2224
Chao Yu6ce19af2021-05-20 19:51:50 +08002225 if (no_compress_cache == !!test_opt(sbi, COMPRESS_CACHE)) {
2226 err = -EINVAL;
2227 f2fs_warn(sbi, "switch compress_cache option is not allowed");
2228 goto restore_opts;
2229 }
2230
Chao Yu4f993262021-08-03 08:15:43 +08002231 if (block_unit_discard != f2fs_block_unit_discard(sbi)) {
2232 err = -EINVAL;
2233 f2fs_warn(sbi, "switch discard_unit option is not allowed");
2234 goto restore_opts;
2235 }
2236
Daniel Rosenberg43549942018-08-20 19:21:43 -07002237 if ((*flags & SB_RDONLY) && test_opt(sbi, DISABLE_CHECKPOINT)) {
2238 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002239 f2fs_warn(sbi, "disabling checkpoint not compatible with read-only");
Daniel Rosenberg43549942018-08-20 19:21:43 -07002240 goto restore_opts;
2241 }
2242
Namjae Jeon696c0182013-06-16 09:48:48 +09002243 /*
2244 * We stop the GC thread if FS is mounted as RO
2245 * or if background_gc = off is passed in mount
2246 * option. Also sync the filesystem.
2247 */
Chao Yubbbc34f2020-02-14 17:44:13 +08002248 if ((*flags & SB_RDONLY) ||
Chao Yu5911d2d2021-03-27 17:57:06 +08002249 (F2FS_OPTION(sbi).bggc_mode == BGGC_MODE_OFF &&
2250 !test_opt(sbi, GC_MERGE))) {
Namjae Jeon696c0182013-06-16 09:48:48 +09002251 if (sbi->gc_thread) {
Chao Yu4d57b862018-05-30 00:20:41 +08002252 f2fs_stop_gc_thread(sbi);
Gu Zheng876dc592014-04-11 17:50:00 +08002253 need_restart_gc = true;
Namjae Jeon696c0182013-06-16 09:48:48 +09002254 }
Chao Yuaba291b2014-11-18 11:17:20 +08002255 } else if (!sbi->gc_thread) {
Chao Yu4d57b862018-05-30 00:20:41 +08002256 err = f2fs_start_gc_thread(sbi);
Namjae Jeon696c0182013-06-16 09:48:48 +09002257 if (err)
2258 goto restore_opts;
Gu Zheng876dc592014-04-11 17:50:00 +08002259 need_stop_gc = true;
2260 }
2261
Chao Yu63189b72018-03-08 14:22:56 +08002262 if (*flags & SB_RDONLY ||
2263 F2FS_OPTION(sbi).whint_mode != org_mount_opt.whint_mode) {
Jaegeuk Kimfaa0e552016-03-24 10:29:39 -07002264 sync_inodes_sb(sb);
2265
2266 set_sbi_flag(sbi, SBI_IS_DIRTY);
2267 set_sbi_flag(sbi, SBI_IS_CLOSE);
2268 f2fs_sync_fs(sb, 1);
2269 clear_sbi_flag(sbi, SBI_IS_CLOSE);
2270 }
2271
Chao Yu3f7070b2021-03-17 17:56:03 +08002272 if ((*flags & SB_RDONLY) || test_opt(sbi, DISABLE_CHECKPOINT) ||
2273 !test_opt(sbi, MERGE_CHECKPOINT)) {
2274 f2fs_stop_ckpt_thread(sbi);
Chao Yu3fd97352021-03-17 17:56:04 +08002275 need_restart_ckpt = true;
Chao Yu3f7070b2021-03-17 17:56:03 +08002276 } else {
Daeho Jeong261eeb92021-01-19 09:00:42 +09002277 err = f2fs_start_ckpt_thread(sbi);
2278 if (err) {
2279 f2fs_err(sbi,
2280 "Failed to start F2FS issue_checkpoint_thread (%d)",
2281 err);
2282 goto restore_gc;
2283 }
Chao Yu3fd97352021-03-17 17:56:04 +08002284 need_stop_ckpt = true;
Daeho Jeong261eeb92021-01-19 09:00:42 +09002285 }
2286
Gu Zheng876dc592014-04-11 17:50:00 +08002287 /*
2288 * We stop issue flush thread if FS is mounted as RO
2289 * or if flush_merge is not passed in mount option.
2290 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002291 if ((*flags & SB_RDONLY) || !test_opt(sbi, FLUSH_MERGE)) {
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -08002292 clear_opt(sbi, FLUSH_MERGE);
Chao Yu4d57b862018-05-30 00:20:41 +08002293 f2fs_destroy_flush_cmd_control(sbi, false);
Chao Yu3fd97352021-03-17 17:56:04 +08002294 need_restart_flush = true;
Jaegeuk Kim5eba8c52016-12-07 16:23:32 -08002295 } else {
Chao Yu4d57b862018-05-30 00:20:41 +08002296 err = f2fs_create_flush_cmd_control(sbi);
Gu Zheng2163d192014-04-27 14:21:33 +08002297 if (err)
Chao Yu3fd97352021-03-17 17:56:04 +08002298 goto restore_ckpt;
2299 need_stop_flush = true;
Namjae Jeon696c0182013-06-16 09:48:48 +09002300 }
Chao Yu3fd97352021-03-17 17:56:04 +08002301
Fengnan Chang4d674902021-08-19 16:02:37 +08002302 if (no_discard == !!test_opt(sbi, DISCARD)) {
2303 if (test_opt(sbi, DISCARD)) {
2304 err = f2fs_start_discard_thread(sbi);
2305 if (err)
2306 goto restore_flush;
2307 need_stop_discard = true;
2308 } else {
2309 dcc = SM_I(sbi)->dcc_info;
2310 f2fs_stop_discard_thread(sbi);
2311 if (atomic_read(&dcc->discard_cmd_cnt))
2312 f2fs_issue_discard_timeout(sbi);
2313 need_restart_discard = true;
2314 }
2315 }
2316
Chao Yu277afbd2021-07-29 09:22:17 +08002317 if (enable_checkpoint == !!test_opt(sbi, DISABLE_CHECKPOINT)) {
Chao Yu3fd97352021-03-17 17:56:04 +08002318 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
2319 err = f2fs_disable_checkpoint(sbi);
2320 if (err)
Fengnan Chang4d674902021-08-19 16:02:37 +08002321 goto restore_discard;
Chao Yu3fd97352021-03-17 17:56:04 +08002322 } else {
2323 f2fs_enable_checkpoint(sbi);
2324 }
2325 }
2326
Namjae Jeon696c0182013-06-16 09:48:48 +09002327skip:
Chao Yu4b2414d2017-08-08 10:54:31 +08002328#ifdef CONFIG_QUOTA
2329 /* Release old quota file names */
2330 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08002331 kfree(org_mount_opt.s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08002332#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002333 /* Update the POSIXACL Flag */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08002334 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
2335 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07002336
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08002337 limit_reserve_root(sbi);
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -07002338 adjust_unusable_cap_perc(sbi);
Jaegeuk Kim095680f2018-09-28 00:24:39 -07002339 *flags = (*flags & ~SB_LAZYTIME) | (sb->s_flags & SB_LAZYTIME);
Namjae Jeon696c0182013-06-16 09:48:48 +09002340 return 0;
Fengnan Chang4d674902021-08-19 16:02:37 +08002341restore_discard:
2342 if (need_restart_discard) {
2343 if (f2fs_start_discard_thread(sbi))
2344 f2fs_warn(sbi, "discard has been stopped");
2345 } else if (need_stop_discard) {
2346 f2fs_stop_discard_thread(sbi);
2347 }
Chao Yu3fd97352021-03-17 17:56:04 +08002348restore_flush:
2349 if (need_restart_flush) {
2350 if (f2fs_create_flush_cmd_control(sbi))
2351 f2fs_warn(sbi, "background flush thread has stopped");
2352 } else if (need_stop_flush) {
2353 clear_opt(sbi, FLUSH_MERGE);
2354 f2fs_destroy_flush_cmd_control(sbi, false);
2355 }
2356restore_ckpt:
2357 if (need_restart_ckpt) {
2358 if (f2fs_start_ckpt_thread(sbi))
2359 f2fs_warn(sbi, "background ckpt thread has stopped");
2360 } else if (need_stop_ckpt) {
2361 f2fs_stop_ckpt_thread(sbi);
2362 }
Gu Zheng876dc592014-04-11 17:50:00 +08002363restore_gc:
2364 if (need_restart_gc) {
Chao Yu4d57b862018-05-30 00:20:41 +08002365 if (f2fs_start_gc_thread(sbi))
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002366 f2fs_warn(sbi, "background gc thread has stopped");
Gu Zheng876dc592014-04-11 17:50:00 +08002367 } else if (need_stop_gc) {
Chao Yu4d57b862018-05-30 00:20:41 +08002368 f2fs_stop_gc_thread(sbi);
Gu Zheng876dc592014-04-11 17:50:00 +08002369 }
Namjae Jeon696c0182013-06-16 09:48:48 +09002370restore_opts:
Chao Yu4b2414d2017-08-08 10:54:31 +08002371#ifdef CONFIG_QUOTA
Chao Yu63189b72018-03-08 14:22:56 +08002372 F2FS_OPTION(sbi).s_jquota_fmt = org_mount_opt.s_jquota_fmt;
Chao Yu4b2414d2017-08-08 10:54:31 +08002373 for (i = 0; i < MAXQUOTAS; i++) {
Wang Xiaojunba87a452020-06-17 20:30:12 +08002374 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu63189b72018-03-08 14:22:56 +08002375 F2FS_OPTION(sbi).s_qf_names[i] = org_mount_opt.s_qf_names[i];
Chao Yu4b2414d2017-08-08 10:54:31 +08002376 }
2377#endif
Namjae Jeon696c0182013-06-16 09:48:48 +09002378 sbi->mount_opt = org_mount_opt;
Chao Yu0abd6752017-07-09 00:13:07 +08002379 sb->s_flags = old_sb_flags;
Namjae Jeon696c0182013-06-16 09:48:48 +09002380 return err;
2381}
2382
Chao Yu0abd6752017-07-09 00:13:07 +08002383#ifdef CONFIG_QUOTA
2384/* Read data from quotafile */
2385static ssize_t f2fs_quota_read(struct super_block *sb, int type, char *data,
2386 size_t len, loff_t off)
2387{
2388 struct inode *inode = sb_dqopt(sb)->files[type];
2389 struct address_space *mapping = inode->i_mapping;
2390 block_t blkidx = F2FS_BYTES_TO_BLK(off);
2391 int offset = off & (sb->s_blocksize - 1);
2392 int tocopy;
2393 size_t toread;
2394 loff_t i_size = i_size_read(inode);
2395 struct page *page;
2396 char *kaddr;
2397
2398 if (off > i_size)
2399 return 0;
2400
2401 if (off + len > i_size)
2402 len = i_size - off;
2403 toread = len;
2404 while (toread > 0) {
2405 tocopy = min_t(unsigned long, sb->s_blocksize - offset, toread);
2406repeat:
Ritesh Harjani02117b82018-03-16 18:53:53 +05302407 page = read_cache_page_gfp(mapping, blkidx, GFP_NOFS);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002408 if (IS_ERR(page)) {
2409 if (PTR_ERR(page) == -ENOMEM) {
Chao Yu5df7731f2020-02-17 17:45:44 +08002410 congestion_wait(BLK_RW_ASYNC,
2411 DEFAULT_IO_TIMEOUT);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002412 goto repeat;
2413 }
Chao Yuaf033b22018-09-20 20:05:00 +08002414 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002415 return PTR_ERR(page);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002416 }
Chao Yu0abd6752017-07-09 00:13:07 +08002417
2418 lock_page(page);
2419
2420 if (unlikely(page->mapping != mapping)) {
2421 f2fs_put_page(page, 1);
2422 goto repeat;
2423 }
2424 if (unlikely(!PageUptodate(page))) {
2425 f2fs_put_page(page, 1);
Chao Yuaf033b22018-09-20 20:05:00 +08002426 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002427 return -EIO;
2428 }
2429
2430 kaddr = kmap_atomic(page);
2431 memcpy(data, kaddr + offset, tocopy);
2432 kunmap_atomic(kaddr);
2433 f2fs_put_page(page, 1);
2434
2435 offset = 0;
2436 toread -= tocopy;
2437 data += tocopy;
2438 blkidx++;
2439 }
2440 return len;
2441}
2442
2443/* Write to quotafile */
2444static ssize_t f2fs_quota_write(struct super_block *sb, int type,
2445 const char *data, size_t len, loff_t off)
2446{
2447 struct inode *inode = sb_dqopt(sb)->files[type];
2448 struct address_space *mapping = inode->i_mapping;
2449 const struct address_space_operations *a_ops = mapping->a_ops;
2450 int offset = off & (sb->s_blocksize - 1);
2451 size_t towrite = len;
2452 struct page *page;
Chao Yu62f63ee2020-03-19 19:58:00 +08002453 void *fsdata = NULL;
Chao Yu0abd6752017-07-09 00:13:07 +08002454 char *kaddr;
2455 int err = 0;
2456 int tocopy;
2457
2458 while (towrite > 0) {
2459 tocopy = min_t(unsigned long, sb->s_blocksize - offset,
2460 towrite);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002461retry:
Chao Yu0abd6752017-07-09 00:13:07 +08002462 err = a_ops->write_begin(NULL, mapping, off, tocopy, 0,
Chao Yu62f63ee2020-03-19 19:58:00 +08002463 &page, &fsdata);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002464 if (unlikely(err)) {
2465 if (err == -ENOMEM) {
Chao Yu5df7731f2020-02-17 17:45:44 +08002466 congestion_wait(BLK_RW_ASYNC,
2467 DEFAULT_IO_TIMEOUT);
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002468 goto retry;
2469 }
Chao Yuaf033b22018-09-20 20:05:00 +08002470 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Chao Yu0abd6752017-07-09 00:13:07 +08002471 break;
Jaegeuk Kim4e46a022017-10-19 09:43:56 -07002472 }
Chao Yu0abd6752017-07-09 00:13:07 +08002473
2474 kaddr = kmap_atomic(page);
2475 memcpy(kaddr + offset, data, tocopy);
2476 kunmap_atomic(kaddr);
2477 flush_dcache_page(page);
2478
2479 a_ops->write_end(NULL, mapping, off, tocopy, tocopy,
Chao Yu62f63ee2020-03-19 19:58:00 +08002480 page, fsdata);
Chao Yu0abd6752017-07-09 00:13:07 +08002481 offset = 0;
2482 towrite -= tocopy;
2483 off += tocopy;
2484 data += tocopy;
2485 cond_resched();
2486 }
2487
2488 if (len == towrite)
Jaegeuk Kim6e5b5d42017-10-19 12:07:11 -07002489 return err;
Chao Yu0abd6752017-07-09 00:13:07 +08002490 inode->i_mtime = inode->i_ctime = current_time(inode);
2491 f2fs_mark_inode_dirty_sync(inode, false);
2492 return len - towrite;
2493}
2494
2495static struct dquot **f2fs_get_dquots(struct inode *inode)
2496{
2497 return F2FS_I(inode)->i_dquot;
2498}
2499
2500static qsize_t *f2fs_get_reserved_space(struct inode *inode)
2501{
2502 return &F2FS_I(inode)->i_reserved_quota;
2503}
2504
Chao Yu4b2414d2017-08-08 10:54:31 +08002505static int f2fs_quota_on_mount(struct f2fs_sb_info *sbi, int type)
2506{
Chao Yuaf033b22018-09-20 20:05:00 +08002507 if (is_set_ckpt_flags(sbi, CP_QUOTA_NEED_FSCK_FLAG)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002508 f2fs_err(sbi, "quota sysfile may be corrupted, skip loading it");
Chao Yuaf033b22018-09-20 20:05:00 +08002509 return 0;
2510 }
2511
Chao Yu63189b72018-03-08 14:22:56 +08002512 return dquot_quota_on_mount(sbi->sb, F2FS_OPTION(sbi).s_qf_names[type],
2513 F2FS_OPTION(sbi).s_jquota_fmt, type);
Chao Yu4b2414d2017-08-08 10:54:31 +08002514}
2515
Jaegeuk Kimea676732017-10-06 09:14:28 -07002516int f2fs_enable_quota_files(struct f2fs_sb_info *sbi, bool rdonly)
Chao Yu4b2414d2017-08-08 10:54:31 +08002517{
Jaegeuk Kimea676732017-10-06 09:14:28 -07002518 int enabled = 0;
2519 int i, err;
2520
Chao Yu7beb01f2018-10-24 18:34:26 +08002521 if (f2fs_sb_has_quota_ino(sbi) && rdonly) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002522 err = f2fs_enable_quotas(sbi->sb);
2523 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002524 f2fs_err(sbi, "Cannot turn on quota_ino: %d", err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002525 return 0;
2526 }
2527 return 1;
2528 }
Chao Yu4b2414d2017-08-08 10:54:31 +08002529
2530 for (i = 0; i < MAXQUOTAS; i++) {
Chao Yu63189b72018-03-08 14:22:56 +08002531 if (F2FS_OPTION(sbi).s_qf_names[i]) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07002532 err = f2fs_quota_on_mount(sbi, i);
2533 if (!err) {
2534 enabled = 1;
2535 continue;
2536 }
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002537 f2fs_err(sbi, "Cannot turn on quotas: %d on %d",
2538 err, i);
Chao Yu4b2414d2017-08-08 10:54:31 +08002539 }
2540 }
Jaegeuk Kimea676732017-10-06 09:14:28 -07002541 return enabled;
2542}
2543
2544static int f2fs_quota_enable(struct super_block *sb, int type, int format_id,
2545 unsigned int flags)
2546{
2547 struct inode *qf_inode;
2548 unsigned long qf_inum;
2549 int err;
2550
Chao Yu7beb01f2018-10-24 18:34:26 +08002551 BUG_ON(!f2fs_sb_has_quota_ino(F2FS_SB(sb)));
Jaegeuk Kimea676732017-10-06 09:14:28 -07002552
2553 qf_inum = f2fs_qf_ino(sb, type);
2554 if (!qf_inum)
2555 return -EPERM;
2556
2557 qf_inode = f2fs_iget(sb, qf_inum);
2558 if (IS_ERR(qf_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002559 f2fs_err(F2FS_SB(sb), "Bad quota inode %u:%lu", type, qf_inum);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002560 return PTR_ERR(qf_inode);
2561 }
2562
2563 /* Don't account quota for quota files to avoid recursion */
2564 qf_inode->i_flags |= S_NOQUOTA;
Jan Kara7212b952019-11-01 18:55:38 +01002565 err = dquot_load_quota_inode(qf_inode, type, format_id, flags);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002566 iput(qf_inode);
2567 return err;
2568}
2569
2570static int f2fs_enable_quotas(struct super_block *sb)
2571{
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002572 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002573 int type, err = 0;
2574 unsigned long qf_inum;
2575 bool quota_mopt[MAXQUOTAS] = {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002576 test_opt(sbi, USRQUOTA),
2577 test_opt(sbi, GRPQUOTA),
2578 test_opt(sbi, PRJQUOTA),
Jaegeuk Kimea676732017-10-06 09:14:28 -07002579 };
2580
Chao Yuaf033b22018-09-20 20:05:00 +08002581 if (is_set_ckpt_flags(F2FS_SB(sb), CP_QUOTA_NEED_FSCK_FLAG)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002582 f2fs_err(sbi, "quota file may be corrupted, skip loading it");
Chao Yuaf033b22018-09-20 20:05:00 +08002583 return 0;
2584 }
2585
2586 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE;
2587
Jaegeuk Kimea676732017-10-06 09:14:28 -07002588 for (type = 0; type < MAXQUOTAS; type++) {
2589 qf_inum = f2fs_qf_ino(sb, type);
2590 if (qf_inum) {
2591 err = f2fs_quota_enable(sb, type, QFMT_VFS_V1,
2592 DQUOT_USAGE_ENABLED |
2593 (quota_mopt[type] ? DQUOT_LIMITS_ENABLED : 0));
2594 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002595 f2fs_err(sbi, "Failed to enable quota tracking (type=%d, err=%d). Please run fsck to fix.",
2596 type, err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002597 for (type--; type >= 0; type--)
2598 dquot_quota_off(sb, type);
Chao Yuaf033b22018-09-20 20:05:00 +08002599 set_sbi_flag(F2FS_SB(sb),
2600 SBI_QUOTA_NEED_REPAIR);
Jaegeuk Kimea676732017-10-06 09:14:28 -07002601 return err;
2602 }
2603 }
2604 }
2605 return 0;
Chao Yu4b2414d2017-08-08 10:54:31 +08002606}
2607
Chao Yu9de71ed2021-07-19 16:46:47 +08002608static int f2fs_quota_sync_file(struct f2fs_sb_info *sbi, int type)
2609{
2610 struct quota_info *dqopt = sb_dqopt(sbi->sb);
2611 struct address_space *mapping = dqopt->files[type]->i_mapping;
2612 int ret = 0;
2613
2614 ret = dquot_writeback_dquots(sbi->sb, type);
2615 if (ret)
2616 goto out;
2617
2618 ret = filemap_fdatawrite(mapping);
2619 if (ret)
2620 goto out;
2621
2622 /* if we are using journalled quota */
2623 if (is_journalled_quota(sbi))
2624 goto out;
2625
2626 ret = filemap_fdatawait(mapping);
2627
2628 truncate_inode_pages(&dqopt->files[type]->i_data, 0);
2629out:
2630 if (ret)
2631 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2632 return ret;
2633}
2634
Chao Yuaf033b22018-09-20 20:05:00 +08002635int f2fs_quota_sync(struct super_block *sb, int type)
Chao Yu0abd6752017-07-09 00:13:07 +08002636{
Chao Yuaf033b22018-09-20 20:05:00 +08002637 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Chao Yu0abd6752017-07-09 00:13:07 +08002638 struct quota_info *dqopt = sb_dqopt(sb);
2639 int cnt;
2640 int ret;
2641
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002642 /*
Chao Yu0abd6752017-07-09 00:13:07 +08002643 * Now when everything is written we can discard the pagecache so
2644 * that userspace sees the changes.
2645 */
2646 for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
Chao Yuaf033b22018-09-20 20:05:00 +08002647
Chao Yu0abd6752017-07-09 00:13:07 +08002648 if (type != -1 && cnt != type)
2649 continue;
Chao Yu0abd6752017-07-09 00:13:07 +08002650
Chao Yu9de71ed2021-07-19 16:46:47 +08002651 if (!sb_has_quota_active(sb, type))
2652 return 0;
Chao Yu0abd6752017-07-09 00:13:07 +08002653
2654 inode_lock(dqopt->files[cnt]);
Chao Yu9de71ed2021-07-19 16:46:47 +08002655
2656 /*
2657 * do_quotactl
2658 * f2fs_quota_sync
2659 * down_read(quota_sem)
2660 * dquot_writeback_dquots()
2661 * f2fs_dquot_commit
2662 * block_operation
2663 * down_read(quota_sem)
2664 */
2665 f2fs_lock_op(sbi);
2666 down_read(&sbi->quota_sem);
2667
2668 ret = f2fs_quota_sync_file(sbi, cnt);
2669
2670 up_read(&sbi->quota_sem);
2671 f2fs_unlock_op(sbi);
2672
Chao Yu0abd6752017-07-09 00:13:07 +08002673 inode_unlock(dqopt->files[cnt]);
Chao Yu9de71ed2021-07-19 16:46:47 +08002674
2675 if (ret)
2676 break;
Chao Yu0abd6752017-07-09 00:13:07 +08002677 }
Chao Yuaf033b22018-09-20 20:05:00 +08002678 return ret;
Chao Yu0abd6752017-07-09 00:13:07 +08002679}
2680
2681static int f2fs_quota_on(struct super_block *sb, int type, int format_id,
2682 const struct path *path)
2683{
2684 struct inode *inode;
2685 int err;
2686
Chao Yufe973b02019-07-25 17:33:37 +08002687 /* if quota sysfile exists, deny enabling quota with specific file */
2688 if (f2fs_sb_has_quota_ino(F2FS_SB(sb))) {
2689 f2fs_err(F2FS_SB(sb), "quota sysfile already exists");
2690 return -EBUSY;
2691 }
2692
Chao Yu9a20d392017-08-07 16:37:59 +08002693 err = f2fs_quota_sync(sb, type);
Chao Yu0abd6752017-07-09 00:13:07 +08002694 if (err)
2695 return err;
2696
2697 err = dquot_quota_on(sb, type, format_id, path);
2698 if (err)
2699 return err;
2700
2701 inode = d_inode(path->dentry);
2702
2703 inode_lock(inode);
Chao Yu59c84402018-04-03 15:08:17 +08002704 F2FS_I(inode)->i_flags |= F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL;
Chao Yu9149a5e2018-10-07 19:06:15 +08002705 f2fs_set_inode_flags(inode);
Chao Yu0abd6752017-07-09 00:13:07 +08002706 inode_unlock(inode);
2707 f2fs_mark_inode_dirty_sync(inode, false);
2708
2709 return 0;
2710}
2711
Chao Yufe973b02019-07-25 17:33:37 +08002712static int __f2fs_quota_off(struct super_block *sb, int type)
Chao Yu0abd6752017-07-09 00:13:07 +08002713{
2714 struct inode *inode = sb_dqopt(sb)->files[type];
2715 int err;
2716
2717 if (!inode || !igrab(inode))
2718 return dquot_quota_off(sb, type);
2719
Yunlei Hecda9cc52018-06-26 13:12:43 +08002720 err = f2fs_quota_sync(sb, type);
2721 if (err)
2722 goto out_put;
Chao Yu0abd6752017-07-09 00:13:07 +08002723
2724 err = dquot_quota_off(sb, type);
Chao Yu7beb01f2018-10-24 18:34:26 +08002725 if (err || f2fs_sb_has_quota_ino(F2FS_SB(sb)))
Chao Yu0abd6752017-07-09 00:13:07 +08002726 goto out_put;
2727
2728 inode_lock(inode);
Chao Yu59c84402018-04-03 15:08:17 +08002729 F2FS_I(inode)->i_flags &= ~(F2FS_NOATIME_FL | F2FS_IMMUTABLE_FL);
Chao Yu9149a5e2018-10-07 19:06:15 +08002730 f2fs_set_inode_flags(inode);
Chao Yu0abd6752017-07-09 00:13:07 +08002731 inode_unlock(inode);
2732 f2fs_mark_inode_dirty_sync(inode, false);
2733out_put:
2734 iput(inode);
2735 return err;
2736}
2737
Chao Yufe973b02019-07-25 17:33:37 +08002738static int f2fs_quota_off(struct super_block *sb, int type)
2739{
2740 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2741 int err;
2742
2743 err = __f2fs_quota_off(sb, type);
2744
2745 /*
2746 * quotactl can shutdown journalled quota, result in inconsistence
2747 * between quota record and fs data by following updates, tag the
2748 * flag to let fsck be aware of it.
2749 */
2750 if (is_journalled_quota(sbi))
2751 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2752 return err;
2753}
2754
Chao Yu4b2414d2017-08-08 10:54:31 +08002755void f2fs_quota_off_umount(struct super_block *sb)
Chao Yu0abd6752017-07-09 00:13:07 +08002756{
2757 int type;
Yunlei Hecda9cc52018-06-26 13:12:43 +08002758 int err;
Chao Yu0abd6752017-07-09 00:13:07 +08002759
Yunlei Hecda9cc52018-06-26 13:12:43 +08002760 for (type = 0; type < MAXQUOTAS; type++) {
Chao Yufe973b02019-07-25 17:33:37 +08002761 err = __f2fs_quota_off(sb, type);
Yunlei Hecda9cc52018-06-26 13:12:43 +08002762 if (err) {
2763 int ret = dquot_quota_off(sb, type);
2764
Joe Perchesdcbb4c12019-06-18 17:48:42 +08002765 f2fs_err(F2FS_SB(sb), "Fail to turn off disk quota (type: %d, err: %d, ret:%d), Please run fsck to fix it.",
2766 type, err, ret);
Chao Yuaf033b22018-09-20 20:05:00 +08002767 set_sbi_flag(F2FS_SB(sb), SBI_QUOTA_NEED_REPAIR);
Yunlei Hecda9cc52018-06-26 13:12:43 +08002768 }
2769 }
Jaegeuk Kim0e0667b2019-01-27 17:59:53 -08002770 /*
2771 * In case of checkpoint=disable, we must flush quota blocks.
2772 * This can cause NULL exception for node_inode in end_io, since
2773 * put_super already dropped it.
2774 */
2775 sync_filesystem(sb);
Chao Yu0abd6752017-07-09 00:13:07 +08002776}
2777
Sheng Yong26b5a072018-10-12 18:49:26 +08002778static void f2fs_truncate_quota_inode_pages(struct super_block *sb)
2779{
2780 struct quota_info *dqopt = sb_dqopt(sb);
2781 int type;
2782
2783 for (type = 0; type < MAXQUOTAS; type++) {
2784 if (!dqopt->files[type])
2785 continue;
2786 f2fs_inode_synced(dqopt->files[type]);
2787 }
2788}
2789
Chao Yuaf033b22018-09-20 20:05:00 +08002790static int f2fs_dquot_commit(struct dquot *dquot)
2791{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002792 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Chao Yuaf033b22018-09-20 20:05:00 +08002793 int ret;
2794
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002795 down_read_nested(&sbi->quota_sem, SINGLE_DEPTH_NESTING);
Chao Yuaf033b22018-09-20 20:05:00 +08002796 ret = dquot_commit(dquot);
2797 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002798 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2799 up_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002800 return ret;
2801}
2802
2803static int f2fs_dquot_acquire(struct dquot *dquot)
2804{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002805 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Chao Yuaf033b22018-09-20 20:05:00 +08002806 int ret;
2807
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002808 down_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002809 ret = dquot_acquire(dquot);
2810 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002811 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
2812 up_read(&sbi->quota_sem);
Chao Yuaf033b22018-09-20 20:05:00 +08002813 return ret;
2814}
2815
2816static int f2fs_dquot_release(struct dquot *dquot)
2817{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002818 struct f2fs_sb_info *sbi = F2FS_SB(dquot->dq_sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002819 int ret = dquot_release(dquot);
Chao Yuaf033b22018-09-20 20:05:00 +08002820
Chao Yuaf033b22018-09-20 20:05:00 +08002821 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002822 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Chao Yuaf033b22018-09-20 20:05:00 +08002823 return ret;
2824}
2825
2826static int f2fs_dquot_mark_dquot_dirty(struct dquot *dquot)
2827{
2828 struct super_block *sb = dquot->dq_sb;
2829 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002830 int ret = dquot_mark_dquot_dirty(dquot);
Chao Yuaf033b22018-09-20 20:05:00 +08002831
2832 /* if we are using journalled quota */
2833 if (is_journalled_quota(sbi))
2834 set_sbi_flag(sbi, SBI_QUOTA_NEED_FLUSH);
2835
2836 return ret;
2837}
2838
2839static int f2fs_dquot_commit_info(struct super_block *sb, int type)
2840{
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002841 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Jaegeuk Kim2c4e0c52019-12-03 17:31:00 -08002842 int ret = dquot_commit_info(sb, type);
Chao Yuaf033b22018-09-20 20:05:00 +08002843
Chao Yuaf033b22018-09-20 20:05:00 +08002844 if (ret < 0)
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07002845 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Chao Yuaf033b22018-09-20 20:05:00 +08002846 return ret;
2847}
Sheng Yong26b5a072018-10-12 18:49:26 +08002848
Wei Yongjun94b1e102018-01-05 09:41:20 +00002849static int f2fs_get_projid(struct inode *inode, kprojid_t *projid)
Chao Yu5c571322017-07-26 00:01:41 +08002850{
2851 *projid = F2FS_I(inode)->i_projid;
2852 return 0;
2853}
2854
Chao Yu0abd6752017-07-09 00:13:07 +08002855static const struct dquot_operations f2fs_quota_operations = {
2856 .get_reserved_space = f2fs_get_reserved_space,
Chao Yuaf033b22018-09-20 20:05:00 +08002857 .write_dquot = f2fs_dquot_commit,
2858 .acquire_dquot = f2fs_dquot_acquire,
2859 .release_dquot = f2fs_dquot_release,
2860 .mark_dirty = f2fs_dquot_mark_dquot_dirty,
2861 .write_info = f2fs_dquot_commit_info,
Chao Yu0abd6752017-07-09 00:13:07 +08002862 .alloc_dquot = dquot_alloc,
2863 .destroy_dquot = dquot_destroy,
Chao Yu5c571322017-07-26 00:01:41 +08002864 .get_projid = f2fs_get_projid,
Chao Yu0abd6752017-07-09 00:13:07 +08002865 .get_next_id = dquot_get_next_id,
2866};
2867
2868static const struct quotactl_ops f2fs_quotactl_ops = {
2869 .quota_on = f2fs_quota_on,
2870 .quota_off = f2fs_quota_off,
2871 .quota_sync = f2fs_quota_sync,
2872 .get_state = dquot_get_state,
2873 .set_info = dquot_set_dqinfo,
2874 .get_dqblk = dquot_get_dqblk,
2875 .set_dqblk = dquot_set_dqblk,
2876 .get_nextdqblk = dquot_get_next_dqblk,
2877};
2878#else
Chao Yuaf033b22018-09-20 20:05:00 +08002879int f2fs_quota_sync(struct super_block *sb, int type)
2880{
2881 return 0;
2882}
2883
Chao Yu4b2414d2017-08-08 10:54:31 +08002884void f2fs_quota_off_umount(struct super_block *sb)
Chao Yu0abd6752017-07-09 00:13:07 +08002885{
2886}
2887#endif
2888
Arvind Yadavf62fc9f2017-08-31 15:06:24 +05302889static const struct super_operations f2fs_sops = {
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002890 .alloc_inode = f2fs_alloc_inode,
Al Virod01718a2019-04-15 19:29:14 -04002891 .free_inode = f2fs_free_inode,
Jaegeuk Kim531ad7d2013-04-30 11:33:27 +09002892 .drop_inode = f2fs_drop_inode,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002893 .write_inode = f2fs_write_inode,
Jaegeuk Kimb3783872013-06-10 09:17:01 +09002894 .dirty_inode = f2fs_dirty_inode,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002895 .show_options = f2fs_show_options,
Chao Yu0abd6752017-07-09 00:13:07 +08002896#ifdef CONFIG_QUOTA
2897 .quota_read = f2fs_quota_read,
2898 .quota_write = f2fs_quota_write,
2899 .get_dquots = f2fs_get_dquots,
2900#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002901 .evict_inode = f2fs_evict_inode,
2902 .put_super = f2fs_put_super,
2903 .sync_fs = f2fs_sync_fs,
Changman Leed6212a52013-01-29 18:30:07 +09002904 .freeze_fs = f2fs_freeze,
2905 .unfreeze_fs = f2fs_unfreeze,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002906 .statfs = f2fs_statfs,
Namjae Jeon696c0182013-06-16 09:48:48 +09002907 .remount_fs = f2fs_remount,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002908};
2909
Chandan Rajendra643fa962018-12-12 15:20:12 +05302910#ifdef CONFIG_FS_ENCRYPTION
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002911static int f2fs_get_context(struct inode *inode, void *ctx, size_t len)
2912{
2913 return f2fs_getxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
2914 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
2915 ctx, len, NULL);
2916}
2917
2918static int f2fs_set_context(struct inode *inode, const void *ctx, size_t len,
2919 void *fs_data)
2920{
Sheng Yongb7c409d2018-03-15 18:51:41 +08002921 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
2922
2923 /*
2924 * Encrypting the root directory is not allowed because fsck
2925 * expects lost+found directory to exist and remain unencrypted
2926 * if LOST_FOUND feature is enabled.
2927 *
2928 */
Chao Yu7beb01f2018-10-24 18:34:26 +08002929 if (f2fs_sb_has_lost_found(sbi) &&
Sheng Yongb7c409d2018-03-15 18:51:41 +08002930 inode->i_ino == F2FS_ROOT_INO(sbi))
2931 return -EPERM;
2932
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002933 return f2fs_setxattr(inode, F2FS_XATTR_INDEX_ENCRYPTION,
2934 F2FS_XATTR_NAME_ENCRYPTION_CONTEXT,
2935 ctx, len, fs_data, XATTR_CREATE);
2936}
2937
Eric Biggersac4acb12020-09-16 21:11:35 -07002938static const union fscrypt_policy *f2fs_get_dummy_policy(struct super_block *sb)
Sheng Yongff62af22018-03-15 18:51:42 +08002939{
Eric Biggersac4acb12020-09-16 21:11:35 -07002940 return F2FS_OPTION(F2FS_SB(sb)).dummy_enc_policy.policy;
Sheng Yongff62af22018-03-15 18:51:42 +08002941}
2942
Eric Biggers0eee17e2019-10-24 14:54:38 -07002943static bool f2fs_has_stable_inodes(struct super_block *sb)
2944{
2945 return true;
2946}
2947
2948static void f2fs_get_ino_and_lblk_bits(struct super_block *sb,
2949 int *ino_bits_ret, int *lblk_bits_ret)
2950{
2951 *ino_bits_ret = 8 * sizeof(nid_t);
2952 *lblk_bits_ret = 8 * sizeof(block_t);
2953}
2954
Satya Tangirala27aacd22020-07-02 01:56:06 +00002955static int f2fs_get_num_devices(struct super_block *sb)
2956{
2957 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2958
2959 if (f2fs_is_multi_device(sbi))
2960 return sbi->s_ndevs;
2961 return 1;
2962}
2963
2964static void f2fs_get_devices(struct super_block *sb,
2965 struct request_queue **devs)
2966{
2967 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2968 int i;
2969
2970 for (i = 0; i < sbi->s_ndevs; i++)
2971 devs[i] = bdev_get_queue(FDEV(i).bdev);
2972}
2973
Eric Biggers6f69f0e2017-02-07 12:42:10 -08002974static const struct fscrypt_operations f2fs_cryptops = {
Eric Biggers0eee17e2019-10-24 14:54:38 -07002975 .key_prefix = "f2fs:",
2976 .get_context = f2fs_get_context,
2977 .set_context = f2fs_set_context,
Eric Biggersac4acb12020-09-16 21:11:35 -07002978 .get_dummy_policy = f2fs_get_dummy_policy,
Eric Biggers0eee17e2019-10-24 14:54:38 -07002979 .empty_dir = f2fs_empty_dir,
2980 .max_namelen = F2FS_NAME_LEN,
2981 .has_stable_inodes = f2fs_has_stable_inodes,
2982 .get_ino_and_lblk_bits = f2fs_get_ino_and_lblk_bits,
Satya Tangirala27aacd22020-07-02 01:56:06 +00002983 .get_num_devices = f2fs_get_num_devices,
2984 .get_devices = f2fs_get_devices,
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002985};
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07002986#endif
2987
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002988static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
2989 u64 ino, u32 generation)
2990{
2991 struct f2fs_sb_info *sbi = F2FS_SB(sb);
2992 struct inode *inode;
2993
Chao Yu4d57b862018-05-30 00:20:41 +08002994 if (f2fs_check_nid_range(sbi, ino))
Chao Yu910bb122014-03-12 17:08:36 +08002995 return ERR_PTR(-ESTALE);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09002996
2997 /*
2998 * f2fs_iget isn't quite right if the inode is currently unallocated!
2999 * However f2fs_iget currently does appropriate checks to handle stale
3000 * inodes so everything is OK.
3001 */
3002 inode = f2fs_iget(sb, ino);
3003 if (IS_ERR(inode))
3004 return ERR_CAST(inode);
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09003005 if (unlikely(generation && inode->i_generation != generation)) {
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003006 /* we didn't find the right inode.. */
3007 iput(inode);
3008 return ERR_PTR(-ESTALE);
3009 }
3010 return inode;
3011}
3012
3013static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
3014 int fh_len, int fh_type)
3015{
3016 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
3017 f2fs_nfs_get_inode);
3018}
3019
3020static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
3021 int fh_len, int fh_type)
3022{
3023 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
3024 f2fs_nfs_get_inode);
3025}
3026
3027static const struct export_operations f2fs_export_ops = {
3028 .fh_to_dentry = f2fs_fh_to_dentry,
3029 .fh_to_parent = f2fs_fh_to_parent,
3030 .get_parent = f2fs_get_parent,
3031};
3032
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003033loff_t max_file_blocks(struct inode *inode)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003034{
Chao Yu7a2af762017-07-19 00:19:06 +08003035 loff_t result = 0;
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003036 loff_t leaf_count;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003037
Chao Yu7a2af762017-07-19 00:19:06 +08003038 /*
3039 * note: previously, result is equal to (DEF_ADDRS_PER_INODE -
Chao Yu6afc6622017-09-06 21:59:50 +08003040 * DEFAULT_INLINE_XATTR_ADDRS), but now f2fs try to reserve more
Chao Yu7a2af762017-07-19 00:19:06 +08003041 * space in inode.i_addr, it will be more safe to reassign
3042 * result as zero.
3043 */
3044
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003045 if (inode && f2fs_compressed_file(inode))
3046 leaf_count = ADDRS_PER_BLOCK(inode);
3047 else
3048 leaf_count = DEF_ADDRS_PER_BLOCK;
3049
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003050 /* two direct node blocks */
3051 result += (leaf_count * 2);
3052
3053 /* two indirect node blocks */
3054 leaf_count *= NIDS_PER_BLOCK;
3055 result += (leaf_count * 2);
3056
3057 /* one double indirect node block */
3058 leaf_count *= NIDS_PER_BLOCK;
3059 result += leaf_count;
3060
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003061 return result;
3062}
3063
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003064static int __f2fs_commit_super(struct buffer_head *bh,
3065 struct f2fs_super_block *super)
Chao Yu9a59b622015-12-15 09:58:18 +08003066{
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003067 lock_buffer(bh);
3068 if (super)
3069 memcpy(bh->b_data + F2FS_SUPER_OFFSET, super, sizeof(*super));
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003070 set_buffer_dirty(bh);
3071 unlock_buffer(bh);
3072
3073 /* it's rare case, we can do fua all the time */
Jan Kara3adc5fcb2017-05-02 17:03:47 +02003074 return __sync_dirty_buffer(bh, REQ_SYNC | REQ_PREFLUSH | REQ_FUA);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003075}
3076
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003077static inline bool sanity_check_area_boundary(struct f2fs_sb_info *sbi,
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003078 struct buffer_head *bh)
3079{
3080 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
3081 (bh->b_data + F2FS_SUPER_OFFSET);
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003082 struct super_block *sb = sbi->sb;
Chao Yu9a59b622015-12-15 09:58:18 +08003083 u32 segment0_blkaddr = le32_to_cpu(raw_super->segment0_blkaddr);
3084 u32 cp_blkaddr = le32_to_cpu(raw_super->cp_blkaddr);
3085 u32 sit_blkaddr = le32_to_cpu(raw_super->sit_blkaddr);
3086 u32 nat_blkaddr = le32_to_cpu(raw_super->nat_blkaddr);
3087 u32 ssa_blkaddr = le32_to_cpu(raw_super->ssa_blkaddr);
3088 u32 main_blkaddr = le32_to_cpu(raw_super->main_blkaddr);
3089 u32 segment_count_ckpt = le32_to_cpu(raw_super->segment_count_ckpt);
3090 u32 segment_count_sit = le32_to_cpu(raw_super->segment_count_sit);
3091 u32 segment_count_nat = le32_to_cpu(raw_super->segment_count_nat);
3092 u32 segment_count_ssa = le32_to_cpu(raw_super->segment_count_ssa);
3093 u32 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
3094 u32 segment_count = le32_to_cpu(raw_super->segment_count);
3095 u32 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003096 u64 main_end_blkaddr = main_blkaddr +
3097 (segment_count_main << log_blocks_per_seg);
3098 u64 seg_end_blkaddr = segment0_blkaddr +
3099 (segment_count << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003100
3101 if (segment0_blkaddr != cp_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003102 f2fs_info(sbi, "Mismatch start address, segment0(%u) cp_blkaddr(%u)",
3103 segment0_blkaddr, cp_blkaddr);
Chao Yu9a59b622015-12-15 09:58:18 +08003104 return true;
3105 }
3106
3107 if (cp_blkaddr + (segment_count_ckpt << log_blocks_per_seg) !=
3108 sit_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003109 f2fs_info(sbi, "Wrong CP boundary, start(%u) end(%u) blocks(%u)",
3110 cp_blkaddr, sit_blkaddr,
3111 segment_count_ckpt << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003112 return true;
3113 }
3114
3115 if (sit_blkaddr + (segment_count_sit << log_blocks_per_seg) !=
3116 nat_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003117 f2fs_info(sbi, "Wrong SIT boundary, start(%u) end(%u) blocks(%u)",
3118 sit_blkaddr, nat_blkaddr,
3119 segment_count_sit << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003120 return true;
3121 }
3122
3123 if (nat_blkaddr + (segment_count_nat << log_blocks_per_seg) !=
3124 ssa_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003125 f2fs_info(sbi, "Wrong NAT boundary, start(%u) end(%u) blocks(%u)",
3126 nat_blkaddr, ssa_blkaddr,
3127 segment_count_nat << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003128 return true;
3129 }
3130
3131 if (ssa_blkaddr + (segment_count_ssa << log_blocks_per_seg) !=
3132 main_blkaddr) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003133 f2fs_info(sbi, "Wrong SSA boundary, start(%u) end(%u) blocks(%u)",
3134 ssa_blkaddr, main_blkaddr,
3135 segment_count_ssa << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003136 return true;
3137 }
3138
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003139 if (main_end_blkaddr > seg_end_blkaddr) {
Wang Xiaojund89f5892020-09-18 08:31:24 +08003140 f2fs_info(sbi, "Wrong MAIN_AREA boundary, start(%u) end(%llu) block(%u)",
3141 main_blkaddr, seg_end_blkaddr,
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003142 segment_count_main << log_blocks_per_seg);
Chao Yu9a59b622015-12-15 09:58:18 +08003143 return true;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003144 } else if (main_end_blkaddr < seg_end_blkaddr) {
3145 int err = 0;
3146 char *res;
Chao Yu9a59b622015-12-15 09:58:18 +08003147
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003148 /* fix in-memory information all the time */
3149 raw_super->segment_count = cpu_to_le32((main_end_blkaddr -
3150 segment0_blkaddr) >> log_blocks_per_seg);
3151
3152 if (f2fs_readonly(sb) || bdev_read_only(sb->s_bdev)) {
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003153 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003154 res = "internally";
3155 } else {
3156 err = __f2fs_commit_super(bh, NULL);
3157 res = err ? "failed" : "done";
3158 }
Wang Xiaojund89f5892020-09-18 08:31:24 +08003159 f2fs_info(sbi, "Fix alignment : %s, start(%u) end(%llu) block(%u)",
3160 res, main_blkaddr, seg_end_blkaddr,
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003161 segment_count_main << log_blocks_per_seg);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003162 if (err)
3163 return true;
3164 }
Chao Yu9a59b622015-12-15 09:58:18 +08003165 return false;
3166}
3167
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003168static int sanity_check_raw_super(struct f2fs_sb_info *sbi,
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003169 struct buffer_head *bh)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003170{
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003171 block_t segment_count, segs_per_sec, secs_per_zone, segment_count_main;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003172 block_t total_sections, blocks_per_seg;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003173 struct f2fs_super_block *raw_super = (struct f2fs_super_block *)
3174 (bh->b_data + F2FS_SUPER_OFFSET);
Junling Zhengd440c522018-09-28 20:25:56 +08003175 size_t crc_offset = 0;
3176 __u32 crc = 0;
3177
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003178 if (le32_to_cpu(raw_super->magic) != F2FS_SUPER_MAGIC) {
3179 f2fs_info(sbi, "Magic Mismatch, valid(0x%x) - read(0x%x)",
3180 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
3181 return -EINVAL;
3182 }
3183
Junling Zhengd440c522018-09-28 20:25:56 +08003184 /* Check checksum_offset and crc in superblock */
Chao Yu7beb01f2018-10-24 18:34:26 +08003185 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_SB_CHKSUM)) {
Junling Zhengd440c522018-09-28 20:25:56 +08003186 crc_offset = le32_to_cpu(raw_super->checksum_offset);
3187 if (crc_offset !=
3188 offsetof(struct f2fs_super_block, crc)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003189 f2fs_info(sbi, "Invalid SB checksum offset: %zu",
3190 crc_offset);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003191 return -EFSCORRUPTED;
Junling Zhengd440c522018-09-28 20:25:56 +08003192 }
3193 crc = le32_to_cpu(raw_super->crc);
3194 if (!f2fs_crc_valid(sbi, crc, raw_super, crc_offset)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003195 f2fs_info(sbi, "Invalid SB checksum value: %u", crc);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003196 return -EFSCORRUPTED;
Junling Zhengd440c522018-09-28 20:25:56 +08003197 }
3198 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003199
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003200 /* Currently, support only 4KB block size */
Chao Yue584bbe2020-12-09 16:49:36 +08003201 if (le32_to_cpu(raw_super->log_blocksize) != F2FS_BLKSIZE_BITS) {
3202 f2fs_info(sbi, "Invalid log_blocksize (%u), supports only %u",
3203 le32_to_cpu(raw_super->log_blocksize),
3204 F2FS_BLKSIZE_BITS);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003205 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003206 }
majianpeng5c9b4692013-02-01 19:07:57 +08003207
Chao Yu9a59b622015-12-15 09:58:18 +08003208 /* check log blocks per segment */
3209 if (le32_to_cpu(raw_super->log_blocks_per_seg) != 9) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003210 f2fs_info(sbi, "Invalid log blocks per segment (%u)",
3211 le32_to_cpu(raw_super->log_blocks_per_seg));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003212 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003213 }
3214
Chao Yu55cf9cb2014-09-15 18:01:10 +08003215 /* Currently, support 512/1024/2048/4096 bytes sector size */
3216 if (le32_to_cpu(raw_super->log_sectorsize) >
3217 F2FS_MAX_LOG_SECTOR_SIZE ||
3218 le32_to_cpu(raw_super->log_sectorsize) <
3219 F2FS_MIN_LOG_SECTOR_SIZE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003220 f2fs_info(sbi, "Invalid log sectorsize (%u)",
3221 le32_to_cpu(raw_super->log_sectorsize));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003222 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003223 }
Chao Yu55cf9cb2014-09-15 18:01:10 +08003224 if (le32_to_cpu(raw_super->log_sectors_per_block) +
3225 le32_to_cpu(raw_super->log_sectorsize) !=
3226 F2FS_MAX_LOG_SECTOR_SIZE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003227 f2fs_info(sbi, "Invalid log sectors per block(%u) log sectorsize(%u)",
3228 le32_to_cpu(raw_super->log_sectors_per_block),
3229 le32_to_cpu(raw_super->log_sectorsize));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003230 return -EFSCORRUPTED;
Namjae Jeona07ef782012-12-30 14:52:05 +09003231 }
Chao Yu9a59b622015-12-15 09:58:18 +08003232
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003233 segment_count = le32_to_cpu(raw_super->segment_count);
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003234 segment_count_main = le32_to_cpu(raw_super->segment_count_main);
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003235 segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
3236 secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
3237 total_sections = le32_to_cpu(raw_super->section_count);
3238
3239 /* blocks_per_seg should be 512, given the above check */
3240 blocks_per_seg = 1 << le32_to_cpu(raw_super->log_blocks_per_seg);
3241
3242 if (segment_count > F2FS_MAX_SEGMENT ||
3243 segment_count < F2FS_MIN_SEGMENTS) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003244 f2fs_info(sbi, "Invalid segment count (%u)", segment_count);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003245 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003246 }
3247
Wang Xiaojunf99ba9a2020-09-17 19:11:58 +08003248 if (total_sections > segment_count_main || total_sections < 1 ||
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003249 segs_per_sec > segment_count || !segs_per_sec) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003250 f2fs_info(sbi, "Invalid segment/section count (%u, %u x %u)",
3251 segment_count, total_sections, segs_per_sec);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003252 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003253 }
3254
Chao Yu3a22e9a2020-09-29 09:23:34 +08003255 if (segment_count_main != total_sections * segs_per_sec) {
3256 f2fs_info(sbi, "Invalid segment/section count (%u != %u * %u)",
3257 segment_count_main, total_sections, segs_per_sec);
3258 return -EFSCORRUPTED;
3259 }
3260
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003261 if ((segment_count / segs_per_sec) < total_sections) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003262 f2fs_info(sbi, "Small segment_count (%u < %u * %u)",
3263 segment_count, segs_per_sec, total_sections);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003264 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003265 }
3266
Martin Blumenstingl88960062018-12-22 11:22:26 +01003267 if (segment_count > (le64_to_cpu(raw_super->block_count) >> 9)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003268 f2fs_info(sbi, "Wrong segment_count / block_count (%u > %llu)",
3269 segment_count, le64_to_cpu(raw_super->block_count));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003270 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003271 }
3272
Qiuyang Sun9f701f62019-09-23 12:22:35 +08003273 if (RDEV(0).path[0]) {
3274 block_t dev_seg_count = le32_to_cpu(RDEV(0).total_segments);
3275 int i = 1;
3276
3277 while (i < MAX_DEVICES && RDEV(i).path[0]) {
3278 dev_seg_count += le32_to_cpu(RDEV(i).total_segments);
3279 i++;
3280 }
3281 if (segment_count != dev_seg_count) {
3282 f2fs_info(sbi, "Segment count (%u) mismatch with total segments from devices (%u)",
3283 segment_count, dev_seg_count);
3284 return -EFSCORRUPTED;
3285 }
Chao Yu07eb1d62020-09-21 20:53:13 +08003286 } else {
3287 if (__F2FS_HAS_FEATURE(raw_super, F2FS_FEATURE_BLKZONED) &&
3288 !bdev_is_zoned(sbi->sb->s_bdev)) {
3289 f2fs_info(sbi, "Zoned block device path is missing");
3290 return -EFSCORRUPTED;
3291 }
Qiuyang Sun9f701f62019-09-23 12:22:35 +08003292 }
3293
Chao Yu42bf5462018-06-23 00:12:36 +08003294 if (secs_per_zone > total_sections || !secs_per_zone) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003295 f2fs_info(sbi, "Wrong secs_per_zone / total_sections (%u, %u)",
3296 secs_per_zone, total_sections);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003297 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003298 }
3299 if (le32_to_cpu(raw_super->extension_count) > F2FS_MAX_EXTENSION ||
3300 raw_super->hot_ext_count > F2FS_MAX_EXTENSION ||
3301 (le32_to_cpu(raw_super->extension_count) +
3302 raw_super->hot_ext_count) > F2FS_MAX_EXTENSION) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003303 f2fs_info(sbi, "Corrupted extension count (%u + %u > %u)",
3304 le32_to_cpu(raw_super->extension_count),
3305 raw_super->hot_ext_count,
3306 F2FS_MAX_EXTENSION);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003307 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003308 }
3309
Chao Yu65ddf652021-08-06 08:04:37 +08003310 if (le32_to_cpu(raw_super->cp_payload) >=
3311 (blocks_per_seg - F2FS_CP_PACKS -
3312 NR_CURSEG_PERSIST_TYPE)) {
3313 f2fs_info(sbi, "Insane cp_payload (%u >= %u)",
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003314 le32_to_cpu(raw_super->cp_payload),
Chao Yu65ddf652021-08-06 08:04:37 +08003315 blocks_per_seg - F2FS_CP_PACKS -
3316 NR_CURSEG_PERSIST_TYPE);
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003317 return -EFSCORRUPTED;
Jaegeuk Kim0cfe75c2018-04-27 19:03:22 -07003318 }
3319
Chao Yu9a59b622015-12-15 09:58:18 +08003320 /* check reserved ino info */
3321 if (le32_to_cpu(raw_super->node_ino) != 1 ||
3322 le32_to_cpu(raw_super->meta_ino) != 2 ||
3323 le32_to_cpu(raw_super->root_ino) != 3) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003324 f2fs_info(sbi, "Invalid Fs Meta Ino: node(%u) meta(%u) root(%u)",
3325 le32_to_cpu(raw_super->node_ino),
3326 le32_to_cpu(raw_super->meta_ino),
3327 le32_to_cpu(raw_super->root_ino));
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003328 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003329 }
3330
3331 /* check CP/SIT/NAT/SSA/MAIN_AREA area boundary */
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003332 if (sanity_check_area_boundary(sbi, bh))
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003333 return -EFSCORRUPTED;
Chao Yu9a59b622015-12-15 09:58:18 +08003334
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003335 return 0;
3336}
3337
Chao Yu4d57b862018-05-30 00:20:41 +08003338int f2fs_sanity_check_ckpt(struct f2fs_sb_info *sbi)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003339{
3340 unsigned int total, fsmeta;
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003341 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
3342 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003343 unsigned int ovp_segments, reserved_segments;
Jin Qian15d30422017-05-15 10:45:08 -07003344 unsigned int main_segs, blocks_per_seg;
Chao Yuc77ec612018-06-23 11:25:19 +08003345 unsigned int sit_segs, nat_segs;
3346 unsigned int sit_bitmap_size, nat_bitmap_size;
3347 unsigned int log_blocks_per_seg;
Chao Yu9dc956b2018-06-27 18:05:54 +08003348 unsigned int segment_count_main;
Chao Yue494c2f2018-08-01 19:16:11 +08003349 unsigned int cp_pack_start_sum, cp_payload;
Chao Yu7b63f722019-04-15 15:30:50 +08003350 block_t user_block_count, valid_user_blocks;
3351 block_t avail_node_count, valid_node_count;
Chao Yu65ddf652021-08-06 08:04:37 +08003352 unsigned int nat_blocks, nat_bits_bytes, nat_bits_blocks;
Chao Yu042be0f2018-09-06 20:34:12 +08003353 int i, j;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003354
3355 total = le32_to_cpu(raw_super->segment_count);
3356 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
Chao Yuc77ec612018-06-23 11:25:19 +08003357 sit_segs = le32_to_cpu(raw_super->segment_count_sit);
3358 fsmeta += sit_segs;
3359 nat_segs = le32_to_cpu(raw_super->segment_count_nat);
3360 fsmeta += nat_segs;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003361 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
3362 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
3363
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09003364 if (unlikely(fsmeta >= total))
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003365 return 1;
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003366
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003367 ovp_segments = le32_to_cpu(ckpt->overprov_segment_count);
3368 reserved_segments = le32_to_cpu(ckpt->rsvd_segment_count);
3369
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003370 if (!f2fs_sb_has_readonly(sbi) &&
3371 unlikely(fsmeta < F2FS_MIN_META_SEGMENTS ||
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003372 ovp_segments == 0 || reserved_segments == 0)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003373 f2fs_err(sbi, "Wrong layout: check mkfs.f2fs version");
Jaegeuk Kim2040fce82016-12-05 13:56:04 -08003374 return 1;
3375 }
Chao Yu9dc956b2018-06-27 18:05:54 +08003376 user_block_count = le64_to_cpu(ckpt->user_block_count);
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003377 segment_count_main = le32_to_cpu(raw_super->segment_count_main) +
3378 (f2fs_sb_has_readonly(sbi) ? 1 : 0);
Chao Yu9dc956b2018-06-27 18:05:54 +08003379 log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3380 if (!user_block_count || user_block_count >=
3381 segment_count_main << log_blocks_per_seg) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003382 f2fs_err(sbi, "Wrong user_block_count: %u",
3383 user_block_count);
Chao Yu9dc956b2018-06-27 18:05:54 +08003384 return 1;
3385 }
3386
Chao Yu7b63f722019-04-15 15:30:50 +08003387 valid_user_blocks = le64_to_cpu(ckpt->valid_block_count);
3388 if (valid_user_blocks > user_block_count) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003389 f2fs_err(sbi, "Wrong valid_user_blocks: %u, user_block_count: %u",
3390 valid_user_blocks, user_block_count);
Chao Yu7b63f722019-04-15 15:30:50 +08003391 return 1;
3392 }
3393
3394 valid_node_count = le32_to_cpu(ckpt->valid_node_count);
Chao Yu27cae0b2019-08-05 18:27:25 +08003395 avail_node_count = sbi->total_node_count - F2FS_RESERVED_NODE_NUM;
Chao Yu7b63f722019-04-15 15:30:50 +08003396 if (valid_node_count > avail_node_count) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003397 f2fs_err(sbi, "Wrong valid_node_count: %u, avail_node_count: %u",
3398 valid_node_count, avail_node_count);
Chao Yu7b63f722019-04-15 15:30:50 +08003399 return 1;
3400 }
3401
Jin Qian15d30422017-05-15 10:45:08 -07003402 main_segs = le32_to_cpu(raw_super->segment_count_main);
3403 blocks_per_seg = sbi->blocks_per_seg;
3404
3405 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
3406 if (le32_to_cpu(ckpt->cur_node_segno[i]) >= main_segs ||
3407 le16_to_cpu(ckpt->cur_node_blkoff[i]) >= blocks_per_seg)
3408 return 1;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003409
3410 if (f2fs_sb_has_readonly(sbi))
3411 goto check_data;
3412
Chao Yu042be0f2018-09-06 20:34:12 +08003413 for (j = i + 1; j < NR_CURSEG_NODE_TYPE; j++) {
3414 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3415 le32_to_cpu(ckpt->cur_node_segno[j])) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003416 f2fs_err(sbi, "Node segment (%u, %u) has the same segno: %u",
3417 i, j,
3418 le32_to_cpu(ckpt->cur_node_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003419 return 1;
3420 }
3421 }
Jin Qian15d30422017-05-15 10:45:08 -07003422 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003423check_data:
Jin Qian15d30422017-05-15 10:45:08 -07003424 for (i = 0; i < NR_CURSEG_DATA_TYPE; i++) {
3425 if (le32_to_cpu(ckpt->cur_data_segno[i]) >= main_segs ||
3426 le16_to_cpu(ckpt->cur_data_blkoff[i]) >= blocks_per_seg)
3427 return 1;
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003428
3429 if (f2fs_sb_has_readonly(sbi))
3430 goto skip_cross;
3431
Chao Yu042be0f2018-09-06 20:34:12 +08003432 for (j = i + 1; j < NR_CURSEG_DATA_TYPE; j++) {
3433 if (le32_to_cpu(ckpt->cur_data_segno[i]) ==
3434 le32_to_cpu(ckpt->cur_data_segno[j])) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003435 f2fs_err(sbi, "Data segment (%u, %u) has the same segno: %u",
3436 i, j,
3437 le32_to_cpu(ckpt->cur_data_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003438 return 1;
3439 }
3440 }
3441 }
3442 for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
Surbhi Palande1166c1f2019-08-23 15:40:45 -07003443 for (j = 0; j < NR_CURSEG_DATA_TYPE; j++) {
Chao Yu042be0f2018-09-06 20:34:12 +08003444 if (le32_to_cpu(ckpt->cur_node_segno[i]) ==
3445 le32_to_cpu(ckpt->cur_data_segno[j])) {
Surbhi Palande1166c1f2019-08-23 15:40:45 -07003446 f2fs_err(sbi, "Node segment (%u) and Data segment (%u) has the same segno: %u",
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003447 i, j,
3448 le32_to_cpu(ckpt->cur_node_segno[i]));
Chao Yu042be0f2018-09-06 20:34:12 +08003449 return 1;
3450 }
3451 }
Jin Qian15d30422017-05-15 10:45:08 -07003452 }
Jaegeuk Kima7d9fe32021-05-21 01:32:53 -07003453skip_cross:
Chao Yuc77ec612018-06-23 11:25:19 +08003454 sit_bitmap_size = le32_to_cpu(ckpt->sit_ver_bitmap_bytesize);
3455 nat_bitmap_size = le32_to_cpu(ckpt->nat_ver_bitmap_bytesize);
Chao Yuc77ec612018-06-23 11:25:19 +08003456
3457 if (sit_bitmap_size != ((sit_segs / 2) << log_blocks_per_seg) / 8 ||
3458 nat_bitmap_size != ((nat_segs / 2) << log_blocks_per_seg) / 8) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003459 f2fs_err(sbi, "Wrong bitmap size: sit: %u, nat:%u",
3460 sit_bitmap_size, nat_bitmap_size);
Chao Yuc77ec612018-06-23 11:25:19 +08003461 return 1;
3462 }
3463
Chao Yue494c2f2018-08-01 19:16:11 +08003464 cp_pack_start_sum = __start_sum_addr(sbi);
3465 cp_payload = __cp_payload(sbi);
3466 if (cp_pack_start_sum < cp_payload + 1 ||
3467 cp_pack_start_sum > blocks_per_seg - 1 -
Chao Yud0b9e422020-08-04 21:14:45 +08003468 NR_CURSEG_PERSIST_TYPE) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003469 f2fs_err(sbi, "Wrong cp_pack_start_sum: %u",
3470 cp_pack_start_sum);
Chao Yue494c2f2018-08-01 19:16:11 +08003471 return 1;
3472 }
3473
Chao Yu5dae2d32019-05-20 10:09:22 +08003474 if (__is_set_ckpt_flags(ckpt, CP_LARGE_NAT_BITMAP_FLAG) &&
3475 le32_to_cpu(ckpt->checksum_offset) != CP_MIN_CHKSUM_OFFSET) {
Chao Yu2d008832019-07-11 09:29:15 +08003476 f2fs_warn(sbi, "using deprecated layout of large_nat_bitmap, "
3477 "please run fsck v1.13.0 or higher to repair, chksum_offset: %u, "
3478 "fixed with patch: \"f2fs-tools: relocate chksum_offset for large_nat_bitmap feature\"",
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003479 le32_to_cpu(ckpt->checksum_offset));
Chao Yu5dae2d32019-05-20 10:09:22 +08003480 return 1;
3481 }
3482
Chao Yu65ddf652021-08-06 08:04:37 +08003483 nat_blocks = nat_segs << log_blocks_per_seg;
3484 nat_bits_bytes = nat_blocks / BITS_PER_BYTE;
3485 nat_bits_blocks = F2FS_BLK_ALIGN((nat_bits_bytes << 1) + 8);
3486 if (__is_set_ckpt_flags(ckpt, CP_NAT_BITS_FLAG) &&
3487 (cp_payload + F2FS_CP_PACKS +
3488 NR_CURSEG_PERSIST_TYPE + nat_bits_blocks >= blocks_per_seg)) {
3489 f2fs_warn(sbi, "Insane cp_payload: %u, nat_bits_blocks: %u)",
3490 cp_payload, nat_bits_blocks);
3491 return -EFSCORRUPTED;
3492 }
3493
Jaegeuk Kim1e968fd2014-08-11 16:49:25 -07003494 if (unlikely(f2fs_cp_error(sbi))) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003495 f2fs_err(sbi, "A bug case: need to run fsck");
Jaegeuk Kim577e3492013-01-24 19:56:11 +09003496 return 1;
3497 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003498 return 0;
3499}
3500
3501static void init_sb_info(struct f2fs_sb_info *sbi)
3502{
3503 struct f2fs_super_block *raw_super = sbi->raw_super;
Yunlong Song089842d2018-10-24 16:09:42 +08003504 int i;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003505
3506 sbi->log_sectors_per_block =
3507 le32_to_cpu(raw_super->log_sectors_per_block);
3508 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
3509 sbi->blocksize = 1 << sbi->log_blocksize;
3510 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
3511 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
3512 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
3513 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
3514 sbi->total_sections = le32_to_cpu(raw_super->section_count);
3515 sbi->total_node_count =
3516 (le32_to_cpu(raw_super->segment_count_nat) / 2)
3517 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
Yangtao Lib9ec1092020-12-07 18:59:33 +08003518 F2FS_ROOT_INO(sbi) = le32_to_cpu(raw_super->root_ino);
3519 F2FS_NODE_INO(sbi) = le32_to_cpu(raw_super->node_ino);
3520 F2FS_META_INO(sbi) = le32_to_cpu(raw_super->meta_ino);
Jaegeuk Kim5ec4e492013-03-31 13:26:03 +09003521 sbi->cur_victim_sec = NULL_SECNO;
Chao Yue3080b02018-10-24 18:37:27 +08003522 sbi->next_victim_seg[BG_GC] = NULL_SEGNO;
3523 sbi->next_victim_seg[FG_GC] = NULL_SEGNO;
Jaegeuk Kimb1c57c12014-01-08 13:45:08 +09003524 sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;
Chao Yue3080b02018-10-24 18:37:27 +08003525 sbi->migration_granularity = sbi->segs_per_sec;
Daeho Jeong0f6b56e2021-08-02 21:22:45 -07003526 sbi->seq_file_ra_mul = MIN_RA_MUL;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003527
Jaegeuk Kimab9fa662014-02-27 20:09:05 +09003528 sbi->dir_level = DEF_DIR_LEVEL;
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08003529 sbi->interval_time[CP_TIME] = DEF_CP_INTERVAL;
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08003530 sbi->interval_time[REQ_TIME] = DEF_IDLE_INTERVAL;
Sahitya Tummalaa7d10cf2018-09-19 14:18:47 +05303531 sbi->interval_time[DISCARD_TIME] = DEF_IDLE_INTERVAL;
3532 sbi->interval_time[GC_TIME] = DEF_IDLE_INTERVAL;
Daniel Rosenberg43549942018-08-20 19:21:43 -07003533 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_INTERVAL;
Jaegeuk Kim03f2c022019-01-14 10:42:11 -08003534 sbi->interval_time[UMOUNT_DISCARD_TIMEOUT] =
3535 DEF_UMOUNT_DISCARD_TIMEOUT;
Chao Yucaf00472015-01-28 17:48:42 +08003536 clear_sbi_flag(sbi, SBI_NEED_FSCK);
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003537
Jaegeuk Kim35782b22016-10-20 19:09:57 -07003538 for (i = 0; i < NR_COUNT_TYPE; i++)
3539 atomic_set(&sbi->nr_pages[i], 0);
3540
Chao Yuc29fd0c2018-06-04 23:20:36 +08003541 for (i = 0; i < META; i++)
3542 atomic_set(&sbi->wb_sync_req[i], 0);
Jaegeuk Kim687de7f2017-03-28 18:07:38 -07003543
Jaegeuk Kim2658e502015-06-19 12:01:21 -07003544 INIT_LIST_HEAD(&sbi->s_list);
3545 mutex_init(&sbi->umount_mutex);
Chao Yu107a8052018-05-26 09:00:13 +08003546 init_rwsem(&sbi->io_order_lock);
Chao Yuaaec2b12016-09-20 11:04:18 +08003547 spin_lock_init(&sbi->cp_lock);
Chao Yu1228b482017-09-29 13:59:39 +08003548
3549 sbi->dirty_device = 0;
3550 spin_lock_init(&sbi->dev_lock);
Chao Yud0d3f1b2018-02-11 22:53:20 +08003551
Chao Yu846ae672018-02-26 22:04:13 +08003552 init_rwsem(&sbi->sb_lock);
Jaegeuk Kimf5a53ed2019-10-18 10:06:40 -07003553 init_rwsem(&sbi->pin_sem);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003554}
3555
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003556static int init_percpu_info(struct f2fs_sb_info *sbi)
3557{
Jaegeuk Kim35782b22016-10-20 19:09:57 -07003558 int err;
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07003559
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07003560 err = percpu_counter_init(&sbi->alloc_valid_block_count, 0, GFP_KERNEL);
3561 if (err)
3562 return err;
3563
Chao Yu4a70e252018-09-05 14:54:02 +08003564 err = percpu_counter_init(&sbi->total_valid_inode_count, 0,
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07003565 GFP_KERNEL);
Chao Yu4a70e252018-09-05 14:54:02 +08003566 if (err)
3567 percpu_counter_destroy(&sbi->alloc_valid_block_count);
3568
3569 return err;
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07003570}
3571
Damien Le Moal178053e2016-10-28 17:45:05 +09003572#ifdef CONFIG_BLK_DEV_ZONED
Christoph Hellwigd4100352019-11-11 11:39:30 +09003573
Aravind Rameshde881df2020-07-16 18:26:56 +05303574struct f2fs_report_zones_args {
3575 struct f2fs_dev_info *dev;
3576 bool zone_cap_mismatch;
3577};
3578
3579static int f2fs_report_zone_cb(struct blk_zone *zone, unsigned int idx,
3580 void *data)
3581{
3582 struct f2fs_report_zones_args *rz_args = data;
3583
3584 if (zone->type == BLK_ZONE_TYPE_CONVENTIONAL)
3585 return 0;
3586
3587 set_bit(idx, rz_args->dev->blkz_seq);
3588 rz_args->dev->zone_capacity_blocks[idx] = zone->capacity >>
3589 F2FS_LOG_SECTORS_PER_BLOCK;
3590 if (zone->len != zone->capacity && !rz_args->zone_cap_mismatch)
3591 rz_args->zone_cap_mismatch = true;
3592
Christoph Hellwigd4100352019-11-11 11:39:30 +09003593 return 0;
3594}
3595
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003596static int init_blkz_info(struct f2fs_sb_info *sbi, int devi)
Damien Le Moal178053e2016-10-28 17:45:05 +09003597{
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003598 struct block_device *bdev = FDEV(devi).bdev;
Christoph Hellwiga7824832020-11-26 18:43:37 +01003599 sector_t nr_sectors = bdev_nr_sectors(bdev);
Aravind Rameshde881df2020-07-16 18:26:56 +05303600 struct f2fs_report_zones_args rep_zone_arg;
Christoph Hellwigd4100352019-11-11 11:39:30 +09003601 int ret;
Damien Le Moal178053e2016-10-28 17:45:05 +09003602
Chao Yu7beb01f2018-10-24 18:34:26 +08003603 if (!f2fs_sb_has_blkzoned(sbi))
Damien Le Moal178053e2016-10-28 17:45:05 +09003604 return 0;
3605
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003606 if (sbi->blocks_per_blkz && sbi->blocks_per_blkz !=
Damien Le Moalf99e8642017-01-12 07:58:32 -07003607 SECTOR_TO_BLOCK(bdev_zone_sectors(bdev)))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003608 return -EINVAL;
Damien Le Moalf99e8642017-01-12 07:58:32 -07003609 sbi->blocks_per_blkz = SECTOR_TO_BLOCK(bdev_zone_sectors(bdev));
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003610 if (sbi->log_blocks_per_blkz && sbi->log_blocks_per_blkz !=
3611 __ilog2_u32(sbi->blocks_per_blkz))
3612 return -EINVAL;
Damien Le Moal178053e2016-10-28 17:45:05 +09003613 sbi->log_blocks_per_blkz = __ilog2_u32(sbi->blocks_per_blkz);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003614 FDEV(devi).nr_blkz = SECTOR_TO_BLOCK(nr_sectors) >>
3615 sbi->log_blocks_per_blkz;
Damien Le Moalf99e8642017-01-12 07:58:32 -07003616 if (nr_sectors & (bdev_zone_sectors(bdev) - 1))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003617 FDEV(devi).nr_blkz++;
Damien Le Moal178053e2016-10-28 17:45:05 +09003618
Eric Biggers0b6d4ca2020-06-04 21:57:48 -07003619 FDEV(devi).blkz_seq = f2fs_kvzalloc(sbi,
Damien Le Moal95175da2019-03-16 09:13:07 +09003620 BITS_TO_LONGS(FDEV(devi).nr_blkz)
3621 * sizeof(unsigned long),
3622 GFP_KERNEL);
3623 if (!FDEV(devi).blkz_seq)
Damien Le Moal178053e2016-10-28 17:45:05 +09003624 return -ENOMEM;
3625
Aravind Rameshde881df2020-07-16 18:26:56 +05303626 /* Get block zones type and zone-capacity */
3627 FDEV(devi).zone_capacity_blocks = f2fs_kzalloc(sbi,
3628 FDEV(devi).nr_blkz * sizeof(block_t),
3629 GFP_KERNEL);
3630 if (!FDEV(devi).zone_capacity_blocks)
3631 return -ENOMEM;
3632
3633 rep_zone_arg.dev = &FDEV(devi);
3634 rep_zone_arg.zone_cap_mismatch = false;
3635
Christoph Hellwigd4100352019-11-11 11:39:30 +09003636 ret = blkdev_report_zones(bdev, 0, BLK_ALL_ZONES, f2fs_report_zone_cb,
Aravind Rameshde881df2020-07-16 18:26:56 +05303637 &rep_zone_arg);
Christoph Hellwigd4100352019-11-11 11:39:30 +09003638 if (ret < 0)
3639 return ret;
Damien Le Moal178053e2016-10-28 17:45:05 +09003640
Aravind Rameshde881df2020-07-16 18:26:56 +05303641 if (!rep_zone_arg.zone_cap_mismatch) {
3642 kfree(FDEV(devi).zone_capacity_blocks);
3643 FDEV(devi).zone_capacity_blocks = NULL;
3644 }
3645
Christoph Hellwigd4100352019-11-11 11:39:30 +09003646 return 0;
Damien Le Moal178053e2016-10-28 17:45:05 +09003647}
3648#endif
3649
Gu Zheng9076a752013-10-14 18:47:11 +08003650/*
3651 * Read f2fs raw super block.
Shawn Lin2b39e902016-02-17 08:59:01 +08003652 * Because we have two copies of super block, so read both of them
3653 * to get the first valid one. If any one of them is broken, we pass
3654 * them recovery flag back to the caller.
Gu Zheng9076a752013-10-14 18:47:11 +08003655 */
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003656static int read_raw_super_block(struct f2fs_sb_info *sbi,
Gu Zheng9076a752013-10-14 18:47:11 +08003657 struct f2fs_super_block **raw_super,
Chao Yue8240f62015-12-15 17:19:26 +08003658 int *valid_super_block, int *recovery)
majianpeng14d7e9d2013-02-01 19:07:03 +08003659{
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003660 struct super_block *sb = sbi->sb;
Shawn Lin2b39e902016-02-17 08:59:01 +08003661 int block;
Chao Yue8240f62015-12-15 17:19:26 +08003662 struct buffer_head *bh;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003663 struct f2fs_super_block *super;
hujianyangda554e42015-05-21 14:42:53 +08003664 int err = 0;
majianpeng14d7e9d2013-02-01 19:07:03 +08003665
Yunlei Heb39f0de2015-12-15 17:17:20 +08003666 super = kzalloc(sizeof(struct f2fs_super_block), GFP_KERNEL);
3667 if (!super)
3668 return -ENOMEM;
Shawn Lin2b39e902016-02-17 08:59:01 +08003669
3670 for (block = 0; block < 2; block++) {
3671 bh = sb_bread(sb, block);
3672 if (!bh) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003673 f2fs_err(sbi, "Unable to read %dth superblock",
3674 block + 1);
Shawn Lin2b39e902016-02-17 08:59:01 +08003675 err = -EIO;
Chengguang Xu via Linux-f2fs-develed3520422019-09-27 09:35:48 +08003676 *recovery = 1;
Shawn Lin2b39e902016-02-17 08:59:01 +08003677 continue;
3678 }
majianpeng14d7e9d2013-02-01 19:07:03 +08003679
Shawn Lin2b39e902016-02-17 08:59:01 +08003680 /* sanity checking of raw super */
Icenowy Zheng38fb6d02019-07-25 11:08:52 +08003681 err = sanity_check_raw_super(sbi, bh);
3682 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003683 f2fs_err(sbi, "Can't find valid F2FS filesystem in %dth superblock",
3684 block + 1);
Shawn Lin2b39e902016-02-17 08:59:01 +08003685 brelse(bh);
Chengguang Xu via Linux-f2fs-develed3520422019-09-27 09:35:48 +08003686 *recovery = 1;
Shawn Lin2b39e902016-02-17 08:59:01 +08003687 continue;
3688 }
3689
3690 if (!*raw_super) {
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003691 memcpy(super, bh->b_data + F2FS_SUPER_OFFSET,
3692 sizeof(*super));
Shawn Lin2b39e902016-02-17 08:59:01 +08003693 *valid_super_block = block;
3694 *raw_super = super;
3695 }
Chao Yue8240f62015-12-15 17:19:26 +08003696 brelse(bh);
Shawn Lin2b39e902016-02-17 08:59:01 +08003697 }
3698
hujianyangda554e42015-05-21 14:42:53 +08003699 /* No valid superblock */
Shawn Lin2b39e902016-02-17 08:59:01 +08003700 if (!*raw_super)
Denis Efremov742532d2020-06-10 01:14:46 +03003701 kfree(super);
Shawn Lin2b39e902016-02-17 08:59:01 +08003702 else
3703 err = 0;
hujianyangda554e42015-05-21 14:42:53 +08003704
Shawn Lin2b39e902016-02-17 08:59:01 +08003705 return err;
majianpeng14d7e9d2013-02-01 19:07:03 +08003706}
3707
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003708int f2fs_commit_super(struct f2fs_sb_info *sbi, bool recover)
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003709{
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003710 struct buffer_head *bh;
Junling Zhengd440c522018-09-28 20:25:56 +08003711 __u32 crc = 0;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003712 int err;
3713
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003714 if ((recover && f2fs_readonly(sbi->sb)) ||
3715 bdev_read_only(sbi->sb->s_bdev)) {
3716 set_sbi_flag(sbi, SBI_NEED_SB_WRITE);
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07003717 return -EROFS;
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003718 }
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07003719
Junling Zhengd440c522018-09-28 20:25:56 +08003720 /* we should update superblock crc here */
Chao Yu7beb01f2018-10-24 18:34:26 +08003721 if (!recover && f2fs_sb_has_sb_chksum(sbi)) {
Junling Zhengd440c522018-09-28 20:25:56 +08003722 crc = f2fs_crc32(sbi, F2FS_RAW_SUPER(sbi),
3723 offsetof(struct f2fs_super_block, crc));
3724 F2FS_RAW_SUPER(sbi)->crc = cpu_to_le32(crc);
3725 }
3726
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003727 /* write back-up superblock first */
Sheng Yong0964fc12018-01-29 19:13:15 +08003728 bh = sb_bread(sbi->sb, sbi->valid_super_block ? 0 : 1);
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003729 if (!bh)
3730 return -EIO;
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003731 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003732 brelse(bh);
Chao Yuc5bda1c2015-06-08 13:28:03 +08003733
3734 /* if we are in recovery path, skip writing valid superblock */
3735 if (recover || err)
Jaegeuk Kim5d909cd2015-12-07 10:16:58 -08003736 return err;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003737
Chao Yue8240f62015-12-15 17:19:26 +08003738 /* write current valid superblock */
Sheng Yong0964fc12018-01-29 19:13:15 +08003739 bh = sb_bread(sbi->sb, sbi->valid_super_block);
Jaegeuk Kimfd694732016-03-20 15:33:20 -07003740 if (!bh)
3741 return -EIO;
3742 err = __f2fs_commit_super(bh, F2FS_RAW_SUPER(sbi));
3743 brelse(bh);
3744 return err;
Jaegeuk Kim26d815ad2015-04-20 18:49:51 -07003745}
3746
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003747static int f2fs_scan_devices(struct f2fs_sb_info *sbi)
3748{
3749 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003750 unsigned int max_devices = MAX_DEVICES;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003751 int i;
3752
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003753 /* Initialize single device information */
3754 if (!RDEV(0).path[0]) {
3755 if (!bdev_is_zoned(sbi->sb->s_bdev))
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003756 return 0;
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003757 max_devices = 1;
3758 }
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003759
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003760 /*
3761 * Initialize multiple devices information, or single
3762 * zoned block device information.
3763 */
Kees Cook026f0502018-06-12 14:28:23 -07003764 sbi->devs = f2fs_kzalloc(sbi,
3765 array_size(max_devices,
3766 sizeof(struct f2fs_dev_info)),
3767 GFP_KERNEL);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003768 if (!sbi->devs)
3769 return -ENOMEM;
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003770
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003771 for (i = 0; i < max_devices; i++) {
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003772
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003773 if (i > 0 && !RDEV(i).path[0])
3774 break;
3775
3776 if (max_devices == 1) {
3777 /* Single zoned block device mount */
3778 FDEV(0).bdev =
3779 blkdev_get_by_dev(sbi->sb->s_bdev->bd_dev,
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003780 sbi->sb->s_mode, sbi->sb->s_type);
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003781 } else {
3782 /* Multi-device mount */
3783 memcpy(FDEV(i).path, RDEV(i).path, MAX_PATH_LEN);
3784 FDEV(i).total_segments =
3785 le32_to_cpu(RDEV(i).total_segments);
3786 if (i == 0) {
3787 FDEV(i).start_blk = 0;
3788 FDEV(i).end_blk = FDEV(i).start_blk +
3789 (FDEV(i).total_segments <<
3790 sbi->log_blocks_per_seg) - 1 +
3791 le32_to_cpu(raw_super->segment0_blkaddr);
3792 } else {
3793 FDEV(i).start_blk = FDEV(i - 1).end_blk + 1;
3794 FDEV(i).end_blk = FDEV(i).start_blk +
3795 (FDEV(i).total_segments <<
3796 sbi->log_blocks_per_seg) - 1;
3797 }
3798 FDEV(i).bdev = blkdev_get_by_path(FDEV(i).path,
3799 sbi->sb->s_mode, sbi->sb->s_type);
3800 }
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003801 if (IS_ERR(FDEV(i).bdev))
3802 return PTR_ERR(FDEV(i).bdev);
3803
3804 /* to release errored devices */
3805 sbi->s_ndevs = i + 1;
3806
3807#ifdef CONFIG_BLK_DEV_ZONED
3808 if (bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HM &&
Chao Yu7beb01f2018-10-24 18:34:26 +08003809 !f2fs_sb_has_blkzoned(sbi)) {
Joe Perches833dcd32021-05-26 13:05:36 -07003810 f2fs_err(sbi, "Zoned block device feature not enabled");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003811 return -EINVAL;
3812 }
3813 if (bdev_zoned_model(FDEV(i).bdev) != BLK_ZONED_NONE) {
3814 if (init_blkz_info(sbi, i)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003815 f2fs_err(sbi, "Failed to initialize F2FS blkzone information");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003816 return -EINVAL;
3817 }
Masato Suzuki7bb3a372017-02-27 20:52:49 +09003818 if (max_devices == 1)
3819 break;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003820 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x (zone: %s)",
3821 i, FDEV(i).path,
3822 FDEV(i).total_segments,
3823 FDEV(i).start_blk, FDEV(i).end_blk,
3824 bdev_zoned_model(FDEV(i).bdev) == BLK_ZONED_HA ?
3825 "Host-aware" : "Host-managed");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003826 continue;
3827 }
3828#endif
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003829 f2fs_info(sbi, "Mount Device [%2d]: %20s, %8u, %8x - %8x",
3830 i, FDEV(i).path,
3831 FDEV(i).total_segments,
3832 FDEV(i).start_blk, FDEV(i).end_blk);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003833 }
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003834 f2fs_info(sbi,
3835 "IO Block Size: %8d KB", F2FS_IO_SIZE_KB(sbi));
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07003836 return 0;
3837}
3838
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003839static int f2fs_setup_casefold(struct f2fs_sb_info *sbi)
3840{
3841#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07003842 if (f2fs_sb_has_casefold(sbi) && !sbi->sb->s_encoding) {
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003843 const struct f2fs_sb_encodings *encoding_info;
3844 struct unicode_map *encoding;
3845 __u16 encoding_flags;
3846
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003847 if (f2fs_sb_read_encoding(sbi->raw_super, &encoding_info,
3848 &encoding_flags)) {
3849 f2fs_err(sbi,
3850 "Encoding requested by superblock is unknown");
3851 return -EINVAL;
3852 }
3853
3854 encoding = utf8_load(encoding_info->version);
3855 if (IS_ERR(encoding)) {
3856 f2fs_err(sbi,
3857 "can't mount with superblock charset: %s-%s "
3858 "not supported by the kernel. flags: 0x%x.",
3859 encoding_info->name, encoding_info->version,
3860 encoding_flags);
3861 return PTR_ERR(encoding);
3862 }
3863 f2fs_info(sbi, "Using encoding defined by superblock: "
3864 "%s-%s with flags 0x%hx", encoding_info->name,
3865 encoding_info->version?:"\b", encoding_flags);
3866
Daniel Rosenbergeca48732020-07-08 02:12:36 -07003867 sbi->sb->s_encoding = encoding;
3868 sbi->sb->s_encoding_flags = encoding_flags;
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003869 }
3870#else
3871 if (f2fs_sb_has_casefold(sbi)) {
3872 f2fs_err(sbi, "Filesystem with casefold feature cannot be mounted without CONFIG_UNICODE");
3873 return -EINVAL;
3874 }
3875#endif
3876 return 0;
3877}
3878
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003879static void f2fs_tuning_parameters(struct f2fs_sb_info *sbi)
3880{
3881 struct f2fs_sm_info *sm_i = SM_I(sbi);
3882
3883 /* adjust parameters according to the volume size */
3884 if (sm_i->main_segments <= SMALL_VOLUME_SEGMENTS) {
Chao Yu63189b72018-03-08 14:22:56 +08003885 F2FS_OPTION(sbi).alloc_mode = ALLOC_MODE_REUSE;
Chao Yu4f993262021-08-03 08:15:43 +08003886 if (f2fs_block_unit_discard(sbi))
3887 sm_i->dcc_info->discard_granularity = 1;
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003888 sm_i->ipu_policy = 1 << F2FS_IPU_FORCE;
3889 }
Chao Yu4cac90d2018-06-11 18:02:01 +08003890
3891 sbi->readdir_ra = 1;
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08003892}
3893
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003894static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
3895{
3896 struct f2fs_sb_info *sbi;
hujianyangda554e42015-05-21 14:42:53 +08003897 struct f2fs_super_block *raw_super;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003898 struct inode *root;
Sheng Yong99e3e852016-05-11 17:08:14 +08003899 int err;
Chao Yuaa2c8c42019-02-19 16:23:53 +08003900 bool skip_recovery = false, need_fsck = false;
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003901 char *options = NULL;
Chao Yue8240f62015-12-15 17:19:26 +08003902 int recovery, i, valid_super_block;
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08003903 struct curseg_info *seg_i;
Chao Yuaa2c8c42019-02-19 16:23:53 +08003904 int retry_cnt = 1;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003905
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07003906try_onemore:
hujianyangda554e42015-05-21 14:42:53 +08003907 err = -EINVAL;
3908 raw_super = NULL;
Chao Yue8240f62015-12-15 17:19:26 +08003909 valid_super_block = -1;
hujianyangda554e42015-05-21 14:42:53 +08003910 recovery = 0;
3911
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003912 /* allocate memory for f2fs-specific super block info */
3913 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
3914 if (!sbi)
3915 return -ENOMEM;
3916
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003917 sbi->sb = sb;
3918
Keith Mok43b65732016-03-02 12:04:24 -08003919 /* Load the checksum driver */
3920 sbi->s_chksum_driver = crypto_alloc_shash("crc32", 0, 0);
3921 if (IS_ERR(sbi->s_chksum_driver)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003922 f2fs_err(sbi, "Cannot load crc32 driver.");
Keith Mok43b65732016-03-02 12:04:24 -08003923 err = PTR_ERR(sbi->s_chksum_driver);
3924 sbi->s_chksum_driver = NULL;
3925 goto free_sbi;
3926 }
3927
Namjae Jeonff9234a2013-01-12 14:41:13 +09003928 /* set a block size */
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09003929 if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08003930 f2fs_err(sbi, "unable to set blocksize");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003931 goto free_sbi;
Namjae Jeona07ef782012-12-30 14:52:05 +09003932 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003933
Jaegeuk Kimdf728b02016-03-23 17:05:27 -07003934 err = read_raw_super_block(sbi, &raw_super, &valid_super_block,
Chao Yue8240f62015-12-15 17:19:26 +08003935 &recovery);
Gu Zheng9076a752013-10-14 18:47:11 +08003936 if (err)
3937 goto free_sbi;
3938
Gu Zheng5fb08372013-06-07 14:16:53 +08003939 sb->s_fs_info = sbi;
Jaegeuk Kim52763a42016-06-13 09:47:48 -07003940 sbi->raw_super = raw_super;
3941
Chao Yu704956e2017-07-31 20:19:09 +08003942 /* precompute checksum seed for metadata */
Chao Yu7beb01f2018-10-24 18:34:26 +08003943 if (f2fs_sb_has_inode_chksum(sbi))
Chao Yu704956e2017-07-31 20:19:09 +08003944 sbi->s_chksum_seed = f2fs_chksum(sbi, ~0, raw_super->uuid,
3945 sizeof(raw_super->uuid));
3946
Yunlei He498c5e92015-05-07 18:11:37 +08003947 default_options(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003948 /* parse mount options */
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003949 options = kstrdup((const char *)data, GFP_KERNEL);
3950 if (data && !options) {
3951 err = -ENOMEM;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003952 goto free_sb_buf;
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003953 }
3954
Eric Biggersed318a62020-05-12 16:32:50 -07003955 err = parse_options(sb, options, false);
Jaegeuk Kimdabc4a52015-01-23 17:41:39 -08003956 if (err)
3957 goto free_options;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003958
Chengguang Xu6d1451b2021-01-13 13:21:54 +08003959 sb->s_maxbytes = max_file_blocks(NULL) <<
Chao Yue0afc4d2015-12-31 14:35:37 +08003960 le32_to_cpu(raw_super->log_blocksize);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003961 sb->s_max_links = F2FS_LINK_MAX;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003962
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07003963 err = f2fs_setup_casefold(sbi);
3964 if (err)
3965 goto free_options;
3966
Chao Yu0abd6752017-07-09 00:13:07 +08003967#ifdef CONFIG_QUOTA
3968 sb->dq_op = &f2fs_quota_operations;
Jaegeuk Kimbc88ac92019-05-20 16:17:56 -07003969 sb->s_qcop = &f2fs_quotactl_ops;
Chao Yu5c571322017-07-26 00:01:41 +08003970 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
Chao Yu292c196a2017-11-16 16:59:14 +08003971
Chao Yu7beb01f2018-10-24 18:34:26 +08003972 if (f2fs_sb_has_quota_ino(sbi)) {
Chao Yu292c196a2017-11-16 16:59:14 +08003973 for (i = 0; i < MAXQUOTAS; i++) {
3974 if (f2fs_qf_ino(sbi->sb, i))
3975 sbi->nquota_files++;
3976 }
3977 }
Chao Yu0abd6752017-07-09 00:13:07 +08003978#endif
3979
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003980 sb->s_op = &f2fs_sops;
Chandan Rajendra643fa962018-12-12 15:20:12 +05303981#ifdef CONFIG_FS_ENCRYPTION
Jaegeuk Kim0b81d072015-05-15 16:26:10 -07003982 sb->s_cop = &f2fs_cryptops;
Eric Biggersffcc41822017-10-09 12:15:38 -07003983#endif
Eric Biggers95ae2512019-07-22 09:26:24 -07003984#ifdef CONFIG_FS_VERITY
3985 sb->s_vop = &f2fs_verityops;
3986#endif
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003987 sb->s_xattr = f2fs_xattr_handlers;
3988 sb->s_export_op = &f2fs_export_ops;
3989 sb->s_magic = F2FS_SUPER_MAGIC;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003990 sb->s_time_gran = 1;
Linus Torvalds1751e8a2017-11-27 13:05:09 -08003991 sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
3992 (test_opt(sbi, POSIX_ACL) ? SB_POSIXACL : 0);
Christoph Hellwig85787092017-05-10 15:06:33 +02003993 memcpy(&sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
Yufen Yu578c6472018-01-09 19:33:39 +08003994 sb->s_iflags |= SB_I_CGROUPWB;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09003995
3996 /* init f2fs-specific super block info */
Chao Yue8240f62015-12-15 17:19:26 +08003997 sbi->valid_super_block = valid_super_block;
Chao Yufb24fea2020-01-14 19:36:50 +08003998 init_rwsem(&sbi->gc_lock);
Jaegeuk Kim853137c2018-08-09 17:53:34 -07003999 mutex_init(&sbi->writepages);
Sahitya Tummala87699182020-11-23 10:58:32 +05304000 init_rwsem(&sbi->cp_global_sem);
Chao Yub3582c62014-07-03 18:58:39 +08004001 init_rwsem(&sbi->node_write);
Yunlei He59c90812017-03-13 20:22:18 +08004002 init_rwsem(&sbi->node_change);
Jaegeuk Kim315df832015-08-11 12:45:39 -07004003
4004 /* disallow all the data/node/meta page writes */
4005 set_sbi_flag(sbi, SBI_POR_DOING);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004006 spin_lock_init(&sbi->stat_lock);
Jaegeuk Kim971767c2013-11-18 17:16:17 +09004007
Jaegeuk Kim458e6192013-12-11 13:54:01 +09004008 for (i = 0; i < NR_PAGE_TYPE; i++) {
Yi Zhuang5f029c02021-04-06 09:47:35 +08004009 int n = (i == META) ? 1 : NR_TEMP_TYPE;
Jaegeuk Kima912b542017-05-10 11:18:25 -07004010 int j;
4011
Kees Cookc8606592018-06-12 14:28:16 -07004012 sbi->write_io[i] =
4013 f2fs_kmalloc(sbi,
4014 array_size(n,
4015 sizeof(struct f2fs_bio_info)),
4016 GFP_KERNEL);
Christophe JAILLETb63def92017-06-11 09:21:11 +02004017 if (!sbi->write_io[i]) {
4018 err = -ENOMEM;
Chao Yu0b2103e82018-09-05 14:54:01 +08004019 goto free_bio_info;
Christophe JAILLETb63def92017-06-11 09:21:11 +02004020 }
Jaegeuk Kima912b542017-05-10 11:18:25 -07004021
4022 for (j = HOT; j < n; j++) {
4023 init_rwsem(&sbi->write_io[i][j].io_rwsem);
4024 sbi->write_io[i][j].sbi = sbi;
4025 sbi->write_io[i][j].bio = NULL;
Chao Yufb830fc2017-05-19 23:37:01 +08004026 spin_lock_init(&sbi->write_io[i][j].io_lock);
4027 INIT_LIST_HEAD(&sbi->write_io[i][j].io_list);
Chao Yu0b20fce2019-09-30 18:53:25 +08004028 INIT_LIST_HEAD(&sbi->write_io[i][j].bio_list);
4029 init_rwsem(&sbi->write_io[i][j].bio_list_lock);
Jaegeuk Kima912b542017-05-10 11:18:25 -07004030 }
Jaegeuk Kim458e6192013-12-11 13:54:01 +09004031 }
Jaegeuk Kim971767c2013-11-18 17:16:17 +09004032
Jaegeuk Kimb873b792016-08-04 11:38:25 -07004033 init_rwsem(&sbi->cp_rwsem);
Jaegeuk Kimdb6ec532019-05-29 10:58:45 -07004034 init_rwsem(&sbi->quota_sem);
Changman Leefb51b5e2013-11-07 12:48:25 +09004035 init_waitqueue_head(&sbi->cp_wait);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004036 init_sb_info(sbi);
4037
Daeho Jeong52118742021-08-19 20:52:28 -07004038 err = f2fs_init_iostat(sbi);
4039 if (err)
4040 goto free_bio_info;
4041
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07004042 err = init_percpu_info(sbi);
4043 if (err)
Daeho Jeonga4b68172021-08-20 15:29:09 -07004044 goto free_iostat;
Jaegeuk Kim523be8a2016-05-13 12:36:58 -07004045
Chao Yuc72db712019-07-12 16:55:42 +08004046 if (F2FS_IO_ALIGNED(sbi)) {
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08004047 sbi->write_io_dummy =
Chao Yua3ebfe42017-02-27 18:43:13 +08004048 mempool_create_page_pool(2 * (F2FS_IO_SIZE(sbi) - 1), 0);
Chao Yu1727f312017-06-12 09:44:27 +08004049 if (!sbi->write_io_dummy) {
4050 err = -ENOMEM;
Chao Yud7997e62018-01-17 16:31:35 +08004051 goto free_percpu;
Chao Yu1727f312017-06-12 09:44:27 +08004052 }
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08004053 }
4054
Chao Yua9991502020-02-25 18:17:10 +08004055 /* init per sbi slab cache */
4056 err = f2fs_init_xattr_caches(sbi);
4057 if (err)
4058 goto free_io_dummy;
Chao Yu31083032020-09-14 17:05:13 +08004059 err = f2fs_init_page_array_cache(sbi);
4060 if (err)
4061 goto free_xattr_cache;
Chao Yua9991502020-02-25 18:17:10 +08004062
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004063 /* get an inode for meta space */
4064 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
4065 if (IS_ERR(sbi->meta_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004066 f2fs_err(sbi, "Failed to read F2FS meta data inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004067 err = PTR_ERR(sbi->meta_inode);
Chao Yu31083032020-09-14 17:05:13 +08004068 goto free_page_array_cache;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004069 }
4070
Chao Yu4d57b862018-05-30 00:20:41 +08004071 err = f2fs_get_valid_checkpoint(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004072 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004073 f2fs_err(sbi, "Failed to get valid F2FS checkpoint");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004074 goto free_meta_inode;
Namjae Jeona07ef782012-12-30 14:52:05 +09004075 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004076
Chao Yuaf033b22018-09-20 20:05:00 +08004077 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_QUOTA_NEED_FSCK_FLAG))
4078 set_sbi_flag(sbi, SBI_QUOTA_NEED_REPAIR);
Jaegeuk Kimdb610a62019-01-24 17:48:38 -08004079 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_DISABLED_QUICK_FLAG)) {
4080 set_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
4081 sbi->interval_time[DISABLE_TIME] = DEF_DISABLE_QUICK_INTERVAL;
4082 }
Chao Yuaf033b22018-09-20 20:05:00 +08004083
Qiuyang Sun04f0b2e2019-06-05 11:33:25 +08004084 if (__is_set_ckpt_flags(F2FS_CKPT(sbi), CP_FSCK_FLAG))
4085 set_sbi_flag(sbi, SBI_NEED_FSCK);
4086
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07004087 /* Initialize device list */
4088 err = f2fs_scan_devices(sbi);
4089 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004090 f2fs_err(sbi, "Failed to find devices");
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07004091 goto free_devices;
4092 }
4093
Chao Yu4c8ff702019-11-01 18:07:14 +08004094 err = f2fs_init_post_read_wq(sbi);
4095 if (err) {
4096 f2fs_err(sbi, "Failed to initialize post read workqueue");
4097 goto free_devices;
4098 }
4099
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004100 sbi->total_valid_node_count =
4101 le32_to_cpu(sbi->ckpt->valid_node_count);
Jaegeuk Kim513c5f32016-05-16 11:42:32 -07004102 percpu_counter_set(&sbi->total_valid_inode_count,
4103 le32_to_cpu(sbi->ckpt->valid_inode_count));
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004104 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
4105 sbi->total_valid_block_count =
4106 le64_to_cpu(sbi->ckpt->valid_block_count);
4107 sbi->last_valid_block_count = sbi->total_valid_block_count;
Chao Yudaeb4332017-06-26 16:24:41 +08004108 sbi->reserved_blocks = 0;
Yunlong Song80d42142017-10-27 20:45:05 +08004109 sbi->current_reserved_blocks = 0;
Jaegeuk Kim7e65be42017-12-27 15:05:52 -08004110 limit_reserve_root(sbi);
Jaegeuk Kim1ae18f72020-05-15 17:20:50 -07004111 adjust_unusable_cap_perc(sbi);
Jaegeuk Kim41382ec2016-05-16 11:06:50 -07004112
Chao Yuc227f912015-12-16 13:09:20 +08004113 for (i = 0; i < NR_INODE_TYPE; i++) {
4114 INIT_LIST_HEAD(&sbi->inode_list[i]);
4115 spin_lock_init(&sbi->inode_lock[i]);
4116 }
Chao Yu040d2bb2019-05-20 17:36:59 +08004117 mutex_init(&sbi->flush_lock);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004118
Chao Yu4d57b862018-05-30 00:20:41 +08004119 f2fs_init_extent_cache_info(sbi);
Chao Yu1dcc3362015-02-05 17:57:31 +08004120
Chao Yu4d57b862018-05-30 00:20:41 +08004121 f2fs_init_ino_entry_info(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004122
Chao Yu50fa53e2018-08-02 23:03:19 +08004123 f2fs_init_fsync_node_info(sbi);
4124
Daeho Jeong261eeb92021-01-19 09:00:42 +09004125 /* setup checkpoint request control and start checkpoint issue thread */
4126 f2fs_init_ckpt_req_control(sbi);
Chao Yu3f7070b2021-03-17 17:56:03 +08004127 if (!f2fs_readonly(sb) && !test_opt(sbi, DISABLE_CHECKPOINT) &&
Daeho Jeong261eeb92021-01-19 09:00:42 +09004128 test_opt(sbi, MERGE_CHECKPOINT)) {
4129 err = f2fs_start_ckpt_thread(sbi);
4130 if (err) {
4131 f2fs_err(sbi,
4132 "Failed to start F2FS issue_checkpoint_thread (%d)",
4133 err);
4134 goto stop_ckpt_thread;
4135 }
4136 }
4137
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004138 /* setup f2fs internal modules */
Chao Yu4d57b862018-05-30 00:20:41 +08004139 err = f2fs_build_segment_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004140 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004141 f2fs_err(sbi, "Failed to initialize F2FS segment manager (%d)",
4142 err);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004143 goto free_sm;
Namjae Jeona07ef782012-12-30 14:52:05 +09004144 }
Chao Yu4d57b862018-05-30 00:20:41 +08004145 err = f2fs_build_node_manager(sbi);
Namjae Jeona07ef782012-12-30 14:52:05 +09004146 if (err) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004147 f2fs_err(sbi, "Failed to initialize F2FS node manager (%d)",
4148 err);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004149 goto free_nm;
Namjae Jeona07ef782012-12-30 14:52:05 +09004150 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004151
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004152 /* For write statistics */
Chao Yu3a0a9cb2020-11-27 21:20:06 +08004153 sbi->sectors_written_start = f2fs_get_sectors_written(sbi);
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004154
4155 /* Read accumulated write IO statistics if exists */
4156 seg_i = CURSEG_I(sbi, CURSEG_HOT_NODE);
4157 if (__exist_node_summaries(sbi))
4158 sbi->kbytes_written =
Shuoran Liub2dde6f2016-03-29 18:00:15 +08004159 le64_to_cpu(seg_i->journal->info.kbytes_written);
Shuoran Liu8f1dbbb2016-01-27 09:57:30 +08004160
Chao Yu4d57b862018-05-30 00:20:41 +08004161 f2fs_build_gc_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004162
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304163 err = f2fs_build_stats(sbi);
4164 if (err)
4165 goto free_nm;
4166
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004167 /* get an inode for node space */
4168 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
4169 if (IS_ERR(sbi->node_inode)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004170 f2fs_err(sbi, "Failed to read node inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004171 err = PTR_ERR(sbi->node_inode);
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304172 goto free_stats;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004173 }
4174
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004175 /* read root inode and dentry */
4176 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
4177 if (IS_ERR(root)) {
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004178 f2fs_err(sbi, "Failed to read root inode");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004179 err = PTR_ERR(root);
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304180 goto free_node_inode;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004181 }
Chao Yubcbfbd62018-06-29 00:19:25 +08004182 if (!S_ISDIR(root->i_mode) || !root->i_blocks ||
4183 !root->i_size || !root->i_nlink) {
Chao Yu9d847952014-07-25 12:55:09 +08004184 iput(root);
Chao Yu8f99a942013-11-28 15:43:43 +08004185 err = -EINVAL;
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304186 goto free_node_inode;
Chao Yu8f99a942013-11-28 15:43:43 +08004187 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004188
4189 sb->s_root = d_make_root(root); /* allocate root dentry */
4190 if (!sb->s_root) {
4191 err = -ENOMEM;
Chengguang Xu025cdb162019-01-23 15:49:44 +08004192 goto free_node_inode;
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004193 }
4194
Chao Yu6ce19af2021-05-20 19:51:50 +08004195 err = f2fs_init_compress_inode(sbi);
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09004196 if (err)
Chao Yua3981012017-06-14 17:39:46 +08004197 goto free_root_inode;
Namjae Jeonb59d0ba2013-08-04 23:09:40 +09004198
Chao Yu6ce19af2021-05-20 19:51:50 +08004199 err = f2fs_register_sysfs(sbi);
4200 if (err)
4201 goto free_compress_inode;
4202
Jaegeuk Kimea676732017-10-06 09:14:28 -07004203#ifdef CONFIG_QUOTA
Sheng Yong76cf05d2018-07-26 19:24:25 +08004204 /* Enable quota usage during mount */
Chao Yu7beb01f2018-10-24 18:34:26 +08004205 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb)) {
Jaegeuk Kimea676732017-10-06 09:14:28 -07004206 err = f2fs_enable_quotas(sb);
Jaegeuk Kim730746c2018-10-02 17:20:58 -07004207 if (err)
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004208 f2fs_err(sbi, "Cannot turn on quotas: error %d", err);
Jaegeuk Kimea676732017-10-06 09:14:28 -07004209 }
4210#endif
Chao Yu7a88ddb2020-02-27 19:30:05 +08004211 /* if there are any orphan inodes, free them */
Chao Yu4d57b862018-05-30 00:20:41 +08004212 err = f2fs_recover_orphan_inodes(sbi);
Chao Yu4b2414d2017-08-08 10:54:31 +08004213 if (err)
Jaegeuk Kimea676732017-10-06 09:14:28 -07004214 goto free_meta;
Chao Yu4b2414d2017-08-08 10:54:31 +08004215
Daniel Rosenberg43549942018-08-20 19:21:43 -07004216 if (unlikely(is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)))
Chao Yuaa2c8c42019-02-19 16:23:53 +08004217 goto reset_checkpoint;
Daniel Rosenberg43549942018-08-20 19:21:43 -07004218
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004219 /* recover fsynced data */
Chao Yua9117ec2020-02-14 17:45:11 +08004220 if (!test_opt(sbi, DISABLE_ROLL_FORWARD) &&
4221 !test_opt(sbi, NORECOVERY)) {
Jaegeuk Kim081d78c2015-01-23 19:16:59 -08004222 /*
4223 * mount should be failed, when device has readonly mode, and
4224 * previous checkpoint was not done by clean system shutdown.
4225 */
Chao Yub61af312019-04-22 20:22:37 +08004226 if (f2fs_hw_is_readonly(sbi)) {
Chao Yu23738e72021-03-31 11:16:32 +08004227 if (!is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
4228 err = f2fs_recover_fsync_data(sbi, true);
4229 if (err > 0) {
4230 err = -EROFS;
4231 f2fs_err(sbi, "Need to recover fsync data, but "
4232 "write access unavailable, please try "
4233 "mount w/ disable_roll_forward or norecovery");
4234 }
4235 if (err < 0)
4236 goto free_meta;
4237 }
4238 f2fs_info(sbi, "write access unavailable, skipping recovery");
Chao Yub61af312019-04-22 20:22:37 +08004239 goto reset_checkpoint;
Jaegeuk Kim081d78c2015-01-23 19:16:59 -08004240 }
Chao Yu2adc3502015-03-16 21:08:44 +08004241
4242 if (need_fsck)
4243 set_sbi_flag(sbi, SBI_NEED_FSCK);
4244
Chao Yuaa2c8c42019-02-19 16:23:53 +08004245 if (skip_recovery)
4246 goto reset_checkpoint;
Jaegeuk Kima468f0e2016-09-19 17:55:10 -07004247
Chao Yu4d57b862018-05-30 00:20:41 +08004248 err = f2fs_recover_fsync_data(sbi, false);
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004249 if (err < 0) {
Chao Yuaa2c8c42019-02-19 16:23:53 +08004250 if (err != -ENOMEM)
4251 skip_recovery = true;
Chao Yu2adc3502015-03-16 21:08:44 +08004252 need_fsck = true;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004253 f2fs_err(sbi, "Cannot recover all fsync data errno=%d",
4254 err);
Chao Yu4b2414d2017-08-08 10:54:31 +08004255 goto free_meta;
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004256 }
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004257 } else {
Chao Yu4d57b862018-05-30 00:20:41 +08004258 err = f2fs_recover_fsync_data(sbi, true);
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004259
4260 if (!f2fs_readonly(sb) && err > 0) {
4261 err = -EINVAL;
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004262 f2fs_err(sbi, "Need to recover fsync data");
Jaegeuk Kimea676732017-10-06 09:14:28 -07004263 goto free_meta;
Jaegeuk Kim6781eab2016-03-23 16:12:58 -07004264 }
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004265 }
Shin'ichiro Kawasakid508c942019-12-09 19:44:45 +09004266
4267 /*
4268 * If the f2fs is not readonly and fsync data recovery succeeds,
4269 * check zoned block devices' write pointer consistency.
4270 */
4271 if (!err && !f2fs_readonly(sb) && f2fs_sb_has_blkzoned(sbi)) {
4272 err = f2fs_check_write_pointer(sbi);
4273 if (err)
4274 goto free_meta;
4275 }
4276
Chao Yuaa2c8c42019-02-19 16:23:53 +08004277reset_checkpoint:
Chao Yu093749e2020-08-04 21:14:49 +08004278 f2fs_init_inmem_curseg(sbi);
4279
Chao Yu4d57b862018-05-30 00:20:41 +08004280 /* f2fs_recover_fsync_data() cleared this already */
Jaegeuk Kim315df832015-08-11 12:45:39 -07004281 clear_sbi_flag(sbi, SBI_POR_DOING);
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004282
Daniel Rosenberg43549942018-08-20 19:21:43 -07004283 if (test_opt(sbi, DISABLE_CHECKPOINT)) {
4284 err = f2fs_disable_checkpoint(sbi);
4285 if (err)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004286 goto sync_free_meta;
Daniel Rosenberg43549942018-08-20 19:21:43 -07004287 } else if (is_set_ckpt_flags(sbi, CP_DISABLED_FLAG)) {
4288 f2fs_enable_checkpoint(sbi);
4289 }
4290
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004291 /*
4292 * If filesystem is not mounted as read-only then
4293 * do start the gc_thread.
4294 */
Chao Yu5911d2d2021-03-27 17:57:06 +08004295 if ((F2FS_OPTION(sbi).bggc_mode != BGGC_MODE_OFF ||
4296 test_opt(sbi, GC_MERGE)) && !f2fs_readonly(sb)) {
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004297 /* After POR, we can run background GC thread.*/
Chao Yu4d57b862018-05-30 00:20:41 +08004298 err = f2fs_start_gc_thread(sbi);
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004299 if (err)
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004300 goto sync_free_meta;
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004301 }
Jaegeuk Kim52225952018-12-13 18:38:33 -08004302 kvfree(options);
hujianyangda554e42015-05-21 14:42:53 +08004303
4304 /* recover broken superblock */
Jaegeuk Kimf2353d72016-03-23 10:42:01 -07004305 if (recovery) {
Chao Yu41214b32016-02-22 18:33:20 +08004306 err = f2fs_commit_super(sbi, true);
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004307 f2fs_info(sbi, "Try to recover %dth superblock, ret: %d",
4308 sbi->valid_super_block ? 1 : 2, err);
hujianyangda554e42015-05-21 14:42:53 +08004309 }
4310
Chao Yubae01ed2017-11-30 19:28:20 +08004311 f2fs_join_shrinker(sbi);
4312
Jaegeuk Kim84b89e52018-02-22 14:09:30 -08004313 f2fs_tuning_parameters(sbi);
4314
Joe Perchesdcbb4c12019-06-18 17:48:42 +08004315 f2fs_notice(sbi, "Mounted with checkpoint version = %llx",
4316 cur_cp_version(F2FS_CKPT(sbi)));
Jaegeuk Kim6beceb52016-01-08 15:51:50 -08004317 f2fs_update_time(sbi, CP_TIME);
Jaegeuk Kimd0239e12016-01-08 16:57:48 -08004318 f2fs_update_time(sbi, REQ_TIME);
Jaegeuk Kimdb610a62019-01-24 17:48:38 -08004319 clear_sbi_flag(sbi, SBI_CP_DISABLED_QUICK);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004320 return 0;
Jaegeuk Kim6437d1b2014-02-19 18:23:32 +09004321
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004322sync_free_meta:
4323 /* safe to flush all the data */
4324 sync_filesystem(sbi->sb);
Chao Yuaa2c8c42019-02-19 16:23:53 +08004325 retry_cnt = 0;
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004326
Chao Yu4b2414d2017-08-08 10:54:31 +08004327free_meta:
Jaegeuk Kimea676732017-10-06 09:14:28 -07004328#ifdef CONFIG_QUOTA
Sheng Yong26b5a072018-10-12 18:49:26 +08004329 f2fs_truncate_quota_inode_pages(sb);
Chao Yu7beb01f2018-10-24 18:34:26 +08004330 if (f2fs_sb_has_quota_ino(sbi) && !f2fs_readonly(sb))
Jaegeuk Kimea676732017-10-06 09:14:28 -07004331 f2fs_quota_off_umount(sbi->sb);
4332#endif
Chao Yu4b2414d2017-08-08 10:54:31 +08004333 /*
Chao Yu4d57b862018-05-30 00:20:41 +08004334 * Some dirty meta pages can be produced by f2fs_recover_orphan_inodes()
Chao Yu4b2414d2017-08-08 10:54:31 +08004335 * failed by EIO. Then, iput(node_inode) can trigger balance_fs_bg()
Chao Yu4d57b862018-05-30 00:20:41 +08004336 * followed by f2fs_write_checkpoint() through f2fs_write_node_pages(), which
4337 * falls into an infinite loop in f2fs_sync_meta_pages().
Chao Yu4b2414d2017-08-08 10:54:31 +08004338 */
4339 truncate_inode_pages_final(META_MAPPING(sbi));
Jaegeuk Kim812a9592019-01-22 14:04:33 -08004340 /* evict some inodes being cached by GC */
4341 evict_inodes(sb);
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004342 f2fs_unregister_sysfs(sbi);
Chao Yu6ce19af2021-05-20 19:51:50 +08004343free_compress_inode:
4344 f2fs_destroy_compress_inode(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004345free_root_inode:
4346 dput(sb->s_root);
4347 sb->s_root = NULL;
Chao Yubae01ed2017-11-30 19:28:20 +08004348free_node_inode:
Chao Yu4d57b862018-05-30 00:20:41 +08004349 f2fs_release_ino_entry(sbi, true);
Chao Yubae01ed2017-11-30 19:28:20 +08004350 truncate_inode_pages_final(NODE_MAPPING(sbi));
4351 iput(sbi->node_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08004352 sbi->node_inode = NULL;
Sahitya Tummala60aa4d52018-12-26 11:20:29 +05304353free_stats:
4354 f2fs_destroy_stats(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004355free_nm:
Chao Yu4d57b862018-05-30 00:20:41 +08004356 f2fs_destroy_node_manager(sbi);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004357free_sm:
Chao Yu4d57b862018-05-30 00:20:41 +08004358 f2fs_destroy_segment_manager(sbi);
Chao Yu4c8ff702019-11-01 18:07:14 +08004359 f2fs_destroy_post_read_wq(sbi);
Daeho Jeong261eeb92021-01-19 09:00:42 +09004360stop_ckpt_thread:
4361 f2fs_stop_ckpt_thread(sbi);
Jaegeuk Kim3c62be12016-10-06 19:02:05 -07004362free_devices:
4363 destroy_device_list(sbi);
Jaegeuk Kim52225952018-12-13 18:38:33 -08004364 kvfree(sbi->ckpt);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004365free_meta_inode:
4366 make_bad_inode(sbi->meta_inode);
4367 iput(sbi->meta_inode);
Jaegeuk Kim7c77bf72019-01-01 00:11:30 -08004368 sbi->meta_inode = NULL;
Chao Yu31083032020-09-14 17:05:13 +08004369free_page_array_cache:
4370 f2fs_destroy_page_array_cache(sbi);
Chao Yua9991502020-02-25 18:17:10 +08004371free_xattr_cache:
4372 f2fs_destroy_xattr_caches(sbi);
Jaegeuk Kim0a595eb2016-12-14 10:12:56 -08004373free_io_dummy:
4374 mempool_destroy(sbi->write_io_dummy);
Chao Yud7997e62018-01-17 16:31:35 +08004375free_percpu:
4376 destroy_percpu_info(sbi);
Daeho Jeonga4b68172021-08-20 15:29:09 -07004377free_iostat:
4378 f2fs_destroy_iostat(sbi);
Chao Yud7997e62018-01-17 16:31:35 +08004379free_bio_info:
Jaegeuk Kima912b542017-05-10 11:18:25 -07004380 for (i = 0; i < NR_PAGE_TYPE; i++)
Jaegeuk Kim52225952018-12-13 18:38:33 -08004381 kvfree(sbi->write_io[i]);
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07004382
4383#ifdef CONFIG_UNICODE
Daniel Rosenbergeca48732020-07-08 02:12:36 -07004384 utf8_unload(sb->s_encoding);
Hyeongseok Kim89ff6002020-11-12 18:14:54 +09004385 sb->s_encoding = NULL;
Daniel Rosenberg5aba5432019-07-23 16:05:28 -07004386#endif
Chao Yud7997e62018-01-17 16:31:35 +08004387free_options:
Chao Yu4b2414d2017-08-08 10:54:31 +08004388#ifdef CONFIG_QUOTA
4389 for (i = 0; i < MAXQUOTAS; i++)
Wang Xiaojunba87a452020-06-17 20:30:12 +08004390 kfree(F2FS_OPTION(sbi).s_qf_names[i]);
Chao Yu4b2414d2017-08-08 10:54:31 +08004391#endif
Eric Biggersac4acb12020-09-16 21:11:35 -07004392 fscrypt_free_dummy_policy(&F2FS_OPTION(sbi).dummy_enc_policy);
Jaegeuk Kim52225952018-12-13 18:38:33 -08004393 kvfree(options);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004394free_sb_buf:
Denis Efremov742532d2020-06-10 01:14:46 +03004395 kfree(raw_super);
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004396free_sbi:
Keith Mok43b65732016-03-02 12:04:24 -08004397 if (sbi->s_chksum_driver)
4398 crypto_free_shash(sbi->s_chksum_driver);
Denis Efremov742532d2020-06-10 01:14:46 +03004399 kfree(sbi);
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004400
4401 /* give only one another chance */
Chao Yuaa2c8c42019-02-19 16:23:53 +08004402 if (retry_cnt > 0 && skip_recovery) {
4403 retry_cnt--;
Jaegeuk Kimed2e6212014-08-08 15:37:41 -07004404 shrink_dcache_sb(sb);
4405 goto try_onemore;
4406 }
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004407 return err;
4408}
4409
4410static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
4411 const char *dev_name, void *data)
4412{
4413 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
4414}
4415
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004416static void kill_f2fs_super(struct super_block *sb)
4417{
Chao Yucce13252017-06-29 23:17:45 +08004418 if (sb->s_root) {
Jaegeuk Kim1cb50f82018-07-06 16:47:34 -07004419 struct f2fs_sb_info *sbi = F2FS_SB(sb);
4420
4421 set_sbi_flag(sbi, SBI_IS_CLOSE);
4422 f2fs_stop_gc_thread(sbi);
4423 f2fs_stop_discard_thread(sbi);
4424
Chao Yu6ce19af2021-05-20 19:51:50 +08004425#ifdef CONFIG_F2FS_FS_COMPRESSION
4426 /*
4427 * latter evict_inode() can bypass checking and invalidating
4428 * compress inode cache.
4429 */
4430 if (test_opt(sbi, COMPRESS_CACHE))
4431 truncate_inode_pages_final(COMPRESS_MAPPING(sbi));
4432#endif
4433
Jaegeuk Kim1cb50f82018-07-06 16:47:34 -07004434 if (is_sbi_flag_set(sbi, SBI_IS_DIRTY) ||
4435 !is_set_ckpt_flags(sbi, CP_UMOUNT_FLAG)) {
4436 struct cp_control cpc = {
4437 .reason = CP_UMOUNT,
4438 };
4439 f2fs_write_checkpoint(sbi, &cpc);
4440 }
Chao Yu13787522018-08-22 17:11:05 +08004441
4442 if (is_sbi_flag_set(sbi, SBI_IS_RECOVERED) && f2fs_readonly(sb))
4443 sb->s_flags &= ~SB_RDONLY;
Chao Yucce13252017-06-29 23:17:45 +08004444 }
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004445 kill_block_super(sb);
4446}
4447
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004448static struct file_system_type f2fs_fs_type = {
4449 .owner = THIS_MODULE,
4450 .name = "f2fs",
4451 .mount = f2fs_mount,
Jaegeuk Kim30a55372015-01-14 16:34:24 -08004452 .kill_sb = kill_f2fs_super,
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004453 .fs_flags = FS_REQUIRES_DEV,
4454};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08004455MODULE_ALIAS_FS("f2fs");
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004456
Namjae Jeon6e6093a2013-01-17 00:08:30 +09004457static int __init init_inodecache(void)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004458{
Vladimir Davydov5d097052016-01-14 15:18:21 -08004459 f2fs_inode_cachep = kmem_cache_create("f2fs_inode_cache",
4460 sizeof(struct f2fs_inode_info), 0,
4461 SLAB_RECLAIM_ACCOUNT|SLAB_ACCOUNT, NULL);
Jaegeuk Kim6bacf522013-12-06 15:00:58 +09004462 if (!f2fs_inode_cachep)
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004463 return -ENOMEM;
4464 return 0;
4465}
4466
4467static void destroy_inodecache(void)
4468{
4469 /*
4470 * Make sure all delayed rcu free inodes are flushed before we
4471 * destroy cache.
4472 */
4473 rcu_barrier();
4474 kmem_cache_destroy(f2fs_inode_cachep);
4475}
4476
4477static int __init init_f2fs_fs(void)
4478{
4479 int err;
4480
Anatoly Pugachev4071e672018-05-28 02:06:37 +03004481 if (PAGE_SIZE != F2FS_BLKSIZE) {
4482 printk("F2FS not supported on PAGE_SIZE(%lu) != %d\n",
4483 PAGE_SIZE, F2FS_BLKSIZE);
4484 return -EINVAL;
4485 }
4486
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004487 err = init_inodecache();
4488 if (err)
4489 goto fail;
Chao Yu4d57b862018-05-30 00:20:41 +08004490 err = f2fs_create_node_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004491 if (err)
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004492 goto free_inodecache;
Chao Yu4d57b862018-05-30 00:20:41 +08004493 err = f2fs_create_segment_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004494 if (err)
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004495 goto free_node_manager_caches;
Chao Yu4d57b862018-05-30 00:20:41 +08004496 err = f2fs_create_checkpoint_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004497 if (err)
Chao Yu06292072014-12-29 15:56:18 +08004498 goto free_segment_manager_caches;
Chao Yucad83c92021-05-07 18:10:38 +08004499 err = f2fs_create_recovery_cache();
Chao Yu1dcc3362015-02-05 17:57:31 +08004500 if (err)
4501 goto free_checkpoint_caches;
Chao Yucad83c92021-05-07 18:10:38 +08004502 err = f2fs_create_extent_cache();
4503 if (err)
4504 goto free_recovery_cache;
Chao Yu093749e2020-08-04 21:14:49 +08004505 err = f2fs_create_garbage_collection_cache();
Chao Yua3981012017-06-14 17:39:46 +08004506 if (err)
Chao Yu1dcc3362015-02-05 17:57:31 +08004507 goto free_extent_cache;
Chao Yu093749e2020-08-04 21:14:49 +08004508 err = f2fs_init_sysfs();
4509 if (err)
4510 goto free_garbage_collection_cache;
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004511 err = register_shrinker(&f2fs_shrinker_info);
Jaegeuk Kimcfc4d972015-05-15 15:37:24 -07004512 if (err)
Chao Yua3981012017-06-14 17:39:46 +08004513 goto free_sysfs;
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004514 err = register_filesystem(&f2fs_fs_type);
4515 if (err)
4516 goto free_shrinker;
Greg Kroah-Hartman21acc072019-01-04 14:26:18 +01004517 f2fs_create_root_stats();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004518 err = f2fs_init_post_read_processing();
4519 if (err)
4520 goto free_root_stats;
Daeho Jeonga4b68172021-08-20 15:29:09 -07004521 err = f2fs_init_iostat_processing();
Chao Yu0b20fce2019-09-30 18:53:25 +08004522 if (err)
4523 goto free_post_read;
Daeho Jeonga4b68172021-08-20 15:29:09 -07004524 err = f2fs_init_bio_entry_cache();
4525 if (err)
4526 goto free_iostat;
Chao Yuf5438052019-12-04 09:52:58 +08004527 err = f2fs_init_bioset();
4528 if (err)
4529 goto free_bio_enrty_cache;
Chao Yu5e6bbde2020-04-08 19:56:05 +08004530 err = f2fs_init_compress_mempool();
4531 if (err)
4532 goto free_bioset;
Chao Yuc68d6c82020-09-14 17:05:14 +08004533 err = f2fs_init_compress_cache();
4534 if (err)
4535 goto free_compress_mempool;
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004536 err = f2fs_create_casefold_cache();
4537 if (err)
4538 goto free_compress_cache;
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004539 return 0;
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004540free_compress_cache:
4541 f2fs_destroy_compress_cache();
Chao Yuc68d6c82020-09-14 17:05:14 +08004542free_compress_mempool:
4543 f2fs_destroy_compress_mempool();
Chao Yu5e6bbde2020-04-08 19:56:05 +08004544free_bioset:
4545 f2fs_destroy_bioset();
Chao Yuf5438052019-12-04 09:52:58 +08004546free_bio_enrty_cache:
4547 f2fs_destroy_bio_entry_cache();
Daeho Jeonga4b68172021-08-20 15:29:09 -07004548free_iostat:
4549 f2fs_destroy_iostat_processing();
Chao Yu0b20fce2019-09-30 18:53:25 +08004550free_post_read:
4551 f2fs_destroy_post_read_processing();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004552free_root_stats:
4553 f2fs_destroy_root_stats();
Chao Yu787c7b8c2015-10-29 09:13:04 +08004554 unregister_filesystem(&f2fs_fs_type);
Jaegeuk Kim2658e502015-06-19 12:01:21 -07004555free_shrinker:
4556 unregister_shrinker(&f2fs_shrinker_info);
Chao Yua3981012017-06-14 17:39:46 +08004557free_sysfs:
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004558 f2fs_exit_sysfs();
Chao Yu093749e2020-08-04 21:14:49 +08004559free_garbage_collection_cache:
4560 f2fs_destroy_garbage_collection_cache();
Chao Yu1dcc3362015-02-05 17:57:31 +08004561free_extent_cache:
Chao Yu4d57b862018-05-30 00:20:41 +08004562 f2fs_destroy_extent_cache();
Chao Yucad83c92021-05-07 18:10:38 +08004563free_recovery_cache:
4564 f2fs_destroy_recovery_cache();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004565free_checkpoint_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004566 f2fs_destroy_checkpoint_caches();
Jaegeuk Kim7fd9e542013-11-15 13:55:58 +09004567free_segment_manager_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004568 f2fs_destroy_segment_manager_caches();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004569free_node_manager_caches:
Chao Yu4d57b862018-05-30 00:20:41 +08004570 f2fs_destroy_node_manager_caches();
Zhao Hongjiang9890ff32013-08-20 16:49:51 +08004571free_inodecache:
4572 destroy_inodecache();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004573fail:
4574 return err;
4575}
4576
4577static void __exit exit_f2fs_fs(void)
4578{
Chao Yu4d9a2bb2021-06-11 07:46:30 +08004579 f2fs_destroy_casefold_cache();
Chao Yuc68d6c82020-09-14 17:05:14 +08004580 f2fs_destroy_compress_cache();
Chao Yu5e6bbde2020-04-08 19:56:05 +08004581 f2fs_destroy_compress_mempool();
Chao Yuf5438052019-12-04 09:52:58 +08004582 f2fs_destroy_bioset();
Chao Yu0b20fce2019-09-30 18:53:25 +08004583 f2fs_destroy_bio_entry_cache();
Daeho Jeonga4b68172021-08-20 15:29:09 -07004584 f2fs_destroy_iostat_processing();
Eric Biggers6dbb1792018-04-18 11:09:48 -07004585 f2fs_destroy_post_read_processing();
Namjae Jeon4589d252013-01-15 19:58:47 +09004586 f2fs_destroy_root_stats();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004587 unregister_filesystem(&f2fs_fs_type);
Tiezhu Yangb8bef792016-05-18 08:02:25 +08004588 unregister_shrinker(&f2fs_shrinker_info);
Jaegeuk Kimdc6b2052017-07-26 11:24:13 -07004589 f2fs_exit_sysfs();
Chao Yu093749e2020-08-04 21:14:49 +08004590 f2fs_destroy_garbage_collection_cache();
Chao Yu4d57b862018-05-30 00:20:41 +08004591 f2fs_destroy_extent_cache();
Chao Yucad83c92021-05-07 18:10:38 +08004592 f2fs_destroy_recovery_cache();
Chao Yu4d57b862018-05-30 00:20:41 +08004593 f2fs_destroy_checkpoint_caches();
4594 f2fs_destroy_segment_manager_caches();
4595 f2fs_destroy_node_manager_caches();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004596 destroy_inodecache();
Jaegeuk Kimaff063e2012-11-02 17:07:47 +09004597}
4598
4599module_init(init_f2fs_fs)
4600module_exit(exit_f2fs_fs)
4601
4602MODULE_AUTHOR("Samsung Electronics's Praesto Team");
4603MODULE_DESCRIPTION("Flash Friendly File System");
4604MODULE_LICENSE("GPL");
Chao Yu0dd57172021-05-18 09:57:54 +08004605MODULE_SOFTDEP("pre: crc32");
Jaegeuk Kimb4b9d342016-11-04 14:59:15 -07004606